From d6c4f6b27ecdd244254f21add3d720c226ec63a1 Mon Sep 17 00:00:00 2001 From: ~Jhellico Date: Mon, 18 Sep 2023 20:01:37 +0300 Subject: [PATCH 01/10] Initialize v0.34 --- CHANGES | 5 +++++ holidays/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index a900a29b4..713ea3979 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,8 @@ +Version 0.34 +============ + +Released ???????? ??, ???? + Version 0.33 ============ diff --git a/holidays/__init__.py b/holidays/__init__.py index 5639dd652..7f0d0b48c 100644 --- a/holidays/__init__.py +++ b/holidays/__init__.py @@ -16,7 +16,7 @@ from holidays.registry import EntityLoader from holidays.utils import * -__version__ = "0.33" +__version__ = "0.34" EntityLoader.load("countries", globals()) From ac29789feddb241f7ffeb372d35683c7af735658 Mon Sep 17 00:00:00 2001 From: Arkadii Yakovets Date: Thu, 21 Sep 2023 17:58:08 -0700 Subject: [PATCH 02/10] Update package configuration: migrate to pyproject.toml (#1466) --- .pre-commit-config.yaml | 5 --- MANIFEST.in | 11 ++++--- holidays/holiday_base.py | 4 +-- pyproject.toml | 65 +++++++++++++++++++++++++++++++++----- requirements/tests.txt | 1 + setup.cfg | 53 ------------------------------- tests/test_holiday_base.py | 13 +++++--- tests/test_package.py | 43 +++++++++++++++++++++++++ tox.ini | 3 ++ 9 files changed, 121 insertions(+), 77 deletions(-) delete mode 100644 setup.cfg create mode 100644 tests/test_package.py diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 099b60c77..f5f26b89a 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -60,11 +60,6 @@ repos: hooks: - id: tox-ini-fmt - - repo: https://github.com/asottile/setup-cfg-fmt - rev: v2.4.0 - hooks: - - id: setup-cfg-fmt - - repo: local hooks: - id: tests diff --git a/MANIFEST.in b/MANIFEST.in index f0f9c5c6b..32e70e428 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,8 +1,11 @@ include CHANGES -include holidays/py.typed +include CONTRIBUTING.rst +include Makefile + recursive-include docs * -recursive-include holidays *.py recursive-include holidays/locale *.mo recursive-include holidays/locale *.po -recursive-include scripts/l10n *.py -recursive-include tests *.py +recursive-include requirements * + +prune docs/build +prune tests diff --git a/holidays/holiday_base.py b/holidays/holiday_base.py index 0ea3e2e24..6e2b4658d 100644 --- a/holidays/holiday_base.py +++ b/holidays/holiday_base.py @@ -579,12 +579,12 @@ def __repr__(self) -> str: parts.append(f"holidays.financial_holidays({self.market!r}") parts.append(")") elif hasattr(self, "country"): - if parts: - parts.append(" + ") parts.append(f"holidays.country_holidays({self.country!r}") if self.subdiv: parts.append(f", subdiv={self.subdiv!r}") parts.append(")") + else: + parts.append("holidays.HolidayBase()") return "".join(parts) diff --git a/pyproject.toml b/pyproject.toml index 75f5acb45..293f781b0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,18 +1,67 @@ +[project] +name = "holidays" +version = "0.34" +description = "Generate and work with holidays in Python" +license = { file = "LICENSE" } +readme = "README.rst" +requires-python = ">=3.8" + +authors = [{ email = "dr.prodigy.github@gmail.com", name = "Maurizio Montel" }] +dependencies = ["python-dateutil"] +classifiers = [ + "Classifier: Development Status :: 4 - Beta", + "Classifier: Intended Audience :: Developers", + "Classifier: License :: OSI Approved :: MIT License", + "Classifier: Operating System :: OS Independent", + "Classifier: Programming Language :: Python", + "Classifier: Programming Language :: Python :: 3", + "Classifier: Programming Language :: Python :: 3 :: Only", + "Classifier: Programming Language :: Python :: Implementation :: CPython", + "Classifier: Programming Language :: Python :: Implementation :: PyPy", + "Classifier: Topic :: Office/Business :: Scheduling", + "Classifier: Topic :: Software Development :: Libraries :: Python Modules", + "Classifier: Topic :: Software Development :: Localization", +] +keywords = ["holidays", "calendar", "l10n"] +maintainers = [{ email = "ark@cho.red", name = "Arkadii Yakovets" }] + +[project.urls] +Repository = "https://github.com/vacanza/python-holidays/" +Documentation = "https://python-holidays.readthedocs.io/en/latest/" +Changelog = "https://github.com/vacanza/python-holidays/releases" +Downloads = "https://pypi.org/project/holidays/" + [tool.black] line-length = 99 -target-version = ['py38', 'py39', 'py310', 'py311'] +target-version = ["py38", "py39", "py310", "py311"] [tool.coverage.run] branch = true -omit = ['scripts/*', 'setup.py', 'tests/*'] - -[tool.coverage.report] -exclude_lines = ['def __repr__', 'pragma: no cover'] +omit = ["scripts/*", "setup.py", "tests/*"] [tool.isort] -known_first_party = ['holidays', 'tests'] +known_first_party = ["holidays", "tests"] line_length = 99 multi_line_output = 3 no_inline_sort = true -profile = 'black' -skip = ['docs'] +profile = "black" +skip = ["docs"] + + +[tool.mypy] +strict = false + +[[tool.mypy.overrides]] +module = "holidays.countries.*" +disable_error_code = ["override"] + +[[tool.mypy.overrides]] +module = "holidays.groups.*" +disable_error_code = "attr-defined" + +[tool.rstcheck] +ignore_directives = ["automodule"] +ignore_languages = ["python"] + +[tool.setuptools.packages.find] +include = ["holidays*"] diff --git a/requirements/tests.txt b/requirements/tests.txt index a15cfbe9f..8f59b1d44 100644 --- a/requirements/tests.txt +++ b/requirements/tests.txt @@ -1,5 +1,6 @@ # Test requirements. coverage +importlib-metadata pytest pytest-cov pytest-xdist diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index 38daf391f..000000000 --- a/setup.cfg +++ /dev/null @@ -1,53 +0,0 @@ -[metadata] -name = holidays -version = attr: holidays.__version__ -description = Generate and work with holidays in Python -long_description = file: README.rst -long_description_content_type = text/x-rst -url = https://github.com/vacanza/python-holidays -author = Maurizio Montel (dr-prodigy) -author_email = dr.prodigy.github@gmail.com -maintainer = Arkadii Yakovets (arkid15r) -maintainer_email = ark@cho.red -license = MIT -license_files = LICENSE -platforms = any -classifiers = - Development Status :: 4 - Beta - Intended Audience :: Developers - License :: OSI Approved :: MIT License - Operating System :: OS Independent - Programming Language :: Python - Programming Language :: Python :: 3 - Programming Language :: Python :: 3 :: Only - Programming Language :: Python :: Implementation :: CPython - Programming Language :: Python :: Implementation :: PyPy - Topic :: Office/Business :: Scheduling - Topic :: Software Development :: Libraries :: Python Modules - Topic :: Software Development :: Localization - -[options] -packages = - holidays - holidays/countries - holidays/financial -install_requires = - python-dateutil -python_requires = >=3.8 -include_package_data = True - -[flake8] -extend-ignore = E203 - -[mypy] -strict = False - -[mypy-holidays.countries.*] -disable_error_code = override - -[mypy-holidays.groups.*] -disable_error_code = attr-defined - -[rstcheck] -ignore_directives = automodule -ignore_language = python diff --git a/tests/test_holiday_base.py b/tests/test_holiday_base.py index bd9efcef4..9551426b5 100644 --- a/tests/test_holiday_base.py +++ b/tests/test_holiday_base.py @@ -705,12 +705,15 @@ def test_partial(self): class TestRepr(unittest.TestCase): - def test_country(self): - hb = CountryStub1() - self.assertEqual(repr(hb), "holidays.country_holidays('CS1')") + def test_base(self): + self.assertEqual(repr(HolidayBase()), "holidays.HolidayBase()") - hb = CountryStub1(subdiv="Subdiv1") - self.assertEqual(repr(hb), "holidays.country_holidays('CS1', subdiv='Subdiv1')") + def test_country(self): + self.assertEqual(repr(CountryStub1()), "holidays.country_holidays('CS1')") + self.assertEqual( + repr(CountryStub1(subdiv="Subdiv1")), + "holidays.country_holidays('CS1', subdiv='Subdiv1')", + ) def test_market(self): self.assertEqual(repr(MarketStub1()), "holidays.financial_holidays('MS1')") diff --git a/tests/test_package.py b/tests/test_package.py new file mode 100644 index 000000000..bae69773d --- /dev/null +++ b/tests/test_package.py @@ -0,0 +1,43 @@ +# python-holidays +# --------------- +# A fast, efficient Python library for generating country, province and state +# specific sets of holidays on the fly. It aims to make determining whether a +# specific date is a holiday as fast and flexible as possible. +# +# Authors: dr-prodigy (c) 2017-2023 +# ryanss (c) 2014-2017 +# Website: https://github.com/dr-prodigy/python-holidays +# License: MIT (see LICENSE file) + +from unittest import TestCase + +from importlib_metadata import metadata + +import holidays + + +class TestPackage(TestCase): + def test_metadata(self): + ph_metadata = metadata("holidays") + + for attr_name, attr_value in { + "name": "holidays", + "summary": "Generate and work with holidays in Python", + "version": holidays.__version__, + }.items(): + self.assertIn(attr_name, ph_metadata) + self.assertEqual(ph_metadata[attr_name], attr_value, attr_name) + + for attr_name in ( + "author-email", + "classifier", + "description", + "keywords", + "license", + "license-file", + "maintainer-email", + "project-url", + "requires-python", + ): + self.assertIn(attr_name, ph_metadata) + self.assertTrue(ph_metadata[attr_name], attr_name) diff --git a/tox.ini b/tox.ini index c5364d4f5..960f15599 100644 --- a/tox.ini +++ b/tox.ini @@ -34,6 +34,9 @@ commands = pre-commit autoupdate pre-commit run --all-files +[flake8] +extend-ignore = E203 + [pytest] filterwarnings = ignore:The --rsyncdir .* are deprecated:DeprecationWarning From 5694691e58f640305c704d6087b72f79d4cb9c63 Mon Sep 17 00:00:00 2001 From: ~Jhellico Date: Fri, 22 Sep 2023 03:58:18 +0300 Subject: [PATCH 03/10] Update Spain holidays (#1476) --- holidays/countries/spain.py | 723 +++++++++++++++++++++------- tests/countries/test_spain.py | 853 +++++++++++++++++++++++++++++----- 2 files changed, 1295 insertions(+), 281 deletions(-) diff --git a/holidays/countries/spain.py b/holidays/countries/spain.py index 267839652..7058ad630 100644 --- a/holidays/countries/spain.py +++ b/holidays/countries/spain.py @@ -9,283 +9,628 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from holidays.calendars import _CustomIslamicCalendar +from holidays.calendars.gregorian import APR, MAY, JUN, JUL, AUG, SEP, OCT, NOV from holidays.groups import ChristianHolidays, IslamicHolidays, InternationalHolidays from holidays.observed_holiday_base import ObservedHolidayBase, SUN_TO_NEXT_MON class Spain(ObservedHolidayBase, ChristianHolidays, InternationalHolidays, IslamicHolidays): """ + Holidays checked with official sources for 2010-2023 only. + References: - https://administracion.gob.es/pag_Home/atencionCiudadana/calendarios.html + + Labor Holidays: + 2010: https://www.boe.es/buscar/doc.php?id=BOE-A-2009-18477 + 2011: https://www.boe.es/buscar/doc.php?id=BOE-A-2010-15722 + 2012: https://www.boe.es/buscar/doc.php?id=BOE-A-2011-16116 + 2013: https://www.boe.es/buscar/doc.php?id=BOE-A-2012-13644 + 2014: https://www.boe.es/buscar/doc.php?id=BOE-A-2013-12147 + 2015: https://www.boe.es/buscar/doc.php?id=BOE-A-2014-10823 + 2016: https://www.boe.es/buscar/doc.php?id=BOE-A-2015-11348 + 2017: https://www.boe.es/buscar/doc.php?id=BOE-A-2016-9244 + 2018: https://www.boe.es/buscar/doc.php?id=BOE-A-2017-11639 + 2019: https://www.boe.es/buscar/doc.php?id=BOE-A-2018-14369 + 2020: https://www.boe.es/buscar/doc.php?id=BOE-A-2019-14552 + 2021: https://www.boe.es/buscar/doc.php?id=BOE-A-2020-13343 + 2022: https://www.boe.es/buscar/doc.php?id=BOE-A-2021-17113 + 2023: https://www.boe.es/diario_boe/txt.php?id=BOE-A-2022-16755 """ country = "ES" - observed_label = "%s (Trasladado)" + # Monday following %s. + observed_label = "Lunes siguiente a %s" subdivisions = ( - "AN", - "AR", - "AS", - "CB", - "CE", - "CL", - "CM", - "CN", - "CT", - "EX", - "GA", - "IB", - "MC", - "MD", - "ML", - "NC", - "PV", - "RI", - "VC", + "AN", # Andalucía + "AR", # Aragón + "AS", # Asturias + "CB", # Cantabria + "CE", # Ceuta + "CL", # Castilla y León + "CM", # Castilla-La Mancha + "CN", # Canarias + "CT", # Cataluña + "EX", # Extremadura + "GA", # Galicia + "IB", # Islas Baleares + "MC", # Murcia + "MD", # Madrid + "ML", # Melilla + "NC", # Navarra + "PV", # País Vasco + "RI", # La Rioja + "VC", # Valenciana ) def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self) InternationalHolidays.__init__(self) - IslamicHolidays.__init__(self) - + IslamicHolidays.__init__(self, calendar=SpainIslamicCalendar()) super().__init__(observed_rule=SUN_TO_NEXT_MON, *args, **kwargs) def _populate(self, year): super()._populate(year) - if year != 2023: + if year not in {2012, 2017, 2023}: self._add_new_years_day("Año nuevo") - self._add_epiphany_day("Epifanía del Señor") - - if year >= 2023: - self._add_holy_thursday("Jueves Santo") + if year not in {2013, 2019}: + self._add_epiphany_day("Epifanía del Señor") self._add_good_friday("Viernes Santo") - if year != 2022: - self._add_labor_day("Día del Trabajador") + if year not in {2011, 2016, 2022}: + self._add_labor_day("Fiesta del Trabajo") - self._add_assumption_of_mary_day("Asunción de la Virgen") + if year not in {2010, 2021}: + self._add_assumption_of_mary_day("Asunción de la Virgen") - self._add_holiday_oct_12("Día de la Hispanidad") + if year != 2014: + self._add_holiday_oct_12("Fiesta Nacional de España") - self._add_all_saints_day("Todos los Santos") + if year not in {2015, 2020}: + self._add_all_saints_day("Todos los Santos") - self._add_holiday_dec_6("Día de la Constitución Española") + self._add_holiday_dec_6("Día de la Constitución Española") - self._add_immaculate_conception_day("La Inmaculada Concepción") + if year not in {2013, 2019}: + self._add_immaculate_conception_day("Inmaculada Concepción") - if year != 2022: - self._add_christmas_day("Navidad") + if year not in {2011, 2016, 2022}: + self._add_christmas_day("Natividad del Señor") def _add_subdiv_an_holidays(self): - if self._year == 2023: - self._add_observed(self._add_new_years_day("Año nuevo")) - self._add_holiday_feb_28("Día de Andalucia") - if self._year <= 2022: - self._add_holy_thursday("Jueves Santo") - if self._year == 2022: - self._add_observed(self._add_labor_day("Día del Trabajador")) - self._add_observed(self._add_christmas_day("Navidad")) + if self._year in {2012, 2017, 2023}: + self._move_holiday(self._add_new_years_day("Año nuevo")) + + if self._year in {2013, 2019}: + self._move_holiday(self._add_epiphany_day("Epifanía del Señor")) + + self._move_holiday(self._add_holiday_feb_28("Día de Andalucia")) + + self._add_holy_thursday("Jueves Santo") + + if self._year in {2011, 2016, 2022}: + self._move_holiday(self._add_labor_day("Fiesta del Trabajo")) + + if self._year in {2010, 2021}: + self._move_holiday(self._add_assumption_of_mary_day("Asunción de la Virgen")) + + if self._year == 2014: + self._move_holiday(self._add_holiday_oct_12("Fiesta Nacional de España")) + + if self._year in {2015, 2020}: + self._move_holiday(self._add_all_saints_day("Todos los Santos")) + + if self._year in {2015, 2020}: + self._move_holiday(self._add_holiday_dec_6("Día de la Constitución Española")) + + if self._year in {2013, 2019}: + self._move_holiday(self._add_immaculate_conception_day("Inmaculada Concepción")) + + if self._year in {2011, 2016, 2022}: + self._move_holiday(self._add_christmas_day("Natividad del Señor")) def _add_subdiv_ar_holidays(self): - if self._year == 2023: - self._add_observed(self._add_new_years_day("Año nuevo")) - if self._year <= 2014: - self._add_saint_josephs_day("San José") - if self._year <= 2022: - self._add_holy_thursday("Jueves Santo") - self._add_saint_georges_day("Día de San Jorge") - if self._year == 2022: - self._add_observed(self._add_labor_day("Día del Trabajador")) - self._add_observed(self._add_christmas_day("Navidad")) + if self._year in {2012, 2017, 2023}: + self._move_holiday(self._add_new_years_day("Año nuevo")) + + if self._year in {2013, 2019}: + self._move_holiday(self._add_epiphany_day("Epifanía del Señor")) + + self._add_holy_thursday("Jueves Santo") + + self._move_holiday(self._add_saint_georges_day("Día de San Jorge")) + + if self._year in {2011, 2016, 2022}: + self._move_holiday(self._add_labor_day("Fiesta del Trabajo")) + + if self._year in {2010, 2021}: + self._move_holiday(self._add_assumption_of_mary_day("Asunción de la Virgen")) + + if self._year == 2014: + self._move_holiday(self._add_holiday_oct_12("Fiesta Nacional de España")) + + if self._year in {2015, 2020}: + self._move_holiday(self._add_all_saints_day("Todos los Santos")) + + if self._year in {2015, 2020}: + self._move_holiday(self._add_holiday_dec_6("Día de la Constitución Española")) + + if self._year in {2013, 2019}: + self._move_holiday(self._add_immaculate_conception_day("Inmaculada Concepción")) + + if self._year in {2011, 2016, 2022}: + self._move_holiday(self._add_christmas_day("Natividad del Señor")) def _add_subdiv_as_holidays(self): - if self._year == 2023: - self._add_observed(self._add_new_years_day("Año nuevo")) - if self._year <= 2022: - self._add_holy_thursday("Jueves Santo") - self._add_holiday_sep_8("Día de Asturias") - if self._year == 2022: - self._add_observed(self._add_labor_day("Día del Trabajador")) - self._add_observed(self._add_christmas_day("Navidad")) + if self._year in {2012, 2017, 2023}: + self._move_holiday(self._add_new_years_day("Año nuevo")) + + if self._year in {2013, 2019}: + self._move_holiday(self._add_epiphany_day("Epifanía del Señor")) + + self._add_holy_thursday("Jueves Santo") + + if self._year in {2011, 2016, 2022}: + self._move_holiday(self._add_labor_day("Fiesta del Trabajo")) + + if self._year in {2010, 2021}: + self._move_holiday(self._add_assumption_of_mary_day("Asunción de la Virgen")) + + self._move_holiday(self._add_holiday_sep_8("Día de Asturias")) + + if self._year == 2014: + self._move_holiday(self._add_holiday_oct_12("Fiesta Nacional de España")) + + if self._year in {2015, 2020}: + self._move_holiday(self._add_all_saints_day("Todos los Santos")) + + if self._year in {2015, 2020}: + self._move_holiday(self._add_holiday_dec_6("Día de la Constitución Española")) + + if self._year in {2013, 2019}: + self._move_holiday(self._add_immaculate_conception_day("Inmaculada Concepción")) + + if self._year in {2011, 2016, 2022}: + self._move_holiday(self._add_christmas_day("Natividad del Señor")) def _add_subdiv_cb_holidays(self): - if self._year <= 2022: + if self._year == 2013: + self._move_holiday(self._add_epiphany_day("Epifanía del Señor")) + + if self._year != 2018: self._add_holy_thursday("Jueves Santo") - self._add_holiday_jul_28("Día de las Instituciones de Cantabria") - self._add_holiday_sep_15("Día de la Bien Aparecida") - if self._year == 2022: - self._add_observed(self._add_christmas_day("Navidad")) + + if self._year in {2013, 2015, 2019, 2020}: + self._add_easter_monday("Lunes de Pascua") + + if self._year == 2011: + self._move_holiday(self._add_labor_day("Fiesta del Trabajo")) + + if self._year in {2012, 2013, 2014, 2019}: + self._add_saint_james_day("Santiago Apóstol") + + if self._year not in {2012, 2015, 2019}: + self._add_holiday_jul_28("Día de las Instituciones de Cantabria") + + if self._year not in {2013, 2019}: + self._add_holiday_sep_15("La Bien Aparecida") + + if self._year == 2015: + self._move_holiday(self._add_all_saints_day("Todos los Santos")) + + if self._year == 2019: + self._move_holiday(self._add_immaculate_conception_day("Inmaculada Concepción")) + + if self._year in {2016, 2022}: + self._move_holiday(self._add_christmas_day("Natividad del Señor")) def _add_subdiv_ce_holidays(self): - if self._year <= 2022: - self._add_holy_thursday("Jueves Santo") - self._add_holiday_aug_5("Nuestra Señora de África") - self._add_holiday_sep_2("Día de la Ciudad Autónoma de Ceuta") - if self._year == 2022: - self._add_eid_al_adha_day("Eid al-Adha") - elif self._year == 2023: + if self._year == 2012: + self._move_holiday(self._add_new_years_day("Año nuevo")) + + if self._year in {2013, 2019}: + self._move_holiday(self._add_epiphany_day("Epifanía del Señor")) + + self._add_holy_thursday("Jueves Santo") + + if self._year == 2011: + self._move_holiday(self._add_labor_day("Fiesta del Trabajo")) + + if self._year >= 2022: + self._add_holiday_aug_5("Nuestra Señora de África") + + if self._year not in {2011, 2012, 2015, 2018}: + self._add_holiday_sep_2("Día de Ceuta") + + if self._year == 2014: + self._move_holiday(self._add_holiday_oct_12("Fiesta Nacional de España")) + + if self._year == 2015: + self._move_holiday(self._add_all_saints_day("Todos los Santos")) + + if self._year in {2015, 2020}: + self._move_holiday(self._add_holiday_dec_6("Día de la Constitución Española")) + + if self._year == 2013: + self._move_holiday(self._add_immaculate_conception_day("Inmaculada Concepción")) + + if self._year in {2011, 2016}: + self._move_holiday(self._add_christmas_day("Natividad del Señor")) + + if self._year == 2011: self._add_eid_al_adha_day_two("Eid al-Adha") + elif self._year in {2012, 2014}: + self._add_eid_al_adha_day_three("Eid al-Adha") + elif self._year >= 2010: + self._add_eid_al_adha_day("Eid al-Adha") def _add_subdiv_cl_holidays(self): - if self._year == 2023: - self._add_observed(self._add_new_years_day("Año nuevo")) - self._add_saint_james_day("Día de Santiago Apóstol") - if self._year <= 2014: + if self._year in {2017, 2023}: + self._move_holiday(self._add_new_years_day("Año nuevo")) + + if self._year in {2013, 2019}: + self._move_holiday(self._add_epiphany_day("Epifanía del Señor")) + + if self._year in {2010, 2012}: self._add_saint_josephs_day("San José") + + self._add_holy_thursday("Jueves Santo") + if self._year <= 2022: - self._add_holy_thursday("Jueves Santo") - self._add_holiday_apr_23("Día de Castilla y Leon") - if self._year == 2022: - self._add_observed(self._add_labor_day("Día del Trabajador")) - self._add_observed(self._add_christmas_day("Navidad")) + self._move_holiday(self._add_holiday_apr_23("Fiesta de la Comunidad Autónoma")) + + if self._year in {2016, 2022}: + self._move_holiday(self._add_labor_day("Fiesta del Trabajo")) + + if self._year in {2011, 2023}: + self._add_saint_james_day("Santiago Apóstol") + + if self._year == 2021: + self._move_holiday(self._add_assumption_of_mary_day("Asunción de la Virgen")) + + if self._year == 2014: + self._move_holiday(self._add_holiday_oct_12("Fiesta Nacional de España")) + + if self._year in {2015, 2020}: + self._move_holiday(self._add_all_saints_day("Todos los Santos")) + + if self._year in {2015, 2020}: + self._move_holiday(self._add_holiday_dec_6("Día de la Constitución Española")) + + if self._year in {2013, 2019}: + self._move_holiday(self._add_immaculate_conception_day("Inmaculada Concepción")) + + if self._year in {2011, 2016, 2022}: + self._move_holiday(self._add_christmas_day("Natividad del Señor")) def _add_subdiv_cm_holidays(self): - if self._year <= 2015 or 2020 <= self._year <= 2021: + if self._year == 2013: + self._move_holiday(self._add_epiphany_day("Epifanía del Señor")) + + if self._year in {2010, 2011, 2020}: self._add_saint_josephs_day("San José") - if self._year <= 2022: - self._add_holy_thursday("Jueves Santo") - if self._year <= 2021: + + self._add_holy_thursday("Jueves Santo") + + if self._year in {2014, 2015, 2019, 2020}: self._add_easter_monday("Lunes de Pascua") - if self._year >= 2022: + + if self._year not in {2010, 2018}: self._add_corpus_christi_day("Corpus Christi") - self._add_holiday_may_31("Día de Castilla La Mancha") - if self._year == 2022: - self._add_observed(self._add_christmas_day("Navidad")) + + if self._year not in {2015, 2020}: + self._add_holiday_may_31("Día de Castilla La Mancha") + + if self._year == 2015: + self._move_holiday(self._add_holiday_dec_6("Día de la Constitución Española")) + + if self._year in {2016, 2022}: + self._move_holiday(self._add_christmas_day("Natividad del Señor")) def _add_subdiv_cn_holidays(self): - if self._year <= 2022: - self._add_holy_thursday("Jueves Santo") - self._add_holiday_may_30("Día de Canarias") - if self._year == 2022: - self._add_observed(self._add_christmas_day("Navidad")) + if self._year in {2013, 2019}: + self._move_holiday(self._add_epiphany_day("Epifanía del Señor")) + + self._add_holy_thursday("Jueves Santo") + + if self._year == 2016: + self._move_holiday(self._add_labor_day("Fiesta del Trabajo")) + + if self._year != 2021: + self._move_holiday(self._add_holiday_may_30("Día de Canarias")) + + if self._year == 2021: + self._move_holiday(self._add_assumption_of_mary_day("Asunción de la Virgen")) + + if self._year == 2015: + self._move_holiday(self._add_all_saints_day("Todos los Santos")) + + if self._year == 2020: + self._move_holiday(self._add_holiday_dec_6("Día de la Constitución Española")) + + if self._year in {2011, 2022}: + self._move_holiday(self._add_christmas_day("Natividad del Señor")) def _add_subdiv_ct_holidays(self): self._add_easter_monday("Lunes de Pascua") - if self._year == 2022: - self._add_holiday_jun_6("Día de la Pascua Granada") - self._add_saint_johns_day("San Juan") - self._add_holiday_sep_11("Día Nacional de Catalunya") - if self._year == 2022: - self._add_christmas_day("Navidad") - self._add_christmas_day_two("San Esteban") + + if self._year in {2011, 2016, 2022}: + self._add_whit_monday("Día de la Pascua Granada") + + if self._year not in {2012, 2018}: + self._add_saint_johns_day("San Juan") + + if self._year not in {2011, 2022}: + self._add_holiday_sep_11("Fiesta Nacional de Cataluña") + + if self._year not in {2010, 2021}: + self._add_christmas_day_two("San Esteban") def _add_subdiv_ex_holidays(self): - if self._year <= 2014: - self._add_saint_josephs_day("San José") - if self._year <= 2022: - self._add_holy_thursday("Jueves Santo") - self._add_holiday_sep_8("Día de Extremadura") + if self._year == 2012: + self._move_holiday(self._add_new_years_day("Año nuevo")) + + if self._year in {2013, 2019}: + self._move_holiday(self._add_epiphany_day("Epifanía del Señor")) + if self._year == 2023: - self._add_carnival_tuesday("Carnaval") - if self._year == 2022: - self._add_observed(self._add_labor_day("Día del Trabajador")) - self._add_observed(self._add_christmas_day("Navidad")) + self._add_carnival_tuesday("Martes de Carnaval") + + if self._year in {2010, 2017, 2021}: + self._move_holiday(self._add_saint_josephs_day("San José")) + + self._add_holy_thursday("Jueves Santo") + + if self._year in {2011, 2016, 2022}: + self._move_holiday(self._add_labor_day("Fiesta del Trabajo")) + + self._move_holiday(self._add_holiday_sep_8("Día de Extremadura")) + + if self._year == 2014: + self._move_holiday(self._add_holiday_oct_12("Fiesta Nacional de España")) + + if self._year in {2015, 2020}: + self._move_holiday(self._add_all_saints_day("Todos los Santos")) + + if self._year in {2015, 2020}: + self._move_holiday(self._add_holiday_dec_6("Día de la Constitución Española")) + + if self._year in {2013, 2019}: + self._move_holiday(self._add_immaculate_conception_day("Inmaculada Concepción")) + + if self._year in {2011, 2016, 2022}: + self._move_holiday(self._add_christmas_day("Natividad del Señor")) def _add_subdiv_ga_holidays(self): - if self._year <= 2014 or 2018 <= self._year <= 2021: - self._add_observed(self._add_saint_josephs_day("San José")) - if self._year <= 2022: - self._add_holy_thursday("Jueves Santo") - if self._year >= 2022: - self._add_holiday_may_17("Día de las letras Gallegas") - if self._year != 2023: + if self._year in {2010, 2011} or 2019 <= self._year <= 2021: + self._move_holiday(self._add_saint_josephs_day("San José")) + + if self._year == 2015: + self._add_holiday_mar_20("Día siguiente a San José") + + self._add_holy_thursday("Jueves Santo") + + if self._year not in {2015, 2020}: + self._add_holiday_may_17("Día de las Letras Gallegas") + + if self._year in {2013, 2016, 2020, 2022}: self._add_saint_johns_day("San Juan") - self._add_holiday_jul_25("Día Nacional de Galicia") + + if self._year != 2021: + self._add_holiday_jul_25("Día Nacional de Galicia") + + if self._year == 2015: + self._move_holiday(self._add_all_saints_day("Todos los Santos")) def _add_subdiv_ib_holidays(self): - self._add_holiday_mar_1("Día de las Islas Baleares") - if self._year <= 2022: - self._add_holy_thursday("Jueves Santo") - self._add_easter_monday("Lunes de Pascua") - if self._year == 2022: - self._add_observed(self._add_christmas_day("Navidad")) - if self._year <= 2020: + if self._year not in {2015, 2020}: + self._add_holiday_mar_1("Día de las Islas Baleares") + + self._add_holy_thursday("Jueves Santo") + + if self._year != 2014: + self._add_easter_monday("Lunes de Pascua") + + if self._year == 2015: + self._move_holiday(self._add_all_saints_day("Todos los Santos")) + + if self._year in {2015, 2020}: + self._move_holiday(self._add_holiday_dec_6("Día de la Constitución Española")) + + if self._year in {2011, 2016, 2022}: + self._move_holiday(self._add_christmas_day("Natividad del Señor")) + + if self._year in {2013, 2014, 2019, 2020}: self._add_christmas_day_two("San Esteban") def _add_subdiv_mc_holidays(self): - if self._year == 2023: - self._add_observed(self._add_new_years_day("Año nuevo")) + if self._year in {2017, 2023}: + self._move_holiday(self._add_new_years_day("Año nuevo")) + + if self._year in {2013, 2019}: + self._move_holiday(self._add_epiphany_day("Epifanía del Señor")) + if self._year <= 2021 and self._year != 2017: - self._add_observed(self._add_saint_josephs_day("San José")) - if self._year <= 2022: - self._add_holy_thursday("Jueves Santo") - if self._year == 2022: - self._add_observed(self._add_labor_day("Día del Trabajador")) - self._add_holiday_jun_9("Día de la Región de Murcia") - if self._year == 2022: - self._add_observed(self._add_christmas_day("Navidad")) + self._move_holiday(self._add_saint_josephs_day("San José")) + + self._add_holy_thursday("Jueves Santo") + + if self._year in {2011, 2022}: + self._move_holiday(self._add_labor_day("Fiesta del Trabajo")) + + if self._year != 2013: + self._move_holiday(self._add_holiday_jun_9("Día de la Región de Murcia")) + + if self._year in {2015, 2020}: + self._move_holiday(self._add_holiday_dec_6("Día de la Constitución Española")) + + if self._year == 2013: + self._move_holiday(self._add_immaculate_conception_day("Inmaculada Concepción")) + + if self._year in {2016, 2022}: + self._move_holiday(self._add_christmas_day("Natividad del Señor")) def _add_subdiv_md_holidays(self): - if self._year <= 2015 or self._year == 2023: - self._add_observed(self._add_saint_josephs_day("San José")) - if self._year <= 2022: - self._add_holy_thursday("Jueves Santo") - self._add_holiday_may_2("Día de Comunidad de Madrid") - if self._year == 2022: - self._add_saint_james_day("Día de Santiago Apóstol") - self._add_observed(self._add_christmas_day("Navidad")) + if self._year in {2013, 2019}: + self._move_holiday(self._add_epiphany_day("Epifanía del Señor")) + + if self._year == 2013: + self._add_holiday_mar_18("Traslado de San José") + + if self._year in {2010, 2012, 2015, 2017, 2021, 2023}: + self._move_holiday(self._add_saint_josephs_day("San José")) + + self._add_holy_thursday("Jueves Santo") + + if self._year != 2010: + self._move_holiday(self._add_holiday_may_2("Fiesta de la Comunidad de Madrid")) + + if self._year in {2010, 2011, 2014}: + self._add_corpus_christi_day("Corpus Christi") + + if self._year in {2011, 2016, 2022}: + self._add_saint_james_day("Santiago Apóstol") + + if self._year == 2020: + self._move_holiday(self._add_all_saints_day("Todos los Santos")) + + if self._year == 2020: + self._move_holiday(self._add_holiday_dec_6("Día de la Constitución Española")) + + if self._year == 2019: + self._move_holiday(self._add_immaculate_conception_day("Inmaculada Concepción")) + + if self._year in {2016, 2022}: + self._move_holiday(self._add_christmas_day("Natividad del Señor")) def _add_subdiv_ml_holidays(self): + if self._year == 2017: + self._move_holiday(self._add_new_years_day("Año nuevo")) + + if self._year in {2013, 2019}: + self._move_holiday(self._add_epiphany_day("Epifanía del Señor")) + + if self._year in {2020, 2021}: + self._add_holiday_mar_13("Estatuto de Autonomía de la Ciudad de Melilla") + if self._year <= 2016: self._add_saint_josephs_day("San José") - if self._year <= 2022: - self._add_holy_thursday("Jueves Santo") - self._add_holiday_sep_8("Vírgen de la victoria") - self._add_holiday_sep_17("Día de Melilla") - if self._year == 2022: - self._add_eid_al_fitr_day_two("Eid al-Fitr") - self._add_eid_al_adha_day_three("Eid al-Adha") - self._add_observed(self._add_christmas_day("Navidad")) - elif self._year == 2023: + + self._add_holy_thursday("Jueves Santo") + + if self._year in {2015, 2020}: + self._move_holiday(self._add_holiday_dec_6("Día de la Constitución Española")) + + if self._year == 2019: + self._move_holiday(self._add_immaculate_conception_day("Inmaculada Concepción")) + + if self._year in {2011, 2016, 2022}: + self._move_holiday(self._add_christmas_day("Natividad del Señor")) + + if self._year >= 2022: self._add_eid_al_fitr_day("Eid al-Fitr") + + if self._year in {2011, 2012, 2021}: self._add_eid_al_adha_day_two("Eid al-Adha") + elif self._year == 2022: + self._add_eid_al_adha_day_three("Eid al-Adha") + elif self._year >= 2010: + self._add_eid_al_adha_day("Eid al-Adha") def _add_subdiv_nc_holidays(self): - if self._year <= 2015 or 2018 <= self._year <= 2021: + if self._year in {2013, 2019}: + self._move_holiday(self._add_epiphany_day("Epifanía del Señor")) + + if self._year in {2010, 2012, 2014, 2015, 2019, 2020, 2021}: self._add_saint_josephs_day("San José") - if self._year <= 2022: - self._add_holy_thursday("Jueves Santo") + + self._add_holy_thursday("Jueves Santo") + self._add_easter_monday("Lunes de Pascua") - if self._year >= 2022: - self._add_saint_james_day("Día de Santiago Apóstol") - if self._year == 2022: - self._add_observed(self._add_christmas_day("Navidad")) + + if self._year in {2011, 2013, 2015, 2016, 2017} or self._year >= 2022: + self._add_saint_james_day("Santiago Apóstol") + + if self._year == 2020: + self._move_holiday(self._add_holiday_dec_6("Día de la Constitución Española")) + + if self._year in {2011, 2016, 2022}: + self._move_holiday(self._add_christmas_day("Natividad del Señor")) def _add_subdiv_pv_holidays(self): - if self._year <= 2021: + if self._year in {2010, 2015, 2019, 2020, 2021}: self._add_saint_josephs_day("San José") - if self._year <= 2022: - self._add_holy_thursday("Jueves Santo") + + self._add_holy_thursday("Jueves Santo") + self._add_easter_monday("Lunes de Pascua") - if self._year >= 2022: - self._add_saint_james_day("Día de Santiago Apóstol") - if self._year <= 2022: - self._add_holiday_sep_6("Día de Elcano") - if 2011 <= self._year <= 2013: + + if self._year not in {2010, 2012, 2014, 2018, 2021}: + self._add_saint_james_day("Santiago Apóstol") + + if self._year == 2022: + self._add_holiday_sep_6("V Centenario Vuelta al Mundo") + + if self._year == 2016: + self._add_holiday_oct_7("80 Aniversario del primer Gobierno Vasco") + + if 2011 <= self._year <= 2014: self._add_holiday_oct_25("Día del País Vasco") def _add_subdiv_ri_holidays(self): - if self._year <= 2022: - self._add_holy_thursday("Jueves Santo") - if self._year >= 2022: + if self._year in {2010, 2012}: + self._add_saint_josephs_day("San José") + + self._add_holy_thursday("Jueves Santo") + + if self._year not in {2010, 2012, 2018}: self._add_easter_monday("Lunes de Pascua") - self._add_holiday_jun_9("Día de La Rioja") + + self._move_holiday(self._add_holiday_jun_9("Día de La Rioja")) + + if self._year in {2011, 2016}: + self._add_saint_james_day("Santiago Apóstol") + + if self._year in {2015, 2020}: + self._move_holiday(self._add_holiday_dec_6("Día de la Constitución Española")) + + if self._year in {2013, 2019}: + self._move_holiday(self._add_immaculate_conception_day("Inmaculada Concepción")) + if self._year == 2022: - self._add_observed(self._add_christmas_day("Navidad")) + self._move_holiday(self._add_christmas_day("Natividad del Señor")) def _add_subdiv_vc_holidays(self): + if self._year == 2013: + self._add_holiday_mar_18("Lunes de Fallas") + if self._year <= 2022 and self._year != 2017: self._add_saint_josephs_day("San José") - if self._year == 2022: + + if self._year in {2011, 2016, 2017, 2022}: self._add_holy_thursday("Jueves Santo") + self._add_easter_monday("Lunes de Pascua") - self._add_saint_johns_day("San Juan") - if self._year <= 2021: + + if self._year == 2011: + self._move_holiday(self._add_labor_day("Fiesta del Trabajo")) + + if self._year >= 2019: + self._add_saint_johns_day("San Juan") + + if self._year not in {2011, 2016, 2022}: self._add_holiday_oct_9("Día de la Comunidad Valenciana") + if self._year == 2015: + self._move_holiday(self._add_holiday_dec_6("Día de la Constitución Española")) + + if self._year == 2016: + self._move_holiday(self._add_christmas_day("Natividad del Señor")) + class ES(Spain): pass @@ -293,3 +638,27 @@ class ES(Spain): class ESP(Spain): pass + + +class SpainIslamicCalendar(_CustomIslamicCalendar): + EID_AL_ADHA_DATES = { + 2010: (NOV, 17), + 2011: (NOV, 6), + 2012: (OCT, 25), + 2013: (OCT, 15), + 2014: (OCT, 4), + 2015: (SEP, 25), + 2016: (SEP, 12), + 2017: (SEP, 1), + 2018: (AUG, 22), + 2019: (AUG, 12), + 2020: (JUL, 31), + 2021: (JUL, 20), + 2022: (JUL, 9), + 2023: (JUN, 29), + } + + EID_AL_FITR_DATES = { + 2022: (MAY, 3), + 2023: (APR, 21), + } diff --git a/tests/countries/test_spain.py b/tests/countries/test_spain.py index a1f608728..dae650652 100644 --- a/tests/countries/test_spain.py +++ b/tests/countries/test_spain.py @@ -11,7 +11,7 @@ from datetime import date -from holidays.calendars.gregorian import JAN, FEB, MAR, APR, MAY, JUN, JUL, AUG, SEP, OCT, DEC +from holidays.calendars.gregorian import JAN, FEB, MAR, APR, MAY, JUN, JUL, AUG, SEP, OCT, NOV, DEC from holidays.countries.spain import Spain, ES, ESP from tests.common import TestCase @@ -21,19 +21,173 @@ class TestSpain(TestCase): def setUpClass(cls): super().setUpClass(Spain) + def _assertVariableDays(self, year: int, subdiv_holidays: dict): + observed_prov_holidays = {subdiv: ES(subdiv=subdiv) for subdiv in ES.subdivisions} + for hol_date, hol_provs in subdiv_holidays.items(): + dt = date(year, *hol_date) + for subdiv, prov_holidays in observed_prov_holidays.items(): + self.assertEqual( + dt in prov_holidays, + subdiv in hol_provs, + f"Failed date `{dt:%Y-%m-%d}`, " + f"province `{subdiv}`: {', '.join(hol_provs)}", + ) + def test_country_aliases(self): self.assertCountryAliases(Spain, ES, ESP) - def test_variable_days_in_2016(self): - prov_holidays = {prov: ES(observed=False, subdiv=prov) for prov in ES.subdivisions} - for prov, prov_holidays in prov_holidays.items(): - self.assertEqual(date(2016, MAR, 24) in prov_holidays, prov not in {"CT", "VC"}) - self.assertIn(date(2016, MAR, 25), prov_holidays) - self.assertEqual( - date(2016, MAR, 28) in prov_holidays, prov in {"CM", "CT", "IB", "NC", "PV", "VC"} - ) + def test_fixed_holidays_2010(self): + self.assertNonObservedHoliday( + "2010-01-01", + "2010-01-06", + "2010-04-02", + "2010-05-01", + "2010-10-12", + "2010-11-01", + "2010-12-06", + "2010-12-08", + "2010-12-25", + ) + + def test_fixed_holidays_2011(self): + self.assertNonObservedHoliday( + "2011-01-01", + "2011-01-06", + "2011-04-22", + "2011-08-15", + "2011-10-12", + "2011-11-01", + "2011-12-06", + "2011-12-08", + ) + + def test_fixed_holidays_2012(self): + self.assertNonObservedHoliday( + "2012-01-06", + "2012-04-06", + "2012-05-01", + "2012-08-15", + "2012-10-12", + "2012-11-01", + "2012-12-06", + "2012-12-08", + "2012-12-25", + ) + + def test_fixed_holidays_2013(self): + self.assertNonObservedHoliday( + "2013-01-01", + "2013-03-29", + "2013-05-01", + "2013-08-15", + "2013-10-12", + "2013-11-01", + "2013-12-06", + "2013-12-25", + ) - def test_fix_days_in_2022(self): + def test_fixed_holidays_2014(self): + self.assertNonObservedHoliday( + "2014-01-01", + "2014-01-06", + "2014-04-18", + "2014-05-01", + "2014-08-15", + "2014-11-01", + "2014-12-06", + "2014-12-08", + "2014-12-25", + ) + + def test_fixed_holidays_2015(self): + self.assertNonObservedHoliday( + "2015-01-01", + "2015-01-06", + "2015-04-03", + "2015-05-01", + "2015-08-15", + "2015-10-12", + "2015-12-08", + "2015-12-25", + ) + + def test_fixed_holidays_2016(self): + self.assertNonObservedHoliday( + "2016-01-01", + "2016-01-06", + "2016-03-25", + "2016-08-15", + "2016-10-12", + "2016-11-01", + "2016-12-06", + "2016-12-08", + ) + + def test_fixed_holidays_2017(self): + self.assertNonObservedHoliday( + "2017-01-06", + "2017-04-14", + "2017-05-01", + "2017-08-15", + "2017-10-12", + "2017-11-01", + "2017-12-06", + "2017-12-08", + "2017-12-25", + ) + + def test_fixed_holidays_2018(self): + self.assertNonObservedHoliday( + "2018-01-01", + "2018-01-06", + "2018-03-30", + "2018-05-01", + "2018-08-15", + "2018-10-12", + "2018-11-01", + "2018-12-06", + "2018-12-08", + "2018-12-25", + ) + + def test_fixed_holidays_2019(self): + self.assertNonObservedHoliday( + "2019-01-01", + "2019-04-19", + "2019-05-01", + "2019-08-15", + "2019-10-12", + "2019-11-01", + "2019-12-06", + "2019-12-25", + ) + + def test_fixed_holidays_2020(self): + self.assertNonObservedHoliday( + "2020-01-01", + "2020-01-06", + "2020-04-10", + "2020-05-01", + "2020-08-15", + "2020-10-12", + "2020-12-08", + "2020-12-25", + ) + + def test_fixed_holidays_2021(self): + self.assertNonObservedHoliday( + "2021-01-01", + "2021-01-06", + "2021-04-02", + "2021-05-01", + "2021-10-12", + "2021-11-01", + "2021-12-06", + "2021-12-08", + "2021-12-25", + ) + + def test_fixed_holidays_2022(self): self.assertNonObservedHoliday( "2022-01-01", "2022-01-06", @@ -45,58 +199,310 @@ def test_fix_days_in_2022(self): "2022-12-08", ) - def test_province_specific_days(self): + def test_fixed_holidays_2023(self): + self.assertNonObservedHoliday( + "2023-01-06", + "2023-04-07", + "2023-05-01", + "2023-08-15", + "2023-10-12", + "2023-11-01", + "2023-12-06", + "2023-12-08", + "2023-12-25", + ) + + def test_islamic(self): + name = "Eid al-Adha" + ce_holidays = Spain(subdiv="CE", years=2009) + ml_holidays = Spain(subdiv="ML", years=2009) + self.assertNoHolidayName(name, ce_holidays) + self.assertNoHolidayName(name, ml_holidays) + + def test_variable_holidays_2010(self): + province_days = { + (MAR, 1): {"AN", "IB"}, + (MAR, 19): {"CL", "CM", "EX", "GA", "MC", "MD", "ML", "NC", "PV", "RI", "VC"}, + (APR, 1): { + "AN", + "AR", + "AS", + "CB", + "CE", + "CL", + "CM", + "CN", + "EX", + "GA", + "IB", + "MC", + "MD", + "ML", + "NC", + "PV", + "RI", + }, + (APR, 5): {"CT", "IB", "NC", "PV", "VC"}, + (APR, 23): {"AR", "CL"}, + (MAY, 17): {"GA"}, + (MAY, 31): {"CM", "CN"}, + (JUN, 3): {"MD"}, + (JUN, 9): {"MC", "RI"}, + (JUN, 24): {"CT"}, + (JUL, 28): {"CB"}, + (AUG, 16): {"AN", "AR", "AS"}, + (SEP, 2): {"CE"}, + (SEP, 8): {"AS", "EX"}, + (SEP, 11): {"CT"}, + (SEP, 15): {"CB"}, + (OCT, 9): {"VC"}, + (NOV, 17): {"CE", "ML"}, + } + self._assertVariableDays(2010, province_days) + + def test_variable_holidays_2011(self): province_days = { (FEB, 28): {"AN"}, (MAR, 1): {"IB"}, + (MAR, 19): {"CM", "GA", "MC", "ML", "VC"}, + (APR, 21): { + "AN", + "AR", + "AS", + "CB", + "CE", + "CL", + "CM", + "CN", + "EX", + "GA", + "IB", + "MC", + "MD", + "ML", + "NC", + "PV", + "RI", + "VC", + }, (APR, 23): {"AR", "CL"}, + (APR, 25): {"CT", "IB", "NC", "PV", "RI", "VC"}, + (MAY, 2): {"AN", "AR", "AS", "CB", "CE", "EX", "MC", "MD", "VC"}, + (MAY, 17): {"GA"}, (MAY, 30): {"CN"}, (MAY, 31): {"CM"}, - (MAY, 2): {"MD"}, (JUN, 9): {"MC", "RI"}, - (JUL, 25): {"GA"}, + (JUN, 13): {"CT"}, + (JUN, 23): {"CM", "MD"}, + (JUN, 24): {"CT"}, + (JUL, 25): {"CL", "GA", "MD", "NC", "PV", "RI"}, (JUL, 28): {"CB"}, - (AUG, 5): {"CE"}, - (SEP, 2): {"CE"}, - (SEP, 8): {"AS", "EX", "ML"}, + (SEP, 8): {"AS", "EX"}, + (SEP, 15): {"CB"}, + (OCT, 25): {"PV"}, + (NOV, 7): {"CE", "ML"}, + (DEC, 26): {"AN", "AR", "AS", "CE", "CL", "CN", "CT", "EX", "IB", "ML", "NC"}, + } + self._assertVariableDays(2011, province_days) + + def test_variable_holidays_2012(self): + province_days = { + (JAN, 2): {"AN", "AR", "AS", "CE", "EX"}, + (FEB, 28): {"AN"}, + (MAR, 1): {"IB"}, + (MAR, 19): {"CL", "MC", "MD", "ML", "NC", "RI", "VC"}, + (APR, 5): { + "AN", + "AR", + "AS", + "CB", + "CE", + "CL", + "CM", + "CN", + "EX", + "GA", + "IB", + "MC", + "MD", + "ML", + "NC", + "PV", + "RI", + }, + (APR, 9): {"CT", "IB", "NC", "PV", "VC"}, + (APR, 23): {"AR", "CL"}, + (MAY, 2): {"MD"}, + (MAY, 17): {"GA"}, + (MAY, 30): {"CN"}, + (MAY, 31): {"CM"}, + (JUN, 7): {"CM"}, + (JUN, 9): {"MC", "RI"}, + (JUL, 25): {"CB", "GA"}, + (SEP, 8): {"AS", "EX"}, (SEP, 11): {"CT"}, (SEP, 15): {"CB"}, - (SEP, 17): {"ML"}, (OCT, 9): {"VC"}, + (OCT, 25): {"PV"}, + (OCT, 26): {"ML"}, + (OCT, 27): {"CE"}, + (DEC, 26): {"CT"}, } - prov_holidays = {prov: ES(observed=False, subdiv=prov) for prov in ES.subdivisions} - for prov, prov_holidays in prov_holidays.items(): - for year in range(2010, 2021): - self.assertEqual(date(year, DEC, 26) in prov_holidays, prov in {"CT", "IB"}) - - provs_mapping = { - 2015: {"CM", "MC", "MD", "ML", "NC", "PV", "VC"}, - 2016: {"MC", "ML", "PV", "VC"}, - 2017: {"PV"}, - 2018: {"GA", "MC", "NC", "PV", "VC"}, - 2019: {"GA", "MC", "NC", "PV", "VC"}, - 2020: {"CM", "GA", "MC", "NC", "PV", "VC"}, - } - if year <= 2014: - provs = {"AR", "CL", "CM", "EX", "GA", "MC", "MD", "ML", "NC", "PV", "VC"} - else: - provs = provs_mapping[year] - self.assertEqual(date(year, MAR, 19) in prov_holidays, prov in provs) - - for fest_date, fest_provs in province_days.items(): - dt = date(year, *fest_date) - self.assertEqual( - dt in prov_holidays, - prov in fest_provs, - f"Failed date `{dt:%Y-%m-%d}`, " f"province `{prov}`: {fest_provs}", - ) - - def test_variable_days_in_2022(self): + self._assertVariableDays(2012, province_days) + + def test_variable_holidays_2013(self): province_days = { + (JAN, 7): { + "AN", + "AR", + "AS", + "CB", + "CE", + "CL", + "CM", + "CN", + "EX", + "MC", + "MD", + "ML", + "NC", + }, (FEB, 28): {"AN"}, (MAR, 1): {"IB"}, - (MAR, 19): {"VC"}, - (APR, 14): { + (MAR, 18): {"MD", "VC"}, + (MAR, 19): {"MC", "ML", "VC"}, + (MAR, 28): { + "AN", + "AR", + "AS", + "CB", + "CE", + "CL", + "CM", + "CN", + "EX", + "GA", + "IB", + "MC", + "MD", + "ML", + "NC", + "PV", + "RI", + }, + (APR, 1): {"CB", "CT", "IB", "NC", "PV", "RI", "VC"}, + (APR, 23): {"AR", "CL"}, + (MAY, 2): {"MD"}, + (MAY, 17): {"GA"}, + (MAY, 30): {"CM", "CN"}, + (MAY, 31): {"CM"}, + (JUN, 10): {"RI"}, + (JUN, 24): {"CT", "GA"}, + (JUL, 25): {"CB", "GA", "NC", "PV"}, + (SEP, 9): {"AS", "EX"}, + (SEP, 11): {"CT"}, + (OCT, 9): {"VC"}, + (OCT, 15): {"CE", "ML"}, + (OCT, 25): {"PV"}, + (DEC, 9): {"AN", "AR", "AS", "CE", "CL", "EX", "MC", "RI"}, + (DEC, 26): {"CT", "IB"}, + } + self._assertVariableDays(2013, province_days) + + def test_variable_holidays_2014(self): + province_days = { + (FEB, 28): {"AN"}, + (MAR, 1): {"IB"}, + (MAR, 19): {"MC", "ML", "NC", "VC"}, + (APR, 17): { + "AN", + "AR", + "AS", + "CB", + "CE", + "CL", + "CM", + "CN", + "EX", + "GA", + "IB", + "MC", + "MD", + "ML", + "NC", + "PV", + "RI", + }, + (APR, 21): {"CM", "CT", "NC", "PV", "RI", "VC"}, + (APR, 23): {"AR", "CL"}, + (MAY, 2): {"MD"}, + (MAY, 17): {"GA"}, + (MAY, 30): {"CN"}, + (JUN, 9): {"MC", "RI"}, + (JUN, 19): {"CM", "MD"}, + (JUN, 24): {"CT"}, + (JUL, 25): {"CB", "GA"}, + (SEP, 8): {"AS", "EX"}, + (SEP, 11): {"CT"}, + (SEP, 15): {"CB"}, + (OCT, 4): {"ML"}, + (OCT, 6): {"CE"}, + (OCT, 9): {"VC"}, + (OCT, 13): {"AN", "AR", "AS", "CE", "CL", "EX"}, + (OCT, 25): {"PV"}, + (DEC, 26): {"CT", "IB"}, + } + self._assertVariableDays(2014, province_days) + + def test_variable_holidays_2015(self): + province_days = { + (FEB, 28): {"AN"}, + (MAR, 19): {"MC", "MD", "ML", "NC", "PV", "VC"}, + (MAR, 20): {"GA"}, + (APR, 2): { + "AN", + "AR", + "AS", + "CB", + "CE", + "CL", + "CM", + "CN", + "EX", + "GA", + "IB", + "MC", + "MD", + "ML", + "NC", + "PV", + "RI", + }, + (APR, 6): {"CB", "CM", "CT", "IB", "NC", "PV", "RI", "VC"}, + (APR, 23): {"AR", "CL"}, + (MAY, 2): {"MD"}, + (MAY, 30): {"CN"}, + (JUN, 4): {"CM"}, + (JUN, 9): {"MC", "RI"}, + (JUN, 24): {"CT"}, + (JUL, 25): {"GA", "NC", "PV"}, + (SEP, 8): {"AS", "EX"}, + (SEP, 11): {"CT"}, + (SEP, 15): {"CB"}, + (SEP, 25): {"CE", "ML"}, + (OCT, 9): {"VC"}, + (NOV, 2): {"AN", "AR", "AS", "CB", "CE", "CL", "CN", "EX", "GA", "IB"}, + (DEC, 7): {"AN", "AR", "AS", "CE", "CL", "CM", "EX", "IB", "MC", "ML", "RI", "VC"}, + (DEC, 26): {"CT"}, + } + self._assertVariableDays(2015, province_days) + + def test_variable_holidays_2016(self): + province_days = { + (FEB, 29): {"AN"}, + (MAR, 1): {"IB"}, + (MAR, 19): {"MC", "ML", "VC"}, + (MAR, 24): { "AN", "AR", "AS", @@ -116,35 +522,31 @@ def test_variable_days_in_2022(self): "RI", "VC", }, - (APR, 18): {"CT", "IB", "NC", "PV", "RI", "VC"}, + (MAR, 28): {"CT", "IB", "NC", "PV", "RI", "VC"}, (APR, 23): {"AR", "CL"}, - (MAY, 2): {"AN", "AS", "CL", "EX", "MC", "MD", "AR"}, - (MAY, 3): {"ML"}, + (MAY, 2): {"AN", "AR", "AS", "CL", "CN", "EX", "MD"}, + (MAY, 16): {"CT"}, (MAY, 17): {"GA"}, + (MAY, 26): {"CM"}, (MAY, 30): {"CN"}, (MAY, 31): {"CM"}, - (JUN, 6): {"CT"}, (JUN, 9): {"MC", "RI"}, - (JUN, 16): {"CM"}, - (JUN, 24): {"CT", "GA", "VC"}, - (JUL, 9): {"CE"}, - (JUL, 11): {"ML"}, - (JUL, 25): {"GA", "NC", "MD", "PV"}, + (JUN, 24): {"CT", "GA"}, + (JUL, 25): {"GA", "MD", "NC", "PV", "RI"}, (JUL, 28): {"CB"}, - (AUG, 5): {"CE"}, (SEP, 2): {"CE"}, - (SEP, 6): {"PV"}, - (SEP, 8): {"AS", "EX", "ML"}, + (SEP, 8): {"AS", "EX"}, + (SEP, 12): {"CE", "ML"}, (SEP, 15): {"CB"}, - (SEP, 17): {"ML"}, + (OCT, 7): {"PV"}, (DEC, 26): { "AN", "AR", "AS", "CB", + "CE", "CL", "CM", - "CN", "CT", "EX", "IB", @@ -152,25 +554,150 @@ def test_variable_days_in_2022(self): "MD", "ML", "NC", + "VC", + }, + } + self._assertVariableDays(2016, province_days) + + def test_variable_holidays_2017(self): + province_days = { + (JAN, 2): {"AN", "AR", "AS", "CL", "MC", "ML"}, + (FEB, 28): {"AN"}, + (MAR, 1): {"IB"}, + (MAR, 20): {"EX", "MD"}, + (APR, 13): { + "AN", + "AR", + "AS", + "CB", + "CE", + "CL", + "CM", + "CN", + "EX", + "GA", + "IB", + "MC", + "MD", + "ML", + "NC", + "PV", "RI", + "VC", }, + (APR, 17): {"CT", "IB", "NC", "PV", "RI", "VC"}, + (APR, 24): {"AR", "CL"}, + (MAY, 2): {"MD"}, + (MAY, 17): {"GA"}, + (MAY, 30): {"CN"}, + (MAY, 31): {"CM"}, + (JUN, 9): {"MC", "RI"}, + (JUN, 15): {"CM"}, + (JUN, 24): {"CT"}, + (JUL, 25): {"GA", "NC", "PV"}, + (JUL, 28): {"CB"}, + (SEP, 1): {"CE", "ML"}, + (SEP, 2): {"CE"}, + (SEP, 8): {"AS", "EX"}, + (SEP, 11): {"CT"}, + (SEP, 15): {"CB"}, + (OCT, 9): {"VC"}, + (DEC, 26): {"CT"}, } + self._assertVariableDays(2017, province_days) - observed_prov_holidays = {prov: ES(subdiv=prov) for prov in ES.subdivisions} + def test_variable_holidays_2018(self): + province_days = { + (FEB, 28): {"AN"}, + (MAR, 1): {"IB"}, + (MAR, 19): {"MC", "VC"}, + (MAR, 29): { + "AN", + "AR", + "AS", + "CE", + "CL", + "CM", + "CN", + "EX", + "GA", + "IB", + "MC", + "MD", + "ML", + "NC", + "PV", + "RI", + }, + (APR, 2): {"CT", "IB", "NC", "PV", "VC"}, + (APR, 23): {"AR", "CL"}, + (MAY, 2): {"MD"}, + (MAY, 17): {"GA"}, + (MAY, 30): {"CN"}, + (MAY, 31): {"CM"}, + (JUN, 9): {"MC", "RI"}, + (JUL, 25): {"GA"}, + (JUL, 28): {"CB"}, + (AUG, 22): {"CE", "ML"}, + (SEP, 8): {"AS", "EX"}, + (SEP, 11): {"CT"}, + (SEP, 15): {"CB"}, + (OCT, 9): {"VC"}, + (DEC, 26): {"CT"}, + } + self._assertVariableDays(2018, province_days) - for fest_date, fest_provs in province_days.items(): - for prov, prov_holidays in observed_prov_holidays.items(): - dt = date(2022, *fest_date) - self.assertEqual( - dt in prov_holidays, - prov in fest_provs, - f"Failed date `{dt:%Y-%m-%d}`, " f"province `{prov}`: {', '.join(fest_provs)}", - ) + def test_variable_holidays_2019(self): + province_days = { + (JAN, 7): {"AN", "AR", "AS", "CE", "CL", "CN", "EX", "MC", "MD", "ML", "NC"}, + (FEB, 28): {"AN"}, + (MAR, 1): {"IB"}, + (MAR, 19): {"GA", "MC", "NC", "PV", "VC"}, + (APR, 18): { + "AN", + "AR", + "AS", + "CB", + "CE", + "CL", + "CM", + "CN", + "EX", + "GA", + "IB", + "MC", + "MD", + "ML", + "NC", + "PV", + "RI", + }, + (APR, 22): {"CB", "CM", "CT", "IB", "NC", "PV", "RI", "VC"}, + (APR, 23): {"AR", "CL"}, + (MAY, 2): {"MD"}, + (MAY, 17): {"GA"}, + (MAY, 30): {"CN"}, + (MAY, 31): {"CM"}, + (JUN, 10): {"MC", "RI"}, + (JUN, 20): {"CM"}, + (JUN, 24): {"CT", "VC"}, + (JUL, 25): {"CB", "GA", "PV"}, + (AUG, 12): {"CE", "ML"}, + (SEP, 2): {"CE"}, + (SEP, 9): {"AS", "EX"}, + (SEP, 11): {"CT"}, + (OCT, 9): {"VC"}, + (DEC, 9): {"AN", "AR", "AS", "CB", "CL", "EX", "MD", "ML", "RI"}, + (DEC, 26): {"CT", "IB"}, + } + self._assertVariableDays(2019, province_days) - def test_variable_days_in_2023(self): + def test_variable_holidays_2020(self): province_days = { - (JAN, 2): {"AN", "AR", "AS", "CL", "MC"}, - (JAN, 6): { + (FEB, 28): {"AN"}, + (MAR, 13): {"ML"}, + (MAR, 19): {"CM", "GA", "MC", "NC", "PV", "VC"}, + (APR, 9): { "AN", "AR", "AS", @@ -179,7 +706,6 @@ def test_variable_days_in_2023(self): "CL", "CM", "CN", - "CT", "EX", "GA", "IB", @@ -189,11 +715,48 @@ def test_variable_days_in_2023(self): "NC", "PV", "RI", - "VC", }, - (FEB, 21): {"EX"}, - (MAR, 20): {"MD"}, - (APR, 6): { + (APR, 13): {"CB", "CM", "CT", "IB", "NC", "PV", "RI", "VC"}, + (APR, 23): {"AR", "CL"}, + (MAY, 2): {"MD"}, + (MAY, 30): {"CN"}, + (JUN, 9): {"MC", "RI"}, + (JUN, 11): {"CM"}, + (JUN, 24): {"CT", "GA", "VC"}, + (JUL, 25): {"GA", "PV"}, + (JUL, 28): {"CB"}, + (JUL, 31): {"CE", "ML"}, + (SEP, 2): {"CE"}, + (SEP, 8): {"AS", "EX"}, + (SEP, 11): {"CT"}, + (SEP, 15): {"CB"}, + (OCT, 9): {"VC"}, + (NOV, 2): {"AN", "AR", "AS", "CL", "EX", "MD"}, + (DEC, 7): { + "AN", + "AR", + "AS", + "CE", + "CL", + "CN", + "EX", + "IB", + "MC", + "MD", + "ML", + "NC", + "RI", + }, + (DEC, 26): {"CT", "IB"}, + } + self._assertVariableDays(2020, province_days) + + def test_variable_holidays_2021(self): + province_days = { + (MAR, 1): {"AN", "IB"}, + (MAR, 13): {"ML"}, + (MAR, 19): {"EX", "GA", "MC", "MD", "NC", "PV", "VC"}, + (APR, 1): { "AN", "AR", "AS", @@ -202,7 +765,6 @@ def test_variable_days_in_2023(self): "CL", "CM", "CN", - "CT", "EX", "GA", "IB", @@ -212,18 +774,33 @@ def test_variable_days_in_2023(self): "NC", "PV", "RI", - "VC", }, - (APR, 10): {"IB", "CT", "VC", "NC", "PV", "RI"}, - (APR, 21): {"ML"}, + (APR, 5): {"CT", "IB", "NC", "PV", "RI", "VC"}, + (APR, 23): {"AR", "CL"}, + (MAY, 3): {"MD"}, (MAY, 17): {"GA"}, - (JUN, 29): {"CE", "ML"}, + (MAY, 31): {"CM"}, + (JUN, 3): {"CM"}, + (JUN, 9): {"MC", "RI"}, (JUN, 24): {"CT", "VC"}, - (JUN, 8): {"CM"}, - (JUL, 25): {"NC", "PV", "GA", "CL"}, - (AUG, 5): {"CE"}, + (JUL, 20): {"CE"}, + (JUL, 21): {"ML"}, + (JUL, 28): {"CB"}, + (AUG, 16): {"AN", "AR", "AS", "CL", "CN"}, + (SEP, 2): {"CE"}, + (SEP, 8): {"AS", "EX"}, + (SEP, 11): {"CT"}, (SEP, 15): {"CB"}, - (DEC, 25): { + (OCT, 9): {"VC"}, + } + self._assertVariableDays(2021, province_days) + + def test_variable_holidays_2022(self): + province_days = { + (FEB, 28): {"AN"}, + (MAR, 1): {"IB"}, + (MAR, 19): {"VC"}, + (APR, 14): { "AN", "AR", "AS", @@ -232,7 +809,6 @@ def test_variable_days_in_2023(self): "CL", "CM", "CN", - "CT", "EX", "GA", "IB", @@ -244,21 +820,90 @@ def test_variable_days_in_2023(self): "RI", "VC", }, - (DEC, 26): {"CT"}, + (APR, 18): {"CT", "IB", "NC", "PV", "RI", "VC"}, + (APR, 23): {"AR", "CL"}, + (MAY, 2): {"AN", "AR", "AS", "CL", "EX", "MC", "MD"}, + (MAY, 3): {"ML"}, + (MAY, 17): {"GA"}, + (MAY, 30): {"CN"}, + (MAY, 31): {"CM"}, + (JUN, 6): {"CT"}, + (JUN, 9): {"MC", "RI"}, + (JUN, 16): {"CM"}, + (JUN, 24): {"CT", "GA", "VC"}, + (JUL, 9): {"CE"}, + (JUL, 11): {"ML"}, + (JUL, 25): {"GA", "MD", "NC", "PV"}, + (JUL, 28): {"CB"}, + (AUG, 5): {"CE"}, + (SEP, 2): {"CE"}, + (SEP, 6): {"PV"}, + (SEP, 8): {"AS", "EX"}, + (SEP, 15): {"CB"}, + (DEC, 26): { + "AN", + "AR", + "AS", + "CB", + "CL", + "CM", + "CN", + "CT", + "EX", + "IB", + "MC", + "MD", + "ML", + "NC", + "RI", + }, } + self._assertVariableDays(2022, province_days) - observed_prov_holidays = {prov: ES(subdiv=prov) for prov in ES.subdivisions} - - for fest_date, fest_provs in province_days.items(): - for prov, prov_holidays in observed_prov_holidays.items(): - dt = date(2023, *fest_date) - self.assertEqual( - dt in prov_holidays, - prov in fest_provs, - f"Failed date `{dt:%Y-%m-%d}`, " f"province `{prov}`: {', '.join(fest_provs)}", - ) - - def test_change_of_province_specific_days(self): - prov_holidays = ES(observed=False, subdiv="PV") - self.assertNonObservedHoliday(prov_holidays, "2011-10-25", "2012-10-25", "2013-10-25") - self.assertNoNonObservedHoliday(prov_holidays, "2010-10-25", "2014-10-25") + def test_variable_holidays_2023(self): + province_days = { + (JAN, 2): {"AN", "AR", "AS", "CL", "MC"}, + (FEB, 21): {"EX"}, + (FEB, 28): {"AN"}, + (MAR, 1): {"IB"}, + (MAR, 20): {"MD"}, + (APR, 6): { + "AN", + "AR", + "AS", + "CB", + "CE", + "CL", + "CM", + "CN", + "EX", + "GA", + "IB", + "MC", + "MD", + "ML", + "NC", + "PV", + "RI", + }, + (APR, 10): {"IB", "CT", "VC", "NC", "PV", "RI"}, + (APR, 21): {"ML"}, + (APR, 24): {"AR"}, + (MAY, 2): {"MD"}, + (MAY, 17): {"GA"}, + (MAY, 30): {"CN"}, + (MAY, 31): {"CM"}, + (JUN, 8): {"CM"}, + (JUN, 9): {"MC", "RI"}, + (JUN, 24): {"CT", "VC"}, + (JUN, 29): {"CE", "ML"}, + (JUL, 25): {"CL", "GA", "NC", "PV"}, + (JUL, 28): {"CB"}, + (AUG, 5): {"CE"}, + (SEP, 8): {"AS", "EX"}, + (SEP, 11): {"CT"}, + (SEP, 15): {"CB"}, + (OCT, 9): {"VC"}, + (DEC, 26): {"CT"}, + } + self._assertVariableDays(2023, province_days) From e145a3c25c9514187b893b8e0d9c9c388ce44bfc Mon Sep 17 00:00:00 2001 From: Arkadii Yakovets Date: Thu, 21 Sep 2023 17:58:33 -0700 Subject: [PATCH 04/10] Introduce holiday snapshots (#1478) --- Makefile | 3 + holidays/holiday_base.py | 2 +- scripts/generate_snapshots.py | 88 + snapshots/countries/AD.json | 2629 +++++++++ snapshots/countries/AE.json | 1305 +++++ snapshots/countries/AL.json | 1636 ++++++ snapshots/countries/AM.json | 746 +++ snapshots/countries/AO.json | 976 ++++ snapshots/countries/AR.json | 1361 +++++ snapshots/countries/AS.json | 1260 +++++ snapshots/countries/AT.json | 1600 ++++++ snapshots/countries/AU.json | 2176 ++++++++ snapshots/countries/AW.json | 1036 ++++ snapshots/countries/AZ.json | 1314 +++++ snapshots/countries/BA.json | 2414 ++++++++ snapshots/countries/BB.json | 1027 ++++ snapshots/countries/BD.json | 709 +++ snapshots/countries/BE.json | 1516 ++++++ snapshots/countries/BF.json | 1403 +++++ snapshots/countries/BG.json | 1003 ++++ snapshots/countries/BH.json | 1434 +++++ snapshots/countries/BI.json | 1233 +++++ snapshots/countries/BN.json | 1285 +++++ snapshots/countries/BO.json | 1956 +++++++ snapshots/countries/BR.json | 3542 ++++++++++++ snapshots/countries/BW.json | 1266 +++++ snapshots/countries/BY.json | 500 ++ snapshots/countries/BZ.json | 930 ++++ snapshots/countries/CA.json | 2036 +++++++ snapshots/countries/CH.json | 2626 +++++++++ snapshots/countries/CL.json | 1628 ++++++ snapshots/countries/CM.json | 1100 ++++ snapshots/countries/CN.json | 900 +++ snapshots/countries/CO.json | 1764 ++++++ snapshots/countries/CR.json | 1135 ++++ snapshots/countries/CU.json | 778 +++ snapshots/countries/CW.json | 1079 ++++ snapshots/countries/CY.json | 1608 ++++++ snapshots/countries/CZ.json | 1115 ++++ snapshots/countries/DE.json | 1092 ++++ snapshots/countries/DJ.json | 962 ++++ snapshots/countries/DK.json | 1086 ++++ snapshots/countries/DO.json | 1214 +++++ snapshots/countries/DZ.json | 1191 ++++ snapshots/countries/EC.json | 1254 +++++ snapshots/countries/EE.json | 1111 ++++ snapshots/countries/EG.json | 1759 ++++++ snapshots/countries/ES.json | 3219 +++++++++++ snapshots/countries/ET.json | 1484 +++++ snapshots/countries/FI.json | 1516 ++++++ snapshots/countries/FR.json | 2580 +++++++++ snapshots/countries/GA.json | 1116 ++++ snapshots/countries/GB.json | 1384 +++++ snapshots/countries/GE.json | 1015 ++++ snapshots/countries/GR.json | 1438 +++++ snapshots/countries/GT.json | 1113 ++++ snapshots/countries/GU.json | 1615 ++++++ snapshots/countries/HK.json | 1666 ++++++ snapshots/countries/HN.json | 1102 ++++ snapshots/countries/HR.json | 1205 ++++ snapshots/countries/HU.json | 1275 +++++ snapshots/countries/ID.json | 1360 +++++ snapshots/countries/IE.json | 984 ++++ snapshots/countries/IL.json | 3840 +++++++++++++ snapshots/countries/IM.json | 1005 ++++ snapshots/countries/IN.json | 2908 ++++++++++ snapshots/countries/IR.json | 1922 +++++++ snapshots/countries/IS.json | 1611 ++++++ snapshots/countries/IT.json | 9663 +++++++++++++++++++++++++++++++++ snapshots/countries/JM.json | 1059 ++++ snapshots/countries/JP.json | 1872 +++++++ snapshots/countries/KE.json | 883 +++ snapshots/countries/KG.json | 1548 ++++++ snapshots/countries/KH.json | 1277 +++++ snapshots/countries/KR.json | 1827 +++++++ snapshots/countries/KZ.json | 969 ++++ snapshots/countries/LI.json | 2223 ++++++++ snapshots/countries/LS.json | 604 +++ snapshots/countries/LT.json | 925 ++++ snapshots/countries/LU.json | 1042 ++++ snapshots/countries/LV.json | 855 +++ snapshots/countries/MA.json | 1609 ++++++ snapshots/countries/MC.json | 1302 +++++ snapshots/countries/MD.json | 726 +++ snapshots/countries/ME.json | 1409 +++++ snapshots/countries/MG.json | 1540 ++++++ snapshots/countries/MH.json | 1092 ++++ snapshots/countries/MK.json | 1108 ++++ snapshots/countries/MP.json | 1650 ++++++ snapshots/countries/MT.json | 943 ++++ snapshots/countries/MW.json | 696 +++ snapshots/countries/MX.json | 723 +++ snapshots/countries/MY.json | 4572 ++++++++++++++++ snapshots/countries/MZ.json | 765 +++ snapshots/countries/NA.json | 797 +++ snapshots/countries/NG.json | 1041 ++++ snapshots/countries/NI.json | 1084 ++++ snapshots/countries/NL.json | 1032 ++++ snapshots/countries/NO.json | 1205 ++++ snapshots/countries/NZ.json | 2110 +++++++ snapshots/countries/PA.json | 1334 +++++ snapshots/countries/PE.json | 1373 +++++ snapshots/countries/PH.json | 1906 +++++++ snapshots/countries/PK.json | 1451 +++++ snapshots/countries/PL.json | 1206 ++++ snapshots/countries/PR.json | 1678 ++++++ snapshots/countries/PT.json | 3381 ++++++++++++ snapshots/countries/PY.json | 1239 +++++ snapshots/countries/RO.json | 1238 +++++ snapshots/countries/RS.json | 1291 +++++ snapshots/countries/RU.json | 759 +++ snapshots/countries/SA.json | 1162 ++++ snapshots/countries/SE.json | 6579 ++++++++++++++++++++++ snapshots/countries/SG.json | 1276 +++++ snapshots/countries/SI.json | 778 +++ snapshots/countries/SK.json | 891 +++ snapshots/countries/SM.json | 1817 +++++++ snapshots/countries/SV.json | 1186 ++++ snapshots/countries/SZ.json | 1056 ++++ snapshots/countries/TD.json | 1129 ++++ snapshots/countries/TH.json | 2996 ++++++++++ snapshots/countries/TN.json | 1726 ++++++ snapshots/countries/TR.json | 1359 +++++ snapshots/countries/TW.json | 1084 ++++ snapshots/countries/UA.json | 516 ++ snapshots/countries/UK.json | 1384 +++++ snapshots/countries/UM.json | 1130 ++++ snapshots/countries/US.json | 5764 ++++++++++++++++++++ snapshots/countries/UY.json | 1851 +++++++ snapshots/countries/UZ.json | 911 ++++ snapshots/countries/VA.json | 1668 ++++++ snapshots/countries/VE.json | 1388 +++++ snapshots/countries/VI.json | 1900 +++++++ snapshots/countries/VN.json | 1186 ++++ snapshots/countries/VU.json | 1078 ++++ snapshots/countries/ZA.json | 1251 +++++ snapshots/countries/ZM.json | 1263 +++++ snapshots/countries/ZW.json | 853 +++ snapshots/financial/ECB.json | 608 +++ snapshots/financial/NYSE.json | 983 ++++ snapshots/financial/TAR.json | 608 +++ snapshots/financial/XNYS.json | 983 ++++ 142 files changed, 212516 insertions(+), 1 deletion(-) create mode 100755 scripts/generate_snapshots.py create mode 100644 snapshots/countries/AD.json create mode 100644 snapshots/countries/AE.json create mode 100644 snapshots/countries/AL.json create mode 100644 snapshots/countries/AM.json create mode 100644 snapshots/countries/AO.json create mode 100644 snapshots/countries/AR.json create mode 100644 snapshots/countries/AS.json create mode 100644 snapshots/countries/AT.json create mode 100644 snapshots/countries/AU.json create mode 100644 snapshots/countries/AW.json create mode 100644 snapshots/countries/AZ.json create mode 100644 snapshots/countries/BA.json create mode 100644 snapshots/countries/BB.json create mode 100644 snapshots/countries/BD.json create mode 100644 snapshots/countries/BE.json create mode 100644 snapshots/countries/BF.json create mode 100644 snapshots/countries/BG.json create mode 100644 snapshots/countries/BH.json create mode 100644 snapshots/countries/BI.json create mode 100644 snapshots/countries/BN.json create mode 100644 snapshots/countries/BO.json create mode 100644 snapshots/countries/BR.json create mode 100644 snapshots/countries/BW.json create mode 100644 snapshots/countries/BY.json create mode 100644 snapshots/countries/BZ.json create mode 100644 snapshots/countries/CA.json create mode 100644 snapshots/countries/CH.json create mode 100644 snapshots/countries/CL.json create mode 100644 snapshots/countries/CM.json create mode 100644 snapshots/countries/CN.json create mode 100644 snapshots/countries/CO.json create mode 100644 snapshots/countries/CR.json create mode 100644 snapshots/countries/CU.json create mode 100644 snapshots/countries/CW.json create mode 100644 snapshots/countries/CY.json create mode 100644 snapshots/countries/CZ.json create mode 100644 snapshots/countries/DE.json create mode 100644 snapshots/countries/DJ.json create mode 100644 snapshots/countries/DK.json create mode 100644 snapshots/countries/DO.json create mode 100644 snapshots/countries/DZ.json create mode 100644 snapshots/countries/EC.json create mode 100644 snapshots/countries/EE.json create mode 100644 snapshots/countries/EG.json create mode 100644 snapshots/countries/ES.json create mode 100644 snapshots/countries/ET.json create mode 100644 snapshots/countries/FI.json create mode 100644 snapshots/countries/FR.json create mode 100644 snapshots/countries/GA.json create mode 100644 snapshots/countries/GB.json create mode 100644 snapshots/countries/GE.json create mode 100644 snapshots/countries/GR.json create mode 100644 snapshots/countries/GT.json create mode 100644 snapshots/countries/GU.json create mode 100644 snapshots/countries/HK.json create mode 100644 snapshots/countries/HN.json create mode 100644 snapshots/countries/HR.json create mode 100644 snapshots/countries/HU.json create mode 100644 snapshots/countries/ID.json create mode 100644 snapshots/countries/IE.json create mode 100644 snapshots/countries/IL.json create mode 100644 snapshots/countries/IM.json create mode 100644 snapshots/countries/IN.json create mode 100644 snapshots/countries/IR.json create mode 100644 snapshots/countries/IS.json create mode 100644 snapshots/countries/IT.json create mode 100644 snapshots/countries/JM.json create mode 100644 snapshots/countries/JP.json create mode 100644 snapshots/countries/KE.json create mode 100644 snapshots/countries/KG.json create mode 100644 snapshots/countries/KH.json create mode 100644 snapshots/countries/KR.json create mode 100644 snapshots/countries/KZ.json create mode 100644 snapshots/countries/LI.json create mode 100644 snapshots/countries/LS.json create mode 100644 snapshots/countries/LT.json create mode 100644 snapshots/countries/LU.json create mode 100644 snapshots/countries/LV.json create mode 100644 snapshots/countries/MA.json create mode 100644 snapshots/countries/MC.json create mode 100644 snapshots/countries/MD.json create mode 100644 snapshots/countries/ME.json create mode 100644 snapshots/countries/MG.json create mode 100644 snapshots/countries/MH.json create mode 100644 snapshots/countries/MK.json create mode 100644 snapshots/countries/MP.json create mode 100644 snapshots/countries/MT.json create mode 100644 snapshots/countries/MW.json create mode 100644 snapshots/countries/MX.json create mode 100644 snapshots/countries/MY.json create mode 100644 snapshots/countries/MZ.json create mode 100644 snapshots/countries/NA.json create mode 100644 snapshots/countries/NG.json create mode 100644 snapshots/countries/NI.json create mode 100644 snapshots/countries/NL.json create mode 100644 snapshots/countries/NO.json create mode 100644 snapshots/countries/NZ.json create mode 100644 snapshots/countries/PA.json create mode 100644 snapshots/countries/PE.json create mode 100644 snapshots/countries/PH.json create mode 100644 snapshots/countries/PK.json create mode 100644 snapshots/countries/PL.json create mode 100644 snapshots/countries/PR.json create mode 100644 snapshots/countries/PT.json create mode 100644 snapshots/countries/PY.json create mode 100644 snapshots/countries/RO.json create mode 100644 snapshots/countries/RS.json create mode 100644 snapshots/countries/RU.json create mode 100644 snapshots/countries/SA.json create mode 100644 snapshots/countries/SE.json create mode 100644 snapshots/countries/SG.json create mode 100644 snapshots/countries/SI.json create mode 100644 snapshots/countries/SK.json create mode 100644 snapshots/countries/SM.json create mode 100644 snapshots/countries/SV.json create mode 100644 snapshots/countries/SZ.json create mode 100644 snapshots/countries/TD.json create mode 100644 snapshots/countries/TH.json create mode 100644 snapshots/countries/TN.json create mode 100644 snapshots/countries/TR.json create mode 100644 snapshots/countries/TW.json create mode 100644 snapshots/countries/UA.json create mode 100644 snapshots/countries/UK.json create mode 100644 snapshots/countries/UM.json create mode 100644 snapshots/countries/US.json create mode 100644 snapshots/countries/UY.json create mode 100644 snapshots/countries/UZ.json create mode 100644 snapshots/countries/VA.json create mode 100644 snapshots/countries/VE.json create mode 100644 snapshots/countries/VI.json create mode 100644 snapshots/countries/VN.json create mode 100644 snapshots/countries/VU.json create mode 100644 snapshots/countries/ZA.json create mode 100644 snapshots/countries/ZM.json create mode 100644 snapshots/countries/ZW.json create mode 100644 snapshots/financial/ECB.json create mode 100644 snapshots/financial/NYSE.json create mode 100644 snapshots/financial/TAR.json create mode 100644 snapshots/financial/XNYS.json diff --git a/Makefile b/Makefile index 880e49d53..48b625452 100644 --- a/Makefile +++ b/Makefile @@ -50,6 +50,9 @@ setup: pre-commit install --hook-type pre-push make l10n +snapshot: + scripts/generate_snapshots.py + test: scripts/l10n/generate_mo_files.py pytest --cov=. --cov-config=pyproject.toml --cov-report term --cov-report lcov --durations 10 --durations-min=0.75 --dist loadscope --no-cov-on-fail --numprocesses auto diff --git a/holidays/holiday_base.py b/holidays/holiday_base.py index 6e2b4658d..5c84b8da5 100644 --- a/holidays/holiday_base.py +++ b/holidays/holiday_base.py @@ -751,7 +751,7 @@ def _populate(self, year: int) -> None: self._add_substituted_holidays() def _populate_categories(self): - for category in self.categories: + for category in sorted(self.categories): # Populate items from the special holidays list for all categories. special_category_holidays = getattr(self, f"special_{category}_holidays", None) if special_category_holidays: diff --git a/scripts/generate_snapshots.py b/scripts/generate_snapshots.py new file mode 100755 index 000000000..a8d0d75ce --- /dev/null +++ b/scripts/generate_snapshots.py @@ -0,0 +1,88 @@ +#!/usr/bin/env python3 + +# python-holidays +# --------------- +# A fast, efficient Python library for generating country, province and state +# specific sets of holidays on the fly. It aims to make determining whether a +# specific date is a holiday as fast and flexible as possible. +# +# Authors: dr-prodigy (c) 2017-2023 +# ryanss (c) 2014-2017 +# Website: https://github.com/dr-prodigy/python-holidays +# License: MIT (see LICENSE file) + +# flake8: noqa: F402 + +import json +import sys +import warnings +from pathlib import Path + +sys.path.append(f"{Path.cwd()}") # Make holidays visible. + +import holidays +from holidays import HOLIDAY_NAME_DELIMITER, list_supported_countries, list_supported_financial + + +class SnapshotGenerator: + """Creates a snapshot of available holidays for supported entities.""" + + years = range(1950, 2051) + + @staticmethod + def save(snapshot, file_path): + with open(file_path, "w") as output: + output.write( + json.dumps({str(dt): name for dt, name in sorted(snapshot.items())}, indent=4) + ) + output.write("\n") # Get along with pre-commit. + + @staticmethod + def update_snapshot(snapshot, data): + for dt, name in data.items(): + holiday_names = set( + snapshot[dt].split(HOLIDAY_NAME_DELIMITER) if dt in snapshot else () + ) + holiday_names.update(name.split(HOLIDAY_NAME_DELIMITER)) + snapshot[dt] = HOLIDAY_NAME_DELIMITER.join(sorted(holiday_names)) + + def generate_country_snapshots(self): + """Generates country snapshots.""" + for country_code in list_supported_countries(): + country = getattr(holidays, country_code) + snapshot = {} + + for subdiv in (None,) + country.subdivisions: + self.update_snapshot( + snapshot, + holidays.country_holidays( + country_code, + subdiv=subdiv, + years=self.years, + categories=country.supported_categories, + language="en_US", + ), + ) + self.save(snapshot, f"snapshots/countries/{country_code}.json") + + def generate_financial_snapshots(self): + """Generates financial snapshots.""" + for market_code in list_supported_financial(): + self.save( + holidays.country_holidays( + market_code, + years=self.years, + language="en_US", + ), + f"snapshots/financial/{market_code}.json", + ) + + def run(self): + """Runs snapshot files generation process.""" + self.generate_country_snapshots() + self.generate_financial_snapshots() + + +if __name__ == "__main__": + warnings.simplefilter("ignore") + SnapshotGenerator().run() diff --git a/snapshots/countries/AD.json b/snapshots/countries/AD.json new file mode 100644 index 000000000..6b8ff5981 --- /dev/null +++ b/snapshots/countries/AD.json @@ -0,0 +1,2629 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-06": "Epiphany", + "1950-02-21": "Carnival", + "1950-03-14": "Constitution Day", + "1950-04-07": "Good Friday", + "1950-04-10": "Easter Monday", + "1950-05-01": "Labor Day", + "1950-05-29": "Whit Monday", + "1950-07-15": "Canillo Annual Festival", + "1950-07-16": "Canillo Annual Festival", + "1950-07-17": "Canillo Annual Festival", + "1950-07-25": "Escaldes-Engordany Annual Festival", + "1950-07-26": "Escaldes-Engordany Annual Festival", + "1950-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1950-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1950-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1950-07-31": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1950-08-05": "Andorra la Vella Annual Festival", + "1950-08-06": "Andorra la Vella Annual Festival", + "1950-08-07": "Andorra la Vella Annual Festival", + "1950-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1950-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1950-09-08": "National Day", + "1950-11-01": "All Saints' Day", + "1950-12-08": "Immaculate Conception Day", + "1950-12-25": "Christmas Day", + "1950-12-26": "Saint Stephen's Day", + "1951-01-01": "New Year's Day", + "1951-01-06": "Epiphany", + "1951-02-06": "Carnival", + "1951-03-14": "Constitution Day", + "1951-03-23": "Good Friday", + "1951-03-26": "Easter Monday", + "1951-05-01": "Labor Day", + "1951-05-14": "Whit Monday", + "1951-07-21": "Canillo Annual Festival", + "1951-07-22": "Canillo Annual Festival", + "1951-07-23": "Canillo Annual Festival", + "1951-07-25": "Escaldes-Engordany Annual Festival", + "1951-07-26": "Escaldes-Engordany Annual Festival", + "1951-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1951-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1951-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1951-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1951-08-04": "Andorra la Vella Annual Festival", + "1951-08-05": "Andorra la Vella Annual Festival", + "1951-08-06": "Andorra la Vella Annual Festival", + "1951-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1951-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1951-09-08": "National Day", + "1951-11-01": "All Saints' Day", + "1951-12-08": "Immaculate Conception Day", + "1951-12-25": "Christmas Day", + "1951-12-26": "Saint Stephen's Day", + "1952-01-01": "New Year's Day", + "1952-01-06": "Epiphany", + "1952-02-26": "Carnival", + "1952-03-14": "Constitution Day", + "1952-04-11": "Good Friday", + "1952-04-14": "Easter Monday", + "1952-05-01": "Labor Day", + "1952-06-02": "Whit Monday", + "1952-07-19": "Canillo Annual Festival", + "1952-07-20": "Canillo Annual Festival", + "1952-07-21": "Canillo Annual Festival", + "1952-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1952-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1952-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1952-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1952-08-02": "Andorra la Vella Annual Festival", + "1952-08-03": "Andorra la Vella Annual Festival", + "1952-08-04": "Andorra la Vella Annual Festival", + "1952-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1952-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1952-09-08": "National Day", + "1952-11-01": "All Saints' Day", + "1952-12-08": "Immaculate Conception Day", + "1952-12-25": "Christmas Day", + "1952-12-26": "Saint Stephen's Day", + "1953-01-01": "New Year's Day", + "1953-01-06": "Epiphany", + "1953-02-17": "Carnival", + "1953-03-14": "Constitution Day", + "1953-04-03": "Good Friday", + "1953-04-06": "Easter Monday", + "1953-05-01": "Labor Day", + "1953-05-25": "Whit Monday", + "1953-07-18": "Canillo Annual Festival", + "1953-07-19": "Canillo Annual Festival", + "1953-07-20": "Canillo Annual Festival", + "1953-07-24": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1953-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1953-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1953-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1953-08-01": "Andorra la Vella Annual Festival", + "1953-08-02": "Andorra la Vella Annual Festival", + "1953-08-03": "Andorra la Vella Annual Festival", + "1953-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1953-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1953-09-08": "National Day", + "1953-11-01": "All Saints' Day", + "1953-12-08": "Immaculate Conception Day", + "1953-12-25": "Christmas Day", + "1953-12-26": "Saint Stephen's Day", + "1954-01-01": "New Year's Day", + "1954-01-06": "Epiphany", + "1954-03-02": "Carnival", + "1954-03-14": "Constitution Day", + "1954-04-16": "Good Friday", + "1954-04-19": "Easter Monday", + "1954-05-01": "Labor Day", + "1954-06-07": "Whit Monday", + "1954-07-17": "Canillo Annual Festival", + "1954-07-18": "Canillo Annual Festival", + "1954-07-19": "Canillo Annual Festival", + "1954-07-23": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1954-07-24": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1954-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1954-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1954-08-07": "Andorra la Vella Annual Festival", + "1954-08-08": "Andorra la Vella Annual Festival", + "1954-08-09": "Andorra la Vella Annual Festival", + "1954-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1954-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1954-09-08": "National Day", + "1954-11-01": "All Saints' Day", + "1954-12-08": "Immaculate Conception Day", + "1954-12-25": "Christmas Day", + "1954-12-26": "Saint Stephen's Day", + "1955-01-01": "New Year's Day", + "1955-01-06": "Epiphany", + "1955-02-22": "Carnival", + "1955-03-14": "Constitution Day", + "1955-04-08": "Good Friday", + "1955-04-11": "Easter Monday", + "1955-05-01": "Labor Day", + "1955-05-30": "Whit Monday", + "1955-07-16": "Canillo Annual Festival", + "1955-07-17": "Canillo Annual Festival", + "1955-07-18": "Canillo Annual Festival", + "1955-07-25": "Escaldes-Engordany Annual Festival", + "1955-07-26": "Escaldes-Engordany Annual Festival", + "1955-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1955-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1955-07-31": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1955-08-01": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1955-08-06": "Andorra la Vella Annual Festival", + "1955-08-07": "Andorra la Vella Annual Festival", + "1955-08-08": "Andorra la Vella Annual Festival", + "1955-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1955-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1955-09-08": "National Day", + "1955-11-01": "All Saints' Day", + "1955-12-08": "Immaculate Conception Day", + "1955-12-25": "Christmas Day", + "1955-12-26": "Saint Stephen's Day", + "1956-01-01": "New Year's Day", + "1956-01-06": "Epiphany", + "1956-02-14": "Carnival", + "1956-03-14": "Constitution Day", + "1956-03-30": "Good Friday", + "1956-04-02": "Easter Monday", + "1956-05-01": "Labor Day", + "1956-05-21": "Whit Monday", + "1956-07-21": "Canillo Annual Festival", + "1956-07-22": "Canillo Annual Festival", + "1956-07-23": "Canillo Annual Festival", + "1956-07-25": "Escaldes-Engordany Annual Festival", + "1956-07-26": "Escaldes-Engordany Annual Festival", + "1956-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1956-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1956-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1956-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1956-08-04": "Andorra la Vella Annual Festival", + "1956-08-05": "Andorra la Vella Annual Festival", + "1956-08-06": "Andorra la Vella Annual Festival", + "1956-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1956-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1956-09-08": "National Day", + "1956-11-01": "All Saints' Day", + "1956-12-08": "Immaculate Conception Day", + "1956-12-25": "Christmas Day", + "1956-12-26": "Saint Stephen's Day", + "1957-01-01": "New Year's Day", + "1957-01-06": "Epiphany", + "1957-03-05": "Carnival", + "1957-03-14": "Constitution Day", + "1957-04-19": "Good Friday", + "1957-04-22": "Easter Monday", + "1957-05-01": "Labor Day", + "1957-06-10": "Whit Monday", + "1957-07-20": "Canillo Annual Festival", + "1957-07-21": "Canillo Annual Festival", + "1957-07-22": "Canillo Annual Festival", + "1957-07-25": "Escaldes-Engordany Annual Festival", + "1957-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1957-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1957-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1957-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1957-08-03": "Andorra la Vella Annual Festival", + "1957-08-04": "Andorra la Vella Annual Festival", + "1957-08-05": "Andorra la Vella Annual Festival", + "1957-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1957-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1957-09-08": "National Day", + "1957-11-01": "All Saints' Day", + "1957-12-08": "Immaculate Conception Day", + "1957-12-25": "Christmas Day", + "1957-12-26": "Saint Stephen's Day", + "1958-01-01": "New Year's Day", + "1958-01-06": "Epiphany", + "1958-02-18": "Carnival", + "1958-03-14": "Constitution Day", + "1958-04-04": "Good Friday", + "1958-04-07": "Easter Monday", + "1958-05-01": "Labor Day", + "1958-05-26": "Whit Monday", + "1958-07-19": "Canillo Annual Festival", + "1958-07-20": "Canillo Annual Festival", + "1958-07-21": "Canillo Annual Festival", + "1958-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1958-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1958-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1958-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1958-08-02": "Andorra la Vella Annual Festival", + "1958-08-03": "Andorra la Vella Annual Festival", + "1958-08-04": "Andorra la Vella Annual Festival", + "1958-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1958-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1958-09-08": "National Day", + "1958-11-01": "All Saints' Day", + "1958-12-08": "Immaculate Conception Day", + "1958-12-25": "Christmas Day", + "1958-12-26": "Saint Stephen's Day", + "1959-01-01": "New Year's Day", + "1959-01-06": "Epiphany", + "1959-02-10": "Carnival", + "1959-03-14": "Constitution Day", + "1959-03-27": "Good Friday", + "1959-03-30": "Easter Monday", + "1959-05-01": "Labor Day", + "1959-05-18": "Whit Monday", + "1959-07-18": "Canillo Annual Festival", + "1959-07-19": "Canillo Annual Festival", + "1959-07-20": "Canillo Annual Festival", + "1959-07-24": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1959-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1959-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1959-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1959-08-01": "Andorra la Vella Annual Festival", + "1959-08-02": "Andorra la Vella Annual Festival", + "1959-08-03": "Andorra la Vella Annual Festival", + "1959-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1959-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1959-09-08": "National Day", + "1959-11-01": "All Saints' Day", + "1959-12-08": "Immaculate Conception Day", + "1959-12-25": "Christmas Day", + "1959-12-26": "Saint Stephen's Day", + "1960-01-01": "New Year's Day", + "1960-01-06": "Epiphany", + "1960-03-01": "Carnival", + "1960-03-14": "Constitution Day", + "1960-04-15": "Good Friday", + "1960-04-18": "Easter Monday", + "1960-05-01": "Labor Day", + "1960-06-06": "Whit Monday", + "1960-07-16": "Canillo Annual Festival", + "1960-07-17": "Canillo Annual Festival", + "1960-07-18": "Canillo Annual Festival", + "1960-07-25": "Escaldes-Engordany Annual Festival", + "1960-07-26": "Escaldes-Engordany Annual Festival", + "1960-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1960-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1960-07-31": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1960-08-01": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1960-08-06": "Andorra la Vella Annual Festival", + "1960-08-07": "Andorra la Vella Annual Festival", + "1960-08-08": "Andorra la Vella Annual Festival", + "1960-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1960-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1960-09-08": "National Day", + "1960-11-01": "All Saints' Day", + "1960-12-08": "Immaculate Conception Day", + "1960-12-25": "Christmas Day", + "1960-12-26": "Saint Stephen's Day", + "1961-01-01": "New Year's Day", + "1961-01-06": "Epiphany", + "1961-02-14": "Carnival", + "1961-03-14": "Constitution Day", + "1961-03-31": "Good Friday", + "1961-04-03": "Easter Monday", + "1961-05-01": "Labor Day", + "1961-05-22": "Whit Monday", + "1961-07-15": "Canillo Annual Festival", + "1961-07-16": "Canillo Annual Festival", + "1961-07-17": "Canillo Annual Festival", + "1961-07-25": "Escaldes-Engordany Annual Festival", + "1961-07-26": "Escaldes-Engordany Annual Festival", + "1961-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1961-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1961-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1961-07-31": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1961-08-05": "Andorra la Vella Annual Festival", + "1961-08-06": "Andorra la Vella Annual Festival", + "1961-08-07": "Andorra la Vella Annual Festival", + "1961-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1961-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1961-09-08": "National Day", + "1961-11-01": "All Saints' Day", + "1961-12-08": "Immaculate Conception Day", + "1961-12-25": "Christmas Day", + "1961-12-26": "Saint Stephen's Day", + "1962-01-01": "New Year's Day", + "1962-01-06": "Epiphany", + "1962-03-06": "Carnival", + "1962-03-14": "Constitution Day", + "1962-04-20": "Good Friday", + "1962-04-23": "Easter Monday", + "1962-05-01": "Labor Day", + "1962-06-11": "Whit Monday", + "1962-07-21": "Canillo Annual Festival", + "1962-07-22": "Canillo Annual Festival", + "1962-07-23": "Canillo Annual Festival", + "1962-07-25": "Escaldes-Engordany Annual Festival", + "1962-07-26": "Escaldes-Engordany Annual Festival", + "1962-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1962-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1962-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1962-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1962-08-04": "Andorra la Vella Annual Festival", + "1962-08-05": "Andorra la Vella Annual Festival", + "1962-08-06": "Andorra la Vella Annual Festival", + "1962-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1962-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1962-09-08": "National Day", + "1962-11-01": "All Saints' Day", + "1962-12-08": "Immaculate Conception Day", + "1962-12-25": "Christmas Day", + "1962-12-26": "Saint Stephen's Day", + "1963-01-01": "New Year's Day", + "1963-01-06": "Epiphany", + "1963-02-26": "Carnival", + "1963-03-14": "Constitution Day", + "1963-04-12": "Good Friday", + "1963-04-15": "Easter Monday", + "1963-05-01": "Labor Day", + "1963-06-03": "Whit Monday", + "1963-07-20": "Canillo Annual Festival", + "1963-07-21": "Canillo Annual Festival", + "1963-07-22": "Canillo Annual Festival", + "1963-07-25": "Escaldes-Engordany Annual Festival", + "1963-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1963-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1963-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1963-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1963-08-03": "Andorra la Vella Annual Festival", + "1963-08-04": "Andorra la Vella Annual Festival", + "1963-08-05": "Andorra la Vella Annual Festival", + "1963-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1963-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1963-09-08": "National Day", + "1963-11-01": "All Saints' Day", + "1963-12-08": "Immaculate Conception Day", + "1963-12-25": "Christmas Day", + "1963-12-26": "Saint Stephen's Day", + "1964-01-01": "New Year's Day", + "1964-01-06": "Epiphany", + "1964-02-11": "Carnival", + "1964-03-14": "Constitution Day", + "1964-03-27": "Good Friday", + "1964-03-30": "Easter Monday", + "1964-05-01": "Labor Day", + "1964-05-18": "Whit Monday", + "1964-07-18": "Canillo Annual Festival", + "1964-07-19": "Canillo Annual Festival", + "1964-07-20": "Canillo Annual Festival", + "1964-07-24": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1964-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1964-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1964-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1964-08-01": "Andorra la Vella Annual Festival", + "1964-08-02": "Andorra la Vella Annual Festival", + "1964-08-03": "Andorra la Vella Annual Festival", + "1964-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1964-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1964-09-08": "National Day", + "1964-11-01": "All Saints' Day", + "1964-12-08": "Immaculate Conception Day", + "1964-12-25": "Christmas Day", + "1964-12-26": "Saint Stephen's Day", + "1965-01-01": "New Year's Day", + "1965-01-06": "Epiphany", + "1965-03-02": "Carnival", + "1965-03-14": "Constitution Day", + "1965-04-16": "Good Friday", + "1965-04-19": "Easter Monday", + "1965-05-01": "Labor Day", + "1965-06-07": "Whit Monday", + "1965-07-17": "Canillo Annual Festival", + "1965-07-18": "Canillo Annual Festival", + "1965-07-19": "Canillo Annual Festival", + "1965-07-23": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1965-07-24": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1965-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1965-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1965-08-07": "Andorra la Vella Annual Festival", + "1965-08-08": "Andorra la Vella Annual Festival", + "1965-08-09": "Andorra la Vella Annual Festival", + "1965-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1965-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1965-09-08": "National Day", + "1965-11-01": "All Saints' Day", + "1965-12-08": "Immaculate Conception Day", + "1965-12-25": "Christmas Day", + "1965-12-26": "Saint Stephen's Day", + "1966-01-01": "New Year's Day", + "1966-01-06": "Epiphany", + "1966-02-22": "Carnival", + "1966-03-14": "Constitution Day", + "1966-04-08": "Good Friday", + "1966-04-11": "Easter Monday", + "1966-05-01": "Labor Day", + "1966-05-30": "Whit Monday", + "1966-07-16": "Canillo Annual Festival", + "1966-07-17": "Canillo Annual Festival", + "1966-07-18": "Canillo Annual Festival", + "1966-07-25": "Escaldes-Engordany Annual Festival", + "1966-07-26": "Escaldes-Engordany Annual Festival", + "1966-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1966-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1966-07-31": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1966-08-01": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1966-08-06": "Andorra la Vella Annual Festival", + "1966-08-07": "Andorra la Vella Annual Festival", + "1966-08-08": "Andorra la Vella Annual Festival", + "1966-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1966-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1966-09-08": "National Day", + "1966-11-01": "All Saints' Day", + "1966-12-08": "Immaculate Conception Day", + "1966-12-25": "Christmas Day", + "1966-12-26": "Saint Stephen's Day", + "1967-01-01": "New Year's Day", + "1967-01-06": "Epiphany", + "1967-02-07": "Carnival", + "1967-03-14": "Constitution Day", + "1967-03-24": "Good Friday", + "1967-03-27": "Easter Monday", + "1967-05-01": "Labor Day", + "1967-05-15": "Whit Monday", + "1967-07-15": "Canillo Annual Festival", + "1967-07-16": "Canillo Annual Festival", + "1967-07-17": "Canillo Annual Festival", + "1967-07-25": "Escaldes-Engordany Annual Festival", + "1967-07-26": "Escaldes-Engordany Annual Festival", + "1967-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1967-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1967-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1967-07-31": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1967-08-05": "Andorra la Vella Annual Festival", + "1967-08-06": "Andorra la Vella Annual Festival", + "1967-08-07": "Andorra la Vella Annual Festival", + "1967-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1967-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1967-09-08": "National Day", + "1967-11-01": "All Saints' Day", + "1967-12-08": "Immaculate Conception Day", + "1967-12-25": "Christmas Day", + "1967-12-26": "Saint Stephen's Day", + "1968-01-01": "New Year's Day", + "1968-01-06": "Epiphany", + "1968-02-27": "Carnival", + "1968-03-14": "Constitution Day", + "1968-04-12": "Good Friday", + "1968-04-15": "Easter Monday", + "1968-05-01": "Labor Day", + "1968-06-03": "Whit Monday", + "1968-07-20": "Canillo Annual Festival", + "1968-07-21": "Canillo Annual Festival", + "1968-07-22": "Canillo Annual Festival", + "1968-07-25": "Escaldes-Engordany Annual Festival", + "1968-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1968-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1968-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1968-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1968-08-03": "Andorra la Vella Annual Festival", + "1968-08-04": "Andorra la Vella Annual Festival", + "1968-08-05": "Andorra la Vella Annual Festival", + "1968-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1968-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1968-09-08": "National Day", + "1968-11-01": "All Saints' Day", + "1968-12-08": "Immaculate Conception Day", + "1968-12-25": "Christmas Day", + "1968-12-26": "Saint Stephen's Day", + "1969-01-01": "New Year's Day", + "1969-01-06": "Epiphany", + "1969-02-18": "Carnival", + "1969-03-14": "Constitution Day", + "1969-04-04": "Good Friday", + "1969-04-07": "Easter Monday", + "1969-05-01": "Labor Day", + "1969-05-26": "Whit Monday", + "1969-07-19": "Canillo Annual Festival", + "1969-07-20": "Canillo Annual Festival", + "1969-07-21": "Canillo Annual Festival", + "1969-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1969-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1969-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1969-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1969-08-02": "Andorra la Vella Annual Festival", + "1969-08-03": "Andorra la Vella Annual Festival", + "1969-08-04": "Andorra la Vella Annual Festival", + "1969-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1969-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1969-09-08": "National Day", + "1969-11-01": "All Saints' Day", + "1969-12-08": "Immaculate Conception Day", + "1969-12-25": "Christmas Day", + "1969-12-26": "Saint Stephen's Day", + "1970-01-01": "New Year's Day", + "1970-01-06": "Epiphany", + "1970-02-10": "Carnival", + "1970-03-14": "Constitution Day", + "1970-03-27": "Good Friday", + "1970-03-30": "Easter Monday", + "1970-05-01": "Labor Day", + "1970-05-18": "Whit Monday", + "1970-07-18": "Canillo Annual Festival", + "1970-07-19": "Canillo Annual Festival", + "1970-07-20": "Canillo Annual Festival", + "1970-07-24": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1970-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1970-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1970-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1970-08-01": "Andorra la Vella Annual Festival", + "1970-08-02": "Andorra la Vella Annual Festival", + "1970-08-03": "Andorra la Vella Annual Festival", + "1970-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1970-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1970-09-08": "National Day", + "1970-11-01": "All Saints' Day", + "1970-12-08": "Immaculate Conception Day", + "1970-12-25": "Christmas Day", + "1970-12-26": "Saint Stephen's Day", + "1971-01-01": "New Year's Day", + "1971-01-06": "Epiphany", + "1971-02-23": "Carnival", + "1971-03-14": "Constitution Day", + "1971-04-09": "Good Friday", + "1971-04-12": "Easter Monday", + "1971-05-01": "Labor Day", + "1971-05-31": "Whit Monday", + "1971-07-17": "Canillo Annual Festival", + "1971-07-18": "Canillo Annual Festival", + "1971-07-19": "Canillo Annual Festival", + "1971-07-23": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1971-07-24": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1971-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1971-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1971-08-07": "Andorra la Vella Annual Festival", + "1971-08-08": "Andorra la Vella Annual Festival", + "1971-08-09": "Andorra la Vella Annual Festival", + "1971-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1971-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1971-09-08": "National Day", + "1971-11-01": "All Saints' Day", + "1971-12-08": "Immaculate Conception Day", + "1971-12-25": "Christmas Day", + "1971-12-26": "Saint Stephen's Day", + "1972-01-01": "New Year's Day", + "1972-01-06": "Epiphany", + "1972-02-15": "Carnival", + "1972-03-14": "Constitution Day", + "1972-03-31": "Good Friday", + "1972-04-03": "Easter Monday", + "1972-05-01": "Labor Day", + "1972-05-22": "Whit Monday", + "1972-07-15": "Canillo Annual Festival", + "1972-07-16": "Canillo Annual Festival", + "1972-07-17": "Canillo Annual Festival", + "1972-07-25": "Escaldes-Engordany Annual Festival", + "1972-07-26": "Escaldes-Engordany Annual Festival", + "1972-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1972-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1972-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1972-07-31": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1972-08-05": "Andorra la Vella Annual Festival", + "1972-08-06": "Andorra la Vella Annual Festival", + "1972-08-07": "Andorra la Vella Annual Festival", + "1972-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1972-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1972-09-08": "National Day", + "1972-11-01": "All Saints' Day", + "1972-12-08": "Immaculate Conception Day", + "1972-12-25": "Christmas Day", + "1972-12-26": "Saint Stephen's Day", + "1973-01-01": "New Year's Day", + "1973-01-06": "Epiphany", + "1973-03-06": "Carnival", + "1973-03-14": "Constitution Day", + "1973-04-20": "Good Friday", + "1973-04-23": "Easter Monday", + "1973-05-01": "Labor Day", + "1973-06-11": "Whit Monday", + "1973-07-21": "Canillo Annual Festival", + "1973-07-22": "Canillo Annual Festival", + "1973-07-23": "Canillo Annual Festival", + "1973-07-25": "Escaldes-Engordany Annual Festival", + "1973-07-26": "Escaldes-Engordany Annual Festival", + "1973-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1973-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1973-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1973-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1973-08-04": "Andorra la Vella Annual Festival", + "1973-08-05": "Andorra la Vella Annual Festival", + "1973-08-06": "Andorra la Vella Annual Festival", + "1973-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1973-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1973-09-08": "National Day", + "1973-11-01": "All Saints' Day", + "1973-12-08": "Immaculate Conception Day", + "1973-12-25": "Christmas Day", + "1973-12-26": "Saint Stephen's Day", + "1974-01-01": "New Year's Day", + "1974-01-06": "Epiphany", + "1974-02-26": "Carnival", + "1974-03-14": "Constitution Day", + "1974-04-12": "Good Friday", + "1974-04-15": "Easter Monday", + "1974-05-01": "Labor Day", + "1974-06-03": "Whit Monday", + "1974-07-20": "Canillo Annual Festival", + "1974-07-21": "Canillo Annual Festival", + "1974-07-22": "Canillo Annual Festival", + "1974-07-25": "Escaldes-Engordany Annual Festival", + "1974-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1974-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1974-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1974-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1974-08-03": "Andorra la Vella Annual Festival", + "1974-08-04": "Andorra la Vella Annual Festival", + "1974-08-05": "Andorra la Vella Annual Festival", + "1974-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1974-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1974-09-08": "National Day", + "1974-11-01": "All Saints' Day", + "1974-12-08": "Immaculate Conception Day", + "1974-12-25": "Christmas Day", + "1974-12-26": "Saint Stephen's Day", + "1975-01-01": "New Year's Day", + "1975-01-06": "Epiphany", + "1975-02-11": "Carnival", + "1975-03-14": "Constitution Day", + "1975-03-28": "Good Friday", + "1975-03-31": "Easter Monday", + "1975-05-01": "Labor Day", + "1975-05-19": "Whit Monday", + "1975-07-19": "Canillo Annual Festival", + "1975-07-20": "Canillo Annual Festival", + "1975-07-21": "Canillo Annual Festival", + "1975-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1975-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1975-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1975-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1975-08-02": "Andorra la Vella Annual Festival", + "1975-08-03": "Andorra la Vella Annual Festival", + "1975-08-04": "Andorra la Vella Annual Festival", + "1975-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1975-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1975-09-08": "National Day", + "1975-11-01": "All Saints' Day", + "1975-12-08": "Immaculate Conception Day", + "1975-12-25": "Christmas Day", + "1975-12-26": "Saint Stephen's Day", + "1976-01-01": "New Year's Day", + "1976-01-06": "Epiphany", + "1976-03-02": "Carnival", + "1976-03-14": "Constitution Day", + "1976-04-16": "Good Friday", + "1976-04-19": "Easter Monday", + "1976-05-01": "Labor Day", + "1976-06-07": "Whit Monday", + "1976-07-17": "Canillo Annual Festival", + "1976-07-18": "Canillo Annual Festival", + "1976-07-19": "Canillo Annual Festival", + "1976-07-23": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1976-07-24": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1976-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1976-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1976-08-07": "Andorra la Vella Annual Festival", + "1976-08-08": "Andorra la Vella Annual Festival", + "1976-08-09": "Andorra la Vella Annual Festival", + "1976-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1976-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1976-09-08": "National Day", + "1976-11-01": "All Saints' Day", + "1976-12-08": "Immaculate Conception Day", + "1976-12-25": "Christmas Day", + "1976-12-26": "Saint Stephen's Day", + "1977-01-01": "New Year's Day", + "1977-01-06": "Epiphany", + "1977-02-22": "Carnival", + "1977-03-14": "Constitution Day", + "1977-04-08": "Good Friday", + "1977-04-11": "Easter Monday", + "1977-05-01": "Labor Day", + "1977-05-30": "Whit Monday", + "1977-07-16": "Canillo Annual Festival", + "1977-07-17": "Canillo Annual Festival", + "1977-07-18": "Canillo Annual Festival", + "1977-07-25": "Escaldes-Engordany Annual Festival", + "1977-07-26": "Escaldes-Engordany Annual Festival", + "1977-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1977-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1977-07-31": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1977-08-01": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1977-08-06": "Andorra la Vella Annual Festival", + "1977-08-07": "Andorra la Vella Annual Festival", + "1977-08-08": "Andorra la Vella Annual Festival", + "1977-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1977-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1977-09-08": "National Day", + "1977-11-01": "All Saints' Day", + "1977-12-08": "Immaculate Conception Day", + "1977-12-25": "Christmas Day", + "1977-12-26": "Saint Stephen's Day", + "1978-01-01": "New Year's Day", + "1978-01-06": "Epiphany", + "1978-02-07": "Carnival", + "1978-03-14": "Constitution Day", + "1978-03-24": "Good Friday", + "1978-03-27": "Easter Monday", + "1978-05-01": "Labor Day", + "1978-05-15": "Whit Monday", + "1978-07-15": "Canillo Annual Festival", + "1978-07-16": "Canillo Annual Festival", + "1978-07-17": "Canillo Annual Festival", + "1978-07-25": "Escaldes-Engordany Annual Festival", + "1978-07-26": "Escaldes-Engordany Annual Festival", + "1978-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1978-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1978-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1978-07-31": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1978-08-05": "Andorra la Vella Annual Festival", + "1978-08-06": "Andorra la Vella Annual Festival", + "1978-08-07": "Andorra la Vella Annual Festival", + "1978-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1978-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1978-09-08": "National Day", + "1978-11-01": "All Saints' Day", + "1978-12-08": "Immaculate Conception Day", + "1978-12-25": "Christmas Day", + "1978-12-26": "Saint Stephen's Day", + "1979-01-01": "New Year's Day", + "1979-01-06": "Epiphany", + "1979-02-27": "Carnival", + "1979-03-14": "Constitution Day", + "1979-04-13": "Good Friday", + "1979-04-16": "Easter Monday", + "1979-05-01": "Labor Day", + "1979-06-04": "Whit Monday", + "1979-07-21": "Canillo Annual Festival", + "1979-07-22": "Canillo Annual Festival", + "1979-07-23": "Canillo Annual Festival", + "1979-07-25": "Escaldes-Engordany Annual Festival", + "1979-07-26": "Escaldes-Engordany Annual Festival", + "1979-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1979-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1979-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1979-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1979-08-04": "Andorra la Vella Annual Festival", + "1979-08-05": "Andorra la Vella Annual Festival", + "1979-08-06": "Andorra la Vella Annual Festival", + "1979-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1979-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1979-09-08": "National Day", + "1979-11-01": "All Saints' Day", + "1979-12-08": "Immaculate Conception Day", + "1979-12-25": "Christmas Day", + "1979-12-26": "Saint Stephen's Day", + "1980-01-01": "New Year's Day", + "1980-01-06": "Epiphany", + "1980-02-19": "Carnival", + "1980-03-14": "Constitution Day", + "1980-04-04": "Good Friday", + "1980-04-07": "Easter Monday", + "1980-05-01": "Labor Day", + "1980-05-26": "Whit Monday", + "1980-07-19": "Canillo Annual Festival", + "1980-07-20": "Canillo Annual Festival", + "1980-07-21": "Canillo Annual Festival", + "1980-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1980-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1980-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1980-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1980-08-02": "Andorra la Vella Annual Festival", + "1980-08-03": "Andorra la Vella Annual Festival", + "1980-08-04": "Andorra la Vella Annual Festival", + "1980-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1980-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1980-09-08": "National Day", + "1980-11-01": "All Saints' Day", + "1980-12-08": "Immaculate Conception Day", + "1980-12-25": "Christmas Day", + "1980-12-26": "Saint Stephen's Day", + "1981-01-01": "New Year's Day", + "1981-01-06": "Epiphany", + "1981-03-03": "Carnival", + "1981-03-14": "Constitution Day", + "1981-04-17": "Good Friday", + "1981-04-20": "Easter Monday", + "1981-05-01": "Labor Day", + "1981-06-08": "Whit Monday", + "1981-07-18": "Canillo Annual Festival", + "1981-07-19": "Canillo Annual Festival", + "1981-07-20": "Canillo Annual Festival", + "1981-07-24": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1981-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1981-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1981-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1981-08-01": "Andorra la Vella Annual Festival", + "1981-08-02": "Andorra la Vella Annual Festival", + "1981-08-03": "Andorra la Vella Annual Festival", + "1981-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1981-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1981-09-08": "National Day", + "1981-11-01": "All Saints' Day", + "1981-12-08": "Immaculate Conception Day", + "1981-12-25": "Christmas Day", + "1981-12-26": "Saint Stephen's Day", + "1982-01-01": "New Year's Day", + "1982-01-06": "Epiphany", + "1982-02-23": "Carnival", + "1982-03-14": "Constitution Day", + "1982-04-09": "Good Friday", + "1982-04-12": "Easter Monday", + "1982-05-01": "Labor Day", + "1982-05-31": "Whit Monday", + "1982-07-17": "Canillo Annual Festival", + "1982-07-18": "Canillo Annual Festival", + "1982-07-19": "Canillo Annual Festival", + "1982-07-23": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1982-07-24": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1982-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1982-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1982-08-07": "Andorra la Vella Annual Festival", + "1982-08-08": "Andorra la Vella Annual Festival", + "1982-08-09": "Andorra la Vella Annual Festival", + "1982-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1982-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1982-09-08": "National Day", + "1982-11-01": "All Saints' Day", + "1982-12-08": "Immaculate Conception Day", + "1982-12-25": "Christmas Day", + "1982-12-26": "Saint Stephen's Day", + "1983-01-01": "New Year's Day", + "1983-01-06": "Epiphany", + "1983-02-15": "Carnival", + "1983-03-14": "Constitution Day", + "1983-04-01": "Good Friday", + "1983-04-04": "Easter Monday", + "1983-05-01": "Labor Day", + "1983-05-23": "Whit Monday", + "1983-07-16": "Canillo Annual Festival", + "1983-07-17": "Canillo Annual Festival", + "1983-07-18": "Canillo Annual Festival", + "1983-07-25": "Escaldes-Engordany Annual Festival", + "1983-07-26": "Escaldes-Engordany Annual Festival", + "1983-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1983-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1983-07-31": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1983-08-01": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1983-08-06": "Andorra la Vella Annual Festival", + "1983-08-07": "Andorra la Vella Annual Festival", + "1983-08-08": "Andorra la Vella Annual Festival", + "1983-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1983-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1983-09-08": "National Day", + "1983-11-01": "All Saints' Day", + "1983-12-08": "Immaculate Conception Day", + "1983-12-25": "Christmas Day", + "1983-12-26": "Saint Stephen's Day", + "1984-01-01": "New Year's Day", + "1984-01-06": "Epiphany", + "1984-03-06": "Carnival", + "1984-03-14": "Constitution Day", + "1984-04-20": "Good Friday", + "1984-04-23": "Easter Monday", + "1984-05-01": "Labor Day", + "1984-06-11": "Whit Monday", + "1984-07-21": "Canillo Annual Festival", + "1984-07-22": "Canillo Annual Festival", + "1984-07-23": "Canillo Annual Festival", + "1984-07-25": "Escaldes-Engordany Annual Festival", + "1984-07-26": "Escaldes-Engordany Annual Festival", + "1984-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1984-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1984-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1984-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1984-08-04": "Andorra la Vella Annual Festival", + "1984-08-05": "Andorra la Vella Annual Festival", + "1984-08-06": "Andorra la Vella Annual Festival", + "1984-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1984-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1984-09-08": "National Day", + "1984-11-01": "All Saints' Day", + "1984-12-08": "Immaculate Conception Day", + "1984-12-25": "Christmas Day", + "1984-12-26": "Saint Stephen's Day", + "1985-01-01": "New Year's Day", + "1985-01-06": "Epiphany", + "1985-02-19": "Carnival", + "1985-03-14": "Constitution Day", + "1985-04-05": "Good Friday", + "1985-04-08": "Easter Monday", + "1985-05-01": "Labor Day", + "1985-05-27": "Whit Monday", + "1985-07-20": "Canillo Annual Festival", + "1985-07-21": "Canillo Annual Festival", + "1985-07-22": "Canillo Annual Festival", + "1985-07-25": "Escaldes-Engordany Annual Festival", + "1985-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1985-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1985-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1985-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1985-08-03": "Andorra la Vella Annual Festival", + "1985-08-04": "Andorra la Vella Annual Festival", + "1985-08-05": "Andorra la Vella Annual Festival", + "1985-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1985-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1985-09-08": "National Day", + "1985-11-01": "All Saints' Day", + "1985-12-08": "Immaculate Conception Day", + "1985-12-25": "Christmas Day", + "1985-12-26": "Saint Stephen's Day", + "1986-01-01": "New Year's Day", + "1986-01-06": "Epiphany", + "1986-02-11": "Carnival", + "1986-03-14": "Constitution Day", + "1986-03-28": "Good Friday", + "1986-03-31": "Easter Monday", + "1986-05-01": "Labor Day", + "1986-05-19": "Whit Monday", + "1986-07-19": "Canillo Annual Festival", + "1986-07-20": "Canillo Annual Festival", + "1986-07-21": "Canillo Annual Festival", + "1986-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1986-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1986-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1986-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1986-08-02": "Andorra la Vella Annual Festival", + "1986-08-03": "Andorra la Vella Annual Festival", + "1986-08-04": "Andorra la Vella Annual Festival", + "1986-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1986-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1986-09-08": "National Day", + "1986-11-01": "All Saints' Day", + "1986-12-08": "Immaculate Conception Day", + "1986-12-25": "Christmas Day", + "1986-12-26": "Saint Stephen's Day", + "1987-01-01": "New Year's Day", + "1987-01-06": "Epiphany", + "1987-03-03": "Carnival", + "1987-03-14": "Constitution Day", + "1987-04-17": "Good Friday", + "1987-04-20": "Easter Monday", + "1987-05-01": "Labor Day", + "1987-06-08": "Whit Monday", + "1987-07-18": "Canillo Annual Festival", + "1987-07-19": "Canillo Annual Festival", + "1987-07-20": "Canillo Annual Festival", + "1987-07-24": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1987-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1987-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1987-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1987-08-01": "Andorra la Vella Annual Festival", + "1987-08-02": "Andorra la Vella Annual Festival", + "1987-08-03": "Andorra la Vella Annual Festival", + "1987-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1987-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1987-09-08": "National Day", + "1987-11-01": "All Saints' Day", + "1987-12-08": "Immaculate Conception Day", + "1987-12-25": "Christmas Day", + "1987-12-26": "Saint Stephen's Day", + "1988-01-01": "New Year's Day", + "1988-01-06": "Epiphany", + "1988-02-16": "Carnival", + "1988-03-14": "Constitution Day", + "1988-04-01": "Good Friday", + "1988-04-04": "Easter Monday", + "1988-05-01": "Labor Day", + "1988-05-23": "Whit Monday", + "1988-07-16": "Canillo Annual Festival", + "1988-07-17": "Canillo Annual Festival", + "1988-07-18": "Canillo Annual Festival", + "1988-07-25": "Escaldes-Engordany Annual Festival", + "1988-07-26": "Escaldes-Engordany Annual Festival", + "1988-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1988-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1988-07-31": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1988-08-01": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1988-08-06": "Andorra la Vella Annual Festival", + "1988-08-07": "Andorra la Vella Annual Festival", + "1988-08-08": "Andorra la Vella Annual Festival", + "1988-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1988-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1988-09-08": "National Day", + "1988-11-01": "All Saints' Day", + "1988-12-08": "Immaculate Conception Day", + "1988-12-25": "Christmas Day", + "1988-12-26": "Saint Stephen's Day", + "1989-01-01": "New Year's Day", + "1989-01-06": "Epiphany", + "1989-02-07": "Carnival", + "1989-03-14": "Constitution Day", + "1989-03-24": "Good Friday", + "1989-03-27": "Easter Monday", + "1989-05-01": "Labor Day", + "1989-05-15": "Whit Monday", + "1989-07-15": "Canillo Annual Festival", + "1989-07-16": "Canillo Annual Festival", + "1989-07-17": "Canillo Annual Festival", + "1989-07-25": "Escaldes-Engordany Annual Festival", + "1989-07-26": "Escaldes-Engordany Annual Festival", + "1989-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1989-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1989-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1989-07-31": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1989-08-05": "Andorra la Vella Annual Festival", + "1989-08-06": "Andorra la Vella Annual Festival", + "1989-08-07": "Andorra la Vella Annual Festival", + "1989-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1989-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1989-09-08": "National Day", + "1989-11-01": "All Saints' Day", + "1989-12-08": "Immaculate Conception Day", + "1989-12-25": "Christmas Day", + "1989-12-26": "Saint Stephen's Day", + "1990-01-01": "New Year's Day", + "1990-01-06": "Epiphany", + "1990-02-27": "Carnival", + "1990-03-14": "Constitution Day", + "1990-04-13": "Good Friday", + "1990-04-16": "Easter Monday", + "1990-05-01": "Labor Day", + "1990-06-04": "Whit Monday", + "1990-07-21": "Canillo Annual Festival", + "1990-07-22": "Canillo Annual Festival", + "1990-07-23": "Canillo Annual Festival", + "1990-07-25": "Escaldes-Engordany Annual Festival", + "1990-07-26": "Escaldes-Engordany Annual Festival", + "1990-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1990-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1990-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1990-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1990-08-04": "Andorra la Vella Annual Festival", + "1990-08-05": "Andorra la Vella Annual Festival", + "1990-08-06": "Andorra la Vella Annual Festival", + "1990-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1990-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1990-09-08": "National Day", + "1990-11-01": "All Saints' Day", + "1990-12-08": "Immaculate Conception Day", + "1990-12-25": "Christmas Day", + "1990-12-26": "Saint Stephen's Day", + "1991-01-01": "New Year's Day", + "1991-01-06": "Epiphany", + "1991-02-12": "Carnival", + "1991-03-14": "Constitution Day", + "1991-03-29": "Good Friday", + "1991-04-01": "Easter Monday", + "1991-05-01": "Labor Day", + "1991-05-20": "Whit Monday", + "1991-07-20": "Canillo Annual Festival", + "1991-07-21": "Canillo Annual Festival", + "1991-07-22": "Canillo Annual Festival", + "1991-07-25": "Escaldes-Engordany Annual Festival", + "1991-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1991-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1991-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1991-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1991-08-03": "Andorra la Vella Annual Festival", + "1991-08-04": "Andorra la Vella Annual Festival", + "1991-08-05": "Andorra la Vella Annual Festival", + "1991-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1991-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1991-09-08": "National Day", + "1991-11-01": "All Saints' Day", + "1991-12-08": "Immaculate Conception Day", + "1991-12-25": "Christmas Day", + "1991-12-26": "Saint Stephen's Day", + "1992-01-01": "New Year's Day", + "1992-01-06": "Epiphany", + "1992-03-03": "Carnival", + "1992-03-14": "Constitution Day", + "1992-04-17": "Good Friday", + "1992-04-20": "Easter Monday", + "1992-05-01": "Labor Day", + "1992-06-08": "Whit Monday", + "1992-07-18": "Canillo Annual Festival", + "1992-07-19": "Canillo Annual Festival", + "1992-07-20": "Canillo Annual Festival", + "1992-07-24": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1992-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1992-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1992-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1992-08-01": "Andorra la Vella Annual Festival", + "1992-08-02": "Andorra la Vella Annual Festival", + "1992-08-03": "Andorra la Vella Annual Festival", + "1992-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1992-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1992-09-08": "National Day", + "1992-11-01": "All Saints' Day", + "1992-12-08": "Immaculate Conception Day", + "1992-12-25": "Christmas Day", + "1992-12-26": "Saint Stephen's Day", + "1993-01-01": "New Year's Day", + "1993-01-06": "Epiphany", + "1993-02-23": "Carnival", + "1993-03-14": "Constitution Day", + "1993-04-09": "Good Friday", + "1993-04-12": "Easter Monday", + "1993-05-01": "Labor Day", + "1993-05-31": "Whit Monday", + "1993-07-17": "Canillo Annual Festival", + "1993-07-18": "Canillo Annual Festival", + "1993-07-19": "Canillo Annual Festival", + "1993-07-23": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1993-07-24": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1993-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1993-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1993-08-07": "Andorra la Vella Annual Festival", + "1993-08-08": "Andorra la Vella Annual Festival", + "1993-08-09": "Andorra la Vella Annual Festival", + "1993-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1993-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1993-09-08": "National Day", + "1993-11-01": "All Saints' Day", + "1993-12-08": "Immaculate Conception Day", + "1993-12-25": "Christmas Day", + "1993-12-26": "Saint Stephen's Day", + "1994-01-01": "New Year's Day", + "1994-01-06": "Epiphany", + "1994-02-15": "Carnival", + "1994-03-14": "Constitution Day", + "1994-04-01": "Good Friday", + "1994-04-04": "Easter Monday", + "1994-05-01": "Labor Day", + "1994-05-23": "Whit Monday", + "1994-07-16": "Canillo Annual Festival", + "1994-07-17": "Canillo Annual Festival", + "1994-07-18": "Canillo Annual Festival", + "1994-07-25": "Escaldes-Engordany Annual Festival", + "1994-07-26": "Escaldes-Engordany Annual Festival", + "1994-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1994-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1994-07-31": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1994-08-01": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1994-08-06": "Andorra la Vella Annual Festival", + "1994-08-07": "Andorra la Vella Annual Festival", + "1994-08-08": "Andorra la Vella Annual Festival", + "1994-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1994-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1994-09-08": "National Day", + "1994-11-01": "All Saints' Day", + "1994-12-08": "Immaculate Conception Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Saint Stephen's Day", + "1995-01-01": "New Year's Day", + "1995-01-06": "Epiphany", + "1995-02-28": "Carnival", + "1995-03-14": "Constitution Day", + "1995-04-14": "Good Friday", + "1995-04-17": "Easter Monday", + "1995-05-01": "Labor Day", + "1995-06-05": "Whit Monday", + "1995-07-15": "Canillo Annual Festival", + "1995-07-16": "Canillo Annual Festival", + "1995-07-17": "Canillo Annual Festival", + "1995-07-25": "Escaldes-Engordany Annual Festival", + "1995-07-26": "Escaldes-Engordany Annual Festival", + "1995-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1995-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1995-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1995-07-31": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1995-08-05": "Andorra la Vella Annual Festival", + "1995-08-06": "Andorra la Vella Annual Festival", + "1995-08-07": "Andorra la Vella Annual Festival", + "1995-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1995-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1995-09-08": "National Day", + "1995-11-01": "All Saints' Day", + "1995-12-08": "Immaculate Conception Day", + "1995-12-25": "Christmas Day", + "1995-12-26": "Saint Stephen's Day", + "1996-01-01": "New Year's Day", + "1996-01-06": "Epiphany", + "1996-02-20": "Carnival", + "1996-03-14": "Constitution Day", + "1996-04-05": "Good Friday", + "1996-04-08": "Easter Monday", + "1996-05-01": "Labor Day", + "1996-05-27": "Whit Monday", + "1996-07-20": "Canillo Annual Festival", + "1996-07-21": "Canillo Annual Festival", + "1996-07-22": "Canillo Annual Festival", + "1996-07-25": "Escaldes-Engordany Annual Festival", + "1996-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1996-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1996-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1996-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1996-08-03": "Andorra la Vella Annual Festival", + "1996-08-04": "Andorra la Vella Annual Festival", + "1996-08-05": "Andorra la Vella Annual Festival", + "1996-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1996-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1996-09-08": "National Day", + "1996-11-01": "All Saints' Day", + "1996-12-08": "Immaculate Conception Day", + "1996-12-25": "Christmas Day", + "1996-12-26": "Saint Stephen's Day", + "1997-01-01": "New Year's Day", + "1997-01-06": "Epiphany", + "1997-02-11": "Carnival", + "1997-03-14": "Constitution Day", + "1997-03-28": "Good Friday", + "1997-03-31": "Easter Monday", + "1997-05-01": "Labor Day", + "1997-05-19": "Whit Monday", + "1997-07-19": "Canillo Annual Festival", + "1997-07-20": "Canillo Annual Festival", + "1997-07-21": "Canillo Annual Festival", + "1997-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1997-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1997-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1997-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1997-08-02": "Andorra la Vella Annual Festival", + "1997-08-03": "Andorra la Vella Annual Festival", + "1997-08-04": "Andorra la Vella Annual Festival", + "1997-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1997-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1997-09-08": "National Day", + "1997-11-01": "All Saints' Day", + "1997-12-08": "Immaculate Conception Day", + "1997-12-25": "Christmas Day", + "1997-12-26": "Saint Stephen's Day", + "1998-01-01": "New Year's Day", + "1998-01-06": "Epiphany", + "1998-02-24": "Carnival", + "1998-03-14": "Constitution Day", + "1998-04-10": "Good Friday", + "1998-04-13": "Easter Monday", + "1998-05-01": "Labor Day", + "1998-06-01": "Whit Monday", + "1998-07-18": "Canillo Annual Festival", + "1998-07-19": "Canillo Annual Festival", + "1998-07-20": "Canillo Annual Festival", + "1998-07-24": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1998-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1998-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1998-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1998-08-01": "Andorra la Vella Annual Festival", + "1998-08-02": "Andorra la Vella Annual Festival", + "1998-08-03": "Andorra la Vella Annual Festival", + "1998-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1998-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1998-09-08": "National Day", + "1998-11-01": "All Saints' Day", + "1998-12-08": "Immaculate Conception Day", + "1998-12-25": "Christmas Day", + "1998-12-26": "Saint Stephen's Day", + "1999-01-01": "New Year's Day", + "1999-01-06": "Epiphany", + "1999-02-16": "Carnival", + "1999-03-14": "Constitution Day", + "1999-04-02": "Good Friday", + "1999-04-05": "Easter Monday", + "1999-05-01": "Labor Day", + "1999-05-24": "Whit Monday", + "1999-07-17": "Canillo Annual Festival", + "1999-07-18": "Canillo Annual Festival", + "1999-07-19": "Canillo Annual Festival", + "1999-07-23": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1999-07-24": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1999-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1999-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "1999-08-07": "Andorra la Vella Annual Festival", + "1999-08-08": "Andorra la Vella Annual Festival", + "1999-08-09": "Andorra la Vella Annual Festival", + "1999-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1999-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "1999-09-08": "National Day", + "1999-11-01": "All Saints' Day", + "1999-12-08": "Immaculate Conception Day", + "1999-12-25": "Christmas Day", + "1999-12-26": "Saint Stephen's Day", + "2000-01-01": "New Year's Day", + "2000-01-06": "Epiphany", + "2000-03-07": "Carnival", + "2000-03-14": "Constitution Day", + "2000-04-21": "Good Friday", + "2000-04-24": "Easter Monday", + "2000-05-01": "Labor Day", + "2000-06-12": "Whit Monday", + "2000-07-15": "Canillo Annual Festival", + "2000-07-16": "Canillo Annual Festival", + "2000-07-17": "Canillo Annual Festival", + "2000-07-25": "Escaldes-Engordany Annual Festival", + "2000-07-26": "Escaldes-Engordany Annual Festival", + "2000-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2000-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2000-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2000-07-31": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2000-08-05": "Andorra la Vella Annual Festival", + "2000-08-06": "Andorra la Vella Annual Festival", + "2000-08-07": "Andorra la Vella Annual Festival", + "2000-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2000-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2000-09-08": "National Day", + "2000-11-01": "All Saints' Day", + "2000-12-08": "Immaculate Conception Day", + "2000-12-25": "Christmas Day", + "2000-12-26": "Saint Stephen's Day", + "2001-01-01": "New Year's Day", + "2001-01-06": "Epiphany", + "2001-02-27": "Carnival", + "2001-03-14": "Constitution Day", + "2001-04-13": "Good Friday", + "2001-04-16": "Easter Monday", + "2001-05-01": "Labor Day", + "2001-06-04": "Whit Monday", + "2001-07-21": "Canillo Annual Festival", + "2001-07-22": "Canillo Annual Festival", + "2001-07-23": "Canillo Annual Festival", + "2001-07-25": "Escaldes-Engordany Annual Festival", + "2001-07-26": "Escaldes-Engordany Annual Festival", + "2001-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2001-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2001-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2001-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2001-08-04": "Andorra la Vella Annual Festival", + "2001-08-05": "Andorra la Vella Annual Festival", + "2001-08-06": "Andorra la Vella Annual Festival", + "2001-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2001-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2001-09-08": "National Day", + "2001-11-01": "All Saints' Day", + "2001-12-08": "Immaculate Conception Day", + "2001-12-25": "Christmas Day", + "2001-12-26": "Saint Stephen's Day", + "2002-01-01": "New Year's Day", + "2002-01-06": "Epiphany", + "2002-02-12": "Carnival", + "2002-03-14": "Constitution Day", + "2002-03-29": "Good Friday", + "2002-04-01": "Easter Monday", + "2002-05-01": "Labor Day", + "2002-05-20": "Whit Monday", + "2002-07-20": "Canillo Annual Festival", + "2002-07-21": "Canillo Annual Festival", + "2002-07-22": "Canillo Annual Festival", + "2002-07-25": "Escaldes-Engordany Annual Festival", + "2002-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2002-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2002-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2002-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2002-08-03": "Andorra la Vella Annual Festival", + "2002-08-04": "Andorra la Vella Annual Festival", + "2002-08-05": "Andorra la Vella Annual Festival", + "2002-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2002-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2002-09-08": "National Day", + "2002-11-01": "All Saints' Day", + "2002-12-08": "Immaculate Conception Day", + "2002-12-25": "Christmas Day", + "2002-12-26": "Saint Stephen's Day", + "2003-01-01": "New Year's Day", + "2003-01-06": "Epiphany", + "2003-03-04": "Carnival", + "2003-03-14": "Constitution Day", + "2003-04-18": "Good Friday", + "2003-04-21": "Easter Monday", + "2003-05-01": "Labor Day", + "2003-06-09": "Whit Monday", + "2003-07-19": "Canillo Annual Festival", + "2003-07-20": "Canillo Annual Festival", + "2003-07-21": "Canillo Annual Festival", + "2003-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2003-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2003-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2003-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2003-08-02": "Andorra la Vella Annual Festival", + "2003-08-03": "Andorra la Vella Annual Festival", + "2003-08-04": "Andorra la Vella Annual Festival", + "2003-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2003-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2003-09-08": "National Day", + "2003-11-01": "All Saints' Day", + "2003-12-08": "Immaculate Conception Day", + "2003-12-25": "Christmas Day", + "2003-12-26": "Saint Stephen's Day", + "2004-01-01": "New Year's Day", + "2004-01-06": "Epiphany", + "2004-02-24": "Carnival", + "2004-03-14": "Constitution Day", + "2004-04-09": "Good Friday", + "2004-04-12": "Easter Monday", + "2004-05-01": "Labor Day", + "2004-05-31": "Whit Monday", + "2004-07-17": "Canillo Annual Festival", + "2004-07-18": "Canillo Annual Festival", + "2004-07-19": "Canillo Annual Festival", + "2004-07-23": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2004-07-24": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2004-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2004-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2004-08-07": "Andorra la Vella Annual Festival", + "2004-08-08": "Andorra la Vella Annual Festival", + "2004-08-09": "Andorra la Vella Annual Festival", + "2004-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2004-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2004-09-08": "National Day", + "2004-11-01": "All Saints' Day", + "2004-12-08": "Immaculate Conception Day", + "2004-12-25": "Christmas Day", + "2004-12-26": "Saint Stephen's Day", + "2005-01-01": "New Year's Day", + "2005-01-06": "Epiphany", + "2005-02-08": "Carnival", + "2005-03-14": "Constitution Day", + "2005-03-25": "Good Friday", + "2005-03-28": "Easter Monday", + "2005-05-01": "Labor Day", + "2005-05-16": "Whit Monday", + "2005-07-16": "Canillo Annual Festival", + "2005-07-17": "Canillo Annual Festival", + "2005-07-18": "Canillo Annual Festival", + "2005-07-25": "Escaldes-Engordany Annual Festival", + "2005-07-26": "Escaldes-Engordany Annual Festival", + "2005-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2005-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2005-07-31": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2005-08-01": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2005-08-06": "Andorra la Vella Annual Festival", + "2005-08-07": "Andorra la Vella Annual Festival", + "2005-08-08": "Andorra la Vella Annual Festival", + "2005-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2005-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2005-09-08": "National Day", + "2005-11-01": "All Saints' Day", + "2005-12-08": "Immaculate Conception Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "Saint Stephen's Day", + "2006-01-01": "New Year's Day", + "2006-01-06": "Epiphany", + "2006-02-28": "Carnival", + "2006-03-14": "Constitution Day", + "2006-04-14": "Good Friday", + "2006-04-17": "Easter Monday", + "2006-05-01": "Labor Day", + "2006-06-05": "Whit Monday", + "2006-07-15": "Canillo Annual Festival", + "2006-07-16": "Canillo Annual Festival", + "2006-07-17": "Canillo Annual Festival", + "2006-07-25": "Escaldes-Engordany Annual Festival", + "2006-07-26": "Escaldes-Engordany Annual Festival", + "2006-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2006-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2006-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2006-07-31": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2006-08-05": "Andorra la Vella Annual Festival", + "2006-08-06": "Andorra la Vella Annual Festival", + "2006-08-07": "Andorra la Vella Annual Festival", + "2006-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2006-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2006-09-08": "National Day", + "2006-11-01": "All Saints' Day", + "2006-12-08": "Immaculate Conception Day", + "2006-12-25": "Christmas Day", + "2006-12-26": "Saint Stephen's Day", + "2007-01-01": "New Year's Day", + "2007-01-06": "Epiphany", + "2007-02-20": "Carnival", + "2007-03-14": "Constitution Day", + "2007-04-06": "Good Friday", + "2007-04-09": "Easter Monday", + "2007-05-01": "Labor Day", + "2007-05-28": "Whit Monday", + "2007-07-21": "Canillo Annual Festival", + "2007-07-22": "Canillo Annual Festival", + "2007-07-23": "Canillo Annual Festival", + "2007-07-25": "Escaldes-Engordany Annual Festival", + "2007-07-26": "Escaldes-Engordany Annual Festival", + "2007-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2007-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2007-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2007-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2007-08-04": "Andorra la Vella Annual Festival", + "2007-08-05": "Andorra la Vella Annual Festival", + "2007-08-06": "Andorra la Vella Annual Festival", + "2007-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2007-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2007-09-08": "National Day", + "2007-11-01": "All Saints' Day", + "2007-12-08": "Immaculate Conception Day", + "2007-12-25": "Christmas Day", + "2007-12-26": "Saint Stephen's Day", + "2008-01-01": "New Year's Day", + "2008-01-06": "Epiphany", + "2008-02-05": "Carnival", + "2008-03-14": "Constitution Day", + "2008-03-21": "Good Friday", + "2008-03-24": "Easter Monday", + "2008-05-01": "Labor Day", + "2008-05-12": "Whit Monday", + "2008-07-19": "Canillo Annual Festival", + "2008-07-20": "Canillo Annual Festival", + "2008-07-21": "Canillo Annual Festival", + "2008-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2008-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2008-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2008-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2008-08-02": "Andorra la Vella Annual Festival", + "2008-08-03": "Andorra la Vella Annual Festival", + "2008-08-04": "Andorra la Vella Annual Festival", + "2008-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2008-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2008-09-08": "National Day", + "2008-11-01": "All Saints' Day", + "2008-12-08": "Immaculate Conception Day", + "2008-12-25": "Christmas Day", + "2008-12-26": "Saint Stephen's Day", + "2009-01-01": "New Year's Day", + "2009-01-06": "Epiphany", + "2009-02-24": "Carnival", + "2009-03-14": "Constitution Day", + "2009-04-10": "Good Friday", + "2009-04-13": "Easter Monday", + "2009-05-01": "Labor Day", + "2009-06-01": "Whit Monday", + "2009-07-18": "Canillo Annual Festival", + "2009-07-19": "Canillo Annual Festival", + "2009-07-20": "Canillo Annual Festival", + "2009-07-24": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2009-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2009-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2009-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2009-08-01": "Andorra la Vella Annual Festival", + "2009-08-02": "Andorra la Vella Annual Festival", + "2009-08-03": "Andorra la Vella Annual Festival", + "2009-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2009-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2009-09-08": "National Day", + "2009-11-01": "All Saints' Day", + "2009-12-08": "Immaculate Conception Day", + "2009-12-25": "Christmas Day", + "2009-12-26": "Saint Stephen's Day", + "2010-01-01": "New Year's Day", + "2010-01-06": "Epiphany", + "2010-02-16": "Carnival", + "2010-03-14": "Constitution Day", + "2010-04-02": "Good Friday", + "2010-04-05": "Easter Monday", + "2010-05-01": "Labor Day", + "2010-05-24": "Whit Monday", + "2010-07-17": "Canillo Annual Festival", + "2010-07-18": "Canillo Annual Festival", + "2010-07-19": "Canillo Annual Festival", + "2010-07-23": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2010-07-24": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2010-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2010-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2010-08-07": "Andorra la Vella Annual Festival", + "2010-08-08": "Andorra la Vella Annual Festival", + "2010-08-09": "Andorra la Vella Annual Festival", + "2010-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2010-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2010-09-08": "National Day", + "2010-11-01": "All Saints' Day", + "2010-12-08": "Immaculate Conception Day", + "2010-12-25": "Christmas Day", + "2010-12-26": "Saint Stephen's Day", + "2011-01-01": "New Year's Day", + "2011-01-06": "Epiphany", + "2011-03-08": "Carnival", + "2011-03-14": "Constitution Day", + "2011-04-22": "Good Friday", + "2011-04-25": "Easter Monday", + "2011-05-01": "Labor Day", + "2011-06-13": "Whit Monday", + "2011-07-16": "Canillo Annual Festival", + "2011-07-17": "Canillo Annual Festival", + "2011-07-18": "Canillo Annual Festival", + "2011-07-25": "Escaldes-Engordany Annual Festival", + "2011-07-26": "Escaldes-Engordany Annual Festival", + "2011-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2011-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2011-07-31": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2011-08-01": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2011-08-06": "Andorra la Vella Annual Festival", + "2011-08-07": "Andorra la Vella Annual Festival", + "2011-08-08": "Andorra la Vella Annual Festival", + "2011-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2011-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2011-09-08": "National Day", + "2011-11-01": "All Saints' Day", + "2011-12-08": "Immaculate Conception Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "Saint Stephen's Day", + "2012-01-01": "New Year's Day", + "2012-01-06": "Epiphany", + "2012-02-21": "Carnival", + "2012-03-14": "Constitution Day", + "2012-04-06": "Good Friday", + "2012-04-09": "Easter Monday", + "2012-05-01": "Labor Day", + "2012-05-28": "Whit Monday", + "2012-07-21": "Canillo Annual Festival", + "2012-07-22": "Canillo Annual Festival", + "2012-07-23": "Canillo Annual Festival", + "2012-07-25": "Escaldes-Engordany Annual Festival", + "2012-07-26": "Escaldes-Engordany Annual Festival", + "2012-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2012-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2012-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2012-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2012-08-04": "Andorra la Vella Annual Festival", + "2012-08-05": "Andorra la Vella Annual Festival", + "2012-08-06": "Andorra la Vella Annual Festival", + "2012-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2012-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2012-09-08": "National Day", + "2012-11-01": "All Saints' Day", + "2012-12-08": "Immaculate Conception Day", + "2012-12-25": "Christmas Day", + "2012-12-26": "Saint Stephen's Day", + "2013-01-01": "New Year's Day", + "2013-01-06": "Epiphany", + "2013-02-12": "Carnival", + "2013-03-14": "Constitution Day", + "2013-03-29": "Good Friday", + "2013-04-01": "Easter Monday", + "2013-05-01": "Labor Day", + "2013-05-20": "Whit Monday", + "2013-07-20": "Canillo Annual Festival", + "2013-07-21": "Canillo Annual Festival", + "2013-07-22": "Canillo Annual Festival", + "2013-07-25": "Escaldes-Engordany Annual Festival", + "2013-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2013-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2013-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2013-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2013-08-03": "Andorra la Vella Annual Festival", + "2013-08-04": "Andorra la Vella Annual Festival", + "2013-08-05": "Andorra la Vella Annual Festival", + "2013-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2013-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2013-09-08": "National Day", + "2013-11-01": "All Saints' Day", + "2013-12-08": "Immaculate Conception Day", + "2013-12-25": "Christmas Day", + "2013-12-26": "Saint Stephen's Day", + "2014-01-01": "New Year's Day", + "2014-01-06": "Epiphany", + "2014-03-04": "Carnival", + "2014-03-14": "Constitution Day", + "2014-04-18": "Good Friday", + "2014-04-21": "Easter Monday", + "2014-05-01": "Labor Day", + "2014-06-09": "Whit Monday", + "2014-07-19": "Canillo Annual Festival", + "2014-07-20": "Canillo Annual Festival", + "2014-07-21": "Canillo Annual Festival", + "2014-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2014-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2014-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2014-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2014-08-02": "Andorra la Vella Annual Festival", + "2014-08-03": "Andorra la Vella Annual Festival", + "2014-08-04": "Andorra la Vella Annual Festival", + "2014-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2014-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2014-09-08": "National Day", + "2014-11-01": "All Saints' Day", + "2014-12-08": "Immaculate Conception Day", + "2014-12-25": "Christmas Day", + "2014-12-26": "Saint Stephen's Day", + "2015-01-01": "New Year's Day", + "2015-01-06": "Epiphany", + "2015-02-17": "Carnival", + "2015-03-14": "Constitution Day", + "2015-04-03": "Good Friday", + "2015-04-06": "Easter Monday", + "2015-05-01": "Labor Day", + "2015-05-25": "Whit Monday", + "2015-07-18": "Canillo Annual Festival", + "2015-07-19": "Canillo Annual Festival", + "2015-07-20": "Canillo Annual Festival", + "2015-07-24": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2015-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2015-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2015-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2015-08-01": "Andorra la Vella Annual Festival", + "2015-08-02": "Andorra la Vella Annual Festival", + "2015-08-03": "Andorra la Vella Annual Festival", + "2015-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2015-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2015-09-08": "National Day", + "2015-11-01": "All Saints' Day", + "2015-12-08": "Immaculate Conception Day", + "2015-12-25": "Christmas Day", + "2015-12-26": "Saint Stephen's Day", + "2016-01-01": "New Year's Day", + "2016-01-06": "Epiphany", + "2016-02-09": "Carnival", + "2016-03-14": "Constitution Day", + "2016-03-25": "Good Friday", + "2016-03-28": "Easter Monday", + "2016-05-01": "Labor Day", + "2016-05-16": "Whit Monday", + "2016-07-16": "Canillo Annual Festival", + "2016-07-17": "Canillo Annual Festival", + "2016-07-18": "Canillo Annual Festival", + "2016-07-25": "Escaldes-Engordany Annual Festival", + "2016-07-26": "Escaldes-Engordany Annual Festival", + "2016-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2016-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2016-07-31": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2016-08-01": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2016-08-06": "Andorra la Vella Annual Festival", + "2016-08-07": "Andorra la Vella Annual Festival", + "2016-08-08": "Andorra la Vella Annual Festival", + "2016-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2016-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2016-09-08": "National Day", + "2016-11-01": "All Saints' Day", + "2016-12-08": "Immaculate Conception Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "Saint Stephen's Day", + "2017-01-01": "New Year's Day", + "2017-01-06": "Epiphany", + "2017-02-28": "Carnival", + "2017-03-14": "Constitution Day", + "2017-04-14": "Good Friday", + "2017-04-17": "Easter Monday", + "2017-05-01": "Labor Day", + "2017-06-05": "Whit Monday", + "2017-07-15": "Canillo Annual Festival", + "2017-07-16": "Canillo Annual Festival", + "2017-07-17": "Canillo Annual Festival", + "2017-07-25": "Escaldes-Engordany Annual Festival", + "2017-07-26": "Escaldes-Engordany Annual Festival", + "2017-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2017-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2017-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2017-07-31": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2017-08-05": "Andorra la Vella Annual Festival", + "2017-08-06": "Andorra la Vella Annual Festival", + "2017-08-07": "Andorra la Vella Annual Festival", + "2017-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2017-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2017-09-08": "National Day", + "2017-11-01": "All Saints' Day", + "2017-12-08": "Immaculate Conception Day", + "2017-12-25": "Christmas Day", + "2017-12-26": "Saint Stephen's Day", + "2018-01-01": "New Year's Day", + "2018-01-06": "Epiphany", + "2018-02-13": "Carnival", + "2018-03-14": "Constitution Day", + "2018-03-30": "Good Friday", + "2018-04-02": "Easter Monday", + "2018-05-01": "Labor Day", + "2018-05-21": "Whit Monday", + "2018-07-21": "Canillo Annual Festival", + "2018-07-22": "Canillo Annual Festival", + "2018-07-23": "Canillo Annual Festival", + "2018-07-25": "Escaldes-Engordany Annual Festival", + "2018-07-26": "Escaldes-Engordany Annual Festival", + "2018-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2018-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2018-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2018-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2018-08-04": "Andorra la Vella Annual Festival", + "2018-08-05": "Andorra la Vella Annual Festival", + "2018-08-06": "Andorra la Vella Annual Festival", + "2018-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2018-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2018-09-08": "National Day", + "2018-11-01": "All Saints' Day", + "2018-12-08": "Immaculate Conception Day", + "2018-12-25": "Christmas Day", + "2018-12-26": "Saint Stephen's Day", + "2019-01-01": "New Year's Day", + "2019-01-06": "Epiphany", + "2019-03-05": "Carnival", + "2019-03-14": "Constitution Day", + "2019-04-19": "Good Friday", + "2019-04-22": "Easter Monday", + "2019-05-01": "Labor Day", + "2019-06-10": "Whit Monday", + "2019-07-20": "Canillo Annual Festival", + "2019-07-21": "Canillo Annual Festival", + "2019-07-22": "Canillo Annual Festival", + "2019-07-25": "Escaldes-Engordany Annual Festival", + "2019-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2019-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2019-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2019-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2019-08-03": "Andorra la Vella Annual Festival", + "2019-08-04": "Andorra la Vella Annual Festival", + "2019-08-05": "Andorra la Vella Annual Festival", + "2019-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2019-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2019-09-08": "National Day", + "2019-11-01": "All Saints' Day", + "2019-12-08": "Immaculate Conception Day", + "2019-12-25": "Christmas Day", + "2019-12-26": "Saint Stephen's Day", + "2020-01-01": "New Year's Day", + "2020-01-06": "Epiphany", + "2020-02-25": "Carnival", + "2020-03-14": "Constitution Day", + "2020-04-10": "Good Friday", + "2020-04-13": "Easter Monday", + "2020-05-01": "Labor Day", + "2020-06-01": "Whit Monday", + "2020-07-18": "Canillo Annual Festival", + "2020-07-19": "Canillo Annual Festival", + "2020-07-20": "Canillo Annual Festival", + "2020-07-24": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2020-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2020-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2020-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2020-08-01": "Andorra la Vella Annual Festival", + "2020-08-02": "Andorra la Vella Annual Festival", + "2020-08-03": "Andorra la Vella Annual Festival", + "2020-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2020-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2020-09-08": "National Day", + "2020-11-01": "All Saints' Day", + "2020-12-08": "Immaculate Conception Day", + "2020-12-25": "Christmas Day", + "2020-12-26": "Saint Stephen's Day", + "2021-01-01": "New Year's Day", + "2021-01-06": "Epiphany", + "2021-02-16": "Carnival", + "2021-03-14": "Constitution Day", + "2021-04-02": "Good Friday", + "2021-04-05": "Easter Monday", + "2021-05-01": "Labor Day", + "2021-05-24": "Whit Monday", + "2021-07-17": "Canillo Annual Festival", + "2021-07-18": "Canillo Annual Festival", + "2021-07-19": "Canillo Annual Festival", + "2021-07-23": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2021-07-24": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2021-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2021-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2021-08-07": "Andorra la Vella Annual Festival", + "2021-08-08": "Andorra la Vella Annual Festival", + "2021-08-09": "Andorra la Vella Annual Festival", + "2021-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2021-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2021-09-08": "National Day", + "2021-11-01": "All Saints' Day", + "2021-12-08": "Immaculate Conception Day", + "2021-12-25": "Christmas Day", + "2021-12-26": "Saint Stephen's Day", + "2022-01-01": "New Year's Day", + "2022-01-06": "Epiphany", + "2022-03-01": "Carnival", + "2022-03-14": "Constitution Day", + "2022-04-15": "Good Friday", + "2022-04-18": "Easter Monday", + "2022-05-01": "Labor Day", + "2022-06-06": "Whit Monday", + "2022-07-16": "Canillo Annual Festival", + "2022-07-17": "Canillo Annual Festival", + "2022-07-18": "Canillo Annual Festival", + "2022-07-25": "Escaldes-Engordany Annual Festival", + "2022-07-26": "Escaldes-Engordany Annual Festival", + "2022-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2022-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2022-07-31": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2022-08-01": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2022-08-06": "Andorra la Vella Annual Festival", + "2022-08-07": "Andorra la Vella Annual Festival", + "2022-08-08": "Andorra la Vella Annual Festival", + "2022-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2022-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2022-09-08": "National Day", + "2022-11-01": "All Saints' Day", + "2022-12-08": "Immaculate Conception Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "Saint Stephen's Day", + "2023-01-01": "New Year's Day", + "2023-01-06": "Epiphany", + "2023-02-21": "Carnival", + "2023-03-14": "Constitution Day", + "2023-04-07": "Good Friday", + "2023-04-10": "Easter Monday", + "2023-05-01": "Labor Day", + "2023-05-29": "Whit Monday", + "2023-07-15": "Canillo Annual Festival", + "2023-07-16": "Canillo Annual Festival", + "2023-07-17": "Canillo Annual Festival", + "2023-07-25": "Escaldes-Engordany Annual Festival", + "2023-07-26": "Escaldes-Engordany Annual Festival", + "2023-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2023-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2023-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2023-07-31": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2023-08-05": "Andorra la Vella Annual Festival", + "2023-08-06": "Andorra la Vella Annual Festival", + "2023-08-07": "Andorra la Vella Annual Festival", + "2023-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2023-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2023-09-08": "National Day", + "2023-11-01": "All Saints' Day", + "2023-12-08": "Immaculate Conception Day", + "2023-12-25": "Christmas Day", + "2023-12-26": "Saint Stephen's Day", + "2024-01-01": "New Year's Day", + "2024-01-06": "Epiphany", + "2024-02-13": "Carnival", + "2024-03-14": "Constitution Day", + "2024-03-29": "Good Friday", + "2024-04-01": "Easter Monday", + "2024-05-01": "Labor Day", + "2024-05-20": "Whit Monday", + "2024-07-20": "Canillo Annual Festival", + "2024-07-21": "Canillo Annual Festival", + "2024-07-22": "Canillo Annual Festival", + "2024-07-25": "Escaldes-Engordany Annual Festival", + "2024-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2024-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2024-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2024-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2024-08-03": "Andorra la Vella Annual Festival", + "2024-08-04": "Andorra la Vella Annual Festival", + "2024-08-05": "Andorra la Vella Annual Festival", + "2024-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2024-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2024-09-08": "National Day", + "2024-11-01": "All Saints' Day", + "2024-12-08": "Immaculate Conception Day", + "2024-12-25": "Christmas Day", + "2024-12-26": "Saint Stephen's Day", + "2025-01-01": "New Year's Day", + "2025-01-06": "Epiphany", + "2025-03-04": "Carnival", + "2025-03-14": "Constitution Day", + "2025-04-18": "Good Friday", + "2025-04-21": "Easter Monday", + "2025-05-01": "Labor Day", + "2025-06-09": "Whit Monday", + "2025-07-19": "Canillo Annual Festival", + "2025-07-20": "Canillo Annual Festival", + "2025-07-21": "Canillo Annual Festival", + "2025-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2025-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2025-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2025-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2025-08-02": "Andorra la Vella Annual Festival", + "2025-08-03": "Andorra la Vella Annual Festival", + "2025-08-04": "Andorra la Vella Annual Festival", + "2025-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2025-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2025-09-08": "National Day", + "2025-11-01": "All Saints' Day", + "2025-12-08": "Immaculate Conception Day", + "2025-12-25": "Christmas Day", + "2025-12-26": "Saint Stephen's Day", + "2026-01-01": "New Year's Day", + "2026-01-06": "Epiphany", + "2026-02-17": "Carnival", + "2026-03-14": "Constitution Day", + "2026-04-03": "Good Friday", + "2026-04-06": "Easter Monday", + "2026-05-01": "Labor Day", + "2026-05-25": "Whit Monday", + "2026-07-18": "Canillo Annual Festival", + "2026-07-19": "Canillo Annual Festival", + "2026-07-20": "Canillo Annual Festival", + "2026-07-24": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2026-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2026-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2026-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2026-08-01": "Andorra la Vella Annual Festival", + "2026-08-02": "Andorra la Vella Annual Festival", + "2026-08-03": "Andorra la Vella Annual Festival", + "2026-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2026-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2026-09-08": "National Day", + "2026-11-01": "All Saints' Day", + "2026-12-08": "Immaculate Conception Day", + "2026-12-25": "Christmas Day", + "2026-12-26": "Saint Stephen's Day", + "2027-01-01": "New Year's Day", + "2027-01-06": "Epiphany", + "2027-02-09": "Carnival", + "2027-03-14": "Constitution Day", + "2027-03-26": "Good Friday", + "2027-03-29": "Easter Monday", + "2027-05-01": "Labor Day", + "2027-05-17": "Whit Monday", + "2027-07-17": "Canillo Annual Festival", + "2027-07-18": "Canillo Annual Festival", + "2027-07-19": "Canillo Annual Festival", + "2027-07-23": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2027-07-24": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2027-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2027-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2027-08-07": "Andorra la Vella Annual Festival", + "2027-08-08": "Andorra la Vella Annual Festival", + "2027-08-09": "Andorra la Vella Annual Festival", + "2027-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2027-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2027-09-08": "National Day", + "2027-11-01": "All Saints' Day", + "2027-12-08": "Immaculate Conception Day", + "2027-12-25": "Christmas Day", + "2027-12-26": "Saint Stephen's Day", + "2028-01-01": "New Year's Day", + "2028-01-06": "Epiphany", + "2028-02-29": "Carnival", + "2028-03-14": "Constitution Day", + "2028-04-14": "Good Friday", + "2028-04-17": "Easter Monday", + "2028-05-01": "Labor Day", + "2028-06-05": "Whit Monday", + "2028-07-15": "Canillo Annual Festival", + "2028-07-16": "Canillo Annual Festival", + "2028-07-17": "Canillo Annual Festival", + "2028-07-25": "Escaldes-Engordany Annual Festival", + "2028-07-26": "Escaldes-Engordany Annual Festival", + "2028-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2028-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2028-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2028-07-31": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2028-08-05": "Andorra la Vella Annual Festival", + "2028-08-06": "Andorra la Vella Annual Festival", + "2028-08-07": "Andorra la Vella Annual Festival", + "2028-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2028-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2028-09-08": "National Day", + "2028-11-01": "All Saints' Day", + "2028-12-08": "Immaculate Conception Day", + "2028-12-25": "Christmas Day", + "2028-12-26": "Saint Stephen's Day", + "2029-01-01": "New Year's Day", + "2029-01-06": "Epiphany", + "2029-02-13": "Carnival", + "2029-03-14": "Constitution Day", + "2029-03-30": "Good Friday", + "2029-04-02": "Easter Monday", + "2029-05-01": "Labor Day", + "2029-05-21": "Whit Monday", + "2029-07-21": "Canillo Annual Festival", + "2029-07-22": "Canillo Annual Festival", + "2029-07-23": "Canillo Annual Festival", + "2029-07-25": "Escaldes-Engordany Annual Festival", + "2029-07-26": "Escaldes-Engordany Annual Festival", + "2029-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2029-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2029-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2029-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2029-08-04": "Andorra la Vella Annual Festival", + "2029-08-05": "Andorra la Vella Annual Festival", + "2029-08-06": "Andorra la Vella Annual Festival", + "2029-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2029-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2029-09-08": "National Day", + "2029-11-01": "All Saints' Day", + "2029-12-08": "Immaculate Conception Day", + "2029-12-25": "Christmas Day", + "2029-12-26": "Saint Stephen's Day", + "2030-01-01": "New Year's Day", + "2030-01-06": "Epiphany", + "2030-03-05": "Carnival", + "2030-03-14": "Constitution Day", + "2030-04-19": "Good Friday", + "2030-04-22": "Easter Monday", + "2030-05-01": "Labor Day", + "2030-06-10": "Whit Monday", + "2030-07-20": "Canillo Annual Festival", + "2030-07-21": "Canillo Annual Festival", + "2030-07-22": "Canillo Annual Festival", + "2030-07-25": "Escaldes-Engordany Annual Festival", + "2030-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2030-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2030-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2030-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2030-08-03": "Andorra la Vella Annual Festival", + "2030-08-04": "Andorra la Vella Annual Festival", + "2030-08-05": "Andorra la Vella Annual Festival", + "2030-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2030-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2030-09-08": "National Day", + "2030-11-01": "All Saints' Day", + "2030-12-08": "Immaculate Conception Day", + "2030-12-25": "Christmas Day", + "2030-12-26": "Saint Stephen's Day", + "2031-01-01": "New Year's Day", + "2031-01-06": "Epiphany", + "2031-02-25": "Carnival", + "2031-03-14": "Constitution Day", + "2031-04-11": "Good Friday", + "2031-04-14": "Easter Monday", + "2031-05-01": "Labor Day", + "2031-06-02": "Whit Monday", + "2031-07-19": "Canillo Annual Festival", + "2031-07-20": "Canillo Annual Festival", + "2031-07-21": "Canillo Annual Festival", + "2031-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2031-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2031-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2031-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2031-08-02": "Andorra la Vella Annual Festival", + "2031-08-03": "Andorra la Vella Annual Festival", + "2031-08-04": "Andorra la Vella Annual Festival", + "2031-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2031-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2031-09-08": "National Day", + "2031-11-01": "All Saints' Day", + "2031-12-08": "Immaculate Conception Day", + "2031-12-25": "Christmas Day", + "2031-12-26": "Saint Stephen's Day", + "2032-01-01": "New Year's Day", + "2032-01-06": "Epiphany", + "2032-02-10": "Carnival", + "2032-03-14": "Constitution Day", + "2032-03-26": "Good Friday", + "2032-03-29": "Easter Monday", + "2032-05-01": "Labor Day", + "2032-05-17": "Whit Monday", + "2032-07-17": "Canillo Annual Festival", + "2032-07-18": "Canillo Annual Festival", + "2032-07-19": "Canillo Annual Festival", + "2032-07-23": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2032-07-24": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2032-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2032-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2032-08-07": "Andorra la Vella Annual Festival", + "2032-08-08": "Andorra la Vella Annual Festival", + "2032-08-09": "Andorra la Vella Annual Festival", + "2032-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2032-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2032-09-08": "National Day", + "2032-11-01": "All Saints' Day", + "2032-12-08": "Immaculate Conception Day", + "2032-12-25": "Christmas Day", + "2032-12-26": "Saint Stephen's Day", + "2033-01-01": "New Year's Day", + "2033-01-06": "Epiphany", + "2033-03-01": "Carnival", + "2033-03-14": "Constitution Day", + "2033-04-15": "Good Friday", + "2033-04-18": "Easter Monday", + "2033-05-01": "Labor Day", + "2033-06-06": "Whit Monday", + "2033-07-16": "Canillo Annual Festival", + "2033-07-17": "Canillo Annual Festival", + "2033-07-18": "Canillo Annual Festival", + "2033-07-25": "Escaldes-Engordany Annual Festival", + "2033-07-26": "Escaldes-Engordany Annual Festival", + "2033-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2033-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2033-07-31": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2033-08-01": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2033-08-06": "Andorra la Vella Annual Festival", + "2033-08-07": "Andorra la Vella Annual Festival", + "2033-08-08": "Andorra la Vella Annual Festival", + "2033-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2033-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2033-09-08": "National Day", + "2033-11-01": "All Saints' Day", + "2033-12-08": "Immaculate Conception Day", + "2033-12-25": "Christmas Day", + "2033-12-26": "Saint Stephen's Day", + "2034-01-01": "New Year's Day", + "2034-01-06": "Epiphany", + "2034-02-21": "Carnival", + "2034-03-14": "Constitution Day", + "2034-04-07": "Good Friday", + "2034-04-10": "Easter Monday", + "2034-05-01": "Labor Day", + "2034-05-29": "Whit Monday", + "2034-07-15": "Canillo Annual Festival", + "2034-07-16": "Canillo Annual Festival", + "2034-07-17": "Canillo Annual Festival", + "2034-07-25": "Escaldes-Engordany Annual Festival", + "2034-07-26": "Escaldes-Engordany Annual Festival", + "2034-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2034-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2034-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2034-07-31": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2034-08-05": "Andorra la Vella Annual Festival", + "2034-08-06": "Andorra la Vella Annual Festival", + "2034-08-07": "Andorra la Vella Annual Festival", + "2034-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2034-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2034-09-08": "National Day", + "2034-11-01": "All Saints' Day", + "2034-12-08": "Immaculate Conception Day", + "2034-12-25": "Christmas Day", + "2034-12-26": "Saint Stephen's Day", + "2035-01-01": "New Year's Day", + "2035-01-06": "Epiphany", + "2035-02-06": "Carnival", + "2035-03-14": "Constitution Day", + "2035-03-23": "Good Friday", + "2035-03-26": "Easter Monday", + "2035-05-01": "Labor Day", + "2035-05-14": "Whit Monday", + "2035-07-21": "Canillo Annual Festival", + "2035-07-22": "Canillo Annual Festival", + "2035-07-23": "Canillo Annual Festival", + "2035-07-25": "Escaldes-Engordany Annual Festival", + "2035-07-26": "Escaldes-Engordany Annual Festival", + "2035-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2035-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2035-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2035-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2035-08-04": "Andorra la Vella Annual Festival", + "2035-08-05": "Andorra la Vella Annual Festival", + "2035-08-06": "Andorra la Vella Annual Festival", + "2035-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2035-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2035-09-08": "National Day", + "2035-11-01": "All Saints' Day", + "2035-12-08": "Immaculate Conception Day", + "2035-12-25": "Christmas Day", + "2035-12-26": "Saint Stephen's Day", + "2036-01-01": "New Year's Day", + "2036-01-06": "Epiphany", + "2036-02-26": "Carnival", + "2036-03-14": "Constitution Day", + "2036-04-11": "Good Friday", + "2036-04-14": "Easter Monday", + "2036-05-01": "Labor Day", + "2036-06-02": "Whit Monday", + "2036-07-19": "Canillo Annual Festival", + "2036-07-20": "Canillo Annual Festival", + "2036-07-21": "Canillo Annual Festival", + "2036-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2036-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2036-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2036-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2036-08-02": "Andorra la Vella Annual Festival", + "2036-08-03": "Andorra la Vella Annual Festival", + "2036-08-04": "Andorra la Vella Annual Festival", + "2036-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2036-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2036-09-08": "National Day", + "2036-11-01": "All Saints' Day", + "2036-12-08": "Immaculate Conception Day", + "2036-12-25": "Christmas Day", + "2036-12-26": "Saint Stephen's Day", + "2037-01-01": "New Year's Day", + "2037-01-06": "Epiphany", + "2037-02-17": "Carnival", + "2037-03-14": "Constitution Day", + "2037-04-03": "Good Friday", + "2037-04-06": "Easter Monday", + "2037-05-01": "Labor Day", + "2037-05-25": "Whit Monday", + "2037-07-18": "Canillo Annual Festival", + "2037-07-19": "Canillo Annual Festival", + "2037-07-20": "Canillo Annual Festival", + "2037-07-24": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2037-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2037-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2037-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2037-08-01": "Andorra la Vella Annual Festival", + "2037-08-02": "Andorra la Vella Annual Festival", + "2037-08-03": "Andorra la Vella Annual Festival", + "2037-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2037-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2037-09-08": "National Day", + "2037-11-01": "All Saints' Day", + "2037-12-08": "Immaculate Conception Day", + "2037-12-25": "Christmas Day", + "2037-12-26": "Saint Stephen's Day", + "2038-01-01": "New Year's Day", + "2038-01-06": "Epiphany", + "2038-03-09": "Carnival", + "2038-03-14": "Constitution Day", + "2038-04-23": "Good Friday", + "2038-04-26": "Easter Monday", + "2038-05-01": "Labor Day", + "2038-06-14": "Whit Monday", + "2038-07-17": "Canillo Annual Festival", + "2038-07-18": "Canillo Annual Festival", + "2038-07-19": "Canillo Annual Festival", + "2038-07-23": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2038-07-24": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2038-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2038-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2038-08-07": "Andorra la Vella Annual Festival", + "2038-08-08": "Andorra la Vella Annual Festival", + "2038-08-09": "Andorra la Vella Annual Festival", + "2038-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2038-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2038-09-08": "National Day", + "2038-11-01": "All Saints' Day", + "2038-12-08": "Immaculate Conception Day", + "2038-12-25": "Christmas Day", + "2038-12-26": "Saint Stephen's Day", + "2039-01-01": "New Year's Day", + "2039-01-06": "Epiphany", + "2039-02-22": "Carnival", + "2039-03-14": "Constitution Day", + "2039-04-08": "Good Friday", + "2039-04-11": "Easter Monday", + "2039-05-01": "Labor Day", + "2039-05-30": "Whit Monday", + "2039-07-16": "Canillo Annual Festival", + "2039-07-17": "Canillo Annual Festival", + "2039-07-18": "Canillo Annual Festival", + "2039-07-25": "Escaldes-Engordany Annual Festival", + "2039-07-26": "Escaldes-Engordany Annual Festival", + "2039-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2039-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2039-07-31": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2039-08-01": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2039-08-06": "Andorra la Vella Annual Festival", + "2039-08-07": "Andorra la Vella Annual Festival", + "2039-08-08": "Andorra la Vella Annual Festival", + "2039-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2039-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2039-09-08": "National Day", + "2039-11-01": "All Saints' Day", + "2039-12-08": "Immaculate Conception Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Saint Stephen's Day", + "2040-01-01": "New Year's Day", + "2040-01-06": "Epiphany", + "2040-02-14": "Carnival", + "2040-03-14": "Constitution Day", + "2040-03-30": "Good Friday", + "2040-04-02": "Easter Monday", + "2040-05-01": "Labor Day", + "2040-05-21": "Whit Monday", + "2040-07-21": "Canillo Annual Festival", + "2040-07-22": "Canillo Annual Festival", + "2040-07-23": "Canillo Annual Festival", + "2040-07-25": "Escaldes-Engordany Annual Festival", + "2040-07-26": "Escaldes-Engordany Annual Festival", + "2040-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2040-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2040-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2040-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2040-08-04": "Andorra la Vella Annual Festival", + "2040-08-05": "Andorra la Vella Annual Festival", + "2040-08-06": "Andorra la Vella Annual Festival", + "2040-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2040-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2040-09-08": "National Day", + "2040-11-01": "All Saints' Day", + "2040-12-08": "Immaculate Conception Day", + "2040-12-25": "Christmas Day", + "2040-12-26": "Saint Stephen's Day", + "2041-01-01": "New Year's Day", + "2041-01-06": "Epiphany", + "2041-03-05": "Carnival", + "2041-03-14": "Constitution Day", + "2041-04-19": "Good Friday", + "2041-04-22": "Easter Monday", + "2041-05-01": "Labor Day", + "2041-06-10": "Whit Monday", + "2041-07-20": "Canillo Annual Festival", + "2041-07-21": "Canillo Annual Festival", + "2041-07-22": "Canillo Annual Festival", + "2041-07-25": "Escaldes-Engordany Annual Festival", + "2041-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2041-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2041-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2041-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2041-08-03": "Andorra la Vella Annual Festival", + "2041-08-04": "Andorra la Vella Annual Festival", + "2041-08-05": "Andorra la Vella Annual Festival", + "2041-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2041-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2041-09-08": "National Day", + "2041-11-01": "All Saints' Day", + "2041-12-08": "Immaculate Conception Day", + "2041-12-25": "Christmas Day", + "2041-12-26": "Saint Stephen's Day", + "2042-01-01": "New Year's Day", + "2042-01-06": "Epiphany", + "2042-02-18": "Carnival", + "2042-03-14": "Constitution Day", + "2042-04-04": "Good Friday", + "2042-04-07": "Easter Monday", + "2042-05-01": "Labor Day", + "2042-05-26": "Whit Monday", + "2042-07-19": "Canillo Annual Festival", + "2042-07-20": "Canillo Annual Festival", + "2042-07-21": "Canillo Annual Festival", + "2042-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2042-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2042-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2042-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2042-08-02": "Andorra la Vella Annual Festival", + "2042-08-03": "Andorra la Vella Annual Festival", + "2042-08-04": "Andorra la Vella Annual Festival", + "2042-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2042-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2042-09-08": "National Day", + "2042-11-01": "All Saints' Day", + "2042-12-08": "Immaculate Conception Day", + "2042-12-25": "Christmas Day", + "2042-12-26": "Saint Stephen's Day", + "2043-01-01": "New Year's Day", + "2043-01-06": "Epiphany", + "2043-02-10": "Carnival", + "2043-03-14": "Constitution Day", + "2043-03-27": "Good Friday", + "2043-03-30": "Easter Monday", + "2043-05-01": "Labor Day", + "2043-05-18": "Whit Monday", + "2043-07-18": "Canillo Annual Festival", + "2043-07-19": "Canillo Annual Festival", + "2043-07-20": "Canillo Annual Festival", + "2043-07-24": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2043-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2043-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2043-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2043-08-01": "Andorra la Vella Annual Festival", + "2043-08-02": "Andorra la Vella Annual Festival", + "2043-08-03": "Andorra la Vella Annual Festival", + "2043-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2043-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2043-09-08": "National Day", + "2043-11-01": "All Saints' Day", + "2043-12-08": "Immaculate Conception Day", + "2043-12-25": "Christmas Day", + "2043-12-26": "Saint Stephen's Day", + "2044-01-01": "New Year's Day", + "2044-01-06": "Epiphany", + "2044-03-01": "Carnival", + "2044-03-14": "Constitution Day", + "2044-04-15": "Good Friday", + "2044-04-18": "Easter Monday", + "2044-05-01": "Labor Day", + "2044-06-06": "Whit Monday", + "2044-07-16": "Canillo Annual Festival", + "2044-07-17": "Canillo Annual Festival", + "2044-07-18": "Canillo Annual Festival", + "2044-07-25": "Escaldes-Engordany Annual Festival", + "2044-07-26": "Escaldes-Engordany Annual Festival", + "2044-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2044-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2044-07-31": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2044-08-01": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2044-08-06": "Andorra la Vella Annual Festival", + "2044-08-07": "Andorra la Vella Annual Festival", + "2044-08-08": "Andorra la Vella Annual Festival", + "2044-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2044-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2044-09-08": "National Day", + "2044-11-01": "All Saints' Day", + "2044-12-08": "Immaculate Conception Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "Saint Stephen's Day", + "2045-01-01": "New Year's Day", + "2045-01-06": "Epiphany", + "2045-02-21": "Carnival", + "2045-03-14": "Constitution Day", + "2045-04-07": "Good Friday", + "2045-04-10": "Easter Monday", + "2045-05-01": "Labor Day", + "2045-05-29": "Whit Monday", + "2045-07-15": "Canillo Annual Festival", + "2045-07-16": "Canillo Annual Festival", + "2045-07-17": "Canillo Annual Festival", + "2045-07-25": "Escaldes-Engordany Annual Festival", + "2045-07-26": "Escaldes-Engordany Annual Festival", + "2045-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2045-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2045-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2045-07-31": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2045-08-05": "Andorra la Vella Annual Festival", + "2045-08-06": "Andorra la Vella Annual Festival", + "2045-08-07": "Andorra la Vella Annual Festival", + "2045-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2045-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2045-09-08": "National Day", + "2045-11-01": "All Saints' Day", + "2045-12-08": "Immaculate Conception Day", + "2045-12-25": "Christmas Day", + "2045-12-26": "Saint Stephen's Day", + "2046-01-01": "New Year's Day", + "2046-01-06": "Epiphany", + "2046-02-06": "Carnival", + "2046-03-14": "Constitution Day", + "2046-03-23": "Good Friday", + "2046-03-26": "Easter Monday", + "2046-05-01": "Labor Day", + "2046-05-14": "Whit Monday", + "2046-07-21": "Canillo Annual Festival", + "2046-07-22": "Canillo Annual Festival", + "2046-07-23": "Canillo Annual Festival", + "2046-07-25": "Escaldes-Engordany Annual Festival", + "2046-07-26": "Escaldes-Engordany Annual Festival", + "2046-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2046-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2046-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2046-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2046-08-04": "Andorra la Vella Annual Festival", + "2046-08-05": "Andorra la Vella Annual Festival", + "2046-08-06": "Andorra la Vella Annual Festival", + "2046-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2046-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2046-09-08": "National Day", + "2046-11-01": "All Saints' Day", + "2046-12-08": "Immaculate Conception Day", + "2046-12-25": "Christmas Day", + "2046-12-26": "Saint Stephen's Day", + "2047-01-01": "New Year's Day", + "2047-01-06": "Epiphany", + "2047-02-26": "Carnival", + "2047-03-14": "Constitution Day", + "2047-04-12": "Good Friday", + "2047-04-15": "Easter Monday", + "2047-05-01": "Labor Day", + "2047-06-03": "Whit Monday", + "2047-07-20": "Canillo Annual Festival", + "2047-07-21": "Canillo Annual Festival", + "2047-07-22": "Canillo Annual Festival", + "2047-07-25": "Escaldes-Engordany Annual Festival", + "2047-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2047-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2047-07-28": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2047-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2047-08-03": "Andorra la Vella Annual Festival", + "2047-08-04": "Andorra la Vella Annual Festival", + "2047-08-05": "Andorra la Vella Annual Festival", + "2047-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2047-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2047-09-08": "National Day", + "2047-11-01": "All Saints' Day", + "2047-12-08": "Immaculate Conception Day", + "2047-12-25": "Christmas Day", + "2047-12-26": "Saint Stephen's Day", + "2048-01-01": "New Year's Day", + "2048-01-06": "Epiphany", + "2048-02-18": "Carnival", + "2048-03-14": "Constitution Day", + "2048-04-03": "Good Friday", + "2048-04-06": "Easter Monday", + "2048-05-01": "Labor Day", + "2048-05-25": "Whit Monday", + "2048-07-18": "Canillo Annual Festival", + "2048-07-19": "Canillo Annual Festival", + "2048-07-20": "Canillo Annual Festival", + "2048-07-24": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2048-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2048-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2048-07-27": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2048-08-01": "Andorra la Vella Annual Festival", + "2048-08-02": "Andorra la Vella Annual Festival", + "2048-08-03": "Andorra la Vella Annual Festival", + "2048-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2048-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2048-09-08": "National Day", + "2048-11-01": "All Saints' Day", + "2048-12-08": "Immaculate Conception Day", + "2048-12-25": "Christmas Day", + "2048-12-26": "Saint Stephen's Day", + "2049-01-01": "New Year's Day", + "2049-01-06": "Epiphany", + "2049-03-02": "Carnival", + "2049-03-14": "Constitution Day", + "2049-04-16": "Good Friday", + "2049-04-19": "Easter Monday", + "2049-05-01": "Labor Day", + "2049-06-07": "Whit Monday", + "2049-07-17": "Canillo Annual Festival", + "2049-07-18": "Canillo Annual Festival", + "2049-07-19": "Canillo Annual Festival", + "2049-07-23": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2049-07-24": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2049-07-25": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2049-07-26": "Escaldes-Engordany Annual Festival; Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2049-08-07": "Andorra la Vella Annual Festival", + "2049-08-08": "Andorra la Vella Annual Festival", + "2049-08-09": "Andorra la Vella Annual Festival", + "2049-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2049-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2049-09-08": "National Day", + "2049-11-01": "All Saints' Day", + "2049-12-08": "Immaculate Conception Day", + "2049-12-25": "Christmas Day", + "2049-12-26": "Saint Stephen's Day", + "2050-01-01": "New Year's Day", + "2050-01-06": "Epiphany", + "2050-02-22": "Carnival", + "2050-03-14": "Constitution Day", + "2050-04-08": "Good Friday", + "2050-04-11": "Easter Monday", + "2050-05-01": "Labor Day", + "2050-05-30": "Whit Monday", + "2050-07-16": "Canillo Annual Festival", + "2050-07-17": "Canillo Annual Festival", + "2050-07-18": "Canillo Annual Festival", + "2050-07-25": "Escaldes-Engordany Annual Festival", + "2050-07-26": "Escaldes-Engordany Annual Festival", + "2050-07-29": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2050-07-30": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2050-07-31": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2050-08-01": "Sant Juli\u00e0 de L\u00f2ria Annual Festival", + "2050-08-06": "Andorra la Vella Annual Festival", + "2050-08-07": "Andorra la Vella Annual Festival", + "2050-08-08": "Andorra la Vella Annual Festival", + "2050-08-15": "Assumption Day; Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2050-08-16": "Encamp Annual Festival; La Massana Annual Festival; Ordino Annual Festival", + "2050-09-08": "National Day", + "2050-11-01": "All Saints' Day", + "2050-12-08": "Immaculate Conception Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "Saint Stephen's Day" +} diff --git a/snapshots/countries/AE.json b/snapshots/countries/AE.json new file mode 100644 index 000000000..83cfab68f --- /dev/null +++ b/snapshots/countries/AE.json @@ -0,0 +1,1305 @@ +{ + "1950-01-01": "New Year's Day; Prophet's Birthday* (*estimated)", + "1950-05-14": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1950-07-16": "Eid al-Fitr* (*estimated)", + "1950-07-17": "Eid al-Fitr Holiday* (*estimated)", + "1950-07-18": "Eid al-Fitr Holiday* (*estimated)", + "1950-09-22": "Arafat Day* (*estimated)", + "1950-09-23": "Eid al-Adha* (*estimated)", + "1950-09-24": "Eid al-Adha Holiday* (*estimated)", + "1950-09-25": "Eid al-Adha Holiday* (*estimated)", + "1950-10-13": "Islamic New Year* (*estimated)", + "1950-12-02": "National Day", + "1950-12-03": "National Day", + "1950-12-22": "Prophet's Birthday* (*estimated)", + "1951-01-01": "New Year's Day", + "1951-05-04": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1951-07-06": "Eid al-Fitr* (*estimated)", + "1951-07-07": "Eid al-Fitr Holiday* (*estimated)", + "1951-07-08": "Eid al-Fitr Holiday* (*estimated)", + "1951-09-11": "Arafat Day* (*estimated)", + "1951-09-12": "Eid al-Adha* (*estimated)", + "1951-09-13": "Eid al-Adha Holiday* (*estimated)", + "1951-09-14": "Eid al-Adha Holiday* (*estimated)", + "1951-10-02": "Islamic New Year* (*estimated)", + "1951-12-02": "National Day", + "1951-12-03": "National Day", + "1951-12-11": "Prophet's Birthday* (*estimated)", + "1952-01-01": "New Year's Day", + "1952-04-22": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1952-06-23": "Eid al-Fitr* (*estimated)", + "1952-06-24": "Eid al-Fitr Holiday* (*estimated)", + "1952-06-25": "Eid al-Fitr Holiday* (*estimated)", + "1952-08-30": "Arafat Day* (*estimated)", + "1952-08-31": "Eid al-Adha* (*estimated)", + "1952-09-01": "Eid al-Adha Holiday* (*estimated)", + "1952-09-02": "Eid al-Adha Holiday* (*estimated)", + "1952-09-21": "Islamic New Year* (*estimated)", + "1952-11-30": "Prophet's Birthday* (*estimated)", + "1952-12-02": "National Day", + "1952-12-03": "National Day", + "1953-01-01": "New Year's Day", + "1953-04-12": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1953-06-13": "Eid al-Fitr* (*estimated)", + "1953-06-14": "Eid al-Fitr Holiday* (*estimated)", + "1953-06-15": "Eid al-Fitr Holiday* (*estimated)", + "1953-08-19": "Arafat Day* (*estimated)", + "1953-08-20": "Eid al-Adha* (*estimated)", + "1953-08-21": "Eid al-Adha Holiday* (*estimated)", + "1953-08-22": "Eid al-Adha Holiday* (*estimated)", + "1953-09-10": "Islamic New Year* (*estimated)", + "1953-11-19": "Prophet's Birthday* (*estimated)", + "1953-12-02": "National Day", + "1953-12-03": "National Day", + "1954-01-01": "New Year's Day", + "1954-04-01": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1954-06-02": "Eid al-Fitr* (*estimated)", + "1954-06-03": "Eid al-Fitr Holiday* (*estimated)", + "1954-06-04": "Eid al-Fitr Holiday* (*estimated)", + "1954-08-08": "Arafat Day* (*estimated)", + "1954-08-09": "Eid al-Adha* (*estimated)", + "1954-08-10": "Eid al-Adha Holiday* (*estimated)", + "1954-08-11": "Eid al-Adha Holiday* (*estimated)", + "1954-08-30": "Islamic New Year* (*estimated)", + "1954-11-08": "Prophet's Birthday* (*estimated)", + "1954-12-02": "National Day", + "1954-12-03": "National Day", + "1955-01-01": "New Year's Day", + "1955-03-21": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1955-05-23": "Eid al-Fitr* (*estimated)", + "1955-05-24": "Eid al-Fitr Holiday* (*estimated)", + "1955-05-25": "Eid al-Fitr Holiday* (*estimated)", + "1955-07-29": "Arafat Day* (*estimated)", + "1955-07-30": "Eid al-Adha* (*estimated)", + "1955-07-31": "Eid al-Adha Holiday* (*estimated)", + "1955-08-01": "Eid al-Adha Holiday* (*estimated)", + "1955-08-20": "Islamic New Year* (*estimated)", + "1955-10-29": "Prophet's Birthday* (*estimated)", + "1955-12-02": "National Day", + "1955-12-03": "National Day", + "1956-01-01": "New Year's Day", + "1956-03-10": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1956-05-11": "Eid al-Fitr* (*estimated)", + "1956-05-12": "Eid al-Fitr Holiday* (*estimated)", + "1956-05-13": "Eid al-Fitr Holiday* (*estimated)", + "1956-07-18": "Arafat Day* (*estimated)", + "1956-07-19": "Eid al-Adha* (*estimated)", + "1956-07-20": "Eid al-Adha Holiday* (*estimated)", + "1956-07-21": "Eid al-Adha Holiday* (*estimated)", + "1956-08-08": "Islamic New Year* (*estimated)", + "1956-10-17": "Prophet's Birthday* (*estimated)", + "1956-12-02": "National Day", + "1956-12-03": "National Day", + "1957-01-01": "New Year's Day", + "1957-02-27": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1957-05-01": "Eid al-Fitr* (*estimated)", + "1957-05-02": "Eid al-Fitr Holiday* (*estimated)", + "1957-05-03": "Eid al-Fitr Holiday* (*estimated)", + "1957-07-07": "Arafat Day* (*estimated)", + "1957-07-08": "Eid al-Adha* (*estimated)", + "1957-07-09": "Eid al-Adha Holiday* (*estimated)", + "1957-07-10": "Eid al-Adha Holiday* (*estimated)", + "1957-07-28": "Islamic New Year* (*estimated)", + "1957-10-06": "Prophet's Birthday* (*estimated)", + "1957-12-02": "National Day", + "1957-12-03": "National Day", + "1958-01-01": "New Year's Day", + "1958-02-16": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1958-04-20": "Eid al-Fitr* (*estimated)", + "1958-04-21": "Eid al-Fitr Holiday* (*estimated)", + "1958-04-22": "Eid al-Fitr Holiday* (*estimated)", + "1958-06-26": "Arafat Day* (*estimated)", + "1958-06-27": "Eid al-Adha* (*estimated)", + "1958-06-28": "Eid al-Adha Holiday* (*estimated)", + "1958-06-29": "Eid al-Adha Holiday* (*estimated)", + "1958-07-18": "Islamic New Year* (*estimated)", + "1958-09-26": "Prophet's Birthday* (*estimated)", + "1958-12-02": "National Day", + "1958-12-03": "National Day", + "1959-01-01": "New Year's Day", + "1959-02-06": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1959-04-10": "Eid al-Fitr* (*estimated)", + "1959-04-11": "Eid al-Fitr Holiday* (*estimated)", + "1959-04-12": "Eid al-Fitr Holiday* (*estimated)", + "1959-06-16": "Arafat Day* (*estimated)", + "1959-06-17": "Eid al-Adha* (*estimated)", + "1959-06-18": "Eid al-Adha Holiday* (*estimated)", + "1959-06-19": "Eid al-Adha Holiday* (*estimated)", + "1959-07-07": "Islamic New Year* (*estimated)", + "1959-09-15": "Prophet's Birthday* (*estimated)", + "1959-12-02": "National Day", + "1959-12-03": "National Day", + "1960-01-01": "New Year's Day", + "1960-01-26": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1960-03-28": "Eid al-Fitr* (*estimated)", + "1960-03-29": "Eid al-Fitr Holiday* (*estimated)", + "1960-03-30": "Eid al-Fitr Holiday* (*estimated)", + "1960-06-03": "Arafat Day* (*estimated)", + "1960-06-04": "Eid al-Adha* (*estimated)", + "1960-06-05": "Eid al-Adha Holiday* (*estimated)", + "1960-06-06": "Eid al-Adha Holiday* (*estimated)", + "1960-06-25": "Islamic New Year* (*estimated)", + "1960-09-03": "Prophet's Birthday* (*estimated)", + "1960-12-02": "National Day", + "1960-12-03": "National Day", + "1961-01-01": "New Year's Day", + "1961-01-14": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1961-03-18": "Eid al-Fitr* (*estimated)", + "1961-03-19": "Eid al-Fitr Holiday* (*estimated)", + "1961-03-20": "Eid al-Fitr Holiday* (*estimated)", + "1961-05-24": "Arafat Day* (*estimated)", + "1961-05-25": "Eid al-Adha* (*estimated)", + "1961-05-26": "Eid al-Adha Holiday* (*estimated)", + "1961-05-27": "Eid al-Adha Holiday* (*estimated)", + "1961-06-14": "Islamic New Year* (*estimated)", + "1961-08-23": "Prophet's Birthday* (*estimated)", + "1961-12-02": "National Day", + "1961-12-03": "National Day", + "1962-01-01": "New Year's Day", + "1962-01-04": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1962-03-07": "Eid al-Fitr* (*estimated)", + "1962-03-08": "Eid al-Fitr Holiday* (*estimated)", + "1962-03-09": "Eid al-Fitr Holiday* (*estimated)", + "1962-05-13": "Arafat Day* (*estimated)", + "1962-05-14": "Eid al-Adha* (*estimated)", + "1962-05-15": "Eid al-Adha Holiday* (*estimated)", + "1962-05-16": "Eid al-Adha Holiday* (*estimated)", + "1962-06-03": "Islamic New Year* (*estimated)", + "1962-08-12": "Prophet's Birthday* (*estimated)", + "1962-12-02": "National Day", + "1962-12-03": "National Day", + "1962-12-24": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1963-01-01": "New Year's Day", + "1963-02-24": "Eid al-Fitr* (*estimated)", + "1963-02-25": "Eid al-Fitr Holiday* (*estimated)", + "1963-02-26": "Eid al-Fitr Holiday* (*estimated)", + "1963-05-02": "Arafat Day* (*estimated)", + "1963-05-03": "Eid al-Adha* (*estimated)", + "1963-05-04": "Eid al-Adha Holiday* (*estimated)", + "1963-05-05": "Eid al-Adha Holiday* (*estimated)", + "1963-05-24": "Islamic New Year* (*estimated)", + "1963-08-02": "Prophet's Birthday* (*estimated)", + "1963-12-02": "National Day", + "1963-12-03": "National Day", + "1963-12-13": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1964-01-01": "New Year's Day", + "1964-02-14": "Eid al-Fitr* (*estimated)", + "1964-02-15": "Eid al-Fitr Holiday* (*estimated)", + "1964-02-16": "Eid al-Fitr Holiday* (*estimated)", + "1964-04-21": "Arafat Day* (*estimated)", + "1964-04-22": "Eid al-Adha* (*estimated)", + "1964-04-23": "Eid al-Adha Holiday* (*estimated)", + "1964-04-24": "Eid al-Adha Holiday* (*estimated)", + "1964-05-12": "Islamic New Year* (*estimated)", + "1964-07-21": "Prophet's Birthday* (*estimated)", + "1964-12-01": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1964-12-02": "National Day", + "1964-12-03": "National Day", + "1965-01-01": "New Year's Day", + "1965-02-02": "Eid al-Fitr* (*estimated)", + "1965-02-03": "Eid al-Fitr Holiday* (*estimated)", + "1965-02-04": "Eid al-Fitr Holiday* (*estimated)", + "1965-04-10": "Arafat Day* (*estimated)", + "1965-04-11": "Eid al-Adha* (*estimated)", + "1965-04-12": "Eid al-Adha Holiday* (*estimated)", + "1965-04-13": "Eid al-Adha Holiday* (*estimated)", + "1965-05-01": "Islamic New Year* (*estimated)", + "1965-07-10": "Prophet's Birthday* (*estimated)", + "1965-11-20": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1965-12-02": "National Day", + "1965-12-03": "National Day", + "1966-01-01": "New Year's Day", + "1966-01-22": "Eid al-Fitr* (*estimated)", + "1966-01-23": "Eid al-Fitr Holiday* (*estimated)", + "1966-01-24": "Eid al-Fitr Holiday* (*estimated)", + "1966-03-31": "Arafat Day* (*estimated)", + "1966-04-01": "Eid al-Adha* (*estimated)", + "1966-04-02": "Eid al-Adha Holiday* (*estimated)", + "1966-04-03": "Eid al-Adha Holiday* (*estimated)", + "1966-04-21": "Islamic New Year* (*estimated)", + "1966-07-01": "Prophet's Birthday* (*estimated)", + "1966-11-10": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1966-12-02": "National Day", + "1966-12-03": "National Day", + "1967-01-01": "New Year's Day", + "1967-01-12": "Eid al-Fitr* (*estimated)", + "1967-01-13": "Eid al-Fitr Holiday* (*estimated)", + "1967-01-14": "Eid al-Fitr Holiday* (*estimated)", + "1967-03-20": "Arafat Day* (*estimated)", + "1967-03-21": "Eid al-Adha* (*estimated)", + "1967-03-22": "Eid al-Adha Holiday* (*estimated)", + "1967-03-23": "Eid al-Adha Holiday* (*estimated)", + "1967-04-11": "Islamic New Year* (*estimated)", + "1967-06-19": "Prophet's Birthday* (*estimated)", + "1967-10-30": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1967-12-02": "National Day", + "1967-12-03": "National Day", + "1968-01-01": "Eid al-Fitr* (*estimated); New Year's Day", + "1968-01-02": "Eid al-Fitr Holiday* (*estimated)", + "1968-01-03": "Eid al-Fitr Holiday* (*estimated)", + "1968-03-08": "Arafat Day* (*estimated)", + "1968-03-09": "Eid al-Adha* (*estimated)", + "1968-03-10": "Eid al-Adha Holiday* (*estimated)", + "1968-03-11": "Eid al-Adha Holiday* (*estimated)", + "1968-03-30": "Islamic New Year* (*estimated)", + "1968-06-08": "Prophet's Birthday* (*estimated)", + "1968-10-19": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1968-12-02": "National Day", + "1968-12-03": "National Day", + "1968-12-21": "Eid al-Fitr* (*estimated)", + "1968-12-22": "Eid al-Fitr Holiday* (*estimated)", + "1968-12-23": "Eid al-Fitr Holiday* (*estimated)", + "1969-01-01": "New Year's Day", + "1969-02-26": "Arafat Day* (*estimated)", + "1969-02-27": "Eid al-Adha* (*estimated)", + "1969-02-28": "Eid al-Adha Holiday* (*estimated)", + "1969-03-01": "Eid al-Adha Holiday* (*estimated)", + "1969-03-19": "Islamic New Year* (*estimated)", + "1969-05-28": "Prophet's Birthday* (*estimated)", + "1969-10-08": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1969-12-02": "National Day", + "1969-12-03": "National Day", + "1969-12-10": "Eid al-Fitr* (*estimated)", + "1969-12-11": "Eid al-Fitr Holiday* (*estimated)", + "1969-12-12": "Eid al-Fitr Holiday* (*estimated)", + "1970-01-01": "New Year's Day", + "1970-02-15": "Arafat Day* (*estimated)", + "1970-02-16": "Eid al-Adha* (*estimated)", + "1970-02-17": "Eid al-Adha Holiday* (*estimated)", + "1970-02-18": "Eid al-Adha Holiday* (*estimated)", + "1970-03-09": "Islamic New Year* (*estimated)", + "1970-05-18": "Prophet's Birthday* (*estimated)", + "1970-09-28": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1970-11-30": "Eid al-Fitr* (*estimated)", + "1970-12-01": "Eid al-Fitr Holiday* (*estimated)", + "1970-12-02": "Eid al-Fitr Holiday* (*estimated); National Day", + "1970-12-03": "National Day", + "1971-01-01": "New Year's Day", + "1971-02-05": "Arafat Day* (*estimated)", + "1971-02-06": "Eid al-Adha* (*estimated)", + "1971-02-07": "Eid al-Adha Holiday* (*estimated)", + "1971-02-08": "Eid al-Adha Holiday* (*estimated)", + "1971-02-26": "Islamic New Year* (*estimated)", + "1971-05-07": "Prophet's Birthday* (*estimated)", + "1971-09-17": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1971-11-19": "Eid al-Fitr* (*estimated)", + "1971-11-20": "Eid al-Fitr Holiday* (*estimated)", + "1971-11-21": "Eid al-Fitr Holiday* (*estimated)", + "1971-12-02": "National Day", + "1971-12-03": "National Day", + "1972-01-01": "New Year's Day", + "1972-01-25": "Arafat Day* (*estimated)", + "1972-01-26": "Eid al-Adha* (*estimated)", + "1972-01-27": "Eid al-Adha Holiday* (*estimated)", + "1972-01-28": "Eid al-Adha Holiday* (*estimated)", + "1972-02-16": "Islamic New Year* (*estimated)", + "1972-04-25": "Prophet's Birthday* (*estimated)", + "1972-09-05": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1972-11-07": "Eid al-Fitr* (*estimated)", + "1972-11-08": "Eid al-Fitr Holiday* (*estimated)", + "1972-11-09": "Eid al-Fitr Holiday* (*estimated)", + "1972-12-02": "National Day", + "1972-12-03": "National Day", + "1973-01-01": "New Year's Day", + "1973-01-13": "Arafat Day* (*estimated)", + "1973-01-14": "Eid al-Adha* (*estimated)", + "1973-01-15": "Eid al-Adha Holiday* (*estimated)", + "1973-01-16": "Eid al-Adha Holiday* (*estimated)", + "1973-02-04": "Islamic New Year* (*estimated)", + "1973-04-15": "Prophet's Birthday* (*estimated)", + "1973-08-25": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1973-10-27": "Eid al-Fitr* (*estimated)", + "1973-10-28": "Eid al-Fitr Holiday* (*estimated)", + "1973-10-29": "Eid al-Fitr Holiday* (*estimated)", + "1973-12-02": "National Day", + "1973-12-03": "National Day", + "1974-01-01": "New Year's Day", + "1974-01-02": "Arafat Day* (*estimated)", + "1974-01-03": "Eid al-Adha* (*estimated)", + "1974-01-04": "Eid al-Adha Holiday* (*estimated)", + "1974-01-05": "Eid al-Adha Holiday* (*estimated)", + "1974-01-24": "Islamic New Year* (*estimated)", + "1974-04-04": "Prophet's Birthday* (*estimated)", + "1974-08-15": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1974-10-16": "Eid al-Fitr* (*estimated)", + "1974-10-17": "Eid al-Fitr Holiday* (*estimated)", + "1974-10-18": "Eid al-Fitr Holiday* (*estimated)", + "1974-12-02": "National Day", + "1974-12-03": "National Day", + "1974-12-23": "Arafat Day* (*estimated)", + "1974-12-24": "Eid al-Adha* (*estimated)", + "1974-12-25": "Eid al-Adha Holiday* (*estimated)", + "1974-12-26": "Eid al-Adha Holiday* (*estimated)", + "1975-01-01": "New Year's Day", + "1975-01-13": "Islamic New Year* (*estimated)", + "1975-03-24": "Prophet's Birthday* (*estimated)", + "1975-08-05": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1975-10-06": "Eid al-Fitr* (*estimated)", + "1975-10-07": "Eid al-Fitr Holiday* (*estimated)", + "1975-10-08": "Eid al-Fitr Holiday* (*estimated)", + "1975-12-02": "National Day", + "1975-12-03": "National Day", + "1975-12-12": "Arafat Day* (*estimated)", + "1975-12-13": "Eid al-Adha* (*estimated)", + "1975-12-14": "Eid al-Adha Holiday* (*estimated)", + "1975-12-15": "Eid al-Adha Holiday* (*estimated)", + "1976-01-01": "New Year's Day", + "1976-01-02": "Islamic New Year* (*estimated)", + "1976-03-12": "Prophet's Birthday* (*estimated)", + "1976-07-24": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1976-09-24": "Eid al-Fitr* (*estimated)", + "1976-09-25": "Eid al-Fitr Holiday* (*estimated)", + "1976-09-26": "Eid al-Fitr Holiday* (*estimated)", + "1976-11-30": "Arafat Day* (*estimated)", + "1976-12-01": "Eid al-Adha* (*estimated)", + "1976-12-02": "Eid al-Adha Holiday* (*estimated); National Day", + "1976-12-03": "Eid al-Adha Holiday* (*estimated); National Day", + "1976-12-22": "Islamic New Year* (*estimated)", + "1977-01-01": "New Year's Day", + "1977-03-02": "Prophet's Birthday* (*estimated)", + "1977-07-13": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1977-09-14": "Eid al-Fitr* (*estimated)", + "1977-09-15": "Eid al-Fitr Holiday* (*estimated)", + "1977-09-16": "Eid al-Fitr Holiday* (*estimated)", + "1977-11-20": "Arafat Day* (*estimated)", + "1977-11-21": "Eid al-Adha* (*estimated)", + "1977-11-22": "Eid al-Adha Holiday* (*estimated)", + "1977-11-23": "Eid al-Adha Holiday* (*estimated)", + "1977-12-02": "National Day", + "1977-12-03": "National Day", + "1977-12-11": "Islamic New Year* (*estimated)", + "1978-01-01": "New Year's Day", + "1978-02-19": "Prophet's Birthday* (*estimated)", + "1978-07-02": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1978-09-03": "Eid al-Fitr* (*estimated)", + "1978-09-04": "Eid al-Fitr Holiday* (*estimated)", + "1978-09-05": "Eid al-Fitr Holiday* (*estimated)", + "1978-11-09": "Arafat Day* (*estimated)", + "1978-11-10": "Eid al-Adha* (*estimated)", + "1978-11-11": "Eid al-Adha Holiday* (*estimated)", + "1978-11-12": "Eid al-Adha Holiday* (*estimated)", + "1978-12-01": "Islamic New Year* (*estimated)", + "1978-12-02": "National Day", + "1978-12-03": "National Day", + "1979-01-01": "New Year's Day", + "1979-02-09": "Prophet's Birthday* (*estimated)", + "1979-06-22": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1979-08-23": "Eid al-Fitr* (*estimated)", + "1979-08-24": "Eid al-Fitr Holiday* (*estimated)", + "1979-08-25": "Eid al-Fitr Holiday* (*estimated)", + "1979-10-30": "Arafat Day* (*estimated)", + "1979-10-31": "Eid al-Adha* (*estimated)", + "1979-11-01": "Eid al-Adha Holiday* (*estimated)", + "1979-11-02": "Eid al-Adha Holiday* (*estimated)", + "1979-11-20": "Islamic New Year* (*estimated)", + "1979-12-02": "National Day", + "1979-12-03": "National Day", + "1980-01-01": "New Year's Day", + "1980-01-30": "Prophet's Birthday* (*estimated)", + "1980-06-10": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1980-08-12": "Eid al-Fitr* (*estimated)", + "1980-08-13": "Eid al-Fitr Holiday* (*estimated)", + "1980-08-14": "Eid al-Fitr Holiday* (*estimated)", + "1980-10-18": "Arafat Day* (*estimated)", + "1980-10-19": "Eid al-Adha* (*estimated)", + "1980-10-20": "Eid al-Adha Holiday* (*estimated)", + "1980-10-21": "Eid al-Adha Holiday* (*estimated)", + "1980-11-09": "Islamic New Year* (*estimated)", + "1980-12-02": "National Day", + "1980-12-03": "National Day", + "1981-01-01": "New Year's Day", + "1981-01-18": "Prophet's Birthday* (*estimated)", + "1981-05-31": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1981-08-01": "Eid al-Fitr* (*estimated)", + "1981-08-02": "Eid al-Fitr Holiday* (*estimated)", + "1981-08-03": "Eid al-Fitr Holiday* (*estimated)", + "1981-10-07": "Arafat Day* (*estimated)", + "1981-10-08": "Eid al-Adha* (*estimated)", + "1981-10-09": "Eid al-Adha Holiday* (*estimated)", + "1981-10-10": "Eid al-Adha Holiday* (*estimated)", + "1981-10-28": "Islamic New Year* (*estimated)", + "1981-12-02": "National Day", + "1981-12-03": "National Day", + "1982-01-01": "New Year's Day", + "1982-01-07": "Prophet's Birthday* (*estimated)", + "1982-05-20": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1982-07-21": "Eid al-Fitr* (*estimated)", + "1982-07-22": "Eid al-Fitr Holiday* (*estimated)", + "1982-07-23": "Eid al-Fitr Holiday* (*estimated)", + "1982-09-26": "Arafat Day* (*estimated)", + "1982-09-27": "Eid al-Adha* (*estimated)", + "1982-09-28": "Eid al-Adha Holiday* (*estimated)", + "1982-09-29": "Eid al-Adha Holiday* (*estimated)", + "1982-10-18": "Islamic New Year* (*estimated)", + "1982-12-02": "National Day", + "1982-12-03": "National Day", + "1982-12-27": "Prophet's Birthday* (*estimated)", + "1983-01-01": "New Year's Day", + "1983-05-10": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1983-07-11": "Eid al-Fitr* (*estimated)", + "1983-07-12": "Eid al-Fitr Holiday* (*estimated)", + "1983-07-13": "Eid al-Fitr Holiday* (*estimated)", + "1983-09-16": "Arafat Day* (*estimated)", + "1983-09-17": "Eid al-Adha* (*estimated)", + "1983-09-18": "Eid al-Adha Holiday* (*estimated)", + "1983-09-19": "Eid al-Adha Holiday* (*estimated)", + "1983-10-07": "Islamic New Year* (*estimated)", + "1983-12-02": "National Day", + "1983-12-03": "National Day", + "1983-12-16": "Prophet's Birthday* (*estimated)", + "1984-01-01": "New Year's Day", + "1984-04-28": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1984-06-30": "Eid al-Fitr* (*estimated)", + "1984-07-01": "Eid al-Fitr Holiday* (*estimated)", + "1984-07-02": "Eid al-Fitr Holiday* (*estimated)", + "1984-09-04": "Arafat Day* (*estimated)", + "1984-09-05": "Eid al-Adha* (*estimated)", + "1984-09-06": "Eid al-Adha Holiday* (*estimated)", + "1984-09-07": "Eid al-Adha Holiday* (*estimated)", + "1984-09-26": "Islamic New Year* (*estimated)", + "1984-12-02": "National Day", + "1984-12-03": "National Day", + "1984-12-04": "Prophet's Birthday* (*estimated)", + "1985-01-01": "New Year's Day", + "1985-04-17": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1985-06-19": "Eid al-Fitr* (*estimated)", + "1985-06-20": "Eid al-Fitr Holiday* (*estimated)", + "1985-06-21": "Eid al-Fitr Holiday* (*estimated)", + "1985-08-25": "Arafat Day* (*estimated)", + "1985-08-26": "Eid al-Adha* (*estimated)", + "1985-08-27": "Eid al-Adha Holiday* (*estimated)", + "1985-08-28": "Eid al-Adha Holiday* (*estimated)", + "1985-09-15": "Islamic New Year* (*estimated)", + "1985-11-24": "Prophet's Birthday* (*estimated)", + "1985-12-02": "National Day", + "1985-12-03": "National Day", + "1986-01-01": "New Year's Day", + "1986-04-06": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1986-06-08": "Eid al-Fitr* (*estimated)", + "1986-06-09": "Eid al-Fitr Holiday* (*estimated)", + "1986-06-10": "Eid al-Fitr Holiday* (*estimated)", + "1986-08-14": "Arafat Day* (*estimated)", + "1986-08-15": "Eid al-Adha* (*estimated)", + "1986-08-16": "Eid al-Adha Holiday* (*estimated)", + "1986-08-17": "Eid al-Adha Holiday* (*estimated)", + "1986-09-05": "Islamic New Year* (*estimated)", + "1986-11-14": "Prophet's Birthday* (*estimated)", + "1986-12-02": "National Day", + "1986-12-03": "National Day", + "1987-01-01": "New Year's Day", + "1987-03-27": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1987-05-28": "Eid al-Fitr* (*estimated)", + "1987-05-29": "Eid al-Fitr Holiday* (*estimated)", + "1987-05-30": "Eid al-Fitr Holiday* (*estimated)", + "1987-08-03": "Arafat Day* (*estimated)", + "1987-08-04": "Eid al-Adha* (*estimated)", + "1987-08-05": "Eid al-Adha Holiday* (*estimated)", + "1987-08-06": "Eid al-Adha Holiday* (*estimated)", + "1987-08-25": "Islamic New Year* (*estimated)", + "1987-11-03": "Prophet's Birthday* (*estimated)", + "1987-12-02": "National Day", + "1987-12-03": "National Day", + "1988-01-01": "New Year's Day", + "1988-03-15": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1988-05-16": "Eid al-Fitr* (*estimated)", + "1988-05-17": "Eid al-Fitr Holiday* (*estimated)", + "1988-05-18": "Eid al-Fitr Holiday* (*estimated)", + "1988-07-22": "Arafat Day* (*estimated)", + "1988-07-23": "Eid al-Adha* (*estimated)", + "1988-07-24": "Eid al-Adha Holiday* (*estimated)", + "1988-07-25": "Eid al-Adha Holiday* (*estimated)", + "1988-08-13": "Islamic New Year* (*estimated)", + "1988-10-22": "Prophet's Birthday* (*estimated)", + "1988-12-02": "National Day", + "1988-12-03": "National Day", + "1989-01-01": "New Year's Day", + "1989-03-05": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1989-05-06": "Eid al-Fitr* (*estimated)", + "1989-05-07": "Eid al-Fitr Holiday* (*estimated)", + "1989-05-08": "Eid al-Fitr Holiday* (*estimated)", + "1989-07-12": "Arafat Day* (*estimated)", + "1989-07-13": "Eid al-Adha* (*estimated)", + "1989-07-14": "Eid al-Adha Holiday* (*estimated)", + "1989-07-15": "Eid al-Adha Holiday* (*estimated)", + "1989-08-02": "Islamic New Year* (*estimated)", + "1989-10-11": "Prophet's Birthday* (*estimated)", + "1989-12-02": "National Day", + "1989-12-03": "National Day", + "1990-01-01": "New Year's Day", + "1990-02-22": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1990-04-26": "Eid al-Fitr* (*estimated)", + "1990-04-27": "Eid al-Fitr Holiday* (*estimated)", + "1990-04-28": "Eid al-Fitr Holiday* (*estimated)", + "1990-07-01": "Arafat Day* (*estimated)", + "1990-07-02": "Eid al-Adha* (*estimated)", + "1990-07-03": "Eid al-Adha Holiday* (*estimated)", + "1990-07-04": "Eid al-Adha Holiday* (*estimated)", + "1990-07-23": "Islamic New Year* (*estimated)", + "1990-10-01": "Prophet's Birthday* (*estimated)", + "1990-12-02": "National Day", + "1990-12-03": "National Day", + "1991-01-01": "New Year's Day", + "1991-02-11": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1991-04-15": "Eid al-Fitr* (*estimated)", + "1991-04-16": "Eid al-Fitr Holiday* (*estimated)", + "1991-04-17": "Eid al-Fitr Holiday* (*estimated)", + "1991-06-21": "Arafat Day* (*estimated)", + "1991-06-22": "Eid al-Adha* (*estimated)", + "1991-06-23": "Eid al-Adha Holiday* (*estimated)", + "1991-06-24": "Eid al-Adha Holiday* (*estimated)", + "1991-07-12": "Islamic New Year* (*estimated)", + "1991-09-20": "Prophet's Birthday* (*estimated)", + "1991-12-02": "National Day", + "1991-12-03": "National Day", + "1992-01-01": "New Year's Day", + "1992-01-31": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1992-04-04": "Eid al-Fitr* (*estimated)", + "1992-04-05": "Eid al-Fitr Holiday* (*estimated)", + "1992-04-06": "Eid al-Fitr Holiday* (*estimated)", + "1992-06-10": "Arafat Day* (*estimated)", + "1992-06-11": "Eid al-Adha* (*estimated)", + "1992-06-12": "Eid al-Adha Holiday* (*estimated)", + "1992-06-13": "Eid al-Adha Holiday* (*estimated)", + "1992-07-01": "Islamic New Year* (*estimated)", + "1992-09-09": "Prophet's Birthday* (*estimated)", + "1992-12-02": "National Day", + "1992-12-03": "National Day", + "1993-01-01": "New Year's Day", + "1993-01-20": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1993-03-24": "Eid al-Fitr* (*estimated)", + "1993-03-25": "Eid al-Fitr Holiday* (*estimated)", + "1993-03-26": "Eid al-Fitr Holiday* (*estimated)", + "1993-05-30": "Arafat Day* (*estimated)", + "1993-05-31": "Eid al-Adha* (*estimated)", + "1993-06-01": "Eid al-Adha Holiday* (*estimated)", + "1993-06-02": "Eid al-Adha Holiday* (*estimated)", + "1993-06-21": "Islamic New Year* (*estimated)", + "1993-08-29": "Prophet's Birthday* (*estimated)", + "1993-12-02": "National Day", + "1993-12-03": "National Day", + "1994-01-01": "New Year's Day", + "1994-01-09": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1994-03-13": "Eid al-Fitr* (*estimated)", + "1994-03-14": "Eid al-Fitr Holiday* (*estimated)", + "1994-03-15": "Eid al-Fitr Holiday* (*estimated)", + "1994-05-19": "Arafat Day* (*estimated)", + "1994-05-20": "Eid al-Adha* (*estimated)", + "1994-05-21": "Eid al-Adha Holiday* (*estimated)", + "1994-05-22": "Eid al-Adha Holiday* (*estimated)", + "1994-06-10": "Islamic New Year* (*estimated)", + "1994-08-19": "Prophet's Birthday* (*estimated)", + "1994-12-02": "National Day", + "1994-12-03": "National Day", + "1994-12-29": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1995-01-01": "New Year's Day", + "1995-03-02": "Eid al-Fitr* (*estimated)", + "1995-03-03": "Eid al-Fitr Holiday* (*estimated)", + "1995-03-04": "Eid al-Fitr Holiday* (*estimated)", + "1995-05-08": "Arafat Day* (*estimated)", + "1995-05-09": "Eid al-Adha* (*estimated)", + "1995-05-10": "Eid al-Adha Holiday* (*estimated)", + "1995-05-11": "Eid al-Adha Holiday* (*estimated)", + "1995-05-30": "Islamic New Year* (*estimated)", + "1995-08-08": "Prophet's Birthday* (*estimated)", + "1995-12-02": "National Day", + "1995-12-03": "National Day", + "1995-12-19": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1996-01-01": "New Year's Day", + "1996-02-19": "Eid al-Fitr* (*estimated)", + "1996-02-20": "Eid al-Fitr Holiday* (*estimated)", + "1996-02-21": "Eid al-Fitr Holiday* (*estimated)", + "1996-04-26": "Arafat Day* (*estimated)", + "1996-04-27": "Eid al-Adha* (*estimated)", + "1996-04-28": "Eid al-Adha Holiday* (*estimated)", + "1996-04-29": "Eid al-Adha Holiday* (*estimated)", + "1996-05-18": "Islamic New Year* (*estimated)", + "1996-07-27": "Prophet's Birthday* (*estimated)", + "1996-12-02": "National Day", + "1996-12-03": "National Day", + "1996-12-08": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1997-01-01": "New Year's Day", + "1997-02-08": "Eid al-Fitr* (*estimated)", + "1997-02-09": "Eid al-Fitr Holiday* (*estimated)", + "1997-02-10": "Eid al-Fitr Holiday* (*estimated)", + "1997-04-16": "Arafat Day* (*estimated)", + "1997-04-17": "Eid al-Adha* (*estimated)", + "1997-04-18": "Eid al-Adha Holiday* (*estimated)", + "1997-04-19": "Eid al-Adha Holiday* (*estimated)", + "1997-05-07": "Islamic New Year* (*estimated)", + "1997-07-16": "Prophet's Birthday* (*estimated)", + "1997-11-27": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1997-12-02": "National Day", + "1997-12-03": "National Day", + "1998-01-01": "New Year's Day", + "1998-01-29": "Eid al-Fitr* (*estimated)", + "1998-01-30": "Eid al-Fitr Holiday* (*estimated)", + "1998-01-31": "Eid al-Fitr Holiday* (*estimated)", + "1998-04-06": "Arafat Day* (*estimated)", + "1998-04-07": "Eid al-Adha* (*estimated)", + "1998-04-08": "Eid al-Adha Holiday* (*estimated)", + "1998-04-09": "Eid al-Adha Holiday* (*estimated)", + "1998-04-27": "Islamic New Year* (*estimated)", + "1998-07-06": "Prophet's Birthday* (*estimated)", + "1998-11-16": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1998-12-02": "National Day", + "1998-12-03": "National Day", + "1999-01-01": "New Year's Day", + "1999-01-18": "Eid al-Fitr* (*estimated)", + "1999-01-19": "Eid al-Fitr Holiday* (*estimated)", + "1999-01-20": "Eid al-Fitr Holiday* (*estimated)", + "1999-03-26": "Arafat Day* (*estimated)", + "1999-03-27": "Eid al-Adha* (*estimated)", + "1999-03-28": "Eid al-Adha Holiday* (*estimated)", + "1999-03-29": "Eid al-Adha Holiday* (*estimated)", + "1999-04-17": "Islamic New Year* (*estimated)", + "1999-06-26": "Prophet's Birthday* (*estimated)", + "1999-11-05": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1999-12-02": "National Day", + "1999-12-03": "National Day", + "2000-01-01": "New Year's Day", + "2000-01-08": "Eid al-Fitr* (*estimated)", + "2000-01-09": "Eid al-Fitr Holiday* (*estimated)", + "2000-01-10": "Eid al-Fitr Holiday* (*estimated)", + "2000-03-15": "Arafat Day* (*estimated)", + "2000-03-16": "Eid al-Adha* (*estimated)", + "2000-03-17": "Eid al-Adha Holiday* (*estimated)", + "2000-03-18": "Eid al-Adha Holiday* (*estimated)", + "2000-04-06": "Islamic New Year* (*estimated)", + "2000-06-14": "Prophet's Birthday* (*estimated)", + "2000-10-24": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "2000-12-02": "National Day", + "2000-12-03": "National Day", + "2000-12-27": "Eid al-Fitr* (*estimated)", + "2000-12-28": "Eid al-Fitr Holiday* (*estimated)", + "2000-12-29": "Eid al-Fitr Holiday* (*estimated)", + "2001-01-01": "New Year's Day", + "2001-03-04": "Arafat Day* (*estimated)", + "2001-03-05": "Eid al-Adha* (*estimated)", + "2001-03-06": "Eid al-Adha Holiday* (*estimated)", + "2001-03-07": "Eid al-Adha Holiday* (*estimated)", + "2001-03-26": "Islamic New Year* (*estimated)", + "2001-06-04": "Prophet's Birthday* (*estimated)", + "2001-10-14": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "2001-12-02": "National Day", + "2001-12-03": "National Day", + "2001-12-16": "Eid al-Fitr* (*estimated)", + "2001-12-17": "Eid al-Fitr Holiday* (*estimated)", + "2001-12-18": "Eid al-Fitr Holiday* (*estimated)", + "2002-01-01": "New Year's Day", + "2002-02-21": "Arafat Day* (*estimated)", + "2002-02-22": "Eid al-Adha* (*estimated)", + "2002-02-23": "Eid al-Adha Holiday* (*estimated)", + "2002-02-24": "Eid al-Adha Holiday* (*estimated)", + "2002-03-15": "Islamic New Year* (*estimated)", + "2002-05-24": "Prophet's Birthday* (*estimated)", + "2002-10-04": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "2002-12-02": "National Day", + "2002-12-03": "National Day", + "2002-12-05": "Eid al-Fitr* (*estimated)", + "2002-12-06": "Eid al-Fitr Holiday* (*estimated)", + "2002-12-07": "Eid al-Fitr Holiday* (*estimated)", + "2003-01-01": "New Year's Day", + "2003-02-10": "Arafat Day* (*estimated)", + "2003-02-11": "Eid al-Adha* (*estimated)", + "2003-02-12": "Eid al-Adha Holiday* (*estimated)", + "2003-02-13": "Eid al-Adha Holiday* (*estimated)", + "2003-03-04": "Islamic New Year* (*estimated)", + "2003-05-13": "Prophet's Birthday* (*estimated)", + "2003-09-24": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "2003-11-25": "Eid al-Fitr* (*estimated)", + "2003-11-26": "Eid al-Fitr Holiday* (*estimated)", + "2003-11-27": "Eid al-Fitr Holiday* (*estimated)", + "2003-12-02": "National Day", + "2003-12-03": "National Day", + "2004-01-01": "New Year's Day", + "2004-01-31": "Arafat Day* (*estimated)", + "2004-02-01": "Eid al-Adha* (*estimated)", + "2004-02-02": "Eid al-Adha Holiday* (*estimated)", + "2004-02-03": "Eid al-Adha Holiday* (*estimated)", + "2004-02-21": "Islamic New Year* (*estimated)", + "2004-05-01": "Prophet's Birthday* (*estimated)", + "2004-09-12": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "2004-11-14": "Eid al-Fitr* (*estimated)", + "2004-11-15": "Eid al-Fitr Holiday* (*estimated)", + "2004-11-16": "Eid al-Fitr Holiday* (*estimated)", + "2004-12-02": "National Day", + "2004-12-03": "National Day", + "2005-01-01": "New Year's Day", + "2005-01-20": "Arafat Day* (*estimated)", + "2005-01-21": "Eid al-Adha* (*estimated)", + "2005-01-22": "Eid al-Adha Holiday* (*estimated)", + "2005-01-23": "Eid al-Adha Holiday* (*estimated)", + "2005-02-10": "Islamic New Year* (*estimated)", + "2005-04-21": "Prophet's Birthday* (*estimated)", + "2005-09-01": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "2005-11-03": "Eid al-Fitr* (*estimated)", + "2005-11-04": "Eid al-Fitr Holiday* (*estimated)", + "2005-11-05": "Eid al-Fitr Holiday* (*estimated)", + "2005-12-02": "National Day", + "2005-12-03": "National Day", + "2006-01-01": "New Year's Day", + "2006-01-09": "Arafat Day* (*estimated)", + "2006-01-10": "Eid al-Adha* (*estimated)", + "2006-01-11": "Eid al-Adha Holiday* (*estimated)", + "2006-01-12": "Eid al-Adha Holiday* (*estimated)", + "2006-01-31": "Islamic New Year* (*estimated)", + "2006-04-10": "Prophet's Birthday* (*estimated)", + "2006-08-21": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "2006-10-23": "Eid al-Fitr* (*estimated)", + "2006-10-24": "Eid al-Fitr Holiday* (*estimated)", + "2006-10-25": "Eid al-Fitr Holiday* (*estimated)", + "2006-12-02": "National Day", + "2006-12-03": "National Day", + "2006-12-30": "Arafat Day* (*estimated)", + "2006-12-31": "Eid al-Adha* (*estimated)", + "2007-01-01": "Eid al-Adha Holiday* (*estimated); New Year's Day", + "2007-01-02": "Eid al-Adha Holiday* (*estimated)", + "2007-01-20": "Islamic New Year* (*estimated)", + "2007-03-31": "Prophet's Birthday* (*estimated)", + "2007-08-10": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "2007-10-13": "Eid al-Fitr* (*estimated)", + "2007-10-14": "Eid al-Fitr Holiday* (*estimated)", + "2007-10-15": "Eid al-Fitr Holiday* (*estimated)", + "2007-12-02": "National Day", + "2007-12-03": "National Day", + "2007-12-19": "Arafat Day* (*estimated)", + "2007-12-20": "Eid al-Adha* (*estimated)", + "2007-12-21": "Eid al-Adha Holiday* (*estimated)", + "2007-12-22": "Eid al-Adha Holiday* (*estimated)", + "2008-01-01": "New Year's Day", + "2008-01-10": "Islamic New Year* (*estimated)", + "2008-03-20": "Prophet's Birthday* (*estimated)", + "2008-07-30": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "2008-10-01": "Eid al-Fitr* (*estimated)", + "2008-10-02": "Eid al-Fitr Holiday* (*estimated)", + "2008-10-03": "Eid al-Fitr Holiday* (*estimated)", + "2008-12-02": "National Day", + "2008-12-03": "National Day", + "2008-12-07": "Arafat Day* (*estimated)", + "2008-12-08": "Eid al-Adha* (*estimated)", + "2008-12-09": "Eid al-Adha Holiday* (*estimated)", + "2008-12-10": "Eid al-Adha Holiday* (*estimated)", + "2008-12-29": "Islamic New Year* (*estimated)", + "2009-01-01": "New Year's Day", + "2009-03-09": "Prophet's Birthday* (*estimated)", + "2009-07-20": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "2009-09-20": "Eid al-Fitr* (*estimated)", + "2009-09-21": "Eid al-Fitr Holiday* (*estimated)", + "2009-09-22": "Eid al-Fitr Holiday* (*estimated)", + "2009-11-26": "Arafat Day* (*estimated)", + "2009-11-27": "Eid al-Adha* (*estimated)", + "2009-11-28": "Eid al-Adha Holiday* (*estimated)", + "2009-11-29": "Eid al-Adha Holiday* (*estimated)", + "2009-12-02": "National Day", + "2009-12-03": "National Day", + "2009-12-18": "Islamic New Year* (*estimated)", + "2010-01-01": "New Year's Day", + "2010-02-26": "Prophet's Birthday* (*estimated)", + "2010-07-09": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "2010-09-10": "Eid al-Fitr* (*estimated)", + "2010-09-11": "Eid al-Fitr Holiday* (*estimated)", + "2010-09-12": "Eid al-Fitr Holiday* (*estimated)", + "2010-11-15": "Arafat Day* (*estimated)", + "2010-11-16": "Eid al-Adha* (*estimated)", + "2010-11-17": "Eid al-Adha Holiday* (*estimated)", + "2010-11-18": "Eid al-Adha Holiday* (*estimated)", + "2010-12-02": "National Day", + "2010-12-03": "National Day", + "2010-12-07": "Islamic New Year* (*estimated)", + "2011-01-01": "New Year's Day", + "2011-02-15": "Prophet's Birthday* (*estimated)", + "2011-06-29": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "2011-08-30": "Eid al-Fitr* (*estimated)", + "2011-08-31": "Eid al-Fitr Holiday* (*estimated)", + "2011-09-01": "Eid al-Fitr Holiday* (*estimated)", + "2011-11-05": "Arafat Day* (*estimated)", + "2011-11-06": "Eid al-Adha* (*estimated)", + "2011-11-07": "Eid al-Adha Holiday* (*estimated)", + "2011-11-08": "Eid al-Adha Holiday* (*estimated)", + "2011-11-26": "Islamic New Year* (*estimated)", + "2011-12-02": "National Day", + "2011-12-03": "National Day", + "2012-01-01": "New Year's Day", + "2012-02-04": "Prophet's Birthday* (*estimated)", + "2012-06-17": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "2012-08-19": "Eid al-Fitr* (*estimated)", + "2012-08-20": "Eid al-Fitr Holiday* (*estimated)", + "2012-08-21": "Eid al-Fitr Holiday* (*estimated)", + "2012-10-25": "Arafat Day* (*estimated)", + "2012-10-26": "Eid al-Adha* (*estimated)", + "2012-10-27": "Eid al-Adha Holiday* (*estimated)", + "2012-10-28": "Eid al-Adha Holiday* (*estimated)", + "2012-11-15": "Islamic New Year* (*estimated)", + "2012-12-02": "National Day", + "2012-12-03": "National Day", + "2013-01-01": "New Year's Day", + "2013-01-24": "Prophet's Birthday* (*estimated)", + "2013-06-06": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "2013-08-08": "Eid al-Fitr* (*estimated)", + "2013-08-09": "Eid al-Fitr Holiday* (*estimated)", + "2013-08-10": "Eid al-Fitr Holiday* (*estimated)", + "2013-10-14": "Arafat Day* (*estimated)", + "2013-10-15": "Eid al-Adha* (*estimated)", + "2013-10-16": "Eid al-Adha Holiday* (*estimated)", + "2013-10-17": "Eid al-Adha Holiday* (*estimated)", + "2013-11-04": "Islamic New Year* (*estimated)", + "2013-12-02": "National Day", + "2013-12-03": "National Day", + "2014-01-01": "New Year's Day", + "2014-01-13": "Prophet's Birthday* (*estimated)", + "2014-05-26": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "2014-07-28": "Eid al-Fitr* (*estimated)", + "2014-07-29": "Eid al-Fitr Holiday* (*estimated)", + "2014-07-30": "Eid al-Fitr Holiday* (*estimated)", + "2014-10-03": "Arafat Day* (*estimated)", + "2014-10-04": "Eid al-Adha* (*estimated)", + "2014-10-05": "Eid al-Adha Holiday* (*estimated)", + "2014-10-06": "Eid al-Adha Holiday* (*estimated)", + "2014-10-25": "Islamic New Year* (*estimated)", + "2014-12-02": "National Day", + "2014-12-03": "National Day", + "2015-01-01": "New Year's Day", + "2015-01-03": "Prophet's Birthday* (*estimated)", + "2015-05-16": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "2015-07-17": "Eid al-Fitr* (*estimated)", + "2015-07-18": "Eid al-Fitr Holiday* (*estimated)", + "2015-07-19": "Eid al-Fitr Holiday* (*estimated)", + "2015-09-22": "Arafat Day* (*estimated)", + "2015-09-23": "Eid al-Adha* (*estimated)", + "2015-09-24": "Eid al-Adha Holiday* (*estimated)", + "2015-09-25": "Eid al-Adha Holiday* (*estimated)", + "2015-10-14": "Islamic New Year* (*estimated)", + "2015-11-30": "Commemoration Day", + "2015-12-02": "National Day", + "2015-12-03": "National Day", + "2015-12-23": "Prophet's Birthday* (*estimated)", + "2016-01-01": "New Year's Day", + "2016-05-04": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "2016-07-06": "Eid al-Fitr* (*estimated)", + "2016-07-07": "Eid al-Fitr Holiday* (*estimated)", + "2016-07-08": "Eid al-Fitr Holiday* (*estimated)", + "2016-09-10": "Arafat Day* (*estimated)", + "2016-09-11": "Eid al-Adha* (*estimated)", + "2016-09-12": "Eid al-Adha Holiday* (*estimated)", + "2016-09-13": "Eid al-Adha Holiday* (*estimated)", + "2016-10-02": "Islamic New Year* (*estimated)", + "2016-11-30": "Commemoration Day", + "2016-12-02": "National Day", + "2016-12-03": "National Day", + "2016-12-11": "Prophet's Birthday* (*estimated)", + "2017-01-01": "New Year's Day", + "2017-04-23": "Leilat al-Miraj (Ascension of the Prophet)", + "2017-06-25": "Eid al-Fitr", + "2017-06-26": "Eid al-Fitr Holiday", + "2017-06-27": "Eid al-Fitr Holiday", + "2017-08-31": "Arafat Day", + "2017-09-01": "Eid al-Adha", + "2017-09-02": "Eid al-Adha Holiday", + "2017-09-03": "Eid al-Adha Holiday", + "2017-09-22": "Islamic New Year", + "2017-11-30": "Commemoration Day; Prophet's Birthday", + "2017-12-02": "National Day", + "2017-12-03": "National Day", + "2018-01-01": "New Year's Day", + "2018-04-13": "Leilat al-Miraj (Ascension of the Prophet)", + "2018-06-14": "Eid al-Fitr", + "2018-06-15": "Eid al-Fitr Holiday", + "2018-06-16": "Eid al-Fitr Holiday", + "2018-08-20": "Arafat Day", + "2018-08-21": "Eid al-Adha", + "2018-08-22": "Eid al-Adha Holiday", + "2018-08-23": "Eid al-Adha Holiday", + "2018-09-11": "Islamic New Year", + "2018-11-19": "Prophet's Birthday", + "2018-11-30": "Commemoration Day", + "2018-12-02": "National Day", + "2018-12-03": "National Day", + "2019-01-01": "New Year's Day", + "2019-06-03": "Eid al-Fitr", + "2019-06-04": "Eid al-Fitr Holiday", + "2019-06-05": "Eid al-Fitr Holiday", + "2019-08-10": "Arafat Day", + "2019-08-11": "Eid al-Adha", + "2019-08-12": "Eid al-Adha Holiday", + "2019-08-13": "Eid al-Adha Holiday", + "2019-08-31": "Islamic New Year", + "2019-11-09": "Prophet's Birthday", + "2019-12-01": "Commemoration Day", + "2019-12-02": "National Day", + "2019-12-03": "National Day", + "2020-01-01": "New Year's Day", + "2020-05-24": "Eid al-Fitr", + "2020-05-25": "Eid al-Fitr Holiday", + "2020-05-26": "Eid al-Fitr Holiday", + "2020-07-30": "Arafat Day", + "2020-07-31": "Eid al-Adha", + "2020-08-01": "Eid al-Adha Holiday", + "2020-08-02": "Eid al-Adha Holiday", + "2020-08-23": "Islamic New Year", + "2020-12-01": "Commemoration Day", + "2020-12-02": "National Day", + "2020-12-03": "National Day", + "2021-01-01": "New Year's Day", + "2021-05-13": "Eid al-Fitr* (*estimated)", + "2021-05-14": "Eid al-Fitr Holiday* (*estimated)", + "2021-05-15": "Eid al-Fitr Holiday* (*estimated)", + "2021-07-19": "Arafat Day* (*estimated)", + "2021-07-20": "Eid al-Adha* (*estimated)", + "2021-07-21": "Eid al-Adha Holiday* (*estimated)", + "2021-07-22": "Eid al-Adha Holiday* (*estimated)", + "2021-08-09": "Islamic New Year* (*estimated)", + "2021-12-01": "Commemoration Day", + "2021-12-02": "National Day", + "2021-12-03": "National Day", + "2022-01-01": "New Year's Day", + "2022-05-02": "Eid al-Fitr* (*estimated)", + "2022-05-03": "Eid al-Fitr Holiday* (*estimated)", + "2022-05-04": "Eid al-Fitr Holiday* (*estimated)", + "2022-07-08": "Arafat Day* (*estimated)", + "2022-07-09": "Eid al-Adha* (*estimated)", + "2022-07-10": "Eid al-Adha Holiday* (*estimated)", + "2022-07-11": "Eid al-Adha Holiday* (*estimated)", + "2022-07-30": "Islamic New Year* (*estimated)", + "2022-12-01": "Commemoration Day", + "2022-12-02": "National Day", + "2022-12-03": "National Day", + "2023-01-01": "New Year's Day", + "2023-04-21": "Eid al-Fitr* (*estimated)", + "2023-04-22": "Eid al-Fitr Holiday* (*estimated)", + "2023-04-23": "Eid al-Fitr Holiday* (*estimated)", + "2023-06-27": "Arafat Day* (*estimated)", + "2023-06-28": "Eid al-Adha* (*estimated)", + "2023-06-29": "Eid al-Adha Holiday* (*estimated)", + "2023-06-30": "Eid al-Adha Holiday* (*estimated)", + "2023-07-19": "Islamic New Year* (*estimated)", + "2023-12-01": "Commemoration Day", + "2023-12-02": "National Day", + "2023-12-03": "National Day", + "2024-01-01": "New Year's Day", + "2024-04-10": "Eid al-Fitr* (*estimated)", + "2024-04-11": "Eid al-Fitr Holiday* (*estimated)", + "2024-04-12": "Eid al-Fitr Holiday* (*estimated)", + "2024-06-15": "Arafat Day* (*estimated)", + "2024-06-16": "Eid al-Adha* (*estimated)", + "2024-06-17": "Eid al-Adha Holiday* (*estimated)", + "2024-06-18": "Eid al-Adha Holiday* (*estimated)", + "2024-07-07": "Islamic New Year* (*estimated)", + "2024-12-01": "Commemoration Day", + "2024-12-02": "National Day", + "2024-12-03": "National Day", + "2025-01-01": "New Year's Day", + "2025-03-30": "Eid al-Fitr* (*estimated)", + "2025-03-31": "Eid al-Fitr Holiday* (*estimated)", + "2025-04-01": "Eid al-Fitr Holiday* (*estimated)", + "2025-06-05": "Arafat Day* (*estimated)", + "2025-06-06": "Eid al-Adha* (*estimated)", + "2025-06-07": "Eid al-Adha Holiday* (*estimated)", + "2025-06-08": "Eid al-Adha Holiday* (*estimated)", + "2025-06-26": "Islamic New Year* (*estimated)", + "2025-12-01": "Commemoration Day", + "2025-12-02": "National Day", + "2025-12-03": "National Day", + "2026-01-01": "New Year's Day", + "2026-03-20": "Eid al-Fitr* (*estimated)", + "2026-03-21": "Eid al-Fitr Holiday* (*estimated)", + "2026-03-22": "Eid al-Fitr Holiday* (*estimated)", + "2026-05-26": "Arafat Day* (*estimated)", + "2026-05-27": "Eid al-Adha* (*estimated)", + "2026-05-28": "Eid al-Adha Holiday* (*estimated)", + "2026-05-29": "Eid al-Adha Holiday* (*estimated)", + "2026-06-16": "Islamic New Year* (*estimated)", + "2026-12-01": "Commemoration Day", + "2026-12-02": "National Day", + "2026-12-03": "National Day", + "2027-01-01": "New Year's Day", + "2027-03-09": "Eid al-Fitr* (*estimated)", + "2027-03-10": "Eid al-Fitr Holiday* (*estimated)", + "2027-03-11": "Eid al-Fitr Holiday* (*estimated)", + "2027-05-15": "Arafat Day* (*estimated)", + "2027-05-16": "Eid al-Adha* (*estimated)", + "2027-05-17": "Eid al-Adha Holiday* (*estimated)", + "2027-05-18": "Eid al-Adha Holiday* (*estimated)", + "2027-06-06": "Islamic New Year* (*estimated)", + "2027-12-01": "Commemoration Day", + "2027-12-02": "National Day", + "2027-12-03": "National Day", + "2028-01-01": "New Year's Day", + "2028-02-26": "Eid al-Fitr* (*estimated)", + "2028-02-27": "Eid al-Fitr Holiday* (*estimated)", + "2028-02-28": "Eid al-Fitr Holiday* (*estimated)", + "2028-05-04": "Arafat Day* (*estimated)", + "2028-05-05": "Eid al-Adha* (*estimated)", + "2028-05-06": "Eid al-Adha Holiday* (*estimated)", + "2028-05-07": "Eid al-Adha Holiday* (*estimated)", + "2028-05-25": "Islamic New Year* (*estimated)", + "2028-12-01": "Commemoration Day", + "2028-12-02": "National Day", + "2028-12-03": "National Day", + "2029-01-01": "New Year's Day", + "2029-02-14": "Eid al-Fitr* (*estimated)", + "2029-02-15": "Eid al-Fitr Holiday* (*estimated)", + "2029-02-16": "Eid al-Fitr Holiday* (*estimated)", + "2029-04-23": "Arafat Day* (*estimated)", + "2029-04-24": "Eid al-Adha* (*estimated)", + "2029-04-25": "Eid al-Adha Holiday* (*estimated)", + "2029-04-26": "Eid al-Adha Holiday* (*estimated)", + "2029-05-14": "Islamic New Year* (*estimated)", + "2029-12-01": "Commemoration Day", + "2029-12-02": "National Day", + "2029-12-03": "National Day", + "2030-01-01": "New Year's Day", + "2030-02-04": "Eid al-Fitr* (*estimated)", + "2030-02-05": "Eid al-Fitr Holiday* (*estimated)", + "2030-02-06": "Eid al-Fitr Holiday* (*estimated)", + "2030-04-12": "Arafat Day* (*estimated)", + "2030-04-13": "Eid al-Adha* (*estimated)", + "2030-04-14": "Eid al-Adha Holiday* (*estimated)", + "2030-04-15": "Eid al-Adha Holiday* (*estimated)", + "2030-05-03": "Islamic New Year* (*estimated)", + "2030-12-01": "Commemoration Day", + "2030-12-02": "National Day", + "2030-12-03": "National Day", + "2031-01-01": "New Year's Day", + "2031-01-24": "Eid al-Fitr* (*estimated)", + "2031-01-25": "Eid al-Fitr Holiday* (*estimated)", + "2031-01-26": "Eid al-Fitr Holiday* (*estimated)", + "2031-04-01": "Arafat Day* (*estimated)", + "2031-04-02": "Eid al-Adha* (*estimated)", + "2031-04-03": "Eid al-Adha Holiday* (*estimated)", + "2031-04-04": "Eid al-Adha Holiday* (*estimated)", + "2031-04-23": "Islamic New Year* (*estimated)", + "2031-12-01": "Commemoration Day", + "2031-12-02": "National Day", + "2031-12-03": "National Day", + "2032-01-01": "New Year's Day", + "2032-01-14": "Eid al-Fitr* (*estimated)", + "2032-01-15": "Eid al-Fitr Holiday* (*estimated)", + "2032-01-16": "Eid al-Fitr Holiday* (*estimated)", + "2032-03-21": "Arafat Day* (*estimated)", + "2032-03-22": "Eid al-Adha* (*estimated)", + "2032-03-23": "Eid al-Adha Holiday* (*estimated)", + "2032-03-24": "Eid al-Adha Holiday* (*estimated)", + "2032-04-11": "Islamic New Year* (*estimated)", + "2032-12-01": "Commemoration Day", + "2032-12-02": "National Day", + "2032-12-03": "National Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "Eid al-Fitr* (*estimated)", + "2033-01-03": "Eid al-Fitr Holiday* (*estimated)", + "2033-01-04": "Eid al-Fitr Holiday* (*estimated)", + "2033-03-10": "Arafat Day* (*estimated)", + "2033-03-11": "Eid al-Adha* (*estimated)", + "2033-03-12": "Eid al-Adha Holiday* (*estimated)", + "2033-03-13": "Eid al-Adha Holiday* (*estimated)", + "2033-04-01": "Islamic New Year* (*estimated)", + "2033-12-01": "Commemoration Day", + "2033-12-02": "National Day", + "2033-12-03": "National Day", + "2033-12-23": "Eid al-Fitr* (*estimated)", + "2033-12-24": "Eid al-Fitr Holiday* (*estimated)", + "2033-12-25": "Eid al-Fitr Holiday* (*estimated)", + "2034-01-01": "New Year's Day", + "2034-02-28": "Arafat Day* (*estimated)", + "2034-03-01": "Eid al-Adha* (*estimated)", + "2034-03-02": "Eid al-Adha Holiday* (*estimated)", + "2034-03-03": "Eid al-Adha Holiday* (*estimated)", + "2034-03-21": "Islamic New Year* (*estimated)", + "2034-12-01": "Commemoration Day", + "2034-12-02": "National Day", + "2034-12-03": "National Day", + "2034-12-12": "Eid al-Fitr* (*estimated)", + "2034-12-13": "Eid al-Fitr Holiday* (*estimated)", + "2034-12-14": "Eid al-Fitr Holiday* (*estimated)", + "2035-01-01": "New Year's Day", + "2035-02-17": "Arafat Day* (*estimated)", + "2035-02-18": "Eid al-Adha* (*estimated)", + "2035-02-19": "Eid al-Adha Holiday* (*estimated)", + "2035-02-20": "Eid al-Adha Holiday* (*estimated)", + "2035-03-11": "Islamic New Year* (*estimated)", + "2035-12-01": "Commemoration Day; Eid al-Fitr* (*estimated)", + "2035-12-02": "Eid al-Fitr Holiday* (*estimated); National Day", + "2035-12-03": "Eid al-Fitr Holiday* (*estimated); National Day", + "2036-01-01": "New Year's Day", + "2036-02-06": "Arafat Day* (*estimated)", + "2036-02-07": "Eid al-Adha* (*estimated)", + "2036-02-08": "Eid al-Adha Holiday* (*estimated)", + "2036-02-09": "Eid al-Adha Holiday* (*estimated)", + "2036-02-28": "Islamic New Year* (*estimated)", + "2036-11-19": "Eid al-Fitr* (*estimated)", + "2036-11-20": "Eid al-Fitr Holiday* (*estimated)", + "2036-11-21": "Eid al-Fitr Holiday* (*estimated)", + "2036-12-01": "Commemoration Day", + "2036-12-02": "National Day", + "2036-12-03": "National Day", + "2037-01-01": "New Year's Day", + "2037-01-25": "Arafat Day* (*estimated)", + "2037-01-26": "Eid al-Adha* (*estimated)", + "2037-01-27": "Eid al-Adha Holiday* (*estimated)", + "2037-01-28": "Eid al-Adha Holiday* (*estimated)", + "2037-02-16": "Islamic New Year* (*estimated)", + "2037-11-08": "Eid al-Fitr* (*estimated)", + "2037-11-09": "Eid al-Fitr Holiday* (*estimated)", + "2037-11-10": "Eid al-Fitr Holiday* (*estimated)", + "2037-12-01": "Commemoration Day", + "2037-12-02": "National Day", + "2037-12-03": "National Day", + "2038-01-01": "New Year's Day", + "2038-01-15": "Arafat Day* (*estimated)", + "2038-01-16": "Eid al-Adha* (*estimated)", + "2038-01-17": "Eid al-Adha Holiday* (*estimated)", + "2038-01-18": "Eid al-Adha Holiday* (*estimated)", + "2038-02-05": "Islamic New Year* (*estimated)", + "2038-10-29": "Eid al-Fitr* (*estimated)", + "2038-10-30": "Eid al-Fitr Holiday* (*estimated)", + "2038-10-31": "Eid al-Fitr Holiday* (*estimated)", + "2038-12-01": "Commemoration Day", + "2038-12-02": "National Day", + "2038-12-03": "National Day", + "2039-01-01": "New Year's Day", + "2039-01-04": "Arafat Day* (*estimated)", + "2039-01-05": "Eid al-Adha* (*estimated)", + "2039-01-06": "Eid al-Adha Holiday* (*estimated)", + "2039-01-07": "Eid al-Adha Holiday* (*estimated)", + "2039-01-26": "Islamic New Year* (*estimated)", + "2039-10-19": "Eid al-Fitr* (*estimated)", + "2039-10-20": "Eid al-Fitr Holiday* (*estimated)", + "2039-10-21": "Eid al-Fitr Holiday* (*estimated)", + "2039-12-01": "Commemoration Day", + "2039-12-02": "National Day", + "2039-12-03": "National Day", + "2039-12-25": "Arafat Day* (*estimated)", + "2039-12-26": "Eid al-Adha* (*estimated)", + "2039-12-27": "Eid al-Adha Holiday* (*estimated)", + "2039-12-28": "Eid al-Adha Holiday* (*estimated)", + "2040-01-01": "New Year's Day", + "2040-01-15": "Islamic New Year* (*estimated)", + "2040-10-07": "Eid al-Fitr* (*estimated)", + "2040-10-08": "Eid al-Fitr Holiday* (*estimated)", + "2040-10-09": "Eid al-Fitr Holiday* (*estimated)", + "2040-12-01": "Commemoration Day", + "2040-12-02": "National Day", + "2040-12-03": "National Day", + "2040-12-13": "Arafat Day* (*estimated)", + "2040-12-14": "Eid al-Adha* (*estimated)", + "2040-12-15": "Eid al-Adha Holiday* (*estimated)", + "2040-12-16": "Eid al-Adha Holiday* (*estimated)", + "2041-01-01": "New Year's Day", + "2041-01-04": "Islamic New Year* (*estimated)", + "2041-09-26": "Eid al-Fitr* (*estimated)", + "2041-09-27": "Eid al-Fitr Holiday* (*estimated)", + "2041-09-28": "Eid al-Fitr Holiday* (*estimated)", + "2041-12-01": "Commemoration Day", + "2041-12-02": "National Day", + "2041-12-03": "Arafat Day* (*estimated); National Day", + "2041-12-04": "Eid al-Adha* (*estimated)", + "2041-12-05": "Eid al-Adha Holiday* (*estimated)", + "2041-12-06": "Eid al-Adha Holiday* (*estimated)", + "2041-12-24": "Islamic New Year* (*estimated)", + "2042-01-01": "New Year's Day", + "2042-09-15": "Eid al-Fitr* (*estimated)", + "2042-09-16": "Eid al-Fitr Holiday* (*estimated)", + "2042-09-17": "Eid al-Fitr Holiday* (*estimated)", + "2042-11-22": "Arafat Day* (*estimated)", + "2042-11-23": "Eid al-Adha* (*estimated)", + "2042-11-24": "Eid al-Adha Holiday* (*estimated)", + "2042-11-25": "Eid al-Adha Holiday* (*estimated)", + "2042-12-01": "Commemoration Day", + "2042-12-02": "National Day", + "2042-12-03": "National Day", + "2042-12-14": "Islamic New Year* (*estimated)", + "2043-01-01": "New Year's Day", + "2043-09-04": "Eid al-Fitr* (*estimated)", + "2043-09-05": "Eid al-Fitr Holiday* (*estimated)", + "2043-09-06": "Eid al-Fitr Holiday* (*estimated)", + "2043-11-11": "Arafat Day* (*estimated)", + "2043-11-12": "Eid al-Adha* (*estimated)", + "2043-11-13": "Eid al-Adha Holiday* (*estimated)", + "2043-11-14": "Eid al-Adha Holiday* (*estimated)", + "2043-12-01": "Commemoration Day", + "2043-12-02": "National Day", + "2043-12-03": "Islamic New Year* (*estimated); National Day", + "2044-01-01": "New Year's Day", + "2044-08-24": "Eid al-Fitr* (*estimated)", + "2044-08-25": "Eid al-Fitr Holiday* (*estimated)", + "2044-08-26": "Eid al-Fitr Holiday* (*estimated)", + "2044-10-30": "Arafat Day* (*estimated)", + "2044-10-31": "Eid al-Adha* (*estimated)", + "2044-11-01": "Eid al-Adha Holiday* (*estimated)", + "2044-11-02": "Eid al-Adha Holiday* (*estimated)", + "2044-11-21": "Islamic New Year* (*estimated)", + "2044-12-01": "Commemoration Day", + "2044-12-02": "National Day", + "2044-12-03": "National Day", + "2045-01-01": "New Year's Day", + "2045-08-14": "Eid al-Fitr* (*estimated)", + "2045-08-15": "Eid al-Fitr Holiday* (*estimated)", + "2045-08-16": "Eid al-Fitr Holiday* (*estimated)", + "2045-10-20": "Arafat Day* (*estimated)", + "2045-10-21": "Eid al-Adha* (*estimated)", + "2045-10-22": "Eid al-Adha Holiday* (*estimated)", + "2045-10-23": "Eid al-Adha Holiday* (*estimated)", + "2045-11-10": "Islamic New Year* (*estimated)", + "2045-12-01": "Commemoration Day", + "2045-12-02": "National Day", + "2045-12-03": "National Day", + "2046-01-01": "New Year's Day", + "2046-08-03": "Eid al-Fitr* (*estimated)", + "2046-08-04": "Eid al-Fitr Holiday* (*estimated)", + "2046-08-05": "Eid al-Fitr Holiday* (*estimated)", + "2046-10-09": "Arafat Day* (*estimated)", + "2046-10-10": "Eid al-Adha* (*estimated)", + "2046-10-11": "Eid al-Adha Holiday* (*estimated)", + "2046-10-12": "Eid al-Adha Holiday* (*estimated)", + "2046-10-31": "Islamic New Year* (*estimated)", + "2046-12-01": "Commemoration Day", + "2046-12-02": "National Day", + "2046-12-03": "National Day", + "2047-01-01": "New Year's Day", + "2047-07-24": "Eid al-Fitr* (*estimated)", + "2047-07-25": "Eid al-Fitr Holiday* (*estimated)", + "2047-07-26": "Eid al-Fitr Holiday* (*estimated)", + "2047-09-29": "Arafat Day* (*estimated)", + "2047-09-30": "Eid al-Adha* (*estimated)", + "2047-10-01": "Eid al-Adha Holiday* (*estimated)", + "2047-10-02": "Eid al-Adha Holiday* (*estimated)", + "2047-10-20": "Islamic New Year* (*estimated)", + "2047-12-01": "Commemoration Day", + "2047-12-02": "National Day", + "2047-12-03": "National Day", + "2048-01-01": "New Year's Day", + "2048-07-12": "Eid al-Fitr* (*estimated)", + "2048-07-13": "Eid al-Fitr Holiday* (*estimated)", + "2048-07-14": "Eid al-Fitr Holiday* (*estimated)", + "2048-09-18": "Arafat Day* (*estimated)", + "2048-09-19": "Eid al-Adha* (*estimated)", + "2048-09-20": "Eid al-Adha Holiday* (*estimated)", + "2048-09-21": "Eid al-Adha Holiday* (*estimated)", + "2048-10-09": "Islamic New Year* (*estimated)", + "2048-12-01": "Commemoration Day", + "2048-12-02": "National Day", + "2048-12-03": "National Day", + "2049-01-01": "New Year's Day", + "2049-07-01": "Eid al-Fitr* (*estimated)", + "2049-07-02": "Eid al-Fitr Holiday* (*estimated)", + "2049-07-03": "Eid al-Fitr Holiday* (*estimated)", + "2049-09-07": "Arafat Day* (*estimated)", + "2049-09-08": "Eid al-Adha* (*estimated)", + "2049-09-09": "Eid al-Adha Holiday* (*estimated)", + "2049-09-10": "Eid al-Adha Holiday* (*estimated)", + "2049-09-28": "Islamic New Year* (*estimated)", + "2049-12-01": "Commemoration Day", + "2049-12-02": "National Day", + "2049-12-03": "National Day", + "2050-01-01": "New Year's Day", + "2050-06-20": "Eid al-Fitr* (*estimated)", + "2050-06-21": "Eid al-Fitr Holiday* (*estimated)", + "2050-06-22": "Eid al-Fitr Holiday* (*estimated)", + "2050-08-27": "Arafat Day* (*estimated)", + "2050-08-28": "Eid al-Adha* (*estimated)", + "2050-08-29": "Eid al-Adha Holiday* (*estimated)", + "2050-08-30": "Eid al-Adha Holiday* (*estimated)", + "2050-09-17": "Islamic New Year* (*estimated)", + "2050-12-01": "Commemoration Day", + "2050-12-02": "National Day", + "2050-12-03": "National Day" +} diff --git a/snapshots/countries/AL.json b/snapshots/countries/AL.json new file mode 100644 index 000000000..044575200 --- /dev/null +++ b/snapshots/countries/AL.json @@ -0,0 +1,1636 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-02": "New Year's Day", + "1950-01-03": "New Year's Day (Observed)", + "1950-04-09": "Catholic Easter; Orthodox Easter", + "1950-04-10": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "1950-05-01": "May Day", + "1950-07-16": "Eid al-Fitr* (*estimated)", + "1950-07-17": "Eid al-Fitr* (*estimated) (Observed)", + "1950-09-23": "Eid al-Adha* (*estimated)", + "1950-09-25": "Eid al-Adha* (*estimated) (Observed)", + "1950-11-28": "Independence Day", + "1950-11-29": "Liberation Day", + "1950-12-25": "Christmas Day", + "1951-01-01": "New Year's Day", + "1951-01-02": "New Year's Day", + "1951-03-25": "Catholic Easter", + "1951-03-26": "Catholic Easter (Observed)", + "1951-04-29": "Orthodox Easter", + "1951-04-30": "Orthodox Easter (Observed)", + "1951-05-01": "May Day", + "1951-07-06": "Eid al-Fitr* (*estimated)", + "1951-09-12": "Eid al-Adha* (*estimated)", + "1951-11-28": "Independence Day", + "1951-11-29": "Liberation Day", + "1951-12-25": "Christmas Day", + "1952-01-01": "New Year's Day", + "1952-01-02": "New Year's Day", + "1952-04-13": "Catholic Easter", + "1952-04-14": "Catholic Easter (Observed)", + "1952-04-20": "Orthodox Easter", + "1952-04-21": "Orthodox Easter (Observed)", + "1952-05-01": "May Day", + "1952-06-23": "Eid al-Fitr* (*estimated)", + "1952-08-31": "Eid al-Adha* (*estimated)", + "1952-09-01": "Eid al-Adha* (*estimated) (Observed)", + "1952-11-28": "Independence Day", + "1952-11-29": "Liberation Day", + "1952-12-01": "Liberation Day (Observed)", + "1952-12-25": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-01-02": "New Year's Day", + "1953-04-05": "Catholic Easter; Orthodox Easter", + "1953-04-06": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "1953-05-01": "May Day", + "1953-06-13": "Eid al-Fitr* (*estimated)", + "1953-06-15": "Eid al-Fitr* (*estimated) (Observed)", + "1953-08-20": "Eid al-Adha* (*estimated)", + "1953-11-28": "Independence Day", + "1953-11-29": "Liberation Day", + "1953-11-30": "Independence Day (Observed)", + "1953-12-01": "Liberation Day (Observed)", + "1953-12-25": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-01-02": "New Year's Day", + "1954-01-04": "New Year's Day (Observed)", + "1954-04-18": "Catholic Easter", + "1954-04-19": "Catholic Easter (Observed)", + "1954-04-25": "Orthodox Easter", + "1954-04-26": "Orthodox Easter (Observed)", + "1954-05-01": "May Day", + "1954-05-03": "May Day (Observed)", + "1954-06-02": "Eid al-Fitr* (*estimated)", + "1954-08-09": "Eid al-Adha* (*estimated)", + "1954-11-28": "Independence Day", + "1954-11-29": "Liberation Day", + "1954-11-30": "Independence Day (Observed)", + "1954-12-25": "Christmas Day", + "1954-12-27": "Christmas Day (Observed)", + "1955-01-01": "New Year's Day", + "1955-01-02": "New Year's Day", + "1955-01-03": "New Year's Day (Observed)", + "1955-01-04": "New Year's Day (Observed)", + "1955-04-10": "Catholic Easter", + "1955-04-11": "Catholic Easter (Observed)", + "1955-04-17": "Orthodox Easter", + "1955-04-18": "Orthodox Easter (Observed)", + "1955-05-01": "May Day", + "1955-05-02": "May Day (Observed)", + "1955-05-23": "Eid al-Fitr* (*estimated)", + "1955-07-30": "Eid al-Adha* (*estimated)", + "1955-08-01": "Eid al-Adha* (*estimated) (Observed)", + "1955-11-28": "Independence Day", + "1955-11-29": "Liberation Day", + "1955-12-25": "Christmas Day", + "1955-12-26": "Christmas Day (Observed)", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year's Day", + "1956-01-03": "New Year's Day (Observed)", + "1956-04-01": "Catholic Easter", + "1956-04-02": "Catholic Easter (Observed)", + "1956-05-01": "May Day", + "1956-05-06": "Orthodox Easter", + "1956-05-07": "Orthodox Easter (Observed)", + "1956-05-11": "Eid al-Fitr* (*estimated)", + "1956-07-19": "Eid al-Adha* (*estimated)", + "1956-11-28": "Independence Day", + "1956-11-29": "Liberation Day", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-01-02": "New Year's Day", + "1957-04-21": "Catholic Easter; Orthodox Easter", + "1957-04-22": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "1957-05-01": "Eid al-Fitr* (*estimated); May Day", + "1957-07-08": "Eid al-Adha* (*estimated)", + "1957-11-28": "Independence Day", + "1957-11-29": "Liberation Day", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-01-02": "New Year's Day", + "1958-04-06": "Catholic Easter", + "1958-04-07": "Catholic Easter (Observed)", + "1958-04-13": "Orthodox Easter", + "1958-04-14": "Orthodox Easter (Observed)", + "1958-04-20": "Eid al-Fitr* (*estimated)", + "1958-04-21": "Eid al-Fitr* (*estimated) (Observed)", + "1958-05-01": "May Day", + "1958-06-27": "Eid al-Adha* (*estimated)", + "1958-11-28": "Independence Day", + "1958-11-29": "Liberation Day", + "1958-12-01": "Liberation Day (Observed)", + "1958-12-25": "Christmas Day", + "1959-01-01": "New Year's Day", + "1959-01-02": "New Year's Day", + "1959-03-29": "Catholic Easter", + "1959-03-30": "Catholic Easter (Observed)", + "1959-04-10": "Eid al-Fitr* (*estimated)", + "1959-05-01": "May Day", + "1959-05-03": "Orthodox Easter", + "1959-05-04": "Orthodox Easter (Observed)", + "1959-06-17": "Eid al-Adha* (*estimated)", + "1959-11-28": "Independence Day", + "1959-11-29": "Liberation Day", + "1959-11-30": "Independence Day (Observed)", + "1959-12-01": "Liberation Day (Observed)", + "1959-12-25": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-01-02": "New Year's Day", + "1960-01-04": "New Year's Day (Observed)", + "1960-03-28": "Eid al-Fitr* (*estimated)", + "1960-04-17": "Catholic Easter; Orthodox Easter", + "1960-04-18": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "1960-05-01": "May Day", + "1960-05-02": "May Day (Observed)", + "1960-06-04": "Eid al-Adha* (*estimated)", + "1960-06-06": "Eid al-Adha* (*estimated) (Observed)", + "1960-11-28": "Independence Day", + "1960-11-29": "Liberation Day", + "1960-12-25": "Christmas Day", + "1960-12-26": "Christmas Day (Observed)", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day", + "1961-01-03": "New Year's Day (Observed)", + "1961-03-18": "Eid al-Fitr* (*estimated)", + "1961-03-20": "Eid al-Fitr* (*estimated) (Observed)", + "1961-04-02": "Catholic Easter", + "1961-04-03": "Catholic Easter (Observed)", + "1961-04-09": "Orthodox Easter", + "1961-04-10": "Orthodox Easter (Observed)", + "1961-05-01": "May Day", + "1961-05-25": "Eid al-Adha* (*estimated)", + "1961-11-28": "Independence Day", + "1961-11-29": "Liberation Day", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-01-02": "New Year's Day", + "1962-03-07": "Eid al-Fitr* (*estimated)", + "1962-04-22": "Catholic Easter", + "1962-04-23": "Catholic Easter (Observed)", + "1962-04-29": "Orthodox Easter", + "1962-04-30": "Orthodox Easter (Observed)", + "1962-05-01": "May Day", + "1962-05-14": "Eid al-Adha* (*estimated)", + "1962-11-28": "Independence Day", + "1962-11-29": "Liberation Day", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-01-02": "New Year's Day", + "1963-02-24": "Eid al-Fitr* (*estimated)", + "1963-02-25": "Eid al-Fitr* (*estimated) (Observed)", + "1963-04-14": "Catholic Easter; Orthodox Easter", + "1963-04-15": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "1963-05-01": "May Day", + "1963-05-03": "Eid al-Adha* (*estimated)", + "1963-11-28": "Independence Day", + "1963-11-29": "Liberation Day", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-01-02": "New Year's Day", + "1964-02-14": "Eid al-Fitr* (*estimated)", + "1964-03-29": "Catholic Easter", + "1964-03-30": "Catholic Easter (Observed)", + "1964-04-22": "Eid al-Adha* (*estimated)", + "1964-05-01": "May Day", + "1964-05-03": "Orthodox Easter", + "1964-05-04": "Orthodox Easter (Observed)", + "1964-11-28": "Independence Day", + "1964-11-29": "Liberation Day", + "1964-11-30": "Independence Day (Observed)", + "1964-12-01": "Liberation Day (Observed)", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-01-02": "New Year's Day", + "1965-01-04": "New Year's Day (Observed)", + "1965-02-02": "Eid al-Fitr* (*estimated)", + "1965-04-11": "Eid al-Adha* (*estimated)", + "1965-04-12": "Eid al-Adha* (*estimated) (Observed)", + "1965-04-18": "Catholic Easter", + "1965-04-19": "Catholic Easter (Observed)", + "1965-04-25": "Orthodox Easter", + "1965-04-26": "Orthodox Easter (Observed)", + "1965-05-01": "May Day", + "1965-05-03": "May Day (Observed)", + "1965-11-28": "Independence Day", + "1965-11-29": "Liberation Day", + "1965-11-30": "Independence Day (Observed)", + "1965-12-25": "Christmas Day", + "1965-12-27": "Christmas Day (Observed)", + "1966-01-01": "New Year's Day", + "1966-01-02": "New Year's Day", + "1966-01-03": "New Year's Day (Observed)", + "1966-01-04": "New Year's Day (Observed)", + "1966-01-22": "Eid al-Fitr* (*estimated)", + "1966-01-24": "Eid al-Fitr* (*estimated) (Observed)", + "1966-04-01": "Eid al-Adha* (*estimated)", + "1966-04-10": "Catholic Easter; Orthodox Easter", + "1966-04-11": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "1966-05-01": "May Day", + "1966-05-02": "May Day (Observed)", + "1966-11-28": "Independence Day", + "1966-11-29": "Liberation Day", + "1966-12-25": "Christmas Day", + "1966-12-26": "Christmas Day (Observed)", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day", + "1967-01-03": "New Year's Day (Observed)", + "1967-01-12": "Eid al-Fitr* (*estimated)", + "1967-03-21": "Eid al-Adha* (*estimated)", + "1967-03-26": "Catholic Easter", + "1967-03-27": "Catholic Easter (Observed)", + "1967-04-30": "Orthodox Easter", + "1967-05-01": "May Day", + "1967-05-02": "Orthodox Easter (Observed)", + "1967-11-28": "Independence Day", + "1967-11-29": "Liberation Day", + "1967-12-25": "Christmas Day", + "1968-01-01": "Eid al-Fitr* (*estimated); New Year's Day", + "1968-01-02": "New Year's Day", + "1968-03-09": "Eid al-Adha* (*estimated)", + "1968-03-11": "Eid al-Adha* (*estimated) (Observed)", + "1968-04-14": "Catholic Easter", + "1968-04-15": "Catholic Easter (Observed)", + "1968-04-21": "Orthodox Easter", + "1968-04-22": "Orthodox Easter (Observed)", + "1968-05-01": "May Day", + "1968-11-28": "Independence Day", + "1968-11-29": "Liberation Day", + "1968-12-21": "Eid al-Fitr* (*estimated)", + "1968-12-23": "Eid al-Fitr* (*estimated) (Observed)", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-01-02": "New Year's Day", + "1969-02-27": "Eid al-Adha* (*estimated)", + "1969-04-06": "Catholic Easter", + "1969-04-07": "Catholic Easter (Observed)", + "1969-04-13": "Orthodox Easter", + "1969-04-14": "Orthodox Easter (Observed)", + "1969-05-01": "May Day", + "1969-11-28": "Independence Day", + "1969-11-29": "Liberation Day", + "1969-12-01": "Liberation Day (Observed)", + "1969-12-10": "Eid al-Fitr* (*estimated)", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-01-02": "New Year's Day", + "1970-02-16": "Eid al-Adha* (*estimated)", + "1970-03-29": "Catholic Easter", + "1970-03-30": "Catholic Easter (Observed)", + "1970-04-26": "Orthodox Easter", + "1970-04-27": "Orthodox Easter (Observed)", + "1970-05-01": "May Day", + "1970-11-28": "Independence Day", + "1970-11-29": "Liberation Day", + "1970-11-30": "Eid al-Fitr* (*estimated)", + "1970-12-01": "Independence Day (Observed)", + "1970-12-02": "Liberation Day (Observed)", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-01-02": "New Year's Day", + "1971-01-04": "New Year's Day (Observed)", + "1971-02-06": "Eid al-Adha* (*estimated)", + "1971-02-08": "Eid al-Adha* (*estimated) (Observed)", + "1971-04-11": "Catholic Easter", + "1971-04-12": "Catholic Easter (Observed)", + "1971-04-18": "Orthodox Easter", + "1971-04-19": "Orthodox Easter (Observed)", + "1971-05-01": "May Day", + "1971-05-03": "May Day (Observed)", + "1971-11-19": "Eid al-Fitr* (*estimated)", + "1971-11-28": "Independence Day", + "1971-11-29": "Liberation Day", + "1971-11-30": "Independence Day (Observed)", + "1971-12-25": "Christmas Day", + "1971-12-27": "Christmas Day (Observed)", + "1972-01-01": "New Year's Day", + "1972-01-02": "New Year's Day", + "1972-01-03": "New Year's Day (Observed)", + "1972-01-04": "New Year's Day (Observed)", + "1972-01-26": "Eid al-Adha* (*estimated)", + "1972-04-02": "Catholic Easter", + "1972-04-03": "Catholic Easter (Observed)", + "1972-04-09": "Orthodox Easter", + "1972-04-10": "Orthodox Easter (Observed)", + "1972-05-01": "May Day", + "1972-11-07": "Eid al-Fitr* (*estimated)", + "1972-11-28": "Independence Day", + "1972-11-29": "Liberation Day", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-01-02": "New Year's Day", + "1973-01-14": "Eid al-Adha* (*estimated)", + "1973-01-15": "Eid al-Adha* (*estimated) (Observed)", + "1973-04-22": "Catholic Easter", + "1973-04-23": "Catholic Easter (Observed)", + "1973-04-29": "Orthodox Easter", + "1973-04-30": "Orthodox Easter (Observed)", + "1973-05-01": "May Day", + "1973-10-27": "Eid al-Fitr* (*estimated)", + "1973-10-29": "Eid al-Fitr* (*estimated) (Observed)", + "1973-11-28": "Independence Day", + "1973-11-29": "Liberation Day", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-01-02": "New Year's Day", + "1974-01-03": "Eid al-Adha* (*estimated)", + "1974-04-14": "Catholic Easter; Orthodox Easter", + "1974-04-15": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "1974-05-01": "May Day", + "1974-10-16": "Eid al-Fitr* (*estimated)", + "1974-11-28": "Independence Day", + "1974-11-29": "Liberation Day", + "1974-12-24": "Eid al-Adha* (*estimated)", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-01-02": "New Year's Day", + "1975-03-30": "Catholic Easter", + "1975-03-31": "Catholic Easter (Observed)", + "1975-05-01": "May Day", + "1975-05-04": "Orthodox Easter", + "1975-05-05": "Orthodox Easter (Observed)", + "1975-10-06": "Eid al-Fitr* (*estimated)", + "1975-11-28": "Independence Day", + "1975-11-29": "Liberation Day", + "1975-12-01": "Liberation Day (Observed)", + "1975-12-13": "Eid al-Adha* (*estimated)", + "1975-12-15": "Eid al-Adha* (*estimated) (Observed)", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-01-02": "New Year's Day", + "1976-04-18": "Catholic Easter", + "1976-04-19": "Catholic Easter (Observed)", + "1976-04-25": "Orthodox Easter", + "1976-04-26": "Orthodox Easter (Observed)", + "1976-05-01": "May Day", + "1976-05-03": "May Day (Observed)", + "1976-09-24": "Eid al-Fitr* (*estimated)", + "1976-11-28": "Independence Day", + "1976-11-29": "Liberation Day", + "1976-11-30": "Independence Day (Observed)", + "1976-12-01": "Eid al-Adha* (*estimated)", + "1976-12-25": "Christmas Day", + "1976-12-27": "Christmas Day (Observed)", + "1977-01-01": "New Year's Day", + "1977-01-02": "New Year's Day", + "1977-01-03": "New Year's Day (Observed)", + "1977-01-04": "New Year's Day (Observed)", + "1977-04-10": "Catholic Easter; Orthodox Easter", + "1977-04-11": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "1977-05-01": "May Day", + "1977-05-02": "May Day (Observed)", + "1977-09-14": "Eid al-Fitr* (*estimated)", + "1977-11-21": "Eid al-Adha* (*estimated)", + "1977-11-28": "Independence Day", + "1977-11-29": "Liberation Day", + "1977-12-25": "Christmas Day", + "1977-12-26": "Christmas Day (Observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day", + "1978-01-03": "New Year's Day (Observed)", + "1978-03-26": "Catholic Easter", + "1978-03-27": "Catholic Easter (Observed)", + "1978-04-30": "Orthodox Easter", + "1978-05-01": "May Day", + "1978-05-02": "Orthodox Easter (Observed)", + "1978-09-03": "Eid al-Fitr* (*estimated)", + "1978-09-04": "Eid al-Fitr* (*estimated) (Observed)", + "1978-11-10": "Eid al-Adha* (*estimated)", + "1978-11-28": "Independence Day", + "1978-11-29": "Liberation Day", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-01-02": "New Year's Day", + "1979-04-15": "Catholic Easter", + "1979-04-16": "Catholic Easter (Observed)", + "1979-04-22": "Orthodox Easter", + "1979-04-23": "Orthodox Easter (Observed)", + "1979-05-01": "May Day", + "1979-08-23": "Eid al-Fitr* (*estimated)", + "1979-10-31": "Eid al-Adha* (*estimated)", + "1979-11-28": "Independence Day", + "1979-11-29": "Liberation Day", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-01-02": "New Year's Day", + "1980-04-06": "Catholic Easter; Orthodox Easter", + "1980-04-07": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "1980-05-01": "May Day", + "1980-08-12": "Eid al-Fitr* (*estimated)", + "1980-10-19": "Eid al-Adha* (*estimated)", + "1980-10-20": "Eid al-Adha* (*estimated) (Observed)", + "1980-11-28": "Independence Day", + "1980-11-29": "Liberation Day", + "1980-12-01": "Liberation Day (Observed)", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-01-02": "New Year's Day", + "1981-04-19": "Catholic Easter", + "1981-04-20": "Catholic Easter (Observed)", + "1981-04-26": "Orthodox Easter", + "1981-04-27": "Orthodox Easter (Observed)", + "1981-05-01": "May Day", + "1981-08-01": "Eid al-Fitr* (*estimated)", + "1981-08-03": "Eid al-Fitr* (*estimated) (Observed)", + "1981-10-08": "Eid al-Adha* (*estimated)", + "1981-11-28": "Independence Day", + "1981-11-29": "Liberation Day", + "1981-11-30": "Independence Day (Observed)", + "1981-12-01": "Liberation Day (Observed)", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-01-02": "New Year's Day", + "1982-01-04": "New Year's Day (Observed)", + "1982-04-11": "Catholic Easter", + "1982-04-12": "Catholic Easter (Observed)", + "1982-04-18": "Orthodox Easter", + "1982-04-19": "Orthodox Easter (Observed)", + "1982-05-01": "May Day", + "1982-05-03": "May Day (Observed)", + "1982-07-21": "Eid al-Fitr* (*estimated)", + "1982-09-27": "Eid al-Adha* (*estimated)", + "1982-11-28": "Independence Day", + "1982-11-29": "Liberation Day", + "1982-11-30": "Independence Day (Observed)", + "1982-12-25": "Christmas Day", + "1982-12-27": "Christmas Day (Observed)", + "1983-01-01": "New Year's Day", + "1983-01-02": "New Year's Day", + "1983-01-03": "New Year's Day (Observed)", + "1983-01-04": "New Year's Day (Observed)", + "1983-04-03": "Catholic Easter", + "1983-04-04": "Catholic Easter (Observed)", + "1983-05-01": "May Day", + "1983-05-02": "May Day (Observed)", + "1983-05-08": "Orthodox Easter", + "1983-05-09": "Orthodox Easter (Observed)", + "1983-07-11": "Eid al-Fitr* (*estimated)", + "1983-09-17": "Eid al-Adha* (*estimated)", + "1983-09-19": "Eid al-Adha* (*estimated) (Observed)", + "1983-11-28": "Independence Day", + "1983-11-29": "Liberation Day", + "1983-12-25": "Christmas Day", + "1983-12-26": "Christmas Day (Observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day", + "1984-01-03": "New Year's Day (Observed)", + "1984-04-22": "Catholic Easter; Orthodox Easter", + "1984-04-23": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "1984-05-01": "May Day", + "1984-06-30": "Eid al-Fitr* (*estimated)", + "1984-07-02": "Eid al-Fitr* (*estimated) (Observed)", + "1984-09-05": "Eid al-Adha* (*estimated)", + "1984-11-28": "Independence Day", + "1984-11-29": "Liberation Day", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-01-02": "New Year's Day", + "1985-04-07": "Catholic Easter", + "1985-04-08": "Catholic Easter (Observed)", + "1985-04-14": "Orthodox Easter", + "1985-04-15": "Orthodox Easter (Observed)", + "1985-05-01": "May Day", + "1985-06-19": "Eid al-Fitr* (*estimated)", + "1985-08-26": "Eid al-Adha* (*estimated)", + "1985-11-28": "Independence Day", + "1985-11-29": "Liberation Day", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-01-02": "New Year's Day", + "1986-03-30": "Catholic Easter", + "1986-03-31": "Catholic Easter (Observed)", + "1986-05-01": "May Day", + "1986-05-04": "Orthodox Easter", + "1986-05-05": "Orthodox Easter (Observed)", + "1986-06-08": "Eid al-Fitr* (*estimated)", + "1986-06-09": "Eid al-Fitr* (*estimated) (Observed)", + "1986-08-15": "Eid al-Adha* (*estimated)", + "1986-11-28": "Independence Day", + "1986-11-29": "Liberation Day", + "1986-12-01": "Liberation Day (Observed)", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-01-02": "New Year's Day", + "1987-04-19": "Catholic Easter; Orthodox Easter", + "1987-04-20": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "1987-05-01": "May Day", + "1987-05-28": "Eid al-Fitr* (*estimated)", + "1987-08-04": "Eid al-Adha* (*estimated)", + "1987-11-28": "Independence Day", + "1987-11-29": "Liberation Day", + "1987-11-30": "Independence Day (Observed)", + "1987-12-01": "Liberation Day (Observed)", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-01-02": "New Year's Day", + "1988-01-04": "New Year's Day (Observed)", + "1988-04-03": "Catholic Easter", + "1988-04-04": "Catholic Easter (Observed)", + "1988-04-10": "Orthodox Easter", + "1988-04-11": "Orthodox Easter (Observed)", + "1988-05-01": "May Day", + "1988-05-02": "May Day (Observed)", + "1988-05-16": "Eid al-Fitr* (*estimated)", + "1988-07-23": "Eid al-Adha* (*estimated)", + "1988-07-25": "Eid al-Adha* (*estimated) (Observed)", + "1988-11-28": "Independence Day", + "1988-11-29": "Liberation Day", + "1988-12-25": "Christmas Day", + "1988-12-26": "Christmas Day (Observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day", + "1989-01-03": "New Year's Day (Observed)", + "1989-03-26": "Catholic Easter", + "1989-03-27": "Catholic Easter (Observed)", + "1989-04-30": "Orthodox Easter", + "1989-05-01": "May Day", + "1989-05-02": "Orthodox Easter (Observed)", + "1989-05-06": "Eid al-Fitr* (*estimated)", + "1989-05-08": "Eid al-Fitr* (*estimated) (Observed)", + "1989-07-13": "Eid al-Adha* (*estimated)", + "1989-11-28": "Independence Day", + "1989-11-29": "Liberation Day", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-01-02": "New Year's Day", + "1990-04-15": "Catholic Easter; Orthodox Easter", + "1990-04-16": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "1990-04-26": "Eid al-Fitr* (*estimated)", + "1990-05-01": "May Day", + "1990-07-02": "Eid al-Adha* (*estimated)", + "1990-11-28": "Independence Day", + "1990-11-29": "Liberation Day", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-01-02": "New Year's Day", + "1991-03-31": "Catholic Easter", + "1991-04-01": "Catholic Easter (Observed)", + "1991-04-07": "Orthodox Easter", + "1991-04-08": "Orthodox Easter (Observed)", + "1991-04-15": "Eid al-Fitr* (*estimated)", + "1991-05-01": "May Day", + "1991-06-22": "Eid al-Adha* (*estimated)", + "1991-06-24": "Eid al-Adha* (*estimated) (Observed)", + "1991-11-28": "Independence Day", + "1991-11-29": "Liberation Day", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-01-02": "New Year's Day", + "1992-04-04": "Eid al-Fitr* (*estimated)", + "1992-04-06": "Eid al-Fitr* (*estimated) (Observed)", + "1992-04-19": "Catholic Easter", + "1992-04-20": "Catholic Easter (Observed)", + "1992-04-26": "Orthodox Easter", + "1992-04-27": "Orthodox Easter (Observed)", + "1992-05-01": "May Day", + "1992-06-11": "Eid al-Adha* (*estimated)", + "1992-11-28": "Independence Day", + "1992-11-29": "Liberation Day", + "1992-11-30": "Independence Day (Observed)", + "1992-12-01": "Liberation Day (Observed)", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-01-02": "New Year's Day", + "1993-01-04": "New Year's Day (Observed)", + "1993-03-24": "Eid al-Fitr* (*estimated)", + "1993-04-11": "Catholic Easter", + "1993-04-12": "Catholic Easter (Observed)", + "1993-04-18": "Orthodox Easter", + "1993-04-19": "Orthodox Easter (Observed)", + "1993-05-01": "May Day", + "1993-05-03": "May Day (Observed)", + "1993-05-31": "Eid al-Adha* (*estimated)", + "1993-11-28": "Independence Day", + "1993-11-29": "Liberation Day", + "1993-11-30": "Independence Day (Observed)", + "1993-12-25": "Christmas Day", + "1993-12-27": "Christmas Day (Observed)", + "1994-01-01": "New Year's Day", + "1994-01-02": "New Year's Day", + "1994-01-03": "New Year's Day (Observed)", + "1994-01-04": "New Year's Day (Observed)", + "1994-03-13": "Eid al-Fitr* (*estimated)", + "1994-03-14": "Eid al-Fitr* (*estimated) (Observed)", + "1994-04-03": "Catholic Easter", + "1994-04-04": "Catholic Easter (Observed)", + "1994-05-01": "May Day; Orthodox Easter", + "1994-05-02": "May Day (Observed); Orthodox Easter (Observed)", + "1994-05-20": "Eid al-Adha* (*estimated)", + "1994-11-28": "Independence Day", + "1994-11-29": "Liberation Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day (Observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day", + "1995-01-03": "New Year's Day (Observed)", + "1995-03-02": "Eid al-Fitr* (*estimated)", + "1995-04-16": "Catholic Easter", + "1995-04-17": "Catholic Easter (Observed)", + "1995-04-23": "Orthodox Easter", + "1995-04-24": "Orthodox Easter (Observed)", + "1995-05-01": "May Day", + "1995-05-09": "Eid al-Adha* (*estimated)", + "1995-11-28": "Independence Day", + "1995-11-29": "Liberation Day", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-01-02": "New Year's Day", + "1996-02-19": "Eid al-Fitr* (*estimated)", + "1996-03-22": "Nevruz", + "1996-04-07": "Catholic Easter", + "1996-04-08": "Catholic Easter (Observed)", + "1996-04-14": "Orthodox Easter", + "1996-04-15": "Orthodox Easter (Observed)", + "1996-04-27": "Eid al-Adha* (*estimated)", + "1996-04-29": "Eid al-Adha* (*estimated) (Observed)", + "1996-05-01": "May Day", + "1996-11-28": "Independence Day", + "1996-11-29": "Liberation Day", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-01-02": "New Year's Day", + "1997-02-08": "Eid al-Fitr* (*estimated)", + "1997-02-10": "Eid al-Fitr* (*estimated) (Observed)", + "1997-03-22": "Nevruz", + "1997-03-24": "Nevruz (Observed)", + "1997-03-30": "Catholic Easter", + "1997-03-31": "Catholic Easter (Observed)", + "1997-04-17": "Eid al-Adha* (*estimated)", + "1997-04-27": "Orthodox Easter", + "1997-04-28": "Orthodox Easter (Observed)", + "1997-05-01": "May Day", + "1997-11-28": "Independence Day", + "1997-11-29": "Liberation Day", + "1997-12-01": "Liberation Day (Observed)", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-01-02": "New Year's Day", + "1998-01-29": "Eid al-Fitr* (*estimated)", + "1998-03-22": "Nevruz", + "1998-03-23": "Nevruz (Observed)", + "1998-04-07": "Eid al-Adha* (*estimated)", + "1998-04-12": "Catholic Easter", + "1998-04-13": "Catholic Easter (Observed)", + "1998-04-19": "Orthodox Easter", + "1998-04-20": "Orthodox Easter (Observed)", + "1998-05-01": "May Day", + "1998-11-28": "Independence Day", + "1998-11-29": "Liberation Day", + "1998-11-30": "Independence Day (Observed)", + "1998-12-01": "Liberation Day (Observed)", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-01-02": "New Year's Day", + "1999-01-04": "New Year's Day (Observed)", + "1999-01-18": "Eid al-Fitr* (*estimated)", + "1999-03-22": "Nevruz", + "1999-03-27": "Eid al-Adha* (*estimated)", + "1999-03-29": "Eid al-Adha* (*estimated) (Observed)", + "1999-04-04": "Catholic Easter", + "1999-04-05": "Catholic Easter (Observed)", + "1999-04-11": "Orthodox Easter", + "1999-04-12": "Orthodox Easter (Observed)", + "1999-05-01": "May Day", + "1999-05-03": "May Day (Observed)", + "1999-11-28": "Independence Day", + "1999-11-29": "Liberation Day", + "1999-11-30": "Independence Day (Observed)", + "1999-12-25": "Christmas Day", + "1999-12-27": "Christmas Day (Observed)", + "2000-01-01": "New Year's Day", + "2000-01-02": "New Year's Day", + "2000-01-03": "New Year's Day (Observed)", + "2000-01-04": "New Year's Day (Observed)", + "2000-01-08": "Eid al-Fitr* (*estimated)", + "2000-01-10": "Eid al-Fitr* (*estimated) (Observed)", + "2000-03-16": "Eid al-Adha* (*estimated)", + "2000-03-22": "Nevruz", + "2000-04-23": "Catholic Easter", + "2000-04-24": "Catholic Easter (Observed)", + "2000-04-30": "Orthodox Easter", + "2000-05-01": "May Day", + "2000-05-02": "Orthodox Easter (Observed)", + "2000-11-28": "Independence Day", + "2000-11-29": "Liberation Day", + "2000-12-25": "Christmas Day", + "2000-12-27": "Eid al-Fitr* (*estimated)", + "2001-01-01": "New Year's Day", + "2001-01-02": "New Year's Day", + "2001-03-05": "Eid al-Adha* (*estimated)", + "2001-03-22": "Nevruz", + "2001-04-15": "Catholic Easter; Orthodox Easter", + "2001-04-16": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "2001-05-01": "May Day", + "2001-11-28": "Independence Day", + "2001-11-29": "Liberation Day", + "2001-12-16": "Eid al-Fitr* (*estimated)", + "2001-12-17": "Eid al-Fitr* (*estimated) (Observed)", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-01-02": "New Year's Day", + "2002-02-22": "Eid al-Adha* (*estimated)", + "2002-03-22": "Nevruz", + "2002-03-31": "Catholic Easter", + "2002-04-01": "Catholic Easter (Observed)", + "2002-05-01": "May Day", + "2002-05-05": "Orthodox Easter", + "2002-05-06": "Orthodox Easter (Observed)", + "2002-11-28": "Independence Day", + "2002-11-29": "Liberation Day", + "2002-12-05": "Eid al-Fitr* (*estimated)", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-01-02": "New Year's Day", + "2003-02-11": "Eid al-Adha* (*estimated)", + "2003-03-22": "Nevruz", + "2003-03-24": "Nevruz (Observed)", + "2003-04-20": "Catholic Easter", + "2003-04-21": "Catholic Easter (Observed)", + "2003-04-27": "Orthodox Easter", + "2003-04-28": "Orthodox Easter (Observed)", + "2003-05-01": "May Day", + "2003-11-25": "Eid al-Fitr* (*estimated)", + "2003-11-28": "Independence Day", + "2003-11-29": "Liberation Day", + "2003-12-01": "Liberation Day (Observed)", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-01-02": "New Year's Day", + "2004-02-01": "Eid al-Adha* (*estimated)", + "2004-02-02": "Eid al-Adha* (*estimated) (Observed)", + "2004-03-14": "Summer Day", + "2004-03-15": "Summer Day (Observed)", + "2004-03-22": "Nevruz", + "2004-04-11": "Catholic Easter; Orthodox Easter", + "2004-04-12": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "2004-05-01": "May Day", + "2004-05-03": "May Day (Observed)", + "2004-10-19": "Mother Teresa Beatification Day", + "2004-11-14": "Eid al-Fitr* (*estimated)", + "2004-11-15": "Eid al-Fitr* (*estimated) (Observed)", + "2004-11-28": "Independence Day", + "2004-11-29": "Liberation Day", + "2004-11-30": "Independence Day (Observed)", + "2004-12-25": "Christmas Day", + "2004-12-27": "Christmas Day (Observed)", + "2005-01-01": "New Year's Day", + "2005-01-02": "New Year's Day", + "2005-01-03": "New Year's Day (Observed)", + "2005-01-04": "New Year's Day (Observed)", + "2005-01-21": "Eid al-Adha* (*estimated)", + "2005-03-14": "Summer Day", + "2005-03-22": "Nevruz", + "2005-03-27": "Catholic Easter", + "2005-03-28": "Catholic Easter (Observed)", + "2005-05-01": "May Day; Orthodox Easter", + "2005-05-02": "May Day (Observed); Orthodox Easter (Observed)", + "2005-10-19": "Mother Teresa Beatification Day", + "2005-11-03": "Eid al-Fitr* (*estimated)", + "2005-11-28": "Independence Day", + "2005-11-29": "Liberation Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day (Observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day", + "2006-01-03": "New Year's Day (Observed)", + "2006-01-10": "Eid al-Adha* (*estimated)", + "2006-03-14": "Summer Day", + "2006-03-22": "Nevruz", + "2006-04-16": "Catholic Easter", + "2006-04-17": "Catholic Easter (Observed)", + "2006-04-23": "Orthodox Easter", + "2006-04-24": "Orthodox Easter (Observed)", + "2006-05-01": "May Day", + "2006-10-19": "Mother Teresa Beatification Day", + "2006-10-23": "Eid al-Fitr* (*estimated)", + "2006-11-28": "Independence Day", + "2006-11-29": "Liberation Day", + "2006-12-25": "Christmas Day", + "2006-12-31": "Eid al-Adha* (*estimated)", + "2007-01-01": "New Year's Day", + "2007-01-02": "New Year's Day", + "2007-01-03": "Eid al-Adha (Observed)", + "2007-03-14": "Summer Day", + "2007-03-22": "Nevruz", + "2007-04-08": "Catholic Easter; Orthodox Easter", + "2007-04-09": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "2007-05-01": "May Day", + "2007-10-13": "Eid al-Fitr* (*estimated)", + "2007-10-15": "Eid al-Fitr* (*estimated) (Observed)", + "2007-10-19": "Mother Teresa Beatification Day", + "2007-11-28": "Independence Day", + "2007-11-29": "Liberation Day", + "2007-12-20": "Eid al-Adha* (*estimated)", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-01-02": "New Year's Day", + "2008-03-14": "Summer Day", + "2008-03-22": "Nevruz", + "2008-03-23": "Catholic Easter", + "2008-03-24": "Nevruz (Observed)", + "2008-03-25": "Catholic Easter (Observed)", + "2008-04-27": "Orthodox Easter", + "2008-04-28": "Orthodox Easter (Observed)", + "2008-05-01": "May Day", + "2008-10-01": "Eid al-Fitr* (*estimated)", + "2008-10-19": "Mother Teresa Beatification Day", + "2008-10-20": "Mother Teresa Beatification Day (Observed)", + "2008-11-28": "Independence Day", + "2008-11-29": "Liberation Day", + "2008-12-01": "Liberation Day (Observed)", + "2008-12-08": "Eid al-Adha* (*estimated)", + "2008-12-25": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-01-02": "New Year's Day", + "2009-03-14": "Summer Day", + "2009-03-16": "Summer Day (Observed)", + "2009-03-22": "Nevruz", + "2009-03-23": "Nevruz (Observed)", + "2009-04-12": "Catholic Easter", + "2009-04-13": "Catholic Easter (Observed)", + "2009-04-19": "Orthodox Easter", + "2009-04-20": "Orthodox Easter (Observed)", + "2009-05-01": "May Day", + "2009-09-20": "Eid al-Fitr* (*estimated)", + "2009-09-21": "Eid al-Fitr* (*estimated) (Observed)", + "2009-10-19": "Mother Teresa Beatification Day", + "2009-11-27": "Eid al-Adha* (*estimated)", + "2009-11-28": "Independence Day", + "2009-11-29": "Liberation Day", + "2009-11-30": "Independence Day (Observed)", + "2009-12-01": "Liberation Day (Observed)", + "2009-12-08": "National Youth Day", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-01-02": "New Year's Day", + "2010-01-04": "New Year's Day (Observed)", + "2010-03-14": "Summer Day", + "2010-03-15": "Summer Day (Observed)", + "2010-03-22": "Nevruz", + "2010-04-04": "Catholic Easter; Orthodox Easter", + "2010-04-05": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "2010-05-01": "May Day", + "2010-05-03": "May Day (Observed)", + "2010-09-10": "Eid al-Fitr* (*estimated)", + "2010-10-19": "Mother Teresa Beatification Day", + "2010-11-16": "Eid al-Adha* (*estimated)", + "2010-11-28": "Independence Day", + "2010-11-29": "Liberation Day", + "2010-11-30": "Independence Day (Observed)", + "2010-12-08": "National Youth Day", + "2010-12-25": "Christmas Day", + "2010-12-27": "Christmas Day (Observed)", + "2011-01-01": "New Year's Day", + "2011-01-02": "New Year's Day", + "2011-01-03": "New Year's Day (Observed)", + "2011-01-04": "New Year's Day (Observed)", + "2011-03-14": "Summer Day", + "2011-03-22": "Nevruz", + "2011-04-24": "Catholic Easter; Orthodox Easter", + "2011-04-25": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "2011-05-01": "May Day", + "2011-05-02": "May Day (Observed)", + "2011-08-30": "Eid al-Fitr* (*estimated)", + "2011-10-19": "Mother Teresa Beatification Day", + "2011-11-06": "Eid al-Adha* (*estimated)", + "2011-11-07": "Eid al-Adha* (*estimated) (Observed)", + "2011-11-28": "Independence Day", + "2011-11-29": "Liberation Day", + "2011-12-08": "National Youth Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day (Observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day", + "2012-01-03": "New Year's Day (Observed)", + "2012-03-14": "Summer Day", + "2012-03-22": "Nevruz", + "2012-04-08": "Catholic Easter", + "2012-04-09": "Catholic Easter (Observed)", + "2012-04-15": "Orthodox Easter", + "2012-04-16": "Orthodox Easter (Observed)", + "2012-05-01": "May Day", + "2012-08-19": "Eid al-Fitr* (*estimated)", + "2012-08-20": "Eid al-Fitr* (*estimated) (Observed)", + "2012-10-19": "Mother Teresa Beatification Day", + "2012-10-26": "Eid al-Adha* (*estimated)", + "2012-11-28": "Independence Day", + "2012-11-29": "Liberation Day", + "2012-12-08": "National Youth Day", + "2012-12-10": "National Youth Day (Observed)", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-01-02": "New Year's Day", + "2013-03-14": "Summer Day", + "2013-03-22": "Nevruz", + "2013-03-31": "Catholic Easter", + "2013-04-01": "Catholic Easter (Observed)", + "2013-05-01": "May Day", + "2013-05-05": "Orthodox Easter", + "2013-05-06": "Orthodox Easter (Observed)", + "2013-08-08": "Eid al-Fitr* (*estimated)", + "2013-10-15": "Eid al-Adha* (*estimated)", + "2013-10-19": "Mother Teresa Beatification Day", + "2013-10-21": "Mother Teresa Beatification Day (Observed)", + "2013-11-28": "Independence Day", + "2013-11-29": "Liberation Day", + "2013-12-08": "National Youth Day", + "2013-12-09": "National Youth Day (Observed)", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-02": "New Year's Day", + "2014-03-14": "Summer Day", + "2014-03-22": "Nevruz", + "2014-03-24": "Nevruz (Observed)", + "2014-04-20": "Catholic Easter; Orthodox Easter", + "2014-04-21": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "2014-05-01": "May Day", + "2014-07-28": "Eid al-Fitr* (*estimated)", + "2014-10-04": "Eid al-Adha* (*estimated)", + "2014-10-06": "Eid al-Adha* (*estimated) (Observed)", + "2014-10-19": "Mother Teresa Beatification Day", + "2014-10-20": "Mother Teresa Beatification Day (Observed)", + "2014-11-28": "Independence Day", + "2014-11-29": "Liberation Day", + "2014-12-01": "Liberation Day (Observed)", + "2014-12-08": "National Youth Day", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-01-02": "New Year's Day", + "2015-03-14": "Summer Day", + "2015-03-16": "Summer Day (Observed)", + "2015-03-22": "Nevruz", + "2015-03-23": "Nevruz (Observed)", + "2015-04-05": "Catholic Easter", + "2015-04-06": "Catholic Easter (Observed)", + "2015-04-12": "Orthodox Easter", + "2015-04-13": "Orthodox Easter (Observed)", + "2015-05-01": "May Day", + "2015-07-17": "Eid al-Fitr* (*estimated)", + "2015-09-23": "Eid al-Adha* (*estimated)", + "2015-10-19": "Mother Teresa Beatification Day", + "2015-11-28": "Independence Day", + "2015-11-29": "Liberation Day", + "2015-11-30": "Independence Day (Observed)", + "2015-12-01": "Liberation Day (Observed)", + "2015-12-08": "National Youth Day", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-01-02": "New Year's Day", + "2016-01-04": "New Year's Day (Observed)", + "2016-03-14": "Summer Day", + "2016-03-22": "Nevruz", + "2016-03-27": "Catholic Easter", + "2016-03-28": "Catholic Easter (Observed)", + "2016-05-01": "May Day; Orthodox Easter", + "2016-05-02": "May Day (Observed); Orthodox Easter (Observed)", + "2016-07-06": "Eid al-Fitr* (*estimated)", + "2016-09-11": "Eid al-Adha* (*estimated)", + "2016-09-12": "Eid al-Adha* (*estimated) (Observed)", + "2016-10-19": "Mother Teresa Beatification Day", + "2016-11-28": "Independence Day", + "2016-11-29": "Liberation Day", + "2016-12-08": "National Youth Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day (Observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day", + "2017-01-03": "New Year's Day (Observed)", + "2017-03-14": "Summer Day", + "2017-03-22": "Nevruz", + "2017-04-16": "Catholic Easter; Orthodox Easter", + "2017-04-17": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "2017-05-01": "May Day", + "2017-06-25": "Eid al-Fitr* (*estimated)", + "2017-06-26": "Eid al-Fitr* (*estimated) (Observed)", + "2017-09-01": "Eid al-Adha* (*estimated)", + "2017-10-19": "Mother Teresa Beatification Day", + "2017-11-28": "Independence Day", + "2017-11-29": "Liberation Day", + "2017-12-08": "National Youth Day", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-01-02": "New Year's Day", + "2018-03-14": "Summer Day", + "2018-03-22": "Nevruz", + "2018-04-01": "Catholic Easter", + "2018-04-02": "Catholic Easter (Observed)", + "2018-04-08": "Orthodox Easter", + "2018-04-09": "Orthodox Easter (Observed)", + "2018-05-01": "May Day", + "2018-06-15": "Eid al-Fitr* (*estimated)", + "2018-08-21": "Eid al-Adha* (*estimated)", + "2018-09-05": "Mother Teresa Canonization Day", + "2018-11-28": "Independence Day", + "2018-11-29": "Liberation Day", + "2018-12-08": "National Youth Day", + "2018-12-10": "National Youth Day (Observed)", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-01-02": "New Year's Day", + "2019-03-14": "Summer Day", + "2019-03-22": "Nevruz", + "2019-04-21": "Catholic Easter", + "2019-04-22": "Catholic Easter (Observed)", + "2019-04-28": "Orthodox Easter", + "2019-04-29": "Orthodox Easter (Observed)", + "2019-05-01": "May Day", + "2019-06-04": "Eid al-Fitr* (*estimated)", + "2019-08-11": "Eid al-Adha* (*estimated)", + "2019-08-12": "Eid al-Adha* (*estimated) (Observed)", + "2019-09-05": "Mother Teresa Canonization Day", + "2019-11-28": "Independence Day", + "2019-11-29": "Liberation Day", + "2019-12-08": "National Youth Day", + "2019-12-09": "National Youth Day (Observed)", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-01-02": "New Year's Day", + "2020-03-14": "Summer Day", + "2020-03-16": "Summer Day (Observed)", + "2020-03-22": "Nevruz", + "2020-03-23": "Nevruz (Observed)", + "2020-04-12": "Catholic Easter", + "2020-04-13": "Catholic Easter (Observed)", + "2020-04-19": "Orthodox Easter", + "2020-04-20": "Orthodox Easter (Observed)", + "2020-05-01": "May Day", + "2020-05-24": "Eid al-Fitr* (*estimated)", + "2020-05-25": "Eid al-Fitr* (*estimated) (Observed)", + "2020-07-31": "Eid al-Adha* (*estimated)", + "2020-09-05": "Mother Teresa Canonization Day", + "2020-09-07": "Mother Teresa Canonization Day (Observed)", + "2020-11-28": "Independence Day", + "2020-11-29": "Liberation Day", + "2020-11-30": "Independence Day (Observed)", + "2020-12-01": "Liberation Day (Observed)", + "2020-12-08": "National Youth Day", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-01-02": "New Year's Day", + "2021-01-04": "New Year's Day (Observed)", + "2021-03-14": "Summer Day", + "2021-03-15": "Summer Day (Observed)", + "2021-03-22": "Nevruz", + "2021-04-04": "Catholic Easter", + "2021-04-05": "Catholic Easter (Observed)", + "2021-05-01": "May Day", + "2021-05-02": "Orthodox Easter", + "2021-05-03": "May Day (Observed)", + "2021-05-04": "Orthodox Easter (Observed)", + "2021-05-13": "Eid al-Fitr* (*estimated)", + "2021-07-20": "Eid al-Adha* (*estimated)", + "2021-09-05": "Mother Teresa Canonization Day", + "2021-09-06": "Mother Teresa Canonization Day (Observed)", + "2021-11-28": "Independence Day", + "2021-11-29": "Liberation Day", + "2021-11-30": "Independence Day (Observed)", + "2021-12-08": "National Youth Day", + "2021-12-25": "Christmas Day", + "2021-12-27": "Christmas Day (Observed)", + "2022-01-01": "New Year's Day", + "2022-01-02": "New Year's Day", + "2022-01-03": "New Year's Day (Observed)", + "2022-01-04": "New Year's Day (Observed)", + "2022-03-14": "Summer Day", + "2022-03-21": "Public Holiday", + "2022-03-22": "Nevruz", + "2022-04-17": "Catholic Easter", + "2022-04-18": "Catholic Easter (Observed)", + "2022-04-24": "Orthodox Easter", + "2022-04-25": "Orthodox Easter (Observed)", + "2022-05-01": "May Day", + "2022-05-02": "Eid al-Fitr* (*estimated)", + "2022-05-03": "May Day (Observed)", + "2022-07-09": "Eid al-Adha* (*estimated)", + "2022-07-11": "Eid al-Adha* (*estimated) (Observed)", + "2022-09-05": "Mother Teresa Canonization Day", + "2022-11-28": "Independence Day", + "2022-11-29": "Liberation Day", + "2022-12-08": "National Youth Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day (Observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day", + "2023-01-03": "New Year's Day (Observed)", + "2023-03-14": "Summer Day", + "2023-03-22": "Nevruz", + "2023-04-09": "Catholic Easter", + "2023-04-10": "Catholic Easter (Observed)", + "2023-04-16": "Orthodox Easter", + "2023-04-17": "Orthodox Easter (Observed)", + "2023-04-21": "Eid al-Fitr* (*estimated)", + "2023-05-01": "May Day", + "2023-06-28": "Eid al-Adha* (*estimated)", + "2023-09-05": "Mother Teresa Canonization Day", + "2023-11-28": "Independence Day", + "2023-11-29": "Liberation Day", + "2023-12-08": "National Youth Day", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-01-02": "New Year's Day", + "2024-03-14": "Summer Day", + "2024-03-22": "Nevruz", + "2024-03-31": "Catholic Easter", + "2024-04-01": "Catholic Easter (Observed)", + "2024-04-10": "Eid al-Fitr* (*estimated)", + "2024-05-01": "May Day", + "2024-05-05": "Orthodox Easter", + "2024-05-06": "Orthodox Easter (Observed)", + "2024-06-16": "Eid al-Adha* (*estimated)", + "2024-06-17": "Eid al-Adha* (*estimated) (Observed)", + "2024-09-05": "Mother Teresa Canonization Day", + "2024-11-28": "Independence Day", + "2024-11-29": "Liberation Day", + "2024-12-08": "National Youth Day", + "2024-12-09": "National Youth Day (Observed)", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-01-02": "New Year's Day", + "2025-03-14": "Summer Day", + "2025-03-22": "Nevruz", + "2025-03-24": "Nevruz (Observed)", + "2025-03-30": "Eid al-Fitr* (*estimated)", + "2025-03-31": "Eid al-Fitr* (*estimated) (Observed)", + "2025-04-20": "Catholic Easter; Orthodox Easter", + "2025-04-21": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "2025-05-01": "May Day", + "2025-06-06": "Eid al-Adha* (*estimated)", + "2025-09-05": "Mother Teresa Canonization Day", + "2025-11-28": "Independence Day", + "2025-11-29": "Liberation Day", + "2025-12-01": "Liberation Day (Observed)", + "2025-12-08": "National Youth Day", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-01-02": "New Year's Day", + "2026-03-14": "Summer Day", + "2026-03-16": "Summer Day (Observed)", + "2026-03-20": "Eid al-Fitr* (*estimated)", + "2026-03-22": "Nevruz", + "2026-03-23": "Nevruz (Observed)", + "2026-04-05": "Catholic Easter", + "2026-04-06": "Catholic Easter (Observed)", + "2026-04-12": "Orthodox Easter", + "2026-04-13": "Orthodox Easter (Observed)", + "2026-05-01": "May Day", + "2026-05-27": "Eid al-Adha* (*estimated)", + "2026-09-05": "Mother Teresa Canonization Day", + "2026-09-07": "Mother Teresa Canonization Day (Observed)", + "2026-11-28": "Independence Day", + "2026-11-29": "Liberation Day", + "2026-11-30": "Independence Day (Observed)", + "2026-12-01": "Liberation Day (Observed)", + "2026-12-08": "National Youth Day", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-01-02": "New Year's Day", + "2027-01-04": "New Year's Day (Observed)", + "2027-03-09": "Eid al-Fitr* (*estimated)", + "2027-03-14": "Summer Day", + "2027-03-15": "Summer Day (Observed)", + "2027-03-22": "Nevruz", + "2027-03-28": "Catholic Easter", + "2027-03-29": "Catholic Easter (Observed)", + "2027-05-01": "May Day", + "2027-05-02": "Orthodox Easter", + "2027-05-03": "May Day (Observed)", + "2027-05-04": "Orthodox Easter (Observed)", + "2027-05-16": "Eid al-Adha* (*estimated)", + "2027-05-17": "Eid al-Adha* (*estimated) (Observed)", + "2027-09-05": "Mother Teresa Canonization Day", + "2027-09-06": "Mother Teresa Canonization Day (Observed)", + "2027-11-28": "Independence Day", + "2027-11-29": "Liberation Day", + "2027-11-30": "Independence Day (Observed)", + "2027-12-08": "National Youth Day", + "2027-12-25": "Christmas Day", + "2027-12-27": "Christmas Day (Observed)", + "2028-01-01": "New Year's Day", + "2028-01-02": "New Year's Day", + "2028-01-03": "New Year's Day (Observed)", + "2028-01-04": "New Year's Day (Observed)", + "2028-02-26": "Eid al-Fitr* (*estimated)", + "2028-02-28": "Eid al-Fitr* (*estimated) (Observed)", + "2028-03-14": "Summer Day", + "2028-03-22": "Nevruz", + "2028-04-16": "Catholic Easter; Orthodox Easter", + "2028-04-17": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "2028-05-01": "May Day", + "2028-05-05": "Eid al-Adha* (*estimated)", + "2028-09-05": "Mother Teresa Canonization Day", + "2028-11-28": "Independence Day", + "2028-11-29": "Liberation Day", + "2028-12-08": "National Youth Day", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-01-02": "New Year's Day", + "2029-02-14": "Eid al-Fitr* (*estimated)", + "2029-03-14": "Summer Day", + "2029-03-22": "Nevruz", + "2029-04-01": "Catholic Easter", + "2029-04-02": "Catholic Easter (Observed)", + "2029-04-08": "Orthodox Easter", + "2029-04-09": "Orthodox Easter (Observed)", + "2029-04-24": "Eid al-Adha* (*estimated)", + "2029-05-01": "May Day", + "2029-09-05": "Mother Teresa Canonization Day", + "2029-11-28": "Independence Day", + "2029-11-29": "Liberation Day", + "2029-12-08": "National Youth Day", + "2029-12-10": "National Youth Day (Observed)", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-01-02": "New Year's Day", + "2030-02-04": "Eid al-Fitr* (*estimated)", + "2030-03-14": "Summer Day", + "2030-03-22": "Nevruz", + "2030-04-13": "Eid al-Adha* (*estimated)", + "2030-04-15": "Eid al-Adha* (*estimated) (Observed)", + "2030-04-21": "Catholic Easter", + "2030-04-22": "Catholic Easter (Observed)", + "2030-04-28": "Orthodox Easter", + "2030-04-29": "Orthodox Easter (Observed)", + "2030-05-01": "May Day", + "2030-09-05": "Mother Teresa Canonization Day", + "2030-11-28": "Independence Day", + "2030-11-29": "Liberation Day", + "2030-12-08": "National Youth Day", + "2030-12-09": "National Youth Day (Observed)", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-01-02": "New Year's Day", + "2031-01-24": "Eid al-Fitr* (*estimated)", + "2031-03-14": "Summer Day", + "2031-03-22": "Nevruz", + "2031-03-24": "Nevruz (Observed)", + "2031-04-02": "Eid al-Adha* (*estimated)", + "2031-04-13": "Catholic Easter; Orthodox Easter", + "2031-04-14": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "2031-05-01": "May Day", + "2031-09-05": "Mother Teresa Canonization Day", + "2031-11-28": "Independence Day", + "2031-11-29": "Liberation Day", + "2031-12-01": "Liberation Day (Observed)", + "2031-12-08": "National Youth Day", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-01-02": "New Year's Day", + "2032-01-14": "Eid al-Fitr* (*estimated)", + "2032-03-14": "Summer Day", + "2032-03-15": "Summer Day (Observed)", + "2032-03-22": "Eid al-Adha* (*estimated); Nevruz", + "2032-03-28": "Catholic Easter", + "2032-03-29": "Catholic Easter (Observed)", + "2032-05-01": "May Day", + "2032-05-02": "Orthodox Easter", + "2032-05-03": "May Day (Observed)", + "2032-05-04": "Orthodox Easter (Observed)", + "2032-09-05": "Mother Teresa Canonization Day", + "2032-09-06": "Mother Teresa Canonization Day (Observed)", + "2032-11-28": "Independence Day", + "2032-11-29": "Liberation Day", + "2032-11-30": "Independence Day (Observed)", + "2032-12-08": "National Youth Day", + "2032-12-25": "Christmas Day", + "2032-12-27": "Christmas Day (Observed)", + "2033-01-01": "New Year's Day", + "2033-01-02": "Eid al-Fitr* (*estimated); New Year's Day", + "2033-01-03": "New Year's Day (Observed)", + "2033-01-04": "Eid al-Fitr* (*estimated) (Observed); New Year's Day (Observed)", + "2033-03-11": "Eid al-Adha* (*estimated)", + "2033-03-14": "Summer Day", + "2033-03-22": "Nevruz", + "2033-04-17": "Catholic Easter", + "2033-04-18": "Catholic Easter (Observed)", + "2033-04-24": "Orthodox Easter", + "2033-04-25": "Orthodox Easter (Observed)", + "2033-05-01": "May Day", + "2033-05-02": "May Day (Observed)", + "2033-09-05": "Mother Teresa Canonization Day", + "2033-11-28": "Independence Day", + "2033-11-29": "Liberation Day", + "2033-12-08": "National Youth Day", + "2033-12-23": "Eid al-Fitr* (*estimated)", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day (Observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day", + "2034-01-03": "New Year's Day (Observed)", + "2034-03-01": "Eid al-Adha* (*estimated)", + "2034-03-14": "Summer Day", + "2034-03-22": "Nevruz", + "2034-04-09": "Catholic Easter; Orthodox Easter", + "2034-04-10": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "2034-05-01": "May Day", + "2034-09-05": "Mother Teresa Canonization Day", + "2034-11-28": "Independence Day", + "2034-11-29": "Liberation Day", + "2034-12-08": "National Youth Day", + "2034-12-12": "Eid al-Fitr* (*estimated)", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-01-02": "New Year's Day", + "2035-02-18": "Eid al-Adha* (*estimated)", + "2035-02-19": "Eid al-Adha* (*estimated) (Observed)", + "2035-03-14": "Summer Day", + "2035-03-22": "Nevruz", + "2035-03-25": "Catholic Easter", + "2035-03-26": "Catholic Easter (Observed)", + "2035-04-29": "Orthodox Easter", + "2035-04-30": "Orthodox Easter (Observed)", + "2035-05-01": "May Day", + "2035-09-05": "Mother Teresa Canonization Day", + "2035-11-28": "Independence Day", + "2035-11-29": "Liberation Day", + "2035-12-01": "Eid al-Fitr* (*estimated)", + "2035-12-03": "Eid al-Fitr* (*estimated) (Observed)", + "2035-12-08": "National Youth Day", + "2035-12-10": "National Youth Day (Observed)", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-01-02": "New Year's Day", + "2036-02-07": "Eid al-Adha* (*estimated)", + "2036-03-14": "Summer Day", + "2036-03-22": "Nevruz", + "2036-03-24": "Nevruz (Observed)", + "2036-04-13": "Catholic Easter", + "2036-04-14": "Catholic Easter (Observed)", + "2036-04-20": "Orthodox Easter", + "2036-04-21": "Orthodox Easter (Observed)", + "2036-05-01": "May Day", + "2036-09-05": "Mother Teresa Canonization Day", + "2036-11-19": "Eid al-Fitr* (*estimated)", + "2036-11-28": "Independence Day", + "2036-11-29": "Liberation Day", + "2036-12-01": "Liberation Day (Observed)", + "2036-12-08": "National Youth Day", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-02": "New Year's Day", + "2037-01-26": "Eid al-Adha* (*estimated)", + "2037-03-14": "Summer Day", + "2037-03-16": "Summer Day (Observed)", + "2037-03-22": "Nevruz", + "2037-03-23": "Nevruz (Observed)", + "2037-04-05": "Catholic Easter; Orthodox Easter", + "2037-04-06": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "2037-05-01": "May Day", + "2037-09-05": "Mother Teresa Canonization Day", + "2037-09-07": "Mother Teresa Canonization Day (Observed)", + "2037-11-08": "Eid al-Fitr* (*estimated)", + "2037-11-09": "Eid al-Fitr* (*estimated) (Observed)", + "2037-11-28": "Independence Day", + "2037-11-29": "Liberation Day", + "2037-11-30": "Independence Day (Observed)", + "2037-12-01": "Liberation Day (Observed)", + "2037-12-08": "National Youth Day", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-01-02": "New Year's Day", + "2038-01-04": "New Year's Day (Observed)", + "2038-01-16": "Eid al-Adha* (*estimated)", + "2038-01-18": "Eid al-Adha* (*estimated) (Observed)", + "2038-03-14": "Summer Day", + "2038-03-15": "Summer Day (Observed)", + "2038-03-22": "Nevruz", + "2038-04-25": "Catholic Easter; Orthodox Easter", + "2038-04-26": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "2038-05-01": "May Day", + "2038-05-03": "May Day (Observed)", + "2038-09-05": "Mother Teresa Canonization Day", + "2038-09-06": "Mother Teresa Canonization Day (Observed)", + "2038-10-29": "Eid al-Fitr* (*estimated)", + "2038-11-28": "Independence Day", + "2038-11-29": "Liberation Day", + "2038-11-30": "Independence Day (Observed)", + "2038-12-08": "National Youth Day", + "2038-12-25": "Christmas Day", + "2038-12-27": "Christmas Day (Observed)", + "2039-01-01": "New Year's Day", + "2039-01-02": "New Year's Day", + "2039-01-03": "New Year's Day (Observed)", + "2039-01-04": "New Year's Day (Observed)", + "2039-01-05": "Eid al-Adha* (*estimated)", + "2039-03-14": "Summer Day", + "2039-03-22": "Nevruz", + "2039-04-10": "Catholic Easter", + "2039-04-11": "Catholic Easter (Observed)", + "2039-04-17": "Orthodox Easter", + "2039-04-18": "Orthodox Easter (Observed)", + "2039-05-01": "May Day", + "2039-05-02": "May Day (Observed)", + "2039-09-05": "Mother Teresa Canonization Day", + "2039-10-19": "Eid al-Fitr* (*estimated)", + "2039-11-28": "Independence Day", + "2039-11-29": "Liberation Day", + "2039-12-08": "National Youth Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Eid al-Adha* (*estimated)", + "2039-12-27": "Christmas Day (Observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day", + "2040-01-03": "New Year's Day (Observed)", + "2040-03-14": "Summer Day", + "2040-03-22": "Nevruz", + "2040-04-01": "Catholic Easter", + "2040-04-02": "Catholic Easter (Observed)", + "2040-05-01": "May Day", + "2040-05-06": "Orthodox Easter", + "2040-05-07": "Orthodox Easter (Observed)", + "2040-09-05": "Mother Teresa Canonization Day", + "2040-10-07": "Eid al-Fitr* (*estimated)", + "2040-10-08": "Eid al-Fitr* (*estimated) (Observed)", + "2040-11-28": "Independence Day", + "2040-11-29": "Liberation Day", + "2040-12-08": "National Youth Day", + "2040-12-10": "National Youth Day (Observed)", + "2040-12-14": "Eid al-Adha* (*estimated)", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-01-02": "New Year's Day", + "2041-03-14": "Summer Day", + "2041-03-22": "Nevruz", + "2041-04-21": "Catholic Easter; Orthodox Easter", + "2041-04-22": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "2041-05-01": "May Day", + "2041-09-05": "Mother Teresa Canonization Day", + "2041-09-26": "Eid al-Fitr* (*estimated)", + "2041-11-28": "Independence Day", + "2041-11-29": "Liberation Day", + "2041-12-04": "Eid al-Adha* (*estimated)", + "2041-12-08": "National Youth Day", + "2041-12-09": "National Youth Day (Observed)", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-01-02": "New Year's Day", + "2042-03-14": "Summer Day", + "2042-03-22": "Nevruz", + "2042-03-24": "Nevruz (Observed)", + "2042-04-06": "Catholic Easter", + "2042-04-07": "Catholic Easter (Observed)", + "2042-04-13": "Orthodox Easter", + "2042-04-14": "Orthodox Easter (Observed)", + "2042-05-01": "May Day", + "2042-09-05": "Mother Teresa Canonization Day", + "2042-09-15": "Eid al-Fitr* (*estimated)", + "2042-11-23": "Eid al-Adha* (*estimated)", + "2042-11-24": "Eid al-Adha* (*estimated) (Observed)", + "2042-11-28": "Independence Day", + "2042-11-29": "Liberation Day", + "2042-12-01": "Liberation Day (Observed)", + "2042-12-08": "National Youth Day", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-01-02": "New Year's Day", + "2043-03-14": "Summer Day", + "2043-03-16": "Summer Day (Observed)", + "2043-03-22": "Nevruz", + "2043-03-23": "Nevruz (Observed)", + "2043-03-29": "Catholic Easter", + "2043-03-30": "Catholic Easter (Observed)", + "2043-05-01": "May Day", + "2043-05-03": "Orthodox Easter", + "2043-05-04": "Orthodox Easter (Observed)", + "2043-09-04": "Eid al-Fitr* (*estimated)", + "2043-09-05": "Mother Teresa Canonization Day", + "2043-09-07": "Mother Teresa Canonization Day (Observed)", + "2043-11-12": "Eid al-Adha* (*estimated)", + "2043-11-28": "Independence Day", + "2043-11-29": "Liberation Day", + "2043-11-30": "Independence Day (Observed)", + "2043-12-01": "Liberation Day (Observed)", + "2043-12-08": "National Youth Day", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-01-02": "New Year's Day", + "2044-01-04": "New Year's Day (Observed)", + "2044-03-14": "Summer Day", + "2044-03-22": "Nevruz", + "2044-04-17": "Catholic Easter", + "2044-04-18": "Catholic Easter (Observed)", + "2044-04-24": "Orthodox Easter", + "2044-04-25": "Orthodox Easter (Observed)", + "2044-05-01": "May Day", + "2044-05-02": "May Day (Observed)", + "2044-08-24": "Eid al-Fitr* (*estimated)", + "2044-09-05": "Mother Teresa Canonization Day", + "2044-10-31": "Eid al-Adha* (*estimated)", + "2044-11-28": "Independence Day", + "2044-11-29": "Liberation Day", + "2044-12-08": "National Youth Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day (Observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day", + "2045-01-03": "New Year's Day (Observed)", + "2045-03-14": "Summer Day", + "2045-03-22": "Nevruz", + "2045-04-09": "Catholic Easter; Orthodox Easter", + "2045-04-10": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "2045-05-01": "May Day", + "2045-08-14": "Eid al-Fitr* (*estimated)", + "2045-09-05": "Mother Teresa Canonization Day", + "2045-10-21": "Eid al-Adha* (*estimated)", + "2045-10-23": "Eid al-Adha* (*estimated) (Observed)", + "2045-11-28": "Independence Day", + "2045-11-29": "Liberation Day", + "2045-12-08": "National Youth Day", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-01-02": "New Year's Day", + "2046-03-14": "Summer Day", + "2046-03-22": "Nevruz", + "2046-03-25": "Catholic Easter", + "2046-03-26": "Catholic Easter (Observed)", + "2046-04-29": "Orthodox Easter", + "2046-04-30": "Orthodox Easter (Observed)", + "2046-05-01": "May Day", + "2046-08-03": "Eid al-Fitr* (*estimated)", + "2046-09-05": "Mother Teresa Canonization Day", + "2046-10-10": "Eid al-Adha* (*estimated)", + "2046-11-28": "Independence Day", + "2046-11-29": "Liberation Day", + "2046-12-08": "National Youth Day", + "2046-12-10": "National Youth Day (Observed)", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-02": "New Year's Day", + "2047-03-14": "Summer Day", + "2047-03-22": "Nevruz", + "2047-04-14": "Catholic Easter", + "2047-04-15": "Catholic Easter (Observed)", + "2047-04-21": "Orthodox Easter", + "2047-04-22": "Orthodox Easter (Observed)", + "2047-05-01": "May Day", + "2047-07-24": "Eid al-Fitr* (*estimated)", + "2047-09-05": "Mother Teresa Canonization Day", + "2047-09-30": "Eid al-Adha* (*estimated)", + "2047-11-28": "Independence Day", + "2047-11-29": "Liberation Day", + "2047-12-08": "National Youth Day", + "2047-12-09": "National Youth Day (Observed)", + "2047-12-25": "Christmas Day", + "2048-01-01": "New Year's Day", + "2048-01-02": "New Year's Day", + "2048-03-14": "Summer Day", + "2048-03-16": "Summer Day (Observed)", + "2048-03-22": "Nevruz", + "2048-03-23": "Nevruz (Observed)", + "2048-04-05": "Catholic Easter; Orthodox Easter", + "2048-04-06": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "2048-05-01": "May Day", + "2048-07-12": "Eid al-Fitr* (*estimated)", + "2048-07-13": "Eid al-Fitr* (*estimated) (Observed)", + "2048-09-05": "Mother Teresa Canonization Day", + "2048-09-07": "Mother Teresa Canonization Day (Observed)", + "2048-09-19": "Eid al-Adha* (*estimated)", + "2048-09-21": "Eid al-Adha* (*estimated) (Observed)", + "2048-11-28": "Independence Day", + "2048-11-29": "Liberation Day", + "2048-11-30": "Independence Day (Observed)", + "2048-12-01": "Liberation Day (Observed)", + "2048-12-08": "National Youth Day", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-01-02": "New Year's Day", + "2049-01-04": "New Year's Day (Observed)", + "2049-03-14": "Summer Day", + "2049-03-15": "Summer Day (Observed)", + "2049-03-22": "Nevruz", + "2049-04-18": "Catholic Easter", + "2049-04-19": "Catholic Easter (Observed)", + "2049-04-25": "Orthodox Easter", + "2049-04-26": "Orthodox Easter (Observed)", + "2049-05-01": "May Day", + "2049-05-03": "May Day (Observed)", + "2049-07-01": "Eid al-Fitr* (*estimated)", + "2049-09-05": "Mother Teresa Canonization Day", + "2049-09-06": "Mother Teresa Canonization Day (Observed)", + "2049-09-08": "Eid al-Adha* (*estimated)", + "2049-11-28": "Independence Day", + "2049-11-29": "Liberation Day", + "2049-11-30": "Independence Day (Observed)", + "2049-12-08": "National Youth Day", + "2049-12-25": "Christmas Day", + "2049-12-27": "Christmas Day (Observed)", + "2050-01-01": "New Year's Day", + "2050-01-02": "New Year's Day", + "2050-01-03": "New Year's Day (Observed)", + "2050-01-04": "New Year's Day (Observed)", + "2050-03-14": "Summer Day", + "2050-03-22": "Nevruz", + "2050-04-10": "Catholic Easter", + "2050-04-11": "Catholic Easter (Observed)", + "2050-04-17": "Orthodox Easter", + "2050-04-18": "Orthodox Easter (Observed)", + "2050-05-01": "May Day", + "2050-05-02": "May Day (Observed)", + "2050-06-20": "Eid al-Fitr* (*estimated)", + "2050-08-28": "Eid al-Adha* (*estimated)", + "2050-08-29": "Eid al-Adha* (*estimated) (Observed)", + "2050-09-05": "Mother Teresa Canonization Day", + "2050-11-28": "Independence Day", + "2050-11-29": "Liberation Day", + "2050-12-08": "National Youth Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day (Observed)" +} diff --git a/snapshots/countries/AM.json b/snapshots/countries/AM.json new file mode 100644 index 000000000..f08cf9e78 --- /dev/null +++ b/snapshots/countries/AM.json @@ -0,0 +1,746 @@ +{ + "1991-01-01": "New Year's Day", + "1991-01-02": "New Year's Day", + "1991-01-06": "Christmas and Epiphany Day", + "1991-03-08": "Women's Day", + "1991-04-24": "Genocide Memorial Day", + "1991-05-28": "Republic Day", + "1991-12-31": "New Year's Eve", + "1992-01-01": "New Year's Day", + "1992-01-02": "New Year's Day", + "1992-01-06": "Christmas and Epiphany Day", + "1992-03-08": "Women's Day", + "1992-04-24": "Genocide Memorial Day", + "1992-05-28": "Republic Day", + "1992-09-21": "Independence Day", + "1992-12-31": "New Year's Eve", + "1993-01-01": "New Year's Day", + "1993-01-02": "New Year's Day", + "1993-01-06": "Christmas and Epiphany Day", + "1993-03-08": "Women's Day", + "1993-04-24": "Genocide Memorial Day", + "1993-05-28": "Republic Day", + "1993-09-21": "Independence Day", + "1993-12-31": "New Year's Eve", + "1994-01-01": "New Year's Day", + "1994-01-02": "New Year's Day", + "1994-01-06": "Christmas and Epiphany Day", + "1994-03-08": "Women's Day", + "1994-04-07": "A Holiday of Motherhood and Beauty", + "1994-04-24": "Genocide Memorial Day", + "1994-05-28": "Republic Day", + "1994-09-21": "Independence Day", + "1994-12-31": "New Year's Eve", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day", + "1995-01-06": "Christmas and Epiphany Day", + "1995-03-08": "Women's Day", + "1995-04-07": "A Holiday of Motherhood and Beauty", + "1995-04-24": "Genocide Memorial Day", + "1995-05-09": "Victory and Peace Day", + "1995-05-28": "Republic Day", + "1995-09-21": "Independence Day", + "1995-12-31": "New Year's Eve", + "1996-01-01": "New Year's Day", + "1996-01-02": "New Year's Day", + "1996-01-06": "Christmas and Epiphany Day", + "1996-03-08": "Women's Day", + "1996-04-07": "A Holiday of Motherhood and Beauty", + "1996-04-24": "Genocide Memorial Day", + "1996-05-09": "Victory and Peace Day", + "1996-05-28": "Republic Day", + "1996-07-05": "Constitution Day", + "1996-09-21": "Independence Day", + "1996-12-31": "New Year's Eve", + "1997-01-01": "New Year's Day", + "1997-01-02": "New Year's Day", + "1997-01-06": "Christmas and Epiphany Day", + "1997-03-08": "Women's Day", + "1997-04-07": "A Holiday of Motherhood and Beauty", + "1997-04-24": "Genocide Memorial Day", + "1997-05-09": "Victory and Peace Day", + "1997-05-28": "Republic Day", + "1997-07-05": "Constitution Day", + "1997-09-21": "Independence Day", + "1997-12-31": "New Year's Eve", + "1998-01-01": "New Year's Day", + "1998-01-02": "New Year's Day", + "1998-01-06": "Christmas and Epiphany Day", + "1998-03-08": "Women's Day", + "1998-04-07": "A Holiday of Motherhood and Beauty", + "1998-04-24": "Genocide Memorial Day", + "1998-05-09": "Victory and Peace Day", + "1998-05-28": "Republic Day", + "1998-07-05": "Constitution Day", + "1998-09-21": "Independence Day", + "1998-12-31": "New Year's Eve", + "1999-01-01": "New Year's Day", + "1999-01-02": "New Year's Day", + "1999-01-06": "Christmas and Epiphany Day", + "1999-03-08": "Women's Day", + "1999-04-07": "A Holiday of Motherhood and Beauty", + "1999-04-24": "Genocide Memorial Day", + "1999-05-09": "Victory and Peace Day", + "1999-05-28": "Republic Day", + "1999-07-05": "Constitution Day", + "1999-09-21": "Independence Day", + "1999-12-31": "New Year's Eve", + "2000-01-01": "New Year's Day", + "2000-01-02": "New Year's Day", + "2000-01-06": "Christmas and Epiphany Day", + "2000-03-08": "Women's Day", + "2000-04-07": "A Holiday of Motherhood and Beauty", + "2000-04-24": "Genocide Memorial Day", + "2000-05-09": "Victory and Peace Day", + "2000-05-28": "Republic Day", + "2000-07-05": "Constitution Day", + "2000-09-21": "Independence Day", + "2000-12-31": "New Year's Eve", + "2001-01-01": "New Year's Day", + "2001-01-02": "New Year's Day", + "2001-01-06": "Christmas and Epiphany Day", + "2001-03-08": "Women's Day", + "2001-04-07": "A Holiday of Motherhood and Beauty", + "2001-04-24": "Genocide Memorial Day", + "2001-05-01": "International Day of Workers' Solidarity", + "2001-05-09": "Victory and Peace Day", + "2001-05-28": "Republic Day", + "2001-07-05": "Constitution Day", + "2001-09-21": "Independence Day", + "2001-12-31": "New Year's Eve", + "2002-01-01": "New Year's Day", + "2002-01-02": "New Year's Day", + "2002-01-06": "Christmas and Epiphany Day", + "2002-03-08": "Women's Day", + "2002-04-24": "Genocide Memorial Day", + "2002-05-01": "Labor day", + "2002-05-09": "Victory and Peace Day", + "2002-05-28": "Republic Day", + "2002-07-05": "Constitution Day", + "2002-09-21": "Independence Day", + "2002-12-31": "New Year's Eve", + "2003-01-01": "New Year's Day", + "2003-01-02": "New Year's Day", + "2003-01-06": "Christmas and Epiphany Day", + "2003-01-28": "Army Day", + "2003-03-08": "Women's Day", + "2003-04-24": "Genocide Memorial Day", + "2003-05-01": "Labor day", + "2003-05-09": "Victory and Peace Day", + "2003-05-28": "Republic Day", + "2003-07-05": "Constitution Day", + "2003-09-21": "Independence Day", + "2003-12-31": "New Year's Eve", + "2004-01-01": "New Year's Day", + "2004-01-02": "New Year's Day", + "2004-01-06": "Christmas and Epiphany Day", + "2004-01-28": "Army Day", + "2004-03-08": "Women's Day", + "2004-04-24": "Genocide Memorial Day", + "2004-05-01": "Labor day", + "2004-05-09": "Victory and Peace Day", + "2004-05-28": "Republic Day", + "2004-07-05": "Constitution Day", + "2004-09-21": "Independence Day", + "2004-12-31": "New Year's Eve", + "2005-01-01": "New Year's Day", + "2005-01-02": "New Year's Day", + "2005-01-06": "Christmas and Epiphany Day", + "2005-01-28": "Army Day", + "2005-03-08": "Women's Day", + "2005-04-24": "Genocide Memorial Day", + "2005-05-01": "Labor day", + "2005-05-09": "Victory and Peace Day", + "2005-05-28": "Republic Day", + "2005-07-05": "Constitution Day", + "2005-09-21": "Independence Day", + "2005-12-31": "New Year's Eve", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day", + "2006-01-06": "Christmas and Epiphany Day", + "2006-01-28": "Army Day", + "2006-03-08": "Women's Day", + "2006-04-24": "Genocide Memorial Day", + "2006-05-01": "Labor day", + "2006-05-09": "Victory and Peace Day", + "2006-05-28": "Republic Day", + "2006-07-05": "Constitution Day", + "2006-09-21": "Independence Day", + "2006-12-31": "New Year's Eve", + "2007-01-01": "New Year's Day", + "2007-01-02": "New Year's Day", + "2007-01-06": "Christmas and Epiphany Day", + "2007-01-28": "Army Day", + "2007-03-08": "Women's Day", + "2007-04-24": "Genocide Memorial Day", + "2007-05-01": "Labor day", + "2007-05-09": "Victory and Peace Day", + "2007-05-28": "Republic Day", + "2007-07-05": "Constitution Day", + "2007-09-21": "Independence Day", + "2007-12-31": "New Year's Eve", + "2008-01-01": "New Year's Day", + "2008-01-02": "New Year's Day", + "2008-01-06": "Christmas and Epiphany Day", + "2008-01-28": "Army Day", + "2008-03-08": "Women's Day", + "2008-04-24": "Genocide Memorial Day", + "2008-05-01": "Labor day", + "2008-05-09": "Victory and Peace Day", + "2008-05-28": "Republic Day", + "2008-07-05": "Constitution Day", + "2008-09-21": "Independence Day", + "2008-12-31": "New Year's Eve", + "2009-01-01": "New Year's Day", + "2009-01-02": "New Year's Day", + "2009-01-06": "Christmas and Epiphany Day", + "2009-01-28": "Army Day", + "2009-03-08": "Women's Day", + "2009-04-24": "Genocide Memorial Day", + "2009-05-01": "Labor day", + "2009-05-09": "Victory and Peace Day", + "2009-05-28": "Republic Day", + "2009-07-05": "Constitution Day", + "2009-09-21": "Independence Day", + "2009-12-31": "New Year's Eve", + "2010-01-01": "New Year's Day", + "2010-01-02": "New Year's Day", + "2010-01-03": "New Year's Day", + "2010-01-04": "New Year's Day", + "2010-01-05": "Christmas Holidays", + "2010-01-06": "Christmas and Epiphany Day", + "2010-01-07": "Memorial Day", + "2010-01-28": "Army Day", + "2010-03-08": "Women's Day", + "2010-04-24": "Genocide Memorial Day", + "2010-05-01": "Labor day", + "2010-05-09": "Victory and Peace Day", + "2010-05-28": "Republic Day", + "2010-07-05": "Constitution Day", + "2010-09-21": "Independence Day", + "2010-12-31": "New Year's Eve", + "2011-01-01": "New Year's Day", + "2011-01-02": "New Year's Day", + "2011-01-03": "New Year's Day", + "2011-01-04": "New Year's Day", + "2011-01-05": "Christmas Holidays", + "2011-01-06": "Christmas and Epiphany Day", + "2011-01-07": "Memorial Day", + "2011-01-28": "Army Day", + "2011-03-08": "Women's Day", + "2011-04-24": "Genocide Memorial Day", + "2011-05-01": "Labor day", + "2011-05-09": "Victory and Peace Day", + "2011-05-28": "Republic Day", + "2011-07-05": "Constitution Day", + "2011-09-21": "Independence Day", + "2011-12-31": "New Year's Eve", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day", + "2012-01-03": "New Year's Day", + "2012-01-04": "New Year's Day", + "2012-01-05": "Christmas Holidays", + "2012-01-06": "Christmas and Epiphany Day", + "2012-01-07": "Memorial Day", + "2012-01-28": "Army Day", + "2012-03-08": "Women's Day", + "2012-04-24": "Genocide Memorial Day", + "2012-05-01": "Labor day", + "2012-05-09": "Victory and Peace Day", + "2012-05-28": "Republic Day", + "2012-07-05": "Constitution Day", + "2012-09-21": "Independence Day", + "2012-12-31": "New Year's Eve", + "2013-01-01": "New Year's Day", + "2013-01-02": "New Year's Day", + "2013-01-03": "New Year's Day", + "2013-01-04": "New Year's Day", + "2013-01-05": "Christmas Holidays", + "2013-01-06": "Christmas and Epiphany Day", + "2013-01-07": "Memorial Day", + "2013-01-28": "Army Day", + "2013-03-08": "Women's Day", + "2013-04-24": "Genocide Memorial Day", + "2013-05-01": "Labor day", + "2013-05-09": "Victory and Peace Day", + "2013-05-28": "Republic Day", + "2013-07-05": "Constitution Day", + "2013-09-21": "Independence Day", + "2013-12-31": "New Year's Eve", + "2014-01-01": "New Year's Day", + "2014-01-02": "New Year's Day", + "2014-01-03": "New Year's Day", + "2014-01-04": "New Year's Day", + "2014-01-05": "Christmas Holidays", + "2014-01-06": "Christmas and Epiphany Day", + "2014-01-07": "Memorial Day", + "2014-01-28": "Army Day", + "2014-03-08": "Women's Day", + "2014-04-24": "Genocide Memorial Day", + "2014-05-01": "Labor day", + "2014-05-09": "Victory and Peace Day", + "2014-05-28": "Republic Day", + "2014-07-05": "Constitution Day", + "2014-09-21": "Independence Day", + "2014-12-31": "New Year's Eve", + "2015-01-01": "New Year's Day", + "2015-01-02": "New Year's Day", + "2015-01-03": "New Year's Day", + "2015-01-04": "New Year's Day", + "2015-01-05": "Christmas Holidays", + "2015-01-06": "Christmas and Epiphany Day", + "2015-01-07": "Memorial Day", + "2015-01-28": "Army Day", + "2015-03-08": "Women's Day", + "2015-04-24": "Genocide Memorial Day", + "2015-05-01": "Labor day", + "2015-05-09": "Victory and Peace Day", + "2015-05-28": "Republic Day", + "2015-07-05": "Constitution Day", + "2015-09-21": "Independence Day", + "2015-12-31": "New Year's Eve", + "2016-01-01": "New Year's Day", + "2016-01-02": "New Year's Day", + "2016-01-03": "New Year's Day", + "2016-01-04": "New Year's Day", + "2016-01-05": "Christmas Holidays", + "2016-01-06": "Christmas and Epiphany Day", + "2016-01-07": "Memorial Day", + "2016-01-28": "Army Day", + "2016-03-08": "Women's Day", + "2016-04-24": "Genocide Memorial Day", + "2016-05-01": "Labor day", + "2016-05-09": "Victory and Peace Day", + "2016-05-28": "Republic Day", + "2016-07-05": "Constitution Day", + "2016-09-21": "Independence Day", + "2016-12-31": "New Year's Eve", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day", + "2017-01-03": "New Year's Day", + "2017-01-04": "New Year's Day", + "2017-01-05": "Christmas Holidays", + "2017-01-06": "Christmas and Epiphany Day", + "2017-01-07": "Memorial Day", + "2017-01-28": "Army Day", + "2017-03-08": "Women's Day", + "2017-04-24": "Genocide Memorial Day", + "2017-05-01": "Labor day", + "2017-05-09": "Victory and Peace Day", + "2017-05-28": "Republic Day", + "2017-07-05": "Constitution Day", + "2017-09-21": "Independence Day", + "2017-12-31": "New Year's Eve", + "2018-01-01": "New Year's Day", + "2018-01-02": "New Year's Day", + "2018-01-03": "New Year's Day", + "2018-01-04": "New Year's Day", + "2018-01-05": "Christmas Holidays", + "2018-01-06": "Christmas and Epiphany Day", + "2018-01-07": "Memorial Day", + "2018-01-28": "Army Day", + "2018-03-08": "Women's Day", + "2018-04-24": "Genocide Memorial Day", + "2018-05-01": "Labor day", + "2018-05-09": "Victory and Peace Day", + "2018-05-28": "Republic Day", + "2018-07-05": "Constitution Day", + "2018-09-21": "Independence Day", + "2018-12-31": "New Year's Eve", + "2019-01-01": "New Year's Day", + "2019-01-02": "New Year's Day", + "2019-01-03": "New Year's Day", + "2019-01-04": "New Year's Day", + "2019-01-05": "Christmas Holidays", + "2019-01-06": "Christmas and Epiphany Day", + "2019-01-07": "Memorial Day", + "2019-01-28": "Army Day", + "2019-03-08": "Women's Day", + "2019-04-24": "Genocide Memorial Day", + "2019-05-01": "Labor day", + "2019-05-09": "Victory and Peace Day", + "2019-05-28": "Republic Day", + "2019-07-05": "Constitution Day", + "2019-09-21": "Independence Day", + "2019-12-31": "New Year's Eve", + "2020-01-01": "New Year's Day", + "2020-01-02": "New Year's Day", + "2020-01-03": "New Year's Day", + "2020-01-04": "New Year's Day", + "2020-01-05": "Christmas Holidays", + "2020-01-06": "Christmas and Epiphany Day", + "2020-01-07": "Memorial Day", + "2020-01-28": "Army Day", + "2020-03-08": "Women's Day", + "2020-04-24": "Genocide Memorial Day", + "2020-05-01": "Labor day", + "2020-05-09": "Victory and Peace Day", + "2020-05-28": "Republic Day", + "2020-07-05": "Constitution Day", + "2020-09-21": "Independence Day", + "2020-12-31": "New Year's Eve", + "2021-01-01": "New Year's Day", + "2021-01-02": "New Year's Day", + "2021-01-03": "New Year's Day", + "2021-01-04": "New Year's Day", + "2021-01-05": "Christmas Holidays", + "2021-01-06": "Christmas and Epiphany Day", + "2021-01-07": "Memorial Day", + "2021-01-28": "Army Day", + "2021-03-08": "Women's Day", + "2021-04-24": "Genocide Memorial Day", + "2021-05-01": "Labor day", + "2021-05-09": "Victory and Peace Day", + "2021-05-28": "Republic Day", + "2021-07-05": "Constitution Day", + "2021-09-21": "Independence Day", + "2021-12-31": "New Year's Eve", + "2022-01-01": "New Year's Day", + "2022-01-02": "New Year's Day", + "2022-01-06": "Christmas and Epiphany Day", + "2022-01-28": "Army Day", + "2022-03-08": "Women's Day", + "2022-04-24": "Genocide Memorial Day", + "2022-05-01": "Labor day", + "2022-05-09": "Victory and Peace Day", + "2022-05-28": "Republic Day", + "2022-07-05": "Constitution Day", + "2022-09-21": "Independence Day", + "2022-12-31": "New Year's Eve", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day", + "2023-01-06": "Christmas and Epiphany Day", + "2023-01-28": "Army Day", + "2023-03-08": "Women's Day", + "2023-04-24": "Genocide Memorial Day", + "2023-05-01": "Labor day", + "2023-05-09": "Victory and Peace Day", + "2023-05-28": "Republic Day", + "2023-07-05": "Constitution Day", + "2023-09-21": "Independence Day", + "2023-12-31": "New Year's Eve", + "2024-01-01": "New Year's Day", + "2024-01-02": "New Year's Day", + "2024-01-06": "Christmas and Epiphany Day", + "2024-01-28": "Army Day", + "2024-03-08": "Women's Day", + "2024-04-24": "Genocide Memorial Day", + "2024-05-01": "Labor day", + "2024-05-09": "Victory and Peace Day", + "2024-05-28": "Republic Day", + "2024-07-05": "Constitution Day", + "2024-09-21": "Independence Day", + "2024-12-31": "New Year's Eve", + "2025-01-01": "New Year's Day", + "2025-01-02": "New Year's Day", + "2025-01-06": "Christmas and Epiphany Day", + "2025-01-28": "Army Day", + "2025-03-08": "Women's Day", + "2025-04-24": "Genocide Memorial Day", + "2025-05-01": "Labor day", + "2025-05-09": "Victory and Peace Day", + "2025-05-28": "Republic Day", + "2025-07-05": "Constitution Day", + "2025-09-21": "Independence Day", + "2025-12-31": "New Year's Eve", + "2026-01-01": "New Year's Day", + "2026-01-02": "New Year's Day", + "2026-01-06": "Christmas and Epiphany Day", + "2026-01-28": "Army Day", + "2026-03-08": "Women's Day", + "2026-04-24": "Genocide Memorial Day", + "2026-05-01": "Labor day", + "2026-05-09": "Victory and Peace Day", + "2026-05-28": "Republic Day", + "2026-07-05": "Constitution Day", + "2026-09-21": "Independence Day", + "2026-12-31": "New Year's Eve", + "2027-01-01": "New Year's Day", + "2027-01-02": "New Year's Day", + "2027-01-06": "Christmas and Epiphany Day", + "2027-01-28": "Army Day", + "2027-03-08": "Women's Day", + "2027-04-24": "Genocide Memorial Day", + "2027-05-01": "Labor day", + "2027-05-09": "Victory and Peace Day", + "2027-05-28": "Republic Day", + "2027-07-05": "Constitution Day", + "2027-09-21": "Independence Day", + "2027-12-31": "New Year's Eve", + "2028-01-01": "New Year's Day", + "2028-01-02": "New Year's Day", + "2028-01-06": "Christmas and Epiphany Day", + "2028-01-28": "Army Day", + "2028-03-08": "Women's Day", + "2028-04-24": "Genocide Memorial Day", + "2028-05-01": "Labor day", + "2028-05-09": "Victory and Peace Day", + "2028-05-28": "Republic Day", + "2028-07-05": "Constitution Day", + "2028-09-21": "Independence Day", + "2028-12-31": "New Year's Eve", + "2029-01-01": "New Year's Day", + "2029-01-02": "New Year's Day", + "2029-01-06": "Christmas and Epiphany Day", + "2029-01-28": "Army Day", + "2029-03-08": "Women's Day", + "2029-04-24": "Genocide Memorial Day", + "2029-05-01": "Labor day", + "2029-05-09": "Victory and Peace Day", + "2029-05-28": "Republic Day", + "2029-07-05": "Constitution Day", + "2029-09-21": "Independence Day", + "2029-12-31": "New Year's Eve", + "2030-01-01": "New Year's Day", + "2030-01-02": "New Year's Day", + "2030-01-06": "Christmas and Epiphany Day", + "2030-01-28": "Army Day", + "2030-03-08": "Women's Day", + "2030-04-24": "Genocide Memorial Day", + "2030-05-01": "Labor day", + "2030-05-09": "Victory and Peace Day", + "2030-05-28": "Republic Day", + "2030-07-05": "Constitution Day", + "2030-09-21": "Independence Day", + "2030-12-31": "New Year's Eve", + "2031-01-01": "New Year's Day", + "2031-01-02": "New Year's Day", + "2031-01-06": "Christmas and Epiphany Day", + "2031-01-28": "Army Day", + "2031-03-08": "Women's Day", + "2031-04-24": "Genocide Memorial Day", + "2031-05-01": "Labor day", + "2031-05-09": "Victory and Peace Day", + "2031-05-28": "Republic Day", + "2031-07-05": "Constitution Day", + "2031-09-21": "Independence Day", + "2031-12-31": "New Year's Eve", + "2032-01-01": "New Year's Day", + "2032-01-02": "New Year's Day", + "2032-01-06": "Christmas and Epiphany Day", + "2032-01-28": "Army Day", + "2032-03-08": "Women's Day", + "2032-04-24": "Genocide Memorial Day", + "2032-05-01": "Labor day", + "2032-05-09": "Victory and Peace Day", + "2032-05-28": "Republic Day", + "2032-07-05": "Constitution Day", + "2032-09-21": "Independence Day", + "2032-12-31": "New Year's Eve", + "2033-01-01": "New Year's Day", + "2033-01-02": "New Year's Day", + "2033-01-06": "Christmas and Epiphany Day", + "2033-01-28": "Army Day", + "2033-03-08": "Women's Day", + "2033-04-24": "Genocide Memorial Day", + "2033-05-01": "Labor day", + "2033-05-09": "Victory and Peace Day", + "2033-05-28": "Republic Day", + "2033-07-05": "Constitution Day", + "2033-09-21": "Independence Day", + "2033-12-31": "New Year's Eve", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day", + "2034-01-06": "Christmas and Epiphany Day", + "2034-01-28": "Army Day", + "2034-03-08": "Women's Day", + "2034-04-24": "Genocide Memorial Day", + "2034-05-01": "Labor day", + "2034-05-09": "Victory and Peace Day", + "2034-05-28": "Republic Day", + "2034-07-05": "Constitution Day", + "2034-09-21": "Independence Day", + "2034-12-31": "New Year's Eve", + "2035-01-01": "New Year's Day", + "2035-01-02": "New Year's Day", + "2035-01-06": "Christmas and Epiphany Day", + "2035-01-28": "Army Day", + "2035-03-08": "Women's Day", + "2035-04-24": "Genocide Memorial Day", + "2035-05-01": "Labor day", + "2035-05-09": "Victory and Peace Day", + "2035-05-28": "Republic Day", + "2035-07-05": "Constitution Day", + "2035-09-21": "Independence Day", + "2035-12-31": "New Year's Eve", + "2036-01-01": "New Year's Day", + "2036-01-02": "New Year's Day", + "2036-01-06": "Christmas and Epiphany Day", + "2036-01-28": "Army Day", + "2036-03-08": "Women's Day", + "2036-04-24": "Genocide Memorial Day", + "2036-05-01": "Labor day", + "2036-05-09": "Victory and Peace Day", + "2036-05-28": "Republic Day", + "2036-07-05": "Constitution Day", + "2036-09-21": "Independence Day", + "2036-12-31": "New Year's Eve", + "2037-01-01": "New Year's Day", + "2037-01-02": "New Year's Day", + "2037-01-06": "Christmas and Epiphany Day", + "2037-01-28": "Army Day", + "2037-03-08": "Women's Day", + "2037-04-24": "Genocide Memorial Day", + "2037-05-01": "Labor day", + "2037-05-09": "Victory and Peace Day", + "2037-05-28": "Republic Day", + "2037-07-05": "Constitution Day", + "2037-09-21": "Independence Day", + "2037-12-31": "New Year's Eve", + "2038-01-01": "New Year's Day", + "2038-01-02": "New Year's Day", + "2038-01-06": "Christmas and Epiphany Day", + "2038-01-28": "Army Day", + "2038-03-08": "Women's Day", + "2038-04-24": "Genocide Memorial Day", + "2038-05-01": "Labor day", + "2038-05-09": "Victory and Peace Day", + "2038-05-28": "Republic Day", + "2038-07-05": "Constitution Day", + "2038-09-21": "Independence Day", + "2038-12-31": "New Year's Eve", + "2039-01-01": "New Year's Day", + "2039-01-02": "New Year's Day", + "2039-01-06": "Christmas and Epiphany Day", + "2039-01-28": "Army Day", + "2039-03-08": "Women's Day", + "2039-04-24": "Genocide Memorial Day", + "2039-05-01": "Labor day", + "2039-05-09": "Victory and Peace Day", + "2039-05-28": "Republic Day", + "2039-07-05": "Constitution Day", + "2039-09-21": "Independence Day", + "2039-12-31": "New Year's Eve", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day", + "2040-01-06": "Christmas and Epiphany Day", + "2040-01-28": "Army Day", + "2040-03-08": "Women's Day", + "2040-04-24": "Genocide Memorial Day", + "2040-05-01": "Labor day", + "2040-05-09": "Victory and Peace Day", + "2040-05-28": "Republic Day", + "2040-07-05": "Constitution Day", + "2040-09-21": "Independence Day", + "2040-12-31": "New Year's Eve", + "2041-01-01": "New Year's Day", + "2041-01-02": "New Year's Day", + "2041-01-06": "Christmas and Epiphany Day", + "2041-01-28": "Army Day", + "2041-03-08": "Women's Day", + "2041-04-24": "Genocide Memorial Day", + "2041-05-01": "Labor day", + "2041-05-09": "Victory and Peace Day", + "2041-05-28": "Republic Day", + "2041-07-05": "Constitution Day", + "2041-09-21": "Independence Day", + "2041-12-31": "New Year's Eve", + "2042-01-01": "New Year's Day", + "2042-01-02": "New Year's Day", + "2042-01-06": "Christmas and Epiphany Day", + "2042-01-28": "Army Day", + "2042-03-08": "Women's Day", + "2042-04-24": "Genocide Memorial Day", + "2042-05-01": "Labor day", + "2042-05-09": "Victory and Peace Day", + "2042-05-28": "Republic Day", + "2042-07-05": "Constitution Day", + "2042-09-21": "Independence Day", + "2042-12-31": "New Year's Eve", + "2043-01-01": "New Year's Day", + "2043-01-02": "New Year's Day", + "2043-01-06": "Christmas and Epiphany Day", + "2043-01-28": "Army Day", + "2043-03-08": "Women's Day", + "2043-04-24": "Genocide Memorial Day", + "2043-05-01": "Labor day", + "2043-05-09": "Victory and Peace Day", + "2043-05-28": "Republic Day", + "2043-07-05": "Constitution Day", + "2043-09-21": "Independence Day", + "2043-12-31": "New Year's Eve", + "2044-01-01": "New Year's Day", + "2044-01-02": "New Year's Day", + "2044-01-06": "Christmas and Epiphany Day", + "2044-01-28": "Army Day", + "2044-03-08": "Women's Day", + "2044-04-24": "Genocide Memorial Day", + "2044-05-01": "Labor day", + "2044-05-09": "Victory and Peace Day", + "2044-05-28": "Republic Day", + "2044-07-05": "Constitution Day", + "2044-09-21": "Independence Day", + "2044-12-31": "New Year's Eve", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day", + "2045-01-06": "Christmas and Epiphany Day", + "2045-01-28": "Army Day", + "2045-03-08": "Women's Day", + "2045-04-24": "Genocide Memorial Day", + "2045-05-01": "Labor day", + "2045-05-09": "Victory and Peace Day", + "2045-05-28": "Republic Day", + "2045-07-05": "Constitution Day", + "2045-09-21": "Independence Day", + "2045-12-31": "New Year's Eve", + "2046-01-01": "New Year's Day", + "2046-01-02": "New Year's Day", + "2046-01-06": "Christmas and Epiphany Day", + "2046-01-28": "Army Day", + "2046-03-08": "Women's Day", + "2046-04-24": "Genocide Memorial Day", + "2046-05-01": "Labor day", + "2046-05-09": "Victory and Peace Day", + "2046-05-28": "Republic Day", + "2046-07-05": "Constitution Day", + "2046-09-21": "Independence Day", + "2046-12-31": "New Year's Eve", + "2047-01-01": "New Year's Day", + "2047-01-02": "New Year's Day", + "2047-01-06": "Christmas and Epiphany Day", + "2047-01-28": "Army Day", + "2047-03-08": "Women's Day", + "2047-04-24": "Genocide Memorial Day", + "2047-05-01": "Labor day", + "2047-05-09": "Victory and Peace Day", + "2047-05-28": "Republic Day", + "2047-07-05": "Constitution Day", + "2047-09-21": "Independence Day", + "2047-12-31": "New Year's Eve", + "2048-01-01": "New Year's Day", + "2048-01-02": "New Year's Day", + "2048-01-06": "Christmas and Epiphany Day", + "2048-01-28": "Army Day", + "2048-03-08": "Women's Day", + "2048-04-24": "Genocide Memorial Day", + "2048-05-01": "Labor day", + "2048-05-09": "Victory and Peace Day", + "2048-05-28": "Republic Day", + "2048-07-05": "Constitution Day", + "2048-09-21": "Independence Day", + "2048-12-31": "New Year's Eve", + "2049-01-01": "New Year's Day", + "2049-01-02": "New Year's Day", + "2049-01-06": "Christmas and Epiphany Day", + "2049-01-28": "Army Day", + "2049-03-08": "Women's Day", + "2049-04-24": "Genocide Memorial Day", + "2049-05-01": "Labor day", + "2049-05-09": "Victory and Peace Day", + "2049-05-28": "Republic Day", + "2049-07-05": "Constitution Day", + "2049-09-21": "Independence Day", + "2049-12-31": "New Year's Eve", + "2050-01-01": "New Year's Day", + "2050-01-02": "New Year's Day", + "2050-01-06": "Christmas and Epiphany Day", + "2050-01-28": "Army Day", + "2050-03-08": "Women's Day", + "2050-04-24": "Genocide Memorial Day", + "2050-05-01": "Labor day", + "2050-05-09": "Victory and Peace Day", + "2050-05-28": "Republic Day", + "2050-07-05": "Constitution Day", + "2050-09-21": "Independence Day", + "2050-12-31": "New Year's Eve" +} diff --git a/snapshots/countries/AO.json b/snapshots/countries/AO.json new file mode 100644 index 000000000..277d9cffd --- /dev/null +++ b/snapshots/countries/AO.json @@ -0,0 +1,976 @@ +{ + "1975-01-01": "New Year's Day", + "1975-02-04": "Liberation Movement Day", + "1975-05-01": "International Worker's Day", + "1975-11-02": "All Souls' Day", + "1975-11-11": "Independence Day", + "1975-12-10": "Date of Founding of MPLA - Labor Party", + "1975-12-25": "Family Day", + "1976-01-01": "New Year's Day", + "1976-02-04": "Liberation Movement Day", + "1976-05-01": "International Worker's Day", + "1976-11-02": "All Souls' Day", + "1976-11-11": "Independence Day", + "1976-12-10": "Date of Founding of MPLA - Labor Party", + "1976-12-25": "Family Day", + "1977-01-01": "New Year's Day", + "1977-02-04": "Liberation Movement Day", + "1977-05-01": "International Worker's Day", + "1977-11-02": "All Souls' Day", + "1977-11-11": "Independence Day", + "1977-12-10": "Date of Founding of MPLA - Labor Party", + "1977-12-25": "Family Day", + "1978-01-01": "New Year's Day", + "1978-02-04": "Liberation Movement Day", + "1978-05-01": "International Worker's Day", + "1978-11-02": "All Souls' Day", + "1978-11-11": "Independence Day", + "1978-12-10": "Date of Founding of MPLA - Labor Party", + "1978-12-25": "Family Day", + "1979-01-01": "New Year's Day", + "1979-02-04": "Liberation Movement Day", + "1979-05-01": "International Worker's Day", + "1979-11-02": "All Souls' Day", + "1979-11-11": "Independence Day", + "1979-12-10": "Date of Founding of MPLA - Labor Party", + "1979-12-25": "Family Day", + "1980-01-01": "New Year's Day", + "1980-02-04": "Liberation Movement Day", + "1980-05-01": "International Worker's Day", + "1980-09-17": "National Heroes' Day", + "1980-11-02": "All Souls' Day", + "1980-11-11": "Independence Day", + "1980-12-10": "Date of Founding of MPLA - Labor Party", + "1980-12-25": "Family Day", + "1981-01-01": "New Year's Day", + "1981-02-04": "Liberation Movement Day", + "1981-05-01": "International Worker's Day", + "1981-09-17": "National Heroes' Day", + "1981-11-02": "All Souls' Day", + "1981-11-11": "Independence Day", + "1981-12-10": "Date of Founding of MPLA - Labor Party", + "1981-12-25": "Family Day", + "1982-01-01": "New Year's Day", + "1982-02-04": "Liberation Movement Day", + "1982-05-01": "International Worker's Day", + "1982-09-17": "National Heroes' Day", + "1982-11-02": "All Souls' Day", + "1982-11-11": "Independence Day", + "1982-12-10": "Date of Founding of MPLA - Labor Party", + "1982-12-25": "Family Day", + "1983-01-01": "New Year's Day", + "1983-02-04": "Liberation Movement Day", + "1983-05-01": "International Worker's Day", + "1983-09-17": "National Heroes' Day", + "1983-11-02": "All Souls' Day", + "1983-11-11": "Independence Day", + "1983-12-10": "Date of Founding of MPLA - Labor Party", + "1983-12-25": "Family Day", + "1984-01-01": "New Year's Day", + "1984-02-04": "Liberation Movement Day", + "1984-05-01": "International Worker's Day", + "1984-09-17": "National Heroes' Day", + "1984-11-02": "All Souls' Day", + "1984-11-11": "Independence Day", + "1984-12-10": "Date of Founding of MPLA - Labor Party", + "1984-12-25": "Family Day", + "1985-01-01": "New Year's Day", + "1985-02-04": "Liberation Movement Day", + "1985-05-01": "International Worker's Day", + "1985-09-17": "National Heroes' Day", + "1985-11-02": "All Souls' Day", + "1985-11-11": "Independence Day", + "1985-12-10": "Date of Founding of MPLA - Labor Party", + "1985-12-25": "Family Day", + "1986-01-01": "New Year's Day", + "1986-02-04": "Liberation Movement Day", + "1986-05-01": "International Worker's Day", + "1986-09-17": "National Heroes' Day", + "1986-11-02": "All Souls' Day", + "1986-11-11": "Independence Day", + "1986-12-10": "Date of Founding of MPLA - Labor Party", + "1986-12-25": "Family Day", + "1987-01-01": "New Year's Day", + "1987-02-04": "Liberation Movement Day", + "1987-05-01": "International Worker's Day", + "1987-09-17": "National Heroes' Day", + "1987-11-02": "All Souls' Day", + "1987-11-11": "Independence Day", + "1987-12-10": "Date of Founding of MPLA - Labor Party", + "1987-12-25": "Family Day", + "1988-01-01": "New Year's Day", + "1988-02-04": "Liberation Movement Day", + "1988-05-01": "International Worker's Day", + "1988-09-17": "National Heroes' Day", + "1988-11-02": "All Souls' Day", + "1988-11-11": "Independence Day", + "1988-12-10": "Date of Founding of MPLA - Labor Party", + "1988-12-25": "Family Day", + "1989-01-01": "New Year's Day", + "1989-02-04": "Liberation Movement Day", + "1989-05-01": "International Worker's Day", + "1989-09-17": "National Heroes' Day", + "1989-11-02": "All Souls' Day", + "1989-11-11": "Independence Day", + "1989-12-10": "Date of Founding of MPLA - Labor Party", + "1989-12-25": "Family Day", + "1990-01-01": "New Year's Day", + "1990-02-04": "Liberation Movement Day", + "1990-05-01": "International Worker's Day", + "1990-09-17": "National Heroes' Day", + "1990-11-02": "All Souls' Day", + "1990-11-11": "Independence Day", + "1990-12-10": "Date of Founding of MPLA - Labor Party", + "1990-12-25": "Family Day", + "1991-01-01": "New Year's Day", + "1991-02-04": "Liberation Movement Day", + "1991-05-01": "International Worker's Day", + "1991-09-17": "National Heroes' Day", + "1991-11-02": "All Souls' Day", + "1991-11-11": "Independence Day", + "1991-12-10": "Date of Founding of MPLA - Labor Party", + "1991-12-25": "Family Day", + "1992-01-01": "New Year's Day", + "1992-02-04": "Liberation Movement Day", + "1992-05-01": "International Worker's Day", + "1992-09-17": "National Heroes' Day", + "1992-11-02": "All Souls' Day", + "1992-11-11": "Independence Day", + "1992-12-25": "Family Day", + "1993-01-01": "New Year's Day", + "1993-02-04": "Liberation Movement Day", + "1993-05-01": "International Worker's Day", + "1993-09-17": "National Heroes' Day", + "1993-11-02": "All Souls' Day", + "1993-11-11": "Independence Day", + "1993-12-25": "Family Day", + "1994-01-01": "New Year's Day", + "1994-02-04": "Liberation Movement Day", + "1994-05-01": "International Worker's Day", + "1994-09-17": "National Heroes' Day", + "1994-11-02": "All Souls' Day", + "1994-11-11": "Independence Day", + "1994-12-25": "Family Day", + "1995-01-01": "New Year's Day", + "1995-02-04": "Liberation Movement Day", + "1995-05-01": "International Worker's Day", + "1995-09-17": "National Heroes' Day", + "1995-11-02": "All Souls' Day", + "1995-11-11": "Independence Day", + "1995-12-25": "Family Day", + "1996-01-01": "New Year's Day", + "1996-02-04": "Liberation Movement Day", + "1996-05-01": "International Worker's Day", + "1996-09-17": "National Heroes' Day", + "1996-11-02": "All Souls' Day", + "1996-11-11": "National Independence Day", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-01-04": "Martyrs of Colonial Repression Day", + "1997-02-04": "Liberation Movement Day", + "1997-02-11": "Carnival Day", + "1997-03-08": "International Women's Day", + "1997-03-28": "Good Friday", + "1997-05-01": "International Worker's Day", + "1997-06-01": "International Children's Day", + "1997-06-02": "Day off for International Children's Day", + "1997-09-17": "National Heroes' Day", + "1997-11-02": "All Souls' Day", + "1997-11-03": "Day off for All Souls' Day", + "1997-11-11": "National Independence Day", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-01-04": "Martyrs of Colonial Repression Day", + "1998-01-05": "Day off for Martyrs of Colonial Repression Day", + "1998-02-04": "Liberation Movement Day", + "1998-02-24": "Carnival Day", + "1998-03-08": "International Women's Day", + "1998-03-09": "Day off for International Women's Day", + "1998-04-10": "Good Friday", + "1998-05-01": "International Worker's Day", + "1998-06-01": "International Children's Day", + "1998-09-17": "National Heroes' Day", + "1998-11-02": "All Souls' Day", + "1998-11-11": "National Independence Day", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-01-04": "Martyrs of Colonial Repression Day", + "1999-02-04": "Liberation Movement Day", + "1999-02-16": "Carnival Day", + "1999-03-08": "International Women's Day", + "1999-04-02": "Good Friday", + "1999-05-01": "International Worker's Day", + "1999-06-01": "International Children's Day", + "1999-09-17": "National Heroes' Day", + "1999-11-02": "All Souls' Day", + "1999-11-11": "National Independence Day", + "1999-12-25": "Christmas Day", + "2000-01-01": "New Year's Day", + "2000-01-04": "Martyrs of Colonial Repression Day", + "2000-02-04": "Liberation Movement Day", + "2000-03-07": "Carnival Day", + "2000-03-08": "International Women's Day", + "2000-04-21": "Good Friday", + "2000-05-01": "International Worker's Day", + "2000-06-01": "International Children's Day", + "2000-09-17": "National Heroes' Day", + "2000-09-18": "Day off for National Heroes' Day", + "2000-11-02": "All Souls' Day", + "2000-11-11": "National Independence Day", + "2000-12-25": "Christmas Day", + "2001-01-01": "New Year's Day", + "2001-01-04": "Martyrs of Colonial Repression Day", + "2001-02-04": "Liberation Movement Day", + "2001-02-05": "Day off for Liberation Movement Day", + "2001-02-27": "Carnival Day", + "2001-03-08": "International Women's Day", + "2001-04-13": "Good Friday", + "2001-05-01": "International Worker's Day", + "2001-05-25": "Africa Day", + "2001-06-01": "International Children's Day", + "2001-09-17": "National Heroes' Day", + "2001-11-02": "All Souls' Day", + "2001-11-11": "National Independence Day", + "2001-11-12": "Day off for National Independence Day", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-01-04": "Martyrs of Colonial Repression Day", + "2002-02-04": "Liberation Movement Day", + "2002-02-12": "Carnival Day", + "2002-03-08": "International Women's Day", + "2002-03-29": "Good Friday", + "2002-05-01": "International Worker's Day", + "2002-05-25": "Africa Day", + "2002-06-01": "International Children's Day", + "2002-09-17": "National Heroes' Day", + "2002-11-02": "All Souls' Day", + "2002-11-11": "National Independence Day", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-01-04": "Martyrs of Colonial Repression Day", + "2003-02-04": "Liberation Movement Day", + "2003-03-04": "Carnival Day", + "2003-03-08": "International Women's Day", + "2003-04-04": "Peace and National Reconciliation Day", + "2003-04-18": "Good Friday", + "2003-05-01": "International Worker's Day", + "2003-05-25": "Africa Day", + "2003-05-26": "Day off for Africa Day", + "2003-06-01": "International Children's Day", + "2003-06-02": "Day off for International Children's Day", + "2003-09-17": "National Heroes' Day", + "2003-11-02": "All Souls' Day", + "2003-11-03": "Day off for All Souls' Day", + "2003-11-11": "National Independence Day", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-01-04": "Martyrs of Colonial Repression Day", + "2004-01-05": "Day off for Martyrs of Colonial Repression Day", + "2004-02-04": "Liberation Movement Day", + "2004-02-24": "Carnival Day", + "2004-03-08": "International Women's Day", + "2004-04-04": "Peace and National Reconciliation Day", + "2004-04-05": "Day off for Peace and National Reconciliation Day", + "2004-04-09": "Good Friday", + "2004-05-01": "International Worker's Day", + "2004-05-25": "Africa Day", + "2004-06-01": "International Children's Day", + "2004-09-17": "National Heroes' Day", + "2004-11-02": "All Souls' Day", + "2004-11-11": "National Independence Day", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-01-04": "Martyrs of Colonial Repression Day", + "2005-02-04": "Liberation Movement Day", + "2005-02-08": "Carnival Day", + "2005-03-08": "International Women's Day", + "2005-03-25": "Good Friday", + "2005-04-04": "Peace and National Reconciliation Day", + "2005-05-01": "International Worker's Day", + "2005-05-02": "Day off for International Worker's Day", + "2005-05-25": "Africa Day", + "2005-06-01": "International Children's Day", + "2005-09-17": "National Heroes' Day", + "2005-11-02": "All Souls' Day", + "2005-11-11": "National Independence Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "Day off for Christmas Day", + "2006-01-01": "New Year's Day", + "2006-01-02": "Day off for New Year's Day", + "2006-01-04": "Martyrs of Colonial Repression Day", + "2006-02-04": "Liberation Movement Day", + "2006-02-28": "Carnival Day", + "2006-03-08": "International Women's Day", + "2006-04-04": "Peace and National Reconciliation Day", + "2006-04-14": "Good Friday", + "2006-05-01": "International Worker's Day", + "2006-05-25": "Africa Day", + "2006-06-01": "International Children's Day", + "2006-09-17": "National Heroes' Day", + "2006-09-18": "Day off for National Heroes' Day", + "2006-11-02": "All Souls' Day", + "2006-11-11": "National Independence Day", + "2006-12-25": "Christmas Day", + "2007-01-01": "New Year's Day", + "2007-01-04": "Martyrs of Colonial Repression Day", + "2007-02-04": "Liberation Movement Day", + "2007-02-05": "Day off for Liberation Movement Day", + "2007-02-20": "Carnival Day", + "2007-03-08": "International Women's Day", + "2007-04-04": "Peace and National Reconciliation Day", + "2007-04-06": "Good Friday", + "2007-05-01": "International Worker's Day", + "2007-05-25": "Africa Day", + "2007-06-01": "International Children's Day", + "2007-09-17": "National Heroes' Day", + "2007-11-02": "All Souls' Day", + "2007-11-11": "National Independence Day", + "2007-11-12": "Day off for National Independence Day", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-01-04": "Martyrs of Colonial Repression Day", + "2008-02-04": "Liberation Movement Day", + "2008-02-05": "Carnival Day", + "2008-03-08": "International Women's Day", + "2008-03-21": "Good Friday", + "2008-04-04": "Peace and National Reconciliation Day", + "2008-05-01": "International Worker's Day", + "2008-05-25": "Africa Day", + "2008-05-26": "Day off for Africa Day", + "2008-06-01": "International Children's Day", + "2008-06-02": "Day off for International Children's Day", + "2008-09-17": "National Heroes' Day", + "2008-11-02": "All Souls' Day", + "2008-11-03": "Day off for All Souls' Day", + "2008-11-11": "National Independence Day", + "2008-12-25": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-01-04": "Martyrs of Colonial Repression Day", + "2009-01-05": "Day off for Martyrs of Colonial Repression Day", + "2009-02-04": "Liberation Movement Day", + "2009-02-24": "Carnival Day", + "2009-03-08": "International Women's Day", + "2009-03-09": "Day off for International Women's Day", + "2009-04-04": "Peace and National Reconciliation Day", + "2009-04-10": "Good Friday", + "2009-05-01": "International Worker's Day", + "2009-05-25": "Africa Day", + "2009-06-01": "International Children's Day", + "2009-09-17": "National Heroes' Day", + "2009-11-02": "All Souls' Day", + "2009-11-11": "National Independence Day", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-01-04": "Martyrs of Colonial Repression Day", + "2010-02-04": "Liberation Movement Day", + "2010-02-16": "Carnival Day", + "2010-03-08": "International Women's Day", + "2010-04-02": "Good Friday", + "2010-04-04": "Peace and National Reconciliation Day", + "2010-04-05": "Day off for Peace and National Reconciliation Day", + "2010-05-01": "International Worker's Day", + "2010-05-25": "Africa Day", + "2010-06-01": "International Children's Day", + "2010-09-17": "National Heroes' Day", + "2010-11-02": "All Souls' Day", + "2010-11-11": "National Independence Day", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-01-04": "Martyrs of Colonial Repression Day", + "2011-02-04": "Liberation Movement Day", + "2011-03-08": "Carnival Day; International Women's Day", + "2011-04-04": "Peace and National Reconciliation Day", + "2011-04-22": "Good Friday", + "2011-05-01": "International Worker's Day", + "2011-05-02": "Day off for International Worker's Day", + "2011-09-17": "National Heroes' Day", + "2011-11-02": "All Souls' Day", + "2011-11-11": "National Independence Day", + "2011-12-25": "Christmas and Family Day", + "2012-01-01": "New Year's Day", + "2012-02-04": "Liberation Movement Day", + "2012-02-21": "Carnival Day", + "2012-03-08": "International Women's Day", + "2012-04-04": "Peace and National Reconciliation Day", + "2012-04-06": "Good Friday", + "2012-05-01": "International Worker's Day", + "2012-09-17": "National Heroes' Day", + "2012-11-02": "All Souls' Day", + "2012-11-11": "National Independence Day", + "2012-11-12": "Day off for National Independence Day", + "2012-12-25": "Christmas and Family Day", + "2013-01-01": "New Year's Day", + "2013-02-04": "Liberation Movement Day", + "2013-02-12": "Carnival Day", + "2013-03-08": "International Women's Day", + "2013-03-29": "Good Friday", + "2013-04-04": "Peace and National Reconciliation Day", + "2013-05-01": "International Worker's Day", + "2013-09-17": "National Heroes' Day", + "2013-11-02": "All Souls' Day", + "2013-11-11": "National Independence Day", + "2013-12-25": "Christmas and Family Day", + "2014-01-01": "New Year's Day", + "2014-02-04": "Liberation Movement Day", + "2014-03-04": "Carnival Day", + "2014-03-08": "International Women's Day", + "2014-04-04": "Peace and National Reconciliation Day", + "2014-04-18": "Good Friday", + "2014-05-01": "International Worker's Day", + "2014-09-17": "National Heroes' Day", + "2014-11-02": "All Souls' Day", + "2014-11-11": "National Independence Day", + "2014-12-25": "Christmas and Family Day", + "2015-01-01": "New Year's Day", + "2015-02-04": "Liberation Movement Day", + "2015-02-17": "Carnival Day", + "2015-03-08": "International Women's Day", + "2015-03-09": "Day off for International Women's Day", + "2015-04-03": "Good Friday", + "2015-04-04": "Peace and National Reconciliation Day", + "2015-05-01": "International Worker's Day", + "2015-09-17": "National Heroes' Day", + "2015-11-02": "All Souls' Day", + "2015-11-11": "National Independence Day", + "2015-12-25": "Christmas and Family Day", + "2016-01-01": "New Year's Day", + "2016-02-04": "Liberation Movement Day", + "2016-02-09": "Carnival Day", + "2016-03-08": "International Women's Day", + "2016-03-25": "Good Friday", + "2016-04-04": "Peace and National Reconciliation Day", + "2016-05-01": "International Worker's Day", + "2016-05-02": "Day off for International Worker's Day", + "2016-09-17": "National Heroes' Day", + "2016-11-02": "All Souls' Day", + "2016-11-11": "National Independence Day", + "2016-12-25": "Christmas and Family Day", + "2017-01-01": "New Year's Day", + "2017-02-04": "Liberation Movement Day", + "2017-02-28": "Carnival Day", + "2017-03-08": "International Women's Day", + "2017-04-04": "Peace and National Reconciliation Day", + "2017-04-14": "Good Friday", + "2017-05-01": "International Worker's Day", + "2017-08-23": "General Election Day", + "2017-09-17": "National Heroes' Day", + "2017-09-18": "Day off for National Heroes' Day", + "2017-11-02": "All Souls' Day", + "2017-11-11": "National Independence Day", + "2017-12-25": "Christmas and Family Day", + "2018-01-01": "New Year's Day", + "2018-02-04": "Liberation Movement Day", + "2018-02-05": "Day off for Liberation Movement Day", + "2018-02-13": "Carnival Day", + "2018-03-08": "International Women's Day", + "2018-03-30": "Good Friday", + "2018-04-04": "Peace and National Reconciliation Day", + "2018-05-01": "International Worker's Day", + "2018-09-17": "National Heroes' Day", + "2018-11-02": "All Souls' Day", + "2018-11-11": "National Independence Day", + "2018-12-24": "Day off for Christmas and Family Day", + "2018-12-25": "Christmas and Family Day", + "2018-12-31": "Day off for New Year's Day", + "2019-01-01": "New Year's Day", + "2019-02-04": "Liberation Movement Day", + "2019-03-04": "Day off for Carnival Day", + "2019-03-05": "Carnival Day", + "2019-03-08": "International Women's Day", + "2019-03-23": "Southern Africa Liberation Day", + "2019-04-04": "Peace and National Reconciliation Day", + "2019-04-05": "Day off for Peace and National Reconciliation Day", + "2019-04-19": "Good Friday", + "2019-05-01": "International Worker's Day", + "2019-09-16": "Day off for National Heroes' Day", + "2019-09-17": "National Heroes' Day", + "2019-11-02": "All Souls' Day", + "2019-11-11": "National Independence Day", + "2019-12-25": "Christmas and Family Day", + "2020-01-01": "New Year's Day", + "2020-02-03": "Day off for Liberation Movement Day", + "2020-02-04": "Liberation Movement Day", + "2020-02-24": "Day off for Carnival Day", + "2020-02-25": "Carnival Day", + "2020-03-08": "International Women's Day", + "2020-03-23": "Southern Africa Liberation Day", + "2020-04-04": "Peace and National Reconciliation Day", + "2020-04-10": "Good Friday", + "2020-05-01": "International Worker's Day", + "2020-09-17": "National Heroes' Day", + "2020-09-18": "Day off for National Heroes' Day", + "2020-11-02": "All Souls' Day", + "2020-11-11": "National Independence Day", + "2020-12-25": "Christmas and Family Day", + "2021-01-01": "New Year's Day", + "2021-02-04": "Liberation Movement Day", + "2021-02-05": "Day off for Liberation Movement Day", + "2021-02-15": "Day off for Carnival Day", + "2021-02-16": "Carnival Day", + "2021-03-08": "International Women's Day", + "2021-03-22": "Day off for Southern Africa Liberation Day", + "2021-03-23": "Southern Africa Liberation Day", + "2021-04-02": "Good Friday", + "2021-04-04": "Peace and National Reconciliation Day", + "2021-05-01": "International Worker's Day", + "2021-09-17": "National Heroes' Day", + "2021-11-01": "Day off for All Souls' Day", + "2021-11-02": "All Souls' Day", + "2021-11-11": "National Independence Day", + "2021-11-12": "Day off for National Independence Day", + "2021-12-25": "Christmas and Family Day", + "2022-01-01": "New Year's Day", + "2022-02-04": "Liberation Movement Day", + "2022-02-28": "Day off for Carnival Day", + "2022-03-01": "Carnival Day", + "2022-03-07": "Day off for International Women's Day", + "2022-03-08": "International Women's Day", + "2022-03-23": "Southern Africa Liberation Day", + "2022-04-04": "Peace and National Reconciliation Day", + "2022-04-15": "Good Friday", + "2022-05-01": "International Worker's Day", + "2022-09-17": "National Heroes' Day", + "2022-11-02": "All Souls' Day", + "2022-11-11": "National Independence Day", + "2022-12-25": "Christmas and Family Day", + "2023-01-01": "New Year's Day", + "2023-02-04": "Liberation Movement Day", + "2023-02-20": "Day off for Carnival Day", + "2023-02-21": "Carnival Day", + "2023-03-08": "International Women's Day", + "2023-03-23": "Southern Africa Liberation Day", + "2023-03-24": "Day off for Southern Africa Liberation Day", + "2023-04-03": "Day off for Peace and National Reconciliation Day", + "2023-04-04": "Peace and National Reconciliation Day", + "2023-04-07": "Good Friday", + "2023-05-01": "International Worker's Day", + "2023-09-17": "National Heroes' Day", + "2023-11-02": "All Souls' Day", + "2023-11-03": "Day off for All Souls' Day", + "2023-11-11": "National Independence Day", + "2023-12-25": "Christmas and Family Day", + "2024-01-01": "New Year's Day", + "2024-02-04": "Liberation Movement Day", + "2024-02-12": "Day off for Carnival Day", + "2024-02-13": "Carnival Day", + "2024-03-08": "International Women's Day", + "2024-03-23": "Southern Africa Liberation Day", + "2024-03-29": "Good Friday", + "2024-04-04": "Peace and National Reconciliation Day", + "2024-04-05": "Day off for Peace and National Reconciliation Day", + "2024-05-01": "International Worker's Day", + "2024-09-16": "Day off for National Heroes' Day", + "2024-09-17": "National Heroes' Day", + "2024-11-02": "All Souls' Day", + "2024-11-11": "National Independence Day", + "2024-12-25": "Christmas and Family Day", + "2025-01-01": "New Year's Day", + "2025-02-03": "Day off for Liberation Movement Day", + "2025-02-04": "Liberation Movement Day", + "2025-03-03": "Day off for Carnival Day", + "2025-03-04": "Carnival Day", + "2025-03-08": "International Women's Day", + "2025-03-23": "Southern Africa Liberation Day", + "2025-04-04": "Peace and National Reconciliation Day", + "2025-04-18": "Good Friday", + "2025-05-01": "International Worker's Day", + "2025-05-02": "Day off for International Worker's Day", + "2025-09-17": "National Heroes' Day", + "2025-11-02": "All Souls' Day", + "2025-11-10": "Day off for National Independence Day", + "2025-11-11": "National Independence Day", + "2025-12-25": "Christmas and Family Day", + "2025-12-26": "Day off for Christmas and Family Day", + "2026-01-01": "New Year's Day", + "2026-01-02": "Day off for New Year's Day", + "2026-02-04": "Liberation Movement Day", + "2026-02-16": "Day off for Carnival Day", + "2026-02-17": "Carnival Day", + "2026-03-08": "International Women's Day", + "2026-03-23": "Southern Africa Liberation Day", + "2026-04-03": "Good Friday", + "2026-04-04": "Peace and National Reconciliation Day", + "2026-05-01": "International Worker's Day", + "2026-09-17": "National Heroes' Day", + "2026-09-18": "Day off for National Heroes' Day", + "2026-11-02": "All Souls' Day", + "2026-11-11": "National Independence Day", + "2026-12-25": "Christmas and Family Day", + "2027-01-01": "New Year's Day", + "2027-02-04": "Liberation Movement Day", + "2027-02-05": "Day off for Liberation Movement Day", + "2027-02-08": "Day off for Carnival Day", + "2027-02-09": "Carnival Day", + "2027-03-08": "International Women's Day", + "2027-03-22": "Day off for Southern Africa Liberation Day", + "2027-03-23": "Southern Africa Liberation Day", + "2027-03-26": "Good Friday", + "2027-04-04": "Peace and National Reconciliation Day", + "2027-05-01": "International Worker's Day", + "2027-09-17": "National Heroes' Day", + "2027-11-01": "Day off for All Souls' Day", + "2027-11-02": "All Souls' Day", + "2027-11-11": "National Independence Day", + "2027-11-12": "Day off for National Independence Day", + "2027-12-25": "Christmas and Family Day", + "2028-01-01": "New Year's Day", + "2028-02-04": "Liberation Movement Day", + "2028-02-28": "Day off for Carnival Day", + "2028-02-29": "Carnival Day", + "2028-03-08": "International Women's Day", + "2028-03-23": "Southern Africa Liberation Day", + "2028-03-24": "Day off for Southern Africa Liberation Day", + "2028-04-03": "Day off for Peace and National Reconciliation Day", + "2028-04-04": "Peace and National Reconciliation Day", + "2028-04-14": "Good Friday", + "2028-05-01": "International Worker's Day", + "2028-09-17": "National Heroes' Day", + "2028-11-02": "All Souls' Day", + "2028-11-03": "Day off for All Souls' Day", + "2028-11-11": "National Independence Day", + "2028-12-25": "Christmas and Family Day", + "2029-01-01": "New Year's Day", + "2029-02-04": "Liberation Movement Day", + "2029-02-12": "Day off for Carnival Day", + "2029-02-13": "Carnival Day", + "2029-03-08": "International Women's Day", + "2029-03-09": "Day off for International Women's Day", + "2029-03-23": "Southern Africa Liberation Day", + "2029-03-30": "Good Friday", + "2029-04-04": "Peace and National Reconciliation Day", + "2029-04-30": "Day off for International Worker's Day", + "2029-05-01": "International Worker's Day", + "2029-09-17": "National Heroes' Day", + "2029-11-02": "All Souls' Day", + "2029-11-11": "National Independence Day", + "2029-12-24": "Day off for Christmas and Family Day", + "2029-12-25": "Christmas and Family Day", + "2029-12-31": "Day off for New Year's Day", + "2030-01-01": "New Year's Day", + "2030-02-04": "Liberation Movement Day", + "2030-03-04": "Day off for Carnival Day", + "2030-03-05": "Carnival Day", + "2030-03-08": "International Women's Day", + "2030-03-23": "Southern Africa Liberation Day", + "2030-04-04": "Peace and National Reconciliation Day", + "2030-04-05": "Day off for Peace and National Reconciliation Day", + "2030-04-19": "Good Friday", + "2030-05-01": "International Worker's Day", + "2030-09-16": "Day off for National Heroes' Day", + "2030-09-17": "National Heroes' Day", + "2030-11-02": "All Souls' Day", + "2030-11-11": "National Independence Day", + "2030-12-25": "Christmas and Family Day", + "2031-01-01": "New Year's Day", + "2031-02-03": "Day off for Liberation Movement Day", + "2031-02-04": "Liberation Movement Day", + "2031-02-24": "Day off for Carnival Day", + "2031-02-25": "Carnival Day", + "2031-03-08": "International Women's Day", + "2031-03-23": "Southern Africa Liberation Day", + "2031-04-04": "Peace and National Reconciliation Day", + "2031-04-11": "Good Friday", + "2031-05-01": "International Worker's Day", + "2031-05-02": "Day off for International Worker's Day", + "2031-09-17": "National Heroes' Day", + "2031-11-02": "All Souls' Day", + "2031-11-10": "Day off for National Independence Day", + "2031-11-11": "National Independence Day", + "2031-12-25": "Christmas and Family Day", + "2031-12-26": "Day off for Christmas and Family Day", + "2032-01-01": "New Year's Day", + "2032-01-02": "Day off for New Year's Day", + "2032-02-04": "Liberation Movement Day", + "2032-02-09": "Day off for Carnival Day", + "2032-02-10": "Carnival Day", + "2032-03-08": "International Women's Day", + "2032-03-22": "Day off for Southern Africa Liberation Day", + "2032-03-23": "Southern Africa Liberation Day", + "2032-03-26": "Good Friday", + "2032-04-04": "Peace and National Reconciliation Day", + "2032-05-01": "International Worker's Day", + "2032-09-17": "National Heroes' Day", + "2032-11-01": "Day off for All Souls' Day", + "2032-11-02": "All Souls' Day", + "2032-11-11": "National Independence Day", + "2032-11-12": "Day off for National Independence Day", + "2032-12-25": "Christmas and Family Day", + "2033-01-01": "New Year's Day", + "2033-02-04": "Liberation Movement Day", + "2033-02-28": "Day off for Carnival Day", + "2033-03-01": "Carnival Day", + "2033-03-07": "Day off for International Women's Day", + "2033-03-08": "International Women's Day", + "2033-03-23": "Southern Africa Liberation Day", + "2033-04-04": "Peace and National Reconciliation Day", + "2033-04-15": "Good Friday", + "2033-05-01": "International Worker's Day", + "2033-09-17": "National Heroes' Day", + "2033-11-02": "All Souls' Day", + "2033-11-11": "National Independence Day", + "2033-12-25": "Christmas and Family Day", + "2034-01-01": "New Year's Day", + "2034-02-04": "Liberation Movement Day", + "2034-02-20": "Day off for Carnival Day", + "2034-02-21": "Carnival Day", + "2034-03-08": "International Women's Day", + "2034-03-23": "Southern Africa Liberation Day", + "2034-03-24": "Day off for Southern Africa Liberation Day", + "2034-04-03": "Day off for Peace and National Reconciliation Day", + "2034-04-04": "Peace and National Reconciliation Day", + "2034-04-07": "Good Friday", + "2034-05-01": "International Worker's Day", + "2034-09-17": "National Heroes' Day", + "2034-11-02": "All Souls' Day", + "2034-11-03": "Day off for All Souls' Day", + "2034-11-11": "National Independence Day", + "2034-12-25": "Christmas and Family Day", + "2035-01-01": "New Year's Day", + "2035-02-04": "Liberation Movement Day", + "2035-02-05": "Day off for Carnival Day", + "2035-02-06": "Carnival Day", + "2035-03-08": "International Women's Day", + "2035-03-09": "Day off for International Women's Day", + "2035-03-23": "Good Friday; Southern Africa Liberation Day", + "2035-04-04": "Peace and National Reconciliation Day", + "2035-04-30": "Day off for International Worker's Day", + "2035-05-01": "International Worker's Day", + "2035-09-17": "National Heroes' Day", + "2035-11-02": "All Souls' Day", + "2035-11-11": "National Independence Day", + "2035-12-24": "Day off for Christmas and Family Day", + "2035-12-25": "Christmas and Family Day", + "2035-12-31": "Day off for New Year's Day", + "2036-01-01": "New Year's Day", + "2036-02-04": "Liberation Movement Day", + "2036-02-25": "Day off for Carnival Day", + "2036-02-26": "Carnival Day", + "2036-03-08": "International Women's Day", + "2036-03-23": "Southern Africa Liberation Day", + "2036-04-04": "Peace and National Reconciliation Day", + "2036-04-11": "Good Friday", + "2036-05-01": "International Worker's Day", + "2036-05-02": "Day off for International Worker's Day", + "2036-09-17": "National Heroes' Day", + "2036-11-02": "All Souls' Day", + "2036-11-10": "Day off for National Independence Day", + "2036-11-11": "National Independence Day", + "2036-12-25": "Christmas and Family Day", + "2036-12-26": "Day off for Christmas and Family Day", + "2037-01-01": "New Year's Day", + "2037-01-02": "Day off for New Year's Day", + "2037-02-04": "Liberation Movement Day", + "2037-02-16": "Day off for Carnival Day", + "2037-02-17": "Carnival Day", + "2037-03-08": "International Women's Day", + "2037-03-23": "Southern Africa Liberation Day", + "2037-04-03": "Good Friday", + "2037-04-04": "Peace and National Reconciliation Day", + "2037-05-01": "International Worker's Day", + "2037-09-17": "National Heroes' Day", + "2037-09-18": "Day off for National Heroes' Day", + "2037-11-02": "All Souls' Day", + "2037-11-11": "National Independence Day", + "2037-12-25": "Christmas and Family Day", + "2038-01-01": "New Year's Day", + "2038-02-04": "Liberation Movement Day", + "2038-02-05": "Day off for Liberation Movement Day", + "2038-03-08": "Day off for Carnival Day; International Women's Day", + "2038-03-09": "Carnival Day", + "2038-03-22": "Day off for Southern Africa Liberation Day", + "2038-03-23": "Southern Africa Liberation Day", + "2038-04-04": "Peace and National Reconciliation Day", + "2038-04-23": "Good Friday", + "2038-05-01": "International Worker's Day", + "2038-09-17": "National Heroes' Day", + "2038-11-01": "Day off for All Souls' Day", + "2038-11-02": "All Souls' Day", + "2038-11-11": "National Independence Day", + "2038-11-12": "Day off for National Independence Day", + "2038-12-25": "Christmas and Family Day", + "2039-01-01": "New Year's Day", + "2039-02-04": "Liberation Movement Day", + "2039-02-21": "Day off for Carnival Day", + "2039-02-22": "Carnival Day", + "2039-03-07": "Day off for International Women's Day", + "2039-03-08": "International Women's Day", + "2039-03-23": "Southern Africa Liberation Day", + "2039-04-04": "Peace and National Reconciliation Day", + "2039-04-08": "Good Friday", + "2039-05-01": "International Worker's Day", + "2039-09-17": "National Heroes' Day", + "2039-11-02": "All Souls' Day", + "2039-11-11": "National Independence Day", + "2039-12-25": "Christmas and Family Day", + "2040-01-01": "New Year's Day", + "2040-02-04": "Liberation Movement Day", + "2040-02-13": "Day off for Carnival Day", + "2040-02-14": "Carnival Day", + "2040-03-08": "International Women's Day", + "2040-03-09": "Day off for International Women's Day", + "2040-03-23": "Southern Africa Liberation Day", + "2040-03-30": "Good Friday", + "2040-04-04": "Peace and National Reconciliation Day", + "2040-04-30": "Day off for International Worker's Day", + "2040-05-01": "International Worker's Day", + "2040-09-17": "National Heroes' Day", + "2040-11-02": "All Souls' Day", + "2040-11-11": "National Independence Day", + "2040-12-24": "Day off for Christmas and Family Day", + "2040-12-25": "Christmas and Family Day", + "2040-12-31": "Day off for New Year's Day", + "2041-01-01": "New Year's Day", + "2041-02-04": "Liberation Movement Day", + "2041-03-04": "Day off for Carnival Day", + "2041-03-05": "Carnival Day", + "2041-03-08": "International Women's Day", + "2041-03-23": "Southern Africa Liberation Day", + "2041-04-04": "Peace and National Reconciliation Day", + "2041-04-05": "Day off for Peace and National Reconciliation Day", + "2041-04-19": "Good Friday", + "2041-05-01": "International Worker's Day", + "2041-09-16": "Day off for National Heroes' Day", + "2041-09-17": "National Heroes' Day", + "2041-11-02": "All Souls' Day", + "2041-11-11": "National Independence Day", + "2041-12-25": "Christmas and Family Day", + "2042-01-01": "New Year's Day", + "2042-02-03": "Day off for Liberation Movement Day", + "2042-02-04": "Liberation Movement Day", + "2042-02-17": "Day off for Carnival Day", + "2042-02-18": "Carnival Day", + "2042-03-08": "International Women's Day", + "2042-03-23": "Southern Africa Liberation Day", + "2042-04-04": "Good Friday; Peace and National Reconciliation Day", + "2042-05-01": "International Worker's Day", + "2042-05-02": "Day off for International Worker's Day", + "2042-09-17": "National Heroes' Day", + "2042-11-02": "All Souls' Day", + "2042-11-10": "Day off for National Independence Day", + "2042-11-11": "National Independence Day", + "2042-12-25": "Christmas and Family Day", + "2042-12-26": "Day off for Christmas and Family Day", + "2043-01-01": "New Year's Day", + "2043-01-02": "Day off for New Year's Day", + "2043-02-04": "Liberation Movement Day", + "2043-02-09": "Day off for Carnival Day", + "2043-02-10": "Carnival Day", + "2043-03-08": "International Women's Day", + "2043-03-23": "Southern Africa Liberation Day", + "2043-03-27": "Good Friday", + "2043-04-04": "Peace and National Reconciliation Day", + "2043-05-01": "International Worker's Day", + "2043-09-17": "National Heroes' Day", + "2043-09-18": "Day off for National Heroes' Day", + "2043-11-02": "All Souls' Day", + "2043-11-11": "National Independence Day", + "2043-12-25": "Christmas and Family Day", + "2044-01-01": "New Year's Day", + "2044-02-04": "Liberation Movement Day", + "2044-02-05": "Day off for Liberation Movement Day", + "2044-02-29": "Day off for Carnival Day", + "2044-03-01": "Carnival Day", + "2044-03-07": "Day off for International Women's Day", + "2044-03-08": "International Women's Day", + "2044-03-23": "Southern Africa Liberation Day", + "2044-04-04": "Peace and National Reconciliation Day", + "2044-04-15": "Good Friday", + "2044-05-01": "International Worker's Day", + "2044-09-17": "National Heroes' Day", + "2044-11-02": "All Souls' Day", + "2044-11-11": "National Independence Day", + "2044-12-25": "Christmas and Family Day", + "2045-01-01": "New Year's Day", + "2045-02-04": "Liberation Movement Day", + "2045-02-20": "Day off for Carnival Day", + "2045-02-21": "Carnival Day", + "2045-03-08": "International Women's Day", + "2045-03-23": "Southern Africa Liberation Day", + "2045-03-24": "Day off for Southern Africa Liberation Day", + "2045-04-03": "Day off for Peace and National Reconciliation Day", + "2045-04-04": "Peace and National Reconciliation Day", + "2045-04-07": "Good Friday", + "2045-05-01": "International Worker's Day", + "2045-09-17": "National Heroes' Day", + "2045-11-02": "All Souls' Day", + "2045-11-03": "Day off for All Souls' Day", + "2045-11-11": "National Independence Day", + "2045-12-25": "Christmas and Family Day", + "2046-01-01": "New Year's Day", + "2046-02-04": "Liberation Movement Day", + "2046-02-05": "Day off for Carnival Day", + "2046-02-06": "Carnival Day", + "2046-03-08": "International Women's Day", + "2046-03-09": "Day off for International Women's Day", + "2046-03-23": "Good Friday; Southern Africa Liberation Day", + "2046-04-04": "Peace and National Reconciliation Day", + "2046-04-30": "Day off for International Worker's Day", + "2046-05-01": "International Worker's Day", + "2046-09-17": "National Heroes' Day", + "2046-11-02": "All Souls' Day", + "2046-11-11": "National Independence Day", + "2046-12-24": "Day off for Christmas and Family Day", + "2046-12-25": "Christmas and Family Day", + "2046-12-31": "Day off for New Year's Day", + "2047-01-01": "New Year's Day", + "2047-02-04": "Liberation Movement Day", + "2047-02-25": "Day off for Carnival Day", + "2047-02-26": "Carnival Day", + "2047-03-08": "International Women's Day", + "2047-03-23": "Southern Africa Liberation Day", + "2047-04-04": "Peace and National Reconciliation Day", + "2047-04-05": "Day off for Peace and National Reconciliation Day", + "2047-04-12": "Good Friday", + "2047-05-01": "International Worker's Day", + "2047-09-16": "Day off for National Heroes' Day", + "2047-09-17": "National Heroes' Day", + "2047-11-02": "All Souls' Day", + "2047-11-11": "National Independence Day", + "2047-12-25": "Christmas and Family Day", + "2048-01-01": "New Year's Day", + "2048-02-03": "Day off for Liberation Movement Day", + "2048-02-04": "Liberation Movement Day", + "2048-02-17": "Day off for Carnival Day", + "2048-02-18": "Carnival Day", + "2048-03-08": "International Women's Day", + "2048-03-23": "Southern Africa Liberation Day", + "2048-04-03": "Good Friday", + "2048-04-04": "Peace and National Reconciliation Day", + "2048-05-01": "International Worker's Day", + "2048-09-17": "National Heroes' Day", + "2048-09-18": "Day off for National Heroes' Day", + "2048-11-02": "All Souls' Day", + "2048-11-11": "National Independence Day", + "2048-12-25": "Christmas and Family Day", + "2049-01-01": "New Year's Day", + "2049-02-04": "Liberation Movement Day", + "2049-02-05": "Day off for Liberation Movement Day", + "2049-03-01": "Day off for Carnival Day", + "2049-03-02": "Carnival Day", + "2049-03-08": "International Women's Day", + "2049-03-22": "Day off for Southern Africa Liberation Day", + "2049-03-23": "Southern Africa Liberation Day", + "2049-04-04": "Peace and National Reconciliation Day", + "2049-04-16": "Good Friday", + "2049-05-01": "International Worker's Day", + "2049-09-17": "National Heroes' Day", + "2049-11-01": "Day off for All Souls' Day", + "2049-11-02": "All Souls' Day", + "2049-11-11": "National Independence Day", + "2049-11-12": "Day off for National Independence Day", + "2049-12-25": "Christmas and Family Day", + "2050-01-01": "New Year's Day", + "2050-02-04": "Liberation Movement Day", + "2050-02-21": "Day off for Carnival Day", + "2050-02-22": "Carnival Day", + "2050-03-07": "Day off for International Women's Day", + "2050-03-08": "International Women's Day", + "2050-03-23": "Southern Africa Liberation Day", + "2050-04-04": "Peace and National Reconciliation Day", + "2050-04-08": "Good Friday", + "2050-05-01": "International Worker's Day", + "2050-09-17": "National Heroes' Day", + "2050-11-02": "All Souls' Day", + "2050-11-11": "National Independence Day", + "2050-12-25": "Christmas and Family Day" +} diff --git a/snapshots/countries/AR.json b/snapshots/countries/AR.json new file mode 100644 index 000000000..1cd54b5b9 --- /dev/null +++ b/snapshots/countries/AR.json @@ -0,0 +1,1361 @@ +{ + "1950-01-01": "New Year's Day", + "1950-04-07": "Good Friday", + "1950-05-01": "Labor Day", + "1950-05-25": "May Revolution Day", + "1950-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1950-07-09": "Independence Day", + "1950-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1950-10-12": "Columbus day", + "1950-12-08": "Immaculate Conception", + "1950-12-25": "Christmas", + "1951-01-01": "New Year's Day", + "1951-03-23": "Good Friday", + "1951-05-01": "Labor Day", + "1951-05-25": "May Revolution Day", + "1951-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1951-07-09": "Independence Day", + "1951-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1951-10-12": "Columbus day", + "1951-12-08": "Immaculate Conception", + "1951-12-25": "Christmas", + "1952-01-01": "New Year's Day", + "1952-04-11": "Good Friday", + "1952-05-01": "Labor Day", + "1952-05-25": "May Revolution Day", + "1952-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1952-07-09": "Independence Day", + "1952-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1952-10-12": "Columbus day", + "1952-12-08": "Immaculate Conception", + "1952-12-25": "Christmas", + "1953-01-01": "New Year's Day", + "1953-04-03": "Good Friday", + "1953-05-01": "Labor Day", + "1953-05-25": "May Revolution Day", + "1953-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1953-07-09": "Independence Day", + "1953-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1953-10-12": "Columbus day", + "1953-12-08": "Immaculate Conception", + "1953-12-25": "Christmas", + "1954-01-01": "New Year's Day", + "1954-04-16": "Good Friday", + "1954-05-01": "Labor Day", + "1954-05-25": "May Revolution Day", + "1954-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1954-07-09": "Independence Day", + "1954-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1954-10-12": "Columbus day", + "1954-12-08": "Immaculate Conception", + "1954-12-25": "Christmas", + "1955-01-01": "New Year's Day", + "1955-04-08": "Good Friday", + "1955-05-01": "Labor Day", + "1955-05-25": "May Revolution Day", + "1955-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1955-07-09": "Independence Day", + "1955-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1955-10-12": "Columbus day", + "1955-12-08": "Immaculate Conception", + "1955-12-25": "Christmas", + "1956-01-01": "New Year's Day", + "1956-02-13": "Carnival", + "1956-02-14": "Carnival", + "1956-03-30": "Good Friday", + "1956-05-01": "Labor Day", + "1956-05-25": "May Revolution Day", + "1956-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1956-07-09": "Independence Day", + "1956-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1956-10-12": "Columbus day", + "1956-12-08": "Immaculate Conception", + "1956-12-25": "Christmas", + "1957-01-01": "New Year's Day", + "1957-03-04": "Carnival", + "1957-03-05": "Carnival", + "1957-04-19": "Good Friday", + "1957-05-01": "Labor Day", + "1957-05-25": "May Revolution Day", + "1957-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1957-07-09": "Independence Day", + "1957-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1957-10-12": "Columbus day", + "1957-12-08": "Immaculate Conception", + "1957-12-25": "Christmas", + "1958-01-01": "New Year's Day", + "1958-02-17": "Carnival", + "1958-02-18": "Carnival", + "1958-04-04": "Good Friday", + "1958-05-01": "Labor Day", + "1958-05-25": "May Revolution Day", + "1958-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1958-07-09": "Independence Day", + "1958-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1958-10-12": "Columbus day", + "1958-12-08": "Immaculate Conception", + "1958-12-25": "Christmas", + "1959-01-01": "New Year's Day", + "1959-02-09": "Carnival", + "1959-02-10": "Carnival", + "1959-03-27": "Good Friday", + "1959-05-01": "Labor Day", + "1959-05-25": "May Revolution Day", + "1959-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1959-07-09": "Independence Day", + "1959-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1959-10-12": "Columbus day", + "1959-12-08": "Immaculate Conception", + "1959-12-25": "Christmas", + "1960-01-01": "New Year's Day", + "1960-02-29": "Carnival", + "1960-03-01": "Carnival", + "1960-04-15": "Good Friday", + "1960-05-01": "Labor Day", + "1960-05-25": "May Revolution Day", + "1960-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1960-07-09": "Independence Day", + "1960-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1960-10-12": "Columbus day", + "1960-12-08": "Immaculate Conception", + "1960-12-25": "Christmas", + "1961-01-01": "New Year's Day", + "1961-02-13": "Carnival", + "1961-02-14": "Carnival", + "1961-03-31": "Good Friday", + "1961-05-01": "Labor Day", + "1961-05-25": "May Revolution Day", + "1961-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1961-07-09": "Independence Day", + "1961-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1961-10-12": "Columbus day", + "1961-12-08": "Immaculate Conception", + "1961-12-25": "Christmas", + "1962-01-01": "New Year's Day", + "1962-03-05": "Carnival", + "1962-03-06": "Carnival", + "1962-04-20": "Good Friday", + "1962-05-01": "Labor Day", + "1962-05-25": "May Revolution Day", + "1962-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1962-07-09": "Independence Day", + "1962-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1962-10-12": "Columbus day", + "1962-12-08": "Immaculate Conception", + "1962-12-25": "Christmas", + "1963-01-01": "New Year's Day", + "1963-02-25": "Carnival", + "1963-02-26": "Carnival", + "1963-04-12": "Good Friday", + "1963-05-01": "Labor Day", + "1963-05-25": "May Revolution Day", + "1963-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1963-07-09": "Independence Day", + "1963-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1963-10-12": "Columbus day", + "1963-12-08": "Immaculate Conception", + "1963-12-25": "Christmas", + "1964-01-01": "New Year's Day", + "1964-02-10": "Carnival", + "1964-02-11": "Carnival", + "1964-03-27": "Good Friday", + "1964-05-01": "Labor Day", + "1964-05-25": "May Revolution Day", + "1964-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1964-07-09": "Independence Day", + "1964-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1964-10-12": "Columbus day", + "1964-12-08": "Immaculate Conception", + "1964-12-25": "Christmas", + "1965-01-01": "New Year's Day", + "1965-03-01": "Carnival", + "1965-03-02": "Carnival", + "1965-04-16": "Good Friday", + "1965-05-01": "Labor Day", + "1965-05-25": "May Revolution Day", + "1965-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1965-07-09": "Independence Day", + "1965-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1965-10-12": "Columbus day", + "1965-12-08": "Immaculate Conception", + "1965-12-25": "Christmas", + "1966-01-01": "New Year's Day", + "1966-02-21": "Carnival", + "1966-02-22": "Carnival", + "1966-04-08": "Good Friday", + "1966-05-01": "Labor Day", + "1966-05-25": "May Revolution Day", + "1966-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1966-07-09": "Independence Day", + "1966-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1966-10-12": "Columbus day", + "1966-12-08": "Immaculate Conception", + "1966-12-25": "Christmas", + "1967-01-01": "New Year's Day", + "1967-02-06": "Carnival", + "1967-02-07": "Carnival", + "1967-03-24": "Good Friday", + "1967-05-01": "Labor Day", + "1967-05-25": "May Revolution Day", + "1967-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1967-07-09": "Independence Day", + "1967-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1967-10-12": "Columbus day", + "1967-12-08": "Immaculate Conception", + "1967-12-25": "Christmas", + "1968-01-01": "New Year's Day", + "1968-02-26": "Carnival", + "1968-02-27": "Carnival", + "1968-04-12": "Good Friday", + "1968-05-01": "Labor Day", + "1968-05-25": "May Revolution Day", + "1968-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1968-07-09": "Independence Day", + "1968-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1968-10-12": "Columbus day", + "1968-12-08": "Immaculate Conception", + "1968-12-25": "Christmas", + "1969-01-01": "New Year's Day", + "1969-02-17": "Carnival", + "1969-02-18": "Carnival", + "1969-04-04": "Good Friday", + "1969-05-01": "Labor Day", + "1969-05-25": "May Revolution Day", + "1969-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1969-07-09": "Independence Day", + "1969-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1969-10-12": "Columbus day", + "1969-12-08": "Immaculate Conception", + "1969-12-25": "Christmas", + "1970-01-01": "New Year's Day", + "1970-02-09": "Carnival", + "1970-02-10": "Carnival", + "1970-03-27": "Good Friday", + "1970-05-01": "Labor Day", + "1970-05-25": "May Revolution Day", + "1970-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1970-07-09": "Independence Day", + "1970-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1970-10-12": "Columbus day", + "1970-12-08": "Immaculate Conception", + "1970-12-25": "Christmas", + "1971-01-01": "New Year's Day", + "1971-02-22": "Carnival", + "1971-02-23": "Carnival", + "1971-04-09": "Good Friday", + "1971-05-01": "Labor Day", + "1971-05-25": "May Revolution Day", + "1971-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1971-07-09": "Independence Day", + "1971-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1971-10-12": "Columbus day", + "1971-12-08": "Immaculate Conception", + "1971-12-25": "Christmas", + "1972-01-01": "New Year's Day", + "1972-02-14": "Carnival", + "1972-02-15": "Carnival", + "1972-03-31": "Good Friday", + "1972-05-01": "Labor Day", + "1972-05-25": "May Revolution Day", + "1972-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1972-07-09": "Independence Day", + "1972-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1972-10-12": "Columbus day", + "1972-12-08": "Immaculate Conception", + "1972-12-25": "Christmas", + "1973-01-01": "New Year's Day", + "1973-03-05": "Carnival", + "1973-03-06": "Carnival", + "1973-04-20": "Good Friday", + "1973-05-01": "Labor Day", + "1973-05-25": "May Revolution Day", + "1973-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1973-07-09": "Independence Day", + "1973-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1973-10-12": "Columbus day", + "1973-12-08": "Immaculate Conception", + "1973-12-25": "Christmas", + "1974-01-01": "New Year's Day", + "1974-02-25": "Carnival", + "1974-02-26": "Carnival", + "1974-04-12": "Good Friday", + "1974-05-01": "Labor Day", + "1974-05-25": "May Revolution Day", + "1974-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1974-07-09": "Independence Day", + "1974-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1974-10-12": "Columbus day", + "1974-12-08": "Immaculate Conception", + "1974-12-25": "Christmas", + "1975-01-01": "New Year's Day", + "1975-02-10": "Carnival", + "1975-02-11": "Carnival", + "1975-03-28": "Good Friday", + "1975-05-01": "Labor Day", + "1975-05-25": "May Revolution Day", + "1975-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1975-07-09": "Independence Day", + "1975-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1975-10-12": "Columbus day", + "1975-12-08": "Immaculate Conception", + "1975-12-25": "Christmas", + "1976-01-01": "New Year's Day", + "1976-04-16": "Good Friday", + "1976-05-01": "Labor Day", + "1976-05-25": "May Revolution Day", + "1976-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1976-07-09": "Independence Day", + "1976-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1976-10-12": "Columbus day", + "1976-12-08": "Immaculate Conception", + "1976-12-25": "Christmas", + "1977-01-01": "New Year's Day", + "1977-04-08": "Good Friday", + "1977-05-01": "Labor Day", + "1977-05-25": "May Revolution Day", + "1977-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1977-07-09": "Independence Day", + "1977-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1977-10-12": "Columbus day", + "1977-12-08": "Immaculate Conception", + "1977-12-25": "Christmas", + "1978-01-01": "New Year's Day", + "1978-03-24": "Good Friday", + "1978-05-01": "Labor Day", + "1978-05-25": "May Revolution Day", + "1978-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1978-07-09": "Independence Day", + "1978-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1978-10-12": "Columbus day", + "1978-12-08": "Immaculate Conception", + "1978-12-25": "Christmas", + "1979-01-01": "New Year's Day", + "1979-04-13": "Good Friday", + "1979-05-01": "Labor Day", + "1979-05-25": "May Revolution Day", + "1979-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1979-07-09": "Independence Day", + "1979-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1979-10-12": "Columbus day", + "1979-12-08": "Immaculate Conception", + "1979-12-25": "Christmas", + "1980-01-01": "New Year's Day", + "1980-04-04": "Good Friday", + "1980-05-01": "Labor Day", + "1980-05-25": "May Revolution Day", + "1980-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1980-07-09": "Independence Day", + "1980-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1980-10-12": "Columbus day", + "1980-12-08": "Immaculate Conception", + "1980-12-25": "Christmas", + "1981-01-01": "New Year's Day", + "1981-04-17": "Good Friday", + "1981-05-01": "Labor Day", + "1981-05-25": "May Revolution Day", + "1981-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1981-07-09": "Independence Day", + "1981-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1981-10-12": "Columbus day", + "1981-12-08": "Immaculate Conception", + "1981-12-25": "Christmas", + "1982-01-01": "New Year's Day", + "1982-04-09": "Good Friday", + "1982-05-01": "Labor Day", + "1982-05-25": "May Revolution Day", + "1982-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1982-07-09": "Independence Day", + "1982-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1982-10-12": "Columbus day", + "1982-12-08": "Immaculate Conception", + "1982-12-25": "Christmas", + "1983-01-01": "New Year's Day", + "1983-04-01": "Good Friday", + "1983-04-02": "Day of Argentine Sovereignty over the Malvinas, Sandwich and South Atlantic Islands", + "1983-05-01": "Labor Day", + "1983-05-25": "May Revolution Day", + "1983-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1983-07-09": "Independence Day", + "1983-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1983-10-12": "Columbus day", + "1983-12-08": "Immaculate Conception", + "1983-12-25": "Christmas", + "1984-01-01": "New Year's Day", + "1984-04-20": "Good Friday", + "1984-05-01": "Labor Day", + "1984-05-25": "May Revolution Day", + "1984-06-10": "Day of Argentine Sovereignty over the Malvinas, Sandwich and South Atlantic Islands", + "1984-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1984-07-09": "Independence Day", + "1984-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1984-10-12": "Columbus day", + "1984-12-08": "Immaculate Conception", + "1984-12-25": "Christmas", + "1985-01-01": "New Year's Day", + "1985-04-05": "Good Friday", + "1985-05-01": "Labor Day", + "1985-05-25": "May Revolution Day", + "1985-06-10": "Day of Argentine Sovereignty over the Malvinas, Sandwich and South Atlantic Islands", + "1985-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1985-07-09": "Independence Day", + "1985-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1985-10-12": "Columbus day", + "1985-12-08": "Immaculate Conception", + "1985-12-25": "Christmas", + "1986-01-01": "New Year's Day", + "1986-03-28": "Good Friday", + "1986-05-01": "Labor Day", + "1986-05-25": "May Revolution Day", + "1986-06-10": "Day of Argentine Sovereignty over the Malvinas, Sandwich and South Atlantic Islands", + "1986-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1986-07-09": "Independence Day", + "1986-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1986-10-12": "Columbus day", + "1986-12-08": "Immaculate Conception", + "1986-12-25": "Christmas", + "1987-01-01": "New Year's Day", + "1987-04-17": "Good Friday", + "1987-05-01": "Labor Day", + "1987-05-25": "May Revolution Day", + "1987-06-10": "Day of Argentine Sovereignty over the Malvinas, Sandwich and South Atlantic Islands", + "1987-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1987-07-09": "Independence Day", + "1987-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1987-10-12": "Columbus day", + "1987-12-08": "Immaculate Conception", + "1987-12-25": "Christmas", + "1988-01-01": "New Year's Day", + "1988-04-01": "Good Friday", + "1988-05-01": "Labor Day", + "1988-05-25": "May Revolution Day", + "1988-06-10": "Day of Argentine Sovereignty over the Malvinas, Sandwich and South Atlantic Islands", + "1988-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1988-07-09": "Independence Day", + "1988-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1988-10-12": "Columbus day", + "1988-12-08": "Immaculate Conception", + "1988-12-25": "Christmas", + "1989-01-01": "New Year's Day", + "1989-03-24": "Good Friday", + "1989-05-01": "Labor Day", + "1989-05-25": "May Revolution Day", + "1989-06-10": "Day of Argentine Sovereignty over the Malvinas, Sandwich and South Atlantic Islands", + "1989-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1989-07-09": "Independence Day", + "1989-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1989-10-12": "Columbus day", + "1989-12-08": "Immaculate Conception", + "1989-12-25": "Christmas", + "1990-01-01": "New Year's Day", + "1990-04-13": "Good Friday", + "1990-05-01": "Labor Day", + "1990-05-25": "May Revolution Day", + "1990-06-10": "Day of Argentine Sovereignty over the Malvinas, Sandwich and South Atlantic Islands", + "1990-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1990-07-09": "Independence Day", + "1990-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1990-10-12": "Columbus day", + "1990-12-08": "Immaculate Conception", + "1990-12-25": "Christmas", + "1991-01-01": "New Year's Day", + "1991-03-29": "Good Friday", + "1991-05-01": "Labor Day", + "1991-05-25": "May Revolution Day", + "1991-06-10": "Day of Argentine Sovereignty over the Malvinas, Sandwich and South Atlantic Islands", + "1991-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1991-07-09": "Independence Day", + "1991-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1991-10-12": "Columbus day", + "1991-12-08": "Immaculate Conception", + "1991-12-25": "Christmas", + "1992-01-01": "New Year's Day", + "1992-04-17": "Good Friday", + "1992-05-01": "Labor Day", + "1992-05-25": "May Revolution Day", + "1992-06-10": "Day of Argentine Sovereignty over the Malvinas, Sandwich and South Atlantic Islands", + "1992-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1992-07-09": "Independence Day", + "1992-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1992-10-12": "Columbus day", + "1992-12-08": "Immaculate Conception", + "1992-12-25": "Christmas", + "1993-01-01": "New Year's Day", + "1993-04-02": "War Veterans Day", + "1993-04-09": "Good Friday", + "1993-05-01": "Labor Day", + "1993-05-25": "May Revolution Day", + "1993-06-10": "Day of Argentine Sovereignty over the Malvinas, Sandwich and South Atlantic Islands", + "1993-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1993-07-09": "Independence Day", + "1993-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1993-10-12": "Columbus day", + "1993-12-08": "Immaculate Conception", + "1993-12-25": "Christmas", + "1994-01-01": "New Year's Day", + "1994-04-01": "Good Friday", + "1994-04-02": "War Veterans Day", + "1994-05-01": "Labor Day", + "1994-05-25": "May Revolution Day", + "1994-06-10": "Day of Argentine Sovereignty over the Malvinas, Sandwich and South Atlantic Islands", + "1994-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "1994-07-09": "Independence Day", + "1994-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1994-10-12": "Columbus day", + "1994-12-08": "Immaculate Conception", + "1994-12-25": "Christmas", + "1995-01-01": "New Year's Day", + "1995-04-02": "War Veterans Day", + "1995-04-14": "Good Friday", + "1995-05-01": "Labor Day", + "1995-05-25": "May Revolution Day", + "1995-06-10": "Day of Argentine Sovereignty over the Malvinas, Sandwich and South Atlantic Islands", + "1995-06-19": "Pass to the Immortality of General Don Manuel Belgrano", + "1995-07-09": "Independence Day", + "1995-08-21": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1995-10-12": "Columbus day", + "1995-12-08": "Immaculate Conception", + "1995-12-25": "Christmas", + "1996-01-01": "New Year's Day", + "1996-04-02": "War Veterans Day", + "1996-04-05": "Good Friday", + "1996-05-01": "Labor Day", + "1996-05-25": "May Revolution Day", + "1996-06-10": "Day of Argentine Sovereignty over the Malvinas, Sandwich and South Atlantic Islands", + "1996-06-17": "Pass to the Immortality of General Don Manuel Belgrano", + "1996-07-09": "Independence Day", + "1996-08-19": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1996-10-12": "Columbus day", + "1996-12-08": "Immaculate Conception", + "1996-12-25": "Christmas", + "1997-01-01": "New Year's Day", + "1997-03-28": "Good Friday", + "1997-04-02": "War Veterans Day", + "1997-05-01": "Labor Day", + "1997-05-25": "May Revolution Day", + "1997-06-10": "Day of Argentine Sovereignty over the Malvinas, Sandwich and South Atlantic Islands", + "1997-06-16": "Pass to the Immortality of General Don Manuel Belgrano", + "1997-07-09": "Independence Day", + "1997-08-18": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1997-10-12": "Columbus day", + "1997-12-08": "Immaculate Conception", + "1997-12-25": "Christmas", + "1998-01-01": "New Year's Day", + "1998-04-02": "War Veterans Day", + "1998-04-10": "Good Friday", + "1998-05-01": "Labor Day", + "1998-05-25": "May Revolution Day", + "1998-06-10": "Day of Argentine Sovereignty over the Malvinas, Sandwich and South Atlantic Islands", + "1998-06-15": "Pass to the Immortality of General Don Manuel Belgrano", + "1998-07-09": "Independence Day", + "1998-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1998-10-12": "Columbus day", + "1998-12-08": "Immaculate Conception", + "1998-12-25": "Christmas", + "1999-01-01": "New Year's Day", + "1999-04-02": "Good Friday; War Veterans Day", + "1999-05-01": "Labor Day", + "1999-05-25": "May Revolution Day", + "1999-06-10": "Day of Argentine Sovereignty over the Malvinas, Sandwich and South Atlantic Islands", + "1999-06-21": "Pass to the Immortality of General Don Manuel Belgrano", + "1999-07-09": "Independence Day", + "1999-08-16": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "1999-10-12": "Columbus day", + "1999-12-08": "Immaculate Conception", + "1999-12-25": "Christmas", + "2000-01-01": "New Year's Day", + "2000-04-02": "War Veterans Day", + "2000-04-21": "Good Friday", + "2000-05-01": "Labor Day", + "2000-05-25": "May Revolution Day", + "2000-06-10": "Day of Argentine Sovereignty over the Malvinas, Sandwich and South Atlantic Islands", + "2000-06-19": "Pass to the Immortality of General Don Manuel Belgrano", + "2000-07-09": "Independence Day", + "2000-08-21": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "2000-10-12": "Columbus day", + "2000-12-08": "Immaculate Conception", + "2000-12-25": "Christmas", + "2001-01-01": "New Year's Day", + "2001-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2001-04-13": "Good Friday", + "2001-05-01": "Labor Day", + "2001-05-25": "May Revolution Day", + "2001-06-18": "Pass to the Immortality of General Don Manuel Belgrano", + "2001-07-09": "Independence Day", + "2001-08-20": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "2001-10-12": "Columbus day", + "2001-12-08": "Immaculate Conception", + "2001-12-25": "Christmas", + "2002-01-01": "New Year's Day", + "2002-03-29": "Good Friday", + "2002-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2002-05-01": "Labor Day", + "2002-05-25": "May Revolution Day", + "2002-06-17": "Pass to the Immortality of General Don Manuel Belgrano", + "2002-07-09": "Independence Day", + "2002-08-19": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "2002-10-12": "Columbus day", + "2002-12-08": "Immaculate Conception", + "2002-12-25": "Christmas", + "2003-01-01": "New Year's Day", + "2003-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2003-04-18": "Good Friday", + "2003-05-01": "Labor Day", + "2003-05-25": "May Revolution Day", + "2003-06-16": "Pass to the Immortality of General Don Manuel Belgrano", + "2003-07-09": "Independence Day", + "2003-08-18": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "2003-10-12": "Columbus day", + "2003-12-08": "Immaculate Conception", + "2003-12-25": "Christmas", + "2004-01-01": "New Year's Day", + "2004-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2004-04-09": "Good Friday", + "2004-05-01": "Labor Day", + "2004-05-25": "May Revolution Day", + "2004-06-21": "Pass to the Immortality of General Don Manuel Belgrano", + "2004-07-09": "Independence Day", + "2004-08-16": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "2004-10-12": "Columbus day", + "2004-12-08": "Immaculate Conception", + "2004-12-25": "Christmas", + "2005-01-01": "New Year's Day", + "2005-03-25": "Good Friday", + "2005-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2005-05-01": "Labor Day", + "2005-05-25": "May Revolution Day", + "2005-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2005-07-09": "Independence Day", + "2005-08-15": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "2005-10-12": "Columbus day", + "2005-12-08": "Immaculate Conception", + "2005-12-25": "Christmas", + "2006-01-01": "New Year's Day", + "2006-03-24": "Memory's National Day for the Truth and Justice", + "2006-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2006-04-14": "Good Friday", + "2006-05-01": "Labor Day", + "2006-05-25": "May Revolution Day", + "2006-06-19": "Pass to the Immortality of General Don Manuel Belgrano", + "2006-07-09": "Independence Day", + "2006-08-21": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "2006-10-12": "Columbus day", + "2006-12-08": "Immaculate Conception", + "2006-12-25": "Christmas", + "2007-01-01": "New Year's Day", + "2007-03-24": "Memory's National Day for the Truth and Justice", + "2007-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2007-04-06": "Good Friday", + "2007-05-01": "Labor Day", + "2007-05-25": "May Revolution Day", + "2007-06-18": "Pass to the Immortality of General Don Manuel Belgrano", + "2007-07-09": "Independence Day", + "2007-08-20": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "2007-10-12": "Columbus day", + "2007-12-08": "Immaculate Conception", + "2007-12-25": "Christmas", + "2008-01-01": "New Year's Day", + "2008-03-21": "Good Friday", + "2008-03-24": "Memory's National Day for the Truth and Justice", + "2008-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2008-05-01": "Labor Day", + "2008-05-25": "May Revolution Day", + "2008-06-16": "Pass to the Immortality of General Don Manuel Belgrano", + "2008-07-09": "Independence Day", + "2008-08-18": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "2008-10-12": "Columbus day", + "2008-12-08": "Immaculate Conception", + "2008-12-25": "Christmas", + "2009-01-01": "New Year's Day", + "2009-03-24": "Memory's National Day for the Truth and Justice", + "2009-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2009-04-10": "Good Friday", + "2009-05-01": "Labor Day", + "2009-05-25": "May Revolution Day", + "2009-06-15": "Pass to the Immortality of General Don Manuel Belgrano", + "2009-07-09": "Independence Day", + "2009-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "2009-10-12": "Columbus day", + "2009-12-08": "Immaculate Conception", + "2009-12-25": "Christmas", + "2010-01-01": "New Year's Day", + "2010-03-24": "Memory's National Day for the Truth and Justice", + "2010-04-02": "Good Friday; Veterans Day and the Fallen in the Malvinas War", + "2010-05-01": "Labor Day", + "2010-05-25": "May Revolution Day", + "2010-06-21": "Pass to the Immortality of General Don Manuel Belgrano", + "2010-07-09": "Independence Day", + "2010-08-16": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "2010-10-11": "Respect for Cultural Diversity Day (Observed)", + "2010-11-20": "National Sovereignty Day", + "2010-12-08": "Immaculate Conception", + "2010-12-25": "Christmas", + "2011-01-01": "New Year's Day", + "2011-03-07": "Carnival", + "2011-03-08": "Carnival", + "2011-03-24": "Memory's National Day for the Truth and Justice", + "2011-03-25": "Bridge Public Holiday", + "2011-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2011-04-22": "Good Friday", + "2011-05-01": "Labor Day", + "2011-05-25": "May Revolution Day", + "2011-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2011-07-09": "Independence Day", + "2011-08-22": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "2011-10-10": "Respect for Cultural Diversity Day (Observed)", + "2011-11-20": "National Sovereignty Day", + "2011-12-08": "Immaculate Conception", + "2011-12-09": "Bridge Public Holiday", + "2011-12-25": "Christmas", + "2012-01-01": "New Year's Day", + "2012-02-20": "Carnival", + "2012-02-21": "Carnival", + "2012-02-27": "Bicentenary of the creation and first oath of the national flag", + "2012-03-24": "Memory's National Day for the Truth and Justice", + "2012-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2012-04-06": "Good Friday", + "2012-04-30": "Bridge Public Holiday", + "2012-05-01": "Labor Day", + "2012-05-25": "May Revolution Day", + "2012-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2012-07-09": "Independence Day", + "2012-08-20": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", + "2012-09-24": "Bicentenary of the Battle of Tucum\u00e1n", + "2012-10-15": "Respect for Cultural Diversity Day (Observed)", + "2012-11-19": "National Sovereignty Day (Observed)", + "2012-12-08": "Immaculate Conception", + "2012-12-24": "Bridge Public Holiday", + "2012-12-25": "Christmas", + "2013-01-01": "New Year's Day", + "2013-01-31": "Bicentenary of the inaugural session of the National Constituent Assembly of the year 1813", + "2013-02-11": "Carnival", + "2013-02-12": "Carnival", + "2013-02-20": "Bicentenary of the Battle of Salta", + "2013-03-24": "Memory's National Day for the Truth and Justice", + "2013-03-29": "Good Friday", + "2013-04-01": "Bridge Public Holiday", + "2013-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2013-05-01": "Labor Day", + "2013-05-25": "May Revolution Day", + "2013-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2013-06-21": "Bridge Public Holiday", + "2013-07-09": "Independence Day", + "2013-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "2013-10-12": "Respect for Cultural Diversity Day", + "2013-11-18": "National Sovereignty Day (Observed)", + "2013-12-08": "Immaculate Conception", + "2013-12-25": "Christmas", + "2014-01-01": "New Year's Day", + "2014-03-03": "Carnival", + "2014-03-04": "Carnival", + "2014-03-24": "Memory's National Day for the Truth and Justice", + "2014-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2014-04-18": "Good Friday", + "2014-05-01": "Labor Day", + "2014-05-02": "Bridge Public Holiday", + "2014-05-25": "May Revolution Day", + "2014-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2014-07-09": "Independence Day", + "2014-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "2014-10-12": "Respect for Cultural Diversity Day", + "2014-11-24": "National Sovereignty Day (Observed)", + "2014-12-08": "Immaculate Conception", + "2014-12-25": "Christmas", + "2014-12-26": "Bridge Public Holiday", + "2015-01-01": "New Year's Day", + "2015-02-16": "Carnival", + "2015-02-17": "Carnival", + "2015-03-23": "Bridge Public Holiday", + "2015-03-24": "Memory's National Day for the Truth and Justice", + "2015-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2015-04-03": "Good Friday", + "2015-05-01": "Labor Day", + "2015-05-25": "May Revolution Day", + "2015-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2015-07-09": "Independence Day", + "2015-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "2015-10-12": "Respect for Cultural Diversity Day", + "2015-11-27": "National Sovereignty Day", + "2015-12-07": "Bridge Public Holiday", + "2015-12-08": "Immaculate Conception", + "2015-12-25": "Christmas", + "2016-01-01": "New Year's Day", + "2016-02-08": "Carnival", + "2016-02-09": "Carnival", + "2016-03-24": "Memory's National Day for the Truth and Justice", + "2016-03-25": "Good Friday", + "2016-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2016-05-01": "Labor Day", + "2016-05-25": "May Revolution Day", + "2016-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", + "2016-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2016-07-08": "Bridge Public Holiday", + "2016-07-09": "Independence Day", + "2016-08-15": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", + "2016-10-10": "Respect for Cultural Diversity Day (Observed)", + "2016-11-28": "National Sovereignty Day", + "2016-12-08": "Immaculate Conception", + "2016-12-09": "Bridge Public Holiday", + "2016-12-25": "Christmas", + "2017-01-01": "New Year's Day", + "2017-02-27": "Carnival", + "2017-02-28": "Carnival", + "2017-03-24": "Memory's National Day for the Truth and Justice", + "2017-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2017-04-14": "Good Friday", + "2017-05-01": "Labor Day", + "2017-05-25": "May Revolution Day", + "2017-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", + "2017-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2017-07-09": "Independence Day", + "2017-08-21": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", + "2017-10-16": "Respect for Cultural Diversity Day (Observed)", + "2017-11-20": "National Sovereignty Day", + "2017-12-08": "Immaculate Conception", + "2017-12-25": "Christmas", + "2018-01-01": "New Year's Day", + "2018-02-12": "Carnival", + "2018-02-13": "Carnival", + "2018-03-24": "Memory's National Day for the Truth and Justice", + "2018-03-30": "Good Friday", + "2018-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2018-04-30": "Bridge Public Holiday", + "2018-05-01": "Labor Day", + "2018-05-25": "May Revolution Day", + "2018-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", + "2018-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2018-07-09": "Independence Day", + "2018-08-20": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", + "2018-10-15": "Respect for Cultural Diversity Day (Observed)", + "2018-11-19": "National Sovereignty Day (Observed)", + "2018-12-08": "Immaculate Conception", + "2018-12-24": "Bridge Public Holiday", + "2018-12-25": "Christmas", + "2018-12-31": "Bridge Public Holiday", + "2019-01-01": "New Year's Day", + "2019-03-04": "Carnival", + "2019-03-05": "Carnival", + "2019-03-24": "Memory's National Day for the Truth and Justice", + "2019-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2019-04-19": "Good Friday", + "2019-05-01": "Labor Day", + "2019-05-25": "May Revolution Day", + "2019-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", + "2019-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2019-07-08": "Bridge Public Holiday", + "2019-07-09": "Independence Day", + "2019-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "2019-08-19": "Bridge Public Holiday", + "2019-10-12": "Respect for Cultural Diversity Day", + "2019-10-14": "Bridge Public Holiday", + "2019-11-18": "National Sovereignty Day (Observed)", + "2019-12-08": "Immaculate Conception", + "2019-12-25": "Christmas", + "2020-01-01": "New Year's Day", + "2020-02-24": "Carnival", + "2020-02-25": "Carnival", + "2020-03-23": "Bridge Public Holiday", + "2020-03-24": "Memory's National Day for the Truth and Justice", + "2020-03-31": "Veterans Day and the Fallen in the Malvinas War", + "2020-04-10": "Good Friday", + "2020-05-01": "Labor Day", + "2020-05-25": "May Revolution Day", + "2020-06-15": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (Observed)", + "2020-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2020-07-09": "Independence Day", + "2020-07-10": "Bridge Public Holiday", + "2020-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "2020-10-12": "Respect for Cultural Diversity Day", + "2020-11-23": "National Sovereignty Day (Observed)", + "2020-12-07": "Bridge Public Holiday", + "2020-12-08": "Immaculate Conception", + "2020-12-25": "Christmas", + "2021-01-01": "New Year's Day", + "2021-02-15": "Carnival", + "2021-02-16": "Carnival", + "2021-03-24": "Memory's National Day for the Truth and Justice", + "2021-04-02": "Good Friday; Veterans Day and the Fallen in the Malvinas War", + "2021-05-01": "Labor Day", + "2021-05-24": "Bridge Public Holiday", + "2021-05-25": "May Revolution Day", + "2021-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2021-06-21": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (Observed)", + "2021-07-09": "Independence Day", + "2021-08-16": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", + "2021-10-08": "Bridge Public Holiday", + "2021-10-11": "Respect for Cultural Diversity Day (Observed)", + "2021-11-20": "National Sovereignty Day", + "2021-11-22": "Bridge Public Holiday", + "2021-12-08": "Immaculate Conception", + "2021-12-25": "Christmas", + "2022-01-01": "New Year's Day", + "2022-02-28": "Carnival", + "2022-03-01": "Carnival", + "2022-03-24": "Memory's National Day for the Truth and Justice", + "2022-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2022-04-15": "Good Friday", + "2022-05-01": "Labor Day", + "2022-05-18": "National Census Day 2022", + "2022-05-25": "May Revolution Day", + "2022-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", + "2022-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2022-07-09": "Independence Day", + "2022-08-15": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", + "2022-10-07": "Bridge Public Holiday", + "2022-10-10": "Respect for Cultural Diversity Day (Observed)", + "2022-11-20": "National Sovereignty Day", + "2022-11-21": "Bridge Public Holiday", + "2022-12-08": "Immaculate Conception", + "2022-12-09": "Bridge Public Holiday", + "2022-12-25": "Christmas", + "2023-01-01": "New Year's Day", + "2023-02-20": "Carnival", + "2023-02-21": "Carnival", + "2023-03-24": "Memory's National Day for the Truth and Justice", + "2023-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2023-04-07": "Good Friday", + "2023-05-01": "Labor Day", + "2023-05-25": "May Revolution Day", + "2023-05-26": "Bridge Public Holiday", + "2023-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", + "2023-06-19": "Bridge Public Holiday", + "2023-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2023-07-09": "Independence Day", + "2023-08-21": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", + "2023-10-13": "Bridge Public Holiday", + "2023-10-16": "Respect for Cultural Diversity Day (Observed)", + "2023-11-20": "National Sovereignty Day", + "2023-12-08": "Immaculate Conception", + "2023-12-25": "Christmas", + "2024-01-01": "New Year's Day", + "2024-02-12": "Carnival", + "2024-02-13": "Carnival", + "2024-03-24": "Memory's National Day for the Truth and Justice", + "2024-03-29": "Good Friday", + "2024-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2024-05-01": "Labor Day", + "2024-05-25": "May Revolution Day", + "2024-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", + "2024-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2024-07-09": "Independence Day", + "2024-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "2024-10-12": "Respect for Cultural Diversity Day", + "2024-11-18": "National Sovereignty Day (Observed)", + "2024-12-08": "Immaculate Conception", + "2024-12-25": "Christmas", + "2025-01-01": "New Year's Day", + "2025-03-03": "Carnival", + "2025-03-04": "Carnival", + "2025-03-24": "Memory's National Day for the Truth and Justice", + "2025-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2025-04-18": "Good Friday", + "2025-05-01": "Labor Day", + "2025-05-25": "May Revolution Day", + "2025-06-16": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (Observed)", + "2025-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2025-07-09": "Independence Day", + "2025-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "2025-10-12": "Respect for Cultural Diversity Day", + "2025-11-24": "National Sovereignty Day (Observed)", + "2025-12-08": "Immaculate Conception", + "2025-12-25": "Christmas", + "2026-01-01": "New Year's Day", + "2026-02-16": "Carnival", + "2026-02-17": "Carnival", + "2026-03-24": "Memory's National Day for the Truth and Justice", + "2026-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2026-04-03": "Good Friday", + "2026-05-01": "Labor Day", + "2026-05-25": "May Revolution Day", + "2026-06-15": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (Observed)", + "2026-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2026-07-09": "Independence Day", + "2026-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "2026-10-12": "Respect for Cultural Diversity Day", + "2026-11-23": "National Sovereignty Day (Observed)", + "2026-12-08": "Immaculate Conception", + "2026-12-25": "Christmas", + "2027-01-01": "New Year's Day", + "2027-02-08": "Carnival", + "2027-02-09": "Carnival", + "2027-03-24": "Memory's National Day for the Truth and Justice", + "2027-03-26": "Good Friday", + "2027-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2027-05-01": "Labor Day", + "2027-05-25": "May Revolution Day", + "2027-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2027-06-21": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (Observed)", + "2027-07-09": "Independence Day", + "2027-08-16": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", + "2027-10-11": "Respect for Cultural Diversity Day (Observed)", + "2027-11-20": "National Sovereignty Day", + "2027-12-08": "Immaculate Conception", + "2027-12-25": "Christmas", + "2028-01-01": "New Year's Day", + "2028-02-28": "Carnival", + "2028-02-29": "Carnival", + "2028-03-24": "Memory's National Day for the Truth and Justice", + "2028-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2028-04-14": "Good Friday", + "2028-05-01": "Labor Day", + "2028-05-25": "May Revolution Day", + "2028-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", + "2028-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2028-07-09": "Independence Day", + "2028-08-21": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", + "2028-10-16": "Respect for Cultural Diversity Day (Observed)", + "2028-11-20": "National Sovereignty Day", + "2028-12-08": "Immaculate Conception", + "2028-12-25": "Christmas", + "2029-01-01": "New Year's Day", + "2029-02-12": "Carnival", + "2029-02-13": "Carnival", + "2029-03-24": "Memory's National Day for the Truth and Justice", + "2029-03-30": "Good Friday", + "2029-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2029-05-01": "Labor Day", + "2029-05-25": "May Revolution Day", + "2029-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", + "2029-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2029-07-09": "Independence Day", + "2029-08-20": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", + "2029-10-15": "Respect for Cultural Diversity Day (Observed)", + "2029-11-19": "National Sovereignty Day (Observed)", + "2029-12-08": "Immaculate Conception", + "2029-12-25": "Christmas", + "2030-01-01": "New Year's Day", + "2030-03-04": "Carnival", + "2030-03-05": "Carnival", + "2030-03-24": "Memory's National Day for the Truth and Justice", + "2030-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2030-04-19": "Good Friday", + "2030-05-01": "Labor Day", + "2030-05-25": "May Revolution Day", + "2030-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", + "2030-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2030-07-09": "Independence Day", + "2030-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "2030-10-12": "Respect for Cultural Diversity Day", + "2030-11-18": "National Sovereignty Day (Observed)", + "2030-12-08": "Immaculate Conception", + "2030-12-25": "Christmas", + "2031-01-01": "New Year's Day", + "2031-02-24": "Carnival", + "2031-02-25": "Carnival", + "2031-03-24": "Memory's National Day for the Truth and Justice", + "2031-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2031-04-11": "Good Friday", + "2031-05-01": "Labor Day", + "2031-05-25": "May Revolution Day", + "2031-06-16": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (Observed)", + "2031-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2031-07-09": "Independence Day", + "2031-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "2031-10-12": "Respect for Cultural Diversity Day", + "2031-11-24": "National Sovereignty Day (Observed)", + "2031-12-08": "Immaculate Conception", + "2031-12-25": "Christmas", + "2032-01-01": "New Year's Day", + "2032-02-09": "Carnival", + "2032-02-10": "Carnival", + "2032-03-24": "Memory's National Day for the Truth and Justice", + "2032-03-26": "Good Friday", + "2032-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2032-05-01": "Labor Day", + "2032-05-25": "May Revolution Day", + "2032-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2032-06-21": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (Observed)", + "2032-07-09": "Independence Day", + "2032-08-16": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", + "2032-10-11": "Respect for Cultural Diversity Day (Observed)", + "2032-11-20": "National Sovereignty Day", + "2032-12-08": "Immaculate Conception", + "2032-12-25": "Christmas", + "2033-01-01": "New Year's Day", + "2033-02-28": "Carnival", + "2033-03-01": "Carnival", + "2033-03-24": "Memory's National Day for the Truth and Justice", + "2033-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2033-04-15": "Good Friday", + "2033-05-01": "Labor Day", + "2033-05-25": "May Revolution Day", + "2033-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", + "2033-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2033-07-09": "Independence Day", + "2033-08-15": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", + "2033-10-10": "Respect for Cultural Diversity Day (Observed)", + "2033-11-20": "National Sovereignty Day", + "2033-12-08": "Immaculate Conception", + "2033-12-25": "Christmas", + "2034-01-01": "New Year's Day", + "2034-02-20": "Carnival", + "2034-02-21": "Carnival", + "2034-03-24": "Memory's National Day for the Truth and Justice", + "2034-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2034-04-07": "Good Friday", + "2034-05-01": "Labor Day", + "2034-05-25": "May Revolution Day", + "2034-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", + "2034-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2034-07-09": "Independence Day", + "2034-08-21": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", + "2034-10-16": "Respect for Cultural Diversity Day (Observed)", + "2034-11-20": "National Sovereignty Day", + "2034-12-08": "Immaculate Conception", + "2034-12-25": "Christmas", + "2035-01-01": "New Year's Day", + "2035-02-05": "Carnival", + "2035-02-06": "Carnival", + "2035-03-23": "Good Friday", + "2035-03-24": "Memory's National Day for the Truth and Justice", + "2035-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2035-05-01": "Labor Day", + "2035-05-25": "May Revolution Day", + "2035-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", + "2035-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2035-07-09": "Independence Day", + "2035-08-20": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", + "2035-10-15": "Respect for Cultural Diversity Day (Observed)", + "2035-11-19": "National Sovereignty Day (Observed)", + "2035-12-08": "Immaculate Conception", + "2035-12-25": "Christmas", + "2036-01-01": "New Year's Day", + "2036-02-25": "Carnival", + "2036-02-26": "Carnival", + "2036-03-24": "Memory's National Day for the Truth and Justice", + "2036-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2036-04-11": "Good Friday", + "2036-05-01": "Labor Day", + "2036-05-25": "May Revolution Day", + "2036-06-16": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (Observed)", + "2036-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2036-07-09": "Independence Day", + "2036-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "2036-10-12": "Respect for Cultural Diversity Day", + "2036-11-24": "National Sovereignty Day (Observed)", + "2036-12-08": "Immaculate Conception", + "2036-12-25": "Christmas", + "2037-01-01": "New Year's Day", + "2037-02-16": "Carnival", + "2037-02-17": "Carnival", + "2037-03-24": "Memory's National Day for the Truth and Justice", + "2037-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2037-04-03": "Good Friday", + "2037-05-01": "Labor Day", + "2037-05-25": "May Revolution Day", + "2037-06-15": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (Observed)", + "2037-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2037-07-09": "Independence Day", + "2037-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "2037-10-12": "Respect for Cultural Diversity Day", + "2037-11-23": "National Sovereignty Day (Observed)", + "2037-12-08": "Immaculate Conception", + "2037-12-25": "Christmas", + "2038-01-01": "New Year's Day", + "2038-03-08": "Carnival", + "2038-03-09": "Carnival", + "2038-03-24": "Memory's National Day for the Truth and Justice", + "2038-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2038-04-23": "Good Friday", + "2038-05-01": "Labor Day", + "2038-05-25": "May Revolution Day", + "2038-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2038-06-21": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (Observed)", + "2038-07-09": "Independence Day", + "2038-08-16": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", + "2038-10-11": "Respect for Cultural Diversity Day (Observed)", + "2038-11-20": "National Sovereignty Day", + "2038-12-08": "Immaculate Conception", + "2038-12-25": "Christmas", + "2039-01-01": "New Year's Day", + "2039-02-21": "Carnival", + "2039-02-22": "Carnival", + "2039-03-24": "Memory's National Day for the Truth and Justice", + "2039-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2039-04-08": "Good Friday", + "2039-05-01": "Labor Day", + "2039-05-25": "May Revolution Day", + "2039-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", + "2039-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2039-07-09": "Independence Day", + "2039-08-15": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", + "2039-10-10": "Respect for Cultural Diversity Day (Observed)", + "2039-11-20": "National Sovereignty Day", + "2039-12-08": "Immaculate Conception", + "2039-12-25": "Christmas", + "2040-01-01": "New Year's Day", + "2040-02-13": "Carnival", + "2040-02-14": "Carnival", + "2040-03-24": "Memory's National Day for the Truth and Justice", + "2040-03-30": "Good Friday", + "2040-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2040-05-01": "Labor Day", + "2040-05-25": "May Revolution Day", + "2040-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", + "2040-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2040-07-09": "Independence Day", + "2040-08-20": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", + "2040-10-15": "Respect for Cultural Diversity Day (Observed)", + "2040-11-19": "National Sovereignty Day (Observed)", + "2040-12-08": "Immaculate Conception", + "2040-12-25": "Christmas", + "2041-01-01": "New Year's Day", + "2041-03-04": "Carnival", + "2041-03-05": "Carnival", + "2041-03-24": "Memory's National Day for the Truth and Justice", + "2041-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2041-04-19": "Good Friday", + "2041-05-01": "Labor Day", + "2041-05-25": "May Revolution Day", + "2041-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", + "2041-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2041-07-09": "Independence Day", + "2041-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "2041-10-12": "Respect for Cultural Diversity Day", + "2041-11-18": "National Sovereignty Day (Observed)", + "2041-12-08": "Immaculate Conception", + "2041-12-25": "Christmas", + "2042-01-01": "New Year's Day", + "2042-02-17": "Carnival", + "2042-02-18": "Carnival", + "2042-03-24": "Memory's National Day for the Truth and Justice", + "2042-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2042-04-04": "Good Friday", + "2042-05-01": "Labor Day", + "2042-05-25": "May Revolution Day", + "2042-06-16": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (Observed)", + "2042-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2042-07-09": "Independence Day", + "2042-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "2042-10-12": "Respect for Cultural Diversity Day", + "2042-11-24": "National Sovereignty Day (Observed)", + "2042-12-08": "Immaculate Conception", + "2042-12-25": "Christmas", + "2043-01-01": "New Year's Day", + "2043-02-09": "Carnival", + "2043-02-10": "Carnival", + "2043-03-24": "Memory's National Day for the Truth and Justice", + "2043-03-27": "Good Friday", + "2043-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2043-05-01": "Labor Day", + "2043-05-25": "May Revolution Day", + "2043-06-15": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (Observed)", + "2043-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2043-07-09": "Independence Day", + "2043-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "2043-10-12": "Respect for Cultural Diversity Day", + "2043-11-23": "National Sovereignty Day (Observed)", + "2043-12-08": "Immaculate Conception", + "2043-12-25": "Christmas", + "2044-01-01": "New Year's Day", + "2044-02-29": "Carnival", + "2044-03-01": "Carnival", + "2044-03-24": "Memory's National Day for the Truth and Justice", + "2044-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2044-04-15": "Good Friday", + "2044-05-01": "Labor Day", + "2044-05-25": "May Revolution Day", + "2044-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", + "2044-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2044-07-09": "Independence Day", + "2044-08-15": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", + "2044-10-10": "Respect for Cultural Diversity Day (Observed)", + "2044-11-20": "National Sovereignty Day", + "2044-12-08": "Immaculate Conception", + "2044-12-25": "Christmas", + "2045-01-01": "New Year's Day", + "2045-02-20": "Carnival", + "2045-02-21": "Carnival", + "2045-03-24": "Memory's National Day for the Truth and Justice", + "2045-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2045-04-07": "Good Friday", + "2045-05-01": "Labor Day", + "2045-05-25": "May Revolution Day", + "2045-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", + "2045-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2045-07-09": "Independence Day", + "2045-08-21": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", + "2045-10-16": "Respect for Cultural Diversity Day (Observed)", + "2045-11-20": "National Sovereignty Day", + "2045-12-08": "Immaculate Conception", + "2045-12-25": "Christmas", + "2046-01-01": "New Year's Day", + "2046-02-05": "Carnival", + "2046-02-06": "Carnival", + "2046-03-23": "Good Friday", + "2046-03-24": "Memory's National Day for the Truth and Justice", + "2046-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2046-05-01": "Labor Day", + "2046-05-25": "May Revolution Day", + "2046-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", + "2046-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2046-07-09": "Independence Day", + "2046-08-20": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", + "2046-10-15": "Respect for Cultural Diversity Day (Observed)", + "2046-11-19": "National Sovereignty Day (Observed)", + "2046-12-08": "Immaculate Conception", + "2046-12-25": "Christmas", + "2047-01-01": "New Year's Day", + "2047-02-25": "Carnival", + "2047-02-26": "Carnival", + "2047-03-24": "Memory's National Day for the Truth and Justice", + "2047-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2047-04-12": "Good Friday", + "2047-05-01": "Labor Day", + "2047-05-25": "May Revolution Day", + "2047-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", + "2047-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2047-07-09": "Independence Day", + "2047-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "2047-10-12": "Respect for Cultural Diversity Day", + "2047-11-18": "National Sovereignty Day (Observed)", + "2047-12-08": "Immaculate Conception", + "2047-12-25": "Christmas", + "2048-01-01": "New Year's Day", + "2048-02-17": "Carnival", + "2048-02-18": "Carnival", + "2048-03-24": "Memory's National Day for the Truth and Justice", + "2048-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2048-04-03": "Good Friday", + "2048-05-01": "Labor Day", + "2048-05-25": "May Revolution Day", + "2048-06-15": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (Observed)", + "2048-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2048-07-09": "Independence Day", + "2048-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "2048-10-12": "Respect for Cultural Diversity Day", + "2048-11-23": "National Sovereignty Day (Observed)", + "2048-12-08": "Immaculate Conception", + "2048-12-25": "Christmas", + "2049-01-01": "New Year's Day", + "2049-03-01": "Carnival", + "2049-03-02": "Carnival", + "2049-03-24": "Memory's National Day for the Truth and Justice", + "2049-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2049-04-16": "Good Friday", + "2049-05-01": "Labor Day", + "2049-05-25": "May Revolution Day", + "2049-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2049-06-21": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (Observed)", + "2049-07-09": "Independence Day", + "2049-08-16": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", + "2049-10-11": "Respect for Cultural Diversity Day (Observed)", + "2049-11-20": "National Sovereignty Day", + "2049-12-08": "Immaculate Conception", + "2049-12-25": "Christmas", + "2050-01-01": "New Year's Day", + "2050-02-21": "Carnival", + "2050-02-22": "Carnival", + "2050-03-24": "Memory's National Day for the Truth and Justice", + "2050-04-02": "Veterans Day and the Fallen in the Malvinas War", + "2050-04-08": "Good Friday", + "2050-05-01": "Labor Day", + "2050-05-25": "May Revolution Day", + "2050-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", + "2050-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2050-07-09": "Independence Day", + "2050-08-15": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", + "2050-10-10": "Respect for Cultural Diversity Day (Observed)", + "2050-11-20": "National Sovereignty Day", + "2050-12-08": "Immaculate Conception", + "2050-12-25": "Christmas" +} diff --git a/snapshots/countries/AS.json b/snapshots/countries/AS.json new file mode 100644 index 000000000..22d42496e --- /dev/null +++ b/snapshots/countries/AS.json @@ -0,0 +1,1260 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-02": "New Year's Day (Observed)", + "1950-02-22": "Washington's Birthday", + "1950-05-30": "Memorial Day", + "1950-07-04": "Independence Day", + "1950-09-04": "Labor Day", + "1950-10-12": "Columbus Day", + "1950-11-10": "Armistice Day (Observed)", + "1950-11-11": "Armistice Day", + "1950-11-23": "Thanksgiving", + "1950-12-22": "Christmas Eve (Observed)", + "1950-12-24": "Christmas Eve", + "1950-12-25": "Christmas Day", + "1951-01-01": "New Year's Day", + "1951-02-22": "Washington's Birthday", + "1951-05-30": "Memorial Day", + "1951-07-04": "Independence Day", + "1951-09-03": "Labor Day", + "1951-10-12": "Columbus Day", + "1951-11-11": "Armistice Day", + "1951-11-12": "Armistice Day (Observed)", + "1951-11-22": "Thanksgiving", + "1951-12-24": "Christmas Eve", + "1951-12-25": "Christmas Day", + "1952-01-01": "New Year's Day", + "1952-02-22": "Washington's Birthday", + "1952-05-30": "Memorial Day", + "1952-07-04": "Independence Day", + "1952-09-01": "Labor Day", + "1952-10-12": "Columbus Day", + "1952-11-11": "Armistice Day", + "1952-11-27": "Thanksgiving", + "1952-12-24": "Christmas Eve", + "1952-12-25": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-02-22": "Washington's Birthday", + "1953-05-30": "Memorial Day", + "1953-07-03": "Independence Day (Observed)", + "1953-07-04": "Independence Day", + "1953-09-07": "Labor Day", + "1953-10-12": "Columbus Day", + "1953-11-11": "Armistice Day", + "1953-11-26": "Thanksgiving", + "1953-12-24": "Christmas Eve", + "1953-12-25": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-02-22": "Washington's Birthday", + "1954-05-30": "Memorial Day", + "1954-07-04": "Independence Day", + "1954-07-05": "Independence Day (Observed)", + "1954-09-06": "Labor Day", + "1954-10-12": "Columbus Day", + "1954-11-11": "Veterans Day", + "1954-11-25": "Thanksgiving", + "1954-12-23": "Christmas Eve (Observed)", + "1954-12-24": "Christmas Day (Observed); Christmas Eve", + "1954-12-25": "Christmas Day", + "1954-12-31": "New Year's Day (Observed)", + "1955-01-01": "New Year's Day", + "1955-02-22": "Washington's Birthday", + "1955-05-30": "Memorial Day", + "1955-07-04": "Independence Day", + "1955-09-05": "Labor Day", + "1955-10-12": "Columbus Day", + "1955-11-11": "Veterans Day", + "1955-11-24": "Thanksgiving", + "1955-12-23": "Christmas Eve (Observed)", + "1955-12-24": "Christmas Eve", + "1955-12-25": "Christmas Day", + "1955-12-26": "Christmas Day (Observed)", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year's Day (Observed)", + "1956-02-22": "Washington's Birthday", + "1956-05-30": "Memorial Day", + "1956-07-04": "Independence Day", + "1956-09-03": "Labor Day", + "1956-10-12": "Columbus Day", + "1956-11-11": "Veterans Day", + "1956-11-12": "Veterans Day (Observed)", + "1956-11-22": "Thanksgiving", + "1956-12-24": "Christmas Eve", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-02-22": "Washington's Birthday", + "1957-05-30": "Memorial Day", + "1957-07-04": "Independence Day", + "1957-09-02": "Labor Day", + "1957-10-12": "Columbus Day", + "1957-11-11": "Veterans Day", + "1957-11-28": "Thanksgiving", + "1957-12-24": "Christmas Eve", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-02-22": "Washington's Birthday", + "1958-05-30": "Memorial Day", + "1958-07-04": "Independence Day", + "1958-09-01": "Labor Day", + "1958-10-12": "Columbus Day", + "1958-11-11": "Veterans Day", + "1958-11-27": "Thanksgiving", + "1958-12-24": "Christmas Eve", + "1958-12-25": "Christmas Day", + "1959-01-01": "New Year's Day", + "1959-02-22": "Washington's Birthday", + "1959-05-30": "Memorial Day", + "1959-07-03": "Independence Day (Observed)", + "1959-07-04": "Independence Day", + "1959-09-07": "Labor Day", + "1959-10-12": "Columbus Day", + "1959-11-11": "Veterans Day", + "1959-11-26": "Thanksgiving", + "1959-12-24": "Christmas Eve", + "1959-12-25": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-02-22": "Washington's Birthday", + "1960-05-30": "Memorial Day", + "1960-07-04": "Independence Day", + "1960-09-05": "Labor Day", + "1960-10-12": "Columbus Day", + "1960-11-11": "Veterans Day", + "1960-11-24": "Thanksgiving", + "1960-12-23": "Christmas Eve (Observed)", + "1960-12-24": "Christmas Eve", + "1960-12-25": "Christmas Day", + "1960-12-26": "Christmas Day (Observed)", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day (Observed)", + "1961-02-22": "Washington's Birthday", + "1961-05-30": "Memorial Day", + "1961-07-04": "Independence Day", + "1961-09-04": "Labor Day", + "1961-10-12": "Columbus Day", + "1961-11-10": "Veterans Day (Observed)", + "1961-11-11": "Veterans Day", + "1961-11-23": "Thanksgiving", + "1961-12-22": "Christmas Eve (Observed)", + "1961-12-24": "Christmas Eve", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-02-22": "Washington's Birthday", + "1962-05-30": "Memorial Day", + "1962-07-04": "Independence Day", + "1962-09-03": "Labor Day", + "1962-10-12": "Columbus Day", + "1962-11-11": "Veterans Day", + "1962-11-12": "Veterans Day (Observed)", + "1962-11-22": "Thanksgiving", + "1962-12-24": "Christmas Eve", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-02-22": "Washington's Birthday", + "1963-05-30": "Memorial Day", + "1963-07-04": "Independence Day", + "1963-09-02": "Labor Day", + "1963-10-12": "Columbus Day", + "1963-11-11": "Veterans Day", + "1963-11-28": "Thanksgiving", + "1963-12-24": "Christmas Eve", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-02-22": "Washington's Birthday", + "1964-05-30": "Memorial Day", + "1964-07-03": "Independence Day (Observed)", + "1964-07-04": "Independence Day", + "1964-09-07": "Labor Day", + "1964-10-12": "Columbus Day", + "1964-11-11": "Veterans Day", + "1964-11-26": "Thanksgiving", + "1964-12-24": "Christmas Eve", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-02-22": "Washington's Birthday", + "1965-05-30": "Memorial Day", + "1965-07-04": "Independence Day", + "1965-07-05": "Independence Day (Observed)", + "1965-09-06": "Labor Day", + "1965-10-12": "Columbus Day", + "1965-11-11": "Veterans Day", + "1965-11-25": "Thanksgiving", + "1965-12-23": "Christmas Eve (Observed)", + "1965-12-24": "Christmas Day (Observed); Christmas Eve", + "1965-12-25": "Christmas Day", + "1965-12-31": "New Year's Day (Observed)", + "1966-01-01": "New Year's Day", + "1966-02-22": "Washington's Birthday", + "1966-05-30": "Memorial Day", + "1966-07-04": "Independence Day", + "1966-09-05": "Labor Day", + "1966-10-12": "Columbus Day", + "1966-11-11": "Veterans Day", + "1966-11-24": "Thanksgiving", + "1966-12-23": "Christmas Eve (Observed)", + "1966-12-24": "Christmas Eve", + "1966-12-25": "Christmas Day", + "1966-12-26": "Christmas Day (Observed)", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day (Observed)", + "1967-02-22": "Washington's Birthday", + "1967-05-30": "Memorial Day", + "1967-07-04": "Independence Day", + "1967-09-04": "Labor Day", + "1967-10-12": "Columbus Day", + "1967-11-10": "Veterans Day (Observed)", + "1967-11-11": "Veterans Day", + "1967-11-23": "Thanksgiving", + "1967-12-22": "Christmas Eve (Observed)", + "1967-12-24": "Christmas Eve", + "1967-12-25": "Christmas Day", + "1968-01-01": "New Year's Day", + "1968-02-22": "Washington's Birthday", + "1968-05-30": "Memorial Day", + "1968-07-04": "Independence Day", + "1968-09-02": "Labor Day", + "1968-10-12": "Columbus Day", + "1968-11-11": "Veterans Day", + "1968-11-28": "Thanksgiving", + "1968-12-24": "Christmas Eve", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-02-22": "Washington's Birthday", + "1969-05-30": "Memorial Day", + "1969-07-04": "Independence Day", + "1969-09-01": "Labor Day", + "1969-10-12": "Columbus Day", + "1969-11-11": "Veterans Day", + "1969-11-27": "Thanksgiving", + "1969-12-24": "Christmas Eve", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-02-22": "Washington's Birthday", + "1970-05-30": "Memorial Day", + "1970-07-03": "Independence Day (Observed)", + "1970-07-04": "Independence Day", + "1970-09-07": "Labor Day", + "1970-10-12": "Columbus Day", + "1970-11-11": "Veterans Day", + "1970-11-26": "Thanksgiving", + "1970-12-24": "Christmas Eve", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-02-15": "Washington's Birthday", + "1971-05-31": "Memorial Day", + "1971-07-04": "Independence Day", + "1971-07-05": "Independence Day (Observed)", + "1971-09-06": "Labor Day", + "1971-10-11": "Columbus Day", + "1971-10-25": "Veterans Day", + "1971-11-25": "Thanksgiving", + "1971-12-23": "Christmas Eve (Observed)", + "1971-12-24": "Christmas Day (Observed); Christmas Eve", + "1971-12-25": "Christmas Day", + "1971-12-31": "New Year's Day (Observed)", + "1972-01-01": "New Year's Day", + "1972-02-21": "Washington's Birthday", + "1972-05-29": "Memorial Day", + "1972-07-04": "Independence Day", + "1972-09-04": "Labor Day", + "1972-10-09": "Columbus Day", + "1972-10-23": "Veterans Day", + "1972-11-23": "Thanksgiving", + "1972-12-22": "Christmas Eve (Observed)", + "1972-12-24": "Christmas Eve", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-02-19": "Washington's Birthday", + "1973-05-28": "Memorial Day", + "1973-07-04": "Independence Day", + "1973-09-03": "Labor Day", + "1973-10-08": "Columbus Day", + "1973-10-22": "Veterans Day", + "1973-11-22": "Thanksgiving", + "1973-12-24": "Christmas Eve", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-02-18": "Washington's Birthday", + "1974-05-27": "Memorial Day", + "1974-07-04": "Independence Day", + "1974-09-02": "Labor Day", + "1974-10-14": "Columbus Day", + "1974-10-28": "Veterans Day", + "1974-11-28": "Thanksgiving", + "1974-12-24": "Christmas Eve", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-02-17": "Washington's Birthday", + "1975-05-26": "Memorial Day", + "1975-07-04": "Independence Day", + "1975-09-01": "Labor Day", + "1975-10-13": "Columbus Day", + "1975-10-27": "Veterans Day", + "1975-11-27": "Thanksgiving", + "1975-12-24": "Christmas Eve", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-02-16": "Washington's Birthday", + "1976-05-31": "Memorial Day", + "1976-07-04": "Independence Day", + "1976-07-05": "Independence Day (Observed)", + "1976-09-06": "Labor Day", + "1976-10-11": "Columbus Day", + "1976-10-25": "Veterans Day", + "1976-11-25": "Thanksgiving", + "1976-12-23": "Christmas Eve (Observed)", + "1976-12-24": "Christmas Day (Observed); Christmas Eve", + "1976-12-25": "Christmas Day", + "1976-12-31": "New Year's Day (Observed)", + "1977-01-01": "New Year's Day", + "1977-02-21": "Washington's Birthday", + "1977-05-30": "Memorial Day", + "1977-07-04": "Independence Day", + "1977-09-05": "Labor Day", + "1977-10-10": "Columbus Day", + "1977-10-24": "Veterans Day", + "1977-11-24": "Thanksgiving", + "1977-12-23": "Christmas Eve (Observed)", + "1977-12-24": "Christmas Eve", + "1977-12-25": "Christmas Day", + "1977-12-26": "Christmas Day (Observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day (Observed)", + "1978-02-20": "Washington's Birthday", + "1978-05-29": "Memorial Day", + "1978-07-04": "Independence Day", + "1978-09-04": "Labor Day", + "1978-10-09": "Columbus Day", + "1978-11-10": "Veterans Day (Observed)", + "1978-11-11": "Veterans Day", + "1978-11-23": "Thanksgiving", + "1978-12-22": "Christmas Eve (Observed)", + "1978-12-24": "Christmas Eve", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-02-19": "Washington's Birthday", + "1979-05-28": "Memorial Day", + "1979-07-04": "Independence Day", + "1979-09-03": "Labor Day", + "1979-10-08": "Columbus Day", + "1979-11-11": "Veterans Day", + "1979-11-12": "Veterans Day (Observed)", + "1979-11-22": "Thanksgiving", + "1979-12-24": "Christmas Eve", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-02-18": "Washington's Birthday", + "1980-05-26": "Memorial Day", + "1980-07-04": "Independence Day", + "1980-09-01": "Labor Day", + "1980-10-13": "Columbus Day", + "1980-11-11": "Veterans Day", + "1980-11-27": "Thanksgiving", + "1980-12-24": "Christmas Eve", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-02-16": "Washington's Birthday", + "1981-05-25": "Memorial Day", + "1981-07-03": "Independence Day (Observed)", + "1981-07-04": "Independence Day", + "1981-09-07": "Labor Day", + "1981-10-12": "Columbus Day", + "1981-11-11": "Veterans Day", + "1981-11-26": "Thanksgiving", + "1981-12-24": "Christmas Eve", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-02-15": "Washington's Birthday", + "1982-05-31": "Memorial Day", + "1982-07-04": "Independence Day", + "1982-07-05": "Independence Day (Observed)", + "1982-09-06": "Labor Day", + "1982-10-11": "Columbus Day", + "1982-11-11": "Veterans Day", + "1982-11-25": "Thanksgiving", + "1982-12-23": "Christmas Eve (Observed)", + "1982-12-24": "Christmas Day (Observed); Christmas Eve", + "1982-12-25": "Christmas Day", + "1982-12-31": "New Year's Day (Observed)", + "1983-01-01": "New Year's Day", + "1983-02-21": "Washington's Birthday", + "1983-05-30": "Memorial Day", + "1983-07-04": "Independence Day", + "1983-09-05": "Labor Day", + "1983-10-10": "Columbus Day", + "1983-11-11": "Veterans Day", + "1983-11-24": "Thanksgiving", + "1983-12-23": "Christmas Eve (Observed)", + "1983-12-24": "Christmas Eve", + "1983-12-25": "Christmas Day", + "1983-12-26": "Christmas Day (Observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (Observed)", + "1984-02-20": "Washington's Birthday", + "1984-05-28": "Memorial Day", + "1984-07-04": "Independence Day", + "1984-09-03": "Labor Day", + "1984-10-08": "Columbus Day", + "1984-11-11": "Veterans Day", + "1984-11-12": "Veterans Day (Observed)", + "1984-11-22": "Thanksgiving", + "1984-12-24": "Christmas Eve", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-02-18": "Washington's Birthday", + "1985-05-27": "Memorial Day", + "1985-07-04": "Independence Day", + "1985-09-02": "Labor Day", + "1985-10-14": "Columbus Day", + "1985-11-11": "Veterans Day", + "1985-11-28": "Thanksgiving", + "1985-12-24": "Christmas Eve", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-01-20": "Martin Luther King Jr. Day", + "1986-02-17": "Washington's Birthday", + "1986-05-26": "Memorial Day", + "1986-07-04": "Independence Day", + "1986-09-01": "Labor Day", + "1986-10-13": "Columbus Day", + "1986-11-11": "Veterans Day", + "1986-11-27": "Thanksgiving", + "1986-12-24": "Christmas Eve", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-01-19": "Martin Luther King Jr. Day", + "1987-02-16": "Washington's Birthday", + "1987-05-25": "Memorial Day", + "1987-07-03": "Independence Day (Observed)", + "1987-07-04": "Independence Day", + "1987-09-07": "Labor Day", + "1987-10-12": "Columbus Day", + "1987-11-11": "Veterans Day", + "1987-11-26": "Thanksgiving", + "1987-12-24": "Christmas Eve", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-01-18": "Martin Luther King Jr. Day", + "1988-02-15": "Washington's Birthday", + "1988-05-30": "Memorial Day", + "1988-07-04": "Independence Day", + "1988-09-05": "Labor Day", + "1988-10-10": "Columbus Day", + "1988-11-11": "Veterans Day", + "1988-11-24": "Thanksgiving", + "1988-12-23": "Christmas Eve (Observed)", + "1988-12-24": "Christmas Eve", + "1988-12-25": "Christmas Day", + "1988-12-26": "Christmas Day (Observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (Observed)", + "1989-01-16": "Martin Luther King Jr. Day", + "1989-02-20": "Washington's Birthday", + "1989-05-29": "Memorial Day", + "1989-07-04": "Independence Day", + "1989-09-04": "Labor Day", + "1989-10-09": "Columbus Day", + "1989-11-10": "Veterans Day (Observed)", + "1989-11-11": "Veterans Day", + "1989-11-23": "Thanksgiving", + "1989-12-22": "Christmas Eve (Observed)", + "1989-12-24": "Christmas Eve", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-01-15": "Martin Luther King Jr. Day", + "1990-02-19": "Washington's Birthday", + "1990-05-28": "Memorial Day", + "1990-07-04": "Independence Day", + "1990-09-03": "Labor Day", + "1990-10-08": "Columbus Day", + "1990-11-11": "Veterans Day", + "1990-11-12": "Veterans Day (Observed)", + "1990-11-22": "Thanksgiving", + "1990-12-24": "Christmas Eve", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-01-21": "Martin Luther King Jr. Day", + "1991-02-18": "Washington's Birthday", + "1991-05-27": "Memorial Day", + "1991-07-04": "Independence Day", + "1991-09-02": "Labor Day", + "1991-10-14": "Columbus Day", + "1991-11-11": "Veterans Day", + "1991-11-28": "Thanksgiving", + "1991-12-24": "Christmas Eve", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-01-20": "Martin Luther King Jr. Day", + "1992-02-17": "Washington's Birthday", + "1992-05-25": "Memorial Day", + "1992-07-03": "Independence Day (Observed)", + "1992-07-04": "Independence Day", + "1992-09-07": "Labor Day", + "1992-10-12": "Columbus Day", + "1992-11-11": "Veterans Day", + "1992-11-26": "Thanksgiving", + "1992-12-24": "Christmas Eve", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-01-18": "Martin Luther King Jr. Day", + "1993-02-15": "Washington's Birthday", + "1993-05-31": "Memorial Day", + "1993-07-04": "Independence Day", + "1993-07-05": "Independence Day (Observed)", + "1993-09-06": "Labor Day", + "1993-10-11": "Columbus Day", + "1993-11-11": "Veterans Day", + "1993-11-25": "Thanksgiving", + "1993-12-23": "Christmas Eve (Observed)", + "1993-12-24": "Christmas Day (Observed); Christmas Eve", + "1993-12-25": "Christmas Day", + "1993-12-31": "New Year's Day (Observed)", + "1994-01-01": "New Year's Day", + "1994-01-17": "Martin Luther King Jr. Day", + "1994-02-21": "Washington's Birthday", + "1994-05-30": "Memorial Day", + "1994-07-04": "Independence Day", + "1994-09-05": "Labor Day", + "1994-10-10": "Columbus Day", + "1994-11-11": "Veterans Day", + "1994-11-24": "Thanksgiving", + "1994-12-23": "Christmas Eve (Observed)", + "1994-12-24": "Christmas Eve", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day (Observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (Observed)", + "1995-01-16": "Martin Luther King Jr. Day", + "1995-02-20": "Washington's Birthday", + "1995-05-29": "Memorial Day", + "1995-07-04": "Independence Day", + "1995-09-04": "Labor Day", + "1995-10-09": "Columbus Day", + "1995-11-10": "Veterans Day (Observed)", + "1995-11-11": "Veterans Day", + "1995-11-23": "Thanksgiving", + "1995-12-22": "Christmas Eve (Observed)", + "1995-12-24": "Christmas Eve", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-01-15": "Martin Luther King Jr. Day", + "1996-02-19": "Washington's Birthday", + "1996-05-27": "Memorial Day", + "1996-07-04": "Independence Day", + "1996-09-02": "Labor Day", + "1996-10-14": "Columbus Day", + "1996-11-11": "Veterans Day", + "1996-11-28": "Thanksgiving", + "1996-12-24": "Christmas Eve", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-01-20": "Martin Luther King Jr. Day", + "1997-02-17": "Washington's Birthday", + "1997-05-26": "Memorial Day", + "1997-07-04": "Independence Day", + "1997-09-01": "Labor Day", + "1997-10-13": "Columbus Day", + "1997-11-11": "Veterans Day", + "1997-11-27": "Thanksgiving", + "1997-12-24": "Christmas Eve", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-01-19": "Martin Luther King Jr. Day", + "1998-02-16": "Washington's Birthday", + "1998-05-25": "Memorial Day", + "1998-07-03": "Independence Day (Observed)", + "1998-07-04": "Independence Day", + "1998-09-07": "Labor Day", + "1998-10-12": "Columbus Day", + "1998-11-11": "Veterans Day", + "1998-11-26": "Thanksgiving", + "1998-12-24": "Christmas Eve", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-01-18": "Martin Luther King Jr. Day", + "1999-02-15": "Washington's Birthday", + "1999-05-31": "Memorial Day", + "1999-07-04": "Independence Day", + "1999-07-05": "Independence Day (Observed)", + "1999-09-06": "Labor Day", + "1999-10-11": "Columbus Day", + "1999-11-11": "Veterans Day", + "1999-11-25": "Thanksgiving", + "1999-12-23": "Christmas Eve (Observed)", + "1999-12-24": "Christmas Day (Observed); Christmas Eve", + "1999-12-25": "Christmas Day", + "1999-12-31": "New Year's Day (Observed)", + "2000-01-01": "New Year's Day", + "2000-01-17": "Martin Luther King Jr. Day", + "2000-02-21": "Washington's Birthday", + "2000-05-29": "Memorial Day", + "2000-07-04": "Independence Day", + "2000-09-04": "Labor Day", + "2000-10-09": "Columbus Day", + "2000-11-10": "Veterans Day (Observed)", + "2000-11-11": "Veterans Day", + "2000-11-23": "Thanksgiving", + "2000-12-22": "Christmas Eve (Observed)", + "2000-12-24": "Christmas Eve", + "2000-12-25": "Christmas Day", + "2001-01-01": "New Year's Day", + "2001-01-15": "Martin Luther King Jr. Day", + "2001-02-19": "Washington's Birthday", + "2001-05-28": "Memorial Day", + "2001-07-04": "Independence Day", + "2001-09-03": "Labor Day", + "2001-10-08": "Columbus Day", + "2001-11-11": "Veterans Day", + "2001-11-12": "Veterans Day (Observed)", + "2001-11-22": "Thanksgiving", + "2001-12-24": "Christmas Eve", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-01-21": "Martin Luther King Jr. Day", + "2002-02-18": "Washington's Birthday", + "2002-05-27": "Memorial Day", + "2002-07-04": "Independence Day", + "2002-09-02": "Labor Day", + "2002-10-14": "Columbus Day", + "2002-11-11": "Veterans Day", + "2002-11-28": "Thanksgiving", + "2002-12-24": "Christmas Eve", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-01-20": "Martin Luther King Jr. Day", + "2003-02-17": "Washington's Birthday", + "2003-05-26": "Memorial Day", + "2003-07-04": "Independence Day", + "2003-09-01": "Labor Day", + "2003-10-13": "Columbus Day", + "2003-11-11": "Veterans Day", + "2003-11-27": "Thanksgiving", + "2003-12-24": "Christmas Eve", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-01-19": "Martin Luther King Jr. Day", + "2004-02-16": "Washington's Birthday", + "2004-05-31": "Memorial Day", + "2004-07-04": "Independence Day", + "2004-07-05": "Independence Day (Observed)", + "2004-09-06": "Labor Day", + "2004-10-11": "Columbus Day", + "2004-11-11": "Veterans Day", + "2004-11-25": "Thanksgiving", + "2004-12-23": "Christmas Eve (Observed)", + "2004-12-24": "Christmas Day (Observed); Christmas Eve", + "2004-12-25": "Christmas Day", + "2004-12-31": "New Year's Day (Observed)", + "2005-01-01": "New Year's Day", + "2005-01-17": "Martin Luther King Jr. Day", + "2005-02-21": "Washington's Birthday", + "2005-05-30": "Memorial Day", + "2005-07-04": "Independence Day", + "2005-09-05": "Labor Day", + "2005-10-10": "Columbus Day", + "2005-11-11": "Veterans Day", + "2005-11-24": "Thanksgiving", + "2005-12-23": "Christmas Eve (Observed)", + "2005-12-24": "Christmas Eve", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day (Observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (Observed)", + "2006-01-16": "Martin Luther King Jr. Day", + "2006-02-20": "Washington's Birthday", + "2006-05-29": "Memorial Day", + "2006-07-04": "Independence Day", + "2006-09-04": "Labor Day", + "2006-10-09": "Columbus Day", + "2006-11-10": "Veterans Day (Observed)", + "2006-11-11": "Veterans Day", + "2006-11-23": "Thanksgiving", + "2006-12-22": "Christmas Eve (Observed)", + "2006-12-24": "Christmas Eve", + "2006-12-25": "Christmas Day", + "2007-01-01": "New Year's Day", + "2007-01-15": "Martin Luther King Jr. Day", + "2007-02-19": "Washington's Birthday", + "2007-05-28": "Memorial Day", + "2007-07-04": "Independence Day", + "2007-09-03": "Labor Day", + "2007-10-08": "Columbus Day", + "2007-11-11": "Veterans Day", + "2007-11-12": "Veterans Day (Observed)", + "2007-11-22": "Thanksgiving", + "2007-12-24": "Christmas Eve", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-01-21": "Martin Luther King Jr. Day", + "2008-02-18": "Washington's Birthday", + "2008-05-26": "Memorial Day", + "2008-07-04": "Independence Day", + "2008-09-01": "Labor Day", + "2008-10-13": "Columbus Day", + "2008-11-11": "Veterans Day", + "2008-11-27": "Thanksgiving", + "2008-12-24": "Christmas Eve", + "2008-12-25": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-01-19": "Martin Luther King Jr. Day", + "2009-02-16": "Washington's Birthday", + "2009-05-25": "Memorial Day", + "2009-07-03": "Independence Day (Observed)", + "2009-07-04": "Independence Day", + "2009-09-07": "Labor Day", + "2009-10-12": "Columbus Day", + "2009-11-11": "Veterans Day", + "2009-11-26": "Thanksgiving", + "2009-12-24": "Christmas Eve", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-01-18": "Martin Luther King Jr. Day", + "2010-02-15": "Washington's Birthday", + "2010-05-31": "Memorial Day", + "2010-07-04": "Independence Day", + "2010-07-05": "Independence Day (Observed)", + "2010-09-06": "Labor Day", + "2010-10-11": "Columbus Day", + "2010-11-11": "Veterans Day", + "2010-11-25": "Thanksgiving", + "2010-12-23": "Christmas Eve (Observed)", + "2010-12-24": "Christmas Day (Observed); Christmas Eve", + "2010-12-25": "Christmas Day", + "2010-12-31": "New Year's Day (Observed)", + "2011-01-01": "New Year's Day", + "2011-01-17": "Martin Luther King Jr. Day", + "2011-02-21": "Washington's Birthday", + "2011-05-30": "Memorial Day", + "2011-07-04": "Independence Day", + "2011-09-05": "Labor Day", + "2011-10-10": "Columbus Day", + "2011-11-11": "Veterans Day", + "2011-11-24": "Thanksgiving", + "2011-12-23": "Christmas Eve (Observed)", + "2011-12-24": "Christmas Eve", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day (Observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (Observed)", + "2012-01-16": "Martin Luther King Jr. Day", + "2012-02-20": "Washington's Birthday", + "2012-05-28": "Memorial Day", + "2012-07-04": "Independence Day", + "2012-09-03": "Labor Day", + "2012-10-08": "Columbus Day", + "2012-11-11": "Veterans Day", + "2012-11-12": "Veterans Day (Observed)", + "2012-11-22": "Thanksgiving", + "2012-12-24": "Christmas Eve", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-01-21": "Martin Luther King Jr. Day", + "2013-02-18": "Washington's Birthday", + "2013-05-27": "Memorial Day", + "2013-07-04": "Independence Day", + "2013-09-02": "Labor Day", + "2013-10-14": "Columbus Day", + "2013-11-11": "Veterans Day", + "2013-11-28": "Thanksgiving", + "2013-12-24": "Christmas Eve", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-20": "Martin Luther King Jr. Day", + "2014-02-17": "Washington's Birthday", + "2014-05-26": "Memorial Day", + "2014-07-04": "Independence Day", + "2014-09-01": "Labor Day", + "2014-10-13": "Columbus Day", + "2014-11-11": "Veterans Day", + "2014-11-27": "Thanksgiving", + "2014-12-24": "Christmas Eve", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-01-19": "Martin Luther King Jr. Day", + "2015-02-16": "Washington's Birthday", + "2015-05-25": "Memorial Day", + "2015-07-03": "Independence Day (Observed)", + "2015-07-04": "Independence Day", + "2015-09-07": "Labor Day", + "2015-10-12": "Columbus Day", + "2015-11-11": "Veterans Day", + "2015-11-26": "Thanksgiving", + "2015-12-24": "Christmas Eve", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-01-18": "Martin Luther King Jr. Day", + "2016-02-15": "Washington's Birthday", + "2016-05-30": "Memorial Day", + "2016-07-04": "Independence Day", + "2016-09-05": "Labor Day", + "2016-10-10": "Columbus Day", + "2016-11-11": "Veterans Day", + "2016-11-24": "Thanksgiving", + "2016-12-23": "Christmas Eve (Observed)", + "2016-12-24": "Christmas Eve", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day (Observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (Observed)", + "2017-01-16": "Martin Luther King Jr. Day", + "2017-02-20": "Washington's Birthday", + "2017-05-29": "Memorial Day", + "2017-07-04": "Independence Day", + "2017-09-04": "Labor Day", + "2017-10-09": "Columbus Day", + "2017-11-10": "Veterans Day (Observed)", + "2017-11-11": "Veterans Day", + "2017-11-23": "Thanksgiving", + "2017-12-22": "Christmas Eve (Observed)", + "2017-12-24": "Christmas Eve", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-01-15": "Martin Luther King Jr. Day", + "2018-02-19": "Washington's Birthday", + "2018-05-28": "Memorial Day", + "2018-07-04": "Independence Day", + "2018-09-03": "Labor Day", + "2018-10-08": "Columbus Day", + "2018-11-11": "Veterans Day", + "2018-11-12": "Veterans Day (Observed)", + "2018-11-22": "Thanksgiving", + "2018-12-24": "Christmas Eve", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-01-21": "Martin Luther King Jr. Day", + "2019-02-18": "Washington's Birthday", + "2019-05-27": "Memorial Day", + "2019-07-04": "Independence Day", + "2019-09-02": "Labor Day", + "2019-10-14": "Columbus Day", + "2019-11-11": "Veterans Day", + "2019-11-28": "Thanksgiving", + "2019-12-24": "Christmas Eve", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-01-20": "Martin Luther King Jr. Day", + "2020-02-17": "Washington's Birthday", + "2020-05-25": "Memorial Day", + "2020-07-03": "Independence Day (Observed)", + "2020-07-04": "Independence Day", + "2020-09-07": "Labor Day", + "2020-10-12": "Columbus Day", + "2020-11-11": "Veterans Day", + "2020-11-26": "Thanksgiving", + "2020-12-24": "Christmas Eve", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-01-18": "Martin Luther King Jr. Day", + "2021-02-15": "Washington's Birthday", + "2021-05-31": "Memorial Day", + "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-19": "Juneteenth National Independence Day", + "2021-07-04": "Independence Day", + "2021-07-05": "Independence Day (Observed)", + "2021-09-06": "Labor Day", + "2021-10-11": "Columbus Day", + "2021-11-11": "Veterans Day", + "2021-11-25": "Thanksgiving", + "2021-12-23": "Christmas Eve (Observed)", + "2021-12-24": "Christmas Day (Observed); Christmas Eve", + "2021-12-25": "Christmas Day", + "2021-12-31": "New Year's Day (Observed)", + "2022-01-01": "New Year's Day", + "2022-01-17": "Martin Luther King Jr. Day", + "2022-02-21": "Washington's Birthday", + "2022-05-30": "Memorial Day", + "2022-06-19": "Juneteenth National Independence Day", + "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-07-04": "Independence Day", + "2022-09-05": "Labor Day", + "2022-10-10": "Columbus Day", + "2022-11-11": "Veterans Day", + "2022-11-24": "Thanksgiving", + "2022-12-23": "Christmas Eve (Observed)", + "2022-12-24": "Christmas Eve", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day (Observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (Observed)", + "2023-01-16": "Martin Luther King Jr. Day", + "2023-02-20": "Washington's Birthday", + "2023-05-29": "Memorial Day", + "2023-06-19": "Juneteenth National Independence Day", + "2023-07-04": "Independence Day", + "2023-09-04": "Labor Day", + "2023-10-09": "Columbus Day", + "2023-11-10": "Veterans Day (Observed)", + "2023-11-11": "Veterans Day", + "2023-11-23": "Thanksgiving", + "2023-12-22": "Christmas Eve (Observed)", + "2023-12-24": "Christmas Eve", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-01-15": "Martin Luther King Jr. Day", + "2024-02-19": "Washington's Birthday", + "2024-05-27": "Memorial Day", + "2024-06-19": "Juneteenth National Independence Day", + "2024-07-04": "Independence Day", + "2024-09-02": "Labor Day", + "2024-10-14": "Columbus Day", + "2024-11-11": "Veterans Day", + "2024-11-28": "Thanksgiving", + "2024-12-24": "Christmas Eve", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-01-20": "Martin Luther King Jr. Day", + "2025-02-17": "Washington's Birthday", + "2025-05-26": "Memorial Day", + "2025-06-19": "Juneteenth National Independence Day", + "2025-07-04": "Independence Day", + "2025-09-01": "Labor Day", + "2025-10-13": "Columbus Day", + "2025-11-11": "Veterans Day", + "2025-11-27": "Thanksgiving", + "2025-12-24": "Christmas Eve", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-01-19": "Martin Luther King Jr. Day", + "2026-02-16": "Washington's Birthday", + "2026-05-25": "Memorial Day", + "2026-06-19": "Juneteenth National Independence Day", + "2026-07-03": "Independence Day (Observed)", + "2026-07-04": "Independence Day", + "2026-09-07": "Labor Day", + "2026-10-12": "Columbus Day", + "2026-11-11": "Veterans Day", + "2026-11-26": "Thanksgiving", + "2026-12-24": "Christmas Eve", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-01-18": "Martin Luther King Jr. Day", + "2027-02-15": "Washington's Birthday", + "2027-05-31": "Memorial Day", + "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-19": "Juneteenth National Independence Day", + "2027-07-04": "Independence Day", + "2027-07-05": "Independence Day (Observed)", + "2027-09-06": "Labor Day", + "2027-10-11": "Columbus Day", + "2027-11-11": "Veterans Day", + "2027-11-25": "Thanksgiving", + "2027-12-23": "Christmas Eve (Observed)", + "2027-12-24": "Christmas Day (Observed); Christmas Eve", + "2027-12-25": "Christmas Day", + "2027-12-31": "New Year's Day (Observed)", + "2028-01-01": "New Year's Day", + "2028-01-17": "Martin Luther King Jr. Day", + "2028-02-21": "Washington's Birthday", + "2028-05-29": "Memorial Day", + "2028-06-19": "Juneteenth National Independence Day", + "2028-07-04": "Independence Day", + "2028-09-04": "Labor Day", + "2028-10-09": "Columbus Day", + "2028-11-10": "Veterans Day (Observed)", + "2028-11-11": "Veterans Day", + "2028-11-23": "Thanksgiving", + "2028-12-22": "Christmas Eve (Observed)", + "2028-12-24": "Christmas Eve", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-01-15": "Martin Luther King Jr. Day", + "2029-02-19": "Washington's Birthday", + "2029-05-28": "Memorial Day", + "2029-06-19": "Juneteenth National Independence Day", + "2029-07-04": "Independence Day", + "2029-09-03": "Labor Day", + "2029-10-08": "Columbus Day", + "2029-11-11": "Veterans Day", + "2029-11-12": "Veterans Day (Observed)", + "2029-11-22": "Thanksgiving", + "2029-12-24": "Christmas Eve", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-01-21": "Martin Luther King Jr. Day", + "2030-02-18": "Washington's Birthday", + "2030-05-27": "Memorial Day", + "2030-06-19": "Juneteenth National Independence Day", + "2030-07-04": "Independence Day", + "2030-09-02": "Labor Day", + "2030-10-14": "Columbus Day", + "2030-11-11": "Veterans Day", + "2030-11-28": "Thanksgiving", + "2030-12-24": "Christmas Eve", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-01-20": "Martin Luther King Jr. Day", + "2031-02-17": "Washington's Birthday", + "2031-05-26": "Memorial Day", + "2031-06-19": "Juneteenth National Independence Day", + "2031-07-04": "Independence Day", + "2031-09-01": "Labor Day", + "2031-10-13": "Columbus Day", + "2031-11-11": "Veterans Day", + "2031-11-27": "Thanksgiving", + "2031-12-24": "Christmas Eve", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-01-19": "Martin Luther King Jr. Day", + "2032-02-16": "Washington's Birthday", + "2032-05-31": "Memorial Day", + "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-19": "Juneteenth National Independence Day", + "2032-07-04": "Independence Day", + "2032-07-05": "Independence Day (Observed)", + "2032-09-06": "Labor Day", + "2032-10-11": "Columbus Day", + "2032-11-11": "Veterans Day", + "2032-11-25": "Thanksgiving", + "2032-12-23": "Christmas Eve (Observed)", + "2032-12-24": "Christmas Day (Observed); Christmas Eve", + "2032-12-25": "Christmas Day", + "2032-12-31": "New Year's Day (Observed)", + "2033-01-01": "New Year's Day", + "2033-01-17": "Martin Luther King Jr. Day", + "2033-02-21": "Washington's Birthday", + "2033-05-30": "Memorial Day", + "2033-06-19": "Juneteenth National Independence Day", + "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-07-04": "Independence Day", + "2033-09-05": "Labor Day", + "2033-10-10": "Columbus Day", + "2033-11-11": "Veterans Day", + "2033-11-24": "Thanksgiving", + "2033-12-23": "Christmas Eve (Observed)", + "2033-12-24": "Christmas Eve", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day (Observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-01-16": "Martin Luther King Jr. Day", + "2034-02-20": "Washington's Birthday", + "2034-05-29": "Memorial Day", + "2034-06-19": "Juneteenth National Independence Day", + "2034-07-04": "Independence Day", + "2034-09-04": "Labor Day", + "2034-10-09": "Columbus Day", + "2034-11-10": "Veterans Day (Observed)", + "2034-11-11": "Veterans Day", + "2034-11-23": "Thanksgiving", + "2034-12-22": "Christmas Eve (Observed)", + "2034-12-24": "Christmas Eve", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-01-15": "Martin Luther King Jr. Day", + "2035-02-19": "Washington's Birthday", + "2035-05-28": "Memorial Day", + "2035-06-19": "Juneteenth National Independence Day", + "2035-07-04": "Independence Day", + "2035-09-03": "Labor Day", + "2035-10-08": "Columbus Day", + "2035-11-11": "Veterans Day", + "2035-11-12": "Veterans Day (Observed)", + "2035-11-22": "Thanksgiving", + "2035-12-24": "Christmas Eve", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-01-21": "Martin Luther King Jr. Day", + "2036-02-18": "Washington's Birthday", + "2036-05-26": "Memorial Day", + "2036-06-19": "Juneteenth National Independence Day", + "2036-07-04": "Independence Day", + "2036-09-01": "Labor Day", + "2036-10-13": "Columbus Day", + "2036-11-11": "Veterans Day", + "2036-11-27": "Thanksgiving", + "2036-12-24": "Christmas Eve", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-19": "Martin Luther King Jr. Day", + "2037-02-16": "Washington's Birthday", + "2037-05-25": "Memorial Day", + "2037-06-19": "Juneteenth National Independence Day", + "2037-07-03": "Independence Day (Observed)", + "2037-07-04": "Independence Day", + "2037-09-07": "Labor Day", + "2037-10-12": "Columbus Day", + "2037-11-11": "Veterans Day", + "2037-11-26": "Thanksgiving", + "2037-12-24": "Christmas Eve", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-01-18": "Martin Luther King Jr. Day", + "2038-02-15": "Washington's Birthday", + "2038-05-31": "Memorial Day", + "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-19": "Juneteenth National Independence Day", + "2038-07-04": "Independence Day", + "2038-07-05": "Independence Day (Observed)", + "2038-09-06": "Labor Day", + "2038-10-11": "Columbus Day", + "2038-11-11": "Veterans Day", + "2038-11-25": "Thanksgiving", + "2038-12-23": "Christmas Eve (Observed)", + "2038-12-24": "Christmas Day (Observed); Christmas Eve", + "2038-12-25": "Christmas Day", + "2038-12-31": "New Year's Day (Observed)", + "2039-01-01": "New Year's Day", + "2039-01-17": "Martin Luther King Jr. Day", + "2039-02-21": "Washington's Birthday", + "2039-05-30": "Memorial Day", + "2039-06-19": "Juneteenth National Independence Day", + "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-07-04": "Independence Day", + "2039-09-05": "Labor Day", + "2039-10-10": "Columbus Day", + "2039-11-11": "Veterans Day", + "2039-11-24": "Thanksgiving", + "2039-12-23": "Christmas Eve (Observed)", + "2039-12-24": "Christmas Eve", + "2039-12-25": "Christmas Day", + "2039-12-26": "Christmas Day (Observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (Observed)", + "2040-01-16": "Martin Luther King Jr. Day", + "2040-02-20": "Washington's Birthday", + "2040-05-28": "Memorial Day", + "2040-06-19": "Juneteenth National Independence Day", + "2040-07-04": "Independence Day", + "2040-09-03": "Labor Day", + "2040-10-08": "Columbus Day", + "2040-11-11": "Veterans Day", + "2040-11-12": "Veterans Day (Observed)", + "2040-11-22": "Thanksgiving", + "2040-12-24": "Christmas Eve", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-01-21": "Martin Luther King Jr. Day", + "2041-02-18": "Washington's Birthday", + "2041-05-27": "Memorial Day", + "2041-06-19": "Juneteenth National Independence Day", + "2041-07-04": "Independence Day", + "2041-09-02": "Labor Day", + "2041-10-14": "Columbus Day", + "2041-11-11": "Veterans Day", + "2041-11-28": "Thanksgiving", + "2041-12-24": "Christmas Eve", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-01-20": "Martin Luther King Jr. Day", + "2042-02-17": "Washington's Birthday", + "2042-05-26": "Memorial Day", + "2042-06-19": "Juneteenth National Independence Day", + "2042-07-04": "Independence Day", + "2042-09-01": "Labor Day", + "2042-10-13": "Columbus Day", + "2042-11-11": "Veterans Day", + "2042-11-27": "Thanksgiving", + "2042-12-24": "Christmas Eve", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-01-19": "Martin Luther King Jr. Day", + "2043-02-16": "Washington's Birthday", + "2043-05-25": "Memorial Day", + "2043-06-19": "Juneteenth National Independence Day", + "2043-07-03": "Independence Day (Observed)", + "2043-07-04": "Independence Day", + "2043-09-07": "Labor Day", + "2043-10-12": "Columbus Day", + "2043-11-11": "Veterans Day", + "2043-11-26": "Thanksgiving", + "2043-12-24": "Christmas Eve", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-01-18": "Martin Luther King Jr. Day", + "2044-02-15": "Washington's Birthday", + "2044-05-30": "Memorial Day", + "2044-06-19": "Juneteenth National Independence Day", + "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-07-04": "Independence Day", + "2044-09-05": "Labor Day", + "2044-10-10": "Columbus Day", + "2044-11-11": "Veterans Day", + "2044-11-24": "Thanksgiving", + "2044-12-23": "Christmas Eve (Observed)", + "2044-12-24": "Christmas Eve", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day (Observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (Observed)", + "2045-01-16": "Martin Luther King Jr. Day", + "2045-02-20": "Washington's Birthday", + "2045-05-29": "Memorial Day", + "2045-06-19": "Juneteenth National Independence Day", + "2045-07-04": "Independence Day", + "2045-09-04": "Labor Day", + "2045-10-09": "Columbus Day", + "2045-11-10": "Veterans Day (Observed)", + "2045-11-11": "Veterans Day", + "2045-11-23": "Thanksgiving", + "2045-12-22": "Christmas Eve (Observed)", + "2045-12-24": "Christmas Eve", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-01-15": "Martin Luther King Jr. Day", + "2046-02-19": "Washington's Birthday", + "2046-05-28": "Memorial Day", + "2046-06-19": "Juneteenth National Independence Day", + "2046-07-04": "Independence Day", + "2046-09-03": "Labor Day", + "2046-10-08": "Columbus Day", + "2046-11-11": "Veterans Day", + "2046-11-12": "Veterans Day (Observed)", + "2046-11-22": "Thanksgiving", + "2046-12-24": "Christmas Eve", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-21": "Martin Luther King Jr. Day", + "2047-02-18": "Washington's Birthday", + "2047-05-27": "Memorial Day", + "2047-06-19": "Juneteenth National Independence Day", + "2047-07-04": "Independence Day", + "2047-09-02": "Labor Day", + "2047-10-14": "Columbus Day", + "2047-11-11": "Veterans Day", + "2047-11-28": "Thanksgiving", + "2047-12-24": "Christmas Eve", + "2047-12-25": "Christmas Day", + "2048-01-01": "New Year's Day", + "2048-01-20": "Martin Luther King Jr. Day", + "2048-02-17": "Washington's Birthday", + "2048-05-25": "Memorial Day", + "2048-06-19": "Juneteenth National Independence Day", + "2048-07-03": "Independence Day (Observed)", + "2048-07-04": "Independence Day", + "2048-09-07": "Labor Day", + "2048-10-12": "Columbus Day", + "2048-11-11": "Veterans Day", + "2048-11-26": "Thanksgiving", + "2048-12-24": "Christmas Eve", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-01-18": "Martin Luther King Jr. Day", + "2049-02-15": "Washington's Birthday", + "2049-05-31": "Memorial Day", + "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-19": "Juneteenth National Independence Day", + "2049-07-04": "Independence Day", + "2049-07-05": "Independence Day (Observed)", + "2049-09-06": "Labor Day", + "2049-10-11": "Columbus Day", + "2049-11-11": "Veterans Day", + "2049-11-25": "Thanksgiving", + "2049-12-23": "Christmas Eve (Observed)", + "2049-12-24": "Christmas Day (Observed); Christmas Eve", + "2049-12-25": "Christmas Day", + "2049-12-31": "New Year's Day (Observed)", + "2050-01-01": "New Year's Day", + "2050-01-17": "Martin Luther King Jr. Day", + "2050-02-21": "Washington's Birthday", + "2050-05-30": "Memorial Day", + "2050-06-19": "Juneteenth National Independence Day", + "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-07-04": "Independence Day", + "2050-09-05": "Labor Day", + "2050-10-10": "Columbus Day", + "2050-11-11": "Veterans Day", + "2050-11-24": "Thanksgiving", + "2050-12-23": "Christmas Eve (Observed)", + "2050-12-24": "Christmas Eve", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day (Observed)" +} diff --git a/snapshots/countries/AT.json b/snapshots/countries/AT.json new file mode 100644 index 000000000..66f184c83 --- /dev/null +++ b/snapshots/countries/AT.json @@ -0,0 +1,1600 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-06": "Epiphany", + "1950-04-07": "Good Friday", + "1950-04-10": "Easter Monday", + "1950-05-01": "Labor Day", + "1950-05-18": "Ascension Day", + "1950-05-29": "Whit Monday", + "1950-06-08": "Corpus Christi", + "1950-08-15": "Assumption Day", + "1950-11-01": "All Saints' Day", + "1950-12-08": "Immaculate Conception", + "1950-12-24": "Christmas Eve", + "1950-12-25": "Christmas Day", + "1950-12-26": "St. Stephen's Day", + "1950-12-31": "New Year's Eve", + "1951-01-01": "New Year's Day", + "1951-01-06": "Epiphany", + "1951-03-23": "Good Friday", + "1951-03-26": "Easter Monday", + "1951-05-01": "Labor Day", + "1951-05-03": "Ascension Day", + "1951-05-14": "Whit Monday", + "1951-05-24": "Corpus Christi", + "1951-08-15": "Assumption Day", + "1951-11-01": "All Saints' Day", + "1951-12-08": "Immaculate Conception", + "1951-12-24": "Christmas Eve", + "1951-12-25": "Christmas Day", + "1951-12-26": "St. Stephen's Day", + "1951-12-31": "New Year's Eve", + "1952-01-01": "New Year's Day", + "1952-01-06": "Epiphany", + "1952-04-11": "Good Friday", + "1952-04-14": "Easter Monday", + "1952-05-01": "Labor Day", + "1952-05-22": "Ascension Day", + "1952-06-02": "Whit Monday", + "1952-06-12": "Corpus Christi", + "1952-08-15": "Assumption Day", + "1952-11-01": "All Saints' Day", + "1952-12-08": "Immaculate Conception", + "1952-12-24": "Christmas Eve", + "1952-12-25": "Christmas Day", + "1952-12-26": "St. Stephen's Day", + "1952-12-31": "New Year's Eve", + "1953-01-01": "New Year's Day", + "1953-01-06": "Epiphany", + "1953-04-03": "Good Friday", + "1953-04-06": "Easter Monday", + "1953-05-01": "Labor Day", + "1953-05-14": "Ascension Day", + "1953-05-25": "Whit Monday", + "1953-06-04": "Corpus Christi", + "1953-08-15": "Assumption Day", + "1953-11-01": "All Saints' Day", + "1953-12-08": "Immaculate Conception", + "1953-12-24": "Christmas Eve", + "1953-12-25": "Christmas Day", + "1953-12-26": "St. Stephen's Day", + "1953-12-31": "New Year's Eve", + "1954-01-01": "New Year's Day", + "1954-01-06": "Epiphany", + "1954-04-16": "Good Friday", + "1954-04-19": "Easter Monday", + "1954-05-01": "Labor Day", + "1954-05-27": "Ascension Day", + "1954-06-07": "Whit Monday", + "1954-06-17": "Corpus Christi", + "1954-08-15": "Assumption Day", + "1954-11-01": "All Saints' Day", + "1954-12-08": "Immaculate Conception", + "1954-12-24": "Christmas Eve", + "1954-12-25": "Christmas Day", + "1954-12-26": "St. Stephen's Day", + "1954-12-31": "New Year's Eve", + "1955-01-01": "New Year's Day", + "1955-01-06": "Epiphany", + "1955-04-08": "Good Friday", + "1955-04-11": "Easter Monday", + "1955-05-01": "Labor Day", + "1955-05-19": "Ascension Day", + "1955-05-30": "Whit Monday", + "1955-06-09": "Corpus Christi", + "1955-08-15": "Assumption Day", + "1955-11-01": "All Saints' Day", + "1955-12-08": "Immaculate Conception", + "1955-12-24": "Christmas Eve", + "1955-12-25": "Christmas Day", + "1955-12-26": "St. Stephen's Day", + "1955-12-31": "New Year's Eve", + "1956-01-01": "New Year's Day", + "1956-01-06": "Epiphany", + "1956-03-30": "Good Friday", + "1956-04-02": "Easter Monday", + "1956-05-01": "Labor Day", + "1956-05-10": "Ascension Day", + "1956-05-21": "Whit Monday", + "1956-05-31": "Corpus Christi", + "1956-08-15": "Assumption Day", + "1956-11-01": "All Saints' Day", + "1956-12-08": "Immaculate Conception", + "1956-12-24": "Christmas Eve", + "1956-12-25": "Christmas Day", + "1956-12-26": "St. Stephen's Day", + "1956-12-31": "New Year's Eve", + "1957-01-01": "New Year's Day", + "1957-01-06": "Epiphany", + "1957-04-19": "Good Friday", + "1957-04-22": "Easter Monday", + "1957-05-01": "Labor Day", + "1957-05-30": "Ascension Day", + "1957-06-10": "Whit Monday", + "1957-06-20": "Corpus Christi", + "1957-08-15": "Assumption Day", + "1957-11-01": "All Saints' Day", + "1957-12-08": "Immaculate Conception", + "1957-12-24": "Christmas Eve", + "1957-12-25": "Christmas Day", + "1957-12-26": "St. Stephen's Day", + "1957-12-31": "New Year's Eve", + "1958-01-01": "New Year's Day", + "1958-01-06": "Epiphany", + "1958-04-04": "Good Friday", + "1958-04-07": "Easter Monday", + "1958-05-01": "Labor Day", + "1958-05-15": "Ascension Day", + "1958-05-26": "Whit Monday", + "1958-06-05": "Corpus Christi", + "1958-08-15": "Assumption Day", + "1958-11-01": "All Saints' Day", + "1958-12-08": "Immaculate Conception", + "1958-12-24": "Christmas Eve", + "1958-12-25": "Christmas Day", + "1958-12-26": "St. Stephen's Day", + "1958-12-31": "New Year's Eve", + "1959-01-01": "New Year's Day", + "1959-01-06": "Epiphany", + "1959-03-27": "Good Friday", + "1959-03-30": "Easter Monday", + "1959-05-01": "Labor Day", + "1959-05-07": "Ascension Day", + "1959-05-18": "Whit Monday", + "1959-05-28": "Corpus Christi", + "1959-08-15": "Assumption Day", + "1959-11-01": "All Saints' Day", + "1959-12-08": "Immaculate Conception", + "1959-12-24": "Christmas Eve", + "1959-12-25": "Christmas Day", + "1959-12-26": "St. Stephen's Day", + "1959-12-31": "New Year's Eve", + "1960-01-01": "New Year's Day", + "1960-01-06": "Epiphany", + "1960-04-15": "Good Friday", + "1960-04-18": "Easter Monday", + "1960-05-01": "Labor Day", + "1960-05-26": "Ascension Day", + "1960-06-06": "Whit Monday", + "1960-06-16": "Corpus Christi", + "1960-08-15": "Assumption Day", + "1960-11-01": "All Saints' Day", + "1960-12-08": "Immaculate Conception", + "1960-12-24": "Christmas Eve", + "1960-12-25": "Christmas Day", + "1960-12-26": "St. Stephen's Day", + "1960-12-31": "New Year's Eve", + "1961-01-01": "New Year's Day", + "1961-01-06": "Epiphany", + "1961-03-31": "Good Friday", + "1961-04-03": "Easter Monday", + "1961-05-01": "Labor Day", + "1961-05-11": "Ascension Day", + "1961-05-22": "Whit Monday", + "1961-06-01": "Corpus Christi", + "1961-08-15": "Assumption Day", + "1961-11-01": "All Saints' Day", + "1961-12-08": "Immaculate Conception", + "1961-12-24": "Christmas Eve", + "1961-12-25": "Christmas Day", + "1961-12-26": "St. Stephen's Day", + "1961-12-31": "New Year's Eve", + "1962-01-01": "New Year's Day", + "1962-01-06": "Epiphany", + "1962-04-20": "Good Friday", + "1962-04-23": "Easter Monday", + "1962-05-01": "Labor Day", + "1962-05-31": "Ascension Day", + "1962-06-11": "Whit Monday", + "1962-06-21": "Corpus Christi", + "1962-08-15": "Assumption Day", + "1962-11-01": "All Saints' Day", + "1962-12-08": "Immaculate Conception", + "1962-12-24": "Christmas Eve", + "1962-12-25": "Christmas Day", + "1962-12-26": "St. Stephen's Day", + "1962-12-31": "New Year's Eve", + "1963-01-01": "New Year's Day", + "1963-01-06": "Epiphany", + "1963-04-12": "Good Friday", + "1963-04-15": "Easter Monday", + "1963-05-01": "Labor Day", + "1963-05-23": "Ascension Day", + "1963-06-03": "Whit Monday", + "1963-06-13": "Corpus Christi", + "1963-08-15": "Assumption Day", + "1963-11-01": "All Saints' Day", + "1963-12-08": "Immaculate Conception", + "1963-12-24": "Christmas Eve", + "1963-12-25": "Christmas Day", + "1963-12-26": "St. Stephen's Day", + "1963-12-31": "New Year's Eve", + "1964-01-01": "New Year's Day", + "1964-01-06": "Epiphany", + "1964-03-27": "Good Friday", + "1964-03-30": "Easter Monday", + "1964-05-01": "Labor Day", + "1964-05-07": "Ascension Day", + "1964-05-18": "Whit Monday", + "1964-05-28": "Corpus Christi", + "1964-08-15": "Assumption Day", + "1964-11-01": "All Saints' Day", + "1964-12-08": "Immaculate Conception", + "1964-12-24": "Christmas Eve", + "1964-12-25": "Christmas Day", + "1964-12-26": "St. Stephen's Day", + "1964-12-31": "New Year's Eve", + "1965-01-01": "New Year's Day", + "1965-01-06": "Epiphany", + "1965-04-16": "Good Friday", + "1965-04-19": "Easter Monday", + "1965-05-01": "Labor Day", + "1965-05-27": "Ascension Day", + "1965-06-07": "Whit Monday", + "1965-06-17": "Corpus Christi", + "1965-08-15": "Assumption Day", + "1965-11-01": "All Saints' Day", + "1965-12-08": "Immaculate Conception", + "1965-12-24": "Christmas Eve", + "1965-12-25": "Christmas Day", + "1965-12-26": "St. Stephen's Day", + "1965-12-31": "New Year's Eve", + "1966-01-01": "New Year's Day", + "1966-01-06": "Epiphany", + "1966-04-08": "Good Friday", + "1966-04-11": "Easter Monday", + "1966-05-01": "Labor Day", + "1966-05-19": "Ascension Day", + "1966-05-30": "Whit Monday", + "1966-06-09": "Corpus Christi", + "1966-08-15": "Assumption Day", + "1966-11-01": "All Saints' Day", + "1966-12-08": "Immaculate Conception", + "1966-12-24": "Christmas Eve", + "1966-12-25": "Christmas Day", + "1966-12-26": "St. Stephen's Day", + "1966-12-31": "New Year's Eve", + "1967-01-01": "New Year's Day", + "1967-01-06": "Epiphany", + "1967-03-24": "Good Friday", + "1967-03-27": "Easter Monday", + "1967-05-01": "Labor Day", + "1967-05-04": "Ascension Day", + "1967-05-15": "Whit Monday", + "1967-05-25": "Corpus Christi", + "1967-08-15": "Assumption Day", + "1967-10-26": "National Day", + "1967-11-01": "All Saints' Day", + "1967-12-08": "Immaculate Conception", + "1967-12-24": "Christmas Eve", + "1967-12-25": "Christmas Day", + "1967-12-26": "St. Stephen's Day", + "1967-12-31": "New Year's Eve", + "1968-01-01": "New Year's Day", + "1968-01-06": "Epiphany", + "1968-04-12": "Good Friday", + "1968-04-15": "Easter Monday", + "1968-05-01": "Labor Day", + "1968-05-23": "Ascension Day", + "1968-06-03": "Whit Monday", + "1968-06-13": "Corpus Christi", + "1968-08-15": "Assumption Day", + "1968-10-26": "National Day", + "1968-11-01": "All Saints' Day", + "1968-12-08": "Immaculate Conception", + "1968-12-24": "Christmas Eve", + "1968-12-25": "Christmas Day", + "1968-12-26": "St. Stephen's Day", + "1968-12-31": "New Year's Eve", + "1969-01-01": "New Year's Day", + "1969-01-06": "Epiphany", + "1969-04-04": "Good Friday", + "1969-04-07": "Easter Monday", + "1969-05-01": "Labor Day", + "1969-05-15": "Ascension Day", + "1969-05-26": "Whit Monday", + "1969-06-05": "Corpus Christi", + "1969-08-15": "Assumption Day", + "1969-10-26": "National Day", + "1969-11-01": "All Saints' Day", + "1969-12-08": "Immaculate Conception", + "1969-12-24": "Christmas Eve", + "1969-12-25": "Christmas Day", + "1969-12-26": "St. Stephen's Day", + "1969-12-31": "New Year's Eve", + "1970-01-01": "New Year's Day", + "1970-01-06": "Epiphany", + "1970-03-27": "Good Friday", + "1970-03-30": "Easter Monday", + "1970-05-01": "Labor Day", + "1970-05-07": "Ascension Day", + "1970-05-18": "Whit Monday", + "1970-05-28": "Corpus Christi", + "1970-08-15": "Assumption Day", + "1970-10-26": "National Day", + "1970-11-01": "All Saints' Day", + "1970-12-08": "Immaculate Conception", + "1970-12-24": "Christmas Eve", + "1970-12-25": "Christmas Day", + "1970-12-26": "St. Stephen's Day", + "1970-12-31": "New Year's Eve", + "1971-01-01": "New Year's Day", + "1971-01-06": "Epiphany", + "1971-04-09": "Good Friday", + "1971-04-12": "Easter Monday", + "1971-05-01": "Labor Day", + "1971-05-20": "Ascension Day", + "1971-05-31": "Whit Monday", + "1971-06-10": "Corpus Christi", + "1971-08-15": "Assumption Day", + "1971-10-26": "National Day", + "1971-11-01": "All Saints' Day", + "1971-12-08": "Immaculate Conception", + "1971-12-24": "Christmas Eve", + "1971-12-25": "Christmas Day", + "1971-12-26": "St. Stephen's Day", + "1971-12-31": "New Year's Eve", + "1972-01-01": "New Year's Day", + "1972-01-06": "Epiphany", + "1972-03-31": "Good Friday", + "1972-04-03": "Easter Monday", + "1972-05-01": "Labor Day", + "1972-05-11": "Ascension Day", + "1972-05-22": "Whit Monday", + "1972-06-01": "Corpus Christi", + "1972-08-15": "Assumption Day", + "1972-10-26": "National Day", + "1972-11-01": "All Saints' Day", + "1972-12-08": "Immaculate Conception", + "1972-12-24": "Christmas Eve", + "1972-12-25": "Christmas Day", + "1972-12-26": "St. Stephen's Day", + "1972-12-31": "New Year's Eve", + "1973-01-01": "New Year's Day", + "1973-01-06": "Epiphany", + "1973-04-20": "Good Friday", + "1973-04-23": "Easter Monday", + "1973-05-01": "Labor Day", + "1973-05-31": "Ascension Day", + "1973-06-11": "Whit Monday", + "1973-06-21": "Corpus Christi", + "1973-08-15": "Assumption Day", + "1973-10-26": "National Day", + "1973-11-01": "All Saints' Day", + "1973-12-08": "Immaculate Conception", + "1973-12-24": "Christmas Eve", + "1973-12-25": "Christmas Day", + "1973-12-26": "St. Stephen's Day", + "1973-12-31": "New Year's Eve", + "1974-01-01": "New Year's Day", + "1974-01-06": "Epiphany", + "1974-04-12": "Good Friday", + "1974-04-15": "Easter Monday", + "1974-05-01": "Labor Day", + "1974-05-23": "Ascension Day", + "1974-06-03": "Whit Monday", + "1974-06-13": "Corpus Christi", + "1974-08-15": "Assumption Day", + "1974-10-26": "National Day", + "1974-11-01": "All Saints' Day", + "1974-12-08": "Immaculate Conception", + "1974-12-24": "Christmas Eve", + "1974-12-25": "Christmas Day", + "1974-12-26": "St. Stephen's Day", + "1974-12-31": "New Year's Eve", + "1975-01-01": "New Year's Day", + "1975-01-06": "Epiphany", + "1975-03-28": "Good Friday", + "1975-03-31": "Easter Monday", + "1975-05-01": "Labor Day", + "1975-05-08": "Ascension Day", + "1975-05-19": "Whit Monday", + "1975-05-29": "Corpus Christi", + "1975-08-15": "Assumption Day", + "1975-10-26": "National Day", + "1975-11-01": "All Saints' Day", + "1975-12-08": "Immaculate Conception", + "1975-12-24": "Christmas Eve", + "1975-12-25": "Christmas Day", + "1975-12-26": "St. Stephen's Day", + "1975-12-31": "New Year's Eve", + "1976-01-01": "New Year's Day", + "1976-01-06": "Epiphany", + "1976-04-16": "Good Friday", + "1976-04-19": "Easter Monday", + "1976-05-01": "Labor Day", + "1976-05-27": "Ascension Day", + "1976-06-07": "Whit Monday", + "1976-06-17": "Corpus Christi", + "1976-08-15": "Assumption Day", + "1976-10-26": "National Day", + "1976-11-01": "All Saints' Day", + "1976-12-08": "Immaculate Conception", + "1976-12-24": "Christmas Eve", + "1976-12-25": "Christmas Day", + "1976-12-26": "St. Stephen's Day", + "1976-12-31": "New Year's Eve", + "1977-01-01": "New Year's Day", + "1977-01-06": "Epiphany", + "1977-04-08": "Good Friday", + "1977-04-11": "Easter Monday", + "1977-05-01": "Labor Day", + "1977-05-19": "Ascension Day", + "1977-05-30": "Whit Monday", + "1977-06-09": "Corpus Christi", + "1977-08-15": "Assumption Day", + "1977-10-26": "National Day", + "1977-11-01": "All Saints' Day", + "1977-12-08": "Immaculate Conception", + "1977-12-24": "Christmas Eve", + "1977-12-25": "Christmas Day", + "1977-12-26": "St. Stephen's Day", + "1977-12-31": "New Year's Eve", + "1978-01-01": "New Year's Day", + "1978-01-06": "Epiphany", + "1978-03-24": "Good Friday", + "1978-03-27": "Easter Monday", + "1978-05-01": "Labor Day", + "1978-05-04": "Ascension Day", + "1978-05-15": "Whit Monday", + "1978-05-25": "Corpus Christi", + "1978-08-15": "Assumption Day", + "1978-10-26": "National Day", + "1978-11-01": "All Saints' Day", + "1978-12-08": "Immaculate Conception", + "1978-12-24": "Christmas Eve", + "1978-12-25": "Christmas Day", + "1978-12-26": "St. Stephen's Day", + "1978-12-31": "New Year's Eve", + "1979-01-01": "New Year's Day", + "1979-01-06": "Epiphany", + "1979-04-13": "Good Friday", + "1979-04-16": "Easter Monday", + "1979-05-01": "Labor Day", + "1979-05-24": "Ascension Day", + "1979-06-04": "Whit Monday", + "1979-06-14": "Corpus Christi", + "1979-08-15": "Assumption Day", + "1979-10-26": "National Day", + "1979-11-01": "All Saints' Day", + "1979-12-08": "Immaculate Conception", + "1979-12-24": "Christmas Eve", + "1979-12-25": "Christmas Day", + "1979-12-26": "St. Stephen's Day", + "1979-12-31": "New Year's Eve", + "1980-01-01": "New Year's Day", + "1980-01-06": "Epiphany", + "1980-04-04": "Good Friday", + "1980-04-07": "Easter Monday", + "1980-05-01": "Labor Day", + "1980-05-15": "Ascension Day", + "1980-05-26": "Whit Monday", + "1980-06-05": "Corpus Christi", + "1980-08-15": "Assumption Day", + "1980-10-26": "National Day", + "1980-11-01": "All Saints' Day", + "1980-12-08": "Immaculate Conception", + "1980-12-24": "Christmas Eve", + "1980-12-25": "Christmas Day", + "1980-12-26": "St. Stephen's Day", + "1980-12-31": "New Year's Eve", + "1981-01-01": "New Year's Day", + "1981-01-06": "Epiphany", + "1981-04-17": "Good Friday", + "1981-04-20": "Easter Monday", + "1981-05-01": "Labor Day", + "1981-05-28": "Ascension Day", + "1981-06-08": "Whit Monday", + "1981-06-18": "Corpus Christi", + "1981-08-15": "Assumption Day", + "1981-10-26": "National Day", + "1981-11-01": "All Saints' Day", + "1981-12-08": "Immaculate Conception", + "1981-12-24": "Christmas Eve", + "1981-12-25": "Christmas Day", + "1981-12-26": "St. Stephen's Day", + "1981-12-31": "New Year's Eve", + "1982-01-01": "New Year's Day", + "1982-01-06": "Epiphany", + "1982-04-09": "Good Friday", + "1982-04-12": "Easter Monday", + "1982-05-01": "Labor Day", + "1982-05-20": "Ascension Day", + "1982-05-31": "Whit Monday", + "1982-06-10": "Corpus Christi", + "1982-08-15": "Assumption Day", + "1982-10-26": "National Day", + "1982-11-01": "All Saints' Day", + "1982-12-08": "Immaculate Conception", + "1982-12-24": "Christmas Eve", + "1982-12-25": "Christmas Day", + "1982-12-26": "St. Stephen's Day", + "1982-12-31": "New Year's Eve", + "1983-01-01": "New Year's Day", + "1983-01-06": "Epiphany", + "1983-04-01": "Good Friday", + "1983-04-04": "Easter Monday", + "1983-05-01": "Labor Day", + "1983-05-12": "Ascension Day", + "1983-05-23": "Whit Monday", + "1983-06-02": "Corpus Christi", + "1983-08-15": "Assumption Day", + "1983-10-26": "National Day", + "1983-11-01": "All Saints' Day", + "1983-12-08": "Immaculate Conception", + "1983-12-24": "Christmas Eve", + "1983-12-25": "Christmas Day", + "1983-12-26": "St. Stephen's Day", + "1983-12-31": "New Year's Eve", + "1984-01-01": "New Year's Day", + "1984-01-06": "Epiphany", + "1984-04-20": "Good Friday", + "1984-04-23": "Easter Monday", + "1984-05-01": "Labor Day", + "1984-05-31": "Ascension Day", + "1984-06-11": "Whit Monday", + "1984-06-21": "Corpus Christi", + "1984-08-15": "Assumption Day", + "1984-10-26": "National Day", + "1984-11-01": "All Saints' Day", + "1984-12-08": "Immaculate Conception", + "1984-12-24": "Christmas Eve", + "1984-12-25": "Christmas Day", + "1984-12-26": "St. Stephen's Day", + "1984-12-31": "New Year's Eve", + "1985-01-01": "New Year's Day", + "1985-01-06": "Epiphany", + "1985-04-05": "Good Friday", + "1985-04-08": "Easter Monday", + "1985-05-01": "Labor Day", + "1985-05-16": "Ascension Day", + "1985-05-27": "Whit Monday", + "1985-06-06": "Corpus Christi", + "1985-08-15": "Assumption Day", + "1985-10-26": "National Day", + "1985-11-01": "All Saints' Day", + "1985-12-08": "Immaculate Conception", + "1985-12-24": "Christmas Eve", + "1985-12-25": "Christmas Day", + "1985-12-26": "St. Stephen's Day", + "1985-12-31": "New Year's Eve", + "1986-01-01": "New Year's Day", + "1986-01-06": "Epiphany", + "1986-03-28": "Good Friday", + "1986-03-31": "Easter Monday", + "1986-05-01": "Labor Day", + "1986-05-08": "Ascension Day", + "1986-05-19": "Whit Monday", + "1986-05-29": "Corpus Christi", + "1986-08-15": "Assumption Day", + "1986-10-26": "National Day", + "1986-11-01": "All Saints' Day", + "1986-12-08": "Immaculate Conception", + "1986-12-24": "Christmas Eve", + "1986-12-25": "Christmas Day", + "1986-12-26": "St. Stephen's Day", + "1986-12-31": "New Year's Eve", + "1987-01-01": "New Year's Day", + "1987-01-06": "Epiphany", + "1987-04-17": "Good Friday", + "1987-04-20": "Easter Monday", + "1987-05-01": "Labor Day", + "1987-05-28": "Ascension Day", + "1987-06-08": "Whit Monday", + "1987-06-18": "Corpus Christi", + "1987-08-15": "Assumption Day", + "1987-10-26": "National Day", + "1987-11-01": "All Saints' Day", + "1987-12-08": "Immaculate Conception", + "1987-12-24": "Christmas Eve", + "1987-12-25": "Christmas Day", + "1987-12-26": "St. Stephen's Day", + "1987-12-31": "New Year's Eve", + "1988-01-01": "New Year's Day", + "1988-01-06": "Epiphany", + "1988-04-01": "Good Friday", + "1988-04-04": "Easter Monday", + "1988-05-01": "Labor Day", + "1988-05-12": "Ascension Day", + "1988-05-23": "Whit Monday", + "1988-06-02": "Corpus Christi", + "1988-08-15": "Assumption Day", + "1988-10-26": "National Day", + "1988-11-01": "All Saints' Day", + "1988-12-08": "Immaculate Conception", + "1988-12-24": "Christmas Eve", + "1988-12-25": "Christmas Day", + "1988-12-26": "St. Stephen's Day", + "1988-12-31": "New Year's Eve", + "1989-01-01": "New Year's Day", + "1989-01-06": "Epiphany", + "1989-03-24": "Good Friday", + "1989-03-27": "Easter Monday", + "1989-05-01": "Labor Day", + "1989-05-04": "Ascension Day", + "1989-05-15": "Whit Monday", + "1989-05-25": "Corpus Christi", + "1989-08-15": "Assumption Day", + "1989-10-26": "National Day", + "1989-11-01": "All Saints' Day", + "1989-12-08": "Immaculate Conception", + "1989-12-24": "Christmas Eve", + "1989-12-25": "Christmas Day", + "1989-12-26": "St. Stephen's Day", + "1989-12-31": "New Year's Eve", + "1990-01-01": "New Year's Day", + "1990-01-06": "Epiphany", + "1990-04-13": "Good Friday", + "1990-04-16": "Easter Monday", + "1990-05-01": "Labor Day", + "1990-05-24": "Ascension Day", + "1990-06-04": "Whit Monday", + "1990-06-14": "Corpus Christi", + "1990-08-15": "Assumption Day", + "1990-10-26": "National Day", + "1990-11-01": "All Saints' Day", + "1990-12-08": "Immaculate Conception", + "1990-12-24": "Christmas Eve", + "1990-12-25": "Christmas Day", + "1990-12-26": "St. Stephen's Day", + "1990-12-31": "New Year's Eve", + "1991-01-01": "New Year's Day", + "1991-01-06": "Epiphany", + "1991-03-29": "Good Friday", + "1991-04-01": "Easter Monday", + "1991-05-01": "Labor Day", + "1991-05-09": "Ascension Day", + "1991-05-20": "Whit Monday", + "1991-05-30": "Corpus Christi", + "1991-08-15": "Assumption Day", + "1991-10-26": "National Day", + "1991-11-01": "All Saints' Day", + "1991-12-08": "Immaculate Conception", + "1991-12-24": "Christmas Eve", + "1991-12-25": "Christmas Day", + "1991-12-26": "St. Stephen's Day", + "1991-12-31": "New Year's Eve", + "1992-01-01": "New Year's Day", + "1992-01-06": "Epiphany", + "1992-04-17": "Good Friday", + "1992-04-20": "Easter Monday", + "1992-05-01": "Labor Day", + "1992-05-28": "Ascension Day", + "1992-06-08": "Whit Monday", + "1992-06-18": "Corpus Christi", + "1992-08-15": "Assumption Day", + "1992-10-26": "National Day", + "1992-11-01": "All Saints' Day", + "1992-12-08": "Immaculate Conception", + "1992-12-24": "Christmas Eve", + "1992-12-25": "Christmas Day", + "1992-12-26": "St. Stephen's Day", + "1992-12-31": "New Year's Eve", + "1993-01-01": "New Year's Day", + "1993-01-06": "Epiphany", + "1993-04-09": "Good Friday", + "1993-04-12": "Easter Monday", + "1993-05-01": "Labor Day", + "1993-05-20": "Ascension Day", + "1993-05-31": "Whit Monday", + "1993-06-10": "Corpus Christi", + "1993-08-15": "Assumption Day", + "1993-10-26": "National Day", + "1993-11-01": "All Saints' Day", + "1993-12-08": "Immaculate Conception", + "1993-12-24": "Christmas Eve", + "1993-12-25": "Christmas Day", + "1993-12-26": "St. Stephen's Day", + "1993-12-31": "New Year's Eve", + "1994-01-01": "New Year's Day", + "1994-01-06": "Epiphany", + "1994-04-01": "Good Friday", + "1994-04-04": "Easter Monday", + "1994-05-01": "Labor Day", + "1994-05-12": "Ascension Day", + "1994-05-23": "Whit Monday", + "1994-06-02": "Corpus Christi", + "1994-08-15": "Assumption Day", + "1994-10-26": "National Day", + "1994-11-01": "All Saints' Day", + "1994-12-08": "Immaculate Conception", + "1994-12-24": "Christmas Eve", + "1994-12-25": "Christmas Day", + "1994-12-26": "St. Stephen's Day", + "1994-12-31": "New Year's Eve", + "1995-01-01": "New Year's Day", + "1995-01-06": "Epiphany", + "1995-04-14": "Good Friday", + "1995-04-17": "Easter Monday", + "1995-05-01": "Labor Day", + "1995-05-25": "Ascension Day", + "1995-06-05": "Whit Monday", + "1995-06-15": "Corpus Christi", + "1995-08-15": "Assumption Day", + "1995-10-26": "National Day", + "1995-11-01": "All Saints' Day", + "1995-12-08": "Immaculate Conception", + "1995-12-24": "Christmas Eve", + "1995-12-25": "Christmas Day", + "1995-12-26": "St. Stephen's Day", + "1995-12-31": "New Year's Eve", + "1996-01-01": "New Year's Day", + "1996-01-06": "Epiphany", + "1996-04-05": "Good Friday", + "1996-04-08": "Easter Monday", + "1996-05-01": "Labor Day", + "1996-05-16": "Ascension Day", + "1996-05-27": "Whit Monday", + "1996-06-06": "Corpus Christi", + "1996-08-15": "Assumption Day", + "1996-10-26": "National Day", + "1996-11-01": "All Saints' Day", + "1996-12-08": "Immaculate Conception", + "1996-12-24": "Christmas Eve", + "1996-12-25": "Christmas Day", + "1996-12-26": "St. Stephen's Day", + "1996-12-31": "New Year's Eve", + "1997-01-01": "New Year's Day", + "1997-01-06": "Epiphany", + "1997-03-28": "Good Friday", + "1997-03-31": "Easter Monday", + "1997-05-01": "Labor Day", + "1997-05-08": "Ascension Day", + "1997-05-19": "Whit Monday", + "1997-05-29": "Corpus Christi", + "1997-08-15": "Assumption Day", + "1997-10-26": "National Day", + "1997-11-01": "All Saints' Day", + "1997-12-08": "Immaculate Conception", + "1997-12-24": "Christmas Eve", + "1997-12-25": "Christmas Day", + "1997-12-26": "St. Stephen's Day", + "1997-12-31": "New Year's Eve", + "1998-01-01": "New Year's Day", + "1998-01-06": "Epiphany", + "1998-04-10": "Good Friday", + "1998-04-13": "Easter Monday", + "1998-05-01": "Labor Day", + "1998-05-21": "Ascension Day", + "1998-06-01": "Whit Monday", + "1998-06-11": "Corpus Christi", + "1998-08-15": "Assumption Day", + "1998-10-26": "National Day", + "1998-11-01": "All Saints' Day", + "1998-12-08": "Immaculate Conception", + "1998-12-24": "Christmas Eve", + "1998-12-25": "Christmas Day", + "1998-12-26": "St. Stephen's Day", + "1998-12-31": "New Year's Eve", + "1999-01-01": "New Year's Day", + "1999-01-06": "Epiphany", + "1999-04-02": "Good Friday", + "1999-04-05": "Easter Monday", + "1999-05-01": "Labor Day", + "1999-05-13": "Ascension Day", + "1999-05-24": "Whit Monday", + "1999-06-03": "Corpus Christi", + "1999-08-15": "Assumption Day", + "1999-10-26": "National Day", + "1999-11-01": "All Saints' Day", + "1999-12-08": "Immaculate Conception", + "1999-12-24": "Christmas Eve", + "1999-12-25": "Christmas Day", + "1999-12-26": "St. Stephen's Day", + "1999-12-31": "New Year's Eve", + "2000-01-01": "New Year's Day", + "2000-01-06": "Epiphany", + "2000-04-21": "Good Friday", + "2000-04-24": "Easter Monday", + "2000-05-01": "Labor Day", + "2000-06-01": "Ascension Day", + "2000-06-12": "Whit Monday", + "2000-06-22": "Corpus Christi", + "2000-08-15": "Assumption Day", + "2000-10-26": "National Day", + "2000-11-01": "All Saints' Day", + "2000-12-08": "Immaculate Conception", + "2000-12-24": "Christmas Eve", + "2000-12-25": "Christmas Day", + "2000-12-26": "St. Stephen's Day", + "2000-12-31": "New Year's Eve", + "2001-01-01": "New Year's Day", + "2001-01-06": "Epiphany", + "2001-04-13": "Good Friday", + "2001-04-16": "Easter Monday", + "2001-05-01": "Labor Day", + "2001-05-24": "Ascension Day", + "2001-06-04": "Whit Monday", + "2001-06-14": "Corpus Christi", + "2001-08-15": "Assumption Day", + "2001-10-26": "National Day", + "2001-11-01": "All Saints' Day", + "2001-12-08": "Immaculate Conception", + "2001-12-24": "Christmas Eve", + "2001-12-25": "Christmas Day", + "2001-12-26": "St. Stephen's Day", + "2001-12-31": "New Year's Eve", + "2002-01-01": "New Year's Day", + "2002-01-06": "Epiphany", + "2002-03-29": "Good Friday", + "2002-04-01": "Easter Monday", + "2002-05-01": "Labor Day", + "2002-05-09": "Ascension Day", + "2002-05-20": "Whit Monday", + "2002-05-30": "Corpus Christi", + "2002-08-15": "Assumption Day", + "2002-10-26": "National Day", + "2002-11-01": "All Saints' Day", + "2002-12-08": "Immaculate Conception", + "2002-12-24": "Christmas Eve", + "2002-12-25": "Christmas Day", + "2002-12-26": "St. Stephen's Day", + "2002-12-31": "New Year's Eve", + "2003-01-01": "New Year's Day", + "2003-01-06": "Epiphany", + "2003-04-18": "Good Friday", + "2003-04-21": "Easter Monday", + "2003-05-01": "Labor Day", + "2003-05-29": "Ascension Day", + "2003-06-09": "Whit Monday", + "2003-06-19": "Corpus Christi", + "2003-08-15": "Assumption Day", + "2003-10-26": "National Day", + "2003-11-01": "All Saints' Day", + "2003-12-08": "Immaculate Conception", + "2003-12-24": "Christmas Eve", + "2003-12-25": "Christmas Day", + "2003-12-26": "St. Stephen's Day", + "2003-12-31": "New Year's Eve", + "2004-01-01": "New Year's Day", + "2004-01-06": "Epiphany", + "2004-04-09": "Good Friday", + "2004-04-12": "Easter Monday", + "2004-05-01": "Labor Day", + "2004-05-20": "Ascension Day", + "2004-05-31": "Whit Monday", + "2004-06-10": "Corpus Christi", + "2004-08-15": "Assumption Day", + "2004-10-26": "National Day", + "2004-11-01": "All Saints' Day", + "2004-12-08": "Immaculate Conception", + "2004-12-24": "Christmas Eve", + "2004-12-25": "Christmas Day", + "2004-12-26": "St. Stephen's Day", + "2004-12-31": "New Year's Eve", + "2005-01-01": "New Year's Day", + "2005-01-06": "Epiphany", + "2005-03-25": "Good Friday", + "2005-03-28": "Easter Monday", + "2005-05-01": "Labor Day", + "2005-05-05": "Ascension Day", + "2005-05-16": "Whit Monday", + "2005-05-26": "Corpus Christi", + "2005-08-15": "Assumption Day", + "2005-10-26": "National Day", + "2005-11-01": "All Saints' Day", + "2005-12-08": "Immaculate Conception", + "2005-12-24": "Christmas Eve", + "2005-12-25": "Christmas Day", + "2005-12-26": "St. Stephen's Day", + "2005-12-31": "New Year's Eve", + "2006-01-01": "New Year's Day", + "2006-01-06": "Epiphany", + "2006-04-14": "Good Friday", + "2006-04-17": "Easter Monday", + "2006-05-01": "Labor Day", + "2006-05-25": "Ascension Day", + "2006-06-05": "Whit Monday", + "2006-06-15": "Corpus Christi", + "2006-08-15": "Assumption Day", + "2006-10-26": "National Day", + "2006-11-01": "All Saints' Day", + "2006-12-08": "Immaculate Conception", + "2006-12-24": "Christmas Eve", + "2006-12-25": "Christmas Day", + "2006-12-26": "St. Stephen's Day", + "2006-12-31": "New Year's Eve", + "2007-01-01": "New Year's Day", + "2007-01-06": "Epiphany", + "2007-04-06": "Good Friday", + "2007-04-09": "Easter Monday", + "2007-05-01": "Labor Day", + "2007-05-17": "Ascension Day", + "2007-05-28": "Whit Monday", + "2007-06-07": "Corpus Christi", + "2007-08-15": "Assumption Day", + "2007-10-26": "National Day", + "2007-11-01": "All Saints' Day", + "2007-12-08": "Immaculate Conception", + "2007-12-24": "Christmas Eve", + "2007-12-25": "Christmas Day", + "2007-12-26": "St. Stephen's Day", + "2007-12-31": "New Year's Eve", + "2008-01-01": "New Year's Day", + "2008-01-06": "Epiphany", + "2008-03-21": "Good Friday", + "2008-03-24": "Easter Monday", + "2008-05-01": "Ascension Day; Labor Day", + "2008-05-12": "Whit Monday", + "2008-05-22": "Corpus Christi", + "2008-08-15": "Assumption Day", + "2008-10-26": "National Day", + "2008-11-01": "All Saints' Day", + "2008-12-08": "Immaculate Conception", + "2008-12-24": "Christmas Eve", + "2008-12-25": "Christmas Day", + "2008-12-26": "St. Stephen's Day", + "2008-12-31": "New Year's Eve", + "2009-01-01": "New Year's Day", + "2009-01-06": "Epiphany", + "2009-04-10": "Good Friday", + "2009-04-13": "Easter Monday", + "2009-05-01": "Labor Day", + "2009-05-21": "Ascension Day", + "2009-06-01": "Whit Monday", + "2009-06-11": "Corpus Christi", + "2009-08-15": "Assumption Day", + "2009-10-26": "National Day", + "2009-11-01": "All Saints' Day", + "2009-12-08": "Immaculate Conception", + "2009-12-24": "Christmas Eve", + "2009-12-25": "Christmas Day", + "2009-12-26": "St. Stephen's Day", + "2009-12-31": "New Year's Eve", + "2010-01-01": "New Year's Day", + "2010-01-06": "Epiphany", + "2010-04-02": "Good Friday", + "2010-04-05": "Easter Monday", + "2010-05-01": "Labor Day", + "2010-05-13": "Ascension Day", + "2010-05-24": "Whit Monday", + "2010-06-03": "Corpus Christi", + "2010-08-15": "Assumption Day", + "2010-10-26": "National Day", + "2010-11-01": "All Saints' Day", + "2010-12-08": "Immaculate Conception", + "2010-12-24": "Christmas Eve", + "2010-12-25": "Christmas Day", + "2010-12-26": "St. Stephen's Day", + "2010-12-31": "New Year's Eve", + "2011-01-01": "New Year's Day", + "2011-01-06": "Epiphany", + "2011-04-22": "Good Friday", + "2011-04-25": "Easter Monday", + "2011-05-01": "Labor Day", + "2011-06-02": "Ascension Day", + "2011-06-13": "Whit Monday", + "2011-06-23": "Corpus Christi", + "2011-08-15": "Assumption Day", + "2011-10-26": "National Day", + "2011-11-01": "All Saints' Day", + "2011-12-08": "Immaculate Conception", + "2011-12-24": "Christmas Eve", + "2011-12-25": "Christmas Day", + "2011-12-26": "St. Stephen's Day", + "2011-12-31": "New Year's Eve", + "2012-01-01": "New Year's Day", + "2012-01-06": "Epiphany", + "2012-04-06": "Good Friday", + "2012-04-09": "Easter Monday", + "2012-05-01": "Labor Day", + "2012-05-17": "Ascension Day", + "2012-05-28": "Whit Monday", + "2012-06-07": "Corpus Christi", + "2012-08-15": "Assumption Day", + "2012-10-26": "National Day", + "2012-11-01": "All Saints' Day", + "2012-12-08": "Immaculate Conception", + "2012-12-24": "Christmas Eve", + "2012-12-25": "Christmas Day", + "2012-12-26": "St. Stephen's Day", + "2012-12-31": "New Year's Eve", + "2013-01-01": "New Year's Day", + "2013-01-06": "Epiphany", + "2013-03-29": "Good Friday", + "2013-04-01": "Easter Monday", + "2013-05-01": "Labor Day", + "2013-05-09": "Ascension Day", + "2013-05-20": "Whit Monday", + "2013-05-30": "Corpus Christi", + "2013-08-15": "Assumption Day", + "2013-10-26": "National Day", + "2013-11-01": "All Saints' Day", + "2013-12-08": "Immaculate Conception", + "2013-12-24": "Christmas Eve", + "2013-12-25": "Christmas Day", + "2013-12-26": "St. Stephen's Day", + "2013-12-31": "New Year's Eve", + "2014-01-01": "New Year's Day", + "2014-01-06": "Epiphany", + "2014-04-18": "Good Friday", + "2014-04-21": "Easter Monday", + "2014-05-01": "Labor Day", + "2014-05-29": "Ascension Day", + "2014-06-09": "Whit Monday", + "2014-06-19": "Corpus Christi", + "2014-08-15": "Assumption Day", + "2014-10-26": "National Day", + "2014-11-01": "All Saints' Day", + "2014-12-08": "Immaculate Conception", + "2014-12-24": "Christmas Eve", + "2014-12-25": "Christmas Day", + "2014-12-26": "St. Stephen's Day", + "2014-12-31": "New Year's Eve", + "2015-01-01": "New Year's Day", + "2015-01-06": "Epiphany", + "2015-04-03": "Good Friday", + "2015-04-06": "Easter Monday", + "2015-05-01": "Labor Day", + "2015-05-14": "Ascension Day", + "2015-05-25": "Whit Monday", + "2015-06-04": "Corpus Christi", + "2015-08-15": "Assumption Day", + "2015-10-26": "National Day", + "2015-11-01": "All Saints' Day", + "2015-12-08": "Immaculate Conception", + "2015-12-24": "Christmas Eve", + "2015-12-25": "Christmas Day", + "2015-12-26": "St. Stephen's Day", + "2015-12-31": "New Year's Eve", + "2016-01-01": "New Year's Day", + "2016-01-06": "Epiphany", + "2016-03-25": "Good Friday", + "2016-03-28": "Easter Monday", + "2016-05-01": "Labor Day", + "2016-05-05": "Ascension Day", + "2016-05-16": "Whit Monday", + "2016-05-26": "Corpus Christi", + "2016-08-15": "Assumption Day", + "2016-10-26": "National Day", + "2016-11-01": "All Saints' Day", + "2016-12-08": "Immaculate Conception", + "2016-12-24": "Christmas Eve", + "2016-12-25": "Christmas Day", + "2016-12-26": "St. Stephen's Day", + "2016-12-31": "New Year's Eve", + "2017-01-01": "New Year's Day", + "2017-01-06": "Epiphany", + "2017-04-14": "Good Friday", + "2017-04-17": "Easter Monday", + "2017-05-01": "Labor Day", + "2017-05-25": "Ascension Day", + "2017-06-05": "Whit Monday", + "2017-06-15": "Corpus Christi", + "2017-08-15": "Assumption Day", + "2017-10-26": "National Day", + "2017-11-01": "All Saints' Day", + "2017-12-08": "Immaculate Conception", + "2017-12-24": "Christmas Eve", + "2017-12-25": "Christmas Day", + "2017-12-26": "St. Stephen's Day", + "2017-12-31": "New Year's Eve", + "2018-01-01": "New Year's Day", + "2018-01-06": "Epiphany", + "2018-03-30": "Good Friday", + "2018-04-02": "Easter Monday", + "2018-05-01": "Labor Day", + "2018-05-10": "Ascension Day", + "2018-05-21": "Whit Monday", + "2018-05-31": "Corpus Christi", + "2018-08-15": "Assumption Day", + "2018-10-26": "National Day", + "2018-11-01": "All Saints' Day", + "2018-12-08": "Immaculate Conception", + "2018-12-24": "Christmas Eve", + "2018-12-25": "Christmas Day", + "2018-12-26": "St. Stephen's Day", + "2018-12-31": "New Year's Eve", + "2019-01-01": "New Year's Day", + "2019-01-06": "Epiphany", + "2019-04-19": "Good Friday", + "2019-04-22": "Easter Monday", + "2019-05-01": "Labor Day", + "2019-05-30": "Ascension Day", + "2019-06-10": "Whit Monday", + "2019-06-20": "Corpus Christi", + "2019-08-15": "Assumption Day", + "2019-10-26": "National Day", + "2019-11-01": "All Saints' Day", + "2019-12-08": "Immaculate Conception", + "2019-12-24": "Christmas Eve", + "2019-12-25": "Christmas Day", + "2019-12-26": "St. Stephen's Day", + "2019-12-31": "New Year's Eve", + "2020-01-01": "New Year's Day", + "2020-01-06": "Epiphany", + "2020-04-10": "Good Friday", + "2020-04-13": "Easter Monday", + "2020-05-01": "Labor Day", + "2020-05-21": "Ascension Day", + "2020-06-01": "Whit Monday", + "2020-06-11": "Corpus Christi", + "2020-08-15": "Assumption Day", + "2020-10-26": "National Day", + "2020-11-01": "All Saints' Day", + "2020-12-08": "Immaculate Conception", + "2020-12-24": "Christmas Eve", + "2020-12-25": "Christmas Day", + "2020-12-26": "St. Stephen's Day", + "2020-12-31": "New Year's Eve", + "2021-01-01": "New Year's Day", + "2021-01-06": "Epiphany", + "2021-04-02": "Good Friday", + "2021-04-05": "Easter Monday", + "2021-05-01": "Labor Day", + "2021-05-13": "Ascension Day", + "2021-05-24": "Whit Monday", + "2021-06-03": "Corpus Christi", + "2021-08-15": "Assumption Day", + "2021-10-26": "National Day", + "2021-11-01": "All Saints' Day", + "2021-12-08": "Immaculate Conception", + "2021-12-24": "Christmas Eve", + "2021-12-25": "Christmas Day", + "2021-12-26": "St. Stephen's Day", + "2021-12-31": "New Year's Eve", + "2022-01-01": "New Year's Day", + "2022-01-06": "Epiphany", + "2022-04-15": "Good Friday", + "2022-04-18": "Easter Monday", + "2022-05-01": "Labor Day", + "2022-05-26": "Ascension Day", + "2022-06-06": "Whit Monday", + "2022-06-16": "Corpus Christi", + "2022-08-15": "Assumption Day", + "2022-10-26": "National Day", + "2022-11-01": "All Saints' Day", + "2022-12-08": "Immaculate Conception", + "2022-12-24": "Christmas Eve", + "2022-12-25": "Christmas Day", + "2022-12-26": "St. Stephen's Day", + "2022-12-31": "New Year's Eve", + "2023-01-01": "New Year's Day", + "2023-01-06": "Epiphany", + "2023-04-07": "Good Friday", + "2023-04-10": "Easter Monday", + "2023-05-01": "Labor Day", + "2023-05-18": "Ascension Day", + "2023-05-29": "Whit Monday", + "2023-06-08": "Corpus Christi", + "2023-08-15": "Assumption Day", + "2023-10-26": "National Day", + "2023-11-01": "All Saints' Day", + "2023-12-08": "Immaculate Conception", + "2023-12-24": "Christmas Eve", + "2023-12-25": "Christmas Day", + "2023-12-26": "St. Stephen's Day", + "2023-12-31": "New Year's Eve", + "2024-01-01": "New Year's Day", + "2024-01-06": "Epiphany", + "2024-03-29": "Good Friday", + "2024-04-01": "Easter Monday", + "2024-05-01": "Labor Day", + "2024-05-09": "Ascension Day", + "2024-05-20": "Whit Monday", + "2024-05-30": "Corpus Christi", + "2024-08-15": "Assumption Day", + "2024-10-26": "National Day", + "2024-11-01": "All Saints' Day", + "2024-12-08": "Immaculate Conception", + "2024-12-24": "Christmas Eve", + "2024-12-25": "Christmas Day", + "2024-12-26": "St. Stephen's Day", + "2024-12-31": "New Year's Eve", + "2025-01-01": "New Year's Day", + "2025-01-06": "Epiphany", + "2025-04-18": "Good Friday", + "2025-04-21": "Easter Monday", + "2025-05-01": "Labor Day", + "2025-05-29": "Ascension Day", + "2025-06-09": "Whit Monday", + "2025-06-19": "Corpus Christi", + "2025-08-15": "Assumption Day", + "2025-10-26": "National Day", + "2025-11-01": "All Saints' Day", + "2025-12-08": "Immaculate Conception", + "2025-12-24": "Christmas Eve", + "2025-12-25": "Christmas Day", + "2025-12-26": "St. Stephen's Day", + "2025-12-31": "New Year's Eve", + "2026-01-01": "New Year's Day", + "2026-01-06": "Epiphany", + "2026-04-03": "Good Friday", + "2026-04-06": "Easter Monday", + "2026-05-01": "Labor Day", + "2026-05-14": "Ascension Day", + "2026-05-25": "Whit Monday", + "2026-06-04": "Corpus Christi", + "2026-08-15": "Assumption Day", + "2026-10-26": "National Day", + "2026-11-01": "All Saints' Day", + "2026-12-08": "Immaculate Conception", + "2026-12-24": "Christmas Eve", + "2026-12-25": "Christmas Day", + "2026-12-26": "St. Stephen's Day", + "2026-12-31": "New Year's Eve", + "2027-01-01": "New Year's Day", + "2027-01-06": "Epiphany", + "2027-03-26": "Good Friday", + "2027-03-29": "Easter Monday", + "2027-05-01": "Labor Day", + "2027-05-06": "Ascension Day", + "2027-05-17": "Whit Monday", + "2027-05-27": "Corpus Christi", + "2027-08-15": "Assumption Day", + "2027-10-26": "National Day", + "2027-11-01": "All Saints' Day", + "2027-12-08": "Immaculate Conception", + "2027-12-24": "Christmas Eve", + "2027-12-25": "Christmas Day", + "2027-12-26": "St. Stephen's Day", + "2027-12-31": "New Year's Eve", + "2028-01-01": "New Year's Day", + "2028-01-06": "Epiphany", + "2028-04-14": "Good Friday", + "2028-04-17": "Easter Monday", + "2028-05-01": "Labor Day", + "2028-05-25": "Ascension Day", + "2028-06-05": "Whit Monday", + "2028-06-15": "Corpus Christi", + "2028-08-15": "Assumption Day", + "2028-10-26": "National Day", + "2028-11-01": "All Saints' Day", + "2028-12-08": "Immaculate Conception", + "2028-12-24": "Christmas Eve", + "2028-12-25": "Christmas Day", + "2028-12-26": "St. Stephen's Day", + "2028-12-31": "New Year's Eve", + "2029-01-01": "New Year's Day", + "2029-01-06": "Epiphany", + "2029-03-30": "Good Friday", + "2029-04-02": "Easter Monday", + "2029-05-01": "Labor Day", + "2029-05-10": "Ascension Day", + "2029-05-21": "Whit Monday", + "2029-05-31": "Corpus Christi", + "2029-08-15": "Assumption Day", + "2029-10-26": "National Day", + "2029-11-01": "All Saints' Day", + "2029-12-08": "Immaculate Conception", + "2029-12-24": "Christmas Eve", + "2029-12-25": "Christmas Day", + "2029-12-26": "St. Stephen's Day", + "2029-12-31": "New Year's Eve", + "2030-01-01": "New Year's Day", + "2030-01-06": "Epiphany", + "2030-04-19": "Good Friday", + "2030-04-22": "Easter Monday", + "2030-05-01": "Labor Day", + "2030-05-30": "Ascension Day", + "2030-06-10": "Whit Monday", + "2030-06-20": "Corpus Christi", + "2030-08-15": "Assumption Day", + "2030-10-26": "National Day", + "2030-11-01": "All Saints' Day", + "2030-12-08": "Immaculate Conception", + "2030-12-24": "Christmas Eve", + "2030-12-25": "Christmas Day", + "2030-12-26": "St. Stephen's Day", + "2030-12-31": "New Year's Eve", + "2031-01-01": "New Year's Day", + "2031-01-06": "Epiphany", + "2031-04-11": "Good Friday", + "2031-04-14": "Easter Monday", + "2031-05-01": "Labor Day", + "2031-05-22": "Ascension Day", + "2031-06-02": "Whit Monday", + "2031-06-12": "Corpus Christi", + "2031-08-15": "Assumption Day", + "2031-10-26": "National Day", + "2031-11-01": "All Saints' Day", + "2031-12-08": "Immaculate Conception", + "2031-12-24": "Christmas Eve", + "2031-12-25": "Christmas Day", + "2031-12-26": "St. Stephen's Day", + "2031-12-31": "New Year's Eve", + "2032-01-01": "New Year's Day", + "2032-01-06": "Epiphany", + "2032-03-26": "Good Friday", + "2032-03-29": "Easter Monday", + "2032-05-01": "Labor Day", + "2032-05-06": "Ascension Day", + "2032-05-17": "Whit Monday", + "2032-05-27": "Corpus Christi", + "2032-08-15": "Assumption Day", + "2032-10-26": "National Day", + "2032-11-01": "All Saints' Day", + "2032-12-08": "Immaculate Conception", + "2032-12-24": "Christmas Eve", + "2032-12-25": "Christmas Day", + "2032-12-26": "St. Stephen's Day", + "2032-12-31": "New Year's Eve", + "2033-01-01": "New Year's Day", + "2033-01-06": "Epiphany", + "2033-04-15": "Good Friday", + "2033-04-18": "Easter Monday", + "2033-05-01": "Labor Day", + "2033-05-26": "Ascension Day", + "2033-06-06": "Whit Monday", + "2033-06-16": "Corpus Christi", + "2033-08-15": "Assumption Day", + "2033-10-26": "National Day", + "2033-11-01": "All Saints' Day", + "2033-12-08": "Immaculate Conception", + "2033-12-24": "Christmas Eve", + "2033-12-25": "Christmas Day", + "2033-12-26": "St. Stephen's Day", + "2033-12-31": "New Year's Eve", + "2034-01-01": "New Year's Day", + "2034-01-06": "Epiphany", + "2034-04-07": "Good Friday", + "2034-04-10": "Easter Monday", + "2034-05-01": "Labor Day", + "2034-05-18": "Ascension Day", + "2034-05-29": "Whit Monday", + "2034-06-08": "Corpus Christi", + "2034-08-15": "Assumption Day", + "2034-10-26": "National Day", + "2034-11-01": "All Saints' Day", + "2034-12-08": "Immaculate Conception", + "2034-12-24": "Christmas Eve", + "2034-12-25": "Christmas Day", + "2034-12-26": "St. Stephen's Day", + "2034-12-31": "New Year's Eve", + "2035-01-01": "New Year's Day", + "2035-01-06": "Epiphany", + "2035-03-23": "Good Friday", + "2035-03-26": "Easter Monday", + "2035-05-01": "Labor Day", + "2035-05-03": "Ascension Day", + "2035-05-14": "Whit Monday", + "2035-05-24": "Corpus Christi", + "2035-08-15": "Assumption Day", + "2035-10-26": "National Day", + "2035-11-01": "All Saints' Day", + "2035-12-08": "Immaculate Conception", + "2035-12-24": "Christmas Eve", + "2035-12-25": "Christmas Day", + "2035-12-26": "St. Stephen's Day", + "2035-12-31": "New Year's Eve", + "2036-01-01": "New Year's Day", + "2036-01-06": "Epiphany", + "2036-04-11": "Good Friday", + "2036-04-14": "Easter Monday", + "2036-05-01": "Labor Day", + "2036-05-22": "Ascension Day", + "2036-06-02": "Whit Monday", + "2036-06-12": "Corpus Christi", + "2036-08-15": "Assumption Day", + "2036-10-26": "National Day", + "2036-11-01": "All Saints' Day", + "2036-12-08": "Immaculate Conception", + "2036-12-24": "Christmas Eve", + "2036-12-25": "Christmas Day", + "2036-12-26": "St. Stephen's Day", + "2036-12-31": "New Year's Eve", + "2037-01-01": "New Year's Day", + "2037-01-06": "Epiphany", + "2037-04-03": "Good Friday", + "2037-04-06": "Easter Monday", + "2037-05-01": "Labor Day", + "2037-05-14": "Ascension Day", + "2037-05-25": "Whit Monday", + "2037-06-04": "Corpus Christi", + "2037-08-15": "Assumption Day", + "2037-10-26": "National Day", + "2037-11-01": "All Saints' Day", + "2037-12-08": "Immaculate Conception", + "2037-12-24": "Christmas Eve", + "2037-12-25": "Christmas Day", + "2037-12-26": "St. Stephen's Day", + "2037-12-31": "New Year's Eve", + "2038-01-01": "New Year's Day", + "2038-01-06": "Epiphany", + "2038-04-23": "Good Friday", + "2038-04-26": "Easter Monday", + "2038-05-01": "Labor Day", + "2038-06-03": "Ascension Day", + "2038-06-14": "Whit Monday", + "2038-06-24": "Corpus Christi", + "2038-08-15": "Assumption Day", + "2038-10-26": "National Day", + "2038-11-01": "All Saints' Day", + "2038-12-08": "Immaculate Conception", + "2038-12-24": "Christmas Eve", + "2038-12-25": "Christmas Day", + "2038-12-26": "St. Stephen's Day", + "2038-12-31": "New Year's Eve", + "2039-01-01": "New Year's Day", + "2039-01-06": "Epiphany", + "2039-04-08": "Good Friday", + "2039-04-11": "Easter Monday", + "2039-05-01": "Labor Day", + "2039-05-19": "Ascension Day", + "2039-05-30": "Whit Monday", + "2039-06-09": "Corpus Christi", + "2039-08-15": "Assumption Day", + "2039-10-26": "National Day", + "2039-11-01": "All Saints' Day", + "2039-12-08": "Immaculate Conception", + "2039-12-24": "Christmas Eve", + "2039-12-25": "Christmas Day", + "2039-12-26": "St. Stephen's Day", + "2039-12-31": "New Year's Eve", + "2040-01-01": "New Year's Day", + "2040-01-06": "Epiphany", + "2040-03-30": "Good Friday", + "2040-04-02": "Easter Monday", + "2040-05-01": "Labor Day", + "2040-05-10": "Ascension Day", + "2040-05-21": "Whit Monday", + "2040-05-31": "Corpus Christi", + "2040-08-15": "Assumption Day", + "2040-10-26": "National Day", + "2040-11-01": "All Saints' Day", + "2040-12-08": "Immaculate Conception", + "2040-12-24": "Christmas Eve", + "2040-12-25": "Christmas Day", + "2040-12-26": "St. Stephen's Day", + "2040-12-31": "New Year's Eve", + "2041-01-01": "New Year's Day", + "2041-01-06": "Epiphany", + "2041-04-19": "Good Friday", + "2041-04-22": "Easter Monday", + "2041-05-01": "Labor Day", + "2041-05-30": "Ascension Day", + "2041-06-10": "Whit Monday", + "2041-06-20": "Corpus Christi", + "2041-08-15": "Assumption Day", + "2041-10-26": "National Day", + "2041-11-01": "All Saints' Day", + "2041-12-08": "Immaculate Conception", + "2041-12-24": "Christmas Eve", + "2041-12-25": "Christmas Day", + "2041-12-26": "St. Stephen's Day", + "2041-12-31": "New Year's Eve", + "2042-01-01": "New Year's Day", + "2042-01-06": "Epiphany", + "2042-04-04": "Good Friday", + "2042-04-07": "Easter Monday", + "2042-05-01": "Labor Day", + "2042-05-15": "Ascension Day", + "2042-05-26": "Whit Monday", + "2042-06-05": "Corpus Christi", + "2042-08-15": "Assumption Day", + "2042-10-26": "National Day", + "2042-11-01": "All Saints' Day", + "2042-12-08": "Immaculate Conception", + "2042-12-24": "Christmas Eve", + "2042-12-25": "Christmas Day", + "2042-12-26": "St. Stephen's Day", + "2042-12-31": "New Year's Eve", + "2043-01-01": "New Year's Day", + "2043-01-06": "Epiphany", + "2043-03-27": "Good Friday", + "2043-03-30": "Easter Monday", + "2043-05-01": "Labor Day", + "2043-05-07": "Ascension Day", + "2043-05-18": "Whit Monday", + "2043-05-28": "Corpus Christi", + "2043-08-15": "Assumption Day", + "2043-10-26": "National Day", + "2043-11-01": "All Saints' Day", + "2043-12-08": "Immaculate Conception", + "2043-12-24": "Christmas Eve", + "2043-12-25": "Christmas Day", + "2043-12-26": "St. Stephen's Day", + "2043-12-31": "New Year's Eve", + "2044-01-01": "New Year's Day", + "2044-01-06": "Epiphany", + "2044-04-15": "Good Friday", + "2044-04-18": "Easter Monday", + "2044-05-01": "Labor Day", + "2044-05-26": "Ascension Day", + "2044-06-06": "Whit Monday", + "2044-06-16": "Corpus Christi", + "2044-08-15": "Assumption Day", + "2044-10-26": "National Day", + "2044-11-01": "All Saints' Day", + "2044-12-08": "Immaculate Conception", + "2044-12-24": "Christmas Eve", + "2044-12-25": "Christmas Day", + "2044-12-26": "St. Stephen's Day", + "2044-12-31": "New Year's Eve", + "2045-01-01": "New Year's Day", + "2045-01-06": "Epiphany", + "2045-04-07": "Good Friday", + "2045-04-10": "Easter Monday", + "2045-05-01": "Labor Day", + "2045-05-18": "Ascension Day", + "2045-05-29": "Whit Monday", + "2045-06-08": "Corpus Christi", + "2045-08-15": "Assumption Day", + "2045-10-26": "National Day", + "2045-11-01": "All Saints' Day", + "2045-12-08": "Immaculate Conception", + "2045-12-24": "Christmas Eve", + "2045-12-25": "Christmas Day", + "2045-12-26": "St. Stephen's Day", + "2045-12-31": "New Year's Eve", + "2046-01-01": "New Year's Day", + "2046-01-06": "Epiphany", + "2046-03-23": "Good Friday", + "2046-03-26": "Easter Monday", + "2046-05-01": "Labor Day", + "2046-05-03": "Ascension Day", + "2046-05-14": "Whit Monday", + "2046-05-24": "Corpus Christi", + "2046-08-15": "Assumption Day", + "2046-10-26": "National Day", + "2046-11-01": "All Saints' Day", + "2046-12-08": "Immaculate Conception", + "2046-12-24": "Christmas Eve", + "2046-12-25": "Christmas Day", + "2046-12-26": "St. Stephen's Day", + "2046-12-31": "New Year's Eve", + "2047-01-01": "New Year's Day", + "2047-01-06": "Epiphany", + "2047-04-12": "Good Friday", + "2047-04-15": "Easter Monday", + "2047-05-01": "Labor Day", + "2047-05-23": "Ascension Day", + "2047-06-03": "Whit Monday", + "2047-06-13": "Corpus Christi", + "2047-08-15": "Assumption Day", + "2047-10-26": "National Day", + "2047-11-01": "All Saints' Day", + "2047-12-08": "Immaculate Conception", + "2047-12-24": "Christmas Eve", + "2047-12-25": "Christmas Day", + "2047-12-26": "St. Stephen's Day", + "2047-12-31": "New Year's Eve", + "2048-01-01": "New Year's Day", + "2048-01-06": "Epiphany", + "2048-04-03": "Good Friday", + "2048-04-06": "Easter Monday", + "2048-05-01": "Labor Day", + "2048-05-14": "Ascension Day", + "2048-05-25": "Whit Monday", + "2048-06-04": "Corpus Christi", + "2048-08-15": "Assumption Day", + "2048-10-26": "National Day", + "2048-11-01": "All Saints' Day", + "2048-12-08": "Immaculate Conception", + "2048-12-24": "Christmas Eve", + "2048-12-25": "Christmas Day", + "2048-12-26": "St. Stephen's Day", + "2048-12-31": "New Year's Eve", + "2049-01-01": "New Year's Day", + "2049-01-06": "Epiphany", + "2049-04-16": "Good Friday", + "2049-04-19": "Easter Monday", + "2049-05-01": "Labor Day", + "2049-05-27": "Ascension Day", + "2049-06-07": "Whit Monday", + "2049-06-17": "Corpus Christi", + "2049-08-15": "Assumption Day", + "2049-10-26": "National Day", + "2049-11-01": "All Saints' Day", + "2049-12-08": "Immaculate Conception", + "2049-12-24": "Christmas Eve", + "2049-12-25": "Christmas Day", + "2049-12-26": "St. Stephen's Day", + "2049-12-31": "New Year's Eve", + "2050-01-01": "New Year's Day", + "2050-01-06": "Epiphany", + "2050-04-08": "Good Friday", + "2050-04-11": "Easter Monday", + "2050-05-01": "Labor Day", + "2050-05-19": "Ascension Day", + "2050-05-30": "Whit Monday", + "2050-06-09": "Corpus Christi", + "2050-08-15": "Assumption Day", + "2050-10-26": "National Day", + "2050-11-01": "All Saints' Day", + "2050-12-08": "Immaculate Conception", + "2050-12-24": "Christmas Eve", + "2050-12-25": "Christmas Day", + "2050-12-26": "St. Stephen's Day", + "2050-12-31": "New Year's Eve" +} diff --git a/snapshots/countries/AU.json b/snapshots/countries/AU.json new file mode 100644 index 000000000..2d269f555 --- /dev/null +++ b/snapshots/countries/AU.json @@ -0,0 +1,2176 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-02": "New Year's Day (Observed)", + "1950-01-26": "Australia Day", + "1950-03-06": "Labour Day", + "1950-03-12": "Canberra Day", + "1950-03-13": "Eight Hours Day; Labour Day", + "1950-03-20": "Adelaide Cup", + "1950-04-07": "Good Friday", + "1950-04-08": "Easter Saturday", + "1950-04-09": "Easter Sunday", + "1950-04-10": "Easter Monday", + "1950-04-25": "Anzac Day", + "1950-05-01": "Labour Day; May Day", + "1950-06-05": "Foundation Day", + "1950-06-12": "King's Birthday", + "1950-08-07": "Bank Holiday; Picnic Day", + "1950-08-16": "The Royal Queensland Show", + "1950-09-25": "King's Birthday", + "1950-10-02": "Labour Day", + "1950-11-07": "Melbourne Cup", + "1950-12-25": "Christmas Day", + "1950-12-26": "Boxing Day; Proclamation Day", + "1951-01-01": "New Year's Day", + "1951-01-26": "Australia Day", + "1951-03-05": "Labour Day", + "1951-03-12": "Canberra Day; Eight Hours Day; Labour Day", + "1951-03-19": "Adelaide Cup", + "1951-03-23": "Good Friday", + "1951-03-24": "Easter Saturday", + "1951-03-25": "Easter Sunday", + "1951-03-26": "Easter Monday", + "1951-04-25": "Anzac Day", + "1951-05-07": "Labour Day; May Day", + "1951-06-04": "Foundation Day", + "1951-06-11": "King's Birthday", + "1951-08-06": "Bank Holiday; Picnic Day", + "1951-08-15": "The Royal Queensland Show", + "1951-10-01": "King's Birthday; Labour Day", + "1951-11-06": "Melbourne Cup", + "1951-12-25": "Christmas Day", + "1951-12-26": "Boxing Day; Proclamation Day", + "1952-01-01": "New Year's Day", + "1952-01-26": "Australia Day", + "1952-01-28": "Australia Day (Observed)", + "1952-03-03": "Labour Day", + "1952-03-10": "Eight Hours Day; Labour Day", + "1952-03-12": "Canberra Day", + "1952-03-17": "Adelaide Cup", + "1952-04-11": "Good Friday", + "1952-04-12": "Easter Saturday", + "1952-04-13": "Easter Sunday", + "1952-04-14": "Easter Monday", + "1952-04-25": "Anzac Day", + "1952-05-05": "Labour Day; May Day", + "1952-06-02": "Foundation Day", + "1952-06-09": "Queen's Birthday", + "1952-08-04": "Bank Holiday; Picnic Day", + "1952-08-13": "The Royal Queensland Show", + "1952-09-29": "Queen's Birthday", + "1952-10-06": "Labour Day", + "1952-11-04": "Melbourne Cup", + "1952-12-25": "Christmas Day", + "1952-12-26": "Boxing Day; Proclamation Day", + "1953-01-01": "New Year's Day", + "1953-01-26": "Australia Day", + "1953-03-02": "Labour Day", + "1953-03-09": "Eight Hours Day; Labour Day", + "1953-03-12": "Canberra Day", + "1953-03-16": "Adelaide Cup", + "1953-04-03": "Good Friday", + "1953-04-04": "Easter Saturday", + "1953-04-05": "Easter Sunday", + "1953-04-06": "Easter Monday", + "1953-04-25": "Anzac Day", + "1953-04-27": "Anzac Day (Observed)", + "1953-05-04": "Labour Day; May Day", + "1953-06-01": "Foundation Day", + "1953-06-08": "Queen's Birthday", + "1953-08-03": "Bank Holiday; Picnic Day", + "1953-08-12": "The Royal Queensland Show", + "1953-09-28": "Queen's Birthday", + "1953-10-05": "Labour Day", + "1953-11-03": "Melbourne Cup", + "1953-12-25": "Christmas Day", + "1953-12-26": "Boxing Day; Proclamation Day", + "1953-12-28": "Boxing Day (Observed); Proclamation Day (Observed)", + "1954-01-01": "New Year's Day", + "1954-01-26": "Australia Day", + "1954-03-01": "Labour Day", + "1954-03-08": "Eight Hours Day; Labour Day", + "1954-03-12": "Canberra Day", + "1954-03-15": "Adelaide Cup", + "1954-04-16": "Good Friday", + "1954-04-17": "Easter Saturday", + "1954-04-18": "Easter Sunday", + "1954-04-19": "Easter Monday", + "1954-04-25": "Anzac Day", + "1954-04-26": "Anzac Day (Observed)", + "1954-05-03": "Labour Day; May Day", + "1954-06-07": "Foundation Day", + "1954-06-14": "Queen's Birthday", + "1954-08-02": "Bank Holiday; Picnic Day", + "1954-08-11": "The Royal Queensland Show", + "1954-09-27": "Queen's Birthday", + "1954-10-04": "Labour Day", + "1954-11-02": "Melbourne Cup", + "1954-12-25": "Christmas Day", + "1954-12-26": "Boxing Day; Proclamation Day", + "1954-12-27": "Christmas Day (Observed)", + "1954-12-28": "Boxing Day (Observed); Proclamation Day (Observed)", + "1955-01-01": "New Year's Day", + "1955-01-03": "New Year's Day (Observed)", + "1955-01-26": "Australia Day", + "1955-03-07": "Labour Day", + "1955-03-12": "Canberra Day", + "1955-03-14": "Eight Hours Day; Labour Day", + "1955-03-21": "Adelaide Cup", + "1955-04-08": "Good Friday", + "1955-04-09": "Easter Saturday", + "1955-04-10": "Easter Sunday", + "1955-04-11": "Easter Monday", + "1955-04-25": "Anzac Day", + "1955-05-02": "Labour Day; May Day", + "1955-06-06": "Foundation Day", + "1955-06-13": "Queen's Birthday", + "1955-08-01": "Bank Holiday; Picnic Day", + "1955-08-10": "The Royal Queensland Show", + "1955-09-26": "Queen's Birthday", + "1955-10-03": "Labour Day", + "1955-11-01": "Melbourne Cup", + "1955-12-25": "Christmas Day", + "1955-12-26": "Boxing Day; Proclamation Day", + "1955-12-27": "Christmas Day (Observed)", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year's Day (Observed)", + "1956-01-26": "Australia Day", + "1956-03-05": "Labour Day", + "1956-03-12": "Canberra Day; Eight Hours Day; Labour Day", + "1956-03-19": "Adelaide Cup", + "1956-03-30": "Good Friday", + "1956-03-31": "Easter Saturday", + "1956-04-01": "Easter Sunday", + "1956-04-02": "Easter Monday", + "1956-04-25": "Anzac Day", + "1956-05-07": "Labour Day; May Day", + "1956-06-04": "Foundation Day", + "1956-06-11": "Queen's Birthday", + "1956-08-06": "Bank Holiday; Picnic Day", + "1956-08-15": "The Royal Queensland Show", + "1956-10-01": "Labour Day; Queen's Birthday", + "1956-11-06": "Melbourne Cup", + "1956-12-25": "Christmas Day", + "1956-12-26": "Boxing Day; Proclamation Day", + "1957-01-01": "New Year's Day", + "1957-01-26": "Australia Day", + "1957-01-28": "Australia Day (Observed)", + "1957-03-04": "Labour Day", + "1957-03-11": "Eight Hours Day; Labour Day", + "1957-03-12": "Canberra Day", + "1957-03-18": "Adelaide Cup", + "1957-04-19": "Good Friday", + "1957-04-20": "Easter Saturday", + "1957-04-21": "Easter Sunday", + "1957-04-22": "Easter Monday", + "1957-04-25": "Anzac Day", + "1957-05-06": "Labour Day; May Day", + "1957-06-03": "Foundation Day", + "1957-06-10": "Queen's Birthday", + "1957-08-05": "Bank Holiday; Picnic Day", + "1957-08-14": "The Royal Queensland Show", + "1957-09-30": "Queen's Birthday", + "1957-10-07": "Labour Day", + "1957-11-05": "Melbourne Cup", + "1957-12-25": "Christmas Day", + "1957-12-26": "Boxing Day; Proclamation Day", + "1958-01-01": "New Year's Day", + "1958-01-26": "Australia Day", + "1958-01-27": "Australia Day (Observed)", + "1958-03-03": "Labour Day", + "1958-03-10": "Eight Hours Day; Labour Day", + "1958-03-17": "Adelaide Cup; Canberra Day", + "1958-04-04": "Good Friday", + "1958-04-05": "Easter Saturday", + "1958-04-06": "Easter Sunday", + "1958-04-07": "Easter Monday", + "1958-04-25": "Anzac Day", + "1958-05-05": "Labour Day; May Day", + "1958-06-02": "Foundation Day", + "1958-06-09": "Queen's Birthday", + "1958-08-04": "Bank Holiday; Picnic Day", + "1958-08-13": "The Royal Queensland Show", + "1958-09-29": "Queen's Birthday", + "1958-10-06": "Labour Day", + "1958-11-04": "Melbourne Cup", + "1958-12-25": "Christmas Day", + "1958-12-26": "Boxing Day; Proclamation Day", + "1959-01-01": "New Year's Day", + "1959-01-26": "Australia Day", + "1959-03-02": "Labour Day", + "1959-03-09": "Eight Hours Day; Labour Day", + "1959-03-16": "Adelaide Cup; Canberra Day", + "1959-03-27": "Good Friday", + "1959-03-28": "Easter Saturday", + "1959-03-29": "Easter Sunday", + "1959-03-30": "Easter Monday", + "1959-04-25": "Anzac Day", + "1959-04-27": "Anzac Day (Observed)", + "1959-05-04": "Labour Day; May Day", + "1959-06-01": "Foundation Day", + "1959-06-08": "Queen's Birthday", + "1959-08-03": "Bank Holiday; Picnic Day", + "1959-08-12": "The Royal Queensland Show", + "1959-09-28": "Queen's Birthday", + "1959-10-05": "Labour Day", + "1959-11-03": "Melbourne Cup", + "1959-12-25": "Christmas Day", + "1959-12-26": "Boxing Day; Proclamation Day", + "1959-12-28": "Boxing Day (Observed); Proclamation Day (Observed)", + "1960-01-01": "New Year's Day", + "1960-01-26": "Australia Day", + "1960-03-07": "Labour Day", + "1960-03-14": "Eight Hours Day; Labour Day", + "1960-03-21": "Adelaide Cup; Canberra Day", + "1960-04-15": "Good Friday", + "1960-04-16": "Easter Saturday", + "1960-04-17": "Easter Sunday", + "1960-04-18": "Easter Monday", + "1960-04-25": "Anzac Day", + "1960-05-02": "Labour Day; May Day", + "1960-06-06": "Foundation Day", + "1960-06-13": "Queen's Birthday", + "1960-08-01": "Bank Holiday; Picnic Day", + "1960-08-10": "The Royal Queensland Show", + "1960-09-26": "Queen's Birthday", + "1960-10-03": "Labour Day", + "1960-11-01": "Melbourne Cup", + "1960-12-25": "Christmas Day", + "1960-12-26": "Boxing Day; Proclamation Day", + "1960-12-27": "Christmas Day (Observed)", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day (Observed)", + "1961-01-26": "Australia Day", + "1961-03-06": "Labour Day", + "1961-03-13": "Eight Hours Day; Labour Day", + "1961-03-20": "Adelaide Cup; Canberra Day", + "1961-03-31": "Good Friday", + "1961-04-01": "Easter Saturday", + "1961-04-02": "Easter Sunday", + "1961-04-03": "Easter Monday", + "1961-04-25": "Anzac Day", + "1961-05-01": "Labour Day; May Day", + "1961-06-05": "Foundation Day", + "1961-06-12": "Queen's Birthday", + "1961-08-07": "Bank Holiday; Picnic Day", + "1961-08-16": "The Royal Queensland Show", + "1961-09-25": "Queen's Birthday", + "1961-10-02": "Labour Day", + "1961-11-07": "Melbourne Cup", + "1961-12-25": "Christmas Day", + "1961-12-26": "Boxing Day; Proclamation Day", + "1962-01-01": "New Year's Day", + "1962-01-26": "Australia Day", + "1962-03-05": "Labour Day", + "1962-03-12": "Eight Hours Day; Labour Day", + "1962-03-19": "Adelaide Cup; Canberra Day", + "1962-04-20": "Good Friday", + "1962-04-21": "Easter Saturday", + "1962-04-22": "Easter Sunday", + "1962-04-23": "Easter Monday", + "1962-04-25": "Anzac Day", + "1962-05-07": "Labour Day; May Day", + "1962-06-04": "Foundation Day", + "1962-06-11": "Queen's Birthday", + "1962-08-06": "Bank Holiday; Picnic Day", + "1962-08-15": "The Royal Queensland Show", + "1962-10-01": "Labour Day; Queen's Birthday", + "1962-11-06": "Melbourne Cup", + "1962-12-25": "Christmas Day", + "1962-12-26": "Boxing Day; Proclamation Day", + "1963-01-01": "New Year's Day", + "1963-01-26": "Australia Day", + "1963-01-28": "Australia Day (Observed)", + "1963-03-04": "Labour Day", + "1963-03-11": "Eight Hours Day; Labour Day", + "1963-03-18": "Adelaide Cup; Canberra Day", + "1963-04-12": "Good Friday", + "1963-04-13": "Easter Saturday", + "1963-04-14": "Easter Sunday", + "1963-04-15": "Easter Monday", + "1963-04-25": "Anzac Day", + "1963-05-06": "Labour Day; May Day", + "1963-06-03": "Foundation Day", + "1963-06-10": "Queen's Birthday", + "1963-08-05": "Bank Holiday; Picnic Day", + "1963-08-14": "The Royal Queensland Show", + "1963-09-30": "Queen's Birthday", + "1963-10-07": "Labour Day", + "1963-11-05": "Melbourne Cup", + "1963-12-25": "Christmas Day", + "1963-12-26": "Boxing Day; Proclamation Day", + "1964-01-01": "New Year's Day", + "1964-01-26": "Australia Day", + "1964-01-27": "Australia Day (Observed)", + "1964-03-02": "Labour Day", + "1964-03-09": "Eight Hours Day; Labour Day", + "1964-03-16": "Adelaide Cup; Canberra Day", + "1964-03-27": "Good Friday", + "1964-03-28": "Easter Saturday", + "1964-03-29": "Easter Sunday", + "1964-03-30": "Easter Monday", + "1964-04-25": "Anzac Day", + "1964-04-27": "Anzac Day (Observed)", + "1964-05-04": "Labour Day; May Day", + "1964-06-01": "Foundation Day", + "1964-06-08": "Queen's Birthday", + "1964-08-03": "Bank Holiday; Picnic Day", + "1964-08-12": "The Royal Queensland Show", + "1964-09-28": "Queen's Birthday", + "1964-10-05": "Labour Day", + "1964-11-03": "Melbourne Cup", + "1964-12-25": "Christmas Day", + "1964-12-26": "Boxing Day; Proclamation Day", + "1964-12-28": "Boxing Day (Observed); Proclamation Day (Observed)", + "1965-01-01": "New Year's Day", + "1965-01-26": "Australia Day", + "1965-03-01": "Labour Day", + "1965-03-08": "Eight Hours Day; Labour Day", + "1965-03-15": "Adelaide Cup; Canberra Day", + "1965-04-16": "Good Friday", + "1965-04-17": "Easter Saturday", + "1965-04-18": "Easter Sunday", + "1965-04-19": "Easter Monday", + "1965-04-25": "Anzac Day", + "1965-04-26": "Anzac Day (Observed)", + "1965-05-03": "Labour Day; May Day", + "1965-06-07": "Foundation Day", + "1965-06-14": "Queen's Birthday", + "1965-08-02": "Bank Holiday; Picnic Day", + "1965-08-11": "The Royal Queensland Show", + "1965-09-27": "Queen's Birthday", + "1965-10-04": "Labour Day", + "1965-11-02": "Melbourne Cup", + "1965-12-25": "Christmas Day", + "1965-12-26": "Boxing Day; Proclamation Day", + "1965-12-27": "Christmas Day (Observed)", + "1965-12-28": "Boxing Day (Observed); Proclamation Day (Observed)", + "1966-01-01": "New Year's Day", + "1966-01-03": "New Year's Day (Observed)", + "1966-01-26": "Australia Day", + "1966-03-07": "Labour Day", + "1966-03-14": "Eight Hours Day; Labour Day", + "1966-03-21": "Adelaide Cup; Canberra Day", + "1966-04-08": "Good Friday", + "1966-04-09": "Easter Saturday", + "1966-04-10": "Easter Sunday", + "1966-04-11": "Easter Monday", + "1966-04-25": "Anzac Day", + "1966-05-02": "Labour Day; May Day", + "1966-06-06": "Foundation Day", + "1966-06-13": "Queen's Birthday", + "1966-08-01": "Bank Holiday; Picnic Day", + "1966-08-10": "The Royal Queensland Show", + "1966-09-26": "Queen's Birthday", + "1966-10-03": "Labour Day", + "1966-11-01": "Melbourne Cup", + "1966-12-25": "Christmas Day", + "1966-12-26": "Boxing Day; Proclamation Day", + "1966-12-27": "Christmas Day (Observed)", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day (Observed)", + "1967-01-26": "Australia Day", + "1967-03-06": "Labour Day", + "1967-03-13": "Eight Hours Day; Labour Day", + "1967-03-20": "Adelaide Cup; Canberra Day", + "1967-03-24": "Good Friday", + "1967-03-25": "Easter Saturday", + "1967-03-26": "Easter Sunday", + "1967-03-27": "Easter Monday", + "1967-04-25": "Anzac Day", + "1967-05-01": "Labour Day; May Day", + "1967-06-05": "Foundation Day", + "1967-06-12": "Queen's Birthday", + "1967-08-07": "Bank Holiday; Picnic Day", + "1967-08-16": "The Royal Queensland Show", + "1967-09-25": "Queen's Birthday", + "1967-10-02": "Labour Day", + "1967-11-07": "Melbourne Cup", + "1967-12-25": "Christmas Day", + "1967-12-26": "Boxing Day; Proclamation Day", + "1968-01-01": "New Year's Day", + "1968-01-26": "Australia Day", + "1968-03-04": "Labour Day", + "1968-03-11": "Eight Hours Day; Labour Day", + "1968-03-18": "Adelaide Cup; Canberra Day", + "1968-04-12": "Good Friday", + "1968-04-13": "Easter Saturday", + "1968-04-14": "Easter Sunday", + "1968-04-15": "Easter Monday", + "1968-04-25": "Anzac Day", + "1968-05-06": "Labour Day; May Day", + "1968-06-03": "Foundation Day", + "1968-06-10": "Queen's Birthday", + "1968-08-05": "Bank Holiday; Picnic Day", + "1968-08-14": "The Royal Queensland Show", + "1968-09-30": "Queen's Birthday", + "1968-10-07": "Labour Day", + "1968-11-05": "Melbourne Cup", + "1968-12-25": "Christmas Day", + "1968-12-26": "Boxing Day; Proclamation Day", + "1969-01-01": "New Year's Day", + "1969-01-26": "Australia Day", + "1969-01-27": "Australia Day (Observed)", + "1969-03-03": "Labour Day", + "1969-03-10": "Eight Hours Day; Labour Day", + "1969-03-17": "Adelaide Cup; Canberra Day", + "1969-04-04": "Good Friday", + "1969-04-05": "Easter Saturday", + "1969-04-06": "Easter Sunday", + "1969-04-07": "Easter Monday", + "1969-04-25": "Anzac Day", + "1969-05-05": "Labour Day; May Day", + "1969-06-02": "Foundation Day", + "1969-06-09": "Queen's Birthday", + "1969-08-04": "Bank Holiday; Picnic Day", + "1969-08-13": "The Royal Queensland Show", + "1969-09-29": "Queen's Birthday", + "1969-10-06": "Labour Day", + "1969-11-04": "Melbourne Cup", + "1969-12-25": "Christmas Day", + "1969-12-26": "Boxing Day; Proclamation Day", + "1970-01-01": "New Year's Day", + "1970-01-26": "Australia Day", + "1970-03-02": "Labour Day", + "1970-03-09": "Eight Hours Day; Labour Day", + "1970-03-16": "Adelaide Cup; Canberra Day", + "1970-03-27": "Good Friday", + "1970-03-28": "Easter Saturday", + "1970-03-29": "Easter Sunday", + "1970-03-30": "Easter Monday", + "1970-04-25": "Anzac Day", + "1970-04-27": "Anzac Day (Observed)", + "1970-05-04": "Labour Day; May Day", + "1970-06-01": "Foundation Day", + "1970-06-08": "Queen's Birthday", + "1970-08-03": "Bank Holiday; Picnic Day", + "1970-08-12": "The Royal Queensland Show", + "1970-09-28": "Queen's Birthday", + "1970-10-05": "Labour Day", + "1970-11-03": "Melbourne Cup", + "1970-12-25": "Christmas Day", + "1970-12-26": "Boxing Day; Proclamation Day", + "1970-12-28": "Boxing Day (Observed); Proclamation Day (Observed)", + "1971-01-01": "New Year's Day", + "1971-01-26": "Australia Day", + "1971-03-01": "Labour Day", + "1971-03-08": "Eight Hours Day; Labour Day", + "1971-03-15": "Adelaide Cup; Canberra Day", + "1971-04-09": "Good Friday", + "1971-04-10": "Easter Saturday", + "1971-04-11": "Easter Sunday", + "1971-04-12": "Easter Monday", + "1971-04-25": "Anzac Day", + "1971-04-26": "Anzac Day (Observed)", + "1971-05-03": "Labour Day; May Day", + "1971-06-07": "Foundation Day", + "1971-06-14": "Queen's Birthday", + "1971-08-02": "Bank Holiday; Picnic Day", + "1971-08-11": "The Royal Queensland Show", + "1971-09-27": "Queen's Birthday", + "1971-10-04": "Labour Day", + "1971-11-02": "Melbourne Cup", + "1971-12-25": "Christmas Day", + "1971-12-26": "Boxing Day; Proclamation Day", + "1971-12-27": "Christmas Day (Observed)", + "1971-12-28": "Boxing Day (Observed); Proclamation Day (Observed)", + "1972-01-01": "New Year's Day", + "1972-01-03": "New Year's Day (Observed)", + "1972-01-26": "Australia Day", + "1972-03-06": "Labour Day", + "1972-03-13": "Eight Hours Day; Labour Day", + "1972-03-20": "Adelaide Cup; Canberra Day", + "1972-03-31": "Good Friday", + "1972-04-01": "Easter Saturday", + "1972-04-02": "Easter Sunday", + "1972-04-03": "Easter Monday", + "1972-04-25": "Anzac Day", + "1972-05-01": "Labour Day; May Day", + "1972-06-05": "Foundation Day", + "1972-06-12": "Queen's Birthday", + "1972-08-07": "Bank Holiday; Picnic Day", + "1972-08-16": "The Royal Queensland Show", + "1972-09-25": "Queen's Birthday", + "1972-10-02": "Labour Day", + "1972-11-07": "Melbourne Cup", + "1972-12-25": "Christmas Day", + "1972-12-26": "Boxing Day; Proclamation Day", + "1973-01-01": "New Year's Day", + "1973-01-26": "Australia Day", + "1973-03-05": "Labour Day", + "1973-03-12": "Eight Hours Day; Labour Day", + "1973-03-19": "Adelaide Cup; Canberra Day", + "1973-04-20": "Good Friday", + "1973-04-21": "Easter Saturday", + "1973-04-22": "Easter Sunday", + "1973-04-23": "Easter Monday", + "1973-04-25": "Anzac Day", + "1973-05-07": "Labour Day; May Day", + "1973-06-04": "Foundation Day", + "1973-06-11": "Queen's Birthday", + "1973-08-06": "Bank Holiday; Picnic Day", + "1973-08-15": "The Royal Queensland Show", + "1973-10-01": "Labour Day; Queen's Birthday", + "1973-11-06": "Melbourne Cup", + "1973-12-25": "Christmas Day", + "1973-12-26": "Boxing Day; Proclamation Day", + "1974-01-01": "New Year's Day", + "1974-01-26": "Australia Day", + "1974-01-28": "Australia Day (Observed)", + "1974-03-04": "Labour Day", + "1974-03-11": "Eight Hours Day; Labour Day", + "1974-03-18": "Adelaide Cup; Canberra Day", + "1974-04-12": "Good Friday", + "1974-04-13": "Easter Saturday", + "1974-04-14": "Easter Sunday", + "1974-04-15": "Easter Monday", + "1974-04-25": "Anzac Day", + "1974-05-06": "Labour Day; May Day", + "1974-06-03": "Foundation Day", + "1974-06-10": "Queen's Birthday", + "1974-08-05": "Bank Holiday; Picnic Day", + "1974-08-14": "The Royal Queensland Show", + "1974-09-30": "Queen's Birthday", + "1974-10-07": "Labour Day", + "1974-11-05": "Melbourne Cup", + "1974-12-25": "Christmas Day", + "1974-12-26": "Boxing Day; Proclamation Day", + "1975-01-01": "New Year's Day", + "1975-01-26": "Australia Day", + "1975-01-27": "Australia Day (Observed)", + "1975-03-03": "Labour Day", + "1975-03-10": "Eight Hours Day; Labour Day", + "1975-03-17": "Adelaide Cup; Canberra Day", + "1975-03-28": "Good Friday", + "1975-03-29": "Easter Saturday", + "1975-03-30": "Easter Sunday", + "1975-03-31": "Easter Monday", + "1975-04-25": "Anzac Day", + "1975-05-05": "Labour Day; May Day", + "1975-06-02": "Foundation Day", + "1975-06-09": "Queen's Birthday", + "1975-08-04": "Bank Holiday; Picnic Day", + "1975-08-13": "The Royal Queensland Show", + "1975-09-29": "Queen's Birthday", + "1975-10-06": "Labour Day", + "1975-11-04": "Melbourne Cup", + "1975-12-25": "Christmas Day", + "1975-12-26": "Boxing Day; Proclamation Day", + "1976-01-01": "New Year's Day", + "1976-01-26": "Australia Day", + "1976-03-01": "Labour Day", + "1976-03-08": "Eight Hours Day; Labour Day", + "1976-03-15": "Adelaide Cup; Canberra Day", + "1976-04-16": "Good Friday", + "1976-04-17": "Easter Saturday", + "1976-04-18": "Easter Sunday", + "1976-04-19": "Easter Monday", + "1976-04-25": "Anzac Day", + "1976-04-26": "Anzac Day (Observed)", + "1976-05-03": "Labour Day; May Day", + "1976-06-07": "Foundation Day", + "1976-06-14": "Queen's Birthday", + "1976-08-02": "Bank Holiday; Picnic Day", + "1976-08-11": "The Royal Queensland Show", + "1976-09-27": "Queen's Birthday", + "1976-10-04": "Labour Day", + "1976-11-02": "Melbourne Cup", + "1976-12-25": "Christmas Day", + "1976-12-26": "Boxing Day; Proclamation Day", + "1976-12-27": "Christmas Day (Observed)", + "1976-12-28": "Boxing Day (Observed); Proclamation Day (Observed)", + "1977-01-01": "New Year's Day", + "1977-01-03": "New Year's Day (Observed)", + "1977-01-26": "Australia Day", + "1977-03-07": "Labour Day", + "1977-03-14": "Eight Hours Day; Labour Day", + "1977-03-21": "Adelaide Cup; Canberra Day", + "1977-04-08": "Good Friday", + "1977-04-09": "Easter Saturday", + "1977-04-10": "Easter Sunday", + "1977-04-11": "Easter Monday", + "1977-04-25": "Anzac Day", + "1977-05-02": "Labour Day; May Day", + "1977-06-06": "Foundation Day", + "1977-06-13": "Queen's Birthday", + "1977-08-01": "Bank Holiday; Picnic Day", + "1977-08-10": "The Royal Queensland Show", + "1977-09-26": "Queen's Birthday", + "1977-10-03": "Labour Day", + "1977-11-01": "Melbourne Cup", + "1977-12-25": "Christmas Day", + "1977-12-26": "Boxing Day; Proclamation Day", + "1977-12-27": "Christmas Day (Observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day (Observed)", + "1978-01-26": "Australia Day", + "1978-03-06": "Labour Day", + "1978-03-13": "Eight Hours Day; Labour Day", + "1978-03-20": "Adelaide Cup; Canberra Day", + "1978-03-24": "Good Friday", + "1978-03-25": "Easter Saturday", + "1978-03-26": "Easter Sunday", + "1978-03-27": "Easter Monday", + "1978-04-25": "Anzac Day", + "1978-05-01": "Labour Day; May Day", + "1978-06-05": "Foundation Day", + "1978-06-12": "Queen's Birthday", + "1978-08-07": "Bank Holiday; Picnic Day", + "1978-08-16": "The Royal Queensland Show", + "1978-09-25": "Queen's Birthday", + "1978-10-02": "Labour Day", + "1978-11-07": "Melbourne Cup", + "1978-12-25": "Christmas Day", + "1978-12-26": "Boxing Day; Proclamation Day", + "1979-01-01": "New Year's Day", + "1979-01-26": "Australia Day", + "1979-03-05": "Labour Day", + "1979-03-12": "Eight Hours Day; Labour Day", + "1979-03-19": "Adelaide Cup; Canberra Day", + "1979-04-13": "Good Friday", + "1979-04-14": "Easter Saturday", + "1979-04-15": "Easter Sunday", + "1979-04-16": "Easter Monday", + "1979-04-25": "Anzac Day", + "1979-05-07": "Labour Day; May Day", + "1979-06-04": "Foundation Day", + "1979-06-11": "Queen's Birthday", + "1979-08-06": "Bank Holiday; Picnic Day", + "1979-08-15": "The Royal Queensland Show", + "1979-10-01": "Labour Day; Queen's Birthday", + "1979-11-06": "Melbourne Cup", + "1979-12-25": "Christmas Day", + "1979-12-26": "Boxing Day; Proclamation Day", + "1980-01-01": "New Year's Day", + "1980-01-26": "Australia Day", + "1980-01-28": "Australia Day (Observed)", + "1980-03-03": "Labour Day", + "1980-03-10": "Eight Hours Day; Labour Day", + "1980-03-17": "Adelaide Cup; Canberra Day", + "1980-04-04": "Good Friday", + "1980-04-05": "Easter Saturday", + "1980-04-06": "Easter Sunday", + "1980-04-07": "Easter Monday", + "1980-04-25": "Anzac Day", + "1980-05-05": "Labour Day; May Day", + "1980-06-02": "Foundation Day", + "1980-06-09": "Queen's Birthday", + "1980-08-04": "Bank Holiday; Picnic Day", + "1980-08-13": "The Royal Queensland Show", + "1980-09-29": "Queen's Birthday", + "1980-10-06": "Labour Day", + "1980-11-04": "Melbourne Cup", + "1980-12-25": "Christmas Day", + "1980-12-26": "Boxing Day; Proclamation Day", + "1981-01-01": "New Year's Day", + "1981-01-26": "Australia Day", + "1981-03-02": "Labour Day", + "1981-03-09": "Eight Hours Day; Labour Day", + "1981-03-16": "Adelaide Cup; Canberra Day", + "1981-04-17": "Good Friday", + "1981-04-18": "Easter Saturday", + "1981-04-19": "Easter Sunday", + "1981-04-20": "Easter Monday", + "1981-04-25": "Anzac Day", + "1981-04-27": "Anzac Day (Observed)", + "1981-05-04": "Labour Day; May Day", + "1981-06-01": "Foundation Day", + "1981-06-08": "Queen's Birthday", + "1981-08-03": "Bank Holiday; Picnic Day", + "1981-08-12": "The Royal Queensland Show", + "1981-09-28": "Queen's Birthday", + "1981-10-05": "Labour Day", + "1981-11-03": "Melbourne Cup", + "1981-12-25": "Christmas Day", + "1981-12-26": "Boxing Day; Proclamation Day", + "1981-12-28": "Boxing Day (Observed); Proclamation Day (Observed)", + "1982-01-01": "New Year's Day", + "1982-01-26": "Australia Day", + "1982-03-01": "Labour Day", + "1982-03-08": "Eight Hours Day; Labour Day", + "1982-03-15": "Adelaide Cup; Canberra Day", + "1982-04-09": "Good Friday", + "1982-04-10": "Easter Saturday", + "1982-04-11": "Easter Sunday", + "1982-04-12": "Easter Monday", + "1982-04-25": "Anzac Day", + "1982-04-26": "Anzac Day (Observed)", + "1982-05-03": "Labour Day; May Day", + "1982-06-07": "Foundation Day", + "1982-06-14": "Queen's Birthday", + "1982-08-02": "Bank Holiday; Picnic Day", + "1982-08-11": "The Royal Queensland Show", + "1982-09-27": "Queen's Birthday", + "1982-10-04": "Labour Day", + "1982-11-02": "Melbourne Cup", + "1982-12-25": "Christmas Day", + "1982-12-26": "Boxing Day; Proclamation Day", + "1982-12-27": "Christmas Day (Observed)", + "1982-12-28": "Boxing Day (Observed); Proclamation Day (Observed)", + "1983-01-01": "New Year's Day", + "1983-01-03": "New Year's Day (Observed)", + "1983-01-26": "Australia Day", + "1983-03-07": "Labour Day", + "1983-03-14": "Eight Hours Day; Labour Day", + "1983-03-21": "Adelaide Cup; Canberra Day", + "1983-04-01": "Good Friday", + "1983-04-02": "Easter Saturday", + "1983-04-03": "Easter Sunday", + "1983-04-04": "Easter Monday", + "1983-04-25": "Anzac Day", + "1983-05-02": "Labour Day; May Day", + "1983-06-06": "Foundation Day", + "1983-06-13": "Queen's Birthday", + "1983-08-01": "Bank Holiday; Picnic Day", + "1983-08-10": "The Royal Queensland Show", + "1983-09-26": "Queen's Birthday", + "1983-10-03": "Labour Day", + "1983-11-01": "Melbourne Cup", + "1983-12-25": "Christmas Day", + "1983-12-26": "Boxing Day; Proclamation Day", + "1983-12-27": "Christmas Day (Observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (Observed)", + "1984-01-26": "Australia Day", + "1984-03-05": "Labour Day", + "1984-03-12": "Eight Hours Day; Labour Day", + "1984-03-19": "Adelaide Cup; Canberra Day", + "1984-04-20": "Good Friday", + "1984-04-21": "Easter Saturday", + "1984-04-22": "Easter Sunday", + "1984-04-23": "Easter Monday", + "1984-04-25": "Anzac Day", + "1984-05-07": "Labour Day; May Day", + "1984-06-04": "Foundation Day", + "1984-06-11": "Queen's Birthday", + "1984-08-06": "Bank Holiday; Picnic Day", + "1984-08-15": "The Royal Queensland Show", + "1984-10-01": "Labour Day; Queen's Birthday", + "1984-11-06": "Melbourne Cup", + "1984-12-25": "Christmas Day", + "1984-12-26": "Boxing Day; Proclamation Day", + "1985-01-01": "New Year's Day", + "1985-01-26": "Australia Day", + "1985-01-28": "Australia Day (Observed)", + "1985-03-04": "Labour Day", + "1985-03-11": "Eight Hours Day; Labour Day", + "1985-03-18": "Adelaide Cup; Canberra Day", + "1985-04-05": "Good Friday", + "1985-04-06": "Easter Saturday", + "1985-04-07": "Easter Sunday", + "1985-04-08": "Easter Monday", + "1985-04-25": "Anzac Day", + "1985-05-06": "Labour Day; May Day", + "1985-06-03": "Foundation Day", + "1985-06-10": "Queen's Birthday", + "1985-08-05": "Bank Holiday; Picnic Day", + "1985-08-14": "The Royal Queensland Show", + "1985-09-30": "Queen's Birthday", + "1985-10-07": "Labour Day", + "1985-11-05": "Melbourne Cup", + "1985-12-25": "Christmas Day", + "1985-12-26": "Boxing Day; Proclamation Day", + "1986-01-01": "New Year's Day", + "1986-01-26": "Australia Day", + "1986-01-27": "Australia Day (Observed)", + "1986-03-03": "Labour Day", + "1986-03-10": "Eight Hours Day; Labour Day", + "1986-03-17": "Adelaide Cup; Canberra Day", + "1986-03-28": "Good Friday", + "1986-03-29": "Easter Saturday", + "1986-03-30": "Easter Sunday", + "1986-03-31": "Easter Monday", + "1986-04-25": "Anzac Day", + "1986-05-05": "Labour Day; May Day", + "1986-06-02": "Foundation Day", + "1986-06-09": "Queen's Birthday", + "1986-08-04": "Bank Holiday; Picnic Day", + "1986-08-13": "The Royal Queensland Show", + "1986-09-29": "Queen's Birthday", + "1986-10-06": "Labour Day", + "1986-11-04": "Melbourne Cup", + "1986-12-25": "Christmas Day", + "1986-12-26": "Boxing Day; Proclamation Day", + "1987-01-01": "New Year's Day", + "1987-01-26": "Australia Day", + "1987-03-02": "Labour Day", + "1987-03-09": "Eight Hours Day; Labour Day", + "1987-03-16": "Adelaide Cup; Canberra Day", + "1987-04-17": "Good Friday", + "1987-04-18": "Easter Saturday", + "1987-04-19": "Easter Sunday", + "1987-04-20": "Easter Monday", + "1987-04-25": "Anzac Day", + "1987-04-27": "Anzac Day (Observed)", + "1987-05-04": "Labour Day; May Day", + "1987-06-01": "Foundation Day", + "1987-06-08": "Queen's Birthday", + "1987-08-03": "Bank Holiday; Picnic Day", + "1987-08-12": "The Royal Queensland Show", + "1987-09-28": "Queen's Birthday", + "1987-10-05": "Labour Day", + "1987-11-03": "Melbourne Cup", + "1987-12-25": "Christmas Day", + "1987-12-26": "Boxing Day; Proclamation Day", + "1987-12-28": "Boxing Day (Observed); Proclamation Day (Observed)", + "1988-01-01": "New Year's Day", + "1988-01-26": "Australia Day", + "1988-03-07": "Labour Day", + "1988-03-14": "Eight Hours Day; Labour Day", + "1988-03-21": "Adelaide Cup; Canberra Day", + "1988-04-01": "Good Friday", + "1988-04-02": "Easter Saturday", + "1988-04-03": "Easter Sunday", + "1988-04-04": "Easter Monday", + "1988-04-25": "Anzac Day", + "1988-05-02": "Labour Day; May Day", + "1988-06-06": "Foundation Day", + "1988-06-13": "Queen's Birthday", + "1988-08-01": "Bank Holiday; Picnic Day", + "1988-08-10": "The Royal Queensland Show", + "1988-09-26": "Queen's Birthday", + "1988-10-03": "Labour Day", + "1988-11-01": "Melbourne Cup", + "1988-12-25": "Christmas Day", + "1988-12-26": "Boxing Day; Proclamation Day", + "1988-12-27": "Christmas Day (Observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (Observed)", + "1989-01-26": "Australia Day", + "1989-03-06": "Labour Day", + "1989-03-13": "Eight Hours Day; Labour Day", + "1989-03-20": "Adelaide Cup; Canberra Day", + "1989-03-24": "Good Friday", + "1989-03-25": "Easter Saturday", + "1989-03-26": "Easter Sunday", + "1989-03-27": "Easter Monday", + "1989-04-25": "Anzac Day", + "1989-05-01": "Labour Day; May Day", + "1989-06-05": "Foundation Day", + "1989-06-12": "Queen's Birthday", + "1989-08-07": "Bank Holiday; Picnic Day", + "1989-08-16": "The Royal Queensland Show", + "1989-09-25": "Queen's Birthday", + "1989-10-02": "Labour Day", + "1989-11-07": "Melbourne Cup", + "1989-12-25": "Christmas Day", + "1989-12-26": "Boxing Day; Proclamation Day", + "1990-01-01": "New Year's Day", + "1990-01-26": "Australia Day", + "1990-03-05": "Labour Day", + "1990-03-12": "Eight Hours Day; Labour Day", + "1990-03-19": "Adelaide Cup; Canberra Day", + "1990-04-13": "Good Friday", + "1990-04-14": "Easter Saturday", + "1990-04-15": "Easter Sunday", + "1990-04-16": "Easter Monday", + "1990-04-25": "Anzac Day", + "1990-05-07": "Labour Day; May Day", + "1990-06-04": "Foundation Day", + "1990-06-11": "Queen's Birthday", + "1990-08-06": "Bank Holiday; Picnic Day", + "1990-08-15": "The Royal Queensland Show", + "1990-10-01": "Labour Day; Queen's Birthday", + "1990-11-06": "Melbourne Cup", + "1990-12-25": "Christmas Day", + "1990-12-26": "Boxing Day; Proclamation Day", + "1991-01-01": "New Year's Day", + "1991-01-26": "Australia Day", + "1991-01-28": "Australia Day (Observed)", + "1991-03-04": "Labour Day", + "1991-03-11": "Eight Hours Day; Labour Day", + "1991-03-18": "Adelaide Cup; Canberra Day", + "1991-03-29": "Good Friday", + "1991-03-30": "Easter Saturday", + "1991-03-31": "Easter Sunday", + "1991-04-01": "Easter Monday", + "1991-04-25": "Anzac Day", + "1991-05-06": "Labour Day; May Day", + "1991-06-03": "Foundation Day", + "1991-06-10": "Queen's Birthday", + "1991-08-05": "Bank Holiday; Picnic Day", + "1991-08-14": "The Royal Queensland Show", + "1991-09-30": "Queen's Birthday", + "1991-10-07": "Labour Day", + "1991-11-05": "Melbourne Cup", + "1991-12-25": "Christmas Day", + "1991-12-26": "Boxing Day; Proclamation Day", + "1992-01-01": "New Year's Day", + "1992-01-26": "Australia Day", + "1992-01-27": "Australia Day (Observed)", + "1992-03-02": "Labour Day", + "1992-03-09": "Eight Hours Day; Labour Day", + "1992-03-16": "Adelaide Cup; Canberra Day", + "1992-04-17": "Good Friday", + "1992-04-18": "Easter Saturday", + "1992-04-19": "Easter Sunday", + "1992-04-20": "Easter Monday", + "1992-04-25": "Anzac Day", + "1992-04-27": "Anzac Day (Observed)", + "1992-05-04": "Labour Day; May Day", + "1992-06-01": "Foundation Day", + "1992-06-08": "Queen's Birthday", + "1992-08-03": "Bank Holiday; Picnic Day", + "1992-08-12": "The Royal Queensland Show", + "1992-09-28": "Queen's Birthday", + "1992-10-05": "Labour Day", + "1992-11-03": "Melbourne Cup", + "1992-12-25": "Christmas Day", + "1992-12-26": "Boxing Day; Proclamation Day", + "1992-12-28": "Boxing Day (Observed); Proclamation Day (Observed)", + "1993-01-01": "New Year's Day", + "1993-01-26": "Australia Day", + "1993-03-01": "Labour Day", + "1993-03-08": "Eight Hours Day; Labour Day", + "1993-03-15": "Adelaide Cup; Canberra Day", + "1993-04-09": "Good Friday", + "1993-04-10": "Easter Saturday", + "1993-04-11": "Easter Sunday", + "1993-04-12": "Easter Monday", + "1993-04-25": "Anzac Day", + "1993-04-26": "Anzac Day (Observed)", + "1993-05-03": "Labour Day; May Day", + "1993-06-07": "Foundation Day", + "1993-06-14": "Queen's Birthday", + "1993-08-02": "Bank Holiday; Picnic Day", + "1993-08-11": "The Royal Queensland Show", + "1993-09-27": "Queen's Birthday", + "1993-10-04": "Labour Day", + "1993-11-02": "Melbourne Cup", + "1993-12-25": "Christmas Day", + "1993-12-26": "Boxing Day; Proclamation Day", + "1993-12-27": "Christmas Day (Observed)", + "1993-12-28": "Boxing Day (Observed); Proclamation Day (Observed)", + "1994-01-01": "New Year's Day", + "1994-01-03": "New Year's Day (Observed)", + "1994-01-26": "Australia Day", + "1994-03-07": "Labour Day", + "1994-03-14": "Eight Hours Day; Labour Day", + "1994-03-21": "Adelaide Cup; Canberra Day", + "1994-04-01": "Good Friday", + "1994-04-02": "Easter Saturday", + "1994-04-03": "Easter Sunday", + "1994-04-04": "Easter Monday", + "1994-04-25": "Anzac Day", + "1994-05-02": "Labour Day; May Day", + "1994-06-06": "Foundation Day", + "1994-06-13": "Queen's Birthday", + "1994-08-01": "Bank Holiday; Picnic Day", + "1994-08-10": "The Royal Queensland Show", + "1994-09-26": "Queen's Birthday", + "1994-10-03": "Labour Day", + "1994-11-01": "Melbourne Cup", + "1994-12-25": "Christmas Day", + "1994-12-26": "Boxing Day; Proclamation Day", + "1994-12-27": "Christmas Day (Observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (Observed)", + "1995-01-26": "Australia Day", + "1995-03-06": "Labour Day", + "1995-03-13": "Eight Hours Day; Labour Day", + "1995-03-20": "Adelaide Cup; Canberra Day", + "1995-04-14": "Good Friday", + "1995-04-15": "Easter Saturday", + "1995-04-16": "Easter Sunday", + "1995-04-17": "Easter Monday", + "1995-04-25": "Anzac Day", + "1995-05-01": "Labour Day; May Day", + "1995-06-05": "Foundation Day", + "1995-06-12": "Queen's Birthday", + "1995-08-07": "Bank Holiday; Picnic Day", + "1995-08-16": "The Royal Queensland Show", + "1995-09-25": "Queen's Birthday", + "1995-10-02": "Labour Day", + "1995-11-07": "Melbourne Cup", + "1995-12-25": "Christmas Day", + "1995-12-26": "Boxing Day; Proclamation Day", + "1996-01-01": "New Year's Day", + "1996-01-26": "Australia Day", + "1996-03-04": "Labour Day", + "1996-03-11": "Eight Hours Day; Labour Day", + "1996-03-18": "Adelaide Cup; Canberra Day", + "1996-04-05": "Good Friday", + "1996-04-06": "Easter Saturday", + "1996-04-07": "Easter Sunday", + "1996-04-08": "Easter Monday", + "1996-04-25": "Anzac Day", + "1996-05-06": "Labour Day; May Day", + "1996-06-03": "Foundation Day", + "1996-06-10": "Queen's Birthday", + "1996-08-05": "Bank Holiday; Picnic Day", + "1996-08-14": "The Royal Queensland Show", + "1996-09-30": "Queen's Birthday", + "1996-10-07": "Labour Day", + "1996-11-05": "Melbourne Cup", + "1996-12-25": "Christmas Day", + "1996-12-26": "Boxing Day; Proclamation Day", + "1997-01-01": "New Year's Day", + "1997-01-26": "Australia Day", + "1997-01-27": "Australia Day (Observed)", + "1997-03-03": "Labour Day", + "1997-03-10": "Eight Hours Day; Labour Day", + "1997-03-17": "Adelaide Cup; Canberra Day", + "1997-03-28": "Good Friday", + "1997-03-29": "Easter Saturday", + "1997-03-30": "Easter Sunday", + "1997-03-31": "Easter Monday", + "1997-04-25": "Anzac Day", + "1997-05-05": "Labour Day; May Day", + "1997-06-02": "Foundation Day", + "1997-06-09": "Queen's Birthday", + "1997-08-04": "Bank Holiday; Picnic Day", + "1997-08-13": "The Royal Queensland Show", + "1997-09-29": "Queen's Birthday", + "1997-10-06": "Labour Day", + "1997-11-04": "Melbourne Cup", + "1997-12-25": "Christmas Day", + "1997-12-26": "Boxing Day; Proclamation Day", + "1998-01-01": "New Year's Day", + "1998-01-26": "Australia Day", + "1998-03-02": "Labour Day", + "1998-03-09": "Eight Hours Day; Labour Day", + "1998-03-16": "Adelaide Cup; Canberra Day", + "1998-04-10": "Good Friday", + "1998-04-11": "Easter Saturday", + "1998-04-12": "Easter Sunday", + "1998-04-13": "Easter Monday", + "1998-04-25": "Anzac Day", + "1998-04-27": "Anzac Day (Observed)", + "1998-05-04": "Labour Day; May Day", + "1998-06-01": "Foundation Day", + "1998-06-08": "Queen's Birthday", + "1998-08-03": "Bank Holiday; Picnic Day", + "1998-08-12": "The Royal Queensland Show", + "1998-09-28": "Queen's Birthday", + "1998-10-05": "Labour Day", + "1998-11-03": "Melbourne Cup", + "1998-12-25": "Christmas Day", + "1998-12-26": "Boxing Day; Proclamation Day", + "1998-12-28": "Boxing Day (Observed); Proclamation Day (Observed)", + "1999-01-01": "New Year's Day", + "1999-01-26": "Australia Day", + "1999-03-01": "Labour Day", + "1999-03-08": "Eight Hours Day; Labour Day", + "1999-03-15": "Adelaide Cup; Canberra Day", + "1999-04-02": "Good Friday", + "1999-04-03": "Easter Saturday", + "1999-04-04": "Easter Sunday", + "1999-04-05": "Easter Monday", + "1999-04-25": "Anzac Day", + "1999-04-26": "Anzac Day (Observed)", + "1999-05-03": "Labour Day; May Day", + "1999-06-07": "Foundation Day", + "1999-06-14": "Queen's Birthday", + "1999-08-02": "Bank Holiday; Picnic Day", + "1999-08-11": "The Royal Queensland Show", + "1999-09-27": "Queen's Birthday", + "1999-10-04": "Labour Day", + "1999-11-02": "Melbourne Cup", + "1999-12-25": "Christmas Day", + "1999-12-26": "Boxing Day; Proclamation Day", + "1999-12-27": "Christmas Day (Observed)", + "1999-12-28": "Boxing Day (Observed); Proclamation Day (Observed)", + "2000-01-01": "New Year's Day", + "2000-01-03": "New Year's Day (Observed)", + "2000-01-26": "Australia Day", + "2000-03-06": "Labour Day", + "2000-03-13": "Eight Hours Day; Labour Day", + "2000-03-20": "Adelaide Cup; Canberra Day", + "2000-04-21": "Good Friday", + "2000-04-22": "Easter Saturday", + "2000-04-23": "Easter Sunday", + "2000-04-24": "Easter Monday", + "2000-04-25": "Anzac Day", + "2000-05-01": "Labour Day; May Day", + "2000-06-05": "Foundation Day", + "2000-06-12": "Queen's Birthday", + "2000-08-07": "Bank Holiday; Picnic Day", + "2000-08-16": "The Royal Queensland Show", + "2000-09-25": "Queen's Birthday", + "2000-10-02": "Labour Day", + "2000-11-07": "Melbourne Cup", + "2000-12-25": "Christmas Day", + "2000-12-26": "Boxing Day; Proclamation Day", + "2001-01-01": "New Year's Day", + "2001-01-26": "Australia Day", + "2001-03-05": "Labour Day", + "2001-03-12": "Eight Hours Day; Labour Day", + "2001-03-19": "Adelaide Cup; Canberra Day", + "2001-04-13": "Good Friday", + "2001-04-14": "Easter Saturday", + "2001-04-15": "Easter Sunday", + "2001-04-16": "Easter Monday", + "2001-04-25": "Anzac Day", + "2001-05-07": "Labour Day; May Day", + "2001-06-04": "Foundation Day", + "2001-06-11": "Queen's Birthday", + "2001-08-06": "Bank Holiday; Picnic Day", + "2001-08-15": "The Royal Queensland Show", + "2001-10-01": "Labour Day; Queen's Birthday", + "2001-11-06": "Melbourne Cup", + "2001-12-25": "Christmas Day", + "2001-12-26": "Boxing Day; Proclamation Day", + "2002-01-01": "New Year's Day", + "2002-01-26": "Australia Day", + "2002-01-28": "Australia Day (Observed)", + "2002-03-04": "Labour Day", + "2002-03-11": "Eight Hours Day; Labour Day", + "2002-03-18": "Adelaide Cup; Canberra Day", + "2002-03-29": "Good Friday", + "2002-03-30": "Easter Saturday", + "2002-03-31": "Easter Sunday", + "2002-04-01": "Easter Monday", + "2002-04-25": "Anzac Day", + "2002-05-06": "Labour Day; May Day", + "2002-06-03": "Foundation Day", + "2002-06-10": "Queen's Birthday", + "2002-08-05": "Bank Holiday; Picnic Day", + "2002-08-14": "The Royal Queensland Show", + "2002-09-30": "Queen's Birthday", + "2002-10-07": "Labour Day", + "2002-11-05": "Melbourne Cup", + "2002-12-25": "Christmas Day", + "2002-12-26": "Boxing Day; Proclamation Day", + "2003-01-01": "New Year's Day", + "2003-01-26": "Australia Day", + "2003-01-27": "Australia Day (Observed)", + "2003-03-03": "Labour Day", + "2003-03-10": "Eight Hours Day; Labour Day", + "2003-03-17": "Adelaide Cup; Canberra Day", + "2003-04-18": "Good Friday", + "2003-04-19": "Easter Saturday", + "2003-04-20": "Easter Sunday", + "2003-04-21": "Easter Monday", + "2003-04-25": "Anzac Day", + "2003-05-05": "Labour Day; May Day", + "2003-06-02": "Foundation Day", + "2003-06-09": "Queen's Birthday", + "2003-08-04": "Bank Holiday; Picnic Day", + "2003-08-13": "The Royal Queensland Show", + "2003-09-29": "Queen's Birthday", + "2003-10-06": "Labour Day", + "2003-11-04": "Melbourne Cup", + "2003-12-25": "Christmas Day", + "2003-12-26": "Boxing Day; Proclamation Day", + "2004-01-01": "New Year's Day", + "2004-01-26": "Australia Day", + "2004-03-01": "Labour Day", + "2004-03-08": "Eight Hours Day; Labour Day", + "2004-03-15": "Adelaide Cup; Canberra Day", + "2004-04-09": "Good Friday", + "2004-04-10": "Easter Saturday", + "2004-04-11": "Easter Sunday", + "2004-04-12": "Easter Monday", + "2004-04-25": "Anzac Day", + "2004-04-26": "Anzac Day (Observed)", + "2004-05-03": "Labour Day; May Day", + "2004-06-07": "Foundation Day", + "2004-06-14": "Queen's Birthday", + "2004-08-02": "Bank Holiday; Picnic Day", + "2004-08-11": "The Royal Queensland Show", + "2004-09-27": "Queen's Birthday", + "2004-10-04": "Labour Day", + "2004-11-02": "Melbourne Cup", + "2004-12-25": "Christmas Day", + "2004-12-26": "Boxing Day; Proclamation Day", + "2004-12-27": "Christmas Day (Observed)", + "2004-12-28": "Boxing Day (Observed); Proclamation Day (Observed)", + "2005-01-01": "New Year's Day", + "2005-01-03": "New Year's Day (Observed)", + "2005-01-26": "Australia Day", + "2005-03-07": "Labour Day", + "2005-03-14": "Eight Hours Day; Labour Day", + "2005-03-21": "Adelaide Cup; Canberra Day", + "2005-03-25": "Good Friday", + "2005-03-26": "Easter Saturday", + "2005-03-27": "Easter Sunday", + "2005-03-28": "Easter Monday", + "2005-04-25": "Anzac Day", + "2005-05-02": "Labour Day; May Day", + "2005-06-06": "Foundation Day", + "2005-06-13": "Queen's Birthday", + "2005-08-01": "Bank Holiday; Picnic Day", + "2005-08-10": "The Royal Queensland Show", + "2005-09-26": "Queen's Birthday", + "2005-10-03": "Labour Day", + "2005-11-01": "Melbourne Cup", + "2005-12-25": "Christmas Day", + "2005-12-26": "Boxing Day; Proclamation Day", + "2005-12-27": "Christmas Day (Observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (Observed)", + "2006-01-26": "Australia Day", + "2006-03-06": "Labour Day", + "2006-03-13": "Adelaide Cup; Eight Hours Day; Labour Day", + "2006-03-20": "Canberra Day", + "2006-04-14": "Good Friday", + "2006-04-15": "Easter Saturday", + "2006-04-16": "Easter Sunday", + "2006-04-17": "Easter Monday", + "2006-04-25": "Anzac Day", + "2006-05-01": "Labour Day; May Day", + "2006-06-05": "Foundation Day", + "2006-06-12": "Queen's Birthday", + "2006-08-07": "Bank Holiday; Picnic Day", + "2006-08-16": "The Royal Queensland Show", + "2006-09-25": "Queen's Birthday", + "2006-10-02": "Labour Day", + "2006-11-07": "Melbourne Cup", + "2006-12-25": "Christmas Day", + "2006-12-26": "Boxing Day; Proclamation Day", + "2007-01-01": "New Year's Day", + "2007-01-26": "Australia Day", + "2007-03-05": "Labour Day", + "2007-03-12": "Adelaide Cup; Eight Hours Day; Labour Day", + "2007-03-19": "Canberra Day", + "2007-04-06": "Good Friday", + "2007-04-07": "Easter Saturday", + "2007-04-08": "Easter Sunday", + "2007-04-09": "Easter Monday", + "2007-04-25": "Anzac Day", + "2007-05-07": "Labour Day; May Day", + "2007-06-04": "Foundation Day", + "2007-06-11": "Queen's Birthday", + "2007-08-06": "Bank Holiday; Picnic Day", + "2007-08-15": "The Royal Queensland Show", + "2007-10-01": "Labour Day; Queen's Birthday", + "2007-11-06": "Family & Community Day; Melbourne Cup", + "2007-12-25": "Christmas Day", + "2007-12-26": "Boxing Day; Proclamation Day", + "2008-01-01": "New Year's Day", + "2008-01-26": "Australia Day", + "2008-01-28": "Australia Day (Observed)", + "2008-03-03": "Labour Day", + "2008-03-10": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2008-03-21": "Good Friday", + "2008-03-22": "Easter Saturday", + "2008-03-23": "Easter Sunday", + "2008-03-24": "Easter Monday", + "2008-04-25": "Anzac Day", + "2008-05-05": "Labour Day; May Day", + "2008-06-02": "Foundation Day", + "2008-06-09": "Queen's Birthday", + "2008-08-04": "Bank Holiday; Picnic Day", + "2008-08-13": "The Royal Queensland Show", + "2008-09-29": "Queen's Birthday", + "2008-10-06": "Labour Day", + "2008-11-04": "Family & Community Day; Melbourne Cup", + "2008-12-25": "Christmas Day", + "2008-12-26": "Boxing Day; Proclamation Day", + "2009-01-01": "New Year's Day", + "2009-01-26": "Australia Day", + "2009-03-02": "Labour Day", + "2009-03-09": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2009-04-10": "Good Friday", + "2009-04-11": "Easter Saturday", + "2009-04-12": "Easter Sunday", + "2009-04-13": "Easter Monday", + "2009-04-25": "Anzac Day", + "2009-04-27": "Anzac Day (Observed)", + "2009-05-04": "Labour Day; May Day", + "2009-06-01": "Foundation Day", + "2009-06-08": "Queen's Birthday", + "2009-08-03": "Bank Holiday; Picnic Day", + "2009-08-12": "The Royal Queensland Show", + "2009-09-28": "Queen's Birthday", + "2009-10-05": "Labour Day", + "2009-11-03": "Family & Community Day; Melbourne Cup", + "2009-12-25": "Christmas Day", + "2009-12-26": "Boxing Day; Proclamation Day", + "2009-12-28": "Boxing Day (Observed); Proclamation Day (Observed)", + "2010-01-01": "New Year's Day", + "2010-01-26": "Australia Day", + "2010-03-01": "Labour Day", + "2010-03-08": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2010-04-02": "Good Friday", + "2010-04-03": "Easter Saturday", + "2010-04-04": "Easter Sunday", + "2010-04-05": "Easter Monday", + "2010-04-25": "Anzac Day", + "2010-04-26": "Anzac Day (Observed)", + "2010-05-03": "Labour Day; May Day", + "2010-06-07": "Foundation Day", + "2010-06-14": "Queen's Birthday", + "2010-08-02": "Bank Holiday; Picnic Day", + "2010-08-11": "The Royal Queensland Show", + "2010-09-26": "Family & Community Day", + "2010-09-27": "Queen's Birthday", + "2010-10-04": "Labour Day", + "2010-11-02": "Melbourne Cup", + "2010-12-25": "Christmas Day", + "2010-12-26": "Boxing Day; Proclamation Day", + "2010-12-27": "Christmas Day (Observed)", + "2010-12-28": "Boxing Day (Observed); Proclamation Day (Observed)", + "2011-01-01": "New Year's Day", + "2011-01-03": "New Year's Day (Observed)", + "2011-01-26": "Australia Day", + "2011-03-07": "Labour Day", + "2011-03-14": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2011-04-22": "Good Friday", + "2011-04-23": "Easter Saturday", + "2011-04-24": "Easter Sunday", + "2011-04-25": "Anzac Day; Easter Monday", + "2011-05-02": "Labour Day; May Day", + "2011-06-06": "Foundation Day", + "2011-06-13": "Queen's Birthday", + "2011-08-01": "Bank Holiday; Picnic Day", + "2011-08-10": "The Royal Queensland Show", + "2011-09-26": "Queen's Birthday", + "2011-10-03": "Labour Day", + "2011-10-10": "Family & Community Day", + "2011-11-01": "Melbourne Cup", + "2011-12-25": "Christmas Day", + "2011-12-26": "Boxing Day; Proclamation Day", + "2011-12-27": "Christmas Day (Observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (Observed)", + "2012-01-26": "Australia Day", + "2012-03-05": "Labour Day", + "2012-03-12": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2012-04-06": "Good Friday", + "2012-04-07": "Easter Saturday", + "2012-04-08": "Easter Sunday", + "2012-04-09": "Easter Monday", + "2012-04-25": "Anzac Day", + "2012-05-07": "Labour Day; May Day", + "2012-06-04": "Foundation Day", + "2012-06-11": "Queen's Birthday; Queen's Diamond Jubilee", + "2012-08-06": "Bank Holiday; Picnic Day", + "2012-08-15": "The Royal Queensland Show", + "2012-10-01": "Labour Day; Queen's Birthday", + "2012-10-08": "Family & Community Day", + "2012-11-06": "Melbourne Cup", + "2012-12-25": "Christmas Day", + "2012-12-26": "Boxing Day; Proclamation Day", + "2013-01-01": "New Year's Day", + "2013-01-26": "Australia Day", + "2013-01-28": "Australia Day (Observed)", + "2013-03-04": "Labour Day", + "2013-03-11": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2013-03-29": "Good Friday", + "2013-03-30": "Easter Saturday", + "2013-03-31": "Easter Sunday", + "2013-04-01": "Easter Monday", + "2013-04-25": "Anzac Day", + "2013-05-06": "May Day", + "2013-06-03": "Foundation Day", + "2013-06-10": "Queen's Birthday", + "2013-08-05": "Bank Holiday; Picnic Day", + "2013-08-14": "The Royal Queensland Show", + "2013-09-30": "Family & Community Day; Queen's Birthday", + "2013-10-07": "Labour Day", + "2013-11-05": "Melbourne Cup", + "2013-12-25": "Christmas Day", + "2013-12-26": "Boxing Day; Proclamation Day", + "2014-01-01": "New Year's Day", + "2014-01-26": "Australia Day", + "2014-01-27": "Australia Day (Observed)", + "2014-03-03": "Labour Day", + "2014-03-10": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2014-04-18": "Good Friday", + "2014-04-19": "Easter Saturday", + "2014-04-20": "Easter Sunday", + "2014-04-21": "Easter Monday", + "2014-04-25": "Anzac Day", + "2014-05-05": "May Day", + "2014-06-02": "Foundation Day", + "2014-06-09": "Queen's Birthday", + "2014-08-04": "Bank Holiday; Picnic Day", + "2014-08-13": "The Royal Queensland Show", + "2014-09-29": "Family & Community Day; Queen's Birthday", + "2014-10-06": "Labour Day", + "2014-11-04": "Melbourne Cup", + "2014-12-25": "Christmas Day", + "2014-12-26": "Boxing Day; Proclamation Day", + "2015-01-01": "New Year's Day", + "2015-01-26": "Australia Day", + "2015-03-02": "Labour Day", + "2015-03-09": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2015-04-03": "Good Friday", + "2015-04-04": "Easter Saturday", + "2015-04-05": "Easter Sunday", + "2015-04-06": "Easter Monday", + "2015-04-25": "Anzac Day", + "2015-04-27": "Anzac Day (Observed)", + "2015-05-04": "May Day", + "2015-06-01": "Western Australia Day", + "2015-06-08": "Queen's Birthday", + "2015-08-03": "Bank Holiday; Picnic Day", + "2015-08-12": "The Royal Queensland Show", + "2015-09-25": "Grand Final Day", + "2015-09-28": "Family & Community Day; Queen's Birthday", + "2015-10-05": "Labour Day", + "2015-11-03": "Melbourne Cup", + "2015-12-25": "Christmas Day", + "2015-12-26": "Boxing Day; Proclamation Day", + "2015-12-28": "Boxing Day (Observed); Proclamation Day (Observed)", + "2016-01-01": "New Year's Day", + "2016-01-26": "Australia Day", + "2016-03-07": "Labour Day", + "2016-03-14": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2016-03-25": "Good Friday", + "2016-03-26": "Easter Saturday", + "2016-03-27": "Easter Sunday", + "2016-03-28": "Easter Monday", + "2016-04-25": "Anzac Day", + "2016-05-02": "Labour Day; May Day", + "2016-06-06": "Western Australia Day", + "2016-06-13": "Queen's Birthday", + "2016-08-01": "Bank Holiday; Picnic Day", + "2016-08-10": "The Royal Queensland Show", + "2016-09-26": "Family & Community Day; Queen's Birthday", + "2016-09-30": "Grand Final Day", + "2016-10-03": "Labour Day; Queen's Birthday", + "2016-11-01": "Melbourne Cup", + "2016-12-25": "Christmas Day", + "2016-12-26": "Boxing Day; Proclamation Day", + "2016-12-27": "Christmas Day (Observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (Observed)", + "2017-01-26": "Australia Day", + "2017-03-06": "Labour Day", + "2017-03-13": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2017-04-14": "Good Friday", + "2017-04-15": "Easter Saturday", + "2017-04-16": "Easter Sunday", + "2017-04-17": "Easter Monday", + "2017-04-25": "Anzac Day", + "2017-05-01": "Labour Day; May Day", + "2017-06-05": "Western Australia Day", + "2017-06-12": "Queen's Birthday", + "2017-08-07": "Bank Holiday; Picnic Day", + "2017-08-16": "The Royal Queensland Show", + "2017-09-25": "Family & Community Day; Queen's Birthday", + "2017-09-29": "Grand Final Day", + "2017-10-02": "Labour Day; Queen's Birthday", + "2017-11-07": "Melbourne Cup", + "2017-12-25": "Christmas Day", + "2017-12-26": "Boxing Day; Proclamation Day", + "2018-01-01": "New Year's Day", + "2018-01-26": "Australia Day", + "2018-03-05": "Labour Day", + "2018-03-12": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2018-03-30": "Good Friday", + "2018-03-31": "Easter Saturday", + "2018-04-01": "Easter Sunday", + "2018-04-02": "Easter Monday", + "2018-04-25": "Anzac Day", + "2018-05-07": "Labour Day; May Day", + "2018-05-28": "Reconciliation Day", + "2018-06-04": "Western Australia Day", + "2018-06-11": "Queen's Birthday", + "2018-08-06": "Bank Holiday; Picnic Day", + "2018-08-15": "The Royal Queensland Show", + "2018-09-28": "Grand Final Day", + "2018-10-01": "Labour Day; Queen's Birthday", + "2018-11-06": "Melbourne Cup", + "2018-12-25": "Christmas Day", + "2018-12-26": "Boxing Day; Proclamation Day", + "2019-01-01": "New Year's Day", + "2019-01-26": "Australia Day", + "2019-01-28": "Australia Day (Observed)", + "2019-03-04": "Labour Day", + "2019-03-11": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2019-04-19": "Good Friday", + "2019-04-20": "Easter Saturday", + "2019-04-21": "Easter Sunday", + "2019-04-22": "Easter Monday", + "2019-04-25": "Anzac Day", + "2019-05-06": "Labour Day; May Day", + "2019-05-27": "Reconciliation Day", + "2019-06-03": "Western Australia Day", + "2019-06-10": "Queen's Birthday", + "2019-08-05": "Bank Holiday; Picnic Day", + "2019-08-14": "The Royal Queensland Show", + "2019-09-27": "Grand Final Day", + "2019-09-30": "Queen's Birthday", + "2019-10-07": "Labour Day; Queen's Birthday", + "2019-11-05": "Melbourne Cup", + "2019-12-25": "Christmas Day", + "2019-12-26": "Boxing Day; Proclamation Day", + "2020-01-01": "New Year's Day", + "2020-01-26": "Australia Day", + "2020-01-27": "Australia Day (Observed)", + "2020-03-02": "Labour Day", + "2020-03-09": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2020-04-10": "Good Friday", + "2020-04-11": "Easter Saturday", + "2020-04-12": "Easter Sunday", + "2020-04-13": "Easter Monday", + "2020-04-25": "Anzac Day", + "2020-04-27": "Anzac Day (Observed)", + "2020-05-04": "Labour Day; May Day", + "2020-06-01": "Reconciliation Day; Western Australia Day", + "2020-06-08": "Queen's Birthday", + "2020-08-03": "Bank Holiday; Picnic Day", + "2020-08-14": "The Royal Queensland Show", + "2020-09-28": "Queen's Birthday", + "2020-10-05": "Labour Day; Queen's Birthday", + "2020-10-23": "Grand Final Day", + "2020-11-03": "Melbourne Cup", + "2020-12-25": "Christmas Day", + "2020-12-26": "Boxing Day; Proclamation Day", + "2020-12-28": "Boxing Day (Observed); Proclamation Day (Observed)", + "2021-01-01": "New Year's Day", + "2021-01-26": "Australia Day", + "2021-03-01": "Labour Day", + "2021-03-08": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2021-04-02": "Good Friday", + "2021-04-03": "Easter Saturday", + "2021-04-04": "Easter Sunday", + "2021-04-05": "Easter Monday", + "2021-04-25": "Anzac Day", + "2021-04-26": "Anzac Day (Observed)", + "2021-05-03": "Labour Day; May Day", + "2021-05-31": "Reconciliation Day", + "2021-06-07": "Western Australia Day", + "2021-06-14": "Queen's Birthday", + "2021-08-02": "Bank Holiday; Picnic Day", + "2021-09-24": "Grand Final Day", + "2021-09-27": "Queen's Birthday", + "2021-10-04": "Labour Day; Queen's Birthday", + "2021-10-29": "The Royal Queensland Show", + "2021-11-02": "Melbourne Cup", + "2021-12-25": "Christmas Day", + "2021-12-26": "Boxing Day; Proclamation Day", + "2021-12-27": "Christmas Day (Observed)", + "2021-12-28": "Boxing Day (Observed); Proclamation Day (Observed)", + "2022-01-01": "New Year's Day", + "2022-01-03": "New Year's Day (Observed)", + "2022-01-26": "Australia Day", + "2022-03-07": "Labour Day", + "2022-03-14": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2022-04-15": "Good Friday", + "2022-04-16": "Easter Saturday", + "2022-04-17": "Easter Sunday", + "2022-04-18": "Easter Monday", + "2022-04-25": "Anzac Day", + "2022-05-02": "Labour Day; May Day", + "2022-05-30": "Reconciliation Day", + "2022-06-06": "Western Australia Day", + "2022-06-13": "Queen's Birthday", + "2022-08-01": "Bank Holiday; Picnic Day", + "2022-08-10": "The Royal Queensland Show", + "2022-09-22": "National Day of Mourning for Queen Elizabeth II", + "2022-09-23": "Grand Final Day", + "2022-09-26": "Queen's Birthday", + "2022-10-03": "Labour Day; Queen's Birthday", + "2022-11-01": "Melbourne Cup", + "2022-12-25": "Christmas Day", + "2022-12-26": "Boxing Day; Proclamation Day", + "2022-12-27": "Christmas Day (Observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (Observed)", + "2023-01-26": "Australia Day", + "2023-03-06": "Labour Day", + "2023-03-13": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2023-04-07": "Good Friday", + "2023-04-08": "Easter Saturday", + "2023-04-09": "Easter Sunday", + "2023-04-10": "Easter Monday", + "2023-04-25": "Anzac Day", + "2023-05-01": "Labour Day; May Day", + "2023-05-29": "Reconciliation Day", + "2023-06-05": "Western Australia Day", + "2023-06-12": "King's Birthday", + "2023-08-07": "Bank Holiday; Picnic Day", + "2023-08-16": "The Royal Queensland Show", + "2023-09-25": "King's Birthday", + "2023-09-29": "Grand Final Day", + "2023-10-02": "King's Birthday; Labour Day", + "2023-11-07": "Melbourne Cup", + "2023-12-25": "Christmas Day", + "2023-12-26": "Boxing Day; Proclamation Day", + "2024-01-01": "New Year's Day", + "2024-01-26": "Australia Day", + "2024-03-04": "Labour Day", + "2024-03-11": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2024-03-29": "Good Friday", + "2024-03-30": "Easter Saturday", + "2024-03-31": "Easter Sunday", + "2024-04-01": "Easter Monday", + "2024-04-25": "Anzac Day", + "2024-05-06": "Labour Day; May Day", + "2024-05-27": "Reconciliation Day", + "2024-06-03": "Western Australia Day", + "2024-06-10": "King's Birthday", + "2024-08-05": "Bank Holiday; Picnic Day", + "2024-08-14": "The Royal Queensland Show", + "2024-09-27": "Grand Final Day", + "2024-09-30": "King's Birthday", + "2024-10-07": "King's Birthday; Labour Day", + "2024-11-05": "Melbourne Cup", + "2024-12-25": "Christmas Day", + "2024-12-26": "Boxing Day; Proclamation Day", + "2025-01-01": "New Year's Day", + "2025-01-26": "Australia Day", + "2025-01-27": "Australia Day (Observed)", + "2025-03-03": "Labour Day", + "2025-03-10": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2025-04-18": "Good Friday", + "2025-04-19": "Easter Saturday", + "2025-04-20": "Easter Sunday", + "2025-04-21": "Easter Monday", + "2025-04-25": "Anzac Day", + "2025-05-05": "Labour Day; May Day", + "2025-06-02": "Reconciliation Day; Western Australia Day", + "2025-06-09": "King's Birthday", + "2025-08-04": "Bank Holiday; Picnic Day", + "2025-08-13": "The Royal Queensland Show", + "2025-09-26": "Grand Final Day", + "2025-09-29": "King's Birthday", + "2025-10-06": "King's Birthday; Labour Day", + "2025-11-04": "Melbourne Cup", + "2025-12-25": "Christmas Day", + "2025-12-26": "Boxing Day; Proclamation Day", + "2026-01-01": "New Year's Day", + "2026-01-26": "Australia Day", + "2026-03-02": "Labour Day", + "2026-03-09": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2026-04-03": "Good Friday", + "2026-04-04": "Easter Saturday", + "2026-04-05": "Easter Sunday", + "2026-04-06": "Easter Monday", + "2026-04-25": "Anzac Day", + "2026-04-27": "Anzac Day (Observed)", + "2026-05-04": "Labour Day; May Day", + "2026-06-01": "Reconciliation Day; Western Australia Day", + "2026-06-08": "King's Birthday", + "2026-08-03": "Bank Holiday; Picnic Day", + "2026-08-12": "The Royal Queensland Show", + "2026-09-25": "Grand Final Day", + "2026-09-28": "King's Birthday", + "2026-10-05": "King's Birthday; Labour Day", + "2026-11-03": "Melbourne Cup", + "2026-12-25": "Christmas Day", + "2026-12-26": "Boxing Day; Proclamation Day", + "2026-12-28": "Boxing Day (Observed); Proclamation Day (Observed)", + "2027-01-01": "New Year's Day", + "2027-01-26": "Australia Day", + "2027-03-01": "Labour Day", + "2027-03-08": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2027-03-26": "Good Friday", + "2027-03-27": "Easter Saturday", + "2027-03-28": "Easter Sunday", + "2027-03-29": "Easter Monday", + "2027-04-25": "Anzac Day", + "2027-04-26": "Anzac Day (Observed)", + "2027-05-03": "Labour Day; May Day", + "2027-05-31": "Reconciliation Day", + "2027-06-07": "Western Australia Day", + "2027-06-14": "King's Birthday", + "2027-08-02": "Bank Holiday; Picnic Day", + "2027-08-11": "The Royal Queensland Show", + "2027-09-24": "Grand Final Day", + "2027-09-27": "King's Birthday", + "2027-10-04": "King's Birthday; Labour Day", + "2027-11-02": "Melbourne Cup", + "2027-12-25": "Christmas Day", + "2027-12-26": "Boxing Day; Proclamation Day", + "2027-12-27": "Christmas Day (Observed)", + "2027-12-28": "Boxing Day (Observed); Proclamation Day (Observed)", + "2028-01-01": "New Year's Day", + "2028-01-03": "New Year's Day (Observed)", + "2028-01-26": "Australia Day", + "2028-03-06": "Labour Day", + "2028-03-13": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2028-04-14": "Good Friday", + "2028-04-15": "Easter Saturday", + "2028-04-16": "Easter Sunday", + "2028-04-17": "Easter Monday", + "2028-04-25": "Anzac Day", + "2028-05-01": "Labour Day; May Day", + "2028-05-29": "Reconciliation Day", + "2028-06-05": "Western Australia Day", + "2028-06-12": "King's Birthday", + "2028-08-07": "Bank Holiday; Picnic Day", + "2028-08-16": "The Royal Queensland Show", + "2028-09-25": "King's Birthday", + "2028-09-29": "Grand Final Day", + "2028-10-02": "King's Birthday; Labour Day", + "2028-11-07": "Melbourne Cup", + "2028-12-25": "Christmas Day", + "2028-12-26": "Boxing Day; Proclamation Day", + "2029-01-01": "New Year's Day", + "2029-01-26": "Australia Day", + "2029-03-05": "Labour Day", + "2029-03-12": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2029-03-30": "Good Friday", + "2029-03-31": "Easter Saturday", + "2029-04-01": "Easter Sunday", + "2029-04-02": "Easter Monday", + "2029-04-25": "Anzac Day", + "2029-05-07": "Labour Day; May Day", + "2029-05-28": "Reconciliation Day", + "2029-06-04": "Western Australia Day", + "2029-06-11": "King's Birthday", + "2029-08-06": "Bank Holiday; Picnic Day", + "2029-08-15": "The Royal Queensland Show", + "2029-09-28": "Grand Final Day", + "2029-10-01": "King's Birthday; Labour Day", + "2029-11-06": "Melbourne Cup", + "2029-12-25": "Christmas Day", + "2029-12-26": "Boxing Day; Proclamation Day", + "2030-01-01": "New Year's Day", + "2030-01-26": "Australia Day", + "2030-01-28": "Australia Day (Observed)", + "2030-03-04": "Labour Day", + "2030-03-11": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2030-04-19": "Good Friday", + "2030-04-20": "Easter Saturday", + "2030-04-21": "Easter Sunday", + "2030-04-22": "Easter Monday", + "2030-04-25": "Anzac Day", + "2030-05-06": "Labour Day; May Day", + "2030-05-27": "Reconciliation Day", + "2030-06-03": "Western Australia Day", + "2030-06-10": "King's Birthday", + "2030-08-05": "Bank Holiday; Picnic Day", + "2030-08-14": "The Royal Queensland Show", + "2030-09-27": "Grand Final Day", + "2030-09-30": "King's Birthday", + "2030-10-07": "King's Birthday; Labour Day", + "2030-11-05": "Melbourne Cup", + "2030-12-25": "Christmas Day", + "2030-12-26": "Boxing Day; Proclamation Day", + "2031-01-01": "New Year's Day", + "2031-01-26": "Australia Day", + "2031-01-27": "Australia Day (Observed)", + "2031-03-03": "Labour Day", + "2031-03-10": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2031-04-11": "Good Friday", + "2031-04-12": "Easter Saturday", + "2031-04-13": "Easter Sunday", + "2031-04-14": "Easter Monday", + "2031-04-25": "Anzac Day", + "2031-05-05": "Labour Day; May Day", + "2031-06-02": "Reconciliation Day; Western Australia Day", + "2031-06-09": "King's Birthday", + "2031-08-04": "Bank Holiday; Picnic Day", + "2031-08-13": "The Royal Queensland Show", + "2031-09-26": "Grand Final Day", + "2031-09-29": "King's Birthday", + "2031-10-06": "King's Birthday; Labour Day", + "2031-11-04": "Melbourne Cup", + "2031-12-25": "Christmas Day", + "2031-12-26": "Boxing Day; Proclamation Day", + "2032-01-01": "New Year's Day", + "2032-01-26": "Australia Day", + "2032-03-01": "Labour Day", + "2032-03-08": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2032-03-26": "Good Friday", + "2032-03-27": "Easter Saturday", + "2032-03-28": "Easter Sunday", + "2032-03-29": "Easter Monday", + "2032-04-25": "Anzac Day", + "2032-04-26": "Anzac Day (Observed)", + "2032-05-03": "Labour Day; May Day", + "2032-05-31": "Reconciliation Day", + "2032-06-07": "Western Australia Day", + "2032-06-14": "King's Birthday", + "2032-08-02": "Bank Holiday; Picnic Day", + "2032-08-11": "The Royal Queensland Show", + "2032-09-24": "Grand Final Day", + "2032-09-27": "King's Birthday", + "2032-10-04": "King's Birthday; Labour Day", + "2032-11-02": "Melbourne Cup", + "2032-12-25": "Christmas Day", + "2032-12-26": "Boxing Day; Proclamation Day", + "2032-12-27": "Christmas Day (Observed)", + "2032-12-28": "Boxing Day (Observed); Proclamation Day (Observed)", + "2033-01-01": "New Year's Day", + "2033-01-03": "New Year's Day (Observed)", + "2033-01-26": "Australia Day", + "2033-03-07": "Labour Day", + "2033-03-14": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2033-04-15": "Good Friday", + "2033-04-16": "Easter Saturday", + "2033-04-17": "Easter Sunday", + "2033-04-18": "Easter Monday", + "2033-04-25": "Anzac Day", + "2033-05-02": "Labour Day; May Day", + "2033-05-30": "Reconciliation Day", + "2033-06-06": "Western Australia Day", + "2033-06-13": "King's Birthday", + "2033-08-01": "Bank Holiday; Picnic Day", + "2033-08-10": "The Royal Queensland Show", + "2033-09-26": "King's Birthday", + "2033-09-30": "Grand Final Day", + "2033-10-03": "King's Birthday; Labour Day", + "2033-11-01": "Melbourne Cup", + "2033-12-25": "Christmas Day", + "2033-12-26": "Boxing Day; Proclamation Day", + "2033-12-27": "Christmas Day (Observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-01-26": "Australia Day", + "2034-03-06": "Labour Day", + "2034-03-13": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2034-04-07": "Good Friday", + "2034-04-08": "Easter Saturday", + "2034-04-09": "Easter Sunday", + "2034-04-10": "Easter Monday", + "2034-04-25": "Anzac Day", + "2034-05-01": "Labour Day; May Day", + "2034-05-29": "Reconciliation Day", + "2034-06-05": "Western Australia Day", + "2034-06-12": "King's Birthday", + "2034-08-07": "Bank Holiday; Picnic Day", + "2034-08-16": "The Royal Queensland Show", + "2034-09-25": "King's Birthday", + "2034-09-29": "Grand Final Day", + "2034-10-02": "King's Birthday; Labour Day", + "2034-11-07": "Melbourne Cup", + "2034-12-25": "Christmas Day", + "2034-12-26": "Boxing Day; Proclamation Day", + "2035-01-01": "New Year's Day", + "2035-01-26": "Australia Day", + "2035-03-05": "Labour Day", + "2035-03-12": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2035-03-23": "Good Friday", + "2035-03-24": "Easter Saturday", + "2035-03-25": "Easter Sunday", + "2035-03-26": "Easter Monday", + "2035-04-25": "Anzac Day", + "2035-05-07": "Labour Day; May Day", + "2035-05-28": "Reconciliation Day", + "2035-06-04": "Western Australia Day", + "2035-06-11": "King's Birthday", + "2035-08-06": "Bank Holiday; Picnic Day", + "2035-08-15": "The Royal Queensland Show", + "2035-09-28": "Grand Final Day", + "2035-10-01": "King's Birthday; Labour Day", + "2035-11-06": "Melbourne Cup", + "2035-12-25": "Christmas Day", + "2035-12-26": "Boxing Day; Proclamation Day", + "2036-01-01": "New Year's Day", + "2036-01-26": "Australia Day", + "2036-01-28": "Australia Day (Observed)", + "2036-03-03": "Labour Day", + "2036-03-10": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2036-04-11": "Good Friday", + "2036-04-12": "Easter Saturday", + "2036-04-13": "Easter Sunday", + "2036-04-14": "Easter Monday", + "2036-04-25": "Anzac Day", + "2036-05-05": "Labour Day; May Day", + "2036-06-02": "Reconciliation Day; Western Australia Day", + "2036-06-09": "King's Birthday", + "2036-08-04": "Bank Holiday; Picnic Day", + "2036-08-13": "The Royal Queensland Show", + "2036-09-26": "Grand Final Day", + "2036-09-29": "King's Birthday", + "2036-10-06": "King's Birthday; Labour Day", + "2036-11-04": "Melbourne Cup", + "2036-12-25": "Christmas Day", + "2036-12-26": "Boxing Day; Proclamation Day", + "2037-01-01": "New Year's Day", + "2037-01-26": "Australia Day", + "2037-03-02": "Labour Day", + "2037-03-09": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2037-04-03": "Good Friday", + "2037-04-04": "Easter Saturday", + "2037-04-05": "Easter Sunday", + "2037-04-06": "Easter Monday", + "2037-04-25": "Anzac Day", + "2037-04-27": "Anzac Day (Observed)", + "2037-05-04": "Labour Day; May Day", + "2037-06-01": "Reconciliation Day; Western Australia Day", + "2037-06-08": "King's Birthday", + "2037-08-03": "Bank Holiday; Picnic Day", + "2037-08-12": "The Royal Queensland Show", + "2037-09-25": "Grand Final Day", + "2037-09-28": "King's Birthday", + "2037-10-05": "King's Birthday; Labour Day", + "2037-11-03": "Melbourne Cup", + "2037-12-25": "Christmas Day", + "2037-12-26": "Boxing Day; Proclamation Day", + "2037-12-28": "Boxing Day (Observed); Proclamation Day (Observed)", + "2038-01-01": "New Year's Day", + "2038-01-26": "Australia Day", + "2038-03-01": "Labour Day", + "2038-03-08": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2038-04-23": "Good Friday", + "2038-04-24": "Easter Saturday", + "2038-04-25": "Anzac Day; Easter Sunday", + "2038-04-26": "Anzac Day (Observed); Easter Monday; Easter Sunday (Observed)", + "2038-05-03": "Labour Day; May Day", + "2038-05-31": "Reconciliation Day", + "2038-06-07": "Western Australia Day", + "2038-06-14": "King's Birthday", + "2038-08-02": "Bank Holiday; Picnic Day", + "2038-08-11": "The Royal Queensland Show", + "2038-09-24": "Grand Final Day", + "2038-09-27": "King's Birthday", + "2038-10-04": "King's Birthday; Labour Day", + "2038-11-02": "Melbourne Cup", + "2038-12-25": "Christmas Day", + "2038-12-26": "Boxing Day; Proclamation Day", + "2038-12-27": "Christmas Day (Observed)", + "2038-12-28": "Boxing Day (Observed); Proclamation Day (Observed)", + "2039-01-01": "New Year's Day", + "2039-01-03": "New Year's Day (Observed)", + "2039-01-26": "Australia Day", + "2039-03-07": "Labour Day", + "2039-03-14": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2039-04-08": "Good Friday", + "2039-04-09": "Easter Saturday", + "2039-04-10": "Easter Sunday", + "2039-04-11": "Easter Monday", + "2039-04-25": "Anzac Day", + "2039-05-02": "Labour Day; May Day", + "2039-05-30": "Reconciliation Day", + "2039-06-06": "Western Australia Day", + "2039-06-13": "King's Birthday", + "2039-08-01": "Bank Holiday; Picnic Day", + "2039-08-10": "The Royal Queensland Show", + "2039-09-26": "King's Birthday", + "2039-09-30": "Grand Final Day", + "2039-10-03": "King's Birthday; Labour Day", + "2039-11-01": "Melbourne Cup", + "2039-12-25": "Christmas Day", + "2039-12-26": "Boxing Day; Proclamation Day", + "2039-12-27": "Christmas Day (Observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (Observed)", + "2040-01-26": "Australia Day", + "2040-03-05": "Labour Day", + "2040-03-12": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2040-03-30": "Good Friday", + "2040-03-31": "Easter Saturday", + "2040-04-01": "Easter Sunday", + "2040-04-02": "Easter Monday", + "2040-04-25": "Anzac Day", + "2040-05-07": "Labour Day; May Day", + "2040-05-28": "Reconciliation Day", + "2040-06-04": "Western Australia Day", + "2040-06-11": "King's Birthday", + "2040-08-06": "Bank Holiday; Picnic Day", + "2040-08-15": "The Royal Queensland Show", + "2040-09-28": "Grand Final Day", + "2040-10-01": "King's Birthday; Labour Day", + "2040-11-06": "Melbourne Cup", + "2040-12-25": "Christmas Day", + "2040-12-26": "Boxing Day; Proclamation Day", + "2041-01-01": "New Year's Day", + "2041-01-26": "Australia Day", + "2041-01-28": "Australia Day (Observed)", + "2041-03-04": "Labour Day", + "2041-03-11": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2041-04-19": "Good Friday", + "2041-04-20": "Easter Saturday", + "2041-04-21": "Easter Sunday", + "2041-04-22": "Easter Monday", + "2041-04-25": "Anzac Day", + "2041-05-06": "Labour Day; May Day", + "2041-05-27": "Reconciliation Day", + "2041-06-03": "Western Australia Day", + "2041-06-10": "King's Birthday", + "2041-08-05": "Bank Holiday; Picnic Day", + "2041-08-14": "The Royal Queensland Show", + "2041-09-27": "Grand Final Day", + "2041-09-30": "King's Birthday", + "2041-10-07": "King's Birthday; Labour Day", + "2041-11-05": "Melbourne Cup", + "2041-12-25": "Christmas Day", + "2041-12-26": "Boxing Day; Proclamation Day", + "2042-01-01": "New Year's Day", + "2042-01-26": "Australia Day", + "2042-01-27": "Australia Day (Observed)", + "2042-03-03": "Labour Day", + "2042-03-10": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2042-04-04": "Good Friday", + "2042-04-05": "Easter Saturday", + "2042-04-06": "Easter Sunday", + "2042-04-07": "Easter Monday", + "2042-04-25": "Anzac Day", + "2042-05-05": "Labour Day; May Day", + "2042-06-02": "Reconciliation Day; Western Australia Day", + "2042-06-09": "King's Birthday", + "2042-08-04": "Bank Holiday; Picnic Day", + "2042-08-13": "The Royal Queensland Show", + "2042-09-26": "Grand Final Day", + "2042-09-29": "King's Birthday", + "2042-10-06": "King's Birthday; Labour Day", + "2042-11-04": "Melbourne Cup", + "2042-12-25": "Christmas Day", + "2042-12-26": "Boxing Day; Proclamation Day", + "2043-01-01": "New Year's Day", + "2043-01-26": "Australia Day", + "2043-03-02": "Labour Day", + "2043-03-09": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2043-03-27": "Good Friday", + "2043-03-28": "Easter Saturday", + "2043-03-29": "Easter Sunday", + "2043-03-30": "Easter Monday", + "2043-04-25": "Anzac Day", + "2043-04-27": "Anzac Day (Observed)", + "2043-05-04": "Labour Day; May Day", + "2043-06-01": "Reconciliation Day; Western Australia Day", + "2043-06-08": "King's Birthday", + "2043-08-03": "Bank Holiday; Picnic Day", + "2043-08-12": "The Royal Queensland Show", + "2043-09-25": "Grand Final Day", + "2043-09-28": "King's Birthday", + "2043-10-05": "King's Birthday; Labour Day", + "2043-11-03": "Melbourne Cup", + "2043-12-25": "Christmas Day", + "2043-12-26": "Boxing Day; Proclamation Day", + "2043-12-28": "Boxing Day (Observed); Proclamation Day (Observed)", + "2044-01-01": "New Year's Day", + "2044-01-26": "Australia Day", + "2044-03-07": "Labour Day", + "2044-03-14": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2044-04-15": "Good Friday", + "2044-04-16": "Easter Saturday", + "2044-04-17": "Easter Sunday", + "2044-04-18": "Easter Monday", + "2044-04-25": "Anzac Day", + "2044-05-02": "Labour Day; May Day", + "2044-05-30": "Reconciliation Day", + "2044-06-06": "Western Australia Day", + "2044-06-13": "King's Birthday", + "2044-08-01": "Bank Holiday; Picnic Day", + "2044-08-10": "The Royal Queensland Show", + "2044-09-26": "King's Birthday", + "2044-09-30": "Grand Final Day", + "2044-10-03": "King's Birthday; Labour Day", + "2044-11-01": "Melbourne Cup", + "2044-12-25": "Christmas Day", + "2044-12-26": "Boxing Day; Proclamation Day", + "2044-12-27": "Christmas Day (Observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (Observed)", + "2045-01-26": "Australia Day", + "2045-03-06": "Labour Day", + "2045-03-13": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2045-04-07": "Good Friday", + "2045-04-08": "Easter Saturday", + "2045-04-09": "Easter Sunday", + "2045-04-10": "Easter Monday", + "2045-04-25": "Anzac Day", + "2045-05-01": "Labour Day; May Day", + "2045-05-29": "Reconciliation Day", + "2045-06-05": "Western Australia Day", + "2045-06-12": "King's Birthday", + "2045-08-07": "Bank Holiday; Picnic Day", + "2045-08-16": "The Royal Queensland Show", + "2045-09-25": "King's Birthday", + "2045-09-29": "Grand Final Day", + "2045-10-02": "King's Birthday; Labour Day", + "2045-11-07": "Melbourne Cup", + "2045-12-25": "Christmas Day", + "2045-12-26": "Boxing Day; Proclamation Day", + "2046-01-01": "New Year's Day", + "2046-01-26": "Australia Day", + "2046-03-05": "Labour Day", + "2046-03-12": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2046-03-23": "Good Friday", + "2046-03-24": "Easter Saturday", + "2046-03-25": "Easter Sunday", + "2046-03-26": "Easter Monday", + "2046-04-25": "Anzac Day", + "2046-05-07": "Labour Day; May Day", + "2046-05-28": "Reconciliation Day", + "2046-06-04": "Western Australia Day", + "2046-06-11": "King's Birthday", + "2046-08-06": "Bank Holiday; Picnic Day", + "2046-08-15": "The Royal Queensland Show", + "2046-09-28": "Grand Final Day", + "2046-10-01": "King's Birthday; Labour Day", + "2046-11-06": "Melbourne Cup", + "2046-12-25": "Christmas Day", + "2046-12-26": "Boxing Day; Proclamation Day", + "2047-01-01": "New Year's Day", + "2047-01-26": "Australia Day", + "2047-01-28": "Australia Day (Observed)", + "2047-03-04": "Labour Day", + "2047-03-11": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2047-04-12": "Good Friday", + "2047-04-13": "Easter Saturday", + "2047-04-14": "Easter Sunday", + "2047-04-15": "Easter Monday", + "2047-04-25": "Anzac Day", + "2047-05-06": "Labour Day; May Day", + "2047-05-27": "Reconciliation Day", + "2047-06-03": "Western Australia Day", + "2047-06-10": "King's Birthday", + "2047-08-05": "Bank Holiday; Picnic Day", + "2047-08-14": "The Royal Queensland Show", + "2047-09-27": "Grand Final Day", + "2047-09-30": "King's Birthday", + "2047-10-07": "King's Birthday; Labour Day", + "2047-11-05": "Melbourne Cup", + "2047-12-25": "Christmas Day", + "2047-12-26": "Boxing Day; Proclamation Day", + "2048-01-01": "New Year's Day", + "2048-01-26": "Australia Day", + "2048-01-27": "Australia Day (Observed)", + "2048-03-02": "Labour Day", + "2048-03-09": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2048-04-03": "Good Friday", + "2048-04-04": "Easter Saturday", + "2048-04-05": "Easter Sunday", + "2048-04-06": "Easter Monday", + "2048-04-25": "Anzac Day", + "2048-04-27": "Anzac Day (Observed)", + "2048-05-04": "Labour Day; May Day", + "2048-06-01": "Reconciliation Day; Western Australia Day", + "2048-06-08": "King's Birthday", + "2048-08-03": "Bank Holiday; Picnic Day", + "2048-08-12": "The Royal Queensland Show", + "2048-09-25": "Grand Final Day", + "2048-09-28": "King's Birthday", + "2048-10-05": "King's Birthday; Labour Day", + "2048-11-03": "Melbourne Cup", + "2048-12-25": "Christmas Day", + "2048-12-26": "Boxing Day; Proclamation Day", + "2048-12-28": "Boxing Day (Observed); Proclamation Day (Observed)", + "2049-01-01": "New Year's Day", + "2049-01-26": "Australia Day", + "2049-03-01": "Labour Day", + "2049-03-08": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2049-04-16": "Good Friday", + "2049-04-17": "Easter Saturday", + "2049-04-18": "Easter Sunday", + "2049-04-19": "Easter Monday", + "2049-04-25": "Anzac Day", + "2049-04-26": "Anzac Day (Observed)", + "2049-05-03": "Labour Day; May Day", + "2049-05-31": "Reconciliation Day", + "2049-06-07": "Western Australia Day", + "2049-06-14": "King's Birthday", + "2049-08-02": "Bank Holiday; Picnic Day", + "2049-08-11": "The Royal Queensland Show", + "2049-09-24": "Grand Final Day", + "2049-09-27": "King's Birthday", + "2049-10-04": "King's Birthday; Labour Day", + "2049-11-02": "Melbourne Cup", + "2049-12-25": "Christmas Day", + "2049-12-26": "Boxing Day; Proclamation Day", + "2049-12-27": "Christmas Day (Observed)", + "2049-12-28": "Boxing Day (Observed); Proclamation Day (Observed)", + "2050-01-01": "New Year's Day", + "2050-01-03": "New Year's Day (Observed)", + "2050-01-26": "Australia Day", + "2050-03-07": "Labour Day", + "2050-03-14": "Adelaide Cup; Canberra Day; Eight Hours Day; Labour Day", + "2050-04-08": "Good Friday", + "2050-04-09": "Easter Saturday", + "2050-04-10": "Easter Sunday", + "2050-04-11": "Easter Monday", + "2050-04-25": "Anzac Day", + "2050-05-02": "Labour Day; May Day", + "2050-05-30": "Reconciliation Day", + "2050-06-06": "Western Australia Day", + "2050-06-13": "King's Birthday", + "2050-08-01": "Bank Holiday; Picnic Day", + "2050-08-10": "The Royal Queensland Show", + "2050-09-26": "King's Birthday", + "2050-09-30": "Grand Final Day", + "2050-10-03": "King's Birthday; Labour Day", + "2050-11-01": "Melbourne Cup", + "2050-12-25": "Christmas Day", + "2050-12-26": "Boxing Day; Proclamation Day", + "2050-12-27": "Christmas Day (Observed)" +} diff --git a/snapshots/countries/AW.json b/snapshots/countries/AW.json new file mode 100644 index 000000000..d0664af62 --- /dev/null +++ b/snapshots/countries/AW.json @@ -0,0 +1,1036 @@ +{ + "1950-01-01": "New Year's Day", + "1950-04-07": "Good Friday", + "1950-04-10": "Easter Monday", + "1950-05-01": "Labor Day; Queen's Day", + "1950-05-18": "Ascension Day", + "1950-12-25": "Christmas Day", + "1950-12-26": "Second Day of Christmas", + "1951-01-01": "New Year's Day", + "1951-03-23": "Good Friday", + "1951-03-26": "Easter Monday", + "1951-04-30": "Queen's Day", + "1951-05-01": "Labor Day", + "1951-05-03": "Ascension Day", + "1951-12-25": "Christmas Day", + "1951-12-26": "Second Day of Christmas", + "1952-01-01": "New Year's Day", + "1952-04-11": "Good Friday", + "1952-04-14": "Easter Monday", + "1952-04-30": "Queen's Day", + "1952-05-01": "Labor Day", + "1952-05-22": "Ascension Day", + "1952-12-25": "Christmas Day", + "1952-12-26": "Second Day of Christmas", + "1953-01-01": "New Year's Day", + "1953-04-03": "Good Friday", + "1953-04-06": "Easter Monday", + "1953-04-30": "Queen's Day", + "1953-05-01": "Labor Day", + "1953-05-14": "Ascension Day", + "1953-12-25": "Christmas Day", + "1953-12-26": "Second Day of Christmas", + "1954-01-01": "New Year's Day", + "1954-04-16": "Good Friday", + "1954-04-19": "Easter Monday", + "1954-04-30": "Queen's Day", + "1954-05-01": "Labor Day", + "1954-05-27": "Ascension Day", + "1954-12-25": "Christmas Day", + "1954-12-26": "Second Day of Christmas", + "1955-01-01": "New Year's Day", + "1955-04-08": "Good Friday", + "1955-04-11": "Easter Monday", + "1955-04-30": "Queen's Day", + "1955-05-01": "Labor Day", + "1955-05-19": "Ascension Day", + "1955-12-25": "Christmas Day", + "1955-12-26": "Second Day of Christmas", + "1956-01-01": "New Year's Day", + "1956-02-13": "Carnival Monday", + "1956-03-30": "Good Friday", + "1956-04-02": "Easter Monday", + "1956-04-30": "Queen's Day", + "1956-05-01": "Labor Day", + "1956-05-10": "Ascension Day", + "1956-12-25": "Christmas Day", + "1956-12-26": "Second Day of Christmas", + "1957-01-01": "New Year's Day", + "1957-03-04": "Carnival Monday", + "1957-04-19": "Good Friday", + "1957-04-22": "Easter Monday", + "1957-04-30": "Queen's Day", + "1957-05-01": "Labor Day", + "1957-05-30": "Ascension Day", + "1957-12-25": "Christmas Day", + "1957-12-26": "Second Day of Christmas", + "1958-01-01": "New Year's Day", + "1958-02-17": "Carnival Monday", + "1958-04-04": "Good Friday", + "1958-04-07": "Easter Monday", + "1958-04-30": "Queen's Day", + "1958-05-01": "Labor Day", + "1958-05-15": "Ascension Day", + "1958-12-25": "Christmas Day", + "1958-12-26": "Second Day of Christmas", + "1959-01-01": "New Year's Day", + "1959-02-09": "Carnival Monday", + "1959-03-27": "Good Friday", + "1959-03-30": "Easter Monday", + "1959-04-30": "Queen's Day", + "1959-05-01": "Labor Day", + "1959-05-07": "Ascension Day", + "1959-12-25": "Christmas Day", + "1959-12-26": "Second Day of Christmas", + "1960-01-01": "New Year's Day", + "1960-02-29": "Carnival Monday", + "1960-04-15": "Good Friday", + "1960-04-18": "Easter Monday", + "1960-04-30": "Queen's Day", + "1960-05-01": "Labor Day", + "1960-05-26": "Ascension Day", + "1960-12-25": "Christmas Day", + "1960-12-26": "Second Day of Christmas", + "1961-01-01": "New Year's Day", + "1961-02-13": "Carnival Monday", + "1961-03-31": "Good Friday", + "1961-04-03": "Easter Monday", + "1961-05-01": "Labor Day; Queen's Day", + "1961-05-11": "Ascension Day", + "1961-12-25": "Christmas Day", + "1961-12-26": "Second Day of Christmas", + "1962-01-01": "New Year's Day", + "1962-03-05": "Carnival Monday", + "1962-04-20": "Good Friday", + "1962-04-23": "Easter Monday", + "1962-04-30": "Queen's Day", + "1962-05-01": "Labor Day", + "1962-05-31": "Ascension Day", + "1962-12-25": "Christmas Day", + "1962-12-26": "Second Day of Christmas", + "1963-01-01": "New Year's Day", + "1963-02-25": "Carnival Monday", + "1963-04-12": "Good Friday", + "1963-04-15": "Easter Monday", + "1963-04-30": "Queen's Day", + "1963-05-01": "Labor Day", + "1963-05-23": "Ascension Day", + "1963-12-25": "Christmas Day", + "1963-12-26": "Second Day of Christmas", + "1964-01-01": "New Year's Day", + "1964-02-10": "Carnival Monday", + "1964-03-27": "Good Friday", + "1964-03-30": "Easter Monday", + "1964-04-30": "Queen's Day", + "1964-05-01": "Labor Day", + "1964-05-07": "Ascension Day", + "1964-12-25": "Christmas Day", + "1964-12-26": "Second Day of Christmas", + "1965-01-01": "New Year's Day", + "1965-03-01": "Carnival Monday", + "1965-04-16": "Good Friday", + "1965-04-19": "Easter Monday", + "1965-04-30": "Queen's Day", + "1965-05-01": "Labor Day", + "1965-05-27": "Ascension Day", + "1965-12-25": "Christmas Day", + "1965-12-26": "Second Day of Christmas", + "1966-01-01": "New Year's Day", + "1966-02-21": "Carnival Monday", + "1966-04-08": "Good Friday", + "1966-04-11": "Easter Monday", + "1966-04-30": "Queen's Day", + "1966-05-01": "Labor Day", + "1966-05-19": "Ascension Day", + "1966-12-25": "Christmas Day", + "1966-12-26": "Second Day of Christmas", + "1967-01-01": "New Year's Day", + "1967-02-06": "Carnival Monday", + "1967-03-24": "Good Friday", + "1967-03-27": "Easter Monday", + "1967-05-01": "Labor Day; Queen's Day", + "1967-05-04": "Ascension Day", + "1967-12-25": "Christmas Day", + "1967-12-26": "Second Day of Christmas", + "1968-01-01": "New Year's Day", + "1968-02-26": "Carnival Monday", + "1968-04-12": "Good Friday", + "1968-04-15": "Easter Monday", + "1968-04-30": "Queen's Day", + "1968-05-01": "Labor Day", + "1968-05-23": "Ascension Day", + "1968-12-25": "Christmas Day", + "1968-12-26": "Second Day of Christmas", + "1969-01-01": "New Year's Day", + "1969-02-17": "Carnival Monday", + "1969-04-04": "Good Friday", + "1969-04-07": "Easter Monday", + "1969-04-30": "Queen's Day", + "1969-05-01": "Labor Day", + "1969-05-15": "Ascension Day", + "1969-12-25": "Christmas Day", + "1969-12-26": "Second Day of Christmas", + "1970-01-01": "New Year's Day", + "1970-02-09": "Carnival Monday", + "1970-03-27": "Good Friday", + "1970-03-30": "Easter Monday", + "1970-04-30": "Queen's Day", + "1970-05-01": "Labor Day", + "1970-05-07": "Ascension Day", + "1970-12-25": "Christmas Day", + "1970-12-26": "Second Day of Christmas", + "1971-01-01": "New Year's Day", + "1971-02-22": "Carnival Monday", + "1971-04-09": "Good Friday", + "1971-04-12": "Easter Monday", + "1971-04-30": "Queen's Day", + "1971-05-01": "Labor Day", + "1971-05-20": "Ascension Day", + "1971-12-25": "Christmas Day", + "1971-12-26": "Second Day of Christmas", + "1972-01-01": "New Year's Day", + "1972-02-14": "Carnival Monday", + "1972-03-31": "Good Friday", + "1972-04-03": "Easter Monday", + "1972-05-01": "Labor Day; Queen's Day", + "1972-05-11": "Ascension Day", + "1972-12-25": "Christmas Day", + "1972-12-26": "Second Day of Christmas", + "1973-01-01": "New Year's Day", + "1973-03-05": "Carnival Monday", + "1973-04-20": "Good Friday", + "1973-04-23": "Easter Monday", + "1973-04-30": "Queen's Day", + "1973-05-01": "Labor Day", + "1973-05-31": "Ascension Day", + "1973-12-25": "Christmas Day", + "1973-12-26": "Second Day of Christmas", + "1974-01-01": "New Year's Day", + "1974-02-25": "Carnival Monday", + "1974-04-12": "Good Friday", + "1974-04-15": "Easter Monday", + "1974-04-30": "Queen's Day", + "1974-05-01": "Labor Day", + "1974-05-23": "Ascension Day", + "1974-12-25": "Christmas Day", + "1974-12-26": "Second Day of Christmas", + "1975-01-01": "New Year's Day", + "1975-02-10": "Carnival Monday", + "1975-03-28": "Good Friday", + "1975-03-31": "Easter Monday", + "1975-04-30": "Queen's Day", + "1975-05-01": "Labor Day", + "1975-05-08": "Ascension Day", + "1975-12-25": "Christmas Day", + "1975-12-26": "Second Day of Christmas", + "1976-01-01": "New Year's Day", + "1976-03-01": "Carnival Monday", + "1976-03-18": "National Anthem and Flag Day", + "1976-04-16": "Good Friday", + "1976-04-19": "Easter Monday", + "1976-04-30": "Queen's Day", + "1976-05-01": "Labor Day", + "1976-05-27": "Ascension Day", + "1976-12-25": "Christmas Day", + "1976-12-26": "Second Day of Christmas", + "1977-01-01": "New Year's Day", + "1977-02-21": "Carnival Monday", + "1977-03-18": "National Anthem and Flag Day", + "1977-04-08": "Good Friday", + "1977-04-11": "Easter Monday", + "1977-04-30": "Queen's Day", + "1977-05-01": "Labor Day", + "1977-05-19": "Ascension Day", + "1977-12-25": "Christmas Day", + "1977-12-26": "Second Day of Christmas", + "1978-01-01": "New Year's Day", + "1978-02-06": "Carnival Monday", + "1978-03-18": "National Anthem and Flag Day", + "1978-03-24": "Good Friday", + "1978-03-27": "Easter Monday", + "1978-05-01": "Labor Day; Queen's Day", + "1978-05-04": "Ascension Day", + "1978-12-25": "Christmas Day", + "1978-12-26": "Second Day of Christmas", + "1979-01-01": "New Year's Day", + "1979-02-26": "Carnival Monday", + "1979-03-18": "National Anthem and Flag Day", + "1979-04-13": "Good Friday", + "1979-04-16": "Easter Monday", + "1979-04-30": "Queen's Day", + "1979-05-01": "Labor Day", + "1979-05-24": "Ascension Day", + "1979-12-25": "Christmas Day", + "1979-12-26": "Second Day of Christmas", + "1980-01-01": "New Year's Day", + "1980-02-18": "Carnival Monday", + "1980-03-18": "National Anthem and Flag Day", + "1980-04-04": "Good Friday", + "1980-04-07": "Easter Monday", + "1980-04-30": "Queen's Day", + "1980-05-01": "Labor Day", + "1980-05-15": "Ascension Day", + "1980-12-25": "Christmas Day", + "1980-12-26": "Second Day of Christmas", + "1981-01-01": "New Year's Day", + "1981-03-02": "Carnival Monday", + "1981-03-18": "National Anthem and Flag Day", + "1981-04-17": "Good Friday", + "1981-04-20": "Easter Monday", + "1981-04-30": "Queen's Day", + "1981-05-01": "Labor Day", + "1981-05-28": "Ascension Day", + "1981-12-25": "Christmas Day", + "1981-12-26": "Second Day of Christmas", + "1982-01-01": "New Year's Day", + "1982-02-22": "Carnival Monday", + "1982-03-18": "National Anthem and Flag Day", + "1982-04-09": "Good Friday", + "1982-04-12": "Easter Monday", + "1982-04-30": "Queen's Day", + "1982-05-01": "Labor Day", + "1982-05-20": "Ascension Day", + "1982-12-25": "Christmas Day", + "1982-12-26": "Second Day of Christmas", + "1983-01-01": "New Year's Day", + "1983-02-14": "Carnival Monday", + "1983-03-18": "National Anthem and Flag Day", + "1983-04-01": "Good Friday", + "1983-04-04": "Easter Monday", + "1983-04-30": "Queen's Day", + "1983-05-01": "Labor Day", + "1983-05-12": "Ascension Day", + "1983-12-25": "Christmas Day", + "1983-12-26": "Second Day of Christmas", + "1984-01-01": "New Year's Day", + "1984-03-05": "Carnival Monday", + "1984-03-18": "National Anthem and Flag Day", + "1984-04-20": "Good Friday", + "1984-04-23": "Easter Monday", + "1984-04-30": "Queen's Day", + "1984-05-01": "Labor Day", + "1984-05-31": "Ascension Day", + "1984-12-25": "Christmas Day", + "1984-12-26": "Second Day of Christmas", + "1985-01-01": "New Year's Day", + "1985-02-18": "Carnival Monday", + "1985-03-18": "National Anthem and Flag Day", + "1985-04-05": "Good Friday", + "1985-04-08": "Easter Monday", + "1985-04-30": "Queen's Day", + "1985-05-01": "Labor Day", + "1985-05-16": "Ascension Day", + "1985-12-25": "Christmas Day", + "1985-12-26": "Second Day of Christmas", + "1986-01-01": "New Year's Day", + "1986-02-10": "Carnival Monday", + "1986-03-18": "National Anthem and Flag Day", + "1986-03-28": "Good Friday", + "1986-03-31": "Easter Monday", + "1986-04-30": "Queen's Day", + "1986-05-01": "Labor Day", + "1986-05-08": "Ascension Day", + "1986-12-25": "Christmas Day", + "1986-12-26": "Second Day of Christmas", + "1987-01-01": "New Year's Day", + "1987-03-02": "Carnival Monday", + "1987-03-18": "National Anthem and Flag Day", + "1987-04-17": "Good Friday", + "1987-04-20": "Easter Monday", + "1987-04-30": "Queen's Day", + "1987-05-01": "Labor Day", + "1987-05-28": "Ascension Day", + "1987-12-25": "Christmas Day", + "1987-12-26": "Second Day of Christmas", + "1988-01-01": "New Year's Day", + "1988-02-15": "Carnival Monday", + "1988-03-18": "National Anthem and Flag Day", + "1988-04-01": "Good Friday", + "1988-04-04": "Easter Monday", + "1988-04-30": "Queen's Day", + "1988-05-01": "Labor Day", + "1988-05-12": "Ascension Day", + "1988-12-25": "Christmas Day", + "1988-12-26": "Second Day of Christmas", + "1989-01-01": "New Year's Day", + "1989-01-25": "Betico Day", + "1989-02-06": "Carnival Monday", + "1989-03-18": "National Anthem and Flag Day", + "1989-03-24": "Good Friday", + "1989-03-27": "Easter Monday", + "1989-04-29": "Queen's Day", + "1989-05-01": "Labor Day", + "1989-05-04": "Ascension Day", + "1989-12-25": "Christmas Day", + "1989-12-26": "Second Day of Christmas", + "1990-01-01": "New Year's Day", + "1990-01-25": "Betico Day", + "1990-02-26": "Carnival Monday", + "1990-03-18": "National Anthem and Flag Day", + "1990-04-13": "Good Friday", + "1990-04-16": "Easter Monday", + "1990-04-30": "Queen's Day", + "1990-05-01": "Labor Day", + "1990-05-24": "Ascension Day", + "1990-12-25": "Christmas Day", + "1990-12-26": "Second Day of Christmas", + "1991-01-01": "New Year's Day", + "1991-01-25": "Betico Day", + "1991-02-11": "Carnival Monday", + "1991-03-18": "National Anthem and Flag Day", + "1991-03-29": "Good Friday", + "1991-04-01": "Easter Monday", + "1991-04-30": "Queen's Day", + "1991-05-01": "Labor Day", + "1991-05-09": "Ascension Day", + "1991-12-25": "Christmas Day", + "1991-12-26": "Second Day of Christmas", + "1992-01-01": "New Year's Day", + "1992-01-25": "Betico Day", + "1992-03-02": "Carnival Monday", + "1992-03-18": "National Anthem and Flag Day", + "1992-04-17": "Good Friday", + "1992-04-20": "Easter Monday", + "1992-04-30": "Queen's Day", + "1992-05-01": "Labor Day", + "1992-05-28": "Ascension Day", + "1992-12-25": "Christmas Day", + "1992-12-26": "Second Day of Christmas", + "1993-01-01": "New Year's Day", + "1993-01-25": "Betico Day", + "1993-02-22": "Carnival Monday", + "1993-03-18": "National Anthem and Flag Day", + "1993-04-09": "Good Friday", + "1993-04-12": "Easter Monday", + "1993-04-30": "Queen's Day", + "1993-05-01": "Labor Day", + "1993-05-20": "Ascension Day", + "1993-12-25": "Christmas Day", + "1993-12-26": "Second Day of Christmas", + "1994-01-01": "New Year's Day", + "1994-01-25": "Betico Day", + "1994-02-14": "Carnival Monday", + "1994-03-18": "National Anthem and Flag Day", + "1994-04-01": "Good Friday", + "1994-04-04": "Easter Monday", + "1994-04-30": "Queen's Day", + "1994-05-01": "Labor Day", + "1994-05-12": "Ascension Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Second Day of Christmas", + "1995-01-01": "New Year's Day", + "1995-01-25": "Betico Day", + "1995-02-27": "Carnival Monday", + "1995-03-18": "National Anthem and Flag Day", + "1995-04-14": "Good Friday", + "1995-04-17": "Easter Monday", + "1995-04-29": "Queen's Day", + "1995-05-01": "Labor Day", + "1995-05-25": "Ascension Day", + "1995-12-25": "Christmas Day", + "1995-12-26": "Second Day of Christmas", + "1996-01-01": "New Year's Day", + "1996-01-25": "Betico Day", + "1996-02-19": "Carnival Monday", + "1996-03-18": "National Anthem and Flag Day", + "1996-04-05": "Good Friday", + "1996-04-08": "Easter Monday", + "1996-04-30": "Queen's Day", + "1996-05-01": "Labor Day", + "1996-05-16": "Ascension Day", + "1996-12-25": "Christmas Day", + "1996-12-26": "Second Day of Christmas", + "1997-01-01": "New Year's Day", + "1997-01-25": "Betico Day", + "1997-02-10": "Carnival Monday", + "1997-03-18": "National Anthem and Flag Day", + "1997-03-28": "Good Friday", + "1997-03-31": "Easter Monday", + "1997-04-30": "Queen's Day", + "1997-05-01": "Labor Day", + "1997-05-08": "Ascension Day", + "1997-12-25": "Christmas Day", + "1997-12-26": "Second Day of Christmas", + "1998-01-01": "New Year's Day", + "1998-01-25": "Betico Day", + "1998-02-23": "Carnival Monday", + "1998-03-18": "National Anthem and Flag Day", + "1998-04-10": "Good Friday", + "1998-04-13": "Easter Monday", + "1998-04-30": "Queen's Day", + "1998-05-01": "Labor Day", + "1998-05-21": "Ascension Day", + "1998-12-25": "Christmas Day", + "1998-12-26": "Second Day of Christmas", + "1999-01-01": "New Year's Day", + "1999-01-25": "Betico Day", + "1999-02-15": "Carnival Monday", + "1999-03-18": "National Anthem and Flag Day", + "1999-04-02": "Good Friday", + "1999-04-05": "Easter Monday", + "1999-04-30": "Queen's Day", + "1999-05-01": "Labor Day", + "1999-05-13": "Ascension Day", + "1999-12-25": "Christmas Day", + "1999-12-26": "Second Day of Christmas", + "2000-01-01": "New Year's Day", + "2000-01-25": "Betico Day", + "2000-03-06": "Carnival Monday", + "2000-03-18": "National Anthem and Flag Day", + "2000-04-21": "Good Friday", + "2000-04-24": "Easter Monday", + "2000-04-29": "Queen's Day", + "2000-05-01": "Labor Day", + "2000-06-01": "Ascension Day", + "2000-12-25": "Christmas Day", + "2000-12-26": "Second Day of Christmas", + "2001-01-01": "New Year's Day", + "2001-01-25": "Betico Day", + "2001-02-26": "Carnival Monday", + "2001-03-18": "National Anthem and Flag Day", + "2001-04-13": "Good Friday", + "2001-04-16": "Easter Monday", + "2001-04-30": "Queen's Day", + "2001-05-01": "Labor Day", + "2001-05-24": "Ascension Day", + "2001-12-25": "Christmas Day", + "2001-12-26": "Second Day of Christmas", + "2002-01-01": "New Year's Day", + "2002-01-25": "Betico Day", + "2002-02-11": "Carnival Monday", + "2002-03-18": "National Anthem and Flag Day", + "2002-03-29": "Good Friday", + "2002-04-01": "Easter Monday", + "2002-04-30": "Queen's Day", + "2002-05-01": "Labor Day", + "2002-05-09": "Ascension Day", + "2002-12-25": "Christmas Day", + "2002-12-26": "Second Day of Christmas", + "2003-01-01": "New Year's Day", + "2003-01-25": "Betico Day", + "2003-03-03": "Carnival Monday", + "2003-03-18": "National Anthem and Flag Day", + "2003-04-18": "Good Friday", + "2003-04-21": "Easter Monday", + "2003-04-30": "Queen's Day", + "2003-05-01": "Labor Day", + "2003-05-29": "Ascension Day", + "2003-12-25": "Christmas Day", + "2003-12-26": "Second Day of Christmas", + "2004-01-01": "New Year's Day", + "2004-01-25": "Betico Day", + "2004-02-23": "Carnival Monday", + "2004-03-18": "National Anthem and Flag Day", + "2004-04-09": "Good Friday", + "2004-04-12": "Easter Monday", + "2004-04-30": "Queen's Day", + "2004-05-01": "Labor Day", + "2004-05-20": "Ascension Day", + "2004-12-25": "Christmas Day", + "2004-12-26": "Second Day of Christmas", + "2005-01-01": "New Year's Day", + "2005-01-25": "Betico Day", + "2005-02-07": "Carnival Monday", + "2005-03-18": "National Anthem and Flag Day", + "2005-03-25": "Good Friday", + "2005-03-28": "Easter Monday", + "2005-04-30": "Queen's Day", + "2005-05-01": "Labor Day", + "2005-05-05": "Ascension Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "Second Day of Christmas", + "2006-01-01": "New Year's Day", + "2006-01-25": "Betico Day", + "2006-02-27": "Carnival Monday", + "2006-03-18": "National Anthem and Flag Day", + "2006-04-14": "Good Friday", + "2006-04-17": "Easter Monday", + "2006-04-29": "Queen's Day", + "2006-05-01": "Labor Day", + "2006-05-25": "Ascension Day", + "2006-12-25": "Christmas Day", + "2006-12-26": "Second Day of Christmas", + "2007-01-01": "New Year's Day", + "2007-01-25": "Betico Day", + "2007-02-19": "Carnival Monday", + "2007-03-18": "National Anthem and Flag Day", + "2007-04-06": "Good Friday", + "2007-04-09": "Easter Monday", + "2007-04-30": "Queen's Day", + "2007-05-01": "Labor Day", + "2007-05-17": "Ascension Day", + "2007-12-25": "Christmas Day", + "2007-12-26": "Second Day of Christmas", + "2008-01-01": "New Year's Day", + "2008-01-25": "Betico Day", + "2008-02-04": "Carnival Monday", + "2008-03-18": "National Anthem and Flag Day", + "2008-03-21": "Good Friday", + "2008-03-24": "Easter Monday", + "2008-04-30": "Queen's Day", + "2008-05-01": "Ascension Day; Labor Day", + "2008-12-25": "Christmas Day", + "2008-12-26": "Second Day of Christmas", + "2009-01-01": "New Year's Day", + "2009-01-25": "Betico Day", + "2009-02-23": "Carnival Monday", + "2009-03-18": "National Anthem and Flag Day", + "2009-04-10": "Good Friday", + "2009-04-13": "Easter Monday", + "2009-04-30": "Queen's Day", + "2009-05-01": "Labor Day", + "2009-05-21": "Ascension Day", + "2009-12-25": "Christmas Day", + "2009-12-26": "Second Day of Christmas", + "2010-01-01": "New Year's Day", + "2010-01-25": "Betico Day", + "2010-02-15": "Carnival Monday", + "2010-03-18": "National Anthem and Flag Day", + "2010-04-02": "Good Friday", + "2010-04-05": "Easter Monday", + "2010-04-30": "Queen's Day", + "2010-05-01": "Labor Day", + "2010-05-13": "Ascension Day", + "2010-12-25": "Christmas Day", + "2010-12-26": "Second Day of Christmas", + "2011-01-01": "New Year's Day", + "2011-01-25": "Betico Day", + "2011-03-07": "Carnival Monday", + "2011-03-18": "National Anthem and Flag Day", + "2011-04-22": "Good Friday", + "2011-04-25": "Easter Monday", + "2011-04-30": "Queen's Day", + "2011-05-01": "Labor Day", + "2011-06-02": "Ascension Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "Second Day of Christmas", + "2012-01-01": "New Year's Day", + "2012-01-25": "Betico Day", + "2012-02-20": "Carnival Monday", + "2012-03-18": "National Anthem and Flag Day", + "2012-04-06": "Good Friday", + "2012-04-09": "Easter Monday", + "2012-04-30": "Queen's Day", + "2012-05-01": "Labor Day", + "2012-05-17": "Ascension Day", + "2012-12-25": "Christmas Day", + "2012-12-26": "Second Day of Christmas", + "2013-01-01": "New Year's Day", + "2013-01-25": "Betico Day", + "2013-02-11": "Carnival Monday", + "2013-03-18": "National Anthem and Flag Day", + "2013-03-29": "Good Friday", + "2013-04-01": "Easter Monday", + "2013-04-30": "Queen's Day", + "2013-05-01": "Labor Day", + "2013-05-09": "Ascension Day", + "2013-12-25": "Christmas Day", + "2013-12-26": "Second Day of Christmas", + "2014-01-01": "New Year's Day", + "2014-01-25": "Betico Day", + "2014-03-03": "Carnival Monday", + "2014-03-18": "National Anthem and Flag Day", + "2014-04-18": "Good Friday", + "2014-04-21": "Easter Monday", + "2014-04-26": "King's Day", + "2014-05-01": "Labor Day", + "2014-05-29": "Ascension Day", + "2014-12-25": "Christmas Day", + "2014-12-26": "Second Day of Christmas", + "2015-01-01": "New Year's Day", + "2015-01-25": "Betico Day", + "2015-02-16": "Carnival Monday", + "2015-03-18": "National Anthem and Flag Day", + "2015-04-03": "Good Friday", + "2015-04-06": "Easter Monday", + "2015-04-27": "King's Day", + "2015-05-01": "Labor Day", + "2015-05-14": "Ascension Day", + "2015-12-25": "Christmas Day", + "2015-12-26": "Second Day of Christmas", + "2016-01-01": "New Year's Day", + "2016-01-25": "Betico Day", + "2016-02-08": "Carnival Monday", + "2016-03-18": "National Anthem and Flag Day", + "2016-03-25": "Good Friday", + "2016-03-28": "Easter Monday", + "2016-04-27": "King's Day", + "2016-05-01": "Labor Day", + "2016-05-05": "Ascension Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "Second Day of Christmas", + "2017-01-01": "New Year's Day", + "2017-01-25": "Betico Day", + "2017-02-27": "Carnival Monday", + "2017-03-18": "National Anthem and Flag Day", + "2017-04-14": "Good Friday", + "2017-04-17": "Easter Monday", + "2017-04-27": "King's Day", + "2017-05-01": "Labor Day", + "2017-05-25": "Ascension Day", + "2017-12-25": "Christmas Day", + "2017-12-26": "Second Day of Christmas", + "2018-01-01": "New Year's Day", + "2018-01-25": "Betico Day", + "2018-02-12": "Carnival Monday", + "2018-03-18": "National Anthem and Flag Day", + "2018-03-30": "Good Friday", + "2018-04-02": "Easter Monday", + "2018-04-27": "King's Day", + "2018-05-01": "Labor Day", + "2018-05-10": "Ascension Day", + "2018-12-25": "Christmas Day", + "2018-12-26": "Second Day of Christmas", + "2019-01-01": "New Year's Day", + "2019-01-25": "Betico Day", + "2019-03-04": "Carnival Monday", + "2019-03-18": "National Anthem and Flag Day", + "2019-04-19": "Good Friday", + "2019-04-22": "Easter Monday", + "2019-04-27": "King's Day", + "2019-05-01": "Labor Day", + "2019-05-30": "Ascension Day", + "2019-12-25": "Christmas Day", + "2019-12-26": "Second Day of Christmas", + "2020-01-01": "New Year's Day", + "2020-01-25": "Betico Day", + "2020-02-24": "Carnival Monday", + "2020-03-18": "National Anthem and Flag Day", + "2020-04-10": "Good Friday", + "2020-04-13": "Easter Monday", + "2020-04-27": "King's Day", + "2020-05-01": "Labor Day", + "2020-05-21": "Ascension Day", + "2020-12-25": "Christmas Day", + "2020-12-26": "Second Day of Christmas", + "2021-01-01": "New Year's Day", + "2021-01-25": "Betico Day", + "2021-02-15": "Carnival Monday", + "2021-03-18": "National Anthem and Flag Day", + "2021-04-02": "Good Friday", + "2021-04-05": "Easter Monday", + "2021-04-27": "King's Day", + "2021-05-01": "Labor Day", + "2021-05-13": "Ascension Day", + "2021-12-25": "Christmas Day", + "2021-12-26": "Second Day of Christmas", + "2022-01-01": "New Year's Day", + "2022-01-25": "Betico Day", + "2022-02-28": "Carnival Monday", + "2022-03-18": "National Anthem and Flag Day", + "2022-04-15": "Good Friday", + "2022-04-18": "Easter Monday", + "2022-04-27": "King's Day", + "2022-05-01": "Labor Day", + "2022-05-26": "Ascension Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "Second Day of Christmas", + "2023-01-01": "New Year's Day", + "2023-01-25": "Betico Day", + "2023-02-20": "Monday before Ash Wednesday", + "2023-03-18": "National Anthem and Flag Day", + "2023-04-07": "Good Friday", + "2023-04-10": "Easter Monday", + "2023-04-27": "King's Day", + "2023-05-01": "Labor Day", + "2023-05-18": "Ascension Day", + "2023-12-25": "Christmas Day", + "2023-12-26": "Second Day of Christmas", + "2024-01-01": "New Year's Day", + "2024-01-25": "Betico Day", + "2024-02-12": "Monday before Ash Wednesday", + "2024-03-18": "National Anthem and Flag Day", + "2024-03-29": "Good Friday", + "2024-04-01": "Easter Monday", + "2024-04-27": "King's Day", + "2024-05-01": "Labor Day", + "2024-05-09": "Ascension Day", + "2024-12-25": "Christmas Day", + "2024-12-26": "Second Day of Christmas", + "2025-01-01": "New Year's Day", + "2025-01-25": "Betico Day", + "2025-03-03": "Monday before Ash Wednesday", + "2025-03-18": "National Anthem and Flag Day", + "2025-04-18": "Good Friday", + "2025-04-21": "Easter Monday", + "2025-04-26": "King's Day", + "2025-05-01": "Labor Day", + "2025-05-29": "Ascension Day", + "2025-12-25": "Christmas Day", + "2025-12-26": "Second Day of Christmas", + "2026-01-01": "New Year's Day", + "2026-01-25": "Betico Day", + "2026-02-16": "Monday before Ash Wednesday", + "2026-03-18": "National Anthem and Flag Day", + "2026-04-03": "Good Friday", + "2026-04-06": "Easter Monday", + "2026-04-27": "King's Day", + "2026-05-01": "Labor Day", + "2026-05-14": "Ascension Day", + "2026-12-25": "Christmas Day", + "2026-12-26": "Second Day of Christmas", + "2027-01-01": "New Year's Day", + "2027-01-25": "Betico Day", + "2027-02-08": "Monday before Ash Wednesday", + "2027-03-18": "National Anthem and Flag Day", + "2027-03-26": "Good Friday", + "2027-03-29": "Easter Monday", + "2027-04-27": "King's Day", + "2027-05-01": "Labor Day", + "2027-05-06": "Ascension Day", + "2027-12-25": "Christmas Day", + "2027-12-26": "Second Day of Christmas", + "2028-01-01": "New Year's Day", + "2028-01-25": "Betico Day", + "2028-02-28": "Monday before Ash Wednesday", + "2028-03-18": "National Anthem and Flag Day", + "2028-04-14": "Good Friday", + "2028-04-17": "Easter Monday", + "2028-04-27": "King's Day", + "2028-05-01": "Labor Day", + "2028-05-25": "Ascension Day", + "2028-12-25": "Christmas Day", + "2028-12-26": "Second Day of Christmas", + "2029-01-01": "New Year's Day", + "2029-01-25": "Betico Day", + "2029-02-12": "Monday before Ash Wednesday", + "2029-03-18": "National Anthem and Flag Day", + "2029-03-30": "Good Friday", + "2029-04-02": "Easter Monday", + "2029-04-27": "King's Day", + "2029-05-01": "Labor Day", + "2029-05-10": "Ascension Day", + "2029-12-25": "Christmas Day", + "2029-12-26": "Second Day of Christmas", + "2030-01-01": "New Year's Day", + "2030-01-25": "Betico Day", + "2030-03-04": "Monday before Ash Wednesday", + "2030-03-18": "National Anthem and Flag Day", + "2030-04-19": "Good Friday", + "2030-04-22": "Easter Monday", + "2030-04-27": "King's Day", + "2030-05-01": "Labor Day", + "2030-05-30": "Ascension Day", + "2030-12-25": "Christmas Day", + "2030-12-26": "Second Day of Christmas", + "2031-01-01": "New Year's Day", + "2031-01-25": "Betico Day", + "2031-02-24": "Monday before Ash Wednesday", + "2031-03-18": "National Anthem and Flag Day", + "2031-04-11": "Good Friday", + "2031-04-14": "Easter Monday", + "2031-04-26": "King's Day", + "2031-05-01": "Labor Day", + "2031-05-22": "Ascension Day", + "2031-12-25": "Christmas Day", + "2031-12-26": "Second Day of Christmas", + "2032-01-01": "New Year's Day", + "2032-01-25": "Betico Day", + "2032-02-09": "Monday before Ash Wednesday", + "2032-03-18": "National Anthem and Flag Day", + "2032-03-26": "Good Friday", + "2032-03-29": "Easter Monday", + "2032-04-27": "King's Day", + "2032-05-01": "Labor Day", + "2032-05-06": "Ascension Day", + "2032-12-25": "Christmas Day", + "2032-12-26": "Second Day of Christmas", + "2033-01-01": "New Year's Day", + "2033-01-25": "Betico Day", + "2033-02-28": "Monday before Ash Wednesday", + "2033-03-18": "National Anthem and Flag Day", + "2033-04-15": "Good Friday", + "2033-04-18": "Easter Monday", + "2033-04-27": "King's Day", + "2033-05-01": "Labor Day", + "2033-05-26": "Ascension Day", + "2033-12-25": "Christmas Day", + "2033-12-26": "Second Day of Christmas", + "2034-01-01": "New Year's Day", + "2034-01-25": "Betico Day", + "2034-02-20": "Monday before Ash Wednesday", + "2034-03-18": "National Anthem and Flag Day", + "2034-04-07": "Good Friday", + "2034-04-10": "Easter Monday", + "2034-04-27": "King's Day", + "2034-05-01": "Labor Day", + "2034-05-18": "Ascension Day", + "2034-12-25": "Christmas Day", + "2034-12-26": "Second Day of Christmas", + "2035-01-01": "New Year's Day", + "2035-01-25": "Betico Day", + "2035-02-05": "Monday before Ash Wednesday", + "2035-03-18": "National Anthem and Flag Day", + "2035-03-23": "Good Friday", + "2035-03-26": "Easter Monday", + "2035-04-27": "King's Day", + "2035-05-01": "Labor Day", + "2035-05-03": "Ascension Day", + "2035-12-25": "Christmas Day", + "2035-12-26": "Second Day of Christmas", + "2036-01-01": "New Year's Day", + "2036-01-25": "Betico Day", + "2036-02-25": "Monday before Ash Wednesday", + "2036-03-18": "National Anthem and Flag Day", + "2036-04-11": "Good Friday", + "2036-04-14": "Easter Monday", + "2036-04-26": "King's Day", + "2036-05-01": "Labor Day", + "2036-05-22": "Ascension Day", + "2036-12-25": "Christmas Day", + "2036-12-26": "Second Day of Christmas", + "2037-01-01": "New Year's Day", + "2037-01-25": "Betico Day", + "2037-02-16": "Monday before Ash Wednesday", + "2037-03-18": "National Anthem and Flag Day", + "2037-04-03": "Good Friday", + "2037-04-06": "Easter Monday", + "2037-04-27": "King's Day", + "2037-05-01": "Labor Day", + "2037-05-14": "Ascension Day", + "2037-12-25": "Christmas Day", + "2037-12-26": "Second Day of Christmas", + "2038-01-01": "New Year's Day", + "2038-01-25": "Betico Day", + "2038-03-08": "Monday before Ash Wednesday", + "2038-03-18": "National Anthem and Flag Day", + "2038-04-23": "Good Friday", + "2038-04-26": "Easter Monday", + "2038-04-27": "King's Day", + "2038-05-01": "Labor Day", + "2038-06-03": "Ascension Day", + "2038-12-25": "Christmas Day", + "2038-12-26": "Second Day of Christmas", + "2039-01-01": "New Year's Day", + "2039-01-25": "Betico Day", + "2039-02-21": "Monday before Ash Wednesday", + "2039-03-18": "National Anthem and Flag Day", + "2039-04-08": "Good Friday", + "2039-04-11": "Easter Monday", + "2039-04-27": "King's Day", + "2039-05-01": "Labor Day", + "2039-05-19": "Ascension Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Second Day of Christmas", + "2040-01-01": "New Year's Day", + "2040-01-25": "Betico Day", + "2040-02-13": "Monday before Ash Wednesday", + "2040-03-18": "National Anthem and Flag Day", + "2040-03-30": "Good Friday", + "2040-04-02": "Easter Monday", + "2040-04-27": "King's Day", + "2040-05-01": "Labor Day", + "2040-05-10": "Ascension Day", + "2040-12-25": "Christmas Day", + "2040-12-26": "Second Day of Christmas", + "2041-01-01": "New Year's Day", + "2041-01-25": "Betico Day", + "2041-03-04": "Monday before Ash Wednesday", + "2041-03-18": "National Anthem and Flag Day", + "2041-04-19": "Good Friday", + "2041-04-22": "Easter Monday", + "2041-04-27": "King's Day", + "2041-05-01": "Labor Day", + "2041-05-30": "Ascension Day", + "2041-12-25": "Christmas Day", + "2041-12-26": "Second Day of Christmas", + "2042-01-01": "New Year's Day", + "2042-01-25": "Betico Day", + "2042-02-17": "Monday before Ash Wednesday", + "2042-03-18": "National Anthem and Flag Day", + "2042-04-04": "Good Friday", + "2042-04-07": "Easter Monday", + "2042-04-26": "King's Day", + "2042-05-01": "Labor Day", + "2042-05-15": "Ascension Day", + "2042-12-25": "Christmas Day", + "2042-12-26": "Second Day of Christmas", + "2043-01-01": "New Year's Day", + "2043-01-25": "Betico Day", + "2043-02-09": "Monday before Ash Wednesday", + "2043-03-18": "National Anthem and Flag Day", + "2043-03-27": "Good Friday", + "2043-03-30": "Easter Monday", + "2043-04-27": "King's Day", + "2043-05-01": "Labor Day", + "2043-05-07": "Ascension Day", + "2043-12-25": "Christmas Day", + "2043-12-26": "Second Day of Christmas", + "2044-01-01": "New Year's Day", + "2044-01-25": "Betico Day", + "2044-02-29": "Monday before Ash Wednesday", + "2044-03-18": "National Anthem and Flag Day", + "2044-04-15": "Good Friday", + "2044-04-18": "Easter Monday", + "2044-04-27": "King's Day", + "2044-05-01": "Labor Day", + "2044-05-26": "Ascension Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "Second Day of Christmas", + "2045-01-01": "New Year's Day", + "2045-01-25": "Betico Day", + "2045-02-20": "Monday before Ash Wednesday", + "2045-03-18": "National Anthem and Flag Day", + "2045-04-07": "Good Friday", + "2045-04-10": "Easter Monday", + "2045-04-27": "King's Day", + "2045-05-01": "Labor Day", + "2045-05-18": "Ascension Day", + "2045-12-25": "Christmas Day", + "2045-12-26": "Second Day of Christmas", + "2046-01-01": "New Year's Day", + "2046-01-25": "Betico Day", + "2046-02-05": "Monday before Ash Wednesday", + "2046-03-18": "National Anthem and Flag Day", + "2046-03-23": "Good Friday", + "2046-03-26": "Easter Monday", + "2046-04-27": "King's Day", + "2046-05-01": "Labor Day", + "2046-05-03": "Ascension Day", + "2046-12-25": "Christmas Day", + "2046-12-26": "Second Day of Christmas", + "2047-01-01": "New Year's Day", + "2047-01-25": "Betico Day", + "2047-02-25": "Monday before Ash Wednesday", + "2047-03-18": "National Anthem and Flag Day", + "2047-04-12": "Good Friday", + "2047-04-15": "Easter Monday", + "2047-04-27": "King's Day", + "2047-05-01": "Labor Day", + "2047-05-23": "Ascension Day", + "2047-12-25": "Christmas Day", + "2047-12-26": "Second Day of Christmas", + "2048-01-01": "New Year's Day", + "2048-01-25": "Betico Day", + "2048-02-17": "Monday before Ash Wednesday", + "2048-03-18": "National Anthem and Flag Day", + "2048-04-03": "Good Friday", + "2048-04-06": "Easter Monday", + "2048-04-27": "King's Day", + "2048-05-01": "Labor Day", + "2048-05-14": "Ascension Day", + "2048-12-25": "Christmas Day", + "2048-12-26": "Second Day of Christmas", + "2049-01-01": "New Year's Day", + "2049-01-25": "Betico Day", + "2049-03-01": "Monday before Ash Wednesday", + "2049-03-18": "National Anthem and Flag Day", + "2049-04-16": "Good Friday", + "2049-04-19": "Easter Monday", + "2049-04-27": "King's Day", + "2049-05-01": "Labor Day", + "2049-05-27": "Ascension Day", + "2049-12-25": "Christmas Day", + "2049-12-26": "Second Day of Christmas", + "2050-01-01": "New Year's Day", + "2050-01-25": "Betico Day", + "2050-02-21": "Monday before Ash Wednesday", + "2050-03-18": "National Anthem and Flag Day", + "2050-04-08": "Good Friday", + "2050-04-11": "Easter Monday", + "2050-04-27": "King's Day", + "2050-05-01": "Labor Day", + "2050-05-19": "Ascension Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "Second Day of Christmas" +} diff --git a/snapshots/countries/AZ.json b/snapshots/countries/AZ.json new file mode 100644 index 000000000..fb09d9913 --- /dev/null +++ b/snapshots/countries/AZ.json @@ -0,0 +1,1314 @@ +{ + "1990-01-01": "New Year's Day", + "1990-03-08": "International Women's Day", + "1990-05-09": "Victory Day over Fascism", + "1990-10-18": "Independence Day", + "1991-01-01": "New Year's Day", + "1991-03-08": "International Women's Day", + "1991-05-09": "Victory Day over Fascism", + "1991-10-18": "Independence Day", + "1992-01-01": "New Year's Day", + "1992-03-08": "International Women's Day", + "1992-05-09": "Victory Day over Fascism", + "1992-05-28": "Republic Day", + "1992-10-09": "Azerbaijan Armed Forces Day", + "1992-10-18": "Independence Day", + "1993-01-01": "New Year's Day", + "1993-03-08": "International Women's Day", + "1993-03-24": "Ramazan Bayrami* (*estimated)", + "1993-03-25": "Ramazan Bayrami* (*estimated)", + "1993-05-09": "Victory Day over Fascism", + "1993-05-28": "Republic Day", + "1993-05-31": "Gurban Bayrami* (*estimated)", + "1993-06-01": "Gurban Bayrami* (*estimated)", + "1993-10-09": "Azerbaijan Armed Forces Day", + "1993-10-18": "Independence Day", + "1993-12-31": "International Solidarity Day of Azerbaijanis", + "1994-01-01": "New Year's Day", + "1994-03-08": "International Women's Day", + "1994-03-13": "Ramazan Bayrami* (*estimated)", + "1994-03-14": "Ramazan Bayrami* (*estimated)", + "1994-05-09": "Victory Day over Fascism", + "1994-05-20": "Gurban Bayrami* (*estimated)", + "1994-05-21": "Gurban Bayrami* (*estimated)", + "1994-05-28": "Republic Day", + "1994-10-09": "Azerbaijan Armed Forces Day", + "1994-10-18": "Independence Day", + "1994-12-31": "International Solidarity Day of Azerbaijanis", + "1995-01-01": "New Year's Day", + "1995-03-02": "Ramazan Bayrami* (*estimated)", + "1995-03-03": "Ramazan Bayrami* (*estimated)", + "1995-03-08": "International Women's Day", + "1995-05-09": "Gurban Bayrami* (*estimated); Victory Day over Fascism", + "1995-05-10": "Gurban Bayrami* (*estimated)", + "1995-05-28": "Republic Day", + "1995-10-09": "Azerbaijan Armed Forces Day", + "1995-10-18": "Independence Day", + "1995-12-31": "International Solidarity Day of Azerbaijanis", + "1996-01-01": "New Year's Day", + "1996-02-19": "Ramazan Bayrami* (*estimated)", + "1996-02-20": "Ramazan Bayrami* (*estimated)", + "1996-03-08": "International Women's Day", + "1996-04-27": "Gurban Bayrami* (*estimated)", + "1996-04-28": "Gurban Bayrami* (*estimated)", + "1996-05-09": "Victory Day over Fascism", + "1996-05-28": "Republic Day", + "1996-10-09": "Azerbaijan Armed Forces Day", + "1996-10-18": "Independence Day", + "1996-12-31": "International Solidarity Day of Azerbaijanis", + "1997-01-01": "New Year's Day", + "1997-02-08": "Ramazan Bayrami* (*estimated)", + "1997-02-09": "Ramazan Bayrami* (*estimated)", + "1997-03-08": "International Women's Day", + "1997-04-17": "Gurban Bayrami* (*estimated)", + "1997-04-18": "Gurban Bayrami* (*estimated)", + "1997-05-09": "Victory Day over Fascism", + "1997-05-28": "Republic Day", + "1997-06-15": "National Salvation Day", + "1997-10-09": "Azerbaijan Armed Forces Day", + "1997-10-18": "Independence Day", + "1997-12-31": "International Solidarity Day of Azerbaijanis", + "1998-01-01": "New Year's Day", + "1998-01-29": "Ramazan Bayrami* (*estimated)", + "1998-01-30": "Ramazan Bayrami* (*estimated)", + "1998-03-08": "International Women's Day", + "1998-04-07": "Gurban Bayrami* (*estimated)", + "1998-04-08": "Gurban Bayrami* (*estimated)", + "1998-05-09": "Victory Day over Fascism", + "1998-05-28": "Republic Day", + "1998-06-15": "National Salvation Day", + "1998-06-26": "Azerbaijan Armed Forces Day", + "1998-10-18": "Independence Day", + "1998-12-31": "International Solidarity Day of Azerbaijanis", + "1999-01-01": "New Year's Day", + "1999-01-18": "Ramazan Bayrami* (*estimated)", + "1999-01-19": "Ramazan Bayrami* (*estimated)", + "1999-03-08": "International Women's Day", + "1999-03-27": "Gurban Bayrami* (*estimated)", + "1999-03-28": "Gurban Bayrami* (*estimated)", + "1999-05-09": "Victory Day over Fascism", + "1999-05-28": "Republic Day", + "1999-06-15": "National Salvation Day", + "1999-06-26": "Azerbaijan Armed Forces Day", + "1999-10-18": "Independence Day", + "1999-12-31": "International Solidarity Day of Azerbaijanis", + "2000-01-01": "New Year's Day", + "2000-01-08": "Ramazan Bayrami* (*estimated)", + "2000-01-09": "Ramazan Bayrami* (*estimated)", + "2000-01-20": "Black January", + "2000-03-08": "International Women's Day", + "2000-03-16": "Gurban Bayrami* (*estimated)", + "2000-03-17": "Gurban Bayrami* (*estimated)", + "2000-05-09": "Victory Day over Fascism", + "2000-05-28": "Republic Day", + "2000-06-15": "National Salvation Day", + "2000-06-26": "Azerbaijan Armed Forces Day", + "2000-10-18": "Independence Day", + "2000-12-27": "Ramazan Bayrami* (*estimated)", + "2000-12-28": "Ramazan Bayrami* (*estimated)", + "2000-12-31": "International Solidarity Day of Azerbaijanis", + "2001-01-01": "New Year's Day", + "2001-01-20": "Black January", + "2001-03-05": "Gurban Bayrami* (*estimated)", + "2001-03-06": "Gurban Bayrami* (*estimated)", + "2001-03-08": "International Women's Day", + "2001-05-09": "Victory Day over Fascism", + "2001-05-28": "Republic Day", + "2001-06-15": "National Salvation Day", + "2001-06-26": "Azerbaijan Armed Forces Day", + "2001-10-18": "Independence Day", + "2001-12-16": "Ramazan Bayrami* (*estimated)", + "2001-12-17": "Ramazan Bayrami* (*estimated)", + "2001-12-31": "International Solidarity Day of Azerbaijanis", + "2002-01-01": "New Year's Day", + "2002-01-20": "Black January", + "2002-02-22": "Gurban Bayrami* (*estimated)", + "2002-02-23": "Gurban Bayrami* (*estimated)", + "2002-03-08": "International Women's Day", + "2002-05-09": "Victory Day over Fascism", + "2002-05-28": "Republic Day", + "2002-06-15": "National Salvation Day", + "2002-06-26": "Azerbaijan Armed Forces Day", + "2002-10-18": "Independence Day", + "2002-12-05": "Ramazan Bayrami* (*estimated)", + "2002-12-06": "Ramazan Bayrami* (*estimated)", + "2002-12-31": "International Solidarity Day of Azerbaijanis", + "2003-01-01": "New Year's Day", + "2003-01-20": "Black January", + "2003-02-11": "Gurban Bayrami* (*estimated)", + "2003-02-12": "Gurban Bayrami* (*estimated)", + "2003-03-08": "International Women's Day", + "2003-05-09": "Victory Day over Fascism", + "2003-05-28": "Republic Day", + "2003-06-15": "National Salvation Day", + "2003-06-26": "Azerbaijan Armed Forces Day", + "2003-10-18": "Independence Day", + "2003-11-25": "Ramazan Bayrami* (*estimated)", + "2003-11-26": "Ramazan Bayrami* (*estimated)", + "2003-12-31": "International Solidarity Day of Azerbaijanis", + "2004-01-01": "New Year's Day", + "2004-01-20": "Black January", + "2004-02-01": "Gurban Bayrami* (*estimated)", + "2004-02-02": "Gurban Bayrami* (*estimated)", + "2004-03-08": "International Women's Day", + "2004-05-09": "Victory Day over Fascism", + "2004-05-28": "Republic Day", + "2004-06-15": "National Salvation Day", + "2004-06-26": "Azerbaijan Armed Forces Day", + "2004-10-18": "Independence Day", + "2004-11-14": "Ramazan Bayrami* (*estimated)", + "2004-11-15": "Ramazan Bayrami* (*estimated)", + "2004-12-31": "International Solidarity Day of Azerbaijanis", + "2005-01-01": "New Year's Day", + "2005-01-20": "Black January", + "2005-01-21": "Gurban Bayrami* (*estimated)", + "2005-01-22": "Gurban Bayrami* (*estimated)", + "2005-03-08": "International Women's Day", + "2005-05-09": "Victory Day over Fascism", + "2005-05-28": "Republic Day", + "2005-06-15": "National Salvation Day", + "2005-06-26": "Azerbaijan Armed Forces Day", + "2005-10-18": "Independence Day", + "2005-11-03": "Ramazan Bayrami* (*estimated)", + "2005-11-04": "Ramazan Bayrami* (*estimated)", + "2005-12-31": "International Solidarity Day of Azerbaijanis", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day", + "2006-01-03": "International Solidarity Day of Azerbaijanis (Observed)", + "2006-01-04": "New Year's Day (Observed)", + "2006-01-10": "Gurban Bayrami* (*estimated)", + "2006-01-11": "Gurban Bayrami* (*estimated)", + "2006-01-20": "Black January", + "2006-03-08": "International Women's Day", + "2006-05-09": "Victory Day over Fascism", + "2006-05-28": "Republic Day", + "2006-05-29": "Republic Day (Observed)", + "2006-06-15": "National Salvation Day", + "2006-06-26": "Azerbaijan Armed Forces Day", + "2006-10-23": "Ramazan Bayrami* (*estimated)", + "2006-10-24": "Ramazan Bayrami* (*estimated)", + "2006-12-31": "Gurban Bayrami* (*estimated); International Solidarity Day of Azerbaijanis", + "2007-01-01": "Gurban Bayrami* (*estimated); New Year's Day", + "2007-01-02": "New Year's Day", + "2007-01-03": "Gurban Bayrami* (*estimated) (Observed); International Solidarity Day of Azerbaijanis (Observed)", + "2007-01-04": "Gurban Bayrami* (*estimated) (Observed)", + "2007-01-20": "Black January", + "2007-03-08": "International Women's Day", + "2007-03-20": "Novruz", + "2007-03-21": "Novruz", + "2007-03-22": "Novruz", + "2007-03-23": "Novruz", + "2007-03-24": "Novruz", + "2007-03-26": "Novruz (Observed)", + "2007-05-09": "Victory Day over Fascism", + "2007-05-28": "Republic Day", + "2007-06-15": "National Salvation Day", + "2007-06-26": "Azerbaijan Armed Forces Day", + "2007-10-13": "Ramazan Bayrami* (*estimated)", + "2007-10-14": "Ramazan Bayrami* (*estimated)", + "2007-10-15": "Ramazan Bayrami* (*estimated) (Observed)", + "2007-10-16": "Ramazan Bayrami* (*estimated) (Observed)", + "2007-12-20": "Gurban Bayrami* (*estimated)", + "2007-12-21": "Gurban Bayrami* (*estimated)", + "2007-12-31": "International Solidarity Day of Azerbaijanis", + "2008-01-01": "New Year's Day", + "2008-01-02": "New Year's Day", + "2008-01-20": "Black January", + "2008-03-08": "International Women's Day", + "2008-03-10": "International Women's Day (Observed)", + "2008-03-20": "Novruz", + "2008-03-21": "Novruz", + "2008-03-22": "Novruz", + "2008-03-23": "Novruz", + "2008-03-24": "Novruz", + "2008-03-25": "Novruz (Observed)", + "2008-03-26": "Novruz (Observed)", + "2008-05-09": "Victory Day over Fascism", + "2008-05-28": "Republic Day", + "2008-06-15": "National Salvation Day", + "2008-06-16": "National Salvation Day (Observed)", + "2008-06-26": "Azerbaijan Armed Forces Day", + "2008-10-01": "Ramazan Bayrami* (*estimated)", + "2008-10-02": "Ramazan Bayrami* (*estimated)", + "2008-12-08": "Gurban Bayrami* (*estimated)", + "2008-12-09": "Gurban Bayrami* (*estimated)", + "2008-12-31": "International Solidarity Day of Azerbaijanis", + "2009-01-01": "New Year's Day", + "2009-01-02": "New Year's Day", + "2009-01-20": "Black January", + "2009-03-08": "International Women's Day", + "2009-03-09": "International Women's Day (Observed)", + "2009-03-20": "Novruz", + "2009-03-21": "Novruz", + "2009-03-22": "Novruz", + "2009-03-23": "Novruz", + "2009-03-24": "Novruz", + "2009-03-25": "Novruz (Observed)", + "2009-03-26": "Novruz (Observed)", + "2009-05-09": "Victory Day over Fascism", + "2009-05-11": "Victory Day over Fascism (Observed)", + "2009-05-28": "Republic Day", + "2009-06-15": "National Salvation Day", + "2009-06-26": "Azerbaijan Armed Forces Day", + "2009-09-20": "Ramazan Bayrami* (*estimated)", + "2009-09-21": "Ramazan Bayrami* (*estimated)", + "2009-09-22": "Ramazan Bayrami* (*estimated) (Observed)", + "2009-11-27": "Gurban Bayrami* (*estimated)", + "2009-11-28": "Gurban Bayrami* (*estimated)", + "2009-11-30": "Gurban Bayrami* (*estimated) (Observed)", + "2009-12-31": "International Solidarity Day of Azerbaijanis", + "2010-01-01": "New Year's Day", + "2010-01-02": "New Year's Day", + "2010-01-04": "New Year's Day (Observed)", + "2010-01-20": "Black January", + "2010-03-08": "International Women's Day", + "2010-03-20": "Novruz", + "2010-03-21": "Novruz", + "2010-03-22": "Novruz", + "2010-03-23": "Novruz", + "2010-03-24": "Novruz", + "2010-03-25": "Novruz (Observed)", + "2010-03-26": "Novruz (Observed)", + "2010-05-09": "Victory Day over Fascism", + "2010-05-10": "Victory Day over Fascism (Observed)", + "2010-05-28": "Republic Day", + "2010-06-15": "National Salvation Day", + "2010-06-26": "Azerbaijan Armed Forces Day", + "2010-06-28": "Azerbaijan Armed Forces Day (Observed)", + "2010-09-10": "Ramazan Bayrami* (*estimated)", + "2010-09-11": "Ramazan Bayrami* (*estimated)", + "2010-09-13": "Ramazan Bayrami* (*estimated) (Observed)", + "2010-11-09": "Flag Day", + "2010-11-16": "Gurban Bayrami* (*estimated)", + "2010-11-17": "Gurban Bayrami* (*estimated)", + "2010-12-31": "International Solidarity Day of Azerbaijanis", + "2011-01-01": "New Year's Day", + "2011-01-02": "New Year's Day", + "2011-01-03": "New Year's Day (Observed)", + "2011-01-04": "New Year's Day (Observed)", + "2011-01-20": "Black January", + "2011-03-08": "International Women's Day", + "2011-03-20": "Novruz", + "2011-03-21": "Novruz", + "2011-03-22": "Novruz", + "2011-03-23": "Novruz", + "2011-03-24": "Novruz", + "2011-03-25": "Novruz (Observed)", + "2011-05-09": "Victory Day over Fascism", + "2011-05-28": "Republic Day", + "2011-05-30": "Republic Day (Observed)", + "2011-06-15": "National Salvation Day", + "2011-06-26": "Azerbaijan Armed Forces Day", + "2011-06-27": "Azerbaijan Armed Forces Day (Observed)", + "2011-08-30": "Ramazan Bayrami", + "2011-08-31": "Ramazan Bayrami", + "2011-11-06": "Gurban Bayrami", + "2011-11-07": "Gurban Bayrami", + "2011-11-08": "Gurban Bayrami (Observed)", + "2011-11-09": "Flag Day", + "2011-12-31": "International Solidarity Day of Azerbaijanis", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day", + "2012-01-03": "International Solidarity Day of Azerbaijanis (Observed)", + "2012-01-04": "New Year's Day (Observed)", + "2012-01-20": "Black January", + "2012-03-08": "International Women's Day", + "2012-03-20": "Novruz", + "2012-03-21": "Novruz", + "2012-03-22": "Novruz", + "2012-03-23": "Novruz", + "2012-03-24": "Novruz", + "2012-03-26": "Novruz (Observed)", + "2012-05-09": "Victory Day over Fascism", + "2012-05-28": "Republic Day", + "2012-06-15": "National Salvation Day", + "2012-06-26": "Azerbaijan Armed Forces Day", + "2012-08-19": "Ramazan Bayrami", + "2012-08-20": "Ramazan Bayrami", + "2012-08-21": "Ramazan Bayrami (Observed)", + "2012-10-25": "Gurban Bayrami", + "2012-10-26": "Gurban Bayrami", + "2012-11-09": "Flag Day", + "2012-12-31": "International Solidarity Day of Azerbaijanis", + "2013-01-01": "New Year's Day", + "2013-01-02": "New Year's Day", + "2013-01-20": "Black January", + "2013-03-08": "International Women's Day", + "2013-03-20": "Novruz", + "2013-03-21": "Novruz", + "2013-03-22": "Novruz", + "2013-03-23": "Novruz", + "2013-03-24": "Novruz", + "2013-03-25": "Novruz (Observed)", + "2013-03-26": "Novruz (Observed)", + "2013-05-09": "Victory Day over Fascism", + "2013-05-28": "Republic Day", + "2013-06-15": "National Salvation Day", + "2013-06-17": "National Salvation Day (Observed)", + "2013-06-26": "Azerbaijan Armed Forces Day", + "2013-08-08": "Ramazan Bayrami", + "2013-08-09": "Ramazan Bayrami", + "2013-10-15": "Gurban Bayrami", + "2013-10-16": "Gurban Bayrami", + "2013-11-09": "Flag Day", + "2013-11-11": "Flag Day (Observed)", + "2013-12-31": "International Solidarity Day of Azerbaijanis", + "2014-01-01": "New Year's Day", + "2014-01-02": "New Year's Day", + "2014-01-20": "Black January", + "2014-03-08": "International Women's Day", + "2014-03-10": "International Women's Day (Observed)", + "2014-03-20": "Novruz", + "2014-03-21": "Novruz", + "2014-03-22": "Novruz", + "2014-03-23": "Novruz", + "2014-03-24": "Novruz", + "2014-03-25": "Novruz (Observed)", + "2014-03-26": "Novruz (Observed)", + "2014-05-09": "Victory Day over Fascism", + "2014-05-28": "Republic Day", + "2014-06-15": "National Salvation Day", + "2014-06-16": "National Salvation Day (Observed)", + "2014-06-26": "Azerbaijan Armed Forces Day", + "2014-07-28": "Ramazan Bayrami", + "2014-07-29": "Ramazan Bayrami", + "2014-10-04": "Gurban Bayrami", + "2014-10-05": "Gurban Bayrami", + "2014-10-06": "Gurban Bayrami (Observed)", + "2014-10-07": "Gurban Bayrami (Observed)", + "2014-11-09": "Flag Day", + "2014-11-10": "Flag Day (Observed)", + "2014-12-31": "International Solidarity Day of Azerbaijanis", + "2015-01-01": "New Year's Day", + "2015-01-02": "New Year's Day", + "2015-01-20": "Black January", + "2015-03-08": "International Women's Day", + "2015-03-09": "International Women's Day (Observed)", + "2015-03-20": "Novruz", + "2015-03-21": "Novruz", + "2015-03-22": "Novruz", + "2015-03-23": "Novruz", + "2015-03-24": "Novruz", + "2015-03-25": "Novruz (Observed)", + "2015-03-26": "Novruz (Observed)", + "2015-05-09": "Victory Day over Fascism", + "2015-05-11": "Victory Day over Fascism (Observed)", + "2015-05-28": "Republic Day", + "2015-06-15": "National Salvation Day", + "2015-06-26": "Azerbaijan Armed Forces Day", + "2015-07-17": "Ramazan Bayrami", + "2015-07-18": "Ramazan Bayrami", + "2015-07-20": "Ramazan Bayrami (Observed)", + "2015-09-24": "Gurban Bayrami", + "2015-09-25": "Gurban Bayrami", + "2015-11-09": "Flag Day", + "2015-12-31": "International Solidarity Day of Azerbaijanis", + "2016-01-01": "New Year's Day", + "2016-01-02": "New Year's Day", + "2016-01-04": "New Year's Day (Observed)", + "2016-01-20": "Black January", + "2016-03-08": "International Women's Day", + "2016-03-20": "Novruz", + "2016-03-21": "Novruz", + "2016-03-22": "Novruz", + "2016-03-23": "Novruz", + "2016-03-24": "Novruz", + "2016-03-25": "Novruz (Observed)", + "2016-05-09": "Victory Day over Fascism", + "2016-05-28": "Republic Day", + "2016-05-30": "Republic Day (Observed)", + "2016-06-15": "National Salvation Day", + "2016-06-26": "Azerbaijan Armed Forces Day", + "2016-06-27": "Azerbaijan Armed Forces Day (Observed)", + "2016-07-06": "Ramazan Bayrami", + "2016-07-07": "Ramazan Bayrami", + "2016-09-12": "Gurban Bayrami", + "2016-09-13": "Gurban Bayrami", + "2016-11-09": "Flag Day", + "2016-12-31": "International Solidarity Day of Azerbaijanis", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day", + "2017-01-03": "International Solidarity Day of Azerbaijanis (Observed)", + "2017-01-04": "New Year's Day (Observed)", + "2017-01-20": "Black January", + "2017-03-08": "International Women's Day", + "2017-03-20": "Novruz", + "2017-03-21": "Novruz", + "2017-03-22": "Novruz", + "2017-03-23": "Novruz", + "2017-03-24": "Novruz", + "2017-05-09": "Victory Day over Fascism", + "2017-05-28": "Republic Day", + "2017-05-29": "Republic Day (Observed)", + "2017-06-15": "National Salvation Day", + "2017-06-26": "Azerbaijan Armed Forces Day; Ramazan Bayrami", + "2017-06-27": "Ramazan Bayrami", + "2017-06-28": "Ramazan Bayrami (Observed)", + "2017-09-01": "Gurban Bayrami", + "2017-09-02": "Gurban Bayrami", + "2017-09-04": "Gurban Bayrami (Observed)", + "2017-11-09": "Flag Day", + "2017-12-31": "International Solidarity Day of Azerbaijanis", + "2018-01-01": "New Year's Day", + "2018-01-02": "New Year's Day", + "2018-01-03": "International Solidarity Day of Azerbaijanis (Observed)", + "2018-01-20": "Black January", + "2018-03-08": "International Women's Day", + "2018-03-20": "Novruz", + "2018-03-21": "Novruz", + "2018-03-22": "Novruz", + "2018-03-23": "Novruz", + "2018-03-24": "Novruz", + "2018-03-26": "Novruz (Observed)", + "2018-05-09": "Victory Day over Fascism", + "2018-05-28": "Republic Day", + "2018-06-15": "National Salvation Day; Ramazan Bayrami", + "2018-06-16": "Ramazan Bayrami", + "2018-06-18": "Ramazan Bayrami (Observed)", + "2018-06-19": "Ramazan Bayrami (Observed)", + "2018-06-26": "Azerbaijan Armed Forces Day", + "2018-08-22": "Gurban Bayrami", + "2018-08-23": "Gurban Bayrami", + "2018-11-09": "Flag Day", + "2018-12-31": "International Solidarity Day of Azerbaijanis", + "2019-01-01": "New Year's Day", + "2019-01-02": "New Year's Day", + "2019-01-20": "Black January", + "2019-03-08": "International Women's Day", + "2019-03-20": "Novruz", + "2019-03-21": "Novruz", + "2019-03-22": "Novruz", + "2019-03-23": "Novruz", + "2019-03-24": "Novruz", + "2019-03-25": "Novruz (Observed)", + "2019-03-26": "Novruz (Observed)", + "2019-05-09": "Victory Day over Fascism", + "2019-05-28": "Republic Day", + "2019-06-05": "Ramazan Bayrami", + "2019-06-06": "Ramazan Bayrami", + "2019-06-15": "National Salvation Day", + "2019-06-17": "National Salvation Day (Observed)", + "2019-06-26": "Azerbaijan Armed Forces Day", + "2019-08-12": "Gurban Bayrami", + "2019-08-13": "Gurban Bayrami", + "2019-11-09": "Flag Day", + "2019-11-11": "Flag Day (Observed)", + "2019-12-31": "International Solidarity Day of Azerbaijanis", + "2020-01-01": "New Year's Day", + "2020-01-02": "New Year's Day", + "2020-01-20": "Black January", + "2020-03-08": "International Women's Day", + "2020-03-09": "International Women's Day (Observed)", + "2020-03-20": "Novruz", + "2020-03-21": "Novruz", + "2020-03-22": "Novruz", + "2020-03-23": "Novruz", + "2020-03-24": "Novruz", + "2020-03-25": "Novruz (Observed)", + "2020-03-26": "Novruz (Observed)", + "2020-05-09": "Victory Day over Fascism", + "2020-05-11": "Victory Day over Fascism (Observed)", + "2020-05-24": "Ramazan Bayrami", + "2020-05-25": "Ramazan Bayrami", + "2020-05-26": "Ramazan Bayrami (Observed)", + "2020-05-28": "Republic Day", + "2020-06-15": "National Salvation Day", + "2020-06-26": "Azerbaijan Armed Forces Day", + "2020-07-31": "Gurban Bayrami", + "2020-08-01": "Gurban Bayrami", + "2020-08-03": "Gurban Bayrami (Observed)", + "2020-11-09": "Flag Day", + "2020-12-31": "International Solidarity Day of Azerbaijanis", + "2021-01-01": "New Year's Day", + "2021-01-02": "New Year's Day", + "2021-01-04": "New Year's Day (Observed)", + "2021-01-20": "Black January", + "2021-03-08": "International Women's Day", + "2021-03-20": "Novruz", + "2021-03-21": "Novruz", + "2021-03-22": "Novruz", + "2021-03-23": "Novruz", + "2021-03-24": "Novruz", + "2021-03-25": "Novruz (Observed)", + "2021-03-26": "Novruz (Observed)", + "2021-05-09": "Victory Day over Fascism", + "2021-05-10": "Victory Day over Fascism (Observed)", + "2021-05-13": "Ramazan Bayrami", + "2021-05-14": "Ramazan Bayrami", + "2021-05-28": "Independence Day", + "2021-06-15": "National Salvation Day", + "2021-06-26": "Azerbaijan Armed Forces Day", + "2021-06-28": "Azerbaijan Armed Forces Day (Observed)", + "2021-07-20": "Gurban Bayrami", + "2021-07-21": "Gurban Bayrami", + "2021-09-27": "Memorial Day", + "2021-11-08": "Victory Day", + "2021-11-09": "Flag Day", + "2021-12-31": "International Solidarity Day of Azerbaijanis", + "2022-01-01": "New Year's Day", + "2022-01-02": "New Year's Day", + "2022-01-03": "New Year's Day (Observed)", + "2022-01-04": "New Year's Day (Observed)", + "2022-01-20": "Black January", + "2022-03-08": "International Women's Day", + "2022-03-20": "Novruz", + "2022-03-21": "Novruz", + "2022-03-22": "Novruz", + "2022-03-23": "Novruz", + "2022-03-24": "Novruz", + "2022-03-25": "Novruz (Observed)", + "2022-05-02": "Ramazan Bayrami", + "2022-05-03": "Ramazan Bayrami", + "2022-05-09": "Victory Day over Fascism", + "2022-05-28": "Independence Day", + "2022-05-30": "Independence Day (Observed)", + "2022-06-15": "National Salvation Day", + "2022-06-26": "Azerbaijan Armed Forces Day", + "2022-06-27": "Azerbaijan Armed Forces Day (Observed)", + "2022-07-09": "Gurban Bayrami", + "2022-07-10": "Gurban Bayrami", + "2022-07-11": "Gurban Bayrami (Observed)", + "2022-07-12": "Gurban Bayrami (Observed)", + "2022-09-27": "Memorial Day", + "2022-11-08": "Victory Day", + "2022-11-09": "Flag Day", + "2022-12-31": "International Solidarity Day of Azerbaijanis", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day", + "2023-01-03": "International Solidarity Day of Azerbaijanis (Observed)", + "2023-01-04": "New Year's Day (Observed)", + "2023-01-20": "Black January", + "2023-03-08": "International Women's Day", + "2023-03-20": "Novruz", + "2023-03-21": "Novruz", + "2023-03-22": "Novruz", + "2023-03-23": "Novruz", + "2023-03-24": "Novruz", + "2023-04-21": "Ramazan Bayrami", + "2023-04-22": "Ramazan Bayrami", + "2023-04-24": "Ramazan Bayrami (Observed)", + "2023-05-09": "Victory Day over Fascism", + "2023-05-28": "Independence Day", + "2023-05-29": "Independence Day (Observed)", + "2023-06-15": "National Salvation Day", + "2023-06-26": "Azerbaijan Armed Forces Day", + "2023-06-28": "Gurban Bayrami", + "2023-06-29": "Gurban Bayrami", + "2023-09-27": "Memorial Day", + "2023-11-08": "Victory Day", + "2023-11-09": "Flag Day", + "2023-12-31": "International Solidarity Day of Azerbaijanis", + "2024-01-01": "New Year's Day", + "2024-01-02": "New Year's Day", + "2024-01-03": "International Solidarity Day of Azerbaijanis (Observed)", + "2024-01-20": "Black January", + "2024-03-08": "International Women's Day", + "2024-03-20": "Novruz", + "2024-03-21": "Novruz", + "2024-03-22": "Novruz", + "2024-03-23": "Novruz", + "2024-03-24": "Novruz", + "2024-03-25": "Novruz (Observed)", + "2024-03-26": "Novruz (Observed)", + "2024-04-10": "Ramazan Bayrami* (*estimated)", + "2024-04-11": "Ramazan Bayrami* (*estimated)", + "2024-05-09": "Victory Day over Fascism", + "2024-05-28": "Independence Day", + "2024-06-15": "National Salvation Day", + "2024-06-16": "Gurban Bayrami* (*estimated)", + "2024-06-17": "Gurban Bayrami* (*estimated)", + "2024-06-18": "National Salvation Day (Observed)", + "2024-06-19": "Gurban Bayrami* (*estimated) (Observed)", + "2024-06-26": "Azerbaijan Armed Forces Day", + "2024-09-27": "Memorial Day", + "2024-11-08": "Victory Day", + "2024-11-09": "Flag Day", + "2024-11-11": "Flag Day (Observed)", + "2024-12-31": "International Solidarity Day of Azerbaijanis", + "2025-01-01": "New Year's Day", + "2025-01-02": "New Year's Day", + "2025-01-20": "Black January", + "2025-03-08": "International Women's Day", + "2025-03-10": "International Women's Day (Observed)", + "2025-03-20": "Novruz", + "2025-03-21": "Novruz", + "2025-03-22": "Novruz", + "2025-03-23": "Novruz", + "2025-03-24": "Novruz", + "2025-03-25": "Novruz (Observed)", + "2025-03-26": "Novruz (Observed)", + "2025-03-30": "Ramazan Bayrami* (*estimated)", + "2025-03-31": "Ramazan Bayrami* (*estimated)", + "2025-04-01": "Ramazan Bayrami* (*estimated) (Observed)", + "2025-05-09": "Victory Day over Fascism", + "2025-05-28": "Independence Day", + "2025-06-06": "Gurban Bayrami* (*estimated)", + "2025-06-07": "Gurban Bayrami* (*estimated)", + "2025-06-09": "Gurban Bayrami* (*estimated) (Observed)", + "2025-06-15": "National Salvation Day", + "2025-06-16": "National Salvation Day (Observed)", + "2025-06-26": "Azerbaijan Armed Forces Day", + "2025-09-27": "Memorial Day", + "2025-11-08": "Victory Day", + "2025-11-09": "Flag Day", + "2025-11-10": "Victory Day (Observed)", + "2025-11-11": "Flag Day (Observed)", + "2025-12-31": "International Solidarity Day of Azerbaijanis", + "2026-01-01": "New Year's Day", + "2026-01-02": "New Year's Day", + "2026-01-20": "Black January", + "2026-03-08": "International Women's Day", + "2026-03-09": "International Women's Day (Observed)", + "2026-03-20": "Novruz; Ramazan Bayrami* (*estimated)", + "2026-03-21": "Novruz; Ramazan Bayrami* (*estimated)", + "2026-03-22": "Novruz", + "2026-03-23": "Novruz", + "2026-03-24": "Novruz", + "2026-03-25": "Novruz (Observed); Ramazan Bayrami* (*estimated) (Observed)", + "2026-03-26": "Novruz (Observed)", + "2026-03-27": "Ramazan Bayrami* (*estimated) (Observed)", + "2026-05-09": "Victory Day over Fascism", + "2026-05-11": "Victory Day over Fascism (Observed)", + "2026-05-27": "Gurban Bayrami* (*estimated)", + "2026-05-28": "Gurban Bayrami* (*estimated); Independence Day", + "2026-05-29": "Gurban Bayrami* (*estimated) (Observed)", + "2026-06-15": "National Salvation Day", + "2026-06-26": "Azerbaijan Armed Forces Day", + "2026-09-27": "Memorial Day", + "2026-11-08": "Victory Day", + "2026-11-09": "Flag Day", + "2026-11-10": "Victory Day (Observed)", + "2026-12-31": "International Solidarity Day of Azerbaijanis", + "2027-01-01": "New Year's Day", + "2027-01-02": "New Year's Day", + "2027-01-04": "New Year's Day (Observed)", + "2027-01-20": "Black January", + "2027-03-08": "International Women's Day", + "2027-03-09": "Ramazan Bayrami* (*estimated)", + "2027-03-10": "Ramazan Bayrami* (*estimated)", + "2027-03-20": "Novruz", + "2027-03-21": "Novruz", + "2027-03-22": "Novruz", + "2027-03-23": "Novruz", + "2027-03-24": "Novruz", + "2027-03-25": "Novruz (Observed)", + "2027-03-26": "Novruz (Observed)", + "2027-05-09": "Victory Day over Fascism", + "2027-05-10": "Victory Day over Fascism (Observed)", + "2027-05-16": "Gurban Bayrami* (*estimated)", + "2027-05-17": "Gurban Bayrami* (*estimated)", + "2027-05-18": "Gurban Bayrami* (*estimated) (Observed)", + "2027-05-28": "Independence Day", + "2027-06-15": "National Salvation Day", + "2027-06-26": "Azerbaijan Armed Forces Day", + "2027-06-28": "Azerbaijan Armed Forces Day (Observed)", + "2027-09-27": "Memorial Day", + "2027-11-08": "Victory Day", + "2027-11-09": "Flag Day", + "2027-12-31": "International Solidarity Day of Azerbaijanis", + "2028-01-01": "New Year's Day", + "2028-01-02": "New Year's Day", + "2028-01-03": "New Year's Day (Observed)", + "2028-01-04": "New Year's Day (Observed)", + "2028-01-20": "Black January", + "2028-02-26": "Ramazan Bayrami* (*estimated)", + "2028-02-27": "Ramazan Bayrami* (*estimated)", + "2028-02-28": "Ramazan Bayrami* (*estimated) (Observed)", + "2028-02-29": "Ramazan Bayrami* (*estimated) (Observed)", + "2028-03-08": "International Women's Day", + "2028-03-20": "Novruz", + "2028-03-21": "Novruz", + "2028-03-22": "Novruz", + "2028-03-23": "Novruz", + "2028-03-24": "Novruz", + "2028-05-05": "Gurban Bayrami* (*estimated)", + "2028-05-06": "Gurban Bayrami* (*estimated)", + "2028-05-08": "Gurban Bayrami* (*estimated) (Observed)", + "2028-05-09": "Victory Day over Fascism", + "2028-05-28": "Independence Day", + "2028-05-29": "Independence Day (Observed)", + "2028-06-15": "National Salvation Day", + "2028-06-26": "Azerbaijan Armed Forces Day", + "2028-09-27": "Memorial Day", + "2028-11-08": "Victory Day", + "2028-11-09": "Flag Day", + "2028-12-31": "International Solidarity Day of Azerbaijanis", + "2029-01-01": "New Year's Day", + "2029-01-02": "New Year's Day", + "2029-01-03": "International Solidarity Day of Azerbaijanis (Observed)", + "2029-01-20": "Black January", + "2029-02-14": "Ramazan Bayrami* (*estimated)", + "2029-02-15": "Ramazan Bayrami* (*estimated)", + "2029-03-08": "International Women's Day", + "2029-03-20": "Novruz", + "2029-03-21": "Novruz", + "2029-03-22": "Novruz", + "2029-03-23": "Novruz", + "2029-03-24": "Novruz", + "2029-03-26": "Novruz (Observed)", + "2029-04-24": "Gurban Bayrami* (*estimated)", + "2029-04-25": "Gurban Bayrami* (*estimated)", + "2029-05-09": "Victory Day over Fascism", + "2029-05-28": "Independence Day", + "2029-06-15": "National Salvation Day", + "2029-06-26": "Azerbaijan Armed Forces Day", + "2029-09-27": "Memorial Day", + "2029-11-08": "Victory Day", + "2029-11-09": "Flag Day", + "2029-12-31": "International Solidarity Day of Azerbaijanis", + "2030-01-01": "New Year's Day", + "2030-01-02": "New Year's Day", + "2030-01-20": "Black January", + "2030-02-04": "Ramazan Bayrami* (*estimated)", + "2030-02-05": "Ramazan Bayrami* (*estimated)", + "2030-03-08": "International Women's Day", + "2030-03-20": "Novruz", + "2030-03-21": "Novruz", + "2030-03-22": "Novruz", + "2030-03-23": "Novruz", + "2030-03-24": "Novruz", + "2030-03-25": "Novruz (Observed)", + "2030-03-26": "Novruz (Observed)", + "2030-04-13": "Gurban Bayrami* (*estimated)", + "2030-04-14": "Gurban Bayrami* (*estimated)", + "2030-04-15": "Gurban Bayrami* (*estimated) (Observed)", + "2030-04-16": "Gurban Bayrami* (*estimated) (Observed)", + "2030-05-09": "Victory Day over Fascism", + "2030-05-28": "Independence Day", + "2030-06-15": "National Salvation Day", + "2030-06-17": "National Salvation Day (Observed)", + "2030-06-26": "Azerbaijan Armed Forces Day", + "2030-09-27": "Memorial Day", + "2030-11-08": "Victory Day", + "2030-11-09": "Flag Day", + "2030-11-11": "Flag Day (Observed)", + "2030-12-31": "International Solidarity Day of Azerbaijanis", + "2031-01-01": "New Year's Day", + "2031-01-02": "New Year's Day", + "2031-01-20": "Black January", + "2031-01-24": "Ramazan Bayrami* (*estimated)", + "2031-01-25": "Ramazan Bayrami* (*estimated)", + "2031-01-27": "Ramazan Bayrami* (*estimated) (Observed)", + "2031-03-08": "International Women's Day", + "2031-03-10": "International Women's Day (Observed)", + "2031-03-20": "Novruz", + "2031-03-21": "Novruz", + "2031-03-22": "Novruz", + "2031-03-23": "Novruz", + "2031-03-24": "Novruz", + "2031-03-25": "Novruz (Observed)", + "2031-03-26": "Novruz (Observed)", + "2031-04-02": "Gurban Bayrami* (*estimated)", + "2031-04-03": "Gurban Bayrami* (*estimated)", + "2031-05-09": "Victory Day over Fascism", + "2031-05-28": "Independence Day", + "2031-06-15": "National Salvation Day", + "2031-06-16": "National Salvation Day (Observed)", + "2031-06-26": "Azerbaijan Armed Forces Day", + "2031-09-27": "Memorial Day", + "2031-11-08": "Victory Day", + "2031-11-09": "Flag Day", + "2031-11-10": "Victory Day (Observed)", + "2031-11-11": "Flag Day (Observed)", + "2031-12-31": "International Solidarity Day of Azerbaijanis", + "2032-01-01": "New Year's Day", + "2032-01-02": "New Year's Day", + "2032-01-14": "Ramazan Bayrami* (*estimated)", + "2032-01-15": "Ramazan Bayrami* (*estimated)", + "2032-01-20": "Black January", + "2032-03-08": "International Women's Day", + "2032-03-20": "Novruz", + "2032-03-21": "Novruz", + "2032-03-22": "Gurban Bayrami* (*estimated); Novruz", + "2032-03-23": "Gurban Bayrami* (*estimated); Novruz", + "2032-03-24": "Novruz", + "2032-03-25": "Novruz (Observed)", + "2032-03-26": "Novruz (Observed)", + "2032-03-29": "Gurban Bayrami* (*estimated) (Observed)", + "2032-03-30": "Gurban Bayrami* (*estimated) (Observed)", + "2032-05-09": "Victory Day over Fascism", + "2032-05-10": "Victory Day over Fascism (Observed)", + "2032-05-28": "Independence Day", + "2032-06-15": "National Salvation Day", + "2032-06-26": "Azerbaijan Armed Forces Day", + "2032-06-28": "Azerbaijan Armed Forces Day (Observed)", + "2032-09-27": "Memorial Day", + "2032-11-08": "Victory Day", + "2032-11-09": "Flag Day", + "2032-12-31": "International Solidarity Day of Azerbaijanis", + "2033-01-01": "New Year's Day", + "2033-01-02": "New Year's Day; Ramazan Bayrami* (*estimated)", + "2033-01-03": "Ramazan Bayrami* (*estimated)", + "2033-01-04": "New Year's Day (Observed)", + "2033-01-05": "New Year's Day (Observed); Ramazan Bayrami* (*estimated) (Observed)", + "2033-01-20": "Black January", + "2033-03-08": "International Women's Day", + "2033-03-11": "Gurban Bayrami* (*estimated)", + "2033-03-12": "Gurban Bayrami* (*estimated)", + "2033-03-14": "Gurban Bayrami* (*estimated) (Observed)", + "2033-03-20": "Novruz", + "2033-03-21": "Novruz", + "2033-03-22": "Novruz", + "2033-03-23": "Novruz", + "2033-03-24": "Novruz", + "2033-03-25": "Novruz (Observed)", + "2033-05-09": "Victory Day over Fascism", + "2033-05-28": "Independence Day", + "2033-05-30": "Independence Day (Observed)", + "2033-06-15": "National Salvation Day", + "2033-06-26": "Azerbaijan Armed Forces Day", + "2033-06-27": "Azerbaijan Armed Forces Day (Observed)", + "2033-09-27": "Memorial Day", + "2033-11-08": "Victory Day", + "2033-11-09": "Flag Day", + "2033-12-23": "Ramazan Bayrami* (*estimated)", + "2033-12-24": "Ramazan Bayrami* (*estimated)", + "2033-12-26": "Ramazan Bayrami* (*estimated) (Observed)", + "2033-12-31": "International Solidarity Day of Azerbaijanis", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day", + "2034-01-03": "International Solidarity Day of Azerbaijanis (Observed)", + "2034-01-04": "New Year's Day (Observed)", + "2034-01-20": "Black January", + "2034-03-01": "Gurban Bayrami* (*estimated)", + "2034-03-02": "Gurban Bayrami* (*estimated)", + "2034-03-08": "International Women's Day", + "2034-03-20": "Novruz", + "2034-03-21": "Novruz", + "2034-03-22": "Novruz", + "2034-03-23": "Novruz", + "2034-03-24": "Novruz", + "2034-05-09": "Victory Day over Fascism", + "2034-05-28": "Independence Day", + "2034-05-29": "Independence Day (Observed)", + "2034-06-15": "National Salvation Day", + "2034-06-26": "Azerbaijan Armed Forces Day", + "2034-09-27": "Memorial Day", + "2034-11-08": "Victory Day", + "2034-11-09": "Flag Day", + "2034-12-12": "Ramazan Bayrami* (*estimated)", + "2034-12-13": "Ramazan Bayrami* (*estimated)", + "2034-12-31": "International Solidarity Day of Azerbaijanis", + "2035-01-01": "New Year's Day", + "2035-01-02": "New Year's Day", + "2035-01-03": "International Solidarity Day of Azerbaijanis (Observed)", + "2035-01-20": "Black January", + "2035-02-18": "Gurban Bayrami* (*estimated)", + "2035-02-19": "Gurban Bayrami* (*estimated)", + "2035-02-20": "Gurban Bayrami* (*estimated) (Observed)", + "2035-03-08": "International Women's Day", + "2035-03-20": "Novruz", + "2035-03-21": "Novruz", + "2035-03-22": "Novruz", + "2035-03-23": "Novruz", + "2035-03-24": "Novruz", + "2035-03-26": "Novruz (Observed)", + "2035-05-09": "Victory Day over Fascism", + "2035-05-28": "Independence Day", + "2035-06-15": "National Salvation Day", + "2035-06-26": "Azerbaijan Armed Forces Day", + "2035-09-27": "Memorial Day", + "2035-11-08": "Victory Day", + "2035-11-09": "Flag Day", + "2035-12-01": "Ramazan Bayrami* (*estimated)", + "2035-12-02": "Ramazan Bayrami* (*estimated)", + "2035-12-03": "Ramazan Bayrami* (*estimated) (Observed)", + "2035-12-04": "Ramazan Bayrami* (*estimated) (Observed)", + "2035-12-31": "International Solidarity Day of Azerbaijanis", + "2036-01-01": "New Year's Day", + "2036-01-02": "New Year's Day", + "2036-01-20": "Black January", + "2036-02-07": "Gurban Bayrami* (*estimated)", + "2036-02-08": "Gurban Bayrami* (*estimated)", + "2036-03-08": "International Women's Day", + "2036-03-10": "International Women's Day (Observed)", + "2036-03-20": "Novruz", + "2036-03-21": "Novruz", + "2036-03-22": "Novruz", + "2036-03-23": "Novruz", + "2036-03-24": "Novruz", + "2036-03-25": "Novruz (Observed)", + "2036-03-26": "Novruz (Observed)", + "2036-05-09": "Victory Day over Fascism", + "2036-05-28": "Independence Day", + "2036-06-15": "National Salvation Day", + "2036-06-16": "National Salvation Day (Observed)", + "2036-06-26": "Azerbaijan Armed Forces Day", + "2036-09-27": "Memorial Day", + "2036-11-08": "Victory Day", + "2036-11-09": "Flag Day", + "2036-11-10": "Victory Day (Observed)", + "2036-11-11": "Flag Day (Observed)", + "2036-11-19": "Ramazan Bayrami* (*estimated)", + "2036-11-20": "Ramazan Bayrami* (*estimated)", + "2036-12-31": "International Solidarity Day of Azerbaijanis", + "2037-01-01": "New Year's Day", + "2037-01-02": "New Year's Day", + "2037-01-20": "Black January", + "2037-01-26": "Gurban Bayrami* (*estimated)", + "2037-01-27": "Gurban Bayrami* (*estimated)", + "2037-03-08": "International Women's Day", + "2037-03-09": "International Women's Day (Observed)", + "2037-03-20": "Novruz", + "2037-03-21": "Novruz", + "2037-03-22": "Novruz", + "2037-03-23": "Novruz", + "2037-03-24": "Novruz", + "2037-03-25": "Novruz (Observed)", + "2037-03-26": "Novruz (Observed)", + "2037-05-09": "Victory Day over Fascism", + "2037-05-11": "Victory Day over Fascism (Observed)", + "2037-05-28": "Independence Day", + "2037-06-15": "National Salvation Day", + "2037-06-26": "Azerbaijan Armed Forces Day", + "2037-09-27": "Memorial Day", + "2037-11-08": "Ramazan Bayrami* (*estimated); Victory Day", + "2037-11-09": "Flag Day; Ramazan Bayrami* (*estimated)", + "2037-11-10": "Ramazan Bayrami* (*estimated) (Observed); Victory Day (Observed)", + "2037-11-11": "Ramazan Bayrami* (*estimated) (Observed)", + "2037-12-31": "International Solidarity Day of Azerbaijanis", + "2038-01-01": "New Year's Day", + "2038-01-02": "New Year's Day", + "2038-01-04": "New Year's Day (Observed)", + "2038-01-16": "Gurban Bayrami* (*estimated)", + "2038-01-17": "Gurban Bayrami* (*estimated)", + "2038-01-18": "Gurban Bayrami* (*estimated) (Observed)", + "2038-01-19": "Gurban Bayrami* (*estimated) (Observed)", + "2038-01-20": "Black January", + "2038-03-08": "International Women's Day", + "2038-03-20": "Novruz", + "2038-03-21": "Novruz", + "2038-03-22": "Novruz", + "2038-03-23": "Novruz", + "2038-03-24": "Novruz", + "2038-03-25": "Novruz (Observed)", + "2038-03-26": "Novruz (Observed)", + "2038-05-09": "Victory Day over Fascism", + "2038-05-10": "Victory Day over Fascism (Observed)", + "2038-05-28": "Independence Day", + "2038-06-15": "National Salvation Day", + "2038-06-26": "Azerbaijan Armed Forces Day", + "2038-06-28": "Azerbaijan Armed Forces Day (Observed)", + "2038-09-27": "Memorial Day", + "2038-10-29": "Ramazan Bayrami* (*estimated)", + "2038-10-30": "Ramazan Bayrami* (*estimated)", + "2038-11-01": "Ramazan Bayrami* (*estimated) (Observed)", + "2038-11-08": "Victory Day", + "2038-11-09": "Flag Day", + "2038-12-31": "International Solidarity Day of Azerbaijanis", + "2039-01-01": "New Year's Day", + "2039-01-02": "New Year's Day", + "2039-01-03": "New Year's Day (Observed)", + "2039-01-04": "New Year's Day (Observed)", + "2039-01-05": "Gurban Bayrami* (*estimated)", + "2039-01-06": "Gurban Bayrami* (*estimated)", + "2039-01-20": "Black January", + "2039-03-08": "International Women's Day", + "2039-03-20": "Novruz", + "2039-03-21": "Novruz", + "2039-03-22": "Novruz", + "2039-03-23": "Novruz", + "2039-03-24": "Novruz", + "2039-03-25": "Novruz (Observed)", + "2039-05-09": "Victory Day over Fascism", + "2039-05-28": "Independence Day", + "2039-05-30": "Independence Day (Observed)", + "2039-06-15": "National Salvation Day", + "2039-06-26": "Azerbaijan Armed Forces Day", + "2039-06-27": "Azerbaijan Armed Forces Day (Observed)", + "2039-09-27": "Memorial Day", + "2039-10-19": "Ramazan Bayrami* (*estimated)", + "2039-10-20": "Ramazan Bayrami* (*estimated)", + "2039-11-08": "Victory Day", + "2039-11-09": "Flag Day", + "2039-12-26": "Gurban Bayrami* (*estimated)", + "2039-12-27": "Gurban Bayrami* (*estimated)", + "2039-12-31": "International Solidarity Day of Azerbaijanis", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day", + "2040-01-03": "International Solidarity Day of Azerbaijanis (Observed)", + "2040-01-04": "New Year's Day (Observed)", + "2040-01-20": "Black January", + "2040-03-08": "International Women's Day", + "2040-03-20": "Novruz", + "2040-03-21": "Novruz", + "2040-03-22": "Novruz", + "2040-03-23": "Novruz", + "2040-03-24": "Novruz", + "2040-03-26": "Novruz (Observed)", + "2040-05-09": "Victory Day over Fascism", + "2040-05-28": "Independence Day", + "2040-06-15": "National Salvation Day", + "2040-06-26": "Azerbaijan Armed Forces Day", + "2040-09-27": "Memorial Day", + "2040-10-07": "Ramazan Bayrami* (*estimated)", + "2040-10-08": "Ramazan Bayrami* (*estimated)", + "2040-10-09": "Ramazan Bayrami* (*estimated) (Observed)", + "2040-11-08": "Victory Day", + "2040-11-09": "Flag Day", + "2040-12-14": "Gurban Bayrami* (*estimated)", + "2040-12-15": "Gurban Bayrami* (*estimated)", + "2040-12-17": "Gurban Bayrami* (*estimated) (Observed)", + "2040-12-31": "International Solidarity Day of Azerbaijanis", + "2041-01-01": "New Year's Day", + "2041-01-02": "New Year's Day", + "2041-01-20": "Black January", + "2041-03-08": "International Women's Day", + "2041-03-20": "Novruz", + "2041-03-21": "Novruz", + "2041-03-22": "Novruz", + "2041-03-23": "Novruz", + "2041-03-24": "Novruz", + "2041-03-25": "Novruz (Observed)", + "2041-03-26": "Novruz (Observed)", + "2041-05-09": "Victory Day over Fascism", + "2041-05-28": "Independence Day", + "2041-06-15": "National Salvation Day", + "2041-06-17": "National Salvation Day (Observed)", + "2041-06-26": "Azerbaijan Armed Forces Day", + "2041-09-26": "Ramazan Bayrami* (*estimated)", + "2041-09-27": "Memorial Day; Ramazan Bayrami* (*estimated)", + "2041-11-08": "Victory Day", + "2041-11-09": "Flag Day", + "2041-11-11": "Flag Day (Observed)", + "2041-12-04": "Gurban Bayrami* (*estimated)", + "2041-12-05": "Gurban Bayrami* (*estimated)", + "2041-12-31": "International Solidarity Day of Azerbaijanis", + "2042-01-01": "New Year's Day", + "2042-01-02": "New Year's Day", + "2042-01-20": "Black January", + "2042-03-08": "International Women's Day", + "2042-03-10": "International Women's Day (Observed)", + "2042-03-20": "Novruz", + "2042-03-21": "Novruz", + "2042-03-22": "Novruz", + "2042-03-23": "Novruz", + "2042-03-24": "Novruz", + "2042-03-25": "Novruz (Observed)", + "2042-03-26": "Novruz (Observed)", + "2042-05-09": "Victory Day over Fascism", + "2042-05-28": "Independence Day", + "2042-06-15": "National Salvation Day", + "2042-06-16": "National Salvation Day (Observed)", + "2042-06-26": "Azerbaijan Armed Forces Day", + "2042-09-15": "Ramazan Bayrami* (*estimated)", + "2042-09-16": "Ramazan Bayrami* (*estimated)", + "2042-09-27": "Memorial Day", + "2042-11-08": "Victory Day", + "2042-11-09": "Flag Day", + "2042-11-10": "Victory Day (Observed)", + "2042-11-11": "Flag Day (Observed)", + "2042-11-23": "Gurban Bayrami* (*estimated)", + "2042-11-24": "Gurban Bayrami* (*estimated)", + "2042-11-25": "Gurban Bayrami* (*estimated) (Observed)", + "2042-12-31": "International Solidarity Day of Azerbaijanis", + "2043-01-01": "New Year's Day", + "2043-01-02": "New Year's Day", + "2043-01-20": "Black January", + "2043-03-08": "International Women's Day", + "2043-03-09": "International Women's Day (Observed)", + "2043-03-20": "Novruz", + "2043-03-21": "Novruz", + "2043-03-22": "Novruz", + "2043-03-23": "Novruz", + "2043-03-24": "Novruz", + "2043-03-25": "Novruz (Observed)", + "2043-03-26": "Novruz (Observed)", + "2043-05-09": "Victory Day over Fascism", + "2043-05-11": "Victory Day over Fascism (Observed)", + "2043-05-28": "Independence Day", + "2043-06-15": "National Salvation Day", + "2043-06-26": "Azerbaijan Armed Forces Day", + "2043-09-04": "Ramazan Bayrami* (*estimated)", + "2043-09-05": "Ramazan Bayrami* (*estimated)", + "2043-09-07": "Ramazan Bayrami* (*estimated) (Observed)", + "2043-09-27": "Memorial Day", + "2043-11-08": "Victory Day", + "2043-11-09": "Flag Day", + "2043-11-10": "Victory Day (Observed)", + "2043-11-12": "Gurban Bayrami* (*estimated)", + "2043-11-13": "Gurban Bayrami* (*estimated)", + "2043-12-31": "International Solidarity Day of Azerbaijanis", + "2044-01-01": "New Year's Day", + "2044-01-02": "New Year's Day", + "2044-01-04": "New Year's Day (Observed)", + "2044-01-20": "Black January", + "2044-03-08": "International Women's Day", + "2044-03-20": "Novruz", + "2044-03-21": "Novruz", + "2044-03-22": "Novruz", + "2044-03-23": "Novruz", + "2044-03-24": "Novruz", + "2044-03-25": "Novruz (Observed)", + "2044-05-09": "Victory Day over Fascism", + "2044-05-28": "Independence Day", + "2044-05-30": "Independence Day (Observed)", + "2044-06-15": "National Salvation Day", + "2044-06-26": "Azerbaijan Armed Forces Day", + "2044-06-27": "Azerbaijan Armed Forces Day (Observed)", + "2044-08-24": "Ramazan Bayrami* (*estimated)", + "2044-08-25": "Ramazan Bayrami* (*estimated)", + "2044-09-27": "Memorial Day", + "2044-10-31": "Gurban Bayrami* (*estimated)", + "2044-11-01": "Gurban Bayrami* (*estimated)", + "2044-11-08": "Victory Day", + "2044-11-09": "Flag Day", + "2044-12-31": "International Solidarity Day of Azerbaijanis", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day", + "2045-01-03": "International Solidarity Day of Azerbaijanis (Observed)", + "2045-01-04": "New Year's Day (Observed)", + "2045-01-20": "Black January", + "2045-03-08": "International Women's Day", + "2045-03-20": "Novruz", + "2045-03-21": "Novruz", + "2045-03-22": "Novruz", + "2045-03-23": "Novruz", + "2045-03-24": "Novruz", + "2045-05-09": "Victory Day over Fascism", + "2045-05-28": "Independence Day", + "2045-05-29": "Independence Day (Observed)", + "2045-06-15": "National Salvation Day", + "2045-06-26": "Azerbaijan Armed Forces Day", + "2045-08-14": "Ramazan Bayrami* (*estimated)", + "2045-08-15": "Ramazan Bayrami* (*estimated)", + "2045-09-27": "Memorial Day", + "2045-10-21": "Gurban Bayrami* (*estimated)", + "2045-10-22": "Gurban Bayrami* (*estimated)", + "2045-10-23": "Gurban Bayrami* (*estimated) (Observed)", + "2045-10-24": "Gurban Bayrami* (*estimated) (Observed)", + "2045-11-08": "Victory Day", + "2045-11-09": "Flag Day", + "2045-12-31": "International Solidarity Day of Azerbaijanis", + "2046-01-01": "New Year's Day", + "2046-01-02": "New Year's Day", + "2046-01-03": "International Solidarity Day of Azerbaijanis (Observed)", + "2046-01-20": "Black January", + "2046-03-08": "International Women's Day", + "2046-03-20": "Novruz", + "2046-03-21": "Novruz", + "2046-03-22": "Novruz", + "2046-03-23": "Novruz", + "2046-03-24": "Novruz", + "2046-03-26": "Novruz (Observed)", + "2046-05-09": "Victory Day over Fascism", + "2046-05-28": "Independence Day", + "2046-06-15": "National Salvation Day", + "2046-06-26": "Azerbaijan Armed Forces Day", + "2046-08-03": "Ramazan Bayrami* (*estimated)", + "2046-08-04": "Ramazan Bayrami* (*estimated)", + "2046-08-06": "Ramazan Bayrami* (*estimated) (Observed)", + "2046-09-27": "Memorial Day", + "2046-10-10": "Gurban Bayrami* (*estimated)", + "2046-10-11": "Gurban Bayrami* (*estimated)", + "2046-11-08": "Victory Day", + "2046-11-09": "Flag Day", + "2046-12-31": "International Solidarity Day of Azerbaijanis", + "2047-01-01": "New Year's Day", + "2047-01-02": "New Year's Day", + "2047-01-20": "Black January", + "2047-03-08": "International Women's Day", + "2047-03-20": "Novruz", + "2047-03-21": "Novruz", + "2047-03-22": "Novruz", + "2047-03-23": "Novruz", + "2047-03-24": "Novruz", + "2047-03-25": "Novruz (Observed)", + "2047-03-26": "Novruz (Observed)", + "2047-05-09": "Victory Day over Fascism", + "2047-05-28": "Independence Day", + "2047-06-15": "National Salvation Day", + "2047-06-17": "National Salvation Day (Observed)", + "2047-06-26": "Azerbaijan Armed Forces Day", + "2047-07-24": "Ramazan Bayrami* (*estimated)", + "2047-07-25": "Ramazan Bayrami* (*estimated)", + "2047-09-27": "Memorial Day", + "2047-09-30": "Gurban Bayrami* (*estimated)", + "2047-10-01": "Gurban Bayrami* (*estimated)", + "2047-11-08": "Victory Day", + "2047-11-09": "Flag Day", + "2047-11-11": "Flag Day (Observed)", + "2047-12-31": "International Solidarity Day of Azerbaijanis", + "2048-01-01": "New Year's Day", + "2048-01-02": "New Year's Day", + "2048-01-20": "Black January", + "2048-03-08": "International Women's Day", + "2048-03-09": "International Women's Day (Observed)", + "2048-03-20": "Novruz", + "2048-03-21": "Novruz", + "2048-03-22": "Novruz", + "2048-03-23": "Novruz", + "2048-03-24": "Novruz", + "2048-03-25": "Novruz (Observed)", + "2048-03-26": "Novruz (Observed)", + "2048-05-09": "Victory Day over Fascism", + "2048-05-11": "Victory Day over Fascism (Observed)", + "2048-05-28": "Independence Day", + "2048-06-15": "National Salvation Day", + "2048-06-26": "Azerbaijan Armed Forces Day", + "2048-07-12": "Ramazan Bayrami* (*estimated)", + "2048-07-13": "Ramazan Bayrami* (*estimated)", + "2048-07-14": "Ramazan Bayrami* (*estimated) (Observed)", + "2048-09-19": "Gurban Bayrami* (*estimated)", + "2048-09-20": "Gurban Bayrami* (*estimated)", + "2048-09-21": "Gurban Bayrami* (*estimated) (Observed)", + "2048-09-22": "Gurban Bayrami* (*estimated) (Observed)", + "2048-09-27": "Memorial Day", + "2048-11-08": "Victory Day", + "2048-11-09": "Flag Day", + "2048-11-10": "Victory Day (Observed)", + "2048-12-31": "International Solidarity Day of Azerbaijanis", + "2049-01-01": "New Year's Day", + "2049-01-02": "New Year's Day", + "2049-01-04": "New Year's Day (Observed)", + "2049-01-20": "Black January", + "2049-03-08": "International Women's Day", + "2049-03-20": "Novruz", + "2049-03-21": "Novruz", + "2049-03-22": "Novruz", + "2049-03-23": "Novruz", + "2049-03-24": "Novruz", + "2049-03-25": "Novruz (Observed)", + "2049-03-26": "Novruz (Observed)", + "2049-05-09": "Victory Day over Fascism", + "2049-05-10": "Victory Day over Fascism (Observed)", + "2049-05-28": "Independence Day", + "2049-06-15": "National Salvation Day", + "2049-06-26": "Azerbaijan Armed Forces Day", + "2049-06-28": "Azerbaijan Armed Forces Day (Observed)", + "2049-07-01": "Ramazan Bayrami* (*estimated)", + "2049-07-02": "Ramazan Bayrami* (*estimated)", + "2049-09-08": "Gurban Bayrami* (*estimated)", + "2049-09-09": "Gurban Bayrami* (*estimated)", + "2049-09-27": "Memorial Day", + "2049-11-08": "Victory Day", + "2049-11-09": "Flag Day", + "2049-12-31": "International Solidarity Day of Azerbaijanis", + "2050-01-01": "New Year's Day", + "2050-01-02": "New Year's Day", + "2050-01-03": "New Year's Day (Observed)", + "2050-01-04": "New Year's Day (Observed)", + "2050-01-20": "Black January", + "2050-03-08": "International Women's Day", + "2050-03-20": "Novruz", + "2050-03-21": "Novruz", + "2050-03-22": "Novruz", + "2050-03-23": "Novruz", + "2050-03-24": "Novruz", + "2050-03-25": "Novruz (Observed)", + "2050-05-09": "Victory Day over Fascism", + "2050-05-28": "Independence Day", + "2050-05-30": "Independence Day (Observed)", + "2050-06-15": "National Salvation Day", + "2050-06-20": "Ramazan Bayrami* (*estimated)", + "2050-06-21": "Ramazan Bayrami* (*estimated)", + "2050-06-26": "Azerbaijan Armed Forces Day", + "2050-06-27": "Azerbaijan Armed Forces Day (Observed)", + "2050-08-28": "Gurban Bayrami* (*estimated)", + "2050-08-29": "Gurban Bayrami* (*estimated)", + "2050-08-30": "Gurban Bayrami* (*estimated) (Observed)", + "2050-09-27": "Memorial Day", + "2050-11-08": "Victory Day", + "2050-11-09": "Flag Day", + "2050-12-31": "International Solidarity Day of Azerbaijanis" +} diff --git a/snapshots/countries/BA.json b/snapshots/countries/BA.json new file mode 100644 index 000000000..b45f30c3e --- /dev/null +++ b/snapshots/countries/BA.json @@ -0,0 +1,2414 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-02": "New Year's Day", + "1950-01-03": "New Year's Day (Observed)", + "1950-01-06": "Orthodox Christmas Eve", + "1950-01-07": "Orthodox Christmas", + "1950-01-14": "Orthodox New Year", + "1950-03-01": "Independence Day", + "1950-03-08": "Day of establishment of Br\u010dko District", + "1950-04-07": "Catholic Good Friday; Orthodox Good Friday", + "1950-04-09": "Catholic Easter; Orthodox Easter", + "1950-04-10": "Catholic Easter Monday; Orthodox Easter Monday", + "1950-05-01": "Labor Day", + "1950-05-02": "Labor Day", + "1950-05-09": "Victory Day", + "1950-07-16": "Eid al-Fitr* (*estimated)", + "1950-07-17": "Eid al-Fitr* (*estimated)", + "1950-09-23": "Eid al-Adha* (*estimated)", + "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-11-21": "Dayton Agreement Day", + "1950-11-25": "Statehood Day", + "1950-12-24": "Catholic Christmas Eve", + "1950-12-25": "Catholic Christmas", + "1951-01-01": "New Year's Day", + "1951-01-02": "New Year's Day", + "1951-01-06": "Orthodox Christmas Eve", + "1951-01-07": "Orthodox Christmas", + "1951-01-08": "Orthodox Christmas (Observed)", + "1951-01-14": "Orthodox New Year", + "1951-03-01": "Independence Day", + "1951-03-08": "Day of establishment of Br\u010dko District", + "1951-03-23": "Catholic Good Friday", + "1951-03-25": "Catholic Easter", + "1951-03-26": "Catholic Easter Monday", + "1951-04-27": "Orthodox Good Friday", + "1951-04-29": "Orthodox Easter", + "1951-04-30": "Orthodox Easter Monday", + "1951-05-01": "Labor Day", + "1951-05-02": "Labor Day", + "1951-05-09": "Victory Day", + "1951-07-06": "Eid al-Fitr* (*estimated)", + "1951-07-07": "Eid al-Fitr* (*estimated)", + "1951-09-12": "Eid al-Adha* (*estimated)", + "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-11-21": "Dayton Agreement Day", + "1951-11-25": "Statehood Day", + "1951-12-24": "Catholic Christmas Eve", + "1951-12-25": "Catholic Christmas", + "1952-01-01": "New Year's Day", + "1952-01-02": "New Year's Day", + "1952-01-06": "Orthodox Christmas Eve", + "1952-01-07": "Orthodox Christmas", + "1952-01-14": "Orthodox New Year", + "1952-03-01": "Independence Day", + "1952-03-08": "Day of establishment of Br\u010dko District", + "1952-04-11": "Catholic Good Friday", + "1952-04-13": "Catholic Easter", + "1952-04-14": "Catholic Easter Monday", + "1952-04-18": "Orthodox Good Friday", + "1952-04-20": "Orthodox Easter", + "1952-04-21": "Orthodox Easter Monday", + "1952-05-01": "Labor Day", + "1952-05-02": "Labor Day", + "1952-05-09": "Victory Day", + "1952-06-23": "Eid al-Fitr* (*estimated)", + "1952-06-24": "Eid al-Fitr* (*estimated)", + "1952-08-31": "Eid al-Adha* (*estimated)", + "1952-09-01": "Eid al-Adha* (*estimated)", + "1952-11-21": "Dayton Agreement Day", + "1952-11-25": "Statehood Day", + "1952-12-24": "Catholic Christmas Eve", + "1952-12-25": "Catholic Christmas", + "1953-01-01": "New Year's Day", + "1953-01-02": "New Year's Day", + "1953-01-06": "Orthodox Christmas Eve", + "1953-01-07": "Orthodox Christmas", + "1953-01-14": "Orthodox New Year", + "1953-03-01": "Independence Day", + "1953-03-08": "Day of establishment of Br\u010dko District", + "1953-03-09": "Day of establishment of Br\u010dko District (Observed)", + "1953-04-03": "Catholic Good Friday; Orthodox Good Friday", + "1953-04-05": "Catholic Easter; Orthodox Easter", + "1953-04-06": "Catholic Easter Monday; Orthodox Easter Monday", + "1953-05-01": "Labor Day", + "1953-05-02": "Labor Day", + "1953-05-09": "Victory Day", + "1953-06-13": "Eid al-Fitr* (*estimated)", + "1953-06-14": "Eid al-Fitr* (*estimated)", + "1953-08-20": "Eid al-Adha* (*estimated)", + "1953-08-21": "Eid al-Adha* (*estimated)", + "1953-11-21": "Dayton Agreement Day", + "1953-11-25": "Statehood Day", + "1953-12-24": "Catholic Christmas Eve", + "1953-12-25": "Catholic Christmas", + "1954-01-01": "New Year's Day", + "1954-01-02": "New Year's Day", + "1954-01-06": "Orthodox Christmas Eve", + "1954-01-07": "Orthodox Christmas", + "1954-01-14": "Orthodox New Year", + "1954-03-01": "Independence Day", + "1954-03-08": "Day of establishment of Br\u010dko District", + "1954-04-16": "Catholic Good Friday", + "1954-04-18": "Catholic Easter", + "1954-04-19": "Catholic Easter Monday", + "1954-04-23": "Orthodox Good Friday", + "1954-04-25": "Orthodox Easter", + "1954-04-26": "Orthodox Easter Monday", + "1954-05-01": "Labor Day", + "1954-05-02": "Labor Day", + "1954-05-03": "Labor Day (Observed)", + "1954-05-09": "Victory Day", + "1954-06-02": "Eid al-Fitr* (*estimated)", + "1954-06-03": "Eid al-Fitr* (*estimated)", + "1954-08-09": "Eid al-Adha* (*estimated)", + "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-11-21": "Dayton Agreement Day", + "1954-11-25": "Statehood Day", + "1954-12-24": "Catholic Christmas Eve", + "1954-12-25": "Catholic Christmas", + "1955-01-01": "New Year's Day", + "1955-01-02": "New Year's Day", + "1955-01-03": "New Year's Day (Observed)", + "1955-01-06": "Orthodox Christmas Eve", + "1955-01-07": "Orthodox Christmas", + "1955-01-14": "Orthodox New Year", + "1955-03-01": "Independence Day", + "1955-03-08": "Day of establishment of Br\u010dko District", + "1955-04-08": "Catholic Good Friday", + "1955-04-10": "Catholic Easter", + "1955-04-11": "Catholic Easter Monday", + "1955-04-15": "Orthodox Good Friday", + "1955-04-17": "Orthodox Easter", + "1955-04-18": "Orthodox Easter Monday", + "1955-05-01": "Labor Day", + "1955-05-02": "Labor Day", + "1955-05-03": "Labor Day (Observed)", + "1955-05-09": "Victory Day", + "1955-05-23": "Eid al-Fitr* (*estimated)", + "1955-05-24": "Eid al-Fitr* (*estimated)", + "1955-07-30": "Eid al-Adha* (*estimated)", + "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-11-21": "Dayton Agreement Day", + "1955-11-25": "Statehood Day", + "1955-12-24": "Catholic Christmas Eve", + "1955-12-25": "Catholic Christmas", + "1955-12-26": "Catholic Christmas (Observed)", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year's Day", + "1956-01-03": "New Year's Day (Observed)", + "1956-01-06": "Orthodox Christmas Eve", + "1956-01-07": "Orthodox Christmas", + "1956-01-14": "Orthodox New Year", + "1956-03-01": "Independence Day", + "1956-03-08": "Day of establishment of Br\u010dko District", + "1956-03-30": "Catholic Good Friday", + "1956-04-01": "Catholic Easter", + "1956-04-02": "Catholic Easter Monday", + "1956-05-01": "Labor Day", + "1956-05-02": "Labor Day", + "1956-05-04": "Orthodox Good Friday", + "1956-05-06": "Orthodox Easter", + "1956-05-07": "Orthodox Easter Monday", + "1956-05-09": "Victory Day", + "1956-05-11": "Eid al-Fitr* (*estimated)", + "1956-05-12": "Eid al-Fitr* (*estimated)", + "1956-07-19": "Eid al-Adha* (*estimated)", + "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-11-21": "Dayton Agreement Day", + "1956-11-25": "Statehood Day", + "1956-12-24": "Catholic Christmas Eve", + "1956-12-25": "Catholic Christmas", + "1957-01-01": "New Year's Day", + "1957-01-02": "New Year's Day", + "1957-01-06": "Orthodox Christmas Eve", + "1957-01-07": "Orthodox Christmas", + "1957-01-14": "Orthodox New Year", + "1957-03-01": "Independence Day", + "1957-03-08": "Day of establishment of Br\u010dko District", + "1957-04-19": "Catholic Good Friday; Orthodox Good Friday", + "1957-04-21": "Catholic Easter; Orthodox Easter", + "1957-04-22": "Catholic Easter Monday; Orthodox Easter Monday", + "1957-05-01": "Eid al-Fitr* (*estimated); Labor Day", + "1957-05-02": "Eid al-Fitr* (*estimated); Labor Day", + "1957-05-09": "Victory Day", + "1957-07-08": "Eid al-Adha* (*estimated)", + "1957-07-09": "Eid al-Adha* (*estimated)", + "1957-11-21": "Dayton Agreement Day", + "1957-11-25": "Statehood Day", + "1957-12-24": "Catholic Christmas Eve", + "1957-12-25": "Catholic Christmas", + "1958-01-01": "New Year's Day", + "1958-01-02": "New Year's Day", + "1958-01-06": "Orthodox Christmas Eve", + "1958-01-07": "Orthodox Christmas", + "1958-01-14": "Orthodox New Year", + "1958-03-01": "Independence Day", + "1958-03-08": "Day of establishment of Br\u010dko District", + "1958-04-04": "Catholic Good Friday", + "1958-04-06": "Catholic Easter", + "1958-04-07": "Catholic Easter Monday", + "1958-04-11": "Orthodox Good Friday", + "1958-04-13": "Orthodox Easter", + "1958-04-14": "Orthodox Easter Monday", + "1958-04-20": "Eid al-Fitr* (*estimated)", + "1958-04-21": "Eid al-Fitr* (*estimated)", + "1958-05-01": "Labor Day", + "1958-05-02": "Labor Day", + "1958-05-09": "Victory Day", + "1958-06-27": "Eid al-Adha* (*estimated)", + "1958-06-28": "Eid al-Adha* (*estimated)", + "1958-11-21": "Dayton Agreement Day", + "1958-11-25": "Statehood Day", + "1958-12-24": "Catholic Christmas Eve", + "1958-12-25": "Catholic Christmas", + "1959-01-01": "New Year's Day", + "1959-01-02": "New Year's Day", + "1959-01-06": "Orthodox Christmas Eve", + "1959-01-07": "Orthodox Christmas", + "1959-01-14": "Orthodox New Year", + "1959-03-01": "Independence Day", + "1959-03-08": "Day of establishment of Br\u010dko District", + "1959-03-09": "Day of establishment of Br\u010dko District (Observed)", + "1959-03-27": "Catholic Good Friday", + "1959-03-29": "Catholic Easter", + "1959-03-30": "Catholic Easter Monday", + "1959-04-10": "Eid al-Fitr* (*estimated)", + "1959-04-11": "Eid al-Fitr* (*estimated)", + "1959-05-01": "Labor Day; Orthodox Good Friday", + "1959-05-02": "Labor Day", + "1959-05-03": "Orthodox Easter", + "1959-05-04": "Orthodox Easter Monday", + "1959-05-09": "Victory Day", + "1959-06-17": "Eid al-Adha* (*estimated)", + "1959-06-18": "Eid al-Adha* (*estimated)", + "1959-11-21": "Dayton Agreement Day", + "1959-11-25": "Statehood Day", + "1959-12-24": "Catholic Christmas Eve", + "1959-12-25": "Catholic Christmas", + "1960-01-01": "New Year's Day", + "1960-01-02": "New Year's Day", + "1960-01-06": "Orthodox Christmas Eve", + "1960-01-07": "Orthodox Christmas", + "1960-01-14": "Orthodox New Year", + "1960-03-01": "Independence Day", + "1960-03-08": "Day of establishment of Br\u010dko District", + "1960-03-28": "Eid al-Fitr* (*estimated)", + "1960-03-29": "Eid al-Fitr* (*estimated)", + "1960-04-15": "Catholic Good Friday; Orthodox Good Friday", + "1960-04-17": "Catholic Easter; Orthodox Easter", + "1960-04-18": "Catholic Easter Monday; Orthodox Easter Monday", + "1960-05-01": "Labor Day", + "1960-05-02": "Labor Day", + "1960-05-03": "Labor Day (Observed)", + "1960-05-09": "Victory Day", + "1960-06-04": "Eid al-Adha* (*estimated)", + "1960-06-05": "Eid al-Adha* (*estimated)", + "1960-11-21": "Dayton Agreement Day", + "1960-11-25": "Statehood Day", + "1960-12-24": "Catholic Christmas Eve", + "1960-12-25": "Catholic Christmas", + "1960-12-26": "Catholic Christmas (Observed)", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day", + "1961-01-03": "New Year's Day (Observed)", + "1961-01-06": "Orthodox Christmas Eve", + "1961-01-07": "Orthodox Christmas", + "1961-01-14": "Orthodox New Year", + "1961-03-01": "Independence Day", + "1961-03-08": "Day of establishment of Br\u010dko District", + "1961-03-18": "Eid al-Fitr* (*estimated)", + "1961-03-19": "Eid al-Fitr* (*estimated)", + "1961-03-31": "Catholic Good Friday", + "1961-04-02": "Catholic Easter", + "1961-04-03": "Catholic Easter Monday", + "1961-04-07": "Orthodox Good Friday", + "1961-04-09": "Orthodox Easter", + "1961-04-10": "Orthodox Easter Monday", + "1961-05-01": "Labor Day", + "1961-05-02": "Labor Day", + "1961-05-09": "Victory Day", + "1961-05-25": "Eid al-Adha* (*estimated)", + "1961-05-26": "Eid al-Adha* (*estimated)", + "1961-11-21": "Dayton Agreement Day", + "1961-11-25": "Statehood Day", + "1961-12-24": "Catholic Christmas Eve", + "1961-12-25": "Catholic Christmas", + "1962-01-01": "New Year's Day", + "1962-01-02": "New Year's Day", + "1962-01-06": "Orthodox Christmas Eve", + "1962-01-07": "Orthodox Christmas", + "1962-01-08": "Orthodox Christmas (Observed)", + "1962-01-14": "Orthodox New Year", + "1962-03-01": "Independence Day", + "1962-03-07": "Eid al-Fitr* (*estimated)", + "1962-03-08": "Day of establishment of Br\u010dko District; Eid al-Fitr* (*estimated)", + "1962-04-20": "Catholic Good Friday", + "1962-04-22": "Catholic Easter", + "1962-04-23": "Catholic Easter Monday", + "1962-04-27": "Orthodox Good Friday", + "1962-04-29": "Orthodox Easter", + "1962-04-30": "Orthodox Easter Monday", + "1962-05-01": "Labor Day", + "1962-05-02": "Labor Day", + "1962-05-09": "Victory Day", + "1962-05-14": "Eid al-Adha* (*estimated)", + "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-11-21": "Dayton Agreement Day", + "1962-11-25": "Statehood Day", + "1962-12-24": "Catholic Christmas Eve", + "1962-12-25": "Catholic Christmas", + "1963-01-01": "New Year's Day", + "1963-01-02": "New Year's Day", + "1963-01-06": "Orthodox Christmas Eve", + "1963-01-07": "Orthodox Christmas", + "1963-01-14": "Orthodox New Year", + "1963-02-24": "Eid al-Fitr* (*estimated)", + "1963-02-25": "Eid al-Fitr* (*estimated)", + "1963-03-01": "Independence Day", + "1963-03-08": "Day of establishment of Br\u010dko District", + "1963-04-12": "Catholic Good Friday; Orthodox Good Friday", + "1963-04-14": "Catholic Easter; Orthodox Easter", + "1963-04-15": "Catholic Easter Monday; Orthodox Easter Monday", + "1963-05-01": "Labor Day", + "1963-05-02": "Labor Day", + "1963-05-03": "Eid al-Adha* (*estimated)", + "1963-05-04": "Eid al-Adha* (*estimated)", + "1963-05-09": "Victory Day", + "1963-11-21": "Dayton Agreement Day", + "1963-11-25": "Statehood Day", + "1963-12-24": "Catholic Christmas Eve", + "1963-12-25": "Catholic Christmas", + "1964-01-01": "New Year's Day", + "1964-01-02": "New Year's Day", + "1964-01-06": "Orthodox Christmas Eve", + "1964-01-07": "Orthodox Christmas", + "1964-01-14": "Orthodox New Year", + "1964-02-14": "Eid al-Fitr* (*estimated)", + "1964-02-15": "Eid al-Fitr* (*estimated)", + "1964-03-01": "Independence Day", + "1964-03-08": "Day of establishment of Br\u010dko District", + "1964-03-09": "Day of establishment of Br\u010dko District (Observed)", + "1964-03-27": "Catholic Good Friday", + "1964-03-29": "Catholic Easter", + "1964-03-30": "Catholic Easter Monday", + "1964-04-22": "Eid al-Adha* (*estimated)", + "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-05-01": "Labor Day; Orthodox Good Friday", + "1964-05-02": "Labor Day", + "1964-05-03": "Orthodox Easter", + "1964-05-04": "Orthodox Easter Monday", + "1964-05-09": "Victory Day", + "1964-11-21": "Dayton Agreement Day", + "1964-11-25": "Statehood Day", + "1964-12-24": "Catholic Christmas Eve", + "1964-12-25": "Catholic Christmas", + "1965-01-01": "New Year's Day", + "1965-01-02": "New Year's Day", + "1965-01-06": "Orthodox Christmas Eve", + "1965-01-07": "Orthodox Christmas", + "1965-01-14": "Orthodox New Year", + "1965-02-02": "Eid al-Fitr* (*estimated)", + "1965-02-03": "Eid al-Fitr* (*estimated)", + "1965-03-01": "Independence Day", + "1965-03-08": "Day of establishment of Br\u010dko District", + "1965-04-11": "Eid al-Adha* (*estimated)", + "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-04-16": "Catholic Good Friday", + "1965-04-18": "Catholic Easter", + "1965-04-19": "Catholic Easter Monday", + "1965-04-23": "Orthodox Good Friday", + "1965-04-25": "Orthodox Easter", + "1965-04-26": "Orthodox Easter Monday", + "1965-05-01": "Labor Day", + "1965-05-02": "Labor Day", + "1965-05-03": "Labor Day (Observed)", + "1965-05-09": "Victory Day", + "1965-11-21": "Dayton Agreement Day", + "1965-11-25": "Statehood Day", + "1965-12-24": "Catholic Christmas Eve", + "1965-12-25": "Catholic Christmas", + "1966-01-01": "New Year's Day", + "1966-01-02": "New Year's Day", + "1966-01-03": "New Year's Day (Observed)", + "1966-01-06": "Orthodox Christmas Eve", + "1966-01-07": "Orthodox Christmas", + "1966-01-14": "Orthodox New Year", + "1966-01-22": "Eid al-Fitr* (*estimated)", + "1966-01-23": "Eid al-Fitr* (*estimated)", + "1966-03-01": "Independence Day", + "1966-03-08": "Day of establishment of Br\u010dko District", + "1966-04-01": "Eid al-Adha* (*estimated)", + "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-08": "Catholic Good Friday; Orthodox Good Friday", + "1966-04-10": "Catholic Easter; Orthodox Easter", + "1966-04-11": "Catholic Easter Monday; Orthodox Easter Monday", + "1966-05-01": "Labor Day", + "1966-05-02": "Labor Day", + "1966-05-03": "Labor Day (Observed)", + "1966-05-09": "Victory Day", + "1966-11-21": "Dayton Agreement Day", + "1966-11-25": "Statehood Day", + "1966-12-24": "Catholic Christmas Eve", + "1966-12-25": "Catholic Christmas", + "1966-12-26": "Catholic Christmas (Observed)", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day", + "1967-01-03": "New Year's Day (Observed)", + "1967-01-06": "Orthodox Christmas Eve", + "1967-01-07": "Orthodox Christmas", + "1967-01-12": "Eid al-Fitr* (*estimated)", + "1967-01-13": "Eid al-Fitr* (*estimated)", + "1967-01-14": "Orthodox New Year", + "1967-03-01": "Independence Day", + "1967-03-08": "Day of establishment of Br\u010dko District", + "1967-03-21": "Eid al-Adha* (*estimated)", + "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-24": "Catholic Good Friday", + "1967-03-26": "Catholic Easter", + "1967-03-27": "Catholic Easter Monday", + "1967-04-28": "Orthodox Good Friday", + "1967-04-30": "Orthodox Easter", + "1967-05-01": "Labor Day; Orthodox Easter Monday", + "1967-05-02": "Labor Day", + "1967-05-09": "Victory Day", + "1967-11-21": "Dayton Agreement Day", + "1967-11-25": "Statehood Day", + "1967-12-24": "Catholic Christmas Eve", + "1967-12-25": "Catholic Christmas", + "1968-01-01": "Eid al-Fitr* (*estimated); New Year's Day", + "1968-01-02": "Eid al-Fitr* (*estimated); New Year's Day", + "1968-01-06": "Orthodox Christmas Eve", + "1968-01-07": "Orthodox Christmas", + "1968-01-08": "Orthodox Christmas (Observed)", + "1968-01-14": "Orthodox New Year", + "1968-03-01": "Independence Day", + "1968-03-08": "Day of establishment of Br\u010dko District", + "1968-03-09": "Eid al-Adha* (*estimated)", + "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-04-12": "Catholic Good Friday", + "1968-04-14": "Catholic Easter", + "1968-04-15": "Catholic Easter Monday", + "1968-04-19": "Orthodox Good Friday", + "1968-04-21": "Orthodox Easter", + "1968-04-22": "Orthodox Easter Monday", + "1968-05-01": "Labor Day", + "1968-05-02": "Labor Day", + "1968-05-09": "Victory Day", + "1968-11-21": "Dayton Agreement Day", + "1968-11-25": "Statehood Day", + "1968-12-21": "Eid al-Fitr* (*estimated)", + "1968-12-22": "Eid al-Fitr* (*estimated)", + "1968-12-24": "Catholic Christmas Eve", + "1968-12-25": "Catholic Christmas", + "1969-01-01": "New Year's Day", + "1969-01-02": "New Year's Day", + "1969-01-06": "Orthodox Christmas Eve", + "1969-01-07": "Orthodox Christmas", + "1969-01-14": "Orthodox New Year", + "1969-02-27": "Eid al-Adha* (*estimated)", + "1969-02-28": "Eid al-Adha* (*estimated)", + "1969-03-01": "Independence Day", + "1969-03-08": "Day of establishment of Br\u010dko District", + "1969-04-04": "Catholic Good Friday", + "1969-04-06": "Catholic Easter", + "1969-04-07": "Catholic Easter Monday", + "1969-04-11": "Orthodox Good Friday", + "1969-04-13": "Orthodox Easter", + "1969-04-14": "Orthodox Easter Monday", + "1969-05-01": "Labor Day", + "1969-05-02": "Labor Day", + "1969-05-09": "Victory Day", + "1969-11-21": "Dayton Agreement Day", + "1969-11-25": "Statehood Day", + "1969-12-10": "Eid al-Fitr* (*estimated)", + "1969-12-11": "Eid al-Fitr* (*estimated)", + "1969-12-24": "Catholic Christmas Eve", + "1969-12-25": "Catholic Christmas", + "1970-01-01": "New Year's Day", + "1970-01-02": "New Year's Day", + "1970-01-06": "Orthodox Christmas Eve", + "1970-01-07": "Orthodox Christmas", + "1970-01-14": "Orthodox New Year", + "1970-02-16": "Eid al-Adha* (*estimated)", + "1970-02-17": "Eid al-Adha* (*estimated)", + "1970-03-01": "Independence Day", + "1970-03-08": "Day of establishment of Br\u010dko District", + "1970-03-09": "Day of establishment of Br\u010dko District (Observed)", + "1970-03-27": "Catholic Good Friday", + "1970-03-29": "Catholic Easter", + "1970-03-30": "Catholic Easter Monday", + "1970-04-24": "Orthodox Good Friday", + "1970-04-26": "Orthodox Easter", + "1970-04-27": "Orthodox Easter Monday", + "1970-05-01": "Labor Day", + "1970-05-02": "Labor Day", + "1970-05-09": "Victory Day", + "1970-11-21": "Dayton Agreement Day", + "1970-11-25": "Statehood Day", + "1970-11-30": "Eid al-Fitr* (*estimated)", + "1970-12-01": "Eid al-Fitr* (*estimated)", + "1970-12-24": "Catholic Christmas Eve", + "1970-12-25": "Catholic Christmas", + "1971-01-01": "New Year's Day", + "1971-01-02": "New Year's Day", + "1971-01-06": "Orthodox Christmas Eve", + "1971-01-07": "Orthodox Christmas", + "1971-01-14": "Orthodox New Year", + "1971-02-06": "Eid al-Adha* (*estimated)", + "1971-02-07": "Eid al-Adha* (*estimated)", + "1971-03-01": "Independence Day", + "1971-03-08": "Day of establishment of Br\u010dko District", + "1971-04-09": "Catholic Good Friday", + "1971-04-11": "Catholic Easter", + "1971-04-12": "Catholic Easter Monday", + "1971-04-16": "Orthodox Good Friday", + "1971-04-18": "Orthodox Easter", + "1971-04-19": "Orthodox Easter Monday", + "1971-05-01": "Labor Day", + "1971-05-02": "Labor Day", + "1971-05-03": "Labor Day (Observed)", + "1971-05-09": "Victory Day", + "1971-11-19": "Eid al-Fitr* (*estimated)", + "1971-11-20": "Eid al-Fitr* (*estimated)", + "1971-11-21": "Dayton Agreement Day", + "1971-11-25": "Statehood Day", + "1971-12-24": "Catholic Christmas Eve", + "1971-12-25": "Catholic Christmas", + "1972-01-01": "New Year's Day", + "1972-01-02": "New Year's Day", + "1972-01-03": "New Year's Day (Observed)", + "1972-01-06": "Orthodox Christmas Eve", + "1972-01-07": "Orthodox Christmas", + "1972-01-14": "Orthodox New Year", + "1972-01-26": "Eid al-Adha* (*estimated)", + "1972-01-27": "Eid al-Adha* (*estimated)", + "1972-03-01": "Independence Day", + "1972-03-08": "Day of establishment of Br\u010dko District", + "1972-03-31": "Catholic Good Friday", + "1972-04-02": "Catholic Easter", + "1972-04-03": "Catholic Easter Monday", + "1972-04-07": "Orthodox Good Friday", + "1972-04-09": "Orthodox Easter", + "1972-04-10": "Orthodox Easter Monday", + "1972-05-01": "Labor Day", + "1972-05-02": "Labor Day", + "1972-05-09": "Victory Day", + "1972-11-07": "Eid al-Fitr* (*estimated)", + "1972-11-08": "Eid al-Fitr* (*estimated)", + "1972-11-21": "Dayton Agreement Day", + "1972-11-25": "Statehood Day", + "1972-12-24": "Catholic Christmas Eve", + "1972-12-25": "Catholic Christmas", + "1973-01-01": "New Year's Day", + "1973-01-02": "New Year's Day", + "1973-01-06": "Orthodox Christmas Eve", + "1973-01-07": "Orthodox Christmas", + "1973-01-08": "Orthodox Christmas (Observed)", + "1973-01-14": "Eid al-Adha* (*estimated); Orthodox New Year", + "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-03-01": "Independence Day", + "1973-03-08": "Day of establishment of Br\u010dko District", + "1973-04-20": "Catholic Good Friday", + "1973-04-22": "Catholic Easter", + "1973-04-23": "Catholic Easter Monday", + "1973-04-27": "Orthodox Good Friday", + "1973-04-29": "Orthodox Easter", + "1973-04-30": "Orthodox Easter Monday", + "1973-05-01": "Labor Day", + "1973-05-02": "Labor Day", + "1973-05-09": "Victory Day", + "1973-10-27": "Eid al-Fitr* (*estimated)", + "1973-10-28": "Eid al-Fitr* (*estimated)", + "1973-11-21": "Dayton Agreement Day", + "1973-11-25": "Statehood Day", + "1973-12-24": "Catholic Christmas Eve", + "1973-12-25": "Catholic Christmas", + "1974-01-01": "New Year's Day", + "1974-01-02": "New Year's Day", + "1974-01-03": "Eid al-Adha* (*estimated)", + "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-06": "Orthodox Christmas Eve", + "1974-01-07": "Orthodox Christmas", + "1974-01-14": "Orthodox New Year", + "1974-03-01": "Independence Day", + "1974-03-08": "Day of establishment of Br\u010dko District", + "1974-04-12": "Catholic Good Friday; Orthodox Good Friday", + "1974-04-14": "Catholic Easter; Orthodox Easter", + "1974-04-15": "Catholic Easter Monday; Orthodox Easter Monday", + "1974-05-01": "Labor Day", + "1974-05-02": "Labor Day", + "1974-05-09": "Victory Day", + "1974-10-16": "Eid al-Fitr* (*estimated)", + "1974-10-17": "Eid al-Fitr* (*estimated)", + "1974-11-21": "Dayton Agreement Day", + "1974-11-25": "Statehood Day", + "1974-12-24": "Catholic Christmas Eve; Eid al-Adha* (*estimated)", + "1974-12-25": "Catholic Christmas; Eid al-Adha* (*estimated)", + "1975-01-01": "New Year's Day", + "1975-01-02": "New Year's Day", + "1975-01-06": "Orthodox Christmas Eve", + "1975-01-07": "Orthodox Christmas", + "1975-01-14": "Orthodox New Year", + "1975-03-01": "Independence Day", + "1975-03-08": "Day of establishment of Br\u010dko District", + "1975-03-28": "Catholic Good Friday", + "1975-03-30": "Catholic Easter", + "1975-03-31": "Catholic Easter Monday", + "1975-05-01": "Labor Day", + "1975-05-02": "Labor Day; Orthodox Good Friday", + "1975-05-04": "Orthodox Easter", + "1975-05-05": "Orthodox Easter Monday", + "1975-05-09": "Victory Day", + "1975-10-06": "Eid al-Fitr* (*estimated)", + "1975-10-07": "Eid al-Fitr* (*estimated)", + "1975-11-21": "Dayton Agreement Day", + "1975-11-25": "Statehood Day", + "1975-12-13": "Eid al-Adha* (*estimated)", + "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-12-24": "Catholic Christmas Eve", + "1975-12-25": "Catholic Christmas", + "1976-01-01": "New Year's Day", + "1976-01-02": "New Year's Day", + "1976-01-06": "Orthodox Christmas Eve", + "1976-01-07": "Orthodox Christmas", + "1976-01-14": "Orthodox New Year", + "1976-03-01": "Independence Day", + "1976-03-08": "Day of establishment of Br\u010dko District", + "1976-04-16": "Catholic Good Friday", + "1976-04-18": "Catholic Easter", + "1976-04-19": "Catholic Easter Monday", + "1976-04-23": "Orthodox Good Friday", + "1976-04-25": "Orthodox Easter", + "1976-04-26": "Orthodox Easter Monday", + "1976-05-01": "Labor Day", + "1976-05-02": "Labor Day", + "1976-05-03": "Labor Day (Observed)", + "1976-05-09": "Victory Day", + "1976-09-24": "Eid al-Fitr* (*estimated)", + "1976-09-25": "Eid al-Fitr* (*estimated)", + "1976-11-21": "Dayton Agreement Day", + "1976-11-25": "Statehood Day", + "1976-12-01": "Eid al-Adha* (*estimated)", + "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-24": "Catholic Christmas Eve", + "1976-12-25": "Catholic Christmas", + "1977-01-01": "New Year's Day", + "1977-01-02": "New Year's Day", + "1977-01-03": "New Year's Day (Observed)", + "1977-01-06": "Orthodox Christmas Eve", + "1977-01-07": "Orthodox Christmas", + "1977-01-14": "Orthodox New Year", + "1977-03-01": "Independence Day", + "1977-03-08": "Day of establishment of Br\u010dko District", + "1977-04-08": "Catholic Good Friday; Orthodox Good Friday", + "1977-04-10": "Catholic Easter; Orthodox Easter", + "1977-04-11": "Catholic Easter Monday; Orthodox Easter Monday", + "1977-05-01": "Labor Day", + "1977-05-02": "Labor Day", + "1977-05-03": "Labor Day (Observed)", + "1977-05-09": "Victory Day", + "1977-09-14": "Eid al-Fitr* (*estimated)", + "1977-09-15": "Eid al-Fitr* (*estimated)", + "1977-11-21": "Dayton Agreement Day; Eid al-Adha* (*estimated)", + "1977-11-22": "Eid al-Adha* (*estimated)", + "1977-11-25": "Statehood Day", + "1977-12-24": "Catholic Christmas Eve", + "1977-12-25": "Catholic Christmas", + "1977-12-26": "Catholic Christmas (Observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day", + "1978-01-03": "New Year's Day (Observed)", + "1978-01-06": "Orthodox Christmas Eve", + "1978-01-07": "Orthodox Christmas", + "1978-01-14": "Orthodox New Year", + "1978-03-01": "Independence Day", + "1978-03-08": "Day of establishment of Br\u010dko District", + "1978-03-24": "Catholic Good Friday", + "1978-03-26": "Catholic Easter", + "1978-03-27": "Catholic Easter Monday", + "1978-04-28": "Orthodox Good Friday", + "1978-04-30": "Orthodox Easter", + "1978-05-01": "Labor Day; Orthodox Easter Monday", + "1978-05-02": "Labor Day", + "1978-05-09": "Victory Day", + "1978-09-03": "Eid al-Fitr* (*estimated)", + "1978-09-04": "Eid al-Fitr* (*estimated)", + "1978-11-10": "Eid al-Adha* (*estimated)", + "1978-11-11": "Eid al-Adha* (*estimated)", + "1978-11-21": "Dayton Agreement Day", + "1978-11-25": "Statehood Day", + "1978-12-24": "Catholic Christmas Eve", + "1978-12-25": "Catholic Christmas", + "1979-01-01": "New Year's Day", + "1979-01-02": "New Year's Day", + "1979-01-06": "Orthodox Christmas Eve", + "1979-01-07": "Orthodox Christmas", + "1979-01-08": "Orthodox Christmas (Observed)", + "1979-01-14": "Orthodox New Year", + "1979-03-01": "Independence Day", + "1979-03-08": "Day of establishment of Br\u010dko District", + "1979-04-13": "Catholic Good Friday", + "1979-04-15": "Catholic Easter", + "1979-04-16": "Catholic Easter Monday", + "1979-04-20": "Orthodox Good Friday", + "1979-04-22": "Orthodox Easter", + "1979-04-23": "Orthodox Easter Monday", + "1979-05-01": "Labor Day", + "1979-05-02": "Labor Day", + "1979-05-09": "Victory Day", + "1979-08-23": "Eid al-Fitr* (*estimated)", + "1979-08-24": "Eid al-Fitr* (*estimated)", + "1979-10-31": "Eid al-Adha* (*estimated)", + "1979-11-01": "Eid al-Adha* (*estimated)", + "1979-11-21": "Dayton Agreement Day", + "1979-11-25": "Statehood Day", + "1979-12-24": "Catholic Christmas Eve", + "1979-12-25": "Catholic Christmas", + "1980-01-01": "New Year's Day", + "1980-01-02": "New Year's Day", + "1980-01-06": "Orthodox Christmas Eve", + "1980-01-07": "Orthodox Christmas", + "1980-01-14": "Orthodox New Year", + "1980-03-01": "Independence Day", + "1980-03-08": "Day of establishment of Br\u010dko District", + "1980-04-04": "Catholic Good Friday; Orthodox Good Friday", + "1980-04-06": "Catholic Easter; Orthodox Easter", + "1980-04-07": "Catholic Easter Monday; Orthodox Easter Monday", + "1980-05-01": "Labor Day", + "1980-05-02": "Labor Day", + "1980-05-09": "Victory Day", + "1980-08-12": "Eid al-Fitr* (*estimated)", + "1980-08-13": "Eid al-Fitr* (*estimated)", + "1980-10-19": "Eid al-Adha* (*estimated)", + "1980-10-20": "Eid al-Adha* (*estimated)", + "1980-11-21": "Dayton Agreement Day", + "1980-11-25": "Statehood Day", + "1980-12-24": "Catholic Christmas Eve", + "1980-12-25": "Catholic Christmas", + "1981-01-01": "New Year's Day", + "1981-01-02": "New Year's Day", + "1981-01-06": "Orthodox Christmas Eve", + "1981-01-07": "Orthodox Christmas", + "1981-01-14": "Orthodox New Year", + "1981-03-01": "Independence Day", + "1981-03-08": "Day of establishment of Br\u010dko District", + "1981-03-09": "Day of establishment of Br\u010dko District (Observed)", + "1981-04-17": "Catholic Good Friday", + "1981-04-19": "Catholic Easter", + "1981-04-20": "Catholic Easter Monday", + "1981-04-24": "Orthodox Good Friday", + "1981-04-26": "Orthodox Easter", + "1981-04-27": "Orthodox Easter Monday", + "1981-05-01": "Labor Day", + "1981-05-02": "Labor Day", + "1981-05-09": "Victory Day", + "1981-08-01": "Eid al-Fitr* (*estimated)", + "1981-08-02": "Eid al-Fitr* (*estimated)", + "1981-10-08": "Eid al-Adha* (*estimated)", + "1981-10-09": "Eid al-Adha* (*estimated)", + "1981-11-21": "Dayton Agreement Day", + "1981-11-25": "Statehood Day", + "1981-12-24": "Catholic Christmas Eve", + "1981-12-25": "Catholic Christmas", + "1982-01-01": "New Year's Day", + "1982-01-02": "New Year's Day", + "1982-01-06": "Orthodox Christmas Eve", + "1982-01-07": "Orthodox Christmas", + "1982-01-14": "Orthodox New Year", + "1982-03-01": "Independence Day", + "1982-03-08": "Day of establishment of Br\u010dko District", + "1982-04-09": "Catholic Good Friday", + "1982-04-11": "Catholic Easter", + "1982-04-12": "Catholic Easter Monday", + "1982-04-16": "Orthodox Good Friday", + "1982-04-18": "Orthodox Easter", + "1982-04-19": "Orthodox Easter Monday", + "1982-05-01": "Labor Day", + "1982-05-02": "Labor Day", + "1982-05-03": "Labor Day (Observed)", + "1982-05-09": "Victory Day", + "1982-07-21": "Eid al-Fitr* (*estimated)", + "1982-07-22": "Eid al-Fitr* (*estimated)", + "1982-09-27": "Eid al-Adha* (*estimated)", + "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-11-21": "Dayton Agreement Day", + "1982-11-25": "Statehood Day", + "1982-12-24": "Catholic Christmas Eve", + "1982-12-25": "Catholic Christmas", + "1983-01-01": "New Year's Day", + "1983-01-02": "New Year's Day", + "1983-01-03": "New Year's Day (Observed)", + "1983-01-06": "Orthodox Christmas Eve", + "1983-01-07": "Orthodox Christmas", + "1983-01-14": "Orthodox New Year", + "1983-03-01": "Independence Day", + "1983-03-08": "Day of establishment of Br\u010dko District", + "1983-04-01": "Catholic Good Friday", + "1983-04-03": "Catholic Easter", + "1983-04-04": "Catholic Easter Monday", + "1983-05-01": "Labor Day", + "1983-05-02": "Labor Day", + "1983-05-03": "Labor Day (Observed)", + "1983-05-06": "Orthodox Good Friday", + "1983-05-08": "Orthodox Easter", + "1983-05-09": "Orthodox Easter Monday; Victory Day", + "1983-07-11": "Eid al-Fitr* (*estimated)", + "1983-07-12": "Eid al-Fitr* (*estimated)", + "1983-09-17": "Eid al-Adha* (*estimated)", + "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-11-21": "Dayton Agreement Day", + "1983-11-25": "Statehood Day", + "1983-12-24": "Catholic Christmas Eve", + "1983-12-25": "Catholic Christmas", + "1983-12-26": "Catholic Christmas (Observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day", + "1984-01-03": "New Year's Day (Observed)", + "1984-01-06": "Orthodox Christmas Eve", + "1984-01-07": "Orthodox Christmas", + "1984-01-14": "Orthodox New Year", + "1984-03-01": "Independence Day", + "1984-03-08": "Day of establishment of Br\u010dko District", + "1984-04-20": "Catholic Good Friday; Orthodox Good Friday", + "1984-04-22": "Catholic Easter; Orthodox Easter", + "1984-04-23": "Catholic Easter Monday; Orthodox Easter Monday", + "1984-05-01": "Labor Day", + "1984-05-02": "Labor Day", + "1984-05-09": "Victory Day", + "1984-06-30": "Eid al-Fitr* (*estimated)", + "1984-07-01": "Eid al-Fitr* (*estimated)", + "1984-09-05": "Eid al-Adha* (*estimated)", + "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-11-21": "Dayton Agreement Day", + "1984-11-25": "Statehood Day", + "1984-12-24": "Catholic Christmas Eve", + "1984-12-25": "Catholic Christmas", + "1985-01-01": "New Year's Day", + "1985-01-02": "New Year's Day", + "1985-01-06": "Orthodox Christmas Eve", + "1985-01-07": "Orthodox Christmas", + "1985-01-14": "Orthodox New Year", + "1985-03-01": "Independence Day", + "1985-03-08": "Day of establishment of Br\u010dko District", + "1985-04-05": "Catholic Good Friday", + "1985-04-07": "Catholic Easter", + "1985-04-08": "Catholic Easter Monday", + "1985-04-12": "Orthodox Good Friday", + "1985-04-14": "Orthodox Easter", + "1985-04-15": "Orthodox Easter Monday", + "1985-05-01": "Labor Day", + "1985-05-02": "Labor Day", + "1985-05-09": "Victory Day", + "1985-06-19": "Eid al-Fitr* (*estimated)", + "1985-06-20": "Eid al-Fitr* (*estimated)", + "1985-08-26": "Eid al-Adha* (*estimated)", + "1985-08-27": "Eid al-Adha* (*estimated)", + "1985-11-21": "Dayton Agreement Day", + "1985-11-25": "Statehood Day", + "1985-12-24": "Catholic Christmas Eve", + "1985-12-25": "Catholic Christmas", + "1986-01-01": "New Year's Day", + "1986-01-02": "New Year's Day", + "1986-01-06": "Orthodox Christmas Eve", + "1986-01-07": "Orthodox Christmas", + "1986-01-14": "Orthodox New Year", + "1986-03-01": "Independence Day", + "1986-03-08": "Day of establishment of Br\u010dko District", + "1986-03-28": "Catholic Good Friday", + "1986-03-30": "Catholic Easter", + "1986-03-31": "Catholic Easter Monday", + "1986-05-01": "Labor Day", + "1986-05-02": "Labor Day; Orthodox Good Friday", + "1986-05-04": "Orthodox Easter", + "1986-05-05": "Orthodox Easter Monday", + "1986-05-09": "Victory Day", + "1986-06-08": "Eid al-Fitr* (*estimated)", + "1986-06-09": "Eid al-Fitr* (*estimated)", + "1986-08-15": "Eid al-Adha* (*estimated)", + "1986-08-16": "Eid al-Adha* (*estimated)", + "1986-11-21": "Dayton Agreement Day", + "1986-11-25": "Statehood Day", + "1986-12-24": "Catholic Christmas Eve", + "1986-12-25": "Catholic Christmas", + "1987-01-01": "New Year's Day", + "1987-01-02": "New Year's Day", + "1987-01-06": "Orthodox Christmas Eve", + "1987-01-07": "Orthodox Christmas", + "1987-01-14": "Orthodox New Year", + "1987-03-01": "Independence Day", + "1987-03-08": "Day of establishment of Br\u010dko District", + "1987-03-09": "Day of establishment of Br\u010dko District (Observed)", + "1987-04-17": "Catholic Good Friday; Orthodox Good Friday", + "1987-04-19": "Catholic Easter; Orthodox Easter", + "1987-04-20": "Catholic Easter Monday; Orthodox Easter Monday", + "1987-05-01": "Labor Day", + "1987-05-02": "Labor Day", + "1987-05-09": "Victory Day", + "1987-05-28": "Eid al-Fitr* (*estimated)", + "1987-05-29": "Eid al-Fitr* (*estimated)", + "1987-08-04": "Eid al-Adha* (*estimated)", + "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-11-21": "Dayton Agreement Day", + "1987-11-25": "Statehood Day", + "1987-12-24": "Catholic Christmas Eve", + "1987-12-25": "Catholic Christmas", + "1988-01-01": "New Year's Day", + "1988-01-02": "New Year's Day", + "1988-01-06": "Orthodox Christmas Eve", + "1988-01-07": "Orthodox Christmas", + "1988-01-14": "Orthodox New Year", + "1988-03-01": "Independence Day", + "1988-03-08": "Day of establishment of Br\u010dko District", + "1988-04-01": "Catholic Good Friday", + "1988-04-03": "Catholic Easter", + "1988-04-04": "Catholic Easter Monday", + "1988-04-08": "Orthodox Good Friday", + "1988-04-10": "Orthodox Easter", + "1988-04-11": "Orthodox Easter Monday", + "1988-05-01": "Labor Day", + "1988-05-02": "Labor Day", + "1988-05-03": "Labor Day (Observed)", + "1988-05-09": "Victory Day", + "1988-05-16": "Eid al-Fitr* (*estimated)", + "1988-05-17": "Eid al-Fitr* (*estimated)", + "1988-07-23": "Eid al-Adha* (*estimated)", + "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-11-21": "Dayton Agreement Day", + "1988-11-25": "Statehood Day", + "1988-12-24": "Catholic Christmas Eve", + "1988-12-25": "Catholic Christmas", + "1988-12-26": "Catholic Christmas (Observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day", + "1989-01-03": "New Year's Day (Observed)", + "1989-01-06": "Orthodox Christmas Eve", + "1989-01-07": "Orthodox Christmas", + "1989-01-14": "Orthodox New Year", + "1989-03-01": "Independence Day", + "1989-03-08": "Day of establishment of Br\u010dko District", + "1989-03-24": "Catholic Good Friday", + "1989-03-26": "Catholic Easter", + "1989-03-27": "Catholic Easter Monday", + "1989-04-28": "Orthodox Good Friday", + "1989-04-30": "Orthodox Easter", + "1989-05-01": "Labor Day; Orthodox Easter Monday", + "1989-05-02": "Labor Day", + "1989-05-06": "Eid al-Fitr* (*estimated)", + "1989-05-07": "Eid al-Fitr* (*estimated)", + "1989-05-09": "Victory Day", + "1989-07-13": "Eid al-Adha* (*estimated)", + "1989-07-14": "Eid al-Adha* (*estimated)", + "1989-11-21": "Dayton Agreement Day", + "1989-11-25": "Statehood Day", + "1989-12-24": "Catholic Christmas Eve", + "1989-12-25": "Catholic Christmas", + "1990-01-01": "New Year's Day", + "1990-01-02": "New Year's Day", + "1990-01-06": "Orthodox Christmas Eve", + "1990-01-07": "Orthodox Christmas", + "1990-01-08": "Orthodox Christmas (Observed)", + "1990-01-14": "Orthodox New Year", + "1990-03-01": "Independence Day", + "1990-03-08": "Day of establishment of Br\u010dko District", + "1990-04-13": "Catholic Good Friday; Orthodox Good Friday", + "1990-04-15": "Catholic Easter; Orthodox Easter", + "1990-04-16": "Catholic Easter Monday; Orthodox Easter Monday", + "1990-04-26": "Eid al-Fitr* (*estimated)", + "1990-04-27": "Eid al-Fitr* (*estimated)", + "1990-05-01": "Labor Day", + "1990-05-02": "Labor Day", + "1990-05-09": "Victory Day", + "1990-07-02": "Eid al-Adha* (*estimated)", + "1990-07-03": "Eid al-Adha* (*estimated)", + "1990-11-21": "Dayton Agreement Day", + "1990-11-25": "Statehood Day", + "1990-12-24": "Catholic Christmas Eve", + "1990-12-25": "Catholic Christmas", + "1991-01-01": "New Year's Day", + "1991-01-02": "New Year's Day", + "1991-01-06": "Orthodox Christmas Eve", + "1991-01-07": "Orthodox Christmas", + "1991-01-14": "Orthodox New Year", + "1991-03-01": "Independence Day", + "1991-03-08": "Day of establishment of Br\u010dko District", + "1991-03-29": "Catholic Good Friday", + "1991-03-31": "Catholic Easter", + "1991-04-01": "Catholic Easter Monday", + "1991-04-05": "Orthodox Good Friday", + "1991-04-07": "Orthodox Easter", + "1991-04-08": "Orthodox Easter Monday", + "1991-04-15": "Eid al-Fitr* (*estimated)", + "1991-04-16": "Eid al-Fitr* (*estimated)", + "1991-05-01": "Labor Day", + "1991-05-02": "Labor Day", + "1991-05-09": "Victory Day", + "1991-06-22": "Eid al-Adha* (*estimated)", + "1991-06-23": "Eid al-Adha* (*estimated)", + "1991-11-21": "Dayton Agreement Day", + "1991-11-25": "Statehood Day", + "1991-12-24": "Catholic Christmas Eve", + "1991-12-25": "Catholic Christmas", + "1992-01-01": "New Year's Day", + "1992-01-02": "New Year's Day", + "1992-01-06": "Orthodox Christmas Eve", + "1992-01-07": "Orthodox Christmas", + "1992-01-14": "Orthodox New Year", + "1992-03-01": "Independence Day", + "1992-03-08": "Day of establishment of Br\u010dko District", + "1992-03-09": "Day of establishment of Br\u010dko District (Observed)", + "1992-04-04": "Eid al-Fitr* (*estimated)", + "1992-04-05": "Eid al-Fitr* (*estimated)", + "1992-04-17": "Catholic Good Friday", + "1992-04-19": "Catholic Easter", + "1992-04-20": "Catholic Easter Monday", + "1992-04-24": "Orthodox Good Friday", + "1992-04-26": "Orthodox Easter", + "1992-04-27": "Orthodox Easter Monday", + "1992-05-01": "Labor Day", + "1992-05-02": "Labor Day", + "1992-05-09": "Victory Day", + "1992-06-11": "Eid al-Adha* (*estimated)", + "1992-06-12": "Eid al-Adha* (*estimated)", + "1992-11-21": "Dayton Agreement Day", + "1992-11-25": "Statehood Day", + "1992-12-24": "Catholic Christmas Eve", + "1992-12-25": "Catholic Christmas", + "1993-01-01": "New Year's Day", + "1993-01-02": "New Year's Day", + "1993-01-06": "Orthodox Christmas Eve", + "1993-01-07": "Orthodox Christmas", + "1993-01-14": "Orthodox New Year", + "1993-03-01": "Independence Day", + "1993-03-08": "Day of establishment of Br\u010dko District", + "1993-03-24": "Eid al-Fitr* (*estimated)", + "1993-03-25": "Eid al-Fitr* (*estimated)", + "1993-04-09": "Catholic Good Friday", + "1993-04-11": "Catholic Easter", + "1993-04-12": "Catholic Easter Monday", + "1993-04-16": "Orthodox Good Friday", + "1993-04-18": "Orthodox Easter", + "1993-04-19": "Orthodox Easter Monday", + "1993-05-01": "Labor Day", + "1993-05-02": "Labor Day", + "1993-05-03": "Labor Day (Observed)", + "1993-05-09": "Victory Day", + "1993-05-31": "Eid al-Adha* (*estimated)", + "1993-06-01": "Eid al-Adha* (*estimated)", + "1993-11-21": "Dayton Agreement Day", + "1993-11-25": "Statehood Day", + "1993-12-24": "Catholic Christmas Eve", + "1993-12-25": "Catholic Christmas", + "1994-01-01": "New Year's Day", + "1994-01-02": "New Year's Day", + "1994-01-03": "New Year's Day (Observed)", + "1994-01-06": "Orthodox Christmas Eve", + "1994-01-07": "Orthodox Christmas", + "1994-01-14": "Orthodox New Year", + "1994-03-01": "Independence Day", + "1994-03-08": "Day of establishment of Br\u010dko District", + "1994-03-13": "Eid al-Fitr* (*estimated)", + "1994-03-14": "Eid al-Fitr* (*estimated)", + "1994-04-01": "Catholic Good Friday", + "1994-04-03": "Catholic Easter", + "1994-04-04": "Catholic Easter Monday", + "1994-04-29": "Orthodox Good Friday", + "1994-05-01": "Labor Day; Orthodox Easter", + "1994-05-02": "Labor Day; Orthodox Easter Monday", + "1994-05-03": "Labor Day (Observed); Orthodox Easter (Observed)", + "1994-05-09": "Victory Day", + "1994-05-20": "Eid al-Adha* (*estimated)", + "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-11-21": "Dayton Agreement Day", + "1994-11-25": "Statehood Day", + "1994-12-24": "Catholic Christmas Eve", + "1994-12-25": "Catholic Christmas", + "1994-12-26": "Catholic Christmas (Observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day", + "1995-01-03": "New Year's Day (Observed)", + "1995-01-06": "Orthodox Christmas Eve", + "1995-01-07": "Orthodox Christmas", + "1995-01-14": "Orthodox New Year", + "1995-03-01": "Independence Day", + "1995-03-02": "Eid al-Fitr* (*estimated)", + "1995-03-03": "Eid al-Fitr* (*estimated)", + "1995-03-08": "Day of establishment of Br\u010dko District", + "1995-04-14": "Catholic Good Friday", + "1995-04-16": "Catholic Easter", + "1995-04-17": "Catholic Easter Monday", + "1995-04-21": "Orthodox Good Friday", + "1995-04-23": "Orthodox Easter", + "1995-04-24": "Orthodox Easter Monday", + "1995-05-01": "Labor Day", + "1995-05-02": "Labor Day", + "1995-05-09": "Eid al-Adha* (*estimated); Victory Day", + "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-11-21": "Dayton Agreement Day", + "1995-11-25": "Statehood Day", + "1995-12-24": "Catholic Christmas Eve", + "1995-12-25": "Catholic Christmas", + "1996-01-01": "New Year's Day", + "1996-01-02": "New Year's Day", + "1996-01-06": "Orthodox Christmas Eve", + "1996-01-07": "Orthodox Christmas", + "1996-01-08": "Orthodox Christmas (Observed)", + "1996-01-14": "Orthodox New Year", + "1996-02-19": "Eid al-Fitr* (*estimated)", + "1996-02-20": "Eid al-Fitr* (*estimated)", + "1996-03-01": "Independence Day", + "1996-03-08": "Day of establishment of Br\u010dko District", + "1996-04-05": "Catholic Good Friday", + "1996-04-07": "Catholic Easter", + "1996-04-08": "Catholic Easter Monday", + "1996-04-12": "Orthodox Good Friday", + "1996-04-14": "Orthodox Easter", + "1996-04-15": "Orthodox Easter Monday", + "1996-04-27": "Eid al-Adha* (*estimated)", + "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-05-01": "Labor Day", + "1996-05-02": "Labor Day", + "1996-05-09": "Victory Day", + "1996-11-21": "Dayton Agreement Day", + "1996-11-25": "Statehood Day", + "1996-12-24": "Catholic Christmas Eve", + "1996-12-25": "Catholic Christmas", + "1997-01-01": "New Year's Day", + "1997-01-02": "New Year's Day", + "1997-01-06": "Orthodox Christmas Eve", + "1997-01-07": "Orthodox Christmas", + "1997-01-14": "Orthodox New Year", + "1997-02-08": "Eid al-Fitr* (*estimated)", + "1997-02-09": "Eid al-Fitr* (*estimated)", + "1997-03-01": "Independence Day", + "1997-03-08": "Day of establishment of Br\u010dko District", + "1997-03-28": "Catholic Good Friday", + "1997-03-30": "Catholic Easter", + "1997-03-31": "Catholic Easter Monday", + "1997-04-17": "Eid al-Adha* (*estimated)", + "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-25": "Orthodox Good Friday", + "1997-04-27": "Orthodox Easter", + "1997-04-28": "Orthodox Easter Monday", + "1997-05-01": "Labor Day", + "1997-05-02": "Labor Day", + "1997-05-09": "Victory Day", + "1997-11-21": "Dayton Agreement Day", + "1997-11-25": "Statehood Day", + "1997-12-24": "Catholic Christmas Eve", + "1997-12-25": "Catholic Christmas", + "1998-01-01": "New Year's Day", + "1998-01-02": "New Year's Day", + "1998-01-06": "Orthodox Christmas Eve", + "1998-01-07": "Orthodox Christmas", + "1998-01-14": "Orthodox New Year", + "1998-01-29": "Eid al-Fitr* (*estimated)", + "1998-01-30": "Eid al-Fitr* (*estimated)", + "1998-03-01": "Independence Day", + "1998-03-08": "Day of establishment of Br\u010dko District", + "1998-03-09": "Day of establishment of Br\u010dko District (Observed)", + "1998-04-07": "Eid al-Adha* (*estimated)", + "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-10": "Catholic Good Friday", + "1998-04-12": "Catholic Easter", + "1998-04-13": "Catholic Easter Monday", + "1998-04-17": "Orthodox Good Friday", + "1998-04-19": "Orthodox Easter", + "1998-04-20": "Orthodox Easter Monday", + "1998-05-01": "Labor Day", + "1998-05-02": "Labor Day", + "1998-05-09": "Victory Day", + "1998-11-21": "Dayton Agreement Day", + "1998-11-25": "Statehood Day", + "1998-12-24": "Catholic Christmas Eve", + "1998-12-25": "Catholic Christmas", + "1999-01-01": "New Year's Day", + "1999-01-02": "New Year's Day", + "1999-01-06": "Orthodox Christmas Eve", + "1999-01-07": "Orthodox Christmas", + "1999-01-14": "Orthodox New Year", + "1999-01-18": "Eid al-Fitr* (*estimated)", + "1999-01-19": "Eid al-Fitr* (*estimated)", + "1999-03-01": "Independence Day", + "1999-03-08": "Day of establishment of Br\u010dko District", + "1999-03-27": "Eid al-Adha* (*estimated)", + "1999-03-28": "Eid al-Adha* (*estimated)", + "1999-04-02": "Catholic Good Friday", + "1999-04-04": "Catholic Easter", + "1999-04-05": "Catholic Easter Monday", + "1999-04-09": "Orthodox Good Friday", + "1999-04-11": "Orthodox Easter", + "1999-04-12": "Orthodox Easter Monday", + "1999-05-01": "Labor Day", + "1999-05-02": "Labor Day", + "1999-05-03": "Labor Day (Observed)", + "1999-05-09": "Victory Day", + "1999-11-21": "Dayton Agreement Day", + "1999-11-25": "Statehood Day", + "1999-12-24": "Catholic Christmas Eve", + "1999-12-25": "Catholic Christmas", + "2000-01-01": "New Year's Day", + "2000-01-02": "New Year's Day", + "2000-01-03": "New Year's Day (Observed)", + "2000-01-06": "Orthodox Christmas Eve", + "2000-01-07": "Orthodox Christmas", + "2000-01-08": "Eid al-Fitr* (*estimated)", + "2000-01-09": "Eid al-Fitr* (*estimated)", + "2000-01-14": "Orthodox New Year", + "2000-03-01": "Independence Day", + "2000-03-08": "Day of establishment of Br\u010dko District", + "2000-03-16": "Eid al-Adha* (*estimated)", + "2000-03-17": "Eid al-Adha* (*estimated)", + "2000-04-21": "Catholic Good Friday", + "2000-04-23": "Catholic Easter", + "2000-04-24": "Catholic Easter Monday", + "2000-04-28": "Orthodox Good Friday", + "2000-04-30": "Orthodox Easter", + "2000-05-01": "Labor Day; Orthodox Easter Monday", + "2000-05-02": "Labor Day", + "2000-05-09": "Victory Day", + "2000-11-21": "Dayton Agreement Day", + "2000-11-25": "Statehood Day", + "2000-12-24": "Catholic Christmas Eve", + "2000-12-25": "Catholic Christmas", + "2000-12-27": "Eid al-Fitr* (*estimated)", + "2000-12-28": "Eid al-Fitr* (*estimated)", + "2001-01-01": "New Year's Day", + "2001-01-02": "New Year's Day", + "2001-01-06": "Orthodox Christmas Eve", + "2001-01-07": "Orthodox Christmas", + "2001-01-08": "Orthodox Christmas (Observed)", + "2001-01-14": "Orthodox New Year", + "2001-03-01": "Independence Day", + "2001-03-06": "Eid al-Adha", + "2001-03-07": "Eid al-Adha", + "2001-03-08": "Day of establishment of Br\u010dko District", + "2001-04-13": "Catholic Good Friday; Orthodox Good Friday", + "2001-04-15": "Catholic Easter; Orthodox Easter", + "2001-04-16": "Catholic Easter Monday; Orthodox Easter Monday", + "2001-05-01": "Labor Day", + "2001-05-02": "Labor Day", + "2001-05-09": "Victory Day", + "2001-11-21": "Dayton Agreement Day", + "2001-11-25": "Statehood Day", + "2001-12-17": "Eid al-Fitr", + "2001-12-18": "Eid al-Fitr", + "2001-12-24": "Catholic Christmas Eve", + "2001-12-25": "Catholic Christmas", + "2002-01-01": "New Year's Day", + "2002-01-02": "New Year's Day", + "2002-01-06": "Orthodox Christmas Eve", + "2002-01-07": "Orthodox Christmas", + "2002-01-14": "Orthodox New Year", + "2002-02-23": "Eid al-Adha", + "2002-02-24": "Eid al-Adha", + "2002-03-01": "Independence Day", + "2002-03-08": "Day of establishment of Br\u010dko District", + "2002-03-29": "Catholic Good Friday", + "2002-03-31": "Catholic Easter", + "2002-04-01": "Catholic Easter Monday", + "2002-05-01": "Labor Day", + "2002-05-02": "Labor Day", + "2002-05-03": "Orthodox Good Friday", + "2002-05-05": "Orthodox Easter", + "2002-05-06": "Orthodox Easter Monday", + "2002-05-09": "Victory Day", + "2002-11-21": "Dayton Agreement Day", + "2002-11-25": "Statehood Day", + "2002-12-06": "Eid al-Fitr", + "2002-12-07": "Eid al-Fitr", + "2002-12-24": "Catholic Christmas Eve", + "2002-12-25": "Catholic Christmas", + "2003-01-01": "New Year's Day", + "2003-01-02": "New Year's Day", + "2003-01-06": "Orthodox Christmas Eve", + "2003-01-07": "Orthodox Christmas", + "2003-01-14": "Orthodox New Year", + "2003-02-12": "Eid al-Adha", + "2003-02-13": "Eid al-Adha", + "2003-03-01": "Independence Day", + "2003-03-08": "Day of establishment of Br\u010dko District", + "2003-04-18": "Catholic Good Friday", + "2003-04-20": "Catholic Easter", + "2003-04-21": "Catholic Easter Monday", + "2003-04-25": "Orthodox Good Friday", + "2003-04-27": "Orthodox Easter", + "2003-04-28": "Orthodox Easter Monday", + "2003-05-01": "Labor Day", + "2003-05-02": "Labor Day", + "2003-05-09": "Victory Day", + "2003-11-21": "Dayton Agreement Day", + "2003-11-25": "Statehood Day", + "2003-11-26": "Eid al-Fitr", + "2003-11-27": "Eid al-Fitr", + "2003-12-24": "Catholic Christmas Eve", + "2003-12-25": "Catholic Christmas", + "2004-01-01": "New Year's Day", + "2004-01-02": "New Year's Day", + "2004-01-06": "Orthodox Christmas Eve", + "2004-01-07": "Orthodox Christmas", + "2004-01-14": "Orthodox New Year", + "2004-02-02": "Eid al-Adha", + "2004-02-03": "Eid al-Adha", + "2004-03-01": "Independence Day", + "2004-03-08": "Day of establishment of Br\u010dko District", + "2004-04-09": "Catholic Good Friday; Orthodox Good Friday", + "2004-04-11": "Catholic Easter; Orthodox Easter", + "2004-04-12": "Catholic Easter Monday; Orthodox Easter Monday", + "2004-05-01": "Labor Day", + "2004-05-02": "Labor Day", + "2004-05-03": "Labor Day (Observed)", + "2004-05-09": "Victory Day", + "2004-11-14": "Eid al-Fitr", + "2004-11-15": "Eid al-Fitr", + "2004-11-21": "Dayton Agreement Day", + "2004-11-25": "Statehood Day", + "2004-12-24": "Catholic Christmas Eve", + "2004-12-25": "Catholic Christmas", + "2005-01-01": "New Year's Day", + "2005-01-02": "New Year's Day", + "2005-01-03": "New Year's Day (Observed)", + "2005-01-06": "Orthodox Christmas Eve", + "2005-01-07": "Orthodox Christmas", + "2005-01-14": "Orthodox New Year", + "2005-01-21": "Eid al-Adha", + "2005-01-22": "Eid al-Adha", + "2005-03-01": "Independence Day", + "2005-03-08": "Day of establishment of Br\u010dko District", + "2005-03-25": "Catholic Good Friday", + "2005-03-27": "Catholic Easter", + "2005-03-28": "Catholic Easter Monday", + "2005-04-29": "Orthodox Good Friday", + "2005-05-01": "Labor Day; Orthodox Easter", + "2005-05-02": "Labor Day; Orthodox Easter Monday", + "2005-05-03": "Labor Day (Observed); Orthodox Easter (Observed)", + "2005-05-09": "Victory Day", + "2005-11-04": "Eid al-Fitr", + "2005-11-05": "Eid al-Fitr", + "2005-11-21": "Dayton Agreement Day", + "2005-11-25": "Statehood Day", + "2005-12-24": "Catholic Christmas Eve", + "2005-12-25": "Catholic Christmas", + "2005-12-26": "Catholic Christmas (Observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day", + "2006-01-03": "New Year's Day (Observed)", + "2006-01-06": "Orthodox Christmas Eve", + "2006-01-07": "Orthodox Christmas", + "2006-01-10": "Eid al-Adha", + "2006-01-11": "Eid al-Adha", + "2006-01-14": "Orthodox New Year", + "2006-03-01": "Independence Day", + "2006-03-08": "Day of establishment of Br\u010dko District", + "2006-04-14": "Catholic Good Friday", + "2006-04-16": "Catholic Easter", + "2006-04-17": "Catholic Easter Monday", + "2006-04-21": "Orthodox Good Friday", + "2006-04-23": "Orthodox Easter", + "2006-04-24": "Orthodox Easter Monday", + "2006-05-01": "Labor Day", + "2006-05-02": "Labor Day", + "2006-05-09": "Victory Day", + "2006-10-24": "Eid al-Fitr", + "2006-10-25": "Eid al-Fitr", + "2006-11-21": "Dayton Agreement Day", + "2006-11-25": "Statehood Day", + "2006-12-24": "Catholic Christmas Eve", + "2006-12-25": "Catholic Christmas", + "2006-12-31": "Eid al-Adha", + "2007-01-01": "Eid al-Adha; New Year's Day", + "2007-01-02": "New Year's Day", + "2007-01-06": "Orthodox Christmas Eve", + "2007-01-07": "Orthodox Christmas", + "2007-01-08": "Orthodox Christmas (Observed)", + "2007-01-14": "Orthodox New Year", + "2007-03-01": "Independence Day", + "2007-03-08": "Day of establishment of Br\u010dko District", + "2007-04-06": "Catholic Good Friday; Orthodox Good Friday", + "2007-04-08": "Catholic Easter; Orthodox Easter", + "2007-04-09": "Catholic Easter Monday; Orthodox Easter Monday", + "2007-05-01": "Labor Day", + "2007-05-02": "Labor Day", + "2007-05-09": "Victory Day", + "2007-10-13": "Eid al-Fitr", + "2007-10-14": "Eid al-Fitr", + "2007-11-21": "Dayton Agreement Day", + "2007-11-25": "Statehood Day", + "2007-12-20": "Eid al-Adha", + "2007-12-21": "Eid al-Adha", + "2007-12-24": "Catholic Christmas Eve", + "2007-12-25": "Catholic Christmas", + "2008-01-01": "New Year's Day", + "2008-01-02": "New Year's Day", + "2008-01-06": "Orthodox Christmas Eve", + "2008-01-07": "Orthodox Christmas", + "2008-01-14": "Orthodox New Year", + "2008-03-01": "Independence Day", + "2008-03-08": "Day of establishment of Br\u010dko District", + "2008-03-21": "Catholic Good Friday", + "2008-03-23": "Catholic Easter", + "2008-03-24": "Catholic Easter Monday", + "2008-04-25": "Orthodox Good Friday", + "2008-04-27": "Orthodox Easter", + "2008-04-28": "Orthodox Easter Monday", + "2008-05-01": "Labor Day", + "2008-05-02": "Labor Day", + "2008-05-09": "Victory Day", + "2008-10-02": "Eid al-Fitr", + "2008-10-03": "Eid al-Fitr", + "2008-11-21": "Dayton Agreement Day", + "2008-11-25": "Statehood Day", + "2008-12-09": "Eid al-Adha", + "2008-12-10": "Eid al-Adha", + "2008-12-24": "Catholic Christmas Eve", + "2008-12-25": "Catholic Christmas", + "2009-01-01": "New Year's Day", + "2009-01-02": "New Year's Day", + "2009-01-06": "Orthodox Christmas Eve", + "2009-01-07": "Orthodox Christmas", + "2009-01-14": "Orthodox New Year", + "2009-03-01": "Independence Day", + "2009-03-08": "Day of establishment of Br\u010dko District", + "2009-03-09": "Day of establishment of Br\u010dko District (Observed)", + "2009-04-10": "Catholic Good Friday", + "2009-04-12": "Catholic Easter", + "2009-04-13": "Catholic Easter Monday", + "2009-04-17": "Orthodox Good Friday", + "2009-04-19": "Orthodox Easter", + "2009-04-20": "Orthodox Easter Monday", + "2009-05-01": "Labor Day", + "2009-05-02": "Labor Day", + "2009-05-09": "Victory Day", + "2009-09-21": "Eid al-Fitr", + "2009-09-22": "Eid al-Fitr", + "2009-11-21": "Dayton Agreement Day", + "2009-11-25": "Statehood Day", + "2009-11-28": "Eid al-Adha", + "2009-11-29": "Eid al-Adha", + "2009-12-24": "Catholic Christmas Eve", + "2009-12-25": "Catholic Christmas", + "2010-01-01": "New Year's Day", + "2010-01-02": "New Year's Day", + "2010-01-06": "Orthodox Christmas Eve", + "2010-01-07": "Orthodox Christmas", + "2010-01-14": "Orthodox New Year", + "2010-03-01": "Independence Day", + "2010-03-08": "Day of establishment of Br\u010dko District", + "2010-04-02": "Catholic Good Friday; Orthodox Good Friday", + "2010-04-04": "Catholic Easter; Orthodox Easter", + "2010-04-05": "Catholic Easter Monday; Orthodox Easter Monday", + "2010-05-01": "Labor Day", + "2010-05-02": "Labor Day", + "2010-05-03": "Labor Day (Observed)", + "2010-05-09": "Victory Day", + "2010-09-10": "Eid al-Fitr", + "2010-09-11": "Eid al-Fitr", + "2010-11-17": "Eid al-Adha", + "2010-11-18": "Eid al-Adha", + "2010-11-21": "Dayton Agreement Day", + "2010-11-25": "Statehood Day", + "2010-12-24": "Catholic Christmas Eve", + "2010-12-25": "Catholic Christmas", + "2011-01-01": "New Year's Day", + "2011-01-02": "New Year's Day", + "2011-01-03": "New Year's Day (Observed)", + "2011-01-06": "Orthodox Christmas Eve", + "2011-01-07": "Orthodox Christmas", + "2011-01-14": "Orthodox New Year", + "2011-03-01": "Independence Day", + "2011-03-08": "Day of establishment of Br\u010dko District", + "2011-04-22": "Catholic Good Friday; Orthodox Good Friday", + "2011-04-24": "Catholic Easter; Orthodox Easter", + "2011-04-25": "Catholic Easter Monday; Orthodox Easter Monday", + "2011-05-01": "Labor Day", + "2011-05-02": "Labor Day", + "2011-05-03": "Labor Day (Observed)", + "2011-05-09": "Victory Day", + "2011-08-31": "Eid al-Fitr", + "2011-09-01": "Eid al-Fitr", + "2011-11-07": "Eid al-Adha", + "2011-11-08": "Eid al-Adha", + "2011-11-21": "Dayton Agreement Day", + "2011-11-25": "Statehood Day", + "2011-12-24": "Catholic Christmas Eve", + "2011-12-25": "Catholic Christmas", + "2011-12-26": "Catholic Christmas (Observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day", + "2012-01-03": "New Year's Day (Observed)", + "2012-01-06": "Orthodox Christmas Eve", + "2012-01-07": "Orthodox Christmas", + "2012-01-14": "Orthodox New Year", + "2012-03-01": "Independence Day", + "2012-03-08": "Day of establishment of Br\u010dko District", + "2012-04-06": "Catholic Good Friday", + "2012-04-08": "Catholic Easter", + "2012-04-09": "Catholic Easter Monday", + "2012-04-13": "Orthodox Good Friday", + "2012-04-15": "Orthodox Easter", + "2012-04-16": "Orthodox Easter Monday", + "2012-05-01": "Labor Day", + "2012-05-02": "Labor Day", + "2012-05-09": "Victory Day", + "2012-08-19": "Eid al-Fitr", + "2012-08-20": "Eid al-Fitr", + "2012-10-26": "Eid al-Adha", + "2012-10-27": "Eid al-Adha", + "2012-11-21": "Dayton Agreement Day", + "2012-11-25": "Statehood Day", + "2012-12-24": "Catholic Christmas Eve", + "2012-12-25": "Catholic Christmas", + "2013-01-01": "New Year's Day", + "2013-01-02": "New Year's Day", + "2013-01-06": "Orthodox Christmas Eve", + "2013-01-07": "Orthodox Christmas", + "2013-01-14": "Orthodox New Year", + "2013-03-01": "Independence Day", + "2013-03-08": "Day of establishment of Br\u010dko District", + "2013-03-29": "Catholic Good Friday", + "2013-03-31": "Catholic Easter", + "2013-04-01": "Catholic Easter Monday", + "2013-05-01": "Labor Day", + "2013-05-02": "Labor Day", + "2013-05-03": "Orthodox Good Friday", + "2013-05-05": "Orthodox Easter", + "2013-05-06": "Orthodox Easter Monday", + "2013-05-09": "Victory Day", + "2013-08-08": "Eid al-Fitr", + "2013-08-09": "Eid al-Fitr", + "2013-10-15": "Eid al-Adha", + "2013-10-16": "Eid al-Adha", + "2013-11-21": "Dayton Agreement Day", + "2013-11-25": "Statehood Day", + "2013-12-24": "Catholic Christmas Eve", + "2013-12-25": "Catholic Christmas", + "2014-01-01": "New Year's Day", + "2014-01-02": "New Year's Day", + "2014-01-06": "Orthodox Christmas Eve", + "2014-01-07": "Orthodox Christmas", + "2014-01-14": "Orthodox New Year", + "2014-03-01": "Independence Day", + "2014-03-08": "Day of establishment of Br\u010dko District", + "2014-04-18": "Catholic Good Friday; Orthodox Good Friday", + "2014-04-20": "Catholic Easter; Orthodox Easter", + "2014-04-21": "Catholic Easter Monday; Orthodox Easter Monday", + "2014-05-01": "Labor Day", + "2014-05-02": "Labor Day", + "2014-05-09": "Victory Day", + "2014-07-28": "Eid al-Fitr", + "2014-07-29": "Eid al-Fitr", + "2014-10-04": "Eid al-Adha", + "2014-10-05": "Eid al-Adha", + "2014-11-21": "Dayton Agreement Day", + "2014-11-25": "Statehood Day", + "2014-12-24": "Catholic Christmas Eve", + "2014-12-25": "Catholic Christmas", + "2015-01-01": "New Year's Day", + "2015-01-02": "New Year's Day", + "2015-01-06": "Orthodox Christmas Eve", + "2015-01-07": "Orthodox Christmas", + "2015-01-14": "Orthodox New Year", + "2015-03-01": "Independence Day", + "2015-03-08": "Day of establishment of Br\u010dko District", + "2015-03-09": "Day of establishment of Br\u010dko District (Observed)", + "2015-04-03": "Catholic Good Friday", + "2015-04-05": "Catholic Easter", + "2015-04-06": "Catholic Easter Monday", + "2015-04-10": "Orthodox Good Friday", + "2015-04-12": "Orthodox Easter", + "2015-04-13": "Orthodox Easter Monday", + "2015-05-01": "Labor Day", + "2015-05-02": "Labor Day", + "2015-05-09": "Victory Day", + "2015-07-18": "Eid al-Fitr", + "2015-07-19": "Eid al-Fitr", + "2015-09-24": "Eid al-Adha", + "2015-09-25": "Eid al-Adha", + "2015-11-21": "Dayton Agreement Day", + "2015-11-25": "Statehood Day", + "2015-12-24": "Catholic Christmas Eve", + "2015-12-25": "Catholic Christmas", + "2016-01-01": "New Year's Day", + "2016-01-02": "New Year's Day", + "2016-01-06": "Orthodox Christmas Eve", + "2016-01-07": "Orthodox Christmas", + "2016-01-14": "Orthodox New Year", + "2016-03-01": "Independence Day", + "2016-03-08": "Day of establishment of Br\u010dko District", + "2016-03-25": "Catholic Good Friday", + "2016-03-27": "Catholic Easter", + "2016-03-28": "Catholic Easter Monday", + "2016-04-29": "Orthodox Good Friday", + "2016-05-01": "Labor Day; Orthodox Easter", + "2016-05-02": "Labor Day; Orthodox Easter Monday", + "2016-05-03": "Labor Day (Observed); Orthodox Easter (Observed)", + "2016-05-09": "Victory Day", + "2016-07-07": "Eid al-Fitr", + "2016-07-08": "Eid al-Fitr", + "2016-09-13": "Eid al-Adha", + "2016-09-14": "Eid al-Adha", + "2016-11-21": "Dayton Agreement Day", + "2016-11-25": "Statehood Day", + "2016-12-24": "Catholic Christmas Eve", + "2016-12-25": "Catholic Christmas", + "2016-12-26": "Catholic Christmas (Observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day", + "2017-01-03": "New Year's Day (Observed)", + "2017-01-06": "Orthodox Christmas Eve", + "2017-01-07": "Orthodox Christmas", + "2017-01-14": "Orthodox New Year", + "2017-03-01": "Independence Day", + "2017-03-08": "Day of establishment of Br\u010dko District", + "2017-04-14": "Catholic Good Friday; Orthodox Good Friday", + "2017-04-16": "Catholic Easter; Orthodox Easter", + "2017-04-17": "Catholic Easter Monday; Orthodox Easter Monday", + "2017-05-01": "Labor Day", + "2017-05-02": "Labor Day", + "2017-05-09": "Victory Day", + "2017-06-26": "Eid al-Fitr", + "2017-06-27": "Eid al-Fitr", + "2017-09-02": "Eid al-Adha", + "2017-09-03": "Eid al-Adha", + "2017-11-21": "Dayton Agreement Day", + "2017-11-25": "Statehood Day", + "2017-12-24": "Catholic Christmas Eve", + "2017-12-25": "Catholic Christmas", + "2018-01-01": "New Year's Day", + "2018-01-02": "New Year's Day", + "2018-01-06": "Orthodox Christmas Eve", + "2018-01-07": "Orthodox Christmas", + "2018-01-08": "Orthodox Christmas (Observed)", + "2018-01-14": "Orthodox New Year", + "2018-03-01": "Independence Day", + "2018-03-08": "Day of establishment of Br\u010dko District", + "2018-03-30": "Catholic Good Friday", + "2018-04-01": "Catholic Easter", + "2018-04-02": "Catholic Easter Monday", + "2018-04-06": "Orthodox Good Friday", + "2018-04-08": "Orthodox Easter", + "2018-04-09": "Orthodox Easter Monday", + "2018-05-01": "Labor Day", + "2018-05-02": "Labor Day", + "2018-05-09": "Victory Day", + "2018-06-15": "Eid al-Fitr", + "2018-06-16": "Eid al-Fitr", + "2018-08-22": "Eid al-Adha", + "2018-08-23": "Eid al-Adha", + "2018-11-21": "Dayton Agreement Day", + "2018-11-25": "Statehood Day", + "2018-12-24": "Catholic Christmas Eve", + "2018-12-25": "Catholic Christmas", + "2019-01-01": "New Year's Day", + "2019-01-02": "New Year's Day", + "2019-01-06": "Orthodox Christmas Eve", + "2019-01-07": "Orthodox Christmas", + "2019-01-14": "Orthodox New Year", + "2019-03-01": "Independence Day", + "2019-03-08": "Day of establishment of Br\u010dko District", + "2019-04-19": "Catholic Good Friday", + "2019-04-21": "Catholic Easter", + "2019-04-22": "Catholic Easter Monday", + "2019-04-26": "Orthodox Good Friday", + "2019-04-28": "Orthodox Easter", + "2019-04-29": "Orthodox Easter Monday", + "2019-05-01": "Labor Day", + "2019-05-02": "Labor Day", + "2019-05-09": "Victory Day", + "2019-06-04": "Eid al-Fitr", + "2019-06-05": "Eid al-Fitr", + "2019-08-11": "Eid al-Adha", + "2019-08-12": "Eid al-Adha", + "2019-11-21": "Dayton Agreement Day", + "2019-11-25": "Statehood Day", + "2019-12-24": "Catholic Christmas Eve", + "2019-12-25": "Catholic Christmas", + "2020-01-01": "New Year's Day", + "2020-01-02": "New Year's Day", + "2020-01-06": "Orthodox Christmas Eve", + "2020-01-07": "Orthodox Christmas", + "2020-01-14": "Orthodox New Year", + "2020-03-01": "Independence Day", + "2020-03-08": "Day of establishment of Br\u010dko District", + "2020-03-09": "Day of establishment of Br\u010dko District (Observed)", + "2020-04-10": "Catholic Good Friday", + "2020-04-12": "Catholic Easter", + "2020-04-13": "Catholic Easter Monday", + "2020-04-17": "Orthodox Good Friday", + "2020-04-19": "Orthodox Easter", + "2020-04-20": "Orthodox Easter Monday", + "2020-05-01": "Labor Day", + "2020-05-02": "Labor Day", + "2020-05-09": "Victory Day", + "2020-05-24": "Eid al-Fitr", + "2020-05-25": "Eid al-Fitr", + "2020-07-31": "Eid al-Adha", + "2020-08-01": "Eid al-Adha", + "2020-11-21": "Dayton Agreement Day", + "2020-11-25": "Statehood Day", + "2020-12-24": "Catholic Christmas Eve", + "2020-12-25": "Catholic Christmas", + "2021-01-01": "New Year's Day", + "2021-01-02": "New Year's Day", + "2021-01-06": "Orthodox Christmas Eve", + "2021-01-07": "Orthodox Christmas", + "2021-01-14": "Orthodox New Year", + "2021-03-01": "Independence Day", + "2021-03-08": "Day of establishment of Br\u010dko District", + "2021-04-02": "Catholic Good Friday", + "2021-04-04": "Catholic Easter", + "2021-04-05": "Catholic Easter Monday", + "2021-04-30": "Orthodox Good Friday", + "2021-05-01": "Labor Day", + "2021-05-02": "Labor Day; Orthodox Easter", + "2021-05-03": "Labor Day (Observed); Orthodox Easter Monday", + "2021-05-09": "Victory Day", + "2021-05-13": "Eid al-Fitr", + "2021-05-14": "Eid al-Fitr", + "2021-07-20": "Eid al-Adha", + "2021-07-21": "Eid al-Adha", + "2021-11-21": "Dayton Agreement Day", + "2021-11-25": "Statehood Day", + "2021-12-24": "Catholic Christmas Eve", + "2021-12-25": "Catholic Christmas", + "2022-01-01": "New Year's Day", + "2022-01-02": "New Year's Day", + "2022-01-03": "New Year's Day (Observed)", + "2022-01-06": "Orthodox Christmas Eve", + "2022-01-07": "Orthodox Christmas", + "2022-01-14": "Orthodox New Year", + "2022-03-01": "Independence Day", + "2022-03-08": "Day of establishment of Br\u010dko District", + "2022-04-15": "Catholic Good Friday", + "2022-04-17": "Catholic Easter", + "2022-04-18": "Catholic Easter Monday", + "2022-04-22": "Orthodox Good Friday", + "2022-04-24": "Orthodox Easter", + "2022-04-25": "Orthodox Easter Monday", + "2022-05-01": "Labor Day", + "2022-05-02": "Eid al-Fitr; Labor Day", + "2022-05-03": "Eid al-Fitr; Labor Day (Observed)", + "2022-05-09": "Victory Day", + "2022-07-09": "Eid al-Adha", + "2022-07-10": "Eid al-Adha", + "2022-11-21": "Dayton Agreement Day", + "2022-11-25": "Statehood Day", + "2022-12-24": "Catholic Christmas Eve", + "2022-12-25": "Catholic Christmas", + "2022-12-26": "Catholic Christmas (Observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day", + "2023-01-03": "New Year's Day (Observed)", + "2023-01-06": "Orthodox Christmas Eve", + "2023-01-07": "Orthodox Christmas", + "2023-01-14": "Orthodox New Year", + "2023-03-01": "Independence Day", + "2023-03-08": "Day of establishment of Br\u010dko District", + "2023-04-07": "Catholic Good Friday", + "2023-04-09": "Catholic Easter", + "2023-04-10": "Catholic Easter Monday", + "2023-04-14": "Orthodox Good Friday", + "2023-04-16": "Orthodox Easter", + "2023-04-17": "Orthodox Easter Monday", + "2023-04-21": "Eid al-Fitr", + "2023-04-22": "Eid al-Fitr", + "2023-05-01": "Labor Day", + "2023-05-02": "Labor Day", + "2023-05-09": "Victory Day", + "2023-06-28": "Eid al-Adha", + "2023-06-29": "Eid al-Adha", + "2023-11-21": "Dayton Agreement Day", + "2023-11-25": "Statehood Day", + "2023-12-24": "Catholic Christmas Eve", + "2023-12-25": "Catholic Christmas", + "2024-01-01": "New Year's Day", + "2024-01-02": "New Year's Day", + "2024-01-06": "Orthodox Christmas Eve", + "2024-01-07": "Orthodox Christmas", + "2024-01-08": "Orthodox Christmas (Observed)", + "2024-01-14": "Orthodox New Year", + "2024-03-01": "Independence Day", + "2024-03-08": "Day of establishment of Br\u010dko District", + "2024-03-29": "Catholic Good Friday", + "2024-03-31": "Catholic Easter", + "2024-04-01": "Catholic Easter Monday", + "2024-04-10": "Eid al-Fitr* (*estimated)", + "2024-04-11": "Eid al-Fitr* (*estimated)", + "2024-05-01": "Labor Day", + "2024-05-02": "Labor Day", + "2024-05-03": "Orthodox Good Friday", + "2024-05-05": "Orthodox Easter", + "2024-05-06": "Orthodox Easter Monday", + "2024-05-09": "Victory Day", + "2024-06-16": "Eid al-Adha* (*estimated)", + "2024-06-17": "Eid al-Adha* (*estimated)", + "2024-11-21": "Dayton Agreement Day", + "2024-11-25": "Statehood Day", + "2024-12-24": "Catholic Christmas Eve", + "2024-12-25": "Catholic Christmas", + "2025-01-01": "New Year's Day", + "2025-01-02": "New Year's Day", + "2025-01-06": "Orthodox Christmas Eve", + "2025-01-07": "Orthodox Christmas", + "2025-01-14": "Orthodox New Year", + "2025-03-01": "Independence Day", + "2025-03-08": "Day of establishment of Br\u010dko District", + "2025-03-30": "Eid al-Fitr* (*estimated)", + "2025-03-31": "Eid al-Fitr* (*estimated)", + "2025-04-18": "Catholic Good Friday; Orthodox Good Friday", + "2025-04-20": "Catholic Easter; Orthodox Easter", + "2025-04-21": "Catholic Easter Monday; Orthodox Easter Monday", + "2025-05-01": "Labor Day", + "2025-05-02": "Labor Day", + "2025-05-09": "Victory Day", + "2025-06-06": "Eid al-Adha* (*estimated)", + "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-11-21": "Dayton Agreement Day", + "2025-11-25": "Statehood Day", + "2025-12-24": "Catholic Christmas Eve", + "2025-12-25": "Catholic Christmas", + "2026-01-01": "New Year's Day", + "2026-01-02": "New Year's Day", + "2026-01-06": "Orthodox Christmas Eve", + "2026-01-07": "Orthodox Christmas", + "2026-01-14": "Orthodox New Year", + "2026-03-01": "Independence Day", + "2026-03-08": "Day of establishment of Br\u010dko District", + "2026-03-09": "Day of establishment of Br\u010dko District (Observed)", + "2026-03-20": "Eid al-Fitr* (*estimated)", + "2026-03-21": "Eid al-Fitr* (*estimated)", + "2026-04-03": "Catholic Good Friday", + "2026-04-05": "Catholic Easter", + "2026-04-06": "Catholic Easter Monday", + "2026-04-10": "Orthodox Good Friday", + "2026-04-12": "Orthodox Easter", + "2026-04-13": "Orthodox Easter Monday", + "2026-05-01": "Labor Day", + "2026-05-02": "Labor Day", + "2026-05-09": "Victory Day", + "2026-05-27": "Eid al-Adha* (*estimated)", + "2026-05-28": "Eid al-Adha* (*estimated)", + "2026-11-21": "Dayton Agreement Day", + "2026-11-25": "Statehood Day", + "2026-12-24": "Catholic Christmas Eve", + "2026-12-25": "Catholic Christmas", + "2027-01-01": "New Year's Day", + "2027-01-02": "New Year's Day", + "2027-01-06": "Orthodox Christmas Eve", + "2027-01-07": "Orthodox Christmas", + "2027-01-14": "Orthodox New Year", + "2027-03-01": "Independence Day", + "2027-03-08": "Day of establishment of Br\u010dko District", + "2027-03-09": "Eid al-Fitr* (*estimated)", + "2027-03-10": "Eid al-Fitr* (*estimated)", + "2027-03-26": "Catholic Good Friday", + "2027-03-28": "Catholic Easter", + "2027-03-29": "Catholic Easter Monday", + "2027-04-30": "Orthodox Good Friday", + "2027-05-01": "Labor Day", + "2027-05-02": "Labor Day; Orthodox Easter", + "2027-05-03": "Labor Day (Observed); Orthodox Easter Monday", + "2027-05-09": "Victory Day", + "2027-05-16": "Eid al-Adha* (*estimated)", + "2027-05-17": "Eid al-Adha* (*estimated)", + "2027-11-21": "Dayton Agreement Day", + "2027-11-25": "Statehood Day", + "2027-12-24": "Catholic Christmas Eve", + "2027-12-25": "Catholic Christmas", + "2028-01-01": "New Year's Day", + "2028-01-02": "New Year's Day", + "2028-01-03": "New Year's Day (Observed)", + "2028-01-06": "Orthodox Christmas Eve", + "2028-01-07": "Orthodox Christmas", + "2028-01-14": "Orthodox New Year", + "2028-02-26": "Eid al-Fitr* (*estimated)", + "2028-02-27": "Eid al-Fitr* (*estimated)", + "2028-03-01": "Independence Day", + "2028-03-08": "Day of establishment of Br\u010dko District", + "2028-04-14": "Catholic Good Friday; Orthodox Good Friday", + "2028-04-16": "Catholic Easter; Orthodox Easter", + "2028-04-17": "Catholic Easter Monday; Orthodox Easter Monday", + "2028-05-01": "Labor Day", + "2028-05-02": "Labor Day", + "2028-05-05": "Eid al-Adha* (*estimated)", + "2028-05-06": "Eid al-Adha* (*estimated)", + "2028-05-09": "Victory Day", + "2028-11-21": "Dayton Agreement Day", + "2028-11-25": "Statehood Day", + "2028-12-24": "Catholic Christmas Eve", + "2028-12-25": "Catholic Christmas", + "2029-01-01": "New Year's Day", + "2029-01-02": "New Year's Day", + "2029-01-06": "Orthodox Christmas Eve", + "2029-01-07": "Orthodox Christmas", + "2029-01-08": "Orthodox Christmas (Observed)", + "2029-01-14": "Orthodox New Year", + "2029-02-14": "Eid al-Fitr* (*estimated)", + "2029-02-15": "Eid al-Fitr* (*estimated)", + "2029-03-01": "Independence Day", + "2029-03-08": "Day of establishment of Br\u010dko District", + "2029-03-30": "Catholic Good Friday", + "2029-04-01": "Catholic Easter", + "2029-04-02": "Catholic Easter Monday", + "2029-04-06": "Orthodox Good Friday", + "2029-04-08": "Orthodox Easter", + "2029-04-09": "Orthodox Easter Monday", + "2029-04-24": "Eid al-Adha* (*estimated)", + "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-05-01": "Labor Day", + "2029-05-02": "Labor Day", + "2029-05-09": "Victory Day", + "2029-11-21": "Dayton Agreement Day", + "2029-11-25": "Statehood Day", + "2029-12-24": "Catholic Christmas Eve", + "2029-12-25": "Catholic Christmas", + "2030-01-01": "New Year's Day", + "2030-01-02": "New Year's Day", + "2030-01-06": "Orthodox Christmas Eve", + "2030-01-07": "Orthodox Christmas", + "2030-01-14": "Orthodox New Year", + "2030-02-04": "Eid al-Fitr* (*estimated)", + "2030-02-05": "Eid al-Fitr* (*estimated)", + "2030-03-01": "Independence Day", + "2030-03-08": "Day of establishment of Br\u010dko District", + "2030-04-13": "Eid al-Adha* (*estimated)", + "2030-04-14": "Eid al-Adha* (*estimated)", + "2030-04-19": "Catholic Good Friday", + "2030-04-21": "Catholic Easter", + "2030-04-22": "Catholic Easter Monday", + "2030-04-26": "Orthodox Good Friday", + "2030-04-28": "Orthodox Easter", + "2030-04-29": "Orthodox Easter Monday", + "2030-05-01": "Labor Day", + "2030-05-02": "Labor Day", + "2030-05-09": "Victory Day", + "2030-11-21": "Dayton Agreement Day", + "2030-11-25": "Statehood Day", + "2030-12-24": "Catholic Christmas Eve", + "2030-12-25": "Catholic Christmas", + "2031-01-01": "New Year's Day", + "2031-01-02": "New Year's Day", + "2031-01-06": "Orthodox Christmas Eve", + "2031-01-07": "Orthodox Christmas", + "2031-01-14": "Orthodox New Year", + "2031-01-24": "Eid al-Fitr* (*estimated)", + "2031-01-25": "Eid al-Fitr* (*estimated)", + "2031-03-01": "Independence Day", + "2031-03-08": "Day of establishment of Br\u010dko District", + "2031-04-02": "Eid al-Adha* (*estimated)", + "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-11": "Catholic Good Friday; Orthodox Good Friday", + "2031-04-13": "Catholic Easter; Orthodox Easter", + "2031-04-14": "Catholic Easter Monday; Orthodox Easter Monday", + "2031-05-01": "Labor Day", + "2031-05-02": "Labor Day", + "2031-05-09": "Victory Day", + "2031-11-21": "Dayton Agreement Day", + "2031-11-25": "Statehood Day", + "2031-12-24": "Catholic Christmas Eve", + "2031-12-25": "Catholic Christmas", + "2032-01-01": "New Year's Day", + "2032-01-02": "New Year's Day", + "2032-01-06": "Orthodox Christmas Eve", + "2032-01-07": "Orthodox Christmas", + "2032-01-14": "Eid al-Fitr* (*estimated); Orthodox New Year", + "2032-01-15": "Eid al-Fitr* (*estimated)", + "2032-03-01": "Independence Day", + "2032-03-08": "Day of establishment of Br\u010dko District", + "2032-03-22": "Eid al-Adha* (*estimated)", + "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-26": "Catholic Good Friday", + "2032-03-28": "Catholic Easter", + "2032-03-29": "Catholic Easter Monday", + "2032-04-30": "Orthodox Good Friday", + "2032-05-01": "Labor Day", + "2032-05-02": "Labor Day; Orthodox Easter", + "2032-05-03": "Labor Day (Observed); Orthodox Easter Monday", + "2032-05-09": "Victory Day", + "2032-11-21": "Dayton Agreement Day", + "2032-11-25": "Statehood Day", + "2032-12-24": "Catholic Christmas Eve", + "2032-12-25": "Catholic Christmas", + "2033-01-01": "New Year's Day", + "2033-01-02": "Eid al-Fitr* (*estimated); New Year's Day", + "2033-01-03": "Eid al-Fitr* (*estimated); New Year's Day (Observed)", + "2033-01-06": "Orthodox Christmas Eve", + "2033-01-07": "Orthodox Christmas", + "2033-01-14": "Orthodox New Year", + "2033-03-01": "Independence Day", + "2033-03-08": "Day of establishment of Br\u010dko District", + "2033-03-11": "Eid al-Adha* (*estimated)", + "2033-03-12": "Eid al-Adha* (*estimated)", + "2033-04-15": "Catholic Good Friday", + "2033-04-17": "Catholic Easter", + "2033-04-18": "Catholic Easter Monday", + "2033-04-22": "Orthodox Good Friday", + "2033-04-24": "Orthodox Easter", + "2033-04-25": "Orthodox Easter Monday", + "2033-05-01": "Labor Day", + "2033-05-02": "Labor Day", + "2033-05-03": "Labor Day (Observed)", + "2033-05-09": "Victory Day", + "2033-11-21": "Dayton Agreement Day", + "2033-11-25": "Statehood Day", + "2033-12-23": "Eid al-Fitr* (*estimated)", + "2033-12-24": "Catholic Christmas Eve; Eid al-Fitr* (*estimated)", + "2033-12-25": "Catholic Christmas", + "2033-12-26": "Catholic Christmas (Observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day", + "2034-01-03": "New Year's Day (Observed)", + "2034-01-06": "Orthodox Christmas Eve", + "2034-01-07": "Orthodox Christmas", + "2034-01-14": "Orthodox New Year", + "2034-03-01": "Eid al-Adha* (*estimated); Independence Day", + "2034-03-02": "Eid al-Adha* (*estimated)", + "2034-03-08": "Day of establishment of Br\u010dko District", + "2034-04-07": "Catholic Good Friday; Orthodox Good Friday", + "2034-04-09": "Catholic Easter; Orthodox Easter", + "2034-04-10": "Catholic Easter Monday; Orthodox Easter Monday", + "2034-05-01": "Labor Day", + "2034-05-02": "Labor Day", + "2034-05-09": "Victory Day", + "2034-11-21": "Dayton Agreement Day", + "2034-11-25": "Statehood Day", + "2034-12-12": "Eid al-Fitr* (*estimated)", + "2034-12-13": "Eid al-Fitr* (*estimated)", + "2034-12-24": "Catholic Christmas Eve", + "2034-12-25": "Catholic Christmas", + "2035-01-01": "New Year's Day", + "2035-01-02": "New Year's Day", + "2035-01-06": "Orthodox Christmas Eve", + "2035-01-07": "Orthodox Christmas", + "2035-01-08": "Orthodox Christmas (Observed)", + "2035-01-14": "Orthodox New Year", + "2035-02-18": "Eid al-Adha* (*estimated)", + "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-03-01": "Independence Day", + "2035-03-08": "Day of establishment of Br\u010dko District", + "2035-03-23": "Catholic Good Friday", + "2035-03-25": "Catholic Easter", + "2035-03-26": "Catholic Easter Monday", + "2035-04-27": "Orthodox Good Friday", + "2035-04-29": "Orthodox Easter", + "2035-04-30": "Orthodox Easter Monday", + "2035-05-01": "Labor Day", + "2035-05-02": "Labor Day", + "2035-05-09": "Victory Day", + "2035-11-21": "Dayton Agreement Day", + "2035-11-25": "Statehood Day", + "2035-12-01": "Eid al-Fitr* (*estimated)", + "2035-12-02": "Eid al-Fitr* (*estimated)", + "2035-12-24": "Catholic Christmas Eve", + "2035-12-25": "Catholic Christmas", + "2036-01-01": "New Year's Day", + "2036-01-02": "New Year's Day", + "2036-01-06": "Orthodox Christmas Eve", + "2036-01-07": "Orthodox Christmas", + "2036-01-14": "Orthodox New Year", + "2036-02-07": "Eid al-Adha* (*estimated)", + "2036-02-08": "Eid al-Adha* (*estimated)", + "2036-03-01": "Independence Day", + "2036-03-08": "Day of establishment of Br\u010dko District", + "2036-04-11": "Catholic Good Friday", + "2036-04-13": "Catholic Easter", + "2036-04-14": "Catholic Easter Monday", + "2036-04-18": "Orthodox Good Friday", + "2036-04-20": "Orthodox Easter", + "2036-04-21": "Orthodox Easter Monday", + "2036-05-01": "Labor Day", + "2036-05-02": "Labor Day", + "2036-05-09": "Victory Day", + "2036-11-19": "Eid al-Fitr* (*estimated)", + "2036-11-20": "Eid al-Fitr* (*estimated)", + "2036-11-21": "Dayton Agreement Day", + "2036-11-25": "Statehood Day", + "2036-12-24": "Catholic Christmas Eve", + "2036-12-25": "Catholic Christmas", + "2037-01-01": "New Year's Day", + "2037-01-02": "New Year's Day", + "2037-01-06": "Orthodox Christmas Eve", + "2037-01-07": "Orthodox Christmas", + "2037-01-14": "Orthodox New Year", + "2037-01-26": "Eid al-Adha* (*estimated)", + "2037-01-27": "Eid al-Adha* (*estimated)", + "2037-03-01": "Independence Day", + "2037-03-08": "Day of establishment of Br\u010dko District", + "2037-03-09": "Day of establishment of Br\u010dko District (Observed)", + "2037-04-03": "Catholic Good Friday; Orthodox Good Friday", + "2037-04-05": "Catholic Easter; Orthodox Easter", + "2037-04-06": "Catholic Easter Monday; Orthodox Easter Monday", + "2037-05-01": "Labor Day", + "2037-05-02": "Labor Day", + "2037-05-09": "Victory Day", + "2037-11-08": "Eid al-Fitr* (*estimated)", + "2037-11-09": "Eid al-Fitr* (*estimated)", + "2037-11-21": "Dayton Agreement Day", + "2037-11-25": "Statehood Day", + "2037-12-24": "Catholic Christmas Eve", + "2037-12-25": "Catholic Christmas", + "2038-01-01": "New Year's Day", + "2038-01-02": "New Year's Day", + "2038-01-06": "Orthodox Christmas Eve", + "2038-01-07": "Orthodox Christmas", + "2038-01-14": "Orthodox New Year", + "2038-01-16": "Eid al-Adha* (*estimated)", + "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-03-01": "Independence Day", + "2038-03-08": "Day of establishment of Br\u010dko District", + "2038-04-23": "Catholic Good Friday; Orthodox Good Friday", + "2038-04-25": "Catholic Easter; Orthodox Easter", + "2038-04-26": "Catholic Easter Monday; Orthodox Easter Monday", + "2038-05-01": "Labor Day", + "2038-05-02": "Labor Day", + "2038-05-03": "Labor Day (Observed)", + "2038-05-09": "Victory Day", + "2038-10-29": "Eid al-Fitr* (*estimated)", + "2038-10-30": "Eid al-Fitr* (*estimated)", + "2038-11-21": "Dayton Agreement Day", + "2038-11-25": "Statehood Day", + "2038-12-24": "Catholic Christmas Eve", + "2038-12-25": "Catholic Christmas", + "2039-01-01": "New Year's Day", + "2039-01-02": "New Year's Day", + "2039-01-03": "New Year's Day (Observed)", + "2039-01-05": "Eid al-Adha* (*estimated)", + "2039-01-06": "Eid al-Adha* (*estimated); Orthodox Christmas Eve", + "2039-01-07": "Orthodox Christmas", + "2039-01-14": "Orthodox New Year", + "2039-03-01": "Independence Day", + "2039-03-08": "Day of establishment of Br\u010dko District", + "2039-04-08": "Catholic Good Friday", + "2039-04-10": "Catholic Easter", + "2039-04-11": "Catholic Easter Monday", + "2039-04-15": "Orthodox Good Friday", + "2039-04-17": "Orthodox Easter", + "2039-04-18": "Orthodox Easter Monday", + "2039-05-01": "Labor Day", + "2039-05-02": "Labor Day", + "2039-05-03": "Labor Day (Observed)", + "2039-05-09": "Victory Day", + "2039-10-19": "Eid al-Fitr* (*estimated)", + "2039-10-20": "Eid al-Fitr* (*estimated)", + "2039-11-21": "Dayton Agreement Day", + "2039-11-25": "Statehood Day", + "2039-12-24": "Catholic Christmas Eve", + "2039-12-25": "Catholic Christmas", + "2039-12-26": "Catholic Christmas (Observed); Eid al-Adha* (*estimated)", + "2039-12-27": "Eid al-Adha* (*estimated)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day", + "2040-01-03": "New Year's Day (Observed)", + "2040-01-06": "Orthodox Christmas Eve", + "2040-01-07": "Orthodox Christmas", + "2040-01-14": "Orthodox New Year", + "2040-03-01": "Independence Day", + "2040-03-08": "Day of establishment of Br\u010dko District", + "2040-03-30": "Catholic Good Friday", + "2040-04-01": "Catholic Easter", + "2040-04-02": "Catholic Easter Monday", + "2040-05-01": "Labor Day", + "2040-05-02": "Labor Day", + "2040-05-04": "Orthodox Good Friday", + "2040-05-06": "Orthodox Easter", + "2040-05-07": "Orthodox Easter Monday", + "2040-05-09": "Victory Day", + "2040-10-07": "Eid al-Fitr* (*estimated)", + "2040-10-08": "Eid al-Fitr* (*estimated)", + "2040-11-21": "Dayton Agreement Day", + "2040-11-25": "Statehood Day", + "2040-12-14": "Eid al-Adha* (*estimated)", + "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-12-24": "Catholic Christmas Eve", + "2040-12-25": "Catholic Christmas", + "2041-01-01": "New Year's Day", + "2041-01-02": "New Year's Day", + "2041-01-06": "Orthodox Christmas Eve", + "2041-01-07": "Orthodox Christmas", + "2041-01-14": "Orthodox New Year", + "2041-03-01": "Independence Day", + "2041-03-08": "Day of establishment of Br\u010dko District", + "2041-04-19": "Catholic Good Friday; Orthodox Good Friday", + "2041-04-21": "Catholic Easter; Orthodox Easter", + "2041-04-22": "Catholic Easter Monday; Orthodox Easter Monday", + "2041-05-01": "Labor Day", + "2041-05-02": "Labor Day", + "2041-05-09": "Victory Day", + "2041-09-26": "Eid al-Fitr* (*estimated)", + "2041-09-27": "Eid al-Fitr* (*estimated)", + "2041-11-21": "Dayton Agreement Day", + "2041-11-25": "Statehood Day", + "2041-12-04": "Eid al-Adha* (*estimated)", + "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-24": "Catholic Christmas Eve", + "2041-12-25": "Catholic Christmas", + "2042-01-01": "New Year's Day", + "2042-01-02": "New Year's Day", + "2042-01-06": "Orthodox Christmas Eve", + "2042-01-07": "Orthodox Christmas", + "2042-01-14": "Orthodox New Year", + "2042-03-01": "Independence Day", + "2042-03-08": "Day of establishment of Br\u010dko District", + "2042-04-04": "Catholic Good Friday", + "2042-04-06": "Catholic Easter", + "2042-04-07": "Catholic Easter Monday", + "2042-04-11": "Orthodox Good Friday", + "2042-04-13": "Orthodox Easter", + "2042-04-14": "Orthodox Easter Monday", + "2042-05-01": "Labor Day", + "2042-05-02": "Labor Day", + "2042-05-09": "Victory Day", + "2042-09-15": "Eid al-Fitr* (*estimated)", + "2042-09-16": "Eid al-Fitr* (*estimated)", + "2042-11-21": "Dayton Agreement Day", + "2042-11-23": "Eid al-Adha* (*estimated)", + "2042-11-24": "Eid al-Adha* (*estimated)", + "2042-11-25": "Statehood Day", + "2042-12-24": "Catholic Christmas Eve", + "2042-12-25": "Catholic Christmas", + "2043-01-01": "New Year's Day", + "2043-01-02": "New Year's Day", + "2043-01-06": "Orthodox Christmas Eve", + "2043-01-07": "Orthodox Christmas", + "2043-01-14": "Orthodox New Year", + "2043-03-01": "Independence Day", + "2043-03-08": "Day of establishment of Br\u010dko District", + "2043-03-09": "Day of establishment of Br\u010dko District (Observed)", + "2043-03-27": "Catholic Good Friday", + "2043-03-29": "Catholic Easter", + "2043-03-30": "Catholic Easter Monday", + "2043-05-01": "Labor Day; Orthodox Good Friday", + "2043-05-02": "Labor Day", + "2043-05-03": "Orthodox Easter", + "2043-05-04": "Orthodox Easter Monday", + "2043-05-09": "Victory Day", + "2043-09-04": "Eid al-Fitr* (*estimated)", + "2043-09-05": "Eid al-Fitr* (*estimated)", + "2043-11-12": "Eid al-Adha* (*estimated)", + "2043-11-13": "Eid al-Adha* (*estimated)", + "2043-11-21": "Dayton Agreement Day", + "2043-11-25": "Statehood Day", + "2043-12-24": "Catholic Christmas Eve", + "2043-12-25": "Catholic Christmas", + "2044-01-01": "New Year's Day", + "2044-01-02": "New Year's Day", + "2044-01-06": "Orthodox Christmas Eve", + "2044-01-07": "Orthodox Christmas", + "2044-01-14": "Orthodox New Year", + "2044-03-01": "Independence Day", + "2044-03-08": "Day of establishment of Br\u010dko District", + "2044-04-15": "Catholic Good Friday", + "2044-04-17": "Catholic Easter", + "2044-04-18": "Catholic Easter Monday", + "2044-04-22": "Orthodox Good Friday", + "2044-04-24": "Orthodox Easter", + "2044-04-25": "Orthodox Easter Monday", + "2044-05-01": "Labor Day", + "2044-05-02": "Labor Day", + "2044-05-03": "Labor Day (Observed)", + "2044-05-09": "Victory Day", + "2044-08-24": "Eid al-Fitr* (*estimated)", + "2044-08-25": "Eid al-Fitr* (*estimated)", + "2044-10-31": "Eid al-Adha* (*estimated)", + "2044-11-01": "Eid al-Adha* (*estimated)", + "2044-11-21": "Dayton Agreement Day", + "2044-11-25": "Statehood Day", + "2044-12-24": "Catholic Christmas Eve", + "2044-12-25": "Catholic Christmas", + "2044-12-26": "Catholic Christmas (Observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day", + "2045-01-03": "New Year's Day (Observed)", + "2045-01-06": "Orthodox Christmas Eve", + "2045-01-07": "Orthodox Christmas", + "2045-01-14": "Orthodox New Year", + "2045-03-01": "Independence Day", + "2045-03-08": "Day of establishment of Br\u010dko District", + "2045-04-07": "Catholic Good Friday; Orthodox Good Friday", + "2045-04-09": "Catholic Easter; Orthodox Easter", + "2045-04-10": "Catholic Easter Monday; Orthodox Easter Monday", + "2045-05-01": "Labor Day", + "2045-05-02": "Labor Day", + "2045-05-09": "Victory Day", + "2045-08-14": "Eid al-Fitr* (*estimated)", + "2045-08-15": "Eid al-Fitr* (*estimated)", + "2045-10-21": "Eid al-Adha* (*estimated)", + "2045-10-22": "Eid al-Adha* (*estimated)", + "2045-11-21": "Dayton Agreement Day", + "2045-11-25": "Statehood Day", + "2045-12-24": "Catholic Christmas Eve", + "2045-12-25": "Catholic Christmas", + "2046-01-01": "New Year's Day", + "2046-01-02": "New Year's Day", + "2046-01-06": "Orthodox Christmas Eve", + "2046-01-07": "Orthodox Christmas", + "2046-01-08": "Orthodox Christmas (Observed)", + "2046-01-14": "Orthodox New Year", + "2046-03-01": "Independence Day", + "2046-03-08": "Day of establishment of Br\u010dko District", + "2046-03-23": "Catholic Good Friday", + "2046-03-25": "Catholic Easter", + "2046-03-26": "Catholic Easter Monday", + "2046-04-27": "Orthodox Good Friday", + "2046-04-29": "Orthodox Easter", + "2046-04-30": "Orthodox Easter Monday", + "2046-05-01": "Labor Day", + "2046-05-02": "Labor Day", + "2046-05-09": "Victory Day", + "2046-08-03": "Eid al-Fitr* (*estimated)", + "2046-08-04": "Eid al-Fitr* (*estimated)", + "2046-10-10": "Eid al-Adha* (*estimated)", + "2046-10-11": "Eid al-Adha* (*estimated)", + "2046-11-21": "Dayton Agreement Day", + "2046-11-25": "Statehood Day", + "2046-12-24": "Catholic Christmas Eve", + "2046-12-25": "Catholic Christmas", + "2047-01-01": "New Year's Day", + "2047-01-02": "New Year's Day", + "2047-01-06": "Orthodox Christmas Eve", + "2047-01-07": "Orthodox Christmas", + "2047-01-14": "Orthodox New Year", + "2047-03-01": "Independence Day", + "2047-03-08": "Day of establishment of Br\u010dko District", + "2047-04-12": "Catholic Good Friday", + "2047-04-14": "Catholic Easter", + "2047-04-15": "Catholic Easter Monday", + "2047-04-19": "Orthodox Good Friday", + "2047-04-21": "Orthodox Easter", + "2047-04-22": "Orthodox Easter Monday", + "2047-05-01": "Labor Day", + "2047-05-02": "Labor Day", + "2047-05-09": "Victory Day", + "2047-07-24": "Eid al-Fitr* (*estimated)", + "2047-07-25": "Eid al-Fitr* (*estimated)", + "2047-09-30": "Eid al-Adha* (*estimated)", + "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-11-21": "Dayton Agreement Day", + "2047-11-25": "Statehood Day", + "2047-12-24": "Catholic Christmas Eve", + "2047-12-25": "Catholic Christmas", + "2048-01-01": "New Year's Day", + "2048-01-02": "New Year's Day", + "2048-01-06": "Orthodox Christmas Eve", + "2048-01-07": "Orthodox Christmas", + "2048-01-14": "Orthodox New Year", + "2048-03-01": "Independence Day", + "2048-03-08": "Day of establishment of Br\u010dko District", + "2048-03-09": "Day of establishment of Br\u010dko District (Observed)", + "2048-04-03": "Catholic Good Friday; Orthodox Good Friday", + "2048-04-05": "Catholic Easter; Orthodox Easter", + "2048-04-06": "Catholic Easter Monday; Orthodox Easter Monday", + "2048-05-01": "Labor Day", + "2048-05-02": "Labor Day", + "2048-05-09": "Victory Day", + "2048-07-12": "Eid al-Fitr* (*estimated)", + "2048-07-13": "Eid al-Fitr* (*estimated)", + "2048-09-19": "Eid al-Adha* (*estimated)", + "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-11-21": "Dayton Agreement Day", + "2048-11-25": "Statehood Day", + "2048-12-24": "Catholic Christmas Eve", + "2048-12-25": "Catholic Christmas", + "2049-01-01": "New Year's Day", + "2049-01-02": "New Year's Day", + "2049-01-06": "Orthodox Christmas Eve", + "2049-01-07": "Orthodox Christmas", + "2049-01-14": "Orthodox New Year", + "2049-03-01": "Independence Day", + "2049-03-08": "Day of establishment of Br\u010dko District", + "2049-04-16": "Catholic Good Friday", + "2049-04-18": "Catholic Easter", + "2049-04-19": "Catholic Easter Monday", + "2049-04-23": "Orthodox Good Friday", + "2049-04-25": "Orthodox Easter", + "2049-04-26": "Orthodox Easter Monday", + "2049-05-01": "Labor Day", + "2049-05-02": "Labor Day", + "2049-05-03": "Labor Day (Observed)", + "2049-05-09": "Victory Day", + "2049-07-01": "Eid al-Fitr* (*estimated)", + "2049-07-02": "Eid al-Fitr* (*estimated)", + "2049-09-08": "Eid al-Adha* (*estimated)", + "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-11-21": "Dayton Agreement Day", + "2049-11-25": "Statehood Day", + "2049-12-24": "Catholic Christmas Eve", + "2049-12-25": "Catholic Christmas", + "2050-01-01": "New Year's Day", + "2050-01-02": "New Year's Day", + "2050-01-03": "New Year's Day (Observed)", + "2050-01-06": "Orthodox Christmas Eve", + "2050-01-07": "Orthodox Christmas", + "2050-01-14": "Orthodox New Year", + "2050-03-01": "Independence Day", + "2050-03-08": "Day of establishment of Br\u010dko District", + "2050-04-08": "Catholic Good Friday", + "2050-04-10": "Catholic Easter", + "2050-04-11": "Catholic Easter Monday", + "2050-04-15": "Orthodox Good Friday", + "2050-04-17": "Orthodox Easter", + "2050-04-18": "Orthodox Easter Monday", + "2050-05-01": "Labor Day", + "2050-05-02": "Labor Day", + "2050-05-03": "Labor Day (Observed)", + "2050-05-09": "Victory Day", + "2050-06-20": "Eid al-Fitr* (*estimated)", + "2050-06-21": "Eid al-Fitr* (*estimated)", + "2050-08-28": "Eid al-Adha* (*estimated)", + "2050-08-29": "Eid al-Adha* (*estimated)", + "2050-11-21": "Dayton Agreement Day", + "2050-11-25": "Statehood Day", + "2050-12-24": "Catholic Christmas Eve", + "2050-12-25": "Catholic Christmas", + "2050-12-26": "Catholic Christmas (Observed)" +} diff --git a/snapshots/countries/BB.json b/snapshots/countries/BB.json new file mode 100644 index 000000000..f792da551 --- /dev/null +++ b/snapshots/countries/BB.json @@ -0,0 +1,1027 @@ +{ + "1969-01-01": "New Year's Day", + "1969-04-04": "Good Friday", + "1969-04-07": "Easter Monday", + "1969-05-01": "May Day", + "1969-05-26": "Whit Monday", + "1969-08-01": "Emancipation Day", + "1969-08-04": "Kadooment Day", + "1969-11-30": "Independence Day", + "1969-12-01": "Independence Day (Observed)", + "1969-12-25": "Christmas Day", + "1969-12-26": "Boxing Day", + "1970-01-01": "New Year's Day", + "1970-03-27": "Good Friday", + "1970-03-30": "Easter Monday", + "1970-05-01": "May Day", + "1970-05-18": "Whit Monday", + "1970-08-01": "Emancipation Day", + "1970-08-03": "Kadooment Day", + "1970-11-30": "Independence Day", + "1970-12-25": "Christmas Day", + "1970-12-26": "Boxing Day", + "1971-01-01": "New Year's Day", + "1971-04-09": "Good Friday", + "1971-04-12": "Easter Monday", + "1971-05-01": "May Day", + "1971-05-31": "Whit Monday", + "1971-08-01": "Emancipation Day", + "1971-08-02": "Kadooment Day", + "1971-08-03": "Emancipation Day (Observed)", + "1971-11-30": "Independence Day", + "1971-12-25": "Christmas Day", + "1971-12-26": "Boxing Day", + "1971-12-27": "Boxing Day (Observed)", + "1972-01-01": "New Year's Day", + "1972-03-31": "Good Friday", + "1972-04-03": "Easter Monday", + "1972-05-01": "May Day", + "1972-05-22": "Whit Monday", + "1972-08-01": "Emancipation Day", + "1972-08-07": "Kadooment Day", + "1972-11-30": "Independence Day", + "1972-12-25": "Christmas Day", + "1972-12-26": "Boxing Day", + "1973-01-01": "New Year's Day", + "1973-04-20": "Good Friday", + "1973-04-23": "Easter Monday", + "1973-05-01": "May Day", + "1973-06-11": "Whit Monday", + "1973-08-01": "Emancipation Day", + "1973-08-06": "Kadooment Day", + "1973-11-30": "Independence Day", + "1973-12-25": "Christmas Day", + "1973-12-26": "Boxing Day", + "1974-01-01": "New Year's Day", + "1974-04-12": "Good Friday", + "1974-04-15": "Easter Monday", + "1974-05-01": "May Day", + "1974-06-03": "Whit Monday", + "1974-08-01": "Emancipation Day", + "1974-08-05": "Kadooment Day", + "1974-11-30": "Independence Day", + "1974-12-25": "Christmas Day", + "1974-12-26": "Boxing Day", + "1975-01-01": "New Year's Day", + "1975-03-28": "Good Friday", + "1975-03-31": "Easter Monday", + "1975-05-01": "May Day", + "1975-05-19": "Whit Monday", + "1975-08-01": "Emancipation Day", + "1975-08-04": "Kadooment Day", + "1975-11-30": "Independence Day", + "1975-12-01": "Independence Day (Observed)", + "1975-12-25": "Christmas Day", + "1975-12-26": "Boxing Day", + "1976-01-01": "New Year's Day", + "1976-04-16": "Good Friday", + "1976-04-19": "Easter Monday", + "1976-05-01": "May Day", + "1976-06-07": "Whit Monday", + "1976-08-01": "Emancipation Day", + "1976-08-02": "Kadooment Day", + "1976-08-03": "Emancipation Day (Observed)", + "1976-11-30": "Independence Day", + "1976-12-25": "Christmas Day", + "1976-12-26": "Boxing Day", + "1976-12-27": "Boxing Day (Observed)", + "1977-01-01": "New Year's Day", + "1977-04-08": "Good Friday", + "1977-04-11": "Easter Monday", + "1977-05-01": "May Day", + "1977-05-02": "May Day (Observed)", + "1977-05-30": "Whit Monday", + "1977-08-01": "Emancipation Day; Kadooment Day", + "1977-08-02": "Emancipation Day (Observed)", + "1977-11-30": "Independence Day", + "1977-12-25": "Christmas Day", + "1977-12-26": "Boxing Day", + "1977-12-27": "Christmas Day (Observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day (Observed)", + "1978-03-24": "Good Friday", + "1978-03-27": "Easter Monday", + "1978-05-01": "May Day", + "1978-05-15": "Whit Monday", + "1978-08-01": "Emancipation Day", + "1978-08-07": "Kadooment Day", + "1978-11-30": "Independence Day", + "1978-12-25": "Christmas Day", + "1978-12-26": "Boxing Day", + "1979-01-01": "New Year's Day", + "1979-04-13": "Good Friday", + "1979-04-16": "Easter Monday", + "1979-05-01": "May Day", + "1979-06-04": "Whit Monday", + "1979-08-01": "Emancipation Day", + "1979-08-06": "Kadooment Day", + "1979-11-30": "Independence Day", + "1979-12-25": "Christmas Day", + "1979-12-26": "Boxing Day", + "1980-01-01": "New Year's Day", + "1980-04-04": "Good Friday", + "1980-04-07": "Easter Monday", + "1980-05-01": "May Day", + "1980-05-26": "Whit Monday", + "1980-08-01": "Emancipation Day", + "1980-08-04": "Kadooment Day", + "1980-11-30": "Independence Day", + "1980-12-01": "Independence Day (Observed)", + "1980-12-25": "Christmas Day", + "1980-12-26": "Boxing Day", + "1981-01-01": "New Year's Day", + "1981-04-17": "Good Friday", + "1981-04-20": "Easter Monday", + "1981-05-01": "May Day", + "1981-06-08": "Whit Monday", + "1981-08-01": "Emancipation Day", + "1981-08-03": "Kadooment Day", + "1981-11-30": "Independence Day", + "1981-12-25": "Christmas Day", + "1981-12-26": "Boxing Day", + "1982-01-01": "New Year's Day", + "1982-04-09": "Good Friday", + "1982-04-12": "Easter Monday", + "1982-05-01": "May Day", + "1982-05-31": "Whit Monday", + "1982-08-01": "Emancipation Day", + "1982-08-02": "Kadooment Day", + "1982-08-03": "Emancipation Day (Observed)", + "1982-11-30": "Independence Day", + "1982-12-25": "Christmas Day", + "1982-12-26": "Boxing Day", + "1982-12-27": "Boxing Day (Observed)", + "1983-01-01": "New Year's Day", + "1983-04-01": "Good Friday", + "1983-04-04": "Easter Monday", + "1983-05-01": "May Day", + "1983-05-02": "May Day (Observed)", + "1983-05-23": "Whit Monday", + "1983-08-01": "Emancipation Day; Kadooment Day", + "1983-08-02": "Emancipation Day (Observed)", + "1983-11-30": "Independence Day", + "1983-12-25": "Christmas Day", + "1983-12-26": "Boxing Day", + "1983-12-27": "Christmas Day (Observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (Observed)", + "1984-04-20": "Good Friday", + "1984-04-23": "Easter Monday", + "1984-05-01": "May Day", + "1984-06-11": "Whit Monday", + "1984-08-01": "Emancipation Day", + "1984-08-06": "Kadooment Day", + "1984-11-30": "Independence Day", + "1984-12-25": "Christmas Day", + "1984-12-26": "Boxing Day", + "1985-01-01": "New Year's Day", + "1985-04-05": "Good Friday", + "1985-04-08": "Easter Monday", + "1985-05-01": "May Day", + "1985-05-27": "Whit Monday", + "1985-08-01": "Emancipation Day", + "1985-08-05": "Kadooment Day", + "1985-11-30": "Independence Day", + "1985-12-25": "Christmas Day", + "1985-12-26": "Boxing Day", + "1986-01-01": "New Year's Day", + "1986-03-28": "Good Friday", + "1986-03-31": "Easter Monday", + "1986-05-01": "May Day", + "1986-05-19": "Whit Monday", + "1986-08-01": "Emancipation Day", + "1986-08-04": "Kadooment Day", + "1986-11-30": "Independence Day", + "1986-12-01": "Independence Day (Observed)", + "1986-12-25": "Christmas Day", + "1986-12-26": "Boxing Day", + "1987-01-01": "New Year's Day", + "1987-04-17": "Good Friday", + "1987-04-20": "Easter Monday", + "1987-05-01": "May Day", + "1987-06-08": "Whit Monday", + "1987-08-01": "Emancipation Day", + "1987-08-03": "Kadooment Day", + "1987-11-30": "Independence Day", + "1987-12-25": "Christmas Day", + "1987-12-26": "Boxing Day", + "1988-01-01": "New Year's Day", + "1988-04-01": "Good Friday", + "1988-04-04": "Easter Monday", + "1988-05-01": "May Day", + "1988-05-02": "May Day (Observed)", + "1988-05-23": "Whit Monday", + "1988-08-01": "Emancipation Day; Kadooment Day", + "1988-08-02": "Emancipation Day (Observed)", + "1988-11-30": "Independence Day", + "1988-12-25": "Christmas Day", + "1988-12-26": "Boxing Day", + "1988-12-27": "Christmas Day (Observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (Observed)", + "1989-01-21": "Errol Barrow Day", + "1989-03-24": "Good Friday", + "1989-03-27": "Easter Monday", + "1989-05-01": "May Day", + "1989-05-15": "Whit Monday", + "1989-08-01": "Emancipation Day", + "1989-08-07": "Kadooment Day", + "1989-11-30": "Independence Day", + "1989-12-25": "Christmas Day", + "1989-12-26": "Boxing Day", + "1990-01-01": "New Year's Day", + "1990-01-21": "Errol Barrow Day", + "1990-01-22": "Errol Barrow Day (Observed)", + "1990-04-13": "Good Friday", + "1990-04-16": "Easter Monday", + "1990-05-01": "May Day", + "1990-06-04": "Whit Monday", + "1990-08-01": "Emancipation Day", + "1990-08-06": "Kadooment Day", + "1990-11-30": "Independence Day", + "1990-12-25": "Christmas Day", + "1990-12-26": "Boxing Day", + "1991-01-01": "New Year's Day", + "1991-01-21": "Errol Barrow Day", + "1991-03-29": "Good Friday", + "1991-04-01": "Easter Monday", + "1991-05-01": "May Day", + "1991-05-20": "Whit Monday", + "1991-08-01": "Emancipation Day", + "1991-08-05": "Kadooment Day", + "1991-11-30": "Independence Day", + "1991-12-25": "Christmas Day", + "1991-12-26": "Boxing Day", + "1992-01-01": "New Year's Day", + "1992-01-21": "Errol Barrow Day", + "1992-04-17": "Good Friday", + "1992-04-20": "Easter Monday", + "1992-05-01": "May Day", + "1992-06-08": "Whit Monday", + "1992-08-01": "Emancipation Day", + "1992-08-03": "Kadooment Day", + "1992-11-30": "Independence Day", + "1992-12-25": "Christmas Day", + "1992-12-26": "Boxing Day", + "1993-01-01": "New Year's Day", + "1993-01-21": "Errol Barrow Day", + "1993-04-09": "Good Friday", + "1993-04-12": "Easter Monday", + "1993-05-01": "May Day", + "1993-05-31": "Whit Monday", + "1993-08-01": "Emancipation Day", + "1993-08-02": "Kadooment Day", + "1993-08-03": "Emancipation Day (Observed)", + "1993-11-30": "Independence Day", + "1993-12-25": "Christmas Day", + "1993-12-26": "Boxing Day", + "1993-12-27": "Boxing Day (Observed)", + "1994-01-01": "New Year's Day", + "1994-01-21": "Errol Barrow Day", + "1994-04-01": "Good Friday", + "1994-04-04": "Easter Monday", + "1994-05-01": "May Day", + "1994-05-02": "May Day (Observed)", + "1994-05-23": "Whit Monday", + "1994-08-01": "Emancipation Day; Kadooment Day", + "1994-08-02": "Emancipation Day (Observed)", + "1994-11-30": "Independence Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Boxing Day", + "1994-12-27": "Christmas Day (Observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (Observed)", + "1995-01-21": "Errol Barrow Day", + "1995-04-14": "Good Friday", + "1995-04-17": "Easter Monday", + "1995-05-01": "May Day", + "1995-06-05": "Whit Monday", + "1995-08-01": "Emancipation Day", + "1995-08-07": "Kadooment Day", + "1995-11-30": "Independence Day", + "1995-12-25": "Christmas Day", + "1995-12-26": "Boxing Day", + "1996-01-01": "New Year's Day", + "1996-01-21": "Errol Barrow Day", + "1996-01-22": "Errol Barrow Day (Observed)", + "1996-04-05": "Good Friday", + "1996-04-08": "Easter Monday", + "1996-05-01": "May Day", + "1996-05-27": "Whit Monday", + "1996-08-01": "Emancipation Day", + "1996-08-05": "Kadooment Day", + "1996-11-30": "Independence Day", + "1996-12-25": "Christmas Day", + "1996-12-26": "Boxing Day", + "1997-01-01": "New Year's Day", + "1997-01-21": "Errol Barrow Day", + "1997-03-28": "Good Friday", + "1997-03-31": "Easter Monday", + "1997-05-01": "May Day", + "1997-05-19": "Whit Monday", + "1997-08-01": "Emancipation Day", + "1997-08-04": "Kadooment Day", + "1997-11-30": "Independence Day", + "1997-12-01": "Independence Day (Observed)", + "1997-12-25": "Christmas Day", + "1997-12-26": "Boxing Day", + "1998-01-01": "New Year's Day", + "1998-01-21": "Errol Barrow Day", + "1998-04-10": "Good Friday", + "1998-04-13": "Easter Monday", + "1998-04-28": "National Heroes Day", + "1998-05-01": "May Day", + "1998-06-01": "Whit Monday", + "1998-08-01": "Emancipation Day", + "1998-08-03": "Kadooment Day", + "1998-11-30": "Independence Day", + "1998-12-25": "Christmas Day", + "1998-12-26": "Boxing Day", + "1999-01-01": "New Year's Day", + "1999-01-21": "Errol Barrow Day", + "1999-04-02": "Good Friday", + "1999-04-05": "Easter Monday", + "1999-04-28": "National Heroes Day", + "1999-05-01": "May Day", + "1999-05-24": "Whit Monday", + "1999-08-01": "Emancipation Day", + "1999-08-02": "Kadooment Day", + "1999-08-03": "Emancipation Day (Observed)", + "1999-11-30": "Independence Day", + "1999-12-25": "Christmas Day", + "1999-12-26": "Boxing Day", + "1999-12-27": "Boxing Day (Observed)", + "2000-01-01": "New Year's Day", + "2000-01-21": "Errol Barrow Day", + "2000-04-21": "Good Friday", + "2000-04-24": "Easter Monday", + "2000-04-28": "National Heroes Day", + "2000-05-01": "May Day", + "2000-06-12": "Whit Monday", + "2000-08-01": "Emancipation Day", + "2000-08-07": "Kadooment Day", + "2000-11-30": "Independence Day", + "2000-12-25": "Christmas Day", + "2000-12-26": "Boxing Day", + "2001-01-01": "New Year's Day", + "2001-01-21": "Errol Barrow Day", + "2001-01-22": "Errol Barrow Day (Observed)", + "2001-04-13": "Good Friday", + "2001-04-16": "Easter Monday", + "2001-04-28": "National Heroes Day", + "2001-05-01": "May Day", + "2001-06-04": "Whit Monday", + "2001-08-01": "Emancipation Day", + "2001-08-06": "Kadooment Day", + "2001-11-30": "Independence Day", + "2001-12-25": "Christmas Day", + "2001-12-26": "Boxing Day", + "2002-01-01": "New Year's Day", + "2002-01-21": "Errol Barrow Day", + "2002-03-29": "Good Friday", + "2002-04-01": "Easter Monday", + "2002-04-28": "National Heroes Day", + "2002-04-29": "National Heroes Day (Observed)", + "2002-05-01": "May Day", + "2002-05-20": "Whit Monday", + "2002-08-01": "Emancipation Day", + "2002-08-05": "Kadooment Day", + "2002-11-30": "Independence Day", + "2002-12-25": "Christmas Day", + "2002-12-26": "Boxing Day", + "2003-01-01": "New Year's Day", + "2003-01-21": "Errol Barrow Day", + "2003-04-18": "Good Friday", + "2003-04-21": "Easter Monday", + "2003-04-28": "National Heroes Day", + "2003-05-01": "May Day", + "2003-06-09": "Whit Monday", + "2003-08-01": "Emancipation Day", + "2003-08-04": "Kadooment Day", + "2003-11-30": "Independence Day", + "2003-12-01": "Independence Day (Observed)", + "2003-12-25": "Christmas Day", + "2003-12-26": "Boxing Day", + "2004-01-01": "New Year's Day", + "2004-01-21": "Errol Barrow Day", + "2004-04-09": "Good Friday", + "2004-04-12": "Easter Monday", + "2004-04-28": "National Heroes Day", + "2004-05-01": "May Day", + "2004-05-31": "Whit Monday", + "2004-08-01": "Emancipation Day", + "2004-08-02": "Kadooment Day", + "2004-08-03": "Emancipation Day (Observed)", + "2004-11-30": "Independence Day", + "2004-12-25": "Christmas Day", + "2004-12-26": "Boxing Day", + "2004-12-27": "Boxing Day (Observed)", + "2005-01-01": "New Year's Day", + "2005-01-21": "Errol Barrow Day", + "2005-03-25": "Good Friday", + "2005-03-28": "Easter Monday", + "2005-04-28": "National Heroes Day", + "2005-05-01": "May Day", + "2005-05-02": "May Day (Observed)", + "2005-05-16": "Whit Monday", + "2005-08-01": "Emancipation Day; Kadooment Day", + "2005-08-02": "Emancipation Day (Observed)", + "2005-11-30": "Independence Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "Boxing Day", + "2005-12-27": "Christmas Day (Observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (Observed)", + "2006-01-21": "Errol Barrow Day", + "2006-04-14": "Good Friday", + "2006-04-17": "Easter Monday", + "2006-04-28": "National Heroes Day", + "2006-05-01": "May Day", + "2006-06-05": "Whit Monday", + "2006-08-01": "Emancipation Day", + "2006-08-07": "Kadooment Day", + "2006-11-30": "Independence Day", + "2006-12-25": "Christmas Day", + "2006-12-26": "Boxing Day", + "2007-01-01": "New Year's Day", + "2007-01-21": "Errol Barrow Day", + "2007-01-22": "Errol Barrow Day (Observed)", + "2007-04-06": "Good Friday", + "2007-04-09": "Easter Monday", + "2007-04-28": "National Heroes Day", + "2007-05-01": "May Day", + "2007-05-28": "Whit Monday", + "2007-08-01": "Emancipation Day", + "2007-08-06": "Kadooment Day", + "2007-11-30": "Independence Day", + "2007-12-25": "Christmas Day", + "2007-12-26": "Boxing Day", + "2008-01-01": "New Year's Day", + "2008-01-21": "Errol Barrow Day", + "2008-03-21": "Good Friday", + "2008-03-24": "Easter Monday", + "2008-04-28": "National Heroes Day", + "2008-05-01": "May Day", + "2008-05-12": "Whit Monday", + "2008-08-01": "Emancipation Day", + "2008-08-04": "Kadooment Day", + "2008-11-30": "Independence Day", + "2008-12-01": "Independence Day (Observed)", + "2008-12-25": "Christmas Day", + "2008-12-26": "Boxing Day", + "2009-01-01": "New Year's Day", + "2009-01-21": "Errol Barrow Day", + "2009-04-10": "Good Friday", + "2009-04-13": "Easter Monday", + "2009-04-28": "National Heroes Day", + "2009-05-01": "May Day", + "2009-06-01": "Whit Monday", + "2009-08-01": "Emancipation Day", + "2009-08-03": "Kadooment Day", + "2009-11-30": "Independence Day", + "2009-12-25": "Christmas Day", + "2009-12-26": "Boxing Day", + "2010-01-01": "New Year's Day", + "2010-01-21": "Errol Barrow Day", + "2010-04-02": "Good Friday", + "2010-04-05": "Easter Monday", + "2010-04-28": "National Heroes Day", + "2010-05-01": "May Day", + "2010-05-24": "Whit Monday", + "2010-08-01": "Emancipation Day", + "2010-08-02": "Kadooment Day", + "2010-08-03": "Emancipation Day (Observed)", + "2010-11-30": "Independence Day", + "2010-12-25": "Christmas Day", + "2010-12-26": "Boxing Day", + "2010-12-27": "Boxing Day (Observed)", + "2011-01-01": "New Year's Day", + "2011-01-21": "Errol Barrow Day", + "2011-04-22": "Good Friday", + "2011-04-25": "Easter Monday", + "2011-04-28": "National Heroes Day", + "2011-05-01": "May Day", + "2011-05-02": "May Day (Observed)", + "2011-06-13": "Whit Monday", + "2011-08-01": "Emancipation Day; Kadooment Day", + "2011-08-02": "Emancipation Day (Observed)", + "2011-11-30": "Independence Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "Boxing Day", + "2011-12-27": "Christmas Day (Observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (Observed)", + "2012-01-21": "Errol Barrow Day", + "2012-04-06": "Good Friday", + "2012-04-09": "Easter Monday", + "2012-04-28": "National Heroes Day", + "2012-05-01": "May Day", + "2012-05-28": "Whit Monday", + "2012-08-01": "Emancipation Day", + "2012-08-06": "Kadooment Day", + "2012-11-30": "Independence Day", + "2012-12-25": "Christmas Day", + "2012-12-26": "Boxing Day", + "2013-01-01": "New Year's Day", + "2013-01-21": "Errol Barrow Day", + "2013-03-29": "Good Friday", + "2013-04-01": "Easter Monday", + "2013-04-28": "National Heroes Day", + "2013-04-29": "National Heroes Day (Observed)", + "2013-05-01": "May Day", + "2013-05-20": "Whit Monday", + "2013-08-01": "Emancipation Day", + "2013-08-05": "Kadooment Day", + "2013-11-30": "Independence Day", + "2013-12-25": "Christmas Day", + "2013-12-26": "Boxing Day", + "2014-01-01": "New Year's Day", + "2014-01-21": "Errol Barrow Day", + "2014-04-18": "Good Friday", + "2014-04-21": "Easter Monday", + "2014-04-28": "National Heroes Day", + "2014-05-01": "May Day", + "2014-06-09": "Whit Monday", + "2014-08-01": "Emancipation Day", + "2014-08-04": "Kadooment Day", + "2014-11-30": "Independence Day", + "2014-12-01": "Independence Day (Observed)", + "2014-12-25": "Christmas Day", + "2014-12-26": "Boxing Day", + "2015-01-01": "New Year's Day", + "2015-01-21": "Errol Barrow Day", + "2015-04-03": "Good Friday", + "2015-04-06": "Easter Monday", + "2015-04-28": "National Heroes Day", + "2015-05-01": "May Day", + "2015-05-25": "Whit Monday", + "2015-08-01": "Emancipation Day", + "2015-08-03": "Kadooment Day", + "2015-11-30": "Independence Day", + "2015-12-25": "Christmas Day", + "2015-12-26": "Boxing Day", + "2016-01-01": "New Year's Day", + "2016-01-21": "Errol Barrow Day", + "2016-03-25": "Good Friday", + "2016-03-28": "Easter Monday", + "2016-04-28": "National Heroes Day", + "2016-05-01": "May Day", + "2016-05-02": "May Day (Observed)", + "2016-05-16": "Whit Monday", + "2016-08-01": "Emancipation Day; Kadooment Day", + "2016-08-02": "Emancipation Day (Observed)", + "2016-11-30": "Independence Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "Boxing Day", + "2016-12-27": "Christmas Day (Observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (Observed)", + "2017-01-21": "Errol Barrow Day", + "2017-04-14": "Good Friday", + "2017-04-17": "Easter Monday", + "2017-04-28": "National Heroes Day", + "2017-05-01": "May Day", + "2017-06-05": "Whit Monday", + "2017-08-01": "Emancipation Day", + "2017-08-07": "Kadooment Day", + "2017-11-30": "Independence Day", + "2017-12-25": "Christmas Day", + "2017-12-26": "Boxing Day", + "2018-01-01": "New Year's Day", + "2018-01-21": "Errol Barrow Day", + "2018-01-22": "Errol Barrow Day (Observed)", + "2018-03-30": "Good Friday", + "2018-04-02": "Easter Monday", + "2018-04-28": "National Heroes Day", + "2018-05-01": "May Day", + "2018-05-21": "Whit Monday", + "2018-08-01": "Emancipation Day", + "2018-08-06": "Kadooment Day", + "2018-11-30": "Independence Day", + "2018-12-25": "Christmas Day", + "2018-12-26": "Boxing Day", + "2019-01-01": "New Year's Day", + "2019-01-21": "Errol Barrow Day", + "2019-04-19": "Good Friday", + "2019-04-22": "Easter Monday", + "2019-04-28": "National Heroes Day", + "2019-04-29": "National Heroes Day (Observed)", + "2019-05-01": "May Day", + "2019-06-10": "Whit Monday", + "2019-08-01": "Emancipation Day", + "2019-08-05": "Kadooment Day", + "2019-11-30": "Independence Day", + "2019-12-25": "Christmas Day", + "2019-12-26": "Boxing Day", + "2020-01-01": "New Year's Day", + "2020-01-21": "Errol Barrow Day", + "2020-04-10": "Good Friday", + "2020-04-13": "Easter Monday", + "2020-04-28": "National Heroes Day", + "2020-05-01": "May Day", + "2020-06-01": "Whit Monday", + "2020-08-01": "Emancipation Day", + "2020-08-03": "Kadooment Day", + "2020-11-30": "Independence Day", + "2020-12-25": "Christmas Day", + "2020-12-26": "Boxing Day", + "2021-01-01": "New Year's Day", + "2021-01-04": "Public Holiday", + "2021-01-05": "Public Holiday", + "2021-01-21": "Errol Barrow Day", + "2021-04-02": "Good Friday", + "2021-04-05": "Easter Monday", + "2021-04-28": "National Heroes Day", + "2021-05-01": "May Day", + "2021-05-24": "Whit Monday", + "2021-08-01": "Emancipation Day", + "2021-08-02": "Kadooment Day", + "2021-08-03": "Emancipation Day (Observed)", + "2021-11-30": "Independence Day", + "2021-12-25": "Christmas Day", + "2021-12-26": "Boxing Day", + "2021-12-27": "Boxing Day (Observed)", + "2022-01-01": "New Year's Day", + "2022-01-21": "Errol Barrow Day", + "2022-04-15": "Good Friday", + "2022-04-18": "Easter Monday", + "2022-04-28": "National Heroes Day", + "2022-05-01": "May Day", + "2022-05-02": "May Day (Observed)", + "2022-06-06": "Whit Monday", + "2022-08-01": "Emancipation Day; Kadooment Day", + "2022-08-02": "Emancipation Day (Observed)", + "2022-11-30": "Independence Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "Boxing Day", + "2022-12-27": "Christmas Day (Observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (Observed)", + "2023-01-21": "Errol Barrow Day", + "2023-04-07": "Good Friday", + "2023-04-10": "Easter Monday", + "2023-04-28": "National Heroes Day", + "2023-05-01": "May Day", + "2023-05-29": "Whit Monday", + "2023-07-31": "50th Anniversary of CARICOM Holiday", + "2023-08-01": "Emancipation Day", + "2023-08-07": "Kadooment Day", + "2023-11-30": "Independence Day", + "2023-12-25": "Christmas Day", + "2023-12-26": "Boxing Day", + "2024-01-01": "New Year's Day", + "2024-01-21": "Errol Barrow Day", + "2024-01-22": "Errol Barrow Day (Observed)", + "2024-03-29": "Good Friday", + "2024-04-01": "Easter Monday", + "2024-04-28": "National Heroes Day", + "2024-04-29": "National Heroes Day (Observed)", + "2024-05-01": "May Day", + "2024-05-20": "Whit Monday", + "2024-08-01": "Emancipation Day", + "2024-08-05": "Kadooment Day", + "2024-11-30": "Independence Day", + "2024-12-25": "Christmas Day", + "2024-12-26": "Boxing Day", + "2025-01-01": "New Year's Day", + "2025-01-21": "Errol Barrow Day", + "2025-04-18": "Good Friday", + "2025-04-21": "Easter Monday", + "2025-04-28": "National Heroes Day", + "2025-05-01": "May Day", + "2025-06-09": "Whit Monday", + "2025-08-01": "Emancipation Day", + "2025-08-04": "Kadooment Day", + "2025-11-30": "Independence Day", + "2025-12-01": "Independence Day (Observed)", + "2025-12-25": "Christmas Day", + "2025-12-26": "Boxing Day", + "2026-01-01": "New Year's Day", + "2026-01-21": "Errol Barrow Day", + "2026-04-03": "Good Friday", + "2026-04-06": "Easter Monday", + "2026-04-28": "National Heroes Day", + "2026-05-01": "May Day", + "2026-05-25": "Whit Monday", + "2026-08-01": "Emancipation Day", + "2026-08-03": "Kadooment Day", + "2026-11-30": "Independence Day", + "2026-12-25": "Christmas Day", + "2026-12-26": "Boxing Day", + "2027-01-01": "New Year's Day", + "2027-01-21": "Errol Barrow Day", + "2027-03-26": "Good Friday", + "2027-03-29": "Easter Monday", + "2027-04-28": "National Heroes Day", + "2027-05-01": "May Day", + "2027-05-17": "Whit Monday", + "2027-08-01": "Emancipation Day", + "2027-08-02": "Kadooment Day", + "2027-08-03": "Emancipation Day (Observed)", + "2027-11-30": "Independence Day", + "2027-12-25": "Christmas Day", + "2027-12-26": "Boxing Day", + "2027-12-27": "Boxing Day (Observed)", + "2028-01-01": "New Year's Day", + "2028-01-21": "Errol Barrow Day", + "2028-04-14": "Good Friday", + "2028-04-17": "Easter Monday", + "2028-04-28": "National Heroes Day", + "2028-05-01": "May Day", + "2028-06-05": "Whit Monday", + "2028-08-01": "Emancipation Day", + "2028-08-07": "Kadooment Day", + "2028-11-30": "Independence Day", + "2028-12-25": "Christmas Day", + "2028-12-26": "Boxing Day", + "2029-01-01": "New Year's Day", + "2029-01-21": "Errol Barrow Day", + "2029-01-22": "Errol Barrow Day (Observed)", + "2029-03-30": "Good Friday", + "2029-04-02": "Easter Monday", + "2029-04-28": "National Heroes Day", + "2029-05-01": "May Day", + "2029-05-21": "Whit Monday", + "2029-08-01": "Emancipation Day", + "2029-08-06": "Kadooment Day", + "2029-11-30": "Independence Day", + "2029-12-25": "Christmas Day", + "2029-12-26": "Boxing Day", + "2030-01-01": "New Year's Day", + "2030-01-21": "Errol Barrow Day", + "2030-04-19": "Good Friday", + "2030-04-22": "Easter Monday", + "2030-04-28": "National Heroes Day", + "2030-04-29": "National Heroes Day (Observed)", + "2030-05-01": "May Day", + "2030-06-10": "Whit Monday", + "2030-08-01": "Emancipation Day", + "2030-08-05": "Kadooment Day", + "2030-11-30": "Independence Day", + "2030-12-25": "Christmas Day", + "2030-12-26": "Boxing Day", + "2031-01-01": "New Year's Day", + "2031-01-21": "Errol Barrow Day", + "2031-04-11": "Good Friday", + "2031-04-14": "Easter Monday", + "2031-04-28": "National Heroes Day", + "2031-05-01": "May Day", + "2031-06-02": "Whit Monday", + "2031-08-01": "Emancipation Day", + "2031-08-04": "Kadooment Day", + "2031-11-30": "Independence Day", + "2031-12-01": "Independence Day (Observed)", + "2031-12-25": "Christmas Day", + "2031-12-26": "Boxing Day", + "2032-01-01": "New Year's Day", + "2032-01-21": "Errol Barrow Day", + "2032-03-26": "Good Friday", + "2032-03-29": "Easter Monday", + "2032-04-28": "National Heroes Day", + "2032-05-01": "May Day", + "2032-05-17": "Whit Monday", + "2032-08-01": "Emancipation Day", + "2032-08-02": "Kadooment Day", + "2032-08-03": "Emancipation Day (Observed)", + "2032-11-30": "Independence Day", + "2032-12-25": "Christmas Day", + "2032-12-26": "Boxing Day", + "2032-12-27": "Boxing Day (Observed)", + "2033-01-01": "New Year's Day", + "2033-01-21": "Errol Barrow Day", + "2033-04-15": "Good Friday", + "2033-04-18": "Easter Monday", + "2033-04-28": "National Heroes Day", + "2033-05-01": "May Day", + "2033-05-02": "May Day (Observed)", + "2033-06-06": "Whit Monday", + "2033-08-01": "Emancipation Day; Kadooment Day", + "2033-08-02": "Emancipation Day (Observed)", + "2033-11-30": "Independence Day", + "2033-12-25": "Christmas Day", + "2033-12-26": "Boxing Day", + "2033-12-27": "Christmas Day (Observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-01-21": "Errol Barrow Day", + "2034-04-07": "Good Friday", + "2034-04-10": "Easter Monday", + "2034-04-28": "National Heroes Day", + "2034-05-01": "May Day", + "2034-05-29": "Whit Monday", + "2034-08-01": "Emancipation Day", + "2034-08-07": "Kadooment Day", + "2034-11-30": "Independence Day", + "2034-12-25": "Christmas Day", + "2034-12-26": "Boxing Day", + "2035-01-01": "New Year's Day", + "2035-01-21": "Errol Barrow Day", + "2035-01-22": "Errol Barrow Day (Observed)", + "2035-03-23": "Good Friday", + "2035-03-26": "Easter Monday", + "2035-04-28": "National Heroes Day", + "2035-05-01": "May Day", + "2035-05-14": "Whit Monday", + "2035-08-01": "Emancipation Day", + "2035-08-06": "Kadooment Day", + "2035-11-30": "Independence Day", + "2035-12-25": "Christmas Day", + "2035-12-26": "Boxing Day", + "2036-01-01": "New Year's Day", + "2036-01-21": "Errol Barrow Day", + "2036-04-11": "Good Friday", + "2036-04-14": "Easter Monday", + "2036-04-28": "National Heroes Day", + "2036-05-01": "May Day", + "2036-06-02": "Whit Monday", + "2036-08-01": "Emancipation Day", + "2036-08-04": "Kadooment Day", + "2036-11-30": "Independence Day", + "2036-12-01": "Independence Day (Observed)", + "2036-12-25": "Christmas Day", + "2036-12-26": "Boxing Day", + "2037-01-01": "New Year's Day", + "2037-01-21": "Errol Barrow Day", + "2037-04-03": "Good Friday", + "2037-04-06": "Easter Monday", + "2037-04-28": "National Heroes Day", + "2037-05-01": "May Day", + "2037-05-25": "Whit Monday", + "2037-08-01": "Emancipation Day", + "2037-08-03": "Kadooment Day", + "2037-11-30": "Independence Day", + "2037-12-25": "Christmas Day", + "2037-12-26": "Boxing Day", + "2038-01-01": "New Year's Day", + "2038-01-21": "Errol Barrow Day", + "2038-04-23": "Good Friday", + "2038-04-26": "Easter Monday", + "2038-04-28": "National Heroes Day", + "2038-05-01": "May Day", + "2038-06-14": "Whit Monday", + "2038-08-01": "Emancipation Day", + "2038-08-02": "Kadooment Day", + "2038-08-03": "Emancipation Day (Observed)", + "2038-11-30": "Independence Day", + "2038-12-25": "Christmas Day", + "2038-12-26": "Boxing Day", + "2038-12-27": "Boxing Day (Observed)", + "2039-01-01": "New Year's Day", + "2039-01-21": "Errol Barrow Day", + "2039-04-08": "Good Friday", + "2039-04-11": "Easter Monday", + "2039-04-28": "National Heroes Day", + "2039-05-01": "May Day", + "2039-05-02": "May Day (Observed)", + "2039-05-30": "Whit Monday", + "2039-08-01": "Emancipation Day; Kadooment Day", + "2039-08-02": "Emancipation Day (Observed)", + "2039-11-30": "Independence Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Boxing Day", + "2039-12-27": "Christmas Day (Observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (Observed)", + "2040-01-21": "Errol Barrow Day", + "2040-03-30": "Good Friday", + "2040-04-02": "Easter Monday", + "2040-04-28": "National Heroes Day", + "2040-05-01": "May Day", + "2040-05-21": "Whit Monday", + "2040-08-01": "Emancipation Day", + "2040-08-06": "Kadooment Day", + "2040-11-30": "Independence Day", + "2040-12-25": "Christmas Day", + "2040-12-26": "Boxing Day", + "2041-01-01": "New Year's Day", + "2041-01-21": "Errol Barrow Day", + "2041-04-19": "Good Friday", + "2041-04-22": "Easter Monday", + "2041-04-28": "National Heroes Day", + "2041-04-29": "National Heroes Day (Observed)", + "2041-05-01": "May Day", + "2041-06-10": "Whit Monday", + "2041-08-01": "Emancipation Day", + "2041-08-05": "Kadooment Day", + "2041-11-30": "Independence Day", + "2041-12-25": "Christmas Day", + "2041-12-26": "Boxing Day", + "2042-01-01": "New Year's Day", + "2042-01-21": "Errol Barrow Day", + "2042-04-04": "Good Friday", + "2042-04-07": "Easter Monday", + "2042-04-28": "National Heroes Day", + "2042-05-01": "May Day", + "2042-05-26": "Whit Monday", + "2042-08-01": "Emancipation Day", + "2042-08-04": "Kadooment Day", + "2042-11-30": "Independence Day", + "2042-12-01": "Independence Day (Observed)", + "2042-12-25": "Christmas Day", + "2042-12-26": "Boxing Day", + "2043-01-01": "New Year's Day", + "2043-01-21": "Errol Barrow Day", + "2043-03-27": "Good Friday", + "2043-03-30": "Easter Monday", + "2043-04-28": "National Heroes Day", + "2043-05-01": "May Day", + "2043-05-18": "Whit Monday", + "2043-08-01": "Emancipation Day", + "2043-08-03": "Kadooment Day", + "2043-11-30": "Independence Day", + "2043-12-25": "Christmas Day", + "2043-12-26": "Boxing Day", + "2044-01-01": "New Year's Day", + "2044-01-21": "Errol Barrow Day", + "2044-04-15": "Good Friday", + "2044-04-18": "Easter Monday", + "2044-04-28": "National Heroes Day", + "2044-05-01": "May Day", + "2044-05-02": "May Day (Observed)", + "2044-06-06": "Whit Monday", + "2044-08-01": "Emancipation Day; Kadooment Day", + "2044-08-02": "Emancipation Day (Observed)", + "2044-11-30": "Independence Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "Boxing Day", + "2044-12-27": "Christmas Day (Observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (Observed)", + "2045-01-21": "Errol Barrow Day", + "2045-04-07": "Good Friday", + "2045-04-10": "Easter Monday", + "2045-04-28": "National Heroes Day", + "2045-05-01": "May Day", + "2045-05-29": "Whit Monday", + "2045-08-01": "Emancipation Day", + "2045-08-07": "Kadooment Day", + "2045-11-30": "Independence Day", + "2045-12-25": "Christmas Day", + "2045-12-26": "Boxing Day", + "2046-01-01": "New Year's Day", + "2046-01-21": "Errol Barrow Day", + "2046-01-22": "Errol Barrow Day (Observed)", + "2046-03-23": "Good Friday", + "2046-03-26": "Easter Monday", + "2046-04-28": "National Heroes Day", + "2046-05-01": "May Day", + "2046-05-14": "Whit Monday", + "2046-08-01": "Emancipation Day", + "2046-08-06": "Kadooment Day", + "2046-11-30": "Independence Day", + "2046-12-25": "Christmas Day", + "2046-12-26": "Boxing Day", + "2047-01-01": "New Year's Day", + "2047-01-21": "Errol Barrow Day", + "2047-04-12": "Good Friday", + "2047-04-15": "Easter Monday", + "2047-04-28": "National Heroes Day", + "2047-04-29": "National Heroes Day (Observed)", + "2047-05-01": "May Day", + "2047-06-03": "Whit Monday", + "2047-08-01": "Emancipation Day", + "2047-08-05": "Kadooment Day", + "2047-11-30": "Independence Day", + "2047-12-25": "Christmas Day", + "2047-12-26": "Boxing Day", + "2048-01-01": "New Year's Day", + "2048-01-21": "Errol Barrow Day", + "2048-04-03": "Good Friday", + "2048-04-06": "Easter Monday", + "2048-04-28": "National Heroes Day", + "2048-05-01": "May Day", + "2048-05-25": "Whit Monday", + "2048-08-01": "Emancipation Day", + "2048-08-03": "Kadooment Day", + "2048-11-30": "Independence Day", + "2048-12-25": "Christmas Day", + "2048-12-26": "Boxing Day", + "2049-01-01": "New Year's Day", + "2049-01-21": "Errol Barrow Day", + "2049-04-16": "Good Friday", + "2049-04-19": "Easter Monday", + "2049-04-28": "National Heroes Day", + "2049-05-01": "May Day", + "2049-06-07": "Whit Monday", + "2049-08-01": "Emancipation Day", + "2049-08-02": "Kadooment Day", + "2049-08-03": "Emancipation Day (Observed)", + "2049-11-30": "Independence Day", + "2049-12-25": "Christmas Day", + "2049-12-26": "Boxing Day", + "2049-12-27": "Boxing Day (Observed)", + "2050-01-01": "New Year's Day", + "2050-01-21": "Errol Barrow Day", + "2050-04-08": "Good Friday", + "2050-04-11": "Easter Monday", + "2050-04-28": "National Heroes Day", + "2050-05-01": "May Day", + "2050-05-02": "May Day (Observed)", + "2050-05-30": "Whit Monday", + "2050-08-01": "Emancipation Day; Kadooment Day", + "2050-08-02": "Emancipation Day (Observed)", + "2050-11-30": "Independence Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "Boxing Day", + "2050-12-27": "Christmas Day (Observed)" +} diff --git a/snapshots/countries/BD.json b/snapshots/countries/BD.json new file mode 100644 index 000000000..034fd4e58 --- /dev/null +++ b/snapshots/countries/BD.json @@ -0,0 +1,709 @@ +{ + "1950-02-21": "International Mother's language Day", + "1950-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1950-03-26": "Independence Day", + "1950-04-14": "Bengali New Year's Day", + "1950-05-01": "May Day", + "1950-08-15": "National Mourning Day", + "1950-12-16": "Victory Day", + "1951-02-21": "International Mother's language Day", + "1951-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1951-03-26": "Independence Day", + "1951-04-14": "Bengali New Year's Day", + "1951-05-01": "May Day", + "1951-08-15": "National Mourning Day", + "1951-12-16": "Victory Day", + "1952-02-21": "International Mother's language Day", + "1952-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1952-03-26": "Independence Day", + "1952-04-14": "Bengali New Year's Day", + "1952-05-01": "May Day", + "1952-08-15": "National Mourning Day", + "1952-12-16": "Victory Day", + "1953-02-21": "International Mother's language Day", + "1953-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1953-03-26": "Independence Day", + "1953-04-14": "Bengali New Year's Day", + "1953-05-01": "May Day", + "1953-08-15": "National Mourning Day", + "1953-12-16": "Victory Day", + "1954-02-21": "International Mother's language Day", + "1954-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1954-03-26": "Independence Day", + "1954-04-14": "Bengali New Year's Day", + "1954-05-01": "May Day", + "1954-08-15": "National Mourning Day", + "1954-12-16": "Victory Day", + "1955-02-21": "International Mother's language Day", + "1955-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1955-03-26": "Independence Day", + "1955-04-14": "Bengali New Year's Day", + "1955-05-01": "May Day", + "1955-08-15": "National Mourning Day", + "1955-12-16": "Victory Day", + "1956-02-21": "International Mother's language Day", + "1956-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1956-03-26": "Independence Day", + "1956-04-14": "Bengali New Year's Day", + "1956-05-01": "May Day", + "1956-08-15": "National Mourning Day", + "1956-12-16": "Victory Day", + "1957-02-21": "International Mother's language Day", + "1957-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1957-03-26": "Independence Day", + "1957-04-14": "Bengali New Year's Day", + "1957-05-01": "May Day", + "1957-08-15": "National Mourning Day", + "1957-12-16": "Victory Day", + "1958-02-21": "International Mother's language Day", + "1958-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1958-03-26": "Independence Day", + "1958-04-14": "Bengali New Year's Day", + "1958-05-01": "May Day", + "1958-08-15": "National Mourning Day", + "1958-12-16": "Victory Day", + "1959-02-21": "International Mother's language Day", + "1959-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1959-03-26": "Independence Day", + "1959-04-14": "Bengali New Year's Day", + "1959-05-01": "May Day", + "1959-08-15": "National Mourning Day", + "1959-12-16": "Victory Day", + "1960-02-21": "International Mother's language Day", + "1960-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1960-03-26": "Independence Day", + "1960-04-14": "Bengali New Year's Day", + "1960-05-01": "May Day", + "1960-08-15": "National Mourning Day", + "1960-12-16": "Victory Day", + "1961-02-21": "International Mother's language Day", + "1961-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1961-03-26": "Independence Day", + "1961-04-14": "Bengali New Year's Day", + "1961-05-01": "May Day", + "1961-08-15": "National Mourning Day", + "1961-12-16": "Victory Day", + "1962-02-21": "International Mother's language Day", + "1962-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1962-03-26": "Independence Day", + "1962-04-14": "Bengali New Year's Day", + "1962-05-01": "May Day", + "1962-08-15": "National Mourning Day", + "1962-12-16": "Victory Day", + "1963-02-21": "International Mother's language Day", + "1963-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1963-03-26": "Independence Day", + "1963-04-14": "Bengali New Year's Day", + "1963-05-01": "May Day", + "1963-08-15": "National Mourning Day", + "1963-12-16": "Victory Day", + "1964-02-21": "International Mother's language Day", + "1964-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1964-03-26": "Independence Day", + "1964-04-14": "Bengali New Year's Day", + "1964-05-01": "May Day", + "1964-08-15": "National Mourning Day", + "1964-12-16": "Victory Day", + "1965-02-21": "International Mother's language Day", + "1965-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1965-03-26": "Independence Day", + "1965-04-14": "Bengali New Year's Day", + "1965-05-01": "May Day", + "1965-08-15": "National Mourning Day", + "1965-12-16": "Victory Day", + "1966-02-21": "International Mother's language Day", + "1966-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1966-03-26": "Independence Day", + "1966-04-14": "Bengali New Year's Day", + "1966-05-01": "May Day", + "1966-08-15": "National Mourning Day", + "1966-12-16": "Victory Day", + "1967-02-21": "International Mother's language Day", + "1967-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1967-03-26": "Independence Day", + "1967-04-14": "Bengali New Year's Day", + "1967-05-01": "May Day", + "1967-08-15": "National Mourning Day", + "1967-12-16": "Victory Day", + "1968-02-21": "International Mother's language Day", + "1968-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1968-03-26": "Independence Day", + "1968-04-14": "Bengali New Year's Day", + "1968-05-01": "May Day", + "1968-08-15": "National Mourning Day", + "1968-12-16": "Victory Day", + "1969-02-21": "International Mother's language Day", + "1969-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1969-03-26": "Independence Day", + "1969-04-14": "Bengali New Year's Day", + "1969-05-01": "May Day", + "1969-08-15": "National Mourning Day", + "1969-12-16": "Victory Day", + "1970-02-21": "International Mother's language Day", + "1970-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1970-03-26": "Independence Day", + "1970-04-14": "Bengali New Year's Day", + "1970-05-01": "May Day", + "1970-08-15": "National Mourning Day", + "1970-12-16": "Victory Day", + "1971-02-21": "International Mother's language Day", + "1971-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1971-03-26": "Independence Day", + "1971-04-14": "Bengali New Year's Day", + "1971-05-01": "May Day", + "1971-08-15": "National Mourning Day", + "1971-12-16": "Victory Day", + "1972-02-21": "International Mother's language Day", + "1972-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1972-03-26": "Independence Day", + "1972-04-14": "Bengali New Year's Day", + "1972-05-01": "May Day", + "1972-08-15": "National Mourning Day", + "1972-12-16": "Victory Day", + "1973-02-21": "International Mother's language Day", + "1973-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1973-03-26": "Independence Day", + "1973-04-14": "Bengali New Year's Day", + "1973-05-01": "May Day", + "1973-08-15": "National Mourning Day", + "1973-12-16": "Victory Day", + "1974-02-21": "International Mother's language Day", + "1974-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1974-03-26": "Independence Day", + "1974-04-14": "Bengali New Year's Day", + "1974-05-01": "May Day", + "1974-08-15": "National Mourning Day", + "1974-12-16": "Victory Day", + "1975-02-21": "International Mother's language Day", + "1975-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1975-03-26": "Independence Day", + "1975-04-14": "Bengali New Year's Day", + "1975-05-01": "May Day", + "1975-08-15": "National Mourning Day", + "1975-12-16": "Victory Day", + "1976-02-21": "International Mother's language Day", + "1976-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1976-03-26": "Independence Day", + "1976-04-14": "Bengali New Year's Day", + "1976-05-01": "May Day", + "1976-08-15": "National Mourning Day", + "1976-12-16": "Victory Day", + "1977-02-21": "International Mother's language Day", + "1977-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1977-03-26": "Independence Day", + "1977-04-14": "Bengali New Year's Day", + "1977-05-01": "May Day", + "1977-08-15": "National Mourning Day", + "1977-12-16": "Victory Day", + "1978-02-21": "International Mother's language Day", + "1978-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1978-03-26": "Independence Day", + "1978-04-14": "Bengali New Year's Day", + "1978-05-01": "May Day", + "1978-08-15": "National Mourning Day", + "1978-12-16": "Victory Day", + "1979-02-21": "International Mother's language Day", + "1979-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1979-03-26": "Independence Day", + "1979-04-14": "Bengali New Year's Day", + "1979-05-01": "May Day", + "1979-08-15": "National Mourning Day", + "1979-12-16": "Victory Day", + "1980-02-21": "International Mother's language Day", + "1980-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1980-03-26": "Independence Day", + "1980-04-14": "Bengali New Year's Day", + "1980-05-01": "May Day", + "1980-08-15": "National Mourning Day", + "1980-12-16": "Victory Day", + "1981-02-21": "International Mother's language Day", + "1981-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1981-03-26": "Independence Day", + "1981-04-14": "Bengali New Year's Day", + "1981-05-01": "May Day", + "1981-08-15": "National Mourning Day", + "1981-12-16": "Victory Day", + "1982-02-21": "International Mother's language Day", + "1982-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1982-03-26": "Independence Day", + "1982-04-14": "Bengali New Year's Day", + "1982-05-01": "May Day", + "1982-08-15": "National Mourning Day", + "1982-12-16": "Victory Day", + "1983-02-21": "International Mother's language Day", + "1983-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1983-03-26": "Independence Day", + "1983-04-14": "Bengali New Year's Day", + "1983-05-01": "May Day", + "1983-08-15": "National Mourning Day", + "1983-12-16": "Victory Day", + "1984-02-21": "International Mother's language Day", + "1984-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1984-03-26": "Independence Day", + "1984-04-14": "Bengali New Year's Day", + "1984-05-01": "May Day", + "1984-08-15": "National Mourning Day", + "1984-12-16": "Victory Day", + "1985-02-21": "International Mother's language Day", + "1985-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1985-03-26": "Independence Day", + "1985-04-14": "Bengali New Year's Day", + "1985-05-01": "May Day", + "1985-08-15": "National Mourning Day", + "1985-12-16": "Victory Day", + "1986-02-21": "International Mother's language Day", + "1986-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1986-03-26": "Independence Day", + "1986-04-14": "Bengali New Year's Day", + "1986-05-01": "May Day", + "1986-08-15": "National Mourning Day", + "1986-12-16": "Victory Day", + "1987-02-21": "International Mother's language Day", + "1987-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1987-03-26": "Independence Day", + "1987-04-14": "Bengali New Year's Day", + "1987-05-01": "May Day", + "1987-08-15": "National Mourning Day", + "1987-12-16": "Victory Day", + "1988-02-21": "International Mother's language Day", + "1988-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1988-03-26": "Independence Day", + "1988-04-14": "Bengali New Year's Day", + "1988-05-01": "May Day", + "1988-08-15": "National Mourning Day", + "1988-12-16": "Victory Day", + "1989-02-21": "International Mother's language Day", + "1989-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1989-03-26": "Independence Day", + "1989-04-14": "Bengali New Year's Day", + "1989-05-01": "May Day", + "1989-08-15": "National Mourning Day", + "1989-12-16": "Victory Day", + "1990-02-21": "International Mother's language Day", + "1990-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1990-03-26": "Independence Day", + "1990-04-14": "Bengali New Year's Day", + "1990-05-01": "May Day", + "1990-08-15": "National Mourning Day", + "1990-12-16": "Victory Day", + "1991-02-21": "International Mother's language Day", + "1991-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1991-03-26": "Independence Day", + "1991-04-14": "Bengali New Year's Day", + "1991-05-01": "May Day", + "1991-08-15": "National Mourning Day", + "1991-12-16": "Victory Day", + "1992-02-21": "International Mother's language Day", + "1992-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1992-03-26": "Independence Day", + "1992-04-14": "Bengali New Year's Day", + "1992-05-01": "May Day", + "1992-08-15": "National Mourning Day", + "1992-12-16": "Victory Day", + "1993-02-21": "International Mother's language Day", + "1993-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1993-03-26": "Independence Day", + "1993-04-14": "Bengali New Year's Day", + "1993-05-01": "May Day", + "1993-08-15": "National Mourning Day", + "1993-12-16": "Victory Day", + "1994-02-21": "International Mother's language Day", + "1994-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1994-03-26": "Independence Day", + "1994-04-14": "Bengali New Year's Day", + "1994-05-01": "May Day", + "1994-08-15": "National Mourning Day", + "1994-12-16": "Victory Day", + "1995-02-21": "International Mother's language Day", + "1995-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1995-03-26": "Independence Day", + "1995-04-14": "Bengali New Year's Day", + "1995-05-01": "May Day", + "1995-08-15": "National Mourning Day", + "1995-12-16": "Victory Day", + "1996-02-21": "International Mother's language Day", + "1996-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1996-03-26": "Independence Day", + "1996-04-14": "Bengali New Year's Day", + "1996-05-01": "May Day", + "1996-08-15": "National Mourning Day", + "1996-12-16": "Victory Day", + "1997-02-21": "International Mother's language Day", + "1997-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1997-03-26": "Independence Day", + "1997-04-14": "Bengali New Year's Day", + "1997-05-01": "May Day", + "1997-08-15": "National Mourning Day", + "1997-12-16": "Victory Day", + "1998-02-21": "International Mother's language Day", + "1998-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1998-03-26": "Independence Day", + "1998-04-14": "Bengali New Year's Day", + "1998-05-01": "May Day", + "1998-08-15": "National Mourning Day", + "1998-12-16": "Victory Day", + "1999-02-21": "International Mother's language Day", + "1999-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "1999-03-26": "Independence Day", + "1999-04-14": "Bengali New Year's Day", + "1999-05-01": "May Day", + "1999-08-15": "National Mourning Day", + "1999-12-16": "Victory Day", + "2000-02-21": "International Mother's language Day", + "2000-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2000-03-26": "Independence Day", + "2000-04-14": "Bengali New Year's Day", + "2000-05-01": "May Day", + "2000-08-15": "National Mourning Day", + "2000-12-16": "Victory Day", + "2001-02-21": "International Mother's language Day", + "2001-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2001-03-26": "Independence Day", + "2001-04-14": "Bengali New Year's Day", + "2001-05-01": "May Day", + "2001-08-15": "National Mourning Day", + "2001-12-16": "Victory Day", + "2002-02-21": "International Mother's language Day", + "2002-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2002-03-26": "Independence Day", + "2002-04-14": "Bengali New Year's Day", + "2002-05-01": "May Day", + "2002-08-15": "National Mourning Day", + "2002-12-16": "Victory Day", + "2003-02-21": "International Mother's language Day", + "2003-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2003-03-26": "Independence Day", + "2003-04-14": "Bengali New Year's Day", + "2003-05-01": "May Day", + "2003-08-15": "National Mourning Day", + "2003-12-16": "Victory Day", + "2004-02-21": "International Mother's language Day", + "2004-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2004-03-26": "Independence Day", + "2004-04-14": "Bengali New Year's Day", + "2004-05-01": "May Day", + "2004-08-15": "National Mourning Day", + "2004-12-16": "Victory Day", + "2005-02-21": "International Mother's language Day", + "2005-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2005-03-26": "Independence Day", + "2005-04-14": "Bengali New Year's Day", + "2005-05-01": "May Day", + "2005-08-15": "National Mourning Day", + "2005-12-16": "Victory Day", + "2006-02-21": "International Mother's language Day", + "2006-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2006-03-26": "Independence Day", + "2006-04-14": "Bengali New Year's Day", + "2006-05-01": "May Day", + "2006-08-15": "National Mourning Day", + "2006-12-16": "Victory Day", + "2007-02-21": "International Mother's language Day", + "2007-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2007-03-26": "Independence Day", + "2007-04-14": "Bengali New Year's Day", + "2007-05-01": "May Day", + "2007-08-15": "National Mourning Day", + "2007-12-16": "Victory Day", + "2008-02-21": "International Mother's language Day", + "2008-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2008-03-26": "Independence Day", + "2008-04-14": "Bengali New Year's Day", + "2008-05-01": "May Day", + "2008-08-15": "National Mourning Day", + "2008-12-16": "Victory Day", + "2009-02-21": "International Mother's language Day", + "2009-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2009-03-26": "Independence Day", + "2009-04-14": "Bengali New Year's Day", + "2009-05-01": "May Day", + "2009-08-15": "National Mourning Day", + "2009-12-16": "Victory Day", + "2010-02-21": "International Mother's language Day", + "2010-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2010-03-26": "Independence Day", + "2010-04-14": "Bengali New Year's Day", + "2010-05-01": "May Day", + "2010-08-15": "National Mourning Day", + "2010-12-16": "Victory Day", + "2011-02-21": "International Mother's language Day", + "2011-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2011-03-26": "Independence Day", + "2011-04-14": "Bengali New Year's Day", + "2011-05-01": "May Day", + "2011-08-15": "National Mourning Day", + "2011-12-16": "Victory Day", + "2012-02-21": "International Mother's language Day", + "2012-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2012-03-26": "Independence Day", + "2012-04-14": "Bengali New Year's Day", + "2012-05-01": "May Day", + "2012-08-15": "National Mourning Day", + "2012-12-16": "Victory Day", + "2013-02-21": "International Mother's language Day", + "2013-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2013-03-26": "Independence Day", + "2013-04-14": "Bengali New Year's Day", + "2013-05-01": "May Day", + "2013-08-15": "National Mourning Day", + "2013-12-16": "Victory Day", + "2014-02-21": "International Mother's language Day", + "2014-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2014-03-26": "Independence Day", + "2014-04-14": "Bengali New Year's Day", + "2014-05-01": "May Day", + "2014-08-15": "National Mourning Day", + "2014-12-16": "Victory Day", + "2015-02-21": "International Mother's language Day", + "2015-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2015-03-26": "Independence Day", + "2015-04-14": "Bengali New Year's Day", + "2015-05-01": "May Day", + "2015-08-15": "National Mourning Day", + "2015-12-16": "Victory Day", + "2016-02-21": "International Mother's language Day", + "2016-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2016-03-26": "Independence Day", + "2016-04-14": "Bengali New Year's Day", + "2016-05-01": "May Day", + "2016-08-15": "National Mourning Day", + "2016-12-16": "Victory Day", + "2017-02-21": "International Mother's language Day", + "2017-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2017-03-26": "Independence Day", + "2017-04-14": "Bengali New Year's Day", + "2017-05-01": "May Day", + "2017-08-15": "National Mourning Day", + "2017-12-16": "Victory Day", + "2018-02-21": "International Mother's language Day", + "2018-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2018-03-26": "Independence Day", + "2018-04-14": "Bengali New Year's Day", + "2018-05-01": "May Day", + "2018-08-15": "National Mourning Day", + "2018-12-16": "Victory Day", + "2019-02-21": "International Mother's language Day", + "2019-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2019-03-26": "Independence Day", + "2019-04-14": "Bengali New Year's Day", + "2019-05-01": "May Day", + "2019-08-15": "National Mourning Day", + "2019-12-16": "Victory Day", + "2020-02-21": "International Mother's language Day", + "2020-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2020-03-26": "Independence Day", + "2020-04-14": "Bengali New Year's Day", + "2020-05-01": "May Day", + "2020-08-15": "National Mourning Day", + "2020-12-16": "Victory Day", + "2021-02-21": "International Mother's language Day", + "2021-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2021-03-26": "Independence Day", + "2021-04-14": "Bengali New Year's Day", + "2021-05-01": "May Day", + "2021-08-15": "National Mourning Day", + "2021-12-16": "Victory Day", + "2022-02-21": "International Mother's language Day", + "2022-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2022-03-26": "Independence Day", + "2022-04-14": "Bengali New Year's Day", + "2022-05-01": "May Day", + "2022-08-15": "National Mourning Day", + "2022-12-16": "Victory Day", + "2023-02-21": "International Mother's language Day", + "2023-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2023-03-26": "Independence Day", + "2023-04-14": "Bengali New Year's Day", + "2023-05-01": "May Day", + "2023-08-15": "National Mourning Day", + "2023-12-16": "Victory Day", + "2024-02-21": "International Mother's language Day", + "2024-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2024-03-26": "Independence Day", + "2024-04-14": "Bengali New Year's Day", + "2024-05-01": "May Day", + "2024-08-15": "National Mourning Day", + "2024-12-16": "Victory Day", + "2025-02-21": "International Mother's language Day", + "2025-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2025-03-26": "Independence Day", + "2025-04-14": "Bengali New Year's Day", + "2025-05-01": "May Day", + "2025-08-15": "National Mourning Day", + "2025-12-16": "Victory Day", + "2026-02-21": "International Mother's language Day", + "2026-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2026-03-26": "Independence Day", + "2026-04-14": "Bengali New Year's Day", + "2026-05-01": "May Day", + "2026-08-15": "National Mourning Day", + "2026-12-16": "Victory Day", + "2027-02-21": "International Mother's language Day", + "2027-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2027-03-26": "Independence Day", + "2027-04-14": "Bengali New Year's Day", + "2027-05-01": "May Day", + "2027-08-15": "National Mourning Day", + "2027-12-16": "Victory Day", + "2028-02-21": "International Mother's language Day", + "2028-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2028-03-26": "Independence Day", + "2028-04-14": "Bengali New Year's Day", + "2028-05-01": "May Day", + "2028-08-15": "National Mourning Day", + "2028-12-16": "Victory Day", + "2029-02-21": "International Mother's language Day", + "2029-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2029-03-26": "Independence Day", + "2029-04-14": "Bengali New Year's Day", + "2029-05-01": "May Day", + "2029-08-15": "National Mourning Day", + "2029-12-16": "Victory Day", + "2030-02-21": "International Mother's language Day", + "2030-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2030-03-26": "Independence Day", + "2030-04-14": "Bengali New Year's Day", + "2030-05-01": "May Day", + "2030-08-15": "National Mourning Day", + "2030-12-16": "Victory Day", + "2031-02-21": "International Mother's language Day", + "2031-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2031-03-26": "Independence Day", + "2031-04-14": "Bengali New Year's Day", + "2031-05-01": "May Day", + "2031-08-15": "National Mourning Day", + "2031-12-16": "Victory Day", + "2032-02-21": "International Mother's language Day", + "2032-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2032-03-26": "Independence Day", + "2032-04-14": "Bengali New Year's Day", + "2032-05-01": "May Day", + "2032-08-15": "National Mourning Day", + "2032-12-16": "Victory Day", + "2033-02-21": "International Mother's language Day", + "2033-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2033-03-26": "Independence Day", + "2033-04-14": "Bengali New Year's Day", + "2033-05-01": "May Day", + "2033-08-15": "National Mourning Day", + "2033-12-16": "Victory Day", + "2034-02-21": "International Mother's language Day", + "2034-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2034-03-26": "Independence Day", + "2034-04-14": "Bengali New Year's Day", + "2034-05-01": "May Day", + "2034-08-15": "National Mourning Day", + "2034-12-16": "Victory Day", + "2035-02-21": "International Mother's language Day", + "2035-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2035-03-26": "Independence Day", + "2035-04-14": "Bengali New Year's Day", + "2035-05-01": "May Day", + "2035-08-15": "National Mourning Day", + "2035-12-16": "Victory Day", + "2036-02-21": "International Mother's language Day", + "2036-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2036-03-26": "Independence Day", + "2036-04-14": "Bengali New Year's Day", + "2036-05-01": "May Day", + "2036-08-15": "National Mourning Day", + "2036-12-16": "Victory Day", + "2037-02-21": "International Mother's language Day", + "2037-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2037-03-26": "Independence Day", + "2037-04-14": "Bengali New Year's Day", + "2037-05-01": "May Day", + "2037-08-15": "National Mourning Day", + "2037-12-16": "Victory Day", + "2038-02-21": "International Mother's language Day", + "2038-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2038-03-26": "Independence Day", + "2038-04-14": "Bengali New Year's Day", + "2038-05-01": "May Day", + "2038-08-15": "National Mourning Day", + "2038-12-16": "Victory Day", + "2039-02-21": "International Mother's language Day", + "2039-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2039-03-26": "Independence Day", + "2039-04-14": "Bengali New Year's Day", + "2039-05-01": "May Day", + "2039-08-15": "National Mourning Day", + "2039-12-16": "Victory Day", + "2040-02-21": "International Mother's language Day", + "2040-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2040-03-26": "Independence Day", + "2040-04-14": "Bengali New Year's Day", + "2040-05-01": "May Day", + "2040-08-15": "National Mourning Day", + "2040-12-16": "Victory Day", + "2041-02-21": "International Mother's language Day", + "2041-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2041-03-26": "Independence Day", + "2041-04-14": "Bengali New Year's Day", + "2041-05-01": "May Day", + "2041-08-15": "National Mourning Day", + "2041-12-16": "Victory Day", + "2042-02-21": "International Mother's language Day", + "2042-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2042-03-26": "Independence Day", + "2042-04-14": "Bengali New Year's Day", + "2042-05-01": "May Day", + "2042-08-15": "National Mourning Day", + "2042-12-16": "Victory Day", + "2043-02-21": "International Mother's language Day", + "2043-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2043-03-26": "Independence Day", + "2043-04-14": "Bengali New Year's Day", + "2043-05-01": "May Day", + "2043-08-15": "National Mourning Day", + "2043-12-16": "Victory Day", + "2044-02-21": "International Mother's language Day", + "2044-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2044-03-26": "Independence Day", + "2044-04-14": "Bengali New Year's Day", + "2044-05-01": "May Day", + "2044-08-15": "National Mourning Day", + "2044-12-16": "Victory Day", + "2045-02-21": "International Mother's language Day", + "2045-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2045-03-26": "Independence Day", + "2045-04-14": "Bengali New Year's Day", + "2045-05-01": "May Day", + "2045-08-15": "National Mourning Day", + "2045-12-16": "Victory Day", + "2046-02-21": "International Mother's language Day", + "2046-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2046-03-26": "Independence Day", + "2046-04-14": "Bengali New Year's Day", + "2046-05-01": "May Day", + "2046-08-15": "National Mourning Day", + "2046-12-16": "Victory Day", + "2047-02-21": "International Mother's language Day", + "2047-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2047-03-26": "Independence Day", + "2047-04-14": "Bengali New Year's Day", + "2047-05-01": "May Day", + "2047-08-15": "National Mourning Day", + "2047-12-16": "Victory Day", + "2048-02-21": "International Mother's language Day", + "2048-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2048-03-26": "Independence Day", + "2048-04-14": "Bengali New Year's Day", + "2048-05-01": "May Day", + "2048-08-15": "National Mourning Day", + "2048-12-16": "Victory Day", + "2049-02-21": "International Mother's language Day", + "2049-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2049-03-26": "Independence Day", + "2049-04-14": "Bengali New Year's Day", + "2049-05-01": "May Day", + "2049-08-15": "National Mourning Day", + "2049-12-16": "Victory Day", + "2050-02-21": "International Mother's language Day", + "2050-03-17": "Sheikh Mujibur Rahman's Birthday and Children's Day", + "2050-03-26": "Independence Day", + "2050-04-14": "Bengali New Year's Day", + "2050-05-01": "May Day", + "2050-08-15": "National Mourning Day", + "2050-12-16": "Victory Day" +} diff --git a/snapshots/countries/BE.json b/snapshots/countries/BE.json new file mode 100644 index 000000000..892686c05 --- /dev/null +++ b/snapshots/countries/BE.json @@ -0,0 +1,1516 @@ +{ + "1950-01-01": "New Year's Day", + "1950-04-07": "Good Friday", + "1950-04-09": "Easter", + "1950-04-10": "Easter Monday", + "1950-05-01": "Labor Day", + "1950-05-18": "Ascension Day", + "1950-05-19": "Friday after Ascension Day", + "1950-05-28": "Whit Sunday", + "1950-05-29": "Whit Monday", + "1950-07-21": "National Day", + "1950-08-15": "Assumption of Mary", + "1950-11-01": "All Saints' Day", + "1950-11-11": "Armistice Day", + "1950-12-25": "Christmas Day", + "1950-12-26": "Bank Holiday", + "1951-01-01": "New Year's Day", + "1951-03-23": "Good Friday", + "1951-03-25": "Easter", + "1951-03-26": "Easter Monday", + "1951-05-01": "Labor Day", + "1951-05-03": "Ascension Day", + "1951-05-04": "Friday after Ascension Day", + "1951-05-13": "Whit Sunday", + "1951-05-14": "Whit Monday", + "1951-07-21": "National Day", + "1951-08-15": "Assumption of Mary", + "1951-11-01": "All Saints' Day", + "1951-11-11": "Armistice Day", + "1951-12-25": "Christmas Day", + "1951-12-26": "Bank Holiday", + "1952-01-01": "New Year's Day", + "1952-04-11": "Good Friday", + "1952-04-13": "Easter", + "1952-04-14": "Easter Monday", + "1952-05-01": "Labor Day", + "1952-05-22": "Ascension Day", + "1952-05-23": "Friday after Ascension Day", + "1952-06-01": "Whit Sunday", + "1952-06-02": "Whit Monday", + "1952-07-21": "National Day", + "1952-08-15": "Assumption of Mary", + "1952-11-01": "All Saints' Day", + "1952-11-11": "Armistice Day", + "1952-12-25": "Christmas Day", + "1952-12-26": "Bank Holiday", + "1953-01-01": "New Year's Day", + "1953-04-03": "Good Friday", + "1953-04-05": "Easter", + "1953-04-06": "Easter Monday", + "1953-05-01": "Labor Day", + "1953-05-14": "Ascension Day", + "1953-05-15": "Friday after Ascension Day", + "1953-05-24": "Whit Sunday", + "1953-05-25": "Whit Monday", + "1953-07-21": "National Day", + "1953-08-15": "Assumption of Mary", + "1953-11-01": "All Saints' Day", + "1953-11-11": "Armistice Day", + "1953-12-25": "Christmas Day", + "1953-12-26": "Bank Holiday", + "1954-01-01": "New Year's Day", + "1954-04-16": "Good Friday", + "1954-04-18": "Easter", + "1954-04-19": "Easter Monday", + "1954-05-01": "Labor Day", + "1954-05-27": "Ascension Day", + "1954-05-28": "Friday after Ascension Day", + "1954-06-06": "Whit Sunday", + "1954-06-07": "Whit Monday", + "1954-07-21": "National Day", + "1954-08-15": "Assumption of Mary", + "1954-11-01": "All Saints' Day", + "1954-11-11": "Armistice Day", + "1954-12-25": "Christmas Day", + "1954-12-26": "Bank Holiday", + "1955-01-01": "New Year's Day", + "1955-04-08": "Good Friday", + "1955-04-10": "Easter", + "1955-04-11": "Easter Monday", + "1955-05-01": "Labor Day", + "1955-05-19": "Ascension Day", + "1955-05-20": "Friday after Ascension Day", + "1955-05-29": "Whit Sunday", + "1955-05-30": "Whit Monday", + "1955-07-21": "National Day", + "1955-08-15": "Assumption of Mary", + "1955-11-01": "All Saints' Day", + "1955-11-11": "Armistice Day", + "1955-12-25": "Christmas Day", + "1955-12-26": "Bank Holiday", + "1956-01-01": "New Year's Day", + "1956-03-30": "Good Friday", + "1956-04-01": "Easter", + "1956-04-02": "Easter Monday", + "1956-05-01": "Labor Day", + "1956-05-10": "Ascension Day", + "1956-05-11": "Friday after Ascension Day", + "1956-05-20": "Whit Sunday", + "1956-05-21": "Whit Monday", + "1956-07-21": "National Day", + "1956-08-15": "Assumption of Mary", + "1956-11-01": "All Saints' Day", + "1956-11-11": "Armistice Day", + "1956-12-25": "Christmas Day", + "1956-12-26": "Bank Holiday", + "1957-01-01": "New Year's Day", + "1957-04-19": "Good Friday", + "1957-04-21": "Easter", + "1957-04-22": "Easter Monday", + "1957-05-01": "Labor Day", + "1957-05-30": "Ascension Day", + "1957-05-31": "Friday after Ascension Day", + "1957-06-09": "Whit Sunday", + "1957-06-10": "Whit Monday", + "1957-07-21": "National Day", + "1957-08-15": "Assumption of Mary", + "1957-11-01": "All Saints' Day", + "1957-11-11": "Armistice Day", + "1957-12-25": "Christmas Day", + "1957-12-26": "Bank Holiday", + "1958-01-01": "New Year's Day", + "1958-04-04": "Good Friday", + "1958-04-06": "Easter", + "1958-04-07": "Easter Monday", + "1958-05-01": "Labor Day", + "1958-05-15": "Ascension Day", + "1958-05-16": "Friday after Ascension Day", + "1958-05-25": "Whit Sunday", + "1958-05-26": "Whit Monday", + "1958-07-21": "National Day", + "1958-08-15": "Assumption of Mary", + "1958-11-01": "All Saints' Day", + "1958-11-11": "Armistice Day", + "1958-12-25": "Christmas Day", + "1958-12-26": "Bank Holiday", + "1959-01-01": "New Year's Day", + "1959-03-27": "Good Friday", + "1959-03-29": "Easter", + "1959-03-30": "Easter Monday", + "1959-05-01": "Labor Day", + "1959-05-07": "Ascension Day", + "1959-05-08": "Friday after Ascension Day", + "1959-05-17": "Whit Sunday", + "1959-05-18": "Whit Monday", + "1959-07-21": "National Day", + "1959-08-15": "Assumption of Mary", + "1959-11-01": "All Saints' Day", + "1959-11-11": "Armistice Day", + "1959-12-25": "Christmas Day", + "1959-12-26": "Bank Holiday", + "1960-01-01": "New Year's Day", + "1960-04-15": "Good Friday", + "1960-04-17": "Easter", + "1960-04-18": "Easter Monday", + "1960-05-01": "Labor Day", + "1960-05-26": "Ascension Day", + "1960-05-27": "Friday after Ascension Day", + "1960-06-05": "Whit Sunday", + "1960-06-06": "Whit Monday", + "1960-07-21": "National Day", + "1960-08-15": "Assumption of Mary", + "1960-11-01": "All Saints' Day", + "1960-11-11": "Armistice Day", + "1960-12-25": "Christmas Day", + "1960-12-26": "Bank Holiday", + "1961-01-01": "New Year's Day", + "1961-03-31": "Good Friday", + "1961-04-02": "Easter", + "1961-04-03": "Easter Monday", + "1961-05-01": "Labor Day", + "1961-05-11": "Ascension Day", + "1961-05-12": "Friday after Ascension Day", + "1961-05-21": "Whit Sunday", + "1961-05-22": "Whit Monday", + "1961-07-21": "National Day", + "1961-08-15": "Assumption of Mary", + "1961-11-01": "All Saints' Day", + "1961-11-11": "Armistice Day", + "1961-12-25": "Christmas Day", + "1961-12-26": "Bank Holiday", + "1962-01-01": "New Year's Day", + "1962-04-20": "Good Friday", + "1962-04-22": "Easter", + "1962-04-23": "Easter Monday", + "1962-05-01": "Labor Day", + "1962-05-31": "Ascension Day", + "1962-06-01": "Friday after Ascension Day", + "1962-06-10": "Whit Sunday", + "1962-06-11": "Whit Monday", + "1962-07-21": "National Day", + "1962-08-15": "Assumption of Mary", + "1962-11-01": "All Saints' Day", + "1962-11-11": "Armistice Day", + "1962-12-25": "Christmas Day", + "1962-12-26": "Bank Holiday", + "1963-01-01": "New Year's Day", + "1963-04-12": "Good Friday", + "1963-04-14": "Easter", + "1963-04-15": "Easter Monday", + "1963-05-01": "Labor Day", + "1963-05-23": "Ascension Day", + "1963-05-24": "Friday after Ascension Day", + "1963-06-02": "Whit Sunday", + "1963-06-03": "Whit Monday", + "1963-07-21": "National Day", + "1963-08-15": "Assumption of Mary", + "1963-11-01": "All Saints' Day", + "1963-11-11": "Armistice Day", + "1963-12-25": "Christmas Day", + "1963-12-26": "Bank Holiday", + "1964-01-01": "New Year's Day", + "1964-03-27": "Good Friday", + "1964-03-29": "Easter", + "1964-03-30": "Easter Monday", + "1964-05-01": "Labor Day", + "1964-05-07": "Ascension Day", + "1964-05-08": "Friday after Ascension Day", + "1964-05-17": "Whit Sunday", + "1964-05-18": "Whit Monday", + "1964-07-21": "National Day", + "1964-08-15": "Assumption of Mary", + "1964-11-01": "All Saints' Day", + "1964-11-11": "Armistice Day", + "1964-12-25": "Christmas Day", + "1964-12-26": "Bank Holiday", + "1965-01-01": "New Year's Day", + "1965-04-16": "Good Friday", + "1965-04-18": "Easter", + "1965-04-19": "Easter Monday", + "1965-05-01": "Labor Day", + "1965-05-27": "Ascension Day", + "1965-05-28": "Friday after Ascension Day", + "1965-06-06": "Whit Sunday", + "1965-06-07": "Whit Monday", + "1965-07-21": "National Day", + "1965-08-15": "Assumption of Mary", + "1965-11-01": "All Saints' Day", + "1965-11-11": "Armistice Day", + "1965-12-25": "Christmas Day", + "1965-12-26": "Bank Holiday", + "1966-01-01": "New Year's Day", + "1966-04-08": "Good Friday", + "1966-04-10": "Easter", + "1966-04-11": "Easter Monday", + "1966-05-01": "Labor Day", + "1966-05-19": "Ascension Day", + "1966-05-20": "Friday after Ascension Day", + "1966-05-29": "Whit Sunday", + "1966-05-30": "Whit Monday", + "1966-07-21": "National Day", + "1966-08-15": "Assumption of Mary", + "1966-11-01": "All Saints' Day", + "1966-11-11": "Armistice Day", + "1966-12-25": "Christmas Day", + "1966-12-26": "Bank Holiday", + "1967-01-01": "New Year's Day", + "1967-03-24": "Good Friday", + "1967-03-26": "Easter", + "1967-03-27": "Easter Monday", + "1967-05-01": "Labor Day", + "1967-05-04": "Ascension Day", + "1967-05-05": "Friday after Ascension Day", + "1967-05-14": "Whit Sunday", + "1967-05-15": "Whit Monday", + "1967-07-21": "National Day", + "1967-08-15": "Assumption of Mary", + "1967-11-01": "All Saints' Day", + "1967-11-11": "Armistice Day", + "1967-12-25": "Christmas Day", + "1967-12-26": "Bank Holiday", + "1968-01-01": "New Year's Day", + "1968-04-12": "Good Friday", + "1968-04-14": "Easter", + "1968-04-15": "Easter Monday", + "1968-05-01": "Labor Day", + "1968-05-23": "Ascension Day", + "1968-05-24": "Friday after Ascension Day", + "1968-06-02": "Whit Sunday", + "1968-06-03": "Whit Monday", + "1968-07-21": "National Day", + "1968-08-15": "Assumption of Mary", + "1968-11-01": "All Saints' Day", + "1968-11-11": "Armistice Day", + "1968-12-25": "Christmas Day", + "1968-12-26": "Bank Holiday", + "1969-01-01": "New Year's Day", + "1969-04-04": "Good Friday", + "1969-04-06": "Easter", + "1969-04-07": "Easter Monday", + "1969-05-01": "Labor Day", + "1969-05-15": "Ascension Day", + "1969-05-16": "Friday after Ascension Day", + "1969-05-25": "Whit Sunday", + "1969-05-26": "Whit Monday", + "1969-07-21": "National Day", + "1969-08-15": "Assumption of Mary", + "1969-11-01": "All Saints' Day", + "1969-11-11": "Armistice Day", + "1969-12-25": "Christmas Day", + "1969-12-26": "Bank Holiday", + "1970-01-01": "New Year's Day", + "1970-03-27": "Good Friday", + "1970-03-29": "Easter", + "1970-03-30": "Easter Monday", + "1970-05-01": "Labor Day", + "1970-05-07": "Ascension Day", + "1970-05-08": "Friday after Ascension Day", + "1970-05-17": "Whit Sunday", + "1970-05-18": "Whit Monday", + "1970-07-21": "National Day", + "1970-08-15": "Assumption of Mary", + "1970-11-01": "All Saints' Day", + "1970-11-11": "Armistice Day", + "1970-12-25": "Christmas Day", + "1970-12-26": "Bank Holiday", + "1971-01-01": "New Year's Day", + "1971-04-09": "Good Friday", + "1971-04-11": "Easter", + "1971-04-12": "Easter Monday", + "1971-05-01": "Labor Day", + "1971-05-20": "Ascension Day", + "1971-05-21": "Friday after Ascension Day", + "1971-05-30": "Whit Sunday", + "1971-05-31": "Whit Monday", + "1971-07-21": "National Day", + "1971-08-15": "Assumption of Mary", + "1971-11-01": "All Saints' Day", + "1971-11-11": "Armistice Day", + "1971-12-25": "Christmas Day", + "1971-12-26": "Bank Holiday", + "1972-01-01": "New Year's Day", + "1972-03-31": "Good Friday", + "1972-04-02": "Easter", + "1972-04-03": "Easter Monday", + "1972-05-01": "Labor Day", + "1972-05-11": "Ascension Day", + "1972-05-12": "Friday after Ascension Day", + "1972-05-21": "Whit Sunday", + "1972-05-22": "Whit Monday", + "1972-07-21": "National Day", + "1972-08-15": "Assumption of Mary", + "1972-11-01": "All Saints' Day", + "1972-11-11": "Armistice Day", + "1972-12-25": "Christmas Day", + "1972-12-26": "Bank Holiday", + "1973-01-01": "New Year's Day", + "1973-04-20": "Good Friday", + "1973-04-22": "Easter", + "1973-04-23": "Easter Monday", + "1973-05-01": "Labor Day", + "1973-05-31": "Ascension Day", + "1973-06-01": "Friday after Ascension Day", + "1973-06-10": "Whit Sunday", + "1973-06-11": "Whit Monday", + "1973-07-21": "National Day", + "1973-08-15": "Assumption of Mary", + "1973-11-01": "All Saints' Day", + "1973-11-11": "Armistice Day", + "1973-12-25": "Christmas Day", + "1973-12-26": "Bank Holiday", + "1974-01-01": "New Year's Day", + "1974-04-12": "Good Friday", + "1974-04-14": "Easter", + "1974-04-15": "Easter Monday", + "1974-05-01": "Labor Day", + "1974-05-23": "Ascension Day", + "1974-05-24": "Friday after Ascension Day", + "1974-06-02": "Whit Sunday", + "1974-06-03": "Whit Monday", + "1974-07-21": "National Day", + "1974-08-15": "Assumption of Mary", + "1974-11-01": "All Saints' Day", + "1974-11-11": "Armistice Day", + "1974-12-25": "Christmas Day", + "1974-12-26": "Bank Holiday", + "1975-01-01": "New Year's Day", + "1975-03-28": "Good Friday", + "1975-03-30": "Easter", + "1975-03-31": "Easter Monday", + "1975-05-01": "Labor Day", + "1975-05-08": "Ascension Day", + "1975-05-09": "Friday after Ascension Day", + "1975-05-18": "Whit Sunday", + "1975-05-19": "Whit Monday", + "1975-07-21": "National Day", + "1975-08-15": "Assumption of Mary", + "1975-11-01": "All Saints' Day", + "1975-11-11": "Armistice Day", + "1975-12-25": "Christmas Day", + "1975-12-26": "Bank Holiday", + "1976-01-01": "New Year's Day", + "1976-04-16": "Good Friday", + "1976-04-18": "Easter", + "1976-04-19": "Easter Monday", + "1976-05-01": "Labor Day", + "1976-05-27": "Ascension Day", + "1976-05-28": "Friday after Ascension Day", + "1976-06-06": "Whit Sunday", + "1976-06-07": "Whit Monday", + "1976-07-21": "National Day", + "1976-08-15": "Assumption of Mary", + "1976-11-01": "All Saints' Day", + "1976-11-11": "Armistice Day", + "1976-12-25": "Christmas Day", + "1976-12-26": "Bank Holiday", + "1977-01-01": "New Year's Day", + "1977-04-08": "Good Friday", + "1977-04-10": "Easter", + "1977-04-11": "Easter Monday", + "1977-05-01": "Labor Day", + "1977-05-19": "Ascension Day", + "1977-05-20": "Friday after Ascension Day", + "1977-05-29": "Whit Sunday", + "1977-05-30": "Whit Monday", + "1977-07-21": "National Day", + "1977-08-15": "Assumption of Mary", + "1977-11-01": "All Saints' Day", + "1977-11-11": "Armistice Day", + "1977-12-25": "Christmas Day", + "1977-12-26": "Bank Holiday", + "1978-01-01": "New Year's Day", + "1978-03-24": "Good Friday", + "1978-03-26": "Easter", + "1978-03-27": "Easter Monday", + "1978-05-01": "Labor Day", + "1978-05-04": "Ascension Day", + "1978-05-05": "Friday after Ascension Day", + "1978-05-14": "Whit Sunday", + "1978-05-15": "Whit Monday", + "1978-07-21": "National Day", + "1978-08-15": "Assumption of Mary", + "1978-11-01": "All Saints' Day", + "1978-11-11": "Armistice Day", + "1978-12-25": "Christmas Day", + "1978-12-26": "Bank Holiday", + "1979-01-01": "New Year's Day", + "1979-04-13": "Good Friday", + "1979-04-15": "Easter", + "1979-04-16": "Easter Monday", + "1979-05-01": "Labor Day", + "1979-05-24": "Ascension Day", + "1979-05-25": "Friday after Ascension Day", + "1979-06-03": "Whit Sunday", + "1979-06-04": "Whit Monday", + "1979-07-21": "National Day", + "1979-08-15": "Assumption of Mary", + "1979-11-01": "All Saints' Day", + "1979-11-11": "Armistice Day", + "1979-12-25": "Christmas Day", + "1979-12-26": "Bank Holiday", + "1980-01-01": "New Year's Day", + "1980-04-04": "Good Friday", + "1980-04-06": "Easter", + "1980-04-07": "Easter Monday", + "1980-05-01": "Labor Day", + "1980-05-15": "Ascension Day", + "1980-05-16": "Friday after Ascension Day", + "1980-05-25": "Whit Sunday", + "1980-05-26": "Whit Monday", + "1980-07-21": "National Day", + "1980-08-15": "Assumption of Mary", + "1980-11-01": "All Saints' Day", + "1980-11-11": "Armistice Day", + "1980-12-25": "Christmas Day", + "1980-12-26": "Bank Holiday", + "1981-01-01": "New Year's Day", + "1981-04-17": "Good Friday", + "1981-04-19": "Easter", + "1981-04-20": "Easter Monday", + "1981-05-01": "Labor Day", + "1981-05-28": "Ascension Day", + "1981-05-29": "Friday after Ascension Day", + "1981-06-07": "Whit Sunday", + "1981-06-08": "Whit Monday", + "1981-07-21": "National Day", + "1981-08-15": "Assumption of Mary", + "1981-11-01": "All Saints' Day", + "1981-11-11": "Armistice Day", + "1981-12-25": "Christmas Day", + "1981-12-26": "Bank Holiday", + "1982-01-01": "New Year's Day", + "1982-04-09": "Good Friday", + "1982-04-11": "Easter", + "1982-04-12": "Easter Monday", + "1982-05-01": "Labor Day", + "1982-05-20": "Ascension Day", + "1982-05-21": "Friday after Ascension Day", + "1982-05-30": "Whit Sunday", + "1982-05-31": "Whit Monday", + "1982-07-21": "National Day", + "1982-08-15": "Assumption of Mary", + "1982-11-01": "All Saints' Day", + "1982-11-11": "Armistice Day", + "1982-12-25": "Christmas Day", + "1982-12-26": "Bank Holiday", + "1983-01-01": "New Year's Day", + "1983-04-01": "Good Friday", + "1983-04-03": "Easter", + "1983-04-04": "Easter Monday", + "1983-05-01": "Labor Day", + "1983-05-12": "Ascension Day", + "1983-05-13": "Friday after Ascension Day", + "1983-05-22": "Whit Sunday", + "1983-05-23": "Whit Monday", + "1983-07-21": "National Day", + "1983-08-15": "Assumption of Mary", + "1983-11-01": "All Saints' Day", + "1983-11-11": "Armistice Day", + "1983-12-25": "Christmas Day", + "1983-12-26": "Bank Holiday", + "1984-01-01": "New Year's Day", + "1984-04-20": "Good Friday", + "1984-04-22": "Easter", + "1984-04-23": "Easter Monday", + "1984-05-01": "Labor Day", + "1984-05-31": "Ascension Day", + "1984-06-01": "Friday after Ascension Day", + "1984-06-10": "Whit Sunday", + "1984-06-11": "Whit Monday", + "1984-07-21": "National Day", + "1984-08-15": "Assumption of Mary", + "1984-11-01": "All Saints' Day", + "1984-11-11": "Armistice Day", + "1984-12-25": "Christmas Day", + "1984-12-26": "Bank Holiday", + "1985-01-01": "New Year's Day", + "1985-04-05": "Good Friday", + "1985-04-07": "Easter", + "1985-04-08": "Easter Monday", + "1985-05-01": "Labor Day", + "1985-05-16": "Ascension Day", + "1985-05-17": "Friday after Ascension Day", + "1985-05-26": "Whit Sunday", + "1985-05-27": "Whit Monday", + "1985-07-21": "National Day", + "1985-08-15": "Assumption of Mary", + "1985-11-01": "All Saints' Day", + "1985-11-11": "Armistice Day", + "1985-12-25": "Christmas Day", + "1985-12-26": "Bank Holiday", + "1986-01-01": "New Year's Day", + "1986-03-28": "Good Friday", + "1986-03-30": "Easter", + "1986-03-31": "Easter Monday", + "1986-05-01": "Labor Day", + "1986-05-08": "Ascension Day", + "1986-05-09": "Friday after Ascension Day", + "1986-05-18": "Whit Sunday", + "1986-05-19": "Whit Monday", + "1986-07-21": "National Day", + "1986-08-15": "Assumption of Mary", + "1986-11-01": "All Saints' Day", + "1986-11-11": "Armistice Day", + "1986-12-25": "Christmas Day", + "1986-12-26": "Bank Holiday", + "1987-01-01": "New Year's Day", + "1987-04-17": "Good Friday", + "1987-04-19": "Easter", + "1987-04-20": "Easter Monday", + "1987-05-01": "Labor Day", + "1987-05-28": "Ascension Day", + "1987-05-29": "Friday after Ascension Day", + "1987-06-07": "Whit Sunday", + "1987-06-08": "Whit Monday", + "1987-07-21": "National Day", + "1987-08-15": "Assumption of Mary", + "1987-11-01": "All Saints' Day", + "1987-11-11": "Armistice Day", + "1987-12-25": "Christmas Day", + "1987-12-26": "Bank Holiday", + "1988-01-01": "New Year's Day", + "1988-04-01": "Good Friday", + "1988-04-03": "Easter", + "1988-04-04": "Easter Monday", + "1988-05-01": "Labor Day", + "1988-05-12": "Ascension Day", + "1988-05-13": "Friday after Ascension Day", + "1988-05-22": "Whit Sunday", + "1988-05-23": "Whit Monday", + "1988-07-21": "National Day", + "1988-08-15": "Assumption of Mary", + "1988-11-01": "All Saints' Day", + "1988-11-11": "Armistice Day", + "1988-12-25": "Christmas Day", + "1988-12-26": "Bank Holiday", + "1989-01-01": "New Year's Day", + "1989-03-24": "Good Friday", + "1989-03-26": "Easter", + "1989-03-27": "Easter Monday", + "1989-05-01": "Labor Day", + "1989-05-04": "Ascension Day", + "1989-05-05": "Friday after Ascension Day", + "1989-05-14": "Whit Sunday", + "1989-05-15": "Whit Monday", + "1989-07-21": "National Day", + "1989-08-15": "Assumption of Mary", + "1989-11-01": "All Saints' Day", + "1989-11-11": "Armistice Day", + "1989-12-25": "Christmas Day", + "1989-12-26": "Bank Holiday", + "1990-01-01": "New Year's Day", + "1990-04-13": "Good Friday", + "1990-04-15": "Easter", + "1990-04-16": "Easter Monday", + "1990-05-01": "Labor Day", + "1990-05-24": "Ascension Day", + "1990-05-25": "Friday after Ascension Day", + "1990-06-03": "Whit Sunday", + "1990-06-04": "Whit Monday", + "1990-07-21": "National Day", + "1990-08-15": "Assumption of Mary", + "1990-11-01": "All Saints' Day", + "1990-11-11": "Armistice Day", + "1990-12-25": "Christmas Day", + "1990-12-26": "Bank Holiday", + "1991-01-01": "New Year's Day", + "1991-03-29": "Good Friday", + "1991-03-31": "Easter", + "1991-04-01": "Easter Monday", + "1991-05-01": "Labor Day", + "1991-05-09": "Ascension Day", + "1991-05-10": "Friday after Ascension Day", + "1991-05-19": "Whit Sunday", + "1991-05-20": "Whit Monday", + "1991-07-21": "National Day", + "1991-08-15": "Assumption of Mary", + "1991-11-01": "All Saints' Day", + "1991-11-11": "Armistice Day", + "1991-12-25": "Christmas Day", + "1991-12-26": "Bank Holiday", + "1992-01-01": "New Year's Day", + "1992-04-17": "Good Friday", + "1992-04-19": "Easter", + "1992-04-20": "Easter Monday", + "1992-05-01": "Labor Day", + "1992-05-28": "Ascension Day", + "1992-05-29": "Friday after Ascension Day", + "1992-06-07": "Whit Sunday", + "1992-06-08": "Whit Monday", + "1992-07-21": "National Day", + "1992-08-15": "Assumption of Mary", + "1992-11-01": "All Saints' Day", + "1992-11-11": "Armistice Day", + "1992-12-25": "Christmas Day", + "1992-12-26": "Bank Holiday", + "1993-01-01": "New Year's Day", + "1993-04-09": "Good Friday", + "1993-04-11": "Easter", + "1993-04-12": "Easter Monday", + "1993-05-01": "Labor Day", + "1993-05-20": "Ascension Day", + "1993-05-21": "Friday after Ascension Day", + "1993-05-30": "Whit Sunday", + "1993-05-31": "Whit Monday", + "1993-07-21": "National Day", + "1993-08-15": "Assumption of Mary", + "1993-11-01": "All Saints' Day", + "1993-11-11": "Armistice Day", + "1993-12-25": "Christmas Day", + "1993-12-26": "Bank Holiday", + "1994-01-01": "New Year's Day", + "1994-04-01": "Good Friday", + "1994-04-03": "Easter", + "1994-04-04": "Easter Monday", + "1994-05-01": "Labor Day", + "1994-05-12": "Ascension Day", + "1994-05-13": "Friday after Ascension Day", + "1994-05-22": "Whit Sunday", + "1994-05-23": "Whit Monday", + "1994-07-21": "National Day", + "1994-08-15": "Assumption of Mary", + "1994-11-01": "All Saints' Day", + "1994-11-11": "Armistice Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Bank Holiday", + "1995-01-01": "New Year's Day", + "1995-04-14": "Good Friday", + "1995-04-16": "Easter", + "1995-04-17": "Easter Monday", + "1995-05-01": "Labor Day", + "1995-05-25": "Ascension Day", + "1995-05-26": "Friday after Ascension Day", + "1995-06-04": "Whit Sunday", + "1995-06-05": "Whit Monday", + "1995-07-21": "National Day", + "1995-08-15": "Assumption of Mary", + "1995-11-01": "All Saints' Day", + "1995-11-11": "Armistice Day", + "1995-12-25": "Christmas Day", + "1995-12-26": "Bank Holiday", + "1996-01-01": "New Year's Day", + "1996-04-05": "Good Friday", + "1996-04-07": "Easter", + "1996-04-08": "Easter Monday", + "1996-05-01": "Labor Day", + "1996-05-16": "Ascension Day", + "1996-05-17": "Friday after Ascension Day", + "1996-05-26": "Whit Sunday", + "1996-05-27": "Whit Monday", + "1996-07-21": "National Day", + "1996-08-15": "Assumption of Mary", + "1996-11-01": "All Saints' Day", + "1996-11-11": "Armistice Day", + "1996-12-25": "Christmas Day", + "1996-12-26": "Bank Holiday", + "1997-01-01": "New Year's Day", + "1997-03-28": "Good Friday", + "1997-03-30": "Easter", + "1997-03-31": "Easter Monday", + "1997-05-01": "Labor Day", + "1997-05-08": "Ascension Day", + "1997-05-09": "Friday after Ascension Day", + "1997-05-18": "Whit Sunday", + "1997-05-19": "Whit Monday", + "1997-07-21": "National Day", + "1997-08-15": "Assumption of Mary", + "1997-11-01": "All Saints' Day", + "1997-11-11": "Armistice Day", + "1997-12-25": "Christmas Day", + "1997-12-26": "Bank Holiday", + "1998-01-01": "New Year's Day", + "1998-04-10": "Good Friday", + "1998-04-12": "Easter", + "1998-04-13": "Easter Monday", + "1998-05-01": "Labor Day", + "1998-05-21": "Ascension Day", + "1998-05-22": "Friday after Ascension Day", + "1998-05-31": "Whit Sunday", + "1998-06-01": "Whit Monday", + "1998-07-21": "National Day", + "1998-08-15": "Assumption of Mary", + "1998-11-01": "All Saints' Day", + "1998-11-11": "Armistice Day", + "1998-12-25": "Christmas Day", + "1998-12-26": "Bank Holiday", + "1999-01-01": "New Year's Day", + "1999-04-02": "Good Friday", + "1999-04-04": "Easter", + "1999-04-05": "Easter Monday", + "1999-05-01": "Labor Day", + "1999-05-13": "Ascension Day", + "1999-05-14": "Friday after Ascension Day", + "1999-05-23": "Whit Sunday", + "1999-05-24": "Whit Monday", + "1999-07-21": "National Day", + "1999-08-15": "Assumption of Mary", + "1999-11-01": "All Saints' Day", + "1999-11-11": "Armistice Day", + "1999-12-25": "Christmas Day", + "1999-12-26": "Bank Holiday", + "2000-01-01": "New Year's Day", + "2000-04-21": "Good Friday", + "2000-04-23": "Easter", + "2000-04-24": "Easter Monday", + "2000-05-01": "Labor Day", + "2000-06-01": "Ascension Day", + "2000-06-02": "Friday after Ascension Day", + "2000-06-11": "Whit Sunday", + "2000-06-12": "Whit Monday", + "2000-07-21": "National Day", + "2000-08-15": "Assumption of Mary", + "2000-11-01": "All Saints' Day", + "2000-11-11": "Armistice Day", + "2000-12-25": "Christmas Day", + "2000-12-26": "Bank Holiday", + "2001-01-01": "New Year's Day", + "2001-04-13": "Good Friday", + "2001-04-15": "Easter", + "2001-04-16": "Easter Monday", + "2001-05-01": "Labor Day", + "2001-05-24": "Ascension Day", + "2001-05-25": "Friday after Ascension Day", + "2001-06-03": "Whit Sunday", + "2001-06-04": "Whit Monday", + "2001-07-21": "National Day", + "2001-08-15": "Assumption of Mary", + "2001-11-01": "All Saints' Day", + "2001-11-11": "Armistice Day", + "2001-12-25": "Christmas Day", + "2001-12-26": "Bank Holiday", + "2002-01-01": "New Year's Day", + "2002-03-29": "Good Friday", + "2002-03-31": "Easter", + "2002-04-01": "Easter Monday", + "2002-05-01": "Labor Day", + "2002-05-09": "Ascension Day", + "2002-05-10": "Friday after Ascension Day", + "2002-05-19": "Whit Sunday", + "2002-05-20": "Whit Monday", + "2002-07-21": "National Day", + "2002-08-15": "Assumption of Mary", + "2002-11-01": "All Saints' Day", + "2002-11-11": "Armistice Day", + "2002-12-25": "Christmas Day", + "2002-12-26": "Bank Holiday", + "2003-01-01": "New Year's Day", + "2003-04-18": "Good Friday", + "2003-04-20": "Easter", + "2003-04-21": "Easter Monday", + "2003-05-01": "Labor Day", + "2003-05-29": "Ascension Day", + "2003-05-30": "Friday after Ascension Day", + "2003-06-08": "Whit Sunday", + "2003-06-09": "Whit Monday", + "2003-07-21": "National Day", + "2003-08-15": "Assumption of Mary", + "2003-11-01": "All Saints' Day", + "2003-11-11": "Armistice Day", + "2003-12-25": "Christmas Day", + "2003-12-26": "Bank Holiday", + "2004-01-01": "New Year's Day", + "2004-04-09": "Good Friday", + "2004-04-11": "Easter", + "2004-04-12": "Easter Monday", + "2004-05-01": "Labor Day", + "2004-05-20": "Ascension Day", + "2004-05-21": "Friday after Ascension Day", + "2004-05-30": "Whit Sunday", + "2004-05-31": "Whit Monday", + "2004-07-21": "National Day", + "2004-08-15": "Assumption of Mary", + "2004-11-01": "All Saints' Day", + "2004-11-11": "Armistice Day", + "2004-12-25": "Christmas Day", + "2004-12-26": "Bank Holiday", + "2005-01-01": "New Year's Day", + "2005-03-25": "Good Friday", + "2005-03-27": "Easter", + "2005-03-28": "Easter Monday", + "2005-05-01": "Labor Day", + "2005-05-05": "Ascension Day", + "2005-05-06": "Friday after Ascension Day", + "2005-05-15": "Whit Sunday", + "2005-05-16": "Whit Monday", + "2005-07-21": "National Day", + "2005-08-15": "Assumption of Mary", + "2005-11-01": "All Saints' Day", + "2005-11-11": "Armistice Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "Bank Holiday", + "2006-01-01": "New Year's Day", + "2006-04-14": "Good Friday", + "2006-04-16": "Easter", + "2006-04-17": "Easter Monday", + "2006-05-01": "Labor Day", + "2006-05-25": "Ascension Day", + "2006-05-26": "Friday after Ascension Day", + "2006-06-04": "Whit Sunday", + "2006-06-05": "Whit Monday", + "2006-07-21": "National Day", + "2006-08-15": "Assumption of Mary", + "2006-11-01": "All Saints' Day", + "2006-11-11": "Armistice Day", + "2006-12-25": "Christmas Day", + "2006-12-26": "Bank Holiday", + "2007-01-01": "New Year's Day", + "2007-04-06": "Good Friday", + "2007-04-08": "Easter", + "2007-04-09": "Easter Monday", + "2007-05-01": "Labor Day", + "2007-05-17": "Ascension Day", + "2007-05-18": "Friday after Ascension Day", + "2007-05-27": "Whit Sunday", + "2007-05-28": "Whit Monday", + "2007-07-21": "National Day", + "2007-08-15": "Assumption of Mary", + "2007-11-01": "All Saints' Day", + "2007-11-11": "Armistice Day", + "2007-12-25": "Christmas Day", + "2007-12-26": "Bank Holiday", + "2008-01-01": "New Year's Day", + "2008-03-21": "Good Friday", + "2008-03-23": "Easter", + "2008-03-24": "Easter Monday", + "2008-05-01": "Ascension Day; Labor Day", + "2008-05-02": "Friday after Ascension Day", + "2008-05-11": "Whit Sunday", + "2008-05-12": "Whit Monday", + "2008-07-21": "National Day", + "2008-08-15": "Assumption of Mary", + "2008-11-01": "All Saints' Day", + "2008-11-11": "Armistice Day", + "2008-12-25": "Christmas Day", + "2008-12-26": "Bank Holiday", + "2009-01-01": "New Year's Day", + "2009-04-10": "Good Friday", + "2009-04-12": "Easter", + "2009-04-13": "Easter Monday", + "2009-05-01": "Labor Day", + "2009-05-21": "Ascension Day", + "2009-05-22": "Friday after Ascension Day", + "2009-05-31": "Whit Sunday", + "2009-06-01": "Whit Monday", + "2009-07-21": "National Day", + "2009-08-15": "Assumption of Mary", + "2009-11-01": "All Saints' Day", + "2009-11-11": "Armistice Day", + "2009-12-25": "Christmas Day", + "2009-12-26": "Bank Holiday", + "2010-01-01": "New Year's Day", + "2010-04-02": "Good Friday", + "2010-04-04": "Easter", + "2010-04-05": "Easter Monday", + "2010-05-01": "Labor Day", + "2010-05-13": "Ascension Day", + "2010-05-14": "Friday after Ascension Day", + "2010-05-23": "Whit Sunday", + "2010-05-24": "Whit Monday", + "2010-07-21": "National Day", + "2010-08-15": "Assumption of Mary", + "2010-11-01": "All Saints' Day", + "2010-11-11": "Armistice Day", + "2010-12-25": "Christmas Day", + "2010-12-26": "Bank Holiday", + "2011-01-01": "New Year's Day", + "2011-04-22": "Good Friday", + "2011-04-24": "Easter", + "2011-04-25": "Easter Monday", + "2011-05-01": "Labor Day", + "2011-06-02": "Ascension Day", + "2011-06-03": "Friday after Ascension Day", + "2011-06-12": "Whit Sunday", + "2011-06-13": "Whit Monday", + "2011-07-21": "National Day", + "2011-08-15": "Assumption of Mary", + "2011-11-01": "All Saints' Day", + "2011-11-11": "Armistice Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "Bank Holiday", + "2012-01-01": "New Year's Day", + "2012-04-06": "Good Friday", + "2012-04-08": "Easter", + "2012-04-09": "Easter Monday", + "2012-05-01": "Labor Day", + "2012-05-17": "Ascension Day", + "2012-05-18": "Friday after Ascension Day", + "2012-05-27": "Whit Sunday", + "2012-05-28": "Whit Monday", + "2012-07-21": "National Day", + "2012-08-15": "Assumption of Mary", + "2012-11-01": "All Saints' Day", + "2012-11-11": "Armistice Day", + "2012-12-25": "Christmas Day", + "2012-12-26": "Bank Holiday", + "2013-01-01": "New Year's Day", + "2013-03-29": "Good Friday", + "2013-03-31": "Easter", + "2013-04-01": "Easter Monday", + "2013-05-01": "Labor Day", + "2013-05-09": "Ascension Day", + "2013-05-10": "Friday after Ascension Day", + "2013-05-19": "Whit Sunday", + "2013-05-20": "Whit Monday", + "2013-07-21": "National Day", + "2013-08-15": "Assumption of Mary", + "2013-11-01": "All Saints' Day", + "2013-11-11": "Armistice Day", + "2013-12-25": "Christmas Day", + "2013-12-26": "Bank Holiday", + "2014-01-01": "New Year's Day", + "2014-04-18": "Good Friday", + "2014-04-20": "Easter", + "2014-04-21": "Easter Monday", + "2014-05-01": "Labor Day", + "2014-05-29": "Ascension Day", + "2014-05-30": "Friday after Ascension Day", + "2014-06-08": "Whit Sunday", + "2014-06-09": "Whit Monday", + "2014-07-21": "National Day", + "2014-08-15": "Assumption of Mary", + "2014-11-01": "All Saints' Day", + "2014-11-11": "Armistice Day", + "2014-12-25": "Christmas Day", + "2014-12-26": "Bank Holiday", + "2015-01-01": "New Year's Day", + "2015-04-03": "Good Friday", + "2015-04-05": "Easter", + "2015-04-06": "Easter Monday", + "2015-05-01": "Labor Day", + "2015-05-14": "Ascension Day", + "2015-05-15": "Friday after Ascension Day", + "2015-05-24": "Whit Sunday", + "2015-05-25": "Whit Monday", + "2015-07-21": "National Day", + "2015-08-15": "Assumption of Mary", + "2015-11-01": "All Saints' Day", + "2015-11-11": "Armistice Day", + "2015-12-25": "Christmas Day", + "2015-12-26": "Bank Holiday", + "2016-01-01": "New Year's Day", + "2016-03-25": "Good Friday", + "2016-03-27": "Easter", + "2016-03-28": "Easter Monday", + "2016-05-01": "Labor Day", + "2016-05-05": "Ascension Day", + "2016-05-06": "Friday after Ascension Day", + "2016-05-15": "Whit Sunday", + "2016-05-16": "Whit Monday", + "2016-07-21": "National Day", + "2016-08-15": "Assumption of Mary", + "2016-11-01": "All Saints' Day", + "2016-11-11": "Armistice Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "Bank Holiday", + "2017-01-01": "New Year's Day", + "2017-04-14": "Good Friday", + "2017-04-16": "Easter", + "2017-04-17": "Easter Monday", + "2017-05-01": "Labor Day", + "2017-05-25": "Ascension Day", + "2017-05-26": "Friday after Ascension Day", + "2017-06-04": "Whit Sunday", + "2017-06-05": "Whit Monday", + "2017-07-21": "National Day", + "2017-08-15": "Assumption of Mary", + "2017-11-01": "All Saints' Day", + "2017-11-11": "Armistice Day", + "2017-12-25": "Christmas Day", + "2017-12-26": "Bank Holiday", + "2018-01-01": "New Year's Day", + "2018-03-30": "Good Friday", + "2018-04-01": "Easter", + "2018-04-02": "Easter Monday", + "2018-05-01": "Labor Day", + "2018-05-10": "Ascension Day", + "2018-05-11": "Friday after Ascension Day", + "2018-05-20": "Whit Sunday", + "2018-05-21": "Whit Monday", + "2018-07-21": "National Day", + "2018-08-15": "Assumption of Mary", + "2018-11-01": "All Saints' Day", + "2018-11-11": "Armistice Day", + "2018-12-25": "Christmas Day", + "2018-12-26": "Bank Holiday", + "2019-01-01": "New Year's Day", + "2019-04-19": "Good Friday", + "2019-04-21": "Easter", + "2019-04-22": "Easter Monday", + "2019-05-01": "Labor Day", + "2019-05-30": "Ascension Day", + "2019-05-31": "Friday after Ascension Day", + "2019-06-09": "Whit Sunday", + "2019-06-10": "Whit Monday", + "2019-07-21": "National Day", + "2019-08-15": "Assumption of Mary", + "2019-11-01": "All Saints' Day", + "2019-11-11": "Armistice Day", + "2019-12-25": "Christmas Day", + "2019-12-26": "Bank Holiday", + "2020-01-01": "New Year's Day", + "2020-04-10": "Good Friday", + "2020-04-12": "Easter", + "2020-04-13": "Easter Monday", + "2020-05-01": "Labor Day", + "2020-05-21": "Ascension Day", + "2020-05-22": "Friday after Ascension Day", + "2020-05-31": "Whit Sunday", + "2020-06-01": "Whit Monday", + "2020-07-21": "National Day", + "2020-08-15": "Assumption of Mary", + "2020-11-01": "All Saints' Day", + "2020-11-11": "Armistice Day", + "2020-12-25": "Christmas Day", + "2020-12-26": "Bank Holiday", + "2021-01-01": "New Year's Day", + "2021-04-02": "Good Friday", + "2021-04-04": "Easter", + "2021-04-05": "Easter Monday", + "2021-05-01": "Labor Day", + "2021-05-13": "Ascension Day", + "2021-05-14": "Friday after Ascension Day", + "2021-05-23": "Whit Sunday", + "2021-05-24": "Whit Monday", + "2021-07-21": "National Day", + "2021-08-15": "Assumption of Mary", + "2021-11-01": "All Saints' Day", + "2021-11-11": "Armistice Day", + "2021-12-25": "Christmas Day", + "2021-12-26": "Bank Holiday", + "2022-01-01": "New Year's Day", + "2022-04-15": "Good Friday", + "2022-04-17": "Easter", + "2022-04-18": "Easter Monday", + "2022-05-01": "Labor Day", + "2022-05-26": "Ascension Day", + "2022-05-27": "Friday after Ascension Day", + "2022-06-05": "Whit Sunday", + "2022-06-06": "Whit Monday", + "2022-07-21": "National Day", + "2022-08-15": "Assumption of Mary", + "2022-11-01": "All Saints' Day", + "2022-11-11": "Armistice Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "Bank Holiday", + "2023-01-01": "New Year's Day", + "2023-04-07": "Good Friday", + "2023-04-09": "Easter", + "2023-04-10": "Easter Monday", + "2023-05-01": "Labor Day", + "2023-05-18": "Ascension Day", + "2023-05-19": "Friday after Ascension Day", + "2023-05-28": "Whit Sunday", + "2023-05-29": "Whit Monday", + "2023-07-21": "National Day", + "2023-08-15": "Assumption of Mary", + "2023-11-01": "All Saints' Day", + "2023-11-11": "Armistice Day", + "2023-12-25": "Christmas Day", + "2023-12-26": "Bank Holiday", + "2024-01-01": "New Year's Day", + "2024-03-29": "Good Friday", + "2024-03-31": "Easter", + "2024-04-01": "Easter Monday", + "2024-05-01": "Labor Day", + "2024-05-09": "Ascension Day", + "2024-05-10": "Friday after Ascension Day", + "2024-05-19": "Whit Sunday", + "2024-05-20": "Whit Monday", + "2024-07-21": "National Day", + "2024-08-15": "Assumption of Mary", + "2024-11-01": "All Saints' Day", + "2024-11-11": "Armistice Day", + "2024-12-25": "Christmas Day", + "2024-12-26": "Bank Holiday", + "2025-01-01": "New Year's Day", + "2025-04-18": "Good Friday", + "2025-04-20": "Easter", + "2025-04-21": "Easter Monday", + "2025-05-01": "Labor Day", + "2025-05-29": "Ascension Day", + "2025-05-30": "Friday after Ascension Day", + "2025-06-08": "Whit Sunday", + "2025-06-09": "Whit Monday", + "2025-07-21": "National Day", + "2025-08-15": "Assumption of Mary", + "2025-11-01": "All Saints' Day", + "2025-11-11": "Armistice Day", + "2025-12-25": "Christmas Day", + "2025-12-26": "Bank Holiday", + "2026-01-01": "New Year's Day", + "2026-04-03": "Good Friday", + "2026-04-05": "Easter", + "2026-04-06": "Easter Monday", + "2026-05-01": "Labor Day", + "2026-05-14": "Ascension Day", + "2026-05-15": "Friday after Ascension Day", + "2026-05-24": "Whit Sunday", + "2026-05-25": "Whit Monday", + "2026-07-21": "National Day", + "2026-08-15": "Assumption of Mary", + "2026-11-01": "All Saints' Day", + "2026-11-11": "Armistice Day", + "2026-12-25": "Christmas Day", + "2026-12-26": "Bank Holiday", + "2027-01-01": "New Year's Day", + "2027-03-26": "Good Friday", + "2027-03-28": "Easter", + "2027-03-29": "Easter Monday", + "2027-05-01": "Labor Day", + "2027-05-06": "Ascension Day", + "2027-05-07": "Friday after Ascension Day", + "2027-05-16": "Whit Sunday", + "2027-05-17": "Whit Monday", + "2027-07-21": "National Day", + "2027-08-15": "Assumption of Mary", + "2027-11-01": "All Saints' Day", + "2027-11-11": "Armistice Day", + "2027-12-25": "Christmas Day", + "2027-12-26": "Bank Holiday", + "2028-01-01": "New Year's Day", + "2028-04-14": "Good Friday", + "2028-04-16": "Easter", + "2028-04-17": "Easter Monday", + "2028-05-01": "Labor Day", + "2028-05-25": "Ascension Day", + "2028-05-26": "Friday after Ascension Day", + "2028-06-04": "Whit Sunday", + "2028-06-05": "Whit Monday", + "2028-07-21": "National Day", + "2028-08-15": "Assumption of Mary", + "2028-11-01": "All Saints' Day", + "2028-11-11": "Armistice Day", + "2028-12-25": "Christmas Day", + "2028-12-26": "Bank Holiday", + "2029-01-01": "New Year's Day", + "2029-03-30": "Good Friday", + "2029-04-01": "Easter", + "2029-04-02": "Easter Monday", + "2029-05-01": "Labor Day", + "2029-05-10": "Ascension Day", + "2029-05-11": "Friday after Ascension Day", + "2029-05-20": "Whit Sunday", + "2029-05-21": "Whit Monday", + "2029-07-21": "National Day", + "2029-08-15": "Assumption of Mary", + "2029-11-01": "All Saints' Day", + "2029-11-11": "Armistice Day", + "2029-12-25": "Christmas Day", + "2029-12-26": "Bank Holiday", + "2030-01-01": "New Year's Day", + "2030-04-19": "Good Friday", + "2030-04-21": "Easter", + "2030-04-22": "Easter Monday", + "2030-05-01": "Labor Day", + "2030-05-30": "Ascension Day", + "2030-05-31": "Friday after Ascension Day", + "2030-06-09": "Whit Sunday", + "2030-06-10": "Whit Monday", + "2030-07-21": "National Day", + "2030-08-15": "Assumption of Mary", + "2030-11-01": "All Saints' Day", + "2030-11-11": "Armistice Day", + "2030-12-25": "Christmas Day", + "2030-12-26": "Bank Holiday", + "2031-01-01": "New Year's Day", + "2031-04-11": "Good Friday", + "2031-04-13": "Easter", + "2031-04-14": "Easter Monday", + "2031-05-01": "Labor Day", + "2031-05-22": "Ascension Day", + "2031-05-23": "Friday after Ascension Day", + "2031-06-01": "Whit Sunday", + "2031-06-02": "Whit Monday", + "2031-07-21": "National Day", + "2031-08-15": "Assumption of Mary", + "2031-11-01": "All Saints' Day", + "2031-11-11": "Armistice Day", + "2031-12-25": "Christmas Day", + "2031-12-26": "Bank Holiday", + "2032-01-01": "New Year's Day", + "2032-03-26": "Good Friday", + "2032-03-28": "Easter", + "2032-03-29": "Easter Monday", + "2032-05-01": "Labor Day", + "2032-05-06": "Ascension Day", + "2032-05-07": "Friday after Ascension Day", + "2032-05-16": "Whit Sunday", + "2032-05-17": "Whit Monday", + "2032-07-21": "National Day", + "2032-08-15": "Assumption of Mary", + "2032-11-01": "All Saints' Day", + "2032-11-11": "Armistice Day", + "2032-12-25": "Christmas Day", + "2032-12-26": "Bank Holiday", + "2033-01-01": "New Year's Day", + "2033-04-15": "Good Friday", + "2033-04-17": "Easter", + "2033-04-18": "Easter Monday", + "2033-05-01": "Labor Day", + "2033-05-26": "Ascension Day", + "2033-05-27": "Friday after Ascension Day", + "2033-06-05": "Whit Sunday", + "2033-06-06": "Whit Monday", + "2033-07-21": "National Day", + "2033-08-15": "Assumption of Mary", + "2033-11-01": "All Saints' Day", + "2033-11-11": "Armistice Day", + "2033-12-25": "Christmas Day", + "2033-12-26": "Bank Holiday", + "2034-01-01": "New Year's Day", + "2034-04-07": "Good Friday", + "2034-04-09": "Easter", + "2034-04-10": "Easter Monday", + "2034-05-01": "Labor Day", + "2034-05-18": "Ascension Day", + "2034-05-19": "Friday after Ascension Day", + "2034-05-28": "Whit Sunday", + "2034-05-29": "Whit Monday", + "2034-07-21": "National Day", + "2034-08-15": "Assumption of Mary", + "2034-11-01": "All Saints' Day", + "2034-11-11": "Armistice Day", + "2034-12-25": "Christmas Day", + "2034-12-26": "Bank Holiday", + "2035-01-01": "New Year's Day", + "2035-03-23": "Good Friday", + "2035-03-25": "Easter", + "2035-03-26": "Easter Monday", + "2035-05-01": "Labor Day", + "2035-05-03": "Ascension Day", + "2035-05-04": "Friday after Ascension Day", + "2035-05-13": "Whit Sunday", + "2035-05-14": "Whit Monday", + "2035-07-21": "National Day", + "2035-08-15": "Assumption of Mary", + "2035-11-01": "All Saints' Day", + "2035-11-11": "Armistice Day", + "2035-12-25": "Christmas Day", + "2035-12-26": "Bank Holiday", + "2036-01-01": "New Year's Day", + "2036-04-11": "Good Friday", + "2036-04-13": "Easter", + "2036-04-14": "Easter Monday", + "2036-05-01": "Labor Day", + "2036-05-22": "Ascension Day", + "2036-05-23": "Friday after Ascension Day", + "2036-06-01": "Whit Sunday", + "2036-06-02": "Whit Monday", + "2036-07-21": "National Day", + "2036-08-15": "Assumption of Mary", + "2036-11-01": "All Saints' Day", + "2036-11-11": "Armistice Day", + "2036-12-25": "Christmas Day", + "2036-12-26": "Bank Holiday", + "2037-01-01": "New Year's Day", + "2037-04-03": "Good Friday", + "2037-04-05": "Easter", + "2037-04-06": "Easter Monday", + "2037-05-01": "Labor Day", + "2037-05-14": "Ascension Day", + "2037-05-15": "Friday after Ascension Day", + "2037-05-24": "Whit Sunday", + "2037-05-25": "Whit Monday", + "2037-07-21": "National Day", + "2037-08-15": "Assumption of Mary", + "2037-11-01": "All Saints' Day", + "2037-11-11": "Armistice Day", + "2037-12-25": "Christmas Day", + "2037-12-26": "Bank Holiday", + "2038-01-01": "New Year's Day", + "2038-04-23": "Good Friday", + "2038-04-25": "Easter", + "2038-04-26": "Easter Monday", + "2038-05-01": "Labor Day", + "2038-06-03": "Ascension Day", + "2038-06-04": "Friday after Ascension Day", + "2038-06-13": "Whit Sunday", + "2038-06-14": "Whit Monday", + "2038-07-21": "National Day", + "2038-08-15": "Assumption of Mary", + "2038-11-01": "All Saints' Day", + "2038-11-11": "Armistice Day", + "2038-12-25": "Christmas Day", + "2038-12-26": "Bank Holiday", + "2039-01-01": "New Year's Day", + "2039-04-08": "Good Friday", + "2039-04-10": "Easter", + "2039-04-11": "Easter Monday", + "2039-05-01": "Labor Day", + "2039-05-19": "Ascension Day", + "2039-05-20": "Friday after Ascension Day", + "2039-05-29": "Whit Sunday", + "2039-05-30": "Whit Monday", + "2039-07-21": "National Day", + "2039-08-15": "Assumption of Mary", + "2039-11-01": "All Saints' Day", + "2039-11-11": "Armistice Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Bank Holiday", + "2040-01-01": "New Year's Day", + "2040-03-30": "Good Friday", + "2040-04-01": "Easter", + "2040-04-02": "Easter Monday", + "2040-05-01": "Labor Day", + "2040-05-10": "Ascension Day", + "2040-05-11": "Friday after Ascension Day", + "2040-05-20": "Whit Sunday", + "2040-05-21": "Whit Monday", + "2040-07-21": "National Day", + "2040-08-15": "Assumption of Mary", + "2040-11-01": "All Saints' Day", + "2040-11-11": "Armistice Day", + "2040-12-25": "Christmas Day", + "2040-12-26": "Bank Holiday", + "2041-01-01": "New Year's Day", + "2041-04-19": "Good Friday", + "2041-04-21": "Easter", + "2041-04-22": "Easter Monday", + "2041-05-01": "Labor Day", + "2041-05-30": "Ascension Day", + "2041-05-31": "Friday after Ascension Day", + "2041-06-09": "Whit Sunday", + "2041-06-10": "Whit Monday", + "2041-07-21": "National Day", + "2041-08-15": "Assumption of Mary", + "2041-11-01": "All Saints' Day", + "2041-11-11": "Armistice Day", + "2041-12-25": "Christmas Day", + "2041-12-26": "Bank Holiday", + "2042-01-01": "New Year's Day", + "2042-04-04": "Good Friday", + "2042-04-06": "Easter", + "2042-04-07": "Easter Monday", + "2042-05-01": "Labor Day", + "2042-05-15": "Ascension Day", + "2042-05-16": "Friday after Ascension Day", + "2042-05-25": "Whit Sunday", + "2042-05-26": "Whit Monday", + "2042-07-21": "National Day", + "2042-08-15": "Assumption of Mary", + "2042-11-01": "All Saints' Day", + "2042-11-11": "Armistice Day", + "2042-12-25": "Christmas Day", + "2042-12-26": "Bank Holiday", + "2043-01-01": "New Year's Day", + "2043-03-27": "Good Friday", + "2043-03-29": "Easter", + "2043-03-30": "Easter Monday", + "2043-05-01": "Labor Day", + "2043-05-07": "Ascension Day", + "2043-05-08": "Friday after Ascension Day", + "2043-05-17": "Whit Sunday", + "2043-05-18": "Whit Monday", + "2043-07-21": "National Day", + "2043-08-15": "Assumption of Mary", + "2043-11-01": "All Saints' Day", + "2043-11-11": "Armistice Day", + "2043-12-25": "Christmas Day", + "2043-12-26": "Bank Holiday", + "2044-01-01": "New Year's Day", + "2044-04-15": "Good Friday", + "2044-04-17": "Easter", + "2044-04-18": "Easter Monday", + "2044-05-01": "Labor Day", + "2044-05-26": "Ascension Day", + "2044-05-27": "Friday after Ascension Day", + "2044-06-05": "Whit Sunday", + "2044-06-06": "Whit Monday", + "2044-07-21": "National Day", + "2044-08-15": "Assumption of Mary", + "2044-11-01": "All Saints' Day", + "2044-11-11": "Armistice Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "Bank Holiday", + "2045-01-01": "New Year's Day", + "2045-04-07": "Good Friday", + "2045-04-09": "Easter", + "2045-04-10": "Easter Monday", + "2045-05-01": "Labor Day", + "2045-05-18": "Ascension Day", + "2045-05-19": "Friday after Ascension Day", + "2045-05-28": "Whit Sunday", + "2045-05-29": "Whit Monday", + "2045-07-21": "National Day", + "2045-08-15": "Assumption of Mary", + "2045-11-01": "All Saints' Day", + "2045-11-11": "Armistice Day", + "2045-12-25": "Christmas Day", + "2045-12-26": "Bank Holiday", + "2046-01-01": "New Year's Day", + "2046-03-23": "Good Friday", + "2046-03-25": "Easter", + "2046-03-26": "Easter Monday", + "2046-05-01": "Labor Day", + "2046-05-03": "Ascension Day", + "2046-05-04": "Friday after Ascension Day", + "2046-05-13": "Whit Sunday", + "2046-05-14": "Whit Monday", + "2046-07-21": "National Day", + "2046-08-15": "Assumption of Mary", + "2046-11-01": "All Saints' Day", + "2046-11-11": "Armistice Day", + "2046-12-25": "Christmas Day", + "2046-12-26": "Bank Holiday", + "2047-01-01": "New Year's Day", + "2047-04-12": "Good Friday", + "2047-04-14": "Easter", + "2047-04-15": "Easter Monday", + "2047-05-01": "Labor Day", + "2047-05-23": "Ascension Day", + "2047-05-24": "Friday after Ascension Day", + "2047-06-02": "Whit Sunday", + "2047-06-03": "Whit Monday", + "2047-07-21": "National Day", + "2047-08-15": "Assumption of Mary", + "2047-11-01": "All Saints' Day", + "2047-11-11": "Armistice Day", + "2047-12-25": "Christmas Day", + "2047-12-26": "Bank Holiday", + "2048-01-01": "New Year's Day", + "2048-04-03": "Good Friday", + "2048-04-05": "Easter", + "2048-04-06": "Easter Monday", + "2048-05-01": "Labor Day", + "2048-05-14": "Ascension Day", + "2048-05-15": "Friday after Ascension Day", + "2048-05-24": "Whit Sunday", + "2048-05-25": "Whit Monday", + "2048-07-21": "National Day", + "2048-08-15": "Assumption of Mary", + "2048-11-01": "All Saints' Day", + "2048-11-11": "Armistice Day", + "2048-12-25": "Christmas Day", + "2048-12-26": "Bank Holiday", + "2049-01-01": "New Year's Day", + "2049-04-16": "Good Friday", + "2049-04-18": "Easter", + "2049-04-19": "Easter Monday", + "2049-05-01": "Labor Day", + "2049-05-27": "Ascension Day", + "2049-05-28": "Friday after Ascension Day", + "2049-06-06": "Whit Sunday", + "2049-06-07": "Whit Monday", + "2049-07-21": "National Day", + "2049-08-15": "Assumption of Mary", + "2049-11-01": "All Saints' Day", + "2049-11-11": "Armistice Day", + "2049-12-25": "Christmas Day", + "2049-12-26": "Bank Holiday", + "2050-01-01": "New Year's Day", + "2050-04-08": "Good Friday", + "2050-04-10": "Easter", + "2050-04-11": "Easter Monday", + "2050-05-01": "Labor Day", + "2050-05-19": "Ascension Day", + "2050-05-20": "Friday after Ascension Day", + "2050-05-29": "Whit Sunday", + "2050-05-30": "Whit Monday", + "2050-07-21": "National Day", + "2050-08-15": "Assumption of Mary", + "2050-11-01": "All Saints' Day", + "2050-11-11": "Armistice Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "Bank Holiday" +} diff --git a/snapshots/countries/BF.json b/snapshots/countries/BF.json new file mode 100644 index 000000000..187fd39c2 --- /dev/null +++ b/snapshots/countries/BF.json @@ -0,0 +1,1403 @@ +{ + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day (Observed)", + "1961-03-08": "International Women's Day", + "1961-03-18": "Eid al-Fitr* (*estimated)", + "1961-04-03": "Easter Monday", + "1961-05-01": "Labour Day", + "1961-05-11": "Ascension Day", + "1961-05-25": "Eid al-Adha* (*estimated)", + "1961-08-05": "Independence Day", + "1961-08-15": "Assumption Day", + "1961-08-23": "Mawlid* (*estimated)", + "1961-11-01": "All Saints' Day", + "1961-12-11": "Proclamation of Independence Day", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-03-07": "Eid al-Fitr* (*estimated)", + "1962-03-08": "International Women's Day", + "1962-04-23": "Easter Monday", + "1962-05-01": "Labour Day", + "1962-05-14": "Eid al-Adha* (*estimated)", + "1962-05-31": "Ascension Day", + "1962-08-05": "Independence Day", + "1962-08-06": "Independence Day (Observed)", + "1962-08-12": "Mawlid* (*estimated)", + "1962-08-15": "Assumption Day", + "1962-11-01": "All Saints' Day", + "1962-12-11": "Proclamation of Independence Day", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-02-24": "Eid al-Fitr* (*estimated)", + "1963-03-08": "International Women's Day", + "1963-04-15": "Easter Monday", + "1963-05-01": "Labour Day", + "1963-05-03": "Eid al-Adha* (*estimated)", + "1963-05-23": "Ascension Day", + "1963-08-02": "Mawlid* (*estimated)", + "1963-08-05": "Independence Day", + "1963-08-15": "Assumption Day", + "1963-11-01": "All Saints' Day", + "1963-12-11": "Proclamation of Independence Day", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-02-14": "Eid al-Fitr* (*estimated)", + "1964-03-08": "International Women's Day", + "1964-03-09": "International Women's Day (Observed)", + "1964-03-30": "Easter Monday", + "1964-04-22": "Eid al-Adha* (*estimated)", + "1964-05-01": "Labour Day", + "1964-05-07": "Ascension Day", + "1964-07-21": "Mawlid* (*estimated)", + "1964-08-05": "Independence Day", + "1964-08-15": "Assumption Day", + "1964-11-01": "All Saints' Day", + "1964-11-02": "All Saints' Day (Observed)", + "1964-12-11": "Proclamation of Independence Day", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-02-02": "Eid al-Fitr* (*estimated)", + "1965-03-08": "International Women's Day", + "1965-04-11": "Eid al-Adha* (*estimated)", + "1965-04-19": "Easter Monday", + "1965-05-01": "Labour Day", + "1965-05-27": "Ascension Day", + "1965-07-10": "Mawlid* (*estimated)", + "1965-08-05": "Independence Day", + "1965-08-15": "Assumption Day", + "1965-08-16": "Assumption Day (Observed)", + "1965-11-01": "All Saints' Day", + "1965-12-11": "Proclamation of Independence Day", + "1965-12-25": "Christmas Day", + "1966-01-01": "New Year's Day", + "1966-01-22": "Eid al-Fitr* (*estimated)", + "1966-03-08": "International Women's Day", + "1966-04-01": "Eid al-Adha* (*estimated)", + "1966-04-11": "Easter Monday", + "1966-05-01": "Labour Day", + "1966-05-02": "Labour Day (Observed)", + "1966-05-19": "Ascension Day", + "1966-07-01": "Mawlid* (*estimated)", + "1966-08-05": "Independence Day", + "1966-08-15": "Assumption Day", + "1966-11-01": "All Saints' Day", + "1966-12-11": "Proclamation of Independence Day", + "1966-12-12": "Proclamation of Independence Day (Observed)", + "1966-12-25": "Christmas Day", + "1966-12-26": "Christmas Day (Observed)", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day (Observed)", + "1967-01-03": "Revolution Day", + "1967-01-12": "Eid al-Fitr* (*estimated)", + "1967-03-08": "International Women's Day", + "1967-03-21": "Eid al-Adha* (*estimated)", + "1967-03-27": "Easter Monday", + "1967-05-01": "Labour Day", + "1967-05-04": "Ascension Day", + "1967-06-19": "Mawlid* (*estimated)", + "1967-08-05": "Independence Day", + "1967-08-15": "Assumption Day", + "1967-11-01": "All Saints' Day", + "1967-12-11": "Proclamation of Independence Day", + "1967-12-25": "Christmas Day", + "1968-01-01": "Eid al-Fitr* (*estimated); New Year's Day", + "1968-01-03": "Revolution Day", + "1968-03-08": "International Women's Day", + "1968-03-09": "Eid al-Adha* (*estimated)", + "1968-04-15": "Easter Monday", + "1968-05-01": "Labour Day", + "1968-05-23": "Ascension Day", + "1968-06-08": "Mawlid* (*estimated)", + "1968-08-05": "Independence Day", + "1968-08-15": "Assumption Day", + "1968-11-01": "All Saints' Day", + "1968-12-11": "Proclamation of Independence Day", + "1968-12-21": "Eid al-Fitr* (*estimated)", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-01-03": "Revolution Day", + "1969-02-27": "Eid al-Adha* (*estimated)", + "1969-03-08": "International Women's Day", + "1969-04-07": "Easter Monday", + "1969-05-01": "Labour Day", + "1969-05-15": "Ascension Day", + "1969-05-28": "Mawlid* (*estimated)", + "1969-08-05": "Independence Day", + "1969-08-15": "Assumption Day", + "1969-11-01": "All Saints' Day", + "1969-12-10": "Eid al-Fitr* (*estimated)", + "1969-12-11": "Proclamation of Independence Day", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-01-03": "Revolution Day", + "1970-02-16": "Eid al-Adha* (*estimated)", + "1970-03-08": "International Women's Day", + "1970-03-09": "International Women's Day (Observed)", + "1970-03-30": "Easter Monday", + "1970-05-01": "Labour Day", + "1970-05-07": "Ascension Day", + "1970-05-18": "Mawlid* (*estimated)", + "1970-08-05": "Independence Day", + "1970-08-15": "Assumption Day", + "1970-11-01": "All Saints' Day", + "1970-11-02": "All Saints' Day (Observed)", + "1970-11-30": "Eid al-Fitr* (*estimated)", + "1970-12-11": "Proclamation of Independence Day", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-01-03": "Revolution Day", + "1971-01-04": "Revolution Day (Observed)", + "1971-02-06": "Eid al-Adha* (*estimated)", + "1971-03-08": "International Women's Day", + "1971-04-12": "Easter Monday", + "1971-05-01": "Labour Day", + "1971-05-07": "Mawlid* (*estimated)", + "1971-05-20": "Ascension Day", + "1971-08-05": "Independence Day", + "1971-08-15": "Assumption Day", + "1971-08-16": "Assumption Day (Observed)", + "1971-11-01": "All Saints' Day", + "1971-11-19": "Eid al-Fitr* (*estimated)", + "1971-12-11": "Proclamation of Independence Day", + "1971-12-25": "Christmas Day", + "1972-01-01": "New Year's Day", + "1972-01-03": "Revolution Day", + "1972-01-26": "Eid al-Adha* (*estimated)", + "1972-03-08": "International Women's Day", + "1972-04-03": "Easter Monday", + "1972-04-25": "Mawlid* (*estimated)", + "1972-05-01": "Labour Day", + "1972-05-11": "Ascension Day", + "1972-08-05": "Independence Day", + "1972-08-15": "Assumption Day", + "1972-11-01": "All Saints' Day", + "1972-11-07": "Eid al-Fitr* (*estimated)", + "1972-12-11": "Proclamation of Independence Day", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-01-03": "Revolution Day", + "1973-01-14": "Eid al-Adha* (*estimated)", + "1973-03-08": "International Women's Day", + "1973-04-15": "Mawlid* (*estimated)", + "1973-04-23": "Easter Monday", + "1973-05-01": "Labour Day", + "1973-05-31": "Ascension Day", + "1973-08-05": "Independence Day", + "1973-08-06": "Independence Day (Observed)", + "1973-08-15": "Assumption Day", + "1973-10-27": "Eid al-Fitr* (*estimated)", + "1973-11-01": "All Saints' Day", + "1973-12-11": "Proclamation of Independence Day", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-01-03": "Eid al-Adha* (*estimated); Revolution Day", + "1974-03-08": "International Women's Day", + "1974-04-04": "Mawlid* (*estimated)", + "1974-04-15": "Easter Monday", + "1974-05-01": "Labour Day", + "1974-05-23": "Ascension Day", + "1974-08-05": "Independence Day", + "1974-08-15": "Assumption Day", + "1974-10-16": "Eid al-Fitr* (*estimated)", + "1974-11-01": "All Saints' Day", + "1974-12-11": "Proclamation of Independence Day", + "1974-12-24": "Eid al-Adha* (*estimated)", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-01-03": "Revolution Day", + "1975-03-08": "International Women's Day", + "1975-03-24": "Mawlid* (*estimated)", + "1975-03-31": "Easter Monday", + "1975-05-01": "Labour Day", + "1975-05-08": "Ascension Day", + "1975-08-05": "Independence Day", + "1975-08-15": "Assumption Day", + "1975-10-06": "Eid al-Fitr* (*estimated)", + "1975-11-01": "All Saints' Day", + "1975-12-11": "Proclamation of Independence Day", + "1975-12-13": "Eid al-Adha* (*estimated)", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-01-03": "Revolution Day", + "1976-03-08": "International Women's Day", + "1976-03-12": "Mawlid* (*estimated)", + "1976-04-19": "Easter Monday", + "1976-05-01": "Labour Day", + "1976-05-27": "Ascension Day", + "1976-08-05": "Independence Day", + "1976-08-15": "Assumption Day", + "1976-08-16": "Assumption Day (Observed)", + "1976-09-24": "Eid al-Fitr* (*estimated)", + "1976-11-01": "All Saints' Day", + "1976-12-01": "Eid al-Adha* (*estimated)", + "1976-12-11": "Proclamation of Independence Day", + "1976-12-25": "Christmas Day", + "1977-01-01": "New Year's Day", + "1977-01-03": "Revolution Day", + "1977-03-02": "Mawlid* (*estimated)", + "1977-03-08": "International Women's Day", + "1977-04-11": "Easter Monday", + "1977-05-01": "Labour Day", + "1977-05-02": "Labour Day (Observed)", + "1977-05-19": "Ascension Day", + "1977-08-05": "Independence Day", + "1977-08-15": "Assumption Day", + "1977-09-14": "Eid al-Fitr* (*estimated)", + "1977-11-01": "All Saints' Day", + "1977-11-21": "Eid al-Adha* (*estimated)", + "1977-12-11": "Proclamation of Independence Day", + "1977-12-12": "Proclamation of Independence Day (Observed)", + "1977-12-25": "Christmas Day", + "1977-12-26": "Christmas Day (Observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day (Observed)", + "1978-01-03": "Revolution Day", + "1978-02-19": "Mawlid* (*estimated)", + "1978-03-08": "International Women's Day", + "1978-03-27": "Easter Monday", + "1978-05-01": "Labour Day", + "1978-05-04": "Ascension Day", + "1978-08-05": "Independence Day", + "1978-08-15": "Assumption Day", + "1978-09-03": "Eid al-Fitr* (*estimated)", + "1978-11-01": "All Saints' Day", + "1978-11-10": "Eid al-Adha* (*estimated)", + "1978-12-11": "Proclamation of Independence Day", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-01-03": "Revolution Day", + "1979-02-09": "Mawlid* (*estimated)", + "1979-03-08": "International Women's Day", + "1979-04-16": "Easter Monday", + "1979-05-01": "Labour Day", + "1979-05-24": "Ascension Day", + "1979-08-05": "Independence Day", + "1979-08-06": "Independence Day (Observed)", + "1979-08-15": "Assumption Day", + "1979-08-23": "Eid al-Fitr* (*estimated)", + "1979-10-31": "Eid al-Adha* (*estimated)", + "1979-11-01": "All Saints' Day", + "1979-12-11": "Proclamation of Independence Day", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-01-03": "Revolution Day", + "1980-01-30": "Mawlid* (*estimated)", + "1980-03-08": "International Women's Day", + "1980-04-07": "Easter Monday", + "1980-05-01": "Labour Day", + "1980-05-15": "Ascension Day", + "1980-08-05": "Independence Day", + "1980-08-12": "Eid al-Fitr* (*estimated)", + "1980-08-15": "Assumption Day", + "1980-10-19": "Eid al-Adha* (*estimated)", + "1980-11-01": "All Saints' Day", + "1980-12-11": "Proclamation of Independence Day", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-01-03": "Revolution Day", + "1981-01-18": "Mawlid* (*estimated)", + "1981-03-08": "International Women's Day", + "1981-03-09": "International Women's Day (Observed)", + "1981-04-20": "Easter Monday", + "1981-05-01": "Labour Day", + "1981-05-28": "Ascension Day", + "1981-08-01": "Eid al-Fitr* (*estimated)", + "1981-08-05": "Independence Day", + "1981-08-15": "Assumption Day", + "1981-10-08": "Eid al-Adha* (*estimated)", + "1981-11-01": "All Saints' Day", + "1981-11-02": "All Saints' Day (Observed)", + "1981-12-11": "Proclamation of Independence Day", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-01-03": "Revolution Day", + "1982-01-04": "Revolution Day (Observed)", + "1982-01-07": "Mawlid* (*estimated)", + "1982-03-08": "International Women's Day", + "1982-04-12": "Easter Monday", + "1982-05-01": "Labour Day", + "1982-05-20": "Ascension Day", + "1982-07-21": "Eid al-Fitr* (*estimated)", + "1982-08-05": "Independence Day", + "1982-08-15": "Assumption Day", + "1982-08-16": "Assumption Day (Observed)", + "1982-09-27": "Eid al-Adha* (*estimated)", + "1982-11-01": "All Saints' Day", + "1982-12-11": "Proclamation of Independence Day", + "1982-12-25": "Christmas Day", + "1982-12-27": "Mawlid* (*estimated)", + "1983-01-01": "New Year's Day", + "1983-01-03": "Revolution Day", + "1983-03-08": "International Women's Day", + "1983-04-04": "Easter Monday", + "1983-05-01": "Labour Day", + "1983-05-02": "Labour Day (Observed)", + "1983-05-12": "Ascension Day", + "1983-07-11": "Eid al-Fitr* (*estimated)", + "1983-08-05": "Independence Day", + "1983-08-15": "Assumption Day", + "1983-09-17": "Eid al-Adha* (*estimated)", + "1983-11-01": "All Saints' Day", + "1983-12-11": "Proclamation of Independence Day", + "1983-12-12": "Proclamation of Independence Day (Observed)", + "1983-12-16": "Mawlid* (*estimated)", + "1983-12-25": "Christmas Day", + "1983-12-26": "Christmas Day (Observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (Observed)", + "1984-01-03": "Revolution Day", + "1984-03-08": "International Women's Day", + "1984-04-23": "Easter Monday", + "1984-05-01": "Labour Day", + "1984-05-31": "Ascension Day", + "1984-06-30": "Eid al-Fitr* (*estimated)", + "1984-08-05": "Independence Day", + "1984-08-06": "Independence Day (Observed)", + "1984-08-15": "Assumption Day", + "1984-09-05": "Eid al-Adha* (*estimated)", + "1984-11-01": "All Saints' Day", + "1984-12-04": "Mawlid* (*estimated)", + "1984-12-11": "Proclamation of Independence Day", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-01-03": "Revolution Day", + "1985-03-08": "International Women's Day", + "1985-04-08": "Easter Monday", + "1985-05-01": "Labour Day", + "1985-05-16": "Ascension Day", + "1985-06-19": "Eid al-Fitr* (*estimated)", + "1985-08-05": "Independence Day", + "1985-08-15": "Assumption Day", + "1985-08-26": "Eid al-Adha* (*estimated)", + "1985-11-01": "All Saints' Day", + "1985-11-24": "Mawlid* (*estimated)", + "1985-12-11": "Proclamation of Independence Day", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-01-03": "Revolution Day", + "1986-03-08": "International Women's Day", + "1986-03-31": "Easter Monday", + "1986-05-01": "Labour Day", + "1986-05-08": "Ascension Day", + "1986-06-08": "Eid al-Fitr* (*estimated)", + "1986-08-05": "Independence Day", + "1986-08-15": "Assumption Day; Eid al-Adha* (*estimated)", + "1986-11-01": "All Saints' Day", + "1986-11-14": "Mawlid* (*estimated)", + "1986-12-11": "Proclamation of Independence Day", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-01-03": "Revolution Day", + "1987-03-08": "International Women's Day", + "1987-03-09": "International Women's Day (Observed)", + "1987-04-20": "Easter Monday", + "1987-05-01": "Labour Day", + "1987-05-28": "Ascension Day; Eid al-Fitr* (*estimated)", + "1987-08-04": "Eid al-Adha* (*estimated)", + "1987-08-05": "Independence Day", + "1987-08-15": "Assumption Day", + "1987-11-01": "All Saints' Day", + "1987-11-02": "All Saints' Day (Observed)", + "1987-11-03": "Mawlid* (*estimated)", + "1987-12-11": "Proclamation of Independence Day", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-01-03": "Revolution Day", + "1988-01-04": "Revolution Day (Observed)", + "1988-03-08": "International Women's Day", + "1988-04-04": "Easter Monday", + "1988-05-01": "Labour Day", + "1988-05-02": "Labour Day (Observed)", + "1988-05-12": "Ascension Day", + "1988-05-16": "Eid al-Fitr* (*estimated)", + "1988-07-23": "Eid al-Adha* (*estimated)", + "1988-08-05": "Independence Day", + "1988-08-15": "Assumption Day", + "1988-10-22": "Mawlid* (*estimated)", + "1988-11-01": "All Saints' Day", + "1988-12-11": "Proclamation of Independence Day", + "1988-12-12": "Proclamation of Independence Day (Observed)", + "1988-12-25": "Christmas Day", + "1988-12-26": "Christmas Day (Observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (Observed)", + "1989-01-03": "Revolution Day", + "1989-03-08": "International Women's Day", + "1989-03-27": "Easter Monday", + "1989-05-01": "Labour Day", + "1989-05-04": "Ascension Day", + "1989-05-06": "Eid al-Fitr* (*estimated)", + "1989-07-13": "Eid al-Adha* (*estimated)", + "1989-08-05": "Independence Day", + "1989-08-15": "Assumption Day", + "1989-10-11": "Mawlid* (*estimated)", + "1989-11-01": "All Saints' Day", + "1989-12-11": "Proclamation of Independence Day", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-01-03": "Revolution Day", + "1990-03-08": "International Women's Day", + "1990-04-16": "Easter Monday", + "1990-04-26": "Eid al-Fitr* (*estimated)", + "1990-05-01": "Labour Day", + "1990-05-24": "Ascension Day", + "1990-07-02": "Eid al-Adha* (*estimated)", + "1990-08-05": "Independence Day", + "1990-08-06": "Independence Day (Observed)", + "1990-08-15": "Assumption Day", + "1990-10-01": "Mawlid* (*estimated)", + "1990-11-01": "All Saints' Day", + "1990-12-11": "Proclamation of Independence Day", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-01-03": "Revolution Day", + "1991-03-08": "International Women's Day", + "1991-04-01": "Easter Monday", + "1991-04-15": "Eid al-Fitr* (*estimated)", + "1991-05-01": "Labour Day", + "1991-05-09": "Ascension Day", + "1991-06-22": "Eid al-Adha* (*estimated)", + "1991-08-05": "Independence Day", + "1991-08-15": "Assumption Day", + "1991-09-20": "Mawlid* (*estimated)", + "1991-11-01": "All Saints' Day", + "1991-12-11": "Proclamation of Independence Day", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-01-03": "Revolution Day", + "1992-03-08": "International Women's Day", + "1992-03-09": "International Women's Day (Observed)", + "1992-04-04": "Eid al-Fitr* (*estimated)", + "1992-04-20": "Easter Monday", + "1992-05-01": "Labour Day", + "1992-05-28": "Ascension Day", + "1992-06-11": "Eid al-Adha* (*estimated)", + "1992-08-05": "Independence Day", + "1992-08-15": "Assumption Day", + "1992-09-09": "Mawlid* (*estimated)", + "1992-11-01": "All Saints' Day", + "1992-11-02": "All Saints' Day (Observed)", + "1992-12-11": "Proclamation of Independence Day", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-01-03": "Revolution Day", + "1993-01-04": "Revolution Day (Observed)", + "1993-03-08": "International Women's Day", + "1993-03-24": "Eid al-Fitr* (*estimated)", + "1993-04-12": "Easter Monday", + "1993-05-01": "Labour Day", + "1993-05-20": "Ascension Day", + "1993-05-31": "Eid al-Adha* (*estimated)", + "1993-08-05": "Independence Day", + "1993-08-15": "Assumption Day", + "1993-08-16": "Assumption Day (Observed)", + "1993-08-29": "Mawlid* (*estimated)", + "1993-11-01": "All Saints' Day", + "1993-12-11": "Proclamation of Independence Day", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-01-03": "Revolution Day", + "1994-03-08": "International Women's Day", + "1994-03-13": "Eid al-Fitr* (*estimated)", + "1994-04-04": "Easter Monday", + "1994-05-01": "Labour Day", + "1994-05-02": "Labour Day (Observed)", + "1994-05-12": "Ascension Day", + "1994-05-20": "Eid al-Adha* (*estimated)", + "1994-08-05": "Independence Day", + "1994-08-15": "Assumption Day", + "1994-08-19": "Mawlid* (*estimated)", + "1994-11-01": "All Saints' Day", + "1994-12-11": "Proclamation of Independence Day", + "1994-12-12": "Proclamation of Independence Day (Observed)", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day (Observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (Observed)", + "1995-01-03": "Revolution Day", + "1995-03-02": "Eid al-Fitr* (*estimated)", + "1995-03-08": "International Women's Day", + "1995-04-17": "Easter Monday", + "1995-05-01": "Labour Day", + "1995-05-09": "Eid al-Adha* (*estimated)", + "1995-05-25": "Ascension Day", + "1995-08-05": "Independence Day", + "1995-08-08": "Mawlid* (*estimated)", + "1995-08-15": "Assumption Day", + "1995-11-01": "All Saints' Day", + "1995-12-11": "Proclamation of Independence Day", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-01-03": "Revolution Day", + "1996-02-19": "Eid al-Fitr* (*estimated)", + "1996-03-08": "International Women's Day", + "1996-04-08": "Easter Monday", + "1996-04-27": "Eid al-Adha* (*estimated)", + "1996-05-01": "Labour Day", + "1996-05-16": "Ascension Day", + "1996-07-27": "Mawlid* (*estimated)", + "1996-08-05": "Independence Day", + "1996-08-15": "Assumption Day", + "1996-11-01": "All Saints' Day", + "1996-12-11": "Proclamation of Independence Day", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-01-03": "Revolution Day", + "1997-02-08": "Eid al-Fitr* (*estimated)", + "1997-03-08": "International Women's Day", + "1997-03-31": "Easter Monday", + "1997-04-17": "Eid al-Adha* (*estimated)", + "1997-05-01": "Labour Day", + "1997-05-08": "Ascension Day", + "1997-07-16": "Mawlid* (*estimated)", + "1997-08-05": "Independence Day", + "1997-08-15": "Assumption Day", + "1997-11-01": "All Saints' Day", + "1997-12-11": "Proclamation of Independence Day", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-01-03": "Revolution Day", + "1998-01-29": "Eid al-Fitr* (*estimated)", + "1998-03-08": "International Women's Day", + "1998-03-09": "International Women's Day (Observed)", + "1998-04-07": "Eid al-Adha* (*estimated)", + "1998-04-13": "Easter Monday", + "1998-05-01": "Labour Day", + "1998-05-21": "Ascension Day", + "1998-07-06": "Mawlid* (*estimated)", + "1998-08-05": "Independence Day", + "1998-08-15": "Assumption Day", + "1998-11-01": "All Saints' Day", + "1998-11-02": "All Saints' Day (Observed)", + "1998-12-11": "Proclamation of Independence Day", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-01-03": "Revolution Day", + "1999-01-04": "Revolution Day (Observed)", + "1999-01-18": "Eid al-Fitr* (*estimated)", + "1999-03-08": "International Women's Day", + "1999-03-27": "Eid al-Adha* (*estimated)", + "1999-04-05": "Easter Monday", + "1999-05-01": "Labour Day", + "1999-05-13": "Ascension Day", + "1999-06-26": "Mawlid* (*estimated)", + "1999-08-05": "Independence Day", + "1999-08-15": "Assumption Day", + "1999-08-16": "Assumption Day (Observed)", + "1999-11-01": "All Saints' Day", + "1999-12-11": "Proclamation of Independence Day", + "1999-12-25": "Christmas Day", + "2000-01-01": "New Year's Day", + "2000-01-03": "Revolution Day", + "2000-01-08": "Eid al-Fitr* (*estimated)", + "2000-03-08": "International Women's Day", + "2000-03-16": "Eid al-Adha* (*estimated)", + "2000-04-24": "Easter Monday", + "2000-05-01": "Labour Day", + "2000-06-01": "Ascension Day", + "2000-06-14": "Mawlid* (*estimated)", + "2000-08-05": "Independence Day", + "2000-08-15": "Assumption Day", + "2000-11-01": "All Saints' Day", + "2000-12-11": "Proclamation of Independence Day", + "2000-12-25": "Christmas Day", + "2000-12-27": "Eid al-Fitr* (*estimated)", + "2001-01-01": "New Year's Day", + "2001-01-03": "Revolution Day", + "2001-03-05": "Eid al-Adha* (*estimated)", + "2001-03-08": "International Women's Day", + "2001-04-16": "Easter Monday", + "2001-05-01": "Labour Day", + "2001-05-24": "Ascension Day", + "2001-06-04": "Mawlid* (*estimated)", + "2001-08-05": "Independence Day", + "2001-08-06": "Independence Day (Observed)", + "2001-08-15": "Assumption Day", + "2001-11-01": "All Saints' Day", + "2001-12-11": "Proclamation of Independence Day", + "2001-12-16": "Eid al-Fitr* (*estimated)", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-01-03": "Revolution Day", + "2002-02-22": "Eid al-Adha* (*estimated)", + "2002-03-08": "International Women's Day", + "2002-04-01": "Easter Monday", + "2002-05-01": "Labour Day", + "2002-05-09": "Ascension Day", + "2002-05-24": "Mawlid* (*estimated)", + "2002-08-05": "Independence Day", + "2002-08-15": "Assumption Day", + "2002-11-01": "All Saints' Day", + "2002-12-05": "Eid al-Fitr* (*estimated)", + "2002-12-11": "Proclamation of Independence Day", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-01-03": "Revolution Day", + "2003-02-11": "Eid al-Adha* (*estimated)", + "2003-03-08": "International Women's Day", + "2003-04-21": "Easter Monday", + "2003-05-01": "Labour Day", + "2003-05-13": "Mawlid* (*estimated)", + "2003-05-29": "Ascension Day", + "2003-08-05": "Independence Day", + "2003-08-15": "Assumption Day", + "2003-11-01": "All Saints' Day", + "2003-11-25": "Eid al-Fitr* (*estimated)", + "2003-12-11": "Proclamation of Independence Day", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-01-03": "Revolution Day", + "2004-02-01": "Eid al-Adha* (*estimated)", + "2004-03-08": "International Women's Day", + "2004-04-12": "Easter Monday", + "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-20": "Ascension Day", + "2004-08-05": "Independence Day", + "2004-08-15": "Assumption Day", + "2004-08-16": "Assumption Day (Observed)", + "2004-11-01": "All Saints' Day", + "2004-11-14": "Eid al-Fitr* (*estimated)", + "2004-12-11": "Proclamation of Independence Day", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-01-03": "Revolution Day", + "2005-01-21": "Eid al-Adha* (*estimated)", + "2005-03-08": "International Women's Day", + "2005-03-28": "Easter Monday", + "2005-04-21": "Mawlid* (*estimated)", + "2005-05-01": "Labour Day", + "2005-05-02": "Labour Day (Observed)", + "2005-05-05": "Ascension Day", + "2005-08-05": "Independence Day", + "2005-08-15": "Assumption Day", + "2005-11-01": "All Saints' Day", + "2005-11-03": "Eid al-Fitr* (*estimated)", + "2005-12-11": "Proclamation of Independence Day", + "2005-12-12": "Proclamation of Independence Day (Observed)", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day (Observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (Observed)", + "2006-01-03": "Revolution Day", + "2006-01-10": "Eid al-Adha* (*estimated)", + "2006-03-08": "International Women's Day", + "2006-04-10": "Mawlid* (*estimated)", + "2006-04-17": "Easter Monday", + "2006-05-01": "Labour Day", + "2006-05-25": "Ascension Day", + "2006-08-05": "Independence Day", + "2006-08-15": "Assumption Day", + "2006-10-23": "Eid al-Fitr* (*estimated)", + "2006-11-01": "All Saints' Day", + "2006-12-11": "Proclamation of Independence Day", + "2006-12-25": "Christmas Day", + "2006-12-31": "Eid al-Adha* (*estimated)", + "2007-01-01": "New Year's Day", + "2007-01-03": "Revolution Day", + "2007-03-08": "International Women's Day", + "2007-03-31": "Mawlid* (*estimated)", + "2007-04-09": "Easter Monday", + "2007-05-01": "Labour Day", + "2007-05-17": "Ascension Day", + "2007-08-05": "Independence Day", + "2007-08-06": "Independence Day (Observed)", + "2007-08-15": "Assumption Day", + "2007-10-13": "Eid al-Fitr* (*estimated)", + "2007-11-01": "All Saints' Day", + "2007-12-11": "Proclamation of Independence Day", + "2007-12-20": "Eid al-Adha* (*estimated)", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-01-03": "Revolution Day", + "2008-03-08": "International Women's Day", + "2008-03-20": "Mawlid* (*estimated)", + "2008-03-24": "Easter Monday", + "2008-05-01": "Ascension Day; Labour Day", + "2008-08-05": "Independence Day", + "2008-08-15": "Assumption Day", + "2008-10-01": "Eid al-Fitr* (*estimated)", + "2008-11-01": "All Saints' Day", + "2008-12-08": "Eid al-Adha* (*estimated)", + "2008-12-11": "Proclamation of Independence Day", + "2008-12-25": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-01-03": "Revolution Day", + "2009-03-08": "International Women's Day", + "2009-03-09": "International Women's Day (Observed); Mawlid* (*estimated)", + "2009-04-13": "Easter Monday", + "2009-05-01": "Labour Day", + "2009-05-21": "Ascension Day", + "2009-08-05": "Independence Day", + "2009-08-15": "Assumption Day", + "2009-09-20": "Eid al-Fitr* (*estimated)", + "2009-11-01": "All Saints' Day", + "2009-11-02": "All Saints' Day (Observed)", + "2009-11-27": "Eid al-Adha* (*estimated)", + "2009-12-11": "Proclamation of Independence Day", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-01-03": "Revolution Day", + "2010-01-04": "Revolution Day (Observed)", + "2010-02-26": "Mawlid* (*estimated)", + "2010-03-08": "International Women's Day", + "2010-04-05": "Easter Monday", + "2010-05-01": "Labour Day", + "2010-05-13": "Ascension Day", + "2010-08-05": "Independence Day", + "2010-08-15": "Assumption Day", + "2010-08-16": "Assumption Day (Observed)", + "2010-09-10": "Eid al-Fitr* (*estimated)", + "2010-11-01": "All Saints' Day", + "2010-11-16": "Eid al-Adha* (*estimated)", + "2010-12-11": "Proclamation of Independence Day", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-01-03": "Revolution Day", + "2011-02-15": "Mawlid* (*estimated)", + "2011-03-08": "International Women's Day", + "2011-04-25": "Easter Monday", + "2011-05-01": "Labour Day", + "2011-05-02": "Labour Day (Observed)", + "2011-06-02": "Ascension Day", + "2011-08-05": "Independence Day", + "2011-08-15": "Assumption Day", + "2011-08-30": "Eid al-Fitr* (*estimated)", + "2011-11-01": "All Saints' Day", + "2011-11-06": "Eid al-Adha* (*estimated)", + "2011-12-11": "Proclamation of Independence Day", + "2011-12-12": "Proclamation of Independence Day (Observed)", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day (Observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (Observed)", + "2012-01-03": "Revolution Day", + "2012-02-04": "Mawlid* (*estimated)", + "2012-03-08": "International Women's Day", + "2012-04-09": "Easter Monday", + "2012-05-01": "Labour Day", + "2012-05-17": "Ascension Day", + "2012-08-05": "Independence Day", + "2012-08-06": "Independence Day (Observed)", + "2012-08-15": "Assumption Day", + "2012-08-19": "Eid al-Fitr* (*estimated)", + "2012-10-26": "Eid al-Adha* (*estimated)", + "2012-11-01": "All Saints' Day", + "2012-12-11": "Proclamation of Independence Day", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-01-03": "Revolution Day", + "2013-01-24": "Mawlid* (*estimated)", + "2013-03-08": "International Women's Day", + "2013-04-01": "Easter Monday", + "2013-05-01": "Labour Day", + "2013-05-09": "Ascension Day", + "2013-08-05": "Independence Day", + "2013-08-08": "Eid al-Fitr* (*estimated)", + "2013-08-15": "Assumption Day", + "2013-10-15": "Eid al-Adha* (*estimated)", + "2013-11-01": "All Saints' Day", + "2013-12-11": "Proclamation of Independence Day", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-03": "Revolution Day", + "2014-01-14": "Mawlid", + "2014-03-08": "International Women's Day", + "2014-04-21": "Easter Monday", + "2014-05-01": "Labour Day", + "2014-05-29": "Ascension Day", + "2014-07-29": "Eid al-Fitr", + "2014-08-05": "Independence Day", + "2014-08-15": "Assumption Day", + "2014-10-05": "Eid al-Adha", + "2014-11-01": "All Saints' Day", + "2014-12-11": "Proclamation of Independence Day", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-01-03": "Mawlid; Revolution Day", + "2015-03-08": "International Women's Day", + "2015-03-09": "International Women's Day (Observed)", + "2015-04-06": "Easter Monday", + "2015-05-01": "Labour Day", + "2015-05-14": "Ascension Day", + "2015-07-18": "Eid al-Fitr", + "2015-08-05": "Independence Day", + "2015-08-15": "Assumption Day", + "2015-09-24": "Eid al-Adha", + "2015-11-01": "All Saints' Day", + "2015-11-02": "All Saints' Day (Observed)", + "2015-12-11": "Proclamation of Independence Day", + "2015-12-24": "Mawlid", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-01-03": "Revolution Day", + "2016-01-04": "Revolution Day (Observed)", + "2016-03-08": "International Women's Day", + "2016-03-28": "Easter Monday", + "2016-05-01": "Labour Day", + "2016-05-02": "Labour Day (Observed)", + "2016-05-05": "Ascension Day", + "2016-07-07": "Eid al-Fitr", + "2016-08-05": "Independence Day", + "2016-08-15": "Assumption Day", + "2016-09-13": "Eid al-Adha", + "2016-10-31": "Martyrs' Day", + "2016-11-01": "All Saints' Day", + "2016-12-11": "Proclamation of Independence Day", + "2016-12-12": "Mawlid; Proclamation of Independence Day (Observed)", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day (Observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (Observed)", + "2017-01-03": "Revolution Day", + "2017-03-08": "International Women's Day", + "2017-04-17": "Easter Monday", + "2017-05-01": "Labour Day", + "2017-05-25": "Ascension Day", + "2017-06-26": "Eid al-Fitr", + "2017-08-05": "Independence Day", + "2017-08-15": "Assumption Day", + "2017-09-02": "Eid al-Adha", + "2017-10-31": "Martyrs' Day", + "2017-11-01": "All Saints' Day", + "2017-12-01": "Mawlid", + "2017-12-11": "Proclamation of Independence Day", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-01-03": "Revolution Day", + "2018-03-08": "International Women's Day", + "2018-04-02": "Easter Monday", + "2018-05-01": "Labour Day", + "2018-05-10": "Ascension Day", + "2018-06-15": "Eid al-Fitr", + "2018-08-05": "Independence Day", + "2018-08-06": "Independence Day (Observed)", + "2018-08-15": "Assumption Day", + "2018-08-21": "Eid al-Adha", + "2018-10-31": "Martyrs' Day", + "2018-11-01": "All Saints' Day", + "2018-11-21": "Mawlid", + "2018-12-11": "Proclamation of Independence Day", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-01-03": "Revolution Day", + "2019-03-08": "International Women's Day", + "2019-04-22": "Easter Monday", + "2019-05-01": "Labour Day", + "2019-05-30": "Ascension Day", + "2019-06-04": "Eid al-Fitr", + "2019-08-05": "Independence Day", + "2019-08-11": "Eid al-Adha", + "2019-08-15": "Assumption Day", + "2019-10-31": "Martyrs' Day", + "2019-11-01": "All Saints' Day", + "2019-11-10": "Mawlid", + "2019-12-11": "Proclamation of Independence Day", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-01-03": "Revolution Day", + "2020-03-08": "International Women's Day", + "2020-03-09": "International Women's Day (Observed)", + "2020-04-13": "Easter Monday", + "2020-05-01": "Labour Day", + "2020-05-21": "Ascension Day", + "2020-05-24": "Eid al-Fitr", + "2020-07-31": "Eid al-Adha", + "2020-08-05": "Independence Day", + "2020-08-15": "Assumption Day", + "2020-10-29": "Mawlid", + "2020-10-31": "Martyrs' Day", + "2020-11-01": "All Saints' Day", + "2020-11-02": "All Saints' Day (Observed)", + "2020-12-11": "Proclamation of Independence Day", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-01-03": "Revolution Day", + "2021-01-04": "Revolution Day (Observed)", + "2021-03-08": "International Women's Day", + "2021-04-05": "Easter Monday", + "2021-05-01": "Labour Day", + "2021-05-13": "Ascension Day; Eid al-Fitr", + "2021-07-20": "Eid al-Adha", + "2021-08-05": "Independence Day", + "2021-08-15": "Assumption Day", + "2021-08-16": "Assumption Day (Observed)", + "2021-10-19": "Mawlid", + "2021-10-31": "Martyrs' Day", + "2021-11-01": "All Saints' Day; Martyrs' Day (Observed)", + "2021-12-11": "Proclamation of Independence Day", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-01-03": "Revolution Day", + "2022-03-08": "International Women's Day", + "2022-04-18": "Easter Monday", + "2022-05-01": "Labour Day", + "2022-05-02": "Eid al-Fitr; Labour Day (Observed)", + "2022-05-26": "Ascension Day", + "2022-07-09": "Eid al-Adha", + "2022-08-05": "Independence Day", + "2022-08-15": "Assumption Day", + "2022-10-09": "Mawlid", + "2022-10-31": "Martyrs' Day", + "2022-11-01": "All Saints' Day", + "2022-12-11": "Proclamation of Independence Day", + "2022-12-12": "Proclamation of Independence Day (Observed)", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day (Observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (Observed)", + "2023-01-03": "Revolution Day", + "2023-03-08": "International Women's Day", + "2023-04-10": "Easter Monday", + "2023-04-21": "Eid al-Fitr", + "2023-05-01": "Labour Day", + "2023-05-18": "Ascension Day", + "2023-06-28": "Eid al-Adha", + "2023-08-05": "Independence Day", + "2023-08-15": "Assumption Day", + "2023-09-27": "Mawlid* (*estimated)", + "2023-10-31": "Martyrs' Day", + "2023-11-01": "All Saints' Day", + "2023-12-11": "Proclamation of Independence Day", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-01-03": "Revolution Day", + "2024-03-08": "International Women's Day", + "2024-04-01": "Easter Monday", + "2024-04-10": "Eid al-Fitr* (*estimated)", + "2024-05-01": "Labour Day", + "2024-05-09": "Ascension Day", + "2024-06-16": "Eid al-Adha* (*estimated)", + "2024-08-05": "Independence Day", + "2024-08-15": "Assumption Day", + "2024-09-15": "Mawlid* (*estimated)", + "2024-10-31": "Martyrs' Day", + "2024-11-01": "All Saints' Day", + "2024-12-11": "Proclamation of Independence Day", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-01-03": "Revolution Day", + "2025-03-08": "International Women's Day", + "2025-03-30": "Eid al-Fitr* (*estimated)", + "2025-04-21": "Easter Monday", + "2025-05-01": "Labour Day", + "2025-05-29": "Ascension Day", + "2025-06-06": "Eid al-Adha* (*estimated)", + "2025-08-05": "Independence Day", + "2025-08-15": "Assumption Day", + "2025-09-04": "Mawlid* (*estimated)", + "2025-10-31": "Martyrs' Day", + "2025-11-01": "All Saints' Day", + "2025-12-11": "Proclamation of Independence Day", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-01-03": "Revolution Day", + "2026-03-08": "International Women's Day", + "2026-03-09": "International Women's Day (Observed)", + "2026-03-20": "Eid al-Fitr* (*estimated)", + "2026-04-06": "Easter Monday", + "2026-05-01": "Labour Day", + "2026-05-14": "Ascension Day", + "2026-05-27": "Eid al-Adha* (*estimated)", + "2026-08-05": "Independence Day", + "2026-08-15": "Assumption Day", + "2026-08-25": "Mawlid* (*estimated)", + "2026-10-31": "Martyrs' Day", + "2026-11-01": "All Saints' Day", + "2026-11-02": "All Saints' Day (Observed)", + "2026-12-11": "Proclamation of Independence Day", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-01-03": "Revolution Day", + "2027-01-04": "Revolution Day (Observed)", + "2027-03-08": "International Women's Day", + "2027-03-09": "Eid al-Fitr* (*estimated)", + "2027-03-29": "Easter Monday", + "2027-05-01": "Labour Day", + "2027-05-06": "Ascension Day", + "2027-05-16": "Eid al-Adha* (*estimated)", + "2027-08-05": "Independence Day", + "2027-08-14": "Mawlid* (*estimated)", + "2027-08-15": "Assumption Day", + "2027-08-16": "Assumption Day (Observed)", + "2027-10-31": "Martyrs' Day", + "2027-11-01": "All Saints' Day; Martyrs' Day (Observed)", + "2027-12-11": "Proclamation of Independence Day", + "2027-12-25": "Christmas Day", + "2028-01-01": "New Year's Day", + "2028-01-03": "Revolution Day", + "2028-02-26": "Eid al-Fitr* (*estimated)", + "2028-03-08": "International Women's Day", + "2028-04-17": "Easter Monday", + "2028-05-01": "Labour Day", + "2028-05-05": "Eid al-Adha* (*estimated)", + "2028-05-25": "Ascension Day", + "2028-08-03": "Mawlid* (*estimated)", + "2028-08-05": "Independence Day", + "2028-08-15": "Assumption Day", + "2028-10-31": "Martyrs' Day", + "2028-11-01": "All Saints' Day", + "2028-12-11": "Proclamation of Independence Day", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-01-03": "Revolution Day", + "2029-02-14": "Eid al-Fitr* (*estimated)", + "2029-03-08": "International Women's Day", + "2029-04-02": "Easter Monday", + "2029-04-24": "Eid al-Adha* (*estimated)", + "2029-05-01": "Labour Day", + "2029-05-10": "Ascension Day", + "2029-07-24": "Mawlid* (*estimated)", + "2029-08-05": "Independence Day", + "2029-08-06": "Independence Day (Observed)", + "2029-08-15": "Assumption Day", + "2029-10-31": "Martyrs' Day", + "2029-11-01": "All Saints' Day", + "2029-12-11": "Proclamation of Independence Day", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-01-03": "Revolution Day", + "2030-02-04": "Eid al-Fitr* (*estimated)", + "2030-03-08": "International Women's Day", + "2030-04-13": "Eid al-Adha* (*estimated)", + "2030-04-22": "Easter Monday", + "2030-05-01": "Labour Day", + "2030-05-30": "Ascension Day", + "2030-07-13": "Mawlid* (*estimated)", + "2030-08-05": "Independence Day", + "2030-08-15": "Assumption Day", + "2030-10-31": "Martyrs' Day", + "2030-11-01": "All Saints' Day", + "2030-12-11": "Proclamation of Independence Day", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-01-03": "Revolution Day", + "2031-01-24": "Eid al-Fitr* (*estimated)", + "2031-03-08": "International Women's Day", + "2031-04-02": "Eid al-Adha* (*estimated)", + "2031-04-14": "Easter Monday", + "2031-05-01": "Labour Day", + "2031-05-22": "Ascension Day", + "2031-07-02": "Mawlid* (*estimated)", + "2031-08-05": "Independence Day", + "2031-08-15": "Assumption Day", + "2031-10-31": "Martyrs' Day", + "2031-11-01": "All Saints' Day", + "2031-12-11": "Proclamation of Independence Day", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-01-03": "Revolution Day", + "2032-01-14": "Eid al-Fitr* (*estimated)", + "2032-03-08": "International Women's Day", + "2032-03-22": "Eid al-Adha* (*estimated)", + "2032-03-29": "Easter Monday", + "2032-05-01": "Labour Day", + "2032-05-06": "Ascension Day", + "2032-06-20": "Mawlid* (*estimated)", + "2032-08-05": "Independence Day", + "2032-08-15": "Assumption Day", + "2032-08-16": "Assumption Day (Observed)", + "2032-10-31": "Martyrs' Day", + "2032-11-01": "All Saints' Day; Martyrs' Day (Observed)", + "2032-12-11": "Proclamation of Independence Day", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "Eid al-Fitr* (*estimated)", + "2033-01-03": "Revolution Day", + "2033-03-08": "International Women's Day", + "2033-03-11": "Eid al-Adha* (*estimated)", + "2033-04-18": "Easter Monday", + "2033-05-01": "Labour Day", + "2033-05-02": "Labour Day (Observed)", + "2033-05-26": "Ascension Day", + "2033-06-09": "Mawlid* (*estimated)", + "2033-08-05": "Independence Day", + "2033-08-15": "Assumption Day", + "2033-10-31": "Martyrs' Day", + "2033-11-01": "All Saints' Day", + "2033-12-11": "Proclamation of Independence Day", + "2033-12-12": "Proclamation of Independence Day (Observed)", + "2033-12-23": "Eid al-Fitr* (*estimated)", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day (Observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-01-03": "Revolution Day", + "2034-03-01": "Eid al-Adha* (*estimated)", + "2034-03-08": "International Women's Day", + "2034-04-10": "Easter Monday", + "2034-05-01": "Labour Day", + "2034-05-18": "Ascension Day", + "2034-05-30": "Mawlid* (*estimated)", + "2034-08-05": "Independence Day", + "2034-08-15": "Assumption Day", + "2034-10-31": "Martyrs' Day", + "2034-11-01": "All Saints' Day", + "2034-12-11": "Proclamation of Independence Day", + "2034-12-12": "Eid al-Fitr* (*estimated)", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-01-03": "Revolution Day", + "2035-02-18": "Eid al-Adha* (*estimated)", + "2035-03-08": "International Women's Day", + "2035-03-26": "Easter Monday", + "2035-05-01": "Labour Day", + "2035-05-03": "Ascension Day", + "2035-05-20": "Mawlid* (*estimated)", + "2035-08-05": "Independence Day", + "2035-08-06": "Independence Day (Observed)", + "2035-08-15": "Assumption Day", + "2035-10-31": "Martyrs' Day", + "2035-11-01": "All Saints' Day", + "2035-12-01": "Eid al-Fitr* (*estimated)", + "2035-12-11": "Proclamation of Independence Day", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-01-03": "Revolution Day", + "2036-02-07": "Eid al-Adha* (*estimated)", + "2036-03-08": "International Women's Day", + "2036-04-14": "Easter Monday", + "2036-05-01": "Labour Day", + "2036-05-08": "Mawlid* (*estimated)", + "2036-05-22": "Ascension Day", + "2036-08-05": "Independence Day", + "2036-08-15": "Assumption Day", + "2036-10-31": "Martyrs' Day", + "2036-11-01": "All Saints' Day", + "2036-11-19": "Eid al-Fitr* (*estimated)", + "2036-12-11": "Proclamation of Independence Day", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-03": "Revolution Day", + "2037-01-26": "Eid al-Adha* (*estimated)", + "2037-03-08": "International Women's Day", + "2037-03-09": "International Women's Day (Observed)", + "2037-04-06": "Easter Monday", + "2037-04-28": "Mawlid* (*estimated)", + "2037-05-01": "Labour Day", + "2037-05-14": "Ascension Day", + "2037-08-05": "Independence Day", + "2037-08-15": "Assumption Day", + "2037-10-31": "Martyrs' Day", + "2037-11-01": "All Saints' Day", + "2037-11-02": "All Saints' Day (Observed)", + "2037-11-08": "Eid al-Fitr* (*estimated)", + "2037-12-11": "Proclamation of Independence Day", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-01-03": "Revolution Day", + "2038-01-04": "Revolution Day (Observed)", + "2038-01-16": "Eid al-Adha* (*estimated)", + "2038-03-08": "International Women's Day", + "2038-04-17": "Mawlid* (*estimated)", + "2038-04-26": "Easter Monday", + "2038-05-01": "Labour Day", + "2038-06-03": "Ascension Day", + "2038-08-05": "Independence Day", + "2038-08-15": "Assumption Day", + "2038-08-16": "Assumption Day (Observed)", + "2038-10-29": "Eid al-Fitr* (*estimated)", + "2038-10-31": "Martyrs' Day", + "2038-11-01": "All Saints' Day; Martyrs' Day (Observed)", + "2038-12-11": "Proclamation of Independence Day", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-01-03": "Revolution Day", + "2039-01-05": "Eid al-Adha* (*estimated)", + "2039-03-08": "International Women's Day", + "2039-04-06": "Mawlid* (*estimated)", + "2039-04-11": "Easter Monday", + "2039-05-01": "Labour Day", + "2039-05-02": "Labour Day (Observed)", + "2039-05-19": "Ascension Day", + "2039-08-05": "Independence Day", + "2039-08-15": "Assumption Day", + "2039-10-19": "Eid al-Fitr* (*estimated)", + "2039-10-31": "Martyrs' Day", + "2039-11-01": "All Saints' Day", + "2039-12-11": "Proclamation of Independence Day", + "2039-12-12": "Proclamation of Independence Day (Observed)", + "2039-12-25": "Christmas Day", + "2039-12-26": "Christmas Day (Observed); Eid al-Adha* (*estimated)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (Observed)", + "2040-01-03": "Revolution Day", + "2040-03-08": "International Women's Day", + "2040-03-25": "Mawlid* (*estimated)", + "2040-04-02": "Easter Monday", + "2040-05-01": "Labour Day", + "2040-05-10": "Ascension Day", + "2040-08-05": "Independence Day", + "2040-08-06": "Independence Day (Observed)", + "2040-08-15": "Assumption Day", + "2040-10-07": "Eid al-Fitr* (*estimated)", + "2040-10-31": "Martyrs' Day", + "2040-11-01": "All Saints' Day", + "2040-12-11": "Proclamation of Independence Day", + "2040-12-14": "Eid al-Adha* (*estimated)", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-01-03": "Revolution Day", + "2041-03-08": "International Women's Day", + "2041-03-15": "Mawlid* (*estimated)", + "2041-04-22": "Easter Monday", + "2041-05-01": "Labour Day", + "2041-05-30": "Ascension Day", + "2041-08-05": "Independence Day", + "2041-08-15": "Assumption Day", + "2041-09-26": "Eid al-Fitr* (*estimated)", + "2041-10-31": "Martyrs' Day", + "2041-11-01": "All Saints' Day", + "2041-12-04": "Eid al-Adha* (*estimated)", + "2041-12-11": "Proclamation of Independence Day", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-01-03": "Revolution Day", + "2042-03-04": "Mawlid* (*estimated)", + "2042-03-08": "International Women's Day", + "2042-04-07": "Easter Monday", + "2042-05-01": "Labour Day", + "2042-05-15": "Ascension Day", + "2042-08-05": "Independence Day", + "2042-08-15": "Assumption Day", + "2042-09-15": "Eid al-Fitr* (*estimated)", + "2042-10-31": "Martyrs' Day", + "2042-11-01": "All Saints' Day", + "2042-11-23": "Eid al-Adha* (*estimated)", + "2042-12-11": "Proclamation of Independence Day", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-01-03": "Revolution Day", + "2043-02-22": "Mawlid* (*estimated)", + "2043-03-08": "International Women's Day", + "2043-03-09": "International Women's Day (Observed)", + "2043-03-30": "Easter Monday", + "2043-05-01": "Labour Day", + "2043-05-07": "Ascension Day", + "2043-08-05": "Independence Day", + "2043-08-15": "Assumption Day", + "2043-09-04": "Eid al-Fitr* (*estimated)", + "2043-10-31": "Martyrs' Day", + "2043-11-01": "All Saints' Day", + "2043-11-02": "All Saints' Day (Observed)", + "2043-11-12": "Eid al-Adha* (*estimated)", + "2043-12-11": "Proclamation of Independence Day", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-01-03": "Revolution Day", + "2044-01-04": "Revolution Day (Observed)", + "2044-02-11": "Mawlid* (*estimated)", + "2044-03-08": "International Women's Day", + "2044-04-18": "Easter Monday", + "2044-05-01": "Labour Day", + "2044-05-02": "Labour Day (Observed)", + "2044-05-26": "Ascension Day", + "2044-08-05": "Independence Day", + "2044-08-15": "Assumption Day", + "2044-08-24": "Eid al-Fitr* (*estimated)", + "2044-10-31": "Eid al-Adha* (*estimated); Martyrs' Day", + "2044-11-01": "All Saints' Day", + "2044-12-11": "Proclamation of Independence Day", + "2044-12-12": "Proclamation of Independence Day (Observed)", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day (Observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (Observed)", + "2045-01-03": "Revolution Day", + "2045-01-30": "Mawlid* (*estimated)", + "2045-03-08": "International Women's Day", + "2045-04-10": "Easter Monday", + "2045-05-01": "Labour Day", + "2045-05-18": "Ascension Day", + "2045-08-05": "Independence Day", + "2045-08-14": "Eid al-Fitr* (*estimated)", + "2045-08-15": "Assumption Day", + "2045-10-21": "Eid al-Adha* (*estimated)", + "2045-10-31": "Martyrs' Day", + "2045-11-01": "All Saints' Day", + "2045-12-11": "Proclamation of Independence Day", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-01-03": "Revolution Day", + "2046-01-19": "Mawlid* (*estimated)", + "2046-03-08": "International Women's Day", + "2046-03-26": "Easter Monday", + "2046-05-01": "Labour Day", + "2046-05-03": "Ascension Day", + "2046-08-03": "Eid al-Fitr* (*estimated)", + "2046-08-05": "Independence Day", + "2046-08-06": "Independence Day (Observed)", + "2046-08-15": "Assumption Day", + "2046-10-10": "Eid al-Adha* (*estimated)", + "2046-10-31": "Martyrs' Day", + "2046-11-01": "All Saints' Day", + "2046-12-11": "Proclamation of Independence Day", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-03": "Revolution Day", + "2047-01-08": "Mawlid* (*estimated)", + "2047-03-08": "International Women's Day", + "2047-04-15": "Easter Monday", + "2047-05-01": "Labour Day", + "2047-05-23": "Ascension Day", + "2047-07-24": "Eid al-Fitr* (*estimated)", + "2047-08-05": "Independence Day", + "2047-08-15": "Assumption Day", + "2047-09-30": "Eid al-Adha* (*estimated)", + "2047-10-31": "Martyrs' Day", + "2047-11-01": "All Saints' Day", + "2047-12-11": "Proclamation of Independence Day", + "2047-12-25": "Christmas Day", + "2047-12-29": "Mawlid* (*estimated)", + "2048-01-01": "New Year's Day", + "2048-01-03": "Revolution Day", + "2048-03-08": "International Women's Day", + "2048-03-09": "International Women's Day (Observed)", + "2048-04-06": "Easter Monday", + "2048-05-01": "Labour Day", + "2048-05-14": "Ascension Day", + "2048-07-12": "Eid al-Fitr* (*estimated)", + "2048-08-05": "Independence Day", + "2048-08-15": "Assumption Day", + "2048-09-19": "Eid al-Adha* (*estimated)", + "2048-10-31": "Martyrs' Day", + "2048-11-01": "All Saints' Day", + "2048-11-02": "All Saints' Day (Observed)", + "2048-12-11": "Proclamation of Independence Day", + "2048-12-18": "Mawlid* (*estimated)", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-01-03": "Revolution Day", + "2049-01-04": "Revolution Day (Observed)", + "2049-03-08": "International Women's Day", + "2049-04-19": "Easter Monday", + "2049-05-01": "Labour Day", + "2049-05-27": "Ascension Day", + "2049-07-01": "Eid al-Fitr* (*estimated)", + "2049-08-05": "Independence Day", + "2049-08-15": "Assumption Day", + "2049-08-16": "Assumption Day (Observed)", + "2049-09-08": "Eid al-Adha* (*estimated)", + "2049-10-31": "Martyrs' Day", + "2049-11-01": "All Saints' Day; Martyrs' Day (Observed)", + "2049-12-07": "Mawlid* (*estimated)", + "2049-12-11": "Proclamation of Independence Day", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-01-03": "Revolution Day", + "2050-03-08": "International Women's Day", + "2050-04-11": "Easter Monday", + "2050-05-01": "Labour Day", + "2050-05-02": "Labour Day (Observed)", + "2050-05-19": "Ascension Day", + "2050-06-20": "Eid al-Fitr* (*estimated)", + "2050-08-05": "Independence Day", + "2050-08-15": "Assumption Day", + "2050-08-28": "Eid al-Adha* (*estimated)", + "2050-10-31": "Martyrs' Day", + "2050-11-01": "All Saints' Day", + "2050-11-26": "Mawlid* (*estimated)", + "2050-12-11": "Proclamation of Independence Day", + "2050-12-12": "Proclamation of Independence Day (Observed)", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day (Observed)" +} diff --git a/snapshots/countries/BG.json b/snapshots/countries/BG.json new file mode 100644 index 000000000..38cb7d264 --- /dev/null +++ b/snapshots/countries/BG.json @@ -0,0 +1,1003 @@ +{ + "1990-01-01": "New Year's Day", + "1990-03-03": "Liberation Day", + "1990-04-13": "Good Friday", + "1990-04-14": "Holy Saturday", + "1990-04-15": "Easter", + "1990-04-16": "Easter", + "1990-05-01": "Labor Day and International Workers' Solidarity Day", + "1990-05-06": "St. George's Day (Day of the Bulgarian Army)", + "1990-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "1990-09-06": "Unification Day", + "1990-09-22": "Independence Day", + "1990-11-01": "The Day of the People's Awakeners", + "1990-12-24": "Christmas Eve", + "1990-12-25": "Christmas Day", + "1990-12-26": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-03-03": "Liberation Day", + "1991-04-05": "Good Friday", + "1991-04-06": "Holy Saturday", + "1991-04-07": "Easter", + "1991-04-08": "Easter", + "1991-05-01": "Labor Day and International Workers' Solidarity Day", + "1991-05-06": "St. George's Day (Day of the Bulgarian Army)", + "1991-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "1991-09-06": "Unification Day", + "1991-09-22": "Independence Day", + "1991-11-01": "The Day of the People's Awakeners", + "1991-12-24": "Christmas Eve", + "1991-12-25": "Christmas Day", + "1991-12-26": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-03-03": "Liberation Day", + "1992-04-24": "Good Friday", + "1992-04-25": "Holy Saturday", + "1992-04-26": "Easter", + "1992-04-27": "Easter", + "1992-05-01": "Labor Day and International Workers' Solidarity Day", + "1992-05-06": "St. George's Day (Day of the Bulgarian Army)", + "1992-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "1992-09-06": "Unification Day", + "1992-09-22": "Independence Day", + "1992-11-01": "The Day of the People's Awakeners", + "1992-12-24": "Christmas Eve", + "1992-12-25": "Christmas Day", + "1992-12-26": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-03-03": "Liberation Day", + "1993-04-16": "Good Friday", + "1993-04-17": "Holy Saturday", + "1993-04-18": "Easter", + "1993-04-19": "Easter", + "1993-05-01": "Labor Day and International Workers' Solidarity Day", + "1993-05-06": "St. George's Day (Day of the Bulgarian Army)", + "1993-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "1993-09-06": "Unification Day", + "1993-09-22": "Independence Day", + "1993-11-01": "The Day of the People's Awakeners", + "1993-12-24": "Christmas Eve", + "1993-12-25": "Christmas Day", + "1993-12-26": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-03-03": "Liberation Day", + "1994-04-29": "Good Friday", + "1994-04-30": "Holy Saturday", + "1994-05-01": "Easter; Labor Day and International Workers' Solidarity Day", + "1994-05-02": "Easter", + "1994-05-06": "St. George's Day (Day of the Bulgarian Army)", + "1994-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "1994-09-06": "Unification Day", + "1994-09-22": "Independence Day", + "1994-11-01": "The Day of the People's Awakeners", + "1994-12-24": "Christmas Eve", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day", + "1995-01-01": "New Year's Day", + "1995-03-03": "Liberation Day", + "1995-04-21": "Good Friday", + "1995-04-22": "Holy Saturday", + "1995-04-23": "Easter", + "1995-04-24": "Easter", + "1995-05-01": "Labor Day and International Workers' Solidarity Day", + "1995-05-06": "St. George's Day (Day of the Bulgarian Army)", + "1995-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "1995-09-06": "Unification Day", + "1995-09-22": "Independence Day", + "1995-11-01": "The Day of the People's Awakeners", + "1995-12-24": "Christmas Eve", + "1995-12-25": "Christmas Day", + "1995-12-26": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-03-03": "Liberation Day", + "1996-04-12": "Good Friday", + "1996-04-13": "Holy Saturday", + "1996-04-14": "Easter", + "1996-04-15": "Easter", + "1996-05-01": "Labor Day and International Workers' Solidarity Day", + "1996-05-06": "St. George's Day (Day of the Bulgarian Army)", + "1996-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "1996-09-06": "Unification Day", + "1996-09-22": "Independence Day", + "1996-11-01": "The Day of the People's Awakeners", + "1996-12-24": "Christmas Eve", + "1996-12-25": "Christmas Day", + "1996-12-26": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-03-03": "Liberation Day", + "1997-04-25": "Good Friday", + "1997-04-26": "Holy Saturday", + "1997-04-27": "Easter", + "1997-04-28": "Easter", + "1997-05-01": "Labor Day and International Workers' Solidarity Day", + "1997-05-06": "St. George's Day (Day of the Bulgarian Army)", + "1997-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "1997-09-06": "Unification Day", + "1997-09-22": "Independence Day", + "1997-11-01": "The Day of the People's Awakeners", + "1997-12-24": "Christmas Eve", + "1997-12-25": "Christmas Day", + "1997-12-26": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-03-03": "Liberation Day", + "1998-04-17": "Good Friday", + "1998-04-18": "Holy Saturday", + "1998-04-19": "Easter", + "1998-04-20": "Easter", + "1998-05-01": "Labor Day and International Workers' Solidarity Day", + "1998-05-06": "St. George's Day (Day of the Bulgarian Army)", + "1998-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "1998-09-06": "Unification Day", + "1998-09-22": "Independence Day", + "1998-11-01": "The Day of the People's Awakeners", + "1998-12-24": "Christmas Eve", + "1998-12-25": "Christmas Day", + "1998-12-26": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-03-03": "Liberation Day", + "1999-04-09": "Good Friday", + "1999-04-10": "Holy Saturday", + "1999-04-11": "Easter", + "1999-04-12": "Easter", + "1999-05-01": "Labor Day and International Workers' Solidarity Day", + "1999-05-06": "St. George's Day (Day of the Bulgarian Army)", + "1999-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "1999-09-06": "Unification Day", + "1999-09-22": "Independence Day", + "1999-11-01": "The Day of the People's Awakeners", + "1999-12-24": "Christmas Eve", + "1999-12-25": "Christmas Day", + "1999-12-26": "Christmas Day", + "2000-01-01": "New Year's Day", + "2000-03-03": "Liberation Day", + "2000-04-28": "Good Friday", + "2000-04-29": "Holy Saturday", + "2000-04-30": "Easter", + "2000-05-01": "Easter; Labor Day and International Workers' Solidarity Day", + "2000-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2000-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2000-09-06": "Unification Day", + "2000-09-22": "Independence Day", + "2000-11-01": "The Day of the People's Awakeners", + "2000-12-24": "Christmas Eve", + "2000-12-25": "Christmas Day", + "2000-12-26": "Christmas Day", + "2001-01-01": "New Year's Day", + "2001-03-03": "Liberation Day", + "2001-04-13": "Good Friday", + "2001-04-14": "Holy Saturday", + "2001-04-15": "Easter", + "2001-04-16": "Easter", + "2001-05-01": "Labor Day and International Workers' Solidarity Day", + "2001-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2001-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2001-09-06": "Unification Day", + "2001-09-22": "Independence Day", + "2001-11-01": "The Day of the People's Awakeners", + "2001-12-24": "Christmas Eve", + "2001-12-25": "Christmas Day", + "2001-12-26": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-03-03": "Liberation Day", + "2002-05-01": "Labor Day and International Workers' Solidarity Day", + "2002-05-03": "Good Friday", + "2002-05-04": "Holy Saturday", + "2002-05-05": "Easter", + "2002-05-06": "Easter; St. George's Day (Day of the Bulgarian Army)", + "2002-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2002-09-06": "Unification Day", + "2002-09-22": "Independence Day", + "2002-11-01": "The Day of the People's Awakeners", + "2002-12-24": "Christmas Eve", + "2002-12-25": "Christmas Day", + "2002-12-26": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-03-03": "Liberation Day", + "2003-04-25": "Good Friday", + "2003-04-26": "Holy Saturday", + "2003-04-27": "Easter", + "2003-04-28": "Easter", + "2003-05-01": "Labor Day and International Workers' Solidarity Day", + "2003-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2003-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2003-09-06": "Unification Day", + "2003-09-22": "Independence Day", + "2003-11-01": "The Day of the People's Awakeners", + "2003-12-24": "Christmas Eve", + "2003-12-25": "Christmas Day", + "2003-12-26": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-03-03": "Liberation Day", + "2004-04-09": "Good Friday", + "2004-04-10": "Holy Saturday", + "2004-04-11": "Easter", + "2004-04-12": "Easter", + "2004-05-01": "Labor Day and International Workers' Solidarity Day", + "2004-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2004-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2004-09-06": "Unification Day", + "2004-09-22": "Independence Day", + "2004-11-01": "The Day of the People's Awakeners", + "2004-12-24": "Christmas Eve", + "2004-12-25": "Christmas Day", + "2004-12-26": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-03-03": "Liberation Day", + "2005-04-29": "Good Friday", + "2005-04-30": "Holy Saturday", + "2005-05-01": "Easter; Labor Day and International Workers' Solidarity Day", + "2005-05-02": "Easter", + "2005-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2005-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2005-09-06": "Unification Day", + "2005-09-22": "Independence Day", + "2005-11-01": "The Day of the People's Awakeners", + "2005-12-24": "Christmas Eve", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day", + "2006-01-01": "New Year's Day", + "2006-03-03": "Liberation Day", + "2006-04-21": "Good Friday", + "2006-04-22": "Holy Saturday", + "2006-04-23": "Easter", + "2006-04-24": "Easter", + "2006-05-01": "Labor Day and International Workers' Solidarity Day", + "2006-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2006-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2006-09-06": "Unification Day", + "2006-09-22": "Independence Day", + "2006-11-01": "The Day of the People's Awakeners", + "2006-12-24": "Christmas Eve", + "2006-12-25": "Christmas Day", + "2006-12-26": "Christmas Day", + "2007-01-01": "New Year's Day", + "2007-03-03": "Liberation Day", + "2007-04-06": "Good Friday", + "2007-04-07": "Holy Saturday", + "2007-04-08": "Easter", + "2007-04-09": "Easter", + "2007-05-01": "Labor Day and International Workers' Solidarity Day", + "2007-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2007-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2007-09-06": "Unification Day", + "2007-09-22": "Independence Day", + "2007-11-01": "The Day of the People's Awakeners", + "2007-12-24": "Christmas Eve", + "2007-12-25": "Christmas Day", + "2007-12-26": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-03-03": "Liberation Day", + "2008-04-25": "Good Friday", + "2008-04-26": "Holy Saturday", + "2008-04-27": "Easter", + "2008-04-28": "Easter", + "2008-05-01": "Labor Day and International Workers' Solidarity Day", + "2008-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2008-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2008-09-06": "Unification Day", + "2008-09-22": "Independence Day", + "2008-11-01": "The Day of the People's Awakeners", + "2008-12-24": "Christmas Eve", + "2008-12-25": "Christmas Day", + "2008-12-26": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-03-03": "Liberation Day", + "2009-04-17": "Good Friday", + "2009-04-18": "Holy Saturday", + "2009-04-19": "Easter", + "2009-04-20": "Easter", + "2009-05-01": "Labor Day and International Workers' Solidarity Day", + "2009-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2009-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2009-09-06": "Unification Day", + "2009-09-22": "Independence Day", + "2009-11-01": "The Day of the People's Awakeners", + "2009-12-24": "Christmas Eve", + "2009-12-25": "Christmas Day", + "2009-12-26": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-03-03": "Liberation Day", + "2010-04-02": "Good Friday", + "2010-04-03": "Holy Saturday", + "2010-04-04": "Easter", + "2010-04-05": "Easter", + "2010-05-01": "Labor Day and International Workers' Solidarity Day", + "2010-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2010-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2010-09-06": "Unification Day", + "2010-09-22": "Independence Day", + "2010-11-01": "The Day of the People's Awakeners", + "2010-12-24": "Christmas Eve", + "2010-12-25": "Christmas Day", + "2010-12-26": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-03-03": "Liberation Day", + "2011-04-22": "Good Friday", + "2011-04-23": "Holy Saturday", + "2011-04-24": "Easter", + "2011-04-25": "Easter", + "2011-05-01": "Labor Day and International Workers' Solidarity Day", + "2011-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2011-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2011-09-06": "Unification Day", + "2011-09-22": "Independence Day", + "2011-11-01": "The Day of the People's Awakeners", + "2011-12-24": "Christmas Eve", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day", + "2012-01-01": "New Year's Day", + "2012-03-03": "Liberation Day", + "2012-04-13": "Good Friday", + "2012-04-14": "Holy Saturday", + "2012-04-15": "Easter", + "2012-04-16": "Easter", + "2012-05-01": "Labor Day and International Workers' Solidarity Day", + "2012-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2012-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2012-09-06": "Unification Day", + "2012-09-22": "Independence Day", + "2012-11-01": "The Day of the People's Awakeners", + "2012-12-24": "Christmas Eve", + "2012-12-25": "Christmas Day", + "2012-12-26": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-03-03": "Liberation Day", + "2013-05-01": "Labor Day and International Workers' Solidarity Day", + "2013-05-03": "Good Friday", + "2013-05-04": "Holy Saturday", + "2013-05-05": "Easter", + "2013-05-06": "Easter; St. George's Day (Day of the Bulgarian Army)", + "2013-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2013-09-06": "Unification Day", + "2013-09-22": "Independence Day", + "2013-11-01": "The Day of the People's Awakeners", + "2013-12-24": "Christmas Eve", + "2013-12-25": "Christmas Day", + "2013-12-26": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-03-03": "Liberation Day", + "2014-04-18": "Good Friday", + "2014-04-19": "Holy Saturday", + "2014-04-20": "Easter", + "2014-04-21": "Easter", + "2014-05-01": "Labor Day and International Workers' Solidarity Day", + "2014-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2014-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2014-09-06": "Unification Day", + "2014-09-22": "Independence Day", + "2014-11-01": "The Day of the People's Awakeners", + "2014-12-24": "Christmas Eve", + "2014-12-25": "Christmas Day", + "2014-12-26": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-03-03": "Liberation Day", + "2015-04-10": "Good Friday", + "2015-04-11": "Holy Saturday", + "2015-04-12": "Easter", + "2015-04-13": "Easter", + "2015-05-01": "Labor Day and International Workers' Solidarity Day", + "2015-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2015-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2015-09-06": "Unification Day", + "2015-09-22": "Independence Day", + "2015-11-01": "The Day of the People's Awakeners", + "2015-12-24": "Christmas Eve", + "2015-12-25": "Christmas Day", + "2015-12-26": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-03-03": "Liberation Day", + "2016-04-29": "Good Friday", + "2016-04-30": "Holy Saturday", + "2016-05-01": "Easter; Labor Day and International Workers' Solidarity Day", + "2016-05-02": "Easter", + "2016-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2016-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2016-09-06": "Unification Day", + "2016-09-22": "Independence Day", + "2016-11-01": "The Day of the People's Awakeners", + "2016-12-24": "Christmas Eve", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (Observed)", + "2017-03-03": "Liberation Day", + "2017-04-14": "Good Friday", + "2017-04-15": "Holy Saturday", + "2017-04-16": "Easter", + "2017-04-17": "Easter", + "2017-05-01": "Labor Day and International Workers' Solidarity Day", + "2017-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2017-05-08": "St. George's Day (Day of the Bulgarian Army) (Observed)", + "2017-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2017-09-06": "Unification Day", + "2017-09-22": "Independence Day", + "2017-11-01": "The Day of the People's Awakeners", + "2017-12-24": "Christmas Eve", + "2017-12-25": "Christmas Day", + "2017-12-26": "Christmas Day", + "2017-12-27": "Christmas Eve (Observed)", + "2018-01-01": "New Year's Day", + "2018-03-03": "Liberation Day", + "2018-03-05": "Liberation Day (Observed)", + "2018-04-06": "Good Friday", + "2018-04-07": "Holy Saturday", + "2018-04-08": "Easter", + "2018-04-09": "Easter", + "2018-05-01": "Labor Day and International Workers' Solidarity Day", + "2018-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2018-05-07": "St. George's Day (Day of the Bulgarian Army) (Observed)", + "2018-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2018-09-06": "Unification Day", + "2018-09-22": "Independence Day", + "2018-09-24": "Independence Day (Observed)", + "2018-11-01": "The Day of the People's Awakeners", + "2018-12-24": "Christmas Eve", + "2018-12-25": "Christmas Day", + "2018-12-26": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-03-03": "Liberation Day", + "2019-03-04": "Liberation Day (Observed)", + "2019-04-26": "Good Friday", + "2019-04-27": "Holy Saturday", + "2019-04-28": "Easter", + "2019-04-29": "Easter", + "2019-05-01": "Labor Day and International Workers' Solidarity Day", + "2019-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2019-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2019-09-06": "Unification Day", + "2019-09-22": "Independence Day", + "2019-09-23": "Independence Day (Observed)", + "2019-11-01": "The Day of the People's Awakeners", + "2019-12-24": "Christmas Eve", + "2019-12-25": "Christmas Day", + "2019-12-26": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-03-03": "Liberation Day", + "2020-04-17": "Good Friday", + "2020-04-18": "Holy Saturday", + "2020-04-19": "Easter", + "2020-04-20": "Easter", + "2020-05-01": "Labor Day and International Workers' Solidarity Day", + "2020-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2020-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2020-05-25": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture (Observed)", + "2020-09-06": "Unification Day", + "2020-09-07": "Unification Day (Observed)", + "2020-09-22": "Independence Day", + "2020-11-01": "The Day of the People's Awakeners", + "2020-12-24": "Christmas Eve", + "2020-12-25": "Christmas Day", + "2020-12-26": "Christmas Day", + "2020-12-28": "Christmas Day (Observed)", + "2021-01-01": "New Year's Day", + "2021-03-03": "Liberation Day", + "2021-04-30": "Good Friday", + "2021-05-01": "Holy Saturday; Labor Day and International Workers' Solidarity Day", + "2021-05-02": "Easter", + "2021-05-03": "Easter", + "2021-05-04": "Labor Day and International Workers' Solidarity Day (Observed)", + "2021-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2021-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2021-09-06": "Unification Day", + "2021-09-22": "Independence Day", + "2021-11-01": "The Day of the People's Awakeners", + "2021-12-24": "Christmas Eve", + "2021-12-25": "Christmas Day", + "2021-12-26": "Christmas Day", + "2021-12-27": "Christmas Day (Observed)", + "2021-12-28": "Christmas Day (Observed)", + "2022-01-01": "New Year's Day", + "2022-01-03": "New Year's Day (Observed)", + "2022-03-03": "Liberation Day", + "2022-04-22": "Good Friday", + "2022-04-23": "Holy Saturday", + "2022-04-24": "Easter", + "2022-04-25": "Easter", + "2022-05-01": "Labor Day and International Workers' Solidarity Day", + "2022-05-02": "Labor Day and International Workers' Solidarity Day (Observed)", + "2022-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2022-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2022-09-06": "Unification Day", + "2022-09-22": "Independence Day", + "2022-11-01": "The Day of the People's Awakeners", + "2022-12-24": "Christmas Eve", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day", + "2022-12-27": "Christmas Eve (Observed)", + "2022-12-28": "Christmas Day (Observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (Observed)", + "2023-03-03": "Liberation Day", + "2023-04-14": "Good Friday", + "2023-04-15": "Holy Saturday", + "2023-04-16": "Easter", + "2023-04-17": "Easter", + "2023-05-01": "Labor Day and International Workers' Solidarity Day", + "2023-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2023-05-08": "St. George's Day (Day of the Bulgarian Army) (Observed)", + "2023-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2023-09-06": "Unification Day", + "2023-09-22": "Independence Day", + "2023-11-01": "The Day of the People's Awakeners", + "2023-12-24": "Christmas Eve", + "2023-12-25": "Christmas Day", + "2023-12-26": "Christmas Day", + "2023-12-27": "Christmas Eve (Observed)", + "2024-01-01": "New Year's Day", + "2024-03-03": "Liberation Day", + "2024-03-04": "Liberation Day (Observed)", + "2024-05-01": "Labor Day and International Workers' Solidarity Day", + "2024-05-03": "Good Friday", + "2024-05-04": "Holy Saturday", + "2024-05-05": "Easter", + "2024-05-06": "Easter; St. George's Day (Day of the Bulgarian Army)", + "2024-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2024-09-06": "Unification Day", + "2024-09-22": "Independence Day", + "2024-09-23": "Independence Day (Observed)", + "2024-11-01": "The Day of the People's Awakeners", + "2024-12-24": "Christmas Eve", + "2024-12-25": "Christmas Day", + "2024-12-26": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-03-03": "Liberation Day", + "2025-04-18": "Good Friday", + "2025-04-19": "Holy Saturday", + "2025-04-20": "Easter", + "2025-04-21": "Easter", + "2025-05-01": "Labor Day and International Workers' Solidarity Day", + "2025-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2025-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2025-05-26": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture (Observed)", + "2025-09-06": "Unification Day", + "2025-09-08": "Unification Day (Observed)", + "2025-09-22": "Independence Day", + "2025-11-01": "The Day of the People's Awakeners", + "2025-12-24": "Christmas Eve", + "2025-12-25": "Christmas Day", + "2025-12-26": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-03-03": "Liberation Day", + "2026-04-10": "Good Friday", + "2026-04-11": "Holy Saturday", + "2026-04-12": "Easter", + "2026-04-13": "Easter", + "2026-05-01": "Labor Day and International Workers' Solidarity Day", + "2026-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2026-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2026-05-25": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture (Observed)", + "2026-09-06": "Unification Day", + "2026-09-07": "Unification Day (Observed)", + "2026-09-22": "Independence Day", + "2026-11-01": "The Day of the People's Awakeners", + "2026-12-24": "Christmas Eve", + "2026-12-25": "Christmas Day", + "2026-12-26": "Christmas Day", + "2026-12-28": "Christmas Day (Observed)", + "2027-01-01": "New Year's Day", + "2027-03-03": "Liberation Day", + "2027-04-30": "Good Friday", + "2027-05-01": "Holy Saturday; Labor Day and International Workers' Solidarity Day", + "2027-05-02": "Easter", + "2027-05-03": "Easter", + "2027-05-04": "Labor Day and International Workers' Solidarity Day (Observed)", + "2027-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2027-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2027-09-06": "Unification Day", + "2027-09-22": "Independence Day", + "2027-11-01": "The Day of the People's Awakeners", + "2027-12-24": "Christmas Eve", + "2027-12-25": "Christmas Day", + "2027-12-26": "Christmas Day", + "2027-12-27": "Christmas Day (Observed)", + "2027-12-28": "Christmas Day (Observed)", + "2028-01-01": "New Year's Day", + "2028-01-03": "New Year's Day (Observed)", + "2028-03-03": "Liberation Day", + "2028-04-14": "Good Friday", + "2028-04-15": "Holy Saturday", + "2028-04-16": "Easter", + "2028-04-17": "Easter", + "2028-05-01": "Labor Day and International Workers' Solidarity Day", + "2028-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2028-05-08": "St. George's Day (Day of the Bulgarian Army) (Observed)", + "2028-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2028-09-06": "Unification Day", + "2028-09-22": "Independence Day", + "2028-11-01": "The Day of the People's Awakeners", + "2028-12-24": "Christmas Eve", + "2028-12-25": "Christmas Day", + "2028-12-26": "Christmas Day", + "2028-12-27": "Christmas Eve (Observed)", + "2029-01-01": "New Year's Day", + "2029-03-03": "Liberation Day", + "2029-03-05": "Liberation Day (Observed)", + "2029-04-06": "Good Friday", + "2029-04-07": "Holy Saturday", + "2029-04-08": "Easter", + "2029-04-09": "Easter", + "2029-05-01": "Labor Day and International Workers' Solidarity Day", + "2029-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2029-05-07": "St. George's Day (Day of the Bulgarian Army) (Observed)", + "2029-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2029-09-06": "Unification Day", + "2029-09-22": "Independence Day", + "2029-09-24": "Independence Day (Observed)", + "2029-11-01": "The Day of the People's Awakeners", + "2029-12-24": "Christmas Eve", + "2029-12-25": "Christmas Day", + "2029-12-26": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-03-03": "Liberation Day", + "2030-03-04": "Liberation Day (Observed)", + "2030-04-26": "Good Friday", + "2030-04-27": "Holy Saturday", + "2030-04-28": "Easter", + "2030-04-29": "Easter", + "2030-05-01": "Labor Day and International Workers' Solidarity Day", + "2030-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2030-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2030-09-06": "Unification Day", + "2030-09-22": "Independence Day", + "2030-09-23": "Independence Day (Observed)", + "2030-11-01": "The Day of the People's Awakeners", + "2030-12-24": "Christmas Eve", + "2030-12-25": "Christmas Day", + "2030-12-26": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-03-03": "Liberation Day", + "2031-04-11": "Good Friday", + "2031-04-12": "Holy Saturday", + "2031-04-13": "Easter", + "2031-04-14": "Easter", + "2031-05-01": "Labor Day and International Workers' Solidarity Day", + "2031-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2031-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2031-05-26": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture (Observed)", + "2031-09-06": "Unification Day", + "2031-09-08": "Unification Day (Observed)", + "2031-09-22": "Independence Day", + "2031-11-01": "The Day of the People's Awakeners", + "2031-12-24": "Christmas Eve", + "2031-12-25": "Christmas Day", + "2031-12-26": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-03-03": "Liberation Day", + "2032-04-30": "Good Friday", + "2032-05-01": "Holy Saturday; Labor Day and International Workers' Solidarity Day", + "2032-05-02": "Easter", + "2032-05-03": "Easter", + "2032-05-04": "Labor Day and International Workers' Solidarity Day (Observed)", + "2032-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2032-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2032-09-06": "Unification Day", + "2032-09-22": "Independence Day", + "2032-11-01": "The Day of the People's Awakeners", + "2032-12-24": "Christmas Eve", + "2032-12-25": "Christmas Day", + "2032-12-26": "Christmas Day", + "2032-12-27": "Christmas Day (Observed)", + "2032-12-28": "Christmas Day (Observed)", + "2033-01-01": "New Year's Day", + "2033-01-03": "New Year's Day (Observed)", + "2033-03-03": "Liberation Day", + "2033-04-22": "Good Friday", + "2033-04-23": "Holy Saturday", + "2033-04-24": "Easter", + "2033-04-25": "Easter", + "2033-05-01": "Labor Day and International Workers' Solidarity Day", + "2033-05-02": "Labor Day and International Workers' Solidarity Day (Observed)", + "2033-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2033-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2033-09-06": "Unification Day", + "2033-09-22": "Independence Day", + "2033-11-01": "The Day of the People's Awakeners", + "2033-12-24": "Christmas Eve", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day", + "2033-12-27": "Christmas Eve (Observed)", + "2033-12-28": "Christmas Day (Observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-03-03": "Liberation Day", + "2034-04-07": "Good Friday", + "2034-04-08": "Holy Saturday", + "2034-04-09": "Easter", + "2034-04-10": "Easter", + "2034-05-01": "Labor Day and International Workers' Solidarity Day", + "2034-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2034-05-08": "St. George's Day (Day of the Bulgarian Army) (Observed)", + "2034-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2034-09-06": "Unification Day", + "2034-09-22": "Independence Day", + "2034-11-01": "The Day of the People's Awakeners", + "2034-12-24": "Christmas Eve", + "2034-12-25": "Christmas Day", + "2034-12-26": "Christmas Day", + "2034-12-27": "Christmas Eve (Observed)", + "2035-01-01": "New Year's Day", + "2035-03-03": "Liberation Day", + "2035-03-05": "Liberation Day (Observed)", + "2035-04-27": "Good Friday", + "2035-04-28": "Holy Saturday", + "2035-04-29": "Easter", + "2035-04-30": "Easter", + "2035-05-01": "Labor Day and International Workers' Solidarity Day", + "2035-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2035-05-07": "St. George's Day (Day of the Bulgarian Army) (Observed)", + "2035-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2035-09-06": "Unification Day", + "2035-09-22": "Independence Day", + "2035-09-24": "Independence Day (Observed)", + "2035-11-01": "The Day of the People's Awakeners", + "2035-12-24": "Christmas Eve", + "2035-12-25": "Christmas Day", + "2035-12-26": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-03-03": "Liberation Day", + "2036-04-18": "Good Friday", + "2036-04-19": "Holy Saturday", + "2036-04-20": "Easter", + "2036-04-21": "Easter", + "2036-05-01": "Labor Day and International Workers' Solidarity Day", + "2036-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2036-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2036-05-26": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture (Observed)", + "2036-09-06": "Unification Day", + "2036-09-08": "Unification Day (Observed)", + "2036-09-22": "Independence Day", + "2036-11-01": "The Day of the People's Awakeners", + "2036-12-24": "Christmas Eve", + "2036-12-25": "Christmas Day", + "2036-12-26": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-03-03": "Liberation Day", + "2037-04-03": "Good Friday", + "2037-04-04": "Holy Saturday", + "2037-04-05": "Easter", + "2037-04-06": "Easter", + "2037-05-01": "Labor Day and International Workers' Solidarity Day", + "2037-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2037-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2037-05-25": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture (Observed)", + "2037-09-06": "Unification Day", + "2037-09-07": "Unification Day (Observed)", + "2037-09-22": "Independence Day", + "2037-11-01": "The Day of the People's Awakeners", + "2037-12-24": "Christmas Eve", + "2037-12-25": "Christmas Day", + "2037-12-26": "Christmas Day", + "2037-12-28": "Christmas Day (Observed)", + "2038-01-01": "New Year's Day", + "2038-03-03": "Liberation Day", + "2038-04-23": "Good Friday", + "2038-04-24": "Holy Saturday", + "2038-04-25": "Easter", + "2038-04-26": "Easter", + "2038-05-01": "Labor Day and International Workers' Solidarity Day", + "2038-05-03": "Labor Day and International Workers' Solidarity Day (Observed)", + "2038-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2038-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2038-09-06": "Unification Day", + "2038-09-22": "Independence Day", + "2038-11-01": "The Day of the People's Awakeners", + "2038-12-24": "Christmas Eve", + "2038-12-25": "Christmas Day", + "2038-12-26": "Christmas Day", + "2038-12-27": "Christmas Day (Observed)", + "2038-12-28": "Christmas Day (Observed)", + "2039-01-01": "New Year's Day", + "2039-01-03": "New Year's Day (Observed)", + "2039-03-03": "Liberation Day", + "2039-04-15": "Good Friday", + "2039-04-16": "Holy Saturday", + "2039-04-17": "Easter", + "2039-04-18": "Easter", + "2039-05-01": "Labor Day and International Workers' Solidarity Day", + "2039-05-02": "Labor Day and International Workers' Solidarity Day (Observed)", + "2039-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2039-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2039-09-06": "Unification Day", + "2039-09-22": "Independence Day", + "2039-11-01": "The Day of the People's Awakeners", + "2039-12-24": "Christmas Eve", + "2039-12-25": "Christmas Day", + "2039-12-26": "Christmas Day", + "2039-12-27": "Christmas Eve (Observed)", + "2039-12-28": "Christmas Day (Observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (Observed)", + "2040-03-03": "Liberation Day", + "2040-03-05": "Liberation Day (Observed)", + "2040-05-01": "Labor Day and International Workers' Solidarity Day", + "2040-05-04": "Good Friday", + "2040-05-05": "Holy Saturday", + "2040-05-06": "Easter; St. George's Day (Day of the Bulgarian Army)", + "2040-05-07": "Easter", + "2040-05-08": "St. George's Day (Day of the Bulgarian Army) (Observed)", + "2040-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2040-09-06": "Unification Day", + "2040-09-22": "Independence Day", + "2040-09-24": "Independence Day (Observed)", + "2040-11-01": "The Day of the People's Awakeners", + "2040-12-24": "Christmas Eve", + "2040-12-25": "Christmas Day", + "2040-12-26": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-03-03": "Liberation Day", + "2041-03-04": "Liberation Day (Observed)", + "2041-04-19": "Good Friday", + "2041-04-20": "Holy Saturday", + "2041-04-21": "Easter", + "2041-04-22": "Easter", + "2041-05-01": "Labor Day and International Workers' Solidarity Day", + "2041-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2041-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2041-09-06": "Unification Day", + "2041-09-22": "Independence Day", + "2041-09-23": "Independence Day (Observed)", + "2041-11-01": "The Day of the People's Awakeners", + "2041-12-24": "Christmas Eve", + "2041-12-25": "Christmas Day", + "2041-12-26": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-03-03": "Liberation Day", + "2042-04-11": "Good Friday", + "2042-04-12": "Holy Saturday", + "2042-04-13": "Easter", + "2042-04-14": "Easter", + "2042-05-01": "Labor Day and International Workers' Solidarity Day", + "2042-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2042-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2042-05-26": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture (Observed)", + "2042-09-06": "Unification Day", + "2042-09-08": "Unification Day (Observed)", + "2042-09-22": "Independence Day", + "2042-11-01": "The Day of the People's Awakeners", + "2042-12-24": "Christmas Eve", + "2042-12-25": "Christmas Day", + "2042-12-26": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-03-03": "Liberation Day", + "2043-05-01": "Good Friday; Labor Day and International Workers' Solidarity Day", + "2043-05-02": "Holy Saturday", + "2043-05-03": "Easter", + "2043-05-04": "Easter", + "2043-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2043-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2043-05-25": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture (Observed)", + "2043-09-06": "Unification Day", + "2043-09-07": "Unification Day (Observed)", + "2043-09-22": "Independence Day", + "2043-11-01": "The Day of the People's Awakeners", + "2043-12-24": "Christmas Eve", + "2043-12-25": "Christmas Day", + "2043-12-26": "Christmas Day", + "2043-12-28": "Christmas Day (Observed)", + "2044-01-01": "New Year's Day", + "2044-03-03": "Liberation Day", + "2044-04-22": "Good Friday", + "2044-04-23": "Holy Saturday", + "2044-04-24": "Easter", + "2044-04-25": "Easter", + "2044-05-01": "Labor Day and International Workers' Solidarity Day", + "2044-05-02": "Labor Day and International Workers' Solidarity Day (Observed)", + "2044-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2044-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2044-09-06": "Unification Day", + "2044-09-22": "Independence Day", + "2044-11-01": "The Day of the People's Awakeners", + "2044-12-24": "Christmas Eve", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day", + "2044-12-27": "Christmas Eve (Observed)", + "2044-12-28": "Christmas Day (Observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (Observed)", + "2045-03-03": "Liberation Day", + "2045-04-07": "Good Friday", + "2045-04-08": "Holy Saturday", + "2045-04-09": "Easter", + "2045-04-10": "Easter", + "2045-05-01": "Labor Day and International Workers' Solidarity Day", + "2045-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2045-05-08": "St. George's Day (Day of the Bulgarian Army) (Observed)", + "2045-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2045-09-06": "Unification Day", + "2045-09-22": "Independence Day", + "2045-11-01": "The Day of the People's Awakeners", + "2045-12-24": "Christmas Eve", + "2045-12-25": "Christmas Day", + "2045-12-26": "Christmas Day", + "2045-12-27": "Christmas Eve (Observed)", + "2046-01-01": "New Year's Day", + "2046-03-03": "Liberation Day", + "2046-03-05": "Liberation Day (Observed)", + "2046-04-27": "Good Friday", + "2046-04-28": "Holy Saturday", + "2046-04-29": "Easter", + "2046-04-30": "Easter", + "2046-05-01": "Labor Day and International Workers' Solidarity Day", + "2046-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2046-05-07": "St. George's Day (Day of the Bulgarian Army) (Observed)", + "2046-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2046-09-06": "Unification Day", + "2046-09-22": "Independence Day", + "2046-09-24": "Independence Day (Observed)", + "2046-11-01": "The Day of the People's Awakeners", + "2046-12-24": "Christmas Eve", + "2046-12-25": "Christmas Day", + "2046-12-26": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-03-03": "Liberation Day", + "2047-03-04": "Liberation Day (Observed)", + "2047-04-19": "Good Friday", + "2047-04-20": "Holy Saturday", + "2047-04-21": "Easter", + "2047-04-22": "Easter", + "2047-05-01": "Labor Day and International Workers' Solidarity Day", + "2047-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2047-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2047-09-06": "Unification Day", + "2047-09-22": "Independence Day", + "2047-09-23": "Independence Day (Observed)", + "2047-11-01": "The Day of the People's Awakeners", + "2047-12-24": "Christmas Eve", + "2047-12-25": "Christmas Day", + "2047-12-26": "Christmas Day", + "2048-01-01": "New Year's Day", + "2048-03-03": "Liberation Day", + "2048-04-03": "Good Friday", + "2048-04-04": "Holy Saturday", + "2048-04-05": "Easter", + "2048-04-06": "Easter", + "2048-05-01": "Labor Day and International Workers' Solidarity Day", + "2048-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2048-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2048-05-25": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture (Observed)", + "2048-09-06": "Unification Day", + "2048-09-07": "Unification Day (Observed)", + "2048-09-22": "Independence Day", + "2048-11-01": "The Day of the People's Awakeners", + "2048-12-24": "Christmas Eve", + "2048-12-25": "Christmas Day", + "2048-12-26": "Christmas Day", + "2048-12-28": "Christmas Day (Observed)", + "2049-01-01": "New Year's Day", + "2049-03-03": "Liberation Day", + "2049-04-23": "Good Friday", + "2049-04-24": "Holy Saturday", + "2049-04-25": "Easter", + "2049-04-26": "Easter", + "2049-05-01": "Labor Day and International Workers' Solidarity Day", + "2049-05-03": "Labor Day and International Workers' Solidarity Day (Observed)", + "2049-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2049-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2049-09-06": "Unification Day", + "2049-09-22": "Independence Day", + "2049-11-01": "The Day of the People's Awakeners", + "2049-12-24": "Christmas Eve", + "2049-12-25": "Christmas Day", + "2049-12-26": "Christmas Day", + "2049-12-27": "Christmas Day (Observed)", + "2049-12-28": "Christmas Day (Observed)", + "2050-01-01": "New Year's Day", + "2050-01-03": "New Year's Day (Observed)", + "2050-03-03": "Liberation Day", + "2050-04-15": "Good Friday", + "2050-04-16": "Holy Saturday", + "2050-04-17": "Easter", + "2050-04-18": "Easter", + "2050-05-01": "Labor Day and International Workers' Solidarity Day", + "2050-05-02": "Labor Day and International Workers' Solidarity Day (Observed)", + "2050-05-06": "St. George's Day (Day of the Bulgarian Army)", + "2050-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "2050-09-06": "Unification Day", + "2050-09-22": "Independence Day", + "2050-11-01": "The Day of the People's Awakeners", + "2050-12-24": "Christmas Eve", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day", + "2050-12-27": "Christmas Eve (Observed)", + "2050-12-28": "Christmas Day (Observed)" +} diff --git a/snapshots/countries/BH.json b/snapshots/countries/BH.json new file mode 100644 index 000000000..07a5ebb25 --- /dev/null +++ b/snapshots/countries/BH.json @@ -0,0 +1,1434 @@ +{ + "1950-01-01": "New Year's Day; Prophet's Birthday* (*estimated)", + "1950-05-01": "Labor Day", + "1950-07-16": "Eid al-Fitr* (*estimated)", + "1950-07-17": "Eid al-Fitr Holiday* (*estimated)", + "1950-07-18": "Eid al-Fitr Holiday* (*estimated)", + "1950-09-23": "Eid al-Adha* (*estimated)", + "1950-09-24": "Eid al-Adha Holiday* (*estimated)", + "1950-09-25": "Eid al-Adha Holiday* (*estimated)", + "1950-10-13": "Islamic New Year* (*estimated)", + "1950-10-21": "Ashura Eve* (*estimated)", + "1950-10-22": "Ashura* (*estimated)", + "1950-12-16": "National Day", + "1950-12-17": "National Day", + "1950-12-22": "Prophet's Birthday* (*estimated)", + "1951-01-01": "New Year's Day", + "1951-05-01": "Labor Day", + "1951-07-06": "Eid al-Fitr* (*estimated)", + "1951-07-07": "Eid al-Fitr Holiday* (*estimated)", + "1951-07-08": "Eid al-Fitr Holiday* (*estimated)", + "1951-09-12": "Eid al-Adha* (*estimated)", + "1951-09-13": "Eid al-Adha Holiday* (*estimated)", + "1951-09-14": "Eid al-Adha Holiday* (*estimated)", + "1951-10-02": "Islamic New Year* (*estimated)", + "1951-10-10": "Ashura Eve* (*estimated)", + "1951-10-11": "Ashura* (*estimated)", + "1951-12-11": "Prophet's Birthday* (*estimated)", + "1951-12-16": "National Day", + "1951-12-17": "National Day", + "1952-01-01": "New Year's Day", + "1952-05-01": "Labor Day", + "1952-06-23": "Eid al-Fitr* (*estimated)", + "1952-06-24": "Eid al-Fitr Holiday* (*estimated)", + "1952-06-25": "Eid al-Fitr Holiday* (*estimated)", + "1952-08-31": "Eid al-Adha* (*estimated)", + "1952-09-01": "Eid al-Adha Holiday* (*estimated)", + "1952-09-02": "Eid al-Adha Holiday* (*estimated)", + "1952-09-21": "Islamic New Year* (*estimated)", + "1952-09-29": "Ashura Eve* (*estimated)", + "1952-09-30": "Ashura* (*estimated)", + "1952-11-30": "Prophet's Birthday* (*estimated)", + "1952-12-16": "National Day", + "1952-12-17": "National Day", + "1953-01-01": "New Year's Day", + "1953-05-01": "Labor Day", + "1953-06-13": "Eid al-Fitr* (*estimated)", + "1953-06-14": "Eid al-Fitr Holiday* (*estimated)", + "1953-06-15": "Eid al-Fitr Holiday* (*estimated)", + "1953-08-20": "Eid al-Adha* (*estimated)", + "1953-08-21": "Eid al-Adha Holiday* (*estimated)", + "1953-08-22": "Eid al-Adha Holiday* (*estimated)", + "1953-09-10": "Islamic New Year* (*estimated)", + "1953-09-18": "Ashura Eve* (*estimated)", + "1953-09-19": "Ashura* (*estimated)", + "1953-11-19": "Prophet's Birthday* (*estimated)", + "1953-12-16": "National Day", + "1953-12-17": "National Day", + "1954-01-01": "New Year's Day", + "1954-05-01": "Labor Day", + "1954-06-02": "Eid al-Fitr* (*estimated)", + "1954-06-03": "Eid al-Fitr Holiday* (*estimated)", + "1954-06-04": "Eid al-Fitr Holiday* (*estimated)", + "1954-08-09": "Eid al-Adha* (*estimated)", + "1954-08-10": "Eid al-Adha Holiday* (*estimated)", + "1954-08-11": "Eid al-Adha Holiday* (*estimated)", + "1954-08-30": "Islamic New Year* (*estimated)", + "1954-09-07": "Ashura Eve* (*estimated)", + "1954-09-08": "Ashura* (*estimated)", + "1954-11-08": "Prophet's Birthday* (*estimated)", + "1954-12-16": "National Day", + "1954-12-17": "National Day", + "1955-01-01": "New Year's Day", + "1955-05-01": "Labor Day", + "1955-05-23": "Eid al-Fitr* (*estimated)", + "1955-05-24": "Eid al-Fitr Holiday* (*estimated)", + "1955-05-25": "Eid al-Fitr Holiday* (*estimated)", + "1955-07-30": "Eid al-Adha* (*estimated)", + "1955-07-31": "Eid al-Adha Holiday* (*estimated)", + "1955-08-01": "Eid al-Adha Holiday* (*estimated)", + "1955-08-20": "Islamic New Year* (*estimated)", + "1955-08-28": "Ashura Eve* (*estimated)", + "1955-08-29": "Ashura* (*estimated)", + "1955-10-29": "Prophet's Birthday* (*estimated)", + "1955-12-16": "National Day", + "1955-12-17": "National Day", + "1956-01-01": "New Year's Day", + "1956-05-01": "Labor Day", + "1956-05-11": "Eid al-Fitr* (*estimated)", + "1956-05-12": "Eid al-Fitr Holiday* (*estimated)", + "1956-05-13": "Eid al-Fitr Holiday* (*estimated)", + "1956-07-19": "Eid al-Adha* (*estimated)", + "1956-07-20": "Eid al-Adha Holiday* (*estimated)", + "1956-07-21": "Eid al-Adha Holiday* (*estimated)", + "1956-08-08": "Islamic New Year* (*estimated)", + "1956-08-16": "Ashura Eve* (*estimated)", + "1956-08-17": "Ashura* (*estimated)", + "1956-10-17": "Prophet's Birthday* (*estimated)", + "1956-12-16": "National Day", + "1956-12-17": "National Day", + "1957-01-01": "New Year's Day", + "1957-05-01": "Eid al-Fitr* (*estimated); Labor Day", + "1957-05-02": "Eid al-Fitr Holiday* (*estimated)", + "1957-05-03": "Eid al-Fitr Holiday* (*estimated)", + "1957-07-08": "Eid al-Adha* (*estimated)", + "1957-07-09": "Eid al-Adha Holiday* (*estimated)", + "1957-07-10": "Eid al-Adha Holiday* (*estimated)", + "1957-07-28": "Islamic New Year* (*estimated)", + "1957-08-05": "Ashura Eve* (*estimated)", + "1957-08-06": "Ashura* (*estimated)", + "1957-10-06": "Prophet's Birthday* (*estimated)", + "1957-12-16": "National Day", + "1957-12-17": "National Day", + "1958-01-01": "New Year's Day", + "1958-04-20": "Eid al-Fitr* (*estimated)", + "1958-04-21": "Eid al-Fitr Holiday* (*estimated)", + "1958-04-22": "Eid al-Fitr Holiday* (*estimated)", + "1958-05-01": "Labor Day", + "1958-06-27": "Eid al-Adha* (*estimated)", + "1958-06-28": "Eid al-Adha Holiday* (*estimated)", + "1958-06-29": "Eid al-Adha Holiday* (*estimated)", + "1958-07-18": "Islamic New Year* (*estimated)", + "1958-07-26": "Ashura Eve* (*estimated)", + "1958-07-27": "Ashura* (*estimated)", + "1958-09-26": "Prophet's Birthday* (*estimated)", + "1958-12-16": "National Day", + "1958-12-17": "National Day", + "1959-01-01": "New Year's Day", + "1959-04-10": "Eid al-Fitr* (*estimated)", + "1959-04-11": "Eid al-Fitr Holiday* (*estimated)", + "1959-04-12": "Eid al-Fitr Holiday* (*estimated)", + "1959-05-01": "Labor Day", + "1959-06-17": "Eid al-Adha* (*estimated)", + "1959-06-18": "Eid al-Adha Holiday* (*estimated)", + "1959-06-19": "Eid al-Adha Holiday* (*estimated)", + "1959-07-07": "Islamic New Year* (*estimated)", + "1959-07-15": "Ashura Eve* (*estimated)", + "1959-07-16": "Ashura* (*estimated)", + "1959-09-15": "Prophet's Birthday* (*estimated)", + "1959-12-16": "National Day", + "1959-12-17": "National Day", + "1960-01-01": "New Year's Day", + "1960-03-28": "Eid al-Fitr* (*estimated)", + "1960-03-29": "Eid al-Fitr Holiday* (*estimated)", + "1960-03-30": "Eid al-Fitr Holiday* (*estimated)", + "1960-05-01": "Labor Day", + "1960-06-04": "Eid al-Adha* (*estimated)", + "1960-06-05": "Eid al-Adha Holiday* (*estimated)", + "1960-06-06": "Eid al-Adha Holiday* (*estimated)", + "1960-06-25": "Islamic New Year* (*estimated)", + "1960-07-03": "Ashura Eve* (*estimated)", + "1960-07-04": "Ashura* (*estimated)", + "1960-09-03": "Prophet's Birthday* (*estimated)", + "1960-12-16": "National Day", + "1960-12-17": "National Day", + "1961-01-01": "New Year's Day", + "1961-03-18": "Eid al-Fitr* (*estimated)", + "1961-03-19": "Eid al-Fitr Holiday* (*estimated)", + "1961-03-20": "Eid al-Fitr Holiday* (*estimated)", + "1961-05-01": "Labor Day", + "1961-05-25": "Eid al-Adha* (*estimated)", + "1961-05-26": "Eid al-Adha Holiday* (*estimated)", + "1961-05-27": "Eid al-Adha Holiday* (*estimated)", + "1961-06-14": "Islamic New Year* (*estimated)", + "1961-06-22": "Ashura Eve* (*estimated)", + "1961-06-23": "Ashura* (*estimated)", + "1961-08-23": "Prophet's Birthday* (*estimated)", + "1961-12-16": "National Day", + "1961-12-17": "National Day", + "1962-01-01": "New Year's Day", + "1962-03-07": "Eid al-Fitr* (*estimated)", + "1962-03-08": "Eid al-Fitr Holiday* (*estimated)", + "1962-03-09": "Eid al-Fitr Holiday* (*estimated)", + "1962-05-01": "Labor Day", + "1962-05-14": "Eid al-Adha* (*estimated)", + "1962-05-15": "Eid al-Adha Holiday* (*estimated)", + "1962-05-16": "Eid al-Adha Holiday* (*estimated)", + "1962-06-03": "Islamic New Year* (*estimated)", + "1962-06-11": "Ashura Eve* (*estimated)", + "1962-06-12": "Ashura* (*estimated)", + "1962-08-12": "Prophet's Birthday* (*estimated)", + "1962-12-16": "National Day", + "1962-12-17": "National Day", + "1963-01-01": "New Year's Day", + "1963-02-24": "Eid al-Fitr* (*estimated)", + "1963-02-25": "Eid al-Fitr Holiday* (*estimated)", + "1963-02-26": "Eid al-Fitr Holiday* (*estimated)", + "1963-05-01": "Labor Day", + "1963-05-03": "Eid al-Adha* (*estimated)", + "1963-05-04": "Eid al-Adha Holiday* (*estimated)", + "1963-05-05": "Eid al-Adha Holiday* (*estimated)", + "1963-05-24": "Islamic New Year* (*estimated)", + "1963-06-01": "Ashura Eve* (*estimated)", + "1963-06-02": "Ashura* (*estimated)", + "1963-08-02": "Prophet's Birthday* (*estimated)", + "1963-12-16": "National Day", + "1963-12-17": "National Day", + "1964-01-01": "New Year's Day", + "1964-02-14": "Eid al-Fitr* (*estimated)", + "1964-02-15": "Eid al-Fitr Holiday* (*estimated)", + "1964-02-16": "Eid al-Fitr Holiday* (*estimated)", + "1964-04-22": "Eid al-Adha* (*estimated)", + "1964-04-23": "Eid al-Adha Holiday* (*estimated)", + "1964-04-24": "Eid al-Adha Holiday* (*estimated)", + "1964-05-01": "Labor Day", + "1964-05-12": "Islamic New Year* (*estimated)", + "1964-05-20": "Ashura Eve* (*estimated)", + "1964-05-21": "Ashura* (*estimated)", + "1964-07-21": "Prophet's Birthday* (*estimated)", + "1964-12-16": "National Day", + "1964-12-17": "National Day", + "1965-01-01": "New Year's Day", + "1965-02-02": "Eid al-Fitr* (*estimated)", + "1965-02-03": "Eid al-Fitr Holiday* (*estimated)", + "1965-02-04": "Eid al-Fitr Holiday* (*estimated)", + "1965-04-11": "Eid al-Adha* (*estimated)", + "1965-04-12": "Eid al-Adha Holiday* (*estimated)", + "1965-04-13": "Eid al-Adha Holiday* (*estimated)", + "1965-05-01": "Islamic New Year* (*estimated); Labor Day", + "1965-05-09": "Ashura Eve* (*estimated)", + "1965-05-10": "Ashura* (*estimated)", + "1965-07-10": "Prophet's Birthday* (*estimated)", + "1965-12-16": "National Day", + "1965-12-17": "National Day", + "1966-01-01": "New Year's Day", + "1966-01-22": "Eid al-Fitr* (*estimated)", + "1966-01-23": "Eid al-Fitr Holiday* (*estimated)", + "1966-01-24": "Eid al-Fitr Holiday* (*estimated)", + "1966-04-01": "Eid al-Adha* (*estimated)", + "1966-04-02": "Eid al-Adha Holiday* (*estimated)", + "1966-04-03": "Eid al-Adha Holiday* (*estimated)", + "1966-04-21": "Islamic New Year* (*estimated)", + "1966-04-29": "Ashura Eve* (*estimated)", + "1966-04-30": "Ashura* (*estimated)", + "1966-05-01": "Labor Day", + "1966-07-01": "Prophet's Birthday* (*estimated)", + "1966-12-16": "National Day", + "1966-12-17": "National Day", + "1967-01-01": "New Year's Day", + "1967-01-12": "Eid al-Fitr* (*estimated)", + "1967-01-13": "Eid al-Fitr Holiday* (*estimated)", + "1967-01-14": "Eid al-Fitr Holiday* (*estimated)", + "1967-03-21": "Eid al-Adha* (*estimated)", + "1967-03-22": "Eid al-Adha Holiday* (*estimated)", + "1967-03-23": "Eid al-Adha Holiday* (*estimated)", + "1967-04-11": "Islamic New Year* (*estimated)", + "1967-04-19": "Ashura Eve* (*estimated)", + "1967-04-20": "Ashura* (*estimated)", + "1967-05-01": "Labor Day", + "1967-06-19": "Prophet's Birthday* (*estimated)", + "1967-12-16": "National Day", + "1967-12-17": "National Day", + "1968-01-01": "Eid al-Fitr* (*estimated); New Year's Day", + "1968-01-02": "Eid al-Fitr Holiday* (*estimated)", + "1968-01-03": "Eid al-Fitr Holiday* (*estimated)", + "1968-03-09": "Eid al-Adha* (*estimated)", + "1968-03-10": "Eid al-Adha Holiday* (*estimated)", + "1968-03-11": "Eid al-Adha Holiday* (*estimated)", + "1968-03-30": "Islamic New Year* (*estimated)", + "1968-04-07": "Ashura Eve* (*estimated)", + "1968-04-08": "Ashura* (*estimated)", + "1968-05-01": "Labor Day", + "1968-06-08": "Prophet's Birthday* (*estimated)", + "1968-12-16": "National Day", + "1968-12-17": "National Day", + "1968-12-21": "Eid al-Fitr* (*estimated)", + "1968-12-22": "Eid al-Fitr Holiday* (*estimated)", + "1968-12-23": "Eid al-Fitr Holiday* (*estimated)", + "1969-01-01": "New Year's Day", + "1969-02-27": "Eid al-Adha* (*estimated)", + "1969-02-28": "Eid al-Adha Holiday* (*estimated)", + "1969-03-01": "Eid al-Adha Holiday* (*estimated)", + "1969-03-19": "Islamic New Year* (*estimated)", + "1969-03-27": "Ashura Eve* (*estimated)", + "1969-03-28": "Ashura* (*estimated)", + "1969-05-01": "Labor Day", + "1969-05-28": "Prophet's Birthday* (*estimated)", + "1969-12-10": "Eid al-Fitr* (*estimated)", + "1969-12-11": "Eid al-Fitr Holiday* (*estimated)", + "1969-12-12": "Eid al-Fitr Holiday* (*estimated)", + "1969-12-16": "National Day", + "1969-12-17": "National Day", + "1970-01-01": "New Year's Day", + "1970-02-16": "Eid al-Adha* (*estimated)", + "1970-02-17": "Eid al-Adha Holiday* (*estimated)", + "1970-02-18": "Eid al-Adha Holiday* (*estimated)", + "1970-03-09": "Islamic New Year* (*estimated)", + "1970-03-17": "Ashura Eve* (*estimated)", + "1970-03-18": "Ashura* (*estimated)", + "1970-05-01": "Labor Day", + "1970-05-18": "Prophet's Birthday* (*estimated)", + "1970-11-30": "Eid al-Fitr* (*estimated)", + "1970-12-01": "Eid al-Fitr Holiday* (*estimated)", + "1970-12-02": "Eid al-Fitr Holiday* (*estimated)", + "1970-12-16": "National Day", + "1970-12-17": "National Day", + "1971-01-01": "New Year's Day", + "1971-02-06": "Eid al-Adha* (*estimated)", + "1971-02-07": "Eid al-Adha Holiday* (*estimated)", + "1971-02-08": "Eid al-Adha Holiday* (*estimated)", + "1971-02-26": "Islamic New Year* (*estimated)", + "1971-03-06": "Ashura Eve* (*estimated)", + "1971-03-07": "Ashura* (*estimated)", + "1971-05-01": "Labor Day", + "1971-05-07": "Prophet's Birthday* (*estimated)", + "1971-11-19": "Eid al-Fitr* (*estimated)", + "1971-11-20": "Eid al-Fitr Holiday* (*estimated)", + "1971-11-21": "Eid al-Fitr Holiday* (*estimated)", + "1971-12-16": "National Day", + "1971-12-17": "National Day", + "1972-01-01": "New Year's Day", + "1972-01-26": "Eid al-Adha* (*estimated)", + "1972-01-27": "Eid al-Adha Holiday* (*estimated)", + "1972-01-28": "Eid al-Adha Holiday* (*estimated)", + "1972-02-16": "Islamic New Year* (*estimated)", + "1972-02-24": "Ashura Eve* (*estimated)", + "1972-02-25": "Ashura* (*estimated)", + "1972-04-25": "Prophet's Birthday* (*estimated)", + "1972-05-01": "Labor Day", + "1972-11-07": "Eid al-Fitr* (*estimated)", + "1972-11-08": "Eid al-Fitr Holiday* (*estimated)", + "1972-11-09": "Eid al-Fitr Holiday* (*estimated)", + "1972-12-16": "National Day", + "1972-12-17": "National Day", + "1973-01-01": "New Year's Day", + "1973-01-14": "Eid al-Adha* (*estimated)", + "1973-01-15": "Eid al-Adha Holiday* (*estimated)", + "1973-01-16": "Eid al-Adha Holiday* (*estimated)", + "1973-02-04": "Islamic New Year* (*estimated)", + "1973-02-12": "Ashura Eve* (*estimated)", + "1973-02-13": "Ashura* (*estimated)", + "1973-04-15": "Prophet's Birthday* (*estimated)", + "1973-05-01": "Labor Day", + "1973-10-27": "Eid al-Fitr* (*estimated)", + "1973-10-28": "Eid al-Fitr Holiday* (*estimated)", + "1973-10-29": "Eid al-Fitr Holiday* (*estimated)", + "1973-12-16": "National Day", + "1973-12-17": "National Day", + "1974-01-01": "New Year's Day", + "1974-01-03": "Eid al-Adha* (*estimated)", + "1974-01-04": "Eid al-Adha Holiday* (*estimated)", + "1974-01-05": "Eid al-Adha Holiday* (*estimated)", + "1974-01-24": "Islamic New Year* (*estimated)", + "1974-02-01": "Ashura Eve* (*estimated)", + "1974-02-02": "Ashura* (*estimated)", + "1974-04-04": "Prophet's Birthday* (*estimated)", + "1974-05-01": "Labor Day", + "1974-10-16": "Eid al-Fitr* (*estimated)", + "1974-10-17": "Eid al-Fitr Holiday* (*estimated)", + "1974-10-18": "Eid al-Fitr Holiday* (*estimated)", + "1974-12-16": "National Day", + "1974-12-17": "National Day", + "1974-12-24": "Eid al-Adha* (*estimated)", + "1974-12-25": "Eid al-Adha Holiday* (*estimated)", + "1974-12-26": "Eid al-Adha Holiday* (*estimated)", + "1975-01-01": "New Year's Day", + "1975-01-13": "Islamic New Year* (*estimated)", + "1975-01-21": "Ashura Eve* (*estimated)", + "1975-01-22": "Ashura* (*estimated)", + "1975-03-24": "Prophet's Birthday* (*estimated)", + "1975-05-01": "Labor Day", + "1975-10-06": "Eid al-Fitr* (*estimated)", + "1975-10-07": "Eid al-Fitr Holiday* (*estimated)", + "1975-10-08": "Eid al-Fitr Holiday* (*estimated)", + "1975-12-13": "Eid al-Adha* (*estimated)", + "1975-12-14": "Eid al-Adha Holiday* (*estimated)", + "1975-12-15": "Eid al-Adha Holiday* (*estimated)", + "1975-12-16": "National Day", + "1975-12-17": "National Day", + "1976-01-01": "New Year's Day", + "1976-01-02": "Islamic New Year* (*estimated)", + "1976-01-10": "Ashura Eve* (*estimated)", + "1976-01-11": "Ashura* (*estimated)", + "1976-03-12": "Prophet's Birthday* (*estimated)", + "1976-05-01": "Labor Day", + "1976-09-24": "Eid al-Fitr* (*estimated)", + "1976-09-25": "Eid al-Fitr Holiday* (*estimated)", + "1976-09-26": "Eid al-Fitr Holiday* (*estimated)", + "1976-12-01": "Eid al-Adha* (*estimated)", + "1976-12-02": "Eid al-Adha Holiday* (*estimated)", + "1976-12-03": "Eid al-Adha Holiday* (*estimated)", + "1976-12-16": "National Day", + "1976-12-17": "National Day", + "1976-12-22": "Islamic New Year* (*estimated)", + "1976-12-30": "Ashura Eve* (*estimated)", + "1976-12-31": "Ashura* (*estimated)", + "1977-01-01": "New Year's Day", + "1977-03-02": "Prophet's Birthday* (*estimated)", + "1977-05-01": "Labor Day", + "1977-09-14": "Eid al-Fitr* (*estimated)", + "1977-09-15": "Eid al-Fitr Holiday* (*estimated)", + "1977-09-16": "Eid al-Fitr Holiday* (*estimated)", + "1977-11-21": "Eid al-Adha* (*estimated)", + "1977-11-22": "Eid al-Adha Holiday* (*estimated)", + "1977-11-23": "Eid al-Adha Holiday* (*estimated)", + "1977-12-11": "Islamic New Year* (*estimated)", + "1977-12-16": "National Day", + "1977-12-17": "National Day", + "1977-12-19": "Ashura Eve* (*estimated)", + "1977-12-20": "Ashura* (*estimated)", + "1978-01-01": "New Year's Day", + "1978-02-19": "Prophet's Birthday* (*estimated)", + "1978-05-01": "Labor Day", + "1978-09-03": "Eid al-Fitr* (*estimated)", + "1978-09-04": "Eid al-Fitr Holiday* (*estimated)", + "1978-09-05": "Eid al-Fitr Holiday* (*estimated)", + "1978-11-10": "Eid al-Adha* (*estimated)", + "1978-11-11": "Eid al-Adha Holiday* (*estimated)", + "1978-11-12": "Eid al-Adha Holiday* (*estimated)", + "1978-12-01": "Islamic New Year* (*estimated)", + "1978-12-09": "Ashura Eve* (*estimated)", + "1978-12-10": "Ashura* (*estimated)", + "1978-12-16": "National Day", + "1978-12-17": "National Day", + "1979-01-01": "New Year's Day", + "1979-02-09": "Prophet's Birthday* (*estimated)", + "1979-05-01": "Labor Day", + "1979-08-23": "Eid al-Fitr* (*estimated)", + "1979-08-24": "Eid al-Fitr Holiday* (*estimated)", + "1979-08-25": "Eid al-Fitr Holiday* (*estimated)", + "1979-10-31": "Eid al-Adha* (*estimated)", + "1979-11-01": "Eid al-Adha Holiday* (*estimated)", + "1979-11-02": "Eid al-Adha Holiday* (*estimated)", + "1979-11-20": "Islamic New Year* (*estimated)", + "1979-11-28": "Ashura Eve* (*estimated)", + "1979-11-29": "Ashura* (*estimated)", + "1979-12-16": "National Day", + "1979-12-17": "National Day", + "1980-01-01": "New Year's Day", + "1980-01-30": "Prophet's Birthday* (*estimated)", + "1980-05-01": "Labor Day", + "1980-08-12": "Eid al-Fitr* (*estimated)", + "1980-08-13": "Eid al-Fitr Holiday* (*estimated)", + "1980-08-14": "Eid al-Fitr Holiday* (*estimated)", + "1980-10-19": "Eid al-Adha* (*estimated)", + "1980-10-20": "Eid al-Adha Holiday* (*estimated)", + "1980-10-21": "Eid al-Adha Holiday* (*estimated)", + "1980-11-09": "Islamic New Year* (*estimated)", + "1980-11-17": "Ashura Eve* (*estimated)", + "1980-11-18": "Ashura* (*estimated)", + "1980-12-16": "National Day", + "1980-12-17": "National Day", + "1981-01-01": "New Year's Day", + "1981-01-18": "Prophet's Birthday* (*estimated)", + "1981-05-01": "Labor Day", + "1981-08-01": "Eid al-Fitr* (*estimated)", + "1981-08-02": "Eid al-Fitr Holiday* (*estimated)", + "1981-08-03": "Eid al-Fitr Holiday* (*estimated)", + "1981-10-08": "Eid al-Adha* (*estimated)", + "1981-10-09": "Eid al-Adha Holiday* (*estimated)", + "1981-10-10": "Eid al-Adha Holiday* (*estimated)", + "1981-10-28": "Islamic New Year* (*estimated)", + "1981-11-05": "Ashura Eve* (*estimated)", + "1981-11-06": "Ashura* (*estimated)", + "1981-12-16": "National Day", + "1981-12-17": "National Day", + "1982-01-01": "New Year's Day", + "1982-01-07": "Prophet's Birthday* (*estimated)", + "1982-05-01": "Labor Day", + "1982-07-21": "Eid al-Fitr* (*estimated)", + "1982-07-22": "Eid al-Fitr Holiday* (*estimated)", + "1982-07-23": "Eid al-Fitr Holiday* (*estimated)", + "1982-09-27": "Eid al-Adha* (*estimated)", + "1982-09-28": "Eid al-Adha Holiday* (*estimated)", + "1982-09-29": "Eid al-Adha Holiday* (*estimated)", + "1982-10-18": "Islamic New Year* (*estimated)", + "1982-10-26": "Ashura Eve* (*estimated)", + "1982-10-27": "Ashura* (*estimated)", + "1982-12-16": "National Day", + "1982-12-17": "National Day", + "1982-12-27": "Prophet's Birthday* (*estimated)", + "1983-01-01": "New Year's Day", + "1983-05-01": "Labor Day", + "1983-07-11": "Eid al-Fitr* (*estimated)", + "1983-07-12": "Eid al-Fitr Holiday* (*estimated)", + "1983-07-13": "Eid al-Fitr Holiday* (*estimated)", + "1983-09-17": "Eid al-Adha* (*estimated)", + "1983-09-18": "Eid al-Adha Holiday* (*estimated)", + "1983-09-19": "Eid al-Adha Holiday* (*estimated)", + "1983-10-07": "Islamic New Year* (*estimated)", + "1983-10-15": "Ashura Eve* (*estimated)", + "1983-10-16": "Ashura* (*estimated)", + "1983-12-16": "National Day; Prophet's Birthday* (*estimated)", + "1983-12-17": "National Day", + "1984-01-01": "New Year's Day", + "1984-05-01": "Labor Day", + "1984-06-30": "Eid al-Fitr* (*estimated)", + "1984-07-01": "Eid al-Fitr Holiday* (*estimated)", + "1984-07-02": "Eid al-Fitr Holiday* (*estimated)", + "1984-09-05": "Eid al-Adha* (*estimated)", + "1984-09-06": "Eid al-Adha Holiday* (*estimated)", + "1984-09-07": "Eid al-Adha Holiday* (*estimated)", + "1984-09-26": "Islamic New Year* (*estimated)", + "1984-10-04": "Ashura Eve* (*estimated)", + "1984-10-05": "Ashura* (*estimated)", + "1984-12-04": "Prophet's Birthday* (*estimated)", + "1984-12-16": "National Day", + "1984-12-17": "National Day", + "1985-01-01": "New Year's Day", + "1985-05-01": "Labor Day", + "1985-06-19": "Eid al-Fitr* (*estimated)", + "1985-06-20": "Eid al-Fitr Holiday* (*estimated)", + "1985-06-21": "Eid al-Fitr Holiday* (*estimated)", + "1985-08-26": "Eid al-Adha* (*estimated)", + "1985-08-27": "Eid al-Adha Holiday* (*estimated)", + "1985-08-28": "Eid al-Adha Holiday* (*estimated)", + "1985-09-15": "Islamic New Year* (*estimated)", + "1985-09-23": "Ashura Eve* (*estimated)", + "1985-09-24": "Ashura* (*estimated)", + "1985-11-24": "Prophet's Birthday* (*estimated)", + "1985-12-16": "National Day", + "1985-12-17": "National Day", + "1986-01-01": "New Year's Day", + "1986-05-01": "Labor Day", + "1986-06-08": "Eid al-Fitr* (*estimated)", + "1986-06-09": "Eid al-Fitr Holiday* (*estimated)", + "1986-06-10": "Eid al-Fitr Holiday* (*estimated)", + "1986-08-15": "Eid al-Adha* (*estimated)", + "1986-08-16": "Eid al-Adha Holiday* (*estimated)", + "1986-08-17": "Eid al-Adha Holiday* (*estimated)", + "1986-09-05": "Islamic New Year* (*estimated)", + "1986-09-13": "Ashura Eve* (*estimated)", + "1986-09-14": "Ashura* (*estimated)", + "1986-11-14": "Prophet's Birthday* (*estimated)", + "1986-12-16": "National Day", + "1986-12-17": "National Day", + "1987-01-01": "New Year's Day", + "1987-05-01": "Labor Day", + "1987-05-28": "Eid al-Fitr* (*estimated)", + "1987-05-29": "Eid al-Fitr Holiday* (*estimated)", + "1987-05-30": "Eid al-Fitr Holiday* (*estimated)", + "1987-08-04": "Eid al-Adha* (*estimated)", + "1987-08-05": "Eid al-Adha Holiday* (*estimated)", + "1987-08-06": "Eid al-Adha Holiday* (*estimated)", + "1987-08-25": "Islamic New Year* (*estimated)", + "1987-09-02": "Ashura Eve* (*estimated)", + "1987-09-03": "Ashura* (*estimated)", + "1987-11-03": "Prophet's Birthday* (*estimated)", + "1987-12-16": "National Day", + "1987-12-17": "National Day", + "1988-01-01": "New Year's Day", + "1988-05-01": "Labor Day", + "1988-05-16": "Eid al-Fitr* (*estimated)", + "1988-05-17": "Eid al-Fitr Holiday* (*estimated)", + "1988-05-18": "Eid al-Fitr Holiday* (*estimated)", + "1988-07-23": "Eid al-Adha* (*estimated)", + "1988-07-24": "Eid al-Adha Holiday* (*estimated)", + "1988-07-25": "Eid al-Adha Holiday* (*estimated)", + "1988-08-13": "Islamic New Year* (*estimated)", + "1988-08-21": "Ashura Eve* (*estimated)", + "1988-08-22": "Ashura* (*estimated)", + "1988-10-22": "Prophet's Birthday* (*estimated)", + "1988-12-16": "National Day", + "1988-12-17": "National Day", + "1989-01-01": "New Year's Day", + "1989-05-01": "Labor Day", + "1989-05-06": "Eid al-Fitr* (*estimated)", + "1989-05-07": "Eid al-Fitr Holiday* (*estimated)", + "1989-05-08": "Eid al-Fitr Holiday* (*estimated)", + "1989-07-13": "Eid al-Adha* (*estimated)", + "1989-07-14": "Eid al-Adha Holiday* (*estimated)", + "1989-07-15": "Eid al-Adha Holiday* (*estimated)", + "1989-08-02": "Islamic New Year* (*estimated)", + "1989-08-10": "Ashura Eve* (*estimated)", + "1989-08-11": "Ashura* (*estimated)", + "1989-10-11": "Prophet's Birthday* (*estimated)", + "1989-12-16": "National Day", + "1989-12-17": "National Day", + "1990-01-01": "New Year's Day", + "1990-04-26": "Eid al-Fitr* (*estimated)", + "1990-04-27": "Eid al-Fitr Holiday* (*estimated)", + "1990-04-28": "Eid al-Fitr Holiday* (*estimated)", + "1990-05-01": "Labor Day", + "1990-07-02": "Eid al-Adha* (*estimated)", + "1990-07-03": "Eid al-Adha Holiday* (*estimated)", + "1990-07-04": "Eid al-Adha Holiday* (*estimated)", + "1990-07-23": "Islamic New Year* (*estimated)", + "1990-07-31": "Ashura Eve* (*estimated)", + "1990-08-01": "Ashura* (*estimated)", + "1990-10-01": "Prophet's Birthday* (*estimated)", + "1990-12-16": "National Day", + "1990-12-17": "National Day", + "1991-01-01": "New Year's Day", + "1991-04-15": "Eid al-Fitr* (*estimated)", + "1991-04-16": "Eid al-Fitr Holiday* (*estimated)", + "1991-04-17": "Eid al-Fitr Holiday* (*estimated)", + "1991-05-01": "Labor Day", + "1991-06-22": "Eid al-Adha* (*estimated)", + "1991-06-23": "Eid al-Adha Holiday* (*estimated)", + "1991-06-24": "Eid al-Adha Holiday* (*estimated)", + "1991-07-12": "Islamic New Year* (*estimated)", + "1991-07-20": "Ashura Eve* (*estimated)", + "1991-07-21": "Ashura* (*estimated)", + "1991-09-20": "Prophet's Birthday* (*estimated)", + "1991-12-16": "National Day", + "1991-12-17": "National Day", + "1992-01-01": "New Year's Day", + "1992-04-04": "Eid al-Fitr* (*estimated)", + "1992-04-05": "Eid al-Fitr Holiday* (*estimated)", + "1992-04-06": "Eid al-Fitr Holiday* (*estimated)", + "1992-05-01": "Labor Day", + "1992-06-11": "Eid al-Adha* (*estimated)", + "1992-06-12": "Eid al-Adha Holiday* (*estimated)", + "1992-06-13": "Eid al-Adha Holiday* (*estimated)", + "1992-07-01": "Islamic New Year* (*estimated)", + "1992-07-09": "Ashura Eve* (*estimated)", + "1992-07-10": "Ashura* (*estimated)", + "1992-09-09": "Prophet's Birthday* (*estimated)", + "1992-12-16": "National Day", + "1992-12-17": "National Day", + "1993-01-01": "New Year's Day", + "1993-03-24": "Eid al-Fitr* (*estimated)", + "1993-03-25": "Eid al-Fitr Holiday* (*estimated)", + "1993-03-26": "Eid al-Fitr Holiday* (*estimated)", + "1993-05-01": "Labor Day", + "1993-05-31": "Eid al-Adha* (*estimated)", + "1993-06-01": "Eid al-Adha Holiday* (*estimated)", + "1993-06-02": "Eid al-Adha Holiday* (*estimated)", + "1993-06-21": "Islamic New Year* (*estimated)", + "1993-06-29": "Ashura Eve* (*estimated)", + "1993-06-30": "Ashura* (*estimated)", + "1993-08-29": "Prophet's Birthday* (*estimated)", + "1993-12-16": "National Day", + "1993-12-17": "National Day", + "1994-01-01": "New Year's Day", + "1994-03-13": "Eid al-Fitr* (*estimated)", + "1994-03-14": "Eid al-Fitr Holiday* (*estimated)", + "1994-03-15": "Eid al-Fitr Holiday* (*estimated)", + "1994-05-01": "Labor Day", + "1994-05-20": "Eid al-Adha* (*estimated)", + "1994-05-21": "Eid al-Adha Holiday* (*estimated)", + "1994-05-22": "Eid al-Adha Holiday* (*estimated)", + "1994-06-10": "Islamic New Year* (*estimated)", + "1994-06-18": "Ashura Eve* (*estimated)", + "1994-06-19": "Ashura* (*estimated)", + "1994-08-19": "Prophet's Birthday* (*estimated)", + "1994-12-16": "National Day", + "1994-12-17": "National Day", + "1995-01-01": "New Year's Day", + "1995-03-02": "Eid al-Fitr* (*estimated)", + "1995-03-03": "Eid al-Fitr Holiday* (*estimated)", + "1995-03-04": "Eid al-Fitr Holiday* (*estimated)", + "1995-05-01": "Labor Day", + "1995-05-09": "Eid al-Adha* (*estimated)", + "1995-05-10": "Eid al-Adha Holiday* (*estimated)", + "1995-05-11": "Eid al-Adha Holiday* (*estimated)", + "1995-05-30": "Islamic New Year* (*estimated)", + "1995-06-07": "Ashura Eve* (*estimated)", + "1995-06-08": "Ashura* (*estimated)", + "1995-08-08": "Prophet's Birthday* (*estimated)", + "1995-12-16": "National Day", + "1995-12-17": "National Day", + "1996-01-01": "New Year's Day", + "1996-02-19": "Eid al-Fitr* (*estimated)", + "1996-02-20": "Eid al-Fitr Holiday* (*estimated)", + "1996-02-21": "Eid al-Fitr Holiday* (*estimated)", + "1996-04-27": "Eid al-Adha* (*estimated)", + "1996-04-28": "Eid al-Adha Holiday* (*estimated)", + "1996-04-29": "Eid al-Adha Holiday* (*estimated)", + "1996-05-01": "Labor Day", + "1996-05-18": "Islamic New Year* (*estimated)", + "1996-05-26": "Ashura Eve* (*estimated)", + "1996-05-27": "Ashura* (*estimated)", + "1996-07-27": "Prophet's Birthday* (*estimated)", + "1996-12-16": "National Day", + "1996-12-17": "National Day", + "1997-01-01": "New Year's Day", + "1997-02-08": "Eid al-Fitr* (*estimated)", + "1997-02-09": "Eid al-Fitr Holiday* (*estimated)", + "1997-02-10": "Eid al-Fitr Holiday* (*estimated)", + "1997-04-17": "Eid al-Adha* (*estimated)", + "1997-04-18": "Eid al-Adha Holiday* (*estimated)", + "1997-04-19": "Eid al-Adha Holiday* (*estimated)", + "1997-05-01": "Labor Day", + "1997-05-07": "Islamic New Year* (*estimated)", + "1997-05-15": "Ashura Eve* (*estimated)", + "1997-05-16": "Ashura* (*estimated)", + "1997-07-16": "Prophet's Birthday* (*estimated)", + "1997-12-16": "National Day", + "1997-12-17": "National Day", + "1998-01-01": "New Year's Day", + "1998-01-29": "Eid al-Fitr* (*estimated)", + "1998-01-30": "Eid al-Fitr Holiday* (*estimated)", + "1998-01-31": "Eid al-Fitr Holiday* (*estimated)", + "1998-04-07": "Eid al-Adha* (*estimated)", + "1998-04-08": "Eid al-Adha Holiday* (*estimated)", + "1998-04-09": "Eid al-Adha Holiday* (*estimated)", + "1998-04-27": "Islamic New Year* (*estimated)", + "1998-05-01": "Labor Day", + "1998-05-05": "Ashura Eve* (*estimated)", + "1998-05-06": "Ashura* (*estimated)", + "1998-07-06": "Prophet's Birthday* (*estimated)", + "1998-12-16": "National Day", + "1998-12-17": "National Day", + "1999-01-01": "New Year's Day", + "1999-01-18": "Eid al-Fitr* (*estimated)", + "1999-01-19": "Eid al-Fitr Holiday* (*estimated)", + "1999-01-20": "Eid al-Fitr Holiday* (*estimated)", + "1999-03-27": "Eid al-Adha* (*estimated)", + "1999-03-28": "Eid al-Adha Holiday* (*estimated)", + "1999-03-29": "Eid al-Adha Holiday* (*estimated)", + "1999-04-17": "Islamic New Year* (*estimated)", + "1999-04-25": "Ashura Eve* (*estimated)", + "1999-04-26": "Ashura* (*estimated)", + "1999-05-01": "Labor Day", + "1999-06-26": "Prophet's Birthday* (*estimated)", + "1999-12-16": "National Day", + "1999-12-17": "National Day", + "2000-01-01": "New Year's Day", + "2000-01-08": "Eid al-Fitr* (*estimated)", + "2000-01-09": "Eid al-Fitr Holiday* (*estimated)", + "2000-01-10": "Eid al-Fitr Holiday* (*estimated)", + "2000-03-16": "Eid al-Adha* (*estimated)", + "2000-03-17": "Eid al-Adha Holiday* (*estimated)", + "2000-03-18": "Eid al-Adha Holiday* (*estimated)", + "2000-04-06": "Islamic New Year* (*estimated)", + "2000-04-14": "Ashura Eve* (*estimated)", + "2000-04-15": "Ashura* (*estimated)", + "2000-05-01": "Labor Day", + "2000-06-14": "Prophet's Birthday* (*estimated)", + "2000-12-16": "National Day", + "2000-12-17": "National Day", + "2000-12-27": "Eid al-Fitr* (*estimated)", + "2000-12-28": "Eid al-Fitr Holiday* (*estimated)", + "2000-12-29": "Eid al-Fitr Holiday* (*estimated)", + "2001-01-01": "New Year's Day", + "2001-03-05": "Eid al-Adha* (*estimated)", + "2001-03-06": "Eid al-Adha Holiday* (*estimated)", + "2001-03-07": "Eid al-Adha Holiday* (*estimated)", + "2001-03-26": "Islamic New Year* (*estimated)", + "2001-04-03": "Ashura Eve* (*estimated)", + "2001-04-04": "Ashura* (*estimated)", + "2001-05-01": "Labor Day", + "2001-06-04": "Prophet's Birthday* (*estimated)", + "2001-12-16": "Eid al-Fitr* (*estimated); National Day", + "2001-12-17": "Eid al-Fitr Holiday* (*estimated); National Day", + "2001-12-18": "Eid al-Fitr Holiday* (*estimated)", + "2002-01-01": "New Year's Day", + "2002-02-22": "Eid al-Adha* (*estimated)", + "2002-02-23": "Eid al-Adha Holiday* (*estimated)", + "2002-02-24": "Eid al-Adha Holiday* (*estimated)", + "2002-03-15": "Islamic New Year* (*estimated)", + "2002-03-23": "Ashura Eve* (*estimated)", + "2002-03-24": "Ashura* (*estimated)", + "2002-05-01": "Labor Day", + "2002-05-24": "Prophet's Birthday* (*estimated)", + "2002-12-05": "Eid al-Fitr* (*estimated)", + "2002-12-06": "Eid al-Fitr Holiday* (*estimated)", + "2002-12-07": "Eid al-Fitr Holiday* (*estimated)", + "2002-12-16": "National Day", + "2002-12-17": "National Day", + "2003-01-01": "New Year's Day", + "2003-02-11": "Eid al-Adha* (*estimated)", + "2003-02-12": "Eid al-Adha Holiday* (*estimated)", + "2003-02-13": "Eid al-Adha Holiday* (*estimated)", + "2003-03-04": "Islamic New Year* (*estimated)", + "2003-03-12": "Ashura Eve* (*estimated)", + "2003-03-13": "Ashura* (*estimated)", + "2003-05-01": "Labor Day", + "2003-05-13": "Prophet's Birthday* (*estimated)", + "2003-11-25": "Eid al-Fitr* (*estimated)", + "2003-11-26": "Eid al-Fitr Holiday* (*estimated)", + "2003-11-27": "Eid al-Fitr Holiday* (*estimated)", + "2003-12-16": "National Day", + "2003-12-17": "National Day", + "2004-01-01": "New Year's Day", + "2004-02-01": "Eid al-Adha* (*estimated)", + "2004-02-02": "Eid al-Adha Holiday* (*estimated)", + "2004-02-03": "Eid al-Adha Holiday* (*estimated)", + "2004-02-21": "Islamic New Year* (*estimated)", + "2004-02-29": "Ashura Eve* (*estimated)", + "2004-03-01": "Ashura* (*estimated)", + "2004-05-01": "Labor Day; Prophet's Birthday* (*estimated)", + "2004-11-14": "Eid al-Fitr* (*estimated)", + "2004-11-15": "Eid al-Fitr Holiday* (*estimated)", + "2004-11-16": "Eid al-Fitr Holiday* (*estimated)", + "2004-12-16": "National Day", + "2004-12-17": "National Day", + "2005-01-01": "New Year's Day", + "2005-01-21": "Eid al-Adha* (*estimated)", + "2005-01-22": "Eid al-Adha Holiday* (*estimated)", + "2005-01-23": "Eid al-Adha Holiday* (*estimated)", + "2005-02-10": "Islamic New Year* (*estimated)", + "2005-02-18": "Ashura Eve* (*estimated)", + "2005-02-19": "Ashura* (*estimated)", + "2005-04-21": "Prophet's Birthday* (*estimated)", + "2005-05-01": "Labor Day", + "2005-11-03": "Eid al-Fitr* (*estimated)", + "2005-11-04": "Eid al-Fitr Holiday* (*estimated)", + "2005-11-05": "Eid al-Fitr Holiday* (*estimated)", + "2005-12-16": "National Day", + "2005-12-17": "National Day", + "2006-01-01": "New Year's Day", + "2006-01-10": "Eid al-Adha* (*estimated)", + "2006-01-11": "Eid al-Adha Holiday* (*estimated)", + "2006-01-12": "Eid al-Adha Holiday* (*estimated)", + "2006-01-31": "Islamic New Year* (*estimated)", + "2006-02-08": "Ashura Eve* (*estimated)", + "2006-02-09": "Ashura* (*estimated)", + "2006-04-10": "Prophet's Birthday* (*estimated)", + "2006-05-01": "Labor Day", + "2006-10-23": "Eid al-Fitr* (*estimated)", + "2006-10-24": "Eid al-Fitr Holiday* (*estimated)", + "2006-10-25": "Eid al-Fitr Holiday* (*estimated)", + "2006-12-16": "National Day", + "2006-12-17": "National Day", + "2006-12-31": "Eid al-Adha* (*estimated)", + "2007-01-01": "Eid al-Adha Holiday* (*estimated); New Year's Day", + "2007-01-02": "Eid al-Adha Holiday* (*estimated)", + "2007-01-20": "Islamic New Year* (*estimated)", + "2007-01-28": "Ashura Eve* (*estimated)", + "2007-01-29": "Ashura* (*estimated)", + "2007-03-31": "Prophet's Birthday* (*estimated)", + "2007-05-01": "Labor Day", + "2007-10-13": "Eid al-Fitr* (*estimated)", + "2007-10-14": "Eid al-Fitr Holiday* (*estimated)", + "2007-10-15": "Eid al-Fitr Holiday* (*estimated)", + "2007-12-16": "National Day", + "2007-12-17": "National Day", + "2007-12-20": "Eid al-Adha* (*estimated)", + "2007-12-21": "Eid al-Adha Holiday* (*estimated)", + "2007-12-22": "Eid al-Adha Holiday* (*estimated)", + "2008-01-01": "New Year's Day", + "2008-01-10": "Islamic New Year* (*estimated)", + "2008-01-18": "Ashura Eve* (*estimated)", + "2008-01-19": "Ashura* (*estimated)", + "2008-03-20": "Prophet's Birthday* (*estimated)", + "2008-05-01": "Labor Day", + "2008-10-01": "Eid al-Fitr* (*estimated)", + "2008-10-02": "Eid al-Fitr Holiday* (*estimated)", + "2008-10-03": "Eid al-Fitr Holiday* (*estimated)", + "2008-12-08": "Eid al-Adha* (*estimated)", + "2008-12-09": "Eid al-Adha Holiday* (*estimated)", + "2008-12-10": "Eid al-Adha Holiday* (*estimated)", + "2008-12-16": "National Day", + "2008-12-17": "National Day", + "2008-12-29": "Islamic New Year* (*estimated)", + "2009-01-01": "New Year's Day", + "2009-01-06": "Ashura Eve* (*estimated)", + "2009-01-07": "Ashura* (*estimated)", + "2009-03-09": "Prophet's Birthday* (*estimated)", + "2009-05-01": "Labor Day", + "2009-09-20": "Eid al-Fitr* (*estimated)", + "2009-09-21": "Eid al-Fitr Holiday* (*estimated)", + "2009-09-22": "Eid al-Fitr Holiday* (*estimated)", + "2009-11-27": "Eid al-Adha* (*estimated)", + "2009-11-28": "Eid al-Adha Holiday* (*estimated)", + "2009-11-29": "Eid al-Adha Holiday* (*estimated)", + "2009-12-16": "National Day", + "2009-12-17": "National Day", + "2009-12-18": "Islamic New Year* (*estimated)", + "2009-12-26": "Ashura Eve* (*estimated)", + "2009-12-27": "Ashura* (*estimated)", + "2010-01-01": "New Year's Day", + "2010-02-26": "Prophet's Birthday* (*estimated)", + "2010-05-01": "Labor Day", + "2010-09-10": "Eid al-Fitr* (*estimated)", + "2010-09-11": "Eid al-Fitr Holiday* (*estimated)", + "2010-09-12": "Eid al-Fitr Holiday* (*estimated)", + "2010-11-16": "Eid al-Adha* (*estimated)", + "2010-11-17": "Eid al-Adha Holiday* (*estimated)", + "2010-11-18": "Eid al-Adha Holiday* (*estimated)", + "2010-12-07": "Islamic New Year* (*estimated)", + "2010-12-15": "Ashura Eve* (*estimated)", + "2010-12-16": "Ashura* (*estimated); National Day", + "2010-12-17": "National Day", + "2011-01-01": "New Year's Day", + "2011-02-15": "Prophet's Birthday* (*estimated)", + "2011-05-01": "Labor Day", + "2011-08-30": "Eid al-Fitr* (*estimated)", + "2011-08-31": "Eid al-Fitr Holiday* (*estimated)", + "2011-09-01": "Eid al-Fitr Holiday* (*estimated)", + "2011-11-06": "Eid al-Adha* (*estimated)", + "2011-11-07": "Eid al-Adha Holiday* (*estimated)", + "2011-11-08": "Eid al-Adha Holiday* (*estimated)", + "2011-11-26": "Islamic New Year* (*estimated)", + "2011-12-04": "Ashura Eve* (*estimated)", + "2011-12-05": "Ashura* (*estimated)", + "2011-12-16": "National Day", + "2011-12-17": "National Day", + "2012-01-01": "New Year's Day", + "2012-02-04": "Prophet's Birthday* (*estimated)", + "2012-05-01": "Labor Day", + "2012-08-19": "Eid al-Fitr* (*estimated)", + "2012-08-20": "Eid al-Fitr Holiday* (*estimated)", + "2012-08-21": "Eid al-Fitr Holiday* (*estimated)", + "2012-10-26": "Eid al-Adha* (*estimated)", + "2012-10-27": "Eid al-Adha Holiday* (*estimated)", + "2012-10-28": "Eid al-Adha Holiday* (*estimated)", + "2012-11-15": "Islamic New Year* (*estimated)", + "2012-11-23": "Ashura Eve* (*estimated)", + "2012-11-24": "Ashura* (*estimated)", + "2012-12-16": "National Day", + "2012-12-17": "National Day", + "2013-01-01": "New Year's Day", + "2013-01-24": "Prophet's Birthday* (*estimated)", + "2013-05-01": "Labor Day", + "2013-08-08": "Eid al-Fitr* (*estimated)", + "2013-08-09": "Eid al-Fitr Holiday* (*estimated)", + "2013-08-10": "Eid al-Fitr Holiday* (*estimated)", + "2013-10-15": "Eid al-Adha* (*estimated)", + "2013-10-16": "Eid al-Adha Holiday* (*estimated)", + "2013-10-17": "Eid al-Adha Holiday* (*estimated)", + "2013-11-04": "Islamic New Year* (*estimated)", + "2013-11-12": "Ashura Eve* (*estimated)", + "2013-11-13": "Ashura* (*estimated)", + "2013-12-16": "National Day", + "2013-12-17": "National Day", + "2014-01-01": "New Year's Day", + "2014-01-13": "Prophet's Birthday* (*estimated)", + "2014-05-01": "Labor Day", + "2014-07-28": "Eid al-Fitr* (*estimated)", + "2014-07-29": "Eid al-Fitr Holiday* (*estimated)", + "2014-07-30": "Eid al-Fitr Holiday* (*estimated)", + "2014-10-04": "Eid al-Adha* (*estimated)", + "2014-10-05": "Eid al-Adha Holiday* (*estimated)", + "2014-10-06": "Eid al-Adha Holiday* (*estimated)", + "2014-10-25": "Islamic New Year* (*estimated)", + "2014-11-02": "Ashura Eve* (*estimated)", + "2014-11-03": "Ashura* (*estimated)", + "2014-12-16": "National Day", + "2014-12-17": "National Day", + "2015-01-01": "New Year's Day", + "2015-01-03": "Prophet's Birthday* (*estimated)", + "2015-05-01": "Labor Day", + "2015-07-17": "Eid al-Fitr* (*estimated)", + "2015-07-18": "Eid al-Fitr Holiday* (*estimated)", + "2015-07-19": "Eid al-Fitr Holiday* (*estimated)", + "2015-09-23": "Eid al-Adha* (*estimated)", + "2015-09-24": "Eid al-Adha Holiday* (*estimated)", + "2015-09-25": "Eid al-Adha Holiday* (*estimated)", + "2015-10-14": "Islamic New Year* (*estimated)", + "2015-10-22": "Ashura Eve* (*estimated)", + "2015-10-23": "Ashura* (*estimated)", + "2015-12-16": "National Day", + "2015-12-17": "National Day", + "2015-12-23": "Prophet's Birthday* (*estimated)", + "2016-01-01": "New Year's Day", + "2016-05-01": "Labor Day", + "2016-07-06": "Eid al-Fitr* (*estimated)", + "2016-07-07": "Eid al-Fitr Holiday* (*estimated)", + "2016-07-08": "Eid al-Fitr Holiday* (*estimated)", + "2016-09-11": "Eid al-Adha* (*estimated)", + "2016-09-12": "Eid al-Adha Holiday* (*estimated)", + "2016-09-13": "Eid al-Adha Holiday* (*estimated)", + "2016-10-02": "Islamic New Year* (*estimated)", + "2016-10-10": "Ashura Eve* (*estimated)", + "2016-10-11": "Ashura* (*estimated)", + "2016-12-11": "Prophet's Birthday* (*estimated)", + "2016-12-16": "National Day", + "2016-12-17": "National Day", + "2017-01-01": "New Year's Day", + "2017-05-01": "Labor Day", + "2017-06-25": "Eid al-Fitr* (*estimated)", + "2017-06-26": "Eid al-Fitr Holiday* (*estimated)", + "2017-06-27": "Eid al-Fitr Holiday* (*estimated)", + "2017-09-01": "Eid al-Adha* (*estimated)", + "2017-09-02": "Eid al-Adha Holiday* (*estimated)", + "2017-09-03": "Eid al-Adha Holiday* (*estimated)", + "2017-09-21": "Islamic New Year* (*estimated)", + "2017-09-29": "Ashura Eve* (*estimated)", + "2017-09-30": "Ashura* (*estimated)", + "2017-11-30": "Prophet's Birthday* (*estimated)", + "2017-12-16": "National Day", + "2017-12-17": "National Day", + "2018-01-01": "New Year's Day", + "2018-05-01": "Labor Day", + "2018-06-15": "Eid al-Fitr* (*estimated)", + "2018-06-16": "Eid al-Fitr Holiday* (*estimated)", + "2018-06-17": "Eid al-Fitr Holiday* (*estimated)", + "2018-08-21": "Eid al-Adha* (*estimated)", + "2018-08-22": "Eid al-Adha Holiday* (*estimated)", + "2018-08-23": "Eid al-Adha Holiday* (*estimated)", + "2018-09-11": "Islamic New Year* (*estimated)", + "2018-09-19": "Ashura Eve* (*estimated)", + "2018-09-20": "Ashura* (*estimated)", + "2018-11-20": "Prophet's Birthday* (*estimated)", + "2018-12-16": "National Day", + "2018-12-17": "National Day", + "2019-01-01": "New Year's Day", + "2019-05-01": "Labor Day", + "2019-06-04": "Eid al-Fitr* (*estimated)", + "2019-06-05": "Eid al-Fitr Holiday* (*estimated)", + "2019-06-06": "Eid al-Fitr Holiday* (*estimated)", + "2019-08-11": "Eid al-Adha* (*estimated)", + "2019-08-12": "Eid al-Adha Holiday* (*estimated)", + "2019-08-13": "Eid al-Adha Holiday* (*estimated)", + "2019-08-31": "Islamic New Year* (*estimated)", + "2019-09-08": "Ashura Eve* (*estimated)", + "2019-09-09": "Ashura* (*estimated)", + "2019-11-09": "Prophet's Birthday* (*estimated)", + "2019-12-16": "National Day", + "2019-12-17": "National Day", + "2020-01-01": "New Year's Day", + "2020-05-01": "Labor Day", + "2020-05-24": "Eid al-Fitr* (*estimated)", + "2020-05-25": "Eid al-Fitr Holiday* (*estimated)", + "2020-05-26": "Eid al-Fitr Holiday* (*estimated)", + "2020-07-31": "Eid al-Adha* (*estimated)", + "2020-08-01": "Eid al-Adha Holiday* (*estimated)", + "2020-08-02": "Eid al-Adha Holiday* (*estimated)", + "2020-08-20": "Islamic New Year* (*estimated)", + "2020-08-28": "Ashura Eve* (*estimated)", + "2020-08-29": "Ashura* (*estimated)", + "2020-10-29": "Prophet's Birthday* (*estimated)", + "2020-12-16": "National Day", + "2020-12-17": "National Day", + "2021-01-01": "New Year's Day", + "2021-05-01": "Labor Day", + "2021-05-13": "Eid al-Fitr* (*estimated)", + "2021-05-14": "Eid al-Fitr Holiday* (*estimated)", + "2021-05-15": "Eid al-Fitr Holiday* (*estimated)", + "2021-07-20": "Eid al-Adha* (*estimated)", + "2021-07-21": "Eid al-Adha Holiday* (*estimated)", + "2021-07-22": "Eid al-Adha Holiday* (*estimated)", + "2021-08-09": "Islamic New Year* (*estimated)", + "2021-08-17": "Ashura Eve* (*estimated)", + "2021-08-18": "Ashura* (*estimated)", + "2021-10-18": "Prophet's Birthday* (*estimated)", + "2021-12-16": "National Day", + "2021-12-17": "National Day", + "2022-01-01": "New Year's Day", + "2022-05-01": "Labor Day", + "2022-05-02": "Eid al-Fitr", + "2022-05-03": "Eid al-Fitr Holiday", + "2022-05-04": "Eid al-Fitr Holiday", + "2022-07-09": "Eid al-Adha* (*estimated)", + "2022-07-10": "Eid al-Adha Holiday* (*estimated)", + "2022-07-11": "Eid al-Adha Holiday* (*estimated)", + "2022-07-30": "Islamic New Year", + "2022-08-07": "Ashura Eve", + "2022-08-08": "Ashura", + "2022-10-08": "Prophet's Birthday", + "2022-12-16": "National Day", + "2022-12-17": "National Day", + "2023-01-01": "New Year's Day", + "2023-04-21": "Eid al-Fitr* (*estimated)", + "2023-04-22": "Eid al-Fitr Holiday* (*estimated)", + "2023-04-23": "Eid al-Fitr Holiday* (*estimated)", + "2023-05-01": "Labor Day", + "2023-06-28": "Eid al-Adha* (*estimated)", + "2023-06-29": "Eid al-Adha Holiday* (*estimated)", + "2023-06-30": "Eid al-Adha Holiday* (*estimated)", + "2023-07-19": "Islamic New Year* (*estimated)", + "2023-07-27": "Ashura Eve* (*estimated)", + "2023-07-28": "Ashura* (*estimated)", + "2023-09-27": "Prophet's Birthday* (*estimated)", + "2023-12-16": "National Day", + "2023-12-17": "National Day", + "2024-01-01": "New Year's Day", + "2024-04-10": "Eid al-Fitr* (*estimated)", + "2024-04-11": "Eid al-Fitr Holiday* (*estimated)", + "2024-04-12": "Eid al-Fitr Holiday* (*estimated)", + "2024-05-01": "Labor Day", + "2024-06-16": "Eid al-Adha* (*estimated)", + "2024-06-17": "Eid al-Adha Holiday* (*estimated)", + "2024-06-18": "Eid al-Adha Holiday* (*estimated)", + "2024-07-07": "Islamic New Year* (*estimated)", + "2024-07-15": "Ashura Eve* (*estimated)", + "2024-07-16": "Ashura* (*estimated)", + "2024-09-15": "Prophet's Birthday* (*estimated)", + "2024-12-16": "National Day", + "2024-12-17": "National Day", + "2025-01-01": "New Year's Day", + "2025-03-30": "Eid al-Fitr* (*estimated)", + "2025-03-31": "Eid al-Fitr Holiday* (*estimated)", + "2025-04-01": "Eid al-Fitr Holiday* (*estimated)", + "2025-05-01": "Labor Day", + "2025-06-06": "Eid al-Adha* (*estimated)", + "2025-06-07": "Eid al-Adha Holiday* (*estimated)", + "2025-06-08": "Eid al-Adha Holiday* (*estimated)", + "2025-06-26": "Islamic New Year* (*estimated)", + "2025-07-04": "Ashura Eve* (*estimated)", + "2025-07-05": "Ashura* (*estimated)", + "2025-09-04": "Prophet's Birthday* (*estimated)", + "2025-12-16": "National Day", + "2025-12-17": "National Day", + "2026-01-01": "New Year's Day", + "2026-03-20": "Eid al-Fitr* (*estimated)", + "2026-03-21": "Eid al-Fitr Holiday* (*estimated)", + "2026-03-22": "Eid al-Fitr Holiday* (*estimated)", + "2026-05-01": "Labor Day", + "2026-05-27": "Eid al-Adha* (*estimated)", + "2026-05-28": "Eid al-Adha Holiday* (*estimated)", + "2026-05-29": "Eid al-Adha Holiday* (*estimated)", + "2026-06-16": "Islamic New Year* (*estimated)", + "2026-06-24": "Ashura Eve* (*estimated)", + "2026-06-25": "Ashura* (*estimated)", + "2026-08-25": "Prophet's Birthday* (*estimated)", + "2026-12-16": "National Day", + "2026-12-17": "National Day", + "2027-01-01": "New Year's Day", + "2027-03-09": "Eid al-Fitr* (*estimated)", + "2027-03-10": "Eid al-Fitr Holiday* (*estimated)", + "2027-03-11": "Eid al-Fitr Holiday* (*estimated)", + "2027-05-01": "Labor Day", + "2027-05-16": "Eid al-Adha* (*estimated)", + "2027-05-17": "Eid al-Adha Holiday* (*estimated)", + "2027-05-18": "Eid al-Adha Holiday* (*estimated)", + "2027-06-06": "Islamic New Year* (*estimated)", + "2027-06-14": "Ashura Eve* (*estimated)", + "2027-06-15": "Ashura* (*estimated)", + "2027-08-14": "Prophet's Birthday* (*estimated)", + "2027-12-16": "National Day", + "2027-12-17": "National Day", + "2028-01-01": "New Year's Day", + "2028-02-26": "Eid al-Fitr* (*estimated)", + "2028-02-27": "Eid al-Fitr Holiday* (*estimated)", + "2028-02-28": "Eid al-Fitr Holiday* (*estimated)", + "2028-05-01": "Labor Day", + "2028-05-05": "Eid al-Adha* (*estimated)", + "2028-05-06": "Eid al-Adha Holiday* (*estimated)", + "2028-05-07": "Eid al-Adha Holiday* (*estimated)", + "2028-05-25": "Islamic New Year* (*estimated)", + "2028-06-02": "Ashura Eve* (*estimated)", + "2028-06-03": "Ashura* (*estimated)", + "2028-08-03": "Prophet's Birthday* (*estimated)", + "2028-12-16": "National Day", + "2028-12-17": "National Day", + "2029-01-01": "New Year's Day", + "2029-02-14": "Eid al-Fitr* (*estimated)", + "2029-02-15": "Eid al-Fitr Holiday* (*estimated)", + "2029-02-16": "Eid al-Fitr Holiday* (*estimated)", + "2029-04-24": "Eid al-Adha* (*estimated)", + "2029-04-25": "Eid al-Adha Holiday* (*estimated)", + "2029-04-26": "Eid al-Adha Holiday* (*estimated)", + "2029-05-01": "Labor Day", + "2029-05-14": "Islamic New Year* (*estimated)", + "2029-05-22": "Ashura Eve* (*estimated)", + "2029-05-23": "Ashura* (*estimated)", + "2029-07-24": "Prophet's Birthday* (*estimated)", + "2029-12-16": "National Day", + "2029-12-17": "National Day", + "2030-01-01": "New Year's Day", + "2030-02-04": "Eid al-Fitr* (*estimated)", + "2030-02-05": "Eid al-Fitr Holiday* (*estimated)", + "2030-02-06": "Eid al-Fitr Holiday* (*estimated)", + "2030-04-13": "Eid al-Adha* (*estimated)", + "2030-04-14": "Eid al-Adha Holiday* (*estimated)", + "2030-04-15": "Eid al-Adha Holiday* (*estimated)", + "2030-05-01": "Labor Day", + "2030-05-03": "Islamic New Year* (*estimated)", + "2030-05-11": "Ashura Eve* (*estimated)", + "2030-05-12": "Ashura* (*estimated)", + "2030-07-13": "Prophet's Birthday* (*estimated)", + "2030-12-16": "National Day", + "2030-12-17": "National Day", + "2031-01-01": "New Year's Day", + "2031-01-24": "Eid al-Fitr* (*estimated)", + "2031-01-25": "Eid al-Fitr Holiday* (*estimated)", + "2031-01-26": "Eid al-Fitr Holiday* (*estimated)", + "2031-04-02": "Eid al-Adha* (*estimated)", + "2031-04-03": "Eid al-Adha Holiday* (*estimated)", + "2031-04-04": "Eid al-Adha Holiday* (*estimated)", + "2031-04-23": "Islamic New Year* (*estimated)", + "2031-05-01": "Ashura Eve* (*estimated); Labor Day", + "2031-05-02": "Ashura* (*estimated)", + "2031-07-02": "Prophet's Birthday* (*estimated)", + "2031-12-16": "National Day", + "2031-12-17": "National Day", + "2032-01-01": "New Year's Day", + "2032-01-14": "Eid al-Fitr* (*estimated)", + "2032-01-15": "Eid al-Fitr Holiday* (*estimated)", + "2032-01-16": "Eid al-Fitr Holiday* (*estimated)", + "2032-03-22": "Eid al-Adha* (*estimated)", + "2032-03-23": "Eid al-Adha Holiday* (*estimated)", + "2032-03-24": "Eid al-Adha Holiday* (*estimated)", + "2032-04-11": "Islamic New Year* (*estimated)", + "2032-04-19": "Ashura Eve* (*estimated)", + "2032-04-20": "Ashura* (*estimated)", + "2032-05-01": "Labor Day", + "2032-06-20": "Prophet's Birthday* (*estimated)", + "2032-12-16": "National Day", + "2032-12-17": "National Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "Eid al-Fitr* (*estimated)", + "2033-01-03": "Eid al-Fitr Holiday* (*estimated)", + "2033-01-04": "Eid al-Fitr Holiday* (*estimated)", + "2033-03-11": "Eid al-Adha* (*estimated)", + "2033-03-12": "Eid al-Adha Holiday* (*estimated)", + "2033-03-13": "Eid al-Adha Holiday* (*estimated)", + "2033-04-01": "Islamic New Year* (*estimated)", + "2033-04-09": "Ashura Eve* (*estimated)", + "2033-04-10": "Ashura* (*estimated)", + "2033-05-01": "Labor Day", + "2033-06-09": "Prophet's Birthday* (*estimated)", + "2033-12-16": "National Day", + "2033-12-17": "National Day", + "2033-12-23": "Eid al-Fitr* (*estimated)", + "2033-12-24": "Eid al-Fitr Holiday* (*estimated)", + "2033-12-25": "Eid al-Fitr Holiday* (*estimated)", + "2034-01-01": "New Year's Day", + "2034-03-01": "Eid al-Adha* (*estimated)", + "2034-03-02": "Eid al-Adha Holiday* (*estimated)", + "2034-03-03": "Eid al-Adha Holiday* (*estimated)", + "2034-03-21": "Islamic New Year* (*estimated)", + "2034-03-29": "Ashura Eve* (*estimated)", + "2034-03-30": "Ashura* (*estimated)", + "2034-05-01": "Labor Day", + "2034-05-30": "Prophet's Birthday* (*estimated)", + "2034-12-12": "Eid al-Fitr* (*estimated)", + "2034-12-13": "Eid al-Fitr Holiday* (*estimated)", + "2034-12-14": "Eid al-Fitr Holiday* (*estimated)", + "2034-12-16": "National Day", + "2034-12-17": "National Day", + "2035-01-01": "New Year's Day", + "2035-02-18": "Eid al-Adha* (*estimated)", + "2035-02-19": "Eid al-Adha Holiday* (*estimated)", + "2035-02-20": "Eid al-Adha Holiday* (*estimated)", + "2035-03-11": "Islamic New Year* (*estimated)", + "2035-03-19": "Ashura Eve* (*estimated)", + "2035-03-20": "Ashura* (*estimated)", + "2035-05-01": "Labor Day", + "2035-05-20": "Prophet's Birthday* (*estimated)", + "2035-12-01": "Eid al-Fitr* (*estimated)", + "2035-12-02": "Eid al-Fitr Holiday* (*estimated)", + "2035-12-03": "Eid al-Fitr Holiday* (*estimated)", + "2035-12-16": "National Day", + "2035-12-17": "National Day", + "2036-01-01": "New Year's Day", + "2036-02-07": "Eid al-Adha* (*estimated)", + "2036-02-08": "Eid al-Adha Holiday* (*estimated)", + "2036-02-09": "Eid al-Adha Holiday* (*estimated)", + "2036-02-28": "Islamic New Year* (*estimated)", + "2036-03-07": "Ashura Eve* (*estimated)", + "2036-03-08": "Ashura* (*estimated)", + "2036-05-01": "Labor Day", + "2036-05-08": "Prophet's Birthday* (*estimated)", + "2036-11-19": "Eid al-Fitr* (*estimated)", + "2036-11-20": "Eid al-Fitr Holiday* (*estimated)", + "2036-11-21": "Eid al-Fitr Holiday* (*estimated)", + "2036-12-16": "National Day", + "2036-12-17": "National Day", + "2037-01-01": "New Year's Day", + "2037-01-26": "Eid al-Adha* (*estimated)", + "2037-01-27": "Eid al-Adha Holiday* (*estimated)", + "2037-01-28": "Eid al-Adha Holiday* (*estimated)", + "2037-02-16": "Islamic New Year* (*estimated)", + "2037-02-24": "Ashura Eve* (*estimated)", + "2037-02-25": "Ashura* (*estimated)", + "2037-04-28": "Prophet's Birthday* (*estimated)", + "2037-05-01": "Labor Day", + "2037-11-08": "Eid al-Fitr* (*estimated)", + "2037-11-09": "Eid al-Fitr Holiday* (*estimated)", + "2037-11-10": "Eid al-Fitr Holiday* (*estimated)", + "2037-12-16": "National Day", + "2037-12-17": "National Day", + "2038-01-01": "New Year's Day", + "2038-01-16": "Eid al-Adha* (*estimated)", + "2038-01-17": "Eid al-Adha Holiday* (*estimated)", + "2038-01-18": "Eid al-Adha Holiday* (*estimated)", + "2038-02-05": "Islamic New Year* (*estimated)", + "2038-02-13": "Ashura Eve* (*estimated)", + "2038-02-14": "Ashura* (*estimated)", + "2038-04-17": "Prophet's Birthday* (*estimated)", + "2038-05-01": "Labor Day", + "2038-10-29": "Eid al-Fitr* (*estimated)", + "2038-10-30": "Eid al-Fitr Holiday* (*estimated)", + "2038-10-31": "Eid al-Fitr Holiday* (*estimated)", + "2038-12-16": "National Day", + "2038-12-17": "National Day", + "2039-01-01": "New Year's Day", + "2039-01-05": "Eid al-Adha* (*estimated)", + "2039-01-06": "Eid al-Adha Holiday* (*estimated)", + "2039-01-07": "Eid al-Adha Holiday* (*estimated)", + "2039-01-26": "Islamic New Year* (*estimated)", + "2039-02-03": "Ashura Eve* (*estimated)", + "2039-02-04": "Ashura* (*estimated)", + "2039-04-06": "Prophet's Birthday* (*estimated)", + "2039-05-01": "Labor Day", + "2039-10-19": "Eid al-Fitr* (*estimated)", + "2039-10-20": "Eid al-Fitr Holiday* (*estimated)", + "2039-10-21": "Eid al-Fitr Holiday* (*estimated)", + "2039-12-16": "National Day", + "2039-12-17": "National Day", + "2039-12-26": "Eid al-Adha* (*estimated)", + "2039-12-27": "Eid al-Adha Holiday* (*estimated)", + "2039-12-28": "Eid al-Adha Holiday* (*estimated)", + "2040-01-01": "New Year's Day", + "2040-01-15": "Islamic New Year* (*estimated)", + "2040-01-23": "Ashura Eve* (*estimated)", + "2040-01-24": "Ashura* (*estimated)", + "2040-03-25": "Prophet's Birthday* (*estimated)", + "2040-05-01": "Labor Day", + "2040-10-07": "Eid al-Fitr* (*estimated)", + "2040-10-08": "Eid al-Fitr Holiday* (*estimated)", + "2040-10-09": "Eid al-Fitr Holiday* (*estimated)", + "2040-12-14": "Eid al-Adha* (*estimated)", + "2040-12-15": "Eid al-Adha Holiday* (*estimated)", + "2040-12-16": "Eid al-Adha Holiday* (*estimated); National Day", + "2040-12-17": "National Day", + "2041-01-01": "New Year's Day", + "2041-01-04": "Islamic New Year* (*estimated)", + "2041-01-12": "Ashura Eve* (*estimated)", + "2041-01-13": "Ashura* (*estimated)", + "2041-03-15": "Prophet's Birthday* (*estimated)", + "2041-05-01": "Labor Day", + "2041-09-26": "Eid al-Fitr* (*estimated)", + "2041-09-27": "Eid al-Fitr Holiday* (*estimated)", + "2041-09-28": "Eid al-Fitr Holiday* (*estimated)", + "2041-12-04": "Eid al-Adha* (*estimated)", + "2041-12-05": "Eid al-Adha Holiday* (*estimated)", + "2041-12-06": "Eid al-Adha Holiday* (*estimated)", + "2041-12-16": "National Day", + "2041-12-17": "National Day", + "2041-12-24": "Islamic New Year* (*estimated)", + "2042-01-01": "Ashura Eve* (*estimated); New Year's Day", + "2042-01-02": "Ashura* (*estimated)", + "2042-03-04": "Prophet's Birthday* (*estimated)", + "2042-05-01": "Labor Day", + "2042-09-15": "Eid al-Fitr* (*estimated)", + "2042-09-16": "Eid al-Fitr Holiday* (*estimated)", + "2042-09-17": "Eid al-Fitr Holiday* (*estimated)", + "2042-11-23": "Eid al-Adha* (*estimated)", + "2042-11-24": "Eid al-Adha Holiday* (*estimated)", + "2042-11-25": "Eid al-Adha Holiday* (*estimated)", + "2042-12-14": "Islamic New Year* (*estimated)", + "2042-12-16": "National Day", + "2042-12-17": "National Day", + "2042-12-22": "Ashura Eve* (*estimated)", + "2042-12-23": "Ashura* (*estimated)", + "2043-01-01": "New Year's Day", + "2043-02-22": "Prophet's Birthday* (*estimated)", + "2043-05-01": "Labor Day", + "2043-09-04": "Eid al-Fitr* (*estimated)", + "2043-09-05": "Eid al-Fitr Holiday* (*estimated)", + "2043-09-06": "Eid al-Fitr Holiday* (*estimated)", + "2043-11-12": "Eid al-Adha* (*estimated)", + "2043-11-13": "Eid al-Adha Holiday* (*estimated)", + "2043-11-14": "Eid al-Adha Holiday* (*estimated)", + "2043-12-03": "Islamic New Year* (*estimated)", + "2043-12-11": "Ashura Eve* (*estimated)", + "2043-12-12": "Ashura* (*estimated)", + "2043-12-16": "National Day", + "2043-12-17": "National Day", + "2044-01-01": "New Year's Day", + "2044-02-11": "Prophet's Birthday* (*estimated)", + "2044-05-01": "Labor Day", + "2044-08-24": "Eid al-Fitr* (*estimated)", + "2044-08-25": "Eid al-Fitr Holiday* (*estimated)", + "2044-08-26": "Eid al-Fitr Holiday* (*estimated)", + "2044-10-31": "Eid al-Adha* (*estimated)", + "2044-11-01": "Eid al-Adha Holiday* (*estimated)", + "2044-11-02": "Eid al-Adha Holiday* (*estimated)", + "2044-11-21": "Islamic New Year* (*estimated)", + "2044-11-29": "Ashura Eve* (*estimated)", + "2044-11-30": "Ashura* (*estimated)", + "2044-12-16": "National Day", + "2044-12-17": "National Day", + "2045-01-01": "New Year's Day", + "2045-01-30": "Prophet's Birthday* (*estimated)", + "2045-05-01": "Labor Day", + "2045-08-14": "Eid al-Fitr* (*estimated)", + "2045-08-15": "Eid al-Fitr Holiday* (*estimated)", + "2045-08-16": "Eid al-Fitr Holiday* (*estimated)", + "2045-10-21": "Eid al-Adha* (*estimated)", + "2045-10-22": "Eid al-Adha Holiday* (*estimated)", + "2045-10-23": "Eid al-Adha Holiday* (*estimated)", + "2045-11-10": "Islamic New Year* (*estimated)", + "2045-11-18": "Ashura Eve* (*estimated)", + "2045-11-19": "Ashura* (*estimated)", + "2045-12-16": "National Day", + "2045-12-17": "National Day", + "2046-01-01": "New Year's Day", + "2046-01-19": "Prophet's Birthday* (*estimated)", + "2046-05-01": "Labor Day", + "2046-08-03": "Eid al-Fitr* (*estimated)", + "2046-08-04": "Eid al-Fitr Holiday* (*estimated)", + "2046-08-05": "Eid al-Fitr Holiday* (*estimated)", + "2046-10-10": "Eid al-Adha* (*estimated)", + "2046-10-11": "Eid al-Adha Holiday* (*estimated)", + "2046-10-12": "Eid al-Adha Holiday* (*estimated)", + "2046-10-31": "Islamic New Year* (*estimated)", + "2046-11-08": "Ashura Eve* (*estimated)", + "2046-11-09": "Ashura* (*estimated)", + "2046-12-16": "National Day", + "2046-12-17": "National Day", + "2047-01-01": "New Year's Day", + "2047-01-08": "Prophet's Birthday* (*estimated)", + "2047-05-01": "Labor Day", + "2047-07-24": "Eid al-Fitr* (*estimated)", + "2047-07-25": "Eid al-Fitr Holiday* (*estimated)", + "2047-07-26": "Eid al-Fitr Holiday* (*estimated)", + "2047-09-30": "Eid al-Adha* (*estimated)", + "2047-10-01": "Eid al-Adha Holiday* (*estimated)", + "2047-10-02": "Eid al-Adha Holiday* (*estimated)", + "2047-10-20": "Islamic New Year* (*estimated)", + "2047-10-28": "Ashura Eve* (*estimated)", + "2047-10-29": "Ashura* (*estimated)", + "2047-12-16": "National Day", + "2047-12-17": "National Day", + "2047-12-29": "Prophet's Birthday* (*estimated)", + "2048-01-01": "New Year's Day", + "2048-05-01": "Labor Day", + "2048-07-12": "Eid al-Fitr* (*estimated)", + "2048-07-13": "Eid al-Fitr Holiday* (*estimated)", + "2048-07-14": "Eid al-Fitr Holiday* (*estimated)", + "2048-09-19": "Eid al-Adha* (*estimated)", + "2048-09-20": "Eid al-Adha Holiday* (*estimated)", + "2048-09-21": "Eid al-Adha Holiday* (*estimated)", + "2048-10-09": "Islamic New Year* (*estimated)", + "2048-10-17": "Ashura Eve* (*estimated)", + "2048-10-18": "Ashura* (*estimated)", + "2048-12-16": "National Day", + "2048-12-17": "National Day", + "2048-12-18": "Prophet's Birthday* (*estimated)", + "2049-01-01": "New Year's Day", + "2049-05-01": "Labor Day", + "2049-07-01": "Eid al-Fitr* (*estimated)", + "2049-07-02": "Eid al-Fitr Holiday* (*estimated)", + "2049-07-03": "Eid al-Fitr Holiday* (*estimated)", + "2049-09-08": "Eid al-Adha* (*estimated)", + "2049-09-09": "Eid al-Adha Holiday* (*estimated)", + "2049-09-10": "Eid al-Adha Holiday* (*estimated)", + "2049-09-28": "Islamic New Year* (*estimated)", + "2049-10-06": "Ashura Eve* (*estimated)", + "2049-10-07": "Ashura* (*estimated)", + "2049-12-07": "Prophet's Birthday* (*estimated)", + "2049-12-16": "National Day", + "2049-12-17": "National Day", + "2050-01-01": "New Year's Day", + "2050-05-01": "Labor Day", + "2050-06-20": "Eid al-Fitr* (*estimated)", + "2050-06-21": "Eid al-Fitr Holiday* (*estimated)", + "2050-06-22": "Eid al-Fitr Holiday* (*estimated)", + "2050-08-28": "Eid al-Adha* (*estimated)", + "2050-08-29": "Eid al-Adha Holiday* (*estimated)", + "2050-08-30": "Eid al-Adha Holiday* (*estimated)", + "2050-09-17": "Islamic New Year* (*estimated)", + "2050-09-25": "Ashura Eve* (*estimated)", + "2050-09-26": "Ashura* (*estimated)", + "2050-11-26": "Prophet's Birthday* (*estimated)", + "2050-12-16": "National Day", + "2050-12-17": "National Day" +} diff --git a/snapshots/countries/BI.json b/snapshots/countries/BI.json new file mode 100644 index 000000000..8899c1aa3 --- /dev/null +++ b/snapshots/countries/BI.json @@ -0,0 +1,1233 @@ +{ + "1962-01-01": "New Year's Day", + "1962-03-07": "Eid ul Fitr* (*estimated)", + "1962-05-01": "Labour Day", + "1962-05-14": "Eid al Adha* (*estimated)", + "1962-05-31": "Ascension Day", + "1962-07-01": "Independence Day", + "1962-07-02": "Independence Day (Observed)", + "1962-08-15": "Assumption Day", + "1962-10-13": "Prince Louis Rwagasore Day", + "1962-11-01": "All Saints' Day", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-02-24": "Eid ul Fitr* (*estimated)", + "1963-02-25": "Eid ul Fitr* (*estimated) (Observed)", + "1963-05-01": "Labour Day", + "1963-05-03": "Eid al Adha* (*estimated)", + "1963-05-23": "Ascension Day", + "1963-07-01": "Independence Day", + "1963-08-15": "Assumption Day", + "1963-10-13": "Prince Louis Rwagasore Day", + "1963-10-14": "Prince Louis Rwagasore Day (Observed)", + "1963-11-01": "All Saints' Day", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-02-14": "Eid ul Fitr* (*estimated)", + "1964-04-22": "Eid al Adha* (*estimated)", + "1964-05-01": "Labour Day", + "1964-05-07": "Ascension Day", + "1964-07-01": "Independence Day", + "1964-08-15": "Assumption Day", + "1964-10-13": "Prince Louis Rwagasore Day", + "1964-11-01": "All Saints' Day", + "1964-11-02": "All Saints' Day (Observed)", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-02-02": "Eid ul Fitr* (*estimated)", + "1965-04-11": "Eid al Adha* (*estimated)", + "1965-04-12": "Eid al Adha* (*estimated) (Observed)", + "1965-05-01": "Labour Day", + "1965-05-27": "Ascension Day", + "1965-07-01": "Independence Day", + "1965-08-15": "Assumption Day", + "1965-08-16": "Assumption Day (Observed)", + "1965-10-13": "Prince Louis Rwagasore Day", + "1965-11-01": "All Saints' Day", + "1965-12-25": "Christmas Day", + "1966-01-01": "New Year's Day", + "1966-01-22": "Eid ul Fitr* (*estimated)", + "1966-04-01": "Eid al Adha* (*estimated)", + "1966-05-01": "Labour Day", + "1966-05-02": "Labour Day (Observed)", + "1966-05-19": "Ascension Day", + "1966-07-01": "Independence Day", + "1966-08-15": "Assumption Day", + "1966-10-13": "Prince Louis Rwagasore Day", + "1966-11-01": "All Saints' Day", + "1966-12-25": "Christmas Day", + "1966-12-26": "Christmas Day (Observed)", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day (Observed)", + "1967-01-12": "Eid ul Fitr* (*estimated)", + "1967-03-21": "Eid al Adha* (*estimated)", + "1967-05-01": "Labour Day", + "1967-05-04": "Ascension Day", + "1967-07-01": "Independence Day", + "1967-08-15": "Assumption Day", + "1967-10-13": "Prince Louis Rwagasore Day", + "1967-11-01": "All Saints' Day", + "1967-12-25": "Christmas Day", + "1968-01-01": "Eid ul Fitr* (*estimated); New Year's Day", + "1968-03-09": "Eid al Adha* (*estimated)", + "1968-05-01": "Labour Day", + "1968-05-23": "Ascension Day", + "1968-07-01": "Independence Day", + "1968-08-15": "Assumption Day", + "1968-10-13": "Prince Louis Rwagasore Day", + "1968-10-14": "Prince Louis Rwagasore Day (Observed)", + "1968-11-01": "All Saints' Day", + "1968-12-21": "Eid ul Fitr* (*estimated)", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-02-27": "Eid al Adha* (*estimated)", + "1969-05-01": "Labour Day", + "1969-05-15": "Ascension Day", + "1969-07-01": "Independence Day", + "1969-08-15": "Assumption Day", + "1969-10-13": "Prince Louis Rwagasore Day", + "1969-11-01": "All Saints' Day", + "1969-12-10": "Eid ul Fitr* (*estimated)", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-02-16": "Eid al Adha* (*estimated)", + "1970-05-01": "Labour Day", + "1970-05-07": "Ascension Day", + "1970-07-01": "Independence Day", + "1970-08-15": "Assumption Day", + "1970-10-13": "Prince Louis Rwagasore Day", + "1970-11-01": "All Saints' Day", + "1970-11-02": "All Saints' Day (Observed)", + "1970-11-30": "Eid ul Fitr* (*estimated)", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-02-06": "Eid al Adha* (*estimated)", + "1971-05-01": "Labour Day", + "1971-05-20": "Ascension Day", + "1971-07-01": "Independence Day", + "1971-08-15": "Assumption Day", + "1971-08-16": "Assumption Day (Observed)", + "1971-10-13": "Prince Louis Rwagasore Day", + "1971-11-01": "All Saints' Day", + "1971-11-19": "Eid ul Fitr* (*estimated)", + "1971-12-25": "Christmas Day", + "1972-01-01": "New Year's Day", + "1972-01-26": "Eid al Adha* (*estimated)", + "1972-05-01": "Labour Day", + "1972-05-11": "Ascension Day", + "1972-07-01": "Independence Day", + "1972-08-15": "Assumption Day", + "1972-10-13": "Prince Louis Rwagasore Day", + "1972-11-01": "All Saints' Day", + "1972-11-07": "Eid ul Fitr* (*estimated)", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-01-14": "Eid al Adha* (*estimated)", + "1973-01-15": "Eid al Adha* (*estimated) (Observed)", + "1973-05-01": "Labour Day", + "1973-05-31": "Ascension Day", + "1973-07-01": "Independence Day", + "1973-07-02": "Independence Day (Observed)", + "1973-08-15": "Assumption Day", + "1973-10-13": "Prince Louis Rwagasore Day", + "1973-10-27": "Eid ul Fitr* (*estimated)", + "1973-11-01": "All Saints' Day", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-01-03": "Eid al Adha* (*estimated)", + "1974-05-01": "Labour Day", + "1974-05-23": "Ascension Day", + "1974-07-01": "Independence Day", + "1974-08-15": "Assumption Day", + "1974-10-13": "Prince Louis Rwagasore Day", + "1974-10-14": "Prince Louis Rwagasore Day (Observed)", + "1974-10-16": "Eid ul Fitr* (*estimated)", + "1974-11-01": "All Saints' Day", + "1974-12-24": "Eid al Adha* (*estimated)", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-05-01": "Labour Day", + "1975-05-08": "Ascension Day", + "1975-07-01": "Independence Day", + "1975-08-15": "Assumption Day", + "1975-10-06": "Eid ul Fitr* (*estimated)", + "1975-10-13": "Prince Louis Rwagasore Day", + "1975-11-01": "All Saints' Day", + "1975-12-13": "Eid al Adha* (*estimated)", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-05-01": "Labour Day", + "1976-05-27": "Ascension Day", + "1976-07-01": "Independence Day", + "1976-08-15": "Assumption Day", + "1976-08-16": "Assumption Day (Observed)", + "1976-09-24": "Eid ul Fitr* (*estimated)", + "1976-10-13": "Prince Louis Rwagasore Day", + "1976-11-01": "All Saints' Day", + "1976-12-01": "Eid al Adha* (*estimated)", + "1976-12-25": "Christmas Day", + "1977-01-01": "New Year's Day", + "1977-05-01": "Labour Day", + "1977-05-02": "Labour Day (Observed)", + "1977-05-19": "Ascension Day", + "1977-07-01": "Independence Day", + "1977-08-15": "Assumption Day", + "1977-09-14": "Eid ul Fitr* (*estimated)", + "1977-10-13": "Prince Louis Rwagasore Day", + "1977-11-01": "All Saints' Day", + "1977-11-21": "Eid al Adha* (*estimated)", + "1977-12-25": "Christmas Day", + "1977-12-26": "Christmas Day (Observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day (Observed)", + "1978-05-01": "Labour Day", + "1978-05-04": "Ascension Day", + "1978-07-01": "Independence Day", + "1978-08-15": "Assumption Day", + "1978-09-03": "Eid ul Fitr* (*estimated)", + "1978-09-04": "Eid ul Fitr* (*estimated) (Observed)", + "1978-10-13": "Prince Louis Rwagasore Day", + "1978-11-01": "All Saints' Day", + "1978-11-10": "Eid al Adha* (*estimated)", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-05-01": "Labour Day", + "1979-05-24": "Ascension Day", + "1979-07-01": "Independence Day", + "1979-07-02": "Independence Day (Observed)", + "1979-08-15": "Assumption Day", + "1979-08-23": "Eid ul Fitr* (*estimated)", + "1979-10-13": "Prince Louis Rwagasore Day", + "1979-10-31": "Eid al Adha* (*estimated)", + "1979-11-01": "All Saints' Day", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-05-01": "Labour Day", + "1980-05-15": "Ascension Day", + "1980-07-01": "Independence Day", + "1980-08-12": "Eid ul Fitr* (*estimated)", + "1980-08-15": "Assumption Day", + "1980-10-13": "Prince Louis Rwagasore Day", + "1980-10-19": "Eid al Adha* (*estimated)", + "1980-10-20": "Eid al Adha* (*estimated) (Observed)", + "1980-11-01": "All Saints' Day", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-05-01": "Labour Day", + "1981-05-28": "Ascension Day", + "1981-07-01": "Independence Day", + "1981-08-01": "Eid ul Fitr* (*estimated)", + "1981-08-15": "Assumption Day", + "1981-10-08": "Eid al Adha* (*estimated)", + "1981-10-13": "Prince Louis Rwagasore Day", + "1981-11-01": "All Saints' Day", + "1981-11-02": "All Saints' Day (Observed)", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-05-01": "Labour Day", + "1982-05-20": "Ascension Day", + "1982-07-01": "Independence Day", + "1982-07-21": "Eid ul Fitr* (*estimated)", + "1982-08-15": "Assumption Day", + "1982-08-16": "Assumption Day (Observed)", + "1982-09-27": "Eid al Adha* (*estimated)", + "1982-10-13": "Prince Louis Rwagasore Day", + "1982-11-01": "All Saints' Day", + "1982-12-25": "Christmas Day", + "1983-01-01": "New Year's Day", + "1983-05-01": "Labour Day", + "1983-05-02": "Labour Day (Observed)", + "1983-05-12": "Ascension Day", + "1983-07-01": "Independence Day", + "1983-07-11": "Eid ul Fitr* (*estimated)", + "1983-08-15": "Assumption Day", + "1983-09-17": "Eid al Adha* (*estimated)", + "1983-10-13": "Prince Louis Rwagasore Day", + "1983-11-01": "All Saints' Day", + "1983-12-25": "Christmas Day", + "1983-12-26": "Christmas Day (Observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (Observed)", + "1984-05-01": "Labour Day", + "1984-05-31": "Ascension Day", + "1984-06-30": "Eid ul Fitr* (*estimated)", + "1984-07-01": "Independence Day", + "1984-07-02": "Independence Day (Observed)", + "1984-08-15": "Assumption Day", + "1984-09-05": "Eid al Adha* (*estimated)", + "1984-10-13": "Prince Louis Rwagasore Day", + "1984-11-01": "All Saints' Day", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-05-01": "Labour Day", + "1985-05-16": "Ascension Day", + "1985-06-19": "Eid ul Fitr* (*estimated)", + "1985-07-01": "Independence Day", + "1985-08-15": "Assumption Day", + "1985-08-26": "Eid al Adha* (*estimated)", + "1985-10-13": "Prince Louis Rwagasore Day", + "1985-10-14": "Prince Louis Rwagasore Day (Observed)", + "1985-11-01": "All Saints' Day", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-05-01": "Labour Day", + "1986-05-08": "Ascension Day", + "1986-06-08": "Eid ul Fitr* (*estimated)", + "1986-06-09": "Eid ul Fitr* (*estimated) (Observed)", + "1986-07-01": "Independence Day", + "1986-08-15": "Assumption Day; Eid al Adha* (*estimated)", + "1986-10-13": "Prince Louis Rwagasore Day", + "1986-11-01": "All Saints' Day", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-05-01": "Labour Day", + "1987-05-28": "Ascension Day; Eid ul Fitr* (*estimated)", + "1987-07-01": "Independence Day", + "1987-08-04": "Eid al Adha* (*estimated)", + "1987-08-15": "Assumption Day", + "1987-10-13": "Prince Louis Rwagasore Day", + "1987-11-01": "All Saints' Day", + "1987-11-02": "All Saints' Day (Observed)", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-05-01": "Labour Day", + "1988-05-02": "Labour Day (Observed)", + "1988-05-12": "Ascension Day", + "1988-05-16": "Eid ul Fitr* (*estimated)", + "1988-07-01": "Independence Day", + "1988-07-23": "Eid al Adha* (*estimated)", + "1988-08-15": "Assumption Day", + "1988-10-13": "Prince Louis Rwagasore Day", + "1988-11-01": "All Saints' Day", + "1988-12-25": "Christmas Day", + "1988-12-26": "Christmas Day (Observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (Observed)", + "1989-05-01": "Labour Day", + "1989-05-04": "Ascension Day", + "1989-05-06": "Eid ul Fitr* (*estimated)", + "1989-07-01": "Independence Day", + "1989-07-13": "Eid al Adha* (*estimated)", + "1989-08-15": "Assumption Day", + "1989-10-13": "Prince Louis Rwagasore Day", + "1989-11-01": "All Saints' Day", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-04-26": "Eid ul Fitr* (*estimated)", + "1990-05-01": "Labour Day", + "1990-05-24": "Ascension Day", + "1990-07-01": "Independence Day", + "1990-07-02": "Eid al Adha* (*estimated); Independence Day (Observed)", + "1990-08-15": "Assumption Day", + "1990-10-13": "Prince Louis Rwagasore Day", + "1990-11-01": "All Saints' Day", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-04-15": "Eid ul Fitr* (*estimated)", + "1991-05-01": "Labour Day", + "1991-05-09": "Ascension Day", + "1991-06-22": "Eid al Adha* (*estimated)", + "1991-07-01": "Independence Day", + "1991-08-15": "Assumption Day", + "1991-10-13": "Prince Louis Rwagasore Day", + "1991-10-14": "Prince Louis Rwagasore Day (Observed)", + "1991-11-01": "All Saints' Day", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-02-05": "Unity Day", + "1992-04-04": "Eid ul Fitr* (*estimated)", + "1992-05-01": "Labour Day", + "1992-05-28": "Ascension Day", + "1992-06-11": "Eid al Adha* (*estimated)", + "1992-07-01": "Independence Day", + "1992-08-15": "Assumption Day", + "1992-10-13": "Prince Louis Rwagasore Day", + "1992-11-01": "All Saints' Day", + "1992-11-02": "All Saints' Day (Observed)", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-02-05": "Unity Day", + "1993-03-24": "Eid ul Fitr* (*estimated)", + "1993-05-01": "Labour Day", + "1993-05-20": "Ascension Day", + "1993-05-31": "Eid al Adha* (*estimated)", + "1993-07-01": "Independence Day", + "1993-08-15": "Assumption Day", + "1993-08-16": "Assumption Day (Observed)", + "1993-10-13": "Prince Louis Rwagasore Day", + "1993-11-01": "All Saints' Day", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-02-05": "Unity Day", + "1994-03-13": "Eid ul Fitr* (*estimated)", + "1994-03-14": "Eid ul Fitr* (*estimated) (Observed)", + "1994-05-01": "Labour Day", + "1994-05-02": "Labour Day (Observed)", + "1994-05-12": "Ascension Day", + "1994-05-20": "Eid al Adha* (*estimated)", + "1994-07-01": "Independence Day", + "1994-08-15": "Assumption Day", + "1994-10-13": "Prince Louis Rwagasore Day", + "1994-10-21": "President Ndadaye's Day", + "1994-11-01": "All Saints' Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day (Observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (Observed)", + "1995-02-05": "Unity Day", + "1995-02-06": "Unity Day (Observed)", + "1995-03-02": "Eid ul Fitr* (*estimated)", + "1995-04-06": "President Ntaryamira Day", + "1995-05-01": "Labour Day", + "1995-05-09": "Eid al Adha* (*estimated)", + "1995-05-25": "Ascension Day", + "1995-07-01": "Independence Day", + "1995-08-15": "Assumption Day", + "1995-10-13": "Prince Louis Rwagasore Day", + "1995-10-21": "President Ndadaye's Day", + "1995-11-01": "All Saints' Day", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-02-05": "Unity Day", + "1996-02-19": "Eid ul Fitr* (*estimated)", + "1996-04-06": "President Ntaryamira Day", + "1996-04-27": "Eid al Adha* (*estimated)", + "1996-05-01": "Labour Day", + "1996-05-16": "Ascension Day", + "1996-07-01": "Independence Day", + "1996-08-15": "Assumption Day", + "1996-10-13": "Prince Louis Rwagasore Day", + "1996-10-14": "Prince Louis Rwagasore Day (Observed)", + "1996-10-21": "President Ndadaye's Day", + "1996-11-01": "All Saints' Day", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-02-05": "Unity Day", + "1997-02-08": "Eid ul Fitr* (*estimated)", + "1997-04-06": "President Ntaryamira Day", + "1997-04-07": "President Ntaryamira Day (Observed)", + "1997-04-17": "Eid al Adha* (*estimated)", + "1997-05-01": "Labour Day", + "1997-05-08": "Ascension Day", + "1997-07-01": "Independence Day", + "1997-08-15": "Assumption Day", + "1997-10-13": "Prince Louis Rwagasore Day", + "1997-10-21": "President Ndadaye's Day", + "1997-11-01": "All Saints' Day", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-01-29": "Eid ul Fitr* (*estimated)", + "1998-02-05": "Unity Day", + "1998-04-06": "President Ntaryamira Day", + "1998-04-07": "Eid al Adha* (*estimated)", + "1998-05-01": "Labour Day", + "1998-05-21": "Ascension Day", + "1998-07-01": "Independence Day", + "1998-08-15": "Assumption Day", + "1998-10-13": "Prince Louis Rwagasore Day", + "1998-10-21": "President Ndadaye's Day", + "1998-11-01": "All Saints' Day", + "1998-11-02": "All Saints' Day (Observed)", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-01-18": "Eid ul Fitr* (*estimated)", + "1999-02-05": "Unity Day", + "1999-03-27": "Eid al Adha* (*estimated)", + "1999-04-06": "President Ntaryamira Day", + "1999-05-01": "Labour Day", + "1999-05-13": "Ascension Day", + "1999-07-01": "Independence Day", + "1999-08-15": "Assumption Day", + "1999-08-16": "Assumption Day (Observed)", + "1999-10-13": "Prince Louis Rwagasore Day", + "1999-10-21": "President Ndadaye's Day", + "1999-11-01": "All Saints' Day", + "1999-12-25": "Christmas Day", + "2000-01-01": "New Year's Day", + "2000-01-08": "Eid ul Fitr* (*estimated)", + "2000-02-05": "Unity Day", + "2000-03-16": "Eid al Adha* (*estimated)", + "2000-04-06": "President Ntaryamira Day", + "2000-05-01": "Labour Day", + "2000-06-01": "Ascension Day", + "2000-07-01": "Independence Day", + "2000-08-15": "Assumption Day", + "2000-10-13": "Prince Louis Rwagasore Day", + "2000-10-21": "President Ndadaye's Day", + "2000-11-01": "All Saints' Day", + "2000-12-25": "Christmas Day", + "2000-12-27": "Eid ul Fitr* (*estimated)", + "2001-01-01": "New Year's Day", + "2001-02-05": "Unity Day", + "2001-03-05": "Eid al Adha* (*estimated)", + "2001-04-06": "President Ntaryamira Day", + "2001-05-01": "Labour Day", + "2001-05-24": "Ascension Day", + "2001-07-01": "Independence Day", + "2001-07-02": "Independence Day (Observed)", + "2001-08-15": "Assumption Day", + "2001-10-13": "Prince Louis Rwagasore Day", + "2001-10-21": "President Ndadaye's Day", + "2001-10-22": "President Ndadaye's Day (Observed)", + "2001-11-01": "All Saints' Day", + "2001-12-16": "Eid ul Fitr* (*estimated)", + "2001-12-17": "Eid ul Fitr* (*estimated) (Observed)", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-02-05": "Unity Day", + "2002-02-22": "Eid al Adha* (*estimated)", + "2002-04-06": "President Ntaryamira Day", + "2002-05-01": "Labour Day", + "2002-05-09": "Ascension Day", + "2002-07-01": "Independence Day", + "2002-08-15": "Assumption Day", + "2002-10-13": "Prince Louis Rwagasore Day", + "2002-10-14": "Prince Louis Rwagasore Day (Observed)", + "2002-10-21": "President Ndadaye's Day", + "2002-11-01": "All Saints' Day", + "2002-12-05": "Eid ul Fitr* (*estimated)", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-02-05": "Unity Day", + "2003-02-11": "Eid al Adha* (*estimated)", + "2003-04-06": "President Ntaryamira Day", + "2003-04-07": "President Ntaryamira Day (Observed)", + "2003-05-01": "Labour Day", + "2003-05-29": "Ascension Day", + "2003-07-01": "Independence Day", + "2003-08-15": "Assumption Day", + "2003-10-13": "Prince Louis Rwagasore Day", + "2003-10-21": "President Ndadaye's Day", + "2003-11-01": "All Saints' Day", + "2003-11-25": "Eid ul Fitr* (*estimated)", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-02-01": "Eid al Adha* (*estimated)", + "2004-02-02": "Eid al Adha* (*estimated) (Observed)", + "2004-02-05": "Unity Day", + "2004-04-06": "President Ntaryamira Day", + "2004-05-01": "Labour Day", + "2004-05-20": "Ascension Day", + "2004-07-01": "Independence Day", + "2004-08-15": "Assumption Day", + "2004-08-16": "Assumption Day (Observed)", + "2004-10-13": "Prince Louis Rwagasore Day", + "2004-10-21": "President Ndadaye's Day", + "2004-11-01": "All Saints' Day", + "2004-11-14": "Eid ul Fitr* (*estimated)", + "2004-11-15": "Eid ul Fitr* (*estimated) (Observed)", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-01-21": "Eid al Adha* (*estimated)", + "2005-02-05": "Unity Day", + "2005-04-06": "President Ntaryamira Day", + "2005-05-01": "Labour Day", + "2005-05-02": "Labour Day (Observed)", + "2005-05-05": "Ascension Day", + "2005-07-01": "Independence Day", + "2005-08-15": "Assumption Day", + "2005-10-13": "Prince Louis Rwagasore Day", + "2005-10-21": "President Ndadaye's Day", + "2005-11-01": "All Saints' Day", + "2005-11-03": "Eid ul Fitr* (*estimated)", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day (Observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (Observed)", + "2006-01-10": "Eid al Adha* (*estimated)", + "2006-02-05": "Unity Day", + "2006-02-06": "Unity Day (Observed)", + "2006-04-06": "President Ntaryamira Day", + "2006-05-01": "Labour Day", + "2006-05-25": "Ascension Day", + "2006-07-01": "Independence Day", + "2006-08-15": "Assumption Day", + "2006-10-13": "Prince Louis Rwagasore Day", + "2006-10-21": "President Ndadaye's Day", + "2006-10-23": "Eid ul Fitr* (*estimated)", + "2006-11-01": "All Saints' Day", + "2006-12-25": "Christmas Day", + "2006-12-31": "Eid al Adha* (*estimated)", + "2007-01-01": "New Year's Day", + "2007-02-05": "Unity Day", + "2007-04-06": "President Ntaryamira Day", + "2007-05-01": "Labour Day", + "2007-05-17": "Ascension Day", + "2007-07-01": "Independence Day", + "2007-07-02": "Independence Day (Observed)", + "2007-08-15": "Assumption Day", + "2007-10-13": "Eid ul Fitr* (*estimated); Prince Louis Rwagasore Day", + "2007-10-21": "President Ndadaye's Day", + "2007-10-22": "President Ndadaye's Day (Observed)", + "2007-11-01": "All Saints' Day", + "2007-12-20": "Eid al Adha* (*estimated)", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-02-05": "Unity Day", + "2008-04-06": "President Ntaryamira Day", + "2008-04-07": "President Ntaryamira Day (Observed)", + "2008-05-01": "Ascension Day; Labour Day", + "2008-07-01": "Independence Day", + "2008-08-15": "Assumption Day", + "2008-10-01": "Eid ul Fitr* (*estimated)", + "2008-10-13": "Prince Louis Rwagasore Day", + "2008-10-21": "President Ndadaye's Day", + "2008-11-01": "All Saints' Day", + "2008-12-08": "Eid al Adha* (*estimated)", + "2008-12-25": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-02-05": "Unity Day", + "2009-04-06": "President Ntaryamira Day", + "2009-05-01": "Labour Day", + "2009-05-21": "Ascension Day", + "2009-07-01": "Independence Day", + "2009-08-15": "Assumption Day", + "2009-09-20": "Eid ul Fitr* (*estimated)", + "2009-09-21": "Eid ul Fitr* (*estimated) (Observed)", + "2009-10-13": "Prince Louis Rwagasore Day", + "2009-10-21": "President Ndadaye's Day", + "2009-11-01": "All Saints' Day", + "2009-11-02": "All Saints' Day (Observed)", + "2009-11-27": "Eid al Adha* (*estimated)", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-02-05": "Unity Day", + "2010-04-06": "President Ntaryamira Day", + "2010-05-01": "Labour Day", + "2010-05-13": "Ascension Day", + "2010-07-01": "Independence Day", + "2010-08-15": "Assumption Day", + "2010-08-16": "Assumption Day (Observed)", + "2010-09-10": "Eid ul Fitr* (*estimated)", + "2010-10-13": "Prince Louis Rwagasore Day", + "2010-10-21": "President Ndadaye's Day", + "2010-11-01": "All Saints' Day", + "2010-11-16": "Eid al Adha* (*estimated)", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-02-05": "Unity Day", + "2011-04-06": "President Ntaryamira Day", + "2011-05-01": "Labour Day", + "2011-05-02": "Labour Day (Observed)", + "2011-06-02": "Ascension Day", + "2011-07-01": "Independence Day", + "2011-08-15": "Assumption Day", + "2011-08-30": "Eid ul Fitr* (*estimated)", + "2011-10-13": "Prince Louis Rwagasore Day", + "2011-10-21": "President Ndadaye's Day", + "2011-11-01": "All Saints' Day", + "2011-11-06": "Eid al Adha* (*estimated)", + "2011-11-07": "Eid al Adha* (*estimated) (Observed)", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day (Observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (Observed)", + "2012-02-05": "Unity Day", + "2012-02-06": "Unity Day (Observed)", + "2012-04-06": "President Ntaryamira Day", + "2012-05-01": "Labour Day", + "2012-05-17": "Ascension Day", + "2012-07-01": "Independence Day", + "2012-07-02": "Independence Day (Observed)", + "2012-08-15": "Assumption Day", + "2012-08-19": "Eid ul Fitr* (*estimated)", + "2012-08-20": "Eid ul Fitr* (*estimated) (Observed)", + "2012-10-13": "Prince Louis Rwagasore Day", + "2012-10-21": "President Ndadaye's Day", + "2012-10-22": "President Ndadaye's Day (Observed)", + "2012-10-26": "Eid al Adha* (*estimated)", + "2012-11-01": "All Saints' Day", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-02-05": "Unity Day", + "2013-04-06": "President Ntaryamira Day", + "2013-05-01": "Labour Day", + "2013-05-09": "Ascension Day", + "2013-07-01": "Independence Day", + "2013-08-08": "Eid ul Fitr* (*estimated)", + "2013-08-15": "Assumption Day", + "2013-10-13": "Prince Louis Rwagasore Day", + "2013-10-14": "Prince Louis Rwagasore Day (Observed)", + "2013-10-15": "Eid al Adha* (*estimated)", + "2013-10-21": "President Ndadaye's Day", + "2013-11-01": "All Saints' Day", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-02-05": "Unity Day", + "2014-04-06": "President Ntaryamira Day", + "2014-04-07": "President Ntaryamira Day (Observed)", + "2014-05-01": "Labour Day", + "2014-05-29": "Ascension Day", + "2014-07-01": "Independence Day", + "2014-07-28": "Eid ul Fitr* (*estimated)", + "2014-08-15": "Assumption Day", + "2014-10-04": "Eid al Adha* (*estimated)", + "2014-10-13": "Prince Louis Rwagasore Day", + "2014-10-21": "President Ndadaye's Day", + "2014-11-01": "All Saints' Day", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-02-05": "Unity Day", + "2015-04-06": "President Ntaryamira Day", + "2015-05-01": "Labour Day", + "2015-05-14": "Ascension Day", + "2015-07-01": "Independence Day", + "2015-07-17": "Eid ul Fitr* (*estimated)", + "2015-08-15": "Assumption Day", + "2015-09-23": "Eid al Adha* (*estimated)", + "2015-10-13": "Prince Louis Rwagasore Day", + "2015-10-21": "President Ndadaye's Day", + "2015-11-01": "All Saints' Day", + "2015-11-02": "All Saints' Day (Observed)", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-02-05": "Unity Day", + "2016-04-06": "President Ntaryamira Day", + "2016-05-01": "Labour Day", + "2016-05-02": "Labour Day (Observed)", + "2016-05-05": "Ascension Day", + "2016-07-01": "Independence Day", + "2016-07-06": "Eid ul Fitr* (*estimated)", + "2016-08-15": "Assumption Day", + "2016-09-11": "Eid al Adha* (*estimated)", + "2016-09-12": "Eid al Adha* (*estimated) (Observed)", + "2016-10-13": "Prince Louis Rwagasore Day", + "2016-10-21": "President Ndadaye's Day", + "2016-11-01": "All Saints' Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day (Observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (Observed)", + "2017-02-05": "Unity Day", + "2017-02-06": "Unity Day (Observed)", + "2017-04-06": "President Ntaryamira Day", + "2017-05-01": "Labour Day", + "2017-05-25": "Ascension Day", + "2017-06-25": "Eid ul Fitr* (*estimated)", + "2017-06-26": "Eid ul Fitr* (*estimated) (Observed)", + "2017-07-01": "Independence Day", + "2017-08-15": "Assumption Day", + "2017-09-01": "Eid al Adha* (*estimated)", + "2017-10-13": "Prince Louis Rwagasore Day", + "2017-10-21": "President Ndadaye's Day", + "2017-11-01": "All Saints' Day", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-02-05": "Unity Day", + "2018-04-06": "President Ntaryamira Day", + "2018-05-01": "Labour Day", + "2018-05-10": "Ascension Day", + "2018-06-15": "Eid ul Fitr* (*estimated)", + "2018-07-01": "Independence Day", + "2018-07-02": "Independence Day (Observed)", + "2018-08-15": "Assumption Day", + "2018-08-21": "Eid al Adha* (*estimated)", + "2018-10-13": "Prince Louis Rwagasore Day", + "2018-10-21": "President Ndadaye's Day", + "2018-10-22": "President Ndadaye's Day (Observed)", + "2018-11-01": "All Saints' Day", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-02-05": "Unity Day", + "2019-04-06": "President Ntaryamira Day", + "2019-05-01": "Labour Day", + "2019-05-30": "Ascension Day", + "2019-06-04": "Eid ul Fitr* (*estimated)", + "2019-07-01": "Independence Day", + "2019-08-11": "Eid al Adha* (*estimated)", + "2019-08-12": "Eid al Adha* (*estimated) (Observed)", + "2019-08-15": "Assumption Day", + "2019-10-13": "Prince Louis Rwagasore Day", + "2019-10-14": "Prince Louis Rwagasore Day (Observed)", + "2019-10-21": "President Ndadaye's Day", + "2019-11-01": "All Saints' Day", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-02-05": "Unity Day", + "2020-04-06": "President Ntaryamira Day", + "2020-05-01": "Labour Day", + "2020-05-21": "Ascension Day", + "2020-05-24": "Eid ul Fitr* (*estimated)", + "2020-05-25": "Eid ul Fitr* (*estimated) (Observed)", + "2020-07-01": "Independence Day", + "2020-07-31": "Eid al Adha* (*estimated)", + "2020-08-15": "Assumption Day", + "2020-10-13": "Prince Louis Rwagasore Day", + "2020-10-21": "President Ndadaye's Day", + "2020-11-01": "All Saints' Day", + "2020-11-02": "All Saints' Day (Observed)", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-02-05": "Unity Day", + "2021-04-06": "President Ntaryamira Day", + "2021-05-01": "Labour Day", + "2021-05-13": "Ascension Day; Eid ul Fitr* (*estimated)", + "2021-07-01": "Independence Day", + "2021-07-20": "Eid al Adha* (*estimated)", + "2021-08-15": "Assumption Day", + "2021-08-16": "Assumption Day (Observed)", + "2021-10-13": "Prince Louis Rwagasore Day", + "2021-10-21": "President Ndadaye's Day", + "2021-11-01": "All Saints' Day", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-02-05": "Unity Day", + "2022-04-06": "President Ntaryamira Day", + "2022-05-01": "Labour Day", + "2022-05-02": "Eid ul Fitr* (*estimated); Labour Day (Observed)", + "2022-05-26": "Ascension Day", + "2022-06-08": "President Nkurunziza Day", + "2022-07-01": "Independence Day", + "2022-07-09": "Eid al Adha* (*estimated)", + "2022-08-15": "Assumption Day", + "2022-10-13": "Prince Louis Rwagasore Day", + "2022-10-21": "President Ndadaye's Day", + "2022-11-01": "All Saints' Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day (Observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (Observed)", + "2023-02-05": "Unity Day", + "2023-02-06": "Unity Day (Observed)", + "2023-04-06": "President Ntaryamira Day", + "2023-04-21": "Eid ul Fitr* (*estimated)", + "2023-05-01": "Labour Day", + "2023-05-18": "Ascension Day", + "2023-06-08": "President Nkurunziza Day", + "2023-06-28": "Eid al Adha* (*estimated)", + "2023-07-01": "Independence Day", + "2023-08-15": "Assumption Day", + "2023-10-13": "Prince Louis Rwagasore Day", + "2023-10-21": "President Ndadaye's Day", + "2023-11-01": "All Saints' Day", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-02-05": "Unity Day", + "2024-04-06": "President Ntaryamira Day", + "2024-04-10": "Eid ul Fitr* (*estimated)", + "2024-05-01": "Labour Day", + "2024-05-09": "Ascension Day", + "2024-06-08": "President Nkurunziza Day", + "2024-06-16": "Eid al Adha* (*estimated)", + "2024-06-17": "Eid al Adha* (*estimated) (Observed)", + "2024-07-01": "Independence Day", + "2024-08-15": "Assumption Day", + "2024-10-13": "Prince Louis Rwagasore Day", + "2024-10-14": "Prince Louis Rwagasore Day (Observed)", + "2024-10-21": "President Ndadaye's Day", + "2024-11-01": "All Saints' Day", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-02-05": "Unity Day", + "2025-03-30": "Eid ul Fitr* (*estimated)", + "2025-03-31": "Eid ul Fitr* (*estimated) (Observed)", + "2025-04-06": "President Ntaryamira Day", + "2025-04-07": "President Ntaryamira Day (Observed)", + "2025-05-01": "Labour Day", + "2025-05-29": "Ascension Day", + "2025-06-06": "Eid al Adha* (*estimated)", + "2025-06-08": "President Nkurunziza Day", + "2025-06-09": "President Nkurunziza Day (Observed)", + "2025-07-01": "Independence Day", + "2025-08-15": "Assumption Day", + "2025-10-13": "Prince Louis Rwagasore Day", + "2025-10-21": "President Ndadaye's Day", + "2025-11-01": "All Saints' Day", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-02-05": "Unity Day", + "2026-03-20": "Eid ul Fitr* (*estimated)", + "2026-04-06": "President Ntaryamira Day", + "2026-05-01": "Labour Day", + "2026-05-14": "Ascension Day", + "2026-05-27": "Eid al Adha* (*estimated)", + "2026-06-08": "President Nkurunziza Day", + "2026-07-01": "Independence Day", + "2026-08-15": "Assumption Day", + "2026-10-13": "Prince Louis Rwagasore Day", + "2026-10-21": "President Ndadaye's Day", + "2026-11-01": "All Saints' Day", + "2026-11-02": "All Saints' Day (Observed)", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-02-05": "Unity Day", + "2027-03-09": "Eid ul Fitr* (*estimated)", + "2027-04-06": "President Ntaryamira Day", + "2027-05-01": "Labour Day", + "2027-05-06": "Ascension Day", + "2027-05-16": "Eid al Adha* (*estimated)", + "2027-05-17": "Eid al Adha* (*estimated) (Observed)", + "2027-06-08": "President Nkurunziza Day", + "2027-07-01": "Independence Day", + "2027-08-15": "Assumption Day", + "2027-08-16": "Assumption Day (Observed)", + "2027-10-13": "Prince Louis Rwagasore Day", + "2027-10-21": "President Ndadaye's Day", + "2027-11-01": "All Saints' Day", + "2027-12-25": "Christmas Day", + "2028-01-01": "New Year's Day", + "2028-02-05": "Unity Day", + "2028-02-26": "Eid ul Fitr* (*estimated)", + "2028-04-06": "President Ntaryamira Day", + "2028-05-01": "Labour Day", + "2028-05-05": "Eid al Adha* (*estimated)", + "2028-05-25": "Ascension Day", + "2028-06-08": "President Nkurunziza Day", + "2028-07-01": "Independence Day", + "2028-08-15": "Assumption Day", + "2028-10-13": "Prince Louis Rwagasore Day", + "2028-10-21": "President Ndadaye's Day", + "2028-11-01": "All Saints' Day", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-02-05": "Unity Day", + "2029-02-14": "Eid ul Fitr* (*estimated)", + "2029-04-06": "President Ntaryamira Day", + "2029-04-24": "Eid al Adha* (*estimated)", + "2029-05-01": "Labour Day", + "2029-05-10": "Ascension Day", + "2029-06-08": "President Nkurunziza Day", + "2029-07-01": "Independence Day", + "2029-07-02": "Independence Day (Observed)", + "2029-08-15": "Assumption Day", + "2029-10-13": "Prince Louis Rwagasore Day", + "2029-10-21": "President Ndadaye's Day", + "2029-10-22": "President Ndadaye's Day (Observed)", + "2029-11-01": "All Saints' Day", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-02-04": "Eid ul Fitr* (*estimated)", + "2030-02-05": "Unity Day", + "2030-04-06": "President Ntaryamira Day", + "2030-04-13": "Eid al Adha* (*estimated)", + "2030-05-01": "Labour Day", + "2030-05-30": "Ascension Day", + "2030-06-08": "President Nkurunziza Day", + "2030-07-01": "Independence Day", + "2030-08-15": "Assumption Day", + "2030-10-13": "Prince Louis Rwagasore Day", + "2030-10-14": "Prince Louis Rwagasore Day (Observed)", + "2030-10-21": "President Ndadaye's Day", + "2030-11-01": "All Saints' Day", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-01-24": "Eid ul Fitr* (*estimated)", + "2031-02-05": "Unity Day", + "2031-04-02": "Eid al Adha* (*estimated)", + "2031-04-06": "President Ntaryamira Day", + "2031-04-07": "President Ntaryamira Day (Observed)", + "2031-05-01": "Labour Day", + "2031-05-22": "Ascension Day", + "2031-06-08": "President Nkurunziza Day", + "2031-06-09": "President Nkurunziza Day (Observed)", + "2031-07-01": "Independence Day", + "2031-08-15": "Assumption Day", + "2031-10-13": "Prince Louis Rwagasore Day", + "2031-10-21": "President Ndadaye's Day", + "2031-11-01": "All Saints' Day", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-01-14": "Eid ul Fitr* (*estimated)", + "2032-02-05": "Unity Day", + "2032-03-22": "Eid al Adha* (*estimated)", + "2032-04-06": "President Ntaryamira Day", + "2032-05-01": "Labour Day", + "2032-05-06": "Ascension Day", + "2032-06-08": "President Nkurunziza Day", + "2032-07-01": "Independence Day", + "2032-08-15": "Assumption Day", + "2032-08-16": "Assumption Day (Observed)", + "2032-10-13": "Prince Louis Rwagasore Day", + "2032-10-21": "President Ndadaye's Day", + "2032-11-01": "All Saints' Day", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "Eid ul Fitr* (*estimated)", + "2033-01-03": "Eid ul Fitr* (*estimated) (Observed)", + "2033-02-05": "Unity Day", + "2033-03-11": "Eid al Adha* (*estimated)", + "2033-04-06": "President Ntaryamira Day", + "2033-05-01": "Labour Day", + "2033-05-02": "Labour Day (Observed)", + "2033-05-26": "Ascension Day", + "2033-06-08": "President Nkurunziza Day", + "2033-07-01": "Independence Day", + "2033-08-15": "Assumption Day", + "2033-10-13": "Prince Louis Rwagasore Day", + "2033-10-21": "President Ndadaye's Day", + "2033-11-01": "All Saints' Day", + "2033-12-23": "Eid ul Fitr* (*estimated)", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day (Observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-02-05": "Unity Day", + "2034-02-06": "Unity Day (Observed)", + "2034-03-01": "Eid al Adha* (*estimated)", + "2034-04-06": "President Ntaryamira Day", + "2034-05-01": "Labour Day", + "2034-05-18": "Ascension Day", + "2034-06-08": "President Nkurunziza Day", + "2034-07-01": "Independence Day", + "2034-08-15": "Assumption Day", + "2034-10-13": "Prince Louis Rwagasore Day", + "2034-10-21": "President Ndadaye's Day", + "2034-11-01": "All Saints' Day", + "2034-12-12": "Eid ul Fitr* (*estimated)", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-02-05": "Unity Day", + "2035-02-18": "Eid al Adha* (*estimated)", + "2035-02-19": "Eid al Adha* (*estimated) (Observed)", + "2035-04-06": "President Ntaryamira Day", + "2035-05-01": "Labour Day", + "2035-05-03": "Ascension Day", + "2035-06-08": "President Nkurunziza Day", + "2035-07-01": "Independence Day", + "2035-07-02": "Independence Day (Observed)", + "2035-08-15": "Assumption Day", + "2035-10-13": "Prince Louis Rwagasore Day", + "2035-10-21": "President Ndadaye's Day", + "2035-10-22": "President Ndadaye's Day (Observed)", + "2035-11-01": "All Saints' Day", + "2035-12-01": "Eid ul Fitr* (*estimated)", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-02-05": "Unity Day", + "2036-02-07": "Eid al Adha* (*estimated)", + "2036-04-06": "President Ntaryamira Day", + "2036-04-07": "President Ntaryamira Day (Observed)", + "2036-05-01": "Labour Day", + "2036-05-22": "Ascension Day", + "2036-06-08": "President Nkurunziza Day", + "2036-06-09": "President Nkurunziza Day (Observed)", + "2036-07-01": "Independence Day", + "2036-08-15": "Assumption Day", + "2036-10-13": "Prince Louis Rwagasore Day", + "2036-10-21": "President Ndadaye's Day", + "2036-11-01": "All Saints' Day", + "2036-11-19": "Eid ul Fitr* (*estimated)", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-26": "Eid al Adha* (*estimated)", + "2037-02-05": "Unity Day", + "2037-04-06": "President Ntaryamira Day", + "2037-05-01": "Labour Day", + "2037-05-14": "Ascension Day", + "2037-06-08": "President Nkurunziza Day", + "2037-07-01": "Independence Day", + "2037-08-15": "Assumption Day", + "2037-10-13": "Prince Louis Rwagasore Day", + "2037-10-21": "President Ndadaye's Day", + "2037-11-01": "All Saints' Day", + "2037-11-02": "All Saints' Day (Observed)", + "2037-11-08": "Eid ul Fitr* (*estimated)", + "2037-11-09": "Eid ul Fitr* (*estimated) (Observed)", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-01-16": "Eid al Adha* (*estimated)", + "2038-02-05": "Unity Day", + "2038-04-06": "President Ntaryamira Day", + "2038-05-01": "Labour Day", + "2038-06-03": "Ascension Day", + "2038-06-08": "President Nkurunziza Day", + "2038-07-01": "Independence Day", + "2038-08-15": "Assumption Day", + "2038-08-16": "Assumption Day (Observed)", + "2038-10-13": "Prince Louis Rwagasore Day", + "2038-10-21": "President Ndadaye's Day", + "2038-10-29": "Eid ul Fitr* (*estimated)", + "2038-11-01": "All Saints' Day", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-01-05": "Eid al Adha* (*estimated)", + "2039-02-05": "Unity Day", + "2039-04-06": "President Ntaryamira Day", + "2039-05-01": "Labour Day", + "2039-05-02": "Labour Day (Observed)", + "2039-05-19": "Ascension Day", + "2039-06-08": "President Nkurunziza Day", + "2039-07-01": "Independence Day", + "2039-08-15": "Assumption Day", + "2039-10-13": "Prince Louis Rwagasore Day", + "2039-10-19": "Eid ul Fitr* (*estimated)", + "2039-10-21": "President Ndadaye's Day", + "2039-11-01": "All Saints' Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Christmas Day (Observed); Eid al Adha* (*estimated)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (Observed)", + "2040-02-05": "Unity Day", + "2040-02-06": "Unity Day (Observed)", + "2040-04-06": "President Ntaryamira Day", + "2040-05-01": "Labour Day", + "2040-05-10": "Ascension Day", + "2040-06-08": "President Nkurunziza Day", + "2040-07-01": "Independence Day", + "2040-07-02": "Independence Day (Observed)", + "2040-08-15": "Assumption Day", + "2040-10-07": "Eid ul Fitr* (*estimated)", + "2040-10-08": "Eid ul Fitr* (*estimated) (Observed)", + "2040-10-13": "Prince Louis Rwagasore Day", + "2040-10-21": "President Ndadaye's Day", + "2040-10-22": "President Ndadaye's Day (Observed)", + "2040-11-01": "All Saints' Day", + "2040-12-14": "Eid al Adha* (*estimated)", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-02-05": "Unity Day", + "2041-04-06": "President Ntaryamira Day", + "2041-05-01": "Labour Day", + "2041-05-30": "Ascension Day", + "2041-06-08": "President Nkurunziza Day", + "2041-07-01": "Independence Day", + "2041-08-15": "Assumption Day", + "2041-09-26": "Eid ul Fitr* (*estimated)", + "2041-10-13": "Prince Louis Rwagasore Day", + "2041-10-14": "Prince Louis Rwagasore Day (Observed)", + "2041-10-21": "President Ndadaye's Day", + "2041-11-01": "All Saints' Day", + "2041-12-04": "Eid al Adha* (*estimated)", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-02-05": "Unity Day", + "2042-04-06": "President Ntaryamira Day", + "2042-04-07": "President Ntaryamira Day (Observed)", + "2042-05-01": "Labour Day", + "2042-05-15": "Ascension Day", + "2042-06-08": "President Nkurunziza Day", + "2042-06-09": "President Nkurunziza Day (Observed)", + "2042-07-01": "Independence Day", + "2042-08-15": "Assumption Day", + "2042-09-15": "Eid ul Fitr* (*estimated)", + "2042-10-13": "Prince Louis Rwagasore Day", + "2042-10-21": "President Ndadaye's Day", + "2042-11-01": "All Saints' Day", + "2042-11-23": "Eid al Adha* (*estimated)", + "2042-11-24": "Eid al Adha* (*estimated) (Observed)", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-02-05": "Unity Day", + "2043-04-06": "President Ntaryamira Day", + "2043-05-01": "Labour Day", + "2043-05-07": "Ascension Day", + "2043-06-08": "President Nkurunziza Day", + "2043-07-01": "Independence Day", + "2043-08-15": "Assumption Day", + "2043-09-04": "Eid ul Fitr* (*estimated)", + "2043-10-13": "Prince Louis Rwagasore Day", + "2043-10-21": "President Ndadaye's Day", + "2043-11-01": "All Saints' Day", + "2043-11-02": "All Saints' Day (Observed)", + "2043-11-12": "Eid al Adha* (*estimated)", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-02-05": "Unity Day", + "2044-04-06": "President Ntaryamira Day", + "2044-05-01": "Labour Day", + "2044-05-02": "Labour Day (Observed)", + "2044-05-26": "Ascension Day", + "2044-06-08": "President Nkurunziza Day", + "2044-07-01": "Independence Day", + "2044-08-15": "Assumption Day", + "2044-08-24": "Eid ul Fitr* (*estimated)", + "2044-10-13": "Prince Louis Rwagasore Day", + "2044-10-21": "President Ndadaye's Day", + "2044-10-31": "Eid al Adha* (*estimated)", + "2044-11-01": "All Saints' Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day (Observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (Observed)", + "2045-02-05": "Unity Day", + "2045-02-06": "Unity Day (Observed)", + "2045-04-06": "President Ntaryamira Day", + "2045-05-01": "Labour Day", + "2045-05-18": "Ascension Day", + "2045-06-08": "President Nkurunziza Day", + "2045-07-01": "Independence Day", + "2045-08-14": "Eid ul Fitr* (*estimated)", + "2045-08-15": "Assumption Day", + "2045-10-13": "Prince Louis Rwagasore Day", + "2045-10-21": "Eid al Adha* (*estimated); President Ndadaye's Day", + "2045-11-01": "All Saints' Day", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-02-05": "Unity Day", + "2046-04-06": "President Ntaryamira Day", + "2046-05-01": "Labour Day", + "2046-05-03": "Ascension Day", + "2046-06-08": "President Nkurunziza Day", + "2046-07-01": "Independence Day", + "2046-07-02": "Independence Day (Observed)", + "2046-08-03": "Eid ul Fitr* (*estimated)", + "2046-08-15": "Assumption Day", + "2046-10-10": "Eid al Adha* (*estimated)", + "2046-10-13": "Prince Louis Rwagasore Day", + "2046-10-21": "President Ndadaye's Day", + "2046-10-22": "President Ndadaye's Day (Observed)", + "2046-11-01": "All Saints' Day", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-02-05": "Unity Day", + "2047-04-06": "President Ntaryamira Day", + "2047-05-01": "Labour Day", + "2047-05-23": "Ascension Day", + "2047-06-08": "President Nkurunziza Day", + "2047-07-01": "Independence Day", + "2047-07-24": "Eid ul Fitr* (*estimated)", + "2047-08-15": "Assumption Day", + "2047-09-30": "Eid al Adha* (*estimated)", + "2047-10-13": "Prince Louis Rwagasore Day", + "2047-10-14": "Prince Louis Rwagasore Day (Observed)", + "2047-10-21": "President Ndadaye's Day", + "2047-11-01": "All Saints' Day", + "2047-12-25": "Christmas Day", + "2048-01-01": "New Year's Day", + "2048-02-05": "Unity Day", + "2048-04-06": "President Ntaryamira Day", + "2048-05-01": "Labour Day", + "2048-05-14": "Ascension Day", + "2048-06-08": "President Nkurunziza Day", + "2048-07-01": "Independence Day", + "2048-07-12": "Eid ul Fitr* (*estimated)", + "2048-07-13": "Eid ul Fitr* (*estimated) (Observed)", + "2048-08-15": "Assumption Day", + "2048-09-19": "Eid al Adha* (*estimated)", + "2048-10-13": "Prince Louis Rwagasore Day", + "2048-10-21": "President Ndadaye's Day", + "2048-11-01": "All Saints' Day", + "2048-11-02": "All Saints' Day (Observed)", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-02-05": "Unity Day", + "2049-04-06": "President Ntaryamira Day", + "2049-05-01": "Labour Day", + "2049-05-27": "Ascension Day", + "2049-06-08": "President Nkurunziza Day", + "2049-07-01": "Eid ul Fitr* (*estimated); Independence Day", + "2049-08-15": "Assumption Day", + "2049-08-16": "Assumption Day (Observed)", + "2049-09-08": "Eid al Adha* (*estimated)", + "2049-10-13": "Prince Louis Rwagasore Day", + "2049-10-21": "President Ndadaye's Day", + "2049-11-01": "All Saints' Day", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-02-05": "Unity Day", + "2050-04-06": "President Ntaryamira Day", + "2050-05-01": "Labour Day", + "2050-05-02": "Labour Day (Observed)", + "2050-05-19": "Ascension Day", + "2050-06-08": "President Nkurunziza Day", + "2050-06-20": "Eid ul Fitr* (*estimated)", + "2050-07-01": "Independence Day", + "2050-08-15": "Assumption Day", + "2050-08-28": "Eid al Adha* (*estimated)", + "2050-08-29": "Eid al Adha* (*estimated) (Observed)", + "2050-10-13": "Prince Louis Rwagasore Day", + "2050-10-21": "President Ndadaye's Day", + "2050-11-01": "All Saints' Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day (Observed)" +} diff --git a/snapshots/countries/BN.json b/snapshots/countries/BN.json new file mode 100644 index 000000000..88b1403c5 --- /dev/null +++ b/snapshots/countries/BN.json @@ -0,0 +1,1285 @@ +{ + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (Observed)", + "1984-02-02": "Lunar New Year", + "1984-02-23": "National Day", + "1984-04-28": "Isra Mi'raj* (*estimated)", + "1984-05-31": "Armed Forces Day; First Day of Ramadan* (*estimated)", + "1984-06-16": "Anniversary of the revelation of the Quran* (*estimated)", + "1984-06-30": "Eid al-Fitr* (*estimated)", + "1984-07-01": "Eid al-Fitr* (*estimated)", + "1984-07-02": "Eid al-Fitr* (*estimated)", + "1984-07-03": "Eid al-Fitr* (*estimated) (Observed)", + "1984-07-15": "Sultan Hassanal Bolkiah's Birthday", + "1984-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "1984-09-05": "Eid al-Adha* (*estimated)", + "1984-09-26": "Islamic New Year* (*estimated)", + "1984-12-04": "Birth of the Prophet* (*estimated)", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-02-20": "Lunar New Year", + "1985-02-23": "National Day", + "1985-04-17": "Isra Mi'raj* (*estimated)", + "1985-05-20": "First Day of Ramadan* (*estimated)", + "1985-05-31": "Armed Forces Day", + "1985-06-01": "Armed Forces Day (Observed)", + "1985-06-05": "Anniversary of the revelation of the Quran* (*estimated)", + "1985-06-19": "Eid al-Fitr* (*estimated)", + "1985-06-20": "Eid al-Fitr* (*estimated)", + "1985-06-21": "Eid al-Fitr* (*estimated)", + "1985-06-22": "Eid al-Fitr* (*estimated) (Observed)", + "1985-07-15": "Sultan Hassanal Bolkiah's Birthday", + "1985-08-26": "Eid al-Adha* (*estimated)", + "1985-09-15": "Islamic New Year* (*estimated)", + "1985-09-16": "Islamic New Year* (*estimated) (Observed)", + "1985-11-24": "Birth of the Prophet* (*estimated)", + "1985-11-25": "Birth of the Prophet* (*estimated) (Observed)", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-02-09": "Lunar New Year", + "1986-02-10": "Lunar New Year (Observed)", + "1986-02-23": "National Day", + "1986-02-24": "National Day (Observed)", + "1986-04-06": "Isra Mi'raj* (*estimated)", + "1986-04-07": "Isra Mi'raj* (*estimated) (Observed)", + "1986-05-09": "First Day of Ramadan* (*estimated)", + "1986-05-10": "First Day of Ramadan* (*estimated) (Observed)", + "1986-05-25": "Anniversary of the revelation of the Quran* (*estimated)", + "1986-05-26": "Anniversary of the revelation of the Quran* (*estimated) (Observed)", + "1986-05-31": "Armed Forces Day", + "1986-06-08": "Eid al-Fitr* (*estimated)", + "1986-06-09": "Eid al-Fitr* (*estimated)", + "1986-06-10": "Eid al-Fitr* (*estimated)", + "1986-06-11": "Eid al-Fitr* (*estimated) (Observed)", + "1986-07-15": "Sultan Hassanal Bolkiah's Birthday", + "1986-08-15": "Eid al-Adha* (*estimated)", + "1986-08-16": "Eid al-Adha* (*estimated) (Observed)", + "1986-09-05": "Islamic New Year* (*estimated)", + "1986-09-06": "Islamic New Year* (*estimated) (Observed)", + "1986-11-14": "Birth of the Prophet* (*estimated)", + "1986-11-15": "Birth of the Prophet* (*estimated) (Observed)", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-01-29": "Lunar New Year", + "1987-02-23": "National Day", + "1987-03-27": "Isra Mi'raj* (*estimated)", + "1987-03-28": "Isra Mi'raj* (*estimated) (Observed)", + "1987-04-29": "First Day of Ramadan* (*estimated)", + "1987-05-15": "Anniversary of the revelation of the Quran* (*estimated)", + "1987-05-16": "Anniversary of the revelation of the Quran* (*estimated) (Observed)", + "1987-05-28": "Eid al-Fitr* (*estimated)", + "1987-05-29": "Eid al-Fitr* (*estimated)", + "1987-05-30": "Eid al-Fitr* (*estimated)", + "1987-05-31": "Armed Forces Day", + "1987-06-01": "Armed Forces Day (Observed); Eid al-Fitr* (*estimated) (Observed)", + "1987-07-15": "Sultan Hassanal Bolkiah's Birthday", + "1987-08-04": "Eid al-Adha* (*estimated)", + "1987-08-25": "Islamic New Year* (*estimated)", + "1987-11-03": "Birth of the Prophet* (*estimated)", + "1987-12-25": "Christmas Day", + "1987-12-26": "Christmas Day (Observed)", + "1988-01-01": "New Year's Day", + "1988-01-02": "New Year's Day (Observed)", + "1988-02-17": "Lunar New Year", + "1988-02-23": "National Day", + "1988-03-15": "Isra Mi'raj* (*estimated)", + "1988-04-17": "First Day of Ramadan* (*estimated)", + "1988-04-18": "First Day of Ramadan* (*estimated) (Observed)", + "1988-05-03": "Anniversary of the revelation of the Quran* (*estimated)", + "1988-05-16": "Eid al-Fitr* (*estimated)", + "1988-05-17": "Eid al-Fitr* (*estimated)", + "1988-05-18": "Eid al-Fitr* (*estimated)", + "1988-05-31": "Armed Forces Day", + "1988-07-15": "Sultan Hassanal Bolkiah's Birthday", + "1988-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "1988-07-23": "Eid al-Adha* (*estimated)", + "1988-08-13": "Islamic New Year* (*estimated)", + "1988-10-22": "Birth of the Prophet* (*estimated)", + "1988-12-25": "Christmas Day", + "1988-12-26": "Christmas Day (Observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (Observed)", + "1989-02-06": "Lunar New Year", + "1989-02-23": "National Day", + "1989-03-05": "Isra Mi'raj* (*estimated)", + "1989-03-06": "Isra Mi'raj* (*estimated) (Observed)", + "1989-04-07": "First Day of Ramadan* (*estimated)", + "1989-04-08": "First Day of Ramadan* (*estimated) (Observed)", + "1989-04-23": "Anniversary of the revelation of the Quran* (*estimated)", + "1989-04-24": "Anniversary of the revelation of the Quran* (*estimated) (Observed)", + "1989-05-06": "Eid al-Fitr* (*estimated)", + "1989-05-07": "Eid al-Fitr* (*estimated)", + "1989-05-08": "Eid al-Fitr* (*estimated)", + "1989-05-09": "Eid al-Fitr* (*estimated) (Observed)", + "1989-05-31": "Armed Forces Day", + "1989-07-13": "Eid al-Adha* (*estimated)", + "1989-07-15": "Sultan Hassanal Bolkiah's Birthday", + "1989-08-02": "Islamic New Year* (*estimated)", + "1989-10-11": "Birth of the Prophet* (*estimated)", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-01-27": "Lunar New Year", + "1990-02-22": "Isra Mi'raj* (*estimated)", + "1990-02-23": "National Day", + "1990-02-24": "National Day (Observed)", + "1990-03-27": "First Day of Ramadan* (*estimated)", + "1990-04-12": "Anniversary of the revelation of the Quran* (*estimated)", + "1990-04-26": "Eid al-Fitr* (*estimated)", + "1990-04-27": "Eid al-Fitr* (*estimated)", + "1990-04-28": "Eid al-Fitr* (*estimated)", + "1990-04-30": "Eid al-Fitr* (*estimated) (Observed)", + "1990-05-31": "Armed Forces Day", + "1990-07-02": "Eid al-Adha* (*estimated)", + "1990-07-15": "Sultan Hassanal Bolkiah's Birthday", + "1990-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "1990-07-23": "Islamic New Year* (*estimated)", + "1990-10-01": "Birth of the Prophet* (*estimated)", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-02-11": "Isra Mi'raj* (*estimated)", + "1991-02-15": "Lunar New Year", + "1991-02-16": "Lunar New Year (Observed)", + "1991-02-23": "National Day", + "1991-03-17": "First Day of Ramadan* (*estimated)", + "1991-03-18": "First Day of Ramadan* (*estimated) (Observed)", + "1991-04-02": "Anniversary of the revelation of the Quran* (*estimated)", + "1991-04-15": "Eid al-Fitr* (*estimated)", + "1991-04-16": "Eid al-Fitr* (*estimated)", + "1991-04-17": "Eid al-Fitr* (*estimated)", + "1991-05-31": "Armed Forces Day", + "1991-06-01": "Armed Forces Day (Observed)", + "1991-06-22": "Eid al-Adha* (*estimated)", + "1991-07-12": "Islamic New Year* (*estimated)", + "1991-07-13": "Islamic New Year* (*estimated) (Observed)", + "1991-07-15": "Sultan Hassanal Bolkiah's Birthday", + "1991-09-20": "Birth of the Prophet* (*estimated)", + "1991-09-21": "Birth of the Prophet* (*estimated) (Observed)", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-01-31": "Isra Mi'raj* (*estimated)", + "1992-02-01": "Isra Mi'raj* (*estimated) (Observed)", + "1992-02-04": "Lunar New Year", + "1992-02-23": "National Day", + "1992-02-24": "National Day (Observed)", + "1992-03-05": "First Day of Ramadan* (*estimated)", + "1992-03-21": "Anniversary of the revelation of the Quran* (*estimated)", + "1992-04-04": "Eid al-Fitr* (*estimated)", + "1992-04-05": "Eid al-Fitr* (*estimated)", + "1992-04-06": "Eid al-Fitr* (*estimated)", + "1992-04-07": "Eid al-Fitr* (*estimated) (Observed)", + "1992-05-31": "Armed Forces Day", + "1992-06-01": "Armed Forces Day (Observed)", + "1992-06-11": "Eid al-Adha* (*estimated)", + "1992-07-01": "Islamic New Year* (*estimated)", + "1992-07-15": "Sultan Hassanal Bolkiah's Birthday", + "1992-09-09": "Birth of the Prophet* (*estimated)", + "1992-12-25": "Christmas Day", + "1992-12-26": "Christmas Day (Observed)", + "1993-01-01": "New Year's Day", + "1993-01-02": "New Year's Day (Observed)", + "1993-01-20": "Isra Mi'raj* (*estimated)", + "1993-01-23": "Lunar New Year", + "1993-02-22": "First Day of Ramadan* (*estimated)", + "1993-02-23": "National Day", + "1993-03-10": "Anniversary of the revelation of the Quran* (*estimated)", + "1993-03-24": "Eid al-Fitr* (*estimated)", + "1993-03-25": "Eid al-Fitr* (*estimated)", + "1993-03-26": "Eid al-Fitr* (*estimated)", + "1993-03-27": "Eid al-Fitr* (*estimated) (Observed)", + "1993-05-31": "Armed Forces Day; Eid al-Adha* (*estimated)", + "1993-06-21": "Islamic New Year* (*estimated)", + "1993-07-15": "Sultan Hassanal Bolkiah's Birthday", + "1993-08-29": "Birth of the Prophet* (*estimated)", + "1993-08-30": "Birth of the Prophet* (*estimated) (Observed)", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-01-09": "Isra Mi'raj* (*estimated)", + "1994-01-10": "Isra Mi'raj* (*estimated) (Observed)", + "1994-02-10": "Lunar New Year", + "1994-02-11": "First Day of Ramadan* (*estimated)", + "1994-02-12": "First Day of Ramadan* (*estimated) (Observed)", + "1994-02-23": "National Day", + "1994-02-27": "Anniversary of the revelation of the Quran* (*estimated)", + "1994-02-28": "Anniversary of the revelation of the Quran* (*estimated) (Observed)", + "1994-03-13": "Eid al-Fitr* (*estimated)", + "1994-03-14": "Eid al-Fitr* (*estimated)", + "1994-03-15": "Eid al-Fitr* (*estimated)", + "1994-03-16": "Eid al-Fitr* (*estimated) (Observed)", + "1994-05-20": "Eid al-Adha* (*estimated)", + "1994-05-21": "Eid al-Adha* (*estimated) (Observed)", + "1994-05-31": "Armed Forces Day", + "1994-06-10": "Islamic New Year* (*estimated)", + "1994-06-11": "Islamic New Year* (*estimated) (Observed)", + "1994-07-15": "Sultan Hassanal Bolkiah's Birthday", + "1994-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "1994-08-19": "Birth of the Prophet* (*estimated)", + "1994-08-20": "Birth of the Prophet* (*estimated) (Observed)", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day (Observed)", + "1994-12-29": "Isra Mi'raj* (*estimated)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (Observed)", + "1995-01-31": "First Day of Ramadan* (*estimated); Lunar New Year", + "1995-02-16": "Anniversary of the revelation of the Quran* (*estimated)", + "1995-02-23": "National Day", + "1995-03-02": "Eid al-Fitr* (*estimated)", + "1995-03-03": "Eid al-Fitr* (*estimated)", + "1995-03-04": "Eid al-Fitr* (*estimated)", + "1995-03-06": "Eid al-Fitr* (*estimated) (Observed)", + "1995-05-09": "Eid al-Adha* (*estimated)", + "1995-05-30": "Islamic New Year* (*estimated)", + "1995-05-31": "Armed Forces Day", + "1995-07-15": "Sultan Hassanal Bolkiah's Birthday", + "1995-08-08": "Birth of the Prophet* (*estimated)", + "1995-12-19": "Isra Mi'raj* (*estimated)", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-01-21": "First Day of Ramadan* (*estimated)", + "1996-01-22": "First Day of Ramadan* (*estimated) (Observed)", + "1996-02-06": "Anniversary of the revelation of the Quran* (*estimated)", + "1996-02-19": "Eid al-Fitr* (*estimated); Lunar New Year", + "1996-02-20": "Eid al-Fitr* (*estimated)", + "1996-02-21": "Eid al-Fitr* (*estimated)", + "1996-02-23": "National Day", + "1996-02-24": "National Day (Observed)", + "1996-04-27": "Eid al-Adha* (*estimated)", + "1996-05-18": "Islamic New Year* (*estimated)", + "1996-05-31": "Armed Forces Day", + "1996-06-01": "Armed Forces Day (Observed)", + "1996-07-15": "Sultan Hassanal Bolkiah's Birthday", + "1996-07-27": "Birth of the Prophet* (*estimated)", + "1996-12-08": "Isra Mi'raj* (*estimated)", + "1996-12-09": "Isra Mi'raj* (*estimated) (Observed)", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-01-10": "First Day of Ramadan* (*estimated)", + "1997-01-11": "First Day of Ramadan* (*estimated) (Observed)", + "1997-01-26": "Anniversary of the revelation of the Quran* (*estimated)", + "1997-01-27": "Anniversary of the revelation of the Quran* (*estimated) (Observed)", + "1997-02-07": "Lunar New Year", + "1997-02-08": "Eid al-Fitr* (*estimated); Lunar New Year (Observed)", + "1997-02-09": "Eid al-Fitr* (*estimated)", + "1997-02-10": "Eid al-Fitr* (*estimated)", + "1997-02-11": "Eid al-Fitr* (*estimated) (Observed)", + "1997-02-23": "National Day", + "1997-02-24": "National Day (Observed)", + "1997-04-17": "Eid al-Adha* (*estimated)", + "1997-05-07": "Islamic New Year* (*estimated)", + "1997-05-31": "Armed Forces Day", + "1997-07-15": "Sultan Hassanal Bolkiah's Birthday", + "1997-07-16": "Birth of the Prophet* (*estimated)", + "1997-11-27": "Isra Mi'raj* (*estimated)", + "1997-12-25": "Christmas Day", + "1997-12-30": "First Day of Ramadan* (*estimated)", + "1998-01-01": "New Year's Day", + "1998-01-15": "Anniversary of the revelation of the Quran* (*estimated)", + "1998-01-28": "Lunar New Year", + "1998-01-29": "Eid al-Fitr* (*estimated)", + "1998-01-30": "Eid al-Fitr* (*estimated)", + "1998-01-31": "Eid al-Fitr* (*estimated)", + "1998-02-02": "Eid al-Fitr* (*estimated) (Observed)", + "1998-02-23": "National Day", + "1998-04-07": "Eid al-Adha* (*estimated)", + "1998-04-27": "Islamic New Year* (*estimated)", + "1998-05-31": "Armed Forces Day", + "1998-06-01": "Armed Forces Day (Observed)", + "1998-07-06": "Birth of the Prophet* (*estimated)", + "1998-07-15": "Sultan Hassanal Bolkiah's Birthday", + "1998-11-16": "Isra Mi'raj* (*estimated)", + "1998-12-19": "First Day of Ramadan* (*estimated)", + "1998-12-25": "Christmas Day", + "1998-12-26": "Christmas Day (Observed)", + "1999-01-01": "New Year's Day", + "1999-01-02": "New Year's Day (Observed)", + "1999-01-04": "Anniversary of the revelation of the Quran* (*estimated)", + "1999-01-18": "Eid al-Fitr* (*estimated)", + "1999-01-19": "Eid al-Fitr* (*estimated)", + "1999-01-20": "Eid al-Fitr* (*estimated)", + "1999-02-16": "Lunar New Year", + "1999-02-23": "National Day", + "1999-03-27": "Eid al-Adha* (*estimated)", + "1999-04-17": "Islamic New Year* (*estimated)", + "1999-05-31": "Armed Forces Day", + "1999-06-26": "Birth of the Prophet* (*estimated)", + "1999-07-15": "Sultan Hassanal Bolkiah's Birthday", + "1999-11-05": "Isra Mi'raj* (*estimated)", + "1999-11-06": "Isra Mi'raj* (*estimated) (Observed)", + "1999-12-09": "First Day of Ramadan* (*estimated)", + "1999-12-25": "Anniversary of the revelation of the Quran* (*estimated); Christmas Day", + "2000-01-01": "New Year's Day", + "2000-01-08": "Eid al-Fitr", + "2000-01-09": "Eid al-Fitr", + "2000-01-10": "Eid al-Fitr", + "2000-01-11": "Eid al-Fitr (Observed)", + "2000-02-05": "Lunar New Year", + "2000-02-23": "National Day", + "2000-03-16": "Eid al-Adha", + "2000-04-06": "Islamic New Year", + "2000-05-31": "Armed Forces Day", + "2000-06-15": "Birth of the Prophet", + "2000-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2000-10-26": "Isra Mi'raj", + "2000-11-28": "First Day of Ramadan", + "2000-12-14": "Anniversary of the revelation of the Quran", + "2000-12-25": "Christmas Day", + "2000-12-28": "Eid al-Fitr", + "2000-12-29": "Eid al-Fitr", + "2000-12-30": "Eid al-Fitr", + "2001-01-01": "New Year's Day", + "2001-01-24": "Lunar New Year", + "2001-02-23": "National Day", + "2001-02-24": "National Day (Observed)", + "2001-03-06": "Eid al-Adha", + "2001-03-26": "Islamic New Year", + "2001-05-31": "Armed Forces Day", + "2001-06-04": "Birth of the Prophet", + "2001-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2001-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "2001-10-15": "Isra Mi'raj", + "2001-11-17": "First Day of Ramadan", + "2001-12-03": "Anniversary of the revelation of the Quran", + "2001-12-17": "Eid al-Fitr", + "2001-12-18": "Eid al-Fitr", + "2001-12-19": "Eid al-Fitr", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-02-12": "Lunar New Year", + "2002-02-23": "Eid al-Adha; National Day", + "2002-03-15": "Islamic New Year", + "2002-03-16": "Islamic New Year (Observed)", + "2002-05-24": "Birth of the Prophet", + "2002-05-25": "Birth of the Prophet (Observed)", + "2002-05-31": "Armed Forces Day", + "2002-06-01": "Armed Forces Day (Observed)", + "2002-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2002-10-04": "Isra Mi'raj", + "2002-10-05": "Isra Mi'raj (Observed)", + "2002-11-06": "First Day of Ramadan", + "2002-11-22": "Anniversary of the revelation of the Quran", + "2002-11-23": "Anniversary of the revelation of the Quran (Observed)", + "2002-12-06": "Eid al-Fitr", + "2002-12-07": "Eid al-Fitr", + "2002-12-08": "Eid al-Fitr", + "2002-12-09": "Eid al-Fitr (Observed)", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-02-01": "Lunar New Year", + "2003-02-12": "Eid al-Adha", + "2003-02-23": "National Day", + "2003-02-24": "National Day (Observed)", + "2003-03-05": "Islamic New Year", + "2003-05-14": "Birth of the Prophet", + "2003-05-31": "Armed Forces Day", + "2003-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2003-09-24": "Isra Mi'raj", + "2003-10-27": "First Day of Ramadan", + "2003-11-12": "Anniversary of the revelation of the Quran", + "2003-11-26": "Eid al-Fitr", + "2003-11-27": "Eid al-Fitr", + "2003-11-28": "Eid al-Fitr", + "2003-11-29": "Eid al-Fitr (Observed)", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-01-22": "Lunar New Year", + "2004-02-02": "Eid al-Adha", + "2004-02-22": "Islamic New Year", + "2004-02-23": "Islamic New Year (Observed); National Day", + "2004-05-02": "Birth of the Prophet", + "2004-05-03": "Birth of the Prophet (Observed)", + "2004-05-31": "Armed Forces Day", + "2004-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2004-09-12": "Isra Mi'raj", + "2004-09-13": "Isra Mi'raj (Observed)", + "2004-10-16": "First Day of Ramadan", + "2004-11-01": "Anniversary of the revelation of the Quran", + "2004-11-14": "Eid al-Fitr", + "2004-11-15": "Eid al-Fitr", + "2004-11-16": "Eid al-Fitr", + "2004-11-17": "Eid al-Fitr (Observed)", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-01-21": "Eid al-Adha", + "2005-01-22": "Eid al-Adha (Observed)", + "2005-02-09": "Lunar New Year", + "2005-02-10": "Islamic New Year", + "2005-02-23": "National Day", + "2005-04-21": "Birth of the Prophet", + "2005-05-31": "Armed Forces Day", + "2005-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2005-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "2005-09-01": "Isra Mi'raj", + "2005-10-05": "First Day of Ramadan", + "2005-10-21": "Anniversary of the revelation of the Quran", + "2005-10-22": "Anniversary of the revelation of the Quran (Observed)", + "2005-11-03": "Eid al-Fitr", + "2005-11-04": "Eid al-Fitr", + "2005-11-05": "Eid al-Fitr", + "2005-11-07": "Eid al-Fitr (Observed)", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day (Observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (Observed)", + "2006-01-10": "Eid al-Adha", + "2006-01-29": "Lunar New Year", + "2006-01-30": "Lunar New Year (Observed)", + "2006-01-31": "Islamic New Year", + "2006-02-23": "National Day", + "2006-04-11": "Birth of the Prophet", + "2006-05-31": "Armed Forces Day", + "2006-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2006-08-22": "Isra Mi'raj", + "2006-09-24": "First Day of Ramadan", + "2006-09-25": "First Day of Ramadan (Observed)", + "2006-10-10": "Anniversary of the revelation of the Quran", + "2006-10-24": "Eid al-Fitr", + "2006-10-25": "Eid al-Fitr", + "2006-10-26": "Eid al-Fitr", + "2006-12-25": "Christmas Day", + "2006-12-31": "Eid al-Adha", + "2007-01-01": "New Year's Day", + "2007-01-20": "Islamic New Year", + "2007-02-18": "Lunar New Year", + "2007-02-19": "Lunar New Year (Observed)", + "2007-02-23": "National Day", + "2007-02-24": "National Day (Observed)", + "2007-03-31": "Birth of the Prophet", + "2007-05-31": "Armed Forces Day", + "2007-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2007-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "2007-08-11": "Isra Mi'raj", + "2007-09-13": "First Day of Ramadan", + "2007-09-29": "Anniversary of the revelation of the Quran", + "2007-10-13": "Eid al-Fitr", + "2007-10-14": "Eid al-Fitr", + "2007-10-15": "Eid al-Fitr", + "2007-10-16": "Eid al-Fitr (Observed)", + "2007-12-20": "Eid al-Adha", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-01-10": "Islamic New Year", + "2008-02-07": "Lunar New Year", + "2008-02-23": "National Day", + "2008-03-20": "Birth of the Prophet", + "2008-05-31": "Armed Forces Day", + "2008-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2008-07-31": "Isra Mi'raj", + "2008-09-02": "First Day of Ramadan", + "2008-09-18": "Anniversary of the revelation of the Quran", + "2008-10-01": "Eid al-Fitr", + "2008-10-02": "Eid al-Fitr", + "2008-10-03": "Eid al-Fitr", + "2008-10-04": "Eid al-Fitr (Observed)", + "2008-12-09": "Eid al-Adha", + "2008-12-25": "Christmas Day", + "2008-12-29": "Islamic New Year", + "2009-01-01": "New Year's Day", + "2009-01-26": "Lunar New Year", + "2009-02-23": "National Day", + "2009-03-09": "Birth of the Prophet", + "2009-05-31": "Armed Forces Day", + "2009-06-01": "Armed Forces Day (Observed)", + "2009-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2009-07-20": "Isra Mi'raj", + "2009-08-22": "First Day of Ramadan", + "2009-09-07": "Anniversary of the revelation of the Quran", + "2009-09-20": "Eid al-Fitr", + "2009-09-21": "Eid al-Fitr", + "2009-09-22": "Eid al-Fitr", + "2009-09-23": "Eid al-Fitr (Observed)", + "2009-11-28": "Eid al-Adha", + "2009-12-18": "Islamic New Year", + "2009-12-19": "Islamic New Year (Observed)", + "2009-12-25": "Christmas Day", + "2009-12-26": "Christmas Day (Observed)", + "2010-01-01": "New Year's Day", + "2010-01-02": "New Year's Day (Observed)", + "2010-02-14": "Lunar New Year", + "2010-02-15": "Lunar New Year (Observed)", + "2010-02-23": "National Day", + "2010-02-26": "Birth of the Prophet", + "2010-02-27": "Birth of the Prophet (Observed)", + "2010-05-31": "Armed Forces Day", + "2010-07-09": "Isra Mi'raj", + "2010-07-10": "Isra Mi'raj (Observed)", + "2010-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2010-08-11": "First Day of Ramadan", + "2010-08-27": "Anniversary of the revelation of the Quran", + "2010-08-28": "Anniversary of the revelation of the Quran (Observed)", + "2010-09-10": "Eid al-Fitr", + "2010-09-11": "Eid al-Fitr", + "2010-09-12": "Eid al-Fitr", + "2010-09-13": "Eid al-Fitr (Observed)", + "2010-11-17": "Eid al-Adha", + "2010-12-08": "Islamic New Year", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-02-03": "Lunar New Year", + "2011-02-16": "Birth of the Prophet", + "2011-02-23": "National Day", + "2011-05-31": "Armed Forces Day", + "2011-06-29": "Isra Mi'raj", + "2011-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2011-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "2011-08-01": "First Day of Ramadan", + "2011-08-17": "Anniversary of the revelation of the Quran", + "2011-08-31": "Eid al-Fitr", + "2011-09-01": "Eid al-Fitr", + "2011-09-02": "Eid al-Fitr", + "2011-09-03": "Eid al-Fitr (Observed)", + "2011-11-07": "Eid al-Adha", + "2011-11-27": "Islamic New Year", + "2011-11-28": "Islamic New Year (Observed)", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day (Observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (Observed)", + "2012-01-23": "Lunar New Year", + "2012-02-05": "Birth of the Prophet", + "2012-02-06": "Birth of the Prophet (Observed)", + "2012-02-23": "National Day", + "2012-05-31": "Armed Forces Day", + "2012-06-17": "Isra Mi'raj", + "2012-06-18": "Isra Mi'raj (Observed)", + "2012-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2012-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "2012-07-20": "First Day of Ramadan", + "2012-07-21": "First Day of Ramadan (Observed)", + "2012-08-05": "Anniversary of the revelation of the Quran", + "2012-08-06": "Anniversary of the revelation of the Quran (Observed)", + "2012-08-19": "Eid al-Fitr", + "2012-08-20": "Eid al-Fitr", + "2012-08-21": "Eid al-Fitr", + "2012-08-22": "Eid al-Fitr (Observed)", + "2012-10-26": "Eid al-Adha", + "2012-10-27": "Eid al-Adha (Observed)", + "2012-11-15": "Islamic New Year", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-01-24": "Birth of the Prophet", + "2013-02-10": "Lunar New Year", + "2013-02-11": "Lunar New Year (Observed)", + "2013-02-23": "National Day", + "2013-05-31": "Armed Forces Day", + "2013-06-01": "Armed Forces Day (Observed)", + "2013-06-06": "Isra Mi'raj", + "2013-07-09": "First Day of Ramadan", + "2013-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2013-07-25": "Anniversary of the revelation of the Quran", + "2013-08-08": "Eid al-Fitr", + "2013-08-09": "Eid al-Fitr", + "2013-08-10": "Eid al-Fitr", + "2013-08-12": "Eid al-Fitr (Observed)", + "2013-10-15": "Eid al-Adha", + "2013-11-05": "Islamic New Year", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-14": "Birth of the Prophet", + "2014-01-31": "Lunar New Year", + "2014-02-01": "Lunar New Year (Observed)", + "2014-02-23": "National Day", + "2014-02-24": "National Day (Observed)", + "2014-05-27": "Isra Mi'raj", + "2014-05-31": "Armed Forces Day", + "2014-06-29": "First Day of Ramadan", + "2014-06-30": "First Day of Ramadan (Observed)", + "2014-07-15": "Anniversary of the revelation of the Quran; Sultan Hassanal Bolkiah's Birthday", + "2014-07-29": "Eid al-Fitr", + "2014-07-30": "Eid al-Fitr", + "2014-07-31": "Eid al-Fitr", + "2014-10-05": "Eid al-Adha", + "2014-10-06": "Eid al-Adha (Observed)", + "2014-10-25": "Islamic New Year", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-01-03": "Birth of the Prophet", + "2015-02-19": "Lunar New Year", + "2015-02-23": "National Day", + "2015-05-16": "Isra Mi'raj", + "2015-05-31": "Armed Forces Day", + "2015-06-01": "Armed Forces Day (Observed)", + "2015-06-18": "First Day of Ramadan", + "2015-07-04": "Anniversary of the revelation of the Quran", + "2015-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2015-07-18": "Eid al-Fitr", + "2015-07-19": "Eid al-Fitr", + "2015-07-20": "Eid al-Fitr", + "2015-07-21": "Eid al-Fitr (Observed)", + "2015-09-24": "Eid al-Adha", + "2015-10-15": "Islamic New Year", + "2015-12-24": "Birth of the Prophet", + "2015-12-25": "Christmas Day", + "2015-12-26": "Christmas Day (Observed)", + "2016-01-01": "New Year's Day", + "2016-01-02": "New Year's Day (Observed)", + "2016-02-08": "Lunar New Year", + "2016-02-23": "National Day", + "2016-05-05": "Isra Mi'raj", + "2016-05-31": "Armed Forces Day", + "2016-06-07": "First Day of Ramadan", + "2016-06-23": "Anniversary of the revelation of the Quran", + "2016-07-07": "Eid al-Fitr", + "2016-07-08": "Eid al-Fitr", + "2016-07-09": "Eid al-Fitr", + "2016-07-11": "Eid al-Fitr (Observed)", + "2016-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2016-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "2016-09-13": "Eid al-Adha", + "2016-10-03": "Islamic New Year", + "2016-12-12": "Birth of the Prophet", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day (Observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (Observed)", + "2017-01-28": "Lunar New Year", + "2017-02-23": "National Day", + "2017-04-24": "Isra Mi'raj", + "2017-05-27": "First Day of Ramadan", + "2017-05-31": "Armed Forces Day", + "2017-06-12": "Anniversary of the revelation of the Quran", + "2017-06-26": "Eid al-Fitr", + "2017-06-27": "Eid al-Fitr", + "2017-06-28": "Eid al-Fitr", + "2017-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2017-09-02": "Eid al-Adha", + "2017-09-22": "Islamic New Year", + "2017-09-23": "Islamic New Year (Observed)", + "2017-10-05": "Sultan Hassanal Bolkiah's Golden Jubilee", + "2017-12-01": "Birth of the Prophet", + "2017-12-02": "Birth of the Prophet (Observed)", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-02-16": "Lunar New Year", + "2018-02-17": "Lunar New Year (Observed)", + "2018-02-23": "National Day", + "2018-02-24": "National Day (Observed)", + "2018-04-14": "Isra Mi'raj", + "2018-05-16": "First Day of Ramadan", + "2018-05-31": "Armed Forces Day", + "2018-06-02": "Anniversary of the revelation of the Quran", + "2018-06-15": "Eid al-Fitr", + "2018-06-16": "Eid al-Fitr", + "2018-06-17": "Eid al-Fitr", + "2018-06-18": "Eid al-Fitr (Observed)", + "2018-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2018-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "2018-08-22": "Eid al-Adha", + "2018-09-12": "Islamic New Year", + "2018-11-21": "Birth of the Prophet", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-02-05": "Lunar New Year", + "2019-02-23": "National Day", + "2019-04-03": "Isra Mi'raj", + "2019-05-06": "First Day of Ramadan", + "2019-05-23": "Anniversary of the revelation of the Quran", + "2019-05-31": "Armed Forces Day", + "2019-06-01": "Armed Forces Day (Observed)", + "2019-06-05": "Eid al-Fitr", + "2019-06-06": "Eid al-Fitr", + "2019-06-07": "Eid al-Fitr", + "2019-06-08": "Eid al-Fitr (Observed)", + "2019-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2019-08-11": "Eid al-Adha", + "2019-08-12": "Eid al-Adha (Observed)", + "2019-09-01": "Islamic New Year", + "2019-09-02": "Islamic New Year (Observed)", + "2019-11-09": "Birth of the Prophet", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-01-25": "Lunar New Year", + "2020-02-23": "National Day", + "2020-02-24": "National Day (Observed)", + "2020-03-22": "Isra Mi'raj", + "2020-03-23": "Isra Mi'raj (Observed)", + "2020-04-25": "First Day of Ramadan", + "2020-05-10": "Anniversary of the revelation of the Quran", + "2020-05-11": "Anniversary of the revelation of the Quran (Observed)", + "2020-05-24": "Eid al-Fitr", + "2020-05-25": "Eid al-Fitr", + "2020-05-26": "Eid al-Fitr", + "2020-05-27": "Eid al-Fitr (Observed)", + "2020-05-31": "Armed Forces Day", + "2020-06-01": "Armed Forces Day (Observed)", + "2020-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2020-08-01": "Eid al-Adha", + "2020-08-20": "Islamic New Year", + "2020-10-29": "Birth of the Prophet", + "2020-12-25": "Christmas Day", + "2020-12-26": "Christmas Day (Observed)", + "2021-01-01": "New Year's Day", + "2021-01-02": "New Year's Day (Observed)", + "2021-02-12": "Lunar New Year", + "2021-02-13": "Lunar New Year (Observed)", + "2021-02-23": "National Day", + "2021-03-11": "Isra Mi'raj", + "2021-04-13": "First Day of Ramadan", + "2021-04-29": "Anniversary of the revelation of the Quran", + "2021-05-13": "Eid al-Fitr", + "2021-05-14": "Eid al-Fitr", + "2021-05-15": "Eid al-Fitr", + "2021-05-17": "Eid al-Fitr (Observed)", + "2021-05-31": "Armed Forces Day", + "2021-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2021-07-20": "Eid al-Adha", + "2021-08-10": "Islamic New Year", + "2021-10-19": "Birth of the Prophet", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-02-01": "Lunar New Year", + "2022-02-23": "National Day", + "2022-03-01": "Isra Mi'raj", + "2022-04-03": "First Day of Ramadan", + "2022-04-04": "First Day of Ramadan (Observed)", + "2022-04-19": "Anniversary of the revelation of the Quran", + "2022-05-03": "Eid al-Fitr", + "2022-05-04": "Eid al-Fitr", + "2022-05-05": "Eid al-Fitr", + "2022-05-31": "Armed Forces Day", + "2022-07-10": "Eid al-Adha", + "2022-07-11": "Eid al-Adha (Observed)", + "2022-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2022-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "2022-07-30": "Islamic New Year", + "2022-10-08": "Birth of the Prophet", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day (Observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (Observed)", + "2023-01-22": "Lunar New Year", + "2023-01-23": "Lunar New Year (Observed)", + "2023-02-18": "Isra Mi'raj", + "2023-02-23": "National Day", + "2023-03-23": "First Day of Ramadan", + "2023-04-08": "Anniversary of the revelation of the Quran", + "2023-04-22": "Eid al-Fitr", + "2023-04-23": "Eid al-Fitr", + "2023-04-24": "Eid al-Fitr", + "2023-04-25": "Eid al-Fitr (Observed)", + "2023-05-31": "Armed Forces Day", + "2023-06-29": "Eid al-Adha", + "2023-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2023-07-19": "Islamic New Year", + "2023-09-28": "Birth of the Prophet", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-02-08": "Isra Mi'raj* (*estimated)", + "2024-02-10": "Lunar New Year", + "2024-02-23": "National Day", + "2024-02-24": "National Day (Observed)", + "2024-03-11": "First Day of Ramadan* (*estimated)", + "2024-03-27": "Anniversary of the revelation of the Quran* (*estimated)", + "2024-04-10": "Eid al-Fitr* (*estimated)", + "2024-04-11": "Eid al-Fitr* (*estimated)", + "2024-04-12": "Eid al-Fitr* (*estimated)", + "2024-04-13": "Eid al-Fitr* (*estimated) (Observed)", + "2024-05-31": "Armed Forces Day", + "2024-06-01": "Armed Forces Day (Observed)", + "2024-06-16": "Eid al-Adha* (*estimated)", + "2024-06-17": "Eid al-Adha* (*estimated) (Observed)", + "2024-07-07": "Islamic New Year* (*estimated)", + "2024-07-08": "Islamic New Year* (*estimated) (Observed)", + "2024-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2024-09-15": "Birth of the Prophet* (*estimated)", + "2024-09-16": "Birth of the Prophet* (*estimated) (Observed)", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-01-27": "Isra Mi'raj* (*estimated)", + "2025-01-29": "Lunar New Year", + "2025-02-23": "National Day", + "2025-02-24": "National Day (Observed)", + "2025-03-01": "First Day of Ramadan* (*estimated)", + "2025-03-17": "Anniversary of the revelation of the Quran* (*estimated)", + "2025-03-30": "Eid al-Fitr* (*estimated)", + "2025-03-31": "Eid al-Fitr* (*estimated)", + "2025-04-01": "Eid al-Fitr* (*estimated)", + "2025-04-02": "Eid al-Fitr* (*estimated) (Observed)", + "2025-05-31": "Armed Forces Day", + "2025-06-06": "Eid al-Adha* (*estimated)", + "2025-06-07": "Eid al-Adha* (*estimated) (Observed)", + "2025-06-26": "Islamic New Year* (*estimated)", + "2025-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2025-09-04": "Birth of the Prophet* (*estimated)", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-01-16": "Isra Mi'raj* (*estimated)", + "2026-01-17": "Isra Mi'raj* (*estimated) (Observed)", + "2026-02-17": "Lunar New Year", + "2026-02-18": "First Day of Ramadan* (*estimated)", + "2026-02-23": "National Day", + "2026-03-06": "Anniversary of the revelation of the Quran* (*estimated)", + "2026-03-07": "Anniversary of the revelation of the Quran* (*estimated) (Observed)", + "2026-03-20": "Eid al-Fitr* (*estimated)", + "2026-03-21": "Eid al-Fitr* (*estimated)", + "2026-03-22": "Eid al-Fitr* (*estimated)", + "2026-03-23": "Eid al-Fitr* (*estimated) (Observed)", + "2026-05-27": "Eid al-Adha* (*estimated)", + "2026-05-31": "Armed Forces Day", + "2026-06-01": "Armed Forces Day (Observed)", + "2026-06-16": "Islamic New Year* (*estimated)", + "2026-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2026-08-25": "Birth of the Prophet* (*estimated)", + "2026-12-25": "Christmas Day", + "2026-12-26": "Christmas Day (Observed)", + "2027-01-01": "New Year's Day", + "2027-01-02": "New Year's Day (Observed)", + "2027-01-05": "Isra Mi'raj* (*estimated)", + "2027-02-06": "Lunar New Year", + "2027-02-08": "First Day of Ramadan* (*estimated)", + "2027-02-23": "National Day", + "2027-02-24": "Anniversary of the revelation of the Quran* (*estimated)", + "2027-03-09": "Eid al-Fitr* (*estimated)", + "2027-03-10": "Eid al-Fitr* (*estimated)", + "2027-03-11": "Eid al-Fitr* (*estimated)", + "2027-05-16": "Eid al-Adha* (*estimated)", + "2027-05-17": "Eid al-Adha* (*estimated) (Observed)", + "2027-05-31": "Armed Forces Day", + "2027-06-06": "Islamic New Year* (*estimated)", + "2027-06-07": "Islamic New Year* (*estimated) (Observed)", + "2027-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2027-08-14": "Birth of the Prophet* (*estimated)", + "2027-12-25": "Christmas Day; Isra Mi'raj* (*estimated)", + "2028-01-01": "New Year's Day", + "2028-01-26": "Lunar New Year", + "2028-01-28": "First Day of Ramadan* (*estimated)", + "2028-01-29": "First Day of Ramadan* (*estimated) (Observed)", + "2028-02-13": "Anniversary of the revelation of the Quran* (*estimated)", + "2028-02-14": "Anniversary of the revelation of the Quran* (*estimated) (Observed)", + "2028-02-23": "National Day", + "2028-02-26": "Eid al-Fitr* (*estimated)", + "2028-02-27": "Eid al-Fitr* (*estimated)", + "2028-02-28": "Eid al-Fitr* (*estimated)", + "2028-02-29": "Eid al-Fitr* (*estimated) (Observed)", + "2028-05-05": "Eid al-Adha* (*estimated)", + "2028-05-06": "Eid al-Adha* (*estimated) (Observed)", + "2028-05-25": "Islamic New Year* (*estimated)", + "2028-05-31": "Armed Forces Day", + "2028-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2028-08-03": "Birth of the Prophet* (*estimated)", + "2028-12-14": "Isra Mi'raj* (*estimated)", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-01-16": "First Day of Ramadan* (*estimated)", + "2029-02-01": "Anniversary of the revelation of the Quran* (*estimated)", + "2029-02-13": "Lunar New Year", + "2029-02-14": "Eid al-Fitr* (*estimated)", + "2029-02-15": "Eid al-Fitr* (*estimated)", + "2029-02-16": "Eid al-Fitr* (*estimated)", + "2029-02-17": "Eid al-Fitr* (*estimated) (Observed)", + "2029-02-23": "National Day", + "2029-02-24": "National Day (Observed)", + "2029-04-24": "Eid al-Adha* (*estimated)", + "2029-05-14": "Islamic New Year* (*estimated)", + "2029-05-31": "Armed Forces Day", + "2029-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2029-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "2029-07-24": "Birth of the Prophet* (*estimated)", + "2029-12-03": "Isra Mi'raj* (*estimated)", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-01-05": "First Day of Ramadan* (*estimated)", + "2030-01-21": "Anniversary of the revelation of the Quran* (*estimated)", + "2030-02-03": "Lunar New Year", + "2030-02-04": "Eid al-Fitr* (*estimated); Lunar New Year (Observed)", + "2030-02-05": "Eid al-Fitr* (*estimated)", + "2030-02-06": "Eid al-Fitr* (*estimated)", + "2030-02-23": "National Day", + "2030-04-13": "Eid al-Adha* (*estimated)", + "2030-05-03": "Islamic New Year* (*estimated)", + "2030-05-04": "Islamic New Year* (*estimated) (Observed)", + "2030-05-31": "Armed Forces Day", + "2030-06-01": "Armed Forces Day (Observed)", + "2030-07-13": "Birth of the Prophet* (*estimated)", + "2030-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2030-11-23": "Isra Mi'raj* (*estimated)", + "2030-12-25": "Christmas Day", + "2030-12-26": "First Day of Ramadan* (*estimated)", + "2031-01-01": "New Year's Day", + "2031-01-11": "Anniversary of the revelation of the Quran* (*estimated)", + "2031-01-23": "Lunar New Year", + "2031-01-24": "Eid al-Fitr* (*estimated)", + "2031-01-25": "Eid al-Fitr* (*estimated)", + "2031-01-26": "Eid al-Fitr* (*estimated)", + "2031-01-27": "Eid al-Fitr* (*estimated) (Observed)", + "2031-02-23": "National Day", + "2031-02-24": "National Day (Observed)", + "2031-04-02": "Eid al-Adha* (*estimated)", + "2031-04-23": "Islamic New Year* (*estimated)", + "2031-05-31": "Armed Forces Day", + "2031-07-02": "Birth of the Prophet* (*estimated)", + "2031-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2031-11-12": "Isra Mi'raj* (*estimated)", + "2031-12-15": "First Day of Ramadan* (*estimated)", + "2031-12-25": "Christmas Day", + "2031-12-31": "Anniversary of the revelation of the Quran* (*estimated)", + "2032-01-01": "New Year's Day", + "2032-01-14": "Eid al-Fitr* (*estimated)", + "2032-01-15": "Eid al-Fitr* (*estimated)", + "2032-01-16": "Eid al-Fitr* (*estimated)", + "2032-01-17": "Eid al-Fitr* (*estimated) (Observed)", + "2032-02-11": "Lunar New Year", + "2032-02-23": "National Day", + "2032-03-22": "Eid al-Adha* (*estimated)", + "2032-04-11": "Islamic New Year* (*estimated)", + "2032-04-12": "Islamic New Year* (*estimated) (Observed)", + "2032-05-31": "Armed Forces Day", + "2032-06-20": "Birth of the Prophet* (*estimated)", + "2032-06-21": "Birth of the Prophet* (*estimated) (Observed)", + "2032-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2032-11-01": "Isra Mi'raj* (*estimated)", + "2032-12-04": "First Day of Ramadan* (*estimated)", + "2032-12-20": "Anniversary of the revelation of the Quran* (*estimated)", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "Eid al-Fitr* (*estimated)", + "2033-01-03": "Eid al-Fitr* (*estimated)", + "2033-01-04": "Eid al-Fitr* (*estimated)", + "2033-01-05": "Eid al-Fitr* (*estimated) (Observed)", + "2033-01-31": "Lunar New Year", + "2033-02-23": "National Day", + "2033-03-11": "Eid al-Adha* (*estimated)", + "2033-03-12": "Eid al-Adha* (*estimated) (Observed)", + "2033-04-01": "Islamic New Year* (*estimated)", + "2033-04-02": "Islamic New Year* (*estimated) (Observed)", + "2033-05-31": "Armed Forces Day", + "2033-06-09": "Birth of the Prophet* (*estimated)", + "2033-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2033-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "2033-10-21": "Isra Mi'raj* (*estimated)", + "2033-10-22": "Isra Mi'raj* (*estimated) (Observed)", + "2033-11-23": "First Day of Ramadan* (*estimated)", + "2033-12-09": "Anniversary of the revelation of the Quran* (*estimated)", + "2033-12-10": "Anniversary of the revelation of the Quran* (*estimated) (Observed)", + "2033-12-23": "Eid al-Fitr* (*estimated)", + "2033-12-24": "Eid al-Fitr* (*estimated)", + "2033-12-25": "Christmas Day; Eid al-Fitr* (*estimated)", + "2033-12-26": "Christmas Day (Observed); Eid al-Fitr* (*estimated) (Observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-02-19": "Lunar New Year", + "2034-02-20": "Lunar New Year (Observed)", + "2034-02-23": "National Day", + "2034-03-01": "Eid al-Adha* (*estimated)", + "2034-03-21": "Islamic New Year* (*estimated)", + "2034-05-30": "Birth of the Prophet* (*estimated)", + "2034-05-31": "Armed Forces Day", + "2034-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2034-10-10": "Isra Mi'raj* (*estimated)", + "2034-11-12": "First Day of Ramadan* (*estimated)", + "2034-11-13": "First Day of Ramadan* (*estimated) (Observed)", + "2034-11-28": "Anniversary of the revelation of the Quran* (*estimated)", + "2034-12-12": "Eid al-Fitr* (*estimated)", + "2034-12-13": "Eid al-Fitr* (*estimated)", + "2034-12-14": "Eid al-Fitr* (*estimated)", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-02-08": "Lunar New Year", + "2035-02-18": "Eid al-Adha* (*estimated)", + "2035-02-19": "Eid al-Adha* (*estimated) (Observed)", + "2035-02-23": "National Day", + "2035-02-24": "National Day (Observed)", + "2035-03-11": "Islamic New Year* (*estimated)", + "2035-03-12": "Islamic New Year* (*estimated) (Observed)", + "2035-05-20": "Birth of the Prophet* (*estimated)", + "2035-05-21": "Birth of the Prophet* (*estimated) (Observed)", + "2035-05-31": "Armed Forces Day", + "2035-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2035-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "2035-09-29": "Isra Mi'raj* (*estimated)", + "2035-11-01": "First Day of Ramadan* (*estimated)", + "2035-11-17": "Anniversary of the revelation of the Quran* (*estimated)", + "2035-12-01": "Eid al-Fitr* (*estimated)", + "2035-12-02": "Eid al-Fitr* (*estimated)", + "2035-12-03": "Eid al-Fitr* (*estimated)", + "2035-12-04": "Eid al-Fitr* (*estimated) (Observed)", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-01-28": "Lunar New Year", + "2036-02-07": "Eid al-Adha* (*estimated)", + "2036-02-23": "National Day", + "2036-02-28": "Islamic New Year* (*estimated)", + "2036-05-08": "Birth of the Prophet* (*estimated)", + "2036-05-31": "Armed Forces Day", + "2036-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2036-09-18": "Isra Mi'raj* (*estimated)", + "2036-10-20": "First Day of Ramadan* (*estimated)", + "2036-11-05": "Anniversary of the revelation of the Quran* (*estimated)", + "2036-11-19": "Eid al-Fitr* (*estimated)", + "2036-11-20": "Eid al-Fitr* (*estimated)", + "2036-11-21": "Eid al-Fitr* (*estimated)", + "2036-11-22": "Eid al-Fitr* (*estimated) (Observed)", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-26": "Eid al-Adha* (*estimated)", + "2037-02-15": "Lunar New Year", + "2037-02-16": "Islamic New Year* (*estimated); Lunar New Year (Observed)", + "2037-02-23": "National Day", + "2037-04-28": "Birth of the Prophet* (*estimated)", + "2037-05-31": "Armed Forces Day", + "2037-06-01": "Armed Forces Day (Observed)", + "2037-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2037-09-07": "Isra Mi'raj* (*estimated)", + "2037-10-10": "First Day of Ramadan* (*estimated)", + "2037-10-26": "Anniversary of the revelation of the Quran* (*estimated)", + "2037-11-08": "Eid al-Fitr* (*estimated)", + "2037-11-09": "Eid al-Fitr* (*estimated)", + "2037-11-10": "Eid al-Fitr* (*estimated)", + "2037-11-11": "Eid al-Fitr* (*estimated) (Observed)", + "2037-12-25": "Christmas Day", + "2037-12-26": "Christmas Day (Observed)", + "2038-01-01": "New Year's Day", + "2038-01-02": "New Year's Day (Observed)", + "2038-01-16": "Eid al-Adha* (*estimated)", + "2038-02-04": "Lunar New Year", + "2038-02-05": "Islamic New Year* (*estimated)", + "2038-02-06": "Islamic New Year* (*estimated) (Observed)", + "2038-02-23": "National Day", + "2038-04-17": "Birth of the Prophet* (*estimated)", + "2038-05-31": "Armed Forces Day", + "2038-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2038-08-28": "Isra Mi'raj* (*estimated)", + "2038-09-30": "First Day of Ramadan* (*estimated)", + "2038-10-16": "Anniversary of the revelation of the Quran* (*estimated)", + "2038-10-29": "Eid al-Fitr* (*estimated)", + "2038-10-30": "Eid al-Fitr* (*estimated)", + "2038-10-31": "Eid al-Fitr* (*estimated)", + "2038-11-01": "Eid al-Fitr* (*estimated) (Observed)", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-01-05": "Eid al-Adha* (*estimated)", + "2039-01-24": "Lunar New Year", + "2039-01-26": "Islamic New Year* (*estimated)", + "2039-02-23": "National Day", + "2039-04-06": "Birth of the Prophet* (*estimated)", + "2039-05-31": "Armed Forces Day", + "2039-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2039-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "2039-08-17": "Isra Mi'raj* (*estimated)", + "2039-09-19": "First Day of Ramadan* (*estimated)", + "2039-10-05": "Anniversary of the revelation of the Quran* (*estimated)", + "2039-10-19": "Eid al-Fitr* (*estimated)", + "2039-10-20": "Eid al-Fitr* (*estimated)", + "2039-10-21": "Eid al-Fitr* (*estimated)", + "2039-10-22": "Eid al-Fitr* (*estimated) (Observed)", + "2039-12-25": "Christmas Day", + "2039-12-26": "Christmas Day (Observed); Eid al-Adha* (*estimated)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (Observed)", + "2040-01-15": "Islamic New Year* (*estimated)", + "2040-01-16": "Islamic New Year* (*estimated) (Observed)", + "2040-02-12": "Lunar New Year", + "2040-02-13": "Lunar New Year (Observed)", + "2040-02-23": "National Day", + "2040-03-25": "Birth of the Prophet* (*estimated)", + "2040-03-26": "Birth of the Prophet* (*estimated) (Observed)", + "2040-05-31": "Armed Forces Day", + "2040-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2040-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "2040-08-05": "Isra Mi'raj* (*estimated)", + "2040-08-06": "Isra Mi'raj* (*estimated) (Observed)", + "2040-09-07": "First Day of Ramadan* (*estimated)", + "2040-09-08": "First Day of Ramadan* (*estimated) (Observed)", + "2040-09-23": "Anniversary of the revelation of the Quran* (*estimated)", + "2040-09-24": "Anniversary of the revelation of the Quran* (*estimated) (Observed)", + "2040-10-07": "Eid al-Fitr* (*estimated)", + "2040-10-08": "Eid al-Fitr* (*estimated)", + "2040-10-09": "Eid al-Fitr* (*estimated)", + "2040-10-10": "Eid al-Fitr* (*estimated) (Observed)", + "2040-12-14": "Eid al-Adha* (*estimated)", + "2040-12-15": "Eid al-Adha* (*estimated) (Observed)", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-01-04": "Islamic New Year* (*estimated)", + "2041-01-05": "Islamic New Year* (*estimated) (Observed)", + "2041-02-01": "Lunar New Year", + "2041-02-02": "Lunar New Year (Observed)", + "2041-02-23": "National Day", + "2041-03-15": "Birth of the Prophet* (*estimated)", + "2041-03-16": "Birth of the Prophet* (*estimated) (Observed)", + "2041-05-31": "Armed Forces Day", + "2041-06-01": "Armed Forces Day (Observed)", + "2041-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2041-07-25": "Isra Mi'raj* (*estimated)", + "2041-08-28": "First Day of Ramadan* (*estimated)", + "2041-09-13": "Anniversary of the revelation of the Quran* (*estimated)", + "2041-09-14": "Anniversary of the revelation of the Quran* (*estimated) (Observed)", + "2041-09-26": "Eid al-Fitr* (*estimated)", + "2041-09-27": "Eid al-Fitr* (*estimated)", + "2041-09-28": "Eid al-Fitr* (*estimated)", + "2041-09-30": "Eid al-Fitr* (*estimated) (Observed)", + "2041-12-04": "Eid al-Adha* (*estimated)", + "2041-12-24": "Islamic New Year* (*estimated)", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-01-22": "Lunar New Year", + "2042-02-23": "National Day", + "2042-02-24": "National Day (Observed)", + "2042-03-04": "Birth of the Prophet* (*estimated)", + "2042-05-31": "Armed Forces Day", + "2042-07-15": "Isra Mi'raj* (*estimated); Sultan Hassanal Bolkiah's Birthday", + "2042-08-17": "First Day of Ramadan* (*estimated)", + "2042-08-18": "First Day of Ramadan* (*estimated) (Observed)", + "2042-09-02": "Anniversary of the revelation of the Quran* (*estimated)", + "2042-09-15": "Eid al-Fitr* (*estimated)", + "2042-09-16": "Eid al-Fitr* (*estimated)", + "2042-09-17": "Eid al-Fitr* (*estimated)", + "2042-11-23": "Eid al-Adha* (*estimated)", + "2042-11-24": "Eid al-Adha* (*estimated) (Observed)", + "2042-12-14": "Islamic New Year* (*estimated)", + "2042-12-15": "Islamic New Year* (*estimated) (Observed)", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-02-10": "Lunar New Year", + "2043-02-22": "Birth of the Prophet* (*estimated)", + "2043-02-23": "Birth of the Prophet* (*estimated) (Observed); National Day", + "2043-05-31": "Armed Forces Day", + "2043-06-01": "Armed Forces Day (Observed)", + "2043-07-04": "Isra Mi'raj* (*estimated)", + "2043-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2043-08-06": "First Day of Ramadan* (*estimated)", + "2043-08-22": "Anniversary of the revelation of the Quran* (*estimated)", + "2043-09-04": "Eid al-Fitr* (*estimated)", + "2043-09-05": "Eid al-Fitr* (*estimated)", + "2043-09-06": "Eid al-Fitr* (*estimated)", + "2043-09-07": "Eid al-Fitr* (*estimated) (Observed)", + "2043-11-12": "Eid al-Adha* (*estimated)", + "2043-12-03": "Islamic New Year* (*estimated)", + "2043-12-25": "Christmas Day", + "2043-12-26": "Christmas Day (Observed)", + "2044-01-01": "New Year's Day", + "2044-01-02": "New Year's Day (Observed)", + "2044-01-30": "Lunar New Year", + "2044-02-11": "Birth of the Prophet* (*estimated)", + "2044-02-23": "National Day", + "2044-05-31": "Armed Forces Day", + "2044-06-23": "Isra Mi'raj* (*estimated)", + "2044-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2044-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "2044-07-26": "First Day of Ramadan* (*estimated)", + "2044-08-11": "Anniversary of the revelation of the Quran* (*estimated)", + "2044-08-24": "Eid al-Fitr* (*estimated)", + "2044-08-25": "Eid al-Fitr* (*estimated)", + "2044-08-26": "Eid al-Fitr* (*estimated)", + "2044-08-27": "Eid al-Fitr* (*estimated) (Observed)", + "2044-10-31": "Eid al-Adha* (*estimated)", + "2044-11-21": "Islamic New Year* (*estimated)", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day (Observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (Observed)", + "2045-01-30": "Birth of the Prophet* (*estimated)", + "2045-02-17": "Lunar New Year", + "2045-02-18": "Lunar New Year (Observed)", + "2045-02-23": "National Day", + "2045-05-31": "Armed Forces Day", + "2045-06-13": "Isra Mi'raj* (*estimated)", + "2045-07-15": "First Day of Ramadan* (*estimated); Sultan Hassanal Bolkiah's Birthday", + "2045-07-31": "Anniversary of the revelation of the Quran* (*estimated)", + "2045-08-14": "Eid al-Fitr* (*estimated)", + "2045-08-15": "Eid al-Fitr* (*estimated)", + "2045-08-16": "Eid al-Fitr* (*estimated)", + "2045-10-21": "Eid al-Adha* (*estimated)", + "2045-11-10": "Islamic New Year* (*estimated)", + "2045-11-11": "Islamic New Year* (*estimated) (Observed)", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-01-19": "Birth of the Prophet* (*estimated)", + "2046-01-20": "Birth of the Prophet* (*estimated) (Observed)", + "2046-02-06": "Lunar New Year", + "2046-02-23": "National Day", + "2046-02-24": "National Day (Observed)", + "2046-05-31": "Armed Forces Day", + "2046-06-02": "Isra Mi'raj* (*estimated)", + "2046-07-05": "First Day of Ramadan* (*estimated)", + "2046-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2046-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "2046-07-21": "Anniversary of the revelation of the Quran* (*estimated)", + "2046-08-03": "Eid al-Fitr* (*estimated)", + "2046-08-04": "Eid al-Fitr* (*estimated)", + "2046-08-05": "Eid al-Fitr* (*estimated)", + "2046-08-06": "Eid al-Fitr* (*estimated) (Observed)", + "2046-10-10": "Eid al-Adha* (*estimated)", + "2046-10-31": "Islamic New Year* (*estimated)", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-08": "Birth of the Prophet* (*estimated)", + "2047-01-26": "Lunar New Year", + "2047-02-23": "National Day", + "2047-05-22": "Isra Mi'raj* (*estimated)", + "2047-05-31": "Armed Forces Day", + "2047-06-01": "Armed Forces Day (Observed)", + "2047-06-24": "First Day of Ramadan* (*estimated)", + "2047-07-10": "Anniversary of the revelation of the Quran* (*estimated)", + "2047-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2047-07-24": "Eid al-Fitr* (*estimated)", + "2047-07-25": "Eid al-Fitr* (*estimated)", + "2047-07-26": "Eid al-Fitr* (*estimated)", + "2047-07-27": "Eid al-Fitr* (*estimated) (Observed)", + "2047-09-30": "Eid al-Adha* (*estimated)", + "2047-10-20": "Islamic New Year* (*estimated)", + "2047-10-21": "Islamic New Year* (*estimated) (Observed)", + "2047-12-25": "Christmas Day", + "2047-12-29": "Birth of the Prophet* (*estimated)", + "2047-12-30": "Birth of the Prophet* (*estimated) (Observed)", + "2048-01-01": "New Year's Day", + "2048-02-14": "Lunar New Year", + "2048-02-15": "Lunar New Year (Observed)", + "2048-02-23": "National Day", + "2048-02-24": "National Day (Observed)", + "2048-05-10": "Isra Mi'raj* (*estimated)", + "2048-05-11": "Isra Mi'raj* (*estimated) (Observed)", + "2048-05-31": "Armed Forces Day", + "2048-06-01": "Armed Forces Day (Observed)", + "2048-06-12": "First Day of Ramadan* (*estimated)", + "2048-06-13": "First Day of Ramadan* (*estimated) (Observed)", + "2048-06-28": "Anniversary of the revelation of the Quran* (*estimated)", + "2048-06-29": "Anniversary of the revelation of the Quran* (*estimated) (Observed)", + "2048-07-12": "Eid al-Fitr* (*estimated)", + "2048-07-13": "Eid al-Fitr* (*estimated)", + "2048-07-14": "Eid al-Fitr* (*estimated)", + "2048-07-15": "Eid al-Fitr* (*estimated) (Observed); Sultan Hassanal Bolkiah's Birthday", + "2048-09-19": "Eid al-Adha* (*estimated)", + "2048-10-09": "Islamic New Year* (*estimated)", + "2048-10-10": "Islamic New Year* (*estimated) (Observed)", + "2048-12-18": "Birth of the Prophet* (*estimated)", + "2048-12-19": "Birth of the Prophet* (*estimated) (Observed)", + "2048-12-25": "Christmas Day", + "2048-12-26": "Christmas Day (Observed)", + "2049-01-01": "New Year's Day", + "2049-01-02": "New Year's Day (Observed)", + "2049-02-02": "Lunar New Year", + "2049-02-23": "National Day", + "2049-04-29": "Isra Mi'raj* (*estimated)", + "2049-05-31": "Armed Forces Day", + "2049-06-02": "First Day of Ramadan* (*estimated)", + "2049-06-18": "Anniversary of the revelation of the Quran* (*estimated)", + "2049-06-19": "Anniversary of the revelation of the Quran* (*estimated) (Observed)", + "2049-07-01": "Eid al-Fitr* (*estimated)", + "2049-07-02": "Eid al-Fitr* (*estimated)", + "2049-07-03": "Eid al-Fitr* (*estimated)", + "2049-07-05": "Eid al-Fitr* (*estimated) (Observed)", + "2049-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2049-09-08": "Eid al-Adha* (*estimated)", + "2049-09-28": "Islamic New Year* (*estimated)", + "2049-12-07": "Birth of the Prophet* (*estimated)", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-01-23": "Lunar New Year", + "2050-01-24": "Lunar New Year (Observed)", + "2050-02-23": "National Day", + "2050-04-19": "Isra Mi'raj* (*estimated)", + "2050-05-22": "First Day of Ramadan* (*estimated)", + "2050-05-23": "First Day of Ramadan* (*estimated) (Observed)", + "2050-05-31": "Armed Forces Day", + "2050-06-07": "Anniversary of the revelation of the Quran* (*estimated)", + "2050-06-20": "Eid al-Fitr* (*estimated)", + "2050-06-21": "Eid al-Fitr* (*estimated)", + "2050-06-22": "Eid al-Fitr* (*estimated)", + "2050-07-15": "Sultan Hassanal Bolkiah's Birthday", + "2050-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "2050-08-28": "Eid al-Adha* (*estimated)", + "2050-08-29": "Eid al-Adha* (*estimated) (Observed)", + "2050-09-17": "Islamic New Year* (*estimated)", + "2050-11-26": "Birth of the Prophet* (*estimated)", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day (Observed)" +} diff --git a/snapshots/countries/BO.json b/snapshots/countries/BO.json new file mode 100644 index 000000000..b704c36b0 --- /dev/null +++ b/snapshots/countries/BO.json @@ -0,0 +1,1956 @@ +{ + "1950-01-01": "New Year's Day", + "1950-02-17": "Carnival in Oruro", + "1950-02-20": "Carnival", + "1950-02-21": "Carnival", + "1950-04-07": "Good Friday", + "1950-04-15": "La Tablada", + "1950-05-01": "Labor Day", + "1950-05-25": "Chuquisaca Day", + "1950-06-08": "Corpus Christi", + "1950-07-16": "La Paz Day", + "1950-08-06": "Independence Day", + "1950-09-14": "Cochabamba Day", + "1950-09-24": "Santa Cruz Day", + "1950-10-11": "Pando Day", + "1950-11-10": "Potos\u00ed Day", + "1950-11-18": "Beni Day", + "1950-12-25": "Christmas Day", + "1951-01-01": "New Year's Day", + "1951-02-02": "Carnival in Oruro", + "1951-02-05": "Carnival", + "1951-02-06": "Carnival", + "1951-03-23": "Good Friday", + "1951-04-15": "La Tablada", + "1951-05-01": "Labor Day", + "1951-05-24": "Corpus Christi", + "1951-05-25": "Chuquisaca Day", + "1951-07-16": "La Paz Day", + "1951-08-06": "Independence Day", + "1951-09-14": "Cochabamba Day", + "1951-09-24": "Santa Cruz Day", + "1951-10-11": "Pando Day", + "1951-11-10": "Potos\u00ed Day", + "1951-11-18": "Beni Day", + "1951-12-25": "Christmas Day", + "1952-01-01": "New Year's Day", + "1952-02-22": "Carnival in Oruro", + "1952-02-25": "Carnival", + "1952-02-26": "Carnival", + "1952-04-11": "Good Friday", + "1952-04-15": "La Tablada", + "1952-05-01": "Labor Day", + "1952-05-25": "Chuquisaca Day", + "1952-06-12": "Corpus Christi", + "1952-07-16": "La Paz Day", + "1952-08-06": "Independence Day", + "1952-09-14": "Cochabamba Day", + "1952-09-24": "Santa Cruz Day", + "1952-10-11": "Pando Day", + "1952-11-10": "Potos\u00ed Day", + "1952-11-18": "Beni Day", + "1952-12-25": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-02-13": "Carnival in Oruro", + "1953-02-16": "Carnival", + "1953-02-17": "Carnival", + "1953-04-03": "Good Friday", + "1953-04-15": "La Tablada", + "1953-05-01": "Labor Day", + "1953-05-25": "Chuquisaca Day", + "1953-06-04": "Corpus Christi", + "1953-07-16": "La Paz Day", + "1953-08-06": "Independence Day", + "1953-09-14": "Cochabamba Day", + "1953-09-24": "Santa Cruz Day", + "1953-10-11": "Pando Day", + "1953-11-10": "Potos\u00ed Day", + "1953-11-18": "Beni Day", + "1953-12-25": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-02-26": "Carnival in Oruro", + "1954-03-01": "Carnival", + "1954-03-02": "Carnival", + "1954-04-15": "La Tablada", + "1954-04-16": "Good Friday", + "1954-05-01": "Labor Day", + "1954-05-25": "Chuquisaca Day", + "1954-06-17": "Corpus Christi", + "1954-07-16": "La Paz Day", + "1954-08-06": "Independence Day", + "1954-09-14": "Cochabamba Day", + "1954-09-24": "Santa Cruz Day", + "1954-10-11": "Pando Day", + "1954-11-10": "Potos\u00ed Day", + "1954-11-18": "Beni Day", + "1954-12-25": "Christmas Day", + "1955-01-01": "New Year's Day", + "1955-02-18": "Carnival in Oruro", + "1955-02-21": "Carnival", + "1955-02-22": "Carnival", + "1955-04-08": "Good Friday", + "1955-04-15": "La Tablada", + "1955-05-01": "Labor Day", + "1955-05-25": "Chuquisaca Day", + "1955-06-09": "Corpus Christi", + "1955-07-16": "La Paz Day", + "1955-08-06": "Independence Day", + "1955-09-14": "Cochabamba Day", + "1955-09-24": "Santa Cruz Day", + "1955-10-11": "Pando Day", + "1955-11-10": "Potos\u00ed Day", + "1955-11-18": "Beni Day", + "1955-12-25": "Christmas Day", + "1956-01-01": "New Year's Day", + "1956-02-10": "Carnival in Oruro", + "1956-02-13": "Carnival", + "1956-02-14": "Carnival", + "1956-03-30": "Good Friday", + "1956-04-15": "La Tablada", + "1956-05-01": "Labor Day", + "1956-05-25": "Chuquisaca Day", + "1956-05-31": "Corpus Christi", + "1956-07-16": "La Paz Day", + "1956-08-06": "Independence Day", + "1956-09-14": "Cochabamba Day", + "1956-09-24": "Santa Cruz Day", + "1956-10-11": "Pando Day", + "1956-11-10": "Potos\u00ed Day", + "1956-11-18": "Beni Day", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-03-01": "Carnival in Oruro", + "1957-03-04": "Carnival", + "1957-03-05": "Carnival", + "1957-04-15": "La Tablada", + "1957-04-19": "Good Friday", + "1957-05-01": "Labor Day", + "1957-05-25": "Chuquisaca Day", + "1957-06-20": "Corpus Christi", + "1957-07-16": "La Paz Day", + "1957-08-06": "Independence Day", + "1957-09-14": "Cochabamba Day", + "1957-09-24": "Santa Cruz Day", + "1957-10-11": "Pando Day", + "1957-11-10": "Potos\u00ed Day", + "1957-11-18": "Beni Day", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-02-14": "Carnival in Oruro", + "1958-02-17": "Carnival", + "1958-02-18": "Carnival", + "1958-04-04": "Good Friday", + "1958-04-15": "La Tablada", + "1958-05-01": "Labor Day", + "1958-05-25": "Chuquisaca Day", + "1958-06-05": "Corpus Christi", + "1958-07-16": "La Paz Day", + "1958-08-06": "Independence Day", + "1958-09-14": "Cochabamba Day", + "1958-09-24": "Santa Cruz Day", + "1958-10-11": "Pando Day", + "1958-11-10": "Potos\u00ed Day", + "1958-11-18": "Beni Day", + "1958-12-25": "Christmas Day", + "1959-01-01": "New Year's Day", + "1959-02-06": "Carnival in Oruro", + "1959-02-09": "Carnival", + "1959-02-10": "Carnival", + "1959-03-27": "Good Friday", + "1959-04-15": "La Tablada", + "1959-05-01": "Labor Day", + "1959-05-25": "Chuquisaca Day", + "1959-05-28": "Corpus Christi", + "1959-07-16": "La Paz Day", + "1959-08-06": "Independence Day", + "1959-09-14": "Cochabamba Day", + "1959-09-24": "Santa Cruz Day", + "1959-10-11": "Pando Day", + "1959-11-10": "Potos\u00ed Day", + "1959-11-18": "Beni Day", + "1959-12-25": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-02-26": "Carnival in Oruro", + "1960-02-29": "Carnival", + "1960-03-01": "Carnival", + "1960-04-15": "Good Friday; La Tablada", + "1960-05-01": "Labor Day", + "1960-05-25": "Chuquisaca Day", + "1960-06-16": "Corpus Christi", + "1960-07-16": "La Paz Day", + "1960-08-06": "Independence Day", + "1960-09-14": "Cochabamba Day", + "1960-09-24": "Santa Cruz Day", + "1960-10-11": "Pando Day", + "1960-11-10": "Potos\u00ed Day", + "1960-11-18": "Beni Day", + "1960-12-25": "Christmas Day", + "1961-01-01": "New Year's Day", + "1961-02-10": "Carnival in Oruro", + "1961-02-13": "Carnival", + "1961-02-14": "Carnival", + "1961-03-31": "Good Friday", + "1961-04-15": "La Tablada", + "1961-05-01": "Labor Day", + "1961-05-25": "Chuquisaca Day", + "1961-06-01": "Corpus Christi", + "1961-07-16": "La Paz Day", + "1961-08-06": "Independence Day", + "1961-09-14": "Cochabamba Day", + "1961-09-24": "Santa Cruz Day", + "1961-10-11": "Pando Day", + "1961-11-10": "Potos\u00ed Day", + "1961-11-18": "Beni Day", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-03-02": "Carnival in Oruro", + "1962-03-05": "Carnival", + "1962-03-06": "Carnival", + "1962-04-15": "La Tablada", + "1962-04-20": "Good Friday", + "1962-05-01": "Labor Day", + "1962-05-25": "Chuquisaca Day", + "1962-06-21": "Corpus Christi", + "1962-07-16": "La Paz Day", + "1962-08-06": "Independence Day", + "1962-09-14": "Cochabamba Day", + "1962-09-24": "Santa Cruz Day", + "1962-10-11": "Pando Day", + "1962-11-10": "Potos\u00ed Day", + "1962-11-18": "Beni Day", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-02-22": "Carnival in Oruro", + "1963-02-25": "Carnival", + "1963-02-26": "Carnival", + "1963-04-12": "Good Friday", + "1963-04-15": "La Tablada", + "1963-05-01": "Labor Day", + "1963-05-25": "Chuquisaca Day", + "1963-06-13": "Corpus Christi", + "1963-07-16": "La Paz Day", + "1963-08-06": "Independence Day", + "1963-09-14": "Cochabamba Day", + "1963-09-24": "Santa Cruz Day", + "1963-10-11": "Pando Day", + "1963-11-10": "Potos\u00ed Day", + "1963-11-18": "Beni Day", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-02-07": "Carnival in Oruro", + "1964-02-10": "Carnival", + "1964-02-11": "Carnival", + "1964-03-27": "Good Friday", + "1964-04-15": "La Tablada", + "1964-05-01": "Labor Day", + "1964-05-25": "Chuquisaca Day", + "1964-05-28": "Corpus Christi", + "1964-07-16": "La Paz Day", + "1964-08-06": "Independence Day", + "1964-09-14": "Cochabamba Day", + "1964-09-24": "Santa Cruz Day", + "1964-10-11": "Pando Day", + "1964-11-10": "Potos\u00ed Day", + "1964-11-18": "Beni Day", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-02-26": "Carnival in Oruro", + "1965-03-01": "Carnival", + "1965-03-02": "Carnival", + "1965-04-15": "La Tablada", + "1965-04-16": "Good Friday", + "1965-05-01": "Labor Day", + "1965-05-25": "Chuquisaca Day", + "1965-06-17": "Corpus Christi", + "1965-07-16": "La Paz Day", + "1965-08-06": "Independence Day", + "1965-09-14": "Cochabamba Day", + "1965-09-24": "Santa Cruz Day", + "1965-10-11": "Pando Day", + "1965-11-10": "Potos\u00ed Day", + "1965-11-18": "Beni Day", + "1965-12-25": "Christmas Day", + "1966-01-01": "New Year's Day", + "1966-02-18": "Carnival in Oruro", + "1966-02-21": "Carnival", + "1966-02-22": "Carnival", + "1966-04-08": "Good Friday", + "1966-04-15": "La Tablada", + "1966-05-01": "Labor Day", + "1966-05-25": "Chuquisaca Day", + "1966-06-09": "Corpus Christi", + "1966-07-16": "La Paz Day", + "1966-08-06": "Independence Day", + "1966-09-14": "Cochabamba Day", + "1966-09-24": "Santa Cruz Day", + "1966-10-11": "Pando Day", + "1966-11-10": "Potos\u00ed Day", + "1966-11-18": "Beni Day", + "1966-12-25": "Christmas Day", + "1967-01-01": "New Year's Day", + "1967-02-03": "Carnival in Oruro", + "1967-02-06": "Carnival", + "1967-02-07": "Carnival", + "1967-03-24": "Good Friday", + "1967-04-15": "La Tablada", + "1967-05-01": "Labor Day", + "1967-05-25": "Chuquisaca Day; Corpus Christi", + "1967-07-16": "La Paz Day", + "1967-08-06": "Independence Day", + "1967-09-14": "Cochabamba Day", + "1967-09-24": "Santa Cruz Day", + "1967-10-11": "Pando Day", + "1967-11-10": "Potos\u00ed Day", + "1967-11-18": "Beni Day", + "1967-12-25": "Christmas Day", + "1968-01-01": "New Year's Day", + "1968-02-23": "Carnival in Oruro", + "1968-02-26": "Carnival", + "1968-02-27": "Carnival", + "1968-04-12": "Good Friday", + "1968-04-15": "La Tablada", + "1968-05-01": "Labor Day", + "1968-05-25": "Chuquisaca Day", + "1968-06-13": "Corpus Christi", + "1968-07-16": "La Paz Day", + "1968-08-06": "Independence Day", + "1968-09-14": "Cochabamba Day", + "1968-09-24": "Santa Cruz Day", + "1968-10-11": "Pando Day", + "1968-11-10": "Potos\u00ed Day", + "1968-11-18": "Beni Day", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-02-14": "Carnival in Oruro", + "1969-02-17": "Carnival", + "1969-02-18": "Carnival", + "1969-04-04": "Good Friday", + "1969-04-15": "La Tablada", + "1969-05-01": "Labor Day", + "1969-05-25": "Chuquisaca Day", + "1969-06-05": "Corpus Christi", + "1969-07-16": "La Paz Day", + "1969-08-06": "Independence Day", + "1969-09-14": "Cochabamba Day", + "1969-09-24": "Santa Cruz Day", + "1969-10-11": "Pando Day", + "1969-11-10": "Potos\u00ed Day", + "1969-11-18": "Beni Day", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-02-06": "Carnival in Oruro", + "1970-02-09": "Carnival", + "1970-02-10": "Carnival", + "1970-03-27": "Good Friday", + "1970-04-15": "La Tablada", + "1970-05-01": "Labor Day", + "1970-05-25": "Chuquisaca Day", + "1970-05-28": "Corpus Christi", + "1970-07-16": "La Paz Day", + "1970-08-06": "Independence Day", + "1970-09-14": "Cochabamba Day", + "1970-09-24": "Santa Cruz Day", + "1970-10-11": "Pando Day", + "1970-11-10": "Potos\u00ed Day", + "1970-11-18": "Beni Day", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-02-19": "Carnival in Oruro", + "1971-02-22": "Carnival", + "1971-02-23": "Carnival", + "1971-04-09": "Good Friday", + "1971-04-15": "La Tablada", + "1971-05-01": "Labor Day", + "1971-05-25": "Chuquisaca Day", + "1971-06-10": "Corpus Christi", + "1971-07-16": "La Paz Day", + "1971-08-06": "Independence Day", + "1971-09-14": "Cochabamba Day", + "1971-09-24": "Santa Cruz Day", + "1971-10-11": "Pando Day", + "1971-11-10": "Potos\u00ed Day", + "1971-11-18": "Beni Day", + "1971-12-25": "Christmas Day", + "1972-01-01": "New Year's Day", + "1972-02-11": "Carnival in Oruro", + "1972-02-14": "Carnival", + "1972-02-15": "Carnival", + "1972-03-31": "Good Friday", + "1972-04-15": "La Tablada", + "1972-05-01": "Labor Day", + "1972-05-25": "Chuquisaca Day", + "1972-06-01": "Corpus Christi", + "1972-07-16": "La Paz Day", + "1972-08-06": "Independence Day", + "1972-09-14": "Cochabamba Day", + "1972-09-24": "Santa Cruz Day", + "1972-10-11": "Pando Day", + "1972-11-10": "Potos\u00ed Day", + "1972-11-18": "Beni Day", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-03-02": "Carnival in Oruro", + "1973-03-05": "Carnival", + "1973-03-06": "Carnival", + "1973-04-15": "La Tablada", + "1973-04-20": "Good Friday", + "1973-05-01": "Labor Day", + "1973-05-25": "Chuquisaca Day", + "1973-06-21": "Corpus Christi", + "1973-07-16": "La Paz Day", + "1973-08-06": "Independence Day", + "1973-09-14": "Cochabamba Day", + "1973-09-24": "Santa Cruz Day", + "1973-10-11": "Pando Day", + "1973-11-10": "Potos\u00ed Day", + "1973-11-18": "Beni Day", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-02-22": "Carnival in Oruro", + "1974-02-25": "Carnival", + "1974-02-26": "Carnival", + "1974-04-12": "Good Friday", + "1974-04-15": "La Tablada", + "1974-05-01": "Labor Day", + "1974-05-25": "Chuquisaca Day", + "1974-06-13": "Corpus Christi", + "1974-07-16": "La Paz Day", + "1974-08-06": "Independence Day", + "1974-09-14": "Cochabamba Day", + "1974-09-24": "Santa Cruz Day", + "1974-10-11": "Pando Day", + "1974-11-10": "Potos\u00ed Day", + "1974-11-18": "Beni Day", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-02-07": "Carnival in Oruro", + "1975-02-10": "Carnival", + "1975-02-11": "Carnival", + "1975-03-28": "Good Friday", + "1975-04-15": "La Tablada", + "1975-05-01": "Labor Day", + "1975-05-25": "Chuquisaca Day", + "1975-05-29": "Corpus Christi", + "1975-07-16": "La Paz Day", + "1975-08-06": "Independence Day", + "1975-09-14": "Cochabamba Day", + "1975-09-24": "Santa Cruz Day", + "1975-10-11": "Pando Day", + "1975-11-10": "Potos\u00ed Day", + "1975-11-18": "Beni Day", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-02-27": "Carnival in Oruro", + "1976-03-01": "Carnival", + "1976-03-02": "Carnival", + "1976-04-15": "La Tablada", + "1976-04-16": "Good Friday", + "1976-05-01": "Labor Day", + "1976-05-25": "Chuquisaca Day", + "1976-06-17": "Corpus Christi", + "1976-07-16": "La Paz Day", + "1976-08-06": "Independence Day", + "1976-09-14": "Cochabamba Day", + "1976-09-24": "Santa Cruz Day", + "1976-10-11": "Pando Day", + "1976-11-10": "Potos\u00ed Day", + "1976-11-18": "Beni Day", + "1976-12-25": "Christmas Day", + "1977-01-01": "New Year's Day", + "1977-02-18": "Carnival in Oruro", + "1977-02-21": "Carnival", + "1977-02-22": "Carnival", + "1977-04-08": "Good Friday", + "1977-04-15": "La Tablada", + "1977-05-01": "Labor Day", + "1977-05-02": "Labor Day (Observed)", + "1977-05-25": "Chuquisaca Day", + "1977-06-09": "Corpus Christi", + "1977-07-16": "La Paz Day", + "1977-08-06": "Independence Day", + "1977-09-14": "Cochabamba Day", + "1977-09-24": "Santa Cruz Day", + "1977-10-11": "Pando Day", + "1977-11-10": "Potos\u00ed Day", + "1977-11-18": "Beni Day", + "1977-12-25": "Christmas Day", + "1977-12-26": "Christmas Day (Observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day (Observed)", + "1978-02-03": "Carnival in Oruro", + "1978-02-06": "Carnival", + "1978-02-07": "Carnival", + "1978-03-24": "Good Friday", + "1978-04-15": "La Tablada", + "1978-05-01": "Labor Day", + "1978-05-25": "Chuquisaca Day; Corpus Christi", + "1978-07-16": "La Paz Day", + "1978-08-06": "Independence Day", + "1978-08-07": "Independence Day (Observed)", + "1978-09-14": "Cochabamba Day", + "1978-09-24": "Santa Cruz Day", + "1978-10-11": "Pando Day", + "1978-11-10": "Potos\u00ed Day", + "1978-11-18": "Beni Day", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-02-23": "Carnival in Oruro", + "1979-02-26": "Carnival", + "1979-02-27": "Carnival", + "1979-04-13": "Good Friday", + "1979-04-15": "La Tablada", + "1979-05-01": "Labor Day", + "1979-05-25": "Chuquisaca Day", + "1979-06-14": "Corpus Christi", + "1979-07-16": "La Paz Day", + "1979-08-06": "Independence Day", + "1979-09-14": "Cochabamba Day", + "1979-09-24": "Santa Cruz Day", + "1979-10-11": "Pando Day", + "1979-11-10": "Potos\u00ed Day", + "1979-11-18": "Beni Day", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-02-15": "Carnival in Oruro", + "1980-02-18": "Carnival", + "1980-02-19": "Carnival", + "1980-04-04": "Good Friday", + "1980-04-15": "La Tablada", + "1980-05-01": "Labor Day", + "1980-05-25": "Chuquisaca Day", + "1980-06-05": "Corpus Christi", + "1980-07-16": "La Paz Day", + "1980-08-06": "Independence Day", + "1980-09-14": "Cochabamba Day", + "1980-09-24": "Santa Cruz Day", + "1980-10-11": "Pando Day", + "1980-11-10": "Potos\u00ed Day", + "1980-11-18": "Beni Day", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-02-27": "Carnival in Oruro", + "1981-03-02": "Carnival", + "1981-03-03": "Carnival", + "1981-04-15": "La Tablada", + "1981-04-17": "Good Friday", + "1981-05-01": "Labor Day", + "1981-05-25": "Chuquisaca Day", + "1981-06-18": "Corpus Christi", + "1981-07-16": "La Paz Day", + "1981-08-06": "Independence Day", + "1981-09-14": "Cochabamba Day", + "1981-09-24": "Santa Cruz Day", + "1981-10-11": "Pando Day", + "1981-11-10": "Potos\u00ed Day", + "1981-11-18": "Beni Day", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-02-19": "Carnival in Oruro", + "1982-02-22": "Carnival", + "1982-02-23": "Carnival", + "1982-04-09": "Good Friday", + "1982-04-15": "La Tablada", + "1982-05-01": "Labor Day", + "1982-05-25": "Chuquisaca Day", + "1982-06-10": "Corpus Christi", + "1982-07-16": "La Paz Day", + "1982-08-06": "Independence Day", + "1982-09-14": "Cochabamba Day", + "1982-09-24": "Santa Cruz Day", + "1982-10-11": "Pando Day", + "1982-11-10": "Potos\u00ed Day", + "1982-11-18": "Beni Day", + "1982-12-25": "Christmas Day", + "1983-01-01": "New Year's Day", + "1983-02-11": "Carnival in Oruro", + "1983-02-14": "Carnival", + "1983-02-15": "Carnival", + "1983-04-01": "Good Friday", + "1983-04-15": "La Tablada", + "1983-05-01": "Labor Day", + "1983-05-02": "Labor Day (Observed)", + "1983-05-25": "Chuquisaca Day", + "1983-06-02": "Corpus Christi", + "1983-07-16": "La Paz Day", + "1983-08-06": "Independence Day", + "1983-09-14": "Cochabamba Day", + "1983-09-24": "Santa Cruz Day", + "1983-10-11": "Pando Day", + "1983-11-10": "Potos\u00ed Day", + "1983-11-18": "Beni Day", + "1983-12-25": "Christmas Day", + "1983-12-26": "Christmas Day (Observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (Observed)", + "1984-03-02": "Carnival in Oruro", + "1984-03-05": "Carnival", + "1984-03-06": "Carnival", + "1984-04-15": "La Tablada", + "1984-04-20": "Good Friday", + "1984-05-01": "Labor Day", + "1984-05-25": "Chuquisaca Day", + "1984-06-21": "Corpus Christi", + "1984-07-16": "La Paz Day", + "1984-08-06": "Independence Day", + "1984-09-14": "Cochabamba Day", + "1984-09-24": "Santa Cruz Day", + "1984-10-11": "Pando Day", + "1984-11-10": "Potos\u00ed Day", + "1984-11-18": "Beni Day", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-02-15": "Carnival in Oruro", + "1985-02-18": "Carnival", + "1985-02-19": "Carnival", + "1985-04-05": "Good Friday", + "1985-04-15": "La Tablada", + "1985-05-01": "Labor Day", + "1985-05-25": "Chuquisaca Day", + "1985-06-06": "Corpus Christi", + "1985-07-16": "La Paz Day", + "1985-08-06": "Independence Day", + "1985-09-14": "Cochabamba Day", + "1985-09-24": "Santa Cruz Day", + "1985-10-11": "Pando Day", + "1985-11-01": "All Saints' Day", + "1985-11-10": "Potos\u00ed Day", + "1985-11-18": "Beni Day", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-02-07": "Carnival in Oruro", + "1986-02-10": "Carnival", + "1986-02-11": "Carnival", + "1986-03-28": "Good Friday", + "1986-04-15": "La Tablada", + "1986-05-01": "Labor Day", + "1986-05-25": "Chuquisaca Day", + "1986-05-29": "Corpus Christi", + "1986-07-16": "La Paz Day", + "1986-08-06": "Independence Day", + "1986-09-14": "Cochabamba Day", + "1986-09-24": "Santa Cruz Day", + "1986-10-11": "Pando Day", + "1986-11-01": "All Saints' Day", + "1986-11-10": "Potos\u00ed Day", + "1986-11-18": "Beni Day", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-02-27": "Carnival in Oruro", + "1987-03-02": "Carnival", + "1987-03-03": "Carnival", + "1987-04-15": "La Tablada", + "1987-04-17": "Good Friday", + "1987-05-01": "Labor Day", + "1987-05-25": "Chuquisaca Day", + "1987-06-18": "Corpus Christi", + "1987-07-16": "La Paz Day", + "1987-08-06": "Independence Day", + "1987-09-14": "Cochabamba Day", + "1987-09-24": "Santa Cruz Day", + "1987-10-11": "Pando Day", + "1987-11-01": "All Saints' Day", + "1987-11-10": "Potos\u00ed Day", + "1987-11-18": "Beni Day", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-02-12": "Carnival in Oruro", + "1988-02-15": "Carnival", + "1988-02-16": "Carnival", + "1988-04-01": "Good Friday", + "1988-04-15": "La Tablada", + "1988-05-01": "Labor Day", + "1988-05-02": "Labor Day (Observed)", + "1988-05-25": "Chuquisaca Day", + "1988-06-02": "Corpus Christi", + "1988-07-16": "La Paz Day", + "1988-08-06": "Independence Day", + "1988-09-14": "Cochabamba Day", + "1988-09-24": "Santa Cruz Day", + "1988-10-11": "Pando Day", + "1988-11-01": "All Saints' Day", + "1988-11-10": "Potos\u00ed Day", + "1988-11-18": "Beni Day", + "1988-12-25": "Christmas Day", + "1988-12-26": "Christmas Day (Observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (Observed)", + "1989-02-03": "Carnival in Oruro", + "1989-02-06": "Carnival", + "1989-02-07": "Carnival", + "1989-03-24": "Good Friday", + "1989-04-15": "La Tablada", + "1989-05-01": "Labor Day", + "1989-05-25": "Chuquisaca Day; Corpus Christi", + "1989-07-16": "La Paz Day", + "1989-08-06": "Independence Day", + "1989-08-07": "Independence Day (Observed)", + "1989-09-14": "Cochabamba Day", + "1989-09-24": "Santa Cruz Day", + "1989-10-11": "Pando Day", + "1989-11-02": "All Souls' Day", + "1989-11-10": "Potos\u00ed Day", + "1989-11-18": "Beni Day", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-02-23": "Carnival in Oruro", + "1990-02-26": "Carnival", + "1990-02-27": "Carnival", + "1990-04-13": "Good Friday", + "1990-04-15": "La Tablada", + "1990-05-01": "Labor Day", + "1990-05-25": "Chuquisaca Day", + "1990-06-14": "Corpus Christi", + "1990-07-16": "La Paz Day", + "1990-08-06": "Independence Day", + "1990-09-14": "Cochabamba Day", + "1990-09-24": "Santa Cruz Day", + "1990-10-11": "Pando Day", + "1990-11-02": "All Souls' Day", + "1990-11-10": "Potos\u00ed Day", + "1990-11-18": "Beni Day", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-02-08": "Carnival in Oruro", + "1991-02-11": "Carnival", + "1991-02-12": "Carnival", + "1991-03-29": "Good Friday", + "1991-04-15": "La Tablada", + "1991-05-01": "Labor Day", + "1991-05-25": "Chuquisaca Day", + "1991-05-30": "Corpus Christi", + "1991-07-16": "La Paz Day", + "1991-08-06": "Independence Day", + "1991-09-14": "Cochabamba Day", + "1991-09-24": "Santa Cruz Day", + "1991-10-11": "Pando Day", + "1991-11-02": "All Souls' Day", + "1991-11-10": "Potos\u00ed Day", + "1991-11-18": "Beni Day", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-02-28": "Carnival in Oruro", + "1992-03-02": "Carnival", + "1992-03-03": "Carnival", + "1992-04-15": "La Tablada", + "1992-04-17": "Good Friday", + "1992-05-01": "Labor Day", + "1992-05-25": "Chuquisaca Day", + "1992-06-18": "Corpus Christi", + "1992-07-16": "La Paz Day", + "1992-08-06": "Independence Day", + "1992-09-14": "Cochabamba Day", + "1992-09-24": "Santa Cruz Day", + "1992-10-11": "Pando Day", + "1992-11-02": "All Souls' Day", + "1992-11-10": "Potos\u00ed Day", + "1992-11-18": "Beni Day", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-02-19": "Carnival in Oruro", + "1993-02-22": "Carnival", + "1993-02-23": "Carnival", + "1993-04-09": "Good Friday", + "1993-04-15": "La Tablada", + "1993-05-01": "Labor Day", + "1993-05-25": "Chuquisaca Day", + "1993-06-10": "Corpus Christi", + "1993-07-16": "La Paz Day", + "1993-08-06": "Independence Day", + "1993-09-14": "Cochabamba Day", + "1993-09-24": "Santa Cruz Day", + "1993-10-11": "Pando Day", + "1993-11-02": "All Souls' Day", + "1993-11-10": "Potos\u00ed Day", + "1993-11-18": "Beni Day", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-02-11": "Carnival in Oruro", + "1994-02-14": "Carnival", + "1994-02-15": "Carnival", + "1994-04-01": "Good Friday", + "1994-04-15": "La Tablada", + "1994-05-01": "Labor Day", + "1994-05-02": "Labor Day (Observed)", + "1994-05-25": "Chuquisaca Day", + "1994-06-02": "Corpus Christi", + "1994-07-16": "La Paz Day", + "1994-08-06": "Independence Day", + "1994-09-14": "Cochabamba Day", + "1994-09-24": "Santa Cruz Day", + "1994-10-11": "Pando Day", + "1994-11-02": "All Souls' Day", + "1994-11-10": "Potos\u00ed Day", + "1994-11-18": "Beni Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day (Observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (Observed)", + "1995-02-24": "Carnival in Oruro", + "1995-02-27": "Carnival", + "1995-02-28": "Carnival", + "1995-04-14": "Good Friday", + "1995-04-15": "La Tablada", + "1995-05-01": "Labor Day", + "1995-05-25": "Chuquisaca Day", + "1995-06-15": "Corpus Christi", + "1995-07-16": "La Paz Day", + "1995-08-06": "Independence Day", + "1995-08-07": "Independence Day (Observed)", + "1995-09-14": "Cochabamba Day", + "1995-09-24": "Santa Cruz Day", + "1995-10-11": "Pando Day", + "1995-11-02": "All Souls' Day", + "1995-11-10": "Potos\u00ed Day", + "1995-11-18": "Beni Day", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-02-16": "Carnival in Oruro", + "1996-02-19": "Carnival", + "1996-02-20": "Carnival", + "1996-04-05": "Good Friday", + "1996-04-15": "La Tablada", + "1996-05-01": "Labor Day", + "1996-05-25": "Chuquisaca Day", + "1996-06-06": "Corpus Christi", + "1996-07-16": "La Paz Day", + "1996-08-06": "Independence Day", + "1996-09-14": "Cochabamba Day", + "1996-09-24": "Santa Cruz Day", + "1996-10-11": "Pando Day", + "1996-11-02": "All Souls' Day", + "1996-11-10": "Potos\u00ed Day", + "1996-11-18": "Beni Day", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-02-07": "Carnival in Oruro", + "1997-02-10": "Carnival", + "1997-02-11": "Carnival", + "1997-03-28": "Good Friday", + "1997-04-15": "La Tablada", + "1997-05-01": "Labor Day", + "1997-05-25": "Chuquisaca Day", + "1997-05-29": "Corpus Christi", + "1997-07-16": "La Paz Day", + "1997-08-06": "Independence Day", + "1997-09-14": "Cochabamba Day", + "1997-09-24": "Santa Cruz Day", + "1997-10-11": "Pando Day", + "1997-11-02": "All Souls' Day", + "1997-11-03": "All Souls' Day (Observed)", + "1997-11-10": "Potos\u00ed Day", + "1997-11-18": "Beni Day", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-02-20": "Carnival in Oruro", + "1998-02-23": "Carnival", + "1998-02-24": "Carnival", + "1998-04-10": "Good Friday", + "1998-04-15": "La Tablada", + "1998-05-01": "Labor Day", + "1998-05-25": "Chuquisaca Day", + "1998-06-11": "Corpus Christi", + "1998-07-16": "La Paz Day", + "1998-08-06": "Independence Day", + "1998-09-14": "Cochabamba Day", + "1998-09-24": "Santa Cruz Day", + "1998-10-11": "Pando Day", + "1998-11-02": "All Souls' Day", + "1998-11-10": "Potos\u00ed Day", + "1998-11-18": "Beni Day", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-02-12": "Carnival in Oruro", + "1999-02-15": "Carnival", + "1999-02-16": "Carnival", + "1999-04-02": "Good Friday", + "1999-04-15": "La Tablada", + "1999-05-01": "Labor Day", + "1999-05-25": "Chuquisaca Day", + "1999-06-03": "Corpus Christi", + "1999-07-16": "La Paz Day", + "1999-08-06": "Independence Day", + "1999-09-14": "Cochabamba Day", + "1999-09-24": "Santa Cruz Day", + "1999-10-11": "Pando Day", + "1999-11-02": "All Souls' Day", + "1999-11-10": "Potos\u00ed Day", + "1999-11-18": "Beni Day", + "1999-12-25": "Christmas Day", + "2000-01-01": "New Year's Day", + "2000-03-03": "Carnival in Oruro", + "2000-03-06": "Carnival", + "2000-03-07": "Carnival", + "2000-04-15": "La Tablada", + "2000-04-21": "Good Friday", + "2000-05-01": "Labor Day", + "2000-05-25": "Chuquisaca Day", + "2000-06-22": "Corpus Christi", + "2000-07-16": "La Paz Day", + "2000-08-06": "Independence Day", + "2000-08-07": "Independence Day (Observed)", + "2000-09-14": "Cochabamba Day", + "2000-09-24": "Santa Cruz Day", + "2000-10-11": "Pando Day", + "2000-11-02": "All Souls' Day", + "2000-11-10": "Potos\u00ed Day", + "2000-11-18": "Beni Day", + "2000-12-25": "Christmas Day", + "2001-01-01": "New Year's Day", + "2001-02-23": "Carnival in Oruro", + "2001-02-26": "Carnival", + "2001-02-27": "Carnival", + "2001-04-13": "Good Friday", + "2001-04-15": "La Tablada", + "2001-05-01": "Labor Day", + "2001-05-25": "Chuquisaca Day", + "2001-06-14": "Corpus Christi", + "2001-07-16": "La Paz Day", + "2001-08-06": "Independence Day", + "2001-09-14": "Cochabamba Day", + "2001-09-24": "Santa Cruz Day", + "2001-10-11": "Pando Day", + "2001-11-02": "All Souls' Day", + "2001-11-10": "Potos\u00ed Day", + "2001-11-18": "Beni Day", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-02-08": "Carnival in Oruro", + "2002-02-11": "Carnival", + "2002-02-12": "Carnival", + "2002-03-29": "Good Friday", + "2002-04-15": "La Tablada", + "2002-05-01": "Labor Day", + "2002-05-25": "Chuquisaca Day", + "2002-05-30": "Corpus Christi", + "2002-07-16": "La Paz Day", + "2002-08-06": "Independence Day", + "2002-09-14": "Cochabamba Day", + "2002-09-24": "Santa Cruz Day", + "2002-10-11": "Pando Day", + "2002-11-02": "All Souls' Day", + "2002-11-10": "Potos\u00ed Day", + "2002-11-18": "Beni Day", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-02-28": "Carnival in Oruro", + "2003-03-03": "Carnival", + "2003-03-04": "Carnival", + "2003-04-15": "La Tablada", + "2003-04-18": "Good Friday", + "2003-05-01": "Labor Day", + "2003-05-25": "Chuquisaca Day", + "2003-06-19": "Corpus Christi", + "2003-07-16": "La Paz Day", + "2003-08-06": "Independence Day", + "2003-09-14": "Cochabamba Day", + "2003-09-24": "Santa Cruz Day", + "2003-10-11": "Pando Day", + "2003-11-02": "All Souls' Day", + "2003-11-03": "All Souls' Day (Observed)", + "2003-11-10": "Potos\u00ed Day", + "2003-11-18": "Beni Day", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-02-20": "Carnival in Oruro", + "2004-02-23": "Carnival", + "2004-02-24": "Carnival", + "2004-04-09": "Good Friday", + "2004-04-15": "La Tablada", + "2004-05-01": "Labor Day", + "2004-05-25": "Chuquisaca Day", + "2004-06-10": "Corpus Christi", + "2004-07-16": "La Paz Day", + "2004-08-06": "Independence Day", + "2004-09-14": "Cochabamba Day", + "2004-09-24": "Santa Cruz Day", + "2004-10-11": "Pando Day", + "2004-11-02": "All Souls' Day", + "2004-11-10": "Potos\u00ed Day", + "2004-11-18": "Beni Day", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-02-04": "Carnival in Oruro", + "2005-02-07": "Carnival", + "2005-02-08": "Carnival", + "2005-03-25": "Good Friday", + "2005-04-15": "La Tablada", + "2005-05-01": "Labor Day", + "2005-05-02": "Labor Day (Observed)", + "2005-05-25": "Chuquisaca Day", + "2005-05-26": "Corpus Christi", + "2005-07-16": "La Paz Day", + "2005-08-06": "Independence Day", + "2005-09-14": "Cochabamba Day", + "2005-09-24": "Santa Cruz Day", + "2005-10-11": "Pando Day", + "2005-11-02": "All Souls' Day", + "2005-11-10": "Potos\u00ed Day", + "2005-11-18": "Beni Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day (Observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (Observed)", + "2006-02-24": "Carnival in Oruro", + "2006-02-27": "Carnival", + "2006-02-28": "Carnival", + "2006-04-14": "Good Friday", + "2006-04-15": "La Tablada", + "2006-05-01": "Labor Day", + "2006-05-25": "Chuquisaca Day", + "2006-06-15": "Corpus Christi", + "2006-07-16": "La Paz Day", + "2006-08-06": "Independence Day", + "2006-08-07": "Independence Day (Observed)", + "2006-09-14": "Cochabamba Day", + "2006-09-24": "Santa Cruz Day", + "2006-10-11": "Pando Day", + "2006-11-02": "All Souls' Day", + "2006-11-10": "Potos\u00ed Day", + "2006-11-18": "Beni Day", + "2006-12-25": "Christmas Day", + "2007-01-01": "New Year's Day", + "2007-02-16": "Carnival in Oruro", + "2007-02-19": "Carnival", + "2007-02-20": "Carnival", + "2007-04-06": "Good Friday", + "2007-04-15": "La Tablada", + "2007-05-01": "Labor Day", + "2007-05-25": "Chuquisaca Day", + "2007-06-07": "Corpus Christi", + "2007-07-16": "La Paz Day", + "2007-08-06": "Independence Day", + "2007-09-14": "Cochabamba Day", + "2007-09-24": "Santa Cruz Day", + "2007-10-11": "Pando Day", + "2007-11-02": "All Souls' Day", + "2007-11-10": "Potos\u00ed Day", + "2007-11-18": "Beni Day", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-02-01": "Carnival in Oruro", + "2008-02-04": "Carnival", + "2008-02-05": "Carnival", + "2008-03-21": "Good Friday", + "2008-04-15": "La Tablada", + "2008-05-01": "Labor Day", + "2008-05-22": "Corpus Christi", + "2008-05-25": "Chuquisaca Day", + "2008-07-16": "La Paz Day", + "2008-08-06": "Independence Day", + "2008-09-14": "Cochabamba Day", + "2008-09-24": "Santa Cruz Day", + "2008-10-11": "Pando Day", + "2008-11-02": "All Souls' Day", + "2008-11-03": "All Souls' Day (Observed)", + "2008-11-10": "Potos\u00ed Day", + "2008-11-18": "Beni Day", + "2008-12-25": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-02-20": "Carnival in Oruro", + "2009-02-23": "Carnival", + "2009-02-24": "Carnival", + "2009-04-10": "Good Friday", + "2009-04-15": "La Tablada", + "2009-05-01": "Labor Day", + "2009-05-25": "Chuquisaca Day", + "2009-06-11": "Corpus Christi", + "2009-06-21": "Aymara New Year", + "2009-06-22": "Aymara New Year (Observed)", + "2009-07-16": "La Paz Day", + "2009-08-06": "Independence Day", + "2009-09-14": "Cochabamba Day", + "2009-09-24": "Santa Cruz Day", + "2009-10-11": "Pando Day", + "2009-11-02": "All Souls' Day", + "2009-11-10": "Potos\u00ed Day", + "2009-11-18": "Beni Day", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-01-22": "Plurinational State Foundation Day", + "2010-02-12": "Carnival in Oruro", + "2010-02-15": "Carnival", + "2010-02-16": "Carnival", + "2010-04-02": "Good Friday", + "2010-04-15": "La Tablada", + "2010-05-01": "Labor Day", + "2010-05-25": "Chuquisaca Day", + "2010-06-03": "Corpus Christi", + "2010-06-21": "Aymara New Year", + "2010-07-16": "La Paz Day", + "2010-08-06": "Independence Day", + "2010-09-14": "Cochabamba Day", + "2010-09-24": "Santa Cruz Day", + "2010-10-11": "Pando Day", + "2010-11-02": "All Souls' Day", + "2010-11-10": "Potos\u00ed Day", + "2010-11-18": "Beni Day", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-01-22": "Plurinational State Foundation Day", + "2011-03-04": "Carnival in Oruro", + "2011-03-07": "Carnival", + "2011-03-08": "Carnival", + "2011-04-15": "La Tablada", + "2011-04-22": "Good Friday", + "2011-05-01": "Labor Day", + "2011-05-02": "Labor Day (Observed)", + "2011-05-25": "Chuquisaca Day", + "2011-06-21": "Aymara New Year", + "2011-06-23": "Corpus Christi", + "2011-07-16": "La Paz Day", + "2011-08-06": "Independence Day", + "2011-09-14": "Cochabamba Day", + "2011-09-24": "Santa Cruz Day", + "2011-10-11": "Pando Day", + "2011-11-02": "All Souls' Day", + "2011-11-10": "Potos\u00ed Day", + "2011-11-18": "Beni Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day (Observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (Observed)", + "2012-01-22": "Plurinational State Foundation Day", + "2012-01-23": "Plurinational State Foundation Day (Observed)", + "2012-02-17": "Carnival in Oruro", + "2012-02-20": "Carnival", + "2012-02-21": "Carnival", + "2012-04-06": "Good Friday", + "2012-04-15": "La Tablada", + "2012-04-30": "Labor Day (Observed)", + "2012-05-01": "Labor Day", + "2012-05-25": "Chuquisaca Day", + "2012-06-07": "Corpus Christi", + "2012-06-21": "Aymara New Year", + "2012-07-16": "La Paz Day", + "2012-08-06": "Independence Day", + "2012-09-14": "Cochabamba Day", + "2012-09-24": "Santa Cruz Day", + "2012-10-11": "Pando Day", + "2012-11-02": "All Souls' Day", + "2012-11-10": "Potos\u00ed Day", + "2012-11-18": "Beni Day", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-01-22": "Plurinational State Foundation Day", + "2013-02-08": "Carnival in Oruro", + "2013-02-11": "Carnival", + "2013-02-12": "Carnival", + "2013-03-29": "Good Friday", + "2013-04-15": "La Tablada", + "2013-05-01": "Labor Day", + "2013-05-25": "Chuquisaca Day", + "2013-05-30": "Corpus Christi", + "2013-06-21": "Aymara New Year", + "2013-07-16": "La Paz Day", + "2013-08-06": "Independence Day", + "2013-09-14": "Cochabamba Day", + "2013-09-24": "Santa Cruz Day", + "2013-10-11": "Pando Day", + "2013-11-02": "All Souls' Day", + "2013-11-10": "Potos\u00ed Day", + "2013-11-18": "Beni Day", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-22": "Plurinational State Foundation Day", + "2014-02-28": "Carnival in Oruro", + "2014-03-03": "Carnival", + "2014-03-04": "Carnival", + "2014-04-15": "La Tablada", + "2014-04-18": "Good Friday", + "2014-05-01": "Labor Day", + "2014-05-02": "Labor Day (Observed)", + "2014-05-25": "Chuquisaca Day", + "2014-06-19": "Corpus Christi", + "2014-06-21": "Aymara New Year", + "2014-07-16": "La Paz Day", + "2014-08-06": "Independence Day", + "2014-09-14": "Cochabamba Day", + "2014-09-24": "Santa Cruz Day", + "2014-10-11": "Pando Day", + "2014-11-02": "All Souls' Day", + "2014-11-03": "All Souls' Day (Observed)", + "2014-11-10": "Potos\u00ed Day", + "2014-11-18": "Beni Day", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-01-22": "Plurinational State Foundation Day", + "2015-02-13": "Carnival in Oruro", + "2015-02-16": "Carnival", + "2015-02-17": "Carnival", + "2015-04-03": "Good Friday", + "2015-04-15": "La Tablada", + "2015-05-01": "Labor Day", + "2015-05-25": "Chuquisaca Day", + "2015-06-04": "Corpus Christi", + "2015-06-21": "Aymara New Year", + "2015-06-22": "Aymara New Year (Observed)", + "2015-07-16": "La Paz Day", + "2015-08-06": "Independence Day", + "2015-09-14": "Cochabamba Day", + "2015-09-24": "Santa Cruz Day", + "2015-10-11": "Pando Day", + "2015-11-02": "All Souls' Day", + "2015-11-10": "Potos\u00ed Day", + "2015-11-18": "Beni Day", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-01-22": "Plurinational State Foundation Day", + "2016-02-05": "Carnival in Oruro", + "2016-02-08": "Carnival", + "2016-02-09": "Carnival", + "2016-03-25": "Good Friday", + "2016-04-15": "La Tablada", + "2016-05-01": "Labor Day", + "2016-05-02": "Labor Day (Observed)", + "2016-05-25": "Chuquisaca Day", + "2016-05-26": "Corpus Christi", + "2016-06-21": "Aymara New Year", + "2016-07-16": "La Paz Day", + "2016-08-06": "Independence Day", + "2016-09-14": "Cochabamba Day", + "2016-09-24": "Santa Cruz Day", + "2016-10-11": "Pando Day", + "2016-11-02": "All Souls' Day", + "2016-11-10": "Potos\u00ed Day", + "2016-11-18": "Beni Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day (Observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (Observed)", + "2017-01-22": "Plurinational State Foundation Day", + "2017-01-23": "Plurinational State Foundation Day (Observed)", + "2017-02-24": "Carnival in Oruro", + "2017-02-27": "Carnival", + "2017-02-28": "Carnival", + "2017-04-14": "Good Friday", + "2017-04-15": "La Tablada", + "2017-05-01": "Labor Day", + "2017-05-25": "Chuquisaca Day", + "2017-06-15": "Corpus Christi", + "2017-06-21": "Aymara New Year", + "2017-07-16": "La Paz Day", + "2017-08-06": "Independence Day", + "2017-08-07": "Independence Day (Observed)", + "2017-09-14": "Cochabamba Day", + "2017-09-24": "Santa Cruz Day", + "2017-10-11": "Pando Day", + "2017-11-02": "All Souls' Day", + "2017-11-10": "Potos\u00ed Day", + "2017-11-18": "Beni Day", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-01-22": "Plurinational State Foundation Day", + "2018-02-09": "Carnival in Oruro", + "2018-02-12": "Carnival", + "2018-02-13": "Carnival", + "2018-03-30": "Good Friday", + "2018-04-15": "La Tablada", + "2018-05-01": "Labor Day", + "2018-05-25": "Chuquisaca Day", + "2018-05-31": "Corpus Christi", + "2018-06-21": "Aymara New Year", + "2018-07-16": "La Paz Day", + "2018-08-06": "Independence Day", + "2018-09-14": "Cochabamba Day", + "2018-09-24": "Santa Cruz Day", + "2018-10-11": "Pando Day", + "2018-11-02": "All Souls' Day", + "2018-11-10": "Potos\u00ed Day", + "2018-11-18": "Beni Day", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-01-22": "Plurinational State Foundation Day", + "2019-03-01": "Carnival in Oruro", + "2019-03-04": "Carnival", + "2019-03-05": "Carnival", + "2019-04-15": "La Tablada", + "2019-04-19": "Good Friday", + "2019-05-01": "Labor Day", + "2019-05-25": "Chuquisaca Day", + "2019-06-20": "Corpus Christi", + "2019-06-21": "Aymara New Year", + "2019-07-16": "La Paz Day", + "2019-08-06": "Independence Day", + "2019-09-14": "Cochabamba Day", + "2019-09-24": "Santa Cruz Day", + "2019-10-11": "Pando Day", + "2019-11-02": "All Souls' Day", + "2019-11-10": "Potos\u00ed Day", + "2019-11-18": "Beni Day", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-01-22": "Plurinational State Foundation Day", + "2020-02-21": "Carnival in Oruro", + "2020-02-24": "Carnival", + "2020-02-25": "Carnival", + "2020-04-10": "Good Friday", + "2020-04-15": "La Tablada", + "2020-05-01": "Labor Day", + "2020-05-25": "Chuquisaca Day", + "2020-06-11": "Corpus Christi", + "2020-06-21": "Aymara New Year", + "2020-06-22": "Aymara New Year (Observed)", + "2020-07-16": "La Paz Day", + "2020-08-06": "Independence Day", + "2020-09-14": "Cochabamba Day", + "2020-09-24": "Santa Cruz Day", + "2020-10-11": "Pando Day", + "2020-10-17": "National Dignity Day", + "2020-11-02": "All Souls' Day", + "2020-11-10": "Potos\u00ed Day", + "2020-11-18": "Beni Day", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-01-22": "Plurinational State Foundation Day", + "2021-02-12": "Carnival in Oruro", + "2021-02-15": "Carnival", + "2021-02-16": "Carnival", + "2021-04-02": "Good Friday", + "2021-04-15": "La Tablada", + "2021-05-01": "Labor Day", + "2021-05-25": "Chuquisaca Day", + "2021-06-03": "Corpus Christi", + "2021-06-21": "Aymara New Year", + "2021-07-16": "La Paz Day", + "2021-08-06": "Independence Day", + "2021-09-14": "Cochabamba Day", + "2021-09-24": "Santa Cruz Day", + "2021-10-11": "Pando Day", + "2021-10-17": "National Dignity Day", + "2021-11-02": "All Souls' Day", + "2021-11-10": "Potos\u00ed Day", + "2021-11-18": "Beni Day", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-01-22": "Plurinational State Foundation Day", + "2022-02-25": "Carnival in Oruro", + "2022-02-28": "Carnival", + "2022-03-01": "Carnival", + "2022-04-15": "Good Friday; La Tablada", + "2022-05-01": "Labor Day", + "2022-05-02": "Labor Day (Observed)", + "2022-05-25": "Chuquisaca Day", + "2022-06-16": "Corpus Christi", + "2022-06-21": "Aymara New Year", + "2022-07-16": "La Paz Day", + "2022-08-06": "Independence Day", + "2022-09-14": "Cochabamba Day", + "2022-09-24": "Santa Cruz Day", + "2022-10-11": "Pando Day", + "2022-10-17": "National Dignity Day", + "2022-11-02": "All Souls' Day", + "2022-11-10": "Potos\u00ed Day", + "2022-11-18": "Beni Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day (Observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (Observed)", + "2023-01-22": "Plurinational State Foundation Day", + "2023-01-23": "Plurinational State Foundation Day (Observed)", + "2023-02-17": "Carnival in Oruro", + "2023-02-20": "Carnival", + "2023-02-21": "Carnival", + "2023-04-07": "Good Friday", + "2023-04-15": "La Tablada", + "2023-05-01": "Labor Day", + "2023-05-25": "Chuquisaca Day", + "2023-06-08": "Corpus Christi", + "2023-06-21": "Aymara New Year", + "2023-07-16": "La Paz Day", + "2023-08-06": "Independence Day", + "2023-08-07": "Independence Day (Observed)", + "2023-09-14": "Cochabamba Day", + "2023-09-24": "Santa Cruz Day", + "2023-10-11": "Pando Day", + "2023-10-17": "National Dignity Day", + "2023-11-02": "All Souls' Day", + "2023-11-10": "Potos\u00ed Day", + "2023-11-18": "Beni Day", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-01-22": "Plurinational State Foundation Day", + "2024-02-09": "Carnival in Oruro", + "2024-02-12": "Carnival", + "2024-02-13": "Carnival", + "2024-03-29": "Good Friday", + "2024-04-15": "La Tablada", + "2024-05-01": "Labor Day", + "2024-05-25": "Chuquisaca Day", + "2024-05-30": "Corpus Christi", + "2024-06-21": "Aymara New Year", + "2024-07-16": "La Paz Day", + "2024-08-06": "Independence Day", + "2024-09-14": "Cochabamba Day", + "2024-09-24": "Santa Cruz Day", + "2024-10-11": "Pando Day", + "2024-10-17": "National Dignity Day", + "2024-11-02": "All Souls' Day", + "2024-11-10": "Potos\u00ed Day", + "2024-11-18": "Beni Day", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-01-22": "Plurinational State Foundation Day", + "2025-02-28": "Carnival in Oruro", + "2025-03-03": "Carnival", + "2025-03-04": "Carnival", + "2025-04-15": "La Tablada", + "2025-04-18": "Good Friday", + "2025-05-01": "Labor Day", + "2025-05-25": "Chuquisaca Day", + "2025-06-19": "Corpus Christi", + "2025-06-21": "Aymara New Year", + "2025-07-16": "La Paz Day", + "2025-08-06": "Independence Day", + "2025-09-14": "Cochabamba Day", + "2025-09-24": "Santa Cruz Day", + "2025-10-11": "Pando Day", + "2025-10-17": "National Dignity Day", + "2025-11-02": "All Souls' Day", + "2025-11-10": "Potos\u00ed Day", + "2025-11-18": "Beni Day", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-01-22": "Plurinational State Foundation Day", + "2026-02-13": "Carnival in Oruro", + "2026-02-16": "Carnival", + "2026-02-17": "Carnival", + "2026-04-03": "Good Friday", + "2026-04-15": "La Tablada", + "2026-05-01": "Labor Day", + "2026-05-25": "Chuquisaca Day", + "2026-06-04": "Corpus Christi", + "2026-06-21": "Aymara New Year", + "2026-06-22": "Aymara New Year (Observed)", + "2026-07-16": "La Paz Day", + "2026-08-06": "Independence Day", + "2026-09-14": "Cochabamba Day", + "2026-09-24": "Santa Cruz Day", + "2026-10-11": "Pando Day", + "2026-10-17": "National Dignity Day", + "2026-11-02": "All Souls' Day", + "2026-11-10": "Potos\u00ed Day", + "2026-11-18": "Beni Day", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-01-22": "Plurinational State Foundation Day", + "2027-02-05": "Carnival in Oruro", + "2027-02-08": "Carnival", + "2027-02-09": "Carnival", + "2027-03-26": "Good Friday", + "2027-04-15": "La Tablada", + "2027-05-01": "Labor Day", + "2027-05-25": "Chuquisaca Day", + "2027-05-27": "Corpus Christi", + "2027-06-21": "Aymara New Year", + "2027-07-16": "La Paz Day", + "2027-08-06": "Independence Day", + "2027-09-14": "Cochabamba Day", + "2027-09-24": "Santa Cruz Day", + "2027-10-11": "Pando Day", + "2027-10-17": "National Dignity Day", + "2027-11-02": "All Souls' Day", + "2027-11-10": "Potos\u00ed Day", + "2027-11-18": "Beni Day", + "2027-12-25": "Christmas Day", + "2028-01-01": "New Year's Day", + "2028-01-22": "Plurinational State Foundation Day", + "2028-02-25": "Carnival in Oruro", + "2028-02-28": "Carnival", + "2028-02-29": "Carnival", + "2028-04-14": "Good Friday", + "2028-04-15": "La Tablada", + "2028-05-01": "Labor Day", + "2028-05-25": "Chuquisaca Day", + "2028-06-15": "Corpus Christi", + "2028-06-21": "Aymara New Year", + "2028-07-16": "La Paz Day", + "2028-08-06": "Independence Day", + "2028-08-07": "Independence Day (Observed)", + "2028-09-14": "Cochabamba Day", + "2028-09-24": "Santa Cruz Day", + "2028-10-11": "Pando Day", + "2028-10-17": "National Dignity Day", + "2028-11-02": "All Souls' Day", + "2028-11-10": "Potos\u00ed Day", + "2028-11-18": "Beni Day", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-01-22": "Plurinational State Foundation Day", + "2029-02-09": "Carnival in Oruro", + "2029-02-12": "Carnival", + "2029-02-13": "Carnival", + "2029-03-30": "Good Friday", + "2029-04-15": "La Tablada", + "2029-05-01": "Labor Day", + "2029-05-25": "Chuquisaca Day", + "2029-05-31": "Corpus Christi", + "2029-06-21": "Aymara New Year", + "2029-07-16": "La Paz Day", + "2029-08-06": "Independence Day", + "2029-09-14": "Cochabamba Day", + "2029-09-24": "Santa Cruz Day", + "2029-10-11": "Pando Day", + "2029-10-17": "National Dignity Day", + "2029-11-02": "All Souls' Day", + "2029-11-10": "Potos\u00ed Day", + "2029-11-18": "Beni Day", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-01-22": "Plurinational State Foundation Day", + "2030-03-01": "Carnival in Oruro", + "2030-03-04": "Carnival", + "2030-03-05": "Carnival", + "2030-04-15": "La Tablada", + "2030-04-19": "Good Friday", + "2030-05-01": "Labor Day", + "2030-05-25": "Chuquisaca Day", + "2030-06-20": "Corpus Christi", + "2030-06-21": "Aymara New Year", + "2030-07-16": "La Paz Day", + "2030-08-06": "Independence Day", + "2030-09-14": "Cochabamba Day", + "2030-09-24": "Santa Cruz Day", + "2030-10-11": "Pando Day", + "2030-10-17": "National Dignity Day", + "2030-11-02": "All Souls' Day", + "2030-11-10": "Potos\u00ed Day", + "2030-11-18": "Beni Day", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-01-22": "Plurinational State Foundation Day", + "2031-02-21": "Carnival in Oruro", + "2031-02-24": "Carnival", + "2031-02-25": "Carnival", + "2031-04-11": "Good Friday", + "2031-04-15": "La Tablada", + "2031-05-01": "Labor Day", + "2031-05-25": "Chuquisaca Day", + "2031-06-12": "Corpus Christi", + "2031-06-21": "Aymara New Year", + "2031-07-16": "La Paz Day", + "2031-08-06": "Independence Day", + "2031-09-14": "Cochabamba Day", + "2031-09-24": "Santa Cruz Day", + "2031-10-11": "Pando Day", + "2031-10-17": "National Dignity Day", + "2031-11-02": "All Souls' Day", + "2031-11-10": "Potos\u00ed Day", + "2031-11-18": "Beni Day", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-01-22": "Plurinational State Foundation Day", + "2032-02-06": "Carnival in Oruro", + "2032-02-09": "Carnival", + "2032-02-10": "Carnival", + "2032-03-26": "Good Friday", + "2032-04-15": "La Tablada", + "2032-05-01": "Labor Day", + "2032-05-25": "Chuquisaca Day", + "2032-05-27": "Corpus Christi", + "2032-06-21": "Aymara New Year", + "2032-07-16": "La Paz Day", + "2032-08-06": "Independence Day", + "2032-09-14": "Cochabamba Day", + "2032-09-24": "Santa Cruz Day", + "2032-10-11": "Pando Day", + "2032-10-17": "National Dignity Day", + "2032-11-02": "All Souls' Day", + "2032-11-10": "Potos\u00ed Day", + "2032-11-18": "Beni Day", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-01-22": "Plurinational State Foundation Day", + "2033-02-25": "Carnival in Oruro", + "2033-02-28": "Carnival", + "2033-03-01": "Carnival", + "2033-04-15": "Good Friday; La Tablada", + "2033-05-01": "Labor Day", + "2033-05-02": "Labor Day (Observed)", + "2033-05-25": "Chuquisaca Day", + "2033-06-16": "Corpus Christi", + "2033-06-21": "Aymara New Year", + "2033-07-16": "La Paz Day", + "2033-08-06": "Independence Day", + "2033-09-14": "Cochabamba Day", + "2033-09-24": "Santa Cruz Day", + "2033-10-11": "Pando Day", + "2033-10-17": "National Dignity Day", + "2033-11-02": "All Souls' Day", + "2033-11-10": "Potos\u00ed Day", + "2033-11-18": "Beni Day", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day (Observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-01-22": "Plurinational State Foundation Day", + "2034-01-23": "Plurinational State Foundation Day (Observed)", + "2034-02-17": "Carnival in Oruro", + "2034-02-20": "Carnival", + "2034-02-21": "Carnival", + "2034-04-07": "Good Friday", + "2034-04-15": "La Tablada", + "2034-05-01": "Labor Day", + "2034-05-25": "Chuquisaca Day", + "2034-06-08": "Corpus Christi", + "2034-06-21": "Aymara New Year", + "2034-07-16": "La Paz Day", + "2034-08-06": "Independence Day", + "2034-08-07": "Independence Day (Observed)", + "2034-09-14": "Cochabamba Day", + "2034-09-24": "Santa Cruz Day", + "2034-10-11": "Pando Day", + "2034-10-17": "National Dignity Day", + "2034-11-02": "All Souls' Day", + "2034-11-10": "Potos\u00ed Day", + "2034-11-18": "Beni Day", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-01-22": "Plurinational State Foundation Day", + "2035-02-02": "Carnival in Oruro", + "2035-02-05": "Carnival", + "2035-02-06": "Carnival", + "2035-03-23": "Good Friday", + "2035-04-15": "La Tablada", + "2035-05-01": "Labor Day", + "2035-05-24": "Corpus Christi", + "2035-05-25": "Chuquisaca Day", + "2035-06-21": "Aymara New Year", + "2035-07-16": "La Paz Day", + "2035-08-06": "Independence Day", + "2035-09-14": "Cochabamba Day", + "2035-09-24": "Santa Cruz Day", + "2035-10-11": "Pando Day", + "2035-10-17": "National Dignity Day", + "2035-11-02": "All Souls' Day", + "2035-11-10": "Potos\u00ed Day", + "2035-11-18": "Beni Day", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-01-22": "Plurinational State Foundation Day", + "2036-02-22": "Carnival in Oruro", + "2036-02-25": "Carnival", + "2036-02-26": "Carnival", + "2036-04-11": "Good Friday", + "2036-04-15": "La Tablada", + "2036-05-01": "Labor Day", + "2036-05-25": "Chuquisaca Day", + "2036-06-12": "Corpus Christi", + "2036-06-21": "Aymara New Year", + "2036-07-16": "La Paz Day", + "2036-08-06": "Independence Day", + "2036-09-14": "Cochabamba Day", + "2036-09-24": "Santa Cruz Day", + "2036-10-11": "Pando Day", + "2036-10-17": "National Dignity Day", + "2036-11-02": "All Souls' Day", + "2036-11-10": "Potos\u00ed Day", + "2036-11-18": "Beni Day", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-22": "Plurinational State Foundation Day", + "2037-02-13": "Carnival in Oruro", + "2037-02-16": "Carnival", + "2037-02-17": "Carnival", + "2037-04-03": "Good Friday", + "2037-04-15": "La Tablada", + "2037-05-01": "Labor Day", + "2037-05-25": "Chuquisaca Day", + "2037-06-04": "Corpus Christi", + "2037-06-21": "Aymara New Year", + "2037-06-22": "Aymara New Year (Observed)", + "2037-07-16": "La Paz Day", + "2037-08-06": "Independence Day", + "2037-09-14": "Cochabamba Day", + "2037-09-24": "Santa Cruz Day", + "2037-10-11": "Pando Day", + "2037-10-17": "National Dignity Day", + "2037-11-02": "All Souls' Day", + "2037-11-10": "Potos\u00ed Day", + "2037-11-18": "Beni Day", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-01-22": "Plurinational State Foundation Day", + "2038-03-05": "Carnival in Oruro", + "2038-03-08": "Carnival", + "2038-03-09": "Carnival", + "2038-04-15": "La Tablada", + "2038-04-23": "Good Friday", + "2038-05-01": "Labor Day", + "2038-05-25": "Chuquisaca Day", + "2038-06-21": "Aymara New Year", + "2038-06-24": "Corpus Christi", + "2038-07-16": "La Paz Day", + "2038-08-06": "Independence Day", + "2038-09-14": "Cochabamba Day", + "2038-09-24": "Santa Cruz Day", + "2038-10-11": "Pando Day", + "2038-10-17": "National Dignity Day", + "2038-11-02": "All Souls' Day", + "2038-11-10": "Potos\u00ed Day", + "2038-11-18": "Beni Day", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-01-22": "Plurinational State Foundation Day", + "2039-02-18": "Carnival in Oruro", + "2039-02-21": "Carnival", + "2039-02-22": "Carnival", + "2039-04-08": "Good Friday", + "2039-04-15": "La Tablada", + "2039-05-01": "Labor Day", + "2039-05-02": "Labor Day (Observed)", + "2039-05-25": "Chuquisaca Day", + "2039-06-09": "Corpus Christi", + "2039-06-21": "Aymara New Year", + "2039-07-16": "La Paz Day", + "2039-08-06": "Independence Day", + "2039-09-14": "Cochabamba Day", + "2039-09-24": "Santa Cruz Day", + "2039-10-11": "Pando Day", + "2039-10-17": "National Dignity Day", + "2039-11-02": "All Souls' Day", + "2039-11-10": "Potos\u00ed Day", + "2039-11-18": "Beni Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Christmas Day (Observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (Observed)", + "2040-01-22": "Plurinational State Foundation Day", + "2040-01-23": "Plurinational State Foundation Day (Observed)", + "2040-02-10": "Carnival in Oruro", + "2040-02-13": "Carnival", + "2040-02-14": "Carnival", + "2040-03-30": "Good Friday", + "2040-04-15": "La Tablada", + "2040-05-01": "Labor Day", + "2040-05-25": "Chuquisaca Day", + "2040-05-31": "Corpus Christi", + "2040-06-21": "Aymara New Year", + "2040-07-16": "La Paz Day", + "2040-08-06": "Independence Day", + "2040-09-14": "Cochabamba Day", + "2040-09-24": "Santa Cruz Day", + "2040-10-11": "Pando Day", + "2040-10-17": "National Dignity Day", + "2040-11-02": "All Souls' Day", + "2040-11-10": "Potos\u00ed Day", + "2040-11-18": "Beni Day", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-01-22": "Plurinational State Foundation Day", + "2041-03-01": "Carnival in Oruro", + "2041-03-04": "Carnival", + "2041-03-05": "Carnival", + "2041-04-15": "La Tablada", + "2041-04-19": "Good Friday", + "2041-05-01": "Labor Day", + "2041-05-25": "Chuquisaca Day", + "2041-06-20": "Corpus Christi", + "2041-06-21": "Aymara New Year", + "2041-07-16": "La Paz Day", + "2041-08-06": "Independence Day", + "2041-09-14": "Cochabamba Day", + "2041-09-24": "Santa Cruz Day", + "2041-10-11": "Pando Day", + "2041-10-17": "National Dignity Day", + "2041-11-02": "All Souls' Day", + "2041-11-10": "Potos\u00ed Day", + "2041-11-18": "Beni Day", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-01-22": "Plurinational State Foundation Day", + "2042-02-14": "Carnival in Oruro", + "2042-02-17": "Carnival", + "2042-02-18": "Carnival", + "2042-04-04": "Good Friday", + "2042-04-15": "La Tablada", + "2042-05-01": "Labor Day", + "2042-05-25": "Chuquisaca Day", + "2042-06-05": "Corpus Christi", + "2042-06-21": "Aymara New Year", + "2042-07-16": "La Paz Day", + "2042-08-06": "Independence Day", + "2042-09-14": "Cochabamba Day", + "2042-09-24": "Santa Cruz Day", + "2042-10-11": "Pando Day", + "2042-10-17": "National Dignity Day", + "2042-11-02": "All Souls' Day", + "2042-11-10": "Potos\u00ed Day", + "2042-11-18": "Beni Day", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-01-22": "Plurinational State Foundation Day", + "2043-02-06": "Carnival in Oruro", + "2043-02-09": "Carnival", + "2043-02-10": "Carnival", + "2043-03-27": "Good Friday", + "2043-04-15": "La Tablada", + "2043-05-01": "Labor Day", + "2043-05-25": "Chuquisaca Day", + "2043-05-28": "Corpus Christi", + "2043-06-21": "Aymara New Year", + "2043-06-22": "Aymara New Year (Observed)", + "2043-07-16": "La Paz Day", + "2043-08-06": "Independence Day", + "2043-09-14": "Cochabamba Day", + "2043-09-24": "Santa Cruz Day", + "2043-10-11": "Pando Day", + "2043-10-17": "National Dignity Day", + "2043-11-02": "All Souls' Day", + "2043-11-10": "Potos\u00ed Day", + "2043-11-18": "Beni Day", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-01-22": "Plurinational State Foundation Day", + "2044-02-26": "Carnival in Oruro", + "2044-02-29": "Carnival", + "2044-03-01": "Carnival", + "2044-04-15": "Good Friday; La Tablada", + "2044-05-01": "Labor Day", + "2044-05-02": "Labor Day (Observed)", + "2044-05-25": "Chuquisaca Day", + "2044-06-16": "Corpus Christi", + "2044-06-21": "Aymara New Year", + "2044-07-16": "La Paz Day", + "2044-08-06": "Independence Day", + "2044-09-14": "Cochabamba Day", + "2044-09-24": "Santa Cruz Day", + "2044-10-11": "Pando Day", + "2044-10-17": "National Dignity Day", + "2044-11-02": "All Souls' Day", + "2044-11-10": "Potos\u00ed Day", + "2044-11-18": "Beni Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day (Observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (Observed)", + "2045-01-22": "Plurinational State Foundation Day", + "2045-01-23": "Plurinational State Foundation Day (Observed)", + "2045-02-17": "Carnival in Oruro", + "2045-02-20": "Carnival", + "2045-02-21": "Carnival", + "2045-04-07": "Good Friday", + "2045-04-15": "La Tablada", + "2045-05-01": "Labor Day", + "2045-05-25": "Chuquisaca Day", + "2045-06-08": "Corpus Christi", + "2045-06-21": "Aymara New Year", + "2045-07-16": "La Paz Day", + "2045-08-06": "Independence Day", + "2045-08-07": "Independence Day (Observed)", + "2045-09-14": "Cochabamba Day", + "2045-09-24": "Santa Cruz Day", + "2045-10-11": "Pando Day", + "2045-10-17": "National Dignity Day", + "2045-11-02": "All Souls' Day", + "2045-11-10": "Potos\u00ed Day", + "2045-11-18": "Beni Day", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-01-22": "Plurinational State Foundation Day", + "2046-02-02": "Carnival in Oruro", + "2046-02-05": "Carnival", + "2046-02-06": "Carnival", + "2046-03-23": "Good Friday", + "2046-04-15": "La Tablada", + "2046-05-01": "Labor Day", + "2046-05-24": "Corpus Christi", + "2046-05-25": "Chuquisaca Day", + "2046-06-21": "Aymara New Year", + "2046-07-16": "La Paz Day", + "2046-08-06": "Independence Day", + "2046-09-14": "Cochabamba Day", + "2046-09-24": "Santa Cruz Day", + "2046-10-11": "Pando Day", + "2046-10-17": "National Dignity Day", + "2046-11-02": "All Souls' Day", + "2046-11-10": "Potos\u00ed Day", + "2046-11-18": "Beni Day", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-22": "Plurinational State Foundation Day", + "2047-02-22": "Carnival in Oruro", + "2047-02-25": "Carnival", + "2047-02-26": "Carnival", + "2047-04-12": "Good Friday", + "2047-04-15": "La Tablada", + "2047-05-01": "Labor Day", + "2047-05-25": "Chuquisaca Day", + "2047-06-13": "Corpus Christi", + "2047-06-21": "Aymara New Year", + "2047-07-16": "La Paz Day", + "2047-08-06": "Independence Day", + "2047-09-14": "Cochabamba Day", + "2047-09-24": "Santa Cruz Day", + "2047-10-11": "Pando Day", + "2047-10-17": "National Dignity Day", + "2047-11-02": "All Souls' Day", + "2047-11-10": "Potos\u00ed Day", + "2047-11-18": "Beni Day", + "2047-12-25": "Christmas Day", + "2048-01-01": "New Year's Day", + "2048-01-22": "Plurinational State Foundation Day", + "2048-02-14": "Carnival in Oruro", + "2048-02-17": "Carnival", + "2048-02-18": "Carnival", + "2048-04-03": "Good Friday", + "2048-04-15": "La Tablada", + "2048-05-01": "Labor Day", + "2048-05-25": "Chuquisaca Day", + "2048-06-04": "Corpus Christi", + "2048-06-21": "Aymara New Year", + "2048-06-22": "Aymara New Year (Observed)", + "2048-07-16": "La Paz Day", + "2048-08-06": "Independence Day", + "2048-09-14": "Cochabamba Day", + "2048-09-24": "Santa Cruz Day", + "2048-10-11": "Pando Day", + "2048-10-17": "National Dignity Day", + "2048-11-02": "All Souls' Day", + "2048-11-10": "Potos\u00ed Day", + "2048-11-18": "Beni Day", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-01-22": "Plurinational State Foundation Day", + "2049-02-26": "Carnival in Oruro", + "2049-03-01": "Carnival", + "2049-03-02": "Carnival", + "2049-04-15": "La Tablada", + "2049-04-16": "Good Friday", + "2049-05-01": "Labor Day", + "2049-05-25": "Chuquisaca Day", + "2049-06-17": "Corpus Christi", + "2049-06-21": "Aymara New Year", + "2049-07-16": "La Paz Day", + "2049-08-06": "Independence Day", + "2049-09-14": "Cochabamba Day", + "2049-09-24": "Santa Cruz Day", + "2049-10-11": "Pando Day", + "2049-10-17": "National Dignity Day", + "2049-11-02": "All Souls' Day", + "2049-11-10": "Potos\u00ed Day", + "2049-11-18": "Beni Day", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-01-22": "Plurinational State Foundation Day", + "2050-02-18": "Carnival in Oruro", + "2050-02-21": "Carnival", + "2050-02-22": "Carnival", + "2050-04-08": "Good Friday", + "2050-04-15": "La Tablada", + "2050-05-01": "Labor Day", + "2050-05-02": "Labor Day (Observed)", + "2050-05-25": "Chuquisaca Day", + "2050-06-09": "Corpus Christi", + "2050-06-21": "Aymara New Year", + "2050-07-16": "La Paz Day", + "2050-08-06": "Independence Day", + "2050-09-14": "Cochabamba Day", + "2050-09-24": "Santa Cruz Day", + "2050-10-11": "Pando Day", + "2050-10-17": "National Dignity Day", + "2050-11-02": "All Souls' Day", + "2050-11-10": "Potos\u00ed Day", + "2050-11-18": "Beni Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day (Observed)" +} diff --git a/snapshots/countries/BR.json b/snapshots/countries/BR.json new file mode 100644 index 000000000..93029ed67 --- /dev/null +++ b/snapshots/countries/BR.json @@ -0,0 +1,3542 @@ +{ + "1950-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1950-02-20": "Carnaval", + "1950-02-21": "Carnaval", + "1950-02-22": "In\u00edcio da Quaresma", + "1950-04-07": "Sexta-feira Santa", + "1950-04-21": "Tiradentes", + "1950-05-01": "Dia do Trabalhador", + "1950-06-08": "Corpus Christi", + "1950-09-07": "Independ\u00eancia do Brasil", + "1950-10-28": "Dia do Servidor P\u00fablico", + "1950-11-02": "Finados", + "1950-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1950-12-24": "V\u00e9spera de Natal", + "1950-12-25": "Natal", + "1950-12-31": "V\u00e9spera de Ano-Novo", + "1951-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1951-02-05": "Carnaval", + "1951-02-06": "Carnaval", + "1951-02-07": "In\u00edcio da Quaresma", + "1951-03-23": "Sexta-feira Santa", + "1951-04-21": "Tiradentes", + "1951-05-01": "Dia do Trabalhador", + "1951-05-24": "Corpus Christi", + "1951-09-07": "Independ\u00eancia do Brasil", + "1951-10-28": "Dia do Servidor P\u00fablico", + "1951-11-02": "Finados", + "1951-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1951-12-24": "V\u00e9spera de Natal", + "1951-12-25": "Natal", + "1951-12-31": "V\u00e9spera de Ano-Novo", + "1952-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1952-02-25": "Carnaval", + "1952-02-26": "Carnaval", + "1952-02-27": "In\u00edcio da Quaresma", + "1952-04-11": "Sexta-feira Santa", + "1952-04-21": "Tiradentes", + "1952-05-01": "Dia do Trabalhador", + "1952-06-12": "Corpus Christi", + "1952-09-07": "Independ\u00eancia do Brasil", + "1952-10-28": "Dia do Servidor P\u00fablico", + "1952-11-02": "Finados", + "1952-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1952-12-24": "V\u00e9spera de Natal", + "1952-12-25": "Natal", + "1952-12-31": "V\u00e9spera de Ano-Novo", + "1953-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1953-02-16": "Carnaval", + "1953-02-17": "Carnaval", + "1953-02-18": "In\u00edcio da Quaresma", + "1953-04-03": "Sexta-feira Santa", + "1953-04-21": "Tiradentes", + "1953-05-01": "Dia do Trabalhador", + "1953-06-04": "Corpus Christi", + "1953-09-07": "Independ\u00eancia do Brasil", + "1953-10-28": "Dia do Servidor P\u00fablico", + "1953-11-02": "Finados", + "1953-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1953-12-24": "V\u00e9spera de Natal", + "1953-12-25": "Natal", + "1953-12-31": "V\u00e9spera de Ano-Novo", + "1954-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1954-03-01": "Carnaval", + "1954-03-02": "Carnaval", + "1954-03-03": "In\u00edcio da Quaresma", + "1954-04-16": "Sexta-feira Santa", + "1954-04-21": "Tiradentes", + "1954-05-01": "Dia do Trabalhador", + "1954-06-17": "Corpus Christi", + "1954-09-07": "Independ\u00eancia do Brasil", + "1954-10-28": "Dia do Servidor P\u00fablico", + "1954-11-02": "Finados", + "1954-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1954-12-24": "V\u00e9spera de Natal", + "1954-12-25": "Natal", + "1954-12-31": "V\u00e9spera de Ano-Novo", + "1955-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1955-02-21": "Carnaval", + "1955-02-22": "Carnaval", + "1955-02-23": "In\u00edcio da Quaresma", + "1955-04-08": "Sexta-feira Santa", + "1955-04-21": "Tiradentes", + "1955-05-01": "Dia do Trabalhador", + "1955-06-09": "Corpus Christi", + "1955-09-07": "Independ\u00eancia do Brasil", + "1955-10-28": "Dia do Servidor P\u00fablico", + "1955-11-02": "Finados", + "1955-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1955-12-24": "V\u00e9spera de Natal", + "1955-12-25": "Natal", + "1955-12-31": "V\u00e9spera de Ano-Novo", + "1956-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1956-02-13": "Carnaval", + "1956-02-14": "Carnaval", + "1956-02-15": "In\u00edcio da Quaresma", + "1956-03-30": "Sexta-feira Santa", + "1956-04-21": "Tiradentes", + "1956-05-01": "Dia do Trabalhador", + "1956-05-31": "Corpus Christi", + "1956-09-07": "Independ\u00eancia do Brasil", + "1956-10-28": "Dia do Servidor P\u00fablico", + "1956-11-02": "Finados", + "1956-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1956-12-24": "V\u00e9spera de Natal", + "1956-12-25": "Natal", + "1956-12-31": "V\u00e9spera de Ano-Novo", + "1957-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1957-03-04": "Carnaval", + "1957-03-05": "Carnaval", + "1957-03-06": "In\u00edcio da Quaresma", + "1957-04-19": "Sexta-feira Santa", + "1957-04-21": "Tiradentes", + "1957-05-01": "Dia do Trabalhador", + "1957-06-20": "Corpus Christi", + "1957-09-07": "Independ\u00eancia do Brasil", + "1957-10-28": "Dia do Servidor P\u00fablico", + "1957-11-02": "Finados", + "1957-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1957-12-24": "V\u00e9spera de Natal", + "1957-12-25": "Natal", + "1957-12-31": "V\u00e9spera de Ano-Novo", + "1958-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1958-02-17": "Carnaval", + "1958-02-18": "Carnaval", + "1958-02-19": "In\u00edcio da Quaresma", + "1958-04-04": "Sexta-feira Santa", + "1958-04-21": "Tiradentes", + "1958-05-01": "Dia do Trabalhador", + "1958-06-05": "Corpus Christi", + "1958-09-07": "Independ\u00eancia do Brasil", + "1958-10-28": "Dia do Servidor P\u00fablico", + "1958-11-02": "Finados", + "1958-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1958-12-24": "V\u00e9spera de Natal", + "1958-12-25": "Natal", + "1958-12-31": "V\u00e9spera de Ano-Novo", + "1959-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1959-02-09": "Carnaval", + "1959-02-10": "Carnaval", + "1959-02-11": "In\u00edcio da Quaresma", + "1959-03-27": "Sexta-feira Santa", + "1959-04-21": "Tiradentes", + "1959-05-01": "Dia do Trabalhador", + "1959-05-28": "Corpus Christi", + "1959-09-07": "Independ\u00eancia do Brasil", + "1959-10-28": "Dia do Servidor P\u00fablico", + "1959-11-02": "Finados", + "1959-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1959-12-24": "V\u00e9spera de Natal", + "1959-12-25": "Natal", + "1959-12-31": "V\u00e9spera de Ano-Novo", + "1960-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1960-02-29": "Carnaval", + "1960-03-01": "Carnaval", + "1960-03-02": "In\u00edcio da Quaresma", + "1960-04-15": "Sexta-feira Santa", + "1960-04-21": "Tiradentes", + "1960-05-01": "Dia do Trabalhador", + "1960-06-16": "Corpus Christi", + "1960-09-07": "Independ\u00eancia do Brasil", + "1960-10-28": "Dia do Servidor P\u00fablico", + "1960-11-02": "Finados", + "1960-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1960-12-24": "V\u00e9spera de Natal", + "1960-12-25": "Natal", + "1960-12-31": "V\u00e9spera de Ano-Novo", + "1961-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1961-02-13": "Carnaval", + "1961-02-14": "Carnaval", + "1961-02-15": "In\u00edcio da Quaresma", + "1961-03-31": "Sexta-feira Santa", + "1961-04-21": "Tiradentes", + "1961-05-01": "Dia do Trabalhador", + "1961-06-01": "Corpus Christi", + "1961-09-07": "Independ\u00eancia do Brasil", + "1961-10-28": "Dia do Servidor P\u00fablico", + "1961-11-02": "Finados", + "1961-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1961-12-24": "V\u00e9spera de Natal", + "1961-12-25": "Natal", + "1961-12-31": "V\u00e9spera de Ano-Novo", + "1962-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1962-03-05": "Carnaval", + "1962-03-06": "Carnaval", + "1962-03-07": "In\u00edcio da Quaresma", + "1962-04-20": "Sexta-feira Santa", + "1962-04-21": "Tiradentes", + "1962-05-01": "Dia do Trabalhador", + "1962-06-21": "Corpus Christi", + "1962-09-07": "Independ\u00eancia do Brasil", + "1962-10-28": "Dia do Servidor P\u00fablico", + "1962-11-02": "Finados", + "1962-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1962-12-24": "V\u00e9spera de Natal", + "1962-12-25": "Natal", + "1962-12-31": "V\u00e9spera de Ano-Novo", + "1963-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1963-02-25": "Carnaval", + "1963-02-26": "Carnaval", + "1963-02-27": "In\u00edcio da Quaresma", + "1963-04-12": "Sexta-feira Santa", + "1963-04-21": "Tiradentes", + "1963-05-01": "Dia do Trabalhador", + "1963-06-13": "Corpus Christi", + "1963-09-07": "Independ\u00eancia do Brasil", + "1963-10-28": "Dia do Servidor P\u00fablico", + "1963-11-02": "Finados", + "1963-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1963-12-24": "V\u00e9spera de Natal", + "1963-12-25": "Natal", + "1963-12-31": "V\u00e9spera de Ano-Novo", + "1964-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1964-02-10": "Carnaval", + "1964-02-11": "Carnaval", + "1964-02-12": "In\u00edcio da Quaresma", + "1964-03-27": "Sexta-feira Santa", + "1964-04-21": "Tiradentes", + "1964-05-01": "Dia do Trabalhador", + "1964-05-28": "Corpus Christi", + "1964-09-07": "Independ\u00eancia do Brasil", + "1964-10-28": "Dia do Servidor P\u00fablico", + "1964-11-02": "Finados", + "1964-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1964-12-24": "V\u00e9spera de Natal", + "1964-12-25": "Natal", + "1964-12-31": "V\u00e9spera de Ano-Novo", + "1965-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1965-03-01": "Carnaval", + "1965-03-02": "Carnaval", + "1965-03-03": "In\u00edcio da Quaresma", + "1965-04-16": "Sexta-feira Santa", + "1965-04-21": "Tiradentes", + "1965-05-01": "Dia do Trabalhador", + "1965-06-17": "Corpus Christi", + "1965-09-07": "Independ\u00eancia do Brasil", + "1965-10-28": "Dia do Servidor P\u00fablico", + "1965-11-02": "Finados", + "1965-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1965-12-24": "V\u00e9spera de Natal", + "1965-12-25": "Natal", + "1965-12-31": "V\u00e9spera de Ano-Novo", + "1966-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1966-02-21": "Carnaval", + "1966-02-22": "Carnaval", + "1966-02-23": "In\u00edcio da Quaresma", + "1966-04-08": "Sexta-feira Santa", + "1966-04-21": "Tiradentes", + "1966-05-01": "Dia do Trabalhador", + "1966-06-09": "Corpus Christi", + "1966-09-07": "Independ\u00eancia do Brasil", + "1966-10-28": "Dia do Servidor P\u00fablico", + "1966-11-02": "Finados", + "1966-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1966-12-24": "V\u00e9spera de Natal", + "1966-12-25": "Natal", + "1966-12-31": "V\u00e9spera de Ano-Novo", + "1967-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1967-02-06": "Carnaval", + "1967-02-07": "Carnaval", + "1967-02-08": "In\u00edcio da Quaresma", + "1967-03-24": "Sexta-feira Santa", + "1967-04-21": "Tiradentes", + "1967-05-01": "Dia do Trabalhador", + "1967-05-25": "Corpus Christi", + "1967-09-07": "Independ\u00eancia do Brasil", + "1967-10-28": "Dia do Servidor P\u00fablico", + "1967-11-02": "Finados", + "1967-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1967-12-24": "V\u00e9spera de Natal", + "1967-12-25": "Natal", + "1967-12-31": "V\u00e9spera de Ano-Novo", + "1968-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1968-02-26": "Carnaval", + "1968-02-27": "Carnaval", + "1968-02-28": "In\u00edcio da Quaresma", + "1968-04-12": "Sexta-feira Santa", + "1968-04-21": "Tiradentes", + "1968-05-01": "Dia do Trabalhador", + "1968-06-13": "Corpus Christi", + "1968-09-07": "Independ\u00eancia do Brasil", + "1968-10-28": "Dia do Servidor P\u00fablico", + "1968-11-02": "Finados", + "1968-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1968-12-24": "V\u00e9spera de Natal", + "1968-12-25": "Natal", + "1968-12-31": "V\u00e9spera de Ano-Novo", + "1969-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1969-02-17": "Carnaval", + "1969-02-18": "Carnaval", + "1969-02-19": "In\u00edcio da Quaresma", + "1969-04-04": "Sexta-feira Santa", + "1969-04-21": "Tiradentes", + "1969-05-01": "Dia do Trabalhador", + "1969-06-05": "Corpus Christi", + "1969-09-07": "Independ\u00eancia do Brasil", + "1969-10-28": "Dia do Servidor P\u00fablico", + "1969-11-02": "Finados", + "1969-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1969-12-24": "V\u00e9spera de Natal", + "1969-12-25": "Natal", + "1969-12-31": "V\u00e9spera de Ano-Novo", + "1970-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1970-02-09": "Carnaval", + "1970-02-10": "Carnaval", + "1970-02-11": "In\u00edcio da Quaresma", + "1970-03-27": "Sexta-feira Santa", + "1970-04-21": "Tiradentes", + "1970-05-01": "Dia do Trabalhador", + "1970-05-28": "Corpus Christi", + "1970-09-07": "Independ\u00eancia do Brasil", + "1970-10-28": "Dia do Servidor P\u00fablico", + "1970-11-02": "Finados", + "1970-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1970-12-24": "V\u00e9spera de Natal", + "1970-12-25": "Natal", + "1970-12-31": "V\u00e9spera de Ano-Novo", + "1971-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1971-02-22": "Carnaval", + "1971-02-23": "Carnaval", + "1971-02-24": "In\u00edcio da Quaresma", + "1971-04-09": "Sexta-feira Santa", + "1971-04-21": "Tiradentes", + "1971-05-01": "Dia do Trabalhador", + "1971-06-10": "Corpus Christi", + "1971-09-07": "Independ\u00eancia do Brasil", + "1971-10-28": "Dia do Servidor P\u00fablico", + "1971-11-02": "Finados", + "1971-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1971-12-24": "V\u00e9spera de Natal", + "1971-12-25": "Natal", + "1971-12-31": "V\u00e9spera de Ano-Novo", + "1972-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1972-02-14": "Carnaval", + "1972-02-15": "Carnaval", + "1972-02-16": "In\u00edcio da Quaresma", + "1972-03-31": "Sexta-feira Santa", + "1972-04-21": "Tiradentes", + "1972-05-01": "Dia do Trabalhador", + "1972-06-01": "Corpus Christi", + "1972-09-07": "Independ\u00eancia do Brasil", + "1972-10-28": "Dia do Servidor P\u00fablico", + "1972-11-02": "Finados", + "1972-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1972-12-24": "V\u00e9spera de Natal", + "1972-12-25": "Natal", + "1972-12-31": "V\u00e9spera de Ano-Novo", + "1973-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1973-03-05": "Carnaval", + "1973-03-06": "Carnaval", + "1973-03-07": "In\u00edcio da Quaresma", + "1973-04-20": "Sexta-feira Santa", + "1973-04-21": "Tiradentes", + "1973-05-01": "Dia do Trabalhador", + "1973-06-21": "Corpus Christi", + "1973-09-07": "Independ\u00eancia do Brasil", + "1973-10-28": "Dia do Servidor P\u00fablico", + "1973-11-02": "Finados", + "1973-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1973-12-24": "V\u00e9spera de Natal", + "1973-12-25": "Natal", + "1973-12-31": "V\u00e9spera de Ano-Novo", + "1974-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1974-02-25": "Carnaval", + "1974-02-26": "Carnaval", + "1974-02-27": "In\u00edcio da Quaresma", + "1974-04-12": "Sexta-feira Santa", + "1974-04-21": "Tiradentes", + "1974-05-01": "Dia do Trabalhador", + "1974-06-13": "Corpus Christi", + "1974-09-07": "Independ\u00eancia do Brasil", + "1974-10-28": "Dia do Servidor P\u00fablico", + "1974-11-02": "Finados", + "1974-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1974-12-24": "V\u00e9spera de Natal", + "1974-12-25": "Natal", + "1974-12-31": "V\u00e9spera de Ano-Novo", + "1975-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1975-02-10": "Carnaval", + "1975-02-11": "Carnaval", + "1975-02-12": "In\u00edcio da Quaresma", + "1975-03-28": "Sexta-feira Santa", + "1975-04-21": "Tiradentes", + "1975-05-01": "Dia do Trabalhador", + "1975-05-29": "Corpus Christi", + "1975-09-07": "Independ\u00eancia do Brasil", + "1975-10-28": "Dia do Servidor P\u00fablico", + "1975-11-02": "Finados", + "1975-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1975-12-24": "V\u00e9spera de Natal", + "1975-12-25": "Natal", + "1975-12-31": "V\u00e9spera de Ano-Novo", + "1976-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1976-03-01": "Carnaval", + "1976-03-02": "Carnaval", + "1976-03-03": "In\u00edcio da Quaresma", + "1976-04-16": "Sexta-feira Santa", + "1976-04-21": "Tiradentes", + "1976-05-01": "Dia do Trabalhador", + "1976-06-17": "Corpus Christi", + "1976-09-07": "Independ\u00eancia do Brasil", + "1976-10-28": "Dia do Servidor P\u00fablico", + "1976-11-02": "Finados", + "1976-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1976-12-24": "V\u00e9spera de Natal", + "1976-12-25": "Natal", + "1976-12-31": "V\u00e9spera de Ano-Novo", + "1977-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1977-02-21": "Carnaval", + "1977-02-22": "Carnaval", + "1977-02-23": "In\u00edcio da Quaresma", + "1977-04-08": "Sexta-feira Santa", + "1977-04-21": "Tiradentes", + "1977-05-01": "Dia do Trabalhador", + "1977-06-09": "Corpus Christi", + "1977-09-07": "Independ\u00eancia do Brasil", + "1977-10-28": "Dia do Servidor P\u00fablico", + "1977-11-02": "Finados", + "1977-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1977-12-24": "V\u00e9spera de Natal", + "1977-12-25": "Natal", + "1977-12-31": "V\u00e9spera de Ano-Novo", + "1978-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1978-02-06": "Carnaval", + "1978-02-07": "Carnaval", + "1978-02-08": "In\u00edcio da Quaresma", + "1978-03-24": "Sexta-feira Santa", + "1978-04-21": "Tiradentes", + "1978-05-01": "Dia do Trabalhador", + "1978-05-25": "Corpus Christi", + "1978-09-07": "Independ\u00eancia do Brasil", + "1978-10-28": "Dia do Servidor P\u00fablico", + "1978-11-02": "Finados", + "1978-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1978-12-24": "V\u00e9spera de Natal", + "1978-12-25": "Natal", + "1978-12-31": "V\u00e9spera de Ano-Novo", + "1979-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1979-02-26": "Carnaval", + "1979-02-27": "Carnaval", + "1979-02-28": "In\u00edcio da Quaresma", + "1979-04-13": "Sexta-feira Santa", + "1979-04-21": "Tiradentes", + "1979-05-01": "Dia do Trabalhador", + "1979-06-14": "Corpus Christi", + "1979-09-07": "Independ\u00eancia do Brasil", + "1979-10-28": "Dia do Servidor P\u00fablico", + "1979-11-02": "Finados", + "1979-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1979-12-24": "V\u00e9spera de Natal", + "1979-12-25": "Natal", + "1979-12-31": "V\u00e9spera de Ano-Novo", + "1980-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1980-02-18": "Carnaval", + "1980-02-19": "Carnaval", + "1980-02-20": "In\u00edcio da Quaresma", + "1980-04-04": "Sexta-feira Santa", + "1980-04-21": "Tiradentes", + "1980-05-01": "Dia do Trabalhador", + "1980-06-05": "Corpus Christi", + "1980-09-07": "Independ\u00eancia do Brasil", + "1980-10-12": "Nossa Senhora Aparecida", + "1980-10-28": "Dia do Servidor P\u00fablico", + "1980-11-02": "Finados", + "1980-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1980-12-24": "V\u00e9spera de Natal", + "1980-12-25": "Natal", + "1980-12-31": "V\u00e9spera de Ano-Novo", + "1981-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1981-03-02": "Carnaval", + "1981-03-03": "Carnaval", + "1981-03-04": "In\u00edcio da Quaresma", + "1981-04-17": "Sexta-feira Santa", + "1981-04-21": "Tiradentes", + "1981-05-01": "Dia do Trabalhador", + "1981-06-18": "Corpus Christi", + "1981-09-07": "Independ\u00eancia do Brasil", + "1981-10-12": "Nossa Senhora Aparecida", + "1981-10-28": "Dia do Servidor P\u00fablico", + "1981-11-02": "Finados", + "1981-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1981-12-24": "V\u00e9spera de Natal", + "1981-12-25": "Natal", + "1981-12-31": "V\u00e9spera de Ano-Novo", + "1982-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1982-02-22": "Carnaval", + "1982-02-23": "Carnaval", + "1982-02-24": "In\u00edcio da Quaresma", + "1982-04-09": "Sexta-feira Santa", + "1982-04-21": "Tiradentes", + "1982-05-01": "Dia do Trabalhador", + "1982-06-10": "Corpus Christi", + "1982-09-07": "Independ\u00eancia do Brasil", + "1982-10-12": "Nossa Senhora Aparecida", + "1982-10-28": "Dia do Servidor P\u00fablico", + "1982-11-02": "Finados", + "1982-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1982-12-24": "V\u00e9spera de Natal", + "1982-12-25": "Natal", + "1982-12-31": "V\u00e9spera de Ano-Novo", + "1983-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1983-02-14": "Carnaval", + "1983-02-15": "Carnaval", + "1983-02-16": "In\u00edcio da Quaresma", + "1983-04-01": "Sexta-feira Santa", + "1983-04-21": "Tiradentes", + "1983-05-01": "Dia do Trabalhador", + "1983-06-02": "Corpus Christi", + "1983-09-07": "Independ\u00eancia do Brasil", + "1983-10-12": "Nossa Senhora Aparecida", + "1983-10-28": "Dia do Servidor P\u00fablico", + "1983-11-02": "Finados", + "1983-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1983-12-24": "V\u00e9spera de Natal", + "1983-12-25": "Natal", + "1983-12-31": "V\u00e9spera de Ano-Novo", + "1984-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1984-03-05": "Carnaval", + "1984-03-06": "Carnaval", + "1984-03-07": "In\u00edcio da Quaresma", + "1984-04-20": "Sexta-feira Santa", + "1984-04-21": "Tiradentes", + "1984-05-01": "Dia do Trabalhador", + "1984-06-21": "Corpus Christi", + "1984-09-07": "Independ\u00eancia do Brasil", + "1984-10-12": "Nossa Senhora Aparecida", + "1984-10-28": "Dia do Servidor P\u00fablico", + "1984-11-02": "Finados", + "1984-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1984-12-24": "V\u00e9spera de Natal", + "1984-12-25": "Natal", + "1984-12-31": "V\u00e9spera de Ano-Novo", + "1985-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1985-02-18": "Carnaval", + "1985-02-19": "Carnaval", + "1985-02-20": "In\u00edcio da Quaresma", + "1985-04-05": "Sexta-feira Santa", + "1985-04-21": "Tiradentes", + "1985-05-01": "Dia do Trabalhador", + "1985-06-06": "Corpus Christi", + "1985-09-07": "Independ\u00eancia do Brasil", + "1985-10-12": "Nossa Senhora Aparecida", + "1985-10-28": "Dia do Servidor P\u00fablico", + "1985-11-02": "Finados", + "1985-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1985-12-24": "V\u00e9spera de Natal", + "1985-12-25": "Natal", + "1985-12-31": "V\u00e9spera de Ano-Novo", + "1986-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1986-02-10": "Carnaval", + "1986-02-11": "Carnaval", + "1986-02-12": "In\u00edcio da Quaresma", + "1986-03-28": "Sexta-feira Santa", + "1986-04-21": "Tiradentes", + "1986-05-01": "Dia do Trabalhador", + "1986-05-29": "Corpus Christi", + "1986-09-07": "Independ\u00eancia do Brasil", + "1986-10-12": "Nossa Senhora Aparecida", + "1986-10-28": "Dia do Servidor P\u00fablico", + "1986-11-02": "Finados", + "1986-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1986-12-24": "V\u00e9spera de Natal", + "1986-12-25": "Natal", + "1986-12-31": "V\u00e9spera de Ano-Novo", + "1987-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1987-03-02": "Carnaval", + "1987-03-03": "Carnaval", + "1987-03-04": "In\u00edcio da Quaresma", + "1987-04-17": "Sexta-feira Santa", + "1987-04-21": "Tiradentes", + "1987-05-01": "Dia do Trabalhador", + "1987-06-18": "Corpus Christi", + "1987-09-07": "Independ\u00eancia do Brasil", + "1987-10-12": "Nossa Senhora Aparecida", + "1987-10-28": "Dia do Servidor P\u00fablico", + "1987-11-02": "Finados", + "1987-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1987-12-24": "V\u00e9spera de Natal", + "1987-12-25": "Natal", + "1987-12-31": "V\u00e9spera de Ano-Novo", + "1988-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1988-02-15": "Carnaval", + "1988-02-16": "Carnaval", + "1988-02-17": "In\u00edcio da Quaresma", + "1988-04-01": "Sexta-feira Santa", + "1988-04-21": "Tiradentes", + "1988-05-01": "Dia do Trabalhador", + "1988-06-02": "Corpus Christi", + "1988-09-07": "Independ\u00eancia do Brasil", + "1988-10-12": "Nossa Senhora Aparecida", + "1988-10-28": "Dia do Servidor P\u00fablico", + "1988-11-02": "Finados", + "1988-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1988-12-24": "V\u00e9spera de Natal", + "1988-12-25": "Natal", + "1988-12-31": "V\u00e9spera de Ano-Novo", + "1989-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1989-02-06": "Carnaval", + "1989-02-07": "Carnaval", + "1989-02-08": "In\u00edcio da Quaresma", + "1989-03-24": "Sexta-feira Santa", + "1989-04-21": "Tiradentes", + "1989-05-01": "Dia do Trabalhador", + "1989-05-25": "Corpus Christi", + "1989-09-07": "Independ\u00eancia do Brasil", + "1989-10-12": "Nossa Senhora Aparecida", + "1989-10-28": "Dia do Servidor P\u00fablico", + "1989-11-02": "Finados", + "1989-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1989-12-24": "V\u00e9spera de Natal", + "1989-12-25": "Natal", + "1989-12-31": "V\u00e9spera de Ano-Novo", + "1990-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1990-02-26": "Carnaval", + "1990-02-27": "Carnaval", + "1990-02-28": "In\u00edcio da Quaresma", + "1990-04-13": "Sexta-feira Santa", + "1990-04-21": "Tiradentes", + "1990-05-01": "Dia do Trabalhador", + "1990-06-14": "Corpus Christi", + "1990-09-07": "Independ\u00eancia do Brasil", + "1990-10-12": "Nossa Senhora Aparecida", + "1990-10-28": "Dia do Servidor P\u00fablico", + "1990-11-02": "Finados", + "1990-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1990-12-24": "V\u00e9spera de Natal", + "1990-12-25": "Natal", + "1990-12-31": "V\u00e9spera de Ano-Novo", + "1991-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1991-02-11": "Carnaval", + "1991-02-12": "Carnaval", + "1991-02-13": "In\u00edcio da Quaresma", + "1991-03-29": "Sexta-feira Santa", + "1991-04-21": "Tiradentes", + "1991-05-01": "Dia do Trabalhador", + "1991-05-30": "Corpus Christi", + "1991-09-07": "Independ\u00eancia do Brasil", + "1991-10-12": "Nossa Senhora Aparecida", + "1991-10-28": "Dia do Servidor P\u00fablico", + "1991-11-02": "Finados", + "1991-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1991-12-24": "V\u00e9spera de Natal", + "1991-12-25": "Natal", + "1991-12-31": "V\u00e9spera de Ano-Novo", + "1992-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1992-03-02": "Carnaval", + "1992-03-03": "Carnaval", + "1992-03-04": "In\u00edcio da Quaresma", + "1992-04-17": "Sexta-feira Santa", + "1992-04-21": "Tiradentes", + "1992-05-01": "Dia do Trabalhador", + "1992-06-18": "Corpus Christi", + "1992-09-07": "Independ\u00eancia do Brasil", + "1992-10-12": "Nossa Senhora Aparecida", + "1992-10-28": "Dia do Servidor P\u00fablico", + "1992-11-02": "Finados", + "1992-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1992-12-24": "V\u00e9spera de Natal", + "1992-12-25": "Natal", + "1992-12-31": "V\u00e9spera de Ano-Novo", + "1993-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1993-02-22": "Carnaval", + "1993-02-23": "Carnaval", + "1993-02-24": "In\u00edcio da Quaresma", + "1993-04-09": "Sexta-feira Santa", + "1993-04-21": "Tiradentes", + "1993-05-01": "Dia do Trabalhador", + "1993-06-10": "Corpus Christi", + "1993-09-07": "Independ\u00eancia do Brasil", + "1993-10-12": "Nossa Senhora Aparecida", + "1993-10-28": "Dia do Servidor P\u00fablico", + "1993-11-02": "Finados", + "1993-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1993-12-24": "V\u00e9spera de Natal", + "1993-12-25": "Natal", + "1993-12-31": "V\u00e9spera de Ano-Novo", + "1994-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1994-02-14": "Carnaval", + "1994-02-15": "Carnaval", + "1994-02-16": "In\u00edcio da Quaresma", + "1994-04-01": "Sexta-feira Santa", + "1994-04-21": "Tiradentes", + "1994-05-01": "Dia do Trabalhador", + "1994-06-02": "Corpus Christi", + "1994-09-07": "Independ\u00eancia do Brasil", + "1994-10-12": "Nossa Senhora Aparecida", + "1994-10-28": "Dia do Servidor P\u00fablico", + "1994-11-02": "Finados", + "1994-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1994-12-24": "V\u00e9spera de Natal", + "1994-12-25": "Natal", + "1994-12-31": "V\u00e9spera de Ano-Novo", + "1995-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1995-02-27": "Carnaval", + "1995-02-28": "Carnaval", + "1995-03-01": "In\u00edcio da Quaresma", + "1995-04-14": "Sexta-feira Santa", + "1995-04-21": "Tiradentes", + "1995-05-01": "Dia do Trabalhador", + "1995-06-15": "Corpus Christi", + "1995-09-07": "Independ\u00eancia do Brasil", + "1995-10-12": "Nossa Senhora Aparecida", + "1995-10-28": "Dia do Servidor P\u00fablico", + "1995-11-02": "Finados", + "1995-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1995-12-24": "V\u00e9spera de Natal", + "1995-12-25": "Natal", + "1995-12-31": "V\u00e9spera de Ano-Novo", + "1996-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1996-01-04": "Cria\u00e7\u00e3o do Estado", + "1996-02-19": "Carnaval", + "1996-02-20": "Carnaval", + "1996-02-21": "In\u00edcio da Quaresma", + "1996-03-19": "S\u00e3o Jos\u00e9", + "1996-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "1996-04-05": "Sexta-feira Santa", + "1996-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "1996-05-01": "Dia do Trabalhador", + "1996-06-06": "Corpus Christi", + "1996-06-15": "Anivers\u00e1rio do Acre", + "1996-06-24": "S\u00e3o Jo\u00e3o", + "1996-06-29": "S\u00e3o Pedro", + "1996-07-02": "Independ\u00eancia da Bahia", + "1996-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "1996-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "1996-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "1996-08-05": "Funda\u00e7\u00e3o do Estado", + "1996-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil", + "1996-09-05": "Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "1996-09-07": "Independ\u00eancia do Brasil", + "1996-09-08": "Nossa Senhora da Natividade", + "1996-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "1996-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "1996-09-20": "Dia do Ga\u00facho", + "1996-10-05": "Cria\u00e7\u00e3o do Estado", + "1996-10-11": "Cria\u00e7\u00e3o do Estado", + "1996-10-12": "Nossa Senhora Aparecida", + "1996-10-19": "Dia do Piau\u00ed", + "1996-10-24": "Pedra fundamental de Goi\u00e2nia", + "1996-10-28": "Dia do Servidor P\u00fablico", + "1996-11-02": "Finados", + "1996-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1996-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "1996-11-20": "Consci\u00eancia Negra", + "1996-11-25": "Dia de Santa Catarina de Alexandria", + "1996-11-30": "Dia do Evang\u00e9lico", + "1996-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "1996-12-24": "V\u00e9spera de Natal", + "1996-12-25": "Natal", + "1996-12-31": "V\u00e9spera de Ano-Novo", + "1997-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1997-01-04": "Cria\u00e7\u00e3o do Estado", + "1997-02-10": "Carnaval", + "1997-02-11": "Carnaval", + "1997-02-12": "In\u00edcio da Quaresma", + "1997-03-19": "S\u00e3o Jos\u00e9", + "1997-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "1997-03-28": "Sexta-feira Santa", + "1997-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "1997-05-01": "Dia do Trabalhador", + "1997-05-29": "Corpus Christi", + "1997-06-15": "Anivers\u00e1rio do Acre", + "1997-06-24": "S\u00e3o Jo\u00e3o", + "1997-06-29": "S\u00e3o Pedro", + "1997-07-02": "Independ\u00eancia da Bahia", + "1997-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "1997-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "1997-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "1997-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "1997-08-05": "Funda\u00e7\u00e3o do Estado", + "1997-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil", + "1997-09-05": "Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "1997-09-07": "Independ\u00eancia do Brasil", + "1997-09-08": "Nossa Senhora da Natividade", + "1997-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "1997-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "1997-09-20": "Dia do Ga\u00facho", + "1997-10-05": "Cria\u00e7\u00e3o do Estado", + "1997-10-11": "Cria\u00e7\u00e3o do Estado", + "1997-10-12": "Nossa Senhora Aparecida", + "1997-10-19": "Dia do Piau\u00ed", + "1997-10-24": "Pedra fundamental de Goi\u00e2nia", + "1997-10-28": "Dia do Servidor P\u00fablico", + "1997-11-02": "Finados", + "1997-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1997-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "1997-11-20": "Consci\u00eancia Negra", + "1997-11-25": "Dia de Santa Catarina de Alexandria", + "1997-11-30": "Dia do Evang\u00e9lico", + "1997-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "1997-12-24": "V\u00e9spera de Natal", + "1997-12-25": "Natal", + "1997-12-31": "V\u00e9spera de Ano-Novo", + "1998-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1998-01-04": "Cria\u00e7\u00e3o do Estado", + "1998-02-23": "Carnaval", + "1998-02-24": "Carnaval", + "1998-02-25": "In\u00edcio da Quaresma", + "1998-03-18": "Dia da Autonomia", + "1998-03-19": "S\u00e3o Jos\u00e9", + "1998-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "1998-04-10": "Sexta-feira Santa", + "1998-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "1998-05-01": "Dia do Trabalhador", + "1998-06-11": "Corpus Christi", + "1998-06-15": "Anivers\u00e1rio do Acre", + "1998-06-24": "S\u00e3o Jo\u00e3o", + "1998-06-29": "S\u00e3o Pedro", + "1998-07-02": "Independ\u00eancia da Bahia", + "1998-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "1998-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "1998-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "1998-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "1998-08-05": "Funda\u00e7\u00e3o do Estado", + "1998-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil", + "1998-09-05": "Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "1998-09-07": "Independ\u00eancia do Brasil", + "1998-09-08": "Nossa Senhora da Natividade", + "1998-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "1998-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "1998-09-20": "Dia do Ga\u00facho", + "1998-10-05": "Cria\u00e7\u00e3o do Estado", + "1998-10-11": "Cria\u00e7\u00e3o do Estado", + "1998-10-12": "Nossa Senhora Aparecida", + "1998-10-19": "Dia do Piau\u00ed", + "1998-10-24": "Pedra fundamental de Goi\u00e2nia", + "1998-10-28": "Dia do Servidor P\u00fablico", + "1998-11-02": "Finados", + "1998-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1998-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "1998-11-20": "Consci\u00eancia Negra", + "1998-11-25": "Dia de Santa Catarina de Alexandria", + "1998-11-30": "Dia do Evang\u00e9lico", + "1998-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "1998-12-24": "V\u00e9spera de Natal", + "1998-12-25": "Natal", + "1998-12-31": "V\u00e9spera de Ano-Novo", + "1999-01-01": "Confraterniza\u00e7\u00e3o Universal", + "1999-01-04": "Cria\u00e7\u00e3o do Estado", + "1999-02-15": "Carnaval", + "1999-02-16": "Carnaval", + "1999-02-17": "In\u00edcio da Quaresma", + "1999-03-18": "Dia da Autonomia", + "1999-03-19": "S\u00e3o Jos\u00e9", + "1999-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "1999-04-02": "Sexta-feira Santa", + "1999-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "1999-05-01": "Dia do Trabalhador", + "1999-06-03": "Corpus Christi", + "1999-06-15": "Anivers\u00e1rio do Acre", + "1999-06-24": "S\u00e3o Jo\u00e3o", + "1999-06-29": "S\u00e3o Pedro", + "1999-07-02": "Independ\u00eancia da Bahia", + "1999-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "1999-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "1999-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "1999-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "1999-08-05": "Funda\u00e7\u00e3o do Estado", + "1999-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil", + "1999-09-05": "Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "1999-09-07": "Independ\u00eancia do Brasil", + "1999-09-08": "Nossa Senhora da Natividade", + "1999-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "1999-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "1999-09-20": "Dia do Ga\u00facho", + "1999-10-05": "Cria\u00e7\u00e3o do Estado", + "1999-10-11": "Cria\u00e7\u00e3o do Estado", + "1999-10-12": "Nossa Senhora Aparecida", + "1999-10-19": "Dia do Piau\u00ed", + "1999-10-24": "Pedra fundamental de Goi\u00e2nia", + "1999-10-28": "Dia do Servidor P\u00fablico", + "1999-11-02": "Finados", + "1999-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "1999-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "1999-11-20": "Consci\u00eancia Negra", + "1999-11-28": "Dia de Santa Catarina de Alexandria", + "1999-11-30": "Dia do Evang\u00e9lico", + "1999-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "1999-12-24": "V\u00e9spera de Natal", + "1999-12-25": "Natal", + "1999-12-31": "V\u00e9spera de Ano-Novo", + "2000-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2000-01-04": "Cria\u00e7\u00e3o do Estado", + "2000-03-06": "Carnaval", + "2000-03-07": "Carnaval", + "2000-03-08": "In\u00edcio da Quaresma", + "2000-03-18": "Dia da Autonomia", + "2000-03-19": "S\u00e3o Jos\u00e9", + "2000-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2000-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Sexta-feira Santa; Tiradentes", + "2000-05-01": "Dia do Trabalhador", + "2000-06-15": "Anivers\u00e1rio do Acre", + "2000-06-22": "Corpus Christi", + "2000-06-24": "S\u00e3o Jo\u00e3o", + "2000-06-29": "S\u00e3o Pedro", + "2000-07-02": "Independ\u00eancia da Bahia", + "2000-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2000-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2000-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2000-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2000-08-05": "Funda\u00e7\u00e3o do Estado", + "2000-08-07": "Dia do Rio Grande do Norte", + "2000-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil", + "2000-09-05": "Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2000-09-07": "Independ\u00eancia do Brasil", + "2000-09-08": "Nossa Senhora da Natividade", + "2000-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2000-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2000-09-20": "Dia do Ga\u00facho", + "2000-10-05": "Cria\u00e7\u00e3o do Estado", + "2000-10-11": "Cria\u00e7\u00e3o do Estado", + "2000-10-12": "Nossa Senhora Aparecida", + "2000-10-19": "Dia do Piau\u00ed", + "2000-10-24": "Pedra fundamental de Goi\u00e2nia", + "2000-10-28": "Dia do Servidor P\u00fablico", + "2000-11-02": "Finados", + "2000-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2000-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "2000-11-20": "Consci\u00eancia Negra", + "2000-11-26": "Dia de Santa Catarina de Alexandria", + "2000-11-30": "Dia do Evang\u00e9lico", + "2000-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2000-12-24": "V\u00e9spera de Natal", + "2000-12-25": "Natal", + "2000-12-31": "V\u00e9spera de Ano-Novo", + "2001-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2001-01-04": "Cria\u00e7\u00e3o do Estado", + "2001-02-26": "Carnaval", + "2001-02-27": "Carnaval", + "2001-02-28": "In\u00edcio da Quaresma", + "2001-03-18": "Dia da Autonomia", + "2001-03-19": "S\u00e3o Jos\u00e9", + "2001-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2001-04-13": "Sexta-feira Santa", + "2001-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2001-05-01": "Dia do Trabalhador", + "2001-06-14": "Corpus Christi", + "2001-06-15": "Anivers\u00e1rio do Acre", + "2001-06-24": "S\u00e3o Jo\u00e3o", + "2001-06-29": "S\u00e3o Pedro", + "2001-07-02": "Independ\u00eancia da Bahia", + "2001-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2001-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2001-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2001-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2001-08-05": "Funda\u00e7\u00e3o do Estado", + "2001-08-07": "Dia do Rio Grande do Norte", + "2001-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil", + "2001-09-05": "Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2001-09-07": "Independ\u00eancia do Brasil", + "2001-09-08": "Nossa Senhora da Natividade", + "2001-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2001-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2001-09-20": "Dia do Ga\u00facho", + "2001-10-05": "Cria\u00e7\u00e3o do Estado", + "2001-10-11": "Cria\u00e7\u00e3o do Estado", + "2001-10-12": "Nossa Senhora Aparecida", + "2001-10-19": "Dia do Piau\u00ed", + "2001-10-24": "Pedra fundamental de Goi\u00e2nia", + "2001-10-28": "Dia do Servidor P\u00fablico", + "2001-11-02": "Finados", + "2001-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2001-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "2001-11-20": "Consci\u00eancia Negra", + "2001-11-25": "Dia de Santa Catarina de Alexandria", + "2001-11-30": "Dia do Evang\u00e9lico", + "2001-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2001-12-24": "V\u00e9spera de Natal", + "2001-12-25": "Natal", + "2001-12-31": "V\u00e9spera de Ano-Novo", + "2002-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2002-01-04": "Cria\u00e7\u00e3o do Estado", + "2002-02-11": "Carnaval", + "2002-02-12": "Carnaval", + "2002-02-13": "In\u00edcio da Quaresma", + "2002-03-08": "Dia Internacional da Mulher", + "2002-03-18": "Dia da Autonomia", + "2002-03-19": "S\u00e3o Jos\u00e9", + "2002-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2002-03-29": "Sexta-feira Santa", + "2002-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2002-05-01": "Dia do Trabalhador", + "2002-05-30": "Corpus Christi", + "2002-06-15": "Anivers\u00e1rio do Acre", + "2002-06-18": "Dia do Evang\u00e9lico", + "2002-06-24": "S\u00e3o Jo\u00e3o", + "2002-06-29": "S\u00e3o Pedro", + "2002-07-02": "Independ\u00eancia da Bahia", + "2002-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2002-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2002-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2002-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2002-08-05": "Funda\u00e7\u00e3o do Estado", + "2002-08-07": "Dia do Rio Grande do Norte", + "2002-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil", + "2002-09-05": "Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2002-09-07": "Independ\u00eancia do Brasil", + "2002-09-08": "Nossa Senhora da Natividade", + "2002-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2002-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2002-09-20": "Dia do Ga\u00facho", + "2002-10-05": "Cria\u00e7\u00e3o do Estado", + "2002-10-11": "Cria\u00e7\u00e3o do Estado", + "2002-10-12": "Nossa Senhora Aparecida", + "2002-10-19": "Dia do Piau\u00ed", + "2002-10-24": "Pedra fundamental de Goi\u00e2nia", + "2002-10-28": "Dia do Servidor P\u00fablico", + "2002-11-02": "Finados", + "2002-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2002-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "2002-11-20": "Consci\u00eancia Negra", + "2002-11-30": "Dia do Evang\u00e9lico", + "2002-12-01": "Dia de Santa Catarina de Alexandria", + "2002-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2002-12-24": "V\u00e9spera de Natal", + "2002-12-25": "Natal", + "2002-12-31": "V\u00e9spera de Ano-Novo", + "2003-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2003-01-04": "Cria\u00e7\u00e3o do Estado", + "2003-03-03": "Carnaval", + "2003-03-04": "Carnaval", + "2003-03-05": "In\u00edcio da Quaresma", + "2003-03-08": "Dia Internacional da Mulher", + "2003-03-18": "Dia da Autonomia", + "2003-03-19": "S\u00e3o Jos\u00e9", + "2003-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2003-04-18": "Sexta-feira Santa", + "2003-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2003-05-01": "Dia do Trabalhador", + "2003-06-15": "Anivers\u00e1rio do Acre", + "2003-06-18": "Dia do Evang\u00e9lico", + "2003-06-19": "Corpus Christi", + "2003-06-24": "S\u00e3o Jo\u00e3o", + "2003-06-29": "S\u00e3o Pedro", + "2003-07-02": "Independ\u00eancia da Bahia", + "2003-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2003-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2003-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2003-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2003-08-05": "Funda\u00e7\u00e3o do Estado", + "2003-08-07": "Dia do Rio Grande do Norte", + "2003-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil", + "2003-09-05": "Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2003-09-07": "Independ\u00eancia do Brasil", + "2003-09-08": "Nossa Senhora da Natividade", + "2003-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2003-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2003-09-20": "Dia do Ga\u00facho", + "2003-10-05": "Cria\u00e7\u00e3o do Estado", + "2003-10-11": "Cria\u00e7\u00e3o do Estado", + "2003-10-12": "Nossa Senhora Aparecida", + "2003-10-19": "Dia do Piau\u00ed", + "2003-10-24": "Pedra fundamental de Goi\u00e2nia", + "2003-10-28": "Dia do Servidor P\u00fablico", + "2003-11-02": "Finados", + "2003-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2003-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "2003-11-20": "Consci\u00eancia Negra", + "2003-11-30": "Dia de Santa Catarina de Alexandria; Dia do Evang\u00e9lico", + "2003-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2003-12-24": "V\u00e9spera de Natal", + "2003-12-25": "Natal", + "2003-12-31": "V\u00e9spera de Ano-Novo", + "2004-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2004-01-04": "Cria\u00e7\u00e3o do Estado", + "2004-02-23": "Carnaval", + "2004-02-24": "Carnaval", + "2004-02-25": "In\u00edcio da Quaresma", + "2004-03-08": "Dia Internacional da Mulher", + "2004-03-18": "Dia da Autonomia", + "2004-03-19": "S\u00e3o Jos\u00e9", + "2004-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2004-04-09": "Sexta-feira Santa", + "2004-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2004-05-01": "Dia do Trabalhador", + "2004-06-10": "Corpus Christi", + "2004-06-15": "Anivers\u00e1rio do Acre", + "2004-06-18": "Dia do Evang\u00e9lico", + "2004-06-24": "S\u00e3o Jo\u00e3o", + "2004-06-29": "S\u00e3o Pedro", + "2004-07-02": "Independ\u00eancia da Bahia", + "2004-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2004-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2004-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2004-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2004-08-05": "Funda\u00e7\u00e3o do Estado", + "2004-08-07": "Dia do Rio Grande do Norte", + "2004-08-11": "Dia do Estado de Santa Catarina", + "2004-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2004-09-05": "Dia da Amaz\u00f4nia; Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2004-09-07": "Independ\u00eancia do Brasil", + "2004-09-08": "Nossa Senhora da Natividade", + "2004-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2004-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2004-09-20": "Dia do Ga\u00facho", + "2004-10-05": "Cria\u00e7\u00e3o do Estado", + "2004-10-11": "Cria\u00e7\u00e3o do Estado", + "2004-10-12": "Nossa Senhora Aparecida", + "2004-10-19": "Dia do Piau\u00ed", + "2004-10-24": "Pedra fundamental de Goi\u00e2nia", + "2004-10-28": "Dia do Servidor P\u00fablico", + "2004-11-02": "Finados", + "2004-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2004-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "2004-11-20": "Consci\u00eancia Negra", + "2004-11-25": "Dia de Santa Catarina de Alexandria", + "2004-11-30": "Dia do Evang\u00e9lico", + "2004-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2004-12-24": "V\u00e9spera de Natal", + "2004-12-25": "Natal", + "2004-12-31": "V\u00e9spera de Ano-Novo", + "2005-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2005-01-04": "Cria\u00e7\u00e3o do Estado", + "2005-01-23": "Dia do Evang\u00e9lico", + "2005-02-07": "Carnaval", + "2005-02-08": "Carnaval", + "2005-02-09": "In\u00edcio da Quaresma", + "2005-03-08": "Dia Internacional da Mulher", + "2005-03-18": "Dia da Autonomia", + "2005-03-19": "S\u00e3o Jos\u00e9", + "2005-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1; Sexta-feira Santa", + "2005-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2005-05-01": "Dia do Trabalhador", + "2005-05-26": "Corpus Christi", + "2005-06-15": "Anivers\u00e1rio do Acre", + "2005-06-18": "Dia do Evang\u00e9lico", + "2005-06-24": "S\u00e3o Jo\u00e3o", + "2005-06-29": "S\u00e3o Pedro", + "2005-07-02": "Independ\u00eancia da Bahia", + "2005-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2005-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2005-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2005-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2005-08-05": "Funda\u00e7\u00e3o do Estado", + "2005-08-07": "Dia do Rio Grande do Norte", + "2005-08-14": "Dia do Estado de Santa Catarina", + "2005-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2005-09-05": "Dia da Amaz\u00f4nia; Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2005-09-07": "Independ\u00eancia do Brasil", + "2005-09-08": "Nossa Senhora da Natividade", + "2005-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2005-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2005-09-20": "Dia do Ga\u00facho", + "2005-10-05": "Cria\u00e7\u00e3o do Estado", + "2005-10-11": "Cria\u00e7\u00e3o do Estado", + "2005-10-12": "Nossa Senhora Aparecida", + "2005-10-19": "Dia do Piau\u00ed", + "2005-10-24": "Pedra fundamental de Goi\u00e2nia", + "2005-10-28": "Dia do Servidor P\u00fablico", + "2005-11-02": "Finados", + "2005-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2005-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "2005-11-20": "Consci\u00eancia Negra", + "2005-11-27": "Dia de Santa Catarina de Alexandria", + "2005-11-30": "Dia do Evang\u00e9lico", + "2005-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2005-12-24": "V\u00e9spera de Natal", + "2005-12-25": "Natal", + "2005-12-31": "V\u00e9spera de Ano-Novo", + "2006-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2006-01-04": "Cria\u00e7\u00e3o do Estado", + "2006-01-23": "Dia do Evang\u00e9lico", + "2006-02-27": "Carnaval", + "2006-02-28": "Carnaval", + "2006-03-01": "In\u00edcio da Quaresma", + "2006-03-08": "Dia Internacional da Mulher", + "2006-03-18": "Dia da Autonomia", + "2006-03-19": "S\u00e3o Jos\u00e9", + "2006-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2006-04-14": "Sexta-feira Santa", + "2006-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2006-05-01": "Dia do Trabalhador", + "2006-06-15": "Anivers\u00e1rio do Acre; Corpus Christi", + "2006-06-18": "Dia do Evang\u00e9lico", + "2006-06-24": "S\u00e3o Jo\u00e3o", + "2006-06-29": "S\u00e3o Pedro", + "2006-07-02": "Independ\u00eancia da Bahia", + "2006-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2006-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2006-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2006-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2006-08-05": "Funda\u00e7\u00e3o do Estado", + "2006-08-07": "Dia do Rio Grande do Norte", + "2006-08-13": "Dia do Estado de Santa Catarina", + "2006-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2006-09-05": "Dia da Amaz\u00f4nia; Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2006-09-07": "Independ\u00eancia do Brasil", + "2006-09-08": "Nossa Senhora da Natividade", + "2006-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2006-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2006-09-20": "Dia do Ga\u00facho", + "2006-10-05": "Cria\u00e7\u00e3o do Estado", + "2006-10-11": "Cria\u00e7\u00e3o do Estado", + "2006-10-12": "Nossa Senhora Aparecida", + "2006-10-19": "Dia do Piau\u00ed", + "2006-10-24": "Pedra fundamental de Goi\u00e2nia", + "2006-10-28": "Dia do Servidor P\u00fablico", + "2006-11-02": "Finados", + "2006-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2006-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "2006-11-20": "Consci\u00eancia Negra", + "2006-11-26": "Dia de Santa Catarina de Alexandria", + "2006-11-30": "Dia do Evang\u00e9lico", + "2006-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2006-12-24": "V\u00e9spera de Natal", + "2006-12-25": "Natal", + "2006-12-31": "V\u00e9spera de Ano-Novo", + "2007-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2007-01-04": "Cria\u00e7\u00e3o do Estado", + "2007-01-23": "Dia do Evang\u00e9lico", + "2007-02-19": "Carnaval", + "2007-02-20": "Carnaval", + "2007-02-21": "In\u00edcio da Quaresma", + "2007-03-08": "Dia Internacional da Mulher", + "2007-03-18": "Dia da Autonomia", + "2007-03-19": "S\u00e3o Jos\u00e9", + "2007-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2007-04-06": "Sexta-feira Santa", + "2007-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2007-05-01": "Dia do Trabalhador", + "2007-06-07": "Corpus Christi", + "2007-06-15": "Anivers\u00e1rio do Acre", + "2007-06-18": "Dia do Evang\u00e9lico", + "2007-06-24": "S\u00e3o Jo\u00e3o", + "2007-06-29": "S\u00e3o Pedro", + "2007-07-02": "Independ\u00eancia da Bahia", + "2007-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2007-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2007-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2007-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2007-08-05": "Funda\u00e7\u00e3o do Estado", + "2007-08-07": "Dia do Rio Grande do Norte", + "2007-08-12": "Dia do Estado de Santa Catarina", + "2007-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2007-09-05": "Dia da Amaz\u00f4nia; Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2007-09-07": "Independ\u00eancia do Brasil", + "2007-09-08": "Nossa Senhora da Natividade", + "2007-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2007-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2007-09-20": "Dia do Ga\u00facho", + "2007-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2007-10-05": "Cria\u00e7\u00e3o do Estado", + "2007-10-11": "Cria\u00e7\u00e3o do Estado", + "2007-10-12": "Nossa Senhora Aparecida", + "2007-10-19": "Dia do Piau\u00ed", + "2007-10-24": "Pedra fundamental de Goi\u00e2nia", + "2007-10-28": "Dia do Servidor P\u00fablico", + "2007-11-02": "Finados", + "2007-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2007-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "2007-11-20": "Consci\u00eancia Negra", + "2007-11-25": "Dia de Santa Catarina de Alexandria", + "2007-11-30": "Dia do Evang\u00e9lico", + "2007-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2007-12-24": "V\u00e9spera de Natal", + "2007-12-25": "Natal", + "2007-12-31": "V\u00e9spera de Ano-Novo", + "2008-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2008-01-04": "Cria\u00e7\u00e3o do Estado", + "2008-01-23": "Dia do Evang\u00e9lico", + "2008-02-04": "Carnaval", + "2008-02-05": "Carnaval", + "2008-02-06": "In\u00edcio da Quaresma", + "2008-03-02": "Revolu\u00e7\u00e3o Pernambucana", + "2008-03-08": "Dia Internacional da Mulher", + "2008-03-18": "Dia da Autonomia", + "2008-03-19": "S\u00e3o Jos\u00e9", + "2008-03-21": "Sexta-feira Santa", + "2008-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2008-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2008-04-23": "S\u00e3o Jorge", + "2008-05-01": "Dia do Trabalhador", + "2008-05-22": "Corpus Christi", + "2008-06-15": "Anivers\u00e1rio do Acre", + "2008-06-18": "Dia do Evang\u00e9lico", + "2008-06-24": "S\u00e3o Jo\u00e3o", + "2008-06-29": "S\u00e3o Pedro", + "2008-07-02": "Independ\u00eancia da Bahia", + "2008-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2008-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2008-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2008-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2008-08-05": "Funda\u00e7\u00e3o do Estado", + "2008-08-07": "Dia do Rio Grande do Norte", + "2008-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2008-08-17": "Dia do Estado de Santa Catarina", + "2008-09-05": "Dia da Amaz\u00f4nia; Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2008-09-07": "Independ\u00eancia do Brasil", + "2008-09-08": "Nossa Senhora da Natividade", + "2008-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2008-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2008-09-20": "Dia do Ga\u00facho", + "2008-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2008-10-05": "Cria\u00e7\u00e3o do Estado", + "2008-10-11": "Cria\u00e7\u00e3o do Estado", + "2008-10-12": "Nossa Senhora Aparecida", + "2008-10-19": "Dia do Piau\u00ed", + "2008-10-24": "Pedra fundamental de Goi\u00e2nia", + "2008-10-28": "Dia do Servidor P\u00fablico", + "2008-11-02": "Finados", + "2008-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2008-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "2008-11-20": "Consci\u00eancia Negra", + "2008-11-30": "Dia de Santa Catarina de Alexandria; Dia do Evang\u00e9lico", + "2008-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2008-12-24": "V\u00e9spera de Natal", + "2008-12-25": "Natal", + "2008-12-31": "V\u00e9spera de Ano-Novo", + "2009-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2009-01-04": "Cria\u00e7\u00e3o do Estado", + "2009-01-23": "Dia do Evang\u00e9lico", + "2009-02-23": "Carnaval", + "2009-02-24": "Carnaval", + "2009-02-25": "In\u00edcio da Quaresma", + "2009-03-01": "Revolu\u00e7\u00e3o Pernambucana", + "2009-03-08": "Dia Internacional da Mulher", + "2009-03-18": "Dia da Autonomia", + "2009-03-19": "S\u00e3o Jos\u00e9", + "2009-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2009-04-10": "Sexta-feira Santa", + "2009-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2009-04-23": "S\u00e3o Jorge", + "2009-05-01": "Dia do Trabalhador", + "2009-06-11": "Corpus Christi", + "2009-06-15": "Anivers\u00e1rio do Acre", + "2009-06-18": "Dia do Evang\u00e9lico", + "2009-06-24": "S\u00e3o Jo\u00e3o", + "2009-06-29": "S\u00e3o Pedro", + "2009-07-02": "Independ\u00eancia da Bahia", + "2009-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2009-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2009-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2009-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2009-08-05": "Funda\u00e7\u00e3o do Estado", + "2009-08-07": "Dia do Rio Grande do Norte", + "2009-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2009-08-16": "Dia do Estado de Santa Catarina", + "2009-09-05": "Dia da Amaz\u00f4nia; Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2009-09-07": "Independ\u00eancia do Brasil", + "2009-09-08": "Nossa Senhora da Natividade", + "2009-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2009-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2009-09-20": "Dia do Ga\u00facho", + "2009-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2009-10-05": "Cria\u00e7\u00e3o do Estado", + "2009-10-11": "Cria\u00e7\u00e3o do Estado", + "2009-10-12": "Nossa Senhora Aparecida", + "2009-10-19": "Dia do Piau\u00ed", + "2009-10-24": "Pedra fundamental de Goi\u00e2nia", + "2009-10-28": "Dia do Servidor P\u00fablico", + "2009-11-02": "Finados", + "2009-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2009-11-20": "Assinatura do Tratado de Petr\u00f3polis; Consci\u00eancia Negra", + "2009-11-29": "Dia de Santa Catarina de Alexandria", + "2009-11-30": "Dia do Evang\u00e9lico", + "2009-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2009-12-24": "V\u00e9spera de Natal", + "2009-12-25": "Natal", + "2009-12-31": "V\u00e9spera de Ano-Novo", + "2010-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2010-01-04": "Cria\u00e7\u00e3o do Estado", + "2010-01-23": "Dia do Evang\u00e9lico", + "2010-02-15": "Carnaval", + "2010-02-16": "Carnaval", + "2010-02-17": "In\u00edcio da Quaresma", + "2010-03-07": "Revolu\u00e7\u00e3o Pernambucana", + "2010-03-08": "Dia Internacional da Mulher", + "2010-03-18": "Dia da Autonomia", + "2010-03-19": "S\u00e3o Jos\u00e9", + "2010-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2010-04-02": "Sexta-feira Santa", + "2010-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2010-04-23": "S\u00e3o Jorge", + "2010-05-01": "Dia do Trabalhador", + "2010-06-03": "Corpus Christi", + "2010-06-15": "Anivers\u00e1rio do Acre", + "2010-06-18": "Dia do Evang\u00e9lico", + "2010-06-24": "S\u00e3o Jo\u00e3o", + "2010-06-29": "S\u00e3o Pedro", + "2010-07-02": "Independ\u00eancia da Bahia", + "2010-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2010-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2010-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2010-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2010-08-05": "Funda\u00e7\u00e3o do Estado", + "2010-08-07": "Dia do Rio Grande do Norte", + "2010-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Dia do Estado de Santa Catarina; Nossa Senhora da Assun\u00e7\u00e3o", + "2010-09-05": "Dia da Amaz\u00f4nia; Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2010-09-07": "Independ\u00eancia do Brasil", + "2010-09-08": "Nossa Senhora da Natividade", + "2010-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2010-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2010-09-20": "Dia do Ga\u00facho", + "2010-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2010-10-05": "Cria\u00e7\u00e3o do Estado", + "2010-10-11": "Cria\u00e7\u00e3o do Estado", + "2010-10-12": "Nossa Senhora Aparecida", + "2010-10-19": "Dia do Piau\u00ed", + "2010-10-24": "Pedra fundamental de Goi\u00e2nia", + "2010-10-28": "Dia do Servidor P\u00fablico", + "2010-11-02": "Finados", + "2010-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2010-11-19": "Assinatura do Tratado de Petr\u00f3polis", + "2010-11-20": "Consci\u00eancia Negra", + "2010-11-28": "Dia de Santa Catarina de Alexandria", + "2010-11-30": "Dia do Evang\u00e9lico", + "2010-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2010-12-24": "V\u00e9spera de Natal", + "2010-12-25": "Natal", + "2010-12-31": "V\u00e9spera de Ano-Novo", + "2011-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2011-01-04": "Cria\u00e7\u00e3o do Estado", + "2011-01-23": "Dia do Evang\u00e9lico", + "2011-03-06": "Revolu\u00e7\u00e3o Pernambucana", + "2011-03-07": "Carnaval", + "2011-03-08": "Carnaval", + "2011-03-09": "In\u00edcio da Quaresma", + "2011-03-11": "Dia Internacional da Mulher", + "2011-03-18": "Dia da Autonomia", + "2011-03-19": "S\u00e3o Jos\u00e9", + "2011-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2011-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2011-04-22": "Sexta-feira Santa", + "2011-04-23": "S\u00e3o Jorge", + "2011-05-01": "Dia do Trabalhador", + "2011-06-15": "Anivers\u00e1rio do Acre", + "2011-06-18": "Dia do Evang\u00e9lico", + "2011-06-23": "Corpus Christi", + "2011-06-24": "S\u00e3o Jo\u00e3o", + "2011-06-29": "S\u00e3o Pedro", + "2011-07-02": "Independ\u00eancia da Bahia", + "2011-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2011-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2011-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2011-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2011-08-05": "Funda\u00e7\u00e3o do Estado", + "2011-08-07": "Dia do Rio Grande do Norte", + "2011-08-14": "Dia do Estado de Santa Catarina", + "2011-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2011-09-05": "Dia da Amaz\u00f4nia; Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2011-09-07": "Independ\u00eancia do Brasil", + "2011-09-08": "Nossa Senhora da Natividade", + "2011-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2011-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2011-09-20": "Dia do Ga\u00facho", + "2011-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2011-10-05": "Cria\u00e7\u00e3o do Estado", + "2011-10-11": "Cria\u00e7\u00e3o do Estado", + "2011-10-12": "Nossa Senhora Aparecida", + "2011-10-19": "Dia do Piau\u00ed", + "2011-10-24": "Pedra fundamental de Goi\u00e2nia", + "2011-10-28": "Dia do Servidor P\u00fablico", + "2011-11-02": "Finados", + "2011-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2011-11-18": "Assinatura do Tratado de Petr\u00f3polis", + "2011-11-20": "Consci\u00eancia Negra", + "2011-11-27": "Dia de Santa Catarina de Alexandria", + "2011-11-30": "Dia do Evang\u00e9lico", + "2011-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2011-12-24": "V\u00e9spera de Natal", + "2011-12-25": "Natal", + "2011-12-31": "V\u00e9spera de Ano-Novo", + "2012-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2012-01-04": "Cria\u00e7\u00e3o do Estado", + "2012-01-23": "Dia do Evang\u00e9lico", + "2012-02-20": "Carnaval", + "2012-02-21": "Carnaval", + "2012-02-22": "In\u00edcio da Quaresma", + "2012-03-04": "Revolu\u00e7\u00e3o Pernambucana", + "2012-03-09": "Dia Internacional da Mulher", + "2012-03-18": "Dia da Autonomia", + "2012-03-19": "S\u00e3o Jos\u00e9", + "2012-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2012-04-06": "Sexta-feira Santa", + "2012-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2012-04-23": "S\u00e3o Jorge", + "2012-05-01": "Dia do Trabalhador", + "2012-06-07": "Corpus Christi", + "2012-06-15": "Anivers\u00e1rio do Acre", + "2012-06-18": "Dia do Evang\u00e9lico", + "2012-06-24": "S\u00e3o Jo\u00e3o", + "2012-06-29": "S\u00e3o Pedro", + "2012-07-02": "Independ\u00eancia da Bahia", + "2012-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2012-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2012-07-25": "S\u00e3o Tiago", + "2012-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2012-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2012-08-05": "Funda\u00e7\u00e3o do Estado", + "2012-08-07": "Dia do Rio Grande do Norte", + "2012-08-12": "Dia do Estado de Santa Catarina", + "2012-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2012-09-05": "Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2012-09-07": "Dia da Amaz\u00f4nia; Independ\u00eancia do Brasil", + "2012-09-08": "Nossa Senhora da Natividade", + "2012-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2012-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2012-09-20": "Dia do Ga\u00facho", + "2012-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2012-10-05": "Cria\u00e7\u00e3o do Estado", + "2012-10-11": "Cria\u00e7\u00e3o do Estado", + "2012-10-12": "Nossa Senhora Aparecida", + "2012-10-19": "Dia do Piau\u00ed", + "2012-10-24": "Pedra fundamental de Goi\u00e2nia", + "2012-10-28": "Dia do Servidor P\u00fablico", + "2012-11-02": "Finados", + "2012-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2012-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "2012-11-20": "Consci\u00eancia Negra", + "2012-11-25": "Dia de Santa Catarina de Alexandria", + "2012-11-30": "Dia do Evang\u00e9lico", + "2012-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2012-12-24": "V\u00e9spera de Natal", + "2012-12-25": "Natal", + "2012-12-31": "V\u00e9spera de Ano-Novo", + "2013-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2013-01-04": "Cria\u00e7\u00e3o do Estado", + "2013-01-25": "Dia do Evang\u00e9lico", + "2013-02-11": "Carnaval", + "2013-02-12": "Carnaval", + "2013-02-13": "In\u00edcio da Quaresma", + "2013-03-03": "Revolu\u00e7\u00e3o Pernambucana", + "2013-03-08": "Dia Internacional da Mulher", + "2013-03-18": "Dia da Autonomia", + "2013-03-19": "S\u00e3o Jos\u00e9", + "2013-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2013-03-29": "Sexta-feira Santa", + "2013-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2013-04-23": "S\u00e3o Jorge", + "2013-05-01": "Dia do Trabalhador", + "2013-05-30": "Corpus Christi", + "2013-06-15": "Anivers\u00e1rio do Acre", + "2013-06-18": "Dia do Evang\u00e9lico", + "2013-06-24": "S\u00e3o Jo\u00e3o", + "2013-06-29": "S\u00e3o Pedro", + "2013-07-02": "Independ\u00eancia da Bahia", + "2013-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2013-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2013-07-25": "S\u00e3o Tiago", + "2013-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2013-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2013-08-05": "Funda\u00e7\u00e3o do Estado", + "2013-08-07": "Dia do Rio Grande do Norte", + "2013-08-11": "Dia do Estado de Santa Catarina", + "2013-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2013-09-05": "Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2013-09-06": "Dia da Amaz\u00f4nia", + "2013-09-07": "Independ\u00eancia do Brasil", + "2013-09-08": "Nossa Senhora da Natividade", + "2013-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2013-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2013-09-20": "Dia do Ga\u00facho", + "2013-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2013-10-05": "Cria\u00e7\u00e3o do Estado", + "2013-10-11": "Cria\u00e7\u00e3o do Estado", + "2013-10-12": "Nossa Senhora Aparecida", + "2013-10-19": "Dia do Piau\u00ed", + "2013-10-24": "Pedra fundamental de Goi\u00e2nia", + "2013-10-28": "Dia do Servidor P\u00fablico", + "2013-11-02": "Finados", + "2013-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2013-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "2013-11-20": "Consci\u00eancia Negra", + "2013-11-30": "Dia do Evang\u00e9lico", + "2013-12-01": "Dia de Santa Catarina de Alexandria", + "2013-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2013-12-24": "V\u00e9spera de Natal", + "2013-12-25": "Natal", + "2013-12-31": "V\u00e9spera de Ano-Novo", + "2014-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2014-01-04": "Cria\u00e7\u00e3o do Estado", + "2014-01-24": "Dia do Evang\u00e9lico", + "2014-03-02": "Revolu\u00e7\u00e3o Pernambucana", + "2014-03-03": "Carnaval", + "2014-03-04": "Carnaval", + "2014-03-05": "In\u00edcio da Quaresma", + "2014-03-08": "Dia Internacional da Mulher", + "2014-03-18": "Dia da Autonomia", + "2014-03-19": "S\u00e3o Jos\u00e9", + "2014-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2014-04-18": "Sexta-feira Santa", + "2014-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2014-04-23": "S\u00e3o Jorge", + "2014-05-01": "Dia do Trabalhador", + "2014-06-15": "Anivers\u00e1rio do Acre", + "2014-06-18": "Dia do Evang\u00e9lico", + "2014-06-19": "Corpus Christi", + "2014-06-24": "S\u00e3o Jo\u00e3o", + "2014-06-29": "S\u00e3o Pedro", + "2014-07-02": "Independ\u00eancia da Bahia", + "2014-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2014-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2014-07-25": "S\u00e3o Tiago", + "2014-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2014-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2014-08-05": "Funda\u00e7\u00e3o do Estado", + "2014-08-07": "Dia do Rio Grande do Norte", + "2014-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2014-08-17": "Dia do Estado de Santa Catarina", + "2014-09-05": "Dia da Amaz\u00f4nia; Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2014-09-07": "Independ\u00eancia do Brasil", + "2014-09-08": "Nossa Senhora da Natividade", + "2014-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2014-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2014-09-20": "Dia do Ga\u00facho", + "2014-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2014-10-05": "Cria\u00e7\u00e3o do Estado", + "2014-10-11": "Cria\u00e7\u00e3o do Estado", + "2014-10-12": "Nossa Senhora Aparecida", + "2014-10-19": "Dia do Piau\u00ed", + "2014-10-24": "Pedra fundamental de Goi\u00e2nia", + "2014-10-28": "Dia do Servidor P\u00fablico", + "2014-11-02": "Finados", + "2014-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2014-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "2014-11-20": "Consci\u00eancia Negra", + "2014-11-30": "Dia de Santa Catarina de Alexandria; Dia do Evang\u00e9lico", + "2014-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2014-12-24": "V\u00e9spera de Natal", + "2014-12-25": "Natal", + "2014-12-31": "V\u00e9spera de Ano-Novo", + "2015-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2015-01-04": "Cria\u00e7\u00e3o do Estado", + "2015-01-23": "Dia do Evang\u00e9lico", + "2015-02-16": "Carnaval", + "2015-02-17": "Carnaval", + "2015-02-18": "In\u00edcio da Quaresma", + "2015-03-01": "Revolu\u00e7\u00e3o Pernambucana", + "2015-03-08": "Dia Internacional da Mulher", + "2015-03-18": "Dia da Autonomia", + "2015-03-19": "S\u00e3o Jos\u00e9", + "2015-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2015-04-03": "Sexta-feira Santa", + "2015-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2015-04-23": "S\u00e3o Jorge", + "2015-05-01": "Dia do Trabalhador", + "2015-06-04": "Corpus Christi", + "2015-06-15": "Anivers\u00e1rio do Acre", + "2015-06-18": "Dia do Evang\u00e9lico", + "2015-06-24": "S\u00e3o Jo\u00e3o", + "2015-06-29": "S\u00e3o Pedro", + "2015-07-02": "Independ\u00eancia da Bahia", + "2015-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2015-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2015-07-25": "S\u00e3o Tiago", + "2015-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2015-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2015-08-05": "Funda\u00e7\u00e3o do Estado", + "2015-08-07": "Dia do Rio Grande do Norte", + "2015-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2015-08-16": "Dia do Estado de Santa Catarina", + "2015-09-05": "Dia da Amaz\u00f4nia; Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2015-09-07": "Independ\u00eancia do Brasil", + "2015-09-08": "Nossa Senhora da Natividade", + "2015-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2015-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2015-09-20": "Dia do Ga\u00facho", + "2015-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2015-10-05": "Cria\u00e7\u00e3o do Estado", + "2015-10-11": "Cria\u00e7\u00e3o do Estado", + "2015-10-12": "Nossa Senhora Aparecida", + "2015-10-19": "Dia do Piau\u00ed", + "2015-10-24": "Pedra fundamental de Goi\u00e2nia", + "2015-10-28": "Dia do Servidor P\u00fablico", + "2015-11-02": "Finados", + "2015-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2015-11-20": "Assinatura do Tratado de Petr\u00f3polis; Consci\u00eancia Negra", + "2015-11-29": "Dia de Santa Catarina de Alexandria", + "2015-11-30": "Dia do Evang\u00e9lico", + "2015-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2015-12-24": "V\u00e9spera de Natal", + "2015-12-25": "Natal", + "2015-12-31": "V\u00e9spera de Ano-Novo", + "2016-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2016-01-04": "Cria\u00e7\u00e3o do Estado", + "2016-01-23": "Dia do Evang\u00e9lico", + "2016-02-08": "Carnaval", + "2016-02-09": "Carnaval", + "2016-02-10": "In\u00edcio da Quaresma", + "2016-03-06": "Revolu\u00e7\u00e3o Pernambucana", + "2016-03-11": "Dia Internacional da Mulher", + "2016-03-18": "Dia da Autonomia", + "2016-03-19": "S\u00e3o Jos\u00e9", + "2016-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1; Sexta-feira Santa", + "2016-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2016-04-23": "S\u00e3o Jorge", + "2016-05-01": "Dia do Trabalhador", + "2016-05-26": "Corpus Christi", + "2016-06-15": "Anivers\u00e1rio do Acre", + "2016-06-18": "Dia do Evang\u00e9lico", + "2016-06-24": "S\u00e3o Jo\u00e3o", + "2016-06-29": "S\u00e3o Pedro", + "2016-07-02": "Independ\u00eancia da Bahia", + "2016-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2016-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2016-07-25": "S\u00e3o Tiago", + "2016-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2016-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2016-08-05": "Funda\u00e7\u00e3o do Estado", + "2016-08-07": "Dia do Rio Grande do Norte", + "2016-08-14": "Dia do Estado de Santa Catarina", + "2016-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2016-09-05": "Dia da Amaz\u00f4nia; Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2016-09-07": "Independ\u00eancia do Brasil", + "2016-09-08": "Nossa Senhora da Natividade", + "2016-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2016-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2016-09-20": "Dia do Ga\u00facho", + "2016-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2016-10-05": "Cria\u00e7\u00e3o do Estado", + "2016-10-11": "Cria\u00e7\u00e3o do Estado", + "2016-10-12": "Nossa Senhora Aparecida", + "2016-10-19": "Dia do Piau\u00ed", + "2016-10-24": "Pedra fundamental de Goi\u00e2nia", + "2016-10-28": "Dia do Servidor P\u00fablico", + "2016-11-02": "Finados", + "2016-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2016-11-18": "Assinatura do Tratado de Petr\u00f3polis", + "2016-11-20": "Consci\u00eancia Negra", + "2016-11-27": "Dia de Santa Catarina de Alexandria", + "2016-11-30": "Dia do Evang\u00e9lico", + "2016-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2016-12-24": "V\u00e9spera de Natal", + "2016-12-25": "Natal", + "2016-12-31": "V\u00e9spera de Ano-Novo", + "2017-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2017-01-04": "Cria\u00e7\u00e3o do Estado", + "2017-01-23": "Dia do Evang\u00e9lico", + "2017-02-27": "Carnaval", + "2017-02-28": "Carnaval", + "2017-03-01": "In\u00edcio da Quaresma", + "2017-03-05": "Revolu\u00e7\u00e3o Pernambucana", + "2017-03-10": "Dia Internacional da Mulher", + "2017-03-18": "Dia da Autonomia", + "2017-03-19": "S\u00e3o Jos\u00e9", + "2017-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2017-04-14": "Sexta-feira Santa", + "2017-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2017-04-23": "S\u00e3o Jorge", + "2017-05-01": "Dia do Trabalhador", + "2017-06-15": "Anivers\u00e1rio do Acre; Corpus Christi", + "2017-06-18": "Dia do Evang\u00e9lico", + "2017-06-24": "S\u00e3o Jo\u00e3o", + "2017-06-29": "S\u00e3o Pedro", + "2017-07-02": "Independ\u00eancia da Bahia", + "2017-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2017-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2017-07-25": "S\u00e3o Tiago", + "2017-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2017-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2017-08-05": "Funda\u00e7\u00e3o do Estado", + "2017-08-07": "Dia do Rio Grande do Norte", + "2017-08-13": "Dia do Estado de Santa Catarina", + "2017-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2017-09-05": "Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2017-09-07": "Independ\u00eancia do Brasil", + "2017-09-08": "Dia da Amaz\u00f4nia; Nossa Senhora da Natividade", + "2017-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2017-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2017-09-20": "Dia do Ga\u00facho", + "2017-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2017-10-05": "Cria\u00e7\u00e3o do Estado", + "2017-10-11": "Cria\u00e7\u00e3o do Estado", + "2017-10-12": "Nossa Senhora Aparecida", + "2017-10-19": "Dia do Piau\u00ed", + "2017-10-24": "Pedra fundamental de Goi\u00e2nia", + "2017-10-28": "Dia do Servidor P\u00fablico", + "2017-11-02": "Finados", + "2017-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2017-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "2017-11-20": "Consci\u00eancia Negra", + "2017-11-26": "Dia de Santa Catarina de Alexandria", + "2017-11-30": "Dia do Evang\u00e9lico", + "2017-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2017-12-24": "V\u00e9spera de Natal", + "2017-12-25": "Natal", + "2017-12-31": "V\u00e9spera de Ano-Novo", + "2018-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2018-01-04": "Cria\u00e7\u00e3o do Estado", + "2018-01-26": "Dia do Evang\u00e9lico", + "2018-02-12": "Carnaval", + "2018-02-13": "Carnaval", + "2018-02-14": "In\u00edcio da Quaresma", + "2018-03-04": "Revolu\u00e7\u00e3o Pernambucana", + "2018-03-09": "Dia Internacional da Mulher", + "2018-03-18": "Dia da Autonomia", + "2018-03-19": "S\u00e3o Jos\u00e9", + "2018-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2018-03-30": "Sexta-feira Santa", + "2018-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2018-04-23": "S\u00e3o Jorge", + "2018-05-01": "Dia do Trabalhador", + "2018-05-31": "Corpus Christi", + "2018-06-15": "Anivers\u00e1rio do Acre", + "2018-06-18": "Dia do Evang\u00e9lico", + "2018-06-24": "S\u00e3o Jo\u00e3o", + "2018-06-29": "S\u00e3o Pedro", + "2018-07-02": "Independ\u00eancia da Bahia", + "2018-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2018-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2018-07-25": "S\u00e3o Tiago", + "2018-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2018-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2018-08-05": "Funda\u00e7\u00e3o do Estado", + "2018-08-07": "Dia do Rio Grande do Norte", + "2018-08-12": "Dia do Estado de Santa Catarina", + "2018-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2018-09-05": "Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2018-09-07": "Dia da Amaz\u00f4nia; Independ\u00eancia do Brasil", + "2018-09-08": "Nossa Senhora da Natividade", + "2018-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2018-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2018-09-20": "Dia do Ga\u00facho", + "2018-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2018-10-05": "Cria\u00e7\u00e3o do Estado", + "2018-10-11": "Cria\u00e7\u00e3o do Estado", + "2018-10-12": "Nossa Senhora Aparecida", + "2018-10-19": "Dia do Piau\u00ed", + "2018-10-24": "Pedra fundamental de Goi\u00e2nia", + "2018-10-28": "Dia do Servidor P\u00fablico", + "2018-11-02": "Finados", + "2018-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2018-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "2018-11-20": "Consci\u00eancia Negra", + "2018-11-25": "Dia de Santa Catarina de Alexandria", + "2018-11-30": "Dia do Evang\u00e9lico", + "2018-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2018-12-24": "V\u00e9spera de Natal", + "2018-12-25": "Natal", + "2018-12-31": "V\u00e9spera de Ano-Novo", + "2019-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2019-01-04": "Cria\u00e7\u00e3o do Estado", + "2019-01-25": "Dia do Evang\u00e9lico", + "2019-03-03": "Revolu\u00e7\u00e3o Pernambucana", + "2019-03-04": "Carnaval", + "2019-03-05": "Carnaval", + "2019-03-06": "In\u00edcio da Quaresma", + "2019-03-08": "Dia Internacional da Mulher", + "2019-03-18": "Dia da Autonomia", + "2019-03-19": "S\u00e3o Jos\u00e9", + "2019-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2019-04-19": "Sexta-feira Santa", + "2019-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2019-04-23": "S\u00e3o Jorge", + "2019-05-01": "Dia do Trabalhador", + "2019-06-15": "Anivers\u00e1rio do Acre", + "2019-06-18": "Dia do Evang\u00e9lico", + "2019-06-20": "Corpus Christi", + "2019-06-24": "S\u00e3o Jo\u00e3o", + "2019-06-29": "S\u00e3o Pedro", + "2019-07-02": "Independ\u00eancia da Bahia", + "2019-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2019-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2019-07-25": "S\u00e3o Tiago", + "2019-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2019-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2019-08-05": "Funda\u00e7\u00e3o do Estado", + "2019-08-07": "Dia do Rio Grande do Norte", + "2019-08-11": "Dia do Estado de Santa Catarina", + "2019-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2019-09-05": "Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2019-09-06": "Dia da Amaz\u00f4nia", + "2019-09-07": "Independ\u00eancia do Brasil", + "2019-09-08": "Nossa Senhora da Natividade", + "2019-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2019-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2019-09-20": "Dia do Ga\u00facho", + "2019-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2019-10-05": "Cria\u00e7\u00e3o do Estado", + "2019-10-11": "Cria\u00e7\u00e3o do Estado", + "2019-10-12": "Nossa Senhora Aparecida", + "2019-10-19": "Dia do Piau\u00ed", + "2019-10-24": "Pedra fundamental de Goi\u00e2nia", + "2019-10-28": "Dia do Servidor P\u00fablico", + "2019-11-02": "Finados", + "2019-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2019-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "2019-11-20": "Consci\u00eancia Negra", + "2019-11-30": "Dia do Evang\u00e9lico", + "2019-12-01": "Dia de Santa Catarina de Alexandria", + "2019-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2019-12-24": "V\u00e9spera de Natal", + "2019-12-25": "Natal", + "2019-12-31": "V\u00e9spera de Ano-Novo", + "2020-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2020-01-04": "Cria\u00e7\u00e3o do Estado", + "2020-01-24": "Dia do Evang\u00e9lico", + "2020-02-24": "Carnaval", + "2020-02-25": "Carnaval", + "2020-02-26": "In\u00edcio da Quaresma", + "2020-03-01": "Revolu\u00e7\u00e3o Pernambucana", + "2020-03-08": "Dia Internacional da Mulher", + "2020-03-18": "Dia da Autonomia", + "2020-03-19": "S\u00e3o Jos\u00e9", + "2020-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2020-04-10": "Sexta-feira Santa", + "2020-04-20": "Nossa Senhora da Penha", + "2020-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2020-04-23": "S\u00e3o Jorge", + "2020-05-01": "Dia do Trabalhador", + "2020-06-11": "Corpus Christi", + "2020-06-15": "Anivers\u00e1rio do Acre", + "2020-06-18": "Dia do Evang\u00e9lico", + "2020-06-24": "S\u00e3o Jo\u00e3o", + "2020-06-29": "S\u00e3o Pedro", + "2020-07-02": "Independ\u00eancia da Bahia", + "2020-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2020-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2020-07-25": "S\u00e3o Tiago", + "2020-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2020-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2020-08-05": "Funda\u00e7\u00e3o do Estado", + "2020-08-07": "Dia do Rio Grande do Norte", + "2020-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2020-08-16": "Dia do Estado de Santa Catarina", + "2020-09-05": "Dia da Amaz\u00f4nia; Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2020-09-07": "Independ\u00eancia do Brasil", + "2020-09-08": "Nossa Senhora da Natividade", + "2020-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2020-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2020-09-20": "Dia do Ga\u00facho", + "2020-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2020-10-05": "Cria\u00e7\u00e3o do Estado", + "2020-10-11": "Cria\u00e7\u00e3o do Estado", + "2020-10-12": "Nossa Senhora Aparecida", + "2020-10-19": "Dia do Piau\u00ed", + "2020-10-24": "Pedra fundamental de Goi\u00e2nia", + "2020-10-28": "Dia do Servidor P\u00fablico", + "2020-11-02": "Finados", + "2020-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2020-11-20": "Assinatura do Tratado de Petr\u00f3polis; Consci\u00eancia Negra", + "2020-11-29": "Dia de Santa Catarina de Alexandria", + "2020-11-30": "Dia do Evang\u00e9lico", + "2020-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2020-12-24": "V\u00e9spera de Natal", + "2020-12-25": "Natal", + "2020-12-31": "V\u00e9spera de Ano-Novo", + "2021-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2021-01-04": "Cria\u00e7\u00e3o do Estado", + "2021-01-23": "Dia do Evang\u00e9lico", + "2021-02-15": "Carnaval", + "2021-02-16": "Carnaval", + "2021-02-17": "In\u00edcio da Quaresma", + "2021-03-07": "Revolu\u00e7\u00e3o Pernambucana", + "2021-03-08": "Dia Internacional da Mulher", + "2021-03-18": "Dia da Autonomia", + "2021-03-19": "S\u00e3o Jos\u00e9", + "2021-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2021-04-02": "Sexta-feira Santa", + "2021-04-12": "Nossa Senhora da Penha", + "2021-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2021-04-23": "S\u00e3o Jorge", + "2021-05-01": "Dia do Trabalhador", + "2021-06-03": "Corpus Christi", + "2021-06-15": "Anivers\u00e1rio do Acre", + "2021-06-18": "Dia do Evang\u00e9lico", + "2021-06-24": "S\u00e3o Jo\u00e3o", + "2021-06-29": "S\u00e3o Pedro", + "2021-07-02": "Independ\u00eancia da Bahia", + "2021-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2021-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2021-07-25": "S\u00e3o Tiago", + "2021-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2021-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2021-08-05": "Funda\u00e7\u00e3o do Estado", + "2021-08-07": "Dia do Rio Grande do Norte", + "2021-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Dia do Estado de Santa Catarina; Nossa Senhora da Assun\u00e7\u00e3o", + "2021-09-05": "Dia da Amaz\u00f4nia; Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2021-09-07": "Independ\u00eancia do Brasil", + "2021-09-08": "Nossa Senhora da Natividade", + "2021-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2021-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2021-09-20": "Dia do Ga\u00facho", + "2021-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2021-10-05": "Cria\u00e7\u00e3o do Estado", + "2021-10-11": "Cria\u00e7\u00e3o do Estado", + "2021-10-12": "Nossa Senhora Aparecida", + "2021-10-19": "Dia do Piau\u00ed", + "2021-10-24": "Pedra fundamental de Goi\u00e2nia", + "2021-10-28": "Dia do Servidor P\u00fablico", + "2021-11-02": "Finados", + "2021-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2021-11-19": "Assinatura do Tratado de Petr\u00f3polis", + "2021-11-20": "Consci\u00eancia Negra", + "2021-11-28": "Dia de Santa Catarina de Alexandria", + "2021-11-30": "Dia do Evang\u00e9lico", + "2021-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2021-12-24": "V\u00e9spera de Natal", + "2021-12-25": "Natal", + "2021-12-31": "V\u00e9spera de Ano-Novo", + "2022-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2022-01-04": "Cria\u00e7\u00e3o do Estado", + "2022-01-23": "Dia do Evang\u00e9lico", + "2022-02-28": "Carnaval", + "2022-03-01": "Carnaval", + "2022-03-02": "In\u00edcio da Quaresma", + "2022-03-06": "Revolu\u00e7\u00e3o Pernambucana", + "2022-03-11": "Dia Internacional da Mulher", + "2022-03-18": "Dia da Autonomia", + "2022-03-19": "S\u00e3o Jos\u00e9", + "2022-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2022-04-15": "Sexta-feira Santa", + "2022-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2022-04-23": "S\u00e3o Jorge", + "2022-04-25": "Nossa Senhora da Penha", + "2022-05-01": "Dia do Trabalhador", + "2022-06-15": "Anivers\u00e1rio do Acre", + "2022-06-16": "Corpus Christi", + "2022-06-18": "Dia do Evang\u00e9lico", + "2022-06-24": "S\u00e3o Jo\u00e3o", + "2022-06-29": "S\u00e3o Pedro", + "2022-07-02": "Independ\u00eancia da Bahia", + "2022-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2022-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2022-07-25": "S\u00e3o Tiago", + "2022-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2022-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2022-08-05": "Funda\u00e7\u00e3o do Estado", + "2022-08-07": "Dia do Rio Grande do Norte", + "2022-08-14": "Dia do Estado de Santa Catarina", + "2022-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2022-09-05": "Dia da Amaz\u00f4nia; Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2022-09-07": "Independ\u00eancia do Brasil", + "2022-09-08": "Nossa Senhora da Natividade", + "2022-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2022-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2022-09-20": "Dia do Ga\u00facho", + "2022-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2022-10-05": "Cria\u00e7\u00e3o do Estado", + "2022-10-11": "Cria\u00e7\u00e3o do Estado", + "2022-10-12": "Nossa Senhora Aparecida", + "2022-10-19": "Dia do Piau\u00ed", + "2022-10-24": "Pedra fundamental de Goi\u00e2nia", + "2022-10-28": "Dia do Servidor P\u00fablico", + "2022-11-02": "Finados", + "2022-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2022-11-18": "Assinatura do Tratado de Petr\u00f3polis", + "2022-11-20": "Consci\u00eancia Negra", + "2022-11-27": "Dia de Santa Catarina de Alexandria", + "2022-11-30": "Dia do Evang\u00e9lico", + "2022-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2022-12-24": "V\u00e9spera de Natal", + "2022-12-25": "Natal", + "2022-12-31": "V\u00e9spera de Ano-Novo", + "2023-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2023-01-04": "Cria\u00e7\u00e3o do Estado", + "2023-01-23": "Dia do Evang\u00e9lico", + "2023-02-20": "Carnaval", + "2023-02-21": "Carnaval", + "2023-02-22": "In\u00edcio da Quaresma", + "2023-03-05": "Revolu\u00e7\u00e3o Pernambucana", + "2023-03-10": "Dia Internacional da Mulher", + "2023-03-18": "Dia da Autonomia", + "2023-03-19": "S\u00e3o Jos\u00e9", + "2023-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2023-04-07": "Sexta-feira Santa", + "2023-04-17": "Nossa Senhora da Penha", + "2023-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2023-04-23": "S\u00e3o Jorge", + "2023-05-01": "Dia do Trabalhador", + "2023-06-08": "Corpus Christi", + "2023-06-15": "Anivers\u00e1rio do Acre", + "2023-06-18": "Dia do Evang\u00e9lico", + "2023-06-24": "S\u00e3o Jo\u00e3o", + "2023-06-29": "S\u00e3o Pedro", + "2023-07-02": "Independ\u00eancia da Bahia", + "2023-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2023-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2023-07-25": "S\u00e3o Tiago", + "2023-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2023-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2023-08-05": "Funda\u00e7\u00e3o do Estado", + "2023-08-07": "Dia do Rio Grande do Norte", + "2023-08-13": "Dia do Estado de Santa Catarina", + "2023-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2023-09-05": "Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2023-09-07": "Independ\u00eancia do Brasil", + "2023-09-08": "Dia da Amaz\u00f4nia; Nossa Senhora da Natividade", + "2023-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2023-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2023-09-20": "Dia do Ga\u00facho", + "2023-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2023-10-05": "Cria\u00e7\u00e3o do Estado", + "2023-10-11": "Cria\u00e7\u00e3o do Estado", + "2023-10-12": "Nossa Senhora Aparecida", + "2023-10-19": "Dia do Piau\u00ed", + "2023-10-24": "Pedra fundamental de Goi\u00e2nia", + "2023-10-28": "Dia do Servidor P\u00fablico", + "2023-11-02": "Finados", + "2023-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2023-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "2023-11-20": "Consci\u00eancia Negra", + "2023-11-26": "Dia de Santa Catarina de Alexandria", + "2023-11-30": "Dia do Evang\u00e9lico", + "2023-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2023-12-24": "V\u00e9spera de Natal", + "2023-12-25": "Natal", + "2023-12-31": "V\u00e9spera de Ano-Novo", + "2024-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2024-01-04": "Cria\u00e7\u00e3o do Estado", + "2024-01-26": "Dia do Evang\u00e9lico", + "2024-02-12": "Carnaval", + "2024-02-13": "Carnaval", + "2024-02-14": "In\u00edcio da Quaresma", + "2024-03-03": "Revolu\u00e7\u00e3o Pernambucana", + "2024-03-08": "Dia Internacional da Mulher", + "2024-03-18": "Dia da Autonomia", + "2024-03-19": "S\u00e3o Jos\u00e9", + "2024-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2024-03-29": "Sexta-feira Santa", + "2024-04-08": "Nossa Senhora da Penha", + "2024-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2024-04-23": "S\u00e3o Jorge", + "2024-05-01": "Dia do Trabalhador", + "2024-05-30": "Corpus Christi", + "2024-06-15": "Anivers\u00e1rio do Acre", + "2024-06-18": "Dia do Evang\u00e9lico", + "2024-06-24": "S\u00e3o Jo\u00e3o", + "2024-06-29": "S\u00e3o Pedro", + "2024-07-02": "Independ\u00eancia da Bahia", + "2024-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2024-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2024-07-25": "S\u00e3o Tiago", + "2024-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2024-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2024-08-05": "Funda\u00e7\u00e3o do Estado", + "2024-08-07": "Dia do Rio Grande do Norte", + "2024-08-11": "Dia do Estado de Santa Catarina", + "2024-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2024-09-05": "Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2024-09-06": "Dia da Amaz\u00f4nia", + "2024-09-07": "Independ\u00eancia do Brasil", + "2024-09-08": "Nossa Senhora da Natividade", + "2024-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2024-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2024-09-20": "Dia do Ga\u00facho", + "2024-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2024-10-05": "Cria\u00e7\u00e3o do Estado", + "2024-10-11": "Cria\u00e7\u00e3o do Estado", + "2024-10-12": "Nossa Senhora Aparecida", + "2024-10-19": "Dia do Piau\u00ed", + "2024-10-24": "Pedra fundamental de Goi\u00e2nia", + "2024-10-28": "Dia do Servidor P\u00fablico", + "2024-11-02": "Finados", + "2024-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2024-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "2024-11-20": "Consci\u00eancia Negra", + "2024-11-30": "Dia do Evang\u00e9lico", + "2024-12-01": "Dia de Santa Catarina de Alexandria", + "2024-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2024-12-24": "V\u00e9spera de Natal", + "2024-12-25": "Natal", + "2024-12-31": "V\u00e9spera de Ano-Novo", + "2025-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2025-01-04": "Cria\u00e7\u00e3o do Estado", + "2025-01-24": "Dia do Evang\u00e9lico", + "2025-03-02": "Revolu\u00e7\u00e3o Pernambucana", + "2025-03-03": "Carnaval", + "2025-03-04": "Carnaval", + "2025-03-05": "In\u00edcio da Quaresma", + "2025-03-08": "Dia Internacional da Mulher", + "2025-03-18": "Dia da Autonomia", + "2025-03-19": "S\u00e3o Jos\u00e9", + "2025-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2025-04-18": "Sexta-feira Santa", + "2025-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2025-04-23": "S\u00e3o Jorge", + "2025-04-28": "Nossa Senhora da Penha", + "2025-05-01": "Dia do Trabalhador", + "2025-06-15": "Anivers\u00e1rio do Acre", + "2025-06-18": "Dia do Evang\u00e9lico", + "2025-06-19": "Corpus Christi", + "2025-06-24": "S\u00e3o Jo\u00e3o", + "2025-06-29": "S\u00e3o Pedro", + "2025-07-02": "Independ\u00eancia da Bahia", + "2025-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2025-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2025-07-25": "S\u00e3o Tiago", + "2025-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2025-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2025-08-05": "Funda\u00e7\u00e3o do Estado", + "2025-08-07": "Dia do Rio Grande do Norte", + "2025-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2025-08-17": "Dia do Estado de Santa Catarina", + "2025-09-05": "Dia da Amaz\u00f4nia; Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2025-09-07": "Independ\u00eancia do Brasil", + "2025-09-08": "Nossa Senhora da Natividade", + "2025-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2025-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2025-09-20": "Dia do Ga\u00facho", + "2025-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2025-10-05": "Cria\u00e7\u00e3o do Estado", + "2025-10-11": "Cria\u00e7\u00e3o do Estado", + "2025-10-12": "Nossa Senhora Aparecida", + "2025-10-19": "Dia do Piau\u00ed", + "2025-10-24": "Pedra fundamental de Goi\u00e2nia", + "2025-10-28": "Dia do Servidor P\u00fablico", + "2025-11-02": "Finados", + "2025-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2025-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "2025-11-20": "Consci\u00eancia Negra", + "2025-11-30": "Dia de Santa Catarina de Alexandria; Dia do Evang\u00e9lico", + "2025-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2025-12-24": "V\u00e9spera de Natal", + "2025-12-25": "Natal", + "2025-12-31": "V\u00e9spera de Ano-Novo", + "2026-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2026-01-04": "Cria\u00e7\u00e3o do Estado", + "2026-01-23": "Dia do Evang\u00e9lico", + "2026-02-16": "Carnaval", + "2026-02-17": "Carnaval", + "2026-02-18": "In\u00edcio da Quaresma", + "2026-03-01": "Revolu\u00e7\u00e3o Pernambucana", + "2026-03-08": "Dia Internacional da Mulher", + "2026-03-18": "Dia da Autonomia", + "2026-03-19": "S\u00e3o Jos\u00e9", + "2026-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2026-04-03": "Sexta-feira Santa", + "2026-04-13": "Nossa Senhora da Penha", + "2026-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2026-04-23": "S\u00e3o Jorge", + "2026-05-01": "Dia do Trabalhador", + "2026-06-04": "Corpus Christi", + "2026-06-15": "Anivers\u00e1rio do Acre", + "2026-06-18": "Dia do Evang\u00e9lico", + "2026-06-24": "S\u00e3o Jo\u00e3o", + "2026-06-29": "S\u00e3o Pedro", + "2026-07-02": "Independ\u00eancia da Bahia", + "2026-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2026-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2026-07-25": "S\u00e3o Tiago", + "2026-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2026-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2026-08-05": "Funda\u00e7\u00e3o do Estado", + "2026-08-07": "Dia do Rio Grande do Norte", + "2026-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2026-08-16": "Dia do Estado de Santa Catarina", + "2026-09-05": "Dia da Amaz\u00f4nia; Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2026-09-07": "Independ\u00eancia do Brasil", + "2026-09-08": "Nossa Senhora da Natividade", + "2026-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2026-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2026-09-20": "Dia do Ga\u00facho", + "2026-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2026-10-05": "Cria\u00e7\u00e3o do Estado", + "2026-10-11": "Cria\u00e7\u00e3o do Estado", + "2026-10-12": "Nossa Senhora Aparecida", + "2026-10-19": "Dia do Piau\u00ed", + "2026-10-24": "Pedra fundamental de Goi\u00e2nia", + "2026-10-28": "Dia do Servidor P\u00fablico", + "2026-11-02": "Finados", + "2026-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2026-11-20": "Assinatura do Tratado de Petr\u00f3polis; Consci\u00eancia Negra", + "2026-11-29": "Dia de Santa Catarina de Alexandria", + "2026-11-30": "Dia do Evang\u00e9lico", + "2026-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2026-12-24": "V\u00e9spera de Natal", + "2026-12-25": "Natal", + "2026-12-31": "V\u00e9spera de Ano-Novo", + "2027-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2027-01-04": "Cria\u00e7\u00e3o do Estado", + "2027-01-23": "Dia do Evang\u00e9lico", + "2027-02-08": "Carnaval", + "2027-02-09": "Carnaval", + "2027-02-10": "In\u00edcio da Quaresma", + "2027-03-07": "Revolu\u00e7\u00e3o Pernambucana", + "2027-03-08": "Dia Internacional da Mulher", + "2027-03-18": "Dia da Autonomia", + "2027-03-19": "S\u00e3o Jos\u00e9", + "2027-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2027-03-26": "Sexta-feira Santa", + "2027-04-05": "Nossa Senhora da Penha", + "2027-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2027-04-23": "S\u00e3o Jorge", + "2027-05-01": "Dia do Trabalhador", + "2027-05-27": "Corpus Christi", + "2027-06-15": "Anivers\u00e1rio do Acre", + "2027-06-18": "Dia do Evang\u00e9lico", + "2027-06-24": "S\u00e3o Jo\u00e3o", + "2027-06-29": "S\u00e3o Pedro", + "2027-07-02": "Independ\u00eancia da Bahia", + "2027-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2027-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2027-07-25": "S\u00e3o Tiago", + "2027-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2027-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2027-08-05": "Funda\u00e7\u00e3o do Estado", + "2027-08-07": "Dia do Rio Grande do Norte", + "2027-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Dia do Estado de Santa Catarina; Nossa Senhora da Assun\u00e7\u00e3o", + "2027-09-05": "Dia da Amaz\u00f4nia; Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2027-09-07": "Independ\u00eancia do Brasil", + "2027-09-08": "Nossa Senhora da Natividade", + "2027-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2027-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2027-09-20": "Dia do Ga\u00facho", + "2027-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2027-10-05": "Cria\u00e7\u00e3o do Estado", + "2027-10-11": "Cria\u00e7\u00e3o do Estado", + "2027-10-12": "Nossa Senhora Aparecida", + "2027-10-19": "Dia do Piau\u00ed", + "2027-10-24": "Pedra fundamental de Goi\u00e2nia", + "2027-10-28": "Dia do Servidor P\u00fablico", + "2027-11-02": "Finados", + "2027-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2027-11-19": "Assinatura do Tratado de Petr\u00f3polis", + "2027-11-20": "Consci\u00eancia Negra", + "2027-11-28": "Dia de Santa Catarina de Alexandria", + "2027-11-30": "Dia do Evang\u00e9lico", + "2027-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2027-12-24": "V\u00e9spera de Natal", + "2027-12-25": "Natal", + "2027-12-31": "V\u00e9spera de Ano-Novo", + "2028-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2028-01-04": "Cria\u00e7\u00e3o do Estado", + "2028-01-23": "Dia do Evang\u00e9lico", + "2028-02-28": "Carnaval", + "2028-02-29": "Carnaval", + "2028-03-01": "In\u00edcio da Quaresma", + "2028-03-05": "Revolu\u00e7\u00e3o Pernambucana", + "2028-03-10": "Dia Internacional da Mulher", + "2028-03-18": "Dia da Autonomia", + "2028-03-19": "S\u00e3o Jos\u00e9", + "2028-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2028-04-14": "Sexta-feira Santa", + "2028-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2028-04-23": "S\u00e3o Jorge", + "2028-04-24": "Nossa Senhora da Penha", + "2028-05-01": "Dia do Trabalhador", + "2028-06-15": "Anivers\u00e1rio do Acre; Corpus Christi", + "2028-06-18": "Dia do Evang\u00e9lico", + "2028-06-24": "S\u00e3o Jo\u00e3o", + "2028-06-29": "S\u00e3o Pedro", + "2028-07-02": "Independ\u00eancia da Bahia", + "2028-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2028-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2028-07-25": "S\u00e3o Tiago", + "2028-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2028-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2028-08-05": "Funda\u00e7\u00e3o do Estado", + "2028-08-07": "Dia do Rio Grande do Norte", + "2028-08-13": "Dia do Estado de Santa Catarina", + "2028-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2028-09-05": "Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2028-09-07": "Independ\u00eancia do Brasil", + "2028-09-08": "Dia da Amaz\u00f4nia; Nossa Senhora da Natividade", + "2028-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2028-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2028-09-20": "Dia do Ga\u00facho", + "2028-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2028-10-05": "Cria\u00e7\u00e3o do Estado", + "2028-10-11": "Cria\u00e7\u00e3o do Estado", + "2028-10-12": "Nossa Senhora Aparecida", + "2028-10-19": "Dia do Piau\u00ed", + "2028-10-24": "Pedra fundamental de Goi\u00e2nia", + "2028-10-28": "Dia do Servidor P\u00fablico", + "2028-11-02": "Finados", + "2028-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2028-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "2028-11-20": "Consci\u00eancia Negra", + "2028-11-26": "Dia de Santa Catarina de Alexandria", + "2028-11-30": "Dia do Evang\u00e9lico", + "2028-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2028-12-24": "V\u00e9spera de Natal", + "2028-12-25": "Natal", + "2028-12-31": "V\u00e9spera de Ano-Novo", + "2029-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2029-01-04": "Cria\u00e7\u00e3o do Estado", + "2029-01-26": "Dia do Evang\u00e9lico", + "2029-02-12": "Carnaval", + "2029-02-13": "Carnaval", + "2029-02-14": "In\u00edcio da Quaresma", + "2029-03-04": "Revolu\u00e7\u00e3o Pernambucana", + "2029-03-09": "Dia Internacional da Mulher", + "2029-03-18": "Dia da Autonomia", + "2029-03-19": "S\u00e3o Jos\u00e9", + "2029-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2029-03-30": "Sexta-feira Santa", + "2029-04-09": "Nossa Senhora da Penha", + "2029-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2029-04-23": "S\u00e3o Jorge", + "2029-05-01": "Dia do Trabalhador", + "2029-05-31": "Corpus Christi", + "2029-06-15": "Anivers\u00e1rio do Acre", + "2029-06-18": "Dia do Evang\u00e9lico", + "2029-06-24": "S\u00e3o Jo\u00e3o", + "2029-06-29": "S\u00e3o Pedro", + "2029-07-02": "Independ\u00eancia da Bahia", + "2029-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2029-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2029-07-25": "S\u00e3o Tiago", + "2029-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2029-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2029-08-05": "Funda\u00e7\u00e3o do Estado", + "2029-08-07": "Dia do Rio Grande do Norte", + "2029-08-12": "Dia do Estado de Santa Catarina", + "2029-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2029-09-05": "Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2029-09-07": "Dia da Amaz\u00f4nia; Independ\u00eancia do Brasil", + "2029-09-08": "Nossa Senhora da Natividade", + "2029-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2029-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2029-09-20": "Dia do Ga\u00facho", + "2029-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2029-10-05": "Cria\u00e7\u00e3o do Estado", + "2029-10-11": "Cria\u00e7\u00e3o do Estado", + "2029-10-12": "Nossa Senhora Aparecida", + "2029-10-19": "Dia do Piau\u00ed", + "2029-10-24": "Pedra fundamental de Goi\u00e2nia", + "2029-10-28": "Dia do Servidor P\u00fablico", + "2029-11-02": "Finados", + "2029-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2029-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "2029-11-20": "Consci\u00eancia Negra", + "2029-11-25": "Dia de Santa Catarina de Alexandria", + "2029-11-30": "Dia do Evang\u00e9lico", + "2029-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2029-12-24": "V\u00e9spera de Natal", + "2029-12-25": "Natal", + "2029-12-31": "V\u00e9spera de Ano-Novo", + "2030-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2030-01-04": "Cria\u00e7\u00e3o do Estado", + "2030-01-25": "Dia do Evang\u00e9lico", + "2030-03-03": "Revolu\u00e7\u00e3o Pernambucana", + "2030-03-04": "Carnaval", + "2030-03-05": "Carnaval", + "2030-03-06": "In\u00edcio da Quaresma", + "2030-03-08": "Dia Internacional da Mulher", + "2030-03-18": "Dia da Autonomia", + "2030-03-19": "S\u00e3o Jos\u00e9", + "2030-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2030-04-19": "Sexta-feira Santa", + "2030-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2030-04-23": "S\u00e3o Jorge", + "2030-04-29": "Nossa Senhora da Penha", + "2030-05-01": "Dia do Trabalhador", + "2030-06-15": "Anivers\u00e1rio do Acre", + "2030-06-18": "Dia do Evang\u00e9lico", + "2030-06-20": "Corpus Christi", + "2030-06-24": "S\u00e3o Jo\u00e3o", + "2030-06-29": "S\u00e3o Pedro", + "2030-07-02": "Independ\u00eancia da Bahia", + "2030-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2030-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2030-07-25": "S\u00e3o Tiago", + "2030-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2030-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2030-08-05": "Funda\u00e7\u00e3o do Estado", + "2030-08-07": "Dia do Rio Grande do Norte", + "2030-08-11": "Dia do Estado de Santa Catarina", + "2030-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2030-09-05": "Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2030-09-06": "Dia da Amaz\u00f4nia", + "2030-09-07": "Independ\u00eancia do Brasil", + "2030-09-08": "Nossa Senhora da Natividade", + "2030-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2030-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2030-09-20": "Dia do Ga\u00facho", + "2030-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2030-10-05": "Cria\u00e7\u00e3o do Estado", + "2030-10-11": "Cria\u00e7\u00e3o do Estado", + "2030-10-12": "Nossa Senhora Aparecida", + "2030-10-19": "Dia do Piau\u00ed", + "2030-10-24": "Pedra fundamental de Goi\u00e2nia", + "2030-10-28": "Dia do Servidor P\u00fablico", + "2030-11-02": "Finados", + "2030-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2030-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "2030-11-20": "Consci\u00eancia Negra", + "2030-11-30": "Dia do Evang\u00e9lico", + "2030-12-01": "Dia de Santa Catarina de Alexandria", + "2030-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2030-12-24": "V\u00e9spera de Natal", + "2030-12-25": "Natal", + "2030-12-31": "V\u00e9spera de Ano-Novo", + "2031-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2031-01-04": "Cria\u00e7\u00e3o do Estado", + "2031-01-24": "Dia do Evang\u00e9lico", + "2031-02-24": "Carnaval", + "2031-02-25": "Carnaval", + "2031-02-26": "In\u00edcio da Quaresma", + "2031-03-02": "Revolu\u00e7\u00e3o Pernambucana", + "2031-03-08": "Dia Internacional da Mulher", + "2031-03-18": "Dia da Autonomia", + "2031-03-19": "S\u00e3o Jos\u00e9", + "2031-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2031-04-11": "Sexta-feira Santa", + "2031-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Nossa Senhora da Penha; Tiradentes", + "2031-04-23": "S\u00e3o Jorge", + "2031-05-01": "Dia do Trabalhador", + "2031-06-12": "Corpus Christi", + "2031-06-15": "Anivers\u00e1rio do Acre", + "2031-06-18": "Dia do Evang\u00e9lico", + "2031-06-24": "S\u00e3o Jo\u00e3o", + "2031-06-29": "S\u00e3o Pedro", + "2031-07-02": "Independ\u00eancia da Bahia", + "2031-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2031-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2031-07-25": "S\u00e3o Tiago", + "2031-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2031-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2031-08-05": "Funda\u00e7\u00e3o do Estado", + "2031-08-07": "Dia do Rio Grande do Norte", + "2031-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2031-08-17": "Dia do Estado de Santa Catarina", + "2031-09-05": "Dia da Amaz\u00f4nia; Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2031-09-07": "Independ\u00eancia do Brasil", + "2031-09-08": "Nossa Senhora da Natividade", + "2031-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2031-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2031-09-20": "Dia do Ga\u00facho", + "2031-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2031-10-05": "Cria\u00e7\u00e3o do Estado", + "2031-10-11": "Cria\u00e7\u00e3o do Estado", + "2031-10-12": "Nossa Senhora Aparecida", + "2031-10-19": "Dia do Piau\u00ed", + "2031-10-24": "Pedra fundamental de Goi\u00e2nia", + "2031-10-28": "Dia do Servidor P\u00fablico", + "2031-11-02": "Finados", + "2031-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2031-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "2031-11-20": "Consci\u00eancia Negra", + "2031-11-30": "Dia de Santa Catarina de Alexandria; Dia do Evang\u00e9lico", + "2031-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2031-12-24": "V\u00e9spera de Natal", + "2031-12-25": "Natal", + "2031-12-31": "V\u00e9spera de Ano-Novo", + "2032-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2032-01-04": "Cria\u00e7\u00e3o do Estado", + "2032-01-23": "Dia do Evang\u00e9lico", + "2032-02-09": "Carnaval", + "2032-02-10": "Carnaval", + "2032-02-11": "In\u00edcio da Quaresma", + "2032-03-07": "Revolu\u00e7\u00e3o Pernambucana", + "2032-03-08": "Dia Internacional da Mulher", + "2032-03-18": "Dia da Autonomia", + "2032-03-19": "S\u00e3o Jos\u00e9", + "2032-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2032-03-26": "Sexta-feira Santa", + "2032-04-05": "Nossa Senhora da Penha", + "2032-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2032-04-23": "S\u00e3o Jorge", + "2032-05-01": "Dia do Trabalhador", + "2032-05-27": "Corpus Christi", + "2032-06-15": "Anivers\u00e1rio do Acre", + "2032-06-18": "Dia do Evang\u00e9lico", + "2032-06-24": "S\u00e3o Jo\u00e3o", + "2032-06-29": "S\u00e3o Pedro", + "2032-07-02": "Independ\u00eancia da Bahia", + "2032-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2032-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2032-07-25": "S\u00e3o Tiago", + "2032-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2032-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2032-08-05": "Funda\u00e7\u00e3o do Estado", + "2032-08-07": "Dia do Rio Grande do Norte", + "2032-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Dia do Estado de Santa Catarina; Nossa Senhora da Assun\u00e7\u00e3o", + "2032-09-05": "Dia da Amaz\u00f4nia; Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2032-09-07": "Independ\u00eancia do Brasil", + "2032-09-08": "Nossa Senhora da Natividade", + "2032-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2032-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2032-09-20": "Dia do Ga\u00facho", + "2032-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2032-10-05": "Cria\u00e7\u00e3o do Estado", + "2032-10-11": "Cria\u00e7\u00e3o do Estado", + "2032-10-12": "Nossa Senhora Aparecida", + "2032-10-19": "Dia do Piau\u00ed", + "2032-10-24": "Pedra fundamental de Goi\u00e2nia", + "2032-10-28": "Dia do Servidor P\u00fablico", + "2032-11-02": "Finados", + "2032-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2032-11-19": "Assinatura do Tratado de Petr\u00f3polis", + "2032-11-20": "Consci\u00eancia Negra", + "2032-11-28": "Dia de Santa Catarina de Alexandria", + "2032-11-30": "Dia do Evang\u00e9lico", + "2032-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2032-12-24": "V\u00e9spera de Natal", + "2032-12-25": "Natal", + "2032-12-31": "V\u00e9spera de Ano-Novo", + "2033-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2033-01-04": "Cria\u00e7\u00e3o do Estado", + "2033-01-23": "Dia do Evang\u00e9lico", + "2033-02-28": "Carnaval", + "2033-03-01": "Carnaval", + "2033-03-02": "In\u00edcio da Quaresma", + "2033-03-06": "Revolu\u00e7\u00e3o Pernambucana", + "2033-03-11": "Dia Internacional da Mulher", + "2033-03-18": "Dia da Autonomia", + "2033-03-19": "S\u00e3o Jos\u00e9", + "2033-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2033-04-15": "Sexta-feira Santa", + "2033-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2033-04-23": "S\u00e3o Jorge", + "2033-04-25": "Nossa Senhora da Penha", + "2033-05-01": "Dia do Trabalhador", + "2033-06-15": "Anivers\u00e1rio do Acre", + "2033-06-16": "Corpus Christi", + "2033-06-18": "Dia do Evang\u00e9lico", + "2033-06-24": "S\u00e3o Jo\u00e3o", + "2033-06-29": "S\u00e3o Pedro", + "2033-07-02": "Independ\u00eancia da Bahia", + "2033-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2033-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2033-07-25": "S\u00e3o Tiago", + "2033-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2033-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2033-08-05": "Funda\u00e7\u00e3o do Estado", + "2033-08-07": "Dia do Rio Grande do Norte", + "2033-08-14": "Dia do Estado de Santa Catarina", + "2033-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2033-09-05": "Dia da Amaz\u00f4nia; Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2033-09-07": "Independ\u00eancia do Brasil", + "2033-09-08": "Nossa Senhora da Natividade", + "2033-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2033-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2033-09-20": "Dia do Ga\u00facho", + "2033-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2033-10-05": "Cria\u00e7\u00e3o do Estado", + "2033-10-11": "Cria\u00e7\u00e3o do Estado", + "2033-10-12": "Nossa Senhora Aparecida", + "2033-10-19": "Dia do Piau\u00ed", + "2033-10-24": "Pedra fundamental de Goi\u00e2nia", + "2033-10-28": "Dia do Servidor P\u00fablico", + "2033-11-02": "Finados", + "2033-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2033-11-18": "Assinatura do Tratado de Petr\u00f3polis", + "2033-11-20": "Consci\u00eancia Negra", + "2033-11-27": "Dia de Santa Catarina de Alexandria", + "2033-11-30": "Dia do Evang\u00e9lico", + "2033-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2033-12-24": "V\u00e9spera de Natal", + "2033-12-25": "Natal", + "2033-12-31": "V\u00e9spera de Ano-Novo", + "2034-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2034-01-04": "Cria\u00e7\u00e3o do Estado", + "2034-01-23": "Dia do Evang\u00e9lico", + "2034-02-20": "Carnaval", + "2034-02-21": "Carnaval", + "2034-02-22": "In\u00edcio da Quaresma", + "2034-03-05": "Revolu\u00e7\u00e3o Pernambucana", + "2034-03-10": "Dia Internacional da Mulher", + "2034-03-18": "Dia da Autonomia", + "2034-03-19": "S\u00e3o Jos\u00e9", + "2034-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2034-04-07": "Sexta-feira Santa", + "2034-04-17": "Nossa Senhora da Penha", + "2034-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2034-04-23": "S\u00e3o Jorge", + "2034-05-01": "Dia do Trabalhador", + "2034-06-08": "Corpus Christi", + "2034-06-15": "Anivers\u00e1rio do Acre", + "2034-06-18": "Dia do Evang\u00e9lico", + "2034-06-24": "S\u00e3o Jo\u00e3o", + "2034-06-29": "S\u00e3o Pedro", + "2034-07-02": "Independ\u00eancia da Bahia", + "2034-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2034-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2034-07-25": "S\u00e3o Tiago", + "2034-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2034-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2034-08-05": "Funda\u00e7\u00e3o do Estado", + "2034-08-07": "Dia do Rio Grande do Norte", + "2034-08-13": "Dia do Estado de Santa Catarina", + "2034-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2034-09-05": "Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2034-09-07": "Independ\u00eancia do Brasil", + "2034-09-08": "Dia da Amaz\u00f4nia; Nossa Senhora da Natividade", + "2034-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2034-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2034-09-20": "Dia do Ga\u00facho", + "2034-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2034-10-05": "Cria\u00e7\u00e3o do Estado", + "2034-10-11": "Cria\u00e7\u00e3o do Estado", + "2034-10-12": "Nossa Senhora Aparecida", + "2034-10-19": "Dia do Piau\u00ed", + "2034-10-24": "Pedra fundamental de Goi\u00e2nia", + "2034-10-28": "Dia do Servidor P\u00fablico", + "2034-11-02": "Finados", + "2034-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2034-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "2034-11-20": "Consci\u00eancia Negra", + "2034-11-26": "Dia de Santa Catarina de Alexandria", + "2034-11-30": "Dia do Evang\u00e9lico", + "2034-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2034-12-24": "V\u00e9spera de Natal", + "2034-12-25": "Natal", + "2034-12-31": "V\u00e9spera de Ano-Novo", + "2035-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2035-01-04": "Cria\u00e7\u00e3o do Estado", + "2035-01-26": "Dia do Evang\u00e9lico", + "2035-02-05": "Carnaval", + "2035-02-06": "Carnaval", + "2035-02-07": "In\u00edcio da Quaresma", + "2035-03-04": "Revolu\u00e7\u00e3o Pernambucana", + "2035-03-09": "Dia Internacional da Mulher", + "2035-03-18": "Dia da Autonomia", + "2035-03-19": "S\u00e3o Jos\u00e9", + "2035-03-23": "Sexta-feira Santa", + "2035-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2035-04-02": "Nossa Senhora da Penha", + "2035-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2035-04-23": "S\u00e3o Jorge", + "2035-05-01": "Dia do Trabalhador", + "2035-05-24": "Corpus Christi", + "2035-06-15": "Anivers\u00e1rio do Acre", + "2035-06-18": "Dia do Evang\u00e9lico", + "2035-06-24": "S\u00e3o Jo\u00e3o", + "2035-06-29": "S\u00e3o Pedro", + "2035-07-02": "Independ\u00eancia da Bahia", + "2035-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2035-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2035-07-25": "S\u00e3o Tiago", + "2035-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2035-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2035-08-05": "Funda\u00e7\u00e3o do Estado", + "2035-08-07": "Dia do Rio Grande do Norte", + "2035-08-12": "Dia do Estado de Santa Catarina", + "2035-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2035-09-05": "Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2035-09-07": "Dia da Amaz\u00f4nia; Independ\u00eancia do Brasil", + "2035-09-08": "Nossa Senhora da Natividade", + "2035-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2035-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2035-09-20": "Dia do Ga\u00facho", + "2035-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2035-10-05": "Cria\u00e7\u00e3o do Estado", + "2035-10-11": "Cria\u00e7\u00e3o do Estado", + "2035-10-12": "Nossa Senhora Aparecida", + "2035-10-19": "Dia do Piau\u00ed", + "2035-10-24": "Pedra fundamental de Goi\u00e2nia", + "2035-10-28": "Dia do Servidor P\u00fablico", + "2035-11-02": "Finados", + "2035-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2035-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "2035-11-20": "Consci\u00eancia Negra", + "2035-11-25": "Dia de Santa Catarina de Alexandria", + "2035-11-30": "Dia do Evang\u00e9lico", + "2035-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2035-12-24": "V\u00e9spera de Natal", + "2035-12-25": "Natal", + "2035-12-31": "V\u00e9spera de Ano-Novo", + "2036-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2036-01-04": "Cria\u00e7\u00e3o do Estado", + "2036-01-25": "Dia do Evang\u00e9lico", + "2036-02-25": "Carnaval", + "2036-02-26": "Carnaval", + "2036-02-27": "In\u00edcio da Quaresma", + "2036-03-02": "Revolu\u00e7\u00e3o Pernambucana", + "2036-03-08": "Dia Internacional da Mulher", + "2036-03-18": "Dia da Autonomia", + "2036-03-19": "S\u00e3o Jos\u00e9", + "2036-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2036-04-11": "Sexta-feira Santa", + "2036-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Nossa Senhora da Penha; Tiradentes", + "2036-04-23": "S\u00e3o Jorge", + "2036-05-01": "Dia do Trabalhador", + "2036-06-12": "Corpus Christi", + "2036-06-15": "Anivers\u00e1rio do Acre", + "2036-06-18": "Dia do Evang\u00e9lico", + "2036-06-24": "S\u00e3o Jo\u00e3o", + "2036-06-29": "S\u00e3o Pedro", + "2036-07-02": "Independ\u00eancia da Bahia", + "2036-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2036-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2036-07-25": "S\u00e3o Tiago", + "2036-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2036-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2036-08-05": "Funda\u00e7\u00e3o do Estado", + "2036-08-07": "Dia do Rio Grande do Norte", + "2036-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2036-08-17": "Dia do Estado de Santa Catarina", + "2036-09-05": "Dia da Amaz\u00f4nia; Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2036-09-07": "Independ\u00eancia do Brasil", + "2036-09-08": "Nossa Senhora da Natividade", + "2036-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2036-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2036-09-20": "Dia do Ga\u00facho", + "2036-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2036-10-05": "Cria\u00e7\u00e3o do Estado", + "2036-10-11": "Cria\u00e7\u00e3o do Estado", + "2036-10-12": "Nossa Senhora Aparecida", + "2036-10-19": "Dia do Piau\u00ed", + "2036-10-24": "Pedra fundamental de Goi\u00e2nia", + "2036-10-28": "Dia do Servidor P\u00fablico", + "2036-11-02": "Finados", + "2036-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2036-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "2036-11-20": "Consci\u00eancia Negra", + "2036-11-30": "Dia de Santa Catarina de Alexandria; Dia do Evang\u00e9lico", + "2036-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2036-12-24": "V\u00e9spera de Natal", + "2036-12-25": "Natal", + "2036-12-31": "V\u00e9spera de Ano-Novo", + "2037-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2037-01-04": "Cria\u00e7\u00e3o do Estado", + "2037-01-23": "Dia do Evang\u00e9lico", + "2037-02-16": "Carnaval", + "2037-02-17": "Carnaval", + "2037-02-18": "In\u00edcio da Quaresma", + "2037-03-01": "Revolu\u00e7\u00e3o Pernambucana", + "2037-03-08": "Dia Internacional da Mulher", + "2037-03-18": "Dia da Autonomia", + "2037-03-19": "S\u00e3o Jos\u00e9", + "2037-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2037-04-03": "Sexta-feira Santa", + "2037-04-13": "Nossa Senhora da Penha", + "2037-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2037-04-23": "S\u00e3o Jorge", + "2037-05-01": "Dia do Trabalhador", + "2037-06-04": "Corpus Christi", + "2037-06-15": "Anivers\u00e1rio do Acre", + "2037-06-18": "Dia do Evang\u00e9lico", + "2037-06-24": "S\u00e3o Jo\u00e3o", + "2037-06-29": "S\u00e3o Pedro", + "2037-07-02": "Independ\u00eancia da Bahia", + "2037-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2037-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2037-07-25": "S\u00e3o Tiago", + "2037-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2037-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2037-08-05": "Funda\u00e7\u00e3o do Estado", + "2037-08-07": "Dia do Rio Grande do Norte", + "2037-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2037-08-16": "Dia do Estado de Santa Catarina", + "2037-09-05": "Dia da Amaz\u00f4nia; Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2037-09-07": "Independ\u00eancia do Brasil", + "2037-09-08": "Nossa Senhora da Natividade", + "2037-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2037-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2037-09-20": "Dia do Ga\u00facho", + "2037-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2037-10-05": "Cria\u00e7\u00e3o do Estado", + "2037-10-11": "Cria\u00e7\u00e3o do Estado", + "2037-10-12": "Nossa Senhora Aparecida", + "2037-10-19": "Dia do Piau\u00ed", + "2037-10-24": "Pedra fundamental de Goi\u00e2nia", + "2037-10-28": "Dia do Servidor P\u00fablico", + "2037-11-02": "Finados", + "2037-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2037-11-20": "Assinatura do Tratado de Petr\u00f3polis; Consci\u00eancia Negra", + "2037-11-29": "Dia de Santa Catarina de Alexandria", + "2037-11-30": "Dia do Evang\u00e9lico", + "2037-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2037-12-24": "V\u00e9spera de Natal", + "2037-12-25": "Natal", + "2037-12-31": "V\u00e9spera de Ano-Novo", + "2038-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2038-01-04": "Cria\u00e7\u00e3o do Estado", + "2038-01-23": "Dia do Evang\u00e9lico", + "2038-03-07": "Revolu\u00e7\u00e3o Pernambucana", + "2038-03-08": "Carnaval; Dia Internacional da Mulher", + "2038-03-09": "Carnaval", + "2038-03-10": "In\u00edcio da Quaresma", + "2038-03-18": "Dia da Autonomia", + "2038-03-19": "S\u00e3o Jos\u00e9", + "2038-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2038-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2038-04-23": "Sexta-feira Santa; S\u00e3o Jorge", + "2038-05-01": "Dia do Trabalhador", + "2038-05-03": "Nossa Senhora da Penha", + "2038-06-15": "Anivers\u00e1rio do Acre", + "2038-06-18": "Dia do Evang\u00e9lico", + "2038-06-24": "Corpus Christi; S\u00e3o Jo\u00e3o", + "2038-06-29": "S\u00e3o Pedro", + "2038-07-02": "Independ\u00eancia da Bahia", + "2038-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2038-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2038-07-25": "S\u00e3o Tiago", + "2038-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2038-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2038-08-05": "Funda\u00e7\u00e3o do Estado", + "2038-08-07": "Dia do Rio Grande do Norte", + "2038-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Dia do Estado de Santa Catarina; Nossa Senhora da Assun\u00e7\u00e3o", + "2038-09-05": "Dia da Amaz\u00f4nia; Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2038-09-07": "Independ\u00eancia do Brasil", + "2038-09-08": "Nossa Senhora da Natividade", + "2038-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2038-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2038-09-20": "Dia do Ga\u00facho", + "2038-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2038-10-05": "Cria\u00e7\u00e3o do Estado", + "2038-10-11": "Cria\u00e7\u00e3o do Estado", + "2038-10-12": "Nossa Senhora Aparecida", + "2038-10-19": "Dia do Piau\u00ed", + "2038-10-24": "Pedra fundamental de Goi\u00e2nia", + "2038-10-28": "Dia do Servidor P\u00fablico", + "2038-11-02": "Finados", + "2038-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2038-11-19": "Assinatura do Tratado de Petr\u00f3polis", + "2038-11-20": "Consci\u00eancia Negra", + "2038-11-28": "Dia de Santa Catarina de Alexandria", + "2038-11-30": "Dia do Evang\u00e9lico", + "2038-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2038-12-24": "V\u00e9spera de Natal", + "2038-12-25": "Natal", + "2038-12-31": "V\u00e9spera de Ano-Novo", + "2039-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2039-01-04": "Cria\u00e7\u00e3o do Estado", + "2039-01-23": "Dia do Evang\u00e9lico", + "2039-02-21": "Carnaval", + "2039-02-22": "Carnaval", + "2039-02-23": "In\u00edcio da Quaresma", + "2039-03-06": "Revolu\u00e7\u00e3o Pernambucana", + "2039-03-11": "Dia Internacional da Mulher", + "2039-03-18": "Dia da Autonomia", + "2039-03-19": "S\u00e3o Jos\u00e9", + "2039-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2039-04-08": "Sexta-feira Santa", + "2039-04-18": "Nossa Senhora da Penha", + "2039-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2039-04-23": "S\u00e3o Jorge", + "2039-05-01": "Dia do Trabalhador", + "2039-06-09": "Corpus Christi", + "2039-06-15": "Anivers\u00e1rio do Acre", + "2039-06-18": "Dia do Evang\u00e9lico", + "2039-06-24": "S\u00e3o Jo\u00e3o", + "2039-06-29": "S\u00e3o Pedro", + "2039-07-02": "Independ\u00eancia da Bahia", + "2039-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2039-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2039-07-25": "S\u00e3o Tiago", + "2039-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2039-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2039-08-05": "Funda\u00e7\u00e3o do Estado", + "2039-08-07": "Dia do Rio Grande do Norte", + "2039-08-14": "Dia do Estado de Santa Catarina", + "2039-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2039-09-05": "Dia da Amaz\u00f4nia; Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2039-09-07": "Independ\u00eancia do Brasil", + "2039-09-08": "Nossa Senhora da Natividade", + "2039-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2039-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2039-09-20": "Dia do Ga\u00facho", + "2039-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2039-10-05": "Cria\u00e7\u00e3o do Estado", + "2039-10-11": "Cria\u00e7\u00e3o do Estado", + "2039-10-12": "Nossa Senhora Aparecida", + "2039-10-19": "Dia do Piau\u00ed", + "2039-10-24": "Pedra fundamental de Goi\u00e2nia", + "2039-10-28": "Dia do Servidor P\u00fablico", + "2039-11-02": "Finados", + "2039-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2039-11-18": "Assinatura do Tratado de Petr\u00f3polis", + "2039-11-20": "Consci\u00eancia Negra", + "2039-11-27": "Dia de Santa Catarina de Alexandria", + "2039-11-30": "Dia do Evang\u00e9lico", + "2039-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2039-12-24": "V\u00e9spera de Natal", + "2039-12-25": "Natal", + "2039-12-31": "V\u00e9spera de Ano-Novo", + "2040-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2040-01-04": "Cria\u00e7\u00e3o do Estado", + "2040-01-23": "Dia do Evang\u00e9lico", + "2040-02-13": "Carnaval", + "2040-02-14": "Carnaval", + "2040-02-15": "In\u00edcio da Quaresma", + "2040-03-04": "Revolu\u00e7\u00e3o Pernambucana", + "2040-03-09": "Dia Internacional da Mulher", + "2040-03-18": "Dia da Autonomia", + "2040-03-19": "S\u00e3o Jos\u00e9", + "2040-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2040-03-30": "Sexta-feira Santa", + "2040-04-09": "Nossa Senhora da Penha", + "2040-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2040-04-23": "S\u00e3o Jorge", + "2040-05-01": "Dia do Trabalhador", + "2040-05-31": "Corpus Christi", + "2040-06-15": "Anivers\u00e1rio do Acre", + "2040-06-18": "Dia do Evang\u00e9lico", + "2040-06-24": "S\u00e3o Jo\u00e3o", + "2040-06-29": "S\u00e3o Pedro", + "2040-07-02": "Independ\u00eancia da Bahia", + "2040-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2040-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2040-07-25": "S\u00e3o Tiago", + "2040-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2040-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2040-08-05": "Funda\u00e7\u00e3o do Estado", + "2040-08-07": "Dia do Rio Grande do Norte", + "2040-08-12": "Dia do Estado de Santa Catarina", + "2040-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2040-09-05": "Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2040-09-07": "Dia da Amaz\u00f4nia; Independ\u00eancia do Brasil", + "2040-09-08": "Nossa Senhora da Natividade", + "2040-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2040-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2040-09-20": "Dia do Ga\u00facho", + "2040-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2040-10-05": "Cria\u00e7\u00e3o do Estado", + "2040-10-11": "Cria\u00e7\u00e3o do Estado", + "2040-10-12": "Nossa Senhora Aparecida", + "2040-10-19": "Dia do Piau\u00ed", + "2040-10-24": "Pedra fundamental de Goi\u00e2nia", + "2040-10-28": "Dia do Servidor P\u00fablico", + "2040-11-02": "Finados", + "2040-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2040-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "2040-11-20": "Consci\u00eancia Negra", + "2040-11-25": "Dia de Santa Catarina de Alexandria", + "2040-11-30": "Dia do Evang\u00e9lico", + "2040-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2040-12-24": "V\u00e9spera de Natal", + "2040-12-25": "Natal", + "2040-12-31": "V\u00e9spera de Ano-Novo", + "2041-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2041-01-04": "Cria\u00e7\u00e3o do Estado", + "2041-01-25": "Dia do Evang\u00e9lico", + "2041-03-03": "Revolu\u00e7\u00e3o Pernambucana", + "2041-03-04": "Carnaval", + "2041-03-05": "Carnaval", + "2041-03-06": "In\u00edcio da Quaresma", + "2041-03-08": "Dia Internacional da Mulher", + "2041-03-18": "Dia da Autonomia", + "2041-03-19": "S\u00e3o Jos\u00e9", + "2041-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2041-04-19": "Sexta-feira Santa", + "2041-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2041-04-23": "S\u00e3o Jorge", + "2041-04-29": "Nossa Senhora da Penha", + "2041-05-01": "Dia do Trabalhador", + "2041-06-15": "Anivers\u00e1rio do Acre", + "2041-06-18": "Dia do Evang\u00e9lico", + "2041-06-20": "Corpus Christi", + "2041-06-24": "S\u00e3o Jo\u00e3o", + "2041-06-29": "S\u00e3o Pedro", + "2041-07-02": "Independ\u00eancia da Bahia", + "2041-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2041-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2041-07-25": "S\u00e3o Tiago", + "2041-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2041-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2041-08-05": "Funda\u00e7\u00e3o do Estado", + "2041-08-07": "Dia do Rio Grande do Norte", + "2041-08-11": "Dia do Estado de Santa Catarina", + "2041-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2041-09-05": "Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2041-09-06": "Dia da Amaz\u00f4nia", + "2041-09-07": "Independ\u00eancia do Brasil", + "2041-09-08": "Nossa Senhora da Natividade", + "2041-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2041-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2041-09-20": "Dia do Ga\u00facho", + "2041-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2041-10-05": "Cria\u00e7\u00e3o do Estado", + "2041-10-11": "Cria\u00e7\u00e3o do Estado", + "2041-10-12": "Nossa Senhora Aparecida", + "2041-10-19": "Dia do Piau\u00ed", + "2041-10-24": "Pedra fundamental de Goi\u00e2nia", + "2041-10-28": "Dia do Servidor P\u00fablico", + "2041-11-02": "Finados", + "2041-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2041-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "2041-11-20": "Consci\u00eancia Negra", + "2041-11-30": "Dia do Evang\u00e9lico", + "2041-12-01": "Dia de Santa Catarina de Alexandria", + "2041-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2041-12-24": "V\u00e9spera de Natal", + "2041-12-25": "Natal", + "2041-12-31": "V\u00e9spera de Ano-Novo", + "2042-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2042-01-04": "Cria\u00e7\u00e3o do Estado", + "2042-01-24": "Dia do Evang\u00e9lico", + "2042-02-17": "Carnaval", + "2042-02-18": "Carnaval", + "2042-02-19": "In\u00edcio da Quaresma", + "2042-03-02": "Revolu\u00e7\u00e3o Pernambucana", + "2042-03-08": "Dia Internacional da Mulher", + "2042-03-18": "Dia da Autonomia", + "2042-03-19": "S\u00e3o Jos\u00e9", + "2042-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2042-04-04": "Sexta-feira Santa", + "2042-04-14": "Nossa Senhora da Penha", + "2042-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2042-04-23": "S\u00e3o Jorge", + "2042-05-01": "Dia do Trabalhador", + "2042-06-05": "Corpus Christi", + "2042-06-15": "Anivers\u00e1rio do Acre", + "2042-06-18": "Dia do Evang\u00e9lico", + "2042-06-24": "S\u00e3o Jo\u00e3o", + "2042-06-29": "S\u00e3o Pedro", + "2042-07-02": "Independ\u00eancia da Bahia", + "2042-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2042-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2042-07-25": "S\u00e3o Tiago", + "2042-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2042-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2042-08-05": "Funda\u00e7\u00e3o do Estado", + "2042-08-07": "Dia do Rio Grande do Norte", + "2042-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2042-08-17": "Dia do Estado de Santa Catarina", + "2042-09-05": "Dia da Amaz\u00f4nia; Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2042-09-07": "Independ\u00eancia do Brasil", + "2042-09-08": "Nossa Senhora da Natividade", + "2042-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2042-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2042-09-20": "Dia do Ga\u00facho", + "2042-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2042-10-05": "Cria\u00e7\u00e3o do Estado", + "2042-10-11": "Cria\u00e7\u00e3o do Estado", + "2042-10-12": "Nossa Senhora Aparecida", + "2042-10-19": "Dia do Piau\u00ed", + "2042-10-24": "Pedra fundamental de Goi\u00e2nia", + "2042-10-28": "Dia do Servidor P\u00fablico", + "2042-11-02": "Finados", + "2042-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2042-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "2042-11-20": "Consci\u00eancia Negra", + "2042-11-30": "Dia de Santa Catarina de Alexandria; Dia do Evang\u00e9lico", + "2042-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2042-12-24": "V\u00e9spera de Natal", + "2042-12-25": "Natal", + "2042-12-31": "V\u00e9spera de Ano-Novo", + "2043-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2043-01-04": "Cria\u00e7\u00e3o do Estado", + "2043-01-23": "Dia do Evang\u00e9lico", + "2043-02-09": "Carnaval", + "2043-02-10": "Carnaval", + "2043-02-11": "In\u00edcio da Quaresma", + "2043-03-01": "Revolu\u00e7\u00e3o Pernambucana", + "2043-03-08": "Dia Internacional da Mulher", + "2043-03-18": "Dia da Autonomia", + "2043-03-19": "S\u00e3o Jos\u00e9", + "2043-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2043-03-27": "Sexta-feira Santa", + "2043-04-06": "Nossa Senhora da Penha", + "2043-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2043-04-23": "S\u00e3o Jorge", + "2043-05-01": "Dia do Trabalhador", + "2043-05-28": "Corpus Christi", + "2043-06-15": "Anivers\u00e1rio do Acre", + "2043-06-18": "Dia do Evang\u00e9lico", + "2043-06-24": "S\u00e3o Jo\u00e3o", + "2043-06-29": "S\u00e3o Pedro", + "2043-07-02": "Independ\u00eancia da Bahia", + "2043-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2043-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2043-07-25": "S\u00e3o Tiago", + "2043-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2043-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2043-08-05": "Funda\u00e7\u00e3o do Estado", + "2043-08-07": "Dia do Rio Grande do Norte", + "2043-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2043-08-16": "Dia do Estado de Santa Catarina", + "2043-09-05": "Dia da Amaz\u00f4nia; Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2043-09-07": "Independ\u00eancia do Brasil", + "2043-09-08": "Nossa Senhora da Natividade", + "2043-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2043-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2043-09-20": "Dia do Ga\u00facho", + "2043-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2043-10-05": "Cria\u00e7\u00e3o do Estado", + "2043-10-11": "Cria\u00e7\u00e3o do Estado", + "2043-10-12": "Nossa Senhora Aparecida", + "2043-10-19": "Dia do Piau\u00ed", + "2043-10-24": "Pedra fundamental de Goi\u00e2nia", + "2043-10-28": "Dia do Servidor P\u00fablico", + "2043-11-02": "Finados", + "2043-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2043-11-20": "Assinatura do Tratado de Petr\u00f3polis; Consci\u00eancia Negra", + "2043-11-29": "Dia de Santa Catarina de Alexandria", + "2043-11-30": "Dia do Evang\u00e9lico", + "2043-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2043-12-24": "V\u00e9spera de Natal", + "2043-12-25": "Natal", + "2043-12-31": "V\u00e9spera de Ano-Novo", + "2044-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2044-01-04": "Cria\u00e7\u00e3o do Estado", + "2044-01-23": "Dia do Evang\u00e9lico", + "2044-02-29": "Carnaval", + "2044-03-01": "Carnaval", + "2044-03-02": "In\u00edcio da Quaresma", + "2044-03-06": "Revolu\u00e7\u00e3o Pernambucana", + "2044-03-11": "Dia Internacional da Mulher", + "2044-03-18": "Dia da Autonomia", + "2044-03-19": "S\u00e3o Jos\u00e9", + "2044-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2044-04-15": "Sexta-feira Santa", + "2044-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2044-04-23": "S\u00e3o Jorge", + "2044-04-25": "Nossa Senhora da Penha", + "2044-05-01": "Dia do Trabalhador", + "2044-06-15": "Anivers\u00e1rio do Acre", + "2044-06-16": "Corpus Christi", + "2044-06-18": "Dia do Evang\u00e9lico", + "2044-06-24": "S\u00e3o Jo\u00e3o", + "2044-06-29": "S\u00e3o Pedro", + "2044-07-02": "Independ\u00eancia da Bahia", + "2044-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2044-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2044-07-25": "S\u00e3o Tiago", + "2044-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2044-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2044-08-05": "Funda\u00e7\u00e3o do Estado", + "2044-08-07": "Dia do Rio Grande do Norte", + "2044-08-14": "Dia do Estado de Santa Catarina", + "2044-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2044-09-05": "Dia da Amaz\u00f4nia; Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2044-09-07": "Independ\u00eancia do Brasil", + "2044-09-08": "Nossa Senhora da Natividade", + "2044-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2044-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2044-09-20": "Dia do Ga\u00facho", + "2044-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2044-10-05": "Cria\u00e7\u00e3o do Estado", + "2044-10-11": "Cria\u00e7\u00e3o do Estado", + "2044-10-12": "Nossa Senhora Aparecida", + "2044-10-19": "Dia do Piau\u00ed", + "2044-10-24": "Pedra fundamental de Goi\u00e2nia", + "2044-10-28": "Dia do Servidor P\u00fablico", + "2044-11-02": "Finados", + "2044-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2044-11-18": "Assinatura do Tratado de Petr\u00f3polis", + "2044-11-20": "Consci\u00eancia Negra", + "2044-11-27": "Dia de Santa Catarina de Alexandria", + "2044-11-30": "Dia do Evang\u00e9lico", + "2044-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2044-12-24": "V\u00e9spera de Natal", + "2044-12-25": "Natal", + "2044-12-31": "V\u00e9spera de Ano-Novo", + "2045-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2045-01-04": "Cria\u00e7\u00e3o do Estado", + "2045-01-23": "Dia do Evang\u00e9lico", + "2045-02-20": "Carnaval", + "2045-02-21": "Carnaval", + "2045-02-22": "In\u00edcio da Quaresma", + "2045-03-05": "Revolu\u00e7\u00e3o Pernambucana", + "2045-03-10": "Dia Internacional da Mulher", + "2045-03-18": "Dia da Autonomia", + "2045-03-19": "S\u00e3o Jos\u00e9", + "2045-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2045-04-07": "Sexta-feira Santa", + "2045-04-17": "Nossa Senhora da Penha", + "2045-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2045-04-23": "S\u00e3o Jorge", + "2045-05-01": "Dia do Trabalhador", + "2045-06-08": "Corpus Christi", + "2045-06-15": "Anivers\u00e1rio do Acre", + "2045-06-18": "Dia do Evang\u00e9lico", + "2045-06-24": "S\u00e3o Jo\u00e3o", + "2045-06-29": "S\u00e3o Pedro", + "2045-07-02": "Independ\u00eancia da Bahia", + "2045-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2045-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2045-07-25": "S\u00e3o Tiago", + "2045-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2045-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2045-08-05": "Funda\u00e7\u00e3o do Estado", + "2045-08-07": "Dia do Rio Grande do Norte", + "2045-08-13": "Dia do Estado de Santa Catarina", + "2045-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2045-09-05": "Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2045-09-07": "Independ\u00eancia do Brasil", + "2045-09-08": "Dia da Amaz\u00f4nia; Nossa Senhora da Natividade", + "2045-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2045-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2045-09-20": "Dia do Ga\u00facho", + "2045-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2045-10-05": "Cria\u00e7\u00e3o do Estado", + "2045-10-11": "Cria\u00e7\u00e3o do Estado", + "2045-10-12": "Nossa Senhora Aparecida", + "2045-10-19": "Dia do Piau\u00ed", + "2045-10-24": "Pedra fundamental de Goi\u00e2nia", + "2045-10-28": "Dia do Servidor P\u00fablico", + "2045-11-02": "Finados", + "2045-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2045-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "2045-11-20": "Consci\u00eancia Negra", + "2045-11-26": "Dia de Santa Catarina de Alexandria", + "2045-11-30": "Dia do Evang\u00e9lico", + "2045-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2045-12-24": "V\u00e9spera de Natal", + "2045-12-25": "Natal", + "2045-12-31": "V\u00e9spera de Ano-Novo", + "2046-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2046-01-04": "Cria\u00e7\u00e3o do Estado", + "2046-01-26": "Dia do Evang\u00e9lico", + "2046-02-05": "Carnaval", + "2046-02-06": "Carnaval", + "2046-02-07": "In\u00edcio da Quaresma", + "2046-03-04": "Revolu\u00e7\u00e3o Pernambucana", + "2046-03-09": "Dia Internacional da Mulher", + "2046-03-18": "Dia da Autonomia", + "2046-03-19": "S\u00e3o Jos\u00e9", + "2046-03-23": "Sexta-feira Santa", + "2046-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2046-04-02": "Nossa Senhora da Penha", + "2046-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2046-04-23": "S\u00e3o Jorge", + "2046-05-01": "Dia do Trabalhador", + "2046-05-24": "Corpus Christi", + "2046-06-15": "Anivers\u00e1rio do Acre", + "2046-06-18": "Dia do Evang\u00e9lico", + "2046-06-24": "S\u00e3o Jo\u00e3o", + "2046-06-29": "S\u00e3o Pedro", + "2046-07-02": "Independ\u00eancia da Bahia", + "2046-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2046-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2046-07-25": "S\u00e3o Tiago", + "2046-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2046-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2046-08-05": "Funda\u00e7\u00e3o do Estado", + "2046-08-07": "Dia do Rio Grande do Norte", + "2046-08-12": "Dia do Estado de Santa Catarina", + "2046-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2046-09-05": "Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2046-09-07": "Dia da Amaz\u00f4nia; Independ\u00eancia do Brasil", + "2046-09-08": "Nossa Senhora da Natividade", + "2046-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2046-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2046-09-20": "Dia do Ga\u00facho", + "2046-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2046-10-05": "Cria\u00e7\u00e3o do Estado", + "2046-10-11": "Cria\u00e7\u00e3o do Estado", + "2046-10-12": "Nossa Senhora Aparecida", + "2046-10-19": "Dia do Piau\u00ed", + "2046-10-24": "Pedra fundamental de Goi\u00e2nia", + "2046-10-28": "Dia do Servidor P\u00fablico", + "2046-11-02": "Finados", + "2046-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2046-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "2046-11-20": "Consci\u00eancia Negra", + "2046-11-25": "Dia de Santa Catarina de Alexandria", + "2046-11-30": "Dia do Evang\u00e9lico", + "2046-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2046-12-24": "V\u00e9spera de Natal", + "2046-12-25": "Natal", + "2046-12-31": "V\u00e9spera de Ano-Novo", + "2047-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2047-01-04": "Cria\u00e7\u00e3o do Estado", + "2047-01-25": "Dia do Evang\u00e9lico", + "2047-02-25": "Carnaval", + "2047-02-26": "Carnaval", + "2047-02-27": "In\u00edcio da Quaresma", + "2047-03-03": "Revolu\u00e7\u00e3o Pernambucana", + "2047-03-08": "Dia Internacional da Mulher", + "2047-03-18": "Dia da Autonomia", + "2047-03-19": "S\u00e3o Jos\u00e9", + "2047-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2047-04-12": "Sexta-feira Santa", + "2047-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2047-04-22": "Nossa Senhora da Penha", + "2047-04-23": "S\u00e3o Jorge", + "2047-05-01": "Dia do Trabalhador", + "2047-06-13": "Corpus Christi", + "2047-06-15": "Anivers\u00e1rio do Acre", + "2047-06-18": "Dia do Evang\u00e9lico", + "2047-06-24": "S\u00e3o Jo\u00e3o", + "2047-06-29": "S\u00e3o Pedro", + "2047-07-02": "Independ\u00eancia da Bahia", + "2047-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2047-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2047-07-25": "S\u00e3o Tiago", + "2047-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2047-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2047-08-05": "Funda\u00e7\u00e3o do Estado", + "2047-08-07": "Dia do Rio Grande do Norte", + "2047-08-11": "Dia do Estado de Santa Catarina", + "2047-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2047-09-05": "Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2047-09-06": "Dia da Amaz\u00f4nia", + "2047-09-07": "Independ\u00eancia do Brasil", + "2047-09-08": "Nossa Senhora da Natividade", + "2047-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2047-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2047-09-20": "Dia do Ga\u00facho", + "2047-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2047-10-05": "Cria\u00e7\u00e3o do Estado", + "2047-10-11": "Cria\u00e7\u00e3o do Estado", + "2047-10-12": "Nossa Senhora Aparecida", + "2047-10-19": "Dia do Piau\u00ed", + "2047-10-24": "Pedra fundamental de Goi\u00e2nia", + "2047-10-28": "Dia do Servidor P\u00fablico", + "2047-11-02": "Finados", + "2047-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2047-11-17": "Assinatura do Tratado de Petr\u00f3polis", + "2047-11-20": "Consci\u00eancia Negra", + "2047-11-30": "Dia do Evang\u00e9lico", + "2047-12-01": "Dia de Santa Catarina de Alexandria", + "2047-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2047-12-24": "V\u00e9spera de Natal", + "2047-12-25": "Natal", + "2047-12-31": "V\u00e9spera de Ano-Novo", + "2048-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2048-01-04": "Cria\u00e7\u00e3o do Estado", + "2048-01-24": "Dia do Evang\u00e9lico", + "2048-02-17": "Carnaval", + "2048-02-18": "Carnaval", + "2048-02-19": "In\u00edcio da Quaresma", + "2048-03-01": "Revolu\u00e7\u00e3o Pernambucana", + "2048-03-08": "Dia Internacional da Mulher", + "2048-03-18": "Dia da Autonomia", + "2048-03-19": "S\u00e3o Jos\u00e9", + "2048-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2048-04-03": "Sexta-feira Santa", + "2048-04-13": "Nossa Senhora da Penha", + "2048-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2048-04-23": "S\u00e3o Jorge", + "2048-05-01": "Dia do Trabalhador", + "2048-06-04": "Corpus Christi", + "2048-06-15": "Anivers\u00e1rio do Acre", + "2048-06-18": "Dia do Evang\u00e9lico", + "2048-06-24": "S\u00e3o Jo\u00e3o", + "2048-06-29": "S\u00e3o Pedro", + "2048-07-02": "Independ\u00eancia da Bahia", + "2048-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2048-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2048-07-25": "S\u00e3o Tiago", + "2048-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2048-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2048-08-05": "Funda\u00e7\u00e3o do Estado", + "2048-08-07": "Dia do Rio Grande do Norte", + "2048-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2048-08-16": "Dia do Estado de Santa Catarina", + "2048-09-05": "Dia da Amaz\u00f4nia; Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2048-09-07": "Independ\u00eancia do Brasil", + "2048-09-08": "Nossa Senhora da Natividade", + "2048-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2048-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2048-09-20": "Dia do Ga\u00facho", + "2048-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2048-10-05": "Cria\u00e7\u00e3o do Estado", + "2048-10-11": "Cria\u00e7\u00e3o do Estado", + "2048-10-12": "Nossa Senhora Aparecida", + "2048-10-19": "Dia do Piau\u00ed", + "2048-10-24": "Pedra fundamental de Goi\u00e2nia", + "2048-10-28": "Dia do Servidor P\u00fablico", + "2048-11-02": "Finados", + "2048-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2048-11-20": "Assinatura do Tratado de Petr\u00f3polis; Consci\u00eancia Negra", + "2048-11-29": "Dia de Santa Catarina de Alexandria", + "2048-11-30": "Dia do Evang\u00e9lico", + "2048-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2048-12-24": "V\u00e9spera de Natal", + "2048-12-25": "Natal", + "2048-12-31": "V\u00e9spera de Ano-Novo", + "2049-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2049-01-04": "Cria\u00e7\u00e3o do Estado", + "2049-01-23": "Dia do Evang\u00e9lico", + "2049-03-01": "Carnaval", + "2049-03-02": "Carnaval", + "2049-03-03": "In\u00edcio da Quaresma", + "2049-03-07": "Revolu\u00e7\u00e3o Pernambucana", + "2049-03-08": "Dia Internacional da Mulher", + "2049-03-18": "Dia da Autonomia", + "2049-03-19": "S\u00e3o Jos\u00e9", + "2049-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2049-04-16": "Sexta-feira Santa", + "2049-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2049-04-23": "S\u00e3o Jorge", + "2049-04-26": "Nossa Senhora da Penha", + "2049-05-01": "Dia do Trabalhador", + "2049-06-15": "Anivers\u00e1rio do Acre", + "2049-06-17": "Corpus Christi", + "2049-06-18": "Dia do Evang\u00e9lico", + "2049-06-24": "S\u00e3o Jo\u00e3o", + "2049-06-29": "S\u00e3o Pedro", + "2049-07-02": "Independ\u00eancia da Bahia", + "2049-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2049-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2049-07-25": "S\u00e3o Tiago", + "2049-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2049-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2049-08-05": "Funda\u00e7\u00e3o do Estado", + "2049-08-07": "Dia do Rio Grande do Norte", + "2049-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Dia do Estado de Santa Catarina; Nossa Senhora da Assun\u00e7\u00e3o", + "2049-09-05": "Dia da Amaz\u00f4nia; Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2049-09-07": "Independ\u00eancia do Brasil", + "2049-09-08": "Nossa Senhora da Natividade", + "2049-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2049-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2049-09-20": "Dia do Ga\u00facho", + "2049-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2049-10-05": "Cria\u00e7\u00e3o do Estado", + "2049-10-11": "Cria\u00e7\u00e3o do Estado", + "2049-10-12": "Nossa Senhora Aparecida", + "2049-10-19": "Dia do Piau\u00ed", + "2049-10-24": "Pedra fundamental de Goi\u00e2nia", + "2049-10-28": "Dia do Servidor P\u00fablico", + "2049-11-02": "Finados", + "2049-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2049-11-19": "Assinatura do Tratado de Petr\u00f3polis", + "2049-11-20": "Consci\u00eancia Negra", + "2049-11-28": "Dia de Santa Catarina de Alexandria", + "2049-11-30": "Dia do Evang\u00e9lico", + "2049-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2049-12-24": "V\u00e9spera de Natal", + "2049-12-25": "Natal", + "2049-12-31": "V\u00e9spera de Ano-Novo", + "2050-01-01": "Confraterniza\u00e7\u00e3o Universal", + "2050-01-04": "Cria\u00e7\u00e3o do Estado", + "2050-01-23": "Dia do Evang\u00e9lico", + "2050-02-21": "Carnaval", + "2050-02-22": "Carnaval", + "2050-02-23": "In\u00edcio da Quaresma", + "2050-03-06": "Revolu\u00e7\u00e3o Pernambucana", + "2050-03-11": "Dia Internacional da Mulher", + "2050-03-18": "Dia da Autonomia", + "2050-03-19": "S\u00e3o Jos\u00e9", + "2050-03-25": "Aboli\u00e7\u00e3o da escravid\u00e3o no Cear\u00e1", + "2050-04-08": "Sexta-feira Santa", + "2050-04-18": "Nossa Senhora da Penha", + "2050-04-21": "Execu\u00e7\u00e3o de Tiradentes; Funda\u00e7\u00e3o de Bras\u00edlia; Tiradentes", + "2050-04-23": "S\u00e3o Jorge", + "2050-05-01": "Dia do Trabalhador", + "2050-06-09": "Corpus Christi", + "2050-06-15": "Anivers\u00e1rio do Acre", + "2050-06-18": "Dia do Evang\u00e9lico", + "2050-06-24": "S\u00e3o Jo\u00e3o", + "2050-06-29": "S\u00e3o Pedro", + "2050-07-02": "Independ\u00eancia da Bahia", + "2050-07-08": "Emancipa\u00e7\u00e3o pol\u00edtica de Sergipe", + "2050-07-09": "Revolu\u00e7\u00e3o Constitucionalista", + "2050-07-25": "S\u00e3o Tiago", + "2050-07-26": "Funda\u00e7\u00e3o da cidade de Goi\u00e1s", + "2050-07-28": "Ades\u00e3o do Maranh\u00e3o \u00e0 independ\u00eancia do Brasil", + "2050-08-05": "Funda\u00e7\u00e3o do Estado", + "2050-08-07": "Dia do Rio Grande do Norte", + "2050-08-14": "Dia do Estado de Santa Catarina", + "2050-08-15": "Ades\u00e3o do Gr\u00e3o-Par\u00e1 \u00e0 independ\u00eancia do Brasil; Nossa Senhora da Assun\u00e7\u00e3o", + "2050-09-05": "Dia da Amaz\u00f4nia; Eleva\u00e7\u00e3o do Amazonas \u00e0 categoria de prov\u00edncia", + "2050-09-07": "Independ\u00eancia do Brasil", + "2050-09-08": "Nossa Senhora da Natividade", + "2050-09-13": "Cria\u00e7\u00e3o do Territ\u00f3rio Federal", + "2050-09-16": "Emancipa\u00e7\u00e3o Pol\u00edtica de Alagoas", + "2050-09-20": "Dia do Ga\u00facho", + "2050-10-03": "M\u00e1rtires de Cunha\u00fa e Urua\u00e7uu", + "2050-10-05": "Cria\u00e7\u00e3o do Estado", + "2050-10-11": "Cria\u00e7\u00e3o do Estado", + "2050-10-12": "Nossa Senhora Aparecida", + "2050-10-19": "Dia do Piau\u00ed", + "2050-10-24": "Pedra fundamental de Goi\u00e2nia", + "2050-10-28": "Dia do Servidor P\u00fablico", + "2050-11-02": "Finados", + "2050-11-15": "Proclama\u00e7\u00e3o da Rep\u00fablica", + "2050-11-18": "Assinatura do Tratado de Petr\u00f3polis", + "2050-11-20": "Consci\u00eancia Negra", + "2050-11-27": "Dia de Santa Catarina de Alexandria", + "2050-11-30": "Dia do Evang\u00e9lico", + "2050-12-19": "Emancipa\u00e7\u00e3o do Paran\u00e1", + "2050-12-24": "V\u00e9spera de Natal", + "2050-12-25": "Natal", + "2050-12-31": "V\u00e9spera de Ano-Novo" +} diff --git a/snapshots/countries/BW.json b/snapshots/countries/BW.json new file mode 100644 index 000000000..b9a095465 --- /dev/null +++ b/snapshots/countries/BW.json @@ -0,0 +1,1266 @@ +{ + "1966-01-01": "New Year's Day", + "1966-01-02": "New Year's Day Holiday", + "1966-04-08": "Good Friday", + "1966-04-09": "Holy Saturday", + "1966-04-11": "Easter Monday", + "1966-05-01": "Labour Day", + "1966-05-19": "Ascension Day", + "1966-07-01": "Sir Seretse Khama Day", + "1966-07-18": "President's Day", + "1966-07-19": "President's Day Holiday", + "1966-09-30": "Botswana Day", + "1966-10-01": "Botswana Day Holiday", + "1966-12-25": "Christmas Day", + "1966-12-26": "Boxing Day", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day Holiday", + "1967-03-24": "Good Friday", + "1967-03-25": "Holy Saturday", + "1967-03-27": "Easter Monday", + "1967-05-01": "Labour Day", + "1967-05-04": "Ascension Day", + "1967-07-01": "Sir Seretse Khama Day", + "1967-07-17": "President's Day", + "1967-07-18": "President's Day Holiday", + "1967-09-30": "Botswana Day", + "1967-10-01": "Botswana Day Holiday", + "1967-12-25": "Christmas Day", + "1967-12-26": "Boxing Day", + "1968-01-01": "New Year's Day", + "1968-01-02": "New Year's Day Holiday", + "1968-04-12": "Good Friday", + "1968-04-13": "Holy Saturday", + "1968-04-15": "Easter Monday", + "1968-05-01": "Labour Day", + "1968-05-23": "Ascension Day", + "1968-07-01": "Sir Seretse Khama Day", + "1968-07-15": "President's Day", + "1968-07-16": "President's Day Holiday", + "1968-09-30": "Botswana Day", + "1968-10-01": "Botswana Day Holiday", + "1968-12-25": "Christmas Day", + "1968-12-26": "Boxing Day", + "1969-01-01": "New Year's Day", + "1969-01-02": "New Year's Day Holiday", + "1969-04-04": "Good Friday", + "1969-04-05": "Holy Saturday", + "1969-04-07": "Easter Monday", + "1969-05-01": "Labour Day", + "1969-05-15": "Ascension Day", + "1969-07-01": "Sir Seretse Khama Day", + "1969-07-21": "President's Day", + "1969-07-22": "President's Day Holiday", + "1969-09-30": "Botswana Day", + "1969-10-01": "Botswana Day Holiday", + "1969-12-25": "Christmas Day", + "1969-12-26": "Boxing Day", + "1970-01-01": "New Year's Day", + "1970-01-02": "New Year's Day Holiday", + "1970-03-27": "Good Friday", + "1970-03-28": "Holy Saturday", + "1970-03-30": "Easter Monday", + "1970-05-01": "Labour Day", + "1970-05-07": "Ascension Day", + "1970-07-01": "Sir Seretse Khama Day", + "1970-07-20": "President's Day", + "1970-07-21": "President's Day Holiday", + "1970-09-30": "Botswana Day", + "1970-10-01": "Botswana Day Holiday", + "1970-12-25": "Christmas Day", + "1970-12-26": "Boxing Day", + "1971-01-01": "New Year's Day", + "1971-01-02": "New Year's Day Holiday", + "1971-04-09": "Good Friday", + "1971-04-10": "Holy Saturday", + "1971-04-12": "Easter Monday", + "1971-05-01": "Labour Day", + "1971-05-20": "Ascension Day", + "1971-07-01": "Sir Seretse Khama Day", + "1971-07-19": "President's Day", + "1971-07-20": "President's Day Holiday", + "1971-09-30": "Botswana Day", + "1971-10-01": "Botswana Day Holiday", + "1971-12-25": "Christmas Day", + "1971-12-26": "Boxing Day", + "1972-01-01": "New Year's Day", + "1972-01-02": "New Year's Day Holiday", + "1972-03-31": "Good Friday", + "1972-04-01": "Holy Saturday", + "1972-04-03": "Easter Monday", + "1972-05-01": "Labour Day", + "1972-05-11": "Ascension Day", + "1972-07-01": "Sir Seretse Khama Day", + "1972-07-17": "President's Day", + "1972-07-18": "President's Day Holiday", + "1972-09-30": "Botswana Day", + "1972-10-01": "Botswana Day Holiday", + "1972-12-25": "Christmas Day", + "1972-12-26": "Boxing Day", + "1973-01-01": "New Year's Day", + "1973-01-02": "New Year's Day Holiday", + "1973-04-20": "Good Friday", + "1973-04-21": "Holy Saturday", + "1973-04-23": "Easter Monday", + "1973-05-01": "Labour Day", + "1973-05-31": "Ascension Day", + "1973-07-01": "Sir Seretse Khama Day", + "1973-07-16": "President's Day", + "1973-07-17": "President's Day Holiday", + "1973-09-30": "Botswana Day", + "1973-10-01": "Botswana Day Holiday", + "1973-12-25": "Christmas Day", + "1973-12-26": "Boxing Day", + "1974-01-01": "New Year's Day", + "1974-01-02": "New Year's Day Holiday", + "1974-04-12": "Good Friday", + "1974-04-13": "Holy Saturday", + "1974-04-15": "Easter Monday", + "1974-05-01": "Labour Day", + "1974-05-23": "Ascension Day", + "1974-07-01": "Sir Seretse Khama Day", + "1974-07-15": "President's Day", + "1974-07-16": "President's Day Holiday", + "1974-09-30": "Botswana Day", + "1974-10-01": "Botswana Day Holiday", + "1974-12-25": "Christmas Day", + "1974-12-26": "Boxing Day", + "1975-01-01": "New Year's Day", + "1975-01-02": "New Year's Day Holiday", + "1975-03-28": "Good Friday", + "1975-03-29": "Holy Saturday", + "1975-03-31": "Easter Monday", + "1975-05-01": "Labour Day", + "1975-05-08": "Ascension Day", + "1975-07-01": "Sir Seretse Khama Day", + "1975-07-21": "President's Day", + "1975-07-22": "President's Day Holiday", + "1975-09-30": "Botswana Day", + "1975-10-01": "Botswana Day Holiday", + "1975-12-25": "Christmas Day", + "1975-12-26": "Boxing Day", + "1976-01-01": "New Year's Day", + "1976-01-02": "New Year's Day Holiday", + "1976-04-16": "Good Friday", + "1976-04-17": "Holy Saturday", + "1976-04-19": "Easter Monday", + "1976-05-01": "Labour Day", + "1976-05-27": "Ascension Day", + "1976-07-01": "Sir Seretse Khama Day", + "1976-07-19": "President's Day", + "1976-07-20": "President's Day Holiday", + "1976-09-30": "Botswana Day", + "1976-10-01": "Botswana Day Holiday", + "1976-12-25": "Christmas Day", + "1976-12-26": "Boxing Day", + "1977-01-01": "New Year's Day", + "1977-01-02": "New Year's Day Holiday", + "1977-04-08": "Good Friday", + "1977-04-09": "Holy Saturday", + "1977-04-11": "Easter Monday", + "1977-05-01": "Labour Day", + "1977-05-19": "Ascension Day", + "1977-07-01": "Sir Seretse Khama Day", + "1977-07-18": "President's Day", + "1977-07-19": "President's Day Holiday", + "1977-09-30": "Botswana Day", + "1977-10-01": "Botswana Day Holiday", + "1977-12-25": "Christmas Day", + "1977-12-26": "Boxing Day", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day Holiday", + "1978-03-24": "Good Friday", + "1978-03-25": "Holy Saturday", + "1978-03-27": "Easter Monday", + "1978-05-01": "Labour Day", + "1978-05-04": "Ascension Day", + "1978-07-01": "Sir Seretse Khama Day", + "1978-07-17": "President's Day", + "1978-07-18": "President's Day Holiday", + "1978-09-30": "Botswana Day", + "1978-10-01": "Botswana Day Holiday", + "1978-12-25": "Christmas Day", + "1978-12-26": "Boxing Day", + "1979-01-01": "New Year's Day", + "1979-01-02": "New Year's Day Holiday", + "1979-04-13": "Good Friday", + "1979-04-14": "Holy Saturday", + "1979-04-16": "Easter Monday", + "1979-05-01": "Labour Day", + "1979-05-24": "Ascension Day", + "1979-07-01": "Sir Seretse Khama Day", + "1979-07-16": "President's Day", + "1979-07-17": "President's Day Holiday", + "1979-09-30": "Botswana Day", + "1979-10-01": "Botswana Day Holiday", + "1979-12-25": "Christmas Day", + "1979-12-26": "Boxing Day", + "1980-01-01": "New Year's Day", + "1980-01-02": "New Year's Day Holiday", + "1980-04-04": "Good Friday", + "1980-04-05": "Holy Saturday", + "1980-04-07": "Easter Monday", + "1980-05-01": "Labour Day", + "1980-05-15": "Ascension Day", + "1980-07-01": "Sir Seretse Khama Day", + "1980-07-21": "President's Day", + "1980-07-22": "President's Day Holiday", + "1980-09-30": "Botswana Day", + "1980-10-01": "Botswana Day Holiday", + "1980-12-25": "Christmas Day", + "1980-12-26": "Boxing Day", + "1981-01-01": "New Year's Day", + "1981-01-02": "New Year's Day Holiday", + "1981-04-17": "Good Friday", + "1981-04-18": "Holy Saturday", + "1981-04-20": "Easter Monday", + "1981-05-01": "Labour Day", + "1981-05-28": "Ascension Day", + "1981-07-01": "Sir Seretse Khama Day", + "1981-07-20": "President's Day", + "1981-07-21": "President's Day Holiday", + "1981-09-30": "Botswana Day", + "1981-10-01": "Botswana Day Holiday", + "1981-12-25": "Christmas Day", + "1981-12-26": "Boxing Day", + "1982-01-01": "New Year's Day", + "1982-01-02": "New Year's Day Holiday", + "1982-04-09": "Good Friday", + "1982-04-10": "Holy Saturday", + "1982-04-12": "Easter Monday", + "1982-05-01": "Labour Day", + "1982-05-20": "Ascension Day", + "1982-07-01": "Sir Seretse Khama Day", + "1982-07-19": "President's Day", + "1982-07-20": "President's Day Holiday", + "1982-09-30": "Botswana Day", + "1982-10-01": "Botswana Day Holiday", + "1982-12-25": "Christmas Day", + "1982-12-26": "Boxing Day", + "1983-01-01": "New Year's Day", + "1983-01-02": "New Year's Day Holiday", + "1983-04-01": "Good Friday", + "1983-04-02": "Holy Saturday", + "1983-04-04": "Easter Monday", + "1983-05-01": "Labour Day", + "1983-05-12": "Ascension Day", + "1983-07-01": "Sir Seretse Khama Day", + "1983-07-18": "President's Day", + "1983-07-19": "President's Day Holiday", + "1983-09-30": "Botswana Day", + "1983-10-01": "Botswana Day Holiday", + "1983-12-25": "Christmas Day", + "1983-12-26": "Boxing Day", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day Holiday", + "1984-04-20": "Good Friday", + "1984-04-21": "Holy Saturday", + "1984-04-23": "Easter Monday", + "1984-05-01": "Labour Day", + "1984-05-31": "Ascension Day", + "1984-07-01": "Sir Seretse Khama Day", + "1984-07-16": "President's Day", + "1984-07-17": "President's Day Holiday", + "1984-09-30": "Botswana Day", + "1984-10-01": "Botswana Day Holiday", + "1984-12-25": "Christmas Day", + "1984-12-26": "Boxing Day", + "1985-01-01": "New Year's Day", + "1985-01-02": "New Year's Day Holiday", + "1985-04-05": "Good Friday", + "1985-04-06": "Holy Saturday", + "1985-04-08": "Easter Monday", + "1985-05-01": "Labour Day", + "1985-05-16": "Ascension Day", + "1985-07-01": "Sir Seretse Khama Day", + "1985-07-15": "President's Day", + "1985-07-16": "President's Day Holiday", + "1985-09-30": "Botswana Day", + "1985-10-01": "Botswana Day Holiday", + "1985-12-25": "Christmas Day", + "1985-12-26": "Boxing Day", + "1986-01-01": "New Year's Day", + "1986-01-02": "New Year's Day Holiday", + "1986-03-28": "Good Friday", + "1986-03-29": "Holy Saturday", + "1986-03-31": "Easter Monday", + "1986-05-01": "Labour Day", + "1986-05-08": "Ascension Day", + "1986-07-01": "Sir Seretse Khama Day", + "1986-07-21": "President's Day", + "1986-07-22": "President's Day Holiday", + "1986-09-30": "Botswana Day", + "1986-10-01": "Botswana Day Holiday", + "1986-12-25": "Christmas Day", + "1986-12-26": "Boxing Day", + "1987-01-01": "New Year's Day", + "1987-01-02": "New Year's Day Holiday", + "1987-04-17": "Good Friday", + "1987-04-18": "Holy Saturday", + "1987-04-20": "Easter Monday", + "1987-05-01": "Labour Day", + "1987-05-28": "Ascension Day", + "1987-07-01": "Sir Seretse Khama Day", + "1987-07-20": "President's Day", + "1987-07-21": "President's Day Holiday", + "1987-09-30": "Botswana Day", + "1987-10-01": "Botswana Day Holiday", + "1987-12-25": "Christmas Day", + "1987-12-26": "Boxing Day", + "1988-01-01": "New Year's Day", + "1988-01-02": "New Year's Day Holiday", + "1988-04-01": "Good Friday", + "1988-04-02": "Holy Saturday", + "1988-04-04": "Easter Monday", + "1988-05-01": "Labour Day", + "1988-05-12": "Ascension Day", + "1988-07-01": "Sir Seretse Khama Day", + "1988-07-18": "President's Day", + "1988-07-19": "President's Day Holiday", + "1988-09-30": "Botswana Day", + "1988-10-01": "Botswana Day Holiday", + "1988-12-25": "Christmas Day", + "1988-12-26": "Boxing Day", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day Holiday", + "1989-03-24": "Good Friday", + "1989-03-25": "Holy Saturday", + "1989-03-27": "Easter Monday", + "1989-05-01": "Labour Day", + "1989-05-04": "Ascension Day", + "1989-07-01": "Sir Seretse Khama Day", + "1989-07-17": "President's Day", + "1989-07-18": "President's Day Holiday", + "1989-09-30": "Botswana Day", + "1989-10-01": "Botswana Day Holiday", + "1989-12-25": "Christmas Day", + "1989-12-26": "Boxing Day", + "1990-01-01": "New Year's Day", + "1990-01-02": "New Year's Day Holiday", + "1990-04-13": "Good Friday", + "1990-04-14": "Holy Saturday", + "1990-04-16": "Easter Monday", + "1990-05-01": "Labour Day", + "1990-05-24": "Ascension Day", + "1990-07-01": "Sir Seretse Khama Day", + "1990-07-16": "President's Day", + "1990-07-17": "President's Day Holiday", + "1990-09-30": "Botswana Day", + "1990-10-01": "Botswana Day Holiday", + "1990-12-25": "Christmas Day", + "1990-12-26": "Boxing Day", + "1991-01-01": "New Year's Day", + "1991-01-02": "New Year's Day Holiday", + "1991-03-29": "Good Friday", + "1991-03-30": "Holy Saturday", + "1991-04-01": "Easter Monday", + "1991-05-01": "Labour Day", + "1991-05-09": "Ascension Day", + "1991-07-01": "Sir Seretse Khama Day", + "1991-07-15": "President's Day", + "1991-07-16": "President's Day Holiday", + "1991-09-30": "Botswana Day", + "1991-10-01": "Botswana Day Holiday", + "1991-12-25": "Christmas Day", + "1991-12-26": "Boxing Day", + "1992-01-01": "New Year's Day", + "1992-01-02": "New Year's Day Holiday", + "1992-04-17": "Good Friday", + "1992-04-18": "Holy Saturday", + "1992-04-20": "Easter Monday", + "1992-05-01": "Labour Day", + "1992-05-28": "Ascension Day", + "1992-07-01": "Sir Seretse Khama Day", + "1992-07-20": "President's Day", + "1992-07-21": "President's Day Holiday", + "1992-09-30": "Botswana Day", + "1992-10-01": "Botswana Day Holiday", + "1992-12-25": "Christmas Day", + "1992-12-26": "Boxing Day", + "1993-01-01": "New Year's Day", + "1993-01-02": "New Year's Day Holiday", + "1993-04-09": "Good Friday", + "1993-04-10": "Holy Saturday", + "1993-04-12": "Easter Monday", + "1993-05-01": "Labour Day", + "1993-05-20": "Ascension Day", + "1993-07-01": "Sir Seretse Khama Day", + "1993-07-19": "President's Day", + "1993-07-20": "President's Day Holiday", + "1993-09-30": "Botswana Day", + "1993-10-01": "Botswana Day Holiday", + "1993-12-25": "Christmas Day", + "1993-12-26": "Boxing Day", + "1994-01-01": "New Year's Day", + "1994-01-02": "New Year's Day Holiday", + "1994-04-01": "Good Friday", + "1994-04-02": "Holy Saturday", + "1994-04-04": "Easter Monday", + "1994-05-01": "Labour Day", + "1994-05-12": "Ascension Day", + "1994-07-01": "Sir Seretse Khama Day", + "1994-07-18": "President's Day", + "1994-07-19": "President's Day Holiday", + "1994-09-30": "Botswana Day", + "1994-10-01": "Botswana Day Holiday", + "1994-12-25": "Christmas Day", + "1994-12-26": "Boxing Day", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day Holiday", + "1995-01-03": "New Year's Day (Observed)", + "1995-04-14": "Good Friday", + "1995-04-15": "Holy Saturday", + "1995-04-17": "Easter Monday", + "1995-05-01": "Labour Day", + "1995-05-25": "Ascension Day", + "1995-07-01": "Sir Seretse Khama Day", + "1995-07-17": "President's Day", + "1995-07-18": "President's Day Holiday", + "1995-09-30": "Botswana Day", + "1995-10-01": "Botswana Day Holiday", + "1995-10-02": "Botswana Day Holiday (Observed)", + "1995-12-25": "Christmas Day", + "1995-12-26": "Boxing Day", + "1996-01-01": "New Year's Day", + "1996-01-02": "New Year's Day Holiday", + "1996-04-05": "Good Friday", + "1996-04-06": "Holy Saturday", + "1996-04-08": "Easter Monday", + "1996-05-01": "Labour Day", + "1996-05-16": "Ascension Day", + "1996-07-01": "Sir Seretse Khama Day", + "1996-07-15": "President's Day", + "1996-07-16": "President's Day Holiday", + "1996-09-30": "Botswana Day", + "1996-10-01": "Botswana Day Holiday", + "1996-12-25": "Christmas Day", + "1996-12-26": "Boxing Day", + "1997-01-01": "New Year's Day", + "1997-01-02": "New Year's Day Holiday", + "1997-03-28": "Good Friday", + "1997-03-29": "Holy Saturday", + "1997-03-31": "Easter Monday", + "1997-05-01": "Labour Day", + "1997-05-08": "Ascension Day", + "1997-07-01": "Sir Seretse Khama Day", + "1997-07-21": "President's Day", + "1997-07-22": "President's Day Holiday", + "1997-09-30": "Botswana Day", + "1997-10-01": "Botswana Day Holiday", + "1997-12-25": "Christmas Day", + "1997-12-26": "Boxing Day", + "1998-01-01": "New Year's Day", + "1998-01-02": "New Year's Day Holiday", + "1998-04-10": "Good Friday", + "1998-04-11": "Holy Saturday", + "1998-04-13": "Easter Monday", + "1998-05-01": "Labour Day", + "1998-05-21": "Ascension Day", + "1998-07-01": "Sir Seretse Khama Day", + "1998-07-20": "President's Day", + "1998-07-21": "President's Day Holiday", + "1998-09-30": "Botswana Day", + "1998-10-01": "Botswana Day Holiday", + "1998-12-25": "Christmas Day", + "1998-12-26": "Boxing Day", + "1999-01-01": "New Year's Day", + "1999-01-02": "New Year's Day Holiday", + "1999-04-02": "Good Friday", + "1999-04-03": "Holy Saturday", + "1999-04-05": "Easter Monday", + "1999-05-01": "Labour Day", + "1999-05-13": "Ascension Day", + "1999-07-01": "Sir Seretse Khama Day", + "1999-07-19": "President's Day", + "1999-07-20": "President's Day Holiday", + "1999-09-30": "Botswana Day", + "1999-10-01": "Botswana Day Holiday", + "1999-12-25": "Christmas Day", + "1999-12-26": "Boxing Day", + "1999-12-27": "Boxing Day (Observed)", + "2000-01-01": "New Year's Day", + "2000-01-02": "New Year's Day Holiday", + "2000-01-03": "New Year's Day Holiday (Observed)", + "2000-04-21": "Good Friday", + "2000-04-22": "Holy Saturday", + "2000-04-24": "Easter Monday", + "2000-05-01": "Labour Day", + "2000-06-01": "Ascension Day", + "2000-07-01": "Sir Seretse Khama Day", + "2000-07-17": "President's Day", + "2000-07-18": "President's Day Holiday", + "2000-09-30": "Botswana Day", + "2000-10-01": "Botswana Day Holiday", + "2000-10-02": "Botswana Day Holiday (Observed)", + "2000-12-25": "Christmas Day", + "2000-12-26": "Boxing Day", + "2001-01-01": "New Year's Day", + "2001-01-02": "New Year's Day Holiday", + "2001-04-13": "Good Friday", + "2001-04-14": "Holy Saturday", + "2001-04-16": "Easter Monday", + "2001-05-01": "Labour Day", + "2001-05-24": "Ascension Day", + "2001-07-01": "Sir Seretse Khama Day", + "2001-07-02": "Sir Seretse Khama Day (Observed)", + "2001-07-16": "President's Day", + "2001-07-17": "President's Day Holiday", + "2001-09-30": "Botswana Day", + "2001-10-01": "Botswana Day Holiday", + "2001-10-02": "Botswana Day (Observed)", + "2001-12-25": "Christmas Day", + "2001-12-26": "Boxing Day", + "2002-01-01": "New Year's Day", + "2002-01-02": "New Year's Day Holiday", + "2002-03-29": "Good Friday", + "2002-03-30": "Holy Saturday", + "2002-04-01": "Easter Monday", + "2002-05-01": "Labour Day", + "2002-05-09": "Ascension Day", + "2002-07-01": "Sir Seretse Khama Day", + "2002-07-15": "President's Day", + "2002-07-16": "President's Day Holiday", + "2002-09-30": "Botswana Day", + "2002-10-01": "Botswana Day Holiday", + "2002-12-25": "Christmas Day", + "2002-12-26": "Boxing Day", + "2003-01-01": "New Year's Day", + "2003-01-02": "New Year's Day Holiday", + "2003-04-18": "Good Friday", + "2003-04-19": "Holy Saturday", + "2003-04-21": "Easter Monday", + "2003-05-01": "Labour Day", + "2003-05-29": "Ascension Day", + "2003-07-01": "Sir Seretse Khama Day", + "2003-07-21": "President's Day", + "2003-07-22": "President's Day Holiday", + "2003-09-30": "Botswana Day", + "2003-10-01": "Botswana Day Holiday", + "2003-12-25": "Christmas Day", + "2003-12-26": "Boxing Day", + "2004-01-01": "New Year's Day", + "2004-01-02": "New Year's Day Holiday", + "2004-04-09": "Good Friday", + "2004-04-10": "Holy Saturday", + "2004-04-12": "Easter Monday", + "2004-05-01": "Labour Day", + "2004-05-20": "Ascension Day", + "2004-07-01": "Sir Seretse Khama Day", + "2004-07-19": "President's Day", + "2004-07-20": "President's Day Holiday", + "2004-09-30": "Botswana Day", + "2004-10-01": "Botswana Day Holiday", + "2004-12-25": "Christmas Day", + "2004-12-26": "Boxing Day", + "2004-12-27": "Boxing Day (Observed)", + "2005-01-01": "New Year's Day", + "2005-01-02": "New Year's Day Holiday", + "2005-01-03": "New Year's Day Holiday (Observed)", + "2005-03-25": "Good Friday", + "2005-03-26": "Holy Saturday", + "2005-03-28": "Easter Monday", + "2005-05-01": "Labour Day", + "2005-05-02": "Labour Day (Observed)", + "2005-05-05": "Ascension Day", + "2005-07-01": "Sir Seretse Khama Day", + "2005-07-18": "President's Day", + "2005-07-19": "President's Day Holiday", + "2005-09-30": "Botswana Day", + "2005-10-01": "Botswana Day Holiday", + "2005-12-25": "Christmas Day", + "2005-12-26": "Boxing Day", + "2005-12-27": "Christmas Day (Observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day Holiday", + "2006-01-03": "New Year's Day (Observed)", + "2006-04-14": "Good Friday", + "2006-04-15": "Holy Saturday", + "2006-04-17": "Easter Monday", + "2006-05-01": "Labour Day", + "2006-05-25": "Ascension Day", + "2006-07-01": "Sir Seretse Khama Day", + "2006-07-17": "President's Day", + "2006-07-18": "President's Day Holiday", + "2006-09-30": "Botswana Day", + "2006-10-01": "Botswana Day Holiday", + "2006-10-02": "Botswana Day Holiday (Observed)", + "2006-12-25": "Christmas Day", + "2006-12-26": "Boxing Day", + "2007-01-01": "New Year's Day", + "2007-01-02": "New Year's Day Holiday", + "2007-04-06": "Good Friday", + "2007-04-07": "Holy Saturday", + "2007-04-09": "Easter Monday", + "2007-05-01": "Labour Day", + "2007-05-17": "Ascension Day", + "2007-07-01": "Sir Seretse Khama Day", + "2007-07-02": "Sir Seretse Khama Day (Observed)", + "2007-07-16": "President's Day", + "2007-07-17": "President's Day Holiday", + "2007-09-30": "Botswana Day", + "2007-10-01": "Botswana Day Holiday", + "2007-10-02": "Botswana Day (Observed)", + "2007-12-25": "Christmas Day", + "2007-12-26": "Boxing Day", + "2008-01-01": "New Year's Day", + "2008-01-02": "New Year's Day Holiday", + "2008-03-21": "Good Friday", + "2008-03-22": "Holy Saturday", + "2008-03-24": "Easter Monday", + "2008-05-01": "Ascension Day; Labour Day", + "2008-07-01": "Sir Seretse Khama Day", + "2008-07-21": "President's Day", + "2008-07-22": "President's Day Holiday", + "2008-09-30": "Botswana Day", + "2008-10-01": "Botswana Day Holiday", + "2008-12-25": "Christmas Day", + "2008-12-26": "Boxing Day", + "2009-01-01": "New Year's Day", + "2009-01-02": "New Year's Day Holiday", + "2009-04-10": "Good Friday", + "2009-04-11": "Holy Saturday", + "2009-04-13": "Easter Monday", + "2009-05-01": "Labour Day", + "2009-05-21": "Ascension Day", + "2009-07-01": "Sir Seretse Khama Day", + "2009-07-20": "President's Day", + "2009-07-21": "President's Day Holiday", + "2009-09-30": "Botswana Day", + "2009-10-01": "Botswana Day Holiday", + "2009-12-25": "Christmas Day", + "2009-12-26": "Boxing Day", + "2010-01-01": "New Year's Day", + "2010-01-02": "New Year's Day Holiday", + "2010-04-02": "Good Friday", + "2010-04-03": "Holy Saturday", + "2010-04-05": "Easter Monday", + "2010-05-01": "Labour Day", + "2010-05-13": "Ascension Day", + "2010-07-01": "Sir Seretse Khama Day", + "2010-07-19": "President's Day", + "2010-07-20": "President's Day Holiday", + "2010-09-30": "Botswana Day", + "2010-10-01": "Botswana Day Holiday", + "2010-12-25": "Christmas Day", + "2010-12-26": "Boxing Day", + "2010-12-27": "Boxing Day (Observed)", + "2011-01-01": "New Year's Day", + "2011-01-02": "New Year's Day Holiday", + "2011-01-03": "New Year's Day Holiday (Observed)", + "2011-04-22": "Good Friday", + "2011-04-23": "Holy Saturday", + "2011-04-25": "Easter Monday", + "2011-05-01": "Labour Day", + "2011-05-02": "Labour Day (Observed)", + "2011-06-02": "Ascension Day", + "2011-07-01": "Sir Seretse Khama Day", + "2011-07-18": "President's Day", + "2011-07-19": "President's Day Holiday", + "2011-09-30": "Botswana Day", + "2011-10-01": "Botswana Day Holiday", + "2011-12-25": "Christmas Day", + "2011-12-26": "Boxing Day", + "2011-12-27": "Christmas Day (Observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day Holiday", + "2012-01-03": "New Year's Day (Observed)", + "2012-04-06": "Good Friday", + "2012-04-07": "Holy Saturday", + "2012-04-09": "Easter Monday", + "2012-05-01": "Labour Day", + "2012-05-17": "Ascension Day", + "2012-07-01": "Sir Seretse Khama Day", + "2012-07-02": "Sir Seretse Khama Day (Observed)", + "2012-07-16": "President's Day", + "2012-07-17": "President's Day Holiday", + "2012-09-30": "Botswana Day", + "2012-10-01": "Botswana Day Holiday", + "2012-10-02": "Botswana Day (Observed)", + "2012-12-25": "Christmas Day", + "2012-12-26": "Boxing Day", + "2013-01-01": "New Year's Day", + "2013-01-02": "New Year's Day Holiday", + "2013-03-29": "Good Friday", + "2013-03-30": "Holy Saturday", + "2013-04-01": "Easter Monday", + "2013-05-01": "Labour Day", + "2013-05-09": "Ascension Day", + "2013-07-01": "Sir Seretse Khama Day", + "2013-07-15": "President's Day", + "2013-07-16": "President's Day Holiday", + "2013-09-30": "Botswana Day", + "2013-10-01": "Botswana Day Holiday", + "2013-12-25": "Christmas Day", + "2013-12-26": "Boxing Day", + "2014-01-01": "New Year's Day", + "2014-01-02": "New Year's Day Holiday", + "2014-04-18": "Good Friday", + "2014-04-19": "Holy Saturday", + "2014-04-21": "Easter Monday", + "2014-05-01": "Labour Day", + "2014-05-29": "Ascension Day", + "2014-07-01": "Sir Seretse Khama Day", + "2014-07-21": "President's Day", + "2014-07-22": "President's Day Holiday", + "2014-09-30": "Botswana Day", + "2014-10-01": "Botswana Day Holiday", + "2014-12-25": "Christmas Day", + "2014-12-26": "Boxing Day", + "2015-01-01": "New Year's Day", + "2015-01-02": "New Year's Day Holiday", + "2015-04-03": "Good Friday", + "2015-04-04": "Holy Saturday", + "2015-04-06": "Easter Monday", + "2015-05-01": "Labour Day", + "2015-05-14": "Ascension Day", + "2015-07-01": "Sir Seretse Khama Day", + "2015-07-20": "President's Day", + "2015-07-21": "President's Day Holiday", + "2015-09-30": "Botswana Day", + "2015-10-01": "Botswana Day Holiday", + "2015-12-25": "Christmas Day", + "2015-12-26": "Boxing Day", + "2016-01-01": "New Year's Day", + "2016-01-02": "New Year's Day Holiday", + "2016-03-25": "Good Friday", + "2016-03-26": "Holy Saturday", + "2016-03-28": "Easter Monday", + "2016-05-01": "Labour Day", + "2016-05-02": "Labour Day (Observed)", + "2016-05-05": "Ascension Day", + "2016-07-01": "Sir Seretse Khama Day", + "2016-07-18": "President's Day", + "2016-07-19": "President's Day Holiday", + "2016-09-30": "Botswana Day", + "2016-10-01": "Botswana Day Holiday", + "2016-12-25": "Christmas Day", + "2016-12-26": "Boxing Day", + "2016-12-27": "Christmas Day (Observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day Holiday", + "2017-01-03": "New Year's Day (Observed)", + "2017-04-14": "Good Friday", + "2017-04-15": "Holy Saturday", + "2017-04-17": "Easter Monday", + "2017-05-01": "Labour Day", + "2017-05-25": "Ascension Day", + "2017-07-01": "Sir Seretse Khama Day", + "2017-07-17": "President's Day", + "2017-07-18": "President's Day Holiday", + "2017-09-30": "Botswana Day", + "2017-10-01": "Botswana Day Holiday", + "2017-10-02": "Botswana Day Holiday (Observed)", + "2017-12-25": "Christmas Day", + "2017-12-26": "Boxing Day", + "2018-01-01": "New Year's Day", + "2018-01-02": "New Year's Day Holiday", + "2018-03-30": "Good Friday", + "2018-03-31": "Holy Saturday", + "2018-04-02": "Easter Monday", + "2018-05-01": "Labour Day", + "2018-05-10": "Ascension Day", + "2018-07-01": "Sir Seretse Khama Day", + "2018-07-02": "Sir Seretse Khama Day (Observed)", + "2018-07-16": "President's Day", + "2018-07-17": "President's Day Holiday", + "2018-09-30": "Botswana Day", + "2018-10-01": "Botswana Day Holiday", + "2018-10-02": "Botswana Day (Observed)", + "2018-12-25": "Christmas Day", + "2018-12-26": "Boxing Day", + "2019-01-01": "New Year's Day", + "2019-01-02": "New Year's Day Holiday", + "2019-04-19": "Good Friday", + "2019-04-20": "Holy Saturday", + "2019-04-22": "Easter Monday", + "2019-05-01": "Labour Day", + "2019-05-30": "Ascension Day", + "2019-07-01": "Sir Seretse Khama Day", + "2019-07-02": "Public Holiday", + "2019-07-15": "President's Day", + "2019-07-16": "President's Day Holiday", + "2019-09-30": "Botswana Day", + "2019-10-01": "Botswana Day Holiday", + "2019-12-25": "Christmas Day", + "2019-12-26": "Boxing Day", + "2020-01-01": "New Year's Day", + "2020-01-02": "New Year's Day Holiday", + "2020-04-10": "Good Friday", + "2020-04-11": "Holy Saturday", + "2020-04-13": "Easter Monday", + "2020-05-01": "Labour Day", + "2020-05-21": "Ascension Day", + "2020-07-01": "Sir Seretse Khama Day", + "2020-07-20": "President's Day", + "2020-07-21": "President's Day Holiday", + "2020-09-30": "Botswana Day", + "2020-10-01": "Botswana Day Holiday", + "2020-12-25": "Christmas Day", + "2020-12-26": "Boxing Day", + "2020-12-28": "Boxing Day Holiday", + "2021-01-01": "New Year's Day", + "2021-01-02": "New Year's Day Holiday", + "2021-04-02": "Good Friday", + "2021-04-03": "Holy Saturday", + "2021-04-05": "Easter Monday", + "2021-05-01": "Labour Day", + "2021-05-03": "Labour Day Holiday", + "2021-05-13": "Ascension Day", + "2021-07-01": "Sir Seretse Khama Day", + "2021-07-19": "President's Day", + "2021-07-20": "President's Day Holiday", + "2021-09-30": "Botswana Day", + "2021-10-01": "Botswana Day Holiday", + "2021-12-25": "Christmas Day", + "2021-12-26": "Boxing Day", + "2021-12-27": "Boxing Day (Observed)", + "2022-01-01": "New Year's Day", + "2022-01-02": "New Year's Day Holiday", + "2022-01-03": "New Year's Day Holiday (Observed)", + "2022-04-15": "Good Friday", + "2022-04-16": "Holy Saturday", + "2022-04-18": "Easter Monday", + "2022-05-01": "Labour Day", + "2022-05-02": "Labour Day (Observed)", + "2022-05-26": "Ascension Day", + "2022-07-01": "Sir Seretse Khama Day", + "2022-07-18": "President's Day", + "2022-07-19": "President's Day Holiday", + "2022-09-30": "Botswana Day", + "2022-10-01": "Botswana Day Holiday", + "2022-12-25": "Christmas Day", + "2022-12-26": "Boxing Day", + "2022-12-27": "Christmas Day (Observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day Holiday", + "2023-01-03": "New Year's Day (Observed)", + "2023-04-07": "Good Friday", + "2023-04-08": "Holy Saturday", + "2023-04-10": "Easter Monday", + "2023-05-01": "Labour Day", + "2023-05-18": "Ascension Day", + "2023-07-01": "Sir Seretse Khama Day", + "2023-07-17": "President's Day", + "2023-07-18": "President's Day Holiday", + "2023-09-30": "Botswana Day", + "2023-10-01": "Botswana Day Holiday", + "2023-10-02": "Botswana Day Holiday (Observed)", + "2023-12-25": "Christmas Day", + "2023-12-26": "Boxing Day", + "2024-01-01": "New Year's Day", + "2024-01-02": "New Year's Day Holiday", + "2024-03-29": "Good Friday", + "2024-03-30": "Holy Saturday", + "2024-04-01": "Easter Monday", + "2024-05-01": "Labour Day", + "2024-05-09": "Ascension Day", + "2024-07-01": "Sir Seretse Khama Day", + "2024-07-15": "President's Day", + "2024-07-16": "President's Day Holiday", + "2024-09-30": "Botswana Day", + "2024-10-01": "Botswana Day Holiday", + "2024-12-25": "Christmas Day", + "2024-12-26": "Boxing Day", + "2025-01-01": "New Year's Day", + "2025-01-02": "New Year's Day Holiday", + "2025-04-18": "Good Friday", + "2025-04-19": "Holy Saturday", + "2025-04-21": "Easter Monday", + "2025-05-01": "Labour Day", + "2025-05-29": "Ascension Day", + "2025-07-01": "Sir Seretse Khama Day", + "2025-07-21": "President's Day", + "2025-07-22": "President's Day Holiday", + "2025-09-30": "Botswana Day", + "2025-10-01": "Botswana Day Holiday", + "2025-12-25": "Christmas Day", + "2025-12-26": "Boxing Day", + "2026-01-01": "New Year's Day", + "2026-01-02": "New Year's Day Holiday", + "2026-04-03": "Good Friday", + "2026-04-04": "Holy Saturday", + "2026-04-06": "Easter Monday", + "2026-05-01": "Labour Day", + "2026-05-14": "Ascension Day", + "2026-07-01": "Sir Seretse Khama Day", + "2026-07-20": "President's Day", + "2026-07-21": "President's Day Holiday", + "2026-09-30": "Botswana Day", + "2026-10-01": "Botswana Day Holiday", + "2026-12-25": "Christmas Day", + "2026-12-26": "Boxing Day", + "2026-12-28": "Boxing Day Holiday", + "2027-01-01": "New Year's Day", + "2027-01-02": "New Year's Day Holiday", + "2027-03-26": "Good Friday", + "2027-03-27": "Holy Saturday", + "2027-03-29": "Easter Monday", + "2027-05-01": "Labour Day", + "2027-05-03": "Labour Day Holiday", + "2027-05-06": "Ascension Day", + "2027-07-01": "Sir Seretse Khama Day", + "2027-07-19": "President's Day", + "2027-07-20": "President's Day Holiday", + "2027-09-30": "Botswana Day", + "2027-10-01": "Botswana Day Holiday", + "2027-12-25": "Christmas Day", + "2027-12-26": "Boxing Day", + "2027-12-27": "Boxing Day (Observed)", + "2028-01-01": "New Year's Day", + "2028-01-02": "New Year's Day Holiday", + "2028-01-03": "New Year's Day Holiday (Observed)", + "2028-04-14": "Good Friday", + "2028-04-15": "Holy Saturday", + "2028-04-17": "Easter Monday", + "2028-05-01": "Labour Day", + "2028-05-25": "Ascension Day", + "2028-07-01": "Sir Seretse Khama Day", + "2028-07-17": "President's Day", + "2028-07-18": "President's Day Holiday", + "2028-09-30": "Botswana Day", + "2028-10-01": "Botswana Day Holiday", + "2028-10-02": "Botswana Day Holiday (Observed)", + "2028-12-25": "Christmas Day", + "2028-12-26": "Boxing Day", + "2029-01-01": "New Year's Day", + "2029-01-02": "New Year's Day Holiday", + "2029-03-30": "Good Friday", + "2029-03-31": "Holy Saturday", + "2029-04-02": "Easter Monday", + "2029-05-01": "Labour Day", + "2029-05-10": "Ascension Day", + "2029-07-01": "Sir Seretse Khama Day", + "2029-07-02": "Sir Seretse Khama Day (Observed)", + "2029-07-16": "President's Day", + "2029-07-17": "President's Day Holiday", + "2029-09-30": "Botswana Day", + "2029-10-01": "Botswana Day Holiday", + "2029-10-02": "Botswana Day (Observed)", + "2029-12-25": "Christmas Day", + "2029-12-26": "Boxing Day", + "2030-01-01": "New Year's Day", + "2030-01-02": "New Year's Day Holiday", + "2030-04-19": "Good Friday", + "2030-04-20": "Holy Saturday", + "2030-04-22": "Easter Monday", + "2030-05-01": "Labour Day", + "2030-05-30": "Ascension Day", + "2030-07-01": "Sir Seretse Khama Day", + "2030-07-15": "President's Day", + "2030-07-16": "President's Day Holiday", + "2030-09-30": "Botswana Day", + "2030-10-01": "Botswana Day Holiday", + "2030-12-25": "Christmas Day", + "2030-12-26": "Boxing Day", + "2031-01-01": "New Year's Day", + "2031-01-02": "New Year's Day Holiday", + "2031-04-11": "Good Friday", + "2031-04-12": "Holy Saturday", + "2031-04-14": "Easter Monday", + "2031-05-01": "Labour Day", + "2031-05-22": "Ascension Day", + "2031-07-01": "Sir Seretse Khama Day", + "2031-07-21": "President's Day", + "2031-07-22": "President's Day Holiday", + "2031-09-30": "Botswana Day", + "2031-10-01": "Botswana Day Holiday", + "2031-12-25": "Christmas Day", + "2031-12-26": "Boxing Day", + "2032-01-01": "New Year's Day", + "2032-01-02": "New Year's Day Holiday", + "2032-03-26": "Good Friday", + "2032-03-27": "Holy Saturday", + "2032-03-29": "Easter Monday", + "2032-05-01": "Labour Day", + "2032-05-03": "Labour Day Holiday", + "2032-05-06": "Ascension Day", + "2032-07-01": "Sir Seretse Khama Day", + "2032-07-19": "President's Day", + "2032-07-20": "President's Day Holiday", + "2032-09-30": "Botswana Day", + "2032-10-01": "Botswana Day Holiday", + "2032-12-25": "Christmas Day", + "2032-12-26": "Boxing Day", + "2032-12-27": "Boxing Day (Observed)", + "2033-01-01": "New Year's Day", + "2033-01-02": "New Year's Day Holiday", + "2033-01-03": "New Year's Day Holiday (Observed)", + "2033-04-15": "Good Friday", + "2033-04-16": "Holy Saturday", + "2033-04-18": "Easter Monday", + "2033-05-01": "Labour Day", + "2033-05-02": "Labour Day (Observed)", + "2033-05-26": "Ascension Day", + "2033-07-01": "Sir Seretse Khama Day", + "2033-07-18": "President's Day", + "2033-07-19": "President's Day Holiday", + "2033-09-30": "Botswana Day", + "2033-10-01": "Botswana Day Holiday", + "2033-12-25": "Christmas Day", + "2033-12-26": "Boxing Day", + "2033-12-27": "Christmas Day (Observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day Holiday", + "2034-01-03": "New Year's Day (Observed)", + "2034-04-07": "Good Friday", + "2034-04-08": "Holy Saturday", + "2034-04-10": "Easter Monday", + "2034-05-01": "Labour Day", + "2034-05-18": "Ascension Day", + "2034-07-01": "Sir Seretse Khama Day", + "2034-07-17": "President's Day", + "2034-07-18": "President's Day Holiday", + "2034-09-30": "Botswana Day", + "2034-10-01": "Botswana Day Holiday", + "2034-10-02": "Botswana Day Holiday (Observed)", + "2034-12-25": "Christmas Day", + "2034-12-26": "Boxing Day", + "2035-01-01": "New Year's Day", + "2035-01-02": "New Year's Day Holiday", + "2035-03-23": "Good Friday", + "2035-03-24": "Holy Saturday", + "2035-03-26": "Easter Monday", + "2035-05-01": "Labour Day", + "2035-05-03": "Ascension Day", + "2035-07-01": "Sir Seretse Khama Day", + "2035-07-02": "Sir Seretse Khama Day (Observed)", + "2035-07-16": "President's Day", + "2035-07-17": "President's Day Holiday", + "2035-09-30": "Botswana Day", + "2035-10-01": "Botswana Day Holiday", + "2035-10-02": "Botswana Day (Observed)", + "2035-12-25": "Christmas Day", + "2035-12-26": "Boxing Day", + "2036-01-01": "New Year's Day", + "2036-01-02": "New Year's Day Holiday", + "2036-04-11": "Good Friday", + "2036-04-12": "Holy Saturday", + "2036-04-14": "Easter Monday", + "2036-05-01": "Labour Day", + "2036-05-22": "Ascension Day", + "2036-07-01": "Sir Seretse Khama Day", + "2036-07-21": "President's Day", + "2036-07-22": "President's Day Holiday", + "2036-09-30": "Botswana Day", + "2036-10-01": "Botswana Day Holiday", + "2036-12-25": "Christmas Day", + "2036-12-26": "Boxing Day", + "2037-01-01": "New Year's Day", + "2037-01-02": "New Year's Day Holiday", + "2037-04-03": "Good Friday", + "2037-04-04": "Holy Saturday", + "2037-04-06": "Easter Monday", + "2037-05-01": "Labour Day", + "2037-05-14": "Ascension Day", + "2037-07-01": "Sir Seretse Khama Day", + "2037-07-20": "President's Day", + "2037-07-21": "President's Day Holiday", + "2037-09-30": "Botswana Day", + "2037-10-01": "Botswana Day Holiday", + "2037-12-25": "Christmas Day", + "2037-12-26": "Boxing Day", + "2037-12-28": "Boxing Day Holiday", + "2038-01-01": "New Year's Day", + "2038-01-02": "New Year's Day Holiday", + "2038-04-23": "Good Friday", + "2038-04-24": "Holy Saturday", + "2038-04-26": "Easter Monday", + "2038-05-01": "Labour Day", + "2038-05-03": "Labour Day Holiday", + "2038-06-03": "Ascension Day", + "2038-07-01": "Sir Seretse Khama Day", + "2038-07-19": "President's Day", + "2038-07-20": "President's Day Holiday", + "2038-09-30": "Botswana Day", + "2038-10-01": "Botswana Day Holiday", + "2038-12-25": "Christmas Day", + "2038-12-26": "Boxing Day", + "2038-12-27": "Boxing Day (Observed)", + "2039-01-01": "New Year's Day", + "2039-01-02": "New Year's Day Holiday", + "2039-01-03": "New Year's Day Holiday (Observed)", + "2039-04-08": "Good Friday", + "2039-04-09": "Holy Saturday", + "2039-04-11": "Easter Monday", + "2039-05-01": "Labour Day", + "2039-05-02": "Labour Day (Observed)", + "2039-05-19": "Ascension Day", + "2039-07-01": "Sir Seretse Khama Day", + "2039-07-18": "President's Day", + "2039-07-19": "President's Day Holiday", + "2039-09-30": "Botswana Day", + "2039-10-01": "Botswana Day Holiday", + "2039-12-25": "Christmas Day", + "2039-12-26": "Boxing Day", + "2039-12-27": "Christmas Day (Observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day Holiday", + "2040-01-03": "New Year's Day (Observed)", + "2040-03-30": "Good Friday", + "2040-03-31": "Holy Saturday", + "2040-04-02": "Easter Monday", + "2040-05-01": "Labour Day", + "2040-05-10": "Ascension Day", + "2040-07-01": "Sir Seretse Khama Day", + "2040-07-02": "Sir Seretse Khama Day (Observed)", + "2040-07-16": "President's Day", + "2040-07-17": "President's Day Holiday", + "2040-09-30": "Botswana Day", + "2040-10-01": "Botswana Day Holiday", + "2040-10-02": "Botswana Day (Observed)", + "2040-12-25": "Christmas Day", + "2040-12-26": "Boxing Day", + "2041-01-01": "New Year's Day", + "2041-01-02": "New Year's Day Holiday", + "2041-04-19": "Good Friday", + "2041-04-20": "Holy Saturday", + "2041-04-22": "Easter Monday", + "2041-05-01": "Labour Day", + "2041-05-30": "Ascension Day", + "2041-07-01": "Sir Seretse Khama Day", + "2041-07-15": "President's Day", + "2041-07-16": "President's Day Holiday", + "2041-09-30": "Botswana Day", + "2041-10-01": "Botswana Day Holiday", + "2041-12-25": "Christmas Day", + "2041-12-26": "Boxing Day", + "2042-01-01": "New Year's Day", + "2042-01-02": "New Year's Day Holiday", + "2042-04-04": "Good Friday", + "2042-04-05": "Holy Saturday", + "2042-04-07": "Easter Monday", + "2042-05-01": "Labour Day", + "2042-05-15": "Ascension Day", + "2042-07-01": "Sir Seretse Khama Day", + "2042-07-21": "President's Day", + "2042-07-22": "President's Day Holiday", + "2042-09-30": "Botswana Day", + "2042-10-01": "Botswana Day Holiday", + "2042-12-25": "Christmas Day", + "2042-12-26": "Boxing Day", + "2043-01-01": "New Year's Day", + "2043-01-02": "New Year's Day Holiday", + "2043-03-27": "Good Friday", + "2043-03-28": "Holy Saturday", + "2043-03-30": "Easter Monday", + "2043-05-01": "Labour Day", + "2043-05-07": "Ascension Day", + "2043-07-01": "Sir Seretse Khama Day", + "2043-07-20": "President's Day", + "2043-07-21": "President's Day Holiday", + "2043-09-30": "Botswana Day", + "2043-10-01": "Botswana Day Holiday", + "2043-12-25": "Christmas Day", + "2043-12-26": "Boxing Day", + "2043-12-28": "Boxing Day Holiday", + "2044-01-01": "New Year's Day", + "2044-01-02": "New Year's Day Holiday", + "2044-04-15": "Good Friday", + "2044-04-16": "Holy Saturday", + "2044-04-18": "Easter Monday", + "2044-05-01": "Labour Day", + "2044-05-02": "Labour Day (Observed)", + "2044-05-26": "Ascension Day", + "2044-07-01": "Sir Seretse Khama Day", + "2044-07-18": "President's Day", + "2044-07-19": "President's Day Holiday", + "2044-09-30": "Botswana Day", + "2044-10-01": "Botswana Day Holiday", + "2044-12-25": "Christmas Day", + "2044-12-26": "Boxing Day", + "2044-12-27": "Christmas Day (Observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day Holiday", + "2045-01-03": "New Year's Day (Observed)", + "2045-04-07": "Good Friday", + "2045-04-08": "Holy Saturday", + "2045-04-10": "Easter Monday", + "2045-05-01": "Labour Day", + "2045-05-18": "Ascension Day", + "2045-07-01": "Sir Seretse Khama Day", + "2045-07-17": "President's Day", + "2045-07-18": "President's Day Holiday", + "2045-09-30": "Botswana Day", + "2045-10-01": "Botswana Day Holiday", + "2045-10-02": "Botswana Day Holiday (Observed)", + "2045-12-25": "Christmas Day", + "2045-12-26": "Boxing Day", + "2046-01-01": "New Year's Day", + "2046-01-02": "New Year's Day Holiday", + "2046-03-23": "Good Friday", + "2046-03-24": "Holy Saturday", + "2046-03-26": "Easter Monday", + "2046-05-01": "Labour Day", + "2046-05-03": "Ascension Day", + "2046-07-01": "Sir Seretse Khama Day", + "2046-07-02": "Sir Seretse Khama Day (Observed)", + "2046-07-16": "President's Day", + "2046-07-17": "President's Day Holiday", + "2046-09-30": "Botswana Day", + "2046-10-01": "Botswana Day Holiday", + "2046-10-02": "Botswana Day (Observed)", + "2046-12-25": "Christmas Day", + "2046-12-26": "Boxing Day", + "2047-01-01": "New Year's Day", + "2047-01-02": "New Year's Day Holiday", + "2047-04-12": "Good Friday", + "2047-04-13": "Holy Saturday", + "2047-04-15": "Easter Monday", + "2047-05-01": "Labour Day", + "2047-05-23": "Ascension Day", + "2047-07-01": "Sir Seretse Khama Day", + "2047-07-15": "President's Day", + "2047-07-16": "President's Day Holiday", + "2047-09-30": "Botswana Day", + "2047-10-01": "Botswana Day Holiday", + "2047-12-25": "Christmas Day", + "2047-12-26": "Boxing Day", + "2048-01-01": "New Year's Day", + "2048-01-02": "New Year's Day Holiday", + "2048-04-03": "Good Friday", + "2048-04-04": "Holy Saturday", + "2048-04-06": "Easter Monday", + "2048-05-01": "Labour Day", + "2048-05-14": "Ascension Day", + "2048-07-01": "Sir Seretse Khama Day", + "2048-07-20": "President's Day", + "2048-07-21": "President's Day Holiday", + "2048-09-30": "Botswana Day", + "2048-10-01": "Botswana Day Holiday", + "2048-12-25": "Christmas Day", + "2048-12-26": "Boxing Day", + "2048-12-28": "Boxing Day Holiday", + "2049-01-01": "New Year's Day", + "2049-01-02": "New Year's Day Holiday", + "2049-04-16": "Good Friday", + "2049-04-17": "Holy Saturday", + "2049-04-19": "Easter Monday", + "2049-05-01": "Labour Day", + "2049-05-03": "Labour Day Holiday", + "2049-05-27": "Ascension Day", + "2049-07-01": "Sir Seretse Khama Day", + "2049-07-19": "President's Day", + "2049-07-20": "President's Day Holiday", + "2049-09-30": "Botswana Day", + "2049-10-01": "Botswana Day Holiday", + "2049-12-25": "Christmas Day", + "2049-12-26": "Boxing Day", + "2049-12-27": "Boxing Day (Observed)", + "2050-01-01": "New Year's Day", + "2050-01-02": "New Year's Day Holiday", + "2050-01-03": "New Year's Day Holiday (Observed)", + "2050-04-08": "Good Friday", + "2050-04-09": "Holy Saturday", + "2050-04-11": "Easter Monday", + "2050-05-01": "Labour Day", + "2050-05-02": "Labour Day (Observed)", + "2050-05-19": "Ascension Day", + "2050-07-01": "Sir Seretse Khama Day", + "2050-07-18": "President's Day", + "2050-07-19": "President's Day Holiday", + "2050-09-30": "Botswana Day", + "2050-10-01": "Botswana Day Holiday", + "2050-12-25": "Christmas Day", + "2050-12-26": "Boxing Day", + "2050-12-27": "Christmas Day (Observed)" +} diff --git a/snapshots/countries/BY.json b/snapshots/countries/BY.json new file mode 100644 index 000000000..8634a062d --- /dev/null +++ b/snapshots/countries/BY.json @@ -0,0 +1,500 @@ +{ + "1999-01-01": "New Year's Day", + "1999-01-07": "Orthodox Christmas Day", + "1999-03-08": "Women's Day", + "1999-04-20": "Radunitsa", + "1999-05-01": "Labor Day", + "1999-05-09": "Victory Day", + "1999-07-03": "Independence Day (Republic Day)", + "1999-11-07": "October Revolution Day", + "1999-12-25": "Catholic Christmas Day", + "2000-01-01": "New Year's Day", + "2000-01-07": "Orthodox Christmas Day", + "2000-03-08": "Women's Day", + "2000-05-01": "Labor Day", + "2000-05-09": "Radunitsa; Victory Day", + "2000-07-03": "Independence Day (Republic Day)", + "2000-11-07": "October Revolution Day", + "2000-12-25": "Catholic Christmas Day", + "2001-01-01": "New Year's Day", + "2001-01-07": "Orthodox Christmas Day", + "2001-03-08": "Women's Day", + "2001-04-24": "Radunitsa", + "2001-05-01": "Labor Day", + "2001-05-09": "Victory Day", + "2001-07-03": "Independence Day (Republic Day)", + "2001-11-07": "October Revolution Day", + "2001-12-25": "Catholic Christmas Day", + "2002-01-01": "New Year's Day", + "2002-01-07": "Orthodox Christmas Day", + "2002-03-08": "Women's Day", + "2002-05-01": "Labor Day", + "2002-05-09": "Victory Day", + "2002-05-14": "Radunitsa", + "2002-07-03": "Independence Day (Republic Day)", + "2002-11-07": "October Revolution Day", + "2002-12-25": "Catholic Christmas Day", + "2003-01-01": "New Year's Day", + "2003-01-07": "Orthodox Christmas Day", + "2003-03-08": "Women's Day", + "2003-05-01": "Labor Day", + "2003-05-06": "Radunitsa", + "2003-05-09": "Victory Day", + "2003-07-03": "Independence Day (Republic Day)", + "2003-11-07": "October Revolution Day", + "2003-12-25": "Catholic Christmas Day", + "2004-01-01": "New Year's Day", + "2004-01-07": "Orthodox Christmas Day", + "2004-03-08": "Women's Day", + "2004-04-20": "Radunitsa", + "2004-05-01": "Labor Day", + "2004-05-09": "Victory Day", + "2004-07-03": "Independence Day (Republic Day)", + "2004-11-07": "October Revolution Day", + "2004-12-25": "Catholic Christmas Day", + "2005-01-01": "New Year's Day", + "2005-01-07": "Orthodox Christmas Day", + "2005-03-08": "Women's Day", + "2005-05-01": "Labor Day", + "2005-05-09": "Victory Day", + "2005-05-10": "Radunitsa", + "2005-07-03": "Independence Day (Republic Day)", + "2005-11-07": "October Revolution Day", + "2005-12-25": "Catholic Christmas Day", + "2006-01-01": "New Year's Day", + "2006-01-07": "Orthodox Christmas Day", + "2006-03-08": "Women's Day", + "2006-05-01": "Labor Day", + "2006-05-02": "Radunitsa", + "2006-05-09": "Victory Day", + "2006-07-03": "Independence Day (Republic Day)", + "2006-11-07": "October Revolution Day", + "2006-12-25": "Catholic Christmas Day", + "2007-01-01": "New Year's Day", + "2007-01-07": "Orthodox Christmas Day", + "2007-03-08": "Women's Day", + "2007-04-17": "Radunitsa", + "2007-05-01": "Labor Day", + "2007-05-09": "Victory Day", + "2007-07-03": "Independence Day (Republic Day)", + "2007-11-07": "October Revolution Day", + "2007-12-25": "Catholic Christmas Day", + "2008-01-01": "New Year's Day", + "2008-01-07": "Orthodox Christmas Day", + "2008-03-08": "Women's Day", + "2008-05-01": "Labor Day", + "2008-05-06": "Radunitsa", + "2008-05-09": "Victory Day", + "2008-07-03": "Independence Day (Republic Day)", + "2008-11-07": "October Revolution Day", + "2008-12-25": "Catholic Christmas Day", + "2009-01-01": "New Year's Day", + "2009-01-07": "Orthodox Christmas Day", + "2009-03-08": "Women's Day", + "2009-04-28": "Radunitsa", + "2009-05-01": "Labor Day", + "2009-05-09": "Victory Day", + "2009-07-03": "Independence Day (Republic Day)", + "2009-11-07": "October Revolution Day", + "2009-12-25": "Catholic Christmas Day", + "2010-01-01": "New Year's Day", + "2010-01-07": "Orthodox Christmas Day", + "2010-03-08": "Women's Day", + "2010-04-13": "Radunitsa", + "2010-05-01": "Labor Day", + "2010-05-09": "Victory Day", + "2010-07-03": "Independence Day (Republic Day)", + "2010-11-07": "October Revolution Day", + "2010-12-25": "Catholic Christmas Day", + "2011-01-01": "New Year's Day", + "2011-01-07": "Orthodox Christmas Day", + "2011-03-08": "Women's Day", + "2011-05-01": "Labor Day", + "2011-05-03": "Radunitsa", + "2011-05-09": "Victory Day", + "2011-07-03": "Independence Day (Republic Day)", + "2011-11-07": "October Revolution Day", + "2011-12-25": "Catholic Christmas Day", + "2012-01-01": "New Year's Day", + "2012-01-07": "Orthodox Christmas Day", + "2012-03-08": "Women's Day", + "2012-04-24": "Radunitsa", + "2012-05-01": "Labor Day", + "2012-05-09": "Victory Day", + "2012-07-03": "Independence Day (Republic Day)", + "2012-11-07": "October Revolution Day", + "2012-12-25": "Catholic Christmas Day", + "2013-01-01": "New Year's Day", + "2013-01-07": "Orthodox Christmas Day", + "2013-03-08": "Women's Day", + "2013-05-01": "Labor Day", + "2013-05-09": "Victory Day", + "2013-05-14": "Radunitsa", + "2013-07-03": "Independence Day (Republic Day)", + "2013-11-07": "October Revolution Day", + "2013-12-25": "Catholic Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-07": "Orthodox Christmas Day", + "2014-03-08": "Women's Day", + "2014-04-29": "Radunitsa", + "2014-05-01": "Labor Day", + "2014-05-09": "Victory Day", + "2014-07-03": "Independence Day (Republic Day)", + "2014-11-07": "October Revolution Day", + "2014-12-25": "Catholic Christmas Day", + "2015-01-01": "New Year's Day", + "2015-01-07": "Orthodox Christmas Day", + "2015-03-08": "Women's Day", + "2015-04-21": "Radunitsa", + "2015-05-01": "Labor Day", + "2015-05-09": "Victory Day", + "2015-07-03": "Independence Day (Republic Day)", + "2015-11-07": "October Revolution Day", + "2015-12-25": "Catholic Christmas Day", + "2016-01-01": "New Year's Day", + "2016-01-07": "Orthodox Christmas Day", + "2016-03-08": "Women's Day", + "2016-05-01": "Labor Day", + "2016-05-09": "Victory Day", + "2016-05-10": "Radunitsa", + "2016-07-03": "Independence Day (Republic Day)", + "2016-11-07": "October Revolution Day", + "2016-12-25": "Catholic Christmas Day", + "2017-01-01": "New Year's Day", + "2017-01-07": "Orthodox Christmas Day", + "2017-03-08": "Women's Day", + "2017-04-25": "Radunitsa", + "2017-05-01": "Labor Day", + "2017-05-09": "Victory Day", + "2017-07-03": "Independence Day (Republic Day)", + "2017-11-07": "October Revolution Day", + "2017-12-25": "Catholic Christmas Day", + "2018-01-01": "New Year's Day", + "2018-01-07": "Orthodox Christmas Day", + "2018-03-08": "Women's Day", + "2018-04-17": "Radunitsa", + "2018-05-01": "Labor Day", + "2018-05-09": "Victory Day", + "2018-07-03": "Independence Day (Republic Day)", + "2018-11-07": "October Revolution Day", + "2018-12-25": "Catholic Christmas Day", + "2019-01-01": "New Year's Day", + "2019-01-07": "Orthodox Christmas Day", + "2019-03-08": "Women's Day", + "2019-05-01": "Labor Day", + "2019-05-07": "Radunitsa", + "2019-05-09": "Victory Day", + "2019-07-03": "Independence Day (Republic Day)", + "2019-11-07": "October Revolution Day", + "2019-12-25": "Catholic Christmas Day", + "2020-01-01": "New Year's Day", + "2020-01-02": "New Year's Day", + "2020-01-07": "Orthodox Christmas Day", + "2020-03-08": "Women's Day", + "2020-04-28": "Radunitsa", + "2020-05-01": "Labor Day", + "2020-05-09": "Victory Day", + "2020-07-03": "Independence Day (Republic Day)", + "2020-11-07": "October Revolution Day", + "2020-12-25": "Catholic Christmas Day", + "2021-01-01": "New Year's Day", + "2021-01-02": "New Year's Day", + "2021-01-07": "Orthodox Christmas Day", + "2021-03-08": "Women's Day", + "2021-05-01": "Labor Day", + "2021-05-09": "Victory Day", + "2021-05-11": "Radunitsa", + "2021-07-03": "Independence Day (Republic Day)", + "2021-11-07": "October Revolution Day", + "2021-12-25": "Catholic Christmas Day", + "2022-01-01": "New Year's Day", + "2022-01-02": "New Year's Day", + "2022-01-07": "Orthodox Christmas Day", + "2022-03-08": "Women's Day", + "2022-05-01": "Labor Day", + "2022-05-03": "Radunitsa", + "2022-05-09": "Victory Day", + "2022-07-03": "Independence Day (Republic Day)", + "2022-11-07": "October Revolution Day", + "2022-12-25": "Catholic Christmas Day", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day", + "2023-01-07": "Orthodox Christmas Day", + "2023-03-08": "Women's Day", + "2023-04-25": "Radunitsa", + "2023-05-01": "Labor Day", + "2023-05-09": "Victory Day", + "2023-07-03": "Independence Day (Republic Day)", + "2023-11-07": "October Revolution Day", + "2023-12-25": "Catholic Christmas Day", + "2024-01-01": "New Year's Day", + "2024-01-02": "New Year's Day", + "2024-01-07": "Orthodox Christmas Day", + "2024-03-08": "Women's Day", + "2024-05-01": "Labor Day", + "2024-05-09": "Victory Day", + "2024-05-14": "Radunitsa", + "2024-07-03": "Independence Day (Republic Day)", + "2024-11-07": "October Revolution Day", + "2024-12-25": "Catholic Christmas Day", + "2025-01-01": "New Year's Day", + "2025-01-02": "New Year's Day", + "2025-01-07": "Orthodox Christmas Day", + "2025-03-08": "Women's Day", + "2025-04-29": "Radunitsa", + "2025-05-01": "Labor Day", + "2025-05-09": "Victory Day", + "2025-07-03": "Independence Day (Republic Day)", + "2025-11-07": "October Revolution Day", + "2025-12-25": "Catholic Christmas Day", + "2026-01-01": "New Year's Day", + "2026-01-02": "New Year's Day", + "2026-01-07": "Orthodox Christmas Day", + "2026-03-08": "Women's Day", + "2026-04-21": "Radunitsa", + "2026-05-01": "Labor Day", + "2026-05-09": "Victory Day", + "2026-07-03": "Independence Day (Republic Day)", + "2026-11-07": "October Revolution Day", + "2026-12-25": "Catholic Christmas Day", + "2027-01-01": "New Year's Day", + "2027-01-02": "New Year's Day", + "2027-01-07": "Orthodox Christmas Day", + "2027-03-08": "Women's Day", + "2027-05-01": "Labor Day", + "2027-05-09": "Victory Day", + "2027-05-11": "Radunitsa", + "2027-07-03": "Independence Day (Republic Day)", + "2027-11-07": "October Revolution Day", + "2027-12-25": "Catholic Christmas Day", + "2028-01-01": "New Year's Day", + "2028-01-02": "New Year's Day", + "2028-01-07": "Orthodox Christmas Day", + "2028-03-08": "Women's Day", + "2028-04-25": "Radunitsa", + "2028-05-01": "Labor Day", + "2028-05-09": "Victory Day", + "2028-07-03": "Independence Day (Republic Day)", + "2028-11-07": "October Revolution Day", + "2028-12-25": "Catholic Christmas Day", + "2029-01-01": "New Year's Day", + "2029-01-02": "New Year's Day", + "2029-01-07": "Orthodox Christmas Day", + "2029-03-08": "Women's Day", + "2029-04-17": "Radunitsa", + "2029-05-01": "Labor Day", + "2029-05-09": "Victory Day", + "2029-07-03": "Independence Day (Republic Day)", + "2029-11-07": "October Revolution Day", + "2029-12-25": "Catholic Christmas Day", + "2030-01-01": "New Year's Day", + "2030-01-02": "New Year's Day", + "2030-01-07": "Orthodox Christmas Day", + "2030-03-08": "Women's Day", + "2030-05-01": "Labor Day", + "2030-05-07": "Radunitsa", + "2030-05-09": "Victory Day", + "2030-07-03": "Independence Day (Republic Day)", + "2030-11-07": "October Revolution Day", + "2030-12-25": "Catholic Christmas Day", + "2031-01-01": "New Year's Day", + "2031-01-02": "New Year's Day", + "2031-01-07": "Orthodox Christmas Day", + "2031-03-08": "Women's Day", + "2031-04-22": "Radunitsa", + "2031-05-01": "Labor Day", + "2031-05-09": "Victory Day", + "2031-07-03": "Independence Day (Republic Day)", + "2031-11-07": "October Revolution Day", + "2031-12-25": "Catholic Christmas Day", + "2032-01-01": "New Year's Day", + "2032-01-02": "New Year's Day", + "2032-01-07": "Orthodox Christmas Day", + "2032-03-08": "Women's Day", + "2032-05-01": "Labor Day", + "2032-05-09": "Victory Day", + "2032-05-11": "Radunitsa", + "2032-07-03": "Independence Day (Republic Day)", + "2032-11-07": "October Revolution Day", + "2032-12-25": "Catholic Christmas Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "New Year's Day", + "2033-01-07": "Orthodox Christmas Day", + "2033-03-08": "Women's Day", + "2033-05-01": "Labor Day", + "2033-05-03": "Radunitsa", + "2033-05-09": "Victory Day", + "2033-07-03": "Independence Day (Republic Day)", + "2033-11-07": "October Revolution Day", + "2033-12-25": "Catholic Christmas Day", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day", + "2034-01-07": "Orthodox Christmas Day", + "2034-03-08": "Women's Day", + "2034-04-18": "Radunitsa", + "2034-05-01": "Labor Day", + "2034-05-09": "Victory Day", + "2034-07-03": "Independence Day (Republic Day)", + "2034-11-07": "October Revolution Day", + "2034-12-25": "Catholic Christmas Day", + "2035-01-01": "New Year's Day", + "2035-01-02": "New Year's Day", + "2035-01-07": "Orthodox Christmas Day", + "2035-03-08": "Women's Day", + "2035-05-01": "Labor Day", + "2035-05-08": "Radunitsa", + "2035-05-09": "Victory Day", + "2035-07-03": "Independence Day (Republic Day)", + "2035-11-07": "October Revolution Day", + "2035-12-25": "Catholic Christmas Day", + "2036-01-01": "New Year's Day", + "2036-01-02": "New Year's Day", + "2036-01-07": "Orthodox Christmas Day", + "2036-03-08": "Women's Day", + "2036-04-29": "Radunitsa", + "2036-05-01": "Labor Day", + "2036-05-09": "Victory Day", + "2036-07-03": "Independence Day (Republic Day)", + "2036-11-07": "October Revolution Day", + "2036-12-25": "Catholic Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-02": "New Year's Day", + "2037-01-07": "Orthodox Christmas Day", + "2037-03-08": "Women's Day", + "2037-04-14": "Radunitsa", + "2037-05-01": "Labor Day", + "2037-05-09": "Victory Day", + "2037-07-03": "Independence Day (Republic Day)", + "2037-11-07": "October Revolution Day", + "2037-12-25": "Catholic Christmas Day", + "2038-01-01": "New Year's Day", + "2038-01-02": "New Year's Day", + "2038-01-07": "Orthodox Christmas Day", + "2038-03-08": "Women's Day", + "2038-05-01": "Labor Day", + "2038-05-04": "Radunitsa", + "2038-05-09": "Victory Day", + "2038-07-03": "Independence Day (Republic Day)", + "2038-11-07": "October Revolution Day", + "2038-12-25": "Catholic Christmas Day", + "2039-01-01": "New Year's Day", + "2039-01-02": "New Year's Day", + "2039-01-07": "Orthodox Christmas Day", + "2039-03-08": "Women's Day", + "2039-04-26": "Radunitsa", + "2039-05-01": "Labor Day", + "2039-05-09": "Victory Day", + "2039-07-03": "Independence Day (Republic Day)", + "2039-11-07": "October Revolution Day", + "2039-12-25": "Catholic Christmas Day", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day", + "2040-01-07": "Orthodox Christmas Day", + "2040-03-08": "Women's Day", + "2040-05-01": "Labor Day", + "2040-05-09": "Victory Day", + "2040-05-15": "Radunitsa", + "2040-07-03": "Independence Day (Republic Day)", + "2040-11-07": "October Revolution Day", + "2040-12-25": "Catholic Christmas Day", + "2041-01-01": "New Year's Day", + "2041-01-02": "New Year's Day", + "2041-01-07": "Orthodox Christmas Day", + "2041-03-08": "Women's Day", + "2041-04-30": "Radunitsa", + "2041-05-01": "Labor Day", + "2041-05-09": "Victory Day", + "2041-07-03": "Independence Day (Republic Day)", + "2041-11-07": "October Revolution Day", + "2041-12-25": "Catholic Christmas Day", + "2042-01-01": "New Year's Day", + "2042-01-02": "New Year's Day", + "2042-01-07": "Orthodox Christmas Day", + "2042-03-08": "Women's Day", + "2042-04-22": "Radunitsa", + "2042-05-01": "Labor Day", + "2042-05-09": "Victory Day", + "2042-07-03": "Independence Day (Republic Day)", + "2042-11-07": "October Revolution Day", + "2042-12-25": "Catholic Christmas Day", + "2043-01-01": "New Year's Day", + "2043-01-02": "New Year's Day", + "2043-01-07": "Orthodox Christmas Day", + "2043-03-08": "Women's Day", + "2043-05-01": "Labor Day", + "2043-05-09": "Victory Day", + "2043-05-12": "Radunitsa", + "2043-07-03": "Independence Day (Republic Day)", + "2043-11-07": "October Revolution Day", + "2043-12-25": "Catholic Christmas Day", + "2044-01-01": "New Year's Day", + "2044-01-02": "New Year's Day", + "2044-01-07": "Orthodox Christmas Day", + "2044-03-08": "Women's Day", + "2044-05-01": "Labor Day", + "2044-05-03": "Radunitsa", + "2044-05-09": "Victory Day", + "2044-07-03": "Independence Day (Republic Day)", + "2044-11-07": "October Revolution Day", + "2044-12-25": "Catholic Christmas Day", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day", + "2045-01-07": "Orthodox Christmas Day", + "2045-03-08": "Women's Day", + "2045-04-18": "Radunitsa", + "2045-05-01": "Labor Day", + "2045-05-09": "Victory Day", + "2045-07-03": "Independence Day (Republic Day)", + "2045-11-07": "October Revolution Day", + "2045-12-25": "Catholic Christmas Day", + "2046-01-01": "New Year's Day", + "2046-01-02": "New Year's Day", + "2046-01-07": "Orthodox Christmas Day", + "2046-03-08": "Women's Day", + "2046-05-01": "Labor Day", + "2046-05-08": "Radunitsa", + "2046-05-09": "Victory Day", + "2046-07-03": "Independence Day (Republic Day)", + "2046-11-07": "October Revolution Day", + "2046-12-25": "Catholic Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-02": "New Year's Day", + "2047-01-07": "Orthodox Christmas Day", + "2047-03-08": "Women's Day", + "2047-04-30": "Radunitsa", + "2047-05-01": "Labor Day", + "2047-05-09": "Victory Day", + "2047-07-03": "Independence Day (Republic Day)", + "2047-11-07": "October Revolution Day", + "2047-12-25": "Catholic Christmas Day", + "2048-01-01": "New Year's Day", + "2048-01-02": "New Year's Day", + "2048-01-07": "Orthodox Christmas Day", + "2048-03-08": "Women's Day", + "2048-04-14": "Radunitsa", + "2048-05-01": "Labor Day", + "2048-05-09": "Victory Day", + "2048-07-03": "Independence Day (Republic Day)", + "2048-11-07": "October Revolution Day", + "2048-12-25": "Catholic Christmas Day", + "2049-01-01": "New Year's Day", + "2049-01-02": "New Year's Day", + "2049-01-07": "Orthodox Christmas Day", + "2049-03-08": "Women's Day", + "2049-05-01": "Labor Day", + "2049-05-04": "Radunitsa", + "2049-05-09": "Victory Day", + "2049-07-03": "Independence Day (Republic Day)", + "2049-11-07": "October Revolution Day", + "2049-12-25": "Catholic Christmas Day", + "2050-01-01": "New Year's Day", + "2050-01-02": "New Year's Day", + "2050-01-07": "Orthodox Christmas Day", + "2050-03-08": "Women's Day", + "2050-04-26": "Radunitsa", + "2050-05-01": "Labor Day", + "2050-05-09": "Victory Day", + "2050-07-03": "Independence Day (Republic Day)", + "2050-11-07": "October Revolution Day", + "2050-12-25": "Catholic Christmas Day" +} diff --git a/snapshots/countries/BZ.json b/snapshots/countries/BZ.json new file mode 100644 index 000000000..c8faa5e68 --- /dev/null +++ b/snapshots/countries/BZ.json @@ -0,0 +1,930 @@ +{ + "1982-01-01": "New Year's Day", + "1982-03-08": "National Heroes and Benefactors Day (Observed)", + "1982-04-09": "Good Friday", + "1982-04-10": "Holy Saturday", + "1982-04-12": "Easter Monday", + "1982-05-01": "Labour Day", + "1982-05-24": "Commonwealth Day", + "1982-09-10": "Saint George's Caye Day", + "1982-09-21": "Independence Day", + "1982-10-11": "Pan American Day (Observed)", + "1982-11-19": "Garifuna Settlement Day", + "1982-12-25": "Christmas Day", + "1982-12-27": "Boxing Day (Observed)", + "1983-01-01": "New Year's Day", + "1983-03-07": "National Heroes and Benefactors Day (Observed)", + "1983-04-01": "Good Friday", + "1983-04-02": "Holy Saturday", + "1983-04-04": "Easter Monday", + "1983-05-02": "Labour Day (Observed)", + "1983-05-23": "Commonwealth Day (Observed)", + "1983-09-10": "Saint George's Caye Day", + "1983-09-21": "Independence Day", + "1983-10-10": "Pan American Day (Observed)", + "1983-11-19": "Garifuna Settlement Day", + "1983-12-25": "Christmas Day", + "1983-12-26": "Boxing Day", + "1984-01-02": "New Year's Day (Observed)", + "1984-03-12": "National Heroes and Benefactors Day (Observed)", + "1984-04-20": "Good Friday", + "1984-04-21": "Holy Saturday", + "1984-04-23": "Easter Monday", + "1984-05-01": "Labour Day", + "1984-05-21": "Commonwealth Day (Observed)", + "1984-09-10": "Saint George's Caye Day", + "1984-09-21": "Independence Day", + "1984-10-15": "Pan American Day (Observed)", + "1984-11-19": "Garifuna Settlement Day", + "1984-12-25": "Christmas Day", + "1984-12-26": "Boxing Day", + "1985-01-01": "New Year's Day", + "1985-03-09": "National Heroes and Benefactors Day", + "1985-04-05": "Good Friday", + "1985-04-06": "Holy Saturday", + "1985-04-08": "Easter Monday", + "1985-05-01": "Labour Day", + "1985-05-27": "Commonwealth Day (Observed)", + "1985-09-10": "Saint George's Caye Day", + "1985-09-21": "Independence Day", + "1985-10-12": "Pan American Day", + "1985-11-19": "Garifuna Settlement Day", + "1985-12-25": "Christmas Day", + "1985-12-26": "Boxing Day", + "1986-01-01": "New Year's Day", + "1986-03-10": "National Heroes and Benefactors Day (Observed)", + "1986-03-28": "Good Friday", + "1986-03-29": "Holy Saturday", + "1986-03-31": "Easter Monday", + "1986-05-01": "Labour Day", + "1986-05-24": "Commonwealth Day", + "1986-09-10": "Saint George's Caye Day", + "1986-09-22": "Independence Day (Observed)", + "1986-10-13": "Pan American Day (Observed)", + "1986-11-19": "Garifuna Settlement Day", + "1986-12-25": "Christmas Day", + "1986-12-26": "Boxing Day", + "1987-01-01": "New Year's Day", + "1987-03-09": "National Heroes and Benefactors Day", + "1987-04-17": "Good Friday", + "1987-04-18": "Holy Saturday", + "1987-04-20": "Easter Monday", + "1987-05-01": "Labour Day", + "1987-05-25": "Commonwealth Day (Observed)", + "1987-09-10": "Saint George's Caye Day", + "1987-09-21": "Independence Day", + "1987-10-12": "Pan American Day", + "1987-11-19": "Garifuna Settlement Day", + "1987-12-25": "Christmas Day", + "1987-12-26": "Boxing Day", + "1988-01-01": "New Year's Day", + "1988-03-07": "National Heroes and Benefactors Day (Observed)", + "1988-04-01": "Good Friday", + "1988-04-02": "Holy Saturday", + "1988-04-04": "Easter Monday", + "1988-05-02": "Labour Day (Observed)", + "1988-05-23": "Commonwealth Day (Observed)", + "1988-09-10": "Saint George's Caye Day", + "1988-09-21": "Independence Day", + "1988-10-10": "Pan American Day (Observed)", + "1988-11-19": "Garifuna Settlement Day", + "1988-12-25": "Christmas Day", + "1988-12-26": "Boxing Day", + "1989-01-02": "New Year's Day (Observed)", + "1989-03-06": "National Heroes and Benefactors Day (Observed)", + "1989-03-24": "Good Friday", + "1989-03-25": "Holy Saturday", + "1989-03-27": "Easter Monday", + "1989-05-01": "Labour Day", + "1989-05-22": "Commonwealth Day (Observed)", + "1989-09-11": "Saint George's Caye Day (Observed)", + "1989-09-21": "Independence Day", + "1989-10-09": "Pan American Day (Observed)", + "1989-11-20": "Garifuna Settlement Day (Observed)", + "1989-12-25": "Christmas Day", + "1989-12-26": "Boxing Day", + "1990-01-01": "New Year's Day", + "1990-03-12": "National Heroes and Benefactors Day (Observed)", + "1990-04-13": "Good Friday", + "1990-04-14": "Holy Saturday", + "1990-04-16": "Easter Monday", + "1990-05-01": "Labour Day", + "1990-05-21": "Commonwealth Day (Observed)", + "1990-09-10": "Saint George's Caye Day", + "1990-09-21": "Independence Day", + "1990-10-15": "Pan American Day (Observed)", + "1990-11-19": "Garifuna Settlement Day", + "1990-12-25": "Christmas Day", + "1990-12-26": "Boxing Day", + "1991-01-01": "New Year's Day", + "1991-03-09": "National Heroes and Benefactors Day", + "1991-03-29": "Good Friday", + "1991-03-30": "Holy Saturday", + "1991-04-01": "Easter Monday", + "1991-05-01": "Labour Day", + "1991-05-27": "Commonwealth Day (Observed)", + "1991-09-10": "Saint George's Caye Day", + "1991-09-21": "Independence Day", + "1991-10-12": "Pan American Day", + "1991-11-19": "Garifuna Settlement Day", + "1991-12-25": "Christmas Day", + "1991-12-26": "Boxing Day", + "1992-01-01": "New Year's Day", + "1992-03-09": "National Heroes and Benefactors Day", + "1992-04-17": "Good Friday", + "1992-04-18": "Holy Saturday", + "1992-04-20": "Easter Monday", + "1992-05-01": "Labour Day", + "1992-05-25": "Commonwealth Day (Observed)", + "1992-09-10": "Saint George's Caye Day", + "1992-09-21": "Independence Day", + "1992-10-12": "Pan American Day", + "1992-11-19": "Garifuna Settlement Day", + "1992-12-25": "Christmas Day", + "1992-12-26": "Boxing Day", + "1993-01-01": "New Year's Day", + "1993-03-08": "National Heroes and Benefactors Day (Observed)", + "1993-04-09": "Good Friday", + "1993-04-10": "Holy Saturday", + "1993-04-12": "Easter Monday", + "1993-05-01": "Labour Day", + "1993-05-24": "Commonwealth Day", + "1993-09-10": "Saint George's Caye Day", + "1993-09-21": "Independence Day", + "1993-10-11": "Pan American Day (Observed)", + "1993-11-19": "Garifuna Settlement Day", + "1993-12-25": "Christmas Day", + "1993-12-27": "Boxing Day (Observed)", + "1994-01-01": "New Year's Day", + "1994-03-07": "National Heroes and Benefactors Day (Observed)", + "1994-04-01": "Good Friday", + "1994-04-02": "Holy Saturday", + "1994-04-04": "Easter Monday", + "1994-05-02": "Labour Day (Observed)", + "1994-05-23": "Commonwealth Day (Observed)", + "1994-09-10": "Saint George's Caye Day", + "1994-09-21": "Independence Day", + "1994-10-10": "Pan American Day (Observed)", + "1994-11-19": "Garifuna Settlement Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Boxing Day", + "1995-01-02": "New Year's Day (Observed)", + "1995-03-06": "National Heroes and Benefactors Day (Observed)", + "1995-04-14": "Good Friday", + "1995-04-15": "Holy Saturday", + "1995-04-17": "Easter Monday", + "1995-05-01": "Labour Day", + "1995-05-22": "Commonwealth Day (Observed)", + "1995-09-11": "Saint George's Caye Day (Observed)", + "1995-09-21": "Independence Day", + "1995-10-09": "Pan American Day (Observed)", + "1995-11-20": "Garifuna Settlement Day (Observed)", + "1995-12-25": "Christmas Day", + "1995-12-26": "Boxing Day", + "1996-01-01": "New Year's Day", + "1996-03-09": "National Heroes and Benefactors Day", + "1996-04-05": "Good Friday", + "1996-04-06": "Holy Saturday", + "1996-04-08": "Easter Monday", + "1996-05-01": "Labour Day", + "1996-05-27": "Commonwealth Day (Observed)", + "1996-09-10": "Saint George's Caye Day", + "1996-09-21": "Independence Day", + "1996-10-12": "Pan American Day", + "1996-11-19": "Garifuna Settlement Day", + "1996-12-25": "Christmas Day", + "1996-12-26": "Boxing Day", + "1997-01-01": "New Year's Day", + "1997-03-10": "National Heroes and Benefactors Day (Observed)", + "1997-03-28": "Good Friday", + "1997-03-29": "Holy Saturday", + "1997-03-31": "Easter Monday", + "1997-05-01": "Labour Day", + "1997-05-24": "Commonwealth Day", + "1997-09-10": "Saint George's Caye Day", + "1997-09-22": "Independence Day (Observed)", + "1997-10-13": "Pan American Day (Observed)", + "1997-11-19": "Garifuna Settlement Day", + "1997-12-25": "Christmas Day", + "1997-12-26": "Boxing Day", + "1998-01-01": "New Year's Day", + "1998-03-09": "National Heroes and Benefactors Day", + "1998-04-10": "Good Friday", + "1998-04-11": "Holy Saturday", + "1998-04-13": "Easter Monday", + "1998-05-01": "Labour Day", + "1998-05-25": "Commonwealth Day (Observed)", + "1998-09-10": "Saint George's Caye Day", + "1998-09-21": "Independence Day", + "1998-10-12": "Pan American Day", + "1998-11-19": "Garifuna Settlement Day", + "1998-12-25": "Christmas Day", + "1998-12-26": "Boxing Day", + "1999-01-01": "New Year's Day", + "1999-03-08": "National Heroes and Benefactors Day (Observed)", + "1999-04-02": "Good Friday", + "1999-04-03": "Holy Saturday", + "1999-04-05": "Easter Monday", + "1999-05-01": "Labour Day", + "1999-05-24": "Commonwealth Day", + "1999-09-10": "Saint George's Caye Day", + "1999-09-21": "Independence Day", + "1999-10-11": "Pan American Day (Observed)", + "1999-11-19": "Garifuna Settlement Day", + "1999-12-25": "Christmas Day", + "1999-12-27": "Boxing Day (Observed)", + "2000-01-01": "New Year's Day", + "2000-03-06": "National Heroes and Benefactors Day (Observed)", + "2000-04-21": "Good Friday", + "2000-04-22": "Holy Saturday", + "2000-04-24": "Easter Monday", + "2000-05-01": "Labour Day", + "2000-05-22": "Commonwealth Day (Observed)", + "2000-09-11": "Saint George's Caye Day (Observed)", + "2000-09-21": "Independence Day", + "2000-10-09": "Pan American Day (Observed)", + "2000-11-20": "Garifuna Settlement Day (Observed)", + "2000-12-25": "Christmas Day", + "2000-12-26": "Boxing Day", + "2001-01-01": "New Year's Day", + "2001-03-12": "National Heroes and Benefactors Day (Observed)", + "2001-04-13": "Good Friday", + "2001-04-14": "Holy Saturday", + "2001-04-16": "Easter Monday", + "2001-05-01": "Labour Day", + "2001-05-21": "Commonwealth Day (Observed)", + "2001-09-10": "Saint George's Caye Day", + "2001-09-21": "Independence Day", + "2001-10-15": "Pan American Day (Observed)", + "2001-11-19": "Garifuna Settlement Day", + "2001-12-25": "Christmas Day", + "2001-12-26": "Boxing Day", + "2002-01-01": "New Year's Day", + "2002-03-09": "National Heroes and Benefactors Day", + "2002-03-29": "Good Friday", + "2002-03-30": "Holy Saturday", + "2002-04-01": "Easter Monday", + "2002-05-01": "Labour Day", + "2002-05-27": "Commonwealth Day (Observed)", + "2002-09-10": "Saint George's Caye Day", + "2002-09-21": "Independence Day", + "2002-10-12": "Pan American Day", + "2002-11-19": "Garifuna Settlement Day", + "2002-12-25": "Christmas Day", + "2002-12-26": "Boxing Day", + "2003-01-01": "New Year's Day", + "2003-03-10": "National Heroes and Benefactors Day (Observed)", + "2003-04-18": "Good Friday", + "2003-04-19": "Holy Saturday", + "2003-04-21": "Easter Monday", + "2003-05-01": "Labour Day", + "2003-05-24": "Commonwealth Day", + "2003-09-10": "Saint George's Caye Day", + "2003-09-22": "Independence Day (Observed)", + "2003-10-13": "Pan American Day (Observed)", + "2003-11-19": "Garifuna Settlement Day", + "2003-12-25": "Christmas Day", + "2003-12-26": "Boxing Day", + "2004-01-01": "New Year's Day", + "2004-03-08": "National Heroes and Benefactors Day (Observed)", + "2004-04-09": "Good Friday", + "2004-04-10": "Holy Saturday", + "2004-04-12": "Easter Monday", + "2004-05-01": "Labour Day", + "2004-05-24": "Commonwealth Day", + "2004-09-10": "Saint George's Caye Day", + "2004-09-21": "Independence Day", + "2004-10-11": "Pan American Day (Observed)", + "2004-11-19": "Garifuna Settlement Day", + "2004-12-25": "Christmas Day", + "2004-12-27": "Boxing Day (Observed)", + "2005-01-01": "New Year's Day", + "2005-03-07": "National Heroes and Benefactors Day (Observed)", + "2005-03-25": "Good Friday", + "2005-03-26": "Holy Saturday", + "2005-03-28": "Easter Monday", + "2005-05-02": "Labour Day (Observed)", + "2005-05-23": "Commonwealth Day (Observed)", + "2005-09-10": "Saint George's Caye Day", + "2005-09-21": "Independence Day", + "2005-10-10": "Pan American Day (Observed)", + "2005-11-19": "Garifuna Settlement Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "Boxing Day", + "2006-01-02": "New Year's Day (Observed)", + "2006-03-06": "National Heroes and Benefactors Day (Observed)", + "2006-04-14": "Good Friday", + "2006-04-15": "Holy Saturday", + "2006-04-17": "Easter Monday", + "2006-05-01": "Labour Day", + "2006-05-22": "Commonwealth Day (Observed)", + "2006-09-11": "Saint George's Caye Day (Observed)", + "2006-09-21": "Independence Day", + "2006-10-09": "Pan American Day (Observed)", + "2006-11-20": "Garifuna Settlement Day (Observed)", + "2006-12-25": "Christmas Day", + "2006-12-26": "Boxing Day", + "2007-01-01": "New Year's Day", + "2007-03-12": "National Heroes and Benefactors Day (Observed)", + "2007-04-06": "Good Friday", + "2007-04-07": "Holy Saturday", + "2007-04-09": "Easter Monday", + "2007-05-01": "Labour Day", + "2007-05-21": "Commonwealth Day (Observed)", + "2007-09-10": "Saint George's Caye Day", + "2007-09-21": "Independence Day", + "2007-10-15": "Pan American Day (Observed)", + "2007-11-19": "Garifuna Settlement Day", + "2007-12-25": "Christmas Day", + "2007-12-26": "Boxing Day", + "2008-01-01": "New Year's Day", + "2008-03-10": "National Heroes and Benefactors Day (Observed)", + "2008-03-21": "Good Friday", + "2008-03-22": "Holy Saturday", + "2008-03-24": "Easter Monday", + "2008-05-01": "Labour Day", + "2008-05-24": "Commonwealth Day", + "2008-09-10": "Saint George's Caye Day", + "2008-09-22": "Independence Day (Observed)", + "2008-10-13": "Pan American Day (Observed)", + "2008-11-19": "Garifuna Settlement Day", + "2008-12-25": "Christmas Day", + "2008-12-26": "Boxing Day", + "2009-01-01": "New Year's Day", + "2009-03-09": "National Heroes and Benefactors Day", + "2009-04-10": "Good Friday", + "2009-04-11": "Holy Saturday", + "2009-04-13": "Easter Monday", + "2009-05-01": "Labour Day", + "2009-05-25": "Commonwealth Day (Observed)", + "2009-09-10": "Saint George's Caye Day", + "2009-09-21": "Independence Day", + "2009-10-12": "Pan American Day", + "2009-11-19": "Garifuna Settlement Day", + "2009-12-25": "Christmas Day", + "2009-12-26": "Boxing Day", + "2010-01-01": "New Year's Day", + "2010-03-08": "National Heroes and Benefactors Day (Observed)", + "2010-04-02": "Good Friday", + "2010-04-03": "Holy Saturday", + "2010-04-05": "Easter Monday", + "2010-05-01": "Labour Day", + "2010-05-24": "Commonwealth Day", + "2010-09-10": "Saint George's Caye Day", + "2010-09-21": "Independence Day", + "2010-10-11": "Pan American Day (Observed)", + "2010-11-19": "Garifuna Settlement Day", + "2010-12-25": "Christmas Day", + "2010-12-27": "Boxing Day (Observed)", + "2011-01-01": "New Year's Day", + "2011-03-07": "National Heroes and Benefactors Day (Observed)", + "2011-04-22": "Good Friday", + "2011-04-23": "Holy Saturday", + "2011-04-25": "Easter Monday", + "2011-05-02": "Labour Day (Observed)", + "2011-05-23": "Commonwealth Day (Observed)", + "2011-09-10": "Saint George's Caye Day", + "2011-09-21": "Independence Day", + "2011-10-10": "Pan American Day (Observed)", + "2011-11-19": "Garifuna Settlement Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "Boxing Day", + "2012-01-02": "New Year's Day (Observed)", + "2012-03-12": "National Heroes and Benefactors Day (Observed)", + "2012-04-06": "Good Friday", + "2012-04-07": "Holy Saturday", + "2012-04-09": "Easter Monday", + "2012-05-01": "Labour Day", + "2012-05-21": "Commonwealth Day (Observed)", + "2012-09-10": "Saint George's Caye Day", + "2012-09-21": "Independence Day", + "2012-10-15": "Pan American Day (Observed)", + "2012-11-19": "Garifuna Settlement Day", + "2012-12-25": "Christmas Day", + "2012-12-26": "Boxing Day", + "2013-01-01": "New Year's Day", + "2013-03-09": "National Heroes and Benefactors Day", + "2013-03-29": "Good Friday", + "2013-03-30": "Holy Saturday", + "2013-04-01": "Easter Monday", + "2013-05-01": "Labour Day", + "2013-05-27": "Commonwealth Day (Observed)", + "2013-09-10": "Saint George's Caye Day", + "2013-09-21": "Independence Day", + "2013-10-12": "Pan American Day", + "2013-11-19": "Garifuna Settlement Day", + "2013-12-25": "Christmas Day", + "2013-12-26": "Boxing Day", + "2014-01-01": "New Year's Day", + "2014-03-10": "National Heroes and Benefactors Day (Observed)", + "2014-04-18": "Good Friday", + "2014-04-19": "Holy Saturday", + "2014-04-21": "Easter Monday", + "2014-05-01": "Labour Day", + "2014-05-24": "Commonwealth Day", + "2014-09-10": "Saint George's Caye Day", + "2014-09-22": "Independence Day (Observed)", + "2014-10-13": "Pan American Day (Observed)", + "2014-11-19": "Garifuna Settlement Day", + "2014-12-25": "Christmas Day", + "2014-12-26": "Boxing Day", + "2015-01-01": "New Year's Day", + "2015-03-09": "National Heroes and Benefactors Day", + "2015-04-03": "Good Friday", + "2015-04-04": "Holy Saturday", + "2015-04-06": "Easter Monday", + "2015-05-01": "Labour Day", + "2015-05-25": "Commonwealth Day (Observed)", + "2015-09-10": "Saint George's Caye Day", + "2015-09-21": "Independence Day", + "2015-10-12": "Pan American Day", + "2015-11-19": "Garifuna Settlement Day", + "2015-12-25": "Christmas Day", + "2015-12-26": "Boxing Day", + "2016-01-01": "New Year's Day", + "2016-03-07": "National Heroes and Benefactors Day (Observed)", + "2016-03-25": "Good Friday", + "2016-03-26": "Holy Saturday", + "2016-03-28": "Easter Monday", + "2016-05-02": "Labour Day (Observed)", + "2016-05-23": "Commonwealth Day (Observed)", + "2016-09-10": "Saint George's Caye Day", + "2016-09-21": "Independence Day", + "2016-10-10": "Pan American Day (Observed)", + "2016-11-19": "Garifuna Settlement Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "Boxing Day", + "2017-01-02": "New Year's Day (Observed)", + "2017-03-06": "National Heroes and Benefactors Day (Observed)", + "2017-04-14": "Good Friday", + "2017-04-15": "Holy Saturday", + "2017-04-17": "Easter Monday", + "2017-05-01": "Labour Day", + "2017-05-22": "Commonwealth Day (Observed)", + "2017-09-11": "Saint George's Caye Day (Observed)", + "2017-09-21": "Independence Day", + "2017-10-09": "Pan American Day (Observed)", + "2017-11-20": "Garifuna Settlement Day (Observed)", + "2017-12-25": "Christmas Day", + "2017-12-26": "Boxing Day", + "2018-01-01": "New Year's Day", + "2018-03-12": "National Heroes and Benefactors Day (Observed)", + "2018-03-30": "Good Friday", + "2018-03-31": "Holy Saturday", + "2018-04-02": "Easter Monday", + "2018-05-01": "Labour Day", + "2018-05-21": "Commonwealth Day (Observed)", + "2018-09-10": "Saint George's Caye Day", + "2018-09-21": "Independence Day", + "2018-10-15": "Pan American Day (Observed)", + "2018-11-19": "Garifuna Settlement Day", + "2018-12-25": "Christmas Day", + "2018-12-26": "Boxing Day", + "2019-01-01": "New Year's Day", + "2019-03-09": "National Heroes and Benefactors Day", + "2019-04-19": "Good Friday", + "2019-04-20": "Holy Saturday", + "2019-04-22": "Easter Monday", + "2019-05-01": "Labour Day", + "2019-05-27": "Commonwealth Day (Observed)", + "2019-09-10": "Saint George's Caye Day", + "2019-09-21": "Independence Day", + "2019-10-12": "Pan American Day", + "2019-11-19": "Garifuna Settlement Day", + "2019-12-25": "Christmas Day", + "2019-12-26": "Boxing Day", + "2020-01-01": "New Year's Day", + "2020-03-09": "National Heroes and Benefactors Day", + "2020-04-10": "Good Friday", + "2020-04-11": "Holy Saturday", + "2020-04-13": "Easter Monday", + "2020-05-01": "Labour Day", + "2020-05-25": "Commonwealth Day (Observed)", + "2020-09-10": "Saint George's Caye Day", + "2020-09-21": "Independence Day", + "2020-10-12": "Pan American Day", + "2020-11-19": "Garifuna Settlement Day", + "2020-12-25": "Christmas Day", + "2020-12-26": "Boxing Day", + "2021-01-01": "New Year's Day", + "2021-01-15": "George Price Day", + "2021-03-08": "National Heroes and Benefactors Day (Observed)", + "2021-04-02": "Good Friday", + "2021-04-03": "Holy Saturday", + "2021-04-05": "Easter Monday", + "2021-05-01": "Labour Day", + "2021-05-24": "Commonwealth Day", + "2021-08-02": "Emancipation Day (Observed)", + "2021-09-10": "Saint George's Caye Day", + "2021-09-21": "Independence Day", + "2021-10-11": "Indigenous Peoples' Resistance Day (Observed)", + "2021-11-19": "Garifuna Settlement Day", + "2021-12-25": "Christmas Day", + "2021-12-27": "Boxing Day (Observed)", + "2022-01-01": "New Year's Day", + "2022-01-15": "George Price Day", + "2022-03-07": "National Heroes and Benefactors Day (Observed)", + "2022-04-15": "Good Friday", + "2022-04-16": "Holy Saturday", + "2022-04-18": "Easter Monday", + "2022-05-02": "Labour Day (Observed)", + "2022-08-01": "Emancipation Day", + "2022-09-10": "Saint George's Caye Day", + "2022-09-21": "Independence Day", + "2022-10-10": "Indigenous Peoples' Resistance Day (Observed)", + "2022-11-19": "Garifuna Settlement Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "Boxing Day", + "2023-01-02": "New Year's Day (Observed)", + "2023-01-16": "George Price Day (Observed)", + "2023-03-06": "National Heroes and Benefactors Day (Observed)", + "2023-04-07": "Good Friday", + "2023-04-08": "Holy Saturday", + "2023-04-10": "Easter Monday", + "2023-05-01": "Labour Day", + "2023-07-31": "Emancipation Day (Observed)", + "2023-09-11": "Saint George's Caye Day (Observed)", + "2023-09-21": "Independence Day", + "2023-10-09": "Indigenous Peoples' Resistance Day (Observed)", + "2023-11-20": "Garifuna Settlement Day (Observed)", + "2023-12-25": "Christmas Day", + "2023-12-26": "Boxing Day", + "2024-01-01": "New Year's Day", + "2024-01-15": "George Price Day", + "2024-03-09": "National Heroes and Benefactors Day", + "2024-03-29": "Good Friday", + "2024-03-30": "Holy Saturday", + "2024-04-01": "Easter Monday", + "2024-05-01": "Labour Day", + "2024-07-29": "Emancipation Day (Observed)", + "2024-09-10": "Saint George's Caye Day", + "2024-09-21": "Independence Day", + "2024-10-12": "Indigenous Peoples' Resistance Day", + "2024-11-19": "Garifuna Settlement Day", + "2024-12-25": "Christmas Day", + "2024-12-26": "Boxing Day", + "2025-01-01": "New Year's Day", + "2025-01-15": "George Price Day", + "2025-03-10": "National Heroes and Benefactors Day (Observed)", + "2025-04-18": "Good Friday", + "2025-04-19": "Holy Saturday", + "2025-04-21": "Easter Monday", + "2025-05-01": "Labour Day", + "2025-08-04": "Emancipation Day (Observed)", + "2025-09-10": "Saint George's Caye Day", + "2025-09-22": "Independence Day (Observed)", + "2025-10-13": "Indigenous Peoples' Resistance Day (Observed)", + "2025-11-19": "Garifuna Settlement Day", + "2025-12-25": "Christmas Day", + "2025-12-26": "Boxing Day", + "2026-01-01": "New Year's Day", + "2026-01-15": "George Price Day", + "2026-03-09": "National Heroes and Benefactors Day", + "2026-04-03": "Good Friday", + "2026-04-04": "Holy Saturday", + "2026-04-06": "Easter Monday", + "2026-05-01": "Labour Day", + "2026-08-01": "Emancipation Day", + "2026-09-10": "Saint George's Caye Day", + "2026-09-21": "Independence Day", + "2026-10-12": "Indigenous Peoples' Resistance Day", + "2026-11-19": "Garifuna Settlement Day", + "2026-12-25": "Christmas Day", + "2026-12-26": "Boxing Day", + "2027-01-01": "New Year's Day", + "2027-01-15": "George Price Day", + "2027-03-08": "National Heroes and Benefactors Day (Observed)", + "2027-03-26": "Good Friday", + "2027-03-27": "Holy Saturday", + "2027-03-29": "Easter Monday", + "2027-05-01": "Labour Day", + "2027-08-02": "Emancipation Day (Observed)", + "2027-09-10": "Saint George's Caye Day", + "2027-09-21": "Independence Day", + "2027-10-11": "Indigenous Peoples' Resistance Day (Observed)", + "2027-11-19": "Garifuna Settlement Day", + "2027-12-25": "Christmas Day", + "2027-12-27": "Boxing Day (Observed)", + "2028-01-01": "New Year's Day", + "2028-01-15": "George Price Day", + "2028-03-06": "National Heroes and Benefactors Day (Observed)", + "2028-04-14": "Good Friday", + "2028-04-15": "Holy Saturday", + "2028-04-17": "Easter Monday", + "2028-05-01": "Labour Day", + "2028-07-31": "Emancipation Day (Observed)", + "2028-09-11": "Saint George's Caye Day (Observed)", + "2028-09-21": "Independence Day", + "2028-10-09": "Indigenous Peoples' Resistance Day (Observed)", + "2028-11-20": "Garifuna Settlement Day (Observed)", + "2028-12-25": "Christmas Day", + "2028-12-26": "Boxing Day", + "2029-01-01": "New Year's Day", + "2029-01-15": "George Price Day", + "2029-03-12": "National Heroes and Benefactors Day (Observed)", + "2029-03-30": "Good Friday", + "2029-03-31": "Holy Saturday", + "2029-04-02": "Easter Monday", + "2029-05-01": "Labour Day", + "2029-07-30": "Emancipation Day (Observed)", + "2029-09-10": "Saint George's Caye Day", + "2029-09-21": "Independence Day", + "2029-10-15": "Indigenous Peoples' Resistance Day (Observed)", + "2029-11-19": "Garifuna Settlement Day", + "2029-12-25": "Christmas Day", + "2029-12-26": "Boxing Day", + "2030-01-01": "New Year's Day", + "2030-01-15": "George Price Day", + "2030-03-09": "National Heroes and Benefactors Day", + "2030-04-19": "Good Friday", + "2030-04-20": "Holy Saturday", + "2030-04-22": "Easter Monday", + "2030-05-01": "Labour Day", + "2030-07-29": "Emancipation Day (Observed)", + "2030-09-10": "Saint George's Caye Day", + "2030-09-21": "Independence Day", + "2030-10-12": "Indigenous Peoples' Resistance Day", + "2030-11-19": "Garifuna Settlement Day", + "2030-12-25": "Christmas Day", + "2030-12-26": "Boxing Day", + "2031-01-01": "New Year's Day", + "2031-01-15": "George Price Day", + "2031-03-10": "National Heroes and Benefactors Day (Observed)", + "2031-04-11": "Good Friday", + "2031-04-12": "Holy Saturday", + "2031-04-14": "Easter Monday", + "2031-05-01": "Labour Day", + "2031-08-04": "Emancipation Day (Observed)", + "2031-09-10": "Saint George's Caye Day", + "2031-09-22": "Independence Day (Observed)", + "2031-10-13": "Indigenous Peoples' Resistance Day (Observed)", + "2031-11-19": "Garifuna Settlement Day", + "2031-12-25": "Christmas Day", + "2031-12-26": "Boxing Day", + "2032-01-01": "New Year's Day", + "2032-01-15": "George Price Day", + "2032-03-08": "National Heroes and Benefactors Day (Observed)", + "2032-03-26": "Good Friday", + "2032-03-27": "Holy Saturday", + "2032-03-29": "Easter Monday", + "2032-05-01": "Labour Day", + "2032-08-02": "Emancipation Day (Observed)", + "2032-09-10": "Saint George's Caye Day", + "2032-09-21": "Independence Day", + "2032-10-11": "Indigenous Peoples' Resistance Day (Observed)", + "2032-11-19": "Garifuna Settlement Day", + "2032-12-25": "Christmas Day", + "2032-12-27": "Boxing Day (Observed)", + "2033-01-01": "New Year's Day", + "2033-01-15": "George Price Day", + "2033-03-07": "National Heroes and Benefactors Day (Observed)", + "2033-04-15": "Good Friday", + "2033-04-16": "Holy Saturday", + "2033-04-18": "Easter Monday", + "2033-05-02": "Labour Day (Observed)", + "2033-08-01": "Emancipation Day", + "2033-09-10": "Saint George's Caye Day", + "2033-09-21": "Independence Day", + "2033-10-10": "Indigenous Peoples' Resistance Day (Observed)", + "2033-11-19": "Garifuna Settlement Day", + "2033-12-25": "Christmas Day", + "2033-12-26": "Boxing Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-01-16": "George Price Day (Observed)", + "2034-03-06": "National Heroes and Benefactors Day (Observed)", + "2034-04-07": "Good Friday", + "2034-04-08": "Holy Saturday", + "2034-04-10": "Easter Monday", + "2034-05-01": "Labour Day", + "2034-07-31": "Emancipation Day (Observed)", + "2034-09-11": "Saint George's Caye Day (Observed)", + "2034-09-21": "Independence Day", + "2034-10-09": "Indigenous Peoples' Resistance Day (Observed)", + "2034-11-20": "Garifuna Settlement Day (Observed)", + "2034-12-25": "Christmas Day", + "2034-12-26": "Boxing Day", + "2035-01-01": "New Year's Day", + "2035-01-15": "George Price Day", + "2035-03-12": "National Heroes and Benefactors Day (Observed)", + "2035-03-23": "Good Friday", + "2035-03-24": "Holy Saturday", + "2035-03-26": "Easter Monday", + "2035-05-01": "Labour Day", + "2035-07-30": "Emancipation Day (Observed)", + "2035-09-10": "Saint George's Caye Day", + "2035-09-21": "Independence Day", + "2035-10-15": "Indigenous Peoples' Resistance Day (Observed)", + "2035-11-19": "Garifuna Settlement Day", + "2035-12-25": "Christmas Day", + "2035-12-26": "Boxing Day", + "2036-01-01": "New Year's Day", + "2036-01-15": "George Price Day", + "2036-03-10": "National Heroes and Benefactors Day (Observed)", + "2036-04-11": "Good Friday", + "2036-04-12": "Holy Saturday", + "2036-04-14": "Easter Monday", + "2036-05-01": "Labour Day", + "2036-08-04": "Emancipation Day (Observed)", + "2036-09-10": "Saint George's Caye Day", + "2036-09-22": "Independence Day (Observed)", + "2036-10-13": "Indigenous Peoples' Resistance Day (Observed)", + "2036-11-19": "Garifuna Settlement Day", + "2036-12-25": "Christmas Day", + "2036-12-26": "Boxing Day", + "2037-01-01": "New Year's Day", + "2037-01-15": "George Price Day", + "2037-03-09": "National Heroes and Benefactors Day", + "2037-04-03": "Good Friday", + "2037-04-04": "Holy Saturday", + "2037-04-06": "Easter Monday", + "2037-05-01": "Labour Day", + "2037-08-01": "Emancipation Day", + "2037-09-10": "Saint George's Caye Day", + "2037-09-21": "Independence Day", + "2037-10-12": "Indigenous Peoples' Resistance Day", + "2037-11-19": "Garifuna Settlement Day", + "2037-12-25": "Christmas Day", + "2037-12-26": "Boxing Day", + "2038-01-01": "New Year's Day", + "2038-01-15": "George Price Day", + "2038-03-08": "National Heroes and Benefactors Day (Observed)", + "2038-04-23": "Good Friday", + "2038-04-24": "Holy Saturday", + "2038-04-26": "Easter Monday", + "2038-05-01": "Labour Day", + "2038-08-02": "Emancipation Day (Observed)", + "2038-09-10": "Saint George's Caye Day", + "2038-09-21": "Independence Day", + "2038-10-11": "Indigenous Peoples' Resistance Day (Observed)", + "2038-11-19": "Garifuna Settlement Day", + "2038-12-25": "Christmas Day", + "2038-12-27": "Boxing Day (Observed)", + "2039-01-01": "New Year's Day", + "2039-01-15": "George Price Day", + "2039-03-07": "National Heroes and Benefactors Day (Observed)", + "2039-04-08": "Good Friday", + "2039-04-09": "Holy Saturday", + "2039-04-11": "Easter Monday", + "2039-05-02": "Labour Day (Observed)", + "2039-08-01": "Emancipation Day", + "2039-09-10": "Saint George's Caye Day", + "2039-09-21": "Independence Day", + "2039-10-10": "Indigenous Peoples' Resistance Day (Observed)", + "2039-11-19": "Garifuna Settlement Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Boxing Day", + "2040-01-02": "New Year's Day (Observed)", + "2040-01-16": "George Price Day (Observed)", + "2040-03-12": "National Heroes and Benefactors Day (Observed)", + "2040-03-30": "Good Friday", + "2040-03-31": "Holy Saturday", + "2040-04-02": "Easter Monday", + "2040-05-01": "Labour Day", + "2040-07-30": "Emancipation Day (Observed)", + "2040-09-10": "Saint George's Caye Day", + "2040-09-21": "Independence Day", + "2040-10-15": "Indigenous Peoples' Resistance Day (Observed)", + "2040-11-19": "Garifuna Settlement Day", + "2040-12-25": "Christmas Day", + "2040-12-26": "Boxing Day", + "2041-01-01": "New Year's Day", + "2041-01-15": "George Price Day", + "2041-03-09": "National Heroes and Benefactors Day", + "2041-04-19": "Good Friday", + "2041-04-20": "Holy Saturday", + "2041-04-22": "Easter Monday", + "2041-05-01": "Labour Day", + "2041-07-29": "Emancipation Day (Observed)", + "2041-09-10": "Saint George's Caye Day", + "2041-09-21": "Independence Day", + "2041-10-12": "Indigenous Peoples' Resistance Day", + "2041-11-19": "Garifuna Settlement Day", + "2041-12-25": "Christmas Day", + "2041-12-26": "Boxing Day", + "2042-01-01": "New Year's Day", + "2042-01-15": "George Price Day", + "2042-03-10": "National Heroes and Benefactors Day (Observed)", + "2042-04-04": "Good Friday", + "2042-04-05": "Holy Saturday", + "2042-04-07": "Easter Monday", + "2042-05-01": "Labour Day", + "2042-08-04": "Emancipation Day (Observed)", + "2042-09-10": "Saint George's Caye Day", + "2042-09-22": "Independence Day (Observed)", + "2042-10-13": "Indigenous Peoples' Resistance Day (Observed)", + "2042-11-19": "Garifuna Settlement Day", + "2042-12-25": "Christmas Day", + "2042-12-26": "Boxing Day", + "2043-01-01": "New Year's Day", + "2043-01-15": "George Price Day", + "2043-03-09": "National Heroes and Benefactors Day", + "2043-03-27": "Good Friday", + "2043-03-28": "Holy Saturday", + "2043-03-30": "Easter Monday", + "2043-05-01": "Labour Day", + "2043-08-01": "Emancipation Day", + "2043-09-10": "Saint George's Caye Day", + "2043-09-21": "Independence Day", + "2043-10-12": "Indigenous Peoples' Resistance Day", + "2043-11-19": "Garifuna Settlement Day", + "2043-12-25": "Christmas Day", + "2043-12-26": "Boxing Day", + "2044-01-01": "New Year's Day", + "2044-01-15": "George Price Day", + "2044-03-07": "National Heroes and Benefactors Day (Observed)", + "2044-04-15": "Good Friday", + "2044-04-16": "Holy Saturday", + "2044-04-18": "Easter Monday", + "2044-05-02": "Labour Day (Observed)", + "2044-08-01": "Emancipation Day", + "2044-09-10": "Saint George's Caye Day", + "2044-09-21": "Independence Day", + "2044-10-10": "Indigenous Peoples' Resistance Day (Observed)", + "2044-11-19": "Garifuna Settlement Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "Boxing Day", + "2045-01-02": "New Year's Day (Observed)", + "2045-01-16": "George Price Day (Observed)", + "2045-03-06": "National Heroes and Benefactors Day (Observed)", + "2045-04-07": "Good Friday", + "2045-04-08": "Holy Saturday", + "2045-04-10": "Easter Monday", + "2045-05-01": "Labour Day", + "2045-07-31": "Emancipation Day (Observed)", + "2045-09-11": "Saint George's Caye Day (Observed)", + "2045-09-21": "Independence Day", + "2045-10-09": "Indigenous Peoples' Resistance Day (Observed)", + "2045-11-20": "Garifuna Settlement Day (Observed)", + "2045-12-25": "Christmas Day", + "2045-12-26": "Boxing Day", + "2046-01-01": "New Year's Day", + "2046-01-15": "George Price Day", + "2046-03-12": "National Heroes and Benefactors Day (Observed)", + "2046-03-23": "Good Friday", + "2046-03-24": "Holy Saturday", + "2046-03-26": "Easter Monday", + "2046-05-01": "Labour Day", + "2046-07-30": "Emancipation Day (Observed)", + "2046-09-10": "Saint George's Caye Day", + "2046-09-21": "Independence Day", + "2046-10-15": "Indigenous Peoples' Resistance Day (Observed)", + "2046-11-19": "Garifuna Settlement Day", + "2046-12-25": "Christmas Day", + "2046-12-26": "Boxing Day", + "2047-01-01": "New Year's Day", + "2047-01-15": "George Price Day", + "2047-03-09": "National Heroes and Benefactors Day", + "2047-04-12": "Good Friday", + "2047-04-13": "Holy Saturday", + "2047-04-15": "Easter Monday", + "2047-05-01": "Labour Day", + "2047-07-29": "Emancipation Day (Observed)", + "2047-09-10": "Saint George's Caye Day", + "2047-09-21": "Independence Day", + "2047-10-12": "Indigenous Peoples' Resistance Day", + "2047-11-19": "Garifuna Settlement Day", + "2047-12-25": "Christmas Day", + "2047-12-26": "Boxing Day", + "2048-01-01": "New Year's Day", + "2048-01-15": "George Price Day", + "2048-03-09": "National Heroes and Benefactors Day", + "2048-04-03": "Good Friday", + "2048-04-04": "Holy Saturday", + "2048-04-06": "Easter Monday", + "2048-05-01": "Labour Day", + "2048-08-01": "Emancipation Day", + "2048-09-10": "Saint George's Caye Day", + "2048-09-21": "Independence Day", + "2048-10-12": "Indigenous Peoples' Resistance Day", + "2048-11-19": "Garifuna Settlement Day", + "2048-12-25": "Christmas Day", + "2048-12-26": "Boxing Day", + "2049-01-01": "New Year's Day", + "2049-01-15": "George Price Day", + "2049-03-08": "National Heroes and Benefactors Day (Observed)", + "2049-04-16": "Good Friday", + "2049-04-17": "Holy Saturday", + "2049-04-19": "Easter Monday", + "2049-05-01": "Labour Day", + "2049-08-02": "Emancipation Day (Observed)", + "2049-09-10": "Saint George's Caye Day", + "2049-09-21": "Independence Day", + "2049-10-11": "Indigenous Peoples' Resistance Day (Observed)", + "2049-11-19": "Garifuna Settlement Day", + "2049-12-25": "Christmas Day", + "2049-12-27": "Boxing Day (Observed)", + "2050-01-01": "New Year's Day", + "2050-01-15": "George Price Day", + "2050-03-07": "National Heroes and Benefactors Day (Observed)", + "2050-04-08": "Good Friday", + "2050-04-09": "Holy Saturday", + "2050-04-11": "Easter Monday", + "2050-05-02": "Labour Day (Observed)", + "2050-08-01": "Emancipation Day", + "2050-09-10": "Saint George's Caye Day", + "2050-09-21": "Independence Day", + "2050-10-10": "Indigenous Peoples' Resistance Day (Observed)", + "2050-11-19": "Garifuna Settlement Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "Boxing Day" +} diff --git a/snapshots/countries/CA.json b/snapshots/countries/CA.json new file mode 100644 index 000000000..4aac5a983 --- /dev/null +++ b/snapshots/countries/CA.json @@ -0,0 +1,2036 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-02": "New Year's Day (Observed)", + "1950-03-20": "St. Patrick's Day", + "1950-04-07": "Good Friday", + "1950-04-10": "Easter Monday", + "1950-06-24": "St. Jean Baptiste Day", + "1950-07-01": "Dominion Day; Memorial Day", + "1950-07-03": "Dominion Day (Observed); Memorial Day (Observed)", + "1950-07-10": "Orangemen's Day", + "1950-08-07": "Civic Holiday; Saskatchewan Day", + "1950-08-21": "Discovery Day", + "1950-09-04": "Labour Day", + "1950-10-09": "Thanksgiving Day", + "1950-11-11": "Remembrance Day", + "1950-11-13": "Remembrance Day (Observed)", + "1950-12-25": "Christmas Day", + "1950-12-26": "Boxing Day", + "1951-01-01": "New Year's Day", + "1951-03-19": "St. Patrick's Day", + "1951-03-23": "Good Friday", + "1951-03-26": "Easter Monday", + "1951-06-24": "St. Jean Baptiste Day", + "1951-06-25": "St. Jean Baptiste Day (Observed)", + "1951-07-01": "Dominion Day; Memorial Day", + "1951-07-02": "Dominion Day (Observed); Memorial Day (Observed)", + "1951-07-09": "Orangemen's Day", + "1951-08-06": "Civic Holiday; Saskatchewan Day", + "1951-08-20": "Discovery Day", + "1951-09-03": "Labour Day", + "1951-10-08": "Thanksgiving Day", + "1951-11-11": "Remembrance Day", + "1951-11-12": "Remembrance Day (Observed)", + "1951-12-25": "Christmas Day", + "1951-12-26": "Boxing Day", + "1952-01-01": "New Year's Day", + "1952-03-17": "St. Patrick's Day", + "1952-04-11": "Good Friday", + "1952-04-14": "Easter Monday", + "1952-06-24": "St. Jean Baptiste Day", + "1952-07-01": "Dominion Day; Memorial Day", + "1952-07-14": "Orangemen's Day", + "1952-08-04": "Civic Holiday; Saskatchewan Day", + "1952-08-18": "Discovery Day", + "1952-09-01": "Labour Day", + "1952-10-13": "Thanksgiving Day", + "1952-11-11": "Remembrance Day", + "1952-12-25": "Christmas Day", + "1952-12-26": "Boxing Day", + "1953-01-01": "New Year's Day", + "1953-03-16": "St. Patrick's Day", + "1953-04-03": "Good Friday", + "1953-04-06": "Easter Monday", + "1953-05-18": "Victoria Day", + "1953-06-24": "St. Jean Baptiste Day", + "1953-07-01": "Dominion Day; Memorial Day", + "1953-07-13": "Orangemen's Day", + "1953-08-03": "Civic Holiday; Saskatchewan Day", + "1953-08-17": "Discovery Day", + "1953-09-07": "Labour Day", + "1953-10-12": "Thanksgiving Day", + "1953-11-11": "Remembrance Day", + "1953-12-25": "Christmas Day", + "1953-12-26": "Boxing Day", + "1953-12-28": "Boxing Day (Observed)", + "1954-01-01": "New Year's Day", + "1954-03-15": "St. Patrick's Day", + "1954-04-16": "Good Friday", + "1954-04-19": "Easter Monday", + "1954-05-24": "Victoria Day", + "1954-06-24": "St. Jean Baptiste Day", + "1954-07-01": "Dominion Day; Memorial Day", + "1954-07-12": "Orangemen's Day", + "1954-08-02": "Civic Holiday; Saskatchewan Day", + "1954-08-16": "Discovery Day", + "1954-09-06": "Labour Day", + "1954-10-11": "Thanksgiving Day", + "1954-11-11": "Remembrance Day", + "1954-12-25": "Christmas Day", + "1954-12-26": "Boxing Day", + "1954-12-27": "Christmas Day (Observed)", + "1954-12-28": "Boxing Day (Observed)", + "1955-01-01": "New Year's Day", + "1955-01-03": "New Year's Day (Observed)", + "1955-03-14": "St. Patrick's Day", + "1955-04-08": "Good Friday", + "1955-04-11": "Easter Monday", + "1955-05-23": "Victoria Day", + "1955-06-24": "St. Jean Baptiste Day", + "1955-07-01": "Dominion Day; Memorial Day", + "1955-07-11": "Orangemen's Day", + "1955-08-01": "Civic Holiday; Saskatchewan Day", + "1955-08-15": "Discovery Day", + "1955-09-05": "Labour Day", + "1955-10-10": "Thanksgiving Day", + "1955-11-11": "Remembrance Day", + "1955-12-25": "Christmas Day", + "1955-12-26": "Boxing Day; Christmas Day (Observed)", + "1955-12-27": "Christmas Day (Observed)", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year's Day (Observed)", + "1956-03-19": "St. Patrick's Day", + "1956-03-30": "Good Friday", + "1956-04-02": "Easter Monday", + "1956-05-21": "Victoria Day", + "1956-06-24": "St. Jean Baptiste Day", + "1956-06-25": "St. Jean Baptiste Day (Observed)", + "1956-07-01": "Dominion Day; Memorial Day", + "1956-07-02": "Dominion Day (Observed); Memorial Day (Observed)", + "1956-07-09": "Orangemen's Day", + "1956-08-06": "Civic Holiday; Saskatchewan Day", + "1956-08-20": "Discovery Day", + "1956-09-03": "Labour Day", + "1956-10-08": "Thanksgiving Day", + "1956-11-11": "Remembrance Day", + "1956-11-12": "Remembrance Day (Observed)", + "1956-12-25": "Christmas Day", + "1956-12-26": "Boxing Day", + "1957-01-01": "New Year's Day", + "1957-03-18": "St. Patrick's Day", + "1957-04-19": "Good Friday", + "1957-04-22": "Easter Monday", + "1957-05-20": "Victoria Day", + "1957-06-24": "St. Jean Baptiste Day", + "1957-07-01": "Dominion Day; Memorial Day", + "1957-07-15": "Orangemen's Day", + "1957-08-05": "Civic Holiday; Saskatchewan Day", + "1957-08-19": "Discovery Day", + "1957-09-02": "Labour Day", + "1957-10-14": "Thanksgiving Day", + "1957-11-11": "Remembrance Day", + "1957-12-25": "Christmas Day", + "1957-12-26": "Boxing Day", + "1958-01-01": "New Year's Day", + "1958-03-17": "St. Patrick's Day", + "1958-04-04": "Good Friday", + "1958-04-07": "Easter Monday", + "1958-05-19": "Victoria Day", + "1958-06-24": "St. Jean Baptiste Day", + "1958-07-01": "Dominion Day; Memorial Day", + "1958-07-14": "Orangemen's Day", + "1958-08-04": "Civic Holiday; Saskatchewan Day", + "1958-08-18": "Discovery Day", + "1958-09-01": "Labour Day", + "1958-10-13": "Thanksgiving Day", + "1958-11-11": "Remembrance Day", + "1958-12-25": "Christmas Day", + "1958-12-26": "Boxing Day", + "1959-01-01": "New Year's Day", + "1959-03-16": "St. Patrick's Day", + "1959-03-27": "Good Friday", + "1959-03-30": "Easter Monday", + "1959-05-18": "Victoria Day", + "1959-06-24": "St. Jean Baptiste Day", + "1959-07-01": "Dominion Day; Memorial Day", + "1959-07-13": "Orangemen's Day", + "1959-08-03": "Civic Holiday; Saskatchewan Day", + "1959-08-17": "Discovery Day", + "1959-09-07": "Labour Day", + "1959-10-12": "Thanksgiving Day", + "1959-11-11": "Remembrance Day", + "1959-12-25": "Christmas Day", + "1959-12-26": "Boxing Day", + "1959-12-28": "Boxing Day (Observed)", + "1960-01-01": "New Year's Day", + "1960-03-14": "St. Patrick's Day", + "1960-04-15": "Good Friday", + "1960-04-18": "Easter Monday", + "1960-05-23": "Victoria Day", + "1960-06-24": "St. Jean Baptiste Day", + "1960-07-01": "Dominion Day; Memorial Day", + "1960-07-11": "Orangemen's Day", + "1960-08-01": "Civic Holiday; Saskatchewan Day", + "1960-08-15": "Discovery Day", + "1960-09-05": "Labour Day", + "1960-10-10": "Thanksgiving Day", + "1960-11-11": "Remembrance Day", + "1960-12-25": "Christmas Day", + "1960-12-26": "Boxing Day; Christmas Day (Observed)", + "1960-12-27": "Christmas Day (Observed)", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day (Observed)", + "1961-03-20": "St. Patrick's Day", + "1961-03-31": "Good Friday", + "1961-04-03": "Easter Monday", + "1961-05-22": "Victoria Day", + "1961-06-24": "St. Jean Baptiste Day", + "1961-07-01": "Dominion Day; Memorial Day", + "1961-07-03": "Dominion Day (Observed); Memorial Day (Observed)", + "1961-07-10": "Orangemen's Day", + "1961-08-07": "Civic Holiday; Saskatchewan Day", + "1961-08-21": "Discovery Day", + "1961-09-04": "Labour Day", + "1961-10-09": "Thanksgiving Day", + "1961-11-11": "Remembrance Day", + "1961-11-13": "Remembrance Day (Observed)", + "1961-12-25": "Christmas Day", + "1961-12-26": "Boxing Day", + "1962-01-01": "New Year's Day", + "1962-03-19": "St. Patrick's Day", + "1962-04-20": "Good Friday", + "1962-04-23": "Easter Monday", + "1962-05-21": "Victoria Day", + "1962-06-24": "St. Jean Baptiste Day", + "1962-06-25": "St. Jean Baptiste Day (Observed)", + "1962-07-01": "Dominion Day; Memorial Day", + "1962-07-02": "Dominion Day (Observed); Memorial Day (Observed)", + "1962-07-09": "Orangemen's Day", + "1962-08-06": "Civic Holiday; Saskatchewan Day", + "1962-08-20": "Discovery Day", + "1962-09-03": "Labour Day", + "1962-10-08": "Thanksgiving Day", + "1962-11-11": "Remembrance Day", + "1962-11-12": "Remembrance Day (Observed)", + "1962-12-25": "Christmas Day", + "1962-12-26": "Boxing Day", + "1963-01-01": "New Year's Day", + "1963-03-18": "St. Patrick's Day", + "1963-04-12": "Good Friday", + "1963-04-15": "Easter Monday", + "1963-05-20": "Victoria Day", + "1963-06-24": "St. Jean Baptiste Day", + "1963-07-01": "Dominion Day; Memorial Day", + "1963-07-15": "Orangemen's Day", + "1963-08-05": "Civic Holiday; Saskatchewan Day", + "1963-08-19": "Discovery Day", + "1963-09-02": "Labour Day", + "1963-10-14": "Thanksgiving Day", + "1963-11-11": "Remembrance Day", + "1963-12-25": "Christmas Day", + "1963-12-26": "Boxing Day", + "1964-01-01": "New Year's Day", + "1964-03-16": "St. Patrick's Day", + "1964-03-27": "Good Friday", + "1964-03-30": "Easter Monday", + "1964-05-18": "Victoria Day", + "1964-06-24": "St. Jean Baptiste Day", + "1964-07-01": "Dominion Day; Memorial Day", + "1964-07-13": "Orangemen's Day", + "1964-08-03": "Civic Holiday; Saskatchewan Day", + "1964-08-17": "Discovery Day", + "1964-09-07": "Labour Day", + "1964-10-12": "Thanksgiving Day", + "1964-11-11": "Remembrance Day", + "1964-12-25": "Christmas Day", + "1964-12-26": "Boxing Day", + "1964-12-28": "Boxing Day (Observed)", + "1965-01-01": "New Year's Day", + "1965-03-15": "St. Patrick's Day", + "1965-04-16": "Good Friday", + "1965-04-19": "Easter Monday", + "1965-05-24": "Victoria Day", + "1965-06-24": "St. Jean Baptiste Day", + "1965-07-01": "Dominion Day; Memorial Day", + "1965-07-12": "Orangemen's Day", + "1965-08-02": "Civic Holiday; Saskatchewan Day", + "1965-08-16": "Discovery Day", + "1965-09-06": "Labour Day", + "1965-10-11": "Thanksgiving Day", + "1965-11-11": "Remembrance Day", + "1965-12-25": "Christmas Day", + "1965-12-26": "Boxing Day", + "1965-12-27": "Christmas Day (Observed)", + "1965-12-28": "Boxing Day (Observed)", + "1966-01-01": "New Year's Day", + "1966-01-03": "New Year's Day (Observed)", + "1966-03-14": "St. Patrick's Day", + "1966-04-08": "Good Friday", + "1966-04-11": "Easter Monday", + "1966-05-23": "Victoria Day", + "1966-06-24": "St. Jean Baptiste Day", + "1966-07-01": "Dominion Day; Memorial Day", + "1966-07-11": "Orangemen's Day", + "1966-08-01": "Civic Holiday; Saskatchewan Day", + "1966-08-15": "Discovery Day", + "1966-09-05": "Labour Day", + "1966-10-10": "Thanksgiving Day", + "1966-11-11": "Remembrance Day", + "1966-12-25": "Christmas Day", + "1966-12-26": "Boxing Day; Christmas Day (Observed)", + "1966-12-27": "Christmas Day (Observed)", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day (Observed)", + "1967-03-20": "St. Patrick's Day", + "1967-03-24": "Good Friday", + "1967-03-27": "Easter Monday", + "1967-05-22": "Victoria Day", + "1967-06-24": "St. Jean Baptiste Day", + "1967-07-01": "Dominion Day; Memorial Day", + "1967-07-03": "Dominion Day (Observed); Memorial Day (Observed)", + "1967-07-10": "Orangemen's Day", + "1967-08-07": "Civic Holiday; Saskatchewan Day", + "1967-08-21": "Discovery Day", + "1967-09-04": "Labour Day", + "1967-10-09": "Thanksgiving Day", + "1967-11-11": "Remembrance Day", + "1967-11-13": "Remembrance Day (Observed)", + "1967-12-25": "Christmas Day", + "1967-12-26": "Boxing Day", + "1968-01-01": "New Year's Day", + "1968-03-18": "St. Patrick's Day", + "1968-04-12": "Good Friday", + "1968-04-15": "Easter Monday", + "1968-05-20": "Victoria Day", + "1968-06-24": "St. Jean Baptiste Day", + "1968-07-01": "Dominion Day; Memorial Day", + "1968-07-15": "Orangemen's Day", + "1968-08-05": "Civic Holiday; Saskatchewan Day", + "1968-08-19": "Discovery Day", + "1968-09-02": "Labour Day", + "1968-10-14": "Thanksgiving Day", + "1968-11-11": "Remembrance Day", + "1968-12-25": "Christmas Day", + "1968-12-26": "Boxing Day", + "1969-01-01": "New Year's Day", + "1969-03-17": "St. Patrick's Day", + "1969-04-04": "Good Friday", + "1969-04-07": "Easter Monday", + "1969-05-19": "Victoria Day", + "1969-06-24": "St. Jean Baptiste Day", + "1969-07-01": "Dominion Day; Memorial Day", + "1969-07-14": "Orangemen's Day", + "1969-08-04": "Civic Holiday; Saskatchewan Day", + "1969-08-18": "Discovery Day", + "1969-09-01": "Labour Day", + "1969-10-13": "Thanksgiving Day", + "1969-11-11": "Remembrance Day", + "1969-12-25": "Christmas Day", + "1969-12-26": "Boxing Day", + "1970-01-01": "New Year's Day", + "1970-03-16": "St. Patrick's Day", + "1970-03-27": "Good Friday", + "1970-03-30": "Easter Monday", + "1970-05-18": "Victoria Day", + "1970-06-24": "St. Jean Baptiste Day", + "1970-07-01": "Dominion Day; Memorial Day", + "1970-07-13": "Orangemen's Day", + "1970-08-03": "Civic Holiday; Saskatchewan Day", + "1970-08-17": "Discovery Day", + "1970-09-07": "Labour Day", + "1970-10-12": "Thanksgiving Day", + "1970-11-11": "Remembrance Day", + "1970-12-25": "Christmas Day", + "1970-12-26": "Boxing Day", + "1970-12-28": "Boxing Day (Observed)", + "1971-01-01": "New Year's Day", + "1971-03-15": "St. Patrick's Day", + "1971-04-09": "Good Friday", + "1971-04-12": "Easter Monday", + "1971-05-24": "Victoria Day", + "1971-06-24": "St. Jean Baptiste Day", + "1971-07-01": "Dominion Day; Memorial Day", + "1971-07-12": "Orangemen's Day", + "1971-08-02": "Civic Holiday; Saskatchewan Day", + "1971-08-16": "Discovery Day", + "1971-09-06": "Labour Day", + "1971-10-11": "Thanksgiving Day", + "1971-11-11": "Remembrance Day", + "1971-12-25": "Christmas Day", + "1971-12-26": "Boxing Day", + "1971-12-27": "Christmas Day (Observed)", + "1971-12-28": "Boxing Day (Observed)", + "1972-01-01": "New Year's Day", + "1972-01-03": "New Year's Day (Observed)", + "1972-03-20": "St. Patrick's Day", + "1972-03-31": "Good Friday", + "1972-04-03": "Easter Monday", + "1972-05-22": "Victoria Day", + "1972-06-24": "St. Jean Baptiste Day", + "1972-07-01": "Dominion Day; Memorial Day", + "1972-07-03": "Dominion Day (Observed); Memorial Day (Observed)", + "1972-07-10": "Orangemen's Day", + "1972-08-07": "Civic Holiday; Saskatchewan Day", + "1972-08-21": "Discovery Day", + "1972-09-04": "Labour Day", + "1972-10-09": "Thanksgiving Day", + "1972-11-11": "Remembrance Day", + "1972-11-13": "Remembrance Day (Observed)", + "1972-12-25": "Christmas Day", + "1972-12-26": "Boxing Day", + "1973-01-01": "New Year's Day", + "1973-03-19": "St. Patrick's Day", + "1973-04-20": "Good Friday", + "1973-04-23": "Easter Monday", + "1973-05-21": "Victoria Day", + "1973-06-24": "St. Jean Baptiste Day", + "1973-06-25": "St. Jean Baptiste Day (Observed)", + "1973-07-01": "Dominion Day; Memorial Day", + "1973-07-02": "Dominion Day (Observed); Memorial Day (Observed)", + "1973-07-09": "Orangemen's Day", + "1973-08-06": "Civic Holiday; Saskatchewan Day", + "1973-08-20": "Discovery Day", + "1973-09-03": "Labour Day", + "1973-10-08": "Thanksgiving Day", + "1973-11-11": "Remembrance Day", + "1973-11-12": "Remembrance Day (Observed)", + "1973-12-25": "Christmas Day", + "1973-12-26": "Boxing Day", + "1974-01-01": "New Year's Day", + "1974-03-18": "St. Patrick's Day", + "1974-04-12": "Good Friday", + "1974-04-15": "Easter Monday", + "1974-05-20": "Victoria Day", + "1974-06-24": "St. Jean Baptiste Day", + "1974-07-01": "Dominion Day; Memorial Day", + "1974-07-15": "Orangemen's Day", + "1974-08-05": "British Columbia Day; Civic Holiday; Heritage Day; Saskatchewan Day", + "1974-08-19": "Discovery Day", + "1974-09-02": "Labour Day", + "1974-10-14": "Thanksgiving Day", + "1974-11-11": "Remembrance Day", + "1974-12-25": "Christmas Day", + "1974-12-26": "Boxing Day", + "1975-01-01": "New Year's Day", + "1975-03-17": "St. Patrick's Day", + "1975-03-28": "Good Friday", + "1975-03-31": "Easter Monday", + "1975-05-19": "Victoria Day", + "1975-06-24": "St. Jean Baptiste Day", + "1975-07-01": "Dominion Day; Memorial Day", + "1975-07-14": "Orangemen's Day", + "1975-08-04": "British Columbia Day; Civic Holiday; Heritage Day; New Brunswick Day; Saskatchewan Day", + "1975-08-18": "Discovery Day", + "1975-09-01": "Labour Day", + "1975-10-13": "Thanksgiving Day", + "1975-11-11": "Remembrance Day", + "1975-12-25": "Christmas Day", + "1975-12-26": "Boxing Day", + "1976-01-01": "New Year's Day", + "1976-02-27": "Heritage Day", + "1976-03-15": "St. Patrick's Day", + "1976-04-16": "Good Friday", + "1976-04-19": "Easter Monday", + "1976-05-24": "Victoria Day", + "1976-06-24": "St. Jean Baptiste Day", + "1976-07-01": "Dominion Day; Memorial Day", + "1976-07-12": "Orangemen's Day", + "1976-08-02": "British Columbia Day; Civic Holiday; Heritage Day; New Brunswick Day; Saskatchewan Day", + "1976-08-16": "Discovery Day", + "1976-09-06": "Labour Day", + "1976-10-11": "Thanksgiving Day", + "1976-11-11": "Remembrance Day", + "1976-12-25": "Christmas Day", + "1976-12-26": "Boxing Day", + "1976-12-27": "Christmas Day (Observed)", + "1976-12-28": "Boxing Day (Observed)", + "1977-01-01": "New Year's Day", + "1977-01-03": "New Year's Day (Observed)", + "1977-02-25": "Heritage Day", + "1977-03-14": "St. Patrick's Day", + "1977-04-08": "Good Friday", + "1977-04-11": "Easter Monday", + "1977-05-23": "Victoria Day", + "1977-06-24": "St. Jean Baptiste Day", + "1977-07-01": "Dominion Day; Memorial Day", + "1977-07-11": "Orangemen's Day", + "1977-08-01": "British Columbia Day; Civic Holiday; Heritage Day; New Brunswick Day; Saskatchewan Day", + "1977-08-15": "Discovery Day", + "1977-09-05": "Labour Day", + "1977-10-10": "Thanksgiving Day", + "1977-11-11": "Remembrance Day", + "1977-12-25": "Christmas Day", + "1977-12-26": "Boxing Day; Christmas Day (Observed)", + "1977-12-27": "Christmas Day (Observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day (Observed)", + "1978-02-24": "Heritage Day", + "1978-03-20": "St. Patrick's Day", + "1978-03-24": "Good Friday", + "1978-03-27": "Easter Monday", + "1978-05-22": "Victoria Day", + "1978-06-24": "St. Jean Baptiste Day", + "1978-07-01": "Dominion Day; Memorial Day", + "1978-07-03": "Dominion Day (Observed); Memorial Day (Observed)", + "1978-07-10": "Orangemen's Day", + "1978-08-07": "British Columbia Day; Civic Holiday; Heritage Day; New Brunswick Day; Saskatchewan Day", + "1978-08-21": "Discovery Day", + "1978-09-04": "Labour Day", + "1978-10-09": "Thanksgiving Day", + "1978-11-11": "Remembrance Day", + "1978-11-13": "Remembrance Day (Observed)", + "1978-12-25": "Christmas Day", + "1978-12-26": "Boxing Day", + "1979-01-01": "New Year's Day", + "1979-02-23": "Heritage Day", + "1979-03-19": "St. Patrick's Day", + "1979-04-13": "Good Friday", + "1979-04-16": "Easter Monday", + "1979-05-21": "Victoria Day", + "1979-06-24": "St. Jean Baptiste Day", + "1979-06-25": "St. Jean Baptiste Day (Observed)", + "1979-07-01": "Dominion Day; Memorial Day", + "1979-07-02": "Dominion Day (Observed); Memorial Day (Observed)", + "1979-07-09": "Orangemen's Day", + "1979-08-06": "British Columbia Day; Civic Holiday; Heritage Day; New Brunswick Day; Saskatchewan Day", + "1979-08-20": "Discovery Day", + "1979-09-03": "Labour Day", + "1979-10-08": "Thanksgiving Day", + "1979-11-11": "Remembrance Day", + "1979-11-12": "Remembrance Day (Observed)", + "1979-12-25": "Christmas Day", + "1979-12-26": "Boxing Day", + "1980-01-01": "New Year's Day", + "1980-02-22": "Heritage Day", + "1980-03-17": "St. Patrick's Day", + "1980-04-04": "Good Friday", + "1980-04-07": "Easter Monday", + "1980-05-19": "Victoria Day", + "1980-06-24": "St. Jean Baptiste Day", + "1980-07-01": "Dominion Day; Memorial Day", + "1980-07-14": "Orangemen's Day", + "1980-08-04": "British Columbia Day; Civic Holiday; Heritage Day; New Brunswick Day; Saskatchewan Day", + "1980-08-18": "Discovery Day", + "1980-09-01": "Labour Day", + "1980-10-13": "Thanksgiving Day", + "1980-11-11": "Remembrance Day", + "1980-12-25": "Christmas Day", + "1980-12-26": "Boxing Day", + "1981-01-01": "New Year's Day", + "1981-02-20": "Heritage Day", + "1981-03-16": "St. Patrick's Day", + "1981-04-17": "Good Friday", + "1981-04-20": "Easter Monday", + "1981-05-18": "Victoria Day", + "1981-06-24": "St. Jean Baptiste Day", + "1981-07-01": "Dominion Day; Memorial Day", + "1981-07-13": "Orangemen's Day", + "1981-08-03": "British Columbia Day; Civic Holiday; Heritage Day; New Brunswick Day; Saskatchewan Day", + "1981-08-17": "Discovery Day", + "1981-09-07": "Labour Day", + "1981-10-12": "Thanksgiving Day", + "1981-11-11": "Remembrance Day", + "1981-12-25": "Christmas Day", + "1981-12-26": "Boxing Day", + "1981-12-28": "Boxing Day (Observed)", + "1982-01-01": "New Year's Day", + "1982-02-26": "Heritage Day", + "1982-03-15": "St. Patrick's Day", + "1982-04-09": "Good Friday", + "1982-04-12": "Easter Monday", + "1982-05-24": "Victoria Day", + "1982-06-24": "St. Jean Baptiste Day", + "1982-07-01": "Dominion Day; Memorial Day", + "1982-07-12": "Orangemen's Day", + "1982-08-02": "British Columbia Day; Civic Holiday; Heritage Day; New Brunswick Day; Saskatchewan Day", + "1982-08-16": "Discovery Day", + "1982-09-06": "Labour Day", + "1982-10-11": "Thanksgiving Day", + "1982-11-11": "Remembrance Day", + "1982-12-25": "Christmas Day", + "1982-12-26": "Boxing Day", + "1982-12-27": "Christmas Day (Observed)", + "1982-12-28": "Boxing Day (Observed)", + "1983-01-01": "New Year's Day", + "1983-01-03": "New Year's Day (Observed)", + "1983-02-25": "Heritage Day", + "1983-03-14": "St. Patrick's Day", + "1983-04-01": "Good Friday", + "1983-04-04": "Easter Monday", + "1983-05-23": "Victoria Day", + "1983-06-24": "St. Jean Baptiste Day", + "1983-07-01": "Canada Day; Memorial Day", + "1983-07-11": "Orangemen's Day", + "1983-08-01": "British Columbia Day; Civic Holiday; Heritage Day; New Brunswick Day; Saskatchewan Day", + "1983-08-15": "Discovery Day", + "1983-09-05": "Labour Day", + "1983-10-10": "Thanksgiving Day", + "1983-11-11": "Remembrance Day", + "1983-12-25": "Christmas Day", + "1983-12-26": "Boxing Day; Christmas Day (Observed)", + "1983-12-27": "Christmas Day (Observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (Observed)", + "1984-02-24": "Heritage Day", + "1984-03-19": "St. Patrick's Day", + "1984-04-20": "Good Friday", + "1984-04-23": "Easter Monday", + "1984-05-21": "Victoria Day", + "1984-06-24": "St. Jean Baptiste Day", + "1984-06-25": "St. Jean Baptiste Day (Observed)", + "1984-07-01": "Canada Day; Memorial Day", + "1984-07-02": "Canada Day (Observed); Memorial Day (Observed)", + "1984-07-09": "Orangemen's Day", + "1984-08-06": "British Columbia Day; Civic Holiday; Heritage Day; New Brunswick Day; Saskatchewan Day", + "1984-08-20": "Discovery Day", + "1984-09-03": "Labour Day", + "1984-10-08": "Thanksgiving Day", + "1984-11-11": "Remembrance Day", + "1984-11-12": "Remembrance Day (Observed)", + "1984-12-25": "Christmas Day", + "1984-12-26": "Boxing Day", + "1985-01-01": "New Year's Day", + "1985-02-22": "Heritage Day", + "1985-03-18": "St. Patrick's Day", + "1985-04-05": "Good Friday", + "1985-04-08": "Easter Monday", + "1985-05-20": "Victoria Day", + "1985-06-24": "St. Jean Baptiste Day", + "1985-07-01": "Canada Day; Memorial Day", + "1985-07-15": "Orangemen's Day", + "1985-08-05": "British Columbia Day; Civic Holiday; Heritage Day; New Brunswick Day; Saskatchewan Day", + "1985-08-19": "Discovery Day", + "1985-09-02": "Labour Day", + "1985-10-14": "Thanksgiving Day", + "1985-11-11": "Remembrance Day", + "1985-12-25": "Christmas Day", + "1985-12-26": "Boxing Day", + "1986-01-01": "New Year's Day", + "1986-02-21": "Heritage Day", + "1986-03-17": "St. Patrick's Day", + "1986-03-28": "Good Friday", + "1986-03-31": "Easter Monday", + "1986-05-19": "Victoria Day", + "1986-06-24": "St. Jean Baptiste Day", + "1986-07-01": "Canada Day; Memorial Day", + "1986-07-14": "Orangemen's Day", + "1986-08-04": "British Columbia Day; Civic Holiday; Heritage Day; New Brunswick Day; Saskatchewan Day", + "1986-08-18": "Discovery Day", + "1986-09-01": "Labour Day", + "1986-10-13": "Thanksgiving Day", + "1986-11-11": "Remembrance Day", + "1986-12-25": "Christmas Day", + "1986-12-26": "Boxing Day", + "1987-01-01": "New Year's Day", + "1987-02-20": "Heritage Day", + "1987-03-16": "St. Patrick's Day", + "1987-04-17": "Good Friday", + "1987-04-20": "Easter Monday", + "1987-05-18": "Victoria Day", + "1987-06-24": "St. Jean Baptiste Day", + "1987-07-01": "Canada Day; Memorial Day", + "1987-07-13": "Orangemen's Day", + "1987-08-03": "British Columbia Day; Civic Holiday; Heritage Day; New Brunswick Day; Saskatchewan Day", + "1987-08-17": "Discovery Day", + "1987-09-07": "Labour Day", + "1987-10-12": "Thanksgiving Day", + "1987-11-11": "Remembrance Day", + "1987-12-25": "Christmas Day", + "1987-12-26": "Boxing Day", + "1987-12-28": "Boxing Day (Observed)", + "1988-01-01": "New Year's Day", + "1988-02-26": "Heritage Day", + "1988-03-14": "St. Patrick's Day", + "1988-04-01": "Good Friday", + "1988-04-04": "Easter Monday", + "1988-05-23": "Victoria Day", + "1988-06-24": "St. Jean Baptiste Day", + "1988-07-01": "Canada Day; Memorial Day", + "1988-07-11": "Orangemen's Day", + "1988-08-01": "British Columbia Day; Civic Holiday; Heritage Day; New Brunswick Day; Saskatchewan Day", + "1988-08-15": "Discovery Day", + "1988-09-05": "Labour Day", + "1988-10-10": "Thanksgiving Day", + "1988-11-11": "Remembrance Day", + "1988-12-25": "Christmas Day", + "1988-12-26": "Boxing Day; Christmas Day (Observed)", + "1988-12-27": "Christmas Day (Observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (Observed)", + "1989-02-24": "Heritage Day", + "1989-03-20": "St. Patrick's Day", + "1989-03-24": "Good Friday", + "1989-03-27": "Easter Monday", + "1989-05-22": "Victoria Day", + "1989-06-24": "St. Jean Baptiste Day", + "1989-07-01": "Canada Day; Memorial Day", + "1989-07-03": "Canada Day (Observed); Memorial Day (Observed)", + "1989-07-10": "Orangemen's Day", + "1989-08-07": "British Columbia Day; Civic Holiday; Heritage Day; New Brunswick Day; Saskatchewan Day", + "1989-08-21": "Discovery Day", + "1989-09-04": "Labour Day", + "1989-10-09": "Thanksgiving Day", + "1989-11-11": "Remembrance Day", + "1989-11-13": "Remembrance Day (Observed)", + "1989-12-25": "Christmas Day", + "1989-12-26": "Boxing Day", + "1990-01-01": "New Year's Day", + "1990-02-19": "Family Day", + "1990-02-23": "Heritage Day", + "1990-03-19": "St. Patrick's Day", + "1990-04-13": "Good Friday", + "1990-04-16": "Easter Monday", + "1990-04-23": "St. George's Day", + "1990-05-21": "Victoria Day", + "1990-06-24": "St. Jean Baptiste Day", + "1990-06-25": "St. Jean Baptiste Day (Observed)", + "1990-07-01": "Canada Day; Memorial Day", + "1990-07-02": "Canada Day (Observed); Memorial Day (Observed)", + "1990-07-09": "Orangemen's Day", + "1990-08-06": "British Columbia Day; Civic Holiday; Heritage Day; New Brunswick Day; Saskatchewan Day", + "1990-08-20": "Discovery Day", + "1990-09-03": "Labour Day", + "1990-10-08": "Thanksgiving Day", + "1990-11-11": "Remembrance Day", + "1990-11-12": "Remembrance Day (Observed)", + "1990-12-25": "Christmas Day", + "1990-12-26": "Boxing Day", + "1991-01-01": "New Year's Day", + "1991-02-18": "Family Day", + "1991-02-22": "Heritage Day", + "1991-03-18": "St. Patrick's Day", + "1991-03-29": "Good Friday", + "1991-04-01": "Easter Monday", + "1991-04-22": "St. George's Day", + "1991-05-20": "Victoria Day", + "1991-06-24": "St. Jean Baptiste Day", + "1991-07-01": "Canada Day; Memorial Day", + "1991-07-15": "Orangemen's Day", + "1991-08-05": "British Columbia Day; Civic Holiday; Heritage Day; New Brunswick Day; Saskatchewan Day", + "1991-08-19": "Discovery Day", + "1991-09-02": "Labour Day", + "1991-10-14": "Thanksgiving Day", + "1991-11-11": "Remembrance Day", + "1991-12-25": "Christmas Day", + "1991-12-26": "Boxing Day", + "1992-01-01": "New Year's Day", + "1992-02-17": "Family Day", + "1992-02-21": "Heritage Day", + "1992-03-16": "St. Patrick's Day", + "1992-04-17": "Good Friday", + "1992-04-20": "Easter Monday; St. George's Day", + "1992-05-18": "Victoria Day", + "1992-06-24": "St. Jean Baptiste Day", + "1992-07-01": "Canada Day; Memorial Day", + "1992-07-13": "Orangemen's Day", + "1992-08-03": "British Columbia Day; Civic Holiday; Heritage Day; New Brunswick Day; Saskatchewan Day", + "1992-08-17": "Discovery Day", + "1992-09-07": "Labour Day", + "1992-10-12": "Thanksgiving Day", + "1992-11-11": "Remembrance Day", + "1992-12-25": "Christmas Day", + "1992-12-26": "Boxing Day", + "1992-12-28": "Boxing Day (Observed)", + "1993-01-01": "New Year's Day", + "1993-02-15": "Family Day", + "1993-02-26": "Heritage Day", + "1993-03-15": "St. Patrick's Day", + "1993-04-09": "Good Friday", + "1993-04-12": "Easter Monday", + "1993-04-26": "St. George's Day", + "1993-05-24": "Victoria Day", + "1993-06-24": "St. Jean Baptiste Day", + "1993-07-01": "Canada Day; Memorial Day", + "1993-07-12": "Orangemen's Day", + "1993-08-02": "British Columbia Day; Civic Holiday; Heritage Day; New Brunswick Day; Saskatchewan Day", + "1993-08-16": "Discovery Day", + "1993-09-06": "Labour Day", + "1993-10-11": "Thanksgiving Day", + "1993-11-11": "Remembrance Day", + "1993-12-25": "Christmas Day", + "1993-12-26": "Boxing Day", + "1993-12-27": "Christmas Day (Observed)", + "1993-12-28": "Boxing Day (Observed)", + "1994-01-01": "New Year's Day", + "1994-01-03": "New Year's Day (Observed)", + "1994-02-21": "Family Day", + "1994-02-25": "Heritage Day", + "1994-03-14": "St. Patrick's Day", + "1994-04-01": "Good Friday", + "1994-04-04": "Easter Monday", + "1994-04-25": "St. George's Day", + "1994-05-23": "Victoria Day", + "1994-06-24": "St. Jean Baptiste Day", + "1994-07-01": "Canada Day; Memorial Day", + "1994-07-11": "Orangemen's Day", + "1994-08-01": "British Columbia Day; Civic Holiday; Heritage Day; New Brunswick Day; Saskatchewan Day", + "1994-08-15": "Discovery Day", + "1994-09-05": "Labour Day", + "1994-10-10": "Thanksgiving Day", + "1994-11-11": "Remembrance Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Boxing Day; Christmas Day (Observed)", + "1994-12-27": "Christmas Day (Observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (Observed)", + "1995-02-20": "Family Day", + "1995-02-24": "Heritage Day", + "1995-03-20": "St. Patrick's Day", + "1995-04-14": "Good Friday", + "1995-04-17": "Easter Monday", + "1995-04-24": "St. George's Day", + "1995-05-22": "Victoria Day", + "1995-06-24": "St. Jean Baptiste Day", + "1995-07-01": "Canada Day; Memorial Day", + "1995-07-03": "Canada Day (Observed); Memorial Day (Observed)", + "1995-07-10": "Orangemen's Day", + "1995-08-07": "British Columbia Day; Civic Holiday; Heritage Day; New Brunswick Day; Saskatchewan Day", + "1995-08-21": "Discovery Day", + "1995-09-04": "Labour Day", + "1995-10-09": "Thanksgiving Day", + "1995-11-11": "Remembrance Day", + "1995-11-13": "Remembrance Day (Observed)", + "1995-12-25": "Christmas Day", + "1995-12-26": "Boxing Day", + "1996-01-01": "New Year's Day", + "1996-02-19": "Family Day", + "1996-02-23": "Heritage Day", + "1996-03-18": "St. Patrick's Day", + "1996-04-05": "Good Friday", + "1996-04-08": "Easter Monday", + "1996-04-22": "St. George's Day", + "1996-05-20": "Victoria Day", + "1996-06-21": "National Aboriginal Day", + "1996-06-24": "St. Jean Baptiste Day", + "1996-07-01": "Canada Day; Memorial Day", + "1996-07-15": "Orangemen's Day", + "1996-08-05": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day", + "1996-08-19": "Discovery Day", + "1996-09-02": "Labour Day", + "1996-10-14": "Thanksgiving Day", + "1996-11-11": "Remembrance Day", + "1996-12-25": "Christmas Day", + "1996-12-26": "Boxing Day", + "1997-01-01": "New Year's Day", + "1997-02-17": "Family Day", + "1997-02-21": "Heritage Day", + "1997-03-17": "St. Patrick's Day", + "1997-03-28": "Good Friday", + "1997-03-31": "Easter Monday", + "1997-04-21": "St. George's Day", + "1997-05-19": "Victoria Day", + "1997-06-21": "National Aboriginal Day", + "1997-06-23": "Discovery Day", + "1997-06-24": "St. Jean Baptiste Day", + "1997-07-01": "Canada Day; Memorial Day", + "1997-07-14": "Orangemen's Day", + "1997-08-04": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day", + "1997-08-18": "Discovery Day", + "1997-09-01": "Labour Day", + "1997-10-13": "Thanksgiving Day", + "1997-11-11": "Remembrance Day", + "1997-12-25": "Christmas Day", + "1997-12-26": "Boxing Day", + "1998-01-01": "New Year's Day", + "1998-02-16": "Family Day", + "1998-02-20": "Heritage Day", + "1998-03-16": "St. Patrick's Day", + "1998-04-10": "Good Friday", + "1998-04-13": "Easter Monday", + "1998-04-20": "St. George's Day", + "1998-05-18": "Victoria Day", + "1998-06-21": "National Aboriginal Day", + "1998-06-22": "Discovery Day", + "1998-06-24": "St. Jean Baptiste Day", + "1998-07-01": "Canada Day; Memorial Day", + "1998-07-13": "Orangemen's Day", + "1998-08-03": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day", + "1998-08-17": "Discovery Day", + "1998-09-07": "Labour Day", + "1998-10-12": "Thanksgiving Day", + "1998-11-11": "Remembrance Day", + "1998-12-25": "Christmas Day", + "1998-12-26": "Boxing Day", + "1998-12-28": "Boxing Day (Observed)", + "1999-01-01": "New Year's Day", + "1999-02-15": "Family Day", + "1999-02-26": "Heritage Day", + "1999-03-15": "St. Patrick's Day", + "1999-04-02": "Good Friday", + "1999-04-05": "Easter Monday", + "1999-04-26": "St. George's Day", + "1999-05-24": "Victoria Day", + "1999-06-21": "Discovery Day; National Aboriginal Day", + "1999-06-24": "St. Jean Baptiste Day", + "1999-07-01": "Canada Day; Memorial Day", + "1999-07-12": "Orangemen's Day", + "1999-08-02": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day", + "1999-08-16": "Discovery Day", + "1999-09-06": "Labour Day", + "1999-10-11": "Thanksgiving Day", + "1999-11-11": "Remembrance Day", + "1999-12-25": "Christmas Day", + "1999-12-26": "Boxing Day", + "1999-12-27": "Christmas Day (Observed)", + "1999-12-28": "Boxing Day (Observed)", + "2000-01-01": "New Year's Day", + "2000-01-03": "New Year's Day (Observed)", + "2000-02-21": "Family Day", + "2000-02-25": "Heritage Day", + "2000-03-20": "St. Patrick's Day", + "2000-04-01": "Nunavut Day", + "2000-04-21": "Good Friday", + "2000-04-24": "Easter Monday; St. George's Day", + "2000-05-22": "Victoria Day", + "2000-06-21": "National Aboriginal Day", + "2000-06-24": "St. Jean Baptiste Day", + "2000-06-26": "Discovery Day", + "2000-07-01": "Canada Day; Memorial Day", + "2000-07-03": "Canada Day (Observed); Memorial Day (Observed)", + "2000-07-10": "Orangemen's Day", + "2000-08-07": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day", + "2000-08-21": "Discovery Day", + "2000-09-04": "Labour Day", + "2000-10-09": "Thanksgiving Day", + "2000-11-11": "Remembrance Day", + "2000-11-13": "Remembrance Day (Observed)", + "2000-12-25": "Christmas Day", + "2000-12-26": "Boxing Day", + "2001-01-01": "New Year's Day", + "2001-02-19": "Family Day", + "2001-02-23": "Heritage Day", + "2001-03-19": "St. Patrick's Day", + "2001-04-13": "Good Friday", + "2001-04-16": "Easter Monday", + "2001-04-23": "St. George's Day", + "2001-05-21": "Victoria Day", + "2001-06-21": "National Aboriginal Day", + "2001-06-24": "St. Jean Baptiste Day", + "2001-06-25": "Discovery Day; St. Jean Baptiste Day (Observed)", + "2001-07-01": "Canada Day; Memorial Day", + "2001-07-02": "Canada Day (Observed); Memorial Day (Observed)", + "2001-07-09": "Nunavut Day; Orangemen's Day", + "2001-08-06": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day", + "2001-08-20": "Discovery Day", + "2001-09-03": "Labour Day", + "2001-10-08": "Thanksgiving Day", + "2001-11-11": "Remembrance Day", + "2001-11-12": "Remembrance Day (Observed)", + "2001-12-25": "Christmas Day", + "2001-12-26": "Boxing Day", + "2002-01-01": "New Year's Day", + "2002-02-18": "Family Day", + "2002-02-22": "Heritage Day", + "2002-03-18": "St. Patrick's Day", + "2002-03-29": "Good Friday", + "2002-04-01": "Easter Monday", + "2002-04-22": "St. George's Day", + "2002-05-20": "Victoria Day", + "2002-06-21": "National Aboriginal Day", + "2002-06-24": "Discovery Day; St. Jean Baptiste Day", + "2002-07-01": "Canada Day; Memorial Day", + "2002-07-09": "Nunavut Day", + "2002-07-15": "Orangemen's Day", + "2002-08-05": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day", + "2002-08-19": "Discovery Day", + "2002-09-02": "Labour Day", + "2002-10-14": "Thanksgiving Day", + "2002-11-11": "Remembrance Day", + "2002-12-25": "Christmas Day", + "2002-12-26": "Boxing Day", + "2003-01-01": "New Year's Day", + "2003-02-17": "Family Day", + "2003-02-21": "Heritage Day", + "2003-03-17": "St. Patrick's Day", + "2003-04-18": "Good Friday", + "2003-04-21": "Easter Monday; St. George's Day", + "2003-05-19": "National Patriots' Day; Victoria Day", + "2003-06-21": "National Aboriginal Day", + "2003-06-23": "Discovery Day", + "2003-06-24": "St. Jean Baptiste Day", + "2003-07-01": "Canada Day; Memorial Day", + "2003-07-09": "Nunavut Day", + "2003-07-14": "Orangemen's Day", + "2003-08-04": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day", + "2003-08-18": "Discovery Day", + "2003-09-01": "Labour Day", + "2003-10-13": "Thanksgiving Day", + "2003-11-11": "Remembrance Day", + "2003-12-25": "Christmas Day", + "2003-12-26": "Boxing Day", + "2004-01-01": "New Year's Day", + "2004-02-16": "Family Day", + "2004-02-27": "Heritage Day", + "2004-03-15": "St. Patrick's Day", + "2004-04-09": "Good Friday", + "2004-04-12": "Easter Monday", + "2004-04-26": "St. George's Day", + "2004-05-24": "National Patriots' Day; Victoria Day", + "2004-06-21": "Discovery Day; National Aboriginal Day", + "2004-06-24": "St. Jean Baptiste Day", + "2004-07-01": "Canada Day; Memorial Day", + "2004-07-09": "Nunavut Day", + "2004-07-12": "Orangemen's Day", + "2004-08-02": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day", + "2004-08-16": "Discovery Day", + "2004-09-06": "Labour Day", + "2004-10-11": "Thanksgiving Day", + "2004-11-11": "Remembrance Day", + "2004-12-25": "Christmas Day", + "2004-12-26": "Boxing Day", + "2004-12-27": "Christmas Day (Observed)", + "2004-12-28": "Boxing Day (Observed)", + "2005-01-01": "New Year's Day", + "2005-01-03": "New Year's Day (Observed)", + "2005-02-21": "Family Day", + "2005-02-25": "Heritage Day", + "2005-03-14": "St. Patrick's Day", + "2005-03-25": "Good Friday", + "2005-03-28": "Easter Monday", + "2005-04-25": "St. George's Day", + "2005-05-23": "National Patriots' Day; Victoria Day", + "2005-06-21": "National Aboriginal Day", + "2005-06-24": "St. Jean Baptiste Day", + "2005-06-27": "Discovery Day", + "2005-07-01": "Canada Day; Memorial Day", + "2005-07-09": "Nunavut Day", + "2005-07-11": "Orangemen's Day", + "2005-08-01": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day", + "2005-08-15": "Discovery Day", + "2005-09-05": "Labour Day", + "2005-10-10": "Thanksgiving Day", + "2005-11-11": "Remembrance Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "Boxing Day; Christmas Day (Observed)", + "2005-12-27": "Christmas Day (Observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (Observed)", + "2006-02-20": "Family Day", + "2006-02-24": "Heritage Day", + "2006-03-20": "St. Patrick's Day", + "2006-04-14": "Good Friday", + "2006-04-17": "Easter Monday", + "2006-04-24": "St. George's Day", + "2006-05-22": "National Patriots' Day; Victoria Day", + "2006-06-21": "National Aboriginal Day", + "2006-06-24": "St. Jean Baptiste Day", + "2006-06-26": "Discovery Day", + "2006-07-01": "Canada Day; Memorial Day", + "2006-07-03": "Canada Day (Observed); Memorial Day (Observed)", + "2006-07-09": "Nunavut Day", + "2006-07-10": "Orangemen's Day", + "2006-08-07": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day", + "2006-08-21": "Discovery Day", + "2006-09-04": "Labour Day", + "2006-10-09": "Thanksgiving Day", + "2006-11-11": "Remembrance Day", + "2006-11-13": "Remembrance Day (Observed)", + "2006-12-25": "Christmas Day", + "2006-12-26": "Boxing Day", + "2007-01-01": "New Year's Day", + "2007-02-19": "Family Day", + "2007-02-23": "Heritage Day", + "2007-03-19": "St. Patrick's Day", + "2007-04-06": "Good Friday", + "2007-04-09": "Easter Monday", + "2007-04-23": "St. George's Day", + "2007-05-21": "National Patriots' Day; Victoria Day", + "2007-06-21": "National Aboriginal Day", + "2007-06-24": "St. Jean Baptiste Day", + "2007-06-25": "Discovery Day; St. Jean Baptiste Day (Observed)", + "2007-07-01": "Canada Day; Memorial Day", + "2007-07-02": "Canada Day (Observed); Memorial Day (Observed)", + "2007-07-09": "Nunavut Day; Orangemen's Day", + "2007-08-06": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day", + "2007-08-20": "Discovery Day", + "2007-09-03": "Labour Day", + "2007-10-08": "Thanksgiving Day", + "2007-11-11": "Remembrance Day", + "2007-11-12": "Remembrance Day (Observed)", + "2007-12-25": "Christmas Day", + "2007-12-26": "Boxing Day", + "2008-01-01": "New Year's Day", + "2008-02-18": "Family Day; Louis Riel Day", + "2008-02-22": "Heritage Day", + "2008-03-17": "St. Patrick's Day", + "2008-03-21": "Good Friday", + "2008-03-24": "Easter Monday", + "2008-04-21": "St. George's Day", + "2008-05-19": "National Patriots' Day; Victoria Day", + "2008-06-21": "National Aboriginal Day", + "2008-06-23": "Discovery Day", + "2008-06-24": "St. Jean Baptiste Day", + "2008-07-01": "Canada Day; Memorial Day", + "2008-07-09": "Nunavut Day", + "2008-07-14": "Orangemen's Day", + "2008-08-04": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day", + "2008-08-18": "Discovery Day", + "2008-09-01": "Labour Day", + "2008-10-13": "Thanksgiving Day", + "2008-11-11": "Remembrance Day", + "2008-12-25": "Christmas Day", + "2008-12-26": "Boxing Day", + "2009-01-01": "New Year's Day", + "2009-02-09": "Islander Day", + "2009-02-16": "Family Day; Louis Riel Day", + "2009-02-20": "Heritage Day", + "2009-03-16": "St. Patrick's Day", + "2009-04-10": "Good Friday", + "2009-04-13": "Easter Monday", + "2009-04-20": "St. George's Day", + "2009-05-18": "National Patriots' Day; Victoria Day", + "2009-06-21": "National Aboriginal Day", + "2009-06-22": "Discovery Day", + "2009-06-24": "St. Jean Baptiste Day", + "2009-07-01": "Canada Day; Memorial Day", + "2009-07-09": "Nunavut Day", + "2009-07-13": "Orangemen's Day", + "2009-08-03": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day", + "2009-08-17": "Discovery Day", + "2009-09-07": "Labour Day", + "2009-10-12": "Thanksgiving Day", + "2009-11-11": "Remembrance Day", + "2009-12-25": "Christmas Day", + "2009-12-26": "Boxing Day", + "2009-12-28": "Boxing Day (Observed)", + "2010-01-01": "New Year's Day", + "2010-02-15": "Family Day; Islander Day; Louis Riel Day", + "2010-02-26": "Heritage Day", + "2010-03-15": "St. Patrick's Day", + "2010-04-02": "Good Friday", + "2010-04-05": "Easter Monday", + "2010-04-19": "St. George's Day", + "2010-05-24": "National Patriots' Day; Victoria Day", + "2010-06-21": "Discovery Day; National Aboriginal Day", + "2010-06-24": "St. Jean Baptiste Day", + "2010-07-01": "Canada Day; Memorial Day", + "2010-07-09": "Nunavut Day", + "2010-07-12": "Orangemen's Day", + "2010-08-02": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day", + "2010-08-16": "Discovery Day", + "2010-09-06": "Labour Day", + "2010-10-11": "Thanksgiving Day", + "2010-11-11": "Remembrance Day", + "2010-12-25": "Christmas Day", + "2010-12-26": "Boxing Day", + "2010-12-27": "Christmas Day (Observed)", + "2010-12-28": "Boxing Day (Observed)", + "2011-01-01": "New Year's Day", + "2011-01-03": "New Year's Day (Observed)", + "2011-02-21": "Family Day; Islander Day; Louis Riel Day", + "2011-02-25": "Heritage Day", + "2011-03-14": "St. Patrick's Day", + "2011-04-22": "Good Friday", + "2011-04-25": "Easter Monday; St. George's Day", + "2011-05-23": "National Patriots' Day; Victoria Day", + "2011-06-21": "National Aboriginal Day", + "2011-06-24": "St. Jean Baptiste Day", + "2011-06-27": "Discovery Day", + "2011-07-01": "Canada Day; Memorial Day", + "2011-07-09": "Nunavut Day", + "2011-07-11": "Orangemen's Day", + "2011-08-01": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day", + "2011-08-15": "Discovery Day", + "2011-09-05": "Labour Day", + "2011-10-10": "Thanksgiving Day", + "2011-11-11": "Remembrance Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "Boxing Day; Christmas Day (Observed)", + "2011-12-27": "Christmas Day (Observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (Observed)", + "2012-02-20": "Family Day; Islander Day; Louis Riel Day", + "2012-02-24": "Heritage Day", + "2012-03-19": "St. Patrick's Day", + "2012-04-06": "Good Friday", + "2012-04-09": "Easter Monday", + "2012-04-23": "St. George's Day", + "2012-05-21": "National Patriots' Day; Victoria Day", + "2012-06-21": "National Aboriginal Day", + "2012-06-24": "St. Jean Baptiste Day", + "2012-06-25": "Discovery Day; St. Jean Baptiste Day (Observed)", + "2012-07-01": "Canada Day; Memorial Day", + "2012-07-02": "Canada Day (Observed); Memorial Day (Observed)", + "2012-07-09": "Nunavut Day; Orangemen's Day", + "2012-08-06": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day", + "2012-08-20": "Discovery Day", + "2012-09-03": "Labour Day", + "2012-10-08": "Thanksgiving Day", + "2012-11-11": "Remembrance Day", + "2012-11-12": "Remembrance Day (Observed)", + "2012-12-25": "Christmas Day", + "2012-12-26": "Boxing Day", + "2013-01-01": "New Year's Day", + "2013-02-11": "Family Day", + "2013-02-18": "Family Day; Islander Day; Louis Riel Day", + "2013-02-22": "Heritage Day", + "2013-03-18": "St. Patrick's Day", + "2013-03-29": "Good Friday", + "2013-04-01": "Easter Monday", + "2013-04-22": "St. George's Day", + "2013-05-20": "National Patriots' Day; Victoria Day", + "2013-06-21": "National Aboriginal Day", + "2013-06-24": "Discovery Day; St. Jean Baptiste Day", + "2013-07-01": "Canada Day; Memorial Day", + "2013-07-09": "Nunavut Day", + "2013-07-15": "Orangemen's Day", + "2013-08-05": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day", + "2013-08-19": "Discovery Day", + "2013-09-02": "Labour Day", + "2013-10-14": "Thanksgiving Day", + "2013-11-11": "Remembrance Day", + "2013-12-25": "Christmas Day", + "2013-12-26": "Boxing Day", + "2014-01-01": "New Year's Day", + "2014-02-10": "Family Day", + "2014-02-17": "Family Day; Islander Day; Louis Riel Day", + "2014-02-21": "Heritage Day", + "2014-03-17": "St. Patrick's Day", + "2014-04-18": "Good Friday", + "2014-04-21": "Easter Monday; St. George's Day", + "2014-05-19": "National Patriots' Day; Victoria Day", + "2014-06-21": "National Aboriginal Day", + "2014-06-23": "Discovery Day", + "2014-06-24": "St. Jean Baptiste Day", + "2014-07-01": "Canada Day; Memorial Day", + "2014-07-09": "Nunavut Day", + "2014-07-14": "Orangemen's Day", + "2014-08-04": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day", + "2014-08-18": "Discovery Day", + "2014-09-01": "Labour Day", + "2014-10-13": "Thanksgiving Day", + "2014-11-11": "Remembrance Day", + "2014-12-25": "Christmas Day", + "2014-12-26": "Boxing Day", + "2015-01-01": "New Year's Day", + "2015-02-09": "Family Day", + "2015-02-16": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2015-02-20": "Heritage Day", + "2015-03-16": "St. Patrick's Day", + "2015-04-03": "Good Friday", + "2015-04-06": "Easter Monday", + "2015-04-20": "St. George's Day", + "2015-05-18": "National Patriots' Day; Victoria Day", + "2015-06-21": "National Aboriginal Day", + "2015-06-22": "Discovery Day", + "2015-06-24": "St. Jean Baptiste Day", + "2015-07-01": "Canada Day; Memorial Day", + "2015-07-09": "Nunavut Day", + "2015-07-13": "Orangemen's Day", + "2015-08-03": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2015-08-17": "Discovery Day", + "2015-09-07": "Labour Day", + "2015-10-12": "Thanksgiving Day", + "2015-11-11": "Remembrance Day", + "2015-12-25": "Christmas Day", + "2015-12-26": "Boxing Day", + "2015-12-28": "Boxing Day (Observed)", + "2016-01-01": "New Year's Day", + "2016-02-08": "Family Day", + "2016-02-15": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2016-02-26": "Heritage Day", + "2016-03-14": "St. Patrick's Day", + "2016-03-25": "Good Friday", + "2016-03-28": "Easter Monday", + "2016-04-25": "St. George's Day", + "2016-05-23": "National Patriots' Day; Victoria Day", + "2016-06-21": "National Aboriginal Day", + "2016-06-24": "St. Jean Baptiste Day", + "2016-06-27": "Discovery Day", + "2016-07-01": "Canada Day; Memorial Day", + "2016-07-09": "Nunavut Day", + "2016-07-11": "Orangemen's Day", + "2016-08-01": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2016-08-15": "Discovery Day", + "2016-09-05": "Labour Day", + "2016-10-10": "Thanksgiving Day", + "2016-11-11": "Remembrance Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "Boxing Day; Christmas Day (Observed)", + "2016-12-27": "Christmas Day (Observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (Observed)", + "2017-02-13": "Family Day", + "2017-02-20": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2017-02-24": "Heritage Day", + "2017-03-20": "St. Patrick's Day", + "2017-04-14": "Good Friday", + "2017-04-17": "Easter Monday", + "2017-04-24": "St. George's Day", + "2017-05-22": "National Patriots' Day; Victoria Day", + "2017-06-21": "National Aboriginal Day", + "2017-06-24": "St. Jean Baptiste Day", + "2017-06-26": "Discovery Day", + "2017-07-01": "Canada Day; Memorial Day", + "2017-07-03": "Canada Day (Observed); Memorial Day (Observed)", + "2017-07-09": "Nunavut Day", + "2017-07-10": "Orangemen's Day", + "2017-08-07": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2017-08-21": "Discovery Day", + "2017-09-04": "Labour Day", + "2017-10-09": "Thanksgiving Day", + "2017-11-11": "Remembrance Day", + "2017-11-13": "Remembrance Day (Observed)", + "2017-12-25": "Christmas Day", + "2017-12-26": "Boxing Day", + "2018-01-01": "New Year's Day", + "2018-02-12": "Family Day", + "2018-02-19": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2018-02-23": "Heritage Day", + "2018-03-19": "St. Patrick's Day", + "2018-03-30": "Good Friday", + "2018-04-02": "Easter Monday", + "2018-04-23": "St. George's Day", + "2018-05-21": "National Patriots' Day; Victoria Day", + "2018-06-21": "National Aboriginal Day", + "2018-06-24": "St. Jean Baptiste Day", + "2018-06-25": "Discovery Day; St. Jean Baptiste Day (Observed)", + "2018-07-01": "Canada Day; Memorial Day", + "2018-07-02": "Canada Day (Observed); Memorial Day (Observed)", + "2018-07-09": "Nunavut Day; Orangemen's Day", + "2018-08-06": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2018-08-20": "Discovery Day", + "2018-09-03": "Labour Day", + "2018-10-08": "Thanksgiving Day", + "2018-11-11": "Remembrance Day", + "2018-11-12": "Remembrance Day (Observed)", + "2018-12-25": "Christmas Day", + "2018-12-26": "Boxing Day", + "2019-01-01": "New Year's Day", + "2019-02-18": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2019-02-22": "Heritage Day", + "2019-03-18": "St. Patrick's Day", + "2019-04-19": "Good Friday", + "2019-04-22": "Easter Monday; St. George's Day", + "2019-05-20": "National Patriots' Day; Victoria Day", + "2019-06-21": "National Aboriginal Day", + "2019-06-24": "Discovery Day; St. Jean Baptiste Day", + "2019-07-01": "Canada Day; Memorial Day", + "2019-07-09": "Nunavut Day", + "2019-07-15": "Orangemen's Day", + "2019-08-05": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2019-08-19": "Discovery Day", + "2019-09-02": "Labour Day", + "2019-10-14": "Thanksgiving Day", + "2019-11-11": "Remembrance Day", + "2019-12-25": "Christmas Day", + "2019-12-26": "Boxing Day", + "2020-01-01": "New Year's Day", + "2020-02-17": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2020-02-21": "Heritage Day", + "2020-03-16": "St. Patrick's Day", + "2020-04-10": "Good Friday", + "2020-04-13": "Easter Monday", + "2020-04-20": "St. George's Day", + "2020-05-18": "National Patriots' Day; Victoria Day", + "2020-06-21": "National Aboriginal Day", + "2020-06-22": "Discovery Day", + "2020-06-24": "St. Jean Baptiste Day", + "2020-07-01": "Canada Day; Memorial Day", + "2020-07-09": "Nunavut Day", + "2020-07-13": "Orangemen's Day", + "2020-08-03": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2020-08-17": "Discovery Day", + "2020-09-07": "Labour Day", + "2020-10-12": "Thanksgiving Day", + "2020-11-11": "Remembrance Day", + "2020-12-25": "Christmas Day", + "2020-12-26": "Boxing Day", + "2020-12-28": "Boxing Day (Observed)", + "2021-01-01": "New Year's Day", + "2021-02-15": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2021-02-26": "Heritage Day", + "2021-03-15": "St. Patrick's Day", + "2021-04-02": "Good Friday", + "2021-04-05": "Easter Monday", + "2021-04-26": "St. George's Day", + "2021-05-24": "National Patriots' Day; Victoria Day", + "2021-06-21": "Discovery Day; National Aboriginal Day", + "2021-06-24": "St. Jean Baptiste Day", + "2021-07-01": "Canada Day; Memorial Day", + "2021-07-09": "Nunavut Day", + "2021-07-12": "Orangemen's Day", + "2021-08-02": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2021-08-16": "Discovery Day", + "2021-09-06": "Labour Day", + "2021-09-30": "National Day for Truth and Reconciliation", + "2021-10-11": "Thanksgiving Day", + "2021-11-11": "Remembrance Day", + "2021-12-25": "Christmas Day", + "2021-12-26": "Boxing Day", + "2021-12-27": "Christmas Day (Observed)", + "2021-12-28": "Boxing Day (Observed)", + "2022-01-01": "New Year's Day", + "2022-01-03": "New Year's Day (Observed)", + "2022-02-21": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2022-02-25": "Heritage Day", + "2022-03-14": "St. Patrick's Day", + "2022-04-15": "Good Friday", + "2022-04-18": "Easter Monday", + "2022-04-25": "St. George's Day", + "2022-05-23": "National Patriots' Day; Victoria Day", + "2022-06-21": "National Aboriginal Day", + "2022-06-24": "St. Jean Baptiste Day", + "2022-06-27": "Discovery Day", + "2022-07-01": "Canada Day; Memorial Day", + "2022-07-09": "Nunavut Day", + "2022-07-11": "Orangemen's Day", + "2022-08-01": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2022-08-15": "Discovery Day", + "2022-09-05": "Labour Day", + "2022-09-19": "Funeral of Her Majesty the Queen Elizabeth II", + "2022-09-30": "National Day for Truth and Reconciliation", + "2022-10-10": "Thanksgiving Day", + "2022-11-11": "Remembrance Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "Boxing Day; Christmas Day (Observed)", + "2022-12-27": "Christmas Day (Observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (Observed)", + "2023-02-20": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2023-02-24": "Heritage Day", + "2023-03-20": "St. Patrick's Day", + "2023-04-07": "Good Friday", + "2023-04-10": "Easter Monday", + "2023-04-24": "St. George's Day", + "2023-05-22": "National Patriots' Day; Victoria Day", + "2023-06-21": "National Aboriginal Day", + "2023-06-24": "St. Jean Baptiste Day", + "2023-06-26": "Discovery Day", + "2023-07-01": "Canada Day; Memorial Day", + "2023-07-03": "Canada Day (Observed); Memorial Day (Observed)", + "2023-07-09": "Nunavut Day", + "2023-07-10": "Orangemen's Day", + "2023-08-07": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2023-08-21": "Discovery Day", + "2023-09-04": "Labour Day", + "2023-09-30": "National Day for Truth and Reconciliation", + "2023-10-02": "National Day for Truth and Reconciliation (Observed)", + "2023-10-09": "Thanksgiving Day", + "2023-11-11": "Remembrance Day", + "2023-11-13": "Remembrance Day (Observed)", + "2023-12-25": "Christmas Day", + "2023-12-26": "Boxing Day", + "2024-01-01": "New Year's Day", + "2024-02-19": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2024-02-23": "Heritage Day", + "2024-03-18": "St. Patrick's Day", + "2024-03-29": "Good Friday", + "2024-04-01": "Easter Monday", + "2024-04-22": "St. George's Day", + "2024-05-20": "National Patriots' Day; Victoria Day", + "2024-06-21": "National Aboriginal Day", + "2024-06-24": "Discovery Day; St. Jean Baptiste Day", + "2024-07-01": "Canada Day; Memorial Day", + "2024-07-09": "Nunavut Day", + "2024-07-15": "Orangemen's Day", + "2024-08-05": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2024-08-19": "Discovery Day", + "2024-09-02": "Labour Day", + "2024-09-30": "National Day for Truth and Reconciliation", + "2024-10-14": "Thanksgiving Day", + "2024-11-11": "Remembrance Day", + "2024-12-25": "Christmas Day", + "2024-12-26": "Boxing Day", + "2025-01-01": "New Year's Day", + "2025-02-17": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2025-02-21": "Heritage Day", + "2025-03-17": "St. Patrick's Day", + "2025-04-18": "Good Friday", + "2025-04-21": "Easter Monday; St. George's Day", + "2025-05-19": "National Patriots' Day; Victoria Day", + "2025-06-21": "National Aboriginal Day", + "2025-06-23": "Discovery Day", + "2025-06-24": "St. Jean Baptiste Day", + "2025-07-01": "Canada Day; Memorial Day", + "2025-07-09": "Nunavut Day", + "2025-07-14": "Orangemen's Day", + "2025-08-04": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2025-08-18": "Discovery Day", + "2025-09-01": "Labour Day", + "2025-09-30": "National Day for Truth and Reconciliation", + "2025-10-13": "Thanksgiving Day", + "2025-11-11": "Remembrance Day", + "2025-12-25": "Christmas Day", + "2025-12-26": "Boxing Day", + "2026-01-01": "New Year's Day", + "2026-02-16": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2026-02-20": "Heritage Day", + "2026-03-16": "St. Patrick's Day", + "2026-04-03": "Good Friday", + "2026-04-06": "Easter Monday", + "2026-04-20": "St. George's Day", + "2026-05-18": "National Patriots' Day; Victoria Day", + "2026-06-21": "National Aboriginal Day", + "2026-06-22": "Discovery Day", + "2026-06-24": "St. Jean Baptiste Day", + "2026-07-01": "Canada Day; Memorial Day", + "2026-07-09": "Nunavut Day", + "2026-07-13": "Orangemen's Day", + "2026-08-03": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2026-08-17": "Discovery Day", + "2026-09-07": "Labour Day", + "2026-09-30": "National Day for Truth and Reconciliation", + "2026-10-12": "Thanksgiving Day", + "2026-11-11": "Remembrance Day", + "2026-12-25": "Christmas Day", + "2026-12-26": "Boxing Day", + "2026-12-28": "Boxing Day (Observed)", + "2027-01-01": "New Year's Day", + "2027-02-15": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2027-02-26": "Heritage Day", + "2027-03-15": "St. Patrick's Day", + "2027-03-26": "Good Friday", + "2027-03-29": "Easter Monday", + "2027-04-26": "St. George's Day", + "2027-05-24": "National Patriots' Day; Victoria Day", + "2027-06-21": "Discovery Day; National Aboriginal Day", + "2027-06-24": "St. Jean Baptiste Day", + "2027-07-01": "Canada Day; Memorial Day", + "2027-07-09": "Nunavut Day", + "2027-07-12": "Orangemen's Day", + "2027-08-02": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2027-08-16": "Discovery Day", + "2027-09-06": "Labour Day", + "2027-09-30": "National Day for Truth and Reconciliation", + "2027-10-11": "Thanksgiving Day", + "2027-11-11": "Remembrance Day", + "2027-12-25": "Christmas Day", + "2027-12-26": "Boxing Day", + "2027-12-27": "Christmas Day (Observed)", + "2027-12-28": "Boxing Day (Observed)", + "2028-01-01": "New Year's Day", + "2028-01-03": "New Year's Day (Observed)", + "2028-02-21": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2028-02-25": "Heritage Day", + "2028-03-20": "St. Patrick's Day", + "2028-04-14": "Good Friday", + "2028-04-17": "Easter Monday", + "2028-04-24": "St. George's Day", + "2028-05-22": "National Patriots' Day; Victoria Day", + "2028-06-21": "National Aboriginal Day", + "2028-06-24": "St. Jean Baptiste Day", + "2028-06-26": "Discovery Day", + "2028-07-01": "Canada Day; Memorial Day", + "2028-07-03": "Canada Day (Observed); Memorial Day (Observed)", + "2028-07-09": "Nunavut Day", + "2028-07-10": "Orangemen's Day", + "2028-08-07": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2028-08-21": "Discovery Day", + "2028-09-04": "Labour Day", + "2028-09-30": "National Day for Truth and Reconciliation", + "2028-10-02": "National Day for Truth and Reconciliation (Observed)", + "2028-10-09": "Thanksgiving Day", + "2028-11-11": "Remembrance Day", + "2028-11-13": "Remembrance Day (Observed)", + "2028-12-25": "Christmas Day", + "2028-12-26": "Boxing Day", + "2029-01-01": "New Year's Day", + "2029-02-19": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2029-02-23": "Heritage Day", + "2029-03-19": "St. Patrick's Day", + "2029-03-30": "Good Friday", + "2029-04-02": "Easter Monday", + "2029-04-23": "St. George's Day", + "2029-05-21": "National Patriots' Day; Victoria Day", + "2029-06-21": "National Aboriginal Day", + "2029-06-24": "St. Jean Baptiste Day", + "2029-06-25": "Discovery Day; St. Jean Baptiste Day (Observed)", + "2029-07-01": "Canada Day; Memorial Day", + "2029-07-02": "Canada Day (Observed); Memorial Day (Observed)", + "2029-07-09": "Nunavut Day; Orangemen's Day", + "2029-08-06": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2029-08-20": "Discovery Day", + "2029-09-03": "Labour Day", + "2029-09-30": "National Day for Truth and Reconciliation", + "2029-10-01": "National Day for Truth and Reconciliation (Observed)", + "2029-10-08": "Thanksgiving Day", + "2029-11-11": "Remembrance Day", + "2029-11-12": "Remembrance Day (Observed)", + "2029-12-25": "Christmas Day", + "2029-12-26": "Boxing Day", + "2030-01-01": "New Year's Day", + "2030-02-18": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2030-02-22": "Heritage Day", + "2030-03-18": "St. Patrick's Day", + "2030-04-19": "Good Friday", + "2030-04-22": "Easter Monday; St. George's Day", + "2030-05-20": "National Patriots' Day; Victoria Day", + "2030-06-21": "National Aboriginal Day", + "2030-06-24": "Discovery Day; St. Jean Baptiste Day", + "2030-07-01": "Canada Day; Memorial Day", + "2030-07-09": "Nunavut Day", + "2030-07-15": "Orangemen's Day", + "2030-08-05": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2030-08-19": "Discovery Day", + "2030-09-02": "Labour Day", + "2030-09-30": "National Day for Truth and Reconciliation", + "2030-10-14": "Thanksgiving Day", + "2030-11-11": "Remembrance Day", + "2030-12-25": "Christmas Day", + "2030-12-26": "Boxing Day", + "2031-01-01": "New Year's Day", + "2031-02-17": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2031-02-21": "Heritage Day", + "2031-03-17": "St. Patrick's Day", + "2031-04-11": "Good Friday", + "2031-04-14": "Easter Monday", + "2031-04-21": "St. George's Day", + "2031-05-19": "National Patriots' Day; Victoria Day", + "2031-06-21": "National Aboriginal Day", + "2031-06-23": "Discovery Day", + "2031-06-24": "St. Jean Baptiste Day", + "2031-07-01": "Canada Day; Memorial Day", + "2031-07-09": "Nunavut Day", + "2031-07-14": "Orangemen's Day", + "2031-08-04": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2031-08-18": "Discovery Day", + "2031-09-01": "Labour Day", + "2031-09-30": "National Day for Truth and Reconciliation", + "2031-10-13": "Thanksgiving Day", + "2031-11-11": "Remembrance Day", + "2031-12-25": "Christmas Day", + "2031-12-26": "Boxing Day", + "2032-01-01": "New Year's Day", + "2032-02-16": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2032-02-27": "Heritage Day", + "2032-03-15": "St. Patrick's Day", + "2032-03-26": "Good Friday", + "2032-03-29": "Easter Monday", + "2032-04-26": "St. George's Day", + "2032-05-24": "National Patriots' Day; Victoria Day", + "2032-06-21": "Discovery Day; National Aboriginal Day", + "2032-06-24": "St. Jean Baptiste Day", + "2032-07-01": "Canada Day; Memorial Day", + "2032-07-09": "Nunavut Day", + "2032-07-12": "Orangemen's Day", + "2032-08-02": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2032-08-16": "Discovery Day", + "2032-09-06": "Labour Day", + "2032-09-30": "National Day for Truth and Reconciliation", + "2032-10-11": "Thanksgiving Day", + "2032-11-11": "Remembrance Day", + "2032-12-25": "Christmas Day", + "2032-12-26": "Boxing Day", + "2032-12-27": "Christmas Day (Observed)", + "2032-12-28": "Boxing Day (Observed)", + "2033-01-01": "New Year's Day", + "2033-01-03": "New Year's Day (Observed)", + "2033-02-21": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2033-02-25": "Heritage Day", + "2033-03-14": "St. Patrick's Day", + "2033-04-15": "Good Friday", + "2033-04-18": "Easter Monday", + "2033-04-25": "St. George's Day", + "2033-05-23": "National Patriots' Day; Victoria Day", + "2033-06-21": "National Aboriginal Day", + "2033-06-24": "St. Jean Baptiste Day", + "2033-06-27": "Discovery Day", + "2033-07-01": "Canada Day; Memorial Day", + "2033-07-09": "Nunavut Day", + "2033-07-11": "Orangemen's Day", + "2033-08-01": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2033-08-15": "Discovery Day", + "2033-09-05": "Labour Day", + "2033-09-30": "National Day for Truth and Reconciliation", + "2033-10-10": "Thanksgiving Day", + "2033-11-11": "Remembrance Day", + "2033-12-25": "Christmas Day", + "2033-12-26": "Boxing Day; Christmas Day (Observed)", + "2033-12-27": "Christmas Day (Observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-02-20": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2034-02-24": "Heritage Day", + "2034-03-20": "St. Patrick's Day", + "2034-04-07": "Good Friday", + "2034-04-10": "Easter Monday", + "2034-04-24": "St. George's Day", + "2034-05-22": "National Patriots' Day; Victoria Day", + "2034-06-21": "National Aboriginal Day", + "2034-06-24": "St. Jean Baptiste Day", + "2034-06-26": "Discovery Day", + "2034-07-01": "Canada Day; Memorial Day", + "2034-07-03": "Canada Day (Observed); Memorial Day (Observed)", + "2034-07-09": "Nunavut Day", + "2034-07-10": "Orangemen's Day", + "2034-08-07": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2034-08-21": "Discovery Day", + "2034-09-04": "Labour Day", + "2034-09-30": "National Day for Truth and Reconciliation", + "2034-10-02": "National Day for Truth and Reconciliation (Observed)", + "2034-10-09": "Thanksgiving Day", + "2034-11-11": "Remembrance Day", + "2034-11-13": "Remembrance Day (Observed)", + "2034-12-25": "Christmas Day", + "2034-12-26": "Boxing Day", + "2035-01-01": "New Year's Day", + "2035-02-19": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2035-02-23": "Heritage Day", + "2035-03-19": "St. Patrick's Day", + "2035-03-23": "Good Friday", + "2035-03-26": "Easter Monday", + "2035-04-23": "St. George's Day", + "2035-05-21": "National Patriots' Day; Victoria Day", + "2035-06-21": "National Aboriginal Day", + "2035-06-24": "St. Jean Baptiste Day", + "2035-06-25": "Discovery Day; St. Jean Baptiste Day (Observed)", + "2035-07-01": "Canada Day; Memorial Day", + "2035-07-02": "Canada Day (Observed); Memorial Day (Observed)", + "2035-07-09": "Nunavut Day; Orangemen's Day", + "2035-08-06": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2035-08-20": "Discovery Day", + "2035-09-03": "Labour Day", + "2035-09-30": "National Day for Truth and Reconciliation", + "2035-10-01": "National Day for Truth and Reconciliation (Observed)", + "2035-10-08": "Thanksgiving Day", + "2035-11-11": "Remembrance Day", + "2035-11-12": "Remembrance Day (Observed)", + "2035-12-25": "Christmas Day", + "2035-12-26": "Boxing Day", + "2036-01-01": "New Year's Day", + "2036-02-18": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2036-02-22": "Heritage Day", + "2036-03-17": "St. Patrick's Day", + "2036-04-11": "Good Friday", + "2036-04-14": "Easter Monday", + "2036-04-21": "St. George's Day", + "2036-05-19": "National Patriots' Day; Victoria Day", + "2036-06-21": "National Aboriginal Day", + "2036-06-23": "Discovery Day", + "2036-06-24": "St. Jean Baptiste Day", + "2036-07-01": "Canada Day; Memorial Day", + "2036-07-09": "Nunavut Day", + "2036-07-14": "Orangemen's Day", + "2036-08-04": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2036-08-18": "Discovery Day", + "2036-09-01": "Labour Day", + "2036-09-30": "National Day for Truth and Reconciliation", + "2036-10-13": "Thanksgiving Day", + "2036-11-11": "Remembrance Day", + "2036-12-25": "Christmas Day", + "2036-12-26": "Boxing Day", + "2037-01-01": "New Year's Day", + "2037-02-16": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2037-02-20": "Heritage Day", + "2037-03-16": "St. Patrick's Day", + "2037-04-03": "Good Friday", + "2037-04-06": "Easter Monday", + "2037-04-20": "St. George's Day", + "2037-05-18": "National Patriots' Day; Victoria Day", + "2037-06-21": "National Aboriginal Day", + "2037-06-22": "Discovery Day", + "2037-06-24": "St. Jean Baptiste Day", + "2037-07-01": "Canada Day; Memorial Day", + "2037-07-09": "Nunavut Day", + "2037-07-13": "Orangemen's Day", + "2037-08-03": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2037-08-17": "Discovery Day", + "2037-09-07": "Labour Day", + "2037-09-30": "National Day for Truth and Reconciliation", + "2037-10-12": "Thanksgiving Day", + "2037-11-11": "Remembrance Day", + "2037-12-25": "Christmas Day", + "2037-12-26": "Boxing Day", + "2037-12-28": "Boxing Day (Observed)", + "2038-01-01": "New Year's Day", + "2038-02-15": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2038-02-26": "Heritage Day", + "2038-03-15": "St. Patrick's Day", + "2038-04-23": "Good Friday", + "2038-04-26": "Easter Monday; St. George's Day", + "2038-05-24": "National Patriots' Day; Victoria Day", + "2038-06-21": "Discovery Day; National Aboriginal Day", + "2038-06-24": "St. Jean Baptiste Day", + "2038-07-01": "Canada Day; Memorial Day", + "2038-07-09": "Nunavut Day", + "2038-07-12": "Orangemen's Day", + "2038-08-02": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2038-08-16": "Discovery Day", + "2038-09-06": "Labour Day", + "2038-09-30": "National Day for Truth and Reconciliation", + "2038-10-11": "Thanksgiving Day", + "2038-11-11": "Remembrance Day", + "2038-12-25": "Christmas Day", + "2038-12-26": "Boxing Day", + "2038-12-27": "Christmas Day (Observed)", + "2038-12-28": "Boxing Day (Observed)", + "2039-01-01": "New Year's Day", + "2039-01-03": "New Year's Day (Observed)", + "2039-02-21": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2039-02-25": "Heritage Day", + "2039-03-14": "St. Patrick's Day", + "2039-04-08": "Good Friday", + "2039-04-11": "Easter Monday", + "2039-04-25": "St. George's Day", + "2039-05-23": "National Patriots' Day; Victoria Day", + "2039-06-21": "National Aboriginal Day", + "2039-06-24": "St. Jean Baptiste Day", + "2039-06-27": "Discovery Day", + "2039-07-01": "Canada Day; Memorial Day", + "2039-07-09": "Nunavut Day", + "2039-07-11": "Orangemen's Day", + "2039-08-01": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2039-08-15": "Discovery Day", + "2039-09-05": "Labour Day", + "2039-09-30": "National Day for Truth and Reconciliation", + "2039-10-10": "Thanksgiving Day", + "2039-11-11": "Remembrance Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Boxing Day; Christmas Day (Observed)", + "2039-12-27": "Christmas Day (Observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (Observed)", + "2040-02-20": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2040-02-24": "Heritage Day", + "2040-03-19": "St. Patrick's Day", + "2040-03-30": "Good Friday", + "2040-04-02": "Easter Monday", + "2040-04-23": "St. George's Day", + "2040-05-21": "National Patriots' Day; Victoria Day", + "2040-06-21": "National Aboriginal Day", + "2040-06-24": "St. Jean Baptiste Day", + "2040-06-25": "Discovery Day; St. Jean Baptiste Day (Observed)", + "2040-07-01": "Canada Day; Memorial Day", + "2040-07-02": "Canada Day (Observed); Memorial Day (Observed)", + "2040-07-09": "Nunavut Day; Orangemen's Day", + "2040-08-06": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2040-08-20": "Discovery Day", + "2040-09-03": "Labour Day", + "2040-09-30": "National Day for Truth and Reconciliation", + "2040-10-01": "National Day for Truth and Reconciliation (Observed)", + "2040-10-08": "Thanksgiving Day", + "2040-11-11": "Remembrance Day", + "2040-11-12": "Remembrance Day (Observed)", + "2040-12-25": "Christmas Day", + "2040-12-26": "Boxing Day", + "2041-01-01": "New Year's Day", + "2041-02-18": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2041-02-22": "Heritage Day", + "2041-03-18": "St. Patrick's Day", + "2041-04-19": "Good Friday", + "2041-04-22": "Easter Monday; St. George's Day", + "2041-05-20": "National Patriots' Day; Victoria Day", + "2041-06-21": "National Aboriginal Day", + "2041-06-24": "Discovery Day; St. Jean Baptiste Day", + "2041-07-01": "Canada Day; Memorial Day", + "2041-07-09": "Nunavut Day", + "2041-07-15": "Orangemen's Day", + "2041-08-05": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2041-08-19": "Discovery Day", + "2041-09-02": "Labour Day", + "2041-09-30": "National Day for Truth and Reconciliation", + "2041-10-14": "Thanksgiving Day", + "2041-11-11": "Remembrance Day", + "2041-12-25": "Christmas Day", + "2041-12-26": "Boxing Day", + "2042-01-01": "New Year's Day", + "2042-02-17": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2042-02-21": "Heritage Day", + "2042-03-17": "St. Patrick's Day", + "2042-04-04": "Good Friday", + "2042-04-07": "Easter Monday", + "2042-04-21": "St. George's Day", + "2042-05-19": "National Patriots' Day; Victoria Day", + "2042-06-21": "National Aboriginal Day", + "2042-06-23": "Discovery Day", + "2042-06-24": "St. Jean Baptiste Day", + "2042-07-01": "Canada Day; Memorial Day", + "2042-07-09": "Nunavut Day", + "2042-07-14": "Orangemen's Day", + "2042-08-04": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2042-08-18": "Discovery Day", + "2042-09-01": "Labour Day", + "2042-09-30": "National Day for Truth and Reconciliation", + "2042-10-13": "Thanksgiving Day", + "2042-11-11": "Remembrance Day", + "2042-12-25": "Christmas Day", + "2042-12-26": "Boxing Day", + "2043-01-01": "New Year's Day", + "2043-02-16": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2043-02-20": "Heritage Day", + "2043-03-16": "St. Patrick's Day", + "2043-03-27": "Good Friday", + "2043-03-30": "Easter Monday", + "2043-04-20": "St. George's Day", + "2043-05-18": "National Patriots' Day; Victoria Day", + "2043-06-21": "National Aboriginal Day", + "2043-06-22": "Discovery Day", + "2043-06-24": "St. Jean Baptiste Day", + "2043-07-01": "Canada Day; Memorial Day", + "2043-07-09": "Nunavut Day", + "2043-07-13": "Orangemen's Day", + "2043-08-03": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2043-08-17": "Discovery Day", + "2043-09-07": "Labour Day", + "2043-09-30": "National Day for Truth and Reconciliation", + "2043-10-12": "Thanksgiving Day", + "2043-11-11": "Remembrance Day", + "2043-12-25": "Christmas Day", + "2043-12-26": "Boxing Day", + "2043-12-28": "Boxing Day (Observed)", + "2044-01-01": "New Year's Day", + "2044-02-15": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2044-02-26": "Heritage Day", + "2044-03-14": "St. Patrick's Day", + "2044-04-15": "Good Friday", + "2044-04-18": "Easter Monday", + "2044-04-25": "St. George's Day", + "2044-05-23": "National Patriots' Day; Victoria Day", + "2044-06-21": "National Aboriginal Day", + "2044-06-24": "St. Jean Baptiste Day", + "2044-06-27": "Discovery Day", + "2044-07-01": "Canada Day; Memorial Day", + "2044-07-09": "Nunavut Day", + "2044-07-11": "Orangemen's Day", + "2044-08-01": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2044-08-15": "Discovery Day", + "2044-09-05": "Labour Day", + "2044-09-30": "National Day for Truth and Reconciliation", + "2044-10-10": "Thanksgiving Day", + "2044-11-11": "Remembrance Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "Boxing Day; Christmas Day (Observed)", + "2044-12-27": "Christmas Day (Observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (Observed)", + "2045-02-20": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2045-02-24": "Heritage Day", + "2045-03-20": "St. Patrick's Day", + "2045-04-07": "Good Friday", + "2045-04-10": "Easter Monday", + "2045-04-24": "St. George's Day", + "2045-05-22": "National Patriots' Day; Victoria Day", + "2045-06-21": "National Aboriginal Day", + "2045-06-24": "St. Jean Baptiste Day", + "2045-06-26": "Discovery Day", + "2045-07-01": "Canada Day; Memorial Day", + "2045-07-03": "Canada Day (Observed); Memorial Day (Observed)", + "2045-07-09": "Nunavut Day", + "2045-07-10": "Orangemen's Day", + "2045-08-07": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2045-08-21": "Discovery Day", + "2045-09-04": "Labour Day", + "2045-09-30": "National Day for Truth and Reconciliation", + "2045-10-02": "National Day for Truth and Reconciliation (Observed)", + "2045-10-09": "Thanksgiving Day", + "2045-11-11": "Remembrance Day", + "2045-11-13": "Remembrance Day (Observed)", + "2045-12-25": "Christmas Day", + "2045-12-26": "Boxing Day", + "2046-01-01": "New Year's Day", + "2046-02-19": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2046-02-23": "Heritage Day", + "2046-03-19": "St. Patrick's Day", + "2046-03-23": "Good Friday", + "2046-03-26": "Easter Monday", + "2046-04-23": "St. George's Day", + "2046-05-21": "National Patriots' Day; Victoria Day", + "2046-06-21": "National Aboriginal Day", + "2046-06-24": "St. Jean Baptiste Day", + "2046-06-25": "Discovery Day; St. Jean Baptiste Day (Observed)", + "2046-07-01": "Canada Day; Memorial Day", + "2046-07-02": "Canada Day (Observed); Memorial Day (Observed)", + "2046-07-09": "Nunavut Day; Orangemen's Day", + "2046-08-06": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2046-08-20": "Discovery Day", + "2046-09-03": "Labour Day", + "2046-09-30": "National Day for Truth and Reconciliation", + "2046-10-01": "National Day for Truth and Reconciliation (Observed)", + "2046-10-08": "Thanksgiving Day", + "2046-11-11": "Remembrance Day", + "2046-11-12": "Remembrance Day (Observed)", + "2046-12-25": "Christmas Day", + "2046-12-26": "Boxing Day", + "2047-01-01": "New Year's Day", + "2047-02-18": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2047-02-22": "Heritage Day", + "2047-03-18": "St. Patrick's Day", + "2047-04-12": "Good Friday", + "2047-04-15": "Easter Monday", + "2047-04-22": "St. George's Day", + "2047-05-20": "National Patriots' Day; Victoria Day", + "2047-06-21": "National Aboriginal Day", + "2047-06-24": "Discovery Day; St. Jean Baptiste Day", + "2047-07-01": "Canada Day; Memorial Day", + "2047-07-09": "Nunavut Day", + "2047-07-15": "Orangemen's Day", + "2047-08-05": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2047-08-19": "Discovery Day", + "2047-09-02": "Labour Day", + "2047-09-30": "National Day for Truth and Reconciliation", + "2047-10-14": "Thanksgiving Day", + "2047-11-11": "Remembrance Day", + "2047-12-25": "Christmas Day", + "2047-12-26": "Boxing Day", + "2048-01-01": "New Year's Day", + "2048-02-17": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2048-02-21": "Heritage Day", + "2048-03-16": "St. Patrick's Day", + "2048-04-03": "Good Friday", + "2048-04-06": "Easter Monday", + "2048-04-20": "St. George's Day", + "2048-05-18": "National Patriots' Day; Victoria Day", + "2048-06-21": "National Aboriginal Day", + "2048-06-22": "Discovery Day", + "2048-06-24": "St. Jean Baptiste Day", + "2048-07-01": "Canada Day; Memorial Day", + "2048-07-09": "Nunavut Day", + "2048-07-13": "Orangemen's Day", + "2048-08-03": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2048-08-17": "Discovery Day", + "2048-09-07": "Labour Day", + "2048-09-30": "National Day for Truth and Reconciliation", + "2048-10-12": "Thanksgiving Day", + "2048-11-11": "Remembrance Day", + "2048-12-25": "Christmas Day", + "2048-12-26": "Boxing Day", + "2048-12-28": "Boxing Day (Observed)", + "2049-01-01": "New Year's Day", + "2049-02-15": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2049-02-26": "Heritage Day", + "2049-03-15": "St. Patrick's Day", + "2049-04-16": "Good Friday", + "2049-04-19": "Easter Monday", + "2049-04-26": "St. George's Day", + "2049-05-24": "National Patriots' Day; Victoria Day", + "2049-06-21": "Discovery Day; National Aboriginal Day", + "2049-06-24": "St. Jean Baptiste Day", + "2049-07-01": "Canada Day; Memorial Day", + "2049-07-09": "Nunavut Day", + "2049-07-12": "Orangemen's Day", + "2049-08-02": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2049-08-16": "Discovery Day", + "2049-09-06": "Labour Day", + "2049-09-30": "National Day for Truth and Reconciliation", + "2049-10-11": "Thanksgiving Day", + "2049-11-11": "Remembrance Day", + "2049-12-25": "Christmas Day", + "2049-12-26": "Boxing Day", + "2049-12-27": "Christmas Day (Observed)", + "2049-12-28": "Boxing Day (Observed)", + "2050-01-01": "New Year's Day", + "2050-01-03": "New Year's Day (Observed)", + "2050-02-21": "Family Day; Heritage Day; Islander Day; Louis Riel Day", + "2050-02-25": "Heritage Day", + "2050-03-14": "St. Patrick's Day", + "2050-04-08": "Good Friday", + "2050-04-11": "Easter Monday", + "2050-04-25": "St. George's Day", + "2050-05-23": "National Patriots' Day; Victoria Day", + "2050-06-21": "National Aboriginal Day", + "2050-06-24": "St. Jean Baptiste Day", + "2050-06-27": "Discovery Day", + "2050-07-01": "Canada Day; Memorial Day", + "2050-07-09": "Nunavut Day", + "2050-07-11": "Orangemen's Day", + "2050-08-01": "British Columbia Day; Civic Holiday; Heritage Day; Natal Day; New Brunswick Day; Saskatchewan Day; Terry Fox Day", + "2050-08-15": "Discovery Day", + "2050-09-05": "Labour Day", + "2050-09-30": "National Day for Truth and Reconciliation", + "2050-10-10": "Thanksgiving Day", + "2050-11-11": "Remembrance Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "Boxing Day; Christmas Day (Observed)", + "2050-12-27": "Christmas Day (Observed)" +} diff --git a/snapshots/countries/CH.json b/snapshots/countries/CH.json new file mode 100644 index 000000000..5f6d3650b --- /dev/null +++ b/snapshots/countries/CH.json @@ -0,0 +1,2626 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-02": "Berchtold's Day", + "1950-01-06": "Epiphany", + "1950-03-01": "Republic Day", + "1950-03-19": "St. Joseph's Day", + "1950-04-07": "Good Friday", + "1950-04-09": "Easter Sunday", + "1950-04-10": "Easter Monday", + "1950-04-13": "Battle of Naefels Victory Day", + "1950-05-01": "Labor Day", + "1950-05-18": "Ascension Day", + "1950-05-28": "Whit Sunday", + "1950-05-29": "Whit Monday", + "1950-06-08": "Corpus Christi", + "1950-06-23": "Independence Day", + "1950-06-29": "Saints Peter and Paul", + "1950-08-01": "National Day", + "1950-08-15": "Assumption of Mary", + "1950-09-07": "Genevan Fast", + "1950-09-18": "Prayer Monday", + "1950-09-25": "St. Nicholas of Fl\u00fce", + "1950-11-01": "All Saints' Day", + "1950-12-08": "Immaculate Conception", + "1950-12-25": "Christmas Day", + "1950-12-26": "St. Stephen's Day", + "1950-12-31": "Restoration Day", + "1951-01-01": "New Year's Day", + "1951-01-02": "Berchtold's Day", + "1951-01-06": "Epiphany", + "1951-03-01": "Republic Day", + "1951-03-19": "St. Joseph's Day", + "1951-03-23": "Good Friday", + "1951-03-25": "Easter Sunday", + "1951-03-26": "Easter Monday", + "1951-04-05": "Battle of Naefels Victory Day", + "1951-05-01": "Labor Day", + "1951-05-03": "Ascension Day", + "1951-05-13": "Whit Sunday", + "1951-05-14": "Whit Monday", + "1951-05-24": "Corpus Christi", + "1951-06-23": "Independence Day", + "1951-06-29": "Saints Peter and Paul", + "1951-08-01": "National Day", + "1951-08-15": "Assumption of Mary", + "1951-09-06": "Genevan Fast", + "1951-09-17": "Prayer Monday", + "1951-09-25": "St. Nicholas of Fl\u00fce", + "1951-11-01": "All Saints' Day", + "1951-12-08": "Immaculate Conception", + "1951-12-25": "Christmas Day", + "1951-12-26": "St. Stephen's Day", + "1951-12-31": "Restoration Day", + "1952-01-01": "New Year's Day", + "1952-01-02": "Berchtold's Day", + "1952-01-06": "Epiphany", + "1952-03-01": "Republic Day", + "1952-03-19": "St. Joseph's Day", + "1952-04-03": "Battle of Naefels Victory Day", + "1952-04-11": "Good Friday", + "1952-04-13": "Easter Sunday", + "1952-04-14": "Easter Monday", + "1952-05-01": "Labor Day", + "1952-05-22": "Ascension Day", + "1952-06-01": "Whit Sunday", + "1952-06-02": "Whit Monday", + "1952-06-12": "Corpus Christi", + "1952-06-23": "Independence Day", + "1952-06-29": "Saints Peter and Paul", + "1952-08-01": "National Day", + "1952-08-15": "Assumption of Mary", + "1952-09-11": "Genevan Fast", + "1952-09-22": "Prayer Monday", + "1952-09-25": "St. Nicholas of Fl\u00fce", + "1952-11-01": "All Saints' Day", + "1952-12-08": "Immaculate Conception", + "1952-12-25": "Christmas Day", + "1952-12-26": "St. Stephen's Day", + "1952-12-31": "Restoration Day", + "1953-01-01": "New Year's Day", + "1953-01-02": "Berchtold's Day", + "1953-01-06": "Epiphany", + "1953-03-01": "Republic Day", + "1953-03-19": "St. Joseph's Day", + "1953-04-03": "Good Friday", + "1953-04-05": "Easter Sunday", + "1953-04-06": "Easter Monday", + "1953-04-09": "Battle of Naefels Victory Day", + "1953-05-01": "Labor Day", + "1953-05-14": "Ascension Day", + "1953-05-24": "Whit Sunday", + "1953-05-25": "Whit Monday", + "1953-06-04": "Corpus Christi", + "1953-06-23": "Independence Day", + "1953-06-29": "Saints Peter and Paul", + "1953-08-01": "National Day", + "1953-08-15": "Assumption of Mary", + "1953-09-10": "Genevan Fast", + "1953-09-21": "Prayer Monday", + "1953-09-25": "St. Nicholas of Fl\u00fce", + "1953-11-01": "All Saints' Day", + "1953-12-08": "Immaculate Conception", + "1953-12-25": "Christmas Day", + "1953-12-26": "St. Stephen's Day", + "1953-12-31": "Restoration Day", + "1954-01-01": "New Year's Day", + "1954-01-02": "Berchtold's Day", + "1954-01-06": "Epiphany", + "1954-03-01": "Republic Day", + "1954-03-19": "St. Joseph's Day", + "1954-04-01": "Battle of Naefels Victory Day", + "1954-04-16": "Good Friday", + "1954-04-18": "Easter Sunday", + "1954-04-19": "Easter Monday", + "1954-05-01": "Labor Day", + "1954-05-27": "Ascension Day", + "1954-06-06": "Whit Sunday", + "1954-06-07": "Whit Monday", + "1954-06-17": "Corpus Christi", + "1954-06-23": "Independence Day", + "1954-06-29": "Saints Peter and Paul", + "1954-08-01": "National Day", + "1954-08-15": "Assumption of Mary", + "1954-09-09": "Genevan Fast", + "1954-09-20": "Prayer Monday", + "1954-09-25": "St. Nicholas of Fl\u00fce", + "1954-11-01": "All Saints' Day", + "1954-12-08": "Immaculate Conception", + "1954-12-25": "Christmas Day", + "1954-12-26": "St. Stephen's Day", + "1954-12-31": "Restoration Day", + "1955-01-01": "New Year's Day", + "1955-01-02": "Berchtold's Day", + "1955-01-06": "Epiphany", + "1955-03-01": "Republic Day", + "1955-03-19": "St. Joseph's Day", + "1955-04-08": "Good Friday", + "1955-04-10": "Easter Sunday", + "1955-04-11": "Easter Monday", + "1955-04-14": "Battle of Naefels Victory Day", + "1955-05-01": "Labor Day", + "1955-05-19": "Ascension Day", + "1955-05-29": "Whit Sunday", + "1955-05-30": "Whit Monday", + "1955-06-09": "Corpus Christi", + "1955-06-23": "Independence Day", + "1955-06-29": "Saints Peter and Paul", + "1955-08-01": "National Day", + "1955-08-15": "Assumption of Mary", + "1955-09-08": "Genevan Fast", + "1955-09-19": "Prayer Monday", + "1955-09-25": "St. Nicholas of Fl\u00fce", + "1955-11-01": "All Saints' Day", + "1955-12-08": "Immaculate Conception", + "1955-12-25": "Christmas Day", + "1955-12-26": "St. Stephen's Day", + "1955-12-31": "Restoration Day", + "1956-01-01": "New Year's Day", + "1956-01-02": "Berchtold's Day", + "1956-01-06": "Epiphany", + "1956-03-01": "Republic Day", + "1956-03-19": "St. Joseph's Day", + "1956-03-30": "Good Friday", + "1956-04-01": "Easter Sunday", + "1956-04-02": "Easter Monday", + "1956-04-05": "Battle of Naefels Victory Day", + "1956-05-01": "Labor Day", + "1956-05-10": "Ascension Day", + "1956-05-20": "Whit Sunday", + "1956-05-21": "Whit Monday", + "1956-05-31": "Corpus Christi", + "1956-06-23": "Independence Day", + "1956-06-29": "Saints Peter and Paul", + "1956-08-01": "National Day", + "1956-08-15": "Assumption of Mary", + "1956-09-06": "Genevan Fast", + "1956-09-17": "Prayer Monday", + "1956-09-25": "St. Nicholas of Fl\u00fce", + "1956-11-01": "All Saints' Day", + "1956-12-08": "Immaculate Conception", + "1956-12-25": "Christmas Day", + "1956-12-26": "St. Stephen's Day", + "1956-12-31": "Restoration Day", + "1957-01-01": "New Year's Day", + "1957-01-02": "Berchtold's Day", + "1957-01-06": "Epiphany", + "1957-03-01": "Republic Day", + "1957-03-19": "St. Joseph's Day", + "1957-04-04": "Battle of Naefels Victory Day", + "1957-04-19": "Good Friday", + "1957-04-21": "Easter Sunday", + "1957-04-22": "Easter Monday", + "1957-05-01": "Labor Day", + "1957-05-30": "Ascension Day", + "1957-06-09": "Whit Sunday", + "1957-06-10": "Whit Monday", + "1957-06-20": "Corpus Christi", + "1957-06-23": "Independence Day", + "1957-06-29": "Saints Peter and Paul", + "1957-08-01": "National Day", + "1957-08-15": "Assumption of Mary", + "1957-09-05": "Genevan Fast", + "1957-09-16": "Prayer Monday", + "1957-09-25": "St. Nicholas of Fl\u00fce", + "1957-11-01": "All Saints' Day", + "1957-12-08": "Immaculate Conception", + "1957-12-25": "Christmas Day", + "1957-12-26": "St. Stephen's Day", + "1957-12-31": "Restoration Day", + "1958-01-01": "New Year's Day", + "1958-01-02": "Berchtold's Day", + "1958-01-06": "Epiphany", + "1958-03-01": "Republic Day", + "1958-03-19": "St. Joseph's Day", + "1958-04-04": "Good Friday", + "1958-04-06": "Easter Sunday", + "1958-04-07": "Easter Monday", + "1958-04-10": "Battle of Naefels Victory Day", + "1958-05-01": "Labor Day", + "1958-05-15": "Ascension Day", + "1958-05-25": "Whit Sunday", + "1958-05-26": "Whit Monday", + "1958-06-05": "Corpus Christi", + "1958-06-23": "Independence Day", + "1958-06-29": "Saints Peter and Paul", + "1958-08-01": "National Day", + "1958-08-15": "Assumption of Mary", + "1958-09-11": "Genevan Fast", + "1958-09-22": "Prayer Monday", + "1958-09-25": "St. Nicholas of Fl\u00fce", + "1958-11-01": "All Saints' Day", + "1958-12-08": "Immaculate Conception", + "1958-12-25": "Christmas Day", + "1958-12-26": "St. Stephen's Day", + "1958-12-31": "Restoration Day", + "1959-01-01": "New Year's Day", + "1959-01-02": "Berchtold's Day", + "1959-01-06": "Epiphany", + "1959-03-01": "Republic Day", + "1959-03-19": "St. Joseph's Day", + "1959-03-27": "Good Friday", + "1959-03-29": "Easter Sunday", + "1959-03-30": "Easter Monday", + "1959-04-02": "Battle of Naefels Victory Day", + "1959-05-01": "Labor Day", + "1959-05-07": "Ascension Day", + "1959-05-17": "Whit Sunday", + "1959-05-18": "Whit Monday", + "1959-05-28": "Corpus Christi", + "1959-06-23": "Independence Day", + "1959-06-29": "Saints Peter and Paul", + "1959-08-01": "National Day", + "1959-08-15": "Assumption of Mary", + "1959-09-10": "Genevan Fast", + "1959-09-21": "Prayer Monday", + "1959-09-25": "St. Nicholas of Fl\u00fce", + "1959-11-01": "All Saints' Day", + "1959-12-08": "Immaculate Conception", + "1959-12-25": "Christmas Day", + "1959-12-26": "St. Stephen's Day", + "1959-12-31": "Restoration Day", + "1960-01-01": "New Year's Day", + "1960-01-02": "Berchtold's Day", + "1960-01-06": "Epiphany", + "1960-03-01": "Republic Day", + "1960-03-19": "St. Joseph's Day", + "1960-04-07": "Battle of Naefels Victory Day", + "1960-04-15": "Good Friday", + "1960-04-17": "Easter Sunday", + "1960-04-18": "Easter Monday", + "1960-05-01": "Labor Day", + "1960-05-26": "Ascension Day", + "1960-06-05": "Whit Sunday", + "1960-06-06": "Whit Monday", + "1960-06-16": "Corpus Christi", + "1960-06-23": "Independence Day", + "1960-06-29": "Saints Peter and Paul", + "1960-08-01": "National Day", + "1960-08-15": "Assumption of Mary", + "1960-09-08": "Genevan Fast", + "1960-09-19": "Prayer Monday", + "1960-09-25": "St. Nicholas of Fl\u00fce", + "1960-11-01": "All Saints' Day", + "1960-12-08": "Immaculate Conception", + "1960-12-25": "Christmas Day", + "1960-12-26": "St. Stephen's Day", + "1960-12-31": "Restoration Day", + "1961-01-01": "New Year's Day", + "1961-01-02": "Berchtold's Day", + "1961-01-06": "Epiphany", + "1961-03-01": "Republic Day", + "1961-03-19": "St. Joseph's Day", + "1961-03-31": "Good Friday", + "1961-04-02": "Easter Sunday", + "1961-04-03": "Easter Monday", + "1961-04-06": "Battle of Naefels Victory Day", + "1961-05-01": "Labor Day", + "1961-05-11": "Ascension Day", + "1961-05-21": "Whit Sunday", + "1961-05-22": "Whit Monday", + "1961-06-01": "Corpus Christi", + "1961-06-23": "Independence Day", + "1961-06-29": "Saints Peter and Paul", + "1961-08-01": "National Day", + "1961-08-15": "Assumption of Mary", + "1961-09-07": "Genevan Fast", + "1961-09-18": "Prayer Monday", + "1961-09-25": "St. Nicholas of Fl\u00fce", + "1961-11-01": "All Saints' Day", + "1961-12-08": "Immaculate Conception", + "1961-12-25": "Christmas Day", + "1961-12-26": "St. Stephen's Day", + "1961-12-31": "Restoration Day", + "1962-01-01": "New Year's Day", + "1962-01-02": "Berchtold's Day", + "1962-01-06": "Epiphany", + "1962-03-01": "Republic Day", + "1962-03-19": "St. Joseph's Day", + "1962-04-05": "Battle of Naefels Victory Day", + "1962-04-20": "Good Friday", + "1962-04-22": "Easter Sunday", + "1962-04-23": "Easter Monday", + "1962-05-01": "Labor Day", + "1962-05-31": "Ascension Day", + "1962-06-10": "Whit Sunday", + "1962-06-11": "Whit Monday", + "1962-06-21": "Corpus Christi", + "1962-06-23": "Independence Day", + "1962-06-29": "Saints Peter and Paul", + "1962-08-01": "National Day", + "1962-08-15": "Assumption of Mary", + "1962-09-06": "Genevan Fast", + "1962-09-17": "Prayer Monday", + "1962-09-25": "St. Nicholas of Fl\u00fce", + "1962-11-01": "All Saints' Day", + "1962-12-08": "Immaculate Conception", + "1962-12-25": "Christmas Day", + "1962-12-26": "St. Stephen's Day", + "1962-12-31": "Restoration Day", + "1963-01-01": "New Year's Day", + "1963-01-02": "Berchtold's Day", + "1963-01-06": "Epiphany", + "1963-03-01": "Republic Day", + "1963-03-19": "St. Joseph's Day", + "1963-04-04": "Battle of Naefels Victory Day", + "1963-04-12": "Good Friday", + "1963-04-14": "Easter Sunday", + "1963-04-15": "Easter Monday", + "1963-05-01": "Labor Day", + "1963-05-23": "Ascension Day", + "1963-06-02": "Whit Sunday", + "1963-06-03": "Whit Monday", + "1963-06-13": "Corpus Christi", + "1963-06-23": "Independence Day", + "1963-06-29": "Saints Peter and Paul", + "1963-08-01": "National Day", + "1963-08-15": "Assumption of Mary", + "1963-09-05": "Genevan Fast", + "1963-09-16": "Prayer Monday", + "1963-09-25": "St. Nicholas of Fl\u00fce", + "1963-11-01": "All Saints' Day", + "1963-12-08": "Immaculate Conception", + "1963-12-25": "Christmas Day", + "1963-12-26": "St. Stephen's Day", + "1963-12-31": "Restoration Day", + "1964-01-01": "New Year's Day", + "1964-01-02": "Berchtold's Day", + "1964-01-06": "Epiphany", + "1964-03-01": "Republic Day", + "1964-03-19": "St. Joseph's Day", + "1964-03-27": "Good Friday", + "1964-03-29": "Easter Sunday", + "1964-03-30": "Easter Monday", + "1964-04-02": "Battle of Naefels Victory Day", + "1964-05-01": "Labor Day", + "1964-05-07": "Ascension Day", + "1964-05-17": "Whit Sunday", + "1964-05-18": "Whit Monday", + "1964-05-28": "Corpus Christi", + "1964-06-23": "Independence Day", + "1964-06-29": "Saints Peter and Paul", + "1964-08-01": "National Day", + "1964-08-15": "Assumption of Mary", + "1964-09-10": "Genevan Fast", + "1964-09-21": "Prayer Monday", + "1964-09-25": "St. Nicholas of Fl\u00fce", + "1964-11-01": "All Saints' Day", + "1964-12-08": "Immaculate Conception", + "1964-12-25": "Christmas Day", + "1964-12-26": "St. Stephen's Day", + "1964-12-31": "Restoration Day", + "1965-01-01": "New Year's Day", + "1965-01-02": "Berchtold's Day", + "1965-01-06": "Epiphany", + "1965-03-01": "Republic Day", + "1965-03-19": "St. Joseph's Day", + "1965-04-01": "Battle of Naefels Victory Day", + "1965-04-16": "Good Friday", + "1965-04-18": "Easter Sunday", + "1965-04-19": "Easter Monday", + "1965-05-01": "Labor Day", + "1965-05-27": "Ascension Day", + "1965-06-06": "Whit Sunday", + "1965-06-07": "Whit Monday", + "1965-06-17": "Corpus Christi", + "1965-06-23": "Independence Day", + "1965-06-29": "Saints Peter and Paul", + "1965-08-01": "National Day", + "1965-08-15": "Assumption of Mary", + "1965-09-09": "Genevan Fast", + "1965-09-20": "Prayer Monday", + "1965-09-25": "St. Nicholas of Fl\u00fce", + "1965-11-01": "All Saints' Day", + "1965-12-08": "Immaculate Conception", + "1965-12-25": "Christmas Day", + "1965-12-26": "St. Stephen's Day", + "1965-12-31": "Restoration Day", + "1966-01-01": "New Year's Day", + "1966-01-02": "Berchtold's Day", + "1966-01-06": "Epiphany", + "1966-03-01": "Republic Day", + "1966-03-19": "St. Joseph's Day", + "1966-04-08": "Good Friday", + "1966-04-10": "Easter Sunday", + "1966-04-11": "Easter Monday", + "1966-04-14": "Battle of Naefels Victory Day", + "1966-05-01": "Labor Day", + "1966-05-19": "Ascension Day", + "1966-05-29": "Whit Sunday", + "1966-05-30": "Whit Monday", + "1966-06-09": "Corpus Christi", + "1966-06-23": "Independence Day", + "1966-06-29": "Saints Peter and Paul", + "1966-08-01": "National Day", + "1966-08-15": "Assumption of Mary", + "1966-09-08": "Genevan Fast", + "1966-09-19": "Prayer Monday", + "1966-09-25": "St. Nicholas of Fl\u00fce", + "1966-11-01": "All Saints' Day", + "1966-12-08": "Immaculate Conception", + "1966-12-25": "Christmas Day", + "1966-12-26": "St. Stephen's Day", + "1966-12-31": "Restoration Day", + "1967-01-01": "New Year's Day", + "1967-01-02": "Berchtold's Day", + "1967-01-06": "Epiphany", + "1967-03-01": "Republic Day", + "1967-03-19": "St. Joseph's Day", + "1967-03-24": "Good Friday", + "1967-03-26": "Easter Sunday", + "1967-03-27": "Easter Monday", + "1967-04-06": "Battle of Naefels Victory Day", + "1967-05-01": "Labor Day", + "1967-05-04": "Ascension Day", + "1967-05-14": "Whit Sunday", + "1967-05-15": "Whit Monday", + "1967-05-25": "Corpus Christi", + "1967-06-23": "Independence Day", + "1967-06-29": "Saints Peter and Paul", + "1967-08-01": "National Day", + "1967-08-15": "Assumption of Mary", + "1967-09-07": "Genevan Fast", + "1967-09-18": "Prayer Monday", + "1967-09-25": "St. Nicholas of Fl\u00fce", + "1967-11-01": "All Saints' Day", + "1967-12-08": "Immaculate Conception", + "1967-12-25": "Christmas Day", + "1967-12-26": "St. Stephen's Day", + "1967-12-31": "Restoration Day", + "1968-01-01": "New Year's Day", + "1968-01-02": "Berchtold's Day", + "1968-01-06": "Epiphany", + "1968-03-01": "Republic Day", + "1968-03-19": "St. Joseph's Day", + "1968-04-04": "Battle of Naefels Victory Day", + "1968-04-12": "Good Friday", + "1968-04-14": "Easter Sunday", + "1968-04-15": "Easter Monday", + "1968-05-01": "Labor Day", + "1968-05-23": "Ascension Day", + "1968-06-02": "Whit Sunday", + "1968-06-03": "Whit Monday", + "1968-06-13": "Corpus Christi", + "1968-06-23": "Independence Day", + "1968-06-29": "Saints Peter and Paul", + "1968-08-01": "National Day", + "1968-08-15": "Assumption of Mary", + "1968-09-05": "Genevan Fast", + "1968-09-16": "Prayer Monday", + "1968-09-25": "St. Nicholas of Fl\u00fce", + "1968-11-01": "All Saints' Day", + "1968-12-08": "Immaculate Conception", + "1968-12-25": "Christmas Day", + "1968-12-26": "St. Stephen's Day", + "1968-12-31": "Restoration Day", + "1969-01-01": "New Year's Day", + "1969-01-02": "Berchtold's Day", + "1969-01-06": "Epiphany", + "1969-03-01": "Republic Day", + "1969-03-19": "St. Joseph's Day", + "1969-04-04": "Good Friday", + "1969-04-06": "Easter Sunday", + "1969-04-07": "Easter Monday", + "1969-04-10": "Battle of Naefels Victory Day", + "1969-05-01": "Labor Day", + "1969-05-15": "Ascension Day", + "1969-05-25": "Whit Sunday", + "1969-05-26": "Whit Monday", + "1969-06-05": "Corpus Christi", + "1969-06-23": "Independence Day", + "1969-06-29": "Saints Peter and Paul", + "1969-08-01": "National Day", + "1969-08-15": "Assumption of Mary", + "1969-09-11": "Genevan Fast", + "1969-09-22": "Prayer Monday", + "1969-09-25": "St. Nicholas of Fl\u00fce", + "1969-11-01": "All Saints' Day", + "1969-12-08": "Immaculate Conception", + "1969-12-25": "Christmas Day", + "1969-12-26": "St. Stephen's Day", + "1969-12-31": "Restoration Day", + "1970-01-01": "New Year's Day", + "1970-01-02": "Berchtold's Day", + "1970-01-06": "Epiphany", + "1970-03-01": "Republic Day", + "1970-03-19": "St. Joseph's Day", + "1970-03-27": "Good Friday", + "1970-03-29": "Easter Sunday", + "1970-03-30": "Easter Monday", + "1970-04-02": "Battle of Naefels Victory Day", + "1970-05-01": "Labor Day", + "1970-05-07": "Ascension Day", + "1970-05-17": "Whit Sunday", + "1970-05-18": "Whit Monday", + "1970-05-28": "Corpus Christi", + "1970-06-23": "Independence Day", + "1970-06-29": "Saints Peter and Paul", + "1970-08-01": "National Day", + "1970-08-15": "Assumption of Mary", + "1970-09-10": "Genevan Fast", + "1970-09-21": "Prayer Monday", + "1970-09-25": "St. Nicholas of Fl\u00fce", + "1970-11-01": "All Saints' Day", + "1970-12-08": "Immaculate Conception", + "1970-12-25": "Christmas Day", + "1970-12-26": "St. Stephen's Day", + "1970-12-31": "Restoration Day", + "1971-01-01": "New Year's Day", + "1971-01-02": "Berchtold's Day", + "1971-01-06": "Epiphany", + "1971-03-01": "Republic Day", + "1971-03-19": "St. Joseph's Day", + "1971-04-01": "Battle of Naefels Victory Day", + "1971-04-09": "Good Friday", + "1971-04-11": "Easter Sunday", + "1971-04-12": "Easter Monday", + "1971-05-01": "Labor Day", + "1971-05-20": "Ascension Day", + "1971-05-30": "Whit Sunday", + "1971-05-31": "Whit Monday", + "1971-06-10": "Corpus Christi", + "1971-06-23": "Independence Day", + "1971-06-29": "Saints Peter and Paul", + "1971-08-01": "National Day", + "1971-08-15": "Assumption of Mary", + "1971-09-09": "Genevan Fast", + "1971-09-20": "Prayer Monday", + "1971-09-25": "St. Nicholas of Fl\u00fce", + "1971-11-01": "All Saints' Day", + "1971-12-08": "Immaculate Conception", + "1971-12-25": "Christmas Day", + "1971-12-26": "St. Stephen's Day", + "1971-12-31": "Restoration Day", + "1972-01-01": "New Year's Day", + "1972-01-02": "Berchtold's Day", + "1972-01-06": "Epiphany", + "1972-03-01": "Republic Day", + "1972-03-19": "St. Joseph's Day", + "1972-03-31": "Good Friday", + "1972-04-02": "Easter Sunday", + "1972-04-03": "Easter Monday", + "1972-04-06": "Battle of Naefels Victory Day", + "1972-05-01": "Labor Day", + "1972-05-11": "Ascension Day", + "1972-05-21": "Whit Sunday", + "1972-05-22": "Whit Monday", + "1972-06-01": "Corpus Christi", + "1972-06-23": "Independence Day", + "1972-06-29": "Saints Peter and Paul", + "1972-08-01": "National Day", + "1972-08-15": "Assumption of Mary", + "1972-09-07": "Genevan Fast", + "1972-09-18": "Prayer Monday", + "1972-09-25": "St. Nicholas of Fl\u00fce", + "1972-11-01": "All Saints' Day", + "1972-12-08": "Immaculate Conception", + "1972-12-25": "Christmas Day", + "1972-12-26": "St. Stephen's Day", + "1972-12-31": "Restoration Day", + "1973-01-01": "New Year's Day", + "1973-01-02": "Berchtold's Day", + "1973-01-06": "Epiphany", + "1973-03-01": "Republic Day", + "1973-03-19": "St. Joseph's Day", + "1973-04-05": "Battle of Naefels Victory Day", + "1973-04-20": "Good Friday", + "1973-04-22": "Easter Sunday", + "1973-04-23": "Easter Monday", + "1973-05-01": "Labor Day", + "1973-05-31": "Ascension Day", + "1973-06-10": "Whit Sunday", + "1973-06-11": "Whit Monday", + "1973-06-21": "Corpus Christi", + "1973-06-23": "Independence Day", + "1973-06-29": "Saints Peter and Paul", + "1973-08-01": "National Day", + "1973-08-15": "Assumption of Mary", + "1973-09-06": "Genevan Fast", + "1973-09-17": "Prayer Monday", + "1973-09-25": "St. Nicholas of Fl\u00fce", + "1973-11-01": "All Saints' Day", + "1973-12-08": "Immaculate Conception", + "1973-12-25": "Christmas Day", + "1973-12-26": "St. Stephen's Day", + "1973-12-31": "Restoration Day", + "1974-01-01": "New Year's Day", + "1974-01-02": "Berchtold's Day", + "1974-01-06": "Epiphany", + "1974-03-01": "Republic Day", + "1974-03-19": "St. Joseph's Day", + "1974-04-04": "Battle of Naefels Victory Day", + "1974-04-12": "Good Friday", + "1974-04-14": "Easter Sunday", + "1974-04-15": "Easter Monday", + "1974-05-01": "Labor Day", + "1974-05-23": "Ascension Day", + "1974-06-02": "Whit Sunday", + "1974-06-03": "Whit Monday", + "1974-06-13": "Corpus Christi", + "1974-06-23": "Independence Day", + "1974-06-29": "Saints Peter and Paul", + "1974-08-01": "National Day", + "1974-08-15": "Assumption of Mary", + "1974-09-05": "Genevan Fast", + "1974-09-16": "Prayer Monday", + "1974-09-25": "St. Nicholas of Fl\u00fce", + "1974-11-01": "All Saints' Day", + "1974-12-08": "Immaculate Conception", + "1974-12-25": "Christmas Day", + "1974-12-26": "St. Stephen's Day", + "1974-12-31": "Restoration Day", + "1975-01-01": "New Year's Day", + "1975-01-02": "Berchtold's Day", + "1975-01-06": "Epiphany", + "1975-03-01": "Republic Day", + "1975-03-19": "St. Joseph's Day", + "1975-03-28": "Good Friday", + "1975-03-30": "Easter Sunday", + "1975-03-31": "Easter Monday", + "1975-04-03": "Battle of Naefels Victory Day", + "1975-05-01": "Labor Day", + "1975-05-08": "Ascension Day", + "1975-05-18": "Whit Sunday", + "1975-05-19": "Whit Monday", + "1975-05-29": "Corpus Christi", + "1975-06-23": "Independence Day", + "1975-06-29": "Saints Peter and Paul", + "1975-08-01": "National Day", + "1975-08-15": "Assumption of Mary", + "1975-09-11": "Genevan Fast", + "1975-09-22": "Prayer Monday", + "1975-09-25": "St. Nicholas of Fl\u00fce", + "1975-11-01": "All Saints' Day", + "1975-12-08": "Immaculate Conception", + "1975-12-25": "Christmas Day", + "1975-12-26": "St. Stephen's Day", + "1975-12-31": "Restoration Day", + "1976-01-01": "New Year's Day", + "1976-01-02": "Berchtold's Day", + "1976-01-06": "Epiphany", + "1976-03-01": "Republic Day", + "1976-03-19": "St. Joseph's Day", + "1976-04-01": "Battle of Naefels Victory Day", + "1976-04-16": "Good Friday", + "1976-04-18": "Easter Sunday", + "1976-04-19": "Easter Monday", + "1976-05-01": "Labor Day", + "1976-05-27": "Ascension Day", + "1976-06-06": "Whit Sunday", + "1976-06-07": "Whit Monday", + "1976-06-17": "Corpus Christi", + "1976-06-23": "Independence Day", + "1976-06-29": "Saints Peter and Paul", + "1976-08-01": "National Day", + "1976-08-15": "Assumption of Mary", + "1976-09-09": "Genevan Fast", + "1976-09-20": "Prayer Monday", + "1976-09-25": "St. Nicholas of Fl\u00fce", + "1976-11-01": "All Saints' Day", + "1976-12-08": "Immaculate Conception", + "1976-12-25": "Christmas Day", + "1976-12-26": "St. Stephen's Day", + "1976-12-31": "Restoration Day", + "1977-01-01": "New Year's Day", + "1977-01-02": "Berchtold's Day", + "1977-01-06": "Epiphany", + "1977-03-01": "Republic Day", + "1977-03-19": "St. Joseph's Day", + "1977-04-08": "Good Friday", + "1977-04-10": "Easter Sunday", + "1977-04-11": "Easter Monday", + "1977-04-14": "Battle of Naefels Victory Day", + "1977-05-01": "Labor Day", + "1977-05-19": "Ascension Day", + "1977-05-29": "Whit Sunday", + "1977-05-30": "Whit Monday", + "1977-06-09": "Corpus Christi", + "1977-06-23": "Independence Day", + "1977-06-29": "Saints Peter and Paul", + "1977-08-01": "National Day", + "1977-08-15": "Assumption of Mary", + "1977-09-08": "Genevan Fast", + "1977-09-19": "Prayer Monday", + "1977-09-25": "St. Nicholas of Fl\u00fce", + "1977-11-01": "All Saints' Day", + "1977-12-08": "Immaculate Conception", + "1977-12-25": "Christmas Day", + "1977-12-26": "St. Stephen's Day", + "1977-12-31": "Restoration Day", + "1978-01-01": "New Year's Day", + "1978-01-02": "Berchtold's Day", + "1978-01-06": "Epiphany", + "1978-03-01": "Republic Day", + "1978-03-19": "St. Joseph's Day", + "1978-03-24": "Good Friday", + "1978-03-26": "Easter Sunday", + "1978-03-27": "Easter Monday", + "1978-04-06": "Battle of Naefels Victory Day", + "1978-05-01": "Labor Day", + "1978-05-04": "Ascension Day", + "1978-05-14": "Whit Sunday", + "1978-05-15": "Whit Monday", + "1978-05-25": "Corpus Christi", + "1978-06-23": "Independence Day", + "1978-06-29": "Saints Peter and Paul", + "1978-08-01": "National Day", + "1978-08-15": "Assumption of Mary", + "1978-09-07": "Genevan Fast", + "1978-09-18": "Prayer Monday", + "1978-09-25": "St. Nicholas of Fl\u00fce", + "1978-11-01": "All Saints' Day", + "1978-12-08": "Immaculate Conception", + "1978-12-25": "Christmas Day", + "1978-12-26": "St. Stephen's Day", + "1978-12-31": "Restoration Day", + "1979-01-01": "New Year's Day", + "1979-01-02": "Berchtold's Day", + "1979-01-06": "Epiphany", + "1979-03-01": "Republic Day", + "1979-03-19": "St. Joseph's Day", + "1979-04-05": "Battle of Naefels Victory Day", + "1979-04-13": "Good Friday", + "1979-04-15": "Easter Sunday", + "1979-04-16": "Easter Monday", + "1979-05-01": "Labor Day", + "1979-05-24": "Ascension Day", + "1979-06-03": "Whit Sunday", + "1979-06-04": "Whit Monday", + "1979-06-14": "Corpus Christi", + "1979-06-23": "Independence Day", + "1979-06-29": "Saints Peter and Paul", + "1979-08-01": "National Day", + "1979-08-15": "Assumption of Mary", + "1979-09-06": "Genevan Fast", + "1979-09-17": "Prayer Monday", + "1979-09-25": "St. Nicholas of Fl\u00fce", + "1979-11-01": "All Saints' Day", + "1979-12-08": "Immaculate Conception", + "1979-12-25": "Christmas Day", + "1979-12-26": "St. Stephen's Day", + "1979-12-31": "Restoration Day", + "1980-01-01": "New Year's Day", + "1980-01-02": "Berchtold's Day", + "1980-01-06": "Epiphany", + "1980-03-01": "Republic Day", + "1980-03-19": "St. Joseph's Day", + "1980-04-04": "Good Friday", + "1980-04-06": "Easter Sunday", + "1980-04-07": "Easter Monday", + "1980-04-10": "Battle of Naefels Victory Day", + "1980-05-01": "Labor Day", + "1980-05-15": "Ascension Day", + "1980-05-25": "Whit Sunday", + "1980-05-26": "Whit Monday", + "1980-06-05": "Corpus Christi", + "1980-06-23": "Independence Day", + "1980-06-29": "Saints Peter and Paul", + "1980-08-01": "National Day", + "1980-08-15": "Assumption of Mary", + "1980-09-11": "Genevan Fast", + "1980-09-22": "Prayer Monday", + "1980-09-25": "St. Nicholas of Fl\u00fce", + "1980-11-01": "All Saints' Day", + "1980-12-08": "Immaculate Conception", + "1980-12-25": "Christmas Day", + "1980-12-26": "St. Stephen's Day", + "1980-12-31": "Restoration Day", + "1981-01-01": "New Year's Day", + "1981-01-02": "Berchtold's Day", + "1981-01-06": "Epiphany", + "1981-03-01": "Republic Day", + "1981-03-19": "St. Joseph's Day", + "1981-04-02": "Battle of Naefels Victory Day", + "1981-04-17": "Good Friday", + "1981-04-19": "Easter Sunday", + "1981-04-20": "Easter Monday", + "1981-05-01": "Labor Day", + "1981-05-28": "Ascension Day", + "1981-06-07": "Whit Sunday", + "1981-06-08": "Whit Monday", + "1981-06-18": "Corpus Christi", + "1981-06-23": "Independence Day", + "1981-06-29": "Saints Peter and Paul", + "1981-08-01": "National Day", + "1981-08-15": "Assumption of Mary", + "1981-09-10": "Genevan Fast", + "1981-09-21": "Prayer Monday", + "1981-09-25": "St. Nicholas of Fl\u00fce", + "1981-11-01": "All Saints' Day", + "1981-12-08": "Immaculate Conception", + "1981-12-25": "Christmas Day", + "1981-12-26": "St. Stephen's Day", + "1981-12-31": "Restoration Day", + "1982-01-01": "New Year's Day", + "1982-01-02": "Berchtold's Day", + "1982-01-06": "Epiphany", + "1982-03-01": "Republic Day", + "1982-03-19": "St. Joseph's Day", + "1982-04-01": "Battle of Naefels Victory Day", + "1982-04-09": "Good Friday", + "1982-04-11": "Easter Sunday", + "1982-04-12": "Easter Monday", + "1982-05-01": "Labor Day", + "1982-05-20": "Ascension Day", + "1982-05-30": "Whit Sunday", + "1982-05-31": "Whit Monday", + "1982-06-10": "Corpus Christi", + "1982-06-23": "Independence Day", + "1982-06-29": "Saints Peter and Paul", + "1982-08-01": "National Day", + "1982-08-15": "Assumption of Mary", + "1982-09-09": "Genevan Fast", + "1982-09-20": "Prayer Monday", + "1982-09-25": "St. Nicholas of Fl\u00fce", + "1982-11-01": "All Saints' Day", + "1982-12-08": "Immaculate Conception", + "1982-12-25": "Christmas Day", + "1982-12-26": "St. Stephen's Day", + "1982-12-31": "Restoration Day", + "1983-01-01": "New Year's Day", + "1983-01-02": "Berchtold's Day", + "1983-01-06": "Epiphany", + "1983-03-01": "Republic Day", + "1983-03-19": "St. Joseph's Day", + "1983-04-01": "Good Friday", + "1983-04-03": "Easter Sunday", + "1983-04-04": "Easter Monday", + "1983-04-07": "Battle of Naefels Victory Day", + "1983-05-01": "Labor Day", + "1983-05-12": "Ascension Day", + "1983-05-22": "Whit Sunday", + "1983-05-23": "Whit Monday", + "1983-06-02": "Corpus Christi", + "1983-06-23": "Independence Day", + "1983-06-29": "Saints Peter and Paul", + "1983-08-01": "National Day", + "1983-08-15": "Assumption of Mary", + "1983-09-08": "Genevan Fast", + "1983-09-19": "Prayer Monday", + "1983-09-25": "St. Nicholas of Fl\u00fce", + "1983-11-01": "All Saints' Day", + "1983-12-08": "Immaculate Conception", + "1983-12-25": "Christmas Day", + "1983-12-26": "St. Stephen's Day", + "1983-12-31": "Restoration Day", + "1984-01-01": "New Year's Day", + "1984-01-02": "Berchtold's Day", + "1984-01-06": "Epiphany", + "1984-03-01": "Republic Day", + "1984-03-19": "St. Joseph's Day", + "1984-04-05": "Battle of Naefels Victory Day", + "1984-04-20": "Good Friday", + "1984-04-22": "Easter Sunday", + "1984-04-23": "Easter Monday", + "1984-05-01": "Labor Day", + "1984-05-31": "Ascension Day", + "1984-06-10": "Whit Sunday", + "1984-06-11": "Whit Monday", + "1984-06-21": "Corpus Christi", + "1984-06-23": "Independence Day", + "1984-06-29": "Saints Peter and Paul", + "1984-08-01": "National Day", + "1984-08-15": "Assumption of Mary", + "1984-09-06": "Genevan Fast", + "1984-09-17": "Prayer Monday", + "1984-09-25": "St. Nicholas of Fl\u00fce", + "1984-11-01": "All Saints' Day", + "1984-12-08": "Immaculate Conception", + "1984-12-25": "Christmas Day", + "1984-12-26": "St. Stephen's Day", + "1984-12-31": "Restoration Day", + "1985-01-01": "New Year's Day", + "1985-01-02": "Berchtold's Day", + "1985-01-06": "Epiphany", + "1985-03-01": "Republic Day", + "1985-03-19": "St. Joseph's Day", + "1985-04-05": "Good Friday", + "1985-04-07": "Easter Sunday", + "1985-04-08": "Easter Monday", + "1985-04-11": "Battle of Naefels Victory Day", + "1985-05-01": "Labor Day", + "1985-05-16": "Ascension Day", + "1985-05-26": "Whit Sunday", + "1985-05-27": "Whit Monday", + "1985-06-06": "Corpus Christi", + "1985-06-23": "Independence Day", + "1985-06-29": "Saints Peter and Paul", + "1985-08-01": "National Day", + "1985-08-15": "Assumption of Mary", + "1985-09-05": "Genevan Fast", + "1985-09-16": "Prayer Monday", + "1985-09-25": "St. Nicholas of Fl\u00fce", + "1985-11-01": "All Saints' Day", + "1985-12-08": "Immaculate Conception", + "1985-12-25": "Christmas Day", + "1985-12-26": "St. Stephen's Day", + "1985-12-31": "Restoration Day", + "1986-01-01": "New Year's Day", + "1986-01-02": "Berchtold's Day", + "1986-01-06": "Epiphany", + "1986-03-01": "Republic Day", + "1986-03-19": "St. Joseph's Day", + "1986-03-28": "Good Friday", + "1986-03-30": "Easter Sunday", + "1986-03-31": "Easter Monday", + "1986-04-03": "Battle of Naefels Victory Day", + "1986-05-01": "Labor Day", + "1986-05-08": "Ascension Day", + "1986-05-18": "Whit Sunday", + "1986-05-19": "Whit Monday", + "1986-05-29": "Corpus Christi", + "1986-06-23": "Independence Day", + "1986-06-29": "Saints Peter and Paul", + "1986-08-01": "National Day", + "1986-08-15": "Assumption of Mary", + "1986-09-11": "Genevan Fast", + "1986-09-22": "Prayer Monday", + "1986-09-25": "St. Nicholas of Fl\u00fce", + "1986-11-01": "All Saints' Day", + "1986-12-08": "Immaculate Conception", + "1986-12-25": "Christmas Day", + "1986-12-26": "St. Stephen's Day", + "1986-12-31": "Restoration Day", + "1987-01-01": "New Year's Day", + "1987-01-02": "Berchtold's Day", + "1987-01-06": "Epiphany", + "1987-03-01": "Republic Day", + "1987-03-19": "St. Joseph's Day", + "1987-04-02": "Battle of Naefels Victory Day", + "1987-04-17": "Good Friday", + "1987-04-19": "Easter Sunday", + "1987-04-20": "Easter Monday", + "1987-05-01": "Labor Day", + "1987-05-28": "Ascension Day", + "1987-06-07": "Whit Sunday", + "1987-06-08": "Whit Monday", + "1987-06-18": "Corpus Christi", + "1987-06-23": "Independence Day", + "1987-06-29": "Saints Peter and Paul", + "1987-08-01": "National Day", + "1987-08-15": "Assumption of Mary", + "1987-09-10": "Genevan Fast", + "1987-09-21": "Prayer Monday", + "1987-09-25": "St. Nicholas of Fl\u00fce", + "1987-11-01": "All Saints' Day", + "1987-12-08": "Immaculate Conception", + "1987-12-25": "Christmas Day", + "1987-12-26": "St. Stephen's Day", + "1987-12-31": "Restoration Day", + "1988-01-01": "New Year's Day", + "1988-01-02": "Berchtold's Day", + "1988-01-06": "Epiphany", + "1988-03-01": "Republic Day", + "1988-03-19": "St. Joseph's Day", + "1988-04-01": "Good Friday", + "1988-04-03": "Easter Sunday", + "1988-04-04": "Easter Monday", + "1988-04-07": "Battle of Naefels Victory Day", + "1988-05-01": "Labor Day", + "1988-05-12": "Ascension Day", + "1988-05-22": "Whit Sunday", + "1988-05-23": "Whit Monday", + "1988-06-02": "Corpus Christi", + "1988-06-23": "Independence Day", + "1988-06-29": "Saints Peter and Paul", + "1988-08-01": "National Day", + "1988-08-15": "Assumption of Mary", + "1988-09-08": "Genevan Fast", + "1988-09-19": "Prayer Monday", + "1988-09-25": "St. Nicholas of Fl\u00fce", + "1988-11-01": "All Saints' Day", + "1988-12-08": "Immaculate Conception", + "1988-12-25": "Christmas Day", + "1988-12-26": "St. Stephen's Day", + "1988-12-31": "Restoration Day", + "1989-01-01": "New Year's Day", + "1989-01-02": "Berchtold's Day", + "1989-01-06": "Epiphany", + "1989-03-01": "Republic Day", + "1989-03-19": "St. Joseph's Day", + "1989-03-24": "Good Friday", + "1989-03-26": "Easter Sunday", + "1989-03-27": "Easter Monday", + "1989-04-06": "Battle of Naefels Victory Day", + "1989-05-01": "Labor Day", + "1989-05-04": "Ascension Day", + "1989-05-14": "Whit Sunday", + "1989-05-15": "Whit Monday", + "1989-05-25": "Corpus Christi", + "1989-06-23": "Independence Day", + "1989-06-29": "Saints Peter and Paul", + "1989-08-01": "National Day", + "1989-08-15": "Assumption of Mary", + "1989-09-07": "Genevan Fast", + "1989-09-18": "Prayer Monday", + "1989-09-25": "St. Nicholas of Fl\u00fce", + "1989-11-01": "All Saints' Day", + "1989-12-08": "Immaculate Conception", + "1989-12-25": "Christmas Day", + "1989-12-26": "St. Stephen's Day", + "1989-12-31": "Restoration Day", + "1990-01-01": "New Year's Day", + "1990-01-02": "Berchtold's Day", + "1990-01-06": "Epiphany", + "1990-03-01": "Republic Day", + "1990-03-19": "St. Joseph's Day", + "1990-04-05": "Battle of Naefels Victory Day", + "1990-04-13": "Good Friday", + "1990-04-15": "Easter Sunday", + "1990-04-16": "Easter Monday", + "1990-05-01": "Labor Day", + "1990-05-24": "Ascension Day", + "1990-06-03": "Whit Sunday", + "1990-06-04": "Whit Monday", + "1990-06-14": "Corpus Christi", + "1990-06-23": "Independence Day", + "1990-06-29": "Saints Peter and Paul", + "1990-08-01": "National Day", + "1990-08-15": "Assumption of Mary", + "1990-09-06": "Genevan Fast", + "1990-09-17": "Prayer Monday", + "1990-09-25": "St. Nicholas of Fl\u00fce", + "1990-11-01": "All Saints' Day", + "1990-12-08": "Immaculate Conception", + "1990-12-25": "Christmas Day", + "1990-12-26": "St. Stephen's Day", + "1990-12-31": "Restoration Day", + "1991-01-01": "New Year's Day", + "1991-01-02": "Berchtold's Day", + "1991-01-06": "Epiphany", + "1991-03-01": "Republic Day", + "1991-03-19": "St. Joseph's Day", + "1991-03-29": "Good Friday", + "1991-03-31": "Easter Sunday", + "1991-04-01": "Easter Monday", + "1991-04-04": "Battle of Naefels Victory Day", + "1991-05-01": "Labor Day", + "1991-05-09": "Ascension Day", + "1991-05-19": "Whit Sunday", + "1991-05-20": "Whit Monday", + "1991-05-30": "Corpus Christi", + "1991-06-23": "Independence Day", + "1991-06-29": "Saints Peter and Paul", + "1991-08-01": "National Day", + "1991-08-15": "Assumption of Mary", + "1991-09-05": "Genevan Fast", + "1991-09-16": "Prayer Monday", + "1991-09-25": "St. Nicholas of Fl\u00fce", + "1991-11-01": "All Saints' Day", + "1991-12-08": "Immaculate Conception", + "1991-12-25": "Christmas Day", + "1991-12-26": "St. Stephen's Day", + "1991-12-31": "Restoration Day", + "1992-01-01": "New Year's Day", + "1992-01-02": "Berchtold's Day", + "1992-01-06": "Epiphany", + "1992-03-01": "Republic Day", + "1992-03-19": "St. Joseph's Day", + "1992-04-02": "Battle of Naefels Victory Day", + "1992-04-17": "Good Friday", + "1992-04-19": "Easter Sunday", + "1992-04-20": "Easter Monday", + "1992-05-01": "Labor Day", + "1992-05-28": "Ascension Day", + "1992-06-07": "Whit Sunday", + "1992-06-08": "Whit Monday", + "1992-06-18": "Corpus Christi", + "1992-06-23": "Independence Day", + "1992-06-29": "Saints Peter and Paul", + "1992-08-01": "National Day", + "1992-08-15": "Assumption of Mary", + "1992-09-10": "Genevan Fast", + "1992-09-21": "Prayer Monday", + "1992-09-25": "St. Nicholas of Fl\u00fce", + "1992-11-01": "All Saints' Day", + "1992-12-08": "Immaculate Conception", + "1992-12-25": "Christmas Day", + "1992-12-26": "St. Stephen's Day", + "1992-12-31": "Restoration Day", + "1993-01-01": "New Year's Day", + "1993-01-02": "Berchtold's Day", + "1993-01-06": "Epiphany", + "1993-03-01": "Republic Day", + "1993-03-19": "St. Joseph's Day", + "1993-04-01": "Battle of Naefels Victory Day", + "1993-04-09": "Good Friday", + "1993-04-11": "Easter Sunday", + "1993-04-12": "Easter Monday", + "1993-05-01": "Labor Day", + "1993-05-20": "Ascension Day", + "1993-05-30": "Whit Sunday", + "1993-05-31": "Whit Monday", + "1993-06-10": "Corpus Christi", + "1993-06-23": "Independence Day", + "1993-06-29": "Saints Peter and Paul", + "1993-08-01": "National Day", + "1993-08-15": "Assumption of Mary", + "1993-09-09": "Genevan Fast", + "1993-09-20": "Prayer Monday", + "1993-09-25": "St. Nicholas of Fl\u00fce", + "1993-11-01": "All Saints' Day", + "1993-12-08": "Immaculate Conception", + "1993-12-25": "Christmas Day", + "1993-12-26": "St. Stephen's Day", + "1993-12-31": "Restoration Day", + "1994-01-01": "New Year's Day", + "1994-01-02": "Berchtold's Day", + "1994-01-06": "Epiphany", + "1994-03-01": "Republic Day", + "1994-03-19": "St. Joseph's Day", + "1994-04-01": "Good Friday", + "1994-04-03": "Easter Sunday", + "1994-04-04": "Easter Monday", + "1994-04-07": "Battle of Naefels Victory Day", + "1994-05-01": "Labor Day", + "1994-05-12": "Ascension Day", + "1994-05-22": "Whit Sunday", + "1994-05-23": "Whit Monday", + "1994-06-02": "Corpus Christi", + "1994-06-23": "Independence Day", + "1994-06-29": "Saints Peter and Paul", + "1994-08-01": "National Day", + "1994-08-15": "Assumption of Mary", + "1994-09-08": "Genevan Fast", + "1994-09-19": "Prayer Monday", + "1994-09-25": "St. Nicholas of Fl\u00fce", + "1994-11-01": "All Saints' Day", + "1994-12-08": "Immaculate Conception", + "1994-12-25": "Christmas Day", + "1994-12-26": "St. Stephen's Day", + "1994-12-31": "Restoration Day", + "1995-01-01": "New Year's Day", + "1995-01-02": "Berchtold's Day", + "1995-01-06": "Epiphany", + "1995-03-01": "Republic Day", + "1995-03-19": "St. Joseph's Day", + "1995-04-06": "Battle of Naefels Victory Day", + "1995-04-14": "Good Friday", + "1995-04-16": "Easter Sunday", + "1995-04-17": "Easter Monday", + "1995-05-01": "Labor Day", + "1995-05-25": "Ascension Day", + "1995-06-04": "Whit Sunday", + "1995-06-05": "Whit Monday", + "1995-06-15": "Corpus Christi", + "1995-06-23": "Independence Day", + "1995-06-29": "Saints Peter and Paul", + "1995-08-01": "National Day", + "1995-08-15": "Assumption of Mary", + "1995-09-07": "Genevan Fast", + "1995-09-18": "Prayer Monday", + "1995-09-25": "St. Nicholas of Fl\u00fce", + "1995-11-01": "All Saints' Day", + "1995-12-08": "Immaculate Conception", + "1995-12-25": "Christmas Day", + "1995-12-26": "St. Stephen's Day", + "1995-12-31": "Restoration Day", + "1996-01-01": "New Year's Day", + "1996-01-02": "Berchtold's Day", + "1996-01-06": "Epiphany", + "1996-03-01": "Republic Day", + "1996-03-19": "St. Joseph's Day", + "1996-04-05": "Good Friday", + "1996-04-07": "Easter Sunday", + "1996-04-08": "Easter Monday", + "1996-04-11": "Battle of Naefels Victory Day", + "1996-05-01": "Labor Day", + "1996-05-16": "Ascension Day", + "1996-05-26": "Whit Sunday", + "1996-05-27": "Whit Monday", + "1996-06-06": "Corpus Christi", + "1996-06-23": "Independence Day", + "1996-06-29": "Saints Peter and Paul", + "1996-08-01": "National Day", + "1996-08-15": "Assumption of Mary", + "1996-09-05": "Genevan Fast", + "1996-09-16": "Prayer Monday", + "1996-09-25": "St. Nicholas of Fl\u00fce", + "1996-11-01": "All Saints' Day", + "1996-12-08": "Immaculate Conception", + "1996-12-25": "Christmas Day", + "1996-12-26": "St. Stephen's Day", + "1996-12-31": "Restoration Day", + "1997-01-01": "New Year's Day", + "1997-01-02": "Berchtold's Day", + "1997-01-06": "Epiphany", + "1997-03-01": "Republic Day", + "1997-03-19": "St. Joseph's Day", + "1997-03-28": "Good Friday", + "1997-03-30": "Easter Sunday", + "1997-03-31": "Easter Monday", + "1997-04-03": "Battle of Naefels Victory Day", + "1997-05-01": "Labor Day", + "1997-05-08": "Ascension Day", + "1997-05-18": "Whit Sunday", + "1997-05-19": "Whit Monday", + "1997-05-29": "Corpus Christi", + "1997-06-23": "Independence Day", + "1997-06-29": "Saints Peter and Paul", + "1997-08-01": "National Day", + "1997-08-15": "Assumption of Mary", + "1997-09-11": "Genevan Fast", + "1997-09-22": "Prayer Monday", + "1997-09-25": "St. Nicholas of Fl\u00fce", + "1997-11-01": "All Saints' Day", + "1997-12-08": "Immaculate Conception", + "1997-12-25": "Christmas Day", + "1997-12-26": "St. Stephen's Day", + "1997-12-31": "Restoration Day", + "1998-01-01": "New Year's Day", + "1998-01-02": "Berchtold's Day", + "1998-01-06": "Epiphany", + "1998-03-01": "Republic Day", + "1998-03-19": "St. Joseph's Day", + "1998-04-02": "Battle of Naefels Victory Day", + "1998-04-10": "Good Friday", + "1998-04-12": "Easter Sunday", + "1998-04-13": "Easter Monday", + "1998-05-01": "Labor Day", + "1998-05-21": "Ascension Day", + "1998-05-31": "Whit Sunday", + "1998-06-01": "Whit Monday", + "1998-06-11": "Corpus Christi", + "1998-06-23": "Independence Day", + "1998-06-29": "Saints Peter and Paul", + "1998-08-01": "National Day", + "1998-08-15": "Assumption of Mary", + "1998-09-10": "Genevan Fast", + "1998-09-21": "Prayer Monday", + "1998-09-25": "St. Nicholas of Fl\u00fce", + "1998-11-01": "All Saints' Day", + "1998-12-08": "Immaculate Conception", + "1998-12-25": "Christmas Day", + "1998-12-26": "St. Stephen's Day", + "1998-12-31": "Restoration Day", + "1999-01-01": "New Year's Day", + "1999-01-02": "Berchtold's Day", + "1999-01-06": "Epiphany", + "1999-03-01": "Republic Day", + "1999-03-19": "St. Joseph's Day", + "1999-04-02": "Good Friday", + "1999-04-04": "Easter Sunday", + "1999-04-05": "Easter Monday", + "1999-04-08": "Battle of Naefels Victory Day", + "1999-05-01": "Labor Day", + "1999-05-13": "Ascension Day", + "1999-05-23": "Whit Sunday", + "1999-05-24": "Whit Monday", + "1999-06-03": "Corpus Christi", + "1999-06-23": "Independence Day", + "1999-06-29": "Saints Peter and Paul", + "1999-08-01": "National Day", + "1999-08-15": "Assumption of Mary", + "1999-09-09": "Genevan Fast", + "1999-09-20": "Prayer Monday", + "1999-09-25": "St. Nicholas of Fl\u00fce", + "1999-11-01": "All Saints' Day", + "1999-12-08": "Immaculate Conception", + "1999-12-25": "Christmas Day", + "1999-12-26": "St. Stephen's Day", + "1999-12-31": "Restoration Day", + "2000-01-01": "New Year's Day", + "2000-01-02": "Berchtold's Day", + "2000-01-06": "Epiphany", + "2000-03-01": "Republic Day", + "2000-03-19": "St. Joseph's Day", + "2000-04-06": "Battle of Naefels Victory Day", + "2000-04-21": "Good Friday", + "2000-04-23": "Easter Sunday", + "2000-04-24": "Easter Monday", + "2000-05-01": "Labor Day", + "2000-06-01": "Ascension Day", + "2000-06-11": "Whit Sunday", + "2000-06-12": "Whit Monday", + "2000-06-22": "Corpus Christi", + "2000-06-23": "Independence Day", + "2000-06-29": "Saints Peter and Paul", + "2000-08-01": "National Day", + "2000-08-15": "Assumption of Mary", + "2000-09-07": "Genevan Fast", + "2000-09-18": "Prayer Monday", + "2000-09-25": "St. Nicholas of Fl\u00fce", + "2000-11-01": "All Saints' Day", + "2000-12-08": "Immaculate Conception", + "2000-12-25": "Christmas Day", + "2000-12-26": "St. Stephen's Day", + "2000-12-31": "Restoration Day", + "2001-01-01": "New Year's Day", + "2001-01-02": "Berchtold's Day", + "2001-01-06": "Epiphany", + "2001-03-01": "Republic Day", + "2001-03-19": "St. Joseph's Day", + "2001-04-05": "Battle of Naefels Victory Day", + "2001-04-13": "Good Friday", + "2001-04-15": "Easter Sunday", + "2001-04-16": "Easter Monday", + "2001-05-01": "Labor Day", + "2001-05-24": "Ascension Day", + "2001-06-03": "Whit Sunday", + "2001-06-04": "Whit Monday", + "2001-06-14": "Corpus Christi", + "2001-06-23": "Independence Day", + "2001-06-29": "Saints Peter and Paul", + "2001-08-01": "National Day", + "2001-08-15": "Assumption of Mary", + "2001-09-06": "Genevan Fast", + "2001-09-17": "Prayer Monday", + "2001-09-25": "St. Nicholas of Fl\u00fce", + "2001-11-01": "All Saints' Day", + "2001-12-08": "Immaculate Conception", + "2001-12-25": "Christmas Day", + "2001-12-26": "St. Stephen's Day", + "2001-12-31": "Restoration Day", + "2002-01-01": "New Year's Day", + "2002-01-02": "Berchtold's Day", + "2002-01-06": "Epiphany", + "2002-03-01": "Republic Day", + "2002-03-19": "St. Joseph's Day", + "2002-03-29": "Good Friday", + "2002-03-31": "Easter Sunday", + "2002-04-01": "Easter Monday", + "2002-04-04": "Battle of Naefels Victory Day", + "2002-05-01": "Labor Day", + "2002-05-09": "Ascension Day", + "2002-05-19": "Whit Sunday", + "2002-05-20": "Whit Monday", + "2002-05-30": "Corpus Christi", + "2002-06-23": "Independence Day", + "2002-06-29": "Saints Peter and Paul", + "2002-08-01": "National Day", + "2002-08-15": "Assumption of Mary", + "2002-09-05": "Genevan Fast", + "2002-09-16": "Prayer Monday", + "2002-09-25": "St. Nicholas of Fl\u00fce", + "2002-11-01": "All Saints' Day", + "2002-12-08": "Immaculate Conception", + "2002-12-25": "Christmas Day", + "2002-12-26": "St. Stephen's Day", + "2002-12-31": "Restoration Day", + "2003-01-01": "New Year's Day", + "2003-01-02": "Berchtold's Day", + "2003-01-06": "Epiphany", + "2003-03-01": "Republic Day", + "2003-03-19": "St. Joseph's Day", + "2003-04-03": "Battle of Naefels Victory Day", + "2003-04-18": "Good Friday", + "2003-04-20": "Easter Sunday", + "2003-04-21": "Easter Monday", + "2003-05-01": "Labor Day", + "2003-05-29": "Ascension Day", + "2003-06-08": "Whit Sunday", + "2003-06-09": "Whit Monday", + "2003-06-19": "Corpus Christi", + "2003-06-23": "Independence Day", + "2003-06-29": "Saints Peter and Paul", + "2003-08-01": "National Day", + "2003-08-15": "Assumption of Mary", + "2003-09-11": "Genevan Fast", + "2003-09-22": "Prayer Monday", + "2003-09-25": "St. Nicholas of Fl\u00fce", + "2003-11-01": "All Saints' Day", + "2003-12-08": "Immaculate Conception", + "2003-12-25": "Christmas Day", + "2003-12-26": "St. Stephen's Day", + "2003-12-31": "Restoration Day", + "2004-01-01": "New Year's Day", + "2004-01-02": "Berchtold's Day", + "2004-01-06": "Epiphany", + "2004-03-01": "Republic Day", + "2004-03-19": "St. Joseph's Day", + "2004-04-01": "Battle of Naefels Victory Day", + "2004-04-09": "Good Friday", + "2004-04-11": "Easter Sunday", + "2004-04-12": "Easter Monday", + "2004-05-01": "Labor Day", + "2004-05-20": "Ascension Day", + "2004-05-30": "Whit Sunday", + "2004-05-31": "Whit Monday", + "2004-06-10": "Corpus Christi", + "2004-06-23": "Independence Day", + "2004-06-29": "Saints Peter and Paul", + "2004-08-01": "National Day", + "2004-08-15": "Assumption of Mary", + "2004-09-09": "Genevan Fast", + "2004-09-20": "Prayer Monday", + "2004-09-25": "St. Nicholas of Fl\u00fce", + "2004-11-01": "All Saints' Day", + "2004-12-08": "Immaculate Conception", + "2004-12-25": "Christmas Day", + "2004-12-26": "St. Stephen's Day", + "2004-12-31": "Restoration Day", + "2005-01-01": "New Year's Day", + "2005-01-02": "Berchtold's Day", + "2005-01-06": "Epiphany", + "2005-03-01": "Republic Day", + "2005-03-19": "St. Joseph's Day", + "2005-03-25": "Good Friday", + "2005-03-27": "Easter Sunday", + "2005-03-28": "Easter Monday", + "2005-04-07": "Battle of Naefels Victory Day", + "2005-05-01": "Labor Day", + "2005-05-05": "Ascension Day", + "2005-05-15": "Whit Sunday", + "2005-05-16": "Whit Monday", + "2005-05-26": "Corpus Christi", + "2005-06-23": "Independence Day", + "2005-06-29": "Saints Peter and Paul", + "2005-08-01": "National Day", + "2005-08-15": "Assumption of Mary", + "2005-09-08": "Genevan Fast", + "2005-09-19": "Prayer Monday", + "2005-09-25": "St. Nicholas of Fl\u00fce", + "2005-11-01": "All Saints' Day", + "2005-12-08": "Immaculate Conception", + "2005-12-25": "Christmas Day", + "2005-12-26": "St. Stephen's Day", + "2005-12-31": "Restoration Day", + "2006-01-01": "New Year's Day", + "2006-01-02": "Berchtold's Day", + "2006-01-06": "Epiphany", + "2006-03-01": "Republic Day", + "2006-03-19": "St. Joseph's Day", + "2006-04-06": "Battle of Naefels Victory Day", + "2006-04-14": "Good Friday", + "2006-04-16": "Easter Sunday", + "2006-04-17": "Easter Monday", + "2006-05-01": "Labor Day", + "2006-05-25": "Ascension Day", + "2006-06-04": "Whit Sunday", + "2006-06-05": "Whit Monday", + "2006-06-15": "Corpus Christi", + "2006-06-23": "Independence Day", + "2006-06-29": "Saints Peter and Paul", + "2006-08-01": "National Day", + "2006-08-15": "Assumption of Mary", + "2006-09-07": "Genevan Fast", + "2006-09-18": "Prayer Monday", + "2006-09-25": "St. Nicholas of Fl\u00fce", + "2006-11-01": "All Saints' Day", + "2006-12-08": "Immaculate Conception", + "2006-12-25": "Christmas Day", + "2006-12-26": "St. Stephen's Day", + "2006-12-31": "Restoration Day", + "2007-01-01": "New Year's Day", + "2007-01-02": "Berchtold's Day", + "2007-01-06": "Epiphany", + "2007-03-01": "Republic Day", + "2007-03-19": "St. Joseph's Day", + "2007-04-06": "Good Friday", + "2007-04-08": "Easter Sunday", + "2007-04-09": "Easter Monday", + "2007-04-12": "Battle of Naefels Victory Day", + "2007-05-01": "Labor Day", + "2007-05-17": "Ascension Day", + "2007-05-27": "Whit Sunday", + "2007-05-28": "Whit Monday", + "2007-06-07": "Corpus Christi", + "2007-06-23": "Independence Day", + "2007-06-29": "Saints Peter and Paul", + "2007-08-01": "National Day", + "2007-08-15": "Assumption of Mary", + "2007-09-06": "Genevan Fast", + "2007-09-17": "Prayer Monday", + "2007-09-25": "St. Nicholas of Fl\u00fce", + "2007-11-01": "All Saints' Day", + "2007-12-08": "Immaculate Conception", + "2007-12-25": "Christmas Day", + "2007-12-26": "St. Stephen's Day", + "2007-12-31": "Restoration Day", + "2008-01-01": "New Year's Day", + "2008-01-02": "Berchtold's Day", + "2008-01-06": "Epiphany", + "2008-03-01": "Republic Day", + "2008-03-19": "St. Joseph's Day", + "2008-03-21": "Good Friday", + "2008-03-23": "Easter Sunday", + "2008-03-24": "Easter Monday", + "2008-04-03": "Battle of Naefels Victory Day", + "2008-05-01": "Ascension Day; Labor Day", + "2008-05-11": "Whit Sunday", + "2008-05-12": "Whit Monday", + "2008-05-22": "Corpus Christi", + "2008-06-23": "Independence Day", + "2008-06-29": "Saints Peter and Paul", + "2008-08-01": "National Day", + "2008-08-15": "Assumption of Mary", + "2008-09-11": "Genevan Fast", + "2008-09-22": "Prayer Monday", + "2008-09-25": "St. Nicholas of Fl\u00fce", + "2008-11-01": "All Saints' Day", + "2008-12-08": "Immaculate Conception", + "2008-12-25": "Christmas Day", + "2008-12-26": "St. Stephen's Day", + "2008-12-31": "Restoration Day", + "2009-01-01": "New Year's Day", + "2009-01-02": "Berchtold's Day", + "2009-01-06": "Epiphany", + "2009-03-01": "Republic Day", + "2009-03-19": "St. Joseph's Day", + "2009-04-02": "Battle of Naefels Victory Day", + "2009-04-10": "Good Friday", + "2009-04-12": "Easter Sunday", + "2009-04-13": "Easter Monday", + "2009-05-01": "Labor Day", + "2009-05-21": "Ascension Day", + "2009-05-31": "Whit Sunday", + "2009-06-01": "Whit Monday", + "2009-06-11": "Corpus Christi", + "2009-06-23": "Independence Day", + "2009-06-29": "Saints Peter and Paul", + "2009-08-01": "National Day", + "2009-08-15": "Assumption of Mary", + "2009-09-10": "Genevan Fast", + "2009-09-21": "Prayer Monday", + "2009-09-25": "St. Nicholas of Fl\u00fce", + "2009-11-01": "All Saints' Day", + "2009-12-08": "Immaculate Conception", + "2009-12-25": "Christmas Day", + "2009-12-26": "St. Stephen's Day", + "2009-12-31": "Restoration Day", + "2010-01-01": "New Year's Day", + "2010-01-02": "Berchtold's Day", + "2010-01-06": "Epiphany", + "2010-03-01": "Republic Day", + "2010-03-19": "St. Joseph's Day", + "2010-04-02": "Good Friday", + "2010-04-04": "Easter Sunday", + "2010-04-05": "Easter Monday", + "2010-04-08": "Battle of Naefels Victory Day", + "2010-05-01": "Labor Day", + "2010-05-13": "Ascension Day", + "2010-05-23": "Whit Sunday", + "2010-05-24": "Whit Monday", + "2010-06-03": "Corpus Christi", + "2010-06-23": "Independence Day", + "2010-06-29": "Saints Peter and Paul", + "2010-08-01": "National Day", + "2010-08-15": "Assumption of Mary", + "2010-09-09": "Genevan Fast", + "2010-09-20": "Prayer Monday", + "2010-09-25": "St. Nicholas of Fl\u00fce", + "2010-11-01": "All Saints' Day", + "2010-12-08": "Immaculate Conception", + "2010-12-25": "Christmas Day", + "2010-12-26": "St. Stephen's Day", + "2010-12-31": "Restoration Day", + "2011-01-01": "New Year's Day", + "2011-01-02": "Berchtold's Day", + "2011-01-06": "Epiphany", + "2011-03-01": "Republic Day", + "2011-03-19": "St. Joseph's Day", + "2011-04-07": "Battle of Naefels Victory Day", + "2011-04-22": "Good Friday", + "2011-04-24": "Easter Sunday", + "2011-04-25": "Easter Monday", + "2011-05-01": "Labor Day", + "2011-06-02": "Ascension Day", + "2011-06-12": "Whit Sunday", + "2011-06-13": "Whit Monday", + "2011-06-23": "Corpus Christi; Independence Day", + "2011-06-29": "Saints Peter and Paul", + "2011-08-01": "National Day", + "2011-08-15": "Assumption of Mary", + "2011-09-08": "Genevan Fast", + "2011-09-19": "Prayer Monday", + "2011-09-25": "St. Nicholas of Fl\u00fce", + "2011-11-01": "All Saints' Day", + "2011-12-08": "Immaculate Conception", + "2011-12-25": "Christmas Day", + "2011-12-26": "St. Stephen's Day", + "2011-12-31": "Restoration Day", + "2012-01-01": "New Year's Day", + "2012-01-02": "Berchtold's Day", + "2012-01-06": "Epiphany", + "2012-03-01": "Republic Day", + "2012-03-19": "St. Joseph's Day", + "2012-04-06": "Good Friday", + "2012-04-08": "Easter Sunday", + "2012-04-09": "Easter Monday", + "2012-04-12": "Battle of Naefels Victory Day", + "2012-05-01": "Labor Day", + "2012-05-17": "Ascension Day", + "2012-05-27": "Whit Sunday", + "2012-05-28": "Whit Monday", + "2012-06-07": "Corpus Christi", + "2012-06-23": "Independence Day", + "2012-06-29": "Saints Peter and Paul", + "2012-08-01": "National Day", + "2012-08-15": "Assumption of Mary", + "2012-09-06": "Genevan Fast", + "2012-09-17": "Prayer Monday", + "2012-09-25": "St. Nicholas of Fl\u00fce", + "2012-11-01": "All Saints' Day", + "2012-12-08": "Immaculate Conception", + "2012-12-25": "Christmas Day", + "2012-12-26": "St. Stephen's Day", + "2012-12-31": "Restoration Day", + "2013-01-01": "New Year's Day", + "2013-01-02": "Berchtold's Day", + "2013-01-06": "Epiphany", + "2013-03-01": "Republic Day", + "2013-03-19": "St. Joseph's Day", + "2013-03-29": "Good Friday", + "2013-03-31": "Easter Sunday", + "2013-04-01": "Easter Monday", + "2013-04-04": "Battle of Naefels Victory Day", + "2013-05-01": "Labor Day", + "2013-05-09": "Ascension Day", + "2013-05-19": "Whit Sunday", + "2013-05-20": "Whit Monday", + "2013-05-30": "Corpus Christi", + "2013-06-23": "Independence Day", + "2013-06-29": "Saints Peter and Paul", + "2013-08-01": "National Day", + "2013-08-15": "Assumption of Mary", + "2013-09-05": "Genevan Fast", + "2013-09-16": "Prayer Monday", + "2013-09-25": "St. Nicholas of Fl\u00fce", + "2013-11-01": "All Saints' Day", + "2013-12-08": "Immaculate Conception", + "2013-12-25": "Christmas Day", + "2013-12-26": "St. Stephen's Day", + "2013-12-31": "Restoration Day", + "2014-01-01": "New Year's Day", + "2014-01-02": "Berchtold's Day", + "2014-01-06": "Epiphany", + "2014-03-01": "Republic Day", + "2014-03-19": "St. Joseph's Day", + "2014-04-03": "Battle of Naefels Victory Day", + "2014-04-18": "Good Friday", + "2014-04-20": "Easter Sunday", + "2014-04-21": "Easter Monday", + "2014-05-01": "Labor Day", + "2014-05-29": "Ascension Day", + "2014-06-08": "Whit Sunday", + "2014-06-09": "Whit Monday", + "2014-06-19": "Corpus Christi", + "2014-06-23": "Independence Day", + "2014-06-29": "Saints Peter and Paul", + "2014-08-01": "National Day", + "2014-08-15": "Assumption of Mary", + "2014-09-11": "Genevan Fast", + "2014-09-22": "Prayer Monday", + "2014-09-25": "St. Nicholas of Fl\u00fce", + "2014-11-01": "All Saints' Day", + "2014-12-08": "Immaculate Conception", + "2014-12-25": "Christmas Day", + "2014-12-26": "St. Stephen's Day", + "2014-12-31": "Restoration Day", + "2015-01-01": "New Year's Day", + "2015-01-02": "Berchtold's Day", + "2015-01-06": "Epiphany", + "2015-03-01": "Republic Day", + "2015-03-19": "St. Joseph's Day", + "2015-04-03": "Good Friday", + "2015-04-05": "Easter Sunday", + "2015-04-06": "Easter Monday", + "2015-04-09": "Battle of Naefels Victory Day", + "2015-05-01": "Labor Day", + "2015-05-14": "Ascension Day", + "2015-05-24": "Whit Sunday", + "2015-05-25": "Whit Monday", + "2015-06-04": "Corpus Christi", + "2015-06-23": "Independence Day", + "2015-06-29": "Saints Peter and Paul", + "2015-08-01": "National Day", + "2015-08-15": "Assumption of Mary", + "2015-09-10": "Genevan Fast", + "2015-09-21": "Prayer Monday", + "2015-09-25": "St. Nicholas of Fl\u00fce", + "2015-11-01": "All Saints' Day", + "2015-12-08": "Immaculate Conception", + "2015-12-25": "Christmas Day", + "2015-12-26": "St. Stephen's Day", + "2015-12-31": "Restoration Day", + "2016-01-01": "New Year's Day", + "2016-01-02": "Berchtold's Day", + "2016-01-06": "Epiphany", + "2016-03-01": "Republic Day", + "2016-03-19": "St. Joseph's Day", + "2016-03-25": "Good Friday", + "2016-03-27": "Easter Sunday", + "2016-03-28": "Easter Monday", + "2016-04-07": "Battle of Naefels Victory Day", + "2016-05-01": "Labor Day", + "2016-05-05": "Ascension Day", + "2016-05-15": "Whit Sunday", + "2016-05-16": "Whit Monday", + "2016-05-26": "Corpus Christi", + "2016-06-23": "Independence Day", + "2016-06-29": "Saints Peter and Paul", + "2016-08-01": "National Day", + "2016-08-15": "Assumption of Mary", + "2016-09-08": "Genevan Fast", + "2016-09-19": "Prayer Monday", + "2016-09-25": "St. Nicholas of Fl\u00fce", + "2016-11-01": "All Saints' Day", + "2016-12-08": "Immaculate Conception", + "2016-12-25": "Christmas Day", + "2016-12-26": "St. Stephen's Day", + "2016-12-31": "Restoration Day", + "2017-01-01": "New Year's Day", + "2017-01-02": "Berchtold's Day", + "2017-01-06": "Epiphany", + "2017-03-01": "Republic Day", + "2017-03-19": "St. Joseph's Day", + "2017-04-06": "Battle of Naefels Victory Day", + "2017-04-14": "Good Friday", + "2017-04-16": "Easter Sunday", + "2017-04-17": "Easter Monday", + "2017-05-01": "Labor Day", + "2017-05-25": "Ascension Day", + "2017-06-04": "Whit Sunday", + "2017-06-05": "Whit Monday", + "2017-06-15": "Corpus Christi", + "2017-06-23": "Independence Day", + "2017-06-29": "Saints Peter and Paul", + "2017-08-01": "National Day", + "2017-08-15": "Assumption of Mary", + "2017-09-07": "Genevan Fast", + "2017-09-18": "Prayer Monday", + "2017-09-25": "St. Nicholas of Fl\u00fce", + "2017-11-01": "All Saints' Day", + "2017-12-08": "Immaculate Conception", + "2017-12-25": "Christmas Day", + "2017-12-26": "St. Stephen's Day", + "2017-12-31": "Restoration Day", + "2018-01-01": "New Year's Day", + "2018-01-02": "Berchtold's Day", + "2018-01-06": "Epiphany", + "2018-03-01": "Republic Day", + "2018-03-19": "St. Joseph's Day", + "2018-03-30": "Good Friday", + "2018-04-01": "Easter Sunday", + "2018-04-02": "Easter Monday", + "2018-04-05": "Battle of Naefels Victory Day", + "2018-05-01": "Labor Day", + "2018-05-10": "Ascension Day", + "2018-05-20": "Whit Sunday", + "2018-05-21": "Whit Monday", + "2018-05-31": "Corpus Christi", + "2018-06-23": "Independence Day", + "2018-06-29": "Saints Peter and Paul", + "2018-08-01": "National Day", + "2018-08-15": "Assumption of Mary", + "2018-09-06": "Genevan Fast", + "2018-09-17": "Prayer Monday", + "2018-09-25": "St. Nicholas of Fl\u00fce", + "2018-11-01": "All Saints' Day", + "2018-12-08": "Immaculate Conception", + "2018-12-25": "Christmas Day", + "2018-12-26": "St. Stephen's Day", + "2018-12-31": "Restoration Day", + "2019-01-01": "New Year's Day", + "2019-01-02": "Berchtold's Day", + "2019-01-06": "Epiphany", + "2019-03-01": "Republic Day", + "2019-03-19": "St. Joseph's Day", + "2019-04-04": "Battle of Naefels Victory Day", + "2019-04-19": "Good Friday", + "2019-04-21": "Easter Sunday", + "2019-04-22": "Easter Monday", + "2019-05-01": "Labor Day", + "2019-05-30": "Ascension Day", + "2019-06-09": "Whit Sunday", + "2019-06-10": "Whit Monday", + "2019-06-20": "Corpus Christi", + "2019-06-23": "Independence Day", + "2019-06-29": "Saints Peter and Paul", + "2019-08-01": "National Day", + "2019-08-15": "Assumption of Mary", + "2019-09-05": "Genevan Fast", + "2019-09-16": "Prayer Monday", + "2019-09-25": "St. Nicholas of Fl\u00fce", + "2019-11-01": "All Saints' Day", + "2019-12-08": "Immaculate Conception", + "2019-12-25": "Christmas Day", + "2019-12-26": "St. Stephen's Day", + "2019-12-31": "Restoration Day", + "2020-01-01": "New Year's Day", + "2020-01-02": "Berchtold's Day", + "2020-01-06": "Epiphany", + "2020-03-01": "Republic Day", + "2020-03-19": "St. Joseph's Day", + "2020-04-02": "Battle of Naefels Victory Day", + "2020-04-10": "Good Friday", + "2020-04-12": "Easter Sunday", + "2020-04-13": "Easter Monday", + "2020-05-01": "Labor Day", + "2020-05-21": "Ascension Day", + "2020-05-31": "Whit Sunday", + "2020-06-01": "Whit Monday", + "2020-06-11": "Corpus Christi", + "2020-06-23": "Independence Day", + "2020-06-29": "Saints Peter and Paul", + "2020-08-01": "National Day", + "2020-08-15": "Assumption of Mary", + "2020-09-10": "Genevan Fast", + "2020-09-21": "Prayer Monday", + "2020-09-25": "St. Nicholas of Fl\u00fce", + "2020-11-01": "All Saints' Day", + "2020-12-08": "Immaculate Conception", + "2020-12-25": "Christmas Day", + "2020-12-26": "St. Stephen's Day", + "2020-12-31": "Restoration Day", + "2021-01-01": "New Year's Day", + "2021-01-02": "Berchtold's Day", + "2021-01-06": "Epiphany", + "2021-03-01": "Republic Day", + "2021-03-19": "St. Joseph's Day", + "2021-04-02": "Good Friday", + "2021-04-04": "Easter Sunday", + "2021-04-05": "Easter Monday", + "2021-04-08": "Battle of Naefels Victory Day", + "2021-05-01": "Labor Day", + "2021-05-13": "Ascension Day", + "2021-05-23": "Whit Sunday", + "2021-05-24": "Whit Monday", + "2021-06-03": "Corpus Christi", + "2021-06-23": "Independence Day", + "2021-06-29": "Saints Peter and Paul", + "2021-08-01": "National Day", + "2021-08-15": "Assumption of Mary", + "2021-09-09": "Genevan Fast", + "2021-09-20": "Prayer Monday", + "2021-09-25": "St. Nicholas of Fl\u00fce", + "2021-11-01": "All Saints' Day", + "2021-12-08": "Immaculate Conception", + "2021-12-25": "Christmas Day", + "2021-12-26": "St. Stephen's Day", + "2021-12-31": "Restoration Day", + "2022-01-01": "New Year's Day", + "2022-01-02": "Berchtold's Day", + "2022-01-06": "Epiphany", + "2022-03-01": "Republic Day", + "2022-03-19": "St. Joseph's Day", + "2022-04-07": "Battle of Naefels Victory Day", + "2022-04-15": "Good Friday", + "2022-04-17": "Easter Sunday", + "2022-04-18": "Easter Monday", + "2022-05-01": "Labor Day", + "2022-05-26": "Ascension Day", + "2022-06-05": "Whit Sunday", + "2022-06-06": "Whit Monday", + "2022-06-16": "Corpus Christi", + "2022-06-23": "Independence Day", + "2022-06-29": "Saints Peter and Paul", + "2022-08-01": "National Day", + "2022-08-15": "Assumption of Mary", + "2022-09-08": "Genevan Fast", + "2022-09-19": "Prayer Monday", + "2022-09-25": "St. Nicholas of Fl\u00fce", + "2022-11-01": "All Saints' Day", + "2022-12-08": "Immaculate Conception", + "2022-12-25": "Christmas Day", + "2022-12-26": "St. Stephen's Day", + "2022-12-31": "Restoration Day", + "2023-01-01": "New Year's Day", + "2023-01-02": "Berchtold's Day", + "2023-01-06": "Epiphany", + "2023-03-01": "Republic Day", + "2023-03-19": "St. Joseph's Day", + "2023-04-07": "Good Friday", + "2023-04-09": "Easter Sunday", + "2023-04-10": "Easter Monday", + "2023-04-13": "Battle of Naefels Victory Day", + "2023-05-01": "Labor Day", + "2023-05-18": "Ascension Day", + "2023-05-28": "Whit Sunday", + "2023-05-29": "Whit Monday", + "2023-06-08": "Corpus Christi", + "2023-06-23": "Independence Day", + "2023-06-29": "Saints Peter and Paul", + "2023-08-01": "National Day", + "2023-08-15": "Assumption of Mary", + "2023-09-07": "Genevan Fast", + "2023-09-18": "Prayer Monday", + "2023-09-25": "St. Nicholas of Fl\u00fce", + "2023-11-01": "All Saints' Day", + "2023-12-08": "Immaculate Conception", + "2023-12-25": "Christmas Day", + "2023-12-26": "St. Stephen's Day", + "2023-12-31": "Restoration Day", + "2024-01-01": "New Year's Day", + "2024-01-02": "Berchtold's Day", + "2024-01-06": "Epiphany", + "2024-03-01": "Republic Day", + "2024-03-19": "St. Joseph's Day", + "2024-03-29": "Good Friday", + "2024-03-31": "Easter Sunday", + "2024-04-01": "Easter Monday", + "2024-04-04": "Battle of Naefels Victory Day", + "2024-05-01": "Labor Day", + "2024-05-09": "Ascension Day", + "2024-05-19": "Whit Sunday", + "2024-05-20": "Whit Monday", + "2024-05-30": "Corpus Christi", + "2024-06-23": "Independence Day", + "2024-06-29": "Saints Peter and Paul", + "2024-08-01": "National Day", + "2024-08-15": "Assumption of Mary", + "2024-09-05": "Genevan Fast", + "2024-09-16": "Prayer Monday", + "2024-09-25": "St. Nicholas of Fl\u00fce", + "2024-11-01": "All Saints' Day", + "2024-12-08": "Immaculate Conception", + "2024-12-25": "Christmas Day", + "2024-12-26": "St. Stephen's Day", + "2024-12-31": "Restoration Day", + "2025-01-01": "New Year's Day", + "2025-01-02": "Berchtold's Day", + "2025-01-06": "Epiphany", + "2025-03-01": "Republic Day", + "2025-03-19": "St. Joseph's Day", + "2025-04-03": "Battle of Naefels Victory Day", + "2025-04-18": "Good Friday", + "2025-04-20": "Easter Sunday", + "2025-04-21": "Easter Monday", + "2025-05-01": "Labor Day", + "2025-05-29": "Ascension Day", + "2025-06-08": "Whit Sunday", + "2025-06-09": "Whit Monday", + "2025-06-19": "Corpus Christi", + "2025-06-23": "Independence Day", + "2025-06-29": "Saints Peter and Paul", + "2025-08-01": "National Day", + "2025-08-15": "Assumption of Mary", + "2025-09-11": "Genevan Fast", + "2025-09-22": "Prayer Monday", + "2025-09-25": "St. Nicholas of Fl\u00fce", + "2025-11-01": "All Saints' Day", + "2025-12-08": "Immaculate Conception", + "2025-12-25": "Christmas Day", + "2025-12-26": "St. Stephen's Day", + "2025-12-31": "Restoration Day", + "2026-01-01": "New Year's Day", + "2026-01-02": "Berchtold's Day", + "2026-01-06": "Epiphany", + "2026-03-01": "Republic Day", + "2026-03-19": "St. Joseph's Day", + "2026-04-03": "Good Friday", + "2026-04-05": "Easter Sunday", + "2026-04-06": "Easter Monday", + "2026-04-09": "Battle of Naefels Victory Day", + "2026-05-01": "Labor Day", + "2026-05-14": "Ascension Day", + "2026-05-24": "Whit Sunday", + "2026-05-25": "Whit Monday", + "2026-06-04": "Corpus Christi", + "2026-06-23": "Independence Day", + "2026-06-29": "Saints Peter and Paul", + "2026-08-01": "National Day", + "2026-08-15": "Assumption of Mary", + "2026-09-10": "Genevan Fast", + "2026-09-21": "Prayer Monday", + "2026-09-25": "St. Nicholas of Fl\u00fce", + "2026-11-01": "All Saints' Day", + "2026-12-08": "Immaculate Conception", + "2026-12-25": "Christmas Day", + "2026-12-26": "St. Stephen's Day", + "2026-12-31": "Restoration Day", + "2027-01-01": "New Year's Day", + "2027-01-02": "Berchtold's Day", + "2027-01-06": "Epiphany", + "2027-03-01": "Republic Day", + "2027-03-19": "St. Joseph's Day", + "2027-03-26": "Good Friday", + "2027-03-28": "Easter Sunday", + "2027-03-29": "Easter Monday", + "2027-04-01": "Battle of Naefels Victory Day", + "2027-05-01": "Labor Day", + "2027-05-06": "Ascension Day", + "2027-05-16": "Whit Sunday", + "2027-05-17": "Whit Monday", + "2027-05-27": "Corpus Christi", + "2027-06-23": "Independence Day", + "2027-06-29": "Saints Peter and Paul", + "2027-08-01": "National Day", + "2027-08-15": "Assumption of Mary", + "2027-09-09": "Genevan Fast", + "2027-09-20": "Prayer Monday", + "2027-09-25": "St. Nicholas of Fl\u00fce", + "2027-11-01": "All Saints' Day", + "2027-12-08": "Immaculate Conception", + "2027-12-25": "Christmas Day", + "2027-12-26": "St. Stephen's Day", + "2027-12-31": "Restoration Day", + "2028-01-01": "New Year's Day", + "2028-01-02": "Berchtold's Day", + "2028-01-06": "Epiphany", + "2028-03-01": "Republic Day", + "2028-03-19": "St. Joseph's Day", + "2028-04-06": "Battle of Naefels Victory Day", + "2028-04-14": "Good Friday", + "2028-04-16": "Easter Sunday", + "2028-04-17": "Easter Monday", + "2028-05-01": "Labor Day", + "2028-05-25": "Ascension Day", + "2028-06-04": "Whit Sunday", + "2028-06-05": "Whit Monday", + "2028-06-15": "Corpus Christi", + "2028-06-23": "Independence Day", + "2028-06-29": "Saints Peter and Paul", + "2028-08-01": "National Day", + "2028-08-15": "Assumption of Mary", + "2028-09-07": "Genevan Fast", + "2028-09-18": "Prayer Monday", + "2028-09-25": "St. Nicholas of Fl\u00fce", + "2028-11-01": "All Saints' Day", + "2028-12-08": "Immaculate Conception", + "2028-12-25": "Christmas Day", + "2028-12-26": "St. Stephen's Day", + "2028-12-31": "Restoration Day", + "2029-01-01": "New Year's Day", + "2029-01-02": "Berchtold's Day", + "2029-01-06": "Epiphany", + "2029-03-01": "Republic Day", + "2029-03-19": "St. Joseph's Day", + "2029-03-30": "Good Friday", + "2029-04-01": "Easter Sunday", + "2029-04-02": "Easter Monday", + "2029-04-05": "Battle of Naefels Victory Day", + "2029-05-01": "Labor Day", + "2029-05-10": "Ascension Day", + "2029-05-20": "Whit Sunday", + "2029-05-21": "Whit Monday", + "2029-05-31": "Corpus Christi", + "2029-06-23": "Independence Day", + "2029-06-29": "Saints Peter and Paul", + "2029-08-01": "National Day", + "2029-08-15": "Assumption of Mary", + "2029-09-06": "Genevan Fast", + "2029-09-17": "Prayer Monday", + "2029-09-25": "St. Nicholas of Fl\u00fce", + "2029-11-01": "All Saints' Day", + "2029-12-08": "Immaculate Conception", + "2029-12-25": "Christmas Day", + "2029-12-26": "St. Stephen's Day", + "2029-12-31": "Restoration Day", + "2030-01-01": "New Year's Day", + "2030-01-02": "Berchtold's Day", + "2030-01-06": "Epiphany", + "2030-03-01": "Republic Day", + "2030-03-19": "St. Joseph's Day", + "2030-04-04": "Battle of Naefels Victory Day", + "2030-04-19": "Good Friday", + "2030-04-21": "Easter Sunday", + "2030-04-22": "Easter Monday", + "2030-05-01": "Labor Day", + "2030-05-30": "Ascension Day", + "2030-06-09": "Whit Sunday", + "2030-06-10": "Whit Monday", + "2030-06-20": "Corpus Christi", + "2030-06-23": "Independence Day", + "2030-06-29": "Saints Peter and Paul", + "2030-08-01": "National Day", + "2030-08-15": "Assumption of Mary", + "2030-09-05": "Genevan Fast", + "2030-09-16": "Prayer Monday", + "2030-09-25": "St. Nicholas of Fl\u00fce", + "2030-11-01": "All Saints' Day", + "2030-12-08": "Immaculate Conception", + "2030-12-25": "Christmas Day", + "2030-12-26": "St. Stephen's Day", + "2030-12-31": "Restoration Day", + "2031-01-01": "New Year's Day", + "2031-01-02": "Berchtold's Day", + "2031-01-06": "Epiphany", + "2031-03-01": "Republic Day", + "2031-03-19": "St. Joseph's Day", + "2031-04-03": "Battle of Naefels Victory Day", + "2031-04-11": "Good Friday", + "2031-04-13": "Easter Sunday", + "2031-04-14": "Easter Monday", + "2031-05-01": "Labor Day", + "2031-05-22": "Ascension Day", + "2031-06-01": "Whit Sunday", + "2031-06-02": "Whit Monday", + "2031-06-12": "Corpus Christi", + "2031-06-23": "Independence Day", + "2031-06-29": "Saints Peter and Paul", + "2031-08-01": "National Day", + "2031-08-15": "Assumption of Mary", + "2031-09-11": "Genevan Fast", + "2031-09-22": "Prayer Monday", + "2031-09-25": "St. Nicholas of Fl\u00fce", + "2031-11-01": "All Saints' Day", + "2031-12-08": "Immaculate Conception", + "2031-12-25": "Christmas Day", + "2031-12-26": "St. Stephen's Day", + "2031-12-31": "Restoration Day", + "2032-01-01": "New Year's Day", + "2032-01-02": "Berchtold's Day", + "2032-01-06": "Epiphany", + "2032-03-01": "Republic Day", + "2032-03-19": "St. Joseph's Day", + "2032-03-26": "Good Friday", + "2032-03-28": "Easter Sunday", + "2032-03-29": "Easter Monday", + "2032-04-01": "Battle of Naefels Victory Day", + "2032-05-01": "Labor Day", + "2032-05-06": "Ascension Day", + "2032-05-16": "Whit Sunday", + "2032-05-17": "Whit Monday", + "2032-05-27": "Corpus Christi", + "2032-06-23": "Independence Day", + "2032-06-29": "Saints Peter and Paul", + "2032-08-01": "National Day", + "2032-08-15": "Assumption of Mary", + "2032-09-09": "Genevan Fast", + "2032-09-20": "Prayer Monday", + "2032-09-25": "St. Nicholas of Fl\u00fce", + "2032-11-01": "All Saints' Day", + "2032-12-08": "Immaculate Conception", + "2032-12-25": "Christmas Day", + "2032-12-26": "St. Stephen's Day", + "2032-12-31": "Restoration Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "Berchtold's Day", + "2033-01-06": "Epiphany", + "2033-03-01": "Republic Day", + "2033-03-19": "St. Joseph's Day", + "2033-04-07": "Battle of Naefels Victory Day", + "2033-04-15": "Good Friday", + "2033-04-17": "Easter Sunday", + "2033-04-18": "Easter Monday", + "2033-05-01": "Labor Day", + "2033-05-26": "Ascension Day", + "2033-06-05": "Whit Sunday", + "2033-06-06": "Whit Monday", + "2033-06-16": "Corpus Christi", + "2033-06-23": "Independence Day", + "2033-06-29": "Saints Peter and Paul", + "2033-08-01": "National Day", + "2033-08-15": "Assumption of Mary", + "2033-09-08": "Genevan Fast", + "2033-09-19": "Prayer Monday", + "2033-09-25": "St. Nicholas of Fl\u00fce", + "2033-11-01": "All Saints' Day", + "2033-12-08": "Immaculate Conception", + "2033-12-25": "Christmas Day", + "2033-12-26": "St. Stephen's Day", + "2033-12-31": "Restoration Day", + "2034-01-01": "New Year's Day", + "2034-01-02": "Berchtold's Day", + "2034-01-06": "Epiphany", + "2034-03-01": "Republic Day", + "2034-03-19": "St. Joseph's Day", + "2034-04-07": "Good Friday", + "2034-04-09": "Easter Sunday", + "2034-04-10": "Easter Monday", + "2034-04-13": "Battle of Naefels Victory Day", + "2034-05-01": "Labor Day", + "2034-05-18": "Ascension Day", + "2034-05-28": "Whit Sunday", + "2034-05-29": "Whit Monday", + "2034-06-08": "Corpus Christi", + "2034-06-23": "Independence Day", + "2034-06-29": "Saints Peter and Paul", + "2034-08-01": "National Day", + "2034-08-15": "Assumption of Mary", + "2034-09-07": "Genevan Fast", + "2034-09-18": "Prayer Monday", + "2034-09-25": "St. Nicholas of Fl\u00fce", + "2034-11-01": "All Saints' Day", + "2034-12-08": "Immaculate Conception", + "2034-12-25": "Christmas Day", + "2034-12-26": "St. Stephen's Day", + "2034-12-31": "Restoration Day", + "2035-01-01": "New Year's Day", + "2035-01-02": "Berchtold's Day", + "2035-01-06": "Epiphany", + "2035-03-01": "Republic Day", + "2035-03-19": "St. Joseph's Day", + "2035-03-23": "Good Friday", + "2035-03-25": "Easter Sunday", + "2035-03-26": "Easter Monday", + "2035-04-05": "Battle of Naefels Victory Day", + "2035-05-01": "Labor Day", + "2035-05-03": "Ascension Day", + "2035-05-13": "Whit Sunday", + "2035-05-14": "Whit Monday", + "2035-05-24": "Corpus Christi", + "2035-06-23": "Independence Day", + "2035-06-29": "Saints Peter and Paul", + "2035-08-01": "National Day", + "2035-08-15": "Assumption of Mary", + "2035-09-06": "Genevan Fast", + "2035-09-17": "Prayer Monday", + "2035-09-25": "St. Nicholas of Fl\u00fce", + "2035-11-01": "All Saints' Day", + "2035-12-08": "Immaculate Conception", + "2035-12-25": "Christmas Day", + "2035-12-26": "St. Stephen's Day", + "2035-12-31": "Restoration Day", + "2036-01-01": "New Year's Day", + "2036-01-02": "Berchtold's Day", + "2036-01-06": "Epiphany", + "2036-03-01": "Republic Day", + "2036-03-19": "St. Joseph's Day", + "2036-04-03": "Battle of Naefels Victory Day", + "2036-04-11": "Good Friday", + "2036-04-13": "Easter Sunday", + "2036-04-14": "Easter Monday", + "2036-05-01": "Labor Day", + "2036-05-22": "Ascension Day", + "2036-06-01": "Whit Sunday", + "2036-06-02": "Whit Monday", + "2036-06-12": "Corpus Christi", + "2036-06-23": "Independence Day", + "2036-06-29": "Saints Peter and Paul", + "2036-08-01": "National Day", + "2036-08-15": "Assumption of Mary", + "2036-09-11": "Genevan Fast", + "2036-09-22": "Prayer Monday", + "2036-09-25": "St. Nicholas of Fl\u00fce", + "2036-11-01": "All Saints' Day", + "2036-12-08": "Immaculate Conception", + "2036-12-25": "Christmas Day", + "2036-12-26": "St. Stephen's Day", + "2036-12-31": "Restoration Day", + "2037-01-01": "New Year's Day", + "2037-01-02": "Berchtold's Day", + "2037-01-06": "Epiphany", + "2037-03-01": "Republic Day", + "2037-03-19": "St. Joseph's Day", + "2037-04-03": "Good Friday", + "2037-04-05": "Easter Sunday", + "2037-04-06": "Easter Monday", + "2037-04-09": "Battle of Naefels Victory Day", + "2037-05-01": "Labor Day", + "2037-05-14": "Ascension Day", + "2037-05-24": "Whit Sunday", + "2037-05-25": "Whit Monday", + "2037-06-04": "Corpus Christi", + "2037-06-23": "Independence Day", + "2037-06-29": "Saints Peter and Paul", + "2037-08-01": "National Day", + "2037-08-15": "Assumption of Mary", + "2037-09-10": "Genevan Fast", + "2037-09-21": "Prayer Monday", + "2037-09-25": "St. Nicholas of Fl\u00fce", + "2037-11-01": "All Saints' Day", + "2037-12-08": "Immaculate Conception", + "2037-12-25": "Christmas Day", + "2037-12-26": "St. Stephen's Day", + "2037-12-31": "Restoration Day", + "2038-01-01": "New Year's Day", + "2038-01-02": "Berchtold's Day", + "2038-01-06": "Epiphany", + "2038-03-01": "Republic Day", + "2038-03-19": "St. Joseph's Day", + "2038-04-01": "Battle of Naefels Victory Day", + "2038-04-23": "Good Friday", + "2038-04-25": "Easter Sunday", + "2038-04-26": "Easter Monday", + "2038-05-01": "Labor Day", + "2038-06-03": "Ascension Day", + "2038-06-13": "Whit Sunday", + "2038-06-14": "Whit Monday", + "2038-06-23": "Independence Day", + "2038-06-24": "Corpus Christi", + "2038-06-29": "Saints Peter and Paul", + "2038-08-01": "National Day", + "2038-08-15": "Assumption of Mary", + "2038-09-09": "Genevan Fast", + "2038-09-20": "Prayer Monday", + "2038-09-25": "St. Nicholas of Fl\u00fce", + "2038-11-01": "All Saints' Day", + "2038-12-08": "Immaculate Conception", + "2038-12-25": "Christmas Day", + "2038-12-26": "St. Stephen's Day", + "2038-12-31": "Restoration Day", + "2039-01-01": "New Year's Day", + "2039-01-02": "Berchtold's Day", + "2039-01-06": "Epiphany", + "2039-03-01": "Republic Day", + "2039-03-19": "St. Joseph's Day", + "2039-04-08": "Good Friday", + "2039-04-10": "Easter Sunday", + "2039-04-11": "Easter Monday", + "2039-04-14": "Battle of Naefels Victory Day", + "2039-05-01": "Labor Day", + "2039-05-19": "Ascension Day", + "2039-05-29": "Whit Sunday", + "2039-05-30": "Whit Monday", + "2039-06-09": "Corpus Christi", + "2039-06-23": "Independence Day", + "2039-06-29": "Saints Peter and Paul", + "2039-08-01": "National Day", + "2039-08-15": "Assumption of Mary", + "2039-09-08": "Genevan Fast", + "2039-09-19": "Prayer Monday", + "2039-09-25": "St. Nicholas of Fl\u00fce", + "2039-11-01": "All Saints' Day", + "2039-12-08": "Immaculate Conception", + "2039-12-25": "Christmas Day", + "2039-12-26": "St. Stephen's Day", + "2039-12-31": "Restoration Day", + "2040-01-01": "New Year's Day", + "2040-01-02": "Berchtold's Day", + "2040-01-06": "Epiphany", + "2040-03-01": "Republic Day", + "2040-03-19": "St. Joseph's Day", + "2040-03-30": "Good Friday", + "2040-04-01": "Easter Sunday", + "2040-04-02": "Easter Monday", + "2040-04-05": "Battle of Naefels Victory Day", + "2040-05-01": "Labor Day", + "2040-05-10": "Ascension Day", + "2040-05-20": "Whit Sunday", + "2040-05-21": "Whit Monday", + "2040-05-31": "Corpus Christi", + "2040-06-23": "Independence Day", + "2040-06-29": "Saints Peter and Paul", + "2040-08-01": "National Day", + "2040-08-15": "Assumption of Mary", + "2040-09-06": "Genevan Fast", + "2040-09-17": "Prayer Monday", + "2040-09-25": "St. Nicholas of Fl\u00fce", + "2040-11-01": "All Saints' Day", + "2040-12-08": "Immaculate Conception", + "2040-12-25": "Christmas Day", + "2040-12-26": "St. Stephen's Day", + "2040-12-31": "Restoration Day", + "2041-01-01": "New Year's Day", + "2041-01-02": "Berchtold's Day", + "2041-01-06": "Epiphany", + "2041-03-01": "Republic Day", + "2041-03-19": "St. Joseph's Day", + "2041-04-04": "Battle of Naefels Victory Day", + "2041-04-19": "Good Friday", + "2041-04-21": "Easter Sunday", + "2041-04-22": "Easter Monday", + "2041-05-01": "Labor Day", + "2041-05-30": "Ascension Day", + "2041-06-09": "Whit Sunday", + "2041-06-10": "Whit Monday", + "2041-06-20": "Corpus Christi", + "2041-06-23": "Independence Day", + "2041-06-29": "Saints Peter and Paul", + "2041-08-01": "National Day", + "2041-08-15": "Assumption of Mary", + "2041-09-05": "Genevan Fast", + "2041-09-16": "Prayer Monday", + "2041-09-25": "St. Nicholas of Fl\u00fce", + "2041-11-01": "All Saints' Day", + "2041-12-08": "Immaculate Conception", + "2041-12-25": "Christmas Day", + "2041-12-26": "St. Stephen's Day", + "2041-12-31": "Restoration Day", + "2042-01-01": "New Year's Day", + "2042-01-02": "Berchtold's Day", + "2042-01-06": "Epiphany", + "2042-03-01": "Republic Day", + "2042-03-19": "St. Joseph's Day", + "2042-04-04": "Good Friday", + "2042-04-06": "Easter Sunday", + "2042-04-07": "Easter Monday", + "2042-04-10": "Battle of Naefels Victory Day", + "2042-05-01": "Labor Day", + "2042-05-15": "Ascension Day", + "2042-05-25": "Whit Sunday", + "2042-05-26": "Whit Monday", + "2042-06-05": "Corpus Christi", + "2042-06-23": "Independence Day", + "2042-06-29": "Saints Peter and Paul", + "2042-08-01": "National Day", + "2042-08-15": "Assumption of Mary", + "2042-09-11": "Genevan Fast", + "2042-09-22": "Prayer Monday", + "2042-09-25": "St. Nicholas of Fl\u00fce", + "2042-11-01": "All Saints' Day", + "2042-12-08": "Immaculate Conception", + "2042-12-25": "Christmas Day", + "2042-12-26": "St. Stephen's Day", + "2042-12-31": "Restoration Day", + "2043-01-01": "New Year's Day", + "2043-01-02": "Berchtold's Day", + "2043-01-06": "Epiphany", + "2043-03-01": "Republic Day", + "2043-03-19": "St. Joseph's Day", + "2043-03-27": "Good Friday", + "2043-03-29": "Easter Sunday", + "2043-03-30": "Easter Monday", + "2043-04-02": "Battle of Naefels Victory Day", + "2043-05-01": "Labor Day", + "2043-05-07": "Ascension Day", + "2043-05-17": "Whit Sunday", + "2043-05-18": "Whit Monday", + "2043-05-28": "Corpus Christi", + "2043-06-23": "Independence Day", + "2043-06-29": "Saints Peter and Paul", + "2043-08-01": "National Day", + "2043-08-15": "Assumption of Mary", + "2043-09-10": "Genevan Fast", + "2043-09-21": "Prayer Monday", + "2043-09-25": "St. Nicholas of Fl\u00fce", + "2043-11-01": "All Saints' Day", + "2043-12-08": "Immaculate Conception", + "2043-12-25": "Christmas Day", + "2043-12-26": "St. Stephen's Day", + "2043-12-31": "Restoration Day", + "2044-01-01": "New Year's Day", + "2044-01-02": "Berchtold's Day", + "2044-01-06": "Epiphany", + "2044-03-01": "Republic Day", + "2044-03-19": "St. Joseph's Day", + "2044-04-07": "Battle of Naefels Victory Day", + "2044-04-15": "Good Friday", + "2044-04-17": "Easter Sunday", + "2044-04-18": "Easter Monday", + "2044-05-01": "Labor Day", + "2044-05-26": "Ascension Day", + "2044-06-05": "Whit Sunday", + "2044-06-06": "Whit Monday", + "2044-06-16": "Corpus Christi", + "2044-06-23": "Independence Day", + "2044-06-29": "Saints Peter and Paul", + "2044-08-01": "National Day", + "2044-08-15": "Assumption of Mary", + "2044-09-08": "Genevan Fast", + "2044-09-19": "Prayer Monday", + "2044-09-25": "St. Nicholas of Fl\u00fce", + "2044-11-01": "All Saints' Day", + "2044-12-08": "Immaculate Conception", + "2044-12-25": "Christmas Day", + "2044-12-26": "St. Stephen's Day", + "2044-12-31": "Restoration Day", + "2045-01-01": "New Year's Day", + "2045-01-02": "Berchtold's Day", + "2045-01-06": "Epiphany", + "2045-03-01": "Republic Day", + "2045-03-19": "St. Joseph's Day", + "2045-04-07": "Good Friday", + "2045-04-09": "Easter Sunday", + "2045-04-10": "Easter Monday", + "2045-04-13": "Battle of Naefels Victory Day", + "2045-05-01": "Labor Day", + "2045-05-18": "Ascension Day", + "2045-05-28": "Whit Sunday", + "2045-05-29": "Whit Monday", + "2045-06-08": "Corpus Christi", + "2045-06-23": "Independence Day", + "2045-06-29": "Saints Peter and Paul", + "2045-08-01": "National Day", + "2045-08-15": "Assumption of Mary", + "2045-09-07": "Genevan Fast", + "2045-09-18": "Prayer Monday", + "2045-09-25": "St. Nicholas of Fl\u00fce", + "2045-11-01": "All Saints' Day", + "2045-12-08": "Immaculate Conception", + "2045-12-25": "Christmas Day", + "2045-12-26": "St. Stephen's Day", + "2045-12-31": "Restoration Day", + "2046-01-01": "New Year's Day", + "2046-01-02": "Berchtold's Day", + "2046-01-06": "Epiphany", + "2046-03-01": "Republic Day", + "2046-03-19": "St. Joseph's Day", + "2046-03-23": "Good Friday", + "2046-03-25": "Easter Sunday", + "2046-03-26": "Easter Monday", + "2046-04-05": "Battle of Naefels Victory Day", + "2046-05-01": "Labor Day", + "2046-05-03": "Ascension Day", + "2046-05-13": "Whit Sunday", + "2046-05-14": "Whit Monday", + "2046-05-24": "Corpus Christi", + "2046-06-23": "Independence Day", + "2046-06-29": "Saints Peter and Paul", + "2046-08-01": "National Day", + "2046-08-15": "Assumption of Mary", + "2046-09-06": "Genevan Fast", + "2046-09-17": "Prayer Monday", + "2046-09-25": "St. Nicholas of Fl\u00fce", + "2046-11-01": "All Saints' Day", + "2046-12-08": "Immaculate Conception", + "2046-12-25": "Christmas Day", + "2046-12-26": "St. Stephen's Day", + "2046-12-31": "Restoration Day", + "2047-01-01": "New Year's Day", + "2047-01-02": "Berchtold's Day", + "2047-01-06": "Epiphany", + "2047-03-01": "Republic Day", + "2047-03-19": "St. Joseph's Day", + "2047-04-04": "Battle of Naefels Victory Day", + "2047-04-12": "Good Friday", + "2047-04-14": "Easter Sunday", + "2047-04-15": "Easter Monday", + "2047-05-01": "Labor Day", + "2047-05-23": "Ascension Day", + "2047-06-02": "Whit Sunday", + "2047-06-03": "Whit Monday", + "2047-06-13": "Corpus Christi", + "2047-06-23": "Independence Day", + "2047-06-29": "Saints Peter and Paul", + "2047-08-01": "National Day", + "2047-08-15": "Assumption of Mary", + "2047-09-05": "Genevan Fast", + "2047-09-16": "Prayer Monday", + "2047-09-25": "St. Nicholas of Fl\u00fce", + "2047-11-01": "All Saints' Day", + "2047-12-08": "Immaculate Conception", + "2047-12-25": "Christmas Day", + "2047-12-26": "St. Stephen's Day", + "2047-12-31": "Restoration Day", + "2048-01-01": "New Year's Day", + "2048-01-02": "Berchtold's Day", + "2048-01-06": "Epiphany", + "2048-03-01": "Republic Day", + "2048-03-19": "St. Joseph's Day", + "2048-04-03": "Good Friday", + "2048-04-05": "Easter Sunday", + "2048-04-06": "Easter Monday", + "2048-04-09": "Battle of Naefels Victory Day", + "2048-05-01": "Labor Day", + "2048-05-14": "Ascension Day", + "2048-05-24": "Whit Sunday", + "2048-05-25": "Whit Monday", + "2048-06-04": "Corpus Christi", + "2048-06-23": "Independence Day", + "2048-06-29": "Saints Peter and Paul", + "2048-08-01": "National Day", + "2048-08-15": "Assumption of Mary", + "2048-09-10": "Genevan Fast", + "2048-09-21": "Prayer Monday", + "2048-09-25": "St. Nicholas of Fl\u00fce", + "2048-11-01": "All Saints' Day", + "2048-12-08": "Immaculate Conception", + "2048-12-25": "Christmas Day", + "2048-12-26": "St. Stephen's Day", + "2048-12-31": "Restoration Day", + "2049-01-01": "New Year's Day", + "2049-01-02": "Berchtold's Day", + "2049-01-06": "Epiphany", + "2049-03-01": "Republic Day", + "2049-03-19": "St. Joseph's Day", + "2049-04-01": "Battle of Naefels Victory Day", + "2049-04-16": "Good Friday", + "2049-04-18": "Easter Sunday", + "2049-04-19": "Easter Monday", + "2049-05-01": "Labor Day", + "2049-05-27": "Ascension Day", + "2049-06-06": "Whit Sunday", + "2049-06-07": "Whit Monday", + "2049-06-17": "Corpus Christi", + "2049-06-23": "Independence Day", + "2049-06-29": "Saints Peter and Paul", + "2049-08-01": "National Day", + "2049-08-15": "Assumption of Mary", + "2049-09-09": "Genevan Fast", + "2049-09-20": "Prayer Monday", + "2049-09-25": "St. Nicholas of Fl\u00fce", + "2049-11-01": "All Saints' Day", + "2049-12-08": "Immaculate Conception", + "2049-12-25": "Christmas Day", + "2049-12-26": "St. Stephen's Day", + "2049-12-31": "Restoration Day", + "2050-01-01": "New Year's Day", + "2050-01-02": "Berchtold's Day", + "2050-01-06": "Epiphany", + "2050-03-01": "Republic Day", + "2050-03-19": "St. Joseph's Day", + "2050-04-08": "Good Friday", + "2050-04-10": "Easter Sunday", + "2050-04-11": "Easter Monday", + "2050-04-14": "Battle of Naefels Victory Day", + "2050-05-01": "Labor Day", + "2050-05-19": "Ascension Day", + "2050-05-29": "Whit Sunday", + "2050-05-30": "Whit Monday", + "2050-06-09": "Corpus Christi", + "2050-06-23": "Independence Day", + "2050-06-29": "Saints Peter and Paul", + "2050-08-01": "National Day", + "2050-08-15": "Assumption of Mary", + "2050-09-08": "Genevan Fast", + "2050-09-19": "Prayer Monday", + "2050-09-25": "St. Nicholas of Fl\u00fce", + "2050-11-01": "All Saints' Day", + "2050-12-08": "Immaculate Conception", + "2050-12-25": "Christmas Day", + "2050-12-26": "St. Stephen's Day", + "2050-12-31": "Restoration Day" +} diff --git a/snapshots/countries/CL.json b/snapshots/countries/CL.json new file mode 100644 index 000000000..82a9dbe0e --- /dev/null +++ b/snapshots/countries/CL.json @@ -0,0 +1,1628 @@ +{ + "1950-01-01": "New Year's Day", + "1950-04-07": "Good Friday", + "1950-04-08": "Holy Saturday", + "1950-05-01": "Labour Day", + "1950-05-18": "Ascension of Jesus", + "1950-05-21": "Navy Day", + "1950-06-08": "Corpus Christi", + "1950-06-29": "Saint Peter and Saint Paul", + "1950-08-15": "Assumption of Mary", + "1950-09-18": "Independence Day", + "1950-09-19": "Army Day", + "1950-10-12": "Columbus Day", + "1950-11-01": "All Saints' Day", + "1950-12-08": "Immaculate Conception", + "1950-12-24": "Christmas Eve", + "1950-12-25": "Christmas", + "1951-01-01": "New Year's Day", + "1951-03-23": "Good Friday", + "1951-03-24": "Holy Saturday", + "1951-05-01": "Labour Day", + "1951-05-03": "Ascension of Jesus", + "1951-05-21": "Navy Day", + "1951-05-24": "Corpus Christi", + "1951-06-29": "Saint Peter and Saint Paul", + "1951-08-15": "Assumption of Mary", + "1951-09-18": "Independence Day", + "1951-09-19": "Army Day", + "1951-10-12": "Columbus Day", + "1951-11-01": "All Saints' Day", + "1951-12-08": "Immaculate Conception", + "1951-12-24": "Christmas Eve", + "1951-12-25": "Christmas", + "1952-01-01": "New Year's Day", + "1952-04-11": "Good Friday", + "1952-04-12": "Holy Saturday", + "1952-05-01": "Labour Day", + "1952-05-21": "Navy Day", + "1952-05-22": "Ascension of Jesus", + "1952-06-12": "Corpus Christi", + "1952-06-29": "Saint Peter and Saint Paul", + "1952-08-15": "Assumption of Mary", + "1952-09-18": "Independence Day", + "1952-09-19": "Army Day", + "1952-10-12": "Columbus Day", + "1952-11-01": "All Saints' Day", + "1952-12-08": "Immaculate Conception", + "1952-12-24": "Christmas Eve", + "1952-12-25": "Christmas", + "1953-01-01": "New Year's Day", + "1953-04-03": "Good Friday", + "1953-04-04": "Holy Saturday", + "1953-05-01": "Labour Day", + "1953-05-14": "Ascension of Jesus", + "1953-05-21": "Navy Day", + "1953-06-04": "Corpus Christi", + "1953-06-29": "Saint Peter and Saint Paul", + "1953-08-15": "Assumption of Mary", + "1953-09-18": "Independence Day", + "1953-09-19": "Army Day", + "1953-10-12": "Columbus Day", + "1953-11-01": "All Saints' Day", + "1953-12-08": "Immaculate Conception", + "1953-12-24": "Christmas Eve", + "1953-12-25": "Christmas", + "1954-01-01": "New Year's Day", + "1954-04-16": "Good Friday", + "1954-04-17": "Holy Saturday", + "1954-05-01": "Labour Day", + "1954-05-21": "Navy Day", + "1954-05-27": "Ascension of Jesus", + "1954-06-17": "Corpus Christi", + "1954-06-29": "Saint Peter and Saint Paul", + "1954-08-15": "Assumption of Mary", + "1954-09-18": "Independence Day", + "1954-09-19": "Army Day", + "1954-10-12": "Columbus Day", + "1954-11-01": "All Saints' Day", + "1954-12-08": "Immaculate Conception", + "1954-12-24": "Christmas Eve", + "1954-12-25": "Christmas", + "1955-01-01": "New Year's Day", + "1955-04-08": "Good Friday", + "1955-04-09": "Holy Saturday", + "1955-05-01": "Labour Day", + "1955-05-19": "Ascension of Jesus", + "1955-05-21": "Navy Day", + "1955-06-09": "Corpus Christi", + "1955-06-29": "Saint Peter and Saint Paul", + "1955-08-15": "Assumption of Mary", + "1955-09-18": "Independence Day", + "1955-09-19": "Army Day", + "1955-10-12": "Columbus Day", + "1955-11-01": "All Saints' Day", + "1955-12-08": "Immaculate Conception", + "1955-12-24": "Christmas Eve", + "1955-12-25": "Christmas", + "1956-01-01": "New Year's Day", + "1956-03-30": "Good Friday", + "1956-03-31": "Holy Saturday", + "1956-05-01": "Labour Day", + "1956-05-10": "Ascension of Jesus", + "1956-05-21": "Navy Day", + "1956-05-31": "Corpus Christi", + "1956-06-29": "Saint Peter and Saint Paul", + "1956-08-15": "Assumption of Mary", + "1956-09-18": "Independence Day", + "1956-09-19": "Army Day", + "1956-10-12": "Columbus Day", + "1956-11-01": "All Saints' Day", + "1956-12-08": "Immaculate Conception", + "1956-12-24": "Christmas Eve", + "1956-12-25": "Christmas", + "1957-01-01": "New Year's Day", + "1957-04-19": "Good Friday", + "1957-04-20": "Holy Saturday", + "1957-05-01": "Labour Day", + "1957-05-21": "Navy Day", + "1957-05-30": "Ascension of Jesus", + "1957-06-20": "Corpus Christi", + "1957-06-29": "Saint Peter and Saint Paul", + "1957-08-15": "Assumption of Mary", + "1957-09-18": "Independence Day", + "1957-09-19": "Army Day", + "1957-10-12": "Columbus Day", + "1957-11-01": "All Saints' Day", + "1957-12-08": "Immaculate Conception", + "1957-12-24": "Christmas Eve", + "1957-12-25": "Christmas", + "1958-01-01": "New Year's Day", + "1958-04-04": "Good Friday", + "1958-04-05": "Holy Saturday", + "1958-05-01": "Labour Day", + "1958-05-15": "Ascension of Jesus", + "1958-05-21": "Navy Day", + "1958-06-05": "Corpus Christi", + "1958-06-29": "Saint Peter and Saint Paul", + "1958-08-15": "Assumption of Mary", + "1958-09-18": "Independence Day", + "1958-09-19": "Army Day", + "1958-10-12": "Columbus Day", + "1958-11-01": "All Saints' Day", + "1958-12-08": "Immaculate Conception", + "1958-12-24": "Christmas Eve", + "1958-12-25": "Christmas", + "1959-01-01": "New Year's Day", + "1959-03-27": "Good Friday", + "1959-03-28": "Holy Saturday", + "1959-05-01": "Labour Day", + "1959-05-07": "Ascension of Jesus", + "1959-05-21": "Navy Day", + "1959-05-28": "Corpus Christi", + "1959-06-29": "Saint Peter and Saint Paul", + "1959-08-15": "Assumption of Mary", + "1959-09-18": "Independence Day", + "1959-09-19": "Army Day", + "1959-10-12": "Columbus Day", + "1959-11-01": "All Saints' Day", + "1959-12-08": "Immaculate Conception", + "1959-12-24": "Christmas Eve", + "1959-12-25": "Christmas", + "1960-01-01": "New Year's Day", + "1960-04-15": "Good Friday", + "1960-04-16": "Holy Saturday", + "1960-05-01": "Labour Day", + "1960-05-21": "Navy Day", + "1960-05-26": "Ascension of Jesus", + "1960-06-16": "Corpus Christi", + "1960-06-29": "Saint Peter and Saint Paul", + "1960-08-15": "Assumption of Mary", + "1960-09-18": "Independence Day", + "1960-09-19": "Army Day", + "1960-10-12": "Columbus Day", + "1960-11-01": "All Saints' Day", + "1960-12-08": "Immaculate Conception", + "1960-12-24": "Christmas Eve", + "1960-12-25": "Christmas", + "1961-01-01": "New Year's Day", + "1961-03-31": "Good Friday", + "1961-04-01": "Holy Saturday", + "1961-05-01": "Labour Day", + "1961-05-11": "Ascension of Jesus", + "1961-05-21": "Navy Day", + "1961-06-01": "Corpus Christi", + "1961-06-29": "Saint Peter and Saint Paul", + "1961-08-15": "Assumption of Mary", + "1961-09-18": "Independence Day", + "1961-09-19": "Army Day", + "1961-10-12": "Columbus Day", + "1961-11-01": "All Saints' Day", + "1961-12-08": "Immaculate Conception", + "1961-12-24": "Christmas Eve", + "1961-12-25": "Christmas", + "1962-01-01": "New Year's Day", + "1962-04-20": "Good Friday", + "1962-04-21": "Holy Saturday", + "1962-05-01": "Labour Day", + "1962-05-21": "Navy Day", + "1962-05-31": "Ascension of Jesus", + "1962-06-21": "Corpus Christi", + "1962-06-29": "Saint Peter and Saint Paul", + "1962-08-15": "Assumption of Mary", + "1962-09-18": "Independence Day", + "1962-09-19": "Army Day", + "1962-10-12": "Columbus Day", + "1962-11-01": "All Saints' Day", + "1962-12-08": "Immaculate Conception", + "1962-12-24": "Christmas Eve", + "1962-12-25": "Christmas", + "1963-01-01": "New Year's Day", + "1963-04-12": "Good Friday", + "1963-04-13": "Holy Saturday", + "1963-05-01": "Labour Day", + "1963-05-21": "Navy Day", + "1963-05-23": "Ascension of Jesus", + "1963-06-13": "Corpus Christi", + "1963-06-29": "Saint Peter and Saint Paul", + "1963-08-15": "Assumption of Mary", + "1963-09-18": "Independence Day", + "1963-09-19": "Army Day", + "1963-10-12": "Columbus Day", + "1963-11-01": "All Saints' Day", + "1963-12-08": "Immaculate Conception", + "1963-12-24": "Christmas Eve", + "1963-12-25": "Christmas", + "1964-01-01": "New Year's Day", + "1964-03-27": "Good Friday", + "1964-03-28": "Holy Saturday", + "1964-05-01": "Labour Day", + "1964-05-07": "Ascension of Jesus", + "1964-05-21": "Navy Day", + "1964-05-28": "Corpus Christi", + "1964-06-29": "Saint Peter and Saint Paul", + "1964-08-15": "Assumption of Mary", + "1964-09-18": "Independence Day", + "1964-09-19": "Army Day", + "1964-10-12": "Columbus Day", + "1964-11-01": "All Saints' Day", + "1964-12-08": "Immaculate Conception", + "1964-12-24": "Christmas Eve", + "1964-12-25": "Christmas", + "1965-01-01": "New Year's Day", + "1965-04-16": "Good Friday", + "1965-04-17": "Holy Saturday", + "1965-05-01": "Labour Day", + "1965-05-21": "Navy Day", + "1965-05-27": "Ascension of Jesus", + "1965-06-17": "Corpus Christi", + "1965-06-29": "Saint Peter and Saint Paul", + "1965-08-15": "Assumption of Mary", + "1965-09-18": "Independence Day", + "1965-09-19": "Army Day", + "1965-10-12": "Columbus Day", + "1965-11-01": "All Saints' Day", + "1965-12-08": "Immaculate Conception", + "1965-12-24": "Christmas Eve", + "1965-12-25": "Christmas", + "1966-01-01": "New Year's Day", + "1966-04-08": "Good Friday", + "1966-04-09": "Holy Saturday", + "1966-05-01": "Labour Day", + "1966-05-19": "Ascension of Jesus", + "1966-05-21": "Navy Day", + "1966-06-09": "Corpus Christi", + "1966-06-29": "Saint Peter and Saint Paul", + "1966-08-15": "Assumption of Mary", + "1966-09-18": "Independence Day", + "1966-09-19": "Army Day", + "1966-10-12": "Columbus Day", + "1966-11-01": "All Saints' Day", + "1966-12-08": "Immaculate Conception", + "1966-12-24": "Christmas Eve", + "1966-12-25": "Christmas", + "1967-01-01": "New Year's Day", + "1967-03-24": "Good Friday", + "1967-03-25": "Holy Saturday", + "1967-05-01": "Labour Day", + "1967-05-04": "Ascension of Jesus", + "1967-05-21": "Navy Day", + "1967-05-25": "Corpus Christi", + "1967-06-29": "Saint Peter and Saint Paul", + "1967-08-15": "Assumption of Mary", + "1967-09-18": "Independence Day", + "1967-09-19": "Army Day", + "1967-10-12": "Columbus Day", + "1967-11-01": "All Saints' Day", + "1967-12-08": "Immaculate Conception", + "1967-12-24": "Christmas Eve", + "1967-12-25": "Christmas", + "1968-01-01": "New Year's Day", + "1968-04-12": "Good Friday", + "1968-04-13": "Holy Saturday", + "1968-05-01": "Labour Day", + "1968-05-21": "Navy Day", + "1968-08-15": "Assumption of Mary", + "1968-09-18": "Independence Day", + "1968-09-19": "Army Day", + "1968-10-12": "Columbus Day", + "1968-11-01": "All Saints' Day", + "1968-12-08": "Immaculate Conception", + "1968-12-24": "Christmas Eve", + "1968-12-25": "Christmas", + "1969-01-01": "New Year's Day", + "1969-04-04": "Good Friday", + "1969-04-05": "Holy Saturday", + "1969-05-01": "Labour Day", + "1969-05-21": "Navy Day", + "1969-08-15": "Assumption of Mary", + "1969-09-18": "Independence Day", + "1969-09-19": "Army Day", + "1969-10-12": "Columbus Day", + "1969-11-01": "All Saints' Day", + "1969-12-08": "Immaculate Conception", + "1969-12-24": "Christmas Eve", + "1969-12-25": "Christmas", + "1970-01-01": "New Year's Day", + "1970-03-27": "Good Friday", + "1970-03-28": "Holy Saturday", + "1970-05-01": "Labour Day", + "1970-05-21": "Navy Day", + "1970-08-15": "Assumption of Mary", + "1970-09-18": "Independence Day", + "1970-09-19": "Army Day", + "1970-10-12": "Columbus Day", + "1970-11-01": "All Saints' Day", + "1970-12-08": "Immaculate Conception", + "1970-12-24": "Christmas Eve", + "1970-12-25": "Christmas", + "1971-01-01": "New Year's Day", + "1971-04-09": "Good Friday", + "1971-04-10": "Holy Saturday", + "1971-05-01": "Labour Day", + "1971-05-21": "Navy Day", + "1971-08-15": "Assumption of Mary", + "1971-09-18": "Independence Day", + "1971-09-19": "Army Day", + "1971-10-12": "Columbus Day", + "1971-11-01": "All Saints' Day", + "1971-12-08": "Immaculate Conception", + "1971-12-24": "Christmas Eve", + "1971-12-25": "Christmas", + "1972-01-01": "New Year's Day", + "1972-03-31": "Good Friday", + "1972-04-01": "Holy Saturday", + "1972-05-01": "Labour Day", + "1972-05-21": "Navy Day", + "1972-08-15": "Assumption of Mary", + "1972-09-18": "Independence Day", + "1972-09-19": "Army Day", + "1972-10-12": "Columbus Day", + "1972-11-01": "All Saints' Day", + "1972-12-08": "Immaculate Conception", + "1972-12-24": "Christmas Eve", + "1972-12-25": "Christmas", + "1973-01-01": "New Year's Day", + "1973-04-20": "Good Friday", + "1973-04-21": "Holy Saturday", + "1973-05-01": "Labour Day", + "1973-05-21": "Navy Day", + "1973-08-15": "Assumption of Mary", + "1973-09-18": "Independence Day", + "1973-09-19": "Army Day", + "1973-11-01": "All Saints' Day", + "1973-12-08": "Immaculate Conception", + "1973-12-24": "Christmas Eve", + "1973-12-25": "Christmas", + "1974-01-01": "New Year's Day", + "1974-04-12": "Good Friday", + "1974-04-13": "Holy Saturday", + "1974-05-01": "Labour Day", + "1974-05-21": "Navy Day", + "1974-08-15": "Assumption of Mary", + "1974-09-18": "Independence Day", + "1974-09-19": "Army Day", + "1974-10-12": "Columbus Day", + "1974-11-01": "All Saints' Day", + "1974-12-08": "Immaculate Conception", + "1974-12-24": "Christmas Eve", + "1974-12-25": "Christmas", + "1975-01-01": "New Year's Day", + "1975-03-28": "Good Friday", + "1975-03-29": "Holy Saturday", + "1975-05-01": "Labour Day", + "1975-05-21": "Navy Day", + "1975-08-15": "Assumption of Mary", + "1975-09-18": "Independence Day", + "1975-09-19": "Army Day", + "1975-10-12": "Columbus Day", + "1975-11-01": "All Saints' Day", + "1975-12-08": "Immaculate Conception", + "1975-12-24": "Christmas Eve", + "1975-12-25": "Christmas", + "1976-01-01": "New Year's Day", + "1976-04-16": "Good Friday", + "1976-04-17": "Holy Saturday", + "1976-05-01": "Labour Day", + "1976-05-21": "Navy Day", + "1976-08-15": "Assumption of Mary", + "1976-09-18": "Independence Day", + "1976-09-19": "Army Day", + "1976-10-12": "Columbus Day", + "1976-11-01": "All Saints' Day", + "1976-12-08": "Immaculate Conception", + "1976-12-24": "Christmas Eve", + "1976-12-25": "Christmas", + "1977-01-01": "New Year's Day", + "1977-04-08": "Good Friday", + "1977-04-09": "Holy Saturday", + "1977-05-01": "Labour Day", + "1977-05-21": "Navy Day", + "1977-08-15": "Assumption of Mary", + "1977-09-18": "Independence Day", + "1977-09-19": "Army Day", + "1977-10-12": "Columbus Day", + "1977-11-01": "All Saints' Day", + "1977-12-08": "Immaculate Conception", + "1977-12-24": "Christmas Eve", + "1977-12-25": "Christmas", + "1978-01-01": "New Year's Day", + "1978-03-24": "Good Friday", + "1978-03-25": "Holy Saturday", + "1978-05-01": "Labour Day", + "1978-05-21": "Navy Day", + "1978-08-15": "Assumption of Mary", + "1978-09-18": "Independence Day", + "1978-09-19": "Army Day", + "1978-10-12": "Columbus Day", + "1978-11-01": "All Saints' Day", + "1978-12-08": "Immaculate Conception", + "1978-12-24": "Christmas Eve", + "1978-12-25": "Christmas", + "1979-01-01": "New Year's Day", + "1979-04-13": "Good Friday", + "1979-04-14": "Holy Saturday", + "1979-05-01": "Labour Day", + "1979-05-21": "Navy Day", + "1979-08-15": "Assumption of Mary", + "1979-09-18": "Independence Day", + "1979-09-19": "Army Day", + "1979-10-12": "Columbus Day", + "1979-11-01": "All Saints' Day", + "1979-12-08": "Immaculate Conception", + "1979-12-24": "Christmas Eve", + "1979-12-25": "Christmas", + "1980-01-01": "New Year's Day", + "1980-04-04": "Good Friday", + "1980-04-05": "Holy Saturday", + "1980-05-01": "Labour Day", + "1980-05-21": "Navy Day", + "1980-08-15": "Assumption of Mary", + "1980-09-18": "Independence Day", + "1980-09-19": "Army Day", + "1980-10-12": "Columbus Day", + "1980-11-01": "All Saints' Day", + "1980-12-08": "Immaculate Conception", + "1980-12-24": "Christmas Eve", + "1980-12-25": "Christmas", + "1981-01-01": "New Year's Day", + "1981-04-17": "Good Friday", + "1981-04-18": "Holy Saturday", + "1981-05-01": "Labour Day", + "1981-05-21": "Navy Day", + "1981-08-15": "Assumption of Mary", + "1981-09-11": "Day of National Liberation", + "1981-09-18": "Independence Day", + "1981-09-19": "Army Day", + "1981-10-12": "Columbus Day", + "1981-11-01": "All Saints' Day", + "1981-12-08": "Immaculate Conception", + "1981-12-24": "Christmas Eve", + "1981-12-25": "Christmas", + "1982-01-01": "New Year's Day", + "1982-04-09": "Good Friday", + "1982-04-10": "Holy Saturday", + "1982-05-01": "Labour Day", + "1982-05-21": "Navy Day", + "1982-08-15": "Assumption of Mary", + "1982-09-11": "Day of National Liberation", + "1982-09-18": "Independence Day", + "1982-09-19": "Army Day", + "1982-10-12": "Columbus Day", + "1982-11-01": "All Saints' Day", + "1982-12-08": "Immaculate Conception", + "1982-12-24": "Christmas Eve", + "1982-12-25": "Christmas", + "1983-01-01": "New Year's Day", + "1983-04-01": "Good Friday", + "1983-04-02": "Holy Saturday", + "1983-05-01": "Labour Day", + "1983-05-21": "Navy Day", + "1983-08-15": "Assumption of Mary", + "1983-09-11": "Day of National Liberation", + "1983-09-18": "Independence Day", + "1983-09-19": "Army Day", + "1983-10-12": "Columbus Day", + "1983-11-01": "All Saints' Day", + "1983-12-08": "Immaculate Conception", + "1983-12-24": "Christmas Eve", + "1983-12-25": "Christmas", + "1984-01-01": "New Year's Day", + "1984-04-20": "Good Friday", + "1984-04-21": "Holy Saturday", + "1984-05-01": "Labour Day", + "1984-05-21": "Navy Day", + "1984-08-15": "Assumption of Mary", + "1984-09-11": "Day of National Liberation", + "1984-09-18": "Independence Day", + "1984-09-19": "Army Day", + "1984-10-12": "Columbus Day", + "1984-11-01": "All Saints' Day", + "1984-12-08": "Immaculate Conception", + "1984-12-24": "Christmas Eve", + "1984-12-25": "Christmas", + "1985-01-01": "New Year's Day", + "1985-04-05": "Good Friday", + "1985-04-06": "Holy Saturday", + "1985-05-01": "Labour Day", + "1985-05-21": "Navy Day", + "1985-08-15": "Assumption of Mary", + "1985-09-11": "Day of National Liberation", + "1985-09-18": "Independence Day", + "1985-09-19": "Army Day", + "1985-10-12": "Columbus Day", + "1985-11-01": "All Saints' Day", + "1985-12-08": "Immaculate Conception", + "1985-12-24": "Christmas Eve", + "1985-12-25": "Christmas", + "1986-01-01": "New Year's Day", + "1986-03-28": "Good Friday", + "1986-03-29": "Holy Saturday", + "1986-05-01": "Labour Day", + "1986-05-21": "Navy Day", + "1986-06-29": "Saint Peter and Saint Paul", + "1986-08-15": "Assumption of Mary", + "1986-09-11": "Day of National Liberation", + "1986-09-18": "Independence Day", + "1986-09-19": "Army Day", + "1986-10-12": "Columbus Day", + "1986-11-01": "All Saints' Day", + "1986-12-08": "Immaculate Conception", + "1986-12-24": "Christmas Eve", + "1986-12-25": "Christmas", + "1987-01-01": "New Year's Day", + "1987-04-17": "Good Friday", + "1987-04-18": "Holy Saturday", + "1987-05-01": "Labour Day", + "1987-05-21": "Navy Day", + "1987-06-18": "Corpus Christi", + "1987-06-29": "Saint Peter and Saint Paul", + "1987-08-15": "Assumption of Mary", + "1987-09-11": "Day of National Liberation", + "1987-09-18": "Independence Day", + "1987-09-19": "Army Day", + "1987-10-12": "Columbus Day", + "1987-11-01": "All Saints' Day", + "1987-12-08": "Immaculate Conception", + "1987-12-24": "Christmas Eve", + "1987-12-25": "Christmas", + "1988-01-01": "New Year's Day", + "1988-04-01": "Good Friday", + "1988-04-02": "Holy Saturday", + "1988-05-01": "Labour Day", + "1988-05-21": "Navy Day", + "1988-06-02": "Corpus Christi", + "1988-06-29": "Saint Peter and Saint Paul", + "1988-08-15": "Assumption of Mary", + "1988-09-11": "Day of National Liberation", + "1988-09-18": "Independence Day", + "1988-09-19": "Army Day", + "1988-10-12": "Columbus Day", + "1988-11-01": "All Saints' Day", + "1988-12-08": "Immaculate Conception", + "1988-12-24": "Christmas Eve", + "1988-12-25": "Christmas", + "1989-01-01": "New Year's Day", + "1989-03-24": "Good Friday", + "1989-03-25": "Holy Saturday", + "1989-05-01": "Labour Day", + "1989-05-21": "Navy Day", + "1989-05-25": "Corpus Christi", + "1989-06-29": "Saint Peter and Saint Paul", + "1989-08-15": "Assumption of Mary", + "1989-09-11": "Day of National Liberation", + "1989-09-18": "Independence Day", + "1989-09-19": "Army Day", + "1989-10-12": "Columbus Day", + "1989-11-01": "All Saints' Day", + "1989-12-08": "Immaculate Conception", + "1989-12-25": "Christmas", + "1990-01-01": "New Year's Day", + "1990-04-13": "Good Friday", + "1990-04-14": "Holy Saturday", + "1990-05-01": "Labour Day", + "1990-05-21": "Navy Day", + "1990-06-14": "Corpus Christi", + "1990-06-29": "Saint Peter and Saint Paul", + "1990-08-15": "Assumption of Mary", + "1990-09-11": "Day of National Liberation", + "1990-09-18": "Independence Day", + "1990-09-19": "Army Day", + "1990-10-12": "Columbus Day", + "1990-11-01": "All Saints' Day", + "1990-12-08": "Immaculate Conception", + "1990-12-25": "Christmas", + "1991-01-01": "New Year's Day", + "1991-03-29": "Good Friday", + "1991-03-30": "Holy Saturday", + "1991-05-01": "Labour Day", + "1991-05-21": "Navy Day", + "1991-05-30": "Corpus Christi", + "1991-06-29": "Saint Peter and Saint Paul", + "1991-08-15": "Assumption of Mary", + "1991-09-11": "Day of National Liberation", + "1991-09-18": "Independence Day", + "1991-09-19": "Army Day", + "1991-10-12": "Columbus Day", + "1991-11-01": "All Saints' Day", + "1991-12-08": "Immaculate Conception", + "1991-12-25": "Christmas", + "1992-01-01": "New Year's Day", + "1992-04-17": "Good Friday", + "1992-04-18": "Holy Saturday", + "1992-05-01": "Labour Day", + "1992-05-21": "Navy Day", + "1992-06-18": "Corpus Christi", + "1992-06-29": "Saint Peter and Saint Paul", + "1992-08-15": "Assumption of Mary", + "1992-09-11": "Day of National Liberation", + "1992-09-18": "Independence Day", + "1992-09-19": "Army Day", + "1992-10-12": "Columbus Day", + "1992-11-01": "All Saints' Day", + "1992-12-08": "Immaculate Conception", + "1992-12-25": "Christmas", + "1993-01-01": "New Year's Day", + "1993-04-09": "Good Friday", + "1993-04-10": "Holy Saturday", + "1993-05-01": "Labour Day", + "1993-05-21": "Navy Day", + "1993-06-10": "Corpus Christi", + "1993-06-29": "Saint Peter and Saint Paul", + "1993-08-15": "Assumption of Mary", + "1993-09-11": "Day of National Liberation", + "1993-09-18": "Independence Day", + "1993-09-19": "Army Day", + "1993-10-12": "Columbus Day", + "1993-11-01": "All Saints' Day", + "1993-12-08": "Immaculate Conception", + "1993-12-25": "Christmas", + "1994-01-01": "New Year's Day", + "1994-04-01": "Good Friday", + "1994-04-02": "Holy Saturday", + "1994-05-01": "Labour Day", + "1994-05-21": "Navy Day", + "1994-06-02": "Corpus Christi", + "1994-06-29": "Saint Peter and Saint Paul", + "1994-08-15": "Assumption of Mary", + "1994-09-11": "Day of National Liberation", + "1994-09-18": "Independence Day", + "1994-09-19": "Army Day", + "1994-10-12": "Columbus Day", + "1994-11-01": "All Saints' Day", + "1994-12-08": "Immaculate Conception", + "1994-12-25": "Christmas", + "1995-01-01": "New Year's Day", + "1995-04-14": "Good Friday", + "1995-04-15": "Holy Saturday", + "1995-05-01": "Labour Day", + "1995-05-21": "Navy Day", + "1995-06-15": "Corpus Christi", + "1995-06-29": "Saint Peter and Saint Paul", + "1995-08-15": "Assumption of Mary", + "1995-09-11": "Day of National Liberation", + "1995-09-18": "Independence Day", + "1995-09-19": "Army Day", + "1995-10-12": "Columbus Day", + "1995-11-01": "All Saints' Day", + "1995-12-08": "Immaculate Conception", + "1995-12-25": "Christmas", + "1996-01-01": "New Year's Day", + "1996-04-05": "Good Friday", + "1996-04-06": "Holy Saturday", + "1996-05-01": "Labour Day", + "1996-05-21": "Navy Day", + "1996-06-06": "Corpus Christi", + "1996-06-29": "Saint Peter and Saint Paul", + "1996-08-15": "Assumption of Mary", + "1996-09-11": "Day of National Liberation", + "1996-09-18": "Independence Day", + "1996-09-19": "Army Day", + "1996-10-12": "Columbus Day", + "1996-11-01": "All Saints' Day", + "1996-12-08": "Immaculate Conception", + "1996-12-25": "Christmas", + "1997-01-01": "New Year's Day", + "1997-03-28": "Good Friday", + "1997-03-29": "Holy Saturday", + "1997-05-01": "Labour Day", + "1997-05-21": "Navy Day", + "1997-05-29": "Corpus Christi", + "1997-06-29": "Saint Peter and Saint Paul", + "1997-08-15": "Assumption of Mary", + "1997-09-11": "Day of National Liberation", + "1997-09-18": "Independence Day", + "1997-09-19": "Army Day", + "1997-10-12": "Columbus Day", + "1997-11-01": "All Saints' Day", + "1997-12-08": "Immaculate Conception", + "1997-12-25": "Christmas", + "1998-01-01": "New Year's Day", + "1998-04-10": "Good Friday", + "1998-04-11": "Holy Saturday", + "1998-05-01": "Labour Day", + "1998-05-21": "Navy Day", + "1998-06-11": "Corpus Christi", + "1998-06-29": "Saint Peter and Saint Paul", + "1998-08-15": "Assumption of Mary", + "1998-09-11": "Day of National Liberation", + "1998-09-18": "Independence Day", + "1998-09-19": "Army Day", + "1998-10-12": "Columbus Day", + "1998-11-01": "All Saints' Day", + "1998-12-08": "Immaculate Conception", + "1998-12-25": "Christmas", + "1999-01-01": "New Year's Day", + "1999-04-02": "Good Friday", + "1999-04-03": "Holy Saturday", + "1999-05-01": "Labour Day", + "1999-05-21": "Navy Day", + "1999-06-03": "Corpus Christi", + "1999-06-29": "Saint Peter and Saint Paul", + "1999-08-15": "Assumption of Mary", + "1999-09-06": "Day of National Unity", + "1999-09-18": "Independence Day", + "1999-09-19": "Army Day", + "1999-10-12": "Columbus Day", + "1999-11-01": "All Saints' Day", + "1999-12-08": "Immaculate Conception", + "1999-12-25": "Christmas", + "2000-01-01": "New Year's Day", + "2000-04-21": "Good Friday", + "2000-04-22": "Holy Saturday", + "2000-05-01": "Labour Day", + "2000-05-21": "Navy Day", + "2000-06-19": "Corpus Christi", + "2000-06-26": "Saint Peter and Saint Paul", + "2000-08-15": "Assumption of Mary", + "2000-09-04": "Day of National Unity", + "2000-09-18": "Independence Day", + "2000-09-19": "Army Day", + "2000-10-09": "Meeting of Two Worlds' Day", + "2000-11-01": "All Saints' Day", + "2000-12-08": "Immaculate Conception", + "2000-12-25": "Christmas", + "2001-01-01": "New Year's Day", + "2001-04-13": "Good Friday", + "2001-04-14": "Holy Saturday", + "2001-05-01": "Labour Day", + "2001-05-21": "Navy Day", + "2001-06-11": "Corpus Christi", + "2001-07-02": "Saint Peter and Saint Paul", + "2001-08-15": "Assumption of Mary", + "2001-09-03": "Day of National Unity", + "2001-09-18": "Independence Day", + "2001-09-19": "Army Day", + "2001-10-15": "Meeting of Two Worlds' Day", + "2001-11-01": "All Saints' Day", + "2001-12-08": "Immaculate Conception", + "2001-12-25": "Christmas", + "2002-01-01": "New Year's Day", + "2002-03-29": "Good Friday", + "2002-03-30": "Holy Saturday", + "2002-05-01": "Labour Day", + "2002-05-21": "Navy Day", + "2002-05-27": "Corpus Christi", + "2002-06-29": "Saint Peter and Saint Paul", + "2002-08-15": "Assumption of Mary", + "2002-09-18": "Independence Day", + "2002-09-19": "Army Day", + "2002-10-12": "Meeting of Two Worlds' Day", + "2002-11-01": "All Saints' Day", + "2002-12-08": "Immaculate Conception", + "2002-12-25": "Christmas", + "2003-01-01": "New Year's Day", + "2003-04-18": "Good Friday", + "2003-04-19": "Holy Saturday", + "2003-05-01": "Labour Day", + "2003-05-21": "Navy Day", + "2003-06-16": "Corpus Christi", + "2003-06-29": "Saint Peter and Saint Paul", + "2003-08-15": "Assumption of Mary", + "2003-09-18": "Independence Day", + "2003-09-19": "Army Day", + "2003-10-12": "Meeting of Two Worlds' Day", + "2003-11-01": "All Saints' Day", + "2003-12-08": "Immaculate Conception", + "2003-12-25": "Christmas", + "2004-01-01": "New Year's Day", + "2004-04-09": "Good Friday", + "2004-04-10": "Holy Saturday", + "2004-05-01": "Labour Day", + "2004-05-21": "Navy Day", + "2004-06-07": "Corpus Christi", + "2004-06-28": "Saint Peter and Saint Paul", + "2004-08-15": "Assumption of Mary", + "2004-09-18": "Independence Day", + "2004-09-19": "Army Day", + "2004-10-11": "Meeting of Two Worlds' Day", + "2004-11-01": "All Saints' Day", + "2004-12-08": "Immaculate Conception", + "2004-12-25": "Christmas", + "2005-01-01": "New Year's Day", + "2005-03-25": "Good Friday", + "2005-03-26": "Holy Saturday", + "2005-05-01": "Labour Day", + "2005-05-21": "Navy Day", + "2005-05-23": "Corpus Christi", + "2005-06-27": "Saint Peter and Saint Paul", + "2005-08-15": "Assumption of Mary", + "2005-09-18": "Independence Day", + "2005-09-19": "Army Day", + "2005-10-10": "Meeting of Two Worlds' Day", + "2005-11-01": "All Saints' Day", + "2005-12-08": "Immaculate Conception", + "2005-12-25": "Christmas", + "2006-01-01": "New Year's Day", + "2006-04-14": "Good Friday", + "2006-04-15": "Holy Saturday", + "2006-05-01": "Labour Day", + "2006-05-21": "Navy Day", + "2006-06-12": "Corpus Christi", + "2006-06-26": "Saint Peter and Saint Paul", + "2006-08-15": "Assumption of Mary", + "2006-09-18": "Independence Day", + "2006-09-19": "Army Day", + "2006-10-09": "Meeting of Two Worlds' Day", + "2006-11-01": "All Saints' Day", + "2006-12-08": "Immaculate Conception", + "2006-12-25": "Christmas", + "2007-01-01": "New Year's Day", + "2007-04-06": "Good Friday", + "2007-04-07": "Holy Saturday", + "2007-05-01": "Labour Day", + "2007-05-21": "Navy Day", + "2007-07-02": "Saint Peter and Saint Paul", + "2007-07-16": "Our Lady of Mount Carmel", + "2007-08-15": "Assumption of Mary", + "2007-09-17": "National Holiday", + "2007-09-18": "Independence Day", + "2007-09-19": "Army Day", + "2007-10-15": "Meeting of Two Worlds' Day", + "2007-11-01": "All Saints' Day", + "2007-12-08": "Immaculate Conception", + "2007-12-25": "Christmas", + "2008-01-01": "New Year's Day", + "2008-03-21": "Good Friday", + "2008-03-22": "Holy Saturday", + "2008-05-01": "Labour Day", + "2008-05-21": "Navy Day", + "2008-06-29": "Saint Peter and Saint Paul", + "2008-07-16": "Our Lady of Mount Carmel", + "2008-08-15": "Assumption of Mary", + "2008-09-18": "Independence Day", + "2008-09-19": "Army Day", + "2008-10-12": "Meeting of Two Worlds' Day", + "2008-10-31": "Reformation Day", + "2008-11-01": "All Saints' Day", + "2008-12-08": "Immaculate Conception", + "2008-12-25": "Christmas", + "2009-01-01": "New Year's Day", + "2009-04-10": "Good Friday", + "2009-04-11": "Holy Saturday", + "2009-05-01": "Labour Day", + "2009-05-21": "Navy Day", + "2009-06-29": "Saint Peter and Saint Paul", + "2009-07-16": "Our Lady of Mount Carmel", + "2009-08-15": "Assumption of Mary", + "2009-09-18": "Independence Day", + "2009-09-19": "Army Day", + "2009-10-12": "Meeting of Two Worlds' Day", + "2009-10-31": "Reformation Day", + "2009-11-01": "All Saints' Day", + "2009-12-08": "Immaculate Conception", + "2009-12-25": "Christmas", + "2010-01-01": "New Year's Day", + "2010-04-02": "Good Friday", + "2010-04-03": "Holy Saturday", + "2010-05-01": "Labour Day", + "2010-05-21": "Navy Day", + "2010-06-28": "Saint Peter and Saint Paul", + "2010-07-16": "Our Lady of Mount Carmel", + "2010-08-15": "Assumption of Mary", + "2010-09-18": "Independence Day", + "2010-09-19": "Army Day", + "2010-10-11": "Meeting of Two Worlds' Day", + "2010-10-31": "Reformation Day", + "2010-11-01": "All Saints' Day", + "2010-12-08": "Immaculate Conception", + "2010-12-25": "Christmas", + "2011-01-01": "New Year's Day", + "2011-04-22": "Good Friday", + "2011-04-23": "Holy Saturday", + "2011-05-01": "Labour Day", + "2011-05-21": "Navy Day", + "2011-06-27": "Saint Peter and Saint Paul", + "2011-07-16": "Our Lady of Mount Carmel", + "2011-08-15": "Assumption of Mary", + "2011-09-18": "Independence Day", + "2011-09-19": "Army Day", + "2011-10-10": "Meeting of Two Worlds' Day", + "2011-10-31": "Reformation Day", + "2011-11-01": "All Saints' Day", + "2011-12-08": "Immaculate Conception", + "2011-12-25": "Christmas", + "2012-01-01": "New Year's Day", + "2012-04-06": "Good Friday", + "2012-04-07": "Holy Saturday", + "2012-05-01": "Labour Day", + "2012-05-21": "Navy Day", + "2012-07-02": "Saint Peter and Saint Paul", + "2012-07-16": "Our Lady of Mount Carmel", + "2012-08-15": "Assumption of Mary", + "2012-09-17": "National Holiday", + "2012-09-18": "Independence Day", + "2012-09-19": "Army Day", + "2012-10-15": "Meeting of Two Worlds' Day", + "2012-11-01": "All Saints' Day", + "2012-11-02": "Reformation Day", + "2012-12-08": "Immaculate Conception", + "2012-12-25": "Christmas", + "2013-01-01": "New Year's Day", + "2013-03-29": "Good Friday", + "2013-03-30": "Holy Saturday", + "2013-05-01": "Labour Day", + "2013-05-21": "Navy Day", + "2013-06-07": "Assault and Capture of Cape Arica", + "2013-06-29": "Saint Peter and Saint Paul", + "2013-07-16": "Our Lady of Mount Carmel", + "2013-08-15": "Assumption of Mary", + "2013-09-18": "Independence Day", + "2013-09-19": "Army Day", + "2013-09-20": "National Holiday", + "2013-10-12": "Meeting of Two Worlds' Day", + "2013-10-31": "Reformation Day", + "2013-11-01": "All Saints' Day", + "2013-12-08": "Immaculate Conception", + "2013-12-25": "Christmas", + "2014-01-01": "New Year's Day", + "2014-04-18": "Good Friday", + "2014-04-19": "Holy Saturday", + "2014-05-01": "Labour Day", + "2014-05-21": "Navy Day", + "2014-06-07": "Assault and Capture of Cape Arica", + "2014-06-29": "Saint Peter and Saint Paul", + "2014-07-16": "Our Lady of Mount Carmel", + "2014-08-15": "Assumption of Mary", + "2014-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2014-09-18": "Independence Day", + "2014-09-19": "Army Day", + "2014-10-12": "Meeting of Two Worlds' Day", + "2014-10-31": "Reformation Day", + "2014-11-01": "All Saints' Day", + "2014-12-08": "Immaculate Conception", + "2014-12-25": "Christmas", + "2015-01-01": "New Year's Day", + "2015-04-03": "Good Friday", + "2015-04-04": "Holy Saturday", + "2015-05-01": "Labour Day", + "2015-05-21": "Navy Day", + "2015-06-07": "Assault and Capture of Cape Arica", + "2015-06-29": "Saint Peter and Saint Paul", + "2015-07-16": "Our Lady of Mount Carmel", + "2015-08-15": "Assumption of Mary", + "2015-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2015-09-18": "Independence Day", + "2015-09-19": "Army Day", + "2015-10-12": "Meeting of Two Worlds' Day", + "2015-10-31": "Reformation Day", + "2015-11-01": "All Saints' Day", + "2015-12-08": "Immaculate Conception", + "2015-12-25": "Christmas", + "2016-01-01": "New Year's Day", + "2016-03-25": "Good Friday", + "2016-03-26": "Holy Saturday", + "2016-05-01": "Labour Day", + "2016-05-21": "Navy Day", + "2016-06-07": "Assault and Capture of Cape Arica", + "2016-06-27": "Saint Peter and Saint Paul", + "2016-07-16": "Our Lady of Mount Carmel", + "2016-08-15": "Assumption of Mary", + "2016-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2016-09-18": "Independence Day", + "2016-09-19": "Army Day", + "2016-10-10": "Meeting of Two Worlds' Day", + "2016-10-31": "Reformation Day", + "2016-11-01": "All Saints' Day", + "2016-12-08": "Immaculate Conception", + "2016-12-25": "Christmas", + "2017-01-01": "New Year's Day", + "2017-01-02": "National Holiday", + "2017-04-14": "Good Friday", + "2017-04-15": "Holy Saturday", + "2017-05-01": "Labour Day", + "2017-05-21": "Navy Day", + "2017-06-07": "Assault and Capture of Cape Arica", + "2017-06-26": "Saint Peter and Saint Paul", + "2017-07-16": "Our Lady of Mount Carmel", + "2017-08-15": "Assumption of Mary", + "2017-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2017-09-18": "Independence Day", + "2017-09-19": "Army Day", + "2017-10-09": "Meeting of Two Worlds' Day", + "2017-10-27": "Reformation Day", + "2017-11-01": "All Saints' Day", + "2017-12-08": "Immaculate Conception", + "2017-12-25": "Christmas", + "2018-01-01": "New Year's Day", + "2018-03-30": "Good Friday", + "2018-03-31": "Holy Saturday", + "2018-05-01": "Labour Day", + "2018-05-21": "Navy Day", + "2018-06-07": "Assault and Capture of Cape Arica", + "2018-07-02": "Saint Peter and Saint Paul", + "2018-07-16": "Our Lady of Mount Carmel", + "2018-08-15": "Assumption of Mary", + "2018-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2018-09-17": "National Holiday", + "2018-09-18": "Independence Day", + "2018-09-19": "Army Day", + "2018-10-15": "Meeting of Two Worlds' Day", + "2018-11-01": "All Saints' Day", + "2018-11-02": "Reformation Day", + "2018-12-08": "Immaculate Conception", + "2018-12-25": "Christmas", + "2019-01-01": "New Year's Day", + "2019-04-19": "Good Friday", + "2019-04-20": "Holy Saturday", + "2019-05-01": "Labour Day", + "2019-05-21": "Navy Day", + "2019-06-07": "Assault and Capture of Cape Arica", + "2019-06-29": "Saint Peter and Saint Paul", + "2019-07-16": "Our Lady of Mount Carmel", + "2019-08-15": "Assumption of Mary", + "2019-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2019-09-18": "Independence Day", + "2019-09-19": "Army Day", + "2019-09-20": "National Holiday", + "2019-10-12": "Meeting of Two Worlds' Day", + "2019-10-31": "Reformation Day", + "2019-11-01": "All Saints' Day", + "2019-12-08": "Immaculate Conception", + "2019-12-25": "Christmas", + "2020-01-01": "New Year's Day", + "2020-04-10": "Good Friday", + "2020-04-11": "Holy Saturday", + "2020-05-01": "Labour Day", + "2020-05-21": "Navy Day", + "2020-06-07": "Assault and Capture of Cape Arica", + "2020-06-29": "Saint Peter and Saint Paul", + "2020-07-16": "Our Lady of Mount Carmel", + "2020-08-15": "Assumption of Mary", + "2020-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2020-09-18": "Independence Day", + "2020-09-19": "Army Day", + "2020-10-12": "Meeting of Two Worlds' Day", + "2020-10-31": "Reformation Day", + "2020-11-01": "All Saints' Day", + "2020-12-08": "Immaculate Conception", + "2020-12-25": "Christmas", + "2021-01-01": "New Year's Day", + "2021-04-02": "Good Friday", + "2021-04-03": "Holy Saturday", + "2021-05-01": "Labour Day", + "2021-05-21": "Navy Day", + "2021-06-07": "Assault and Capture of Cape Arica", + "2021-06-21": "National Day of Indigenous Peoples", + "2021-06-28": "Saint Peter and Saint Paul", + "2021-07-16": "Our Lady of Mount Carmel", + "2021-08-15": "Assumption of Mary", + "2021-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2021-09-17": "National Holiday", + "2021-09-18": "Independence Day", + "2021-09-19": "Army Day", + "2021-10-11": "Meeting of Two Worlds' Day", + "2021-10-31": "Reformation Day", + "2021-11-01": "All Saints' Day", + "2021-12-08": "Immaculate Conception", + "2021-12-25": "Christmas", + "2022-01-01": "New Year's Day", + "2022-04-15": "Good Friday", + "2022-04-16": "Holy Saturday", + "2022-05-01": "Labour Day", + "2022-05-21": "Navy Day", + "2022-06-07": "Assault and Capture of Cape Arica", + "2022-06-21": "National Day of Indigenous Peoples", + "2022-06-27": "Saint Peter and Saint Paul", + "2022-07-16": "Our Lady of Mount Carmel", + "2022-08-15": "Assumption of Mary", + "2022-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2022-09-16": "National Holiday", + "2022-09-18": "Independence Day", + "2022-09-19": "Army Day", + "2022-10-10": "Meeting of Two Worlds' Day", + "2022-10-31": "Reformation Day", + "2022-11-01": "All Saints' Day", + "2022-12-08": "Immaculate Conception", + "2022-12-25": "Christmas", + "2023-01-01": "New Year's Day", + "2023-01-02": "National Holiday", + "2023-04-07": "Good Friday", + "2023-04-08": "Holy Saturday", + "2023-05-01": "Labour Day", + "2023-05-21": "Navy Day", + "2023-06-07": "Assault and Capture of Cape Arica", + "2023-06-21": "National Day of Indigenous Peoples", + "2023-06-26": "Saint Peter and Saint Paul", + "2023-07-16": "Our Lady of Mount Carmel", + "2023-08-15": "Assumption of Mary", + "2023-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2023-09-18": "Independence Day", + "2023-09-19": "Army Day", + "2023-10-09": "Meeting of Two Worlds' Day", + "2023-10-27": "Reformation Day", + "2023-11-01": "All Saints' Day", + "2023-12-08": "Immaculate Conception", + "2023-12-25": "Christmas", + "2024-01-01": "New Year's Day", + "2024-03-29": "Good Friday", + "2024-03-30": "Holy Saturday", + "2024-05-01": "Labour Day", + "2024-05-21": "Navy Day", + "2024-06-07": "Assault and Capture of Cape Arica", + "2024-06-20": "National Day of Indigenous Peoples", + "2024-06-29": "Saint Peter and Saint Paul", + "2024-07-16": "Our Lady of Mount Carmel", + "2024-08-15": "Assumption of Mary", + "2024-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2024-09-18": "Independence Day", + "2024-09-19": "Army Day", + "2024-09-20": "National Holiday", + "2024-10-12": "Meeting of Two Worlds' Day", + "2024-10-31": "Reformation Day", + "2024-11-01": "All Saints' Day", + "2024-12-08": "Immaculate Conception", + "2024-12-25": "Christmas", + "2025-01-01": "New Year's Day", + "2025-04-18": "Good Friday", + "2025-04-19": "Holy Saturday", + "2025-05-01": "Labour Day", + "2025-05-21": "Navy Day", + "2025-06-07": "Assault and Capture of Cape Arica", + "2025-06-20": "National Day of Indigenous Peoples", + "2025-06-29": "Saint Peter and Saint Paul", + "2025-07-16": "Our Lady of Mount Carmel", + "2025-08-15": "Assumption of Mary", + "2025-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2025-09-18": "Independence Day", + "2025-09-19": "Army Day", + "2025-10-12": "Meeting of Two Worlds' Day", + "2025-10-31": "Reformation Day", + "2025-11-01": "All Saints' Day", + "2025-12-08": "Immaculate Conception", + "2025-12-25": "Christmas", + "2026-01-01": "New Year's Day", + "2026-04-03": "Good Friday", + "2026-04-04": "Holy Saturday", + "2026-05-01": "Labour Day", + "2026-05-21": "Navy Day", + "2026-06-07": "Assault and Capture of Cape Arica", + "2026-06-21": "National Day of Indigenous Peoples", + "2026-06-29": "Saint Peter and Saint Paul", + "2026-07-16": "Our Lady of Mount Carmel", + "2026-08-15": "Assumption of Mary", + "2026-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2026-09-18": "Independence Day", + "2026-09-19": "Army Day", + "2026-10-12": "Meeting of Two Worlds' Day", + "2026-10-31": "Reformation Day", + "2026-11-01": "All Saints' Day", + "2026-12-08": "Immaculate Conception", + "2026-12-25": "Christmas", + "2027-01-01": "New Year's Day", + "2027-03-26": "Good Friday", + "2027-03-27": "Holy Saturday", + "2027-05-01": "Labour Day", + "2027-05-21": "Navy Day", + "2027-06-07": "Assault and Capture of Cape Arica", + "2027-06-21": "National Day of Indigenous Peoples", + "2027-06-28": "Saint Peter and Saint Paul", + "2027-07-16": "Our Lady of Mount Carmel", + "2027-08-15": "Assumption of Mary", + "2027-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2027-09-17": "National Holiday", + "2027-09-18": "Independence Day", + "2027-09-19": "Army Day", + "2027-10-11": "Meeting of Two Worlds' Day", + "2027-10-31": "Reformation Day", + "2027-11-01": "All Saints' Day", + "2027-12-08": "Immaculate Conception", + "2027-12-25": "Christmas", + "2028-01-01": "New Year's Day", + "2028-04-14": "Good Friday", + "2028-04-15": "Holy Saturday", + "2028-05-01": "Labour Day", + "2028-05-21": "Navy Day", + "2028-06-07": "Assault and Capture of Cape Arica", + "2028-06-20": "National Day of Indigenous Peoples", + "2028-06-26": "Saint Peter and Saint Paul", + "2028-07-16": "Our Lady of Mount Carmel", + "2028-08-15": "Assumption of Mary", + "2028-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2028-09-18": "Independence Day", + "2028-09-19": "Army Day", + "2028-10-09": "Meeting of Two Worlds' Day", + "2028-10-27": "Reformation Day", + "2028-11-01": "All Saints' Day", + "2028-12-08": "Immaculate Conception", + "2028-12-25": "Christmas", + "2029-01-01": "New Year's Day", + "2029-03-30": "Good Friday", + "2029-03-31": "Holy Saturday", + "2029-05-01": "Labour Day", + "2029-05-21": "Navy Day", + "2029-06-07": "Assault and Capture of Cape Arica", + "2029-06-20": "National Day of Indigenous Peoples", + "2029-07-02": "Saint Peter and Saint Paul", + "2029-07-16": "Our Lady of Mount Carmel", + "2029-08-15": "Assumption of Mary", + "2029-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2029-09-17": "National Holiday", + "2029-09-18": "Independence Day", + "2029-09-19": "Army Day", + "2029-10-15": "Meeting of Two Worlds' Day", + "2029-11-01": "All Saints' Day", + "2029-11-02": "Reformation Day", + "2029-12-08": "Immaculate Conception", + "2029-12-25": "Christmas", + "2030-01-01": "New Year's Day", + "2030-04-19": "Good Friday", + "2030-04-20": "Holy Saturday", + "2030-05-01": "Labour Day", + "2030-05-21": "Navy Day", + "2030-06-07": "Assault and Capture of Cape Arica", + "2030-06-21": "National Day of Indigenous Peoples", + "2030-06-29": "Saint Peter and Saint Paul", + "2030-07-16": "Our Lady of Mount Carmel", + "2030-08-15": "Assumption of Mary", + "2030-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2030-09-18": "Independence Day", + "2030-09-19": "Army Day", + "2030-09-20": "National Holiday", + "2030-10-12": "Meeting of Two Worlds' Day", + "2030-10-31": "Reformation Day", + "2030-11-01": "All Saints' Day", + "2030-12-08": "Immaculate Conception", + "2030-12-25": "Christmas", + "2031-01-01": "New Year's Day", + "2031-04-11": "Good Friday", + "2031-04-12": "Holy Saturday", + "2031-05-01": "Labour Day", + "2031-05-21": "Navy Day", + "2031-06-07": "Assault and Capture of Cape Arica", + "2031-06-21": "National Day of Indigenous Peoples", + "2031-06-29": "Saint Peter and Saint Paul", + "2031-07-16": "Our Lady of Mount Carmel", + "2031-08-15": "Assumption of Mary", + "2031-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2031-09-18": "Independence Day", + "2031-09-19": "Army Day", + "2031-10-12": "Meeting of Two Worlds' Day", + "2031-10-31": "Reformation Day", + "2031-11-01": "All Saints' Day", + "2031-12-08": "Immaculate Conception", + "2031-12-25": "Christmas", + "2032-01-01": "New Year's Day", + "2032-03-26": "Good Friday", + "2032-03-27": "Holy Saturday", + "2032-05-01": "Labour Day", + "2032-05-21": "Navy Day", + "2032-06-07": "Assault and Capture of Cape Arica", + "2032-06-20": "National Day of Indigenous Peoples", + "2032-06-28": "Saint Peter and Saint Paul", + "2032-07-16": "Our Lady of Mount Carmel", + "2032-08-15": "Assumption of Mary", + "2032-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2032-09-17": "National Holiday", + "2032-09-18": "Independence Day", + "2032-09-19": "Army Day", + "2032-10-11": "Meeting of Two Worlds' Day", + "2032-10-31": "Reformation Day", + "2032-11-01": "All Saints' Day", + "2032-12-08": "Immaculate Conception", + "2032-12-25": "Christmas", + "2033-01-01": "New Year's Day", + "2033-04-15": "Good Friday", + "2033-04-16": "Holy Saturday", + "2033-05-01": "Labour Day", + "2033-05-21": "Navy Day", + "2033-06-07": "Assault and Capture of Cape Arica", + "2033-06-20": "National Day of Indigenous Peoples", + "2033-06-27": "Saint Peter and Saint Paul", + "2033-07-16": "Our Lady of Mount Carmel", + "2033-08-15": "Assumption of Mary", + "2033-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2033-09-18": "Independence Day", + "2033-09-19": "Army Day", + "2033-10-10": "Meeting of Two Worlds' Day", + "2033-10-31": "Reformation Day", + "2033-11-01": "All Saints' Day", + "2033-12-08": "Immaculate Conception", + "2033-12-25": "Christmas", + "2034-01-01": "New Year's Day", + "2034-01-02": "National Holiday", + "2034-04-07": "Good Friday", + "2034-04-08": "Holy Saturday", + "2034-05-01": "Labour Day", + "2034-05-21": "Navy Day", + "2034-06-07": "Assault and Capture of Cape Arica", + "2034-06-21": "National Day of Indigenous Peoples", + "2034-06-26": "Saint Peter and Saint Paul", + "2034-07-16": "Our Lady of Mount Carmel", + "2034-08-15": "Assumption of Mary", + "2034-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2034-09-18": "Independence Day", + "2034-09-19": "Army Day", + "2034-10-09": "Meeting of Two Worlds' Day", + "2034-10-27": "Reformation Day", + "2034-11-01": "All Saints' Day", + "2034-12-08": "Immaculate Conception", + "2034-12-25": "Christmas", + "2035-01-01": "New Year's Day", + "2035-03-23": "Good Friday", + "2035-03-24": "Holy Saturday", + "2035-05-01": "Labour Day", + "2035-05-21": "Navy Day", + "2035-06-07": "Assault and Capture of Cape Arica", + "2035-06-21": "National Day of Indigenous Peoples", + "2035-07-02": "Saint Peter and Saint Paul", + "2035-07-16": "Our Lady of Mount Carmel", + "2035-08-15": "Assumption of Mary", + "2035-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2035-09-17": "National Holiday", + "2035-09-18": "Independence Day", + "2035-09-19": "Army Day", + "2035-10-15": "Meeting of Two Worlds' Day", + "2035-11-01": "All Saints' Day", + "2035-11-02": "Reformation Day", + "2035-12-08": "Immaculate Conception", + "2035-12-25": "Christmas", + "2036-01-01": "New Year's Day", + "2036-04-11": "Good Friday", + "2036-04-12": "Holy Saturday", + "2036-05-01": "Labour Day", + "2036-05-21": "Navy Day", + "2036-06-07": "Assault and Capture of Cape Arica", + "2036-06-20": "National Day of Indigenous Peoples", + "2036-06-29": "Saint Peter and Saint Paul", + "2036-07-16": "Our Lady of Mount Carmel", + "2036-08-15": "Assumption of Mary", + "2036-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2036-09-18": "Independence Day", + "2036-09-19": "Army Day", + "2036-10-12": "Meeting of Two Worlds' Day", + "2036-10-31": "Reformation Day", + "2036-11-01": "All Saints' Day", + "2036-12-08": "Immaculate Conception", + "2036-12-25": "Christmas", + "2037-01-01": "New Year's Day", + "2037-04-03": "Good Friday", + "2037-04-04": "Holy Saturday", + "2037-05-01": "Labour Day", + "2037-05-21": "Navy Day", + "2037-06-07": "Assault and Capture of Cape Arica", + "2037-06-20": "National Day of Indigenous Peoples", + "2037-06-29": "Saint Peter and Saint Paul", + "2037-07-16": "Our Lady of Mount Carmel", + "2037-08-15": "Assumption of Mary", + "2037-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2037-09-18": "Independence Day", + "2037-09-19": "Army Day", + "2037-10-12": "Meeting of Two Worlds' Day", + "2037-10-31": "Reformation Day", + "2037-11-01": "All Saints' Day", + "2037-12-08": "Immaculate Conception", + "2037-12-25": "Christmas", + "2038-01-01": "New Year's Day", + "2038-04-23": "Good Friday", + "2038-04-24": "Holy Saturday", + "2038-05-01": "Labour Day", + "2038-05-21": "Navy Day", + "2038-06-07": "Assault and Capture of Cape Arica", + "2038-06-21": "National Day of Indigenous Peoples", + "2038-06-28": "Saint Peter and Saint Paul", + "2038-07-16": "Our Lady of Mount Carmel", + "2038-08-15": "Assumption of Mary", + "2038-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2038-09-17": "National Holiday", + "2038-09-18": "Independence Day", + "2038-09-19": "Army Day", + "2038-10-11": "Meeting of Two Worlds' Day", + "2038-10-31": "Reformation Day", + "2038-11-01": "All Saints' Day", + "2038-12-08": "Immaculate Conception", + "2038-12-25": "Christmas", + "2039-01-01": "New Year's Day", + "2039-04-08": "Good Friday", + "2039-04-09": "Holy Saturday", + "2039-05-01": "Labour Day", + "2039-05-21": "Navy Day", + "2039-06-07": "Assault and Capture of Cape Arica", + "2039-06-21": "National Day of Indigenous Peoples", + "2039-06-27": "Saint Peter and Saint Paul", + "2039-07-16": "Our Lady of Mount Carmel", + "2039-08-15": "Assumption of Mary", + "2039-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2039-09-18": "Independence Day", + "2039-09-19": "Army Day", + "2039-10-10": "Meeting of Two Worlds' Day", + "2039-10-31": "Reformation Day", + "2039-11-01": "All Saints' Day", + "2039-12-08": "Immaculate Conception", + "2039-12-25": "Christmas", + "2040-01-01": "New Year's Day", + "2040-01-02": "National Holiday", + "2040-03-30": "Good Friday", + "2040-03-31": "Holy Saturday", + "2040-05-01": "Labour Day", + "2040-05-21": "Navy Day", + "2040-06-07": "Assault and Capture of Cape Arica", + "2040-06-20": "National Day of Indigenous Peoples", + "2040-07-02": "Saint Peter and Saint Paul", + "2040-07-16": "Our Lady of Mount Carmel", + "2040-08-15": "Assumption of Mary", + "2040-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2040-09-17": "National Holiday", + "2040-09-18": "Independence Day", + "2040-09-19": "Army Day", + "2040-10-15": "Meeting of Two Worlds' Day", + "2040-11-01": "All Saints' Day", + "2040-11-02": "Reformation Day", + "2040-12-08": "Immaculate Conception", + "2040-12-25": "Christmas", + "2041-01-01": "New Year's Day", + "2041-04-19": "Good Friday", + "2041-04-20": "Holy Saturday", + "2041-05-01": "Labour Day", + "2041-05-21": "Navy Day", + "2041-06-07": "Assault and Capture of Cape Arica", + "2041-06-20": "National Day of Indigenous Peoples", + "2041-06-29": "Saint Peter and Saint Paul", + "2041-07-16": "Our Lady of Mount Carmel", + "2041-08-15": "Assumption of Mary", + "2041-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2041-09-18": "Independence Day", + "2041-09-19": "Army Day", + "2041-09-20": "National Holiday", + "2041-10-12": "Meeting of Two Worlds' Day", + "2041-10-31": "Reformation Day", + "2041-11-01": "All Saints' Day", + "2041-12-08": "Immaculate Conception", + "2041-12-25": "Christmas", + "2042-01-01": "New Year's Day", + "2042-04-04": "Good Friday", + "2042-04-05": "Holy Saturday", + "2042-05-01": "Labour Day", + "2042-05-21": "Navy Day", + "2042-06-07": "Assault and Capture of Cape Arica", + "2042-06-21": "National Day of Indigenous Peoples", + "2042-06-29": "Saint Peter and Saint Paul", + "2042-07-16": "Our Lady of Mount Carmel", + "2042-08-15": "Assumption of Mary", + "2042-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2042-09-18": "Independence Day", + "2042-09-19": "Army Day", + "2042-10-12": "Meeting of Two Worlds' Day", + "2042-10-31": "Reformation Day", + "2042-11-01": "All Saints' Day", + "2042-12-08": "Immaculate Conception", + "2042-12-25": "Christmas", + "2043-01-01": "New Year's Day", + "2043-03-27": "Good Friday", + "2043-03-28": "Holy Saturday", + "2043-05-01": "Labour Day", + "2043-05-21": "Navy Day", + "2043-06-07": "Assault and Capture of Cape Arica", + "2043-06-21": "National Day of Indigenous Peoples", + "2043-06-29": "Saint Peter and Saint Paul", + "2043-07-16": "Our Lady of Mount Carmel", + "2043-08-15": "Assumption of Mary", + "2043-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2043-09-18": "Independence Day", + "2043-09-19": "Army Day", + "2043-10-12": "Meeting of Two Worlds' Day", + "2043-10-31": "Reformation Day", + "2043-11-01": "All Saints' Day", + "2043-12-08": "Immaculate Conception", + "2043-12-25": "Christmas", + "2044-01-01": "New Year's Day", + "2044-04-15": "Good Friday", + "2044-04-16": "Holy Saturday", + "2044-05-01": "Labour Day", + "2044-05-21": "Navy Day", + "2044-06-07": "Assault and Capture of Cape Arica", + "2044-06-20": "National Day of Indigenous Peoples", + "2044-06-27": "Saint Peter and Saint Paul", + "2044-07-16": "Our Lady of Mount Carmel", + "2044-08-15": "Assumption of Mary", + "2044-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2044-09-18": "Independence Day", + "2044-09-19": "Army Day", + "2044-10-10": "Meeting of Two Worlds' Day", + "2044-10-31": "Reformation Day", + "2044-11-01": "All Saints' Day", + "2044-12-08": "Immaculate Conception", + "2044-12-25": "Christmas", + "2045-01-01": "New Year's Day", + "2045-01-02": "National Holiday", + "2045-04-07": "Good Friday", + "2045-04-08": "Holy Saturday", + "2045-05-01": "Labour Day", + "2045-05-21": "Navy Day", + "2045-06-07": "Assault and Capture of Cape Arica", + "2045-06-20": "National Day of Indigenous Peoples", + "2045-06-26": "Saint Peter and Saint Paul", + "2045-07-16": "Our Lady of Mount Carmel", + "2045-08-15": "Assumption of Mary", + "2045-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2045-09-18": "Independence Day", + "2045-09-19": "Army Day", + "2045-10-09": "Meeting of Two Worlds' Day", + "2045-10-27": "Reformation Day", + "2045-11-01": "All Saints' Day", + "2045-12-08": "Immaculate Conception", + "2045-12-25": "Christmas", + "2046-01-01": "New Year's Day", + "2046-03-23": "Good Friday", + "2046-03-24": "Holy Saturday", + "2046-05-01": "Labour Day", + "2046-05-21": "Navy Day", + "2046-06-07": "Assault and Capture of Cape Arica", + "2046-06-21": "National Day of Indigenous Peoples", + "2046-07-02": "Saint Peter and Saint Paul", + "2046-07-16": "Our Lady of Mount Carmel", + "2046-08-15": "Assumption of Mary", + "2046-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2046-09-17": "National Holiday", + "2046-09-18": "Independence Day", + "2046-09-19": "Army Day", + "2046-10-15": "Meeting of Two Worlds' Day", + "2046-11-01": "All Saints' Day", + "2046-11-02": "Reformation Day", + "2046-12-08": "Immaculate Conception", + "2046-12-25": "Christmas", + "2047-01-01": "New Year's Day", + "2047-04-12": "Good Friday", + "2047-04-13": "Holy Saturday", + "2047-05-01": "Labour Day", + "2047-05-21": "Navy Day", + "2047-06-07": "Assault and Capture of Cape Arica", + "2047-06-21": "National Day of Indigenous Peoples", + "2047-06-29": "Saint Peter and Saint Paul", + "2047-07-16": "Our Lady of Mount Carmel", + "2047-08-15": "Assumption of Mary", + "2047-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2047-09-18": "Independence Day", + "2047-09-19": "Army Day", + "2047-09-20": "National Holiday", + "2047-10-12": "Meeting of Two Worlds' Day", + "2047-10-31": "Reformation Day", + "2047-11-01": "All Saints' Day", + "2047-12-08": "Immaculate Conception", + "2047-12-25": "Christmas", + "2048-01-01": "New Year's Day", + "2048-04-03": "Good Friday", + "2048-04-04": "Holy Saturday", + "2048-05-01": "Labour Day", + "2048-05-21": "Navy Day", + "2048-06-07": "Assault and Capture of Cape Arica", + "2048-06-20": "National Day of Indigenous Peoples", + "2048-06-29": "Saint Peter and Saint Paul", + "2048-07-16": "Our Lady of Mount Carmel", + "2048-08-15": "Assumption of Mary", + "2048-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2048-09-18": "Independence Day", + "2048-09-19": "Army Day", + "2048-10-12": "Meeting of Two Worlds' Day", + "2048-10-31": "Reformation Day", + "2048-11-01": "All Saints' Day", + "2048-12-08": "Immaculate Conception", + "2048-12-25": "Christmas", + "2049-01-01": "New Year's Day", + "2049-04-16": "Good Friday", + "2049-04-17": "Holy Saturday", + "2049-05-01": "Labour Day", + "2049-05-21": "Navy Day", + "2049-06-07": "Assault and Capture of Cape Arica", + "2049-06-20": "National Day of Indigenous Peoples", + "2049-06-28": "Saint Peter and Saint Paul", + "2049-07-16": "Our Lady of Mount Carmel", + "2049-08-15": "Assumption of Mary", + "2049-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2049-09-17": "National Holiday", + "2049-09-18": "Independence Day", + "2049-09-19": "Army Day", + "2049-10-11": "Meeting of Two Worlds' Day", + "2049-10-31": "Reformation Day", + "2049-11-01": "All Saints' Day", + "2049-12-08": "Immaculate Conception", + "2049-12-25": "Christmas", + "2050-01-01": "New Year's Day", + "2050-04-08": "Good Friday", + "2050-04-09": "Holy Saturday", + "2050-05-01": "Labour Day", + "2050-05-21": "Navy Day", + "2050-06-07": "Assault and Capture of Cape Arica", + "2050-06-20": "National Day of Indigenous Peoples", + "2050-06-27": "Saint Peter and Saint Paul", + "2050-07-16": "Our Lady of Mount Carmel", + "2050-08-15": "Assumption of Mary", + "2050-08-20": "Nativity of Bernardo O'Higgins (Chill\u00e1n and Chill\u00e1n Viejo communes)", + "2050-09-18": "Independence Day", + "2050-09-19": "Army Day", + "2050-10-10": "Meeting of Two Worlds' Day", + "2050-10-31": "Reformation Day", + "2050-11-01": "All Saints' Day", + "2050-12-08": "Immaculate Conception", + "2050-12-25": "Christmas" +} diff --git a/snapshots/countries/CM.json b/snapshots/countries/CM.json new file mode 100644 index 000000000..6649b4cc1 --- /dev/null +++ b/snapshots/countries/CM.json @@ -0,0 +1,1100 @@ +{ + "1960-01-01": "New Year's Day", + "1960-03-28": "Eid al-Fitr* (*estimated)", + "1960-04-15": "Good Friday", + "1960-05-01": "Labour Day", + "1960-05-02": "Labour Day (Observed)", + "1960-05-26": "Ascension Day", + "1960-06-04": "Eid al-Adha* (*estimated)", + "1960-08-15": "Assumption Day", + "1960-09-03": "Mawlid* (*estimated)", + "1960-12-25": "Christmas Day", + "1960-12-26": "Christmas Day (Observed)", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day (Observed)", + "1961-03-18": "Eid al-Fitr* (*estimated)", + "1961-03-31": "Good Friday", + "1961-05-01": "Labour Day", + "1961-05-11": "Ascension Day", + "1961-05-25": "Eid al-Adha* (*estimated)", + "1961-08-15": "Assumption Day", + "1961-08-23": "Mawlid* (*estimated)", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-03-07": "Eid al-Fitr* (*estimated)", + "1962-04-20": "Good Friday", + "1962-05-01": "Labour Day", + "1962-05-14": "Eid al-Adha* (*estimated)", + "1962-05-31": "Ascension Day", + "1962-08-12": "Mawlid* (*estimated)", + "1962-08-13": "Mawlid* (*estimated) (Observed)", + "1962-08-15": "Assumption Day", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-02-24": "Eid al-Fitr* (*estimated)", + "1963-02-25": "Eid al-Fitr* (*estimated) (Observed)", + "1963-04-12": "Good Friday", + "1963-05-01": "Labour Day", + "1963-05-03": "Eid al-Adha* (*estimated)", + "1963-05-23": "Ascension Day", + "1963-08-02": "Mawlid* (*estimated)", + "1963-08-15": "Assumption Day", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-02-14": "Eid al-Fitr* (*estimated)", + "1964-03-27": "Good Friday", + "1964-04-22": "Eid al-Adha* (*estimated)", + "1964-05-01": "Labour Day", + "1964-05-07": "Ascension Day", + "1964-07-21": "Mawlid* (*estimated)", + "1964-08-15": "Assumption Day", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-02-02": "Eid al-Fitr* (*estimated)", + "1965-04-11": "Eid al-Adha* (*estimated)", + "1965-04-12": "Eid al-Adha* (*estimated) (Observed)", + "1965-04-16": "Good Friday", + "1965-05-01": "Labour Day", + "1965-05-27": "Ascension Day", + "1965-07-10": "Mawlid* (*estimated)", + "1965-08-15": "Assumption Day", + "1965-08-16": "Assumption Day (Observed)", + "1965-12-25": "Christmas Day", + "1966-01-01": "New Year's Day", + "1966-01-22": "Eid al-Fitr* (*estimated)", + "1966-02-11": "Youth Day", + "1966-04-01": "Eid al-Adha* (*estimated)", + "1966-04-08": "Good Friday", + "1966-05-01": "Labour Day", + "1966-05-02": "Labour Day (Observed)", + "1966-05-19": "Ascension Day", + "1966-07-01": "Mawlid* (*estimated)", + "1966-08-15": "Assumption Day", + "1966-12-25": "Christmas Day", + "1966-12-26": "Christmas Day (Observed)", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day (Observed)", + "1967-01-12": "Eid al-Fitr* (*estimated)", + "1967-02-11": "Youth Day", + "1967-03-21": "Eid al-Adha* (*estimated)", + "1967-03-24": "Good Friday", + "1967-05-01": "Labour Day", + "1967-05-04": "Ascension Day", + "1967-06-19": "Mawlid* (*estimated)", + "1967-08-15": "Assumption Day", + "1967-12-25": "Christmas Day", + "1968-01-01": "Eid al-Fitr* (*estimated); New Year's Day", + "1968-02-11": "Youth Day", + "1968-02-12": "Youth Day (Observed)", + "1968-03-09": "Eid al-Adha* (*estimated)", + "1968-04-12": "Good Friday", + "1968-05-01": "Labour Day", + "1968-05-23": "Ascension Day", + "1968-06-08": "Mawlid* (*estimated)", + "1968-08-15": "Assumption Day", + "1968-12-21": "Eid al-Fitr* (*estimated)", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-02-11": "Youth Day", + "1969-02-27": "Eid al-Adha* (*estimated)", + "1969-04-04": "Good Friday", + "1969-05-01": "Labour Day", + "1969-05-15": "Ascension Day", + "1969-05-28": "Mawlid* (*estimated)", + "1969-08-15": "Assumption Day", + "1969-12-10": "Eid al-Fitr* (*estimated)", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-02-11": "Youth Day", + "1970-02-16": "Eid al-Adha* (*estimated)", + "1970-03-27": "Good Friday", + "1970-05-01": "Labour Day", + "1970-05-07": "Ascension Day", + "1970-05-18": "Mawlid* (*estimated)", + "1970-08-15": "Assumption Day", + "1970-11-30": "Eid al-Fitr* (*estimated)", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-02-06": "Eid al-Adha* (*estimated)", + "1971-02-11": "Youth Day", + "1971-04-09": "Good Friday", + "1971-05-01": "Labour Day", + "1971-05-07": "Mawlid* (*estimated)", + "1971-05-20": "Ascension Day", + "1971-08-15": "Assumption Day", + "1971-08-16": "Assumption Day (Observed)", + "1971-11-19": "Eid al-Fitr* (*estimated)", + "1971-12-25": "Christmas Day", + "1972-01-01": "New Year's Day", + "1972-01-26": "Eid al-Adha* (*estimated)", + "1972-02-11": "Youth Day", + "1972-03-31": "Good Friday", + "1972-04-25": "Mawlid* (*estimated)", + "1972-05-01": "Labour Day", + "1972-05-11": "Ascension Day", + "1972-05-20": "National Day", + "1972-08-15": "Assumption Day", + "1972-11-07": "Eid al-Fitr* (*estimated)", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-01-14": "Eid al-Adha* (*estimated)", + "1973-01-15": "Eid al-Adha* (*estimated) (Observed)", + "1973-02-11": "Youth Day", + "1973-02-12": "Youth Day (Observed)", + "1973-04-15": "Mawlid* (*estimated)", + "1973-04-16": "Mawlid* (*estimated) (Observed)", + "1973-04-20": "Good Friday", + "1973-05-01": "Labour Day", + "1973-05-20": "National Day", + "1973-05-21": "National Day (Observed)", + "1973-05-31": "Ascension Day", + "1973-08-15": "Assumption Day", + "1973-10-27": "Eid al-Fitr* (*estimated)", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-01-03": "Eid al-Adha* (*estimated)", + "1974-02-11": "Youth Day", + "1974-04-04": "Mawlid* (*estimated)", + "1974-04-12": "Good Friday", + "1974-05-01": "Labour Day", + "1974-05-20": "National Day", + "1974-05-23": "Ascension Day", + "1974-08-15": "Assumption Day", + "1974-10-16": "Eid al-Fitr* (*estimated)", + "1974-12-24": "Eid al-Adha* (*estimated)", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-02-11": "Youth Day", + "1975-03-24": "Mawlid* (*estimated)", + "1975-03-28": "Good Friday", + "1975-05-01": "Labour Day", + "1975-05-08": "Ascension Day", + "1975-05-20": "National Day", + "1975-08-15": "Assumption Day", + "1975-10-06": "Eid al-Fitr* (*estimated)", + "1975-12-13": "Eid al-Adha* (*estimated)", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-02-11": "Youth Day", + "1976-03-12": "Mawlid* (*estimated)", + "1976-04-16": "Good Friday", + "1976-05-01": "Labour Day", + "1976-05-20": "National Day", + "1976-05-27": "Ascension Day", + "1976-08-15": "Assumption Day", + "1976-08-16": "Assumption Day (Observed)", + "1976-09-24": "Eid al-Fitr* (*estimated)", + "1976-12-01": "Eid al-Adha* (*estimated)", + "1976-12-25": "Christmas Day", + "1977-01-01": "New Year's Day", + "1977-02-11": "Youth Day", + "1977-03-02": "Mawlid* (*estimated)", + "1977-04-08": "Good Friday", + "1977-05-01": "Labour Day", + "1977-05-02": "Labour Day (Observed)", + "1977-05-19": "Ascension Day", + "1977-05-20": "National Day", + "1977-08-15": "Assumption Day", + "1977-09-14": "Eid al-Fitr* (*estimated)", + "1977-11-21": "Eid al-Adha* (*estimated)", + "1977-12-25": "Christmas Day", + "1977-12-26": "Christmas Day (Observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day (Observed)", + "1978-02-11": "Youth Day", + "1978-02-19": "Mawlid* (*estimated)", + "1978-02-20": "Mawlid* (*estimated) (Observed)", + "1978-03-24": "Good Friday", + "1978-05-01": "Labour Day", + "1978-05-04": "Ascension Day", + "1978-05-20": "National Day", + "1978-08-15": "Assumption Day", + "1978-09-03": "Eid al-Fitr* (*estimated)", + "1978-09-04": "Eid al-Fitr* (*estimated) (Observed)", + "1978-11-10": "Eid al-Adha* (*estimated)", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-02-09": "Mawlid* (*estimated)", + "1979-02-11": "Youth Day", + "1979-02-12": "Youth Day (Observed)", + "1979-04-13": "Good Friday", + "1979-05-01": "Labour Day", + "1979-05-20": "National Day", + "1979-05-21": "National Day (Observed)", + "1979-05-24": "Ascension Day", + "1979-08-15": "Assumption Day", + "1979-08-23": "Eid al-Fitr* (*estimated)", + "1979-10-31": "Eid al-Adha* (*estimated)", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-01-30": "Mawlid* (*estimated)", + "1980-02-11": "Youth Day", + "1980-04-04": "Good Friday", + "1980-05-01": "Labour Day", + "1980-05-15": "Ascension Day", + "1980-05-20": "National Day", + "1980-08-12": "Eid al-Fitr* (*estimated)", + "1980-08-15": "Assumption Day", + "1980-10-19": "Eid al-Adha* (*estimated)", + "1980-10-20": "Eid al-Adha* (*estimated) (Observed)", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-01-18": "Mawlid* (*estimated)", + "1981-01-19": "Mawlid* (*estimated) (Observed)", + "1981-02-11": "Youth Day", + "1981-04-17": "Good Friday", + "1981-05-01": "Labour Day", + "1981-05-20": "National Day", + "1981-05-28": "Ascension Day", + "1981-08-01": "Eid al-Fitr* (*estimated)", + "1981-08-15": "Assumption Day", + "1981-10-08": "Eid al-Adha* (*estimated)", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-01-07": "Mawlid* (*estimated)", + "1982-02-11": "Youth Day", + "1982-04-09": "Good Friday", + "1982-05-01": "Labour Day", + "1982-05-20": "Ascension Day; National Day", + "1982-07-21": "Eid al-Fitr* (*estimated)", + "1982-08-15": "Assumption Day", + "1982-08-16": "Assumption Day (Observed)", + "1982-09-27": "Eid al-Adha* (*estimated)", + "1982-12-25": "Christmas Day", + "1982-12-27": "Mawlid* (*estimated)", + "1983-01-01": "New Year's Day", + "1983-02-11": "Youth Day", + "1983-04-01": "Good Friday", + "1983-05-01": "Labour Day", + "1983-05-02": "Labour Day (Observed)", + "1983-05-12": "Ascension Day", + "1983-05-20": "National Day", + "1983-07-11": "Eid al-Fitr* (*estimated)", + "1983-08-15": "Assumption Day", + "1983-09-17": "Eid al-Adha* (*estimated)", + "1983-12-16": "Mawlid* (*estimated)", + "1983-12-25": "Christmas Day", + "1983-12-26": "Christmas Day (Observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (Observed)", + "1984-02-11": "Youth Day", + "1984-04-20": "Good Friday", + "1984-05-01": "Labour Day", + "1984-05-20": "National Day", + "1984-05-21": "National Day (Observed)", + "1984-05-31": "Ascension Day", + "1984-06-30": "Eid al-Fitr* (*estimated)", + "1984-08-15": "Assumption Day", + "1984-09-05": "Eid al-Adha* (*estimated)", + "1984-12-04": "Mawlid* (*estimated)", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-02-11": "Youth Day", + "1985-04-05": "Good Friday", + "1985-05-01": "Labour Day", + "1985-05-16": "Ascension Day", + "1985-05-20": "National Day", + "1985-06-19": "Eid al-Fitr* (*estimated)", + "1985-08-15": "Assumption Day", + "1985-08-26": "Eid al-Adha* (*estimated)", + "1985-11-24": "Mawlid* (*estimated)", + "1985-11-25": "Mawlid* (*estimated) (Observed)", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-02-11": "Youth Day", + "1986-03-28": "Good Friday", + "1986-05-01": "Labour Day", + "1986-05-08": "Ascension Day", + "1986-05-20": "National Day", + "1986-06-08": "Eid al-Fitr* (*estimated)", + "1986-06-09": "Eid al-Fitr* (*estimated) (Observed)", + "1986-08-15": "Assumption Day; Eid al-Adha* (*estimated)", + "1986-11-14": "Mawlid* (*estimated)", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-02-11": "Youth Day", + "1987-04-17": "Good Friday", + "1987-05-01": "Labour Day", + "1987-05-20": "National Day", + "1987-05-28": "Ascension Day; Eid al-Fitr* (*estimated)", + "1987-08-04": "Eid al-Adha* (*estimated)", + "1987-08-15": "Assumption Day", + "1987-11-03": "Mawlid* (*estimated)", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-02-11": "Youth Day", + "1988-04-01": "Good Friday", + "1988-05-01": "Labour Day", + "1988-05-02": "Labour Day (Observed)", + "1988-05-12": "Ascension Day", + "1988-05-16": "Eid al-Fitr* (*estimated)", + "1988-05-20": "National Day", + "1988-07-23": "Eid al-Adha* (*estimated)", + "1988-08-15": "Assumption Day", + "1988-10-22": "Mawlid* (*estimated)", + "1988-12-25": "Christmas Day", + "1988-12-26": "Christmas Day (Observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (Observed)", + "1989-02-11": "Youth Day", + "1989-03-24": "Good Friday", + "1989-05-01": "Labour Day", + "1989-05-04": "Ascension Day", + "1989-05-06": "Eid al-Fitr* (*estimated)", + "1989-05-20": "National Day", + "1989-07-13": "Eid al-Adha* (*estimated)", + "1989-08-15": "Assumption Day", + "1989-10-11": "Mawlid* (*estimated)", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-02-11": "Youth Day", + "1990-02-12": "Youth Day (Observed)", + "1990-04-13": "Good Friday", + "1990-04-26": "Eid al-Fitr* (*estimated)", + "1990-05-01": "Labour Day", + "1990-05-20": "National Day", + "1990-05-21": "National Day (Observed)", + "1990-05-24": "Ascension Day", + "1990-07-02": "Eid al-Adha* (*estimated)", + "1990-08-15": "Assumption Day", + "1990-10-01": "Mawlid* (*estimated)", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-02-11": "Youth Day", + "1991-03-29": "Good Friday", + "1991-04-15": "Eid al-Fitr* (*estimated)", + "1991-05-01": "Labour Day", + "1991-05-09": "Ascension Day", + "1991-05-20": "National Day", + "1991-06-22": "Eid al-Adha* (*estimated)", + "1991-08-15": "Assumption Day", + "1991-09-20": "Mawlid* (*estimated)", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-02-11": "Youth Day", + "1992-04-04": "Eid al-Fitr* (*estimated)", + "1992-04-17": "Good Friday", + "1992-05-01": "Labour Day", + "1992-05-20": "National Day", + "1992-05-28": "Ascension Day", + "1992-06-11": "Eid al-Adha* (*estimated)", + "1992-08-15": "Assumption Day", + "1992-09-09": "Mawlid* (*estimated)", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-02-11": "Youth Day", + "1993-03-24": "Eid al-Fitr* (*estimated)", + "1993-04-09": "Good Friday", + "1993-05-01": "Labour Day", + "1993-05-20": "Ascension Day; National Day", + "1993-05-31": "Eid al-Adha* (*estimated)", + "1993-08-15": "Assumption Day", + "1993-08-16": "Assumption Day (Observed)", + "1993-08-29": "Mawlid* (*estimated)", + "1993-08-30": "Mawlid* (*estimated) (Observed)", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-02-11": "Youth Day", + "1994-03-13": "Eid al-Fitr* (*estimated)", + "1994-03-14": "Eid al-Fitr* (*estimated) (Observed)", + "1994-04-01": "Good Friday", + "1994-05-01": "Labour Day", + "1994-05-02": "Labour Day (Observed)", + "1994-05-12": "Ascension Day", + "1994-05-20": "Eid al-Adha* (*estimated); National Day", + "1994-08-15": "Assumption Day", + "1994-08-19": "Mawlid* (*estimated)", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day (Observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (Observed)", + "1995-02-11": "Youth Day", + "1995-03-02": "Eid al-Fitr* (*estimated)", + "1995-04-14": "Good Friday", + "1995-05-01": "Labour Day", + "1995-05-09": "Eid al-Adha* (*estimated)", + "1995-05-20": "National Day", + "1995-05-25": "Ascension Day", + "1995-08-08": "Mawlid* (*estimated)", + "1995-08-15": "Assumption Day", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-02-11": "Youth Day", + "1996-02-12": "Youth Day (Observed)", + "1996-02-19": "Eid al-Fitr* (*estimated)", + "1996-04-05": "Good Friday", + "1996-04-27": "Eid al-Adha* (*estimated)", + "1996-05-01": "Labour Day", + "1996-05-16": "Ascension Day", + "1996-05-20": "National Day", + "1996-07-27": "Mawlid* (*estimated)", + "1996-08-15": "Assumption Day", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-02-08": "Eid al-Fitr* (*estimated)", + "1997-02-11": "Youth Day", + "1997-03-28": "Good Friday", + "1997-04-17": "Eid al-Adha* (*estimated)", + "1997-05-01": "Labour Day", + "1997-05-08": "Ascension Day", + "1997-05-20": "National Day", + "1997-07-16": "Mawlid* (*estimated)", + "1997-08-15": "Assumption Day", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-01-29": "Eid al-Fitr* (*estimated)", + "1998-02-11": "Youth Day", + "1998-04-07": "Eid al-Adha* (*estimated)", + "1998-04-10": "Good Friday", + "1998-05-01": "Labour Day", + "1998-05-20": "National Day", + "1998-05-21": "Ascension Day", + "1998-07-06": "Mawlid* (*estimated)", + "1998-08-15": "Assumption Day", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-01-18": "Eid al-Fitr* (*estimated)", + "1999-02-11": "Youth Day", + "1999-03-27": "Eid al-Adha* (*estimated)", + "1999-04-02": "Good Friday", + "1999-05-01": "Labour Day", + "1999-05-13": "Ascension Day", + "1999-05-20": "National Day", + "1999-06-26": "Mawlid* (*estimated)", + "1999-08-15": "Assumption Day", + "1999-08-16": "Assumption Day (Observed)", + "1999-12-25": "Christmas Day", + "2000-01-01": "New Year's Day", + "2000-01-08": "Eid al-Fitr* (*estimated)", + "2000-02-11": "Youth Day", + "2000-03-16": "Eid al-Adha* (*estimated)", + "2000-04-21": "Good Friday", + "2000-05-01": "Labour Day", + "2000-05-20": "National Day", + "2000-06-01": "Ascension Day", + "2000-06-14": "Mawlid* (*estimated)", + "2000-08-15": "Assumption Day", + "2000-12-25": "Christmas Day", + "2000-12-27": "Eid al-Fitr* (*estimated)", + "2001-01-01": "New Year's Day", + "2001-02-11": "Youth Day", + "2001-02-12": "Youth Day (Observed)", + "2001-03-06": "Eid al-Adha", + "2001-04-13": "Good Friday", + "2001-05-01": "Labour Day", + "2001-05-20": "National Day", + "2001-05-21": "National Day (Observed)", + "2001-05-24": "Ascension Day", + "2001-06-04": "Mawlid", + "2001-08-15": "Assumption Day", + "2001-12-17": "Eid al-Fitr", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-02-11": "Youth Day", + "2002-02-23": "Eid al-Adha", + "2002-03-29": "Good Friday", + "2002-05-01": "Labour Day", + "2002-05-09": "Ascension Day", + "2002-05-20": "National Day", + "2002-05-24": "Mawlid", + "2002-08-15": "Assumption Day", + "2002-12-06": "Eid al-Fitr", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-02-11": "Youth Day", + "2003-02-12": "Eid al-Adha", + "2003-04-18": "Good Friday", + "2003-05-01": "Labour Day", + "2003-05-14": "Mawlid", + "2003-05-20": "National Day", + "2003-05-29": "Ascension Day", + "2003-08-15": "Assumption Day", + "2003-11-26": "Eid al-Fitr", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-02-02": "Eid al-Adha", + "2004-02-11": "Youth Day", + "2004-04-09": "Good Friday", + "2004-05-01": "Labour Day", + "2004-05-02": "Mawlid", + "2004-05-03": "Mawlid (Observed)", + "2004-05-20": "Ascension Day; National Day", + "2004-08-15": "Assumption Day", + "2004-08-16": "Assumption Day (Observed)", + "2004-11-14": "Eid al-Fitr", + "2004-11-15": "Eid al-Fitr (Observed)", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-01-21": "Eid al-Adha", + "2005-02-11": "Youth Day", + "2005-03-25": "Good Friday", + "2005-04-21": "Mawlid", + "2005-05-01": "Labour Day", + "2005-05-02": "Labour Day (Observed)", + "2005-05-05": "Ascension Day", + "2005-05-20": "National Day", + "2005-08-15": "Assumption Day", + "2005-11-04": "Eid al-Fitr", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day (Observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (Observed)", + "2006-01-10": "Eid al-Adha", + "2006-02-11": "Youth Day", + "2006-04-11": "Mawlid", + "2006-04-14": "Good Friday", + "2006-05-01": "Labour Day", + "2006-05-20": "National Day", + "2006-05-25": "Ascension Day", + "2006-08-15": "Assumption Day", + "2006-10-24": "Eid al-Fitr", + "2006-12-25": "Christmas Day", + "2006-12-31": "Eid al-Adha", + "2007-01-01": "New Year's Day", + "2007-01-02": "Eid al-Adha (Observed)", + "2007-02-11": "Youth Day", + "2007-02-12": "Youth Day (Observed)", + "2007-03-31": "Mawlid", + "2007-04-06": "Good Friday", + "2007-05-01": "Labour Day", + "2007-05-17": "Ascension Day", + "2007-05-20": "National Day", + "2007-05-21": "National Day (Observed)", + "2007-08-15": "Assumption Day", + "2007-10-13": "Eid al-Fitr", + "2007-12-20": "Eid al-Adha", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-02-11": "Youth Day", + "2008-03-20": "Mawlid", + "2008-03-21": "Good Friday", + "2008-05-01": "Ascension Day; Labour Day", + "2008-05-20": "National Day", + "2008-08-15": "Assumption Day", + "2008-10-02": "Eid al-Fitr", + "2008-12-09": "Eid al-Adha", + "2008-12-25": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-02-11": "Youth Day", + "2009-03-09": "Mawlid", + "2009-04-10": "Good Friday", + "2009-05-01": "Labour Day", + "2009-05-20": "National Day", + "2009-05-21": "Ascension Day", + "2009-08-15": "Assumption Day", + "2009-09-21": "Eid al-Fitr", + "2009-11-28": "Eid al-Adha", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-02-11": "Youth Day", + "2010-02-26": "Mawlid", + "2010-04-02": "Good Friday", + "2010-05-01": "Labour Day", + "2010-05-13": "Ascension Day", + "2010-05-20": "National Day", + "2010-08-15": "Assumption Day", + "2010-08-16": "Assumption Day (Observed)", + "2010-09-10": "Eid al-Fitr", + "2010-11-17": "Eid al-Adha", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-02-11": "Youth Day", + "2011-02-16": "Mawlid", + "2011-04-22": "Good Friday", + "2011-05-01": "Labour Day", + "2011-05-02": "Labour Day (Observed)", + "2011-05-20": "National Day", + "2011-06-02": "Ascension Day", + "2011-08-15": "Assumption Day", + "2011-08-31": "Eid al-Fitr", + "2011-11-07": "Eid al-Adha", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day (Observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (Observed)", + "2012-02-05": "Mawlid", + "2012-02-06": "Mawlid (Observed)", + "2012-02-11": "Youth Day", + "2012-04-06": "Good Friday", + "2012-05-01": "Labour Day", + "2012-05-17": "Ascension Day", + "2012-05-20": "National Day", + "2012-05-21": "National Day (Observed)", + "2012-08-15": "Assumption Day", + "2012-08-19": "Eid al-Fitr", + "2012-08-20": "Eid al-Fitr (Observed)", + "2012-10-26": "Eid al-Adha", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-01-24": "Mawlid", + "2013-02-11": "Youth Day", + "2013-03-29": "Good Friday", + "2013-05-01": "Labour Day", + "2013-05-09": "Ascension Day", + "2013-05-20": "National Day", + "2013-08-08": "Eid al-Fitr", + "2013-08-15": "Assumption Day", + "2013-10-15": "Eid al-Adha", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-14": "Mawlid", + "2014-02-11": "Youth Day", + "2014-04-18": "Good Friday", + "2014-05-01": "Labour Day", + "2014-05-20": "National Day", + "2014-05-29": "Ascension Day", + "2014-07-28": "Eid al-Fitr", + "2014-08-15": "Assumption Day", + "2014-10-05": "Eid al-Adha", + "2014-10-06": "Eid al-Adha (Observed)", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-01-03": "Mawlid", + "2015-02-11": "Youth Day", + "2015-04-03": "Good Friday", + "2015-05-01": "Labour Day", + "2015-05-14": "Ascension Day", + "2015-05-20": "National Day", + "2015-07-18": "Eid al-Fitr", + "2015-08-15": "Assumption Day", + "2015-09-24": "Eid al-Adha", + "2015-12-24": "Mawlid", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-02-11": "Youth Day", + "2016-03-25": "Good Friday", + "2016-05-01": "Labour Day", + "2016-05-02": "Labour Day (Observed)", + "2016-05-05": "Ascension Day", + "2016-05-20": "National Day", + "2016-07-07": "Eid al-Fitr", + "2016-08-15": "Assumption Day", + "2016-09-13": "Eid al-Adha", + "2016-12-12": "Mawlid", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day (Observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (Observed)", + "2017-02-11": "Youth Day", + "2017-04-14": "Good Friday", + "2017-05-01": "Labour Day", + "2017-05-20": "National Day", + "2017-05-25": "Ascension Day", + "2017-06-26": "Eid al-Fitr", + "2017-08-15": "Assumption Day", + "2017-09-02": "Eid al-Adha", + "2017-12-01": "Mawlid", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-02-11": "Youth Day", + "2018-02-12": "Youth Day (Observed)", + "2018-03-30": "Good Friday", + "2018-05-01": "Labour Day", + "2018-05-10": "Ascension Day", + "2018-05-20": "National Day", + "2018-05-21": "National Day (Observed)", + "2018-06-15": "Eid al-Fitr", + "2018-08-15": "Assumption Day", + "2018-08-21": "Eid al-Adha", + "2018-11-21": "Mawlid", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-02-11": "Youth Day", + "2019-04-19": "Good Friday", + "2019-05-01": "Labour Day", + "2019-05-20": "National Day", + "2019-05-30": "Ascension Day", + "2019-06-04": "Eid al-Fitr", + "2019-08-11": "Eid al-Adha", + "2019-08-12": "Eid al-Adha (Observed)", + "2019-08-15": "Assumption Day", + "2019-11-10": "Mawlid", + "2019-11-11": "Mawlid (Observed)", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-02-11": "Youth Day", + "2020-04-10": "Good Friday", + "2020-05-01": "Labour Day", + "2020-05-20": "National Day", + "2020-05-21": "Ascension Day", + "2020-05-24": "Eid al-Fitr", + "2020-05-25": "Eid al-Fitr (Observed)", + "2020-07-31": "Eid al-Adha", + "2020-08-15": "Assumption Day", + "2020-10-29": "Mawlid", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-02-11": "Youth Day", + "2021-04-02": "Good Friday", + "2021-05-01": "Labour Day", + "2021-05-13": "Ascension Day; Eid al-Fitr", + "2021-05-14": "Public Holiday", + "2021-05-20": "National Day", + "2021-07-19": "Public Holiday", + "2021-07-20": "Eid al-Adha", + "2021-08-15": "Assumption Day", + "2021-08-16": "Assumption Day (Observed)", + "2021-10-19": "Mawlid", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-02-11": "Youth Day", + "2022-04-15": "Good Friday", + "2022-05-01": "Labour Day", + "2022-05-02": "Eid al-Fitr", + "2022-05-03": "Labour Day (Observed)", + "2022-05-20": "National Day", + "2022-05-26": "Ascension Day", + "2022-07-09": "Eid al-Adha", + "2022-08-15": "Assumption Day", + "2022-10-08": "Mawlid", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day (Observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (Observed)", + "2023-02-11": "Youth Day", + "2023-04-07": "Good Friday", + "2023-04-21": "Eid al-Fitr", + "2023-05-01": "Labour Day", + "2023-05-18": "Ascension Day", + "2023-05-20": "National Day", + "2023-06-28": "Eid al-Adha", + "2023-08-15": "Assumption Day", + "2023-09-27": "Mawlid* (*estimated)", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-02-11": "Youth Day", + "2024-02-12": "Youth Day (Observed)", + "2024-03-29": "Good Friday", + "2024-04-10": "Eid al-Fitr* (*estimated)", + "2024-05-01": "Labour Day", + "2024-05-09": "Ascension Day", + "2024-05-20": "National Day", + "2024-06-16": "Eid al-Adha* (*estimated)", + "2024-06-17": "Eid al-Adha* (*estimated) (Observed)", + "2024-08-15": "Assumption Day", + "2024-09-15": "Mawlid* (*estimated)", + "2024-09-16": "Mawlid* (*estimated) (Observed)", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-02-11": "Youth Day", + "2025-03-30": "Eid al-Fitr* (*estimated)", + "2025-03-31": "Eid al-Fitr* (*estimated) (Observed)", + "2025-04-18": "Good Friday", + "2025-05-01": "Labour Day", + "2025-05-20": "National Day", + "2025-05-29": "Ascension Day", + "2025-06-06": "Eid al-Adha* (*estimated)", + "2025-08-15": "Assumption Day", + "2025-09-04": "Mawlid* (*estimated)", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-02-11": "Youth Day", + "2026-03-20": "Eid al-Fitr* (*estimated)", + "2026-04-03": "Good Friday", + "2026-05-01": "Labour Day", + "2026-05-14": "Ascension Day", + "2026-05-20": "National Day", + "2026-05-27": "Eid al-Adha* (*estimated)", + "2026-08-15": "Assumption Day", + "2026-08-25": "Mawlid* (*estimated)", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-02-11": "Youth Day", + "2027-03-09": "Eid al-Fitr* (*estimated)", + "2027-03-26": "Good Friday", + "2027-05-01": "Labour Day", + "2027-05-06": "Ascension Day", + "2027-05-16": "Eid al-Adha* (*estimated)", + "2027-05-17": "Eid al-Adha* (*estimated) (Observed)", + "2027-05-20": "National Day", + "2027-08-14": "Mawlid* (*estimated)", + "2027-08-15": "Assumption Day", + "2027-08-16": "Assumption Day (Observed)", + "2027-12-25": "Christmas Day", + "2028-01-01": "New Year's Day", + "2028-02-11": "Youth Day", + "2028-02-26": "Eid al-Fitr* (*estimated)", + "2028-04-14": "Good Friday", + "2028-05-01": "Labour Day", + "2028-05-05": "Eid al-Adha* (*estimated)", + "2028-05-20": "National Day", + "2028-05-25": "Ascension Day", + "2028-08-03": "Mawlid* (*estimated)", + "2028-08-15": "Assumption Day", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-02-11": "Youth Day", + "2029-02-12": "Youth Day (Observed)", + "2029-02-14": "Eid al-Fitr* (*estimated)", + "2029-03-30": "Good Friday", + "2029-04-24": "Eid al-Adha* (*estimated)", + "2029-05-01": "Labour Day", + "2029-05-10": "Ascension Day", + "2029-05-20": "National Day", + "2029-05-21": "National Day (Observed)", + "2029-07-24": "Mawlid* (*estimated)", + "2029-08-15": "Assumption Day", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-02-04": "Eid al-Fitr* (*estimated)", + "2030-02-11": "Youth Day", + "2030-04-13": "Eid al-Adha* (*estimated)", + "2030-04-19": "Good Friday", + "2030-05-01": "Labour Day", + "2030-05-20": "National Day", + "2030-05-30": "Ascension Day", + "2030-07-13": "Mawlid* (*estimated)", + "2030-08-15": "Assumption Day", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-01-24": "Eid al-Fitr* (*estimated)", + "2031-02-11": "Youth Day", + "2031-04-02": "Eid al-Adha* (*estimated)", + "2031-04-11": "Good Friday", + "2031-05-01": "Labour Day", + "2031-05-20": "National Day", + "2031-05-22": "Ascension Day", + "2031-07-02": "Mawlid* (*estimated)", + "2031-08-15": "Assumption Day", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-01-14": "Eid al-Fitr* (*estimated)", + "2032-02-11": "Youth Day", + "2032-03-22": "Eid al-Adha* (*estimated)", + "2032-03-26": "Good Friday", + "2032-05-01": "Labour Day", + "2032-05-06": "Ascension Day", + "2032-05-20": "National Day", + "2032-06-20": "Mawlid* (*estimated)", + "2032-06-21": "Mawlid* (*estimated) (Observed)", + "2032-08-15": "Assumption Day", + "2032-08-16": "Assumption Day (Observed)", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "Eid al-Fitr* (*estimated)", + "2033-01-03": "Eid al-Fitr* (*estimated) (Observed)", + "2033-02-11": "Youth Day", + "2033-03-11": "Eid al-Adha* (*estimated)", + "2033-04-15": "Good Friday", + "2033-05-01": "Labour Day", + "2033-05-02": "Labour Day (Observed)", + "2033-05-20": "National Day", + "2033-05-26": "Ascension Day", + "2033-06-09": "Mawlid* (*estimated)", + "2033-08-15": "Assumption Day", + "2033-12-23": "Eid al-Fitr* (*estimated)", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day (Observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-02-11": "Youth Day", + "2034-03-01": "Eid al-Adha* (*estimated)", + "2034-04-07": "Good Friday", + "2034-05-01": "Labour Day", + "2034-05-18": "Ascension Day", + "2034-05-20": "National Day", + "2034-05-30": "Mawlid* (*estimated)", + "2034-08-15": "Assumption Day", + "2034-12-12": "Eid al-Fitr* (*estimated)", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-02-11": "Youth Day", + "2035-02-12": "Youth Day (Observed)", + "2035-02-18": "Eid al-Adha* (*estimated)", + "2035-02-19": "Eid al-Adha* (*estimated) (Observed)", + "2035-03-23": "Good Friday", + "2035-05-01": "Labour Day", + "2035-05-03": "Ascension Day", + "2035-05-20": "Mawlid* (*estimated); National Day", + "2035-05-21": "Mawlid* (*estimated) (Observed); National Day (Observed)", + "2035-08-15": "Assumption Day", + "2035-12-01": "Eid al-Fitr* (*estimated)", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-02-07": "Eid al-Adha* (*estimated)", + "2036-02-11": "Youth Day", + "2036-04-11": "Good Friday", + "2036-05-01": "Labour Day", + "2036-05-08": "Mawlid* (*estimated)", + "2036-05-20": "National Day", + "2036-05-22": "Ascension Day", + "2036-08-15": "Assumption Day", + "2036-11-19": "Eid al-Fitr* (*estimated)", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-26": "Eid al-Adha* (*estimated)", + "2037-02-11": "Youth Day", + "2037-04-03": "Good Friday", + "2037-04-28": "Mawlid* (*estimated)", + "2037-05-01": "Labour Day", + "2037-05-14": "Ascension Day", + "2037-05-20": "National Day", + "2037-08-15": "Assumption Day", + "2037-11-08": "Eid al-Fitr* (*estimated)", + "2037-11-09": "Eid al-Fitr* (*estimated) (Observed)", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-01-16": "Eid al-Adha* (*estimated)", + "2038-02-11": "Youth Day", + "2038-04-17": "Mawlid* (*estimated)", + "2038-04-23": "Good Friday", + "2038-05-01": "Labour Day", + "2038-05-20": "National Day", + "2038-06-03": "Ascension Day", + "2038-08-15": "Assumption Day", + "2038-08-16": "Assumption Day (Observed)", + "2038-10-29": "Eid al-Fitr* (*estimated)", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-01-05": "Eid al-Adha* (*estimated)", + "2039-02-11": "Youth Day", + "2039-04-06": "Mawlid* (*estimated)", + "2039-04-08": "Good Friday", + "2039-05-01": "Labour Day", + "2039-05-02": "Labour Day (Observed)", + "2039-05-19": "Ascension Day", + "2039-05-20": "National Day", + "2039-08-15": "Assumption Day", + "2039-10-19": "Eid al-Fitr* (*estimated)", + "2039-12-25": "Christmas Day", + "2039-12-26": "Eid al-Adha* (*estimated)", + "2039-12-27": "Christmas Day (Observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (Observed)", + "2040-02-11": "Youth Day", + "2040-03-25": "Mawlid* (*estimated)", + "2040-03-26": "Mawlid* (*estimated) (Observed)", + "2040-03-30": "Good Friday", + "2040-05-01": "Labour Day", + "2040-05-10": "Ascension Day", + "2040-05-20": "National Day", + "2040-05-21": "National Day (Observed)", + "2040-08-15": "Assumption Day", + "2040-10-07": "Eid al-Fitr* (*estimated)", + "2040-10-08": "Eid al-Fitr* (*estimated) (Observed)", + "2040-12-14": "Eid al-Adha* (*estimated)", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-02-11": "Youth Day", + "2041-03-15": "Mawlid* (*estimated)", + "2041-04-19": "Good Friday", + "2041-05-01": "Labour Day", + "2041-05-20": "National Day", + "2041-05-30": "Ascension Day", + "2041-08-15": "Assumption Day", + "2041-09-26": "Eid al-Fitr* (*estimated)", + "2041-12-04": "Eid al-Adha* (*estimated)", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-02-11": "Youth Day", + "2042-03-04": "Mawlid* (*estimated)", + "2042-04-04": "Good Friday", + "2042-05-01": "Labour Day", + "2042-05-15": "Ascension Day", + "2042-05-20": "National Day", + "2042-08-15": "Assumption Day", + "2042-09-15": "Eid al-Fitr* (*estimated)", + "2042-11-23": "Eid al-Adha* (*estimated)", + "2042-11-24": "Eid al-Adha* (*estimated) (Observed)", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-02-11": "Youth Day", + "2043-02-22": "Mawlid* (*estimated)", + "2043-02-23": "Mawlid* (*estimated) (Observed)", + "2043-03-27": "Good Friday", + "2043-05-01": "Labour Day", + "2043-05-07": "Ascension Day", + "2043-05-20": "National Day", + "2043-08-15": "Assumption Day", + "2043-09-04": "Eid al-Fitr* (*estimated)", + "2043-11-12": "Eid al-Adha* (*estimated)", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-02-11": "Mawlid* (*estimated); Youth Day", + "2044-04-15": "Good Friday", + "2044-05-01": "Labour Day", + "2044-05-02": "Labour Day (Observed)", + "2044-05-20": "National Day", + "2044-05-26": "Ascension Day", + "2044-08-15": "Assumption Day", + "2044-08-24": "Eid al-Fitr* (*estimated)", + "2044-10-31": "Eid al-Adha* (*estimated)", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day (Observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (Observed)", + "2045-01-30": "Mawlid* (*estimated)", + "2045-02-11": "Youth Day", + "2045-04-07": "Good Friday", + "2045-05-01": "Labour Day", + "2045-05-18": "Ascension Day", + "2045-05-20": "National Day", + "2045-08-14": "Eid al-Fitr* (*estimated)", + "2045-08-15": "Assumption Day", + "2045-10-21": "Eid al-Adha* (*estimated)", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-01-19": "Mawlid* (*estimated)", + "2046-02-11": "Youth Day", + "2046-02-12": "Youth Day (Observed)", + "2046-03-23": "Good Friday", + "2046-05-01": "Labour Day", + "2046-05-03": "Ascension Day", + "2046-05-20": "National Day", + "2046-05-21": "National Day (Observed)", + "2046-08-03": "Eid al-Fitr* (*estimated)", + "2046-08-15": "Assumption Day", + "2046-10-10": "Eid al-Adha* (*estimated)", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-08": "Mawlid* (*estimated)", + "2047-02-11": "Youth Day", + "2047-04-12": "Good Friday", + "2047-05-01": "Labour Day", + "2047-05-20": "National Day", + "2047-05-23": "Ascension Day", + "2047-07-24": "Eid al-Fitr* (*estimated)", + "2047-08-15": "Assumption Day", + "2047-09-30": "Eid al-Adha* (*estimated)", + "2047-12-25": "Christmas Day", + "2047-12-29": "Mawlid* (*estimated)", + "2047-12-30": "Mawlid* (*estimated) (Observed)", + "2048-01-01": "New Year's Day", + "2048-02-11": "Youth Day", + "2048-04-03": "Good Friday", + "2048-05-01": "Labour Day", + "2048-05-14": "Ascension Day", + "2048-05-20": "National Day", + "2048-07-12": "Eid al-Fitr* (*estimated)", + "2048-07-13": "Eid al-Fitr* (*estimated) (Observed)", + "2048-08-15": "Assumption Day", + "2048-09-19": "Eid al-Adha* (*estimated)", + "2048-12-18": "Mawlid* (*estimated)", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-02-11": "Youth Day", + "2049-04-16": "Good Friday", + "2049-05-01": "Labour Day", + "2049-05-20": "National Day", + "2049-05-27": "Ascension Day", + "2049-07-01": "Eid al-Fitr* (*estimated)", + "2049-08-15": "Assumption Day", + "2049-08-16": "Assumption Day (Observed)", + "2049-09-08": "Eid al-Adha* (*estimated)", + "2049-12-07": "Mawlid* (*estimated)", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-02-11": "Youth Day", + "2050-04-08": "Good Friday", + "2050-05-01": "Labour Day", + "2050-05-02": "Labour Day (Observed)", + "2050-05-19": "Ascension Day", + "2050-05-20": "National Day", + "2050-06-20": "Eid al-Fitr* (*estimated)", + "2050-08-15": "Assumption Day", + "2050-08-28": "Eid al-Adha* (*estimated)", + "2050-08-29": "Eid al-Adha* (*estimated) (Observed)", + "2050-11-26": "Mawlid* (*estimated)", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day (Observed)" +} diff --git a/snapshots/countries/CN.json b/snapshots/countries/CN.json new file mode 100644 index 000000000..41f942bbb --- /dev/null +++ b/snapshots/countries/CN.json @@ -0,0 +1,900 @@ +{ + "1950-01-01": "New Year's Day", + "1950-02-17": "Chinese New Year (Spring Festival)", + "1950-02-18": "Chinese New Year (Spring Festival)", + "1950-02-19": "Chinese New Year (Spring Festival)", + "1950-05-01": "Labour Day", + "1950-10-01": "National Day", + "1950-10-02": "National Day", + "1951-01-01": "New Year's Day", + "1951-02-06": "Chinese New Year (Spring Festival)", + "1951-02-07": "Chinese New Year (Spring Festival)", + "1951-02-08": "Chinese New Year (Spring Festival)", + "1951-05-01": "Labour Day", + "1951-10-01": "National Day", + "1951-10-02": "National Day", + "1952-01-01": "New Year's Day", + "1952-01-27": "Chinese New Year (Spring Festival)", + "1952-01-28": "Chinese New Year (Spring Festival)", + "1952-01-29": "Chinese New Year (Spring Festival)", + "1952-05-01": "Labour Day", + "1952-10-01": "National Day", + "1952-10-02": "National Day", + "1953-01-01": "New Year's Day", + "1953-02-14": "Chinese New Year (Spring Festival)", + "1953-02-15": "Chinese New Year (Spring Festival)", + "1953-02-16": "Chinese New Year (Spring Festival)", + "1953-05-01": "Labour Day", + "1953-10-01": "National Day", + "1953-10-02": "National Day", + "1954-01-01": "New Year's Day", + "1954-02-03": "Chinese New Year (Spring Festival)", + "1954-02-04": "Chinese New Year (Spring Festival)", + "1954-02-05": "Chinese New Year (Spring Festival)", + "1954-05-01": "Labour Day", + "1954-10-01": "National Day", + "1954-10-02": "National Day", + "1955-01-01": "New Year's Day", + "1955-01-24": "Chinese New Year (Spring Festival)", + "1955-01-25": "Chinese New Year (Spring Festival)", + "1955-01-26": "Chinese New Year (Spring Festival)", + "1955-05-01": "Labour Day", + "1955-10-01": "National Day", + "1955-10-02": "National Day", + "1956-01-01": "New Year's Day", + "1956-02-12": "Chinese New Year (Spring Festival)", + "1956-02-13": "Chinese New Year (Spring Festival)", + "1956-02-14": "Chinese New Year (Spring Festival)", + "1956-05-01": "Labour Day", + "1956-10-01": "National Day", + "1956-10-02": "National Day", + "1957-01-01": "New Year's Day", + "1957-01-31": "Chinese New Year (Spring Festival)", + "1957-02-01": "Chinese New Year (Spring Festival)", + "1957-02-02": "Chinese New Year (Spring Festival)", + "1957-05-01": "Labour Day", + "1957-10-01": "National Day", + "1957-10-02": "National Day", + "1958-01-01": "New Year's Day", + "1958-02-18": "Chinese New Year (Spring Festival)", + "1958-02-19": "Chinese New Year (Spring Festival)", + "1958-02-20": "Chinese New Year (Spring Festival)", + "1958-05-01": "Labour Day", + "1958-10-01": "National Day", + "1958-10-02": "National Day", + "1959-01-01": "New Year's Day", + "1959-02-08": "Chinese New Year (Spring Festival)", + "1959-02-09": "Chinese New Year (Spring Festival)", + "1959-02-10": "Chinese New Year (Spring Festival)", + "1959-05-01": "Labour Day", + "1959-10-01": "National Day", + "1959-10-02": "National Day", + "1960-01-01": "New Year's Day", + "1960-01-28": "Chinese New Year (Spring Festival)", + "1960-01-29": "Chinese New Year (Spring Festival)", + "1960-01-30": "Chinese New Year (Spring Festival)", + "1960-05-01": "Labour Day", + "1960-10-01": "National Day", + "1960-10-02": "National Day", + "1961-01-01": "New Year's Day", + "1961-02-15": "Chinese New Year (Spring Festival)", + "1961-02-16": "Chinese New Year (Spring Festival)", + "1961-02-17": "Chinese New Year (Spring Festival)", + "1961-05-01": "Labour Day", + "1961-10-01": "National Day", + "1961-10-02": "National Day", + "1962-01-01": "New Year's Day", + "1962-02-05": "Chinese New Year (Spring Festival)", + "1962-02-06": "Chinese New Year (Spring Festival)", + "1962-02-07": "Chinese New Year (Spring Festival)", + "1962-05-01": "Labour Day", + "1962-10-01": "National Day", + "1962-10-02": "National Day", + "1963-01-01": "New Year's Day", + "1963-01-25": "Chinese New Year (Spring Festival)", + "1963-01-26": "Chinese New Year (Spring Festival)", + "1963-01-27": "Chinese New Year (Spring Festival)", + "1963-05-01": "Labour Day", + "1963-10-01": "National Day", + "1963-10-02": "National Day", + "1964-01-01": "New Year's Day", + "1964-02-13": "Chinese New Year (Spring Festival)", + "1964-02-14": "Chinese New Year (Spring Festival)", + "1964-02-15": "Chinese New Year (Spring Festival)", + "1964-05-01": "Labour Day", + "1964-10-01": "National Day", + "1964-10-02": "National Day", + "1965-01-01": "New Year's Day", + "1965-02-02": "Chinese New Year (Spring Festival)", + "1965-02-03": "Chinese New Year (Spring Festival)", + "1965-02-04": "Chinese New Year (Spring Festival)", + "1965-05-01": "Labour Day", + "1965-10-01": "National Day", + "1965-10-02": "National Day", + "1966-01-01": "New Year's Day", + "1966-01-21": "Chinese New Year (Spring Festival)", + "1966-01-22": "Chinese New Year (Spring Festival)", + "1966-01-23": "Chinese New Year (Spring Festival)", + "1966-05-01": "Labour Day", + "1966-10-01": "National Day", + "1966-10-02": "National Day", + "1967-01-01": "New Year's Day", + "1967-02-09": "Chinese New Year (Spring Festival)", + "1967-02-10": "Chinese New Year (Spring Festival)", + "1967-02-11": "Chinese New Year (Spring Festival)", + "1967-05-01": "Labour Day", + "1967-10-01": "National Day", + "1967-10-02": "National Day", + "1968-01-01": "New Year's Day", + "1968-01-30": "Chinese New Year (Spring Festival)", + "1968-01-31": "Chinese New Year (Spring Festival)", + "1968-02-01": "Chinese New Year (Spring Festival)", + "1968-05-01": "Labour Day", + "1968-10-01": "National Day", + "1968-10-02": "National Day", + "1969-01-01": "New Year's Day", + "1969-02-17": "Chinese New Year (Spring Festival)", + "1969-02-18": "Chinese New Year (Spring Festival)", + "1969-02-19": "Chinese New Year (Spring Festival)", + "1969-05-01": "Labour Day", + "1969-10-01": "National Day", + "1969-10-02": "National Day", + "1970-01-01": "New Year's Day", + "1970-02-06": "Chinese New Year (Spring Festival)", + "1970-02-07": "Chinese New Year (Spring Festival)", + "1970-02-08": "Chinese New Year (Spring Festival)", + "1970-05-01": "Labour Day", + "1970-10-01": "National Day", + "1970-10-02": "National Day", + "1971-01-01": "New Year's Day", + "1971-01-27": "Chinese New Year (Spring Festival)", + "1971-01-28": "Chinese New Year (Spring Festival)", + "1971-01-29": "Chinese New Year (Spring Festival)", + "1971-05-01": "Labour Day", + "1971-10-01": "National Day", + "1971-10-02": "National Day", + "1972-01-01": "New Year's Day", + "1972-02-15": "Chinese New Year (Spring Festival)", + "1972-02-16": "Chinese New Year (Spring Festival)", + "1972-02-17": "Chinese New Year (Spring Festival)", + "1972-05-01": "Labour Day", + "1972-10-01": "National Day", + "1972-10-02": "National Day", + "1973-01-01": "New Year's Day", + "1973-02-03": "Chinese New Year (Spring Festival)", + "1973-02-04": "Chinese New Year (Spring Festival)", + "1973-02-05": "Chinese New Year (Spring Festival)", + "1973-05-01": "Labour Day", + "1973-10-01": "National Day", + "1973-10-02": "National Day", + "1974-01-01": "New Year's Day", + "1974-01-23": "Chinese New Year (Spring Festival)", + "1974-01-24": "Chinese New Year (Spring Festival)", + "1974-01-25": "Chinese New Year (Spring Festival)", + "1974-05-01": "Labour Day", + "1974-10-01": "National Day", + "1974-10-02": "National Day", + "1975-01-01": "New Year's Day", + "1975-02-11": "Chinese New Year (Spring Festival)", + "1975-02-12": "Chinese New Year (Spring Festival)", + "1975-02-13": "Chinese New Year (Spring Festival)", + "1975-05-01": "Labour Day", + "1975-10-01": "National Day", + "1975-10-02": "National Day", + "1976-01-01": "New Year's Day", + "1976-01-31": "Chinese New Year (Spring Festival)", + "1976-02-01": "Chinese New Year (Spring Festival)", + "1976-02-02": "Chinese New Year (Spring Festival)", + "1976-05-01": "Labour Day", + "1976-10-01": "National Day", + "1976-10-02": "National Day", + "1977-01-01": "New Year's Day", + "1977-02-18": "Chinese New Year (Spring Festival)", + "1977-02-19": "Chinese New Year (Spring Festival)", + "1977-02-20": "Chinese New Year (Spring Festival)", + "1977-05-01": "Labour Day", + "1977-10-01": "National Day", + "1977-10-02": "National Day", + "1978-01-01": "New Year's Day", + "1978-02-07": "Chinese New Year (Spring Festival)", + "1978-02-08": "Chinese New Year (Spring Festival)", + "1978-02-09": "Chinese New Year (Spring Festival)", + "1978-05-01": "Labour Day", + "1978-10-01": "National Day", + "1978-10-02": "National Day", + "1979-01-01": "New Year's Day", + "1979-01-28": "Chinese New Year (Spring Festival)", + "1979-01-29": "Chinese New Year (Spring Festival)", + "1979-01-30": "Chinese New Year (Spring Festival)", + "1979-05-01": "Labour Day", + "1979-10-01": "National Day", + "1979-10-02": "National Day", + "1980-01-01": "New Year's Day", + "1980-02-16": "Chinese New Year (Spring Festival)", + "1980-02-17": "Chinese New Year (Spring Festival)", + "1980-02-18": "Chinese New Year (Spring Festival)", + "1980-05-01": "Labour Day", + "1980-10-01": "National Day", + "1980-10-02": "National Day", + "1981-01-01": "New Year's Day", + "1981-02-05": "Chinese New Year (Spring Festival)", + "1981-02-06": "Chinese New Year (Spring Festival)", + "1981-02-07": "Chinese New Year (Spring Festival)", + "1981-05-01": "Labour Day", + "1981-10-01": "National Day", + "1981-10-02": "National Day", + "1982-01-01": "New Year's Day", + "1982-01-25": "Chinese New Year (Spring Festival)", + "1982-01-26": "Chinese New Year (Spring Festival)", + "1982-01-27": "Chinese New Year (Spring Festival)", + "1982-05-01": "Labour Day", + "1982-10-01": "National Day", + "1982-10-02": "National Day", + "1983-01-01": "New Year's Day", + "1983-02-13": "Chinese New Year (Spring Festival)", + "1983-02-14": "Chinese New Year (Spring Festival)", + "1983-02-15": "Chinese New Year (Spring Festival)", + "1983-05-01": "Labour Day", + "1983-10-01": "National Day", + "1983-10-02": "National Day", + "1984-01-01": "New Year's Day", + "1984-02-02": "Chinese New Year (Spring Festival)", + "1984-02-03": "Chinese New Year (Spring Festival)", + "1984-02-04": "Chinese New Year (Spring Festival)", + "1984-05-01": "Labour Day", + "1984-10-01": "National Day", + "1984-10-02": "National Day", + "1985-01-01": "New Year's Day", + "1985-02-20": "Chinese New Year (Spring Festival)", + "1985-02-21": "Chinese New Year (Spring Festival)", + "1985-02-22": "Chinese New Year (Spring Festival)", + "1985-05-01": "Labour Day", + "1985-10-01": "National Day", + "1985-10-02": "National Day", + "1986-01-01": "New Year's Day", + "1986-02-09": "Chinese New Year (Spring Festival)", + "1986-02-10": "Chinese New Year (Spring Festival)", + "1986-02-11": "Chinese New Year (Spring Festival)", + "1986-05-01": "Labour Day", + "1986-10-01": "National Day", + "1986-10-02": "National Day", + "1987-01-01": "New Year's Day", + "1987-01-29": "Chinese New Year (Spring Festival)", + "1987-01-30": "Chinese New Year (Spring Festival)", + "1987-01-31": "Chinese New Year (Spring Festival)", + "1987-05-01": "Labour Day", + "1987-10-01": "National Day", + "1987-10-02": "National Day", + "1988-01-01": "New Year's Day", + "1988-02-17": "Chinese New Year (Spring Festival)", + "1988-02-18": "Chinese New Year (Spring Festival)", + "1988-02-19": "Chinese New Year (Spring Festival)", + "1988-05-01": "Labour Day", + "1988-10-01": "National Day", + "1988-10-02": "National Day", + "1989-01-01": "New Year's Day", + "1989-02-06": "Chinese New Year (Spring Festival)", + "1989-02-07": "Chinese New Year (Spring Festival)", + "1989-02-08": "Chinese New Year (Spring Festival)", + "1989-05-01": "Labour Day", + "1989-10-01": "National Day", + "1989-10-02": "National Day", + "1990-01-01": "New Year's Day", + "1990-01-27": "Chinese New Year (Spring Festival)", + "1990-01-28": "Chinese New Year (Spring Festival)", + "1990-01-29": "Chinese New Year (Spring Festival)", + "1990-05-01": "Labour Day", + "1990-10-01": "National Day", + "1990-10-02": "National Day", + "1991-01-01": "New Year's Day", + "1991-02-15": "Chinese New Year (Spring Festival)", + "1991-02-16": "Chinese New Year (Spring Festival)", + "1991-02-17": "Chinese New Year (Spring Festival)", + "1991-05-01": "Labour Day", + "1991-10-01": "National Day", + "1991-10-02": "National Day", + "1992-01-01": "New Year's Day", + "1992-02-04": "Chinese New Year (Spring Festival)", + "1992-02-05": "Chinese New Year (Spring Festival)", + "1992-02-06": "Chinese New Year (Spring Festival)", + "1992-05-01": "Labour Day", + "1992-10-01": "National Day", + "1992-10-02": "National Day", + "1993-01-01": "New Year's Day", + "1993-01-23": "Chinese New Year (Spring Festival)", + "1993-01-24": "Chinese New Year (Spring Festival)", + "1993-01-25": "Chinese New Year (Spring Festival)", + "1993-05-01": "Labour Day", + "1993-10-01": "National Day", + "1993-10-02": "National Day", + "1994-01-01": "New Year's Day", + "1994-02-10": "Chinese New Year (Spring Festival)", + "1994-02-11": "Chinese New Year (Spring Festival)", + "1994-02-12": "Chinese New Year (Spring Festival)", + "1994-05-01": "Labour Day", + "1994-10-01": "National Day", + "1994-10-02": "National Day", + "1995-01-01": "New Year's Day", + "1995-01-31": "Chinese New Year (Spring Festival)", + "1995-02-01": "Chinese New Year (Spring Festival)", + "1995-02-02": "Chinese New Year (Spring Festival)", + "1995-05-01": "Labour Day", + "1995-10-01": "National Day", + "1995-10-02": "National Day", + "1996-01-01": "New Year's Day", + "1996-02-19": "Chinese New Year (Spring Festival)", + "1996-02-20": "Chinese New Year (Spring Festival)", + "1996-02-21": "Chinese New Year (Spring Festival)", + "1996-05-01": "Labour Day", + "1996-10-01": "National Day", + "1996-10-02": "National Day", + "1997-01-01": "New Year's Day", + "1997-02-07": "Chinese New Year (Spring Festival)", + "1997-02-08": "Chinese New Year (Spring Festival)", + "1997-02-09": "Chinese New Year (Spring Festival)", + "1997-05-01": "Labour Day", + "1997-10-01": "National Day", + "1997-10-02": "National Day", + "1998-01-01": "New Year's Day", + "1998-01-28": "Chinese New Year (Spring Festival)", + "1998-01-29": "Chinese New Year (Spring Festival)", + "1998-01-30": "Chinese New Year (Spring Festival)", + "1998-05-01": "Labour Day", + "1998-10-01": "National Day", + "1998-10-02": "National Day", + "1999-01-01": "New Year's Day", + "1999-02-16": "Chinese New Year (Spring Festival)", + "1999-02-17": "Chinese New Year (Spring Festival)", + "1999-02-18": "Chinese New Year (Spring Festival)", + "1999-05-01": "Labour Day", + "1999-10-01": "National Day", + "1999-10-02": "National Day", + "2000-01-01": "New Year's Day", + "2000-02-05": "Chinese New Year (Spring Festival)", + "2000-02-06": "Chinese New Year (Spring Festival)", + "2000-02-07": "Chinese New Year (Spring Festival)", + "2000-05-01": "Labour Day", + "2000-05-02": "Labour Day", + "2000-05-03": "Labour Day", + "2000-10-01": "National Day", + "2000-10-02": "National Day", + "2000-10-03": "National Day", + "2001-01-01": "New Year's Day", + "2001-01-24": "Chinese New Year (Spring Festival)", + "2001-01-25": "Chinese New Year (Spring Festival)", + "2001-01-26": "Chinese New Year (Spring Festival)", + "2001-05-01": "Labour Day", + "2001-05-02": "Labour Day", + "2001-05-03": "Labour Day", + "2001-10-01": "National Day", + "2001-10-02": "National Day", + "2001-10-03": "National Day", + "2002-01-01": "New Year's Day", + "2002-02-12": "Chinese New Year (Spring Festival)", + "2002-02-13": "Chinese New Year (Spring Festival)", + "2002-02-14": "Chinese New Year (Spring Festival)", + "2002-05-01": "Labour Day", + "2002-05-02": "Labour Day", + "2002-05-03": "Labour Day", + "2002-10-01": "National Day", + "2002-10-02": "National Day", + "2002-10-03": "National Day", + "2003-01-01": "New Year's Day", + "2003-02-01": "Chinese New Year (Spring Festival)", + "2003-02-02": "Chinese New Year (Spring Festival)", + "2003-02-03": "Chinese New Year (Spring Festival)", + "2003-05-01": "Labour Day", + "2003-05-02": "Labour Day", + "2003-05-03": "Labour Day", + "2003-10-01": "National Day", + "2003-10-02": "National Day", + "2003-10-03": "National Day", + "2004-01-01": "New Year's Day", + "2004-01-22": "Chinese New Year (Spring Festival)", + "2004-01-23": "Chinese New Year (Spring Festival)", + "2004-01-24": "Chinese New Year (Spring Festival)", + "2004-05-01": "Labour Day", + "2004-05-02": "Labour Day", + "2004-05-03": "Labour Day", + "2004-10-01": "National Day", + "2004-10-02": "National Day", + "2004-10-03": "National Day", + "2005-01-01": "New Year's Day", + "2005-02-09": "Chinese New Year (Spring Festival)", + "2005-02-10": "Chinese New Year (Spring Festival)", + "2005-02-11": "Chinese New Year (Spring Festival)", + "2005-05-01": "Labour Day", + "2005-05-02": "Labour Day", + "2005-05-03": "Labour Day", + "2005-10-01": "National Day", + "2005-10-02": "National Day", + "2005-10-03": "National Day", + "2006-01-01": "New Year's Day", + "2006-01-29": "Chinese New Year (Spring Festival)", + "2006-01-30": "Chinese New Year (Spring Festival)", + "2006-01-31": "Chinese New Year (Spring Festival)", + "2006-05-01": "Labour Day", + "2006-05-02": "Labour Day", + "2006-05-03": "Labour Day", + "2006-10-01": "National Day", + "2006-10-02": "National Day", + "2006-10-03": "National Day", + "2007-01-01": "New Year's Day", + "2007-02-18": "Chinese New Year (Spring Festival)", + "2007-02-19": "Chinese New Year (Spring Festival)", + "2007-02-20": "Chinese New Year (Spring Festival)", + "2007-05-01": "Labour Day", + "2007-05-02": "Labour Day", + "2007-05-03": "Labour Day", + "2007-10-01": "National Day", + "2007-10-02": "National Day", + "2007-10-03": "National Day", + "2008-01-01": "New Year's Day", + "2008-02-06": "Chinese New Year (Spring Festival)", + "2008-02-07": "Chinese New Year (Spring Festival)", + "2008-02-08": "Chinese New Year (Spring Festival)", + "2008-04-04": "Tomb-Sweeping Day", + "2008-05-01": "Labour Day", + "2008-06-08": "Dragon Boat Festival", + "2008-09-14": "Mid-Autumn Festival", + "2008-10-01": "National Day", + "2008-10-02": "National Day", + "2008-10-03": "National Day", + "2009-01-01": "New Year's Day", + "2009-01-25": "Chinese New Year (Spring Festival)", + "2009-01-26": "Chinese New Year (Spring Festival)", + "2009-01-27": "Chinese New Year (Spring Festival)", + "2009-04-04": "Tomb-Sweeping Day", + "2009-05-01": "Labour Day", + "2009-05-28": "Dragon Boat Festival", + "2009-10-01": "National Day", + "2009-10-02": "National Day", + "2009-10-03": "Mid-Autumn Festival; National Day", + "2010-01-01": "New Year's Day", + "2010-02-13": "Chinese New Year (Spring Festival)", + "2010-02-14": "Chinese New Year (Spring Festival)", + "2010-02-15": "Chinese New Year (Spring Festival)", + "2010-04-05": "Tomb-Sweeping Day", + "2010-05-01": "Labour Day", + "2010-06-16": "Dragon Boat Festival", + "2010-09-22": "Mid-Autumn Festival", + "2010-10-01": "National Day", + "2010-10-02": "National Day", + "2010-10-03": "National Day", + "2011-01-01": "New Year's Day", + "2011-02-02": "Chinese New Year (Spring Festival)", + "2011-02-03": "Chinese New Year (Spring Festival)", + "2011-02-04": "Chinese New Year (Spring Festival)", + "2011-04-05": "Tomb-Sweeping Day", + "2011-05-01": "Labour Day", + "2011-06-06": "Dragon Boat Festival", + "2011-09-12": "Mid-Autumn Festival", + "2011-10-01": "National Day", + "2011-10-02": "National Day", + "2011-10-03": "National Day", + "2012-01-01": "New Year's Day", + "2012-01-22": "Chinese New Year (Spring Festival)", + "2012-01-23": "Chinese New Year (Spring Festival)", + "2012-01-24": "Chinese New Year (Spring Festival)", + "2012-04-04": "Tomb-Sweeping Day", + "2012-05-01": "Labour Day", + "2012-06-23": "Dragon Boat Festival", + "2012-09-30": "Mid-Autumn Festival", + "2012-10-01": "National Day", + "2012-10-02": "National Day", + "2012-10-03": "National Day", + "2013-01-01": "New Year's Day", + "2013-02-09": "Chinese New Year (Spring Festival)", + "2013-02-10": "Chinese New Year (Spring Festival)", + "2013-02-11": "Chinese New Year (Spring Festival)", + "2013-04-04": "Tomb-Sweeping Day", + "2013-05-01": "Labour Day", + "2013-06-12": "Dragon Boat Festival", + "2013-09-19": "Mid-Autumn Festival", + "2013-10-01": "National Day", + "2013-10-02": "National Day", + "2013-10-03": "National Day", + "2014-01-01": "New Year's Day", + "2014-01-31": "Chinese New Year (Spring Festival)", + "2014-02-01": "Chinese New Year (Spring Festival)", + "2014-02-02": "Chinese New Year (Spring Festival)", + "2014-04-05": "Tomb-Sweeping Day", + "2014-05-01": "Labour Day", + "2014-06-02": "Dragon Boat Festival", + "2014-09-08": "Mid-Autumn Festival", + "2014-10-01": "National Day", + "2014-10-02": "National Day", + "2014-10-03": "National Day", + "2015-01-01": "New Year's Day", + "2015-02-19": "Chinese New Year (Spring Festival)", + "2015-02-20": "Chinese New Year (Spring Festival)", + "2015-02-21": "Chinese New Year (Spring Festival)", + "2015-04-05": "Tomb-Sweeping Day", + "2015-05-01": "Labour Day", + "2015-06-20": "Dragon Boat Festival", + "2015-09-27": "Mid-Autumn Festival", + "2015-10-01": "National Day", + "2015-10-02": "National Day", + "2015-10-03": "National Day", + "2016-01-01": "New Year's Day", + "2016-02-08": "Chinese New Year (Spring Festival)", + "2016-02-09": "Chinese New Year (Spring Festival)", + "2016-02-10": "Chinese New Year (Spring Festival)", + "2016-04-04": "Tomb-Sweeping Day", + "2016-05-01": "Labour Day", + "2016-06-09": "Dragon Boat Festival", + "2016-09-15": "Mid-Autumn Festival", + "2016-10-01": "National Day", + "2016-10-02": "National Day", + "2016-10-03": "National Day", + "2017-01-01": "New Year's Day", + "2017-01-28": "Chinese New Year (Spring Festival)", + "2017-01-29": "Chinese New Year (Spring Festival)", + "2017-01-30": "Chinese New Year (Spring Festival)", + "2017-04-04": "Tomb-Sweeping Day", + "2017-05-01": "Labour Day", + "2017-05-30": "Dragon Boat Festival", + "2017-10-01": "National Day", + "2017-10-02": "National Day", + "2017-10-03": "National Day", + "2017-10-04": "Mid-Autumn Festival", + "2018-01-01": "New Year's Day", + "2018-02-16": "Chinese New Year (Spring Festival)", + "2018-02-17": "Chinese New Year (Spring Festival)", + "2018-02-18": "Chinese New Year (Spring Festival)", + "2018-04-05": "Tomb-Sweeping Day", + "2018-05-01": "Labour Day", + "2018-06-18": "Dragon Boat Festival", + "2018-09-24": "Mid-Autumn Festival", + "2018-10-01": "National Day", + "2018-10-02": "National Day", + "2018-10-03": "National Day", + "2019-01-01": "New Year's Day", + "2019-02-05": "Chinese New Year (Spring Festival)", + "2019-02-06": "Chinese New Year (Spring Festival)", + "2019-02-07": "Chinese New Year (Spring Festival)", + "2019-04-05": "Tomb-Sweeping Day", + "2019-05-01": "Labour Day", + "2019-06-07": "Dragon Boat Festival", + "2019-09-13": "Mid-Autumn Festival", + "2019-10-01": "National Day", + "2019-10-02": "National Day", + "2019-10-03": "National Day", + "2020-01-01": "New Year's Day", + "2020-01-25": "Chinese New Year (Spring Festival)", + "2020-01-26": "Chinese New Year (Spring Festival)", + "2020-01-27": "Chinese New Year (Spring Festival)", + "2020-04-04": "Tomb-Sweeping Day", + "2020-05-01": "Labour Day", + "2020-06-25": "Dragon Boat Festival", + "2020-10-01": "Mid-Autumn Festival; National Day", + "2020-10-02": "National Day", + "2020-10-03": "National Day", + "2021-01-01": "New Year's Day", + "2021-02-12": "Chinese New Year (Spring Festival)", + "2021-02-13": "Chinese New Year (Spring Festival)", + "2021-02-14": "Chinese New Year (Spring Festival)", + "2021-04-04": "Tomb-Sweeping Day", + "2021-05-01": "Labour Day", + "2021-06-14": "Dragon Boat Festival", + "2021-09-21": "Mid-Autumn Festival", + "2021-10-01": "National Day", + "2021-10-02": "National Day", + "2021-10-03": "National Day", + "2022-01-01": "New Year's Day", + "2022-02-01": "Chinese New Year (Spring Festival)", + "2022-02-02": "Chinese New Year (Spring Festival)", + "2022-02-03": "Chinese New Year (Spring Festival)", + "2022-04-05": "Tomb-Sweeping Day", + "2022-05-01": "Labour Day", + "2022-06-03": "Dragon Boat Festival", + "2022-09-10": "Mid-Autumn Festival", + "2022-10-01": "National Day", + "2022-10-02": "National Day", + "2022-10-03": "National Day", + "2023-01-01": "New Year's Day", + "2023-01-22": "Chinese New Year (Spring Festival)", + "2023-01-23": "Chinese New Year (Spring Festival)", + "2023-01-24": "Chinese New Year (Spring Festival)", + "2023-04-05": "Tomb-Sweeping Day", + "2023-05-01": "Labour Day", + "2023-06-22": "Dragon Boat Festival", + "2023-09-29": "Mid-Autumn Festival", + "2023-10-01": "National Day", + "2023-10-02": "National Day", + "2023-10-03": "National Day", + "2024-01-01": "New Year's Day", + "2024-02-10": "Chinese New Year (Spring Festival)", + "2024-02-11": "Chinese New Year (Spring Festival)", + "2024-02-12": "Chinese New Year (Spring Festival)", + "2024-04-04": "Tomb-Sweeping Day", + "2024-05-01": "Labour Day", + "2024-06-10": "Dragon Boat Festival", + "2024-09-17": "Mid-Autumn Festival", + "2024-10-01": "National Day", + "2024-10-02": "National Day", + "2024-10-03": "National Day", + "2025-01-01": "New Year's Day", + "2025-01-29": "Chinese New Year (Spring Festival)", + "2025-01-30": "Chinese New Year (Spring Festival)", + "2025-01-31": "Chinese New Year (Spring Festival)", + "2025-04-04": "Tomb-Sweeping Day", + "2025-05-01": "Labour Day", + "2025-05-31": "Dragon Boat Festival", + "2025-10-01": "National Day", + "2025-10-02": "National Day", + "2025-10-03": "National Day", + "2025-10-06": "Mid-Autumn Festival", + "2026-01-01": "New Year's Day", + "2026-02-17": "Chinese New Year (Spring Festival)", + "2026-02-18": "Chinese New Year (Spring Festival)", + "2026-02-19": "Chinese New Year (Spring Festival)", + "2026-04-05": "Tomb-Sweeping Day", + "2026-05-01": "Labour Day", + "2026-06-19": "Dragon Boat Festival", + "2026-09-25": "Mid-Autumn Festival", + "2026-10-01": "National Day", + "2026-10-02": "National Day", + "2026-10-03": "National Day", + "2027-01-01": "New Year's Day", + "2027-02-06": "Chinese New Year (Spring Festival)", + "2027-02-07": "Chinese New Year (Spring Festival)", + "2027-02-08": "Chinese New Year (Spring Festival)", + "2027-04-05": "Tomb-Sweeping Day", + "2027-05-01": "Labour Day", + "2027-06-09": "Dragon Boat Festival", + "2027-09-15": "Mid-Autumn Festival", + "2027-10-01": "National Day", + "2027-10-02": "National Day", + "2027-10-03": "National Day", + "2028-01-01": "New Year's Day", + "2028-01-26": "Chinese New Year (Spring Festival)", + "2028-01-27": "Chinese New Year (Spring Festival)", + "2028-01-28": "Chinese New Year (Spring Festival)", + "2028-04-04": "Tomb-Sweeping Day", + "2028-05-01": "Labour Day", + "2028-05-28": "Dragon Boat Festival", + "2028-10-01": "National Day", + "2028-10-02": "National Day", + "2028-10-03": "Mid-Autumn Festival; National Day", + "2029-01-01": "New Year's Day", + "2029-02-13": "Chinese New Year (Spring Festival)", + "2029-02-14": "Chinese New Year (Spring Festival)", + "2029-02-15": "Chinese New Year (Spring Festival)", + "2029-04-04": "Tomb-Sweeping Day", + "2029-05-01": "Labour Day", + "2029-06-16": "Dragon Boat Festival", + "2029-09-22": "Mid-Autumn Festival", + "2029-10-01": "National Day", + "2029-10-02": "National Day", + "2029-10-03": "National Day", + "2030-01-01": "New Year's Day", + "2030-02-03": "Chinese New Year (Spring Festival)", + "2030-02-04": "Chinese New Year (Spring Festival)", + "2030-02-05": "Chinese New Year (Spring Festival)", + "2030-04-05": "Tomb-Sweeping Day", + "2030-05-01": "Labour Day", + "2030-06-05": "Dragon Boat Festival", + "2030-09-12": "Mid-Autumn Festival", + "2030-10-01": "National Day", + "2030-10-02": "National Day", + "2030-10-03": "National Day", + "2031-01-01": "New Year's Day", + "2031-01-23": "Chinese New Year (Spring Festival)", + "2031-01-24": "Chinese New Year (Spring Festival)", + "2031-01-25": "Chinese New Year (Spring Festival)", + "2031-04-05": "Tomb-Sweeping Day", + "2031-05-01": "Labour Day", + "2031-06-24": "Dragon Boat Festival", + "2031-10-01": "Mid-Autumn Festival; National Day", + "2031-10-02": "National Day", + "2031-10-03": "National Day", + "2032-01-01": "New Year's Day", + "2032-02-11": "Chinese New Year (Spring Festival)", + "2032-02-12": "Chinese New Year (Spring Festival)", + "2032-02-13": "Chinese New Year (Spring Festival)", + "2032-04-04": "Tomb-Sweeping Day", + "2032-05-01": "Labour Day", + "2032-06-12": "Dragon Boat Festival", + "2032-09-19": "Mid-Autumn Festival", + "2032-10-01": "National Day", + "2032-10-02": "National Day", + "2032-10-03": "National Day", + "2033-01-01": "New Year's Day", + "2033-01-31": "Chinese New Year (Spring Festival)", + "2033-02-01": "Chinese New Year (Spring Festival)", + "2033-02-02": "Chinese New Year (Spring Festival)", + "2033-04-04": "Tomb-Sweeping Day", + "2033-05-01": "Labour Day", + "2033-06-01": "Dragon Boat Festival", + "2033-09-08": "Mid-Autumn Festival", + "2033-10-01": "National Day", + "2033-10-02": "National Day", + "2033-10-03": "National Day", + "2034-01-01": "New Year's Day", + "2034-02-19": "Chinese New Year (Spring Festival)", + "2034-02-20": "Chinese New Year (Spring Festival)", + "2034-02-21": "Chinese New Year (Spring Festival)", + "2034-04-05": "Tomb-Sweeping Day", + "2034-05-01": "Labour Day", + "2034-06-20": "Dragon Boat Festival", + "2034-09-27": "Mid-Autumn Festival", + "2034-10-01": "National Day", + "2034-10-02": "National Day", + "2034-10-03": "National Day", + "2035-01-01": "New Year's Day", + "2035-02-08": "Chinese New Year (Spring Festival)", + "2035-02-09": "Chinese New Year (Spring Festival)", + "2035-02-10": "Chinese New Year (Spring Festival)", + "2035-04-05": "Tomb-Sweeping Day", + "2035-05-01": "Labour Day", + "2035-06-10": "Dragon Boat Festival", + "2035-09-16": "Mid-Autumn Festival", + "2035-10-01": "National Day", + "2035-10-02": "National Day", + "2035-10-03": "National Day", + "2036-01-01": "New Year's Day", + "2036-01-28": "Chinese New Year (Spring Festival)", + "2036-01-29": "Chinese New Year (Spring Festival)", + "2036-01-30": "Chinese New Year (Spring Festival)", + "2036-04-04": "Tomb-Sweeping Day", + "2036-05-01": "Labour Day", + "2036-05-30": "Dragon Boat Festival", + "2036-10-01": "National Day", + "2036-10-02": "National Day", + "2036-10-03": "National Day", + "2036-10-04": "Mid-Autumn Festival", + "2037-01-01": "New Year's Day", + "2037-02-15": "Chinese New Year (Spring Festival)", + "2037-02-16": "Chinese New Year (Spring Festival)", + "2037-02-17": "Chinese New Year (Spring Festival)", + "2037-04-04": "Tomb-Sweeping Day", + "2037-05-01": "Labour Day", + "2037-06-18": "Dragon Boat Festival", + "2037-09-24": "Mid-Autumn Festival", + "2037-10-01": "National Day", + "2037-10-02": "National Day", + "2037-10-03": "National Day", + "2038-01-01": "New Year's Day", + "2038-02-04": "Chinese New Year (Spring Festival)", + "2038-02-05": "Chinese New Year (Spring Festival)", + "2038-02-06": "Chinese New Year (Spring Festival)", + "2038-04-05": "Tomb-Sweeping Day", + "2038-05-01": "Labour Day", + "2038-06-07": "Dragon Boat Festival", + "2038-09-13": "Mid-Autumn Festival", + "2038-10-01": "National Day", + "2038-10-02": "National Day", + "2038-10-03": "National Day", + "2039-01-01": "New Year's Day", + "2039-01-24": "Chinese New Year (Spring Festival)", + "2039-01-25": "Chinese New Year (Spring Festival)", + "2039-01-26": "Chinese New Year (Spring Festival)", + "2039-04-05": "Tomb-Sweeping Day", + "2039-05-01": "Labour Day", + "2039-05-27": "Dragon Boat Festival", + "2039-10-01": "National Day", + "2039-10-02": "Mid-Autumn Festival; National Day", + "2039-10-03": "National Day", + "2040-01-01": "New Year's Day", + "2040-02-12": "Chinese New Year (Spring Festival)", + "2040-02-13": "Chinese New Year (Spring Festival)", + "2040-02-14": "Chinese New Year (Spring Festival)", + "2040-04-04": "Tomb-Sweeping Day", + "2040-05-01": "Labour Day", + "2040-06-14": "Dragon Boat Festival", + "2040-09-20": "Mid-Autumn Festival", + "2040-10-01": "National Day", + "2040-10-02": "National Day", + "2040-10-03": "National Day", + "2041-01-01": "New Year's Day", + "2041-02-01": "Chinese New Year (Spring Festival)", + "2041-02-02": "Chinese New Year (Spring Festival)", + "2041-02-03": "Chinese New Year (Spring Festival)", + "2041-04-04": "Tomb-Sweeping Day", + "2041-05-01": "Labour Day", + "2041-06-03": "Dragon Boat Festival", + "2041-09-10": "Mid-Autumn Festival", + "2041-10-01": "National Day", + "2041-10-02": "National Day", + "2041-10-03": "National Day", + "2042-01-01": "New Year's Day", + "2042-01-22": "Chinese New Year (Spring Festival)", + "2042-01-23": "Chinese New Year (Spring Festival)", + "2042-01-24": "Chinese New Year (Spring Festival)", + "2042-04-05": "Tomb-Sweeping Day", + "2042-05-01": "Labour Day", + "2042-06-22": "Dragon Boat Festival", + "2042-09-28": "Mid-Autumn Festival", + "2042-10-01": "National Day", + "2042-10-02": "National Day", + "2042-10-03": "National Day", + "2043-01-01": "New Year's Day", + "2043-02-10": "Chinese New Year (Spring Festival)", + "2043-02-11": "Chinese New Year (Spring Festival)", + "2043-02-12": "Chinese New Year (Spring Festival)", + "2043-04-05": "Tomb-Sweeping Day", + "2043-05-01": "Labour Day", + "2043-06-11": "Dragon Boat Festival", + "2043-09-17": "Mid-Autumn Festival", + "2043-10-01": "National Day", + "2043-10-02": "National Day", + "2043-10-03": "National Day", + "2044-01-01": "New Year's Day", + "2044-01-30": "Chinese New Year (Spring Festival)", + "2044-01-31": "Chinese New Year (Spring Festival)", + "2044-02-01": "Chinese New Year (Spring Festival)", + "2044-04-04": "Tomb-Sweeping Day", + "2044-05-01": "Labour Day", + "2044-05-31": "Dragon Boat Festival", + "2044-10-01": "National Day", + "2044-10-02": "National Day", + "2044-10-03": "National Day", + "2044-10-05": "Mid-Autumn Festival", + "2045-01-01": "New Year's Day", + "2045-02-17": "Chinese New Year (Spring Festival)", + "2045-02-18": "Chinese New Year (Spring Festival)", + "2045-02-19": "Chinese New Year (Spring Festival)", + "2045-04-04": "Tomb-Sweeping Day", + "2045-05-01": "Labour Day", + "2045-06-19": "Dragon Boat Festival", + "2045-09-25": "Mid-Autumn Festival", + "2045-10-01": "National Day", + "2045-10-02": "National Day", + "2045-10-03": "National Day", + "2046-01-01": "New Year's Day", + "2046-02-06": "Chinese New Year (Spring Festival)", + "2046-02-07": "Chinese New Year (Spring Festival)", + "2046-02-08": "Chinese New Year (Spring Festival)", + "2046-04-05": "Tomb-Sweeping Day", + "2046-05-01": "Labour Day", + "2046-06-08": "Dragon Boat Festival", + "2046-09-15": "Mid-Autumn Festival", + "2046-10-01": "National Day", + "2046-10-02": "National Day", + "2046-10-03": "National Day", + "2047-01-01": "New Year's Day", + "2047-01-26": "Chinese New Year (Spring Festival)", + "2047-01-27": "Chinese New Year (Spring Festival)", + "2047-01-28": "Chinese New Year (Spring Festival)", + "2047-04-05": "Tomb-Sweeping Day", + "2047-05-01": "Labour Day", + "2047-05-29": "Dragon Boat Festival", + "2047-10-01": "National Day", + "2047-10-02": "National Day", + "2047-10-03": "National Day", + "2047-10-04": "Mid-Autumn Festival", + "2048-01-01": "New Year's Day", + "2048-02-14": "Chinese New Year (Spring Festival)", + "2048-02-15": "Chinese New Year (Spring Festival)", + "2048-02-16": "Chinese New Year (Spring Festival)", + "2048-04-04": "Tomb-Sweeping Day", + "2048-05-01": "Labour Day", + "2048-06-15": "Dragon Boat Festival", + "2048-09-22": "Mid-Autumn Festival", + "2048-10-01": "National Day", + "2048-10-02": "National Day", + "2048-10-03": "National Day", + "2049-01-01": "New Year's Day", + "2049-02-02": "Chinese New Year (Spring Festival)", + "2049-02-03": "Chinese New Year (Spring Festival)", + "2049-02-04": "Chinese New Year (Spring Festival)", + "2049-04-04": "Tomb-Sweeping Day", + "2049-05-01": "Labour Day", + "2049-06-04": "Dragon Boat Festival", + "2049-09-11": "Mid-Autumn Festival", + "2049-10-01": "National Day", + "2049-10-02": "National Day", + "2049-10-03": "National Day", + "2050-01-01": "New Year's Day", + "2050-01-23": "Chinese New Year (Spring Festival)", + "2050-01-24": "Chinese New Year (Spring Festival)", + "2050-01-25": "Chinese New Year (Spring Festival)", + "2050-04-05": "Tomb-Sweeping Day", + "2050-05-01": "Labour Day", + "2050-06-23": "Dragon Boat Festival", + "2050-09-30": "Mid-Autumn Festival", + "2050-10-01": "National Day", + "2050-10-02": "National Day", + "2050-10-03": "National Day" +} diff --git a/snapshots/countries/CO.json b/snapshots/countries/CO.json new file mode 100644 index 000000000..03e304595 --- /dev/null +++ b/snapshots/countries/CO.json @@ -0,0 +1,1764 @@ +{ + "1950-01-01": "New Year's Day", + "1950-05-01": "Labour Day", + "1950-07-20": "Independence Day", + "1950-08-07": "Battle of Boyac\u00e1", + "1950-10-12": "Columbus Day", + "1950-11-11": "Independence of Cartagena", + "1950-12-25": "Christmas", + "1951-01-01": "New Year's Day", + "1951-01-06": "Epiphany", + "1951-03-19": "Saint Joseph's Day", + "1951-03-22": "Maundy Thursday", + "1951-03-23": "Good Friday", + "1951-05-01": "Labour Day", + "1951-05-03": "Ascension of Jesus", + "1951-05-24": "Corpus Christi", + "1951-06-29": "Saint Peter and Saint Paul", + "1951-07-20": "Independence Day", + "1951-08-07": "Battle of Boyac\u00e1", + "1951-08-15": "Assumption of Mary", + "1951-10-12": "Columbus Day", + "1951-11-01": "All Saints' Day", + "1951-11-11": "Independence of Cartagena", + "1951-12-08": "Immaculate Conception", + "1951-12-25": "Christmas", + "1952-01-01": "New Year's Day", + "1952-01-06": "Epiphany", + "1952-03-19": "Saint Joseph's Day", + "1952-04-10": "Maundy Thursday", + "1952-04-11": "Good Friday", + "1952-05-01": "Labour Day", + "1952-05-22": "Ascension of Jesus", + "1952-06-12": "Corpus Christi", + "1952-06-29": "Saint Peter and Saint Paul", + "1952-07-20": "Independence Day", + "1952-08-07": "Battle of Boyac\u00e1", + "1952-08-15": "Assumption of Mary", + "1952-10-12": "Columbus Day", + "1952-11-01": "All Saints' Day", + "1952-11-11": "Independence of Cartagena", + "1952-12-08": "Immaculate Conception", + "1952-12-25": "Christmas", + "1953-01-01": "New Year's Day", + "1953-01-06": "Epiphany", + "1953-03-19": "Saint Joseph's Day", + "1953-04-02": "Maundy Thursday", + "1953-04-03": "Good Friday", + "1953-05-01": "Labour Day", + "1953-05-14": "Ascension of Jesus", + "1953-06-04": "Corpus Christi", + "1953-06-29": "Saint Peter and Saint Paul", + "1953-07-20": "Independence Day", + "1953-08-07": "Battle of Boyac\u00e1", + "1953-08-15": "Assumption of Mary", + "1953-10-12": "Columbus Day", + "1953-11-01": "All Saints' Day", + "1953-11-11": "Independence of Cartagena", + "1953-12-08": "Immaculate Conception", + "1953-12-25": "Christmas", + "1954-01-01": "New Year's Day", + "1954-01-06": "Epiphany", + "1954-03-19": "Saint Joseph's Day", + "1954-04-15": "Maundy Thursday", + "1954-04-16": "Good Friday", + "1954-05-01": "Labour Day", + "1954-05-27": "Ascension of Jesus", + "1954-06-17": "Corpus Christi", + "1954-06-29": "Saint Peter and Saint Paul", + "1954-07-20": "Independence Day", + "1954-08-07": "Battle of Boyac\u00e1", + "1954-08-15": "Assumption of Mary", + "1954-10-12": "Columbus Day", + "1954-11-01": "All Saints' Day", + "1954-11-11": "Independence of Cartagena", + "1954-12-08": "Immaculate Conception", + "1954-12-25": "Christmas", + "1955-01-01": "New Year's Day", + "1955-01-06": "Epiphany", + "1955-03-19": "Saint Joseph's Day", + "1955-04-07": "Maundy Thursday", + "1955-04-08": "Good Friday", + "1955-05-01": "Labour Day", + "1955-05-19": "Ascension of Jesus", + "1955-06-09": "Corpus Christi", + "1955-06-29": "Saint Peter and Saint Paul", + "1955-07-20": "Independence Day", + "1955-08-07": "Battle of Boyac\u00e1", + "1955-08-15": "Assumption of Mary", + "1955-10-12": "Columbus Day", + "1955-11-01": "All Saints' Day", + "1955-11-11": "Independence of Cartagena", + "1955-12-08": "Immaculate Conception", + "1955-12-25": "Christmas", + "1956-01-01": "New Year's Day", + "1956-01-06": "Epiphany", + "1956-03-19": "Saint Joseph's Day", + "1956-03-29": "Maundy Thursday", + "1956-03-30": "Good Friday", + "1956-05-01": "Labour Day", + "1956-05-10": "Ascension of Jesus", + "1956-05-31": "Corpus Christi", + "1956-06-29": "Saint Peter and Saint Paul", + "1956-07-20": "Independence Day", + "1956-08-07": "Battle of Boyac\u00e1", + "1956-08-15": "Assumption of Mary", + "1956-10-12": "Columbus Day", + "1956-11-01": "All Saints' Day", + "1956-11-11": "Independence of Cartagena", + "1956-12-08": "Immaculate Conception", + "1956-12-25": "Christmas", + "1957-01-01": "New Year's Day", + "1957-01-06": "Epiphany", + "1957-03-19": "Saint Joseph's Day", + "1957-04-18": "Maundy Thursday", + "1957-04-19": "Good Friday", + "1957-05-01": "Labour Day", + "1957-05-30": "Ascension of Jesus", + "1957-06-20": "Corpus Christi", + "1957-06-29": "Saint Peter and Saint Paul", + "1957-07-20": "Independence Day", + "1957-08-07": "Battle of Boyac\u00e1", + "1957-08-15": "Assumption of Mary", + "1957-10-12": "Columbus Day", + "1957-11-01": "All Saints' Day", + "1957-11-11": "Independence of Cartagena", + "1957-12-08": "Immaculate Conception", + "1957-12-25": "Christmas", + "1958-01-01": "New Year's Day", + "1958-01-06": "Epiphany", + "1958-03-19": "Saint Joseph's Day", + "1958-04-03": "Maundy Thursday", + "1958-04-04": "Good Friday", + "1958-05-01": "Labour Day", + "1958-05-15": "Ascension of Jesus", + "1958-06-05": "Corpus Christi", + "1958-06-29": "Saint Peter and Saint Paul", + "1958-07-20": "Independence Day", + "1958-08-07": "Battle of Boyac\u00e1", + "1958-08-15": "Assumption of Mary", + "1958-10-12": "Columbus Day", + "1958-11-01": "All Saints' Day", + "1958-11-11": "Independence of Cartagena", + "1958-12-08": "Immaculate Conception", + "1958-12-25": "Christmas", + "1959-01-01": "New Year's Day", + "1959-01-06": "Epiphany", + "1959-03-19": "Saint Joseph's Day", + "1959-03-26": "Maundy Thursday", + "1959-03-27": "Good Friday", + "1959-05-01": "Labour Day", + "1959-05-07": "Ascension of Jesus", + "1959-05-28": "Corpus Christi", + "1959-06-29": "Saint Peter and Saint Paul", + "1959-07-20": "Independence Day", + "1959-08-07": "Battle of Boyac\u00e1", + "1959-08-15": "Assumption of Mary", + "1959-10-12": "Columbus Day", + "1959-11-01": "All Saints' Day", + "1959-11-11": "Independence of Cartagena", + "1959-12-08": "Immaculate Conception", + "1959-12-25": "Christmas", + "1960-01-01": "New Year's Day", + "1960-01-06": "Epiphany", + "1960-03-19": "Saint Joseph's Day", + "1960-04-14": "Maundy Thursday", + "1960-04-15": "Good Friday", + "1960-05-01": "Labour Day", + "1960-05-26": "Ascension of Jesus", + "1960-06-16": "Corpus Christi", + "1960-06-29": "Saint Peter and Saint Paul", + "1960-07-20": "Independence Day", + "1960-08-07": "Battle of Boyac\u00e1", + "1960-08-15": "Assumption of Mary", + "1960-10-12": "Columbus Day", + "1960-11-01": "All Saints' Day", + "1960-11-11": "Independence of Cartagena", + "1960-12-08": "Immaculate Conception", + "1960-12-25": "Christmas", + "1961-01-01": "New Year's Day", + "1961-01-06": "Epiphany", + "1961-03-19": "Saint Joseph's Day", + "1961-03-30": "Maundy Thursday", + "1961-03-31": "Good Friday", + "1961-05-01": "Labour Day", + "1961-05-11": "Ascension of Jesus", + "1961-06-01": "Corpus Christi", + "1961-06-29": "Saint Peter and Saint Paul", + "1961-07-20": "Independence Day", + "1961-08-07": "Battle of Boyac\u00e1", + "1961-08-15": "Assumption of Mary", + "1961-10-12": "Columbus Day", + "1961-11-01": "All Saints' Day", + "1961-11-11": "Independence of Cartagena", + "1961-12-08": "Immaculate Conception", + "1961-12-25": "Christmas", + "1962-01-01": "New Year's Day", + "1962-01-06": "Epiphany", + "1962-03-19": "Saint Joseph's Day", + "1962-04-19": "Maundy Thursday", + "1962-04-20": "Good Friday", + "1962-05-01": "Labour Day", + "1962-05-31": "Ascension of Jesus", + "1962-06-21": "Corpus Christi", + "1962-06-29": "Saint Peter and Saint Paul", + "1962-07-20": "Independence Day", + "1962-08-07": "Battle of Boyac\u00e1", + "1962-08-15": "Assumption of Mary", + "1962-10-12": "Columbus Day", + "1962-11-01": "All Saints' Day", + "1962-11-11": "Independence of Cartagena", + "1962-12-08": "Immaculate Conception", + "1962-12-25": "Christmas", + "1963-01-01": "New Year's Day", + "1963-01-06": "Epiphany", + "1963-03-19": "Saint Joseph's Day", + "1963-04-11": "Maundy Thursday", + "1963-04-12": "Good Friday", + "1963-05-01": "Labour Day", + "1963-05-23": "Ascension of Jesus", + "1963-06-13": "Corpus Christi", + "1963-06-29": "Saint Peter and Saint Paul", + "1963-07-20": "Independence Day", + "1963-08-07": "Battle of Boyac\u00e1", + "1963-08-15": "Assumption of Mary", + "1963-10-12": "Columbus Day", + "1963-11-01": "All Saints' Day", + "1963-11-11": "Independence of Cartagena", + "1963-12-08": "Immaculate Conception", + "1963-12-25": "Christmas", + "1964-01-01": "New Year's Day", + "1964-01-06": "Epiphany", + "1964-03-19": "Saint Joseph's Day", + "1964-03-26": "Maundy Thursday", + "1964-03-27": "Good Friday", + "1964-05-01": "Labour Day", + "1964-05-07": "Ascension of Jesus", + "1964-05-28": "Corpus Christi", + "1964-06-29": "Saint Peter and Saint Paul", + "1964-07-20": "Independence Day", + "1964-08-07": "Battle of Boyac\u00e1", + "1964-08-15": "Assumption of Mary", + "1964-10-12": "Columbus Day", + "1964-11-01": "All Saints' Day", + "1964-11-11": "Independence of Cartagena", + "1964-12-08": "Immaculate Conception", + "1964-12-25": "Christmas", + "1965-01-01": "New Year's Day", + "1965-01-06": "Epiphany", + "1965-03-19": "Saint Joseph's Day", + "1965-04-15": "Maundy Thursday", + "1965-04-16": "Good Friday", + "1965-05-01": "Labour Day", + "1965-05-27": "Ascension of Jesus", + "1965-06-17": "Corpus Christi", + "1965-06-29": "Saint Peter and Saint Paul", + "1965-07-20": "Independence Day", + "1965-08-07": "Battle of Boyac\u00e1", + "1965-08-15": "Assumption of Mary", + "1965-10-12": "Columbus Day", + "1965-11-01": "All Saints' Day", + "1965-11-11": "Independence of Cartagena", + "1965-12-08": "Immaculate Conception", + "1965-12-25": "Christmas", + "1966-01-01": "New Year's Day", + "1966-01-06": "Epiphany", + "1966-03-19": "Saint Joseph's Day", + "1966-04-07": "Maundy Thursday", + "1966-04-08": "Good Friday", + "1966-05-01": "Labour Day", + "1966-05-19": "Ascension of Jesus", + "1966-06-09": "Corpus Christi", + "1966-06-29": "Saint Peter and Saint Paul", + "1966-07-20": "Independence Day", + "1966-08-07": "Battle of Boyac\u00e1", + "1966-08-15": "Assumption of Mary", + "1966-10-12": "Columbus Day", + "1966-11-01": "All Saints' Day", + "1966-11-11": "Independence of Cartagena", + "1966-12-08": "Immaculate Conception", + "1966-12-25": "Christmas", + "1967-01-01": "New Year's Day", + "1967-01-06": "Epiphany", + "1967-03-19": "Saint Joseph's Day", + "1967-03-23": "Maundy Thursday", + "1967-03-24": "Good Friday", + "1967-05-01": "Labour Day", + "1967-05-04": "Ascension of Jesus", + "1967-05-25": "Corpus Christi", + "1967-06-29": "Saint Peter and Saint Paul", + "1967-07-20": "Independence Day", + "1967-08-07": "Battle of Boyac\u00e1", + "1967-08-15": "Assumption of Mary", + "1967-10-12": "Columbus Day", + "1967-11-01": "All Saints' Day", + "1967-11-11": "Independence of Cartagena", + "1967-12-08": "Immaculate Conception", + "1967-12-25": "Christmas", + "1968-01-01": "New Year's Day", + "1968-01-06": "Epiphany", + "1968-03-19": "Saint Joseph's Day", + "1968-04-11": "Maundy Thursday", + "1968-04-12": "Good Friday", + "1968-05-01": "Labour Day", + "1968-05-23": "Ascension of Jesus", + "1968-06-13": "Corpus Christi", + "1968-06-29": "Saint Peter and Saint Paul", + "1968-07-20": "Independence Day", + "1968-08-07": "Battle of Boyac\u00e1", + "1968-08-15": "Assumption of Mary", + "1968-10-12": "Columbus Day", + "1968-11-01": "All Saints' Day", + "1968-11-11": "Independence of Cartagena", + "1968-12-08": "Immaculate Conception", + "1968-12-25": "Christmas", + "1969-01-01": "New Year's Day", + "1969-01-06": "Epiphany", + "1969-03-19": "Saint Joseph's Day", + "1969-04-03": "Maundy Thursday", + "1969-04-04": "Good Friday", + "1969-05-01": "Labour Day", + "1969-05-15": "Ascension of Jesus", + "1969-06-05": "Corpus Christi", + "1969-06-29": "Saint Peter and Saint Paul", + "1969-07-20": "Independence Day", + "1969-08-07": "Battle of Boyac\u00e1", + "1969-08-15": "Assumption of Mary", + "1969-10-12": "Columbus Day", + "1969-11-01": "All Saints' Day", + "1969-11-11": "Independence of Cartagena", + "1969-12-08": "Immaculate Conception", + "1969-12-25": "Christmas", + "1970-01-01": "New Year's Day", + "1970-01-06": "Epiphany", + "1970-03-19": "Saint Joseph's Day", + "1970-03-26": "Maundy Thursday", + "1970-03-27": "Good Friday", + "1970-05-01": "Labour Day", + "1970-05-07": "Ascension of Jesus", + "1970-05-28": "Corpus Christi", + "1970-06-29": "Saint Peter and Saint Paul", + "1970-07-20": "Independence Day", + "1970-08-07": "Battle of Boyac\u00e1", + "1970-08-15": "Assumption of Mary", + "1970-10-12": "Columbus Day", + "1970-11-01": "All Saints' Day", + "1970-11-11": "Independence of Cartagena", + "1970-12-08": "Immaculate Conception", + "1970-12-25": "Christmas", + "1971-01-01": "New Year's Day", + "1971-01-06": "Epiphany", + "1971-03-19": "Saint Joseph's Day", + "1971-04-08": "Maundy Thursday", + "1971-04-09": "Good Friday", + "1971-05-01": "Labour Day", + "1971-05-20": "Ascension of Jesus", + "1971-06-10": "Corpus Christi", + "1971-06-29": "Saint Peter and Saint Paul", + "1971-07-20": "Independence Day", + "1971-08-07": "Battle of Boyac\u00e1", + "1971-08-15": "Assumption of Mary", + "1971-10-12": "Columbus Day", + "1971-11-01": "All Saints' Day", + "1971-11-11": "Independence of Cartagena", + "1971-12-08": "Immaculate Conception", + "1971-12-25": "Christmas", + "1972-01-01": "New Year's Day", + "1972-01-06": "Epiphany", + "1972-03-19": "Saint Joseph's Day", + "1972-03-30": "Maundy Thursday", + "1972-03-31": "Good Friday", + "1972-05-01": "Labour Day", + "1972-05-11": "Ascension of Jesus", + "1972-06-01": "Corpus Christi", + "1972-06-29": "Saint Peter and Saint Paul", + "1972-07-20": "Independence Day", + "1972-08-07": "Battle of Boyac\u00e1", + "1972-08-15": "Assumption of Mary", + "1972-10-12": "Columbus Day", + "1972-11-01": "All Saints' Day", + "1972-11-11": "Independence of Cartagena", + "1972-12-08": "Immaculate Conception", + "1972-12-25": "Christmas", + "1973-01-01": "New Year's Day", + "1973-01-06": "Epiphany", + "1973-03-19": "Saint Joseph's Day", + "1973-04-19": "Maundy Thursday", + "1973-04-20": "Good Friday", + "1973-05-01": "Labour Day", + "1973-05-31": "Ascension of Jesus", + "1973-06-21": "Corpus Christi", + "1973-06-29": "Saint Peter and Saint Paul", + "1973-07-20": "Independence Day", + "1973-08-07": "Battle of Boyac\u00e1", + "1973-08-15": "Assumption of Mary", + "1973-10-12": "Columbus Day", + "1973-11-01": "All Saints' Day", + "1973-11-11": "Independence of Cartagena", + "1973-12-08": "Immaculate Conception", + "1973-12-25": "Christmas", + "1974-01-01": "New Year's Day", + "1974-01-06": "Epiphany", + "1974-03-19": "Saint Joseph's Day", + "1974-04-11": "Maundy Thursday", + "1974-04-12": "Good Friday", + "1974-05-01": "Labour Day", + "1974-05-23": "Ascension of Jesus", + "1974-06-13": "Corpus Christi", + "1974-06-29": "Saint Peter and Saint Paul", + "1974-07-20": "Independence Day", + "1974-08-07": "Battle of Boyac\u00e1", + "1974-08-15": "Assumption of Mary", + "1974-10-12": "Columbus Day", + "1974-11-01": "All Saints' Day", + "1974-11-11": "Independence of Cartagena", + "1974-12-08": "Immaculate Conception", + "1974-12-25": "Christmas", + "1975-01-01": "New Year's Day", + "1975-01-06": "Epiphany", + "1975-03-19": "Saint Joseph's Day", + "1975-03-27": "Maundy Thursday", + "1975-03-28": "Good Friday", + "1975-05-01": "Labour Day", + "1975-05-08": "Ascension of Jesus", + "1975-05-29": "Corpus Christi", + "1975-06-29": "Saint Peter and Saint Paul", + "1975-07-20": "Independence Day", + "1975-08-07": "Battle of Boyac\u00e1", + "1975-08-15": "Assumption of Mary", + "1975-10-12": "Columbus Day", + "1975-11-01": "All Saints' Day", + "1975-11-11": "Independence of Cartagena", + "1975-12-08": "Immaculate Conception", + "1975-12-25": "Christmas", + "1976-01-01": "New Year's Day", + "1976-01-06": "Epiphany", + "1976-03-19": "Saint Joseph's Day", + "1976-04-15": "Maundy Thursday", + "1976-04-16": "Good Friday", + "1976-05-01": "Labour Day", + "1976-05-27": "Ascension of Jesus", + "1976-06-17": "Corpus Christi", + "1976-06-29": "Saint Peter and Saint Paul", + "1976-07-20": "Independence Day", + "1976-08-07": "Battle of Boyac\u00e1", + "1976-08-15": "Assumption of Mary", + "1976-10-12": "Columbus Day", + "1976-11-01": "All Saints' Day", + "1976-11-11": "Independence of Cartagena", + "1976-12-08": "Immaculate Conception", + "1976-12-25": "Christmas", + "1977-01-01": "New Year's Day", + "1977-01-06": "Epiphany", + "1977-03-19": "Saint Joseph's Day", + "1977-04-07": "Maundy Thursday", + "1977-04-08": "Good Friday", + "1977-05-01": "Labour Day", + "1977-05-19": "Ascension of Jesus", + "1977-06-09": "Corpus Christi", + "1977-06-29": "Saint Peter and Saint Paul", + "1977-07-20": "Independence Day", + "1977-08-07": "Battle of Boyac\u00e1", + "1977-08-15": "Assumption of Mary", + "1977-10-12": "Columbus Day", + "1977-11-01": "All Saints' Day", + "1977-11-11": "Independence of Cartagena", + "1977-12-08": "Immaculate Conception", + "1977-12-25": "Christmas", + "1978-01-01": "New Year's Day", + "1978-01-06": "Epiphany", + "1978-03-19": "Saint Joseph's Day", + "1978-03-23": "Maundy Thursday", + "1978-03-24": "Good Friday", + "1978-05-01": "Labour Day", + "1978-05-04": "Ascension of Jesus", + "1978-05-25": "Corpus Christi", + "1978-06-29": "Saint Peter and Saint Paul", + "1978-07-20": "Independence Day", + "1978-08-07": "Battle of Boyac\u00e1", + "1978-08-15": "Assumption of Mary", + "1978-10-12": "Columbus Day", + "1978-11-01": "All Saints' Day", + "1978-11-11": "Independence of Cartagena", + "1978-12-08": "Immaculate Conception", + "1978-12-25": "Christmas", + "1979-01-01": "New Year's Day", + "1979-01-06": "Epiphany", + "1979-03-19": "Saint Joseph's Day", + "1979-04-12": "Maundy Thursday", + "1979-04-13": "Good Friday", + "1979-05-01": "Labour Day", + "1979-05-24": "Ascension of Jesus", + "1979-06-14": "Corpus Christi", + "1979-06-29": "Saint Peter and Saint Paul", + "1979-07-20": "Independence Day", + "1979-08-07": "Battle of Boyac\u00e1", + "1979-08-15": "Assumption of Mary", + "1979-10-12": "Columbus Day", + "1979-11-01": "All Saints' Day", + "1979-11-11": "Independence of Cartagena", + "1979-12-08": "Immaculate Conception", + "1979-12-25": "Christmas", + "1980-01-01": "New Year's Day", + "1980-01-06": "Epiphany", + "1980-03-19": "Saint Joseph's Day", + "1980-04-03": "Maundy Thursday", + "1980-04-04": "Good Friday", + "1980-05-01": "Labour Day", + "1980-05-15": "Ascension of Jesus", + "1980-06-05": "Corpus Christi", + "1980-06-29": "Saint Peter and Saint Paul", + "1980-07-20": "Independence Day", + "1980-08-07": "Battle of Boyac\u00e1", + "1980-08-15": "Assumption of Mary", + "1980-10-12": "Columbus Day", + "1980-11-01": "All Saints' Day", + "1980-11-11": "Independence of Cartagena", + "1980-12-08": "Immaculate Conception", + "1980-12-25": "Christmas", + "1981-01-01": "New Year's Day", + "1981-01-06": "Epiphany", + "1981-03-19": "Saint Joseph's Day", + "1981-04-16": "Maundy Thursday", + "1981-04-17": "Good Friday", + "1981-05-01": "Labour Day", + "1981-05-28": "Ascension of Jesus", + "1981-06-18": "Corpus Christi", + "1981-06-29": "Saint Peter and Saint Paul", + "1981-07-20": "Independence Day", + "1981-08-07": "Battle of Boyac\u00e1", + "1981-08-15": "Assumption of Mary", + "1981-10-12": "Columbus Day", + "1981-11-01": "All Saints' Day", + "1981-11-11": "Independence of Cartagena", + "1981-12-08": "Immaculate Conception", + "1981-12-25": "Christmas", + "1982-01-01": "New Year's Day", + "1982-01-06": "Epiphany", + "1982-03-19": "Saint Joseph's Day", + "1982-04-08": "Maundy Thursday", + "1982-04-09": "Good Friday", + "1982-05-01": "Labour Day", + "1982-05-20": "Ascension of Jesus", + "1982-06-10": "Corpus Christi", + "1982-06-29": "Saint Peter and Saint Paul", + "1982-07-20": "Independence Day", + "1982-08-07": "Battle of Boyac\u00e1", + "1982-08-15": "Assumption of Mary", + "1982-10-12": "Columbus Day", + "1982-11-01": "All Saints' Day", + "1982-11-11": "Independence of Cartagena", + "1982-12-08": "Immaculate Conception", + "1982-12-25": "Christmas", + "1983-01-01": "New Year's Day", + "1983-01-06": "Epiphany", + "1983-03-19": "Saint Joseph's Day", + "1983-03-31": "Maundy Thursday", + "1983-04-01": "Good Friday", + "1983-05-01": "Labour Day", + "1983-05-12": "Ascension of Jesus", + "1983-06-02": "Corpus Christi", + "1983-06-29": "Saint Peter and Saint Paul", + "1983-07-20": "Independence Day", + "1983-08-07": "Battle of Boyac\u00e1", + "1983-08-15": "Assumption of Mary", + "1983-10-12": "Columbus Day", + "1983-11-01": "All Saints' Day", + "1983-11-11": "Independence of Cartagena", + "1983-12-08": "Immaculate Conception", + "1983-12-25": "Christmas", + "1984-01-01": "New Year's Day", + "1984-01-09": "Epiphany (Observed)", + "1984-03-19": "Saint Joseph's Day", + "1984-04-19": "Maundy Thursday", + "1984-04-20": "Good Friday", + "1984-05-01": "Labour Day", + "1984-06-04": "Ascension of Jesus (Observed)", + "1984-06-25": "Corpus Christi (Observed)", + "1984-07-02": "Sacred Heart (Observed); Saint Peter and Saint Paul (Observed)", + "1984-07-20": "Independence Day", + "1984-08-07": "Battle of Boyac\u00e1", + "1984-08-20": "Assumption of Mary (Observed)", + "1984-10-15": "Columbus Day (Observed)", + "1984-11-05": "All Saints' Day (Observed)", + "1984-11-12": "Independence of Cartagena (Observed)", + "1984-12-08": "Immaculate Conception", + "1984-12-25": "Christmas", + "1985-01-01": "New Year's Day", + "1985-01-07": "Epiphany (Observed)", + "1985-03-25": "Saint Joseph's Day (Observed)", + "1985-04-04": "Maundy Thursday", + "1985-04-05": "Good Friday", + "1985-05-01": "Labour Day", + "1985-05-20": "Ascension of Jesus (Observed)", + "1985-06-10": "Corpus Christi (Observed)", + "1985-06-17": "Sacred Heart (Observed)", + "1985-07-01": "Saint Peter and Saint Paul (Observed)", + "1985-07-20": "Independence Day", + "1985-08-07": "Battle of Boyac\u00e1", + "1985-08-19": "Assumption of Mary (Observed)", + "1985-10-14": "Columbus Day (Observed)", + "1985-11-04": "All Saints' Day (Observed)", + "1985-11-11": "Independence of Cartagena", + "1985-12-08": "Immaculate Conception", + "1985-12-25": "Christmas", + "1986-01-01": "New Year's Day", + "1986-01-06": "Epiphany", + "1986-03-24": "Saint Joseph's Day (Observed)", + "1986-03-27": "Maundy Thursday", + "1986-03-28": "Good Friday", + "1986-05-01": "Labour Day", + "1986-05-12": "Ascension of Jesus (Observed)", + "1986-06-02": "Corpus Christi (Observed)", + "1986-06-09": "Sacred Heart (Observed)", + "1986-06-30": "Saint Peter and Saint Paul (Observed)", + "1986-07-20": "Independence Day", + "1986-08-07": "Battle of Boyac\u00e1", + "1986-08-18": "Assumption of Mary (Observed)", + "1986-10-13": "Columbus Day (Observed)", + "1986-11-03": "All Saints' Day (Observed)", + "1986-11-17": "Independence of Cartagena (Observed)", + "1986-12-08": "Immaculate Conception", + "1986-12-25": "Christmas", + "1987-01-01": "New Year's Day", + "1987-01-12": "Epiphany (Observed)", + "1987-03-23": "Saint Joseph's Day (Observed)", + "1987-04-16": "Maundy Thursday", + "1987-04-17": "Good Friday", + "1987-05-01": "Labour Day", + "1987-06-01": "Ascension of Jesus (Observed)", + "1987-06-22": "Corpus Christi (Observed)", + "1987-06-29": "Sacred Heart (Observed); Saint Peter and Saint Paul", + "1987-07-20": "Independence Day", + "1987-08-07": "Battle of Boyac\u00e1", + "1987-08-17": "Assumption of Mary (Observed)", + "1987-10-12": "Columbus Day", + "1987-11-02": "All Saints' Day (Observed)", + "1987-11-16": "Independence of Cartagena (Observed)", + "1987-12-08": "Immaculate Conception", + "1987-12-25": "Christmas", + "1988-01-01": "New Year's Day", + "1988-01-11": "Epiphany (Observed)", + "1988-03-21": "Saint Joseph's Day (Observed)", + "1988-03-31": "Maundy Thursday", + "1988-04-01": "Good Friday", + "1988-05-01": "Labour Day", + "1988-05-16": "Ascension of Jesus (Observed)", + "1988-06-06": "Corpus Christi (Observed)", + "1988-06-13": "Sacred Heart (Observed)", + "1988-07-04": "Saint Peter and Saint Paul (Observed)", + "1988-07-20": "Independence Day", + "1988-08-07": "Battle of Boyac\u00e1", + "1988-08-15": "Assumption of Mary", + "1988-10-17": "Columbus Day (Observed)", + "1988-11-07": "All Saints' Day (Observed)", + "1988-11-14": "Independence of Cartagena (Observed)", + "1988-12-08": "Immaculate Conception", + "1988-12-25": "Christmas", + "1989-01-01": "New Year's Day", + "1989-01-09": "Epiphany (Observed)", + "1989-03-20": "Saint Joseph's Day (Observed)", + "1989-03-23": "Maundy Thursday", + "1989-03-24": "Good Friday", + "1989-05-01": "Labour Day", + "1989-05-08": "Ascension of Jesus (Observed)", + "1989-05-29": "Corpus Christi (Observed)", + "1989-06-05": "Sacred Heart (Observed)", + "1989-07-03": "Saint Peter and Saint Paul (Observed)", + "1989-07-20": "Independence Day", + "1989-08-07": "Battle of Boyac\u00e1", + "1989-08-21": "Assumption of Mary (Observed)", + "1989-10-16": "Columbus Day (Observed)", + "1989-11-06": "All Saints' Day (Observed)", + "1989-11-13": "Independence of Cartagena (Observed)", + "1989-12-08": "Immaculate Conception", + "1989-12-25": "Christmas", + "1990-01-01": "New Year's Day", + "1990-01-08": "Epiphany (Observed)", + "1990-03-19": "Saint Joseph's Day", + "1990-04-12": "Maundy Thursday", + "1990-04-13": "Good Friday", + "1990-05-01": "Labour Day", + "1990-05-28": "Ascension of Jesus (Observed)", + "1990-06-18": "Corpus Christi (Observed)", + "1990-06-25": "Sacred Heart (Observed)", + "1990-07-02": "Saint Peter and Saint Paul (Observed)", + "1990-07-20": "Independence Day", + "1990-08-07": "Battle of Boyac\u00e1", + "1990-08-20": "Assumption of Mary (Observed)", + "1990-10-15": "Columbus Day (Observed)", + "1990-11-05": "All Saints' Day (Observed)", + "1990-11-12": "Independence of Cartagena (Observed)", + "1990-12-08": "Immaculate Conception", + "1990-12-25": "Christmas", + "1991-01-01": "New Year's Day", + "1991-01-07": "Epiphany (Observed)", + "1991-03-25": "Saint Joseph's Day (Observed)", + "1991-03-28": "Maundy Thursday", + "1991-03-29": "Good Friday", + "1991-05-01": "Labour Day", + "1991-05-13": "Ascension of Jesus (Observed)", + "1991-06-03": "Corpus Christi (Observed)", + "1991-06-10": "Sacred Heart (Observed)", + "1991-07-01": "Saint Peter and Saint Paul (Observed)", + "1991-07-20": "Independence Day", + "1991-08-07": "Battle of Boyac\u00e1", + "1991-08-19": "Assumption of Mary (Observed)", + "1991-10-14": "Columbus Day (Observed)", + "1991-11-04": "All Saints' Day (Observed)", + "1991-11-11": "Independence of Cartagena", + "1991-12-08": "Immaculate Conception", + "1991-12-25": "Christmas", + "1992-01-01": "New Year's Day", + "1992-01-06": "Epiphany", + "1992-03-23": "Saint Joseph's Day (Observed)", + "1992-04-16": "Maundy Thursday", + "1992-04-17": "Good Friday", + "1992-05-01": "Labour Day", + "1992-06-01": "Ascension of Jesus (Observed)", + "1992-06-22": "Corpus Christi (Observed)", + "1992-06-29": "Sacred Heart (Observed); Saint Peter and Saint Paul", + "1992-07-20": "Independence Day", + "1992-08-07": "Battle of Boyac\u00e1", + "1992-08-17": "Assumption of Mary (Observed)", + "1992-10-12": "Columbus Day", + "1992-11-02": "All Saints' Day (Observed)", + "1992-11-16": "Independence of Cartagena (Observed)", + "1992-12-08": "Immaculate Conception", + "1992-12-25": "Christmas", + "1993-01-01": "New Year's Day", + "1993-01-11": "Epiphany (Observed)", + "1993-03-22": "Saint Joseph's Day (Observed)", + "1993-04-08": "Maundy Thursday", + "1993-04-09": "Good Friday", + "1993-05-01": "Labour Day", + "1993-05-24": "Ascension of Jesus (Observed)", + "1993-06-14": "Corpus Christi (Observed)", + "1993-06-21": "Sacred Heart (Observed)", + "1993-07-05": "Saint Peter and Saint Paul (Observed)", + "1993-07-20": "Independence Day", + "1993-08-07": "Battle of Boyac\u00e1", + "1993-08-16": "Assumption of Mary (Observed)", + "1993-10-18": "Columbus Day (Observed)", + "1993-11-01": "All Saints' Day", + "1993-11-15": "Independence of Cartagena (Observed)", + "1993-12-08": "Immaculate Conception", + "1993-12-25": "Christmas", + "1994-01-01": "New Year's Day", + "1994-01-10": "Epiphany (Observed)", + "1994-03-21": "Saint Joseph's Day (Observed)", + "1994-03-31": "Maundy Thursday", + "1994-04-01": "Good Friday", + "1994-05-01": "Labour Day", + "1994-05-16": "Ascension of Jesus (Observed)", + "1994-06-06": "Corpus Christi (Observed)", + "1994-06-13": "Sacred Heart (Observed)", + "1994-07-04": "Saint Peter and Saint Paul (Observed)", + "1994-07-20": "Independence Day", + "1994-08-07": "Battle of Boyac\u00e1", + "1994-08-15": "Assumption of Mary", + "1994-10-17": "Columbus Day (Observed)", + "1994-11-07": "All Saints' Day (Observed)", + "1994-11-14": "Independence of Cartagena (Observed)", + "1994-12-08": "Immaculate Conception", + "1994-12-25": "Christmas", + "1995-01-01": "New Year's Day", + "1995-01-09": "Epiphany (Observed)", + "1995-03-20": "Saint Joseph's Day (Observed)", + "1995-04-13": "Maundy Thursday", + "1995-04-14": "Good Friday", + "1995-05-01": "Labour Day", + "1995-05-29": "Ascension of Jesus (Observed)", + "1995-06-19": "Corpus Christi (Observed)", + "1995-06-26": "Sacred Heart (Observed)", + "1995-07-03": "Saint Peter and Saint Paul (Observed)", + "1995-07-20": "Independence Day", + "1995-08-07": "Battle of Boyac\u00e1", + "1995-08-21": "Assumption of Mary (Observed)", + "1995-10-16": "Columbus Day (Observed)", + "1995-11-06": "All Saints' Day (Observed)", + "1995-11-13": "Independence of Cartagena (Observed)", + "1995-12-08": "Immaculate Conception", + "1995-12-25": "Christmas", + "1996-01-01": "New Year's Day", + "1996-01-08": "Epiphany (Observed)", + "1996-03-25": "Saint Joseph's Day (Observed)", + "1996-04-04": "Maundy Thursday", + "1996-04-05": "Good Friday", + "1996-05-01": "Labour Day", + "1996-05-20": "Ascension of Jesus (Observed)", + "1996-06-10": "Corpus Christi (Observed)", + "1996-06-17": "Sacred Heart (Observed)", + "1996-07-01": "Saint Peter and Saint Paul (Observed)", + "1996-07-20": "Independence Day", + "1996-08-07": "Battle of Boyac\u00e1", + "1996-08-19": "Assumption of Mary (Observed)", + "1996-10-14": "Columbus Day (Observed)", + "1996-11-04": "All Saints' Day (Observed)", + "1996-11-11": "Independence of Cartagena", + "1996-12-08": "Immaculate Conception", + "1996-12-25": "Christmas", + "1997-01-01": "New Year's Day", + "1997-01-06": "Epiphany", + "1997-03-24": "Saint Joseph's Day (Observed)", + "1997-03-27": "Maundy Thursday", + "1997-03-28": "Good Friday", + "1997-05-01": "Labour Day", + "1997-05-12": "Ascension of Jesus (Observed)", + "1997-06-02": "Corpus Christi (Observed)", + "1997-06-09": "Sacred Heart (Observed)", + "1997-06-30": "Saint Peter and Saint Paul (Observed)", + "1997-07-20": "Independence Day", + "1997-08-07": "Battle of Boyac\u00e1", + "1997-08-18": "Assumption of Mary (Observed)", + "1997-10-13": "Columbus Day (Observed)", + "1997-11-03": "All Saints' Day (Observed)", + "1997-11-17": "Independence of Cartagena (Observed)", + "1997-12-08": "Immaculate Conception", + "1997-12-25": "Christmas", + "1998-01-01": "New Year's Day", + "1998-01-12": "Epiphany (Observed)", + "1998-03-23": "Saint Joseph's Day (Observed)", + "1998-04-09": "Maundy Thursday", + "1998-04-10": "Good Friday", + "1998-05-01": "Labour Day", + "1998-05-25": "Ascension of Jesus (Observed)", + "1998-06-15": "Corpus Christi (Observed)", + "1998-06-22": "Sacred Heart (Observed)", + "1998-06-29": "Saint Peter and Saint Paul", + "1998-07-20": "Independence Day", + "1998-08-07": "Battle of Boyac\u00e1", + "1998-08-17": "Assumption of Mary (Observed)", + "1998-10-12": "Columbus Day", + "1998-11-02": "All Saints' Day (Observed)", + "1998-11-16": "Independence of Cartagena (Observed)", + "1998-12-08": "Immaculate Conception", + "1998-12-25": "Christmas", + "1999-01-01": "New Year's Day", + "1999-01-11": "Epiphany (Observed)", + "1999-03-22": "Saint Joseph's Day (Observed)", + "1999-04-01": "Maundy Thursday", + "1999-04-02": "Good Friday", + "1999-05-01": "Labour Day", + "1999-05-17": "Ascension of Jesus (Observed)", + "1999-06-07": "Corpus Christi (Observed)", + "1999-06-14": "Sacred Heart (Observed)", + "1999-07-05": "Saint Peter and Saint Paul (Observed)", + "1999-07-20": "Independence Day", + "1999-08-07": "Battle of Boyac\u00e1", + "1999-08-16": "Assumption of Mary (Observed)", + "1999-10-18": "Columbus Day (Observed)", + "1999-11-01": "All Saints' Day", + "1999-11-15": "Independence of Cartagena (Observed)", + "1999-12-08": "Immaculate Conception", + "1999-12-25": "Christmas", + "2000-01-01": "New Year's Day", + "2000-01-10": "Epiphany (Observed)", + "2000-03-20": "Saint Joseph's Day (Observed)", + "2000-04-20": "Maundy Thursday", + "2000-04-21": "Good Friday", + "2000-05-01": "Labour Day", + "2000-06-05": "Ascension of Jesus (Observed)", + "2000-06-26": "Corpus Christi (Observed)", + "2000-07-03": "Sacred Heart (Observed); Saint Peter and Saint Paul (Observed)", + "2000-07-20": "Independence Day", + "2000-08-07": "Battle of Boyac\u00e1", + "2000-08-21": "Assumption of Mary (Observed)", + "2000-10-16": "Columbus Day (Observed)", + "2000-11-06": "All Saints' Day (Observed)", + "2000-11-13": "Independence of Cartagena (Observed)", + "2000-12-08": "Immaculate Conception", + "2000-12-25": "Christmas", + "2001-01-01": "New Year's Day", + "2001-01-08": "Epiphany (Observed)", + "2001-03-19": "Saint Joseph's Day", + "2001-04-12": "Maundy Thursday", + "2001-04-13": "Good Friday", + "2001-05-01": "Labour Day", + "2001-05-28": "Ascension of Jesus (Observed)", + "2001-06-18": "Corpus Christi (Observed)", + "2001-06-25": "Sacred Heart (Observed)", + "2001-07-02": "Saint Peter and Saint Paul (Observed)", + "2001-07-20": "Independence Day", + "2001-08-07": "Battle of Boyac\u00e1", + "2001-08-20": "Assumption of Mary (Observed)", + "2001-10-15": "Columbus Day (Observed)", + "2001-11-05": "All Saints' Day (Observed)", + "2001-11-12": "Independence of Cartagena (Observed)", + "2001-12-08": "Immaculate Conception", + "2001-12-25": "Christmas", + "2002-01-01": "New Year's Day", + "2002-01-07": "Epiphany (Observed)", + "2002-03-25": "Saint Joseph's Day (Observed)", + "2002-03-28": "Maundy Thursday", + "2002-03-29": "Good Friday", + "2002-05-01": "Labour Day", + "2002-05-13": "Ascension of Jesus (Observed)", + "2002-06-03": "Corpus Christi (Observed)", + "2002-06-10": "Sacred Heart (Observed)", + "2002-07-01": "Saint Peter and Saint Paul (Observed)", + "2002-07-20": "Independence Day", + "2002-08-07": "Battle of Boyac\u00e1", + "2002-08-19": "Assumption of Mary (Observed)", + "2002-10-14": "Columbus Day (Observed)", + "2002-11-04": "All Saints' Day (Observed)", + "2002-11-11": "Independence of Cartagena", + "2002-12-08": "Immaculate Conception", + "2002-12-25": "Christmas", + "2003-01-01": "New Year's Day", + "2003-01-06": "Epiphany", + "2003-03-24": "Saint Joseph's Day (Observed)", + "2003-04-17": "Maundy Thursday", + "2003-04-18": "Good Friday", + "2003-05-01": "Labour Day", + "2003-06-02": "Ascension of Jesus (Observed)", + "2003-06-23": "Corpus Christi (Observed)", + "2003-06-30": "Sacred Heart (Observed); Saint Peter and Saint Paul (Observed)", + "2003-07-20": "Independence Day", + "2003-08-07": "Battle of Boyac\u00e1", + "2003-08-18": "Assumption of Mary (Observed)", + "2003-10-13": "Columbus Day (Observed)", + "2003-11-03": "All Saints' Day (Observed)", + "2003-11-17": "Independence of Cartagena (Observed)", + "2003-12-08": "Immaculate Conception", + "2003-12-25": "Christmas", + "2004-01-01": "New Year's Day", + "2004-01-12": "Epiphany (Observed)", + "2004-03-22": "Saint Joseph's Day (Observed)", + "2004-04-08": "Maundy Thursday", + "2004-04-09": "Good Friday", + "2004-05-01": "Labour Day", + "2004-05-24": "Ascension of Jesus (Observed)", + "2004-06-14": "Corpus Christi (Observed)", + "2004-06-21": "Sacred Heart (Observed)", + "2004-07-05": "Saint Peter and Saint Paul (Observed)", + "2004-07-20": "Independence Day", + "2004-08-07": "Battle of Boyac\u00e1", + "2004-08-16": "Assumption of Mary (Observed)", + "2004-10-18": "Columbus Day (Observed)", + "2004-11-01": "All Saints' Day", + "2004-11-15": "Independence of Cartagena (Observed)", + "2004-12-08": "Immaculate Conception", + "2004-12-25": "Christmas", + "2005-01-01": "New Year's Day", + "2005-01-10": "Epiphany (Observed)", + "2005-03-21": "Saint Joseph's Day (Observed)", + "2005-03-24": "Maundy Thursday", + "2005-03-25": "Good Friday", + "2005-05-01": "Labour Day", + "2005-05-09": "Ascension of Jesus (Observed)", + "2005-05-30": "Corpus Christi (Observed)", + "2005-06-06": "Sacred Heart (Observed)", + "2005-07-04": "Saint Peter and Saint Paul (Observed)", + "2005-07-20": "Independence Day", + "2005-08-07": "Battle of Boyac\u00e1", + "2005-08-15": "Assumption of Mary", + "2005-10-17": "Columbus Day (Observed)", + "2005-11-07": "All Saints' Day (Observed)", + "2005-11-14": "Independence of Cartagena (Observed)", + "2005-12-08": "Immaculate Conception", + "2005-12-25": "Christmas", + "2006-01-01": "New Year's Day", + "2006-01-09": "Epiphany (Observed)", + "2006-03-20": "Saint Joseph's Day (Observed)", + "2006-04-13": "Maundy Thursday", + "2006-04-14": "Good Friday", + "2006-05-01": "Labour Day", + "2006-05-29": "Ascension of Jesus (Observed)", + "2006-06-19": "Corpus Christi (Observed)", + "2006-06-26": "Sacred Heart (Observed)", + "2006-07-03": "Saint Peter and Saint Paul (Observed)", + "2006-07-20": "Independence Day", + "2006-08-07": "Battle of Boyac\u00e1", + "2006-08-21": "Assumption of Mary (Observed)", + "2006-10-16": "Columbus Day (Observed)", + "2006-11-06": "All Saints' Day (Observed)", + "2006-11-13": "Independence of Cartagena (Observed)", + "2006-12-08": "Immaculate Conception", + "2006-12-25": "Christmas", + "2007-01-01": "New Year's Day", + "2007-01-08": "Epiphany (Observed)", + "2007-03-19": "Saint Joseph's Day", + "2007-04-05": "Maundy Thursday", + "2007-04-06": "Good Friday", + "2007-05-01": "Labour Day", + "2007-05-21": "Ascension of Jesus (Observed)", + "2007-06-11": "Corpus Christi (Observed)", + "2007-06-18": "Sacred Heart (Observed)", + "2007-07-02": "Saint Peter and Saint Paul (Observed)", + "2007-07-20": "Independence Day", + "2007-08-07": "Battle of Boyac\u00e1", + "2007-08-20": "Assumption of Mary (Observed)", + "2007-10-15": "Columbus Day (Observed)", + "2007-11-05": "All Saints' Day (Observed)", + "2007-11-12": "Independence of Cartagena (Observed)", + "2007-12-08": "Immaculate Conception", + "2007-12-25": "Christmas", + "2008-01-01": "New Year's Day", + "2008-01-07": "Epiphany (Observed)", + "2008-03-20": "Maundy Thursday", + "2008-03-21": "Good Friday", + "2008-03-24": "Saint Joseph's Day (Observed)", + "2008-05-01": "Labour Day", + "2008-05-05": "Ascension of Jesus (Observed)", + "2008-05-26": "Corpus Christi (Observed)", + "2008-06-02": "Sacred Heart (Observed)", + "2008-06-30": "Saint Peter and Saint Paul (Observed)", + "2008-07-20": "Independence Day", + "2008-08-07": "Battle of Boyac\u00e1", + "2008-08-18": "Assumption of Mary (Observed)", + "2008-10-13": "Columbus Day (Observed)", + "2008-11-03": "All Saints' Day (Observed)", + "2008-11-17": "Independence of Cartagena (Observed)", + "2008-12-08": "Immaculate Conception", + "2008-12-25": "Christmas", + "2009-01-01": "New Year's Day", + "2009-01-12": "Epiphany (Observed)", + "2009-03-23": "Saint Joseph's Day (Observed)", + "2009-04-09": "Maundy Thursday", + "2009-04-10": "Good Friday", + "2009-05-01": "Labour Day", + "2009-05-25": "Ascension of Jesus (Observed)", + "2009-06-15": "Corpus Christi (Observed)", + "2009-06-22": "Sacred Heart (Observed)", + "2009-06-29": "Saint Peter and Saint Paul", + "2009-07-20": "Independence Day", + "2009-08-07": "Battle of Boyac\u00e1", + "2009-08-17": "Assumption of Mary (Observed)", + "2009-10-12": "Columbus Day", + "2009-11-02": "All Saints' Day (Observed)", + "2009-11-16": "Independence of Cartagena (Observed)", + "2009-12-08": "Immaculate Conception", + "2009-12-25": "Christmas", + "2010-01-01": "New Year's Day", + "2010-01-11": "Epiphany (Observed)", + "2010-03-22": "Saint Joseph's Day (Observed)", + "2010-04-01": "Maundy Thursday", + "2010-04-02": "Good Friday", + "2010-05-01": "Labour Day", + "2010-05-17": "Ascension of Jesus (Observed)", + "2010-06-07": "Corpus Christi (Observed)", + "2010-06-14": "Sacred Heart (Observed)", + "2010-07-05": "Saint Peter and Saint Paul (Observed)", + "2010-07-20": "Independence Day", + "2010-08-07": "Battle of Boyac\u00e1", + "2010-08-16": "Assumption of Mary (Observed)", + "2010-10-18": "Columbus Day (Observed)", + "2010-11-01": "All Saints' Day", + "2010-11-15": "Independence of Cartagena (Observed)", + "2010-12-08": "Immaculate Conception", + "2010-12-25": "Christmas", + "2011-01-01": "New Year's Day", + "2011-01-10": "Epiphany (Observed)", + "2011-03-21": "Saint Joseph's Day (Observed)", + "2011-04-21": "Maundy Thursday", + "2011-04-22": "Good Friday", + "2011-05-01": "Labour Day", + "2011-06-06": "Ascension of Jesus (Observed)", + "2011-06-27": "Corpus Christi (Observed)", + "2011-07-04": "Sacred Heart (Observed); Saint Peter and Saint Paul (Observed)", + "2011-07-20": "Independence Day", + "2011-08-07": "Battle of Boyac\u00e1", + "2011-08-15": "Assumption of Mary", + "2011-10-17": "Columbus Day (Observed)", + "2011-11-07": "All Saints' Day (Observed)", + "2011-11-14": "Independence of Cartagena (Observed)", + "2011-12-08": "Immaculate Conception", + "2011-12-25": "Christmas", + "2012-01-01": "New Year's Day", + "2012-01-09": "Epiphany (Observed)", + "2012-03-19": "Saint Joseph's Day", + "2012-04-05": "Maundy Thursday", + "2012-04-06": "Good Friday", + "2012-05-01": "Labour Day", + "2012-05-21": "Ascension of Jesus (Observed)", + "2012-06-11": "Corpus Christi (Observed)", + "2012-06-18": "Sacred Heart (Observed)", + "2012-07-02": "Saint Peter and Saint Paul (Observed)", + "2012-07-20": "Independence Day", + "2012-08-07": "Battle of Boyac\u00e1", + "2012-08-20": "Assumption of Mary (Observed)", + "2012-10-15": "Columbus Day (Observed)", + "2012-11-05": "All Saints' Day (Observed)", + "2012-11-12": "Independence of Cartagena (Observed)", + "2012-12-08": "Immaculate Conception", + "2012-12-25": "Christmas", + "2013-01-01": "New Year's Day", + "2013-01-07": "Epiphany (Observed)", + "2013-03-25": "Saint Joseph's Day (Observed)", + "2013-03-28": "Maundy Thursday", + "2013-03-29": "Good Friday", + "2013-05-01": "Labour Day", + "2013-05-13": "Ascension of Jesus (Observed)", + "2013-06-03": "Corpus Christi (Observed)", + "2013-06-10": "Sacred Heart (Observed)", + "2013-07-01": "Saint Peter and Saint Paul (Observed)", + "2013-07-20": "Independence Day", + "2013-08-07": "Battle of Boyac\u00e1", + "2013-08-19": "Assumption of Mary (Observed)", + "2013-10-14": "Columbus Day (Observed)", + "2013-11-04": "All Saints' Day (Observed)", + "2013-11-11": "Independence of Cartagena", + "2013-12-08": "Immaculate Conception", + "2013-12-25": "Christmas", + "2014-01-01": "New Year's Day", + "2014-01-06": "Epiphany", + "2014-03-24": "Saint Joseph's Day (Observed)", + "2014-04-17": "Maundy Thursday", + "2014-04-18": "Good Friday", + "2014-05-01": "Labour Day", + "2014-06-02": "Ascension of Jesus (Observed)", + "2014-06-23": "Corpus Christi (Observed)", + "2014-06-30": "Sacred Heart (Observed); Saint Peter and Saint Paul (Observed)", + "2014-07-20": "Independence Day", + "2014-08-07": "Battle of Boyac\u00e1", + "2014-08-18": "Assumption of Mary (Observed)", + "2014-10-13": "Columbus Day (Observed)", + "2014-11-03": "All Saints' Day (Observed)", + "2014-11-17": "Independence of Cartagena (Observed)", + "2014-12-08": "Immaculate Conception", + "2014-12-25": "Christmas", + "2015-01-01": "New Year's Day", + "2015-01-12": "Epiphany (Observed)", + "2015-03-23": "Saint Joseph's Day (Observed)", + "2015-04-02": "Maundy Thursday", + "2015-04-03": "Good Friday", + "2015-05-01": "Labour Day", + "2015-05-18": "Ascension of Jesus (Observed)", + "2015-06-08": "Corpus Christi (Observed)", + "2015-06-15": "Sacred Heart (Observed)", + "2015-06-29": "Saint Peter and Saint Paul", + "2015-07-20": "Independence Day", + "2015-08-07": "Battle of Boyac\u00e1", + "2015-08-17": "Assumption of Mary (Observed)", + "2015-10-12": "Columbus Day", + "2015-11-02": "All Saints' Day (Observed)", + "2015-11-16": "Independence of Cartagena (Observed)", + "2015-12-08": "Immaculate Conception", + "2015-12-25": "Christmas", + "2016-01-01": "New Year's Day", + "2016-01-11": "Epiphany (Observed)", + "2016-03-21": "Saint Joseph's Day (Observed)", + "2016-03-24": "Maundy Thursday", + "2016-03-25": "Good Friday", + "2016-05-01": "Labour Day", + "2016-05-09": "Ascension of Jesus (Observed)", + "2016-05-30": "Corpus Christi (Observed)", + "2016-06-06": "Sacred Heart (Observed)", + "2016-07-04": "Saint Peter and Saint Paul (Observed)", + "2016-07-20": "Independence Day", + "2016-08-07": "Battle of Boyac\u00e1", + "2016-08-15": "Assumption of Mary", + "2016-10-17": "Columbus Day (Observed)", + "2016-11-07": "All Saints' Day (Observed)", + "2016-11-14": "Independence of Cartagena (Observed)", + "2016-12-08": "Immaculate Conception", + "2016-12-25": "Christmas", + "2017-01-01": "New Year's Day", + "2017-01-09": "Epiphany (Observed)", + "2017-03-20": "Saint Joseph's Day (Observed)", + "2017-04-13": "Maundy Thursday", + "2017-04-14": "Good Friday", + "2017-05-01": "Labour Day", + "2017-05-29": "Ascension of Jesus (Observed)", + "2017-06-19": "Corpus Christi (Observed)", + "2017-06-26": "Sacred Heart (Observed)", + "2017-07-03": "Saint Peter and Saint Paul (Observed)", + "2017-07-20": "Independence Day", + "2017-08-07": "Battle of Boyac\u00e1", + "2017-08-21": "Assumption of Mary (Observed)", + "2017-10-16": "Columbus Day (Observed)", + "2017-11-06": "All Saints' Day (Observed)", + "2017-11-13": "Independence of Cartagena (Observed)", + "2017-12-08": "Immaculate Conception", + "2017-12-25": "Christmas", + "2018-01-01": "New Year's Day", + "2018-01-08": "Epiphany (Observed)", + "2018-03-19": "Saint Joseph's Day", + "2018-03-29": "Maundy Thursday", + "2018-03-30": "Good Friday", + "2018-05-01": "Labour Day", + "2018-05-14": "Ascension of Jesus (Observed)", + "2018-06-04": "Corpus Christi (Observed)", + "2018-06-11": "Sacred Heart (Observed)", + "2018-07-02": "Saint Peter and Saint Paul (Observed)", + "2018-07-20": "Independence Day", + "2018-08-07": "Battle of Boyac\u00e1", + "2018-08-20": "Assumption of Mary (Observed)", + "2018-10-15": "Columbus Day (Observed)", + "2018-11-05": "All Saints' Day (Observed)", + "2018-11-12": "Independence of Cartagena (Observed)", + "2018-12-08": "Immaculate Conception", + "2018-12-25": "Christmas", + "2019-01-01": "New Year's Day", + "2019-01-07": "Epiphany (Observed)", + "2019-03-25": "Saint Joseph's Day (Observed)", + "2019-04-18": "Maundy Thursday", + "2019-04-19": "Good Friday", + "2019-05-01": "Labour Day", + "2019-06-03": "Ascension of Jesus (Observed)", + "2019-06-24": "Corpus Christi (Observed)", + "2019-07-01": "Sacred Heart (Observed); Saint Peter and Saint Paul (Observed)", + "2019-07-20": "Independence Day", + "2019-08-07": "Battle of Boyac\u00e1", + "2019-08-19": "Assumption of Mary (Observed)", + "2019-10-14": "Columbus Day (Observed)", + "2019-11-04": "All Saints' Day (Observed)", + "2019-11-11": "Independence of Cartagena", + "2019-12-08": "Immaculate Conception", + "2019-12-25": "Christmas", + "2020-01-01": "New Year's Day", + "2020-01-06": "Epiphany", + "2020-03-23": "Saint Joseph's Day (Observed)", + "2020-04-09": "Maundy Thursday", + "2020-04-10": "Good Friday", + "2020-05-01": "Labour Day", + "2020-05-25": "Ascension of Jesus (Observed)", + "2020-06-15": "Corpus Christi (Observed)", + "2020-06-22": "Sacred Heart (Observed)", + "2020-06-29": "Saint Peter and Saint Paul", + "2020-07-20": "Independence Day", + "2020-08-07": "Battle of Boyac\u00e1", + "2020-08-17": "Assumption of Mary (Observed)", + "2020-10-12": "Columbus Day", + "2020-11-02": "All Saints' Day (Observed)", + "2020-11-16": "Independence of Cartagena (Observed)", + "2020-12-08": "Immaculate Conception", + "2020-12-25": "Christmas", + "2021-01-01": "New Year's Day", + "2021-01-11": "Epiphany (Observed)", + "2021-03-22": "Saint Joseph's Day (Observed)", + "2021-04-01": "Maundy Thursday", + "2021-04-02": "Good Friday", + "2021-05-01": "Labour Day", + "2021-05-17": "Ascension of Jesus (Observed)", + "2021-06-07": "Corpus Christi (Observed)", + "2021-06-14": "Sacred Heart (Observed)", + "2021-07-05": "Saint Peter and Saint Paul (Observed)", + "2021-07-20": "Independence Day", + "2021-08-07": "Battle of Boyac\u00e1", + "2021-08-16": "Assumption of Mary (Observed)", + "2021-10-18": "Columbus Day (Observed)", + "2021-11-01": "All Saints' Day", + "2021-11-15": "Independence of Cartagena (Observed)", + "2021-12-08": "Immaculate Conception", + "2021-12-25": "Christmas", + "2022-01-01": "New Year's Day", + "2022-01-10": "Epiphany (Observed)", + "2022-03-21": "Saint Joseph's Day (Observed)", + "2022-04-14": "Maundy Thursday", + "2022-04-15": "Good Friday", + "2022-05-01": "Labour Day", + "2022-05-30": "Ascension of Jesus (Observed)", + "2022-06-20": "Corpus Christi (Observed)", + "2022-06-27": "Sacred Heart (Observed)", + "2022-07-04": "Saint Peter and Saint Paul (Observed)", + "2022-07-20": "Independence Day", + "2022-08-07": "Battle of Boyac\u00e1", + "2022-08-15": "Assumption of Mary", + "2022-10-17": "Columbus Day (Observed)", + "2022-11-07": "All Saints' Day (Observed)", + "2022-11-14": "Independence of Cartagena (Observed)", + "2022-12-08": "Immaculate Conception", + "2022-12-25": "Christmas", + "2023-01-01": "New Year's Day", + "2023-01-09": "Epiphany (Observed)", + "2023-03-20": "Saint Joseph's Day (Observed)", + "2023-04-06": "Maundy Thursday", + "2023-04-07": "Good Friday", + "2023-05-01": "Labour Day", + "2023-05-22": "Ascension of Jesus (Observed)", + "2023-06-12": "Corpus Christi (Observed)", + "2023-06-19": "Sacred Heart (Observed)", + "2023-07-03": "Saint Peter and Saint Paul (Observed)", + "2023-07-20": "Independence Day", + "2023-08-07": "Battle of Boyac\u00e1", + "2023-08-21": "Assumption of Mary (Observed)", + "2023-10-16": "Columbus Day (Observed)", + "2023-11-06": "All Saints' Day (Observed)", + "2023-11-13": "Independence of Cartagena (Observed)", + "2023-12-08": "Immaculate Conception", + "2023-12-25": "Christmas", + "2024-01-01": "New Year's Day", + "2024-01-08": "Epiphany (Observed)", + "2024-03-25": "Saint Joseph's Day (Observed)", + "2024-03-28": "Maundy Thursday", + "2024-03-29": "Good Friday", + "2024-05-01": "Labour Day", + "2024-05-13": "Ascension of Jesus (Observed)", + "2024-06-03": "Corpus Christi (Observed)", + "2024-06-10": "Sacred Heart (Observed)", + "2024-07-01": "Saint Peter and Saint Paul (Observed)", + "2024-07-20": "Independence Day", + "2024-08-07": "Battle of Boyac\u00e1", + "2024-08-19": "Assumption of Mary (Observed)", + "2024-10-14": "Columbus Day (Observed)", + "2024-11-04": "All Saints' Day (Observed)", + "2024-11-11": "Independence of Cartagena", + "2024-12-08": "Immaculate Conception", + "2024-12-25": "Christmas", + "2025-01-01": "New Year's Day", + "2025-01-06": "Epiphany", + "2025-03-24": "Saint Joseph's Day (Observed)", + "2025-04-17": "Maundy Thursday", + "2025-04-18": "Good Friday", + "2025-05-01": "Labour Day", + "2025-06-02": "Ascension of Jesus (Observed)", + "2025-06-23": "Corpus Christi (Observed)", + "2025-06-30": "Sacred Heart (Observed); Saint Peter and Saint Paul (Observed)", + "2025-07-20": "Independence Day", + "2025-08-07": "Battle of Boyac\u00e1", + "2025-08-18": "Assumption of Mary (Observed)", + "2025-10-13": "Columbus Day (Observed)", + "2025-11-03": "All Saints' Day (Observed)", + "2025-11-17": "Independence of Cartagena (Observed)", + "2025-12-08": "Immaculate Conception", + "2025-12-25": "Christmas", + "2026-01-01": "New Year's Day", + "2026-01-12": "Epiphany (Observed)", + "2026-03-23": "Saint Joseph's Day (Observed)", + "2026-04-02": "Maundy Thursday", + "2026-04-03": "Good Friday", + "2026-05-01": "Labour Day", + "2026-05-18": "Ascension of Jesus (Observed)", + "2026-06-08": "Corpus Christi (Observed)", + "2026-06-15": "Sacred Heart (Observed)", + "2026-06-29": "Saint Peter and Saint Paul", + "2026-07-20": "Independence Day", + "2026-08-07": "Battle of Boyac\u00e1", + "2026-08-17": "Assumption of Mary (Observed)", + "2026-10-12": "Columbus Day", + "2026-11-02": "All Saints' Day (Observed)", + "2026-11-16": "Independence of Cartagena (Observed)", + "2026-12-08": "Immaculate Conception", + "2026-12-25": "Christmas", + "2027-01-01": "New Year's Day", + "2027-01-11": "Epiphany (Observed)", + "2027-03-22": "Saint Joseph's Day (Observed)", + "2027-03-25": "Maundy Thursday", + "2027-03-26": "Good Friday", + "2027-05-01": "Labour Day", + "2027-05-10": "Ascension of Jesus (Observed)", + "2027-05-31": "Corpus Christi (Observed)", + "2027-06-07": "Sacred Heart (Observed)", + "2027-07-05": "Saint Peter and Saint Paul (Observed)", + "2027-07-20": "Independence Day", + "2027-08-07": "Battle of Boyac\u00e1", + "2027-08-16": "Assumption of Mary (Observed)", + "2027-10-18": "Columbus Day (Observed)", + "2027-11-01": "All Saints' Day", + "2027-11-15": "Independence of Cartagena (Observed)", + "2027-12-08": "Immaculate Conception", + "2027-12-25": "Christmas", + "2028-01-01": "New Year's Day", + "2028-01-10": "Epiphany (Observed)", + "2028-03-20": "Saint Joseph's Day (Observed)", + "2028-04-13": "Maundy Thursday", + "2028-04-14": "Good Friday", + "2028-05-01": "Labour Day", + "2028-05-29": "Ascension of Jesus (Observed)", + "2028-06-19": "Corpus Christi (Observed)", + "2028-06-26": "Sacred Heart (Observed)", + "2028-07-03": "Saint Peter and Saint Paul (Observed)", + "2028-07-20": "Independence Day", + "2028-08-07": "Battle of Boyac\u00e1", + "2028-08-21": "Assumption of Mary (Observed)", + "2028-10-16": "Columbus Day (Observed)", + "2028-11-06": "All Saints' Day (Observed)", + "2028-11-13": "Independence of Cartagena (Observed)", + "2028-12-08": "Immaculate Conception", + "2028-12-25": "Christmas", + "2029-01-01": "New Year's Day", + "2029-01-08": "Epiphany (Observed)", + "2029-03-19": "Saint Joseph's Day", + "2029-03-29": "Maundy Thursday", + "2029-03-30": "Good Friday", + "2029-05-01": "Labour Day", + "2029-05-14": "Ascension of Jesus (Observed)", + "2029-06-04": "Corpus Christi (Observed)", + "2029-06-11": "Sacred Heart (Observed)", + "2029-07-02": "Saint Peter and Saint Paul (Observed)", + "2029-07-20": "Independence Day", + "2029-08-07": "Battle of Boyac\u00e1", + "2029-08-20": "Assumption of Mary (Observed)", + "2029-10-15": "Columbus Day (Observed)", + "2029-11-05": "All Saints' Day (Observed)", + "2029-11-12": "Independence of Cartagena (Observed)", + "2029-12-08": "Immaculate Conception", + "2029-12-25": "Christmas", + "2030-01-01": "New Year's Day", + "2030-01-07": "Epiphany (Observed)", + "2030-03-25": "Saint Joseph's Day (Observed)", + "2030-04-18": "Maundy Thursday", + "2030-04-19": "Good Friday", + "2030-05-01": "Labour Day", + "2030-06-03": "Ascension of Jesus (Observed)", + "2030-06-24": "Corpus Christi (Observed)", + "2030-07-01": "Sacred Heart (Observed); Saint Peter and Saint Paul (Observed)", + "2030-07-20": "Independence Day", + "2030-08-07": "Battle of Boyac\u00e1", + "2030-08-19": "Assumption of Mary (Observed)", + "2030-10-14": "Columbus Day (Observed)", + "2030-11-04": "All Saints' Day (Observed)", + "2030-11-11": "Independence of Cartagena", + "2030-12-08": "Immaculate Conception", + "2030-12-25": "Christmas", + "2031-01-01": "New Year's Day", + "2031-01-06": "Epiphany", + "2031-03-24": "Saint Joseph's Day (Observed)", + "2031-04-10": "Maundy Thursday", + "2031-04-11": "Good Friday", + "2031-05-01": "Labour Day", + "2031-05-26": "Ascension of Jesus (Observed)", + "2031-06-16": "Corpus Christi (Observed)", + "2031-06-23": "Sacred Heart (Observed)", + "2031-06-30": "Saint Peter and Saint Paul (Observed)", + "2031-07-20": "Independence Day", + "2031-08-07": "Battle of Boyac\u00e1", + "2031-08-18": "Assumption of Mary (Observed)", + "2031-10-13": "Columbus Day (Observed)", + "2031-11-03": "All Saints' Day (Observed)", + "2031-11-17": "Independence of Cartagena (Observed)", + "2031-12-08": "Immaculate Conception", + "2031-12-25": "Christmas", + "2032-01-01": "New Year's Day", + "2032-01-12": "Epiphany (Observed)", + "2032-03-22": "Saint Joseph's Day (Observed)", + "2032-03-25": "Maundy Thursday", + "2032-03-26": "Good Friday", + "2032-05-01": "Labour Day", + "2032-05-10": "Ascension of Jesus (Observed)", + "2032-05-31": "Corpus Christi (Observed)", + "2032-06-07": "Sacred Heart (Observed)", + "2032-07-05": "Saint Peter and Saint Paul (Observed)", + "2032-07-20": "Independence Day", + "2032-08-07": "Battle of Boyac\u00e1", + "2032-08-16": "Assumption of Mary (Observed)", + "2032-10-18": "Columbus Day (Observed)", + "2032-11-01": "All Saints' Day", + "2032-11-15": "Independence of Cartagena (Observed)", + "2032-12-08": "Immaculate Conception", + "2032-12-25": "Christmas", + "2033-01-01": "New Year's Day", + "2033-01-10": "Epiphany (Observed)", + "2033-03-21": "Saint Joseph's Day (Observed)", + "2033-04-14": "Maundy Thursday", + "2033-04-15": "Good Friday", + "2033-05-01": "Labour Day", + "2033-05-30": "Ascension of Jesus (Observed)", + "2033-06-20": "Corpus Christi (Observed)", + "2033-06-27": "Sacred Heart (Observed)", + "2033-07-04": "Saint Peter and Saint Paul (Observed)", + "2033-07-20": "Independence Day", + "2033-08-07": "Battle of Boyac\u00e1", + "2033-08-15": "Assumption of Mary", + "2033-10-17": "Columbus Day (Observed)", + "2033-11-07": "All Saints' Day (Observed)", + "2033-11-14": "Independence of Cartagena (Observed)", + "2033-12-08": "Immaculate Conception", + "2033-12-25": "Christmas", + "2034-01-01": "New Year's Day", + "2034-01-09": "Epiphany (Observed)", + "2034-03-20": "Saint Joseph's Day (Observed)", + "2034-04-06": "Maundy Thursday", + "2034-04-07": "Good Friday", + "2034-05-01": "Labour Day", + "2034-05-22": "Ascension of Jesus (Observed)", + "2034-06-12": "Corpus Christi (Observed)", + "2034-06-19": "Sacred Heart (Observed)", + "2034-07-03": "Saint Peter and Saint Paul (Observed)", + "2034-07-20": "Independence Day", + "2034-08-07": "Battle of Boyac\u00e1", + "2034-08-21": "Assumption of Mary (Observed)", + "2034-10-16": "Columbus Day (Observed)", + "2034-11-06": "All Saints' Day (Observed)", + "2034-11-13": "Independence of Cartagena (Observed)", + "2034-12-08": "Immaculate Conception", + "2034-12-25": "Christmas", + "2035-01-01": "New Year's Day", + "2035-01-08": "Epiphany (Observed)", + "2035-03-19": "Saint Joseph's Day", + "2035-03-22": "Maundy Thursday", + "2035-03-23": "Good Friday", + "2035-05-01": "Labour Day", + "2035-05-07": "Ascension of Jesus (Observed)", + "2035-05-28": "Corpus Christi (Observed)", + "2035-06-04": "Sacred Heart (Observed)", + "2035-07-02": "Saint Peter and Saint Paul (Observed)", + "2035-07-20": "Independence Day", + "2035-08-07": "Battle of Boyac\u00e1", + "2035-08-20": "Assumption of Mary (Observed)", + "2035-10-15": "Columbus Day (Observed)", + "2035-11-05": "All Saints' Day (Observed)", + "2035-11-12": "Independence of Cartagena (Observed)", + "2035-12-08": "Immaculate Conception", + "2035-12-25": "Christmas", + "2036-01-01": "New Year's Day", + "2036-01-07": "Epiphany (Observed)", + "2036-03-24": "Saint Joseph's Day (Observed)", + "2036-04-10": "Maundy Thursday", + "2036-04-11": "Good Friday", + "2036-05-01": "Labour Day", + "2036-05-26": "Ascension of Jesus (Observed)", + "2036-06-16": "Corpus Christi (Observed)", + "2036-06-23": "Sacred Heart (Observed)", + "2036-06-30": "Saint Peter and Saint Paul (Observed)", + "2036-07-20": "Independence Day", + "2036-08-07": "Battle of Boyac\u00e1", + "2036-08-18": "Assumption of Mary (Observed)", + "2036-10-13": "Columbus Day (Observed)", + "2036-11-03": "All Saints' Day (Observed)", + "2036-11-17": "Independence of Cartagena (Observed)", + "2036-12-08": "Immaculate Conception", + "2036-12-25": "Christmas", + "2037-01-01": "New Year's Day", + "2037-01-12": "Epiphany (Observed)", + "2037-03-23": "Saint Joseph's Day (Observed)", + "2037-04-02": "Maundy Thursday", + "2037-04-03": "Good Friday", + "2037-05-01": "Labour Day", + "2037-05-18": "Ascension of Jesus (Observed)", + "2037-06-08": "Corpus Christi (Observed)", + "2037-06-15": "Sacred Heart (Observed)", + "2037-06-29": "Saint Peter and Saint Paul", + "2037-07-20": "Independence Day", + "2037-08-07": "Battle of Boyac\u00e1", + "2037-08-17": "Assumption of Mary (Observed)", + "2037-10-12": "Columbus Day", + "2037-11-02": "All Saints' Day (Observed)", + "2037-11-16": "Independence of Cartagena (Observed)", + "2037-12-08": "Immaculate Conception", + "2037-12-25": "Christmas", + "2038-01-01": "New Year's Day", + "2038-01-11": "Epiphany (Observed)", + "2038-03-22": "Saint Joseph's Day (Observed)", + "2038-04-22": "Maundy Thursday", + "2038-04-23": "Good Friday", + "2038-05-01": "Labour Day", + "2038-06-07": "Ascension of Jesus (Observed)", + "2038-06-28": "Corpus Christi (Observed)", + "2038-07-05": "Sacred Heart (Observed); Saint Peter and Saint Paul (Observed)", + "2038-07-20": "Independence Day", + "2038-08-07": "Battle of Boyac\u00e1", + "2038-08-16": "Assumption of Mary (Observed)", + "2038-10-18": "Columbus Day (Observed)", + "2038-11-01": "All Saints' Day", + "2038-11-15": "Independence of Cartagena (Observed)", + "2038-12-08": "Immaculate Conception", + "2038-12-25": "Christmas", + "2039-01-01": "New Year's Day", + "2039-01-10": "Epiphany (Observed)", + "2039-03-21": "Saint Joseph's Day (Observed)", + "2039-04-07": "Maundy Thursday", + "2039-04-08": "Good Friday", + "2039-05-01": "Labour Day", + "2039-05-23": "Ascension of Jesus (Observed)", + "2039-06-13": "Corpus Christi (Observed)", + "2039-06-20": "Sacred Heart (Observed)", + "2039-07-04": "Saint Peter and Saint Paul (Observed)", + "2039-07-20": "Independence Day", + "2039-08-07": "Battle of Boyac\u00e1", + "2039-08-15": "Assumption of Mary", + "2039-10-17": "Columbus Day (Observed)", + "2039-11-07": "All Saints' Day (Observed)", + "2039-11-14": "Independence of Cartagena (Observed)", + "2039-12-08": "Immaculate Conception", + "2039-12-25": "Christmas", + "2040-01-01": "New Year's Day", + "2040-01-09": "Epiphany (Observed)", + "2040-03-19": "Saint Joseph's Day", + "2040-03-29": "Maundy Thursday", + "2040-03-30": "Good Friday", + "2040-05-01": "Labour Day", + "2040-05-14": "Ascension of Jesus (Observed)", + "2040-06-04": "Corpus Christi (Observed)", + "2040-06-11": "Sacred Heart (Observed)", + "2040-07-02": "Saint Peter and Saint Paul (Observed)", + "2040-07-20": "Independence Day", + "2040-08-07": "Battle of Boyac\u00e1", + "2040-08-20": "Assumption of Mary (Observed)", + "2040-10-15": "Columbus Day (Observed)", + "2040-11-05": "All Saints' Day (Observed)", + "2040-11-12": "Independence of Cartagena (Observed)", + "2040-12-08": "Immaculate Conception", + "2040-12-25": "Christmas", + "2041-01-01": "New Year's Day", + "2041-01-07": "Epiphany (Observed)", + "2041-03-25": "Saint Joseph's Day (Observed)", + "2041-04-18": "Maundy Thursday", + "2041-04-19": "Good Friday", + "2041-05-01": "Labour Day", + "2041-06-03": "Ascension of Jesus (Observed)", + "2041-06-24": "Corpus Christi (Observed)", + "2041-07-01": "Sacred Heart (Observed); Saint Peter and Saint Paul (Observed)", + "2041-07-20": "Independence Day", + "2041-08-07": "Battle of Boyac\u00e1", + "2041-08-19": "Assumption of Mary (Observed)", + "2041-10-14": "Columbus Day (Observed)", + "2041-11-04": "All Saints' Day (Observed)", + "2041-11-11": "Independence of Cartagena", + "2041-12-08": "Immaculate Conception", + "2041-12-25": "Christmas", + "2042-01-01": "New Year's Day", + "2042-01-06": "Epiphany", + "2042-03-24": "Saint Joseph's Day (Observed)", + "2042-04-03": "Maundy Thursday", + "2042-04-04": "Good Friday", + "2042-05-01": "Labour Day", + "2042-05-19": "Ascension of Jesus (Observed)", + "2042-06-09": "Corpus Christi (Observed)", + "2042-06-16": "Sacred Heart (Observed)", + "2042-06-30": "Saint Peter and Saint Paul (Observed)", + "2042-07-20": "Independence Day", + "2042-08-07": "Battle of Boyac\u00e1", + "2042-08-18": "Assumption of Mary (Observed)", + "2042-10-13": "Columbus Day (Observed)", + "2042-11-03": "All Saints' Day (Observed)", + "2042-11-17": "Independence of Cartagena (Observed)", + "2042-12-08": "Immaculate Conception", + "2042-12-25": "Christmas", + "2043-01-01": "New Year's Day", + "2043-01-12": "Epiphany (Observed)", + "2043-03-23": "Saint Joseph's Day (Observed)", + "2043-03-26": "Maundy Thursday", + "2043-03-27": "Good Friday", + "2043-05-01": "Labour Day", + "2043-05-11": "Ascension of Jesus (Observed)", + "2043-06-01": "Corpus Christi (Observed)", + "2043-06-08": "Sacred Heart (Observed)", + "2043-06-29": "Saint Peter and Saint Paul", + "2043-07-20": "Independence Day", + "2043-08-07": "Battle of Boyac\u00e1", + "2043-08-17": "Assumption of Mary (Observed)", + "2043-10-12": "Columbus Day", + "2043-11-02": "All Saints' Day (Observed)", + "2043-11-16": "Independence of Cartagena (Observed)", + "2043-12-08": "Immaculate Conception", + "2043-12-25": "Christmas", + "2044-01-01": "New Year's Day", + "2044-01-11": "Epiphany (Observed)", + "2044-03-21": "Saint Joseph's Day (Observed)", + "2044-04-14": "Maundy Thursday", + "2044-04-15": "Good Friday", + "2044-05-01": "Labour Day", + "2044-05-30": "Ascension of Jesus (Observed)", + "2044-06-20": "Corpus Christi (Observed)", + "2044-06-27": "Sacred Heart (Observed)", + "2044-07-04": "Saint Peter and Saint Paul (Observed)", + "2044-07-20": "Independence Day", + "2044-08-07": "Battle of Boyac\u00e1", + "2044-08-15": "Assumption of Mary", + "2044-10-17": "Columbus Day (Observed)", + "2044-11-07": "All Saints' Day (Observed)", + "2044-11-14": "Independence of Cartagena (Observed)", + "2044-12-08": "Immaculate Conception", + "2044-12-25": "Christmas", + "2045-01-01": "New Year's Day", + "2045-01-09": "Epiphany (Observed)", + "2045-03-20": "Saint Joseph's Day (Observed)", + "2045-04-06": "Maundy Thursday", + "2045-04-07": "Good Friday", + "2045-05-01": "Labour Day", + "2045-05-22": "Ascension of Jesus (Observed)", + "2045-06-12": "Corpus Christi (Observed)", + "2045-06-19": "Sacred Heart (Observed)", + "2045-07-03": "Saint Peter and Saint Paul (Observed)", + "2045-07-20": "Independence Day", + "2045-08-07": "Battle of Boyac\u00e1", + "2045-08-21": "Assumption of Mary (Observed)", + "2045-10-16": "Columbus Day (Observed)", + "2045-11-06": "All Saints' Day (Observed)", + "2045-11-13": "Independence of Cartagena (Observed)", + "2045-12-08": "Immaculate Conception", + "2045-12-25": "Christmas", + "2046-01-01": "New Year's Day", + "2046-01-08": "Epiphany (Observed)", + "2046-03-19": "Saint Joseph's Day", + "2046-03-22": "Maundy Thursday", + "2046-03-23": "Good Friday", + "2046-05-01": "Labour Day", + "2046-05-07": "Ascension of Jesus (Observed)", + "2046-05-28": "Corpus Christi (Observed)", + "2046-06-04": "Sacred Heart (Observed)", + "2046-07-02": "Saint Peter and Saint Paul (Observed)", + "2046-07-20": "Independence Day", + "2046-08-07": "Battle of Boyac\u00e1", + "2046-08-20": "Assumption of Mary (Observed)", + "2046-10-15": "Columbus Day (Observed)", + "2046-11-05": "All Saints' Day (Observed)", + "2046-11-12": "Independence of Cartagena (Observed)", + "2046-12-08": "Immaculate Conception", + "2046-12-25": "Christmas", + "2047-01-01": "New Year's Day", + "2047-01-07": "Epiphany (Observed)", + "2047-03-25": "Saint Joseph's Day (Observed)", + "2047-04-11": "Maundy Thursday", + "2047-04-12": "Good Friday", + "2047-05-01": "Labour Day", + "2047-05-27": "Ascension of Jesus (Observed)", + "2047-06-17": "Corpus Christi (Observed)", + "2047-06-24": "Sacred Heart (Observed)", + "2047-07-01": "Saint Peter and Saint Paul (Observed)", + "2047-07-20": "Independence Day", + "2047-08-07": "Battle of Boyac\u00e1", + "2047-08-19": "Assumption of Mary (Observed)", + "2047-10-14": "Columbus Day (Observed)", + "2047-11-04": "All Saints' Day (Observed)", + "2047-11-11": "Independence of Cartagena", + "2047-12-08": "Immaculate Conception", + "2047-12-25": "Christmas", + "2048-01-01": "New Year's Day", + "2048-01-06": "Epiphany", + "2048-03-23": "Saint Joseph's Day (Observed)", + "2048-04-02": "Maundy Thursday", + "2048-04-03": "Good Friday", + "2048-05-01": "Labour Day", + "2048-05-18": "Ascension of Jesus (Observed)", + "2048-06-08": "Corpus Christi (Observed)", + "2048-06-15": "Sacred Heart (Observed)", + "2048-06-29": "Saint Peter and Saint Paul", + "2048-07-20": "Independence Day", + "2048-08-07": "Battle of Boyac\u00e1", + "2048-08-17": "Assumption of Mary (Observed)", + "2048-10-12": "Columbus Day", + "2048-11-02": "All Saints' Day (Observed)", + "2048-11-16": "Independence of Cartagena (Observed)", + "2048-12-08": "Immaculate Conception", + "2048-12-25": "Christmas", + "2049-01-01": "New Year's Day", + "2049-01-11": "Epiphany (Observed)", + "2049-03-22": "Saint Joseph's Day (Observed)", + "2049-04-15": "Maundy Thursday", + "2049-04-16": "Good Friday", + "2049-05-01": "Labour Day", + "2049-05-31": "Ascension of Jesus (Observed)", + "2049-06-21": "Corpus Christi (Observed)", + "2049-06-28": "Sacred Heart (Observed)", + "2049-07-05": "Saint Peter and Saint Paul (Observed)", + "2049-07-20": "Independence Day", + "2049-08-07": "Battle of Boyac\u00e1", + "2049-08-16": "Assumption of Mary (Observed)", + "2049-10-18": "Columbus Day (Observed)", + "2049-11-01": "All Saints' Day", + "2049-11-15": "Independence of Cartagena (Observed)", + "2049-12-08": "Immaculate Conception", + "2049-12-25": "Christmas", + "2050-01-01": "New Year's Day", + "2050-01-10": "Epiphany (Observed)", + "2050-03-21": "Saint Joseph's Day (Observed)", + "2050-04-07": "Maundy Thursday", + "2050-04-08": "Good Friday", + "2050-05-01": "Labour Day", + "2050-05-23": "Ascension of Jesus (Observed)", + "2050-06-13": "Corpus Christi (Observed)", + "2050-06-20": "Sacred Heart (Observed)", + "2050-07-04": "Saint Peter and Saint Paul (Observed)", + "2050-07-20": "Independence Day", + "2050-08-07": "Battle of Boyac\u00e1", + "2050-08-15": "Assumption of Mary", + "2050-10-17": "Columbus Day (Observed)", + "2050-11-07": "All Saints' Day (Observed)", + "2050-11-14": "Independence of Cartagena (Observed)", + "2050-12-08": "Immaculate Conception", + "2050-12-25": "Christmas" +} diff --git a/snapshots/countries/CR.json b/snapshots/countries/CR.json new file mode 100644 index 000000000..ded696291 --- /dev/null +++ b/snapshots/countries/CR.json @@ -0,0 +1,1135 @@ +{ + "1950-01-01": "New Year's Day", + "1950-04-06": "Maundy Thursday", + "1950-04-07": "Good Friday", + "1950-04-11": "Juan Santamar\u00eda Day", + "1950-05-01": "International Workers' Day", + "1950-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1950-08-02": "Feast of Our Lady of the Angels", + "1950-08-15": "Mother's Day", + "1950-09-15": "Independence Day", + "1950-10-16": "Cultures Day (Observed)", + "1950-12-25": "Christmas Day", + "1951-01-01": "New Year's Day", + "1951-03-22": "Maundy Thursday", + "1951-03-23": "Good Friday", + "1951-04-11": "Juan Santamar\u00eda Day", + "1951-05-01": "International Workers' Day", + "1951-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1951-08-02": "Feast of Our Lady of the Angels", + "1951-08-15": "Mother's Day", + "1951-09-15": "Independence Day", + "1951-10-15": "Cultures Day (Observed)", + "1951-12-25": "Christmas Day", + "1952-01-01": "New Year's Day", + "1952-04-10": "Maundy Thursday", + "1952-04-11": "Good Friday; Juan Santamar\u00eda Day", + "1952-05-01": "International Workers' Day", + "1952-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1952-08-02": "Feast of Our Lady of the Angels", + "1952-08-15": "Mother's Day", + "1952-09-15": "Independence Day", + "1952-10-12": "Cultures Day", + "1952-12-25": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-04-02": "Maundy Thursday", + "1953-04-03": "Good Friday", + "1953-04-11": "Juan Santamar\u00eda Day", + "1953-05-01": "International Workers' Day", + "1953-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1953-08-02": "Feast of Our Lady of the Angels", + "1953-08-15": "Mother's Day", + "1953-09-15": "Independence Day", + "1953-10-12": "Cultures Day", + "1953-12-25": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-04-11": "Juan Santamar\u00eda Day", + "1954-04-15": "Maundy Thursday", + "1954-04-16": "Good Friday", + "1954-05-01": "International Workers' Day", + "1954-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1954-08-02": "Feast of Our Lady of the Angels", + "1954-08-15": "Mother's Day", + "1954-09-15": "Independence Day", + "1954-10-18": "Cultures Day (Observed)", + "1954-12-25": "Christmas Day", + "1955-01-01": "New Year's Day", + "1955-04-07": "Maundy Thursday", + "1955-04-08": "Good Friday", + "1955-04-11": "Juan Santamar\u00eda Day", + "1955-05-01": "International Workers' Day", + "1955-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1955-08-02": "Feast of Our Lady of the Angels", + "1955-08-15": "Mother's Day", + "1955-09-15": "Independence Day", + "1955-10-17": "Cultures Day (Observed)", + "1955-12-25": "Christmas Day", + "1956-01-01": "New Year's Day", + "1956-03-29": "Maundy Thursday", + "1956-03-30": "Good Friday", + "1956-04-11": "Juan Santamar\u00eda Day", + "1956-05-01": "International Workers' Day", + "1956-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1956-08-02": "Feast of Our Lady of the Angels", + "1956-08-15": "Mother's Day", + "1956-09-15": "Independence Day", + "1956-10-15": "Cultures Day (Observed)", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-04-11": "Juan Santamar\u00eda Day", + "1957-04-18": "Maundy Thursday", + "1957-04-19": "Good Friday", + "1957-05-01": "International Workers' Day", + "1957-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1957-08-02": "Feast of Our Lady of the Angels", + "1957-08-15": "Mother's Day", + "1957-09-15": "Independence Day", + "1957-10-12": "Cultures Day", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-04-03": "Maundy Thursday", + "1958-04-04": "Good Friday", + "1958-04-11": "Juan Santamar\u00eda Day", + "1958-05-01": "International Workers' Day", + "1958-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1958-08-02": "Feast of Our Lady of the Angels", + "1958-08-15": "Mother's Day", + "1958-09-15": "Independence Day", + "1958-10-12": "Cultures Day", + "1958-12-25": "Christmas Day", + "1959-01-01": "New Year's Day", + "1959-03-26": "Maundy Thursday", + "1959-03-27": "Good Friday", + "1959-04-11": "Juan Santamar\u00eda Day", + "1959-05-01": "International Workers' Day", + "1959-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1959-08-02": "Feast of Our Lady of the Angels", + "1959-08-15": "Mother's Day", + "1959-09-15": "Independence Day", + "1959-10-12": "Cultures Day", + "1959-12-25": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-04-11": "Juan Santamar\u00eda Day", + "1960-04-14": "Maundy Thursday", + "1960-04-15": "Good Friday", + "1960-05-01": "International Workers' Day", + "1960-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1960-08-02": "Feast of Our Lady of the Angels", + "1960-08-15": "Mother's Day", + "1960-09-15": "Independence Day", + "1960-10-17": "Cultures Day (Observed)", + "1960-12-25": "Christmas Day", + "1961-01-01": "New Year's Day", + "1961-03-30": "Maundy Thursday", + "1961-03-31": "Good Friday", + "1961-04-11": "Juan Santamar\u00eda Day", + "1961-05-01": "International Workers' Day", + "1961-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1961-08-02": "Feast of Our Lady of the Angels", + "1961-08-15": "Mother's Day", + "1961-09-15": "Independence Day", + "1961-10-16": "Cultures Day (Observed)", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-04-11": "Juan Santamar\u00eda Day", + "1962-04-19": "Maundy Thursday", + "1962-04-20": "Good Friday", + "1962-05-01": "International Workers' Day", + "1962-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1962-08-02": "Feast of Our Lady of the Angels", + "1962-08-15": "Mother's Day", + "1962-09-15": "Independence Day", + "1962-10-15": "Cultures Day (Observed)", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-04-11": "Juan Santamar\u00eda Day; Maundy Thursday", + "1963-04-12": "Good Friday", + "1963-05-01": "International Workers' Day", + "1963-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1963-08-02": "Feast of Our Lady of the Angels", + "1963-08-15": "Mother's Day", + "1963-09-15": "Independence Day", + "1963-10-12": "Cultures Day", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-03-26": "Maundy Thursday", + "1964-03-27": "Good Friday", + "1964-04-11": "Juan Santamar\u00eda Day", + "1964-05-01": "International Workers' Day", + "1964-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1964-08-02": "Feast of Our Lady of the Angels", + "1964-08-15": "Mother's Day", + "1964-09-15": "Independence Day", + "1964-10-12": "Cultures Day", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-04-11": "Juan Santamar\u00eda Day", + "1965-04-15": "Maundy Thursday", + "1965-04-16": "Good Friday", + "1965-05-01": "International Workers' Day", + "1965-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1965-08-02": "Feast of Our Lady of the Angels", + "1965-08-15": "Mother's Day", + "1965-09-15": "Independence Day", + "1965-10-18": "Cultures Day (Observed)", + "1965-12-25": "Christmas Day", + "1966-01-01": "New Year's Day", + "1966-04-07": "Maundy Thursday", + "1966-04-08": "Good Friday", + "1966-04-11": "Juan Santamar\u00eda Day", + "1966-05-01": "International Workers' Day", + "1966-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1966-08-02": "Feast of Our Lady of the Angels", + "1966-08-15": "Mother's Day", + "1966-09-15": "Independence Day", + "1966-10-17": "Cultures Day (Observed)", + "1966-12-25": "Christmas Day", + "1967-01-01": "New Year's Day", + "1967-03-23": "Maundy Thursday", + "1967-03-24": "Good Friday", + "1967-04-11": "Juan Santamar\u00eda Day", + "1967-05-01": "International Workers' Day", + "1967-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1967-08-02": "Feast of Our Lady of the Angels", + "1967-08-15": "Mother's Day", + "1967-09-15": "Independence Day", + "1967-10-16": "Cultures Day (Observed)", + "1967-12-25": "Christmas Day", + "1968-01-01": "New Year's Day", + "1968-04-11": "Juan Santamar\u00eda Day; Maundy Thursday", + "1968-04-12": "Good Friday", + "1968-05-01": "International Workers' Day", + "1968-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1968-08-02": "Feast of Our Lady of the Angels", + "1968-08-15": "Mother's Day", + "1968-09-15": "Independence Day", + "1968-10-12": "Cultures Day", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-04-03": "Maundy Thursday", + "1969-04-04": "Good Friday", + "1969-04-11": "Juan Santamar\u00eda Day", + "1969-05-01": "International Workers' Day", + "1969-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1969-08-02": "Feast of Our Lady of the Angels", + "1969-08-15": "Mother's Day", + "1969-09-15": "Independence Day", + "1969-10-12": "Cultures Day", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-03-26": "Maundy Thursday", + "1970-03-27": "Good Friday", + "1970-04-11": "Juan Santamar\u00eda Day", + "1970-05-01": "International Workers' Day", + "1970-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1970-08-02": "Feast of Our Lady of the Angels", + "1970-08-15": "Mother's Day", + "1970-09-15": "Independence Day", + "1970-10-12": "Cultures Day", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-04-08": "Maundy Thursday", + "1971-04-09": "Good Friday", + "1971-04-11": "Juan Santamar\u00eda Day", + "1971-05-01": "International Workers' Day", + "1971-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1971-08-02": "Feast of Our Lady of the Angels", + "1971-08-15": "Mother's Day", + "1971-09-15": "Independence Day", + "1971-10-18": "Cultures Day (Observed)", + "1971-12-25": "Christmas Day", + "1972-01-01": "New Year's Day", + "1972-03-30": "Maundy Thursday", + "1972-03-31": "Good Friday", + "1972-04-11": "Juan Santamar\u00eda Day", + "1972-05-01": "International Workers' Day", + "1972-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1972-08-02": "Feast of Our Lady of the Angels", + "1972-08-15": "Mother's Day", + "1972-09-15": "Independence Day", + "1972-10-16": "Cultures Day (Observed)", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-04-11": "Juan Santamar\u00eda Day", + "1973-04-19": "Maundy Thursday", + "1973-04-20": "Good Friday", + "1973-05-01": "International Workers' Day", + "1973-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1973-08-02": "Feast of Our Lady of the Angels", + "1973-08-15": "Mother's Day", + "1973-09-15": "Independence Day", + "1973-10-15": "Cultures Day (Observed)", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-04-11": "Juan Santamar\u00eda Day; Maundy Thursday", + "1974-04-12": "Good Friday", + "1974-05-01": "International Workers' Day", + "1974-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1974-08-02": "Feast of Our Lady of the Angels", + "1974-08-15": "Mother's Day", + "1974-09-15": "Independence Day", + "1974-10-12": "Cultures Day", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-03-27": "Maundy Thursday", + "1975-03-28": "Good Friday", + "1975-04-11": "Juan Santamar\u00eda Day", + "1975-05-01": "International Workers' Day", + "1975-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1975-08-02": "Feast of Our Lady of the Angels", + "1975-08-15": "Mother's Day", + "1975-09-15": "Independence Day", + "1975-10-12": "Cultures Day", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-04-11": "Juan Santamar\u00eda Day", + "1976-04-15": "Maundy Thursday", + "1976-04-16": "Good Friday", + "1976-05-01": "International Workers' Day", + "1976-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1976-08-02": "Feast of Our Lady of the Angels", + "1976-08-15": "Mother's Day", + "1976-09-15": "Independence Day", + "1976-10-18": "Cultures Day (Observed)", + "1976-12-25": "Christmas Day", + "1977-01-01": "New Year's Day", + "1977-04-07": "Maundy Thursday", + "1977-04-08": "Good Friday", + "1977-04-11": "Juan Santamar\u00eda Day", + "1977-05-01": "International Workers' Day", + "1977-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1977-08-02": "Feast of Our Lady of the Angels", + "1977-08-15": "Mother's Day", + "1977-09-15": "Independence Day", + "1977-10-17": "Cultures Day (Observed)", + "1977-12-25": "Christmas Day", + "1978-01-01": "New Year's Day", + "1978-03-23": "Maundy Thursday", + "1978-03-24": "Good Friday", + "1978-04-11": "Juan Santamar\u00eda Day", + "1978-05-01": "International Workers' Day", + "1978-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1978-08-02": "Feast of Our Lady of the Angels", + "1978-08-15": "Mother's Day", + "1978-09-15": "Independence Day", + "1978-10-16": "Cultures Day (Observed)", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-04-11": "Juan Santamar\u00eda Day", + "1979-04-12": "Maundy Thursday", + "1979-04-13": "Good Friday", + "1979-05-01": "International Workers' Day", + "1979-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1979-08-02": "Feast of Our Lady of the Angels", + "1979-08-15": "Mother's Day", + "1979-09-15": "Independence Day", + "1979-10-15": "Cultures Day (Observed)", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-04-03": "Maundy Thursday", + "1980-04-04": "Good Friday", + "1980-04-11": "Juan Santamar\u00eda Day", + "1980-05-01": "International Workers' Day", + "1980-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1980-08-02": "Feast of Our Lady of the Angels", + "1980-08-15": "Mother's Day", + "1980-09-15": "Independence Day", + "1980-10-12": "Cultures Day", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-04-11": "Juan Santamar\u00eda Day", + "1981-04-16": "Maundy Thursday", + "1981-04-17": "Good Friday", + "1981-05-01": "International Workers' Day", + "1981-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1981-08-02": "Feast of Our Lady of the Angels", + "1981-08-15": "Mother's Day", + "1981-09-15": "Independence Day", + "1981-10-12": "Cultures Day", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-04-08": "Maundy Thursday", + "1982-04-09": "Good Friday", + "1982-04-11": "Juan Santamar\u00eda Day", + "1982-05-01": "International Workers' Day", + "1982-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1982-08-02": "Feast of Our Lady of the Angels", + "1982-08-15": "Mother's Day", + "1982-09-15": "Independence Day", + "1982-10-18": "Cultures Day (Observed)", + "1982-12-25": "Christmas Day", + "1983-01-01": "New Year's Day", + "1983-03-31": "Maundy Thursday", + "1983-04-01": "Good Friday", + "1983-04-11": "Juan Santamar\u00eda Day", + "1983-05-01": "International Workers' Day", + "1983-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1983-08-02": "Feast of Our Lady of the Angels", + "1983-08-15": "Mother's Day", + "1983-09-15": "Independence Day", + "1983-10-17": "Cultures Day (Observed)", + "1983-12-25": "Christmas Day", + "1984-01-01": "New Year's Day", + "1984-04-11": "Juan Santamar\u00eda Day", + "1984-04-19": "Maundy Thursday", + "1984-04-20": "Good Friday", + "1984-05-01": "International Workers' Day", + "1984-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1984-08-02": "Feast of Our Lady of the Angels", + "1984-08-15": "Mother's Day", + "1984-09-15": "Independence Day", + "1984-10-15": "Cultures Day (Observed)", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-04-04": "Maundy Thursday", + "1985-04-05": "Good Friday", + "1985-04-11": "Juan Santamar\u00eda Day", + "1985-05-01": "International Workers' Day", + "1985-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1985-08-02": "Feast of Our Lady of the Angels", + "1985-08-15": "Mother's Day", + "1985-09-15": "Independence Day", + "1985-10-12": "Cultures Day", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-03-27": "Maundy Thursday", + "1986-03-28": "Good Friday", + "1986-04-11": "Juan Santamar\u00eda Day", + "1986-05-01": "International Workers' Day", + "1986-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1986-08-02": "Feast of Our Lady of the Angels", + "1986-08-15": "Mother's Day", + "1986-09-15": "Independence Day", + "1986-10-12": "Cultures Day", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-04-11": "Juan Santamar\u00eda Day", + "1987-04-16": "Maundy Thursday", + "1987-04-17": "Good Friday", + "1987-05-01": "International Workers' Day", + "1987-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1987-08-02": "Feast of Our Lady of the Angels", + "1987-08-15": "Mother's Day", + "1987-09-15": "Independence Day", + "1987-10-12": "Cultures Day", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-03-31": "Maundy Thursday", + "1988-04-01": "Good Friday", + "1988-04-11": "Juan Santamar\u00eda Day", + "1988-05-01": "International Workers' Day", + "1988-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1988-08-02": "Feast of Our Lady of the Angels", + "1988-08-15": "Mother's Day", + "1988-09-15": "Independence Day", + "1988-10-17": "Cultures Day (Observed)", + "1988-12-25": "Christmas Day", + "1989-01-01": "New Year's Day", + "1989-03-23": "Maundy Thursday", + "1989-03-24": "Good Friday", + "1989-04-11": "Juan Santamar\u00eda Day", + "1989-05-01": "International Workers' Day", + "1989-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1989-08-02": "Feast of Our Lady of the Angels", + "1989-08-15": "Mother's Day", + "1989-09-15": "Independence Day", + "1989-10-16": "Cultures Day (Observed)", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-04-11": "Juan Santamar\u00eda Day", + "1990-04-12": "Maundy Thursday", + "1990-04-13": "Good Friday", + "1990-05-01": "International Workers' Day", + "1990-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1990-08-02": "Feast of Our Lady of the Angels", + "1990-08-15": "Mother's Day", + "1990-09-15": "Independence Day", + "1990-10-15": "Cultures Day (Observed)", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-03-28": "Maundy Thursday", + "1991-03-29": "Good Friday", + "1991-04-11": "Juan Santamar\u00eda Day", + "1991-05-01": "International Workers' Day", + "1991-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1991-08-02": "Feast of Our Lady of the Angels", + "1991-08-15": "Mother's Day", + "1991-09-15": "Independence Day", + "1991-10-12": "Cultures Day", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-04-11": "Juan Santamar\u00eda Day", + "1992-04-16": "Maundy Thursday", + "1992-04-17": "Good Friday", + "1992-05-01": "International Workers' Day", + "1992-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1992-08-02": "Feast of Our Lady of the Angels", + "1992-08-15": "Mother's Day", + "1992-09-15": "Independence Day", + "1992-10-12": "Cultures Day", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-04-08": "Maundy Thursday", + "1993-04-09": "Good Friday", + "1993-04-11": "Juan Santamar\u00eda Day", + "1993-05-01": "International Workers' Day", + "1993-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1993-08-02": "Feast of Our Lady of the Angels", + "1993-08-15": "Mother's Day", + "1993-09-15": "Independence Day", + "1993-10-18": "Cultures Day (Observed)", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-03-31": "Maundy Thursday", + "1994-04-01": "Good Friday", + "1994-04-11": "Juan Santamar\u00eda Day", + "1994-05-01": "International Workers' Day", + "1994-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1994-08-02": "Feast of Our Lady of the Angels", + "1994-08-15": "Mother's Day", + "1994-09-15": "Independence Day", + "1994-10-17": "Cultures Day (Observed)", + "1994-12-25": "Christmas Day", + "1995-01-01": "New Year's Day", + "1995-04-11": "Juan Santamar\u00eda Day", + "1995-04-13": "Maundy Thursday", + "1995-04-14": "Good Friday", + "1995-05-01": "International Workers' Day", + "1995-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1995-08-02": "Feast of Our Lady of the Angels", + "1995-08-15": "Mother's Day", + "1995-09-15": "Independence Day", + "1995-10-16": "Cultures Day (Observed)", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-04-04": "Maundy Thursday", + "1996-04-05": "Good Friday", + "1996-04-11": "Juan Santamar\u00eda Day", + "1996-05-01": "International Workers' Day", + "1996-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1996-08-02": "Feast of Our Lady of the Angels", + "1996-08-15": "Mother's Day", + "1996-09-15": "Independence Day", + "1996-10-12": "Cultures Day", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-03-27": "Maundy Thursday", + "1997-03-28": "Good Friday", + "1997-04-11": "Juan Santamar\u00eda Day", + "1997-05-01": "International Workers' Day", + "1997-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1997-08-02": "Feast of Our Lady of the Angels", + "1997-08-15": "Mother's Day", + "1997-09-15": "Independence Day", + "1997-10-12": "Cultures Day", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-04-09": "Maundy Thursday", + "1998-04-10": "Good Friday", + "1998-04-11": "Juan Santamar\u00eda Day", + "1998-05-01": "International Workers' Day", + "1998-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1998-08-02": "Feast of Our Lady of the Angels", + "1998-08-15": "Mother's Day", + "1998-09-15": "Independence Day", + "1998-10-12": "Cultures Day", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-04-01": "Maundy Thursday", + "1999-04-02": "Good Friday", + "1999-04-11": "Juan Santamar\u00eda Day", + "1999-05-01": "International Workers' Day", + "1999-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "1999-08-02": "Feast of Our Lady of the Angels", + "1999-08-15": "Mother's Day", + "1999-09-15": "Independence Day", + "1999-10-18": "Cultures Day (Observed)", + "1999-12-25": "Christmas Day", + "2000-01-01": "New Year's Day", + "2000-04-11": "Juan Santamar\u00eda Day", + "2000-04-20": "Maundy Thursday", + "2000-04-21": "Good Friday", + "2000-05-01": "International Workers' Day", + "2000-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2000-08-02": "Feast of Our Lady of the Angels", + "2000-08-15": "Mother's Day", + "2000-09-15": "Independence Day", + "2000-10-16": "Cultures Day (Observed)", + "2000-12-25": "Christmas Day", + "2001-01-01": "New Year's Day", + "2001-04-11": "Juan Santamar\u00eda Day", + "2001-04-12": "Maundy Thursday", + "2001-04-13": "Good Friday", + "2001-05-01": "International Workers' Day", + "2001-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2001-08-02": "Feast of Our Lady of the Angels", + "2001-08-15": "Mother's Day", + "2001-09-15": "Independence Day", + "2001-10-15": "Cultures Day (Observed)", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-03-28": "Maundy Thursday", + "2002-03-29": "Good Friday", + "2002-04-11": "Juan Santamar\u00eda Day", + "2002-05-01": "International Workers' Day", + "2002-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2002-08-02": "Feast of Our Lady of the Angels", + "2002-08-15": "Mother's Day", + "2002-09-15": "Independence Day", + "2002-10-12": "Cultures Day", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-04-11": "Juan Santamar\u00eda Day", + "2003-04-17": "Maundy Thursday", + "2003-04-18": "Good Friday", + "2003-05-01": "International Workers' Day", + "2003-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2003-08-02": "Feast of Our Lady of the Angels", + "2003-08-15": "Mother's Day", + "2003-09-15": "Independence Day", + "2003-10-12": "Cultures Day", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-04-08": "Maundy Thursday", + "2004-04-09": "Good Friday", + "2004-04-11": "Juan Santamar\u00eda Day", + "2004-05-01": "International Workers' Day", + "2004-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2004-08-02": "Feast of Our Lady of the Angels", + "2004-08-15": "Mother's Day", + "2004-09-15": "Independence Day", + "2004-10-18": "Cultures Day (Observed)", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-03-24": "Maundy Thursday", + "2005-03-25": "Good Friday", + "2005-04-11": "Juan Santamar\u00eda Day", + "2005-05-01": "International Workers' Day", + "2005-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2005-08-02": "Feast of Our Lady of the Angels", + "2005-08-15": "Mother's Day", + "2005-09-15": "Independence Day", + "2005-10-17": "Cultures Day (Observed)", + "2005-12-25": "Christmas Day", + "2006-01-01": "New Year's Day", + "2006-04-13": "Maundy Thursday", + "2006-04-14": "Good Friday", + "2006-04-17": "Juan Santamar\u00eda Day (Observed)", + "2006-05-01": "International Workers' Day", + "2006-07-31": "Annexation of the Party of Nicoya to Costa Rica (Observed)", + "2006-08-02": "Feast of Our Lady of the Angels", + "2006-08-21": "Mother's Day (Observed)", + "2006-09-15": "Independence Day", + "2006-10-16": "Cultures Day (Observed)", + "2006-12-25": "Christmas Day", + "2007-01-01": "New Year's Day", + "2007-04-05": "Maundy Thursday", + "2007-04-06": "Good Friday", + "2007-04-16": "Juan Santamar\u00eda Day (Observed)", + "2007-05-01": "International Workers' Day", + "2007-07-30": "Annexation of the Party of Nicoya to Costa Rica (Observed)", + "2007-08-02": "Feast of Our Lady of the Angels", + "2007-08-20": "Mother's Day (Observed)", + "2007-09-15": "Independence Day", + "2007-10-15": "Cultures Day (Observed)", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-03-20": "Maundy Thursday", + "2008-03-21": "Good Friday", + "2008-04-14": "Juan Santamar\u00eda Day (Observed)", + "2008-05-01": "International Workers' Day", + "2008-07-28": "Annexation of the Party of Nicoya to Costa Rica (Observed)", + "2008-08-02": "Feast of Our Lady of the Angels", + "2008-08-15": "Mother's Day", + "2008-09-15": "Independence Day", + "2008-10-12": "Cultures Day", + "2008-12-25": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-04-09": "Maundy Thursday", + "2009-04-10": "Good Friday", + "2009-04-11": "Juan Santamar\u00eda Day", + "2009-05-01": "International Workers' Day", + "2009-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2009-08-02": "Feast of Our Lady of the Angels", + "2009-08-15": "Mother's Day", + "2009-09-15": "Independence Day", + "2009-10-12": "Cultures Day", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-04-01": "Maundy Thursday", + "2010-04-02": "Good Friday", + "2010-04-11": "Juan Santamar\u00eda Day", + "2010-05-01": "International Workers' Day", + "2010-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2010-08-02": "Feast of Our Lady of the Angels", + "2010-08-15": "Mother's Day", + "2010-09-15": "Independence Day", + "2010-10-18": "Cultures Day (Observed)", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-04-11": "Juan Santamar\u00eda Day", + "2011-04-21": "Maundy Thursday", + "2011-04-22": "Good Friday", + "2011-05-01": "International Workers' Day", + "2011-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2011-08-02": "Feast of Our Lady of the Angels", + "2011-08-15": "Mother's Day", + "2011-09-15": "Independence Day", + "2011-10-17": "Cultures Day (Observed)", + "2011-12-25": "Christmas Day", + "2012-01-01": "New Year's Day", + "2012-04-05": "Maundy Thursday", + "2012-04-06": "Good Friday", + "2012-04-11": "Juan Santamar\u00eda Day", + "2012-05-01": "International Workers' Day", + "2012-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2012-08-02": "Feast of Our Lady of the Angels", + "2012-08-15": "Mother's Day", + "2012-09-15": "Independence Day", + "2012-10-15": "Cultures Day (Observed)", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-03-28": "Maundy Thursday", + "2013-03-29": "Good Friday", + "2013-04-11": "Juan Santamar\u00eda Day", + "2013-05-01": "International Workers' Day", + "2013-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2013-08-02": "Feast of Our Lady of the Angels", + "2013-08-15": "Mother's Day", + "2013-09-15": "Independence Day", + "2013-10-12": "Cultures Day", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-04-11": "Juan Santamar\u00eda Day", + "2014-04-17": "Maundy Thursday", + "2014-04-18": "Good Friday", + "2014-05-01": "International Workers' Day", + "2014-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2014-08-02": "Feast of Our Lady of the Angels", + "2014-08-15": "Mother's Day", + "2014-09-15": "Independence Day", + "2014-10-12": "Cultures Day", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-04-02": "Maundy Thursday", + "2015-04-03": "Good Friday", + "2015-04-11": "Juan Santamar\u00eda Day", + "2015-05-01": "International Workers' Day", + "2015-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2015-08-02": "Feast of Our Lady of the Angels", + "2015-08-15": "Mother's Day", + "2015-09-15": "Independence Day", + "2015-10-12": "Cultures Day", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-03-24": "Maundy Thursday", + "2016-03-25": "Good Friday", + "2016-04-11": "Juan Santamar\u00eda Day", + "2016-05-01": "International Workers' Day", + "2016-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2016-08-02": "Feast of Our Lady of the Angels", + "2016-08-15": "Mother's Day", + "2016-09-15": "Independence Day", + "2016-10-17": "Cultures Day (Observed)", + "2016-12-25": "Christmas Day", + "2017-01-01": "New Year's Day", + "2017-04-11": "Juan Santamar\u00eda Day", + "2017-04-13": "Maundy Thursday", + "2017-04-14": "Good Friday", + "2017-05-01": "International Workers' Day", + "2017-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2017-08-02": "Feast of Our Lady of the Angels", + "2017-08-15": "Mother's Day", + "2017-09-15": "Independence Day", + "2017-10-16": "Cultures Day (Observed)", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-03-29": "Maundy Thursday", + "2018-03-30": "Good Friday", + "2018-04-11": "Juan Santamar\u00eda Day", + "2018-05-01": "International Workers' Day", + "2018-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2018-08-02": "Feast of Our Lady of the Angels", + "2018-08-15": "Mother's Day", + "2018-09-15": "Independence Day", + "2018-10-15": "Cultures Day (Observed)", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-04-11": "Juan Santamar\u00eda Day", + "2019-04-18": "Maundy Thursday", + "2019-04-19": "Good Friday", + "2019-05-01": "International Workers' Day", + "2019-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2019-08-02": "Feast of Our Lady of the Angels", + "2019-08-15": "Mother's Day", + "2019-09-15": "Independence Day", + "2019-10-12": "Cultures Day", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-04-09": "Maundy Thursday", + "2020-04-10": "Good Friday", + "2020-04-11": "Juan Santamar\u00eda Day", + "2020-05-01": "International Workers' Day", + "2020-07-27": "Annexation of the Party of Nicoya to Costa Rica (Observed)", + "2020-08-02": "Feast of Our Lady of the Angels", + "2020-08-17": "Mother's Day (Observed)", + "2020-09-14": "Independence Day (Observed)", + "2020-11-30": "Army Abolition Day (Observed)", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-04-01": "Maundy Thursday", + "2021-04-02": "Good Friday", + "2021-04-11": "Juan Santamar\u00eda Day", + "2021-05-03": "International Workers' Day (Observed)", + "2021-07-26": "Annexation of the Party of Nicoya to Costa Rica (Observed)", + "2021-08-02": "Feast of Our Lady of the Angels", + "2021-08-15": "Mother's Day", + "2021-09-13": "Independence Day (Observed)", + "2021-11-29": "Army Abolition Day (Observed)", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-04-11": "Juan Santamar\u00eda Day", + "2022-04-14": "Maundy Thursday", + "2022-04-15": "Good Friday", + "2022-05-01": "International Workers' Day", + "2022-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2022-08-02": "Feast of Our Lady of the Angels", + "2022-08-15": "Mother's Day", + "2022-09-04": "Day of the Black Person and Afro-Costa Rican Culture (Observed)", + "2022-09-19": "Independence Day (Observed)", + "2022-12-05": "Army Abolition Day (Observed)", + "2022-12-25": "Christmas Day", + "2023-01-01": "New Year's Day", + "2023-04-06": "Maundy Thursday", + "2023-04-07": "Good Friday", + "2023-04-10": "Juan Santamar\u00eda Day (Observed)", + "2023-05-01": "International Workers' Day", + "2023-07-24": "Annexation of the Party of Nicoya to Costa Rica (Observed)", + "2023-08-02": "Feast of Our Lady of the Angels", + "2023-08-14": "Mother's Day (Observed)", + "2023-09-03": "Day of the Black Person and Afro-Costa Rican Culture (Observed)", + "2023-09-15": "Independence Day", + "2023-12-01": "Army Abolition Day", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-03-28": "Maundy Thursday", + "2024-03-29": "Good Friday", + "2024-04-15": "Juan Santamar\u00eda Day (Observed)", + "2024-05-01": "International Workers' Day", + "2024-07-29": "Annexation of the Party of Nicoya to Costa Rica (Observed)", + "2024-08-02": "Feast of Our Lady of the Angels", + "2024-08-19": "Mother's Day (Observed)", + "2024-08-31": "Day of the Black Person and Afro-Costa Rican Culture", + "2024-09-16": "Independence Day (Observed)", + "2024-12-01": "Army Abolition Day", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-04-11": "Juan Santamar\u00eda Day", + "2025-04-17": "Maundy Thursday", + "2025-04-18": "Good Friday", + "2025-05-01": "International Workers' Day", + "2025-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2025-08-02": "Feast of Our Lady of the Angels", + "2025-08-15": "Mother's Day", + "2025-08-31": "Day of the Black Person and Afro-Costa Rican Culture", + "2025-09-15": "Independence Day", + "2025-12-01": "Army Abolition Day", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-04-02": "Maundy Thursday", + "2026-04-03": "Good Friday", + "2026-04-11": "Juan Santamar\u00eda Day", + "2026-05-01": "International Workers' Day", + "2026-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2026-08-02": "Feast of Our Lady of the Angels", + "2026-08-15": "Mother's Day", + "2026-08-31": "Day of the Black Person and Afro-Costa Rican Culture", + "2026-09-15": "Independence Day", + "2026-12-01": "Army Abolition Day", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-03-25": "Maundy Thursday", + "2027-03-26": "Good Friday", + "2027-04-11": "Juan Santamar\u00eda Day", + "2027-05-01": "International Workers' Day", + "2027-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2027-08-02": "Feast of Our Lady of the Angels", + "2027-08-15": "Mother's Day", + "2027-08-31": "Day of the Black Person and Afro-Costa Rican Culture", + "2027-09-15": "Independence Day", + "2027-12-01": "Army Abolition Day", + "2027-12-25": "Christmas Day", + "2028-01-01": "New Year's Day", + "2028-04-11": "Juan Santamar\u00eda Day", + "2028-04-13": "Maundy Thursday", + "2028-04-14": "Good Friday", + "2028-05-01": "International Workers' Day", + "2028-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2028-08-02": "Feast of Our Lady of the Angels", + "2028-08-15": "Mother's Day", + "2028-08-31": "Day of the Black Person and Afro-Costa Rican Culture", + "2028-09-15": "Independence Day", + "2028-12-01": "Army Abolition Day", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-03-29": "Maundy Thursday", + "2029-03-30": "Good Friday", + "2029-04-11": "Juan Santamar\u00eda Day", + "2029-05-01": "International Workers' Day", + "2029-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2029-08-02": "Feast of Our Lady of the Angels", + "2029-08-15": "Mother's Day", + "2029-08-31": "Day of the Black Person and Afro-Costa Rican Culture", + "2029-09-15": "Independence Day", + "2029-12-01": "Army Abolition Day", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-04-11": "Juan Santamar\u00eda Day", + "2030-04-18": "Maundy Thursday", + "2030-04-19": "Good Friday", + "2030-05-01": "International Workers' Day", + "2030-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2030-08-02": "Feast of Our Lady of the Angels", + "2030-08-15": "Mother's Day", + "2030-08-31": "Day of the Black Person and Afro-Costa Rican Culture", + "2030-09-15": "Independence Day", + "2030-12-01": "Army Abolition Day", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-04-10": "Maundy Thursday", + "2031-04-11": "Good Friday; Juan Santamar\u00eda Day", + "2031-05-01": "International Workers' Day", + "2031-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2031-08-02": "Feast of Our Lady of the Angels", + "2031-08-15": "Mother's Day", + "2031-08-31": "Day of the Black Person and Afro-Costa Rican Culture", + "2031-09-15": "Independence Day", + "2031-12-01": "Army Abolition Day", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-03-25": "Maundy Thursday", + "2032-03-26": "Good Friday", + "2032-04-11": "Juan Santamar\u00eda Day", + "2032-05-01": "International Workers' Day", + "2032-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2032-08-02": "Feast of Our Lady of the Angels", + "2032-08-15": "Mother's Day", + "2032-08-31": "Day of the Black Person and Afro-Costa Rican Culture", + "2032-09-15": "Independence Day", + "2032-12-01": "Army Abolition Day", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-04-11": "Juan Santamar\u00eda Day", + "2033-04-14": "Maundy Thursday", + "2033-04-15": "Good Friday", + "2033-05-01": "International Workers' Day", + "2033-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2033-08-02": "Feast of Our Lady of the Angels", + "2033-08-15": "Mother's Day", + "2033-08-31": "Day of the Black Person and Afro-Costa Rican Culture", + "2033-09-15": "Independence Day", + "2033-12-01": "Army Abolition Day", + "2033-12-25": "Christmas Day", + "2034-01-01": "New Year's Day", + "2034-04-06": "Maundy Thursday", + "2034-04-07": "Good Friday", + "2034-04-11": "Juan Santamar\u00eda Day", + "2034-05-01": "International Workers' Day", + "2034-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2034-08-02": "Feast of Our Lady of the Angels", + "2034-08-15": "Mother's Day", + "2034-08-31": "Day of the Black Person and Afro-Costa Rican Culture", + "2034-09-15": "Independence Day", + "2034-12-01": "Army Abolition Day", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-03-22": "Maundy Thursday", + "2035-03-23": "Good Friday", + "2035-04-11": "Juan Santamar\u00eda Day", + "2035-05-01": "International Workers' Day", + "2035-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2035-08-02": "Feast of Our Lady of the Angels", + "2035-08-15": "Mother's Day", + "2035-08-31": "Day of the Black Person and Afro-Costa Rican Culture", + "2035-09-15": "Independence Day", + "2035-12-01": "Army Abolition Day", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-04-10": "Maundy Thursday", + "2036-04-11": "Good Friday; Juan Santamar\u00eda Day", + "2036-05-01": "International Workers' Day", + "2036-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2036-08-02": "Feast of Our Lady of the Angels", + "2036-08-15": "Mother's Day", + "2036-08-31": "Day of the Black Person and Afro-Costa Rican Culture", + "2036-09-15": "Independence Day", + "2036-12-01": "Army Abolition Day", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-04-02": "Maundy Thursday", + "2037-04-03": "Good Friday", + "2037-04-11": "Juan Santamar\u00eda Day", + "2037-05-01": "International Workers' Day", + "2037-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2037-08-02": "Feast of Our Lady of the Angels", + "2037-08-15": "Mother's Day", + "2037-08-31": "Day of the Black Person and Afro-Costa Rican Culture", + "2037-09-15": "Independence Day", + "2037-12-01": "Army Abolition Day", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-04-11": "Juan Santamar\u00eda Day", + "2038-04-22": "Maundy Thursday", + "2038-04-23": "Good Friday", + "2038-05-01": "International Workers' Day", + "2038-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2038-08-02": "Feast of Our Lady of the Angels", + "2038-08-15": "Mother's Day", + "2038-08-31": "Day of the Black Person and Afro-Costa Rican Culture", + "2038-09-15": "Independence Day", + "2038-12-01": "Army Abolition Day", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-04-07": "Maundy Thursday", + "2039-04-08": "Good Friday", + "2039-04-11": "Juan Santamar\u00eda Day", + "2039-05-01": "International Workers' Day", + "2039-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2039-08-02": "Feast of Our Lady of the Angels", + "2039-08-15": "Mother's Day", + "2039-08-31": "Day of the Black Person and Afro-Costa Rican Culture", + "2039-09-15": "Independence Day", + "2039-12-01": "Army Abolition Day", + "2039-12-25": "Christmas Day", + "2040-01-01": "New Year's Day", + "2040-03-29": "Maundy Thursday", + "2040-03-30": "Good Friday", + "2040-04-11": "Juan Santamar\u00eda Day", + "2040-05-01": "International Workers' Day", + "2040-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2040-08-02": "Feast of Our Lady of the Angels", + "2040-08-15": "Mother's Day", + "2040-08-31": "Day of the Black Person and Afro-Costa Rican Culture", + "2040-09-15": "Independence Day", + "2040-12-01": "Army Abolition Day", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-04-11": "Juan Santamar\u00eda Day", + "2041-04-18": "Maundy Thursday", + "2041-04-19": "Good Friday", + "2041-05-01": "International Workers' Day", + "2041-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2041-08-02": "Feast of Our Lady of the Angels", + "2041-08-15": "Mother's Day", + "2041-08-31": "Day of the Black Person and Afro-Costa Rican Culture", + "2041-09-15": "Independence Day", + "2041-12-01": "Army Abolition Day", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-04-03": "Maundy Thursday", + "2042-04-04": "Good Friday", + "2042-04-11": "Juan Santamar\u00eda Day", + "2042-05-01": "International Workers' Day", + "2042-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2042-08-02": "Feast of Our Lady of the Angels", + "2042-08-15": "Mother's Day", + "2042-08-31": "Day of the Black Person and Afro-Costa Rican Culture", + "2042-09-15": "Independence Day", + "2042-12-01": "Army Abolition Day", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-03-26": "Maundy Thursday", + "2043-03-27": "Good Friday", + "2043-04-11": "Juan Santamar\u00eda Day", + "2043-05-01": "International Workers' Day", + "2043-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2043-08-02": "Feast of Our Lady of the Angels", + "2043-08-15": "Mother's Day", + "2043-08-31": "Day of the Black Person and Afro-Costa Rican Culture", + "2043-09-15": "Independence Day", + "2043-12-01": "Army Abolition Day", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-04-11": "Juan Santamar\u00eda Day", + "2044-04-14": "Maundy Thursday", + "2044-04-15": "Good Friday", + "2044-05-01": "International Workers' Day", + "2044-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2044-08-02": "Feast of Our Lady of the Angels", + "2044-08-15": "Mother's Day", + "2044-08-31": "Day of the Black Person and Afro-Costa Rican Culture", + "2044-09-15": "Independence Day", + "2044-12-01": "Army Abolition Day", + "2044-12-25": "Christmas Day", + "2045-01-01": "New Year's Day", + "2045-04-06": "Maundy Thursday", + "2045-04-07": "Good Friday", + "2045-04-11": "Juan Santamar\u00eda Day", + "2045-05-01": "International Workers' Day", + "2045-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2045-08-02": "Feast of Our Lady of the Angels", + "2045-08-15": "Mother's Day", + "2045-08-31": "Day of the Black Person and Afro-Costa Rican Culture", + "2045-09-15": "Independence Day", + "2045-12-01": "Army Abolition Day", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-03-22": "Maundy Thursday", + "2046-03-23": "Good Friday", + "2046-04-11": "Juan Santamar\u00eda Day", + "2046-05-01": "International Workers' Day", + "2046-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2046-08-02": "Feast of Our Lady of the Angels", + "2046-08-15": "Mother's Day", + "2046-08-31": "Day of the Black Person and Afro-Costa Rican Culture", + "2046-09-15": "Independence Day", + "2046-12-01": "Army Abolition Day", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-04-11": "Juan Santamar\u00eda Day; Maundy Thursday", + "2047-04-12": "Good Friday", + "2047-05-01": "International Workers' Day", + "2047-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2047-08-02": "Feast of Our Lady of the Angels", + "2047-08-15": "Mother's Day", + "2047-08-31": "Day of the Black Person and Afro-Costa Rican Culture", + "2047-09-15": "Independence Day", + "2047-12-01": "Army Abolition Day", + "2047-12-25": "Christmas Day", + "2048-01-01": "New Year's Day", + "2048-04-02": "Maundy Thursday", + "2048-04-03": "Good Friday", + "2048-04-11": "Juan Santamar\u00eda Day", + "2048-05-01": "International Workers' Day", + "2048-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2048-08-02": "Feast of Our Lady of the Angels", + "2048-08-15": "Mother's Day", + "2048-08-31": "Day of the Black Person and Afro-Costa Rican Culture", + "2048-09-15": "Independence Day", + "2048-12-01": "Army Abolition Day", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-04-11": "Juan Santamar\u00eda Day", + "2049-04-15": "Maundy Thursday", + "2049-04-16": "Good Friday", + "2049-05-01": "International Workers' Day", + "2049-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2049-08-02": "Feast of Our Lady of the Angels", + "2049-08-15": "Mother's Day", + "2049-08-31": "Day of the Black Person and Afro-Costa Rican Culture", + "2049-09-15": "Independence Day", + "2049-12-01": "Army Abolition Day", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-04-07": "Maundy Thursday", + "2050-04-08": "Good Friday", + "2050-04-11": "Juan Santamar\u00eda Day", + "2050-05-01": "International Workers' Day", + "2050-07-25": "Annexation of the Party of Nicoya to Costa Rica", + "2050-08-02": "Feast of Our Lady of the Angels", + "2050-08-15": "Mother's Day", + "2050-08-31": "Day of the Black Person and Afro-Costa Rican Culture", + "2050-09-15": "Independence Day", + "2050-12-01": "Army Abolition Day", + "2050-12-25": "Christmas Day" +} diff --git a/snapshots/countries/CU.json b/snapshots/countries/CU.json new file mode 100644 index 000000000..31b05947a --- /dev/null +++ b/snapshots/countries/CU.json @@ -0,0 +1,778 @@ +{ + "1959-01-01": "Liberation Day", + "1959-05-01": "Labour Day", + "1959-07-25": "Commemoration of the Assault of the Moncada garrison", + "1959-07-26": "Day of the National Rebellion", + "1959-07-27": "Commemoration of the Assault of the Moncada garrison", + "1959-10-10": "Independence Day", + "1959-12-25": "Christmas Day", + "1960-01-01": "Liberation Day", + "1960-05-01": "Labour Day", + "1960-05-02": "Labour Day (Observed)", + "1960-07-25": "Commemoration of the Assault of the Moncada garrison", + "1960-07-26": "Day of the National Rebellion", + "1960-07-27": "Commemoration of the Assault of the Moncada garrison", + "1960-10-10": "Independence Day", + "1960-12-25": "Christmas Day", + "1961-01-01": "Liberation Day", + "1961-01-02": "Liberation Day (Observed)", + "1961-05-01": "Labour Day", + "1961-07-25": "Commemoration of the Assault of the Moncada garrison", + "1961-07-26": "Day of the National Rebellion", + "1961-07-27": "Commemoration of the Assault of the Moncada garrison", + "1961-10-10": "Independence Day", + "1961-12-25": "Christmas Day", + "1962-01-01": "Liberation Day", + "1962-05-01": "Labour Day", + "1962-07-25": "Commemoration of the Assault of the Moncada garrison", + "1962-07-26": "Day of the National Rebellion", + "1962-07-27": "Commemoration of the Assault of the Moncada garrison", + "1962-10-10": "Independence Day", + "1962-12-25": "Christmas Day", + "1963-01-01": "Liberation Day", + "1963-05-01": "Labour Day", + "1963-07-25": "Commemoration of the Assault of the Moncada garrison", + "1963-07-26": "Day of the National Rebellion", + "1963-07-27": "Commemoration of the Assault of the Moncada garrison", + "1963-10-10": "Independence Day", + "1963-12-25": "Christmas Day", + "1964-01-01": "Liberation Day", + "1964-05-01": "Labour Day", + "1964-07-25": "Commemoration of the Assault of the Moncada garrison", + "1964-07-26": "Day of the National Rebellion", + "1964-07-27": "Commemoration of the Assault of the Moncada garrison", + "1964-10-10": "Independence Day", + "1964-12-25": "Christmas Day", + "1965-01-01": "Liberation Day", + "1965-05-01": "Labour Day", + "1965-07-25": "Commemoration of the Assault of the Moncada garrison", + "1965-07-26": "Day of the National Rebellion", + "1965-07-27": "Commemoration of the Assault of the Moncada garrison", + "1965-10-10": "Independence Day", + "1965-10-11": "Independence Day (Observed)", + "1965-12-25": "Christmas Day", + "1966-01-01": "Liberation Day", + "1966-05-01": "Labour Day", + "1966-05-02": "Labour Day (Observed)", + "1966-07-25": "Commemoration of the Assault of the Moncada garrison", + "1966-07-26": "Day of the National Rebellion", + "1966-07-27": "Commemoration of the Assault of the Moncada garrison", + "1966-10-10": "Independence Day", + "1966-12-25": "Christmas Day", + "1967-01-01": "Liberation Day", + "1967-01-02": "Liberation Day (Observed)", + "1967-05-01": "Labour Day", + "1967-07-25": "Commemoration of the Assault of the Moncada garrison", + "1967-07-26": "Day of the National Rebellion", + "1967-07-27": "Commemoration of the Assault of the Moncada garrison", + "1967-10-10": "Independence Day", + "1967-12-25": "Christmas Day", + "1968-01-01": "Liberation Day", + "1968-05-01": "Labour Day", + "1968-07-25": "Commemoration of the Assault of the Moncada garrison", + "1968-07-26": "Day of the National Rebellion", + "1968-07-27": "Commemoration of the Assault of the Moncada garrison", + "1968-10-10": "Independence Day", + "1968-12-25": "Christmas Day", + "1969-01-01": "Liberation Day", + "1969-05-01": "Labour Day", + "1969-07-25": "Commemoration of the Assault of the Moncada garrison", + "1969-07-26": "Day of the National Rebellion", + "1969-07-27": "Commemoration of the Assault of the Moncada garrison", + "1969-10-10": "Independence Day", + "1970-01-01": "Liberation Day", + "1970-05-01": "Labour Day", + "1970-07-25": "Commemoration of the Assault of the Moncada garrison", + "1970-07-26": "Day of the National Rebellion", + "1970-07-27": "Commemoration of the Assault of the Moncada garrison", + "1970-10-10": "Independence Day", + "1971-01-01": "Liberation Day", + "1971-05-01": "Labour Day", + "1971-07-25": "Commemoration of the Assault of the Moncada garrison", + "1971-07-26": "Day of the National Rebellion", + "1971-07-27": "Commemoration of the Assault of the Moncada garrison", + "1971-10-10": "Independence Day", + "1971-10-11": "Independence Day (Observed)", + "1972-01-01": "Liberation Day", + "1972-05-01": "Labour Day", + "1972-07-25": "Commemoration of the Assault of the Moncada garrison", + "1972-07-26": "Day of the National Rebellion", + "1972-07-27": "Commemoration of the Assault of the Moncada garrison", + "1972-10-10": "Independence Day", + "1973-01-01": "Liberation Day", + "1973-05-01": "Labour Day", + "1973-07-25": "Commemoration of the Assault of the Moncada garrison", + "1973-07-26": "Day of the National Rebellion", + "1973-07-27": "Commemoration of the Assault of the Moncada garrison", + "1973-10-10": "Independence Day", + "1974-01-01": "Liberation Day", + "1974-05-01": "Labour Day", + "1974-07-25": "Commemoration of the Assault of the Moncada garrison", + "1974-07-26": "Day of the National Rebellion", + "1974-07-27": "Commemoration of the Assault of the Moncada garrison", + "1974-10-10": "Independence Day", + "1975-01-01": "Liberation Day", + "1975-05-01": "Labour Day", + "1975-07-25": "Commemoration of the Assault of the Moncada garrison", + "1975-07-26": "Day of the National Rebellion", + "1975-07-27": "Commemoration of the Assault of the Moncada garrison", + "1975-10-10": "Independence Day", + "1976-01-01": "Liberation Day", + "1976-05-01": "Labour Day", + "1976-07-25": "Commemoration of the Assault of the Moncada garrison", + "1976-07-26": "Day of the National Rebellion", + "1976-07-27": "Commemoration of the Assault of the Moncada garrison", + "1976-10-10": "Independence Day", + "1976-10-11": "Independence Day (Observed)", + "1977-01-01": "Liberation Day", + "1977-05-01": "Labour Day", + "1977-05-02": "Labour Day (Observed)", + "1977-07-25": "Commemoration of the Assault of the Moncada garrison", + "1977-07-26": "Day of the National Rebellion", + "1977-07-27": "Commemoration of the Assault of the Moncada garrison", + "1977-10-10": "Independence Day", + "1978-01-01": "Liberation Day", + "1978-01-02": "Liberation Day (Observed)", + "1978-05-01": "Labour Day", + "1978-07-25": "Commemoration of the Assault of the Moncada garrison", + "1978-07-26": "Day of the National Rebellion", + "1978-07-27": "Commemoration of the Assault of the Moncada garrison", + "1978-10-10": "Independence Day", + "1979-01-01": "Liberation Day", + "1979-05-01": "Labour Day", + "1979-07-25": "Commemoration of the Assault of the Moncada garrison", + "1979-07-26": "Day of the National Rebellion", + "1979-07-27": "Commemoration of the Assault of the Moncada garrison", + "1979-10-10": "Independence Day", + "1980-01-01": "Liberation Day", + "1980-05-01": "Labour Day", + "1980-07-25": "Commemoration of the Assault of the Moncada garrison", + "1980-07-26": "Day of the National Rebellion", + "1980-07-27": "Commemoration of the Assault of the Moncada garrison", + "1980-10-10": "Independence Day", + "1981-01-01": "Liberation Day", + "1981-05-01": "Labour Day", + "1981-07-25": "Commemoration of the Assault of the Moncada garrison", + "1981-07-26": "Day of the National Rebellion", + "1981-07-27": "Commemoration of the Assault of the Moncada garrison", + "1981-10-10": "Independence Day", + "1982-01-01": "Liberation Day", + "1982-05-01": "Labour Day", + "1982-07-25": "Commemoration of the Assault of the Moncada garrison", + "1982-07-26": "Day of the National Rebellion", + "1982-07-27": "Commemoration of the Assault of the Moncada garrison", + "1982-10-10": "Independence Day", + "1982-10-11": "Independence Day (Observed)", + "1983-01-01": "Liberation Day", + "1983-05-01": "Labour Day", + "1983-05-02": "Labour Day (Observed)", + "1983-07-25": "Commemoration of the Assault of the Moncada garrison", + "1983-07-26": "Day of the National Rebellion", + "1983-07-27": "Commemoration of the Assault of the Moncada garrison", + "1983-10-10": "Independence Day", + "1984-01-01": "Liberation Day", + "1984-01-02": "Liberation Day (Observed)", + "1984-05-01": "Labour Day", + "1984-07-25": "Commemoration of the Assault of the Moncada garrison", + "1984-07-26": "Day of the National Rebellion", + "1984-07-27": "Commemoration of the Assault of the Moncada garrison", + "1984-10-10": "Independence Day", + "1985-01-01": "Liberation Day", + "1985-05-01": "Labour Day", + "1985-07-25": "Commemoration of the Assault of the Moncada garrison", + "1985-07-26": "Day of the National Rebellion", + "1985-07-27": "Commemoration of the Assault of the Moncada garrison", + "1985-10-10": "Independence Day", + "1986-01-01": "Liberation Day", + "1986-05-01": "Labour Day", + "1986-07-25": "Commemoration of the Assault of the Moncada garrison", + "1986-07-26": "Day of the National Rebellion", + "1986-07-27": "Commemoration of the Assault of the Moncada garrison", + "1986-10-10": "Independence Day", + "1987-01-01": "Liberation Day", + "1987-05-01": "Labour Day", + "1987-07-25": "Commemoration of the Assault of the Moncada garrison", + "1987-07-26": "Day of the National Rebellion", + "1987-07-27": "Commemoration of the Assault of the Moncada garrison", + "1987-10-10": "Independence Day", + "1988-01-01": "Liberation Day", + "1988-05-01": "Labour Day", + "1988-05-02": "Labour Day (Observed)", + "1988-07-25": "Commemoration of the Assault of the Moncada garrison", + "1988-07-26": "Day of the National Rebellion", + "1988-07-27": "Commemoration of the Assault of the Moncada garrison", + "1988-10-10": "Independence Day", + "1989-01-01": "Liberation Day", + "1989-01-02": "Liberation Day (Observed)", + "1989-05-01": "Labour Day", + "1989-07-25": "Commemoration of the Assault of the Moncada garrison", + "1989-07-26": "Day of the National Rebellion", + "1989-07-27": "Commemoration of the Assault of the Moncada garrison", + "1989-10-10": "Independence Day", + "1990-01-01": "Liberation Day", + "1990-05-01": "Labour Day", + "1990-07-25": "Commemoration of the Assault of the Moncada garrison", + "1990-07-26": "Day of the National Rebellion", + "1990-07-27": "Commemoration of the Assault of the Moncada garrison", + "1990-10-10": "Independence Day", + "1991-01-01": "Liberation Day", + "1991-05-01": "Labour Day", + "1991-07-25": "Commemoration of the Assault of the Moncada garrison", + "1991-07-26": "Day of the National Rebellion", + "1991-07-27": "Commemoration of the Assault of the Moncada garrison", + "1991-10-10": "Independence Day", + "1992-01-01": "Liberation Day", + "1992-05-01": "Labour Day", + "1992-07-25": "Commemoration of the Assault of the Moncada garrison", + "1992-07-26": "Day of the National Rebellion", + "1992-07-27": "Commemoration of the Assault of the Moncada garrison", + "1992-10-10": "Independence Day", + "1993-01-01": "Liberation Day", + "1993-05-01": "Labour Day", + "1993-07-25": "Commemoration of the Assault of the Moncada garrison", + "1993-07-26": "Day of the National Rebellion", + "1993-07-27": "Commemoration of the Assault of the Moncada garrison", + "1993-10-10": "Independence Day", + "1993-10-11": "Independence Day (Observed)", + "1994-01-01": "Liberation Day", + "1994-05-01": "Labour Day", + "1994-05-02": "Labour Day (Observed)", + "1994-07-25": "Commemoration of the Assault of the Moncada garrison", + "1994-07-26": "Day of the National Rebellion", + "1994-07-27": "Commemoration of the Assault of the Moncada garrison", + "1994-10-10": "Independence Day", + "1995-01-01": "Liberation Day", + "1995-01-02": "Liberation Day (Observed)", + "1995-05-01": "Labour Day", + "1995-07-25": "Commemoration of the Assault of the Moncada garrison", + "1995-07-26": "Day of the National Rebellion", + "1995-07-27": "Commemoration of the Assault of the Moncada garrison", + "1995-10-10": "Independence Day", + "1996-01-01": "Liberation Day", + "1996-05-01": "Labour Day", + "1996-07-25": "Commemoration of the Assault of the Moncada garrison", + "1996-07-26": "Day of the National Rebellion", + "1996-07-27": "Commemoration of the Assault of the Moncada garrison", + "1996-10-10": "Independence Day", + "1997-01-01": "Liberation Day", + "1997-05-01": "Labour Day", + "1997-07-25": "Commemoration of the Assault of the Moncada garrison", + "1997-07-26": "Day of the National Rebellion", + "1997-07-27": "Commemoration of the Assault of the Moncada garrison", + "1997-10-10": "Independence Day", + "1997-12-25": "Christmas Day", + "1998-01-01": "Liberation Day", + "1998-05-01": "Labour Day", + "1998-07-25": "Commemoration of the Assault of the Moncada garrison", + "1998-07-26": "Day of the National Rebellion", + "1998-07-27": "Commemoration of the Assault of the Moncada garrison", + "1998-10-10": "Independence Day", + "1998-12-25": "Christmas Day", + "1999-01-01": "Liberation Day", + "1999-05-01": "Labour Day", + "1999-07-25": "Commemoration of the Assault of the Moncada garrison", + "1999-07-26": "Day of the National Rebellion", + "1999-07-27": "Commemoration of the Assault of the Moncada garrison", + "1999-10-10": "Independence Day", + "1999-10-11": "Independence Day (Observed)", + "1999-12-25": "Christmas Day", + "2000-01-01": "Liberation Day", + "2000-05-01": "Labour Day", + "2000-07-25": "Commemoration of the Assault of the Moncada garrison", + "2000-07-26": "Day of the National Rebellion", + "2000-07-27": "Commemoration of the Assault of the Moncada garrison", + "2000-10-10": "Independence Day", + "2000-12-25": "Christmas Day", + "2001-01-01": "Liberation Day", + "2001-05-01": "Labour Day", + "2001-07-25": "Commemoration of the Assault of the Moncada garrison", + "2001-07-26": "Day of the National Rebellion", + "2001-07-27": "Commemoration of the Assault of the Moncada garrison", + "2001-10-10": "Independence Day", + "2001-12-25": "Christmas Day", + "2002-01-01": "Liberation Day", + "2002-05-01": "Labour Day", + "2002-07-25": "Commemoration of the Assault of the Moncada garrison", + "2002-07-26": "Day of the National Rebellion", + "2002-07-27": "Commemoration of the Assault of the Moncada garrison", + "2002-10-10": "Independence Day", + "2002-12-25": "Christmas Day", + "2003-01-01": "Liberation Day", + "2003-05-01": "Labour Day", + "2003-07-25": "Commemoration of the Assault of the Moncada garrison", + "2003-07-26": "Day of the National Rebellion", + "2003-07-27": "Commemoration of the Assault of the Moncada garrison", + "2003-10-10": "Independence Day", + "2003-12-25": "Christmas Day", + "2004-01-01": "Liberation Day", + "2004-05-01": "Labour Day", + "2004-07-25": "Commemoration of the Assault of the Moncada garrison", + "2004-07-26": "Day of the National Rebellion", + "2004-07-27": "Commemoration of the Assault of the Moncada garrison", + "2004-10-10": "Independence Day", + "2004-10-11": "Independence Day (Observed)", + "2004-12-25": "Christmas Day", + "2005-01-01": "Liberation Day", + "2005-05-01": "Labour Day", + "2005-05-02": "Labour Day (Observed)", + "2005-07-25": "Commemoration of the Assault of the Moncada garrison", + "2005-07-26": "Day of the National Rebellion", + "2005-07-27": "Commemoration of the Assault of the Moncada garrison", + "2005-10-10": "Independence Day", + "2005-12-25": "Christmas Day", + "2006-01-01": "Liberation Day", + "2006-01-02": "Liberation Day (Observed)", + "2006-05-01": "Labour Day", + "2006-07-25": "Commemoration of the Assault of the Moncada garrison", + "2006-07-26": "Day of the National Rebellion", + "2006-07-27": "Commemoration of the Assault of the Moncada garrison", + "2006-10-10": "Independence Day", + "2006-12-25": "Christmas Day", + "2007-01-01": "Liberation Day", + "2007-05-01": "Labour Day", + "2007-07-25": "Commemoration of the Assault of the Moncada garrison", + "2007-07-26": "Day of the National Rebellion", + "2007-07-27": "Commemoration of the Assault of the Moncada garrison", + "2007-10-10": "Independence Day", + "2007-12-25": "Christmas Day", + "2007-12-31": "New Year's Eve", + "2008-01-01": "Liberation Day", + "2008-01-02": "Victory Day", + "2008-05-01": "Labour Day", + "2008-07-25": "Commemoration of the Assault of the Moncada garrison", + "2008-07-26": "Day of the National Rebellion", + "2008-07-27": "Commemoration of the Assault of the Moncada garrison", + "2008-10-10": "Independence Day", + "2008-12-25": "Christmas Day", + "2008-12-31": "New Year's Eve", + "2009-01-01": "Liberation Day", + "2009-01-02": "Victory Day", + "2009-05-01": "Labour Day", + "2009-07-25": "Commemoration of the Assault of the Moncada garrison", + "2009-07-26": "Day of the National Rebellion", + "2009-07-27": "Commemoration of the Assault of the Moncada garrison", + "2009-10-10": "Independence Day", + "2009-12-25": "Christmas Day", + "2009-12-31": "New Year's Eve", + "2010-01-01": "Liberation Day", + "2010-01-02": "Victory Day", + "2010-05-01": "Labour Day", + "2010-07-25": "Commemoration of the Assault of the Moncada garrison", + "2010-07-26": "Day of the National Rebellion", + "2010-07-27": "Commemoration of the Assault of the Moncada garrison", + "2010-10-10": "Independence Day", + "2010-10-11": "Independence Day (Observed)", + "2010-12-25": "Christmas Day", + "2010-12-31": "New Year's Eve", + "2011-01-01": "Liberation Day", + "2011-01-02": "Victory Day", + "2011-05-01": "Labour Day", + "2011-05-02": "Labour Day (Observed)", + "2011-07-25": "Commemoration of the Assault of the Moncada garrison", + "2011-07-26": "Day of the National Rebellion", + "2011-07-27": "Commemoration of the Assault of the Moncada garrison", + "2011-10-10": "Independence Day", + "2011-12-25": "Christmas Day", + "2011-12-31": "New Year's Eve", + "2012-01-01": "Liberation Day", + "2012-01-02": "Liberation Day (Observed); Victory Day", + "2012-04-06": "Good Friday", + "2012-05-01": "Labour Day", + "2012-07-25": "Commemoration of the Assault of the Moncada garrison", + "2012-07-26": "Day of the National Rebellion", + "2012-07-27": "Commemoration of the Assault of the Moncada garrison", + "2012-10-10": "Independence Day", + "2012-12-25": "Christmas Day", + "2012-12-31": "New Year's Eve", + "2013-01-01": "Liberation Day", + "2013-01-02": "Victory Day", + "2013-03-29": "Good Friday", + "2013-05-01": "Labour Day", + "2013-07-25": "Commemoration of the Assault of the Moncada garrison", + "2013-07-26": "Day of the National Rebellion", + "2013-07-27": "Commemoration of the Assault of the Moncada garrison", + "2013-10-10": "Independence Day", + "2013-12-25": "Christmas Day", + "2013-12-31": "New Year's Eve", + "2014-01-01": "Liberation Day", + "2014-01-02": "Victory Day", + "2014-04-18": "Good Friday", + "2014-05-01": "Labour Day", + "2014-07-25": "Commemoration of the Assault of the Moncada garrison", + "2014-07-26": "Day of the National Rebellion", + "2014-07-27": "Commemoration of the Assault of the Moncada garrison", + "2014-10-10": "Independence Day", + "2014-12-25": "Christmas Day", + "2014-12-31": "New Year's Eve", + "2015-01-01": "Liberation Day", + "2015-01-02": "Victory Day", + "2015-04-03": "Good Friday", + "2015-05-01": "Labour Day", + "2015-07-25": "Commemoration of the Assault of the Moncada garrison", + "2015-07-26": "Day of the National Rebellion", + "2015-07-27": "Commemoration of the Assault of the Moncada garrison", + "2015-10-10": "Independence Day", + "2015-12-25": "Christmas Day", + "2015-12-31": "New Year's Eve", + "2016-01-01": "Liberation Day", + "2016-01-02": "Victory Day", + "2016-03-25": "Good Friday", + "2016-05-01": "Labour Day", + "2016-05-02": "Labour Day (Observed)", + "2016-07-25": "Commemoration of the Assault of the Moncada garrison", + "2016-07-26": "Day of the National Rebellion", + "2016-07-27": "Commemoration of the Assault of the Moncada garrison", + "2016-10-10": "Independence Day", + "2016-12-25": "Christmas Day", + "2016-12-31": "New Year's Eve", + "2017-01-01": "Liberation Day", + "2017-01-02": "Victory Day", + "2017-04-14": "Good Friday", + "2017-05-01": "Labour Day", + "2017-07-25": "Commemoration of the Assault of the Moncada garrison", + "2017-07-26": "Day of the National Rebellion", + "2017-07-27": "Commemoration of the Assault of the Moncada garrison", + "2017-10-10": "Independence Day", + "2017-12-25": "Christmas Day", + "2017-12-31": "New Year's Eve", + "2018-01-01": "Liberation Day", + "2018-01-02": "Victory Day", + "2018-03-30": "Good Friday", + "2018-05-01": "Labour Day", + "2018-07-25": "Commemoration of the Assault of the Moncada garrison", + "2018-07-26": "Day of the National Rebellion", + "2018-07-27": "Commemoration of the Assault of the Moncada garrison", + "2018-10-10": "Independence Day", + "2018-12-25": "Christmas Day", + "2018-12-31": "New Year's Eve", + "2019-01-01": "Liberation Day", + "2019-01-02": "Victory Day", + "2019-04-19": "Good Friday", + "2019-05-01": "Labour Day", + "2019-07-25": "Commemoration of the Assault of the Moncada garrison", + "2019-07-26": "Day of the National Rebellion", + "2019-07-27": "Commemoration of the Assault of the Moncada garrison", + "2019-10-10": "Independence Day", + "2019-12-25": "Christmas Day", + "2019-12-31": "New Year's Eve", + "2020-01-01": "Liberation Day", + "2020-01-02": "Victory Day", + "2020-04-10": "Good Friday", + "2020-05-01": "Labour Day", + "2020-07-25": "Commemoration of the Assault of the Moncada garrison", + "2020-07-26": "Day of the National Rebellion", + "2020-07-27": "Commemoration of the Assault of the Moncada garrison", + "2020-10-10": "Independence Day", + "2020-12-25": "Christmas Day", + "2020-12-31": "New Year's Eve", + "2021-01-01": "Liberation Day", + "2021-01-02": "Victory Day", + "2021-04-02": "Good Friday", + "2021-05-01": "Labour Day", + "2021-07-25": "Commemoration of the Assault of the Moncada garrison", + "2021-07-26": "Day of the National Rebellion", + "2021-07-27": "Commemoration of the Assault of the Moncada garrison", + "2021-10-10": "Independence Day", + "2021-10-11": "Independence Day (Observed)", + "2021-12-25": "Christmas Day", + "2021-12-31": "New Year's Eve", + "2022-01-01": "Liberation Day", + "2022-01-02": "Victory Day", + "2022-04-15": "Good Friday", + "2022-05-01": "Labour Day", + "2022-05-02": "Labour Day (Observed)", + "2022-07-25": "Commemoration of the Assault of the Moncada garrison", + "2022-07-26": "Day of the National Rebellion", + "2022-07-27": "Commemoration of the Assault of the Moncada garrison", + "2022-10-10": "Independence Day", + "2022-12-25": "Christmas Day", + "2022-12-31": "New Year's Eve", + "2023-01-01": "Liberation Day", + "2023-01-02": "Victory Day", + "2023-04-07": "Good Friday", + "2023-05-01": "Labour Day", + "2023-07-25": "Commemoration of the Assault of the Moncada garrison", + "2023-07-26": "Day of the National Rebellion", + "2023-07-27": "Commemoration of the Assault of the Moncada garrison", + "2023-10-10": "Independence Day", + "2023-12-25": "Christmas Day", + "2023-12-31": "New Year's Eve", + "2024-01-01": "Liberation Day", + "2024-01-02": "Victory Day", + "2024-03-29": "Good Friday", + "2024-05-01": "Labour Day", + "2024-07-25": "Commemoration of the Assault of the Moncada garrison", + "2024-07-26": "Day of the National Rebellion", + "2024-07-27": "Commemoration of the Assault of the Moncada garrison", + "2024-10-10": "Independence Day", + "2024-12-25": "Christmas Day", + "2024-12-31": "New Year's Eve", + "2025-01-01": "Liberation Day", + "2025-01-02": "Victory Day", + "2025-04-18": "Good Friday", + "2025-05-01": "Labour Day", + "2025-07-25": "Commemoration of the Assault of the Moncada garrison", + "2025-07-26": "Day of the National Rebellion", + "2025-07-27": "Commemoration of the Assault of the Moncada garrison", + "2025-10-10": "Independence Day", + "2025-12-25": "Christmas Day", + "2025-12-31": "New Year's Eve", + "2026-01-01": "Liberation Day", + "2026-01-02": "Victory Day", + "2026-04-03": "Good Friday", + "2026-05-01": "Labour Day", + "2026-07-25": "Commemoration of the Assault of the Moncada garrison", + "2026-07-26": "Day of the National Rebellion", + "2026-07-27": "Commemoration of the Assault of the Moncada garrison", + "2026-10-10": "Independence Day", + "2026-12-25": "Christmas Day", + "2026-12-31": "New Year's Eve", + "2027-01-01": "Liberation Day", + "2027-01-02": "Victory Day", + "2027-03-26": "Good Friday", + "2027-05-01": "Labour Day", + "2027-07-25": "Commemoration of the Assault of the Moncada garrison", + "2027-07-26": "Day of the National Rebellion", + "2027-07-27": "Commemoration of the Assault of the Moncada garrison", + "2027-10-10": "Independence Day", + "2027-10-11": "Independence Day (Observed)", + "2027-12-25": "Christmas Day", + "2027-12-31": "New Year's Eve", + "2028-01-01": "Liberation Day", + "2028-01-02": "Victory Day", + "2028-04-14": "Good Friday", + "2028-05-01": "Labour Day", + "2028-07-25": "Commemoration of the Assault of the Moncada garrison", + "2028-07-26": "Day of the National Rebellion", + "2028-07-27": "Commemoration of the Assault of the Moncada garrison", + "2028-10-10": "Independence Day", + "2028-12-25": "Christmas Day", + "2028-12-31": "New Year's Eve", + "2029-01-01": "Liberation Day", + "2029-01-02": "Victory Day", + "2029-03-30": "Good Friday", + "2029-05-01": "Labour Day", + "2029-07-25": "Commemoration of the Assault of the Moncada garrison", + "2029-07-26": "Day of the National Rebellion", + "2029-07-27": "Commemoration of the Assault of the Moncada garrison", + "2029-10-10": "Independence Day", + "2029-12-25": "Christmas Day", + "2029-12-31": "New Year's Eve", + "2030-01-01": "Liberation Day", + "2030-01-02": "Victory Day", + "2030-04-19": "Good Friday", + "2030-05-01": "Labour Day", + "2030-07-25": "Commemoration of the Assault of the Moncada garrison", + "2030-07-26": "Day of the National Rebellion", + "2030-07-27": "Commemoration of the Assault of the Moncada garrison", + "2030-10-10": "Independence Day", + "2030-12-25": "Christmas Day", + "2030-12-31": "New Year's Eve", + "2031-01-01": "Liberation Day", + "2031-01-02": "Victory Day", + "2031-04-11": "Good Friday", + "2031-05-01": "Labour Day", + "2031-07-25": "Commemoration of the Assault of the Moncada garrison", + "2031-07-26": "Day of the National Rebellion", + "2031-07-27": "Commemoration of the Assault of the Moncada garrison", + "2031-10-10": "Independence Day", + "2031-12-25": "Christmas Day", + "2031-12-31": "New Year's Eve", + "2032-01-01": "Liberation Day", + "2032-01-02": "Victory Day", + "2032-03-26": "Good Friday", + "2032-05-01": "Labour Day", + "2032-07-25": "Commemoration of the Assault of the Moncada garrison", + "2032-07-26": "Day of the National Rebellion", + "2032-07-27": "Commemoration of the Assault of the Moncada garrison", + "2032-10-10": "Independence Day", + "2032-10-11": "Independence Day (Observed)", + "2032-12-25": "Christmas Day", + "2032-12-31": "New Year's Eve", + "2033-01-01": "Liberation Day", + "2033-01-02": "Victory Day", + "2033-04-15": "Good Friday", + "2033-05-01": "Labour Day", + "2033-05-02": "Labour Day (Observed)", + "2033-07-25": "Commemoration of the Assault of the Moncada garrison", + "2033-07-26": "Day of the National Rebellion", + "2033-07-27": "Commemoration of the Assault of the Moncada garrison", + "2033-10-10": "Independence Day", + "2033-12-25": "Christmas Day", + "2033-12-31": "New Year's Eve", + "2034-01-01": "Liberation Day", + "2034-01-02": "Victory Day", + "2034-04-07": "Good Friday", + "2034-05-01": "Labour Day", + "2034-07-25": "Commemoration of the Assault of the Moncada garrison", + "2034-07-26": "Day of the National Rebellion", + "2034-07-27": "Commemoration of the Assault of the Moncada garrison", + "2034-10-10": "Independence Day", + "2034-12-25": "Christmas Day", + "2034-12-31": "New Year's Eve", + "2035-01-01": "Liberation Day", + "2035-01-02": "Victory Day", + "2035-03-23": "Good Friday", + "2035-05-01": "Labour Day", + "2035-07-25": "Commemoration of the Assault of the Moncada garrison", + "2035-07-26": "Day of the National Rebellion", + "2035-07-27": "Commemoration of the Assault of the Moncada garrison", + "2035-10-10": "Independence Day", + "2035-12-25": "Christmas Day", + "2035-12-31": "New Year's Eve", + "2036-01-01": "Liberation Day", + "2036-01-02": "Victory Day", + "2036-04-11": "Good Friday", + "2036-05-01": "Labour Day", + "2036-07-25": "Commemoration of the Assault of the Moncada garrison", + "2036-07-26": "Day of the National Rebellion", + "2036-07-27": "Commemoration of the Assault of the Moncada garrison", + "2036-10-10": "Independence Day", + "2036-12-25": "Christmas Day", + "2036-12-31": "New Year's Eve", + "2037-01-01": "Liberation Day", + "2037-01-02": "Victory Day", + "2037-04-03": "Good Friday", + "2037-05-01": "Labour Day", + "2037-07-25": "Commemoration of the Assault of the Moncada garrison", + "2037-07-26": "Day of the National Rebellion", + "2037-07-27": "Commemoration of the Assault of the Moncada garrison", + "2037-10-10": "Independence Day", + "2037-12-25": "Christmas Day", + "2037-12-31": "New Year's Eve", + "2038-01-01": "Liberation Day", + "2038-01-02": "Victory Day", + "2038-04-23": "Good Friday", + "2038-05-01": "Labour Day", + "2038-07-25": "Commemoration of the Assault of the Moncada garrison", + "2038-07-26": "Day of the National Rebellion", + "2038-07-27": "Commemoration of the Assault of the Moncada garrison", + "2038-10-10": "Independence Day", + "2038-10-11": "Independence Day (Observed)", + "2038-12-25": "Christmas Day", + "2038-12-31": "New Year's Eve", + "2039-01-01": "Liberation Day", + "2039-01-02": "Victory Day", + "2039-04-08": "Good Friday", + "2039-05-01": "Labour Day", + "2039-05-02": "Labour Day (Observed)", + "2039-07-25": "Commemoration of the Assault of the Moncada garrison", + "2039-07-26": "Day of the National Rebellion", + "2039-07-27": "Commemoration of the Assault of the Moncada garrison", + "2039-10-10": "Independence Day", + "2039-12-25": "Christmas Day", + "2039-12-31": "New Year's Eve", + "2040-01-01": "Liberation Day", + "2040-01-02": "Victory Day", + "2040-03-30": "Good Friday", + "2040-05-01": "Labour Day", + "2040-07-25": "Commemoration of the Assault of the Moncada garrison", + "2040-07-26": "Day of the National Rebellion", + "2040-07-27": "Commemoration of the Assault of the Moncada garrison", + "2040-10-10": "Independence Day", + "2040-12-25": "Christmas Day", + "2040-12-31": "New Year's Eve", + "2041-01-01": "Liberation Day", + "2041-01-02": "Victory Day", + "2041-04-19": "Good Friday", + "2041-05-01": "Labour Day", + "2041-07-25": "Commemoration of the Assault of the Moncada garrison", + "2041-07-26": "Day of the National Rebellion", + "2041-07-27": "Commemoration of the Assault of the Moncada garrison", + "2041-10-10": "Independence Day", + "2041-12-25": "Christmas Day", + "2041-12-31": "New Year's Eve", + "2042-01-01": "Liberation Day", + "2042-01-02": "Victory Day", + "2042-04-04": "Good Friday", + "2042-05-01": "Labour Day", + "2042-07-25": "Commemoration of the Assault of the Moncada garrison", + "2042-07-26": "Day of the National Rebellion", + "2042-07-27": "Commemoration of the Assault of the Moncada garrison", + "2042-10-10": "Independence Day", + "2042-12-25": "Christmas Day", + "2042-12-31": "New Year's Eve", + "2043-01-01": "Liberation Day", + "2043-01-02": "Victory Day", + "2043-03-27": "Good Friday", + "2043-05-01": "Labour Day", + "2043-07-25": "Commemoration of the Assault of the Moncada garrison", + "2043-07-26": "Day of the National Rebellion", + "2043-07-27": "Commemoration of the Assault of the Moncada garrison", + "2043-10-10": "Independence Day", + "2043-12-25": "Christmas Day", + "2043-12-31": "New Year's Eve", + "2044-01-01": "Liberation Day", + "2044-01-02": "Victory Day", + "2044-04-15": "Good Friday", + "2044-05-01": "Labour Day", + "2044-05-02": "Labour Day (Observed)", + "2044-07-25": "Commemoration of the Assault of the Moncada garrison", + "2044-07-26": "Day of the National Rebellion", + "2044-07-27": "Commemoration of the Assault of the Moncada garrison", + "2044-10-10": "Independence Day", + "2044-12-25": "Christmas Day", + "2044-12-31": "New Year's Eve", + "2045-01-01": "Liberation Day", + "2045-01-02": "Victory Day", + "2045-04-07": "Good Friday", + "2045-05-01": "Labour Day", + "2045-07-25": "Commemoration of the Assault of the Moncada garrison", + "2045-07-26": "Day of the National Rebellion", + "2045-07-27": "Commemoration of the Assault of the Moncada garrison", + "2045-10-10": "Independence Day", + "2045-12-25": "Christmas Day", + "2045-12-31": "New Year's Eve", + "2046-01-01": "Liberation Day", + "2046-01-02": "Victory Day", + "2046-03-23": "Good Friday", + "2046-05-01": "Labour Day", + "2046-07-25": "Commemoration of the Assault of the Moncada garrison", + "2046-07-26": "Day of the National Rebellion", + "2046-07-27": "Commemoration of the Assault of the Moncada garrison", + "2046-10-10": "Independence Day", + "2046-12-25": "Christmas Day", + "2046-12-31": "New Year's Eve", + "2047-01-01": "Liberation Day", + "2047-01-02": "Victory Day", + "2047-04-12": "Good Friday", + "2047-05-01": "Labour Day", + "2047-07-25": "Commemoration of the Assault of the Moncada garrison", + "2047-07-26": "Day of the National Rebellion", + "2047-07-27": "Commemoration of the Assault of the Moncada garrison", + "2047-10-10": "Independence Day", + "2047-12-25": "Christmas Day", + "2047-12-31": "New Year's Eve", + "2048-01-01": "Liberation Day", + "2048-01-02": "Victory Day", + "2048-04-03": "Good Friday", + "2048-05-01": "Labour Day", + "2048-07-25": "Commemoration of the Assault of the Moncada garrison", + "2048-07-26": "Day of the National Rebellion", + "2048-07-27": "Commemoration of the Assault of the Moncada garrison", + "2048-10-10": "Independence Day", + "2048-12-25": "Christmas Day", + "2048-12-31": "New Year's Eve", + "2049-01-01": "Liberation Day", + "2049-01-02": "Victory Day", + "2049-04-16": "Good Friday", + "2049-05-01": "Labour Day", + "2049-07-25": "Commemoration of the Assault of the Moncada garrison", + "2049-07-26": "Day of the National Rebellion", + "2049-07-27": "Commemoration of the Assault of the Moncada garrison", + "2049-10-10": "Independence Day", + "2049-10-11": "Independence Day (Observed)", + "2049-12-25": "Christmas Day", + "2049-12-31": "New Year's Eve", + "2050-01-01": "Liberation Day", + "2050-01-02": "Victory Day", + "2050-04-08": "Good Friday", + "2050-05-01": "Labour Day", + "2050-05-02": "Labour Day (Observed)", + "2050-07-25": "Commemoration of the Assault of the Moncada garrison", + "2050-07-26": "Day of the National Rebellion", + "2050-07-27": "Commemoration of the Assault of the Moncada garrison", + "2050-10-10": "Independence Day", + "2050-12-25": "Christmas Day", + "2050-12-31": "New Year's Eve" +} diff --git a/snapshots/countries/CW.json b/snapshots/countries/CW.json new file mode 100644 index 000000000..817d7b6c1 --- /dev/null +++ b/snapshots/countries/CW.json @@ -0,0 +1,1079 @@ +{ + "1954-01-01": "New Year's Day", + "1954-03-01": "Carnival Monday", + "1954-04-16": "Good Friday", + "1954-04-18": "Easter Sunday", + "1954-04-19": "Easter Monday", + "1954-04-30": "Queen's Day", + "1954-05-01": "Labor Day", + "1954-05-27": "Ascension Day", + "1954-12-25": "Christmas Day", + "1954-12-26": "Second Day of Christmas", + "1955-01-01": "New Year's Day", + "1955-02-21": "Carnival Monday", + "1955-04-08": "Good Friday", + "1955-04-10": "Easter Sunday", + "1955-04-11": "Easter Monday", + "1955-04-30": "Queen's Day", + "1955-05-02": "Labor Day", + "1955-05-19": "Ascension Day", + "1955-12-25": "Christmas Day", + "1955-12-26": "Second Day of Christmas", + "1956-01-01": "New Year's Day", + "1956-02-13": "Carnival Monday", + "1956-03-30": "Good Friday", + "1956-04-01": "Easter Sunday", + "1956-04-02": "Easter Monday", + "1956-04-30": "Queen's Day", + "1956-05-01": "Labor Day", + "1956-05-10": "Ascension Day", + "1956-12-25": "Christmas Day", + "1956-12-26": "Second Day of Christmas", + "1957-01-01": "New Year's Day", + "1957-03-04": "Carnival Monday", + "1957-04-19": "Good Friday", + "1957-04-21": "Easter Sunday", + "1957-04-22": "Easter Monday", + "1957-04-30": "Queen's Day", + "1957-05-01": "Labor Day", + "1957-05-30": "Ascension Day", + "1957-12-25": "Christmas Day", + "1957-12-26": "Second Day of Christmas", + "1958-01-01": "New Year's Day", + "1958-02-17": "Carnival Monday", + "1958-04-04": "Good Friday", + "1958-04-06": "Easter Sunday", + "1958-04-07": "Easter Monday", + "1958-04-30": "Queen's Day", + "1958-05-01": "Labor Day", + "1958-05-15": "Ascension Day", + "1958-12-25": "Christmas Day", + "1958-12-26": "Second Day of Christmas", + "1959-01-01": "New Year's Day", + "1959-02-09": "Carnival Monday", + "1959-03-27": "Good Friday", + "1959-03-29": "Easter Sunday", + "1959-03-30": "Easter Monday", + "1959-04-30": "Queen's Day", + "1959-05-01": "Labor Day", + "1959-05-07": "Ascension Day", + "1959-12-25": "Christmas Day", + "1959-12-26": "Second Day of Christmas", + "1960-01-01": "New Year's Day", + "1960-02-29": "Carnival Monday", + "1960-04-15": "Good Friday", + "1960-04-17": "Easter Sunday", + "1960-04-18": "Easter Monday", + "1960-04-30": "Queen's Day", + "1960-05-02": "Labor Day", + "1960-05-26": "Ascension Day", + "1960-12-25": "Christmas Day", + "1960-12-26": "Second Day of Christmas", + "1961-01-01": "New Year's Day", + "1961-02-13": "Carnival Monday", + "1961-03-31": "Good Friday", + "1961-04-02": "Easter Sunday", + "1961-04-03": "Easter Monday", + "1961-05-01": "Queen's Day", + "1961-05-02": "Labor Day", + "1961-05-11": "Ascension Day", + "1961-12-25": "Christmas Day", + "1961-12-26": "Second Day of Christmas", + "1962-01-01": "New Year's Day", + "1962-03-05": "Carnival Monday", + "1962-04-20": "Good Friday", + "1962-04-22": "Easter Sunday", + "1962-04-23": "Easter Monday", + "1962-04-30": "Queen's Day", + "1962-05-01": "Labor Day", + "1962-05-31": "Ascension Day", + "1962-12-25": "Christmas Day", + "1962-12-26": "Second Day of Christmas", + "1963-01-01": "New Year's Day", + "1963-02-25": "Carnival Monday", + "1963-04-12": "Good Friday", + "1963-04-14": "Easter Sunday", + "1963-04-15": "Easter Monday", + "1963-04-30": "Queen's Day", + "1963-05-01": "Labor Day", + "1963-05-23": "Ascension Day", + "1963-12-25": "Christmas Day", + "1963-12-26": "Second Day of Christmas", + "1964-01-01": "New Year's Day", + "1964-02-10": "Carnival Monday", + "1964-03-27": "Good Friday", + "1964-03-29": "Easter Sunday", + "1964-03-30": "Easter Monday", + "1964-04-30": "Queen's Day", + "1964-05-01": "Labor Day", + "1964-05-07": "Ascension Day", + "1964-12-25": "Christmas Day", + "1964-12-26": "Second Day of Christmas", + "1965-01-01": "New Year's Day", + "1965-03-01": "Carnival Monday", + "1965-04-16": "Good Friday", + "1965-04-18": "Easter Sunday", + "1965-04-19": "Easter Monday", + "1965-04-30": "Queen's Day", + "1965-05-01": "Labor Day", + "1965-05-27": "Ascension Day", + "1965-12-25": "Christmas Day", + "1965-12-26": "Second Day of Christmas", + "1966-01-01": "New Year's Day", + "1966-02-21": "Carnival Monday", + "1966-04-08": "Good Friday", + "1966-04-10": "Easter Sunday", + "1966-04-11": "Easter Monday", + "1966-04-30": "Queen's Day", + "1966-05-02": "Labor Day", + "1966-05-19": "Ascension Day", + "1966-12-25": "Christmas Day", + "1966-12-26": "Second Day of Christmas", + "1967-01-01": "New Year's Day", + "1967-02-06": "Carnival Monday", + "1967-03-24": "Good Friday", + "1967-03-26": "Easter Sunday", + "1967-03-27": "Easter Monday", + "1967-05-01": "Queen's Day", + "1967-05-02": "Labor Day", + "1967-05-04": "Ascension Day", + "1967-12-25": "Christmas Day", + "1967-12-26": "Second Day of Christmas", + "1968-01-01": "New Year's Day", + "1968-02-26": "Carnival Monday", + "1968-04-12": "Good Friday", + "1968-04-14": "Easter Sunday", + "1968-04-15": "Easter Monday", + "1968-04-30": "Queen's Day", + "1968-05-01": "Labor Day", + "1968-05-23": "Ascension Day", + "1968-12-25": "Christmas Day", + "1968-12-26": "Second Day of Christmas", + "1969-01-01": "New Year's Day", + "1969-02-17": "Carnival Monday", + "1969-04-04": "Good Friday", + "1969-04-06": "Easter Sunday", + "1969-04-07": "Easter Monday", + "1969-04-30": "Queen's Day", + "1969-05-01": "Labor Day", + "1969-05-15": "Ascension Day", + "1969-12-25": "Christmas Day", + "1969-12-26": "Second Day of Christmas", + "1970-01-01": "New Year's Day", + "1970-02-09": "Carnival Monday", + "1970-03-27": "Good Friday", + "1970-03-29": "Easter Sunday", + "1970-03-30": "Easter Monday", + "1970-04-30": "Queen's Day", + "1970-05-01": "Labor Day", + "1970-05-07": "Ascension Day", + "1970-12-25": "Christmas Day", + "1970-12-26": "Second Day of Christmas", + "1971-01-01": "New Year's Day", + "1971-02-22": "Carnival Monday", + "1971-04-09": "Good Friday", + "1971-04-11": "Easter Sunday", + "1971-04-12": "Easter Monday", + "1971-04-30": "Queen's Day", + "1971-05-01": "Labor Day", + "1971-05-20": "Ascension Day", + "1971-12-25": "Christmas Day", + "1971-12-26": "Second Day of Christmas", + "1972-01-01": "New Year's Day", + "1972-02-14": "Carnival Monday", + "1972-03-31": "Good Friday", + "1972-04-02": "Easter Sunday", + "1972-04-03": "Easter Monday", + "1972-05-01": "Queen's Day", + "1972-05-02": "Labor Day", + "1972-05-11": "Ascension Day", + "1972-12-25": "Christmas Day", + "1972-12-26": "Second Day of Christmas", + "1973-01-01": "New Year's Day", + "1973-03-05": "Carnival Monday", + "1973-04-20": "Good Friday", + "1973-04-22": "Easter Sunday", + "1973-04-23": "Easter Monday", + "1973-04-30": "Queen's Day", + "1973-05-01": "Labor Day", + "1973-05-31": "Ascension Day", + "1973-12-25": "Christmas Day", + "1973-12-26": "Second Day of Christmas", + "1974-01-01": "New Year's Day", + "1974-02-25": "Carnival Monday", + "1974-04-12": "Good Friday", + "1974-04-14": "Easter Sunday", + "1974-04-15": "Easter Monday", + "1974-04-30": "Queen's Day", + "1974-05-01": "Labor Day", + "1974-05-23": "Ascension Day", + "1974-12-25": "Christmas Day", + "1974-12-26": "Second Day of Christmas", + "1975-01-01": "New Year's Day", + "1975-02-10": "Carnival Monday", + "1975-03-28": "Good Friday", + "1975-03-30": "Easter Sunday", + "1975-03-31": "Easter Monday", + "1975-04-30": "Queen's Day", + "1975-05-01": "Labor Day", + "1975-05-08": "Ascension Day", + "1975-12-25": "Christmas Day", + "1975-12-26": "Second Day of Christmas", + "1976-01-01": "New Year's Day", + "1976-03-01": "Carnival Monday", + "1976-04-16": "Good Friday", + "1976-04-18": "Easter Sunday", + "1976-04-19": "Easter Monday", + "1976-04-30": "Queen's Day", + "1976-05-01": "Labor Day", + "1976-05-27": "Ascension Day", + "1976-12-25": "Christmas Day", + "1976-12-26": "Second Day of Christmas", + "1977-01-01": "New Year's Day", + "1977-02-21": "Carnival Monday", + "1977-04-08": "Good Friday", + "1977-04-10": "Easter Sunday", + "1977-04-11": "Easter Monday", + "1977-04-30": "Queen's Day", + "1977-05-02": "Labor Day", + "1977-05-19": "Ascension Day", + "1977-12-25": "Christmas Day", + "1977-12-26": "Second Day of Christmas", + "1978-01-01": "New Year's Day", + "1978-02-06": "Carnival Monday", + "1978-03-24": "Good Friday", + "1978-03-26": "Easter Sunday", + "1978-03-27": "Easter Monday", + "1978-05-01": "Queen's Day", + "1978-05-02": "Labor Day", + "1978-05-04": "Ascension Day", + "1978-12-25": "Christmas Day", + "1978-12-26": "Second Day of Christmas", + "1979-01-01": "New Year's Day", + "1979-02-26": "Carnival Monday", + "1979-04-13": "Good Friday", + "1979-04-15": "Easter Sunday", + "1979-04-16": "Easter Monday", + "1979-04-30": "Queen's Day", + "1979-05-01": "Labor Day", + "1979-05-24": "Ascension Day", + "1979-12-25": "Christmas Day", + "1979-12-26": "Second Day of Christmas", + "1980-01-01": "New Year's Day", + "1980-02-18": "Carnival Monday", + "1980-04-04": "Good Friday", + "1980-04-06": "Easter Sunday", + "1980-04-07": "Easter Monday", + "1980-04-30": "Queen's Day", + "1980-05-01": "Labor Day", + "1980-05-15": "Ascension Day", + "1980-12-25": "Christmas Day", + "1980-12-26": "Second Day of Christmas", + "1981-01-01": "New Year's Day", + "1981-03-02": "Carnival Monday", + "1981-04-17": "Good Friday", + "1981-04-19": "Easter Sunday", + "1981-04-20": "Easter Monday", + "1981-04-30": "Queen's Day", + "1981-05-01": "Labor Day", + "1981-05-28": "Ascension Day", + "1981-12-25": "Christmas Day", + "1981-12-26": "Second Day of Christmas", + "1982-01-01": "New Year's Day", + "1982-02-22": "Carnival Monday", + "1982-04-09": "Good Friday", + "1982-04-11": "Easter Sunday", + "1982-04-12": "Easter Monday", + "1982-04-30": "Queen's Day", + "1982-05-01": "Labor Day", + "1982-05-20": "Ascension Day", + "1982-12-25": "Christmas Day", + "1982-12-26": "Second Day of Christmas", + "1983-01-01": "New Year's Day", + "1983-02-14": "Carnival Monday", + "1983-04-01": "Good Friday", + "1983-04-03": "Easter Sunday", + "1983-04-04": "Easter Monday", + "1983-04-30": "Queen's Day", + "1983-05-02": "Labor Day", + "1983-05-12": "Ascension Day", + "1983-12-25": "Christmas Day", + "1983-12-26": "Second Day of Christmas", + "1984-01-01": "New Year's Day", + "1984-03-05": "Carnival Monday", + "1984-04-20": "Good Friday", + "1984-04-22": "Easter Sunday", + "1984-04-23": "Easter Monday", + "1984-04-30": "Queen's Day", + "1984-05-01": "Labor Day", + "1984-05-31": "Ascension Day", + "1984-07-02": "National Anthem and Flag Day", + "1984-12-25": "Christmas Day", + "1984-12-26": "Second Day of Christmas", + "1985-01-01": "New Year's Day", + "1985-02-18": "Carnival Monday", + "1985-04-05": "Good Friday", + "1985-04-07": "Easter Sunday", + "1985-04-08": "Easter Monday", + "1985-04-30": "Queen's Day", + "1985-05-01": "Labor Day", + "1985-05-16": "Ascension Day", + "1985-07-02": "National Anthem and Flag Day", + "1985-12-25": "Christmas Day", + "1985-12-26": "Second Day of Christmas", + "1986-01-01": "New Year's Day", + "1986-02-10": "Carnival Monday", + "1986-03-28": "Good Friday", + "1986-03-30": "Easter Sunday", + "1986-03-31": "Easter Monday", + "1986-04-30": "Queen's Day", + "1986-05-01": "Labor Day", + "1986-05-08": "Ascension Day", + "1986-07-02": "National Anthem and Flag Day", + "1986-12-25": "Christmas Day", + "1986-12-26": "Second Day of Christmas", + "1987-01-01": "New Year's Day", + "1987-03-02": "Carnival Monday", + "1987-04-17": "Good Friday", + "1987-04-19": "Easter Sunday", + "1987-04-20": "Easter Monday", + "1987-04-30": "Queen's Day", + "1987-05-01": "Labor Day", + "1987-05-28": "Ascension Day", + "1987-07-02": "National Anthem and Flag Day", + "1987-12-25": "Christmas Day", + "1987-12-26": "Second Day of Christmas", + "1988-01-01": "New Year's Day", + "1988-02-15": "Carnival Monday", + "1988-04-01": "Good Friday", + "1988-04-03": "Easter Sunday", + "1988-04-04": "Easter Monday", + "1988-04-30": "Queen's Day", + "1988-05-02": "Labor Day", + "1988-05-12": "Ascension Day", + "1988-07-02": "National Anthem and Flag Day", + "1988-12-25": "Christmas Day", + "1988-12-26": "Second Day of Christmas", + "1989-01-01": "New Year's Day", + "1989-02-06": "Carnival Monday", + "1989-03-24": "Good Friday", + "1989-03-26": "Easter Sunday", + "1989-03-27": "Easter Monday", + "1989-04-29": "Queen's Day", + "1989-05-01": "Labor Day", + "1989-05-04": "Ascension Day", + "1989-07-02": "National Anthem and Flag Day", + "1989-12-25": "Christmas Day", + "1989-12-26": "Second Day of Christmas", + "1990-01-01": "New Year's Day", + "1990-02-26": "Carnival Monday", + "1990-04-13": "Good Friday", + "1990-04-15": "Easter Sunday", + "1990-04-16": "Easter Monday", + "1990-04-30": "Queen's Day", + "1990-05-01": "Labor Day", + "1990-05-24": "Ascension Day", + "1990-07-02": "National Anthem and Flag Day", + "1990-12-25": "Christmas Day", + "1990-12-26": "Second Day of Christmas", + "1991-01-01": "New Year's Day", + "1991-02-11": "Carnival Monday", + "1991-03-29": "Good Friday", + "1991-03-31": "Easter Sunday", + "1991-04-01": "Easter Monday", + "1991-04-30": "Queen's Day", + "1991-05-01": "Labor Day", + "1991-05-09": "Ascension Day", + "1991-07-02": "National Anthem and Flag Day", + "1991-12-25": "Christmas Day", + "1991-12-26": "Second Day of Christmas", + "1992-01-01": "New Year's Day", + "1992-03-02": "Carnival Monday", + "1992-04-17": "Good Friday", + "1992-04-19": "Easter Sunday", + "1992-04-20": "Easter Monday", + "1992-04-30": "Queen's Day", + "1992-05-01": "Labor Day", + "1992-05-28": "Ascension Day", + "1992-07-02": "National Anthem and Flag Day", + "1992-12-25": "Christmas Day", + "1992-12-26": "Second Day of Christmas", + "1993-01-01": "New Year's Day", + "1993-02-22": "Carnival Monday", + "1993-04-09": "Good Friday", + "1993-04-11": "Easter Sunday", + "1993-04-12": "Easter Monday", + "1993-04-30": "Queen's Day", + "1993-05-01": "Labor Day", + "1993-05-20": "Ascension Day", + "1993-07-02": "National Anthem and Flag Day", + "1993-12-25": "Christmas Day", + "1993-12-26": "Second Day of Christmas", + "1994-01-01": "New Year's Day", + "1994-02-14": "Carnival Monday", + "1994-04-01": "Good Friday", + "1994-04-03": "Easter Sunday", + "1994-04-04": "Easter Monday", + "1994-04-30": "Queen's Day", + "1994-05-02": "Labor Day", + "1994-05-12": "Ascension Day", + "1994-07-02": "National Anthem and Flag Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Second Day of Christmas", + "1995-01-01": "New Year's Day", + "1995-02-27": "Carnival Monday", + "1995-04-14": "Good Friday", + "1995-04-16": "Easter Sunday", + "1995-04-17": "Easter Monday", + "1995-04-29": "Queen's Day", + "1995-05-01": "Labor Day", + "1995-05-25": "Ascension Day", + "1995-07-02": "National Anthem and Flag Day", + "1995-12-25": "Christmas Day", + "1995-12-26": "Second Day of Christmas", + "1996-01-01": "New Year's Day", + "1996-02-19": "Carnival Monday", + "1996-04-05": "Good Friday", + "1996-04-07": "Easter Sunday", + "1996-04-08": "Easter Monday", + "1996-04-30": "Queen's Day", + "1996-05-01": "Labor Day", + "1996-05-16": "Ascension Day", + "1996-07-02": "National Anthem and Flag Day", + "1996-12-25": "Christmas Day", + "1996-12-26": "Second Day of Christmas", + "1997-01-01": "New Year's Day", + "1997-02-10": "Carnival Monday", + "1997-03-28": "Good Friday", + "1997-03-30": "Easter Sunday", + "1997-03-31": "Easter Monday", + "1997-04-30": "Queen's Day", + "1997-05-01": "Labor Day", + "1997-05-08": "Ascension Day", + "1997-07-02": "National Anthem and Flag Day", + "1997-12-25": "Christmas Day", + "1997-12-26": "Second Day of Christmas", + "1998-01-01": "New Year's Day", + "1998-02-23": "Carnival Monday", + "1998-04-10": "Good Friday", + "1998-04-12": "Easter Sunday", + "1998-04-13": "Easter Monday", + "1998-04-30": "Queen's Day", + "1998-05-01": "Labor Day", + "1998-05-21": "Ascension Day", + "1998-07-02": "National Anthem and Flag Day", + "1998-12-25": "Christmas Day", + "1998-12-26": "Second Day of Christmas", + "1999-01-01": "New Year's Day", + "1999-02-15": "Carnival Monday", + "1999-04-02": "Good Friday", + "1999-04-04": "Easter Sunday", + "1999-04-05": "Easter Monday", + "1999-04-30": "Queen's Day", + "1999-05-01": "Labor Day", + "1999-05-13": "Ascension Day", + "1999-07-02": "National Anthem and Flag Day", + "1999-12-25": "Christmas Day", + "1999-12-26": "Second Day of Christmas", + "2000-01-01": "New Year's Day", + "2000-03-06": "Carnival Monday", + "2000-04-21": "Good Friday", + "2000-04-23": "Easter Sunday", + "2000-04-24": "Easter Monday", + "2000-04-29": "Queen's Day", + "2000-05-01": "Labor Day", + "2000-06-01": "Ascension Day", + "2000-07-02": "National Anthem and Flag Day", + "2000-12-25": "Christmas Day", + "2000-12-26": "Second Day of Christmas", + "2001-01-01": "New Year's Day", + "2001-02-26": "Carnival Monday", + "2001-04-13": "Good Friday", + "2001-04-15": "Easter Sunday", + "2001-04-16": "Easter Monday", + "2001-04-30": "Queen's Day", + "2001-05-01": "Labor Day", + "2001-05-24": "Ascension Day", + "2001-07-02": "National Anthem and Flag Day", + "2001-12-25": "Christmas Day", + "2001-12-26": "Second Day of Christmas", + "2002-01-01": "New Year's Day", + "2002-02-11": "Carnival Monday", + "2002-03-29": "Good Friday", + "2002-03-31": "Easter Sunday", + "2002-04-01": "Easter Monday", + "2002-04-30": "Queen's Day", + "2002-05-01": "Labor Day", + "2002-05-09": "Ascension Day", + "2002-07-02": "National Anthem and Flag Day", + "2002-12-25": "Christmas Day", + "2002-12-26": "Second Day of Christmas", + "2003-01-01": "New Year's Day", + "2003-03-03": "Carnival Monday", + "2003-04-18": "Good Friday", + "2003-04-20": "Easter Sunday", + "2003-04-21": "Easter Monday", + "2003-04-30": "Queen's Day", + "2003-05-01": "Labor Day", + "2003-05-29": "Ascension Day", + "2003-07-02": "National Anthem and Flag Day", + "2003-12-25": "Christmas Day", + "2003-12-26": "Second Day of Christmas", + "2004-01-01": "New Year's Day", + "2004-02-23": "Carnival Monday", + "2004-04-09": "Good Friday", + "2004-04-11": "Easter Sunday", + "2004-04-12": "Easter Monday", + "2004-04-30": "Queen's Day", + "2004-05-01": "Labor Day", + "2004-05-20": "Ascension Day", + "2004-07-02": "National Anthem and Flag Day", + "2004-12-25": "Christmas Day", + "2004-12-26": "Second Day of Christmas", + "2005-01-01": "New Year's Day", + "2005-02-07": "Carnival Monday", + "2005-03-25": "Good Friday", + "2005-03-27": "Easter Sunday", + "2005-03-28": "Easter Monday", + "2005-04-30": "Queen's Day", + "2005-05-02": "Labor Day", + "2005-05-05": "Ascension Day", + "2005-07-02": "National Anthem and Flag Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "Second Day of Christmas", + "2006-01-01": "New Year's Day", + "2006-02-27": "Carnival Monday", + "2006-04-14": "Good Friday", + "2006-04-16": "Easter Sunday", + "2006-04-17": "Easter Monday", + "2006-04-29": "Queen's Day", + "2006-05-01": "Labor Day", + "2006-05-25": "Ascension Day", + "2006-07-02": "National Anthem and Flag Day", + "2006-12-25": "Christmas Day", + "2006-12-26": "Second Day of Christmas", + "2007-01-01": "New Year's Day", + "2007-02-19": "Carnival Monday", + "2007-04-06": "Good Friday", + "2007-04-08": "Easter Sunday", + "2007-04-09": "Easter Monday", + "2007-04-30": "Queen's Day", + "2007-05-01": "Labor Day", + "2007-05-17": "Ascension Day", + "2007-07-02": "National Anthem and Flag Day", + "2007-12-25": "Christmas Day", + "2007-12-26": "Second Day of Christmas", + "2008-01-01": "New Year's Day", + "2008-02-04": "Carnival Monday", + "2008-03-21": "Good Friday", + "2008-03-23": "Easter Sunday", + "2008-03-24": "Easter Monday", + "2008-04-30": "Queen's Day", + "2008-05-01": "Ascension Day; Labor Day", + "2008-07-02": "National Anthem and Flag Day", + "2008-12-25": "Christmas Day", + "2008-12-26": "Second Day of Christmas", + "2009-01-01": "New Year's Day", + "2009-02-23": "Carnival Monday", + "2009-04-10": "Good Friday", + "2009-04-12": "Easter Sunday", + "2009-04-13": "Easter Monday", + "2009-04-30": "Queen's Day", + "2009-05-01": "Labor Day", + "2009-05-21": "Ascension Day", + "2009-07-02": "National Anthem and Flag Day", + "2009-12-25": "Christmas Day", + "2009-12-26": "Second Day of Christmas", + "2010-01-01": "New Year's Day", + "2010-02-15": "Carnival Monday", + "2010-04-02": "Good Friday", + "2010-04-04": "Easter Sunday", + "2010-04-05": "Easter Monday", + "2010-04-30": "Queen's Day", + "2010-05-01": "Labor Day", + "2010-05-13": "Ascension Day", + "2010-07-02": "National Anthem and Flag Day", + "2010-10-10": "Cura\u00e7ao Day", + "2010-12-25": "Christmas Day", + "2010-12-26": "Second Day of Christmas", + "2011-01-01": "New Year's Day", + "2011-03-07": "Carnival Monday", + "2011-04-22": "Good Friday", + "2011-04-24": "Easter Sunday", + "2011-04-25": "Easter Monday", + "2011-04-30": "Queen's Day", + "2011-05-02": "Labor Day", + "2011-06-02": "Ascension Day", + "2011-07-02": "National Anthem and Flag Day", + "2011-10-10": "Cura\u00e7ao Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "Second Day of Christmas", + "2012-01-01": "New Year's Day", + "2012-02-20": "Carnival Monday", + "2012-04-06": "Good Friday", + "2012-04-08": "Easter Sunday", + "2012-04-09": "Easter Monday", + "2012-04-30": "Queen's Day", + "2012-05-01": "Labor Day", + "2012-05-17": "Ascension Day", + "2012-07-02": "National Anthem and Flag Day", + "2012-10-10": "Cura\u00e7ao Day", + "2012-12-25": "Christmas Day", + "2012-12-26": "Second Day of Christmas", + "2013-01-01": "New Year's Day", + "2013-02-11": "Carnival Monday", + "2013-03-29": "Good Friday", + "2013-03-31": "Easter Sunday", + "2013-04-01": "Easter Monday", + "2013-04-30": "Queen's Day", + "2013-05-01": "Labor Day", + "2013-05-09": "Ascension Day", + "2013-07-02": "National Anthem and Flag Day", + "2013-10-10": "Cura\u00e7ao Day", + "2013-12-25": "Christmas Day", + "2013-12-26": "Second Day of Christmas", + "2014-01-01": "New Year's Day", + "2014-03-03": "Carnival Monday", + "2014-04-18": "Good Friday", + "2014-04-20": "Easter Sunday", + "2014-04-21": "Easter Monday", + "2014-04-26": "King's Day", + "2014-05-01": "Labor Day", + "2014-05-29": "Ascension Day", + "2014-07-02": "National Anthem and Flag Day", + "2014-10-10": "Cura\u00e7ao Day", + "2014-12-25": "Christmas Day", + "2014-12-26": "Second Day of Christmas", + "2015-01-01": "New Year's Day", + "2015-02-16": "Carnival Monday", + "2015-04-03": "Good Friday", + "2015-04-05": "Easter Sunday", + "2015-04-06": "Easter Monday", + "2015-04-27": "King's Day", + "2015-05-01": "Labor Day", + "2015-05-14": "Ascension Day", + "2015-07-02": "National Anthem and Flag Day", + "2015-10-10": "Cura\u00e7ao Day", + "2015-12-25": "Christmas Day", + "2015-12-26": "Second Day of Christmas", + "2016-01-01": "New Year's Day", + "2016-02-08": "Carnival Monday", + "2016-03-25": "Good Friday", + "2016-03-27": "Easter Sunday", + "2016-03-28": "Easter Monday", + "2016-04-27": "King's Day", + "2016-05-02": "Labor Day", + "2016-05-05": "Ascension Day", + "2016-07-02": "National Anthem and Flag Day", + "2016-10-10": "Cura\u00e7ao Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "Second Day of Christmas", + "2017-01-01": "New Year's Day", + "2017-02-27": "Carnival Monday", + "2017-04-14": "Good Friday", + "2017-04-16": "Easter Sunday", + "2017-04-17": "Easter Monday", + "2017-04-27": "King's Day", + "2017-05-01": "Labor Day", + "2017-05-25": "Ascension Day", + "2017-07-02": "National Anthem and Flag Day", + "2017-10-10": "Cura\u00e7ao Day", + "2017-12-25": "Christmas Day", + "2017-12-26": "Second Day of Christmas", + "2018-01-01": "New Year's Day", + "2018-02-12": "Carnival Monday", + "2018-03-30": "Good Friday", + "2018-04-01": "Easter Sunday", + "2018-04-02": "Easter Monday", + "2018-04-27": "King's Day", + "2018-05-01": "Labor Day", + "2018-05-10": "Ascension Day", + "2018-07-02": "National Anthem and Flag Day", + "2018-10-10": "Cura\u00e7ao Day", + "2018-12-25": "Christmas Day", + "2018-12-26": "Second Day of Christmas", + "2019-01-01": "New Year's Day", + "2019-03-04": "Carnival Monday", + "2019-04-19": "Good Friday", + "2019-04-21": "Easter Sunday", + "2019-04-22": "Easter Monday", + "2019-04-27": "King's Day", + "2019-05-01": "Labor Day", + "2019-05-30": "Ascension Day", + "2019-07-02": "National Anthem and Flag Day", + "2019-10-10": "Cura\u00e7ao Day", + "2019-12-25": "Christmas Day", + "2019-12-26": "Second Day of Christmas", + "2020-01-01": "New Year's Day", + "2020-02-24": "Carnival Monday", + "2020-04-10": "Good Friday", + "2020-04-12": "Easter Sunday", + "2020-04-13": "Easter Monday", + "2020-04-27": "King's Day", + "2020-05-01": "Labor Day", + "2020-05-21": "Ascension Day", + "2020-07-02": "National Anthem and Flag Day", + "2020-10-10": "Cura\u00e7ao Day", + "2020-12-25": "Christmas Day", + "2020-12-26": "Second Day of Christmas", + "2021-01-01": "New Year's Day", + "2021-02-15": "Carnival Monday", + "2021-04-02": "Good Friday", + "2021-04-04": "Easter Sunday", + "2021-04-05": "Easter Monday", + "2021-04-27": "King's Day", + "2021-05-01": "Labor Day", + "2021-05-13": "Ascension Day", + "2021-07-02": "National Anthem and Flag Day", + "2021-10-10": "Cura\u00e7ao Day", + "2021-12-25": "Christmas Day", + "2021-12-26": "Second Day of Christmas", + "2022-01-01": "New Year's Day", + "2022-02-28": "Carnival Monday", + "2022-04-15": "Good Friday", + "2022-04-17": "Easter Sunday", + "2022-04-18": "Easter Monday", + "2022-04-27": "King's Day", + "2022-05-02": "Labor Day", + "2022-05-26": "Ascension Day", + "2022-07-02": "National Anthem and Flag Day", + "2022-10-10": "Cura\u00e7ao Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "Second Day of Christmas", + "2023-01-01": "New Year's Day", + "2023-02-20": "Carnival Monday", + "2023-04-07": "Good Friday", + "2023-04-09": "Easter Sunday", + "2023-04-10": "Easter Monday", + "2023-04-27": "King's Day", + "2023-05-01": "Labor Day", + "2023-05-18": "Ascension Day", + "2023-07-02": "National Anthem and Flag Day", + "2023-10-10": "Cura\u00e7ao Day", + "2023-12-25": "Christmas Day", + "2023-12-26": "Second Day of Christmas", + "2024-01-01": "New Year's Day", + "2024-02-12": "Carnival Monday", + "2024-03-29": "Good Friday", + "2024-03-31": "Easter Sunday", + "2024-04-01": "Easter Monday", + "2024-04-27": "King's Day", + "2024-05-01": "Labor Day", + "2024-05-09": "Ascension Day", + "2024-07-02": "National Anthem and Flag Day", + "2024-10-10": "Cura\u00e7ao Day", + "2024-12-25": "Christmas Day", + "2024-12-26": "Second Day of Christmas", + "2025-01-01": "New Year's Day", + "2025-03-03": "Carnival Monday", + "2025-04-18": "Good Friday", + "2025-04-20": "Easter Sunday", + "2025-04-21": "Easter Monday", + "2025-04-26": "King's Day", + "2025-05-01": "Labor Day", + "2025-05-29": "Ascension Day", + "2025-07-02": "National Anthem and Flag Day", + "2025-10-10": "Cura\u00e7ao Day", + "2025-12-25": "Christmas Day", + "2025-12-26": "Second Day of Christmas", + "2026-01-01": "New Year's Day", + "2026-02-16": "Carnival Monday", + "2026-04-03": "Good Friday", + "2026-04-05": "Easter Sunday", + "2026-04-06": "Easter Monday", + "2026-04-27": "King's Day", + "2026-05-01": "Labor Day", + "2026-05-14": "Ascension Day", + "2026-07-02": "National Anthem and Flag Day", + "2026-10-10": "Cura\u00e7ao Day", + "2026-12-25": "Christmas Day", + "2026-12-26": "Second Day of Christmas", + "2027-01-01": "New Year's Day", + "2027-02-08": "Carnival Monday", + "2027-03-26": "Good Friday", + "2027-03-28": "Easter Sunday", + "2027-03-29": "Easter Monday", + "2027-04-27": "King's Day", + "2027-05-01": "Labor Day", + "2027-05-06": "Ascension Day", + "2027-07-02": "National Anthem and Flag Day", + "2027-10-10": "Cura\u00e7ao Day", + "2027-12-25": "Christmas Day", + "2027-12-26": "Second Day of Christmas", + "2028-01-01": "New Year's Day", + "2028-02-28": "Carnival Monday", + "2028-04-14": "Good Friday", + "2028-04-16": "Easter Sunday", + "2028-04-17": "Easter Monday", + "2028-04-27": "King's Day", + "2028-05-01": "Labor Day", + "2028-05-25": "Ascension Day", + "2028-07-02": "National Anthem and Flag Day", + "2028-10-10": "Cura\u00e7ao Day", + "2028-12-25": "Christmas Day", + "2028-12-26": "Second Day of Christmas", + "2029-01-01": "New Year's Day", + "2029-02-12": "Carnival Monday", + "2029-03-30": "Good Friday", + "2029-04-01": "Easter Sunday", + "2029-04-02": "Easter Monday", + "2029-04-27": "King's Day", + "2029-05-01": "Labor Day", + "2029-05-10": "Ascension Day", + "2029-07-02": "National Anthem and Flag Day", + "2029-10-10": "Cura\u00e7ao Day", + "2029-12-25": "Christmas Day", + "2029-12-26": "Second Day of Christmas", + "2030-01-01": "New Year's Day", + "2030-03-04": "Carnival Monday", + "2030-04-19": "Good Friday", + "2030-04-21": "Easter Sunday", + "2030-04-22": "Easter Monday", + "2030-04-27": "King's Day", + "2030-05-01": "Labor Day", + "2030-05-30": "Ascension Day", + "2030-07-02": "National Anthem and Flag Day", + "2030-10-10": "Cura\u00e7ao Day", + "2030-12-25": "Christmas Day", + "2030-12-26": "Second Day of Christmas", + "2031-01-01": "New Year's Day", + "2031-02-24": "Carnival Monday", + "2031-04-11": "Good Friday", + "2031-04-13": "Easter Sunday", + "2031-04-14": "Easter Monday", + "2031-04-26": "King's Day", + "2031-05-01": "Labor Day", + "2031-05-22": "Ascension Day", + "2031-07-02": "National Anthem and Flag Day", + "2031-10-10": "Cura\u00e7ao Day", + "2031-12-25": "Christmas Day", + "2031-12-26": "Second Day of Christmas", + "2032-01-01": "New Year's Day", + "2032-02-09": "Carnival Monday", + "2032-03-26": "Good Friday", + "2032-03-28": "Easter Sunday", + "2032-03-29": "Easter Monday", + "2032-04-27": "King's Day", + "2032-05-01": "Labor Day", + "2032-05-06": "Ascension Day", + "2032-07-02": "National Anthem and Flag Day", + "2032-10-10": "Cura\u00e7ao Day", + "2032-12-25": "Christmas Day", + "2032-12-26": "Second Day of Christmas", + "2033-01-01": "New Year's Day", + "2033-02-28": "Carnival Monday", + "2033-04-15": "Good Friday", + "2033-04-17": "Easter Sunday", + "2033-04-18": "Easter Monday", + "2033-04-27": "King's Day", + "2033-05-02": "Labor Day", + "2033-05-26": "Ascension Day", + "2033-07-02": "National Anthem and Flag Day", + "2033-10-10": "Cura\u00e7ao Day", + "2033-12-25": "Christmas Day", + "2033-12-26": "Second Day of Christmas", + "2034-01-01": "New Year's Day", + "2034-02-20": "Carnival Monday", + "2034-04-07": "Good Friday", + "2034-04-09": "Easter Sunday", + "2034-04-10": "Easter Monday", + "2034-04-27": "King's Day", + "2034-05-01": "Labor Day", + "2034-05-18": "Ascension Day", + "2034-07-02": "National Anthem and Flag Day", + "2034-10-10": "Cura\u00e7ao Day", + "2034-12-25": "Christmas Day", + "2034-12-26": "Second Day of Christmas", + "2035-01-01": "New Year's Day", + "2035-02-05": "Carnival Monday", + "2035-03-23": "Good Friday", + "2035-03-25": "Easter Sunday", + "2035-03-26": "Easter Monday", + "2035-04-27": "King's Day", + "2035-05-01": "Labor Day", + "2035-05-03": "Ascension Day", + "2035-07-02": "National Anthem and Flag Day", + "2035-10-10": "Cura\u00e7ao Day", + "2035-12-25": "Christmas Day", + "2035-12-26": "Second Day of Christmas", + "2036-01-01": "New Year's Day", + "2036-02-25": "Carnival Monday", + "2036-04-11": "Good Friday", + "2036-04-13": "Easter Sunday", + "2036-04-14": "Easter Monday", + "2036-04-26": "King's Day", + "2036-05-01": "Labor Day", + "2036-05-22": "Ascension Day", + "2036-07-02": "National Anthem and Flag Day", + "2036-10-10": "Cura\u00e7ao Day", + "2036-12-25": "Christmas Day", + "2036-12-26": "Second Day of Christmas", + "2037-01-01": "New Year's Day", + "2037-02-16": "Carnival Monday", + "2037-04-03": "Good Friday", + "2037-04-05": "Easter Sunday", + "2037-04-06": "Easter Monday", + "2037-04-27": "King's Day", + "2037-05-01": "Labor Day", + "2037-05-14": "Ascension Day", + "2037-07-02": "National Anthem and Flag Day", + "2037-10-10": "Cura\u00e7ao Day", + "2037-12-25": "Christmas Day", + "2037-12-26": "Second Day of Christmas", + "2038-01-01": "New Year's Day", + "2038-03-08": "Carnival Monday", + "2038-04-23": "Good Friday", + "2038-04-25": "Easter Sunday", + "2038-04-26": "Easter Monday", + "2038-04-27": "King's Day", + "2038-05-01": "Labor Day", + "2038-06-03": "Ascension Day", + "2038-07-02": "National Anthem and Flag Day", + "2038-10-10": "Cura\u00e7ao Day", + "2038-12-25": "Christmas Day", + "2038-12-26": "Second Day of Christmas", + "2039-01-01": "New Year's Day", + "2039-02-21": "Carnival Monday", + "2039-04-08": "Good Friday", + "2039-04-10": "Easter Sunday", + "2039-04-11": "Easter Monday", + "2039-04-27": "King's Day", + "2039-05-02": "Labor Day", + "2039-05-19": "Ascension Day", + "2039-07-02": "National Anthem and Flag Day", + "2039-10-10": "Cura\u00e7ao Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Second Day of Christmas", + "2040-01-01": "New Year's Day", + "2040-02-13": "Carnival Monday", + "2040-03-30": "Good Friday", + "2040-04-01": "Easter Sunday", + "2040-04-02": "Easter Monday", + "2040-04-27": "King's Day", + "2040-05-01": "Labor Day", + "2040-05-10": "Ascension Day", + "2040-07-02": "National Anthem and Flag Day", + "2040-10-10": "Cura\u00e7ao Day", + "2040-12-25": "Christmas Day", + "2040-12-26": "Second Day of Christmas", + "2041-01-01": "New Year's Day", + "2041-03-04": "Carnival Monday", + "2041-04-19": "Good Friday", + "2041-04-21": "Easter Sunday", + "2041-04-22": "Easter Monday", + "2041-04-27": "King's Day", + "2041-05-01": "Labor Day", + "2041-05-30": "Ascension Day", + "2041-07-02": "National Anthem and Flag Day", + "2041-10-10": "Cura\u00e7ao Day", + "2041-12-25": "Christmas Day", + "2041-12-26": "Second Day of Christmas", + "2042-01-01": "New Year's Day", + "2042-02-17": "Carnival Monday", + "2042-04-04": "Good Friday", + "2042-04-06": "Easter Sunday", + "2042-04-07": "Easter Monday", + "2042-04-26": "King's Day", + "2042-05-01": "Labor Day", + "2042-05-15": "Ascension Day", + "2042-07-02": "National Anthem and Flag Day", + "2042-10-10": "Cura\u00e7ao Day", + "2042-12-25": "Christmas Day", + "2042-12-26": "Second Day of Christmas", + "2043-01-01": "New Year's Day", + "2043-02-09": "Carnival Monday", + "2043-03-27": "Good Friday", + "2043-03-29": "Easter Sunday", + "2043-03-30": "Easter Monday", + "2043-04-27": "King's Day", + "2043-05-01": "Labor Day", + "2043-05-07": "Ascension Day", + "2043-07-02": "National Anthem and Flag Day", + "2043-10-10": "Cura\u00e7ao Day", + "2043-12-25": "Christmas Day", + "2043-12-26": "Second Day of Christmas", + "2044-01-01": "New Year's Day", + "2044-02-29": "Carnival Monday", + "2044-04-15": "Good Friday", + "2044-04-17": "Easter Sunday", + "2044-04-18": "Easter Monday", + "2044-04-27": "King's Day", + "2044-05-02": "Labor Day", + "2044-05-26": "Ascension Day", + "2044-07-02": "National Anthem and Flag Day", + "2044-10-10": "Cura\u00e7ao Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "Second Day of Christmas", + "2045-01-01": "New Year's Day", + "2045-02-20": "Carnival Monday", + "2045-04-07": "Good Friday", + "2045-04-09": "Easter Sunday", + "2045-04-10": "Easter Monday", + "2045-04-27": "King's Day", + "2045-05-01": "Labor Day", + "2045-05-18": "Ascension Day", + "2045-07-02": "National Anthem and Flag Day", + "2045-10-10": "Cura\u00e7ao Day", + "2045-12-25": "Christmas Day", + "2045-12-26": "Second Day of Christmas", + "2046-01-01": "New Year's Day", + "2046-02-05": "Carnival Monday", + "2046-03-23": "Good Friday", + "2046-03-25": "Easter Sunday", + "2046-03-26": "Easter Monday", + "2046-04-27": "King's Day", + "2046-05-01": "Labor Day", + "2046-05-03": "Ascension Day", + "2046-07-02": "National Anthem and Flag Day", + "2046-10-10": "Cura\u00e7ao Day", + "2046-12-25": "Christmas Day", + "2046-12-26": "Second Day of Christmas", + "2047-01-01": "New Year's Day", + "2047-02-25": "Carnival Monday", + "2047-04-12": "Good Friday", + "2047-04-14": "Easter Sunday", + "2047-04-15": "Easter Monday", + "2047-04-27": "King's Day", + "2047-05-01": "Labor Day", + "2047-05-23": "Ascension Day", + "2047-07-02": "National Anthem and Flag Day", + "2047-10-10": "Cura\u00e7ao Day", + "2047-12-25": "Christmas Day", + "2047-12-26": "Second Day of Christmas", + "2048-01-01": "New Year's Day", + "2048-02-17": "Carnival Monday", + "2048-04-03": "Good Friday", + "2048-04-05": "Easter Sunday", + "2048-04-06": "Easter Monday", + "2048-04-27": "King's Day", + "2048-05-01": "Labor Day", + "2048-05-14": "Ascension Day", + "2048-07-02": "National Anthem and Flag Day", + "2048-10-10": "Cura\u00e7ao Day", + "2048-12-25": "Christmas Day", + "2048-12-26": "Second Day of Christmas", + "2049-01-01": "New Year's Day", + "2049-03-01": "Carnival Monday", + "2049-04-16": "Good Friday", + "2049-04-18": "Easter Sunday", + "2049-04-19": "Easter Monday", + "2049-04-27": "King's Day", + "2049-05-01": "Labor Day", + "2049-05-27": "Ascension Day", + "2049-07-02": "National Anthem and Flag Day", + "2049-10-10": "Cura\u00e7ao Day", + "2049-12-25": "Christmas Day", + "2049-12-26": "Second Day of Christmas", + "2050-01-01": "New Year's Day", + "2050-02-21": "Carnival Monday", + "2050-04-08": "Good Friday", + "2050-04-10": "Easter Sunday", + "2050-04-11": "Easter Monday", + "2050-04-27": "King's Day", + "2050-05-02": "Labor Day", + "2050-05-19": "Ascension Day", + "2050-07-02": "National Anthem and Flag Day", + "2050-10-10": "Cura\u00e7ao Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "Second Day of Christmas" +} diff --git a/snapshots/countries/CY.json b/snapshots/countries/CY.json new file mode 100644 index 000000000..932ce6baf --- /dev/null +++ b/snapshots/countries/CY.json @@ -0,0 +1,1608 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-06": "Epiphany", + "1950-02-20": "Clean Monday", + "1950-03-25": "Greek Independence Day", + "1950-04-01": "Cyprus National Day", + "1950-04-07": "Good Friday", + "1950-04-09": "Easter Sunday", + "1950-04-10": "Easter Monday", + "1950-05-01": "Labor Day", + "1950-05-29": "Monday of the Holy Spirit", + "1950-08-15": "Assumption of Mary", + "1950-10-01": "Cyprus Independence Day", + "1950-10-28": "Ochi Day", + "1950-12-24": "Christmas Eve", + "1950-12-25": "Christmas Day", + "1950-12-26": "Day After Christmas", + "1951-01-01": "New Year's Day", + "1951-01-06": "Epiphany", + "1951-03-12": "Clean Monday", + "1951-03-25": "Greek Independence Day", + "1951-04-01": "Cyprus National Day", + "1951-04-27": "Good Friday", + "1951-04-29": "Easter Sunday", + "1951-04-30": "Easter Monday", + "1951-05-01": "Labor Day", + "1951-06-18": "Monday of the Holy Spirit", + "1951-08-15": "Assumption of Mary", + "1951-10-01": "Cyprus Independence Day", + "1951-10-28": "Ochi Day", + "1951-12-24": "Christmas Eve", + "1951-12-25": "Christmas Day", + "1951-12-26": "Day After Christmas", + "1952-01-01": "New Year's Day", + "1952-01-06": "Epiphany", + "1952-03-03": "Clean Monday", + "1952-03-25": "Greek Independence Day", + "1952-04-01": "Cyprus National Day", + "1952-04-18": "Good Friday", + "1952-04-20": "Easter Sunday", + "1952-04-21": "Easter Monday", + "1952-05-01": "Labor Day", + "1952-06-09": "Monday of the Holy Spirit", + "1952-08-15": "Assumption of Mary", + "1952-10-01": "Cyprus Independence Day", + "1952-10-28": "Ochi Day", + "1952-12-24": "Christmas Eve", + "1952-12-25": "Christmas Day", + "1952-12-26": "Day After Christmas", + "1953-01-01": "New Year's Day", + "1953-01-06": "Epiphany", + "1953-02-16": "Clean Monday", + "1953-03-25": "Greek Independence Day", + "1953-04-01": "Cyprus National Day", + "1953-04-03": "Good Friday", + "1953-04-05": "Easter Sunday", + "1953-04-06": "Easter Monday", + "1953-05-01": "Labor Day", + "1953-05-25": "Monday of the Holy Spirit", + "1953-08-15": "Assumption of Mary", + "1953-10-01": "Cyprus Independence Day", + "1953-10-28": "Ochi Day", + "1953-12-24": "Christmas Eve", + "1953-12-25": "Christmas Day", + "1953-12-26": "Day After Christmas", + "1954-01-01": "New Year's Day", + "1954-01-06": "Epiphany", + "1954-03-08": "Clean Monday", + "1954-03-25": "Greek Independence Day", + "1954-04-01": "Cyprus National Day", + "1954-04-23": "Good Friday", + "1954-04-25": "Easter Sunday", + "1954-04-26": "Easter Monday", + "1954-05-01": "Labor Day", + "1954-06-14": "Monday of the Holy Spirit", + "1954-08-15": "Assumption of Mary", + "1954-10-01": "Cyprus Independence Day", + "1954-10-28": "Ochi Day", + "1954-12-24": "Christmas Eve", + "1954-12-25": "Christmas Day", + "1954-12-26": "Day After Christmas", + "1955-01-01": "New Year's Day", + "1955-01-06": "Epiphany", + "1955-02-28": "Clean Monday", + "1955-03-25": "Greek Independence Day", + "1955-04-01": "Cyprus National Day", + "1955-04-15": "Good Friday", + "1955-04-17": "Easter Sunday", + "1955-04-18": "Easter Monday", + "1955-05-01": "Labor Day", + "1955-06-06": "Monday of the Holy Spirit", + "1955-08-15": "Assumption of Mary", + "1955-10-01": "Cyprus Independence Day", + "1955-10-28": "Ochi Day", + "1955-12-24": "Christmas Eve", + "1955-12-25": "Christmas Day", + "1955-12-26": "Day After Christmas", + "1956-01-01": "New Year's Day", + "1956-01-06": "Epiphany", + "1956-03-19": "Clean Monday", + "1956-03-25": "Greek Independence Day", + "1956-04-01": "Cyprus National Day", + "1956-05-01": "Labor Day", + "1956-05-04": "Good Friday", + "1956-05-06": "Easter Sunday", + "1956-05-07": "Easter Monday", + "1956-06-25": "Monday of the Holy Spirit", + "1956-08-15": "Assumption of Mary", + "1956-10-01": "Cyprus Independence Day", + "1956-10-28": "Ochi Day", + "1956-12-24": "Christmas Eve", + "1956-12-25": "Christmas Day", + "1956-12-26": "Day After Christmas", + "1957-01-01": "New Year's Day", + "1957-01-06": "Epiphany", + "1957-03-04": "Clean Monday", + "1957-03-25": "Greek Independence Day", + "1957-04-01": "Cyprus National Day", + "1957-04-19": "Good Friday", + "1957-04-21": "Easter Sunday", + "1957-04-22": "Easter Monday", + "1957-05-01": "Labor Day", + "1957-06-10": "Monday of the Holy Spirit", + "1957-08-15": "Assumption of Mary", + "1957-10-01": "Cyprus Independence Day", + "1957-10-28": "Ochi Day", + "1957-12-24": "Christmas Eve", + "1957-12-25": "Christmas Day", + "1957-12-26": "Day After Christmas", + "1958-01-01": "New Year's Day", + "1958-01-06": "Epiphany", + "1958-02-24": "Clean Monday", + "1958-03-25": "Greek Independence Day", + "1958-04-01": "Cyprus National Day", + "1958-04-11": "Good Friday", + "1958-04-13": "Easter Sunday", + "1958-04-14": "Easter Monday", + "1958-05-01": "Labor Day", + "1958-06-02": "Monday of the Holy Spirit", + "1958-08-15": "Assumption of Mary", + "1958-10-01": "Cyprus Independence Day", + "1958-10-28": "Ochi Day", + "1958-12-24": "Christmas Eve", + "1958-12-25": "Christmas Day", + "1958-12-26": "Day After Christmas", + "1959-01-01": "New Year's Day", + "1959-01-06": "Epiphany", + "1959-03-16": "Clean Monday", + "1959-03-25": "Greek Independence Day", + "1959-04-01": "Cyprus National Day", + "1959-05-01": "Good Friday; Labor Day", + "1959-05-03": "Easter Sunday", + "1959-05-04": "Easter Monday", + "1959-06-22": "Monday of the Holy Spirit", + "1959-08-15": "Assumption of Mary", + "1959-10-01": "Cyprus Independence Day", + "1959-10-28": "Ochi Day", + "1959-12-24": "Christmas Eve", + "1959-12-25": "Christmas Day", + "1959-12-26": "Day After Christmas", + "1960-01-01": "New Year's Day", + "1960-01-06": "Epiphany", + "1960-02-29": "Clean Monday", + "1960-03-25": "Greek Independence Day", + "1960-04-01": "Cyprus National Day", + "1960-04-15": "Good Friday", + "1960-04-17": "Easter Sunday", + "1960-04-18": "Easter Monday", + "1960-05-01": "Labor Day", + "1960-06-06": "Monday of the Holy Spirit", + "1960-08-15": "Assumption of Mary", + "1960-10-01": "Cyprus Independence Day", + "1960-10-28": "Ochi Day", + "1960-12-24": "Christmas Eve", + "1960-12-25": "Christmas Day", + "1960-12-26": "Day After Christmas", + "1961-01-01": "New Year's Day", + "1961-01-06": "Epiphany", + "1961-02-20": "Clean Monday", + "1961-03-25": "Greek Independence Day", + "1961-04-01": "Cyprus National Day", + "1961-04-07": "Good Friday", + "1961-04-09": "Easter Sunday", + "1961-04-10": "Easter Monday", + "1961-05-01": "Labor Day", + "1961-05-29": "Monday of the Holy Spirit", + "1961-08-15": "Assumption of Mary", + "1961-10-01": "Cyprus Independence Day", + "1961-10-28": "Ochi Day", + "1961-12-24": "Christmas Eve", + "1961-12-25": "Christmas Day", + "1961-12-26": "Day After Christmas", + "1962-01-01": "New Year's Day", + "1962-01-06": "Epiphany", + "1962-03-12": "Clean Monday", + "1962-03-25": "Greek Independence Day", + "1962-04-01": "Cyprus National Day", + "1962-04-27": "Good Friday", + "1962-04-29": "Easter Sunday", + "1962-04-30": "Easter Monday", + "1962-05-01": "Labor Day", + "1962-06-18": "Monday of the Holy Spirit", + "1962-08-15": "Assumption of Mary", + "1962-10-01": "Cyprus Independence Day", + "1962-10-28": "Ochi Day", + "1962-12-24": "Christmas Eve", + "1962-12-25": "Christmas Day", + "1962-12-26": "Day After Christmas", + "1963-01-01": "New Year's Day", + "1963-01-06": "Epiphany", + "1963-02-25": "Clean Monday", + "1963-03-25": "Greek Independence Day", + "1963-04-01": "Cyprus National Day", + "1963-04-12": "Good Friday", + "1963-04-14": "Easter Sunday", + "1963-04-15": "Easter Monday", + "1963-05-01": "Labor Day", + "1963-06-03": "Monday of the Holy Spirit", + "1963-08-15": "Assumption of Mary", + "1963-10-01": "Cyprus Independence Day", + "1963-10-28": "Ochi Day", + "1963-12-24": "Christmas Eve", + "1963-12-25": "Christmas Day", + "1963-12-26": "Day After Christmas", + "1964-01-01": "New Year's Day", + "1964-01-06": "Epiphany", + "1964-03-16": "Clean Monday", + "1964-03-25": "Greek Independence Day", + "1964-04-01": "Cyprus National Day", + "1964-05-01": "Good Friday; Labor Day", + "1964-05-03": "Easter Sunday", + "1964-05-04": "Easter Monday", + "1964-06-22": "Monday of the Holy Spirit", + "1964-08-15": "Assumption of Mary", + "1964-10-01": "Cyprus Independence Day", + "1964-10-28": "Ochi Day", + "1964-12-24": "Christmas Eve", + "1964-12-25": "Christmas Day", + "1964-12-26": "Day After Christmas", + "1965-01-01": "New Year's Day", + "1965-01-06": "Epiphany", + "1965-03-08": "Clean Monday", + "1965-03-25": "Greek Independence Day", + "1965-04-01": "Cyprus National Day", + "1965-04-23": "Good Friday", + "1965-04-25": "Easter Sunday", + "1965-04-26": "Easter Monday", + "1965-05-01": "Labor Day", + "1965-06-14": "Monday of the Holy Spirit", + "1965-08-15": "Assumption of Mary", + "1965-10-01": "Cyprus Independence Day", + "1965-10-28": "Ochi Day", + "1965-12-24": "Christmas Eve", + "1965-12-25": "Christmas Day", + "1965-12-26": "Day After Christmas", + "1966-01-01": "New Year's Day", + "1966-01-06": "Epiphany", + "1966-02-21": "Clean Monday", + "1966-03-25": "Greek Independence Day", + "1966-04-01": "Cyprus National Day", + "1966-04-08": "Good Friday", + "1966-04-10": "Easter Sunday", + "1966-04-11": "Easter Monday", + "1966-05-01": "Labor Day", + "1966-05-30": "Monday of the Holy Spirit", + "1966-08-15": "Assumption of Mary", + "1966-10-01": "Cyprus Independence Day", + "1966-10-28": "Ochi Day", + "1966-12-24": "Christmas Eve", + "1966-12-25": "Christmas Day", + "1966-12-26": "Day After Christmas", + "1967-01-01": "New Year's Day", + "1967-01-06": "Epiphany", + "1967-03-13": "Clean Monday", + "1967-03-25": "Greek Independence Day", + "1967-04-01": "Cyprus National Day", + "1967-04-28": "Good Friday", + "1967-04-30": "Easter Sunday", + "1967-05-01": "Easter Monday; Labor Day", + "1967-06-19": "Monday of the Holy Spirit", + "1967-08-15": "Assumption of Mary", + "1967-10-01": "Cyprus Independence Day", + "1967-10-28": "Ochi Day", + "1967-12-24": "Christmas Eve", + "1967-12-25": "Christmas Day", + "1967-12-26": "Day After Christmas", + "1968-01-01": "New Year's Day", + "1968-01-06": "Epiphany", + "1968-03-04": "Clean Monday", + "1968-03-25": "Greek Independence Day", + "1968-04-01": "Cyprus National Day", + "1968-04-19": "Good Friday", + "1968-04-21": "Easter Sunday", + "1968-04-22": "Easter Monday", + "1968-05-01": "Labor Day", + "1968-06-10": "Monday of the Holy Spirit", + "1968-08-15": "Assumption of Mary", + "1968-10-01": "Cyprus Independence Day", + "1968-10-28": "Ochi Day", + "1968-12-24": "Christmas Eve", + "1968-12-25": "Christmas Day", + "1968-12-26": "Day After Christmas", + "1969-01-01": "New Year's Day", + "1969-01-06": "Epiphany", + "1969-02-24": "Clean Monday", + "1969-03-25": "Greek Independence Day", + "1969-04-01": "Cyprus National Day", + "1969-04-11": "Good Friday", + "1969-04-13": "Easter Sunday", + "1969-04-14": "Easter Monday", + "1969-05-01": "Labor Day", + "1969-06-02": "Monday of the Holy Spirit", + "1969-08-15": "Assumption of Mary", + "1969-10-01": "Cyprus Independence Day", + "1969-10-28": "Ochi Day", + "1969-12-24": "Christmas Eve", + "1969-12-25": "Christmas Day", + "1969-12-26": "Day After Christmas", + "1970-01-01": "New Year's Day", + "1970-01-06": "Epiphany", + "1970-03-09": "Clean Monday", + "1970-03-25": "Greek Independence Day", + "1970-04-01": "Cyprus National Day", + "1970-04-24": "Good Friday", + "1970-04-26": "Easter Sunday", + "1970-04-27": "Easter Monday", + "1970-05-01": "Labor Day", + "1970-06-15": "Monday of the Holy Spirit", + "1970-08-15": "Assumption of Mary", + "1970-10-01": "Cyprus Independence Day", + "1970-10-28": "Ochi Day", + "1970-12-24": "Christmas Eve", + "1970-12-25": "Christmas Day", + "1970-12-26": "Day After Christmas", + "1971-01-01": "New Year's Day", + "1971-01-06": "Epiphany", + "1971-03-01": "Clean Monday", + "1971-03-25": "Greek Independence Day", + "1971-04-01": "Cyprus National Day", + "1971-04-16": "Good Friday", + "1971-04-18": "Easter Sunday", + "1971-04-19": "Easter Monday", + "1971-05-01": "Labor Day", + "1971-06-07": "Monday of the Holy Spirit", + "1971-08-15": "Assumption of Mary", + "1971-10-01": "Cyprus Independence Day", + "1971-10-28": "Ochi Day", + "1971-12-24": "Christmas Eve", + "1971-12-25": "Christmas Day", + "1971-12-26": "Day After Christmas", + "1972-01-01": "New Year's Day", + "1972-01-06": "Epiphany", + "1972-02-21": "Clean Monday", + "1972-03-25": "Greek Independence Day", + "1972-04-01": "Cyprus National Day", + "1972-04-07": "Good Friday", + "1972-04-09": "Easter Sunday", + "1972-04-10": "Easter Monday", + "1972-05-01": "Labor Day", + "1972-05-29": "Monday of the Holy Spirit", + "1972-08-15": "Assumption of Mary", + "1972-10-01": "Cyprus Independence Day", + "1972-10-28": "Ochi Day", + "1972-12-24": "Christmas Eve", + "1972-12-25": "Christmas Day", + "1972-12-26": "Day After Christmas", + "1973-01-01": "New Year's Day", + "1973-01-06": "Epiphany", + "1973-03-12": "Clean Monday", + "1973-03-25": "Greek Independence Day", + "1973-04-01": "Cyprus National Day", + "1973-04-27": "Good Friday", + "1973-04-29": "Easter Sunday", + "1973-04-30": "Easter Monday", + "1973-05-01": "Labor Day", + "1973-06-18": "Monday of the Holy Spirit", + "1973-08-15": "Assumption of Mary", + "1973-10-01": "Cyprus Independence Day", + "1973-10-28": "Ochi Day", + "1973-12-24": "Christmas Eve", + "1973-12-25": "Christmas Day", + "1973-12-26": "Day After Christmas", + "1974-01-01": "New Year's Day", + "1974-01-06": "Epiphany", + "1974-02-25": "Clean Monday", + "1974-03-25": "Greek Independence Day", + "1974-04-01": "Cyprus National Day", + "1974-04-12": "Good Friday", + "1974-04-14": "Easter Sunday", + "1974-04-15": "Easter Monday", + "1974-05-01": "Labor Day", + "1974-06-03": "Monday of the Holy Spirit", + "1974-08-15": "Assumption of Mary", + "1974-10-01": "Cyprus Independence Day", + "1974-10-28": "Ochi Day", + "1974-12-24": "Christmas Eve", + "1974-12-25": "Christmas Day", + "1974-12-26": "Day After Christmas", + "1975-01-01": "New Year's Day", + "1975-01-06": "Epiphany", + "1975-03-17": "Clean Monday", + "1975-03-25": "Greek Independence Day", + "1975-04-01": "Cyprus National Day", + "1975-05-01": "Labor Day", + "1975-05-02": "Good Friday", + "1975-05-04": "Easter Sunday", + "1975-05-05": "Easter Monday", + "1975-06-23": "Monday of the Holy Spirit", + "1975-08-15": "Assumption of Mary", + "1975-10-01": "Cyprus Independence Day", + "1975-10-28": "Ochi Day", + "1975-12-24": "Christmas Eve", + "1975-12-25": "Christmas Day", + "1975-12-26": "Day After Christmas", + "1976-01-01": "New Year's Day", + "1976-01-06": "Epiphany", + "1976-03-08": "Clean Monday", + "1976-03-25": "Greek Independence Day", + "1976-04-01": "Cyprus National Day", + "1976-04-23": "Good Friday", + "1976-04-25": "Easter Sunday", + "1976-04-26": "Easter Monday", + "1976-05-01": "Labor Day", + "1976-06-14": "Monday of the Holy Spirit", + "1976-08-15": "Assumption of Mary", + "1976-10-01": "Cyprus Independence Day", + "1976-10-28": "Ochi Day", + "1976-12-24": "Christmas Eve", + "1976-12-25": "Christmas Day", + "1976-12-26": "Day After Christmas", + "1977-01-01": "New Year's Day", + "1977-01-06": "Epiphany", + "1977-02-21": "Clean Monday", + "1977-03-25": "Greek Independence Day", + "1977-04-01": "Cyprus National Day", + "1977-04-08": "Good Friday", + "1977-04-10": "Easter Sunday", + "1977-04-11": "Easter Monday", + "1977-05-01": "Labor Day", + "1977-05-30": "Monday of the Holy Spirit", + "1977-08-15": "Assumption of Mary", + "1977-10-01": "Cyprus Independence Day", + "1977-10-28": "Ochi Day", + "1977-12-24": "Christmas Eve", + "1977-12-25": "Christmas Day", + "1977-12-26": "Day After Christmas", + "1978-01-01": "New Year's Day", + "1978-01-06": "Epiphany", + "1978-03-13": "Clean Monday", + "1978-03-25": "Greek Independence Day", + "1978-04-01": "Cyprus National Day", + "1978-04-28": "Good Friday", + "1978-04-30": "Easter Sunday", + "1978-05-01": "Easter Monday; Labor Day", + "1978-06-19": "Monday of the Holy Spirit", + "1978-08-15": "Assumption of Mary", + "1978-10-01": "Cyprus Independence Day", + "1978-10-28": "Ochi Day", + "1978-12-24": "Christmas Eve", + "1978-12-25": "Christmas Day", + "1978-12-26": "Day After Christmas", + "1979-01-01": "New Year's Day", + "1979-01-06": "Epiphany", + "1979-03-05": "Clean Monday", + "1979-03-25": "Greek Independence Day", + "1979-04-01": "Cyprus National Day", + "1979-04-20": "Good Friday", + "1979-04-22": "Easter Sunday", + "1979-04-23": "Easter Monday", + "1979-05-01": "Labor Day", + "1979-06-11": "Monday of the Holy Spirit", + "1979-08-15": "Assumption of Mary", + "1979-10-01": "Cyprus Independence Day", + "1979-10-28": "Ochi Day", + "1979-12-24": "Christmas Eve", + "1979-12-25": "Christmas Day", + "1979-12-26": "Day After Christmas", + "1980-01-01": "New Year's Day", + "1980-01-06": "Epiphany", + "1980-02-18": "Clean Monday", + "1980-03-25": "Greek Independence Day", + "1980-04-01": "Cyprus National Day", + "1980-04-04": "Good Friday", + "1980-04-06": "Easter Sunday", + "1980-04-07": "Easter Monday", + "1980-05-01": "Labor Day", + "1980-05-26": "Monday of the Holy Spirit", + "1980-08-15": "Assumption of Mary", + "1980-10-01": "Cyprus Independence Day", + "1980-10-28": "Ochi Day", + "1980-12-24": "Christmas Eve", + "1980-12-25": "Christmas Day", + "1980-12-26": "Day After Christmas", + "1981-01-01": "New Year's Day", + "1981-01-06": "Epiphany", + "1981-03-09": "Clean Monday", + "1981-03-25": "Greek Independence Day", + "1981-04-01": "Cyprus National Day", + "1981-04-24": "Good Friday", + "1981-04-26": "Easter Sunday", + "1981-04-27": "Easter Monday", + "1981-05-01": "Labor Day", + "1981-06-15": "Monday of the Holy Spirit", + "1981-08-15": "Assumption of Mary", + "1981-10-01": "Cyprus Independence Day", + "1981-10-28": "Ochi Day", + "1981-12-24": "Christmas Eve", + "1981-12-25": "Christmas Day", + "1981-12-26": "Day After Christmas", + "1982-01-01": "New Year's Day", + "1982-01-06": "Epiphany", + "1982-03-01": "Clean Monday", + "1982-03-25": "Greek Independence Day", + "1982-04-01": "Cyprus National Day", + "1982-04-16": "Good Friday", + "1982-04-18": "Easter Sunday", + "1982-04-19": "Easter Monday", + "1982-05-01": "Labor Day", + "1982-06-07": "Monday of the Holy Spirit", + "1982-08-15": "Assumption of Mary", + "1982-10-01": "Cyprus Independence Day", + "1982-10-28": "Ochi Day", + "1982-12-24": "Christmas Eve", + "1982-12-25": "Christmas Day", + "1982-12-26": "Day After Christmas", + "1983-01-01": "New Year's Day", + "1983-01-06": "Epiphany", + "1983-03-21": "Clean Monday", + "1983-03-25": "Greek Independence Day", + "1983-04-01": "Cyprus National Day", + "1983-05-01": "Labor Day", + "1983-05-06": "Good Friday", + "1983-05-08": "Easter Sunday", + "1983-05-09": "Easter Monday", + "1983-06-27": "Monday of the Holy Spirit", + "1983-08-15": "Assumption of Mary", + "1983-10-01": "Cyprus Independence Day", + "1983-10-28": "Ochi Day", + "1983-12-24": "Christmas Eve", + "1983-12-25": "Christmas Day", + "1983-12-26": "Day After Christmas", + "1984-01-01": "New Year's Day", + "1984-01-06": "Epiphany", + "1984-03-05": "Clean Monday", + "1984-03-25": "Greek Independence Day", + "1984-04-01": "Cyprus National Day", + "1984-04-20": "Good Friday", + "1984-04-22": "Easter Sunday", + "1984-04-23": "Easter Monday", + "1984-05-01": "Labor Day", + "1984-06-11": "Monday of the Holy Spirit", + "1984-08-15": "Assumption of Mary", + "1984-10-01": "Cyprus Independence Day", + "1984-10-28": "Ochi Day", + "1984-12-24": "Christmas Eve", + "1984-12-25": "Christmas Day", + "1984-12-26": "Day After Christmas", + "1985-01-01": "New Year's Day", + "1985-01-06": "Epiphany", + "1985-02-25": "Clean Monday", + "1985-03-25": "Greek Independence Day", + "1985-04-01": "Cyprus National Day", + "1985-04-12": "Good Friday", + "1985-04-14": "Easter Sunday", + "1985-04-15": "Easter Monday", + "1985-05-01": "Labor Day", + "1985-06-03": "Monday of the Holy Spirit", + "1985-08-15": "Assumption of Mary", + "1985-10-01": "Cyprus Independence Day", + "1985-10-28": "Ochi Day", + "1985-12-24": "Christmas Eve", + "1985-12-25": "Christmas Day", + "1985-12-26": "Day After Christmas", + "1986-01-01": "New Year's Day", + "1986-01-06": "Epiphany", + "1986-03-17": "Clean Monday", + "1986-03-25": "Greek Independence Day", + "1986-04-01": "Cyprus National Day", + "1986-05-01": "Labor Day", + "1986-05-02": "Good Friday", + "1986-05-04": "Easter Sunday", + "1986-05-05": "Easter Monday", + "1986-06-23": "Monday of the Holy Spirit", + "1986-08-15": "Assumption of Mary", + "1986-10-01": "Cyprus Independence Day", + "1986-10-28": "Ochi Day", + "1986-12-24": "Christmas Eve", + "1986-12-25": "Christmas Day", + "1986-12-26": "Day After Christmas", + "1987-01-01": "New Year's Day", + "1987-01-06": "Epiphany", + "1987-03-02": "Clean Monday", + "1987-03-25": "Greek Independence Day", + "1987-04-01": "Cyprus National Day", + "1987-04-17": "Good Friday", + "1987-04-19": "Easter Sunday", + "1987-04-20": "Easter Monday", + "1987-05-01": "Labor Day", + "1987-06-08": "Monday of the Holy Spirit", + "1987-08-15": "Assumption of Mary", + "1987-10-01": "Cyprus Independence Day", + "1987-10-28": "Ochi Day", + "1987-12-24": "Christmas Eve", + "1987-12-25": "Christmas Day", + "1987-12-26": "Day After Christmas", + "1988-01-01": "New Year's Day", + "1988-01-06": "Epiphany", + "1988-02-22": "Clean Monday", + "1988-03-25": "Greek Independence Day", + "1988-04-01": "Cyprus National Day", + "1988-04-08": "Good Friday", + "1988-04-10": "Easter Sunday", + "1988-04-11": "Easter Monday", + "1988-05-01": "Labor Day", + "1988-05-30": "Monday of the Holy Spirit", + "1988-08-15": "Assumption of Mary", + "1988-10-01": "Cyprus Independence Day", + "1988-10-28": "Ochi Day", + "1988-12-24": "Christmas Eve", + "1988-12-25": "Christmas Day", + "1988-12-26": "Day After Christmas", + "1989-01-01": "New Year's Day", + "1989-01-06": "Epiphany", + "1989-03-13": "Clean Monday", + "1989-03-25": "Greek Independence Day", + "1989-04-01": "Cyprus National Day", + "1989-04-28": "Good Friday", + "1989-04-30": "Easter Sunday", + "1989-05-01": "Easter Monday; Labor Day", + "1989-06-19": "Monday of the Holy Spirit", + "1989-08-15": "Assumption of Mary", + "1989-10-01": "Cyprus Independence Day", + "1989-10-28": "Ochi Day", + "1989-12-24": "Christmas Eve", + "1989-12-25": "Christmas Day", + "1989-12-26": "Day After Christmas", + "1990-01-01": "New Year's Day", + "1990-01-06": "Epiphany", + "1990-02-26": "Clean Monday", + "1990-03-25": "Greek Independence Day", + "1990-04-01": "Cyprus National Day", + "1990-04-13": "Good Friday", + "1990-04-15": "Easter Sunday", + "1990-04-16": "Easter Monday", + "1990-05-01": "Labor Day", + "1990-06-04": "Monday of the Holy Spirit", + "1990-08-15": "Assumption of Mary", + "1990-10-01": "Cyprus Independence Day", + "1990-10-28": "Ochi Day", + "1990-12-24": "Christmas Eve", + "1990-12-25": "Christmas Day", + "1990-12-26": "Day After Christmas", + "1991-01-01": "New Year's Day", + "1991-01-06": "Epiphany", + "1991-02-18": "Clean Monday", + "1991-03-25": "Greek Independence Day", + "1991-04-01": "Cyprus National Day", + "1991-04-05": "Good Friday", + "1991-04-07": "Easter Sunday", + "1991-04-08": "Easter Monday", + "1991-05-01": "Labor Day", + "1991-05-27": "Monday of the Holy Spirit", + "1991-08-15": "Assumption of Mary", + "1991-10-01": "Cyprus Independence Day", + "1991-10-28": "Ochi Day", + "1991-12-24": "Christmas Eve", + "1991-12-25": "Christmas Day", + "1991-12-26": "Day After Christmas", + "1992-01-01": "New Year's Day", + "1992-01-06": "Epiphany", + "1992-03-09": "Clean Monday", + "1992-03-25": "Greek Independence Day", + "1992-04-01": "Cyprus National Day", + "1992-04-24": "Good Friday", + "1992-04-26": "Easter Sunday", + "1992-04-27": "Easter Monday", + "1992-05-01": "Labor Day", + "1992-06-15": "Monday of the Holy Spirit", + "1992-08-15": "Assumption of Mary", + "1992-10-01": "Cyprus Independence Day", + "1992-10-28": "Ochi Day", + "1992-12-24": "Christmas Eve", + "1992-12-25": "Christmas Day", + "1992-12-26": "Day After Christmas", + "1993-01-01": "New Year's Day", + "1993-01-06": "Epiphany", + "1993-03-01": "Clean Monday", + "1993-03-25": "Greek Independence Day", + "1993-04-01": "Cyprus National Day", + "1993-04-16": "Good Friday", + "1993-04-18": "Easter Sunday", + "1993-04-19": "Easter Monday", + "1993-05-01": "Labor Day", + "1993-06-07": "Monday of the Holy Spirit", + "1993-08-15": "Assumption of Mary", + "1993-10-01": "Cyprus Independence Day", + "1993-10-28": "Ochi Day", + "1993-12-24": "Christmas Eve", + "1993-12-25": "Christmas Day", + "1993-12-26": "Day After Christmas", + "1994-01-01": "New Year's Day", + "1994-01-06": "Epiphany", + "1994-03-14": "Clean Monday", + "1994-03-25": "Greek Independence Day", + "1994-04-01": "Cyprus National Day", + "1994-04-29": "Good Friday", + "1994-05-01": "Easter Sunday; Labor Day", + "1994-05-02": "Easter Monday", + "1994-06-20": "Monday of the Holy Spirit", + "1994-08-15": "Assumption of Mary", + "1994-10-01": "Cyprus Independence Day", + "1994-10-28": "Ochi Day", + "1994-12-24": "Christmas Eve", + "1994-12-25": "Christmas Day", + "1994-12-26": "Day After Christmas", + "1995-01-01": "New Year's Day", + "1995-01-06": "Epiphany", + "1995-03-06": "Clean Monday", + "1995-03-25": "Greek Independence Day", + "1995-04-01": "Cyprus National Day", + "1995-04-21": "Good Friday", + "1995-04-23": "Easter Sunday", + "1995-04-24": "Easter Monday", + "1995-05-01": "Labor Day", + "1995-06-12": "Monday of the Holy Spirit", + "1995-08-15": "Assumption of Mary", + "1995-10-01": "Cyprus Independence Day", + "1995-10-28": "Ochi Day", + "1995-12-24": "Christmas Eve", + "1995-12-25": "Christmas Day", + "1995-12-26": "Day After Christmas", + "1996-01-01": "New Year's Day", + "1996-01-06": "Epiphany", + "1996-02-26": "Clean Monday", + "1996-03-25": "Greek Independence Day", + "1996-04-01": "Cyprus National Day", + "1996-04-12": "Good Friday", + "1996-04-14": "Easter Sunday", + "1996-04-15": "Easter Monday", + "1996-05-01": "Labor Day", + "1996-06-03": "Monday of the Holy Spirit", + "1996-08-15": "Assumption of Mary", + "1996-10-01": "Cyprus Independence Day", + "1996-10-28": "Ochi Day", + "1996-12-24": "Christmas Eve", + "1996-12-25": "Christmas Day", + "1996-12-26": "Day After Christmas", + "1997-01-01": "New Year's Day", + "1997-01-06": "Epiphany", + "1997-03-10": "Clean Monday", + "1997-03-25": "Greek Independence Day", + "1997-04-01": "Cyprus National Day", + "1997-04-25": "Good Friday", + "1997-04-27": "Easter Sunday", + "1997-04-28": "Easter Monday", + "1997-05-01": "Labor Day", + "1997-06-16": "Monday of the Holy Spirit", + "1997-08-15": "Assumption of Mary", + "1997-10-01": "Cyprus Independence Day", + "1997-10-28": "Ochi Day", + "1997-12-24": "Christmas Eve", + "1997-12-25": "Christmas Day", + "1997-12-26": "Day After Christmas", + "1998-01-01": "New Year's Day", + "1998-01-06": "Epiphany", + "1998-03-02": "Clean Monday", + "1998-03-25": "Greek Independence Day", + "1998-04-01": "Cyprus National Day", + "1998-04-17": "Good Friday", + "1998-04-19": "Easter Sunday", + "1998-04-20": "Easter Monday", + "1998-05-01": "Labor Day", + "1998-06-08": "Monday of the Holy Spirit", + "1998-08-15": "Assumption of Mary", + "1998-10-01": "Cyprus Independence Day", + "1998-10-28": "Ochi Day", + "1998-12-24": "Christmas Eve", + "1998-12-25": "Christmas Day", + "1998-12-26": "Day After Christmas", + "1999-01-01": "New Year's Day", + "1999-01-06": "Epiphany", + "1999-02-22": "Clean Monday", + "1999-03-25": "Greek Independence Day", + "1999-04-01": "Cyprus National Day", + "1999-04-09": "Good Friday", + "1999-04-11": "Easter Sunday", + "1999-04-12": "Easter Monday", + "1999-05-01": "Labor Day", + "1999-05-31": "Monday of the Holy Spirit", + "1999-08-15": "Assumption of Mary", + "1999-10-01": "Cyprus Independence Day", + "1999-10-28": "Ochi Day", + "1999-12-24": "Christmas Eve", + "1999-12-25": "Christmas Day", + "1999-12-26": "Day After Christmas", + "2000-01-01": "New Year's Day", + "2000-01-06": "Epiphany", + "2000-03-13": "Clean Monday", + "2000-03-25": "Greek Independence Day", + "2000-04-01": "Cyprus National Day", + "2000-04-28": "Good Friday", + "2000-04-30": "Easter Sunday", + "2000-05-01": "Easter Monday; Labor Day", + "2000-06-19": "Monday of the Holy Spirit", + "2000-08-15": "Assumption of Mary", + "2000-10-01": "Cyprus Independence Day", + "2000-10-28": "Ochi Day", + "2000-12-24": "Christmas Eve", + "2000-12-25": "Christmas Day", + "2000-12-26": "Day After Christmas", + "2001-01-01": "New Year's Day", + "2001-01-06": "Epiphany", + "2001-02-26": "Clean Monday", + "2001-03-25": "Greek Independence Day", + "2001-04-01": "Cyprus National Day", + "2001-04-13": "Good Friday", + "2001-04-15": "Easter Sunday", + "2001-04-16": "Easter Monday", + "2001-05-01": "Labor Day", + "2001-06-04": "Monday of the Holy Spirit", + "2001-08-15": "Assumption of Mary", + "2001-10-01": "Cyprus Independence Day", + "2001-10-28": "Ochi Day", + "2001-12-24": "Christmas Eve", + "2001-12-25": "Christmas Day", + "2001-12-26": "Day After Christmas", + "2002-01-01": "New Year's Day", + "2002-01-06": "Epiphany", + "2002-03-18": "Clean Monday", + "2002-03-25": "Greek Independence Day", + "2002-04-01": "Cyprus National Day", + "2002-05-01": "Labor Day", + "2002-05-03": "Good Friday", + "2002-05-05": "Easter Sunday", + "2002-05-06": "Easter Monday", + "2002-06-24": "Monday of the Holy Spirit", + "2002-08-15": "Assumption of Mary", + "2002-10-01": "Cyprus Independence Day", + "2002-10-28": "Ochi Day", + "2002-12-24": "Christmas Eve", + "2002-12-25": "Christmas Day", + "2002-12-26": "Day After Christmas", + "2003-01-01": "New Year's Day", + "2003-01-06": "Epiphany", + "2003-03-10": "Clean Monday", + "2003-03-25": "Greek Independence Day", + "2003-04-01": "Cyprus National Day", + "2003-04-25": "Good Friday", + "2003-04-27": "Easter Sunday", + "2003-04-28": "Easter Monday", + "2003-05-01": "Labor Day", + "2003-06-16": "Monday of the Holy Spirit", + "2003-08-15": "Assumption of Mary", + "2003-10-01": "Cyprus Independence Day", + "2003-10-28": "Ochi Day", + "2003-12-24": "Christmas Eve", + "2003-12-25": "Christmas Day", + "2003-12-26": "Day After Christmas", + "2004-01-01": "New Year's Day", + "2004-01-06": "Epiphany", + "2004-02-23": "Clean Monday", + "2004-03-25": "Greek Independence Day", + "2004-04-01": "Cyprus National Day", + "2004-04-09": "Good Friday", + "2004-04-11": "Easter Sunday", + "2004-04-12": "Easter Monday", + "2004-05-01": "Labor Day", + "2004-05-31": "Monday of the Holy Spirit", + "2004-08-15": "Assumption of Mary", + "2004-10-01": "Cyprus Independence Day", + "2004-10-28": "Ochi Day", + "2004-12-24": "Christmas Eve", + "2004-12-25": "Christmas Day", + "2004-12-26": "Day After Christmas", + "2005-01-01": "New Year's Day", + "2005-01-06": "Epiphany", + "2005-03-14": "Clean Monday", + "2005-03-25": "Greek Independence Day", + "2005-04-01": "Cyprus National Day", + "2005-04-29": "Good Friday", + "2005-05-01": "Easter Sunday; Labor Day", + "2005-05-02": "Easter Monday", + "2005-06-20": "Monday of the Holy Spirit", + "2005-08-15": "Assumption of Mary", + "2005-10-01": "Cyprus Independence Day", + "2005-10-28": "Ochi Day", + "2005-12-24": "Christmas Eve", + "2005-12-25": "Christmas Day", + "2005-12-26": "Day After Christmas", + "2006-01-01": "New Year's Day", + "2006-01-06": "Epiphany", + "2006-03-06": "Clean Monday", + "2006-03-25": "Greek Independence Day", + "2006-04-01": "Cyprus National Day", + "2006-04-21": "Good Friday", + "2006-04-23": "Easter Sunday", + "2006-04-24": "Easter Monday", + "2006-05-01": "Labor Day", + "2006-06-12": "Monday of the Holy Spirit", + "2006-08-15": "Assumption of Mary", + "2006-10-01": "Cyprus Independence Day", + "2006-10-28": "Ochi Day", + "2006-12-24": "Christmas Eve", + "2006-12-25": "Christmas Day", + "2006-12-26": "Day After Christmas", + "2007-01-01": "New Year's Day", + "2007-01-06": "Epiphany", + "2007-02-19": "Clean Monday", + "2007-03-25": "Greek Independence Day", + "2007-04-01": "Cyprus National Day", + "2007-04-06": "Good Friday", + "2007-04-08": "Easter Sunday", + "2007-04-09": "Easter Monday", + "2007-05-01": "Labor Day", + "2007-05-28": "Monday of the Holy Spirit", + "2007-08-15": "Assumption of Mary", + "2007-10-01": "Cyprus Independence Day", + "2007-10-28": "Ochi Day", + "2007-12-24": "Christmas Eve", + "2007-12-25": "Christmas Day", + "2007-12-26": "Day After Christmas", + "2008-01-01": "New Year's Day", + "2008-01-06": "Epiphany", + "2008-03-10": "Clean Monday", + "2008-03-25": "Greek Independence Day", + "2008-04-01": "Cyprus National Day", + "2008-04-25": "Good Friday", + "2008-04-27": "Easter Sunday", + "2008-04-28": "Easter Monday", + "2008-05-01": "Labor Day", + "2008-06-16": "Monday of the Holy Spirit", + "2008-08-15": "Assumption of Mary", + "2008-10-01": "Cyprus Independence Day", + "2008-10-28": "Ochi Day", + "2008-12-24": "Christmas Eve", + "2008-12-25": "Christmas Day", + "2008-12-26": "Day After Christmas", + "2009-01-01": "New Year's Day", + "2009-01-06": "Epiphany", + "2009-03-02": "Clean Monday", + "2009-03-25": "Greek Independence Day", + "2009-04-01": "Cyprus National Day", + "2009-04-17": "Good Friday", + "2009-04-19": "Easter Sunday", + "2009-04-20": "Easter Monday", + "2009-05-01": "Labor Day", + "2009-06-08": "Monday of the Holy Spirit", + "2009-08-15": "Assumption of Mary", + "2009-10-01": "Cyprus Independence Day", + "2009-10-28": "Ochi Day", + "2009-12-24": "Christmas Eve", + "2009-12-25": "Christmas Day", + "2009-12-26": "Day After Christmas", + "2010-01-01": "New Year's Day", + "2010-01-06": "Epiphany", + "2010-02-15": "Clean Monday", + "2010-03-25": "Greek Independence Day", + "2010-04-01": "Cyprus National Day", + "2010-04-02": "Good Friday", + "2010-04-04": "Easter Sunday", + "2010-04-05": "Easter Monday", + "2010-05-01": "Labor Day", + "2010-05-24": "Monday of the Holy Spirit", + "2010-08-15": "Assumption of Mary", + "2010-10-01": "Cyprus Independence Day", + "2010-10-28": "Ochi Day", + "2010-12-24": "Christmas Eve", + "2010-12-25": "Christmas Day", + "2010-12-26": "Day After Christmas", + "2011-01-01": "New Year's Day", + "2011-01-06": "Epiphany", + "2011-03-07": "Clean Monday", + "2011-03-25": "Greek Independence Day", + "2011-04-01": "Cyprus National Day", + "2011-04-22": "Good Friday", + "2011-04-24": "Easter Sunday", + "2011-04-25": "Easter Monday", + "2011-05-01": "Labor Day", + "2011-06-13": "Monday of the Holy Spirit", + "2011-08-15": "Assumption of Mary", + "2011-10-01": "Cyprus Independence Day", + "2011-10-28": "Ochi Day", + "2011-12-24": "Christmas Eve", + "2011-12-25": "Christmas Day", + "2011-12-26": "Day After Christmas", + "2012-01-01": "New Year's Day", + "2012-01-06": "Epiphany", + "2012-02-27": "Clean Monday", + "2012-03-25": "Greek Independence Day", + "2012-04-01": "Cyprus National Day", + "2012-04-13": "Good Friday", + "2012-04-15": "Easter Sunday", + "2012-04-16": "Easter Monday", + "2012-05-01": "Labor Day", + "2012-06-04": "Monday of the Holy Spirit", + "2012-08-15": "Assumption of Mary", + "2012-10-01": "Cyprus Independence Day", + "2012-10-28": "Ochi Day", + "2012-12-24": "Christmas Eve", + "2012-12-25": "Christmas Day", + "2012-12-26": "Day After Christmas", + "2013-01-01": "New Year's Day", + "2013-01-06": "Epiphany", + "2013-03-18": "Clean Monday", + "2013-03-25": "Greek Independence Day", + "2013-04-01": "Cyprus National Day", + "2013-05-01": "Labor Day", + "2013-05-03": "Good Friday", + "2013-05-05": "Easter Sunday", + "2013-05-06": "Easter Monday", + "2013-06-24": "Monday of the Holy Spirit", + "2013-08-15": "Assumption of Mary", + "2013-10-01": "Cyprus Independence Day", + "2013-10-28": "Ochi Day", + "2013-12-24": "Christmas Eve", + "2013-12-25": "Christmas Day", + "2013-12-26": "Day After Christmas", + "2014-01-01": "New Year's Day", + "2014-01-06": "Epiphany", + "2014-03-03": "Clean Monday", + "2014-03-25": "Greek Independence Day", + "2014-04-01": "Cyprus National Day", + "2014-04-18": "Good Friday", + "2014-04-20": "Easter Sunday", + "2014-04-21": "Easter Monday", + "2014-05-01": "Labor Day", + "2014-06-09": "Monday of the Holy Spirit", + "2014-08-15": "Assumption of Mary", + "2014-10-01": "Cyprus Independence Day", + "2014-10-28": "Ochi Day", + "2014-12-24": "Christmas Eve", + "2014-12-25": "Christmas Day", + "2014-12-26": "Day After Christmas", + "2015-01-01": "New Year's Day", + "2015-01-06": "Epiphany", + "2015-02-23": "Clean Monday", + "2015-03-25": "Greek Independence Day", + "2015-04-01": "Cyprus National Day", + "2015-04-10": "Good Friday", + "2015-04-12": "Easter Sunday", + "2015-04-13": "Easter Monday", + "2015-05-01": "Labor Day", + "2015-06-01": "Monday of the Holy Spirit", + "2015-08-15": "Assumption of Mary", + "2015-10-01": "Cyprus Independence Day", + "2015-10-28": "Ochi Day", + "2015-12-24": "Christmas Eve", + "2015-12-25": "Christmas Day", + "2015-12-26": "Day After Christmas", + "2016-01-01": "New Year's Day", + "2016-01-06": "Epiphany", + "2016-03-14": "Clean Monday", + "2016-03-25": "Greek Independence Day", + "2016-04-01": "Cyprus National Day", + "2016-04-29": "Good Friday", + "2016-05-01": "Easter Sunday; Labor Day", + "2016-05-02": "Easter Monday", + "2016-06-20": "Monday of the Holy Spirit", + "2016-08-15": "Assumption of Mary", + "2016-10-01": "Cyprus Independence Day", + "2016-10-28": "Ochi Day", + "2016-12-24": "Christmas Eve", + "2016-12-25": "Christmas Day", + "2016-12-26": "Day After Christmas", + "2017-01-01": "New Year's Day", + "2017-01-06": "Epiphany", + "2017-02-27": "Clean Monday", + "2017-03-25": "Greek Independence Day", + "2017-04-01": "Cyprus National Day", + "2017-04-14": "Good Friday", + "2017-04-16": "Easter Sunday", + "2017-04-17": "Easter Monday", + "2017-05-01": "Labor Day", + "2017-06-05": "Monday of the Holy Spirit", + "2017-08-15": "Assumption of Mary", + "2017-10-01": "Cyprus Independence Day", + "2017-10-28": "Ochi Day", + "2017-12-24": "Christmas Eve", + "2017-12-25": "Christmas Day", + "2017-12-26": "Day After Christmas", + "2018-01-01": "New Year's Day", + "2018-01-06": "Epiphany", + "2018-02-19": "Clean Monday", + "2018-03-25": "Greek Independence Day", + "2018-04-01": "Cyprus National Day", + "2018-04-06": "Good Friday", + "2018-04-08": "Easter Sunday", + "2018-04-09": "Easter Monday", + "2018-05-01": "Labor Day", + "2018-05-28": "Monday of the Holy Spirit", + "2018-08-15": "Assumption of Mary", + "2018-10-01": "Cyprus Independence Day", + "2018-10-28": "Ochi Day", + "2018-12-24": "Christmas Eve", + "2018-12-25": "Christmas Day", + "2018-12-26": "Day After Christmas", + "2019-01-01": "New Year's Day", + "2019-01-06": "Epiphany", + "2019-03-11": "Clean Monday", + "2019-03-25": "Greek Independence Day", + "2019-04-01": "Cyprus National Day", + "2019-04-26": "Good Friday", + "2019-04-28": "Easter Sunday", + "2019-04-29": "Easter Monday", + "2019-05-01": "Labor Day", + "2019-06-17": "Monday of the Holy Spirit", + "2019-08-15": "Assumption of Mary", + "2019-10-01": "Cyprus Independence Day", + "2019-10-28": "Ochi Day", + "2019-12-24": "Christmas Eve", + "2019-12-25": "Christmas Day", + "2019-12-26": "Day After Christmas", + "2020-01-01": "New Year's Day", + "2020-01-06": "Epiphany", + "2020-03-02": "Clean Monday", + "2020-03-25": "Greek Independence Day", + "2020-04-01": "Cyprus National Day", + "2020-04-17": "Good Friday", + "2020-04-19": "Easter Sunday", + "2020-04-20": "Easter Monday", + "2020-05-01": "Labor Day", + "2020-06-08": "Monday of the Holy Spirit", + "2020-08-15": "Assumption of Mary", + "2020-10-01": "Cyprus Independence Day", + "2020-10-28": "Ochi Day", + "2020-12-24": "Christmas Eve", + "2020-12-25": "Christmas Day", + "2020-12-26": "Day After Christmas", + "2021-01-01": "New Year's Day", + "2021-01-06": "Epiphany", + "2021-03-15": "Clean Monday", + "2021-03-25": "Greek Independence Day", + "2021-04-01": "Cyprus National Day", + "2021-04-30": "Good Friday", + "2021-05-01": "Labor Day", + "2021-05-02": "Easter Sunday", + "2021-05-03": "Easter Monday", + "2021-06-21": "Monday of the Holy Spirit", + "2021-08-15": "Assumption of Mary", + "2021-10-01": "Cyprus Independence Day", + "2021-10-28": "Ochi Day", + "2021-12-24": "Christmas Eve", + "2021-12-25": "Christmas Day", + "2021-12-26": "Day After Christmas", + "2022-01-01": "New Year's Day", + "2022-01-06": "Epiphany", + "2022-03-07": "Clean Monday", + "2022-03-25": "Greek Independence Day", + "2022-04-01": "Cyprus National Day", + "2022-04-22": "Good Friday", + "2022-04-24": "Easter Sunday", + "2022-04-25": "Easter Monday", + "2022-05-01": "Labor Day", + "2022-06-13": "Monday of the Holy Spirit", + "2022-08-15": "Assumption of Mary", + "2022-10-01": "Cyprus Independence Day", + "2022-10-28": "Ochi Day", + "2022-12-24": "Christmas Eve", + "2022-12-25": "Christmas Day", + "2022-12-26": "Day After Christmas", + "2023-01-01": "New Year's Day", + "2023-01-06": "Epiphany", + "2023-02-27": "Clean Monday", + "2023-03-25": "Greek Independence Day", + "2023-04-01": "Cyprus National Day", + "2023-04-14": "Good Friday", + "2023-04-16": "Easter Sunday", + "2023-04-17": "Easter Monday", + "2023-05-01": "Labor Day", + "2023-06-05": "Monday of the Holy Spirit", + "2023-08-15": "Assumption of Mary", + "2023-10-01": "Cyprus Independence Day", + "2023-10-28": "Ochi Day", + "2023-12-24": "Christmas Eve", + "2023-12-25": "Christmas Day", + "2023-12-26": "Day After Christmas", + "2024-01-01": "New Year's Day", + "2024-01-06": "Epiphany", + "2024-03-18": "Clean Monday", + "2024-03-25": "Greek Independence Day", + "2024-04-01": "Cyprus National Day", + "2024-05-01": "Labor Day", + "2024-05-03": "Good Friday", + "2024-05-05": "Easter Sunday", + "2024-05-06": "Easter Monday", + "2024-06-24": "Monday of the Holy Spirit", + "2024-08-15": "Assumption of Mary", + "2024-10-01": "Cyprus Independence Day", + "2024-10-28": "Ochi Day", + "2024-12-24": "Christmas Eve", + "2024-12-25": "Christmas Day", + "2024-12-26": "Day After Christmas", + "2025-01-01": "New Year's Day", + "2025-01-06": "Epiphany", + "2025-03-03": "Clean Monday", + "2025-03-25": "Greek Independence Day", + "2025-04-01": "Cyprus National Day", + "2025-04-18": "Good Friday", + "2025-04-20": "Easter Sunday", + "2025-04-21": "Easter Monday", + "2025-05-01": "Labor Day", + "2025-06-09": "Monday of the Holy Spirit", + "2025-08-15": "Assumption of Mary", + "2025-10-01": "Cyprus Independence Day", + "2025-10-28": "Ochi Day", + "2025-12-24": "Christmas Eve", + "2025-12-25": "Christmas Day", + "2025-12-26": "Day After Christmas", + "2026-01-01": "New Year's Day", + "2026-01-06": "Epiphany", + "2026-02-23": "Clean Monday", + "2026-03-25": "Greek Independence Day", + "2026-04-01": "Cyprus National Day", + "2026-04-10": "Good Friday", + "2026-04-12": "Easter Sunday", + "2026-04-13": "Easter Monday", + "2026-05-01": "Labor Day", + "2026-06-01": "Monday of the Holy Spirit", + "2026-08-15": "Assumption of Mary", + "2026-10-01": "Cyprus Independence Day", + "2026-10-28": "Ochi Day", + "2026-12-24": "Christmas Eve", + "2026-12-25": "Christmas Day", + "2026-12-26": "Day After Christmas", + "2027-01-01": "New Year's Day", + "2027-01-06": "Epiphany", + "2027-03-15": "Clean Monday", + "2027-03-25": "Greek Independence Day", + "2027-04-01": "Cyprus National Day", + "2027-04-30": "Good Friday", + "2027-05-01": "Labor Day", + "2027-05-02": "Easter Sunday", + "2027-05-03": "Easter Monday", + "2027-06-21": "Monday of the Holy Spirit", + "2027-08-15": "Assumption of Mary", + "2027-10-01": "Cyprus Independence Day", + "2027-10-28": "Ochi Day", + "2027-12-24": "Christmas Eve", + "2027-12-25": "Christmas Day", + "2027-12-26": "Day After Christmas", + "2028-01-01": "New Year's Day", + "2028-01-06": "Epiphany", + "2028-02-28": "Clean Monday", + "2028-03-25": "Greek Independence Day", + "2028-04-01": "Cyprus National Day", + "2028-04-14": "Good Friday", + "2028-04-16": "Easter Sunday", + "2028-04-17": "Easter Monday", + "2028-05-01": "Labor Day", + "2028-06-05": "Monday of the Holy Spirit", + "2028-08-15": "Assumption of Mary", + "2028-10-01": "Cyprus Independence Day", + "2028-10-28": "Ochi Day", + "2028-12-24": "Christmas Eve", + "2028-12-25": "Christmas Day", + "2028-12-26": "Day After Christmas", + "2029-01-01": "New Year's Day", + "2029-01-06": "Epiphany", + "2029-02-19": "Clean Monday", + "2029-03-25": "Greek Independence Day", + "2029-04-01": "Cyprus National Day", + "2029-04-06": "Good Friday", + "2029-04-08": "Easter Sunday", + "2029-04-09": "Easter Monday", + "2029-05-01": "Labor Day", + "2029-05-28": "Monday of the Holy Spirit", + "2029-08-15": "Assumption of Mary", + "2029-10-01": "Cyprus Independence Day", + "2029-10-28": "Ochi Day", + "2029-12-24": "Christmas Eve", + "2029-12-25": "Christmas Day", + "2029-12-26": "Day After Christmas", + "2030-01-01": "New Year's Day", + "2030-01-06": "Epiphany", + "2030-03-11": "Clean Monday", + "2030-03-25": "Greek Independence Day", + "2030-04-01": "Cyprus National Day", + "2030-04-26": "Good Friday", + "2030-04-28": "Easter Sunday", + "2030-04-29": "Easter Monday", + "2030-05-01": "Labor Day", + "2030-06-17": "Monday of the Holy Spirit", + "2030-08-15": "Assumption of Mary", + "2030-10-01": "Cyprus Independence Day", + "2030-10-28": "Ochi Day", + "2030-12-24": "Christmas Eve", + "2030-12-25": "Christmas Day", + "2030-12-26": "Day After Christmas", + "2031-01-01": "New Year's Day", + "2031-01-06": "Epiphany", + "2031-02-24": "Clean Monday", + "2031-03-25": "Greek Independence Day", + "2031-04-01": "Cyprus National Day", + "2031-04-11": "Good Friday", + "2031-04-13": "Easter Sunday", + "2031-04-14": "Easter Monday", + "2031-05-01": "Labor Day", + "2031-06-02": "Monday of the Holy Spirit", + "2031-08-15": "Assumption of Mary", + "2031-10-01": "Cyprus Independence Day", + "2031-10-28": "Ochi Day", + "2031-12-24": "Christmas Eve", + "2031-12-25": "Christmas Day", + "2031-12-26": "Day After Christmas", + "2032-01-01": "New Year's Day", + "2032-01-06": "Epiphany", + "2032-03-15": "Clean Monday", + "2032-03-25": "Greek Independence Day", + "2032-04-01": "Cyprus National Day", + "2032-04-30": "Good Friday", + "2032-05-01": "Labor Day", + "2032-05-02": "Easter Sunday", + "2032-05-03": "Easter Monday", + "2032-06-21": "Monday of the Holy Spirit", + "2032-08-15": "Assumption of Mary", + "2032-10-01": "Cyprus Independence Day", + "2032-10-28": "Ochi Day", + "2032-12-24": "Christmas Eve", + "2032-12-25": "Christmas Day", + "2032-12-26": "Day After Christmas", + "2033-01-01": "New Year's Day", + "2033-01-06": "Epiphany", + "2033-03-07": "Clean Monday", + "2033-03-25": "Greek Independence Day", + "2033-04-01": "Cyprus National Day", + "2033-04-22": "Good Friday", + "2033-04-24": "Easter Sunday", + "2033-04-25": "Easter Monday", + "2033-05-01": "Labor Day", + "2033-06-13": "Monday of the Holy Spirit", + "2033-08-15": "Assumption of Mary", + "2033-10-01": "Cyprus Independence Day", + "2033-10-28": "Ochi Day", + "2033-12-24": "Christmas Eve", + "2033-12-25": "Christmas Day", + "2033-12-26": "Day After Christmas", + "2034-01-01": "New Year's Day", + "2034-01-06": "Epiphany", + "2034-02-20": "Clean Monday", + "2034-03-25": "Greek Independence Day", + "2034-04-01": "Cyprus National Day", + "2034-04-07": "Good Friday", + "2034-04-09": "Easter Sunday", + "2034-04-10": "Easter Monday", + "2034-05-01": "Labor Day", + "2034-05-29": "Monday of the Holy Spirit", + "2034-08-15": "Assumption of Mary", + "2034-10-01": "Cyprus Independence Day", + "2034-10-28": "Ochi Day", + "2034-12-24": "Christmas Eve", + "2034-12-25": "Christmas Day", + "2034-12-26": "Day After Christmas", + "2035-01-01": "New Year's Day", + "2035-01-06": "Epiphany", + "2035-03-12": "Clean Monday", + "2035-03-25": "Greek Independence Day", + "2035-04-01": "Cyprus National Day", + "2035-04-27": "Good Friday", + "2035-04-29": "Easter Sunday", + "2035-04-30": "Easter Monday", + "2035-05-01": "Labor Day", + "2035-06-18": "Monday of the Holy Spirit", + "2035-08-15": "Assumption of Mary", + "2035-10-01": "Cyprus Independence Day", + "2035-10-28": "Ochi Day", + "2035-12-24": "Christmas Eve", + "2035-12-25": "Christmas Day", + "2035-12-26": "Day After Christmas", + "2036-01-01": "New Year's Day", + "2036-01-06": "Epiphany", + "2036-03-03": "Clean Monday", + "2036-03-25": "Greek Independence Day", + "2036-04-01": "Cyprus National Day", + "2036-04-18": "Good Friday", + "2036-04-20": "Easter Sunday", + "2036-04-21": "Easter Monday", + "2036-05-01": "Labor Day", + "2036-06-09": "Monday of the Holy Spirit", + "2036-08-15": "Assumption of Mary", + "2036-10-01": "Cyprus Independence Day", + "2036-10-28": "Ochi Day", + "2036-12-24": "Christmas Eve", + "2036-12-25": "Christmas Day", + "2036-12-26": "Day After Christmas", + "2037-01-01": "New Year's Day", + "2037-01-06": "Epiphany", + "2037-02-16": "Clean Monday", + "2037-03-25": "Greek Independence Day", + "2037-04-01": "Cyprus National Day", + "2037-04-03": "Good Friday", + "2037-04-05": "Easter Sunday", + "2037-04-06": "Easter Monday", + "2037-05-01": "Labor Day", + "2037-05-25": "Monday of the Holy Spirit", + "2037-08-15": "Assumption of Mary", + "2037-10-01": "Cyprus Independence Day", + "2037-10-28": "Ochi Day", + "2037-12-24": "Christmas Eve", + "2037-12-25": "Christmas Day", + "2037-12-26": "Day After Christmas", + "2038-01-01": "New Year's Day", + "2038-01-06": "Epiphany", + "2038-03-08": "Clean Monday", + "2038-03-25": "Greek Independence Day", + "2038-04-01": "Cyprus National Day", + "2038-04-23": "Good Friday", + "2038-04-25": "Easter Sunday", + "2038-04-26": "Easter Monday", + "2038-05-01": "Labor Day", + "2038-06-14": "Monday of the Holy Spirit", + "2038-08-15": "Assumption of Mary", + "2038-10-01": "Cyprus Independence Day", + "2038-10-28": "Ochi Day", + "2038-12-24": "Christmas Eve", + "2038-12-25": "Christmas Day", + "2038-12-26": "Day After Christmas", + "2039-01-01": "New Year's Day", + "2039-01-06": "Epiphany", + "2039-02-28": "Clean Monday", + "2039-03-25": "Greek Independence Day", + "2039-04-01": "Cyprus National Day", + "2039-04-15": "Good Friday", + "2039-04-17": "Easter Sunday", + "2039-04-18": "Easter Monday", + "2039-05-01": "Labor Day", + "2039-06-06": "Monday of the Holy Spirit", + "2039-08-15": "Assumption of Mary", + "2039-10-01": "Cyprus Independence Day", + "2039-10-28": "Ochi Day", + "2039-12-24": "Christmas Eve", + "2039-12-25": "Christmas Day", + "2039-12-26": "Day After Christmas", + "2040-01-01": "New Year's Day", + "2040-01-06": "Epiphany", + "2040-03-19": "Clean Monday", + "2040-03-25": "Greek Independence Day", + "2040-04-01": "Cyprus National Day", + "2040-05-01": "Labor Day", + "2040-05-04": "Good Friday", + "2040-05-06": "Easter Sunday", + "2040-05-07": "Easter Monday", + "2040-06-25": "Monday of the Holy Spirit", + "2040-08-15": "Assumption of Mary", + "2040-10-01": "Cyprus Independence Day", + "2040-10-28": "Ochi Day", + "2040-12-24": "Christmas Eve", + "2040-12-25": "Christmas Day", + "2040-12-26": "Day After Christmas", + "2041-01-01": "New Year's Day", + "2041-01-06": "Epiphany", + "2041-03-04": "Clean Monday", + "2041-03-25": "Greek Independence Day", + "2041-04-01": "Cyprus National Day", + "2041-04-19": "Good Friday", + "2041-04-21": "Easter Sunday", + "2041-04-22": "Easter Monday", + "2041-05-01": "Labor Day", + "2041-06-10": "Monday of the Holy Spirit", + "2041-08-15": "Assumption of Mary", + "2041-10-01": "Cyprus Independence Day", + "2041-10-28": "Ochi Day", + "2041-12-24": "Christmas Eve", + "2041-12-25": "Christmas Day", + "2041-12-26": "Day After Christmas", + "2042-01-01": "New Year's Day", + "2042-01-06": "Epiphany", + "2042-02-24": "Clean Monday", + "2042-03-25": "Greek Independence Day", + "2042-04-01": "Cyprus National Day", + "2042-04-11": "Good Friday", + "2042-04-13": "Easter Sunday", + "2042-04-14": "Easter Monday", + "2042-05-01": "Labor Day", + "2042-06-02": "Monday of the Holy Spirit", + "2042-08-15": "Assumption of Mary", + "2042-10-01": "Cyprus Independence Day", + "2042-10-28": "Ochi Day", + "2042-12-24": "Christmas Eve", + "2042-12-25": "Christmas Day", + "2042-12-26": "Day After Christmas", + "2043-01-01": "New Year's Day", + "2043-01-06": "Epiphany", + "2043-03-16": "Clean Monday", + "2043-03-25": "Greek Independence Day", + "2043-04-01": "Cyprus National Day", + "2043-05-01": "Good Friday; Labor Day", + "2043-05-03": "Easter Sunday", + "2043-05-04": "Easter Monday", + "2043-06-22": "Monday of the Holy Spirit", + "2043-08-15": "Assumption of Mary", + "2043-10-01": "Cyprus Independence Day", + "2043-10-28": "Ochi Day", + "2043-12-24": "Christmas Eve", + "2043-12-25": "Christmas Day", + "2043-12-26": "Day After Christmas", + "2044-01-01": "New Year's Day", + "2044-01-06": "Epiphany", + "2044-03-07": "Clean Monday", + "2044-03-25": "Greek Independence Day", + "2044-04-01": "Cyprus National Day", + "2044-04-22": "Good Friday", + "2044-04-24": "Easter Sunday", + "2044-04-25": "Easter Monday", + "2044-05-01": "Labor Day", + "2044-06-13": "Monday of the Holy Spirit", + "2044-08-15": "Assumption of Mary", + "2044-10-01": "Cyprus Independence Day", + "2044-10-28": "Ochi Day", + "2044-12-24": "Christmas Eve", + "2044-12-25": "Christmas Day", + "2044-12-26": "Day After Christmas", + "2045-01-01": "New Year's Day", + "2045-01-06": "Epiphany", + "2045-02-20": "Clean Monday", + "2045-03-25": "Greek Independence Day", + "2045-04-01": "Cyprus National Day", + "2045-04-07": "Good Friday", + "2045-04-09": "Easter Sunday", + "2045-04-10": "Easter Monday", + "2045-05-01": "Labor Day", + "2045-05-29": "Monday of the Holy Spirit", + "2045-08-15": "Assumption of Mary", + "2045-10-01": "Cyprus Independence Day", + "2045-10-28": "Ochi Day", + "2045-12-24": "Christmas Eve", + "2045-12-25": "Christmas Day", + "2045-12-26": "Day After Christmas", + "2046-01-01": "New Year's Day", + "2046-01-06": "Epiphany", + "2046-03-12": "Clean Monday", + "2046-03-25": "Greek Independence Day", + "2046-04-01": "Cyprus National Day", + "2046-04-27": "Good Friday", + "2046-04-29": "Easter Sunday", + "2046-04-30": "Easter Monday", + "2046-05-01": "Labor Day", + "2046-06-18": "Monday of the Holy Spirit", + "2046-08-15": "Assumption of Mary", + "2046-10-01": "Cyprus Independence Day", + "2046-10-28": "Ochi Day", + "2046-12-24": "Christmas Eve", + "2046-12-25": "Christmas Day", + "2046-12-26": "Day After Christmas", + "2047-01-01": "New Year's Day", + "2047-01-06": "Epiphany", + "2047-03-04": "Clean Monday", + "2047-03-25": "Greek Independence Day", + "2047-04-01": "Cyprus National Day", + "2047-04-19": "Good Friday", + "2047-04-21": "Easter Sunday", + "2047-04-22": "Easter Monday", + "2047-05-01": "Labor Day", + "2047-06-10": "Monday of the Holy Spirit", + "2047-08-15": "Assumption of Mary", + "2047-10-01": "Cyprus Independence Day", + "2047-10-28": "Ochi Day", + "2047-12-24": "Christmas Eve", + "2047-12-25": "Christmas Day", + "2047-12-26": "Day After Christmas", + "2048-01-01": "New Year's Day", + "2048-01-06": "Epiphany", + "2048-02-17": "Clean Monday", + "2048-03-25": "Greek Independence Day", + "2048-04-01": "Cyprus National Day", + "2048-04-03": "Good Friday", + "2048-04-05": "Easter Sunday", + "2048-04-06": "Easter Monday", + "2048-05-01": "Labor Day", + "2048-05-25": "Monday of the Holy Spirit", + "2048-08-15": "Assumption of Mary", + "2048-10-01": "Cyprus Independence Day", + "2048-10-28": "Ochi Day", + "2048-12-24": "Christmas Eve", + "2048-12-25": "Christmas Day", + "2048-12-26": "Day After Christmas", + "2049-01-01": "New Year's Day", + "2049-01-06": "Epiphany", + "2049-03-08": "Clean Monday", + "2049-03-25": "Greek Independence Day", + "2049-04-01": "Cyprus National Day", + "2049-04-23": "Good Friday", + "2049-04-25": "Easter Sunday", + "2049-04-26": "Easter Monday", + "2049-05-01": "Labor Day", + "2049-06-14": "Monday of the Holy Spirit", + "2049-08-15": "Assumption of Mary", + "2049-10-01": "Cyprus Independence Day", + "2049-10-28": "Ochi Day", + "2049-12-24": "Christmas Eve", + "2049-12-25": "Christmas Day", + "2049-12-26": "Day After Christmas", + "2050-01-01": "New Year's Day", + "2050-01-06": "Epiphany", + "2050-02-28": "Clean Monday", + "2050-03-25": "Greek Independence Day", + "2050-04-01": "Cyprus National Day", + "2050-04-15": "Good Friday", + "2050-04-17": "Easter Sunday", + "2050-04-18": "Easter Monday", + "2050-05-01": "Labor Day", + "2050-06-06": "Monday of the Holy Spirit", + "2050-08-15": "Assumption of Mary", + "2050-10-01": "Cyprus Independence Day", + "2050-10-28": "Ochi Day", + "2050-12-24": "Christmas Eve", + "2050-12-25": "Christmas Day", + "2050-12-26": "Day After Christmas" +} diff --git a/snapshots/countries/CZ.json b/snapshots/countries/CZ.json new file mode 100644 index 000000000..474c300ab --- /dev/null +++ b/snapshots/countries/CZ.json @@ -0,0 +1,1115 @@ +{ + "1950-01-01": "New Year's Day", + "1950-04-07": "Good Friday", + "1950-04-10": "Easter Monday", + "1950-05-09": "Day of Victory over Fascism", + "1951-01-01": "New Year's Day", + "1951-03-23": "Good Friday", + "1951-03-26": "Easter Monday", + "1951-05-01": "Labor Day", + "1951-05-09": "Day of Victory over Fascism", + "1951-07-05": "Saints Cyril and Methodius Day", + "1951-07-06": "Jan Hus Day", + "1951-10-28": "Independent Czechoslovak State Day", + "1951-12-25": "Christmas Day", + "1951-12-26": "Second Day of Christmas", + "1952-01-01": "New Year's Day", + "1952-04-14": "Easter Monday", + "1952-05-01": "Labor Day", + "1952-05-09": "Day of Victory over Fascism", + "1952-07-05": "Saints Cyril and Methodius Day", + "1952-07-06": "Jan Hus Day", + "1952-10-28": "Independent Czechoslovak State Day", + "1952-12-25": "Christmas Day", + "1952-12-26": "Second Day of Christmas", + "1953-01-01": "New Year's Day", + "1953-04-06": "Easter Monday", + "1953-05-01": "Labor Day", + "1953-05-09": "Day of Victory over Fascism", + "1953-07-05": "Saints Cyril and Methodius Day", + "1953-07-06": "Jan Hus Day", + "1953-10-28": "Independent Czechoslovak State Day", + "1953-12-25": "Christmas Day", + "1953-12-26": "Second Day of Christmas", + "1954-01-01": "New Year's Day", + "1954-04-19": "Easter Monday", + "1954-05-01": "Labor Day", + "1954-05-09": "Day of Victory over Fascism", + "1954-07-05": "Saints Cyril and Methodius Day", + "1954-07-06": "Jan Hus Day", + "1954-10-28": "Independent Czechoslovak State Day", + "1954-12-25": "Christmas Day", + "1954-12-26": "Second Day of Christmas", + "1955-01-01": "New Year's Day", + "1955-04-11": "Easter Monday", + "1955-05-01": "Labor Day", + "1955-05-09": "Day of Victory over Fascism", + "1955-07-05": "Saints Cyril and Methodius Day", + "1955-07-06": "Jan Hus Day", + "1955-10-28": "Independent Czechoslovak State Day", + "1955-12-25": "Christmas Day", + "1955-12-26": "Second Day of Christmas", + "1956-01-01": "New Year's Day", + "1956-04-02": "Easter Monday", + "1956-05-01": "Labor Day", + "1956-05-09": "Day of Victory over Fascism", + "1956-07-05": "Saints Cyril and Methodius Day", + "1956-07-06": "Jan Hus Day", + "1956-10-28": "Independent Czechoslovak State Day", + "1956-12-25": "Christmas Day", + "1956-12-26": "Second Day of Christmas", + "1957-01-01": "New Year's Day", + "1957-04-22": "Easter Monday", + "1957-05-01": "Labor Day", + "1957-05-09": "Day of Victory over Fascism", + "1957-07-05": "Saints Cyril and Methodius Day", + "1957-07-06": "Jan Hus Day", + "1957-10-28": "Independent Czechoslovak State Day", + "1957-12-25": "Christmas Day", + "1957-12-26": "Second Day of Christmas", + "1958-01-01": "New Year's Day", + "1958-04-07": "Easter Monday", + "1958-05-01": "Labor Day", + "1958-05-09": "Day of Victory over Fascism", + "1958-07-05": "Saints Cyril and Methodius Day", + "1958-07-06": "Jan Hus Day", + "1958-10-28": "Independent Czechoslovak State Day", + "1958-12-25": "Christmas Day", + "1958-12-26": "Second Day of Christmas", + "1959-01-01": "New Year's Day", + "1959-03-30": "Easter Monday", + "1959-05-01": "Labor Day", + "1959-05-09": "Day of Victory over Fascism", + "1959-07-05": "Saints Cyril and Methodius Day", + "1959-07-06": "Jan Hus Day", + "1959-10-28": "Independent Czechoslovak State Day", + "1959-12-25": "Christmas Day", + "1959-12-26": "Second Day of Christmas", + "1960-01-01": "New Year's Day", + "1960-04-18": "Easter Monday", + "1960-05-01": "Labor Day", + "1960-05-09": "Day of Victory over Fascism", + "1960-07-05": "Saints Cyril and Methodius Day", + "1960-07-06": "Jan Hus Day", + "1960-10-28": "Independent Czechoslovak State Day", + "1960-12-25": "Christmas Day", + "1960-12-26": "Second Day of Christmas", + "1961-01-01": "New Year's Day", + "1961-04-03": "Easter Monday", + "1961-05-01": "Labor Day", + "1961-05-09": "Day of Victory over Fascism", + "1961-07-05": "Saints Cyril and Methodius Day", + "1961-07-06": "Jan Hus Day", + "1961-10-28": "Independent Czechoslovak State Day", + "1961-12-25": "Christmas Day", + "1961-12-26": "Second Day of Christmas", + "1962-01-01": "New Year's Day", + "1962-04-23": "Easter Monday", + "1962-05-01": "Labor Day", + "1962-05-09": "Day of Victory over Fascism", + "1962-07-05": "Saints Cyril and Methodius Day", + "1962-07-06": "Jan Hus Day", + "1962-10-28": "Independent Czechoslovak State Day", + "1962-12-25": "Christmas Day", + "1962-12-26": "Second Day of Christmas", + "1963-01-01": "New Year's Day", + "1963-04-15": "Easter Monday", + "1963-05-01": "Labor Day", + "1963-05-09": "Day of Victory over Fascism", + "1963-07-05": "Saints Cyril and Methodius Day", + "1963-07-06": "Jan Hus Day", + "1963-10-28": "Independent Czechoslovak State Day", + "1963-12-25": "Christmas Day", + "1963-12-26": "Second Day of Christmas", + "1964-01-01": "New Year's Day", + "1964-03-30": "Easter Monday", + "1964-05-01": "Labor Day", + "1964-05-09": "Day of Victory over Fascism", + "1964-07-05": "Saints Cyril and Methodius Day", + "1964-07-06": "Jan Hus Day", + "1964-10-28": "Independent Czechoslovak State Day", + "1964-12-25": "Christmas Day", + "1964-12-26": "Second Day of Christmas", + "1965-01-01": "New Year's Day", + "1965-04-19": "Easter Monday", + "1965-05-01": "Labor Day", + "1965-05-09": "Day of Victory over Fascism", + "1965-07-05": "Saints Cyril and Methodius Day", + "1965-07-06": "Jan Hus Day", + "1965-10-28": "Independent Czechoslovak State Day", + "1965-12-25": "Christmas Day", + "1965-12-26": "Second Day of Christmas", + "1966-01-01": "New Year's Day", + "1966-04-11": "Easter Monday", + "1966-05-01": "Labor Day", + "1966-05-09": "Day of Victory over Fascism", + "1966-07-05": "Saints Cyril and Methodius Day", + "1966-07-06": "Jan Hus Day", + "1966-10-28": "Independent Czechoslovak State Day", + "1966-12-25": "Christmas Day", + "1966-12-26": "Second Day of Christmas", + "1967-01-01": "New Year's Day", + "1967-03-27": "Easter Monday", + "1967-05-01": "Labor Day", + "1967-05-09": "Day of Victory over Fascism", + "1967-07-05": "Saints Cyril and Methodius Day", + "1967-07-06": "Jan Hus Day", + "1967-10-28": "Independent Czechoslovak State Day", + "1967-12-25": "Christmas Day", + "1967-12-26": "Second Day of Christmas", + "1968-01-01": "New Year's Day", + "1968-04-15": "Easter Monday", + "1968-05-01": "Labor Day", + "1968-05-09": "Day of Victory over Fascism", + "1968-07-05": "Saints Cyril and Methodius Day", + "1968-07-06": "Jan Hus Day", + "1968-10-28": "Independent Czechoslovak State Day", + "1968-12-25": "Christmas Day", + "1968-12-26": "Second Day of Christmas", + "1969-01-01": "New Year's Day", + "1969-04-07": "Easter Monday", + "1969-05-01": "Labor Day", + "1969-05-09": "Day of Victory over Fascism", + "1969-07-05": "Saints Cyril and Methodius Day", + "1969-07-06": "Jan Hus Day", + "1969-10-28": "Independent Czechoslovak State Day", + "1969-12-25": "Christmas Day", + "1969-12-26": "Second Day of Christmas", + "1970-01-01": "New Year's Day", + "1970-03-30": "Easter Monday", + "1970-05-01": "Labor Day", + "1970-05-09": "Day of Victory over Fascism", + "1970-07-05": "Saints Cyril and Methodius Day", + "1970-07-06": "Jan Hus Day", + "1970-10-28": "Independent Czechoslovak State Day", + "1970-12-25": "Christmas Day", + "1970-12-26": "Second Day of Christmas", + "1971-01-01": "New Year's Day", + "1971-04-12": "Easter Monday", + "1971-05-01": "Labor Day", + "1971-05-09": "Day of Victory over Fascism", + "1971-07-05": "Saints Cyril and Methodius Day", + "1971-07-06": "Jan Hus Day", + "1971-10-28": "Independent Czechoslovak State Day", + "1971-12-25": "Christmas Day", + "1971-12-26": "Second Day of Christmas", + "1972-01-01": "New Year's Day", + "1972-04-03": "Easter Monday", + "1972-05-01": "Labor Day", + "1972-05-09": "Day of Victory over Fascism", + "1972-07-05": "Saints Cyril and Methodius Day", + "1972-07-06": "Jan Hus Day", + "1972-10-28": "Independent Czechoslovak State Day", + "1972-12-25": "Christmas Day", + "1972-12-26": "Second Day of Christmas", + "1973-01-01": "New Year's Day", + "1973-04-23": "Easter Monday", + "1973-05-01": "Labor Day", + "1973-05-09": "Day of Victory over Fascism", + "1973-07-05": "Saints Cyril and Methodius Day", + "1973-07-06": "Jan Hus Day", + "1973-10-28": "Independent Czechoslovak State Day", + "1973-12-25": "Christmas Day", + "1973-12-26": "Second Day of Christmas", + "1974-01-01": "New Year's Day", + "1974-04-15": "Easter Monday", + "1974-05-01": "Labor Day", + "1974-05-09": "Day of Victory over Fascism", + "1974-07-05": "Saints Cyril and Methodius Day", + "1974-07-06": "Jan Hus Day", + "1974-10-28": "Independent Czechoslovak State Day", + "1974-12-25": "Christmas Day", + "1974-12-26": "Second Day of Christmas", + "1975-01-01": "New Year's Day", + "1975-03-31": "Easter Monday", + "1975-05-01": "Labor Day", + "1975-05-09": "Day of Victory over Fascism", + "1975-07-05": "Saints Cyril and Methodius Day", + "1975-07-06": "Jan Hus Day", + "1975-10-28": "Independent Czechoslovak State Day", + "1975-12-25": "Christmas Day", + "1975-12-26": "Second Day of Christmas", + "1976-01-01": "New Year's Day", + "1976-04-19": "Easter Monday", + "1976-05-01": "Labor Day", + "1976-05-09": "Day of Victory over Fascism", + "1976-07-05": "Saints Cyril and Methodius Day", + "1976-07-06": "Jan Hus Day", + "1976-10-28": "Independent Czechoslovak State Day", + "1976-12-25": "Christmas Day", + "1976-12-26": "Second Day of Christmas", + "1977-01-01": "New Year's Day", + "1977-04-11": "Easter Monday", + "1977-05-01": "Labor Day", + "1977-05-09": "Day of Victory over Fascism", + "1977-07-05": "Saints Cyril and Methodius Day", + "1977-07-06": "Jan Hus Day", + "1977-10-28": "Independent Czechoslovak State Day", + "1977-12-25": "Christmas Day", + "1977-12-26": "Second Day of Christmas", + "1978-01-01": "New Year's Day", + "1978-03-27": "Easter Monday", + "1978-05-01": "Labor Day", + "1978-05-09": "Day of Victory over Fascism", + "1978-07-05": "Saints Cyril and Methodius Day", + "1978-07-06": "Jan Hus Day", + "1978-10-28": "Independent Czechoslovak State Day", + "1978-12-25": "Christmas Day", + "1978-12-26": "Second Day of Christmas", + "1979-01-01": "New Year's Day", + "1979-04-16": "Easter Monday", + "1979-05-01": "Labor Day", + "1979-05-09": "Day of Victory over Fascism", + "1979-07-05": "Saints Cyril and Methodius Day", + "1979-07-06": "Jan Hus Day", + "1979-10-28": "Independent Czechoslovak State Day", + "1979-12-25": "Christmas Day", + "1979-12-26": "Second Day of Christmas", + "1980-01-01": "New Year's Day", + "1980-04-07": "Easter Monday", + "1980-05-01": "Labor Day", + "1980-05-09": "Day of Victory over Fascism", + "1980-07-05": "Saints Cyril and Methodius Day", + "1980-07-06": "Jan Hus Day", + "1980-10-28": "Independent Czechoslovak State Day", + "1980-12-25": "Christmas Day", + "1980-12-26": "Second Day of Christmas", + "1981-01-01": "New Year's Day", + "1981-04-20": "Easter Monday", + "1981-05-01": "Labor Day", + "1981-05-09": "Day of Victory over Fascism", + "1981-07-05": "Saints Cyril and Methodius Day", + "1981-07-06": "Jan Hus Day", + "1981-10-28": "Independent Czechoslovak State Day", + "1981-12-25": "Christmas Day", + "1981-12-26": "Second Day of Christmas", + "1982-01-01": "New Year's Day", + "1982-04-12": "Easter Monday", + "1982-05-01": "Labor Day", + "1982-05-09": "Day of Victory over Fascism", + "1982-07-05": "Saints Cyril and Methodius Day", + "1982-07-06": "Jan Hus Day", + "1982-10-28": "Independent Czechoslovak State Day", + "1982-12-25": "Christmas Day", + "1982-12-26": "Second Day of Christmas", + "1983-01-01": "New Year's Day", + "1983-04-04": "Easter Monday", + "1983-05-01": "Labor Day", + "1983-05-09": "Day of Victory over Fascism", + "1983-07-05": "Saints Cyril and Methodius Day", + "1983-07-06": "Jan Hus Day", + "1983-10-28": "Independent Czechoslovak State Day", + "1983-12-25": "Christmas Day", + "1983-12-26": "Second Day of Christmas", + "1984-01-01": "New Year's Day", + "1984-04-23": "Easter Monday", + "1984-05-01": "Labor Day", + "1984-05-09": "Day of Victory over Fascism", + "1984-07-05": "Saints Cyril and Methodius Day", + "1984-07-06": "Jan Hus Day", + "1984-10-28": "Independent Czechoslovak State Day", + "1984-12-25": "Christmas Day", + "1984-12-26": "Second Day of Christmas", + "1985-01-01": "New Year's Day", + "1985-04-08": "Easter Monday", + "1985-05-01": "Labor Day", + "1985-05-09": "Day of Victory over Fascism", + "1985-07-05": "Saints Cyril and Methodius Day", + "1985-07-06": "Jan Hus Day", + "1985-10-28": "Independent Czechoslovak State Day", + "1985-12-25": "Christmas Day", + "1985-12-26": "Second Day of Christmas", + "1986-01-01": "New Year's Day", + "1986-03-31": "Easter Monday", + "1986-05-01": "Labor Day", + "1986-05-09": "Day of Victory over Fascism", + "1986-07-05": "Saints Cyril and Methodius Day", + "1986-07-06": "Jan Hus Day", + "1986-10-28": "Independent Czechoslovak State Day", + "1986-12-25": "Christmas Day", + "1986-12-26": "Second Day of Christmas", + "1987-01-01": "New Year's Day", + "1987-04-20": "Easter Monday", + "1987-05-01": "Labor Day", + "1987-05-09": "Day of Victory over Fascism", + "1987-07-05": "Saints Cyril and Methodius Day", + "1987-07-06": "Jan Hus Day", + "1987-10-28": "Independent Czechoslovak State Day", + "1987-12-25": "Christmas Day", + "1987-12-26": "Second Day of Christmas", + "1988-01-01": "New Year's Day", + "1988-04-04": "Easter Monday", + "1988-05-01": "Labor Day", + "1988-05-09": "Day of Victory over Fascism", + "1988-07-05": "Saints Cyril and Methodius Day", + "1988-07-06": "Jan Hus Day", + "1988-10-28": "Independent Czechoslovak State Day", + "1988-12-25": "Christmas Day", + "1988-12-26": "Second Day of Christmas", + "1989-01-01": "New Year's Day", + "1989-03-27": "Easter Monday", + "1989-05-01": "Labor Day", + "1989-05-09": "Day of Victory over Fascism", + "1989-07-05": "Saints Cyril and Methodius Day", + "1989-07-06": "Jan Hus Day", + "1989-10-28": "Independent Czechoslovak State Day", + "1989-12-25": "Christmas Day", + "1989-12-26": "Second Day of Christmas", + "1990-01-01": "New Year's Day", + "1990-04-16": "Easter Monday", + "1990-05-01": "Labor Day", + "1990-05-09": "Day of Victory over Fascism", + "1990-07-05": "Saints Cyril and Methodius Day", + "1990-07-06": "Jan Hus Day", + "1990-10-28": "Independent Czechoslovak State Day", + "1990-11-17": "Struggle for Freedom and Democracy Day", + "1990-12-24": "Christmas Eve", + "1990-12-25": "Christmas Day", + "1990-12-26": "Second Day of Christmas", + "1991-01-01": "New Year's Day", + "1991-04-01": "Easter Monday", + "1991-05-01": "Labor Day", + "1991-05-09": "Day of Victory over Fascism", + "1991-07-05": "Saints Cyril and Methodius Day", + "1991-07-06": "Jan Hus Day", + "1991-10-28": "Independent Czechoslovak State Day", + "1991-11-17": "Struggle for Freedom and Democracy Day", + "1991-12-24": "Christmas Eve", + "1991-12-25": "Christmas Day", + "1991-12-26": "Second Day of Christmas", + "1992-01-01": "New Year's Day", + "1992-04-20": "Easter Monday", + "1992-05-01": "Labor Day", + "1992-05-08": "Victory Day", + "1992-07-05": "Saints Cyril and Methodius Day", + "1992-07-06": "Jan Hus Day", + "1992-10-28": "Independent Czechoslovak State Day", + "1992-11-17": "Struggle for Freedom and Democracy Day", + "1992-12-24": "Christmas Eve", + "1992-12-25": "Christmas Day", + "1992-12-26": "Second Day of Christmas", + "1993-01-01": "New Year's Day", + "1993-04-12": "Easter Monday", + "1993-05-01": "Labor Day", + "1993-05-08": "Victory Day", + "1993-07-05": "Saints Cyril and Methodius Day", + "1993-07-06": "Jan Hus Day", + "1993-10-28": "Independent Czechoslovak State Day", + "1993-11-17": "Struggle for Freedom and Democracy Day", + "1993-12-24": "Christmas Eve", + "1993-12-25": "Christmas Day", + "1993-12-26": "Second Day of Christmas", + "1994-01-01": "New Year's Day", + "1994-04-04": "Easter Monday", + "1994-05-01": "Labor Day", + "1994-05-08": "Victory Day", + "1994-07-05": "Saints Cyril and Methodius Day", + "1994-07-06": "Jan Hus Day", + "1994-10-28": "Independent Czechoslovak State Day", + "1994-11-17": "Struggle for Freedom and Democracy Day", + "1994-12-24": "Christmas Eve", + "1994-12-25": "Christmas Day", + "1994-12-26": "Second Day of Christmas", + "1995-01-01": "New Year's Day", + "1995-04-17": "Easter Monday", + "1995-05-01": "Labor Day", + "1995-05-08": "Victory Day", + "1995-07-05": "Saints Cyril and Methodius Day", + "1995-07-06": "Jan Hus Day", + "1995-10-28": "Independent Czechoslovak State Day", + "1995-11-17": "Struggle for Freedom and Democracy Day", + "1995-12-24": "Christmas Eve", + "1995-12-25": "Christmas Day", + "1995-12-26": "Second Day of Christmas", + "1996-01-01": "New Year's Day", + "1996-04-08": "Easter Monday", + "1996-05-01": "Labor Day", + "1996-05-08": "Victory Day", + "1996-07-05": "Saints Cyril and Methodius Day", + "1996-07-06": "Jan Hus Day", + "1996-10-28": "Independent Czechoslovak State Day", + "1996-11-17": "Struggle for Freedom and Democracy Day", + "1996-12-24": "Christmas Eve", + "1996-12-25": "Christmas Day", + "1996-12-26": "Second Day of Christmas", + "1997-01-01": "New Year's Day", + "1997-03-31": "Easter Monday", + "1997-05-01": "Labor Day", + "1997-05-08": "Victory Day", + "1997-07-05": "Saints Cyril and Methodius Day", + "1997-07-06": "Jan Hus Day", + "1997-10-28": "Independent Czechoslovak State Day", + "1997-11-17": "Struggle for Freedom and Democracy Day", + "1997-12-24": "Christmas Eve", + "1997-12-25": "Christmas Day", + "1997-12-26": "Second Day of Christmas", + "1998-01-01": "New Year's Day", + "1998-04-13": "Easter Monday", + "1998-05-01": "Labor Day", + "1998-05-08": "Victory Day", + "1998-07-05": "Saints Cyril and Methodius Day", + "1998-07-06": "Jan Hus Day", + "1998-10-28": "Independent Czechoslovak State Day", + "1998-11-17": "Struggle for Freedom and Democracy Day", + "1998-12-24": "Christmas Eve", + "1998-12-25": "Christmas Day", + "1998-12-26": "Second Day of Christmas", + "1999-01-01": "New Year's Day", + "1999-04-05": "Easter Monday", + "1999-05-01": "Labor Day", + "1999-05-08": "Victory Day", + "1999-07-05": "Saints Cyril and Methodius Day", + "1999-07-06": "Jan Hus Day", + "1999-10-28": "Independent Czechoslovak State Day", + "1999-11-17": "Struggle for Freedom and Democracy Day", + "1999-12-24": "Christmas Eve", + "1999-12-25": "Christmas Day", + "1999-12-26": "Second Day of Christmas", + "2000-01-01": "Independent Czech State Restoration Day", + "2000-04-24": "Easter Monday", + "2000-05-01": "Labor Day", + "2000-05-08": "Victory Day", + "2000-07-05": "Saints Cyril and Methodius Day", + "2000-07-06": "Jan Hus Day", + "2000-09-28": "Statehood Day", + "2000-10-28": "Independent Czechoslovak State Day", + "2000-11-17": "Struggle for Freedom and Democracy Day", + "2000-12-24": "Christmas Eve", + "2000-12-25": "Christmas Day", + "2000-12-26": "Second Day of Christmas", + "2001-01-01": "Independent Czech State Restoration Day", + "2001-04-16": "Easter Monday", + "2001-05-01": "Labor Day", + "2001-05-08": "Victory Day", + "2001-07-05": "Saints Cyril and Methodius Day", + "2001-07-06": "Jan Hus Day", + "2001-09-28": "Statehood Day", + "2001-10-28": "Independent Czechoslovak State Day", + "2001-11-17": "Struggle for Freedom and Democracy Day", + "2001-12-24": "Christmas Eve", + "2001-12-25": "Christmas Day", + "2001-12-26": "Second Day of Christmas", + "2002-01-01": "Independent Czech State Restoration Day", + "2002-04-01": "Easter Monday", + "2002-05-01": "Labor Day", + "2002-05-08": "Victory Day", + "2002-07-05": "Saints Cyril and Methodius Day", + "2002-07-06": "Jan Hus Day", + "2002-09-28": "Statehood Day", + "2002-10-28": "Independent Czechoslovak State Day", + "2002-11-17": "Struggle for Freedom and Democracy Day", + "2002-12-24": "Christmas Eve", + "2002-12-25": "Christmas Day", + "2002-12-26": "Second Day of Christmas", + "2003-01-01": "Independent Czech State Restoration Day", + "2003-04-21": "Easter Monday", + "2003-05-01": "Labor Day", + "2003-05-08": "Victory Day", + "2003-07-05": "Saints Cyril and Methodius Day", + "2003-07-06": "Jan Hus Day", + "2003-09-28": "Statehood Day", + "2003-10-28": "Independent Czechoslovak State Day", + "2003-11-17": "Struggle for Freedom and Democracy Day", + "2003-12-24": "Christmas Eve", + "2003-12-25": "Christmas Day", + "2003-12-26": "Second Day of Christmas", + "2004-01-01": "Independent Czech State Restoration Day", + "2004-04-12": "Easter Monday", + "2004-05-01": "Labor Day", + "2004-05-08": "Victory Day", + "2004-07-05": "Saints Cyril and Methodius Day", + "2004-07-06": "Jan Hus Day", + "2004-09-28": "Statehood Day", + "2004-10-28": "Independent Czechoslovak State Day", + "2004-11-17": "Struggle for Freedom and Democracy Day", + "2004-12-24": "Christmas Eve", + "2004-12-25": "Christmas Day", + "2004-12-26": "Second Day of Christmas", + "2005-01-01": "Independent Czech State Restoration Day", + "2005-03-28": "Easter Monday", + "2005-05-01": "Labor Day", + "2005-05-08": "Victory Day", + "2005-07-05": "Saints Cyril and Methodius Day", + "2005-07-06": "Jan Hus Day", + "2005-09-28": "Statehood Day", + "2005-10-28": "Independent Czechoslovak State Day", + "2005-11-17": "Struggle for Freedom and Democracy Day", + "2005-12-24": "Christmas Eve", + "2005-12-25": "Christmas Day", + "2005-12-26": "Second Day of Christmas", + "2006-01-01": "Independent Czech State Restoration Day", + "2006-04-17": "Easter Monday", + "2006-05-01": "Labor Day", + "2006-05-08": "Victory Day", + "2006-07-05": "Saints Cyril and Methodius Day", + "2006-07-06": "Jan Hus Day", + "2006-09-28": "Statehood Day", + "2006-10-28": "Independent Czechoslovak State Day", + "2006-11-17": "Struggle for Freedom and Democracy Day", + "2006-12-24": "Christmas Eve", + "2006-12-25": "Christmas Day", + "2006-12-26": "Second Day of Christmas", + "2007-01-01": "Independent Czech State Restoration Day", + "2007-04-09": "Easter Monday", + "2007-05-01": "Labor Day", + "2007-05-08": "Victory Day", + "2007-07-05": "Saints Cyril and Methodius Day", + "2007-07-06": "Jan Hus Day", + "2007-09-28": "Statehood Day", + "2007-10-28": "Independent Czechoslovak State Day", + "2007-11-17": "Struggle for Freedom and Democracy Day", + "2007-12-24": "Christmas Eve", + "2007-12-25": "Christmas Day", + "2007-12-26": "Second Day of Christmas", + "2008-01-01": "Independent Czech State Restoration Day", + "2008-03-24": "Easter Monday", + "2008-05-01": "Labor Day", + "2008-05-08": "Victory Day", + "2008-07-05": "Saints Cyril and Methodius Day", + "2008-07-06": "Jan Hus Day", + "2008-09-28": "Statehood Day", + "2008-10-28": "Independent Czechoslovak State Day", + "2008-11-17": "Struggle for Freedom and Democracy Day", + "2008-12-24": "Christmas Eve", + "2008-12-25": "Christmas Day", + "2008-12-26": "Second Day of Christmas", + "2009-01-01": "Independent Czech State Restoration Day", + "2009-04-13": "Easter Monday", + "2009-05-01": "Labor Day", + "2009-05-08": "Victory Day", + "2009-07-05": "Saints Cyril and Methodius Day", + "2009-07-06": "Jan Hus Day", + "2009-09-28": "Statehood Day", + "2009-10-28": "Independent Czechoslovak State Day", + "2009-11-17": "Struggle for Freedom and Democracy Day", + "2009-12-24": "Christmas Eve", + "2009-12-25": "Christmas Day", + "2009-12-26": "Second Day of Christmas", + "2010-01-01": "Independent Czech State Restoration Day", + "2010-04-05": "Easter Monday", + "2010-05-01": "Labor Day", + "2010-05-08": "Victory Day", + "2010-07-05": "Saints Cyril and Methodius Day", + "2010-07-06": "Jan Hus Day", + "2010-09-28": "Statehood Day", + "2010-10-28": "Independent Czechoslovak State Day", + "2010-11-17": "Struggle for Freedom and Democracy Day", + "2010-12-24": "Christmas Eve", + "2010-12-25": "Christmas Day", + "2010-12-26": "Second Day of Christmas", + "2011-01-01": "Independent Czech State Restoration Day", + "2011-04-25": "Easter Monday", + "2011-05-01": "Labor Day", + "2011-05-08": "Victory Day", + "2011-07-05": "Saints Cyril and Methodius Day", + "2011-07-06": "Jan Hus Day", + "2011-09-28": "Statehood Day", + "2011-10-28": "Independent Czechoslovak State Day", + "2011-11-17": "Struggle for Freedom and Democracy Day", + "2011-12-24": "Christmas Eve", + "2011-12-25": "Christmas Day", + "2011-12-26": "Second Day of Christmas", + "2012-01-01": "Independent Czech State Restoration Day", + "2012-04-09": "Easter Monday", + "2012-05-01": "Labor Day", + "2012-05-08": "Victory Day", + "2012-07-05": "Saints Cyril and Methodius Day", + "2012-07-06": "Jan Hus Day", + "2012-09-28": "Statehood Day", + "2012-10-28": "Independent Czechoslovak State Day", + "2012-11-17": "Struggle for Freedom and Democracy Day", + "2012-12-24": "Christmas Eve", + "2012-12-25": "Christmas Day", + "2012-12-26": "Second Day of Christmas", + "2013-01-01": "Independent Czech State Restoration Day", + "2013-04-01": "Easter Monday", + "2013-05-01": "Labor Day", + "2013-05-08": "Victory Day", + "2013-07-05": "Saints Cyril and Methodius Day", + "2013-07-06": "Jan Hus Day", + "2013-09-28": "Statehood Day", + "2013-10-28": "Independent Czechoslovak State Day", + "2013-11-17": "Struggle for Freedom and Democracy Day", + "2013-12-24": "Christmas Eve", + "2013-12-25": "Christmas Day", + "2013-12-26": "Second Day of Christmas", + "2014-01-01": "Independent Czech State Restoration Day", + "2014-04-21": "Easter Monday", + "2014-05-01": "Labor Day", + "2014-05-08": "Victory Day", + "2014-07-05": "Saints Cyril and Methodius Day", + "2014-07-06": "Jan Hus Day", + "2014-09-28": "Statehood Day", + "2014-10-28": "Independent Czechoslovak State Day", + "2014-11-17": "Struggle for Freedom and Democracy Day", + "2014-12-24": "Christmas Eve", + "2014-12-25": "Christmas Day", + "2014-12-26": "Second Day of Christmas", + "2015-01-01": "Independent Czech State Restoration Day", + "2015-04-06": "Easter Monday", + "2015-05-01": "Labor Day", + "2015-05-08": "Victory Day", + "2015-07-05": "Saints Cyril and Methodius Day", + "2015-07-06": "Jan Hus Day", + "2015-09-28": "Statehood Day", + "2015-10-28": "Independent Czechoslovak State Day", + "2015-11-17": "Struggle for Freedom and Democracy Day", + "2015-12-24": "Christmas Eve", + "2015-12-25": "Christmas Day", + "2015-12-26": "Second Day of Christmas", + "2016-01-01": "Independent Czech State Restoration Day", + "2016-03-25": "Good Friday", + "2016-03-28": "Easter Monday", + "2016-05-01": "Labor Day", + "2016-05-08": "Victory Day", + "2016-07-05": "Saints Cyril and Methodius Day", + "2016-07-06": "Jan Hus Day", + "2016-09-28": "Statehood Day", + "2016-10-28": "Independent Czechoslovak State Day", + "2016-11-17": "Struggle for Freedom and Democracy Day", + "2016-12-24": "Christmas Eve", + "2016-12-25": "Christmas Day", + "2016-12-26": "Second Day of Christmas", + "2017-01-01": "Independent Czech State Restoration Day", + "2017-04-14": "Good Friday", + "2017-04-17": "Easter Monday", + "2017-05-01": "Labor Day", + "2017-05-08": "Victory Day", + "2017-07-05": "Saints Cyril and Methodius Day", + "2017-07-06": "Jan Hus Day", + "2017-09-28": "Statehood Day", + "2017-10-28": "Independent Czechoslovak State Day", + "2017-11-17": "Struggle for Freedom and Democracy Day", + "2017-12-24": "Christmas Eve", + "2017-12-25": "Christmas Day", + "2017-12-26": "Second Day of Christmas", + "2018-01-01": "Independent Czech State Restoration Day", + "2018-03-30": "Good Friday", + "2018-04-02": "Easter Monday", + "2018-05-01": "Labor Day", + "2018-05-08": "Victory Day", + "2018-07-05": "Saints Cyril and Methodius Day", + "2018-07-06": "Jan Hus Day", + "2018-09-28": "Statehood Day", + "2018-10-28": "Independent Czechoslovak State Day", + "2018-11-17": "Struggle for Freedom and Democracy Day", + "2018-12-24": "Christmas Eve", + "2018-12-25": "Christmas Day", + "2018-12-26": "Second Day of Christmas", + "2019-01-01": "Independent Czech State Restoration Day", + "2019-04-19": "Good Friday", + "2019-04-22": "Easter Monday", + "2019-05-01": "Labor Day", + "2019-05-08": "Victory Day", + "2019-07-05": "Saints Cyril and Methodius Day", + "2019-07-06": "Jan Hus Day", + "2019-09-28": "Statehood Day", + "2019-10-28": "Independent Czechoslovak State Day", + "2019-11-17": "Struggle for Freedom and Democracy Day", + "2019-12-24": "Christmas Eve", + "2019-12-25": "Christmas Day", + "2019-12-26": "Second Day of Christmas", + "2020-01-01": "Independent Czech State Restoration Day", + "2020-04-10": "Good Friday", + "2020-04-13": "Easter Monday", + "2020-05-01": "Labor Day", + "2020-05-08": "Victory Day", + "2020-07-05": "Saints Cyril and Methodius Day", + "2020-07-06": "Jan Hus Day", + "2020-09-28": "Statehood Day", + "2020-10-28": "Independent Czechoslovak State Day", + "2020-11-17": "Struggle for Freedom and Democracy Day", + "2020-12-24": "Christmas Eve", + "2020-12-25": "Christmas Day", + "2020-12-26": "Second Day of Christmas", + "2021-01-01": "Independent Czech State Restoration Day", + "2021-04-02": "Good Friday", + "2021-04-05": "Easter Monday", + "2021-05-01": "Labor Day", + "2021-05-08": "Victory Day", + "2021-07-05": "Saints Cyril and Methodius Day", + "2021-07-06": "Jan Hus Day", + "2021-09-28": "Statehood Day", + "2021-10-28": "Independent Czechoslovak State Day", + "2021-11-17": "Struggle for Freedom and Democracy Day", + "2021-12-24": "Christmas Eve", + "2021-12-25": "Christmas Day", + "2021-12-26": "Second Day of Christmas", + "2022-01-01": "Independent Czech State Restoration Day", + "2022-04-15": "Good Friday", + "2022-04-18": "Easter Monday", + "2022-05-01": "Labor Day", + "2022-05-08": "Victory Day", + "2022-07-05": "Saints Cyril and Methodius Day", + "2022-07-06": "Jan Hus Day", + "2022-09-28": "Statehood Day", + "2022-10-28": "Independent Czechoslovak State Day", + "2022-11-17": "Struggle for Freedom and Democracy Day", + "2022-12-24": "Christmas Eve", + "2022-12-25": "Christmas Day", + "2022-12-26": "Second Day of Christmas", + "2023-01-01": "Independent Czech State Restoration Day", + "2023-04-07": "Good Friday", + "2023-04-10": "Easter Monday", + "2023-05-01": "Labor Day", + "2023-05-08": "Victory Day", + "2023-07-05": "Saints Cyril and Methodius Day", + "2023-07-06": "Jan Hus Day", + "2023-09-28": "Statehood Day", + "2023-10-28": "Independent Czechoslovak State Day", + "2023-11-17": "Struggle for Freedom and Democracy Day", + "2023-12-24": "Christmas Eve", + "2023-12-25": "Christmas Day", + "2023-12-26": "Second Day of Christmas", + "2024-01-01": "Independent Czech State Restoration Day", + "2024-03-29": "Good Friday", + "2024-04-01": "Easter Monday", + "2024-05-01": "Labor Day", + "2024-05-08": "Victory Day", + "2024-07-05": "Saints Cyril and Methodius Day", + "2024-07-06": "Jan Hus Day", + "2024-09-28": "Statehood Day", + "2024-10-28": "Independent Czechoslovak State Day", + "2024-11-17": "Struggle for Freedom and Democracy Day", + "2024-12-24": "Christmas Eve", + "2024-12-25": "Christmas Day", + "2024-12-26": "Second Day of Christmas", + "2025-01-01": "Independent Czech State Restoration Day", + "2025-04-18": "Good Friday", + "2025-04-21": "Easter Monday", + "2025-05-01": "Labor Day", + "2025-05-08": "Victory Day", + "2025-07-05": "Saints Cyril and Methodius Day", + "2025-07-06": "Jan Hus Day", + "2025-09-28": "Statehood Day", + "2025-10-28": "Independent Czechoslovak State Day", + "2025-11-17": "Struggle for Freedom and Democracy Day", + "2025-12-24": "Christmas Eve", + "2025-12-25": "Christmas Day", + "2025-12-26": "Second Day of Christmas", + "2026-01-01": "Independent Czech State Restoration Day", + "2026-04-03": "Good Friday", + "2026-04-06": "Easter Monday", + "2026-05-01": "Labor Day", + "2026-05-08": "Victory Day", + "2026-07-05": "Saints Cyril and Methodius Day", + "2026-07-06": "Jan Hus Day", + "2026-09-28": "Statehood Day", + "2026-10-28": "Independent Czechoslovak State Day", + "2026-11-17": "Struggle for Freedom and Democracy Day", + "2026-12-24": "Christmas Eve", + "2026-12-25": "Christmas Day", + "2026-12-26": "Second Day of Christmas", + "2027-01-01": "Independent Czech State Restoration Day", + "2027-03-26": "Good Friday", + "2027-03-29": "Easter Monday", + "2027-05-01": "Labor Day", + "2027-05-08": "Victory Day", + "2027-07-05": "Saints Cyril and Methodius Day", + "2027-07-06": "Jan Hus Day", + "2027-09-28": "Statehood Day", + "2027-10-28": "Independent Czechoslovak State Day", + "2027-11-17": "Struggle for Freedom and Democracy Day", + "2027-12-24": "Christmas Eve", + "2027-12-25": "Christmas Day", + "2027-12-26": "Second Day of Christmas", + "2028-01-01": "Independent Czech State Restoration Day", + "2028-04-14": "Good Friday", + "2028-04-17": "Easter Monday", + "2028-05-01": "Labor Day", + "2028-05-08": "Victory Day", + "2028-07-05": "Saints Cyril and Methodius Day", + "2028-07-06": "Jan Hus Day", + "2028-09-28": "Statehood Day", + "2028-10-28": "Independent Czechoslovak State Day", + "2028-11-17": "Struggle for Freedom and Democracy Day", + "2028-12-24": "Christmas Eve", + "2028-12-25": "Christmas Day", + "2028-12-26": "Second Day of Christmas", + "2029-01-01": "Independent Czech State Restoration Day", + "2029-03-30": "Good Friday", + "2029-04-02": "Easter Monday", + "2029-05-01": "Labor Day", + "2029-05-08": "Victory Day", + "2029-07-05": "Saints Cyril and Methodius Day", + "2029-07-06": "Jan Hus Day", + "2029-09-28": "Statehood Day", + "2029-10-28": "Independent Czechoslovak State Day", + "2029-11-17": "Struggle for Freedom and Democracy Day", + "2029-12-24": "Christmas Eve", + "2029-12-25": "Christmas Day", + "2029-12-26": "Second Day of Christmas", + "2030-01-01": "Independent Czech State Restoration Day", + "2030-04-19": "Good Friday", + "2030-04-22": "Easter Monday", + "2030-05-01": "Labor Day", + "2030-05-08": "Victory Day", + "2030-07-05": "Saints Cyril and Methodius Day", + "2030-07-06": "Jan Hus Day", + "2030-09-28": "Statehood Day", + "2030-10-28": "Independent Czechoslovak State Day", + "2030-11-17": "Struggle for Freedom and Democracy Day", + "2030-12-24": "Christmas Eve", + "2030-12-25": "Christmas Day", + "2030-12-26": "Second Day of Christmas", + "2031-01-01": "Independent Czech State Restoration Day", + "2031-04-11": "Good Friday", + "2031-04-14": "Easter Monday", + "2031-05-01": "Labor Day", + "2031-05-08": "Victory Day", + "2031-07-05": "Saints Cyril and Methodius Day", + "2031-07-06": "Jan Hus Day", + "2031-09-28": "Statehood Day", + "2031-10-28": "Independent Czechoslovak State Day", + "2031-11-17": "Struggle for Freedom and Democracy Day", + "2031-12-24": "Christmas Eve", + "2031-12-25": "Christmas Day", + "2031-12-26": "Second Day of Christmas", + "2032-01-01": "Independent Czech State Restoration Day", + "2032-03-26": "Good Friday", + "2032-03-29": "Easter Monday", + "2032-05-01": "Labor Day", + "2032-05-08": "Victory Day", + "2032-07-05": "Saints Cyril and Methodius Day", + "2032-07-06": "Jan Hus Day", + "2032-09-28": "Statehood Day", + "2032-10-28": "Independent Czechoslovak State Day", + "2032-11-17": "Struggle for Freedom and Democracy Day", + "2032-12-24": "Christmas Eve", + "2032-12-25": "Christmas Day", + "2032-12-26": "Second Day of Christmas", + "2033-01-01": "Independent Czech State Restoration Day", + "2033-04-15": "Good Friday", + "2033-04-18": "Easter Monday", + "2033-05-01": "Labor Day", + "2033-05-08": "Victory Day", + "2033-07-05": "Saints Cyril and Methodius Day", + "2033-07-06": "Jan Hus Day", + "2033-09-28": "Statehood Day", + "2033-10-28": "Independent Czechoslovak State Day", + "2033-11-17": "Struggle for Freedom and Democracy Day", + "2033-12-24": "Christmas Eve", + "2033-12-25": "Christmas Day", + "2033-12-26": "Second Day of Christmas", + "2034-01-01": "Independent Czech State Restoration Day", + "2034-04-07": "Good Friday", + "2034-04-10": "Easter Monday", + "2034-05-01": "Labor Day", + "2034-05-08": "Victory Day", + "2034-07-05": "Saints Cyril and Methodius Day", + "2034-07-06": "Jan Hus Day", + "2034-09-28": "Statehood Day", + "2034-10-28": "Independent Czechoslovak State Day", + "2034-11-17": "Struggle for Freedom and Democracy Day", + "2034-12-24": "Christmas Eve", + "2034-12-25": "Christmas Day", + "2034-12-26": "Second Day of Christmas", + "2035-01-01": "Independent Czech State Restoration Day", + "2035-03-23": "Good Friday", + "2035-03-26": "Easter Monday", + "2035-05-01": "Labor Day", + "2035-05-08": "Victory Day", + "2035-07-05": "Saints Cyril and Methodius Day", + "2035-07-06": "Jan Hus Day", + "2035-09-28": "Statehood Day", + "2035-10-28": "Independent Czechoslovak State Day", + "2035-11-17": "Struggle for Freedom and Democracy Day", + "2035-12-24": "Christmas Eve", + "2035-12-25": "Christmas Day", + "2035-12-26": "Second Day of Christmas", + "2036-01-01": "Independent Czech State Restoration Day", + "2036-04-11": "Good Friday", + "2036-04-14": "Easter Monday", + "2036-05-01": "Labor Day", + "2036-05-08": "Victory Day", + "2036-07-05": "Saints Cyril and Methodius Day", + "2036-07-06": "Jan Hus Day", + "2036-09-28": "Statehood Day", + "2036-10-28": "Independent Czechoslovak State Day", + "2036-11-17": "Struggle for Freedom and Democracy Day", + "2036-12-24": "Christmas Eve", + "2036-12-25": "Christmas Day", + "2036-12-26": "Second Day of Christmas", + "2037-01-01": "Independent Czech State Restoration Day", + "2037-04-03": "Good Friday", + "2037-04-06": "Easter Monday", + "2037-05-01": "Labor Day", + "2037-05-08": "Victory Day", + "2037-07-05": "Saints Cyril and Methodius Day", + "2037-07-06": "Jan Hus Day", + "2037-09-28": "Statehood Day", + "2037-10-28": "Independent Czechoslovak State Day", + "2037-11-17": "Struggle for Freedom and Democracy Day", + "2037-12-24": "Christmas Eve", + "2037-12-25": "Christmas Day", + "2037-12-26": "Second Day of Christmas", + "2038-01-01": "Independent Czech State Restoration Day", + "2038-04-23": "Good Friday", + "2038-04-26": "Easter Monday", + "2038-05-01": "Labor Day", + "2038-05-08": "Victory Day", + "2038-07-05": "Saints Cyril and Methodius Day", + "2038-07-06": "Jan Hus Day", + "2038-09-28": "Statehood Day", + "2038-10-28": "Independent Czechoslovak State Day", + "2038-11-17": "Struggle for Freedom and Democracy Day", + "2038-12-24": "Christmas Eve", + "2038-12-25": "Christmas Day", + "2038-12-26": "Second Day of Christmas", + "2039-01-01": "Independent Czech State Restoration Day", + "2039-04-08": "Good Friday", + "2039-04-11": "Easter Monday", + "2039-05-01": "Labor Day", + "2039-05-08": "Victory Day", + "2039-07-05": "Saints Cyril and Methodius Day", + "2039-07-06": "Jan Hus Day", + "2039-09-28": "Statehood Day", + "2039-10-28": "Independent Czechoslovak State Day", + "2039-11-17": "Struggle for Freedom and Democracy Day", + "2039-12-24": "Christmas Eve", + "2039-12-25": "Christmas Day", + "2039-12-26": "Second Day of Christmas", + "2040-01-01": "Independent Czech State Restoration Day", + "2040-03-30": "Good Friday", + "2040-04-02": "Easter Monday", + "2040-05-01": "Labor Day", + "2040-05-08": "Victory Day", + "2040-07-05": "Saints Cyril and Methodius Day", + "2040-07-06": "Jan Hus Day", + "2040-09-28": "Statehood Day", + "2040-10-28": "Independent Czechoslovak State Day", + "2040-11-17": "Struggle for Freedom and Democracy Day", + "2040-12-24": "Christmas Eve", + "2040-12-25": "Christmas Day", + "2040-12-26": "Second Day of Christmas", + "2041-01-01": "Independent Czech State Restoration Day", + "2041-04-19": "Good Friday", + "2041-04-22": "Easter Monday", + "2041-05-01": "Labor Day", + "2041-05-08": "Victory Day", + "2041-07-05": "Saints Cyril and Methodius Day", + "2041-07-06": "Jan Hus Day", + "2041-09-28": "Statehood Day", + "2041-10-28": "Independent Czechoslovak State Day", + "2041-11-17": "Struggle for Freedom and Democracy Day", + "2041-12-24": "Christmas Eve", + "2041-12-25": "Christmas Day", + "2041-12-26": "Second Day of Christmas", + "2042-01-01": "Independent Czech State Restoration Day", + "2042-04-04": "Good Friday", + "2042-04-07": "Easter Monday", + "2042-05-01": "Labor Day", + "2042-05-08": "Victory Day", + "2042-07-05": "Saints Cyril and Methodius Day", + "2042-07-06": "Jan Hus Day", + "2042-09-28": "Statehood Day", + "2042-10-28": "Independent Czechoslovak State Day", + "2042-11-17": "Struggle for Freedom and Democracy Day", + "2042-12-24": "Christmas Eve", + "2042-12-25": "Christmas Day", + "2042-12-26": "Second Day of Christmas", + "2043-01-01": "Independent Czech State Restoration Day", + "2043-03-27": "Good Friday", + "2043-03-30": "Easter Monday", + "2043-05-01": "Labor Day", + "2043-05-08": "Victory Day", + "2043-07-05": "Saints Cyril and Methodius Day", + "2043-07-06": "Jan Hus Day", + "2043-09-28": "Statehood Day", + "2043-10-28": "Independent Czechoslovak State Day", + "2043-11-17": "Struggle for Freedom and Democracy Day", + "2043-12-24": "Christmas Eve", + "2043-12-25": "Christmas Day", + "2043-12-26": "Second Day of Christmas", + "2044-01-01": "Independent Czech State Restoration Day", + "2044-04-15": "Good Friday", + "2044-04-18": "Easter Monday", + "2044-05-01": "Labor Day", + "2044-05-08": "Victory Day", + "2044-07-05": "Saints Cyril and Methodius Day", + "2044-07-06": "Jan Hus Day", + "2044-09-28": "Statehood Day", + "2044-10-28": "Independent Czechoslovak State Day", + "2044-11-17": "Struggle for Freedom and Democracy Day", + "2044-12-24": "Christmas Eve", + "2044-12-25": "Christmas Day", + "2044-12-26": "Second Day of Christmas", + "2045-01-01": "Independent Czech State Restoration Day", + "2045-04-07": "Good Friday", + "2045-04-10": "Easter Monday", + "2045-05-01": "Labor Day", + "2045-05-08": "Victory Day", + "2045-07-05": "Saints Cyril and Methodius Day", + "2045-07-06": "Jan Hus Day", + "2045-09-28": "Statehood Day", + "2045-10-28": "Independent Czechoslovak State Day", + "2045-11-17": "Struggle for Freedom and Democracy Day", + "2045-12-24": "Christmas Eve", + "2045-12-25": "Christmas Day", + "2045-12-26": "Second Day of Christmas", + "2046-01-01": "Independent Czech State Restoration Day", + "2046-03-23": "Good Friday", + "2046-03-26": "Easter Monday", + "2046-05-01": "Labor Day", + "2046-05-08": "Victory Day", + "2046-07-05": "Saints Cyril and Methodius Day", + "2046-07-06": "Jan Hus Day", + "2046-09-28": "Statehood Day", + "2046-10-28": "Independent Czechoslovak State Day", + "2046-11-17": "Struggle for Freedom and Democracy Day", + "2046-12-24": "Christmas Eve", + "2046-12-25": "Christmas Day", + "2046-12-26": "Second Day of Christmas", + "2047-01-01": "Independent Czech State Restoration Day", + "2047-04-12": "Good Friday", + "2047-04-15": "Easter Monday", + "2047-05-01": "Labor Day", + "2047-05-08": "Victory Day", + "2047-07-05": "Saints Cyril and Methodius Day", + "2047-07-06": "Jan Hus Day", + "2047-09-28": "Statehood Day", + "2047-10-28": "Independent Czechoslovak State Day", + "2047-11-17": "Struggle for Freedom and Democracy Day", + "2047-12-24": "Christmas Eve", + "2047-12-25": "Christmas Day", + "2047-12-26": "Second Day of Christmas", + "2048-01-01": "Independent Czech State Restoration Day", + "2048-04-03": "Good Friday", + "2048-04-06": "Easter Monday", + "2048-05-01": "Labor Day", + "2048-05-08": "Victory Day", + "2048-07-05": "Saints Cyril and Methodius Day", + "2048-07-06": "Jan Hus Day", + "2048-09-28": "Statehood Day", + "2048-10-28": "Independent Czechoslovak State Day", + "2048-11-17": "Struggle for Freedom and Democracy Day", + "2048-12-24": "Christmas Eve", + "2048-12-25": "Christmas Day", + "2048-12-26": "Second Day of Christmas", + "2049-01-01": "Independent Czech State Restoration Day", + "2049-04-16": "Good Friday", + "2049-04-19": "Easter Monday", + "2049-05-01": "Labor Day", + "2049-05-08": "Victory Day", + "2049-07-05": "Saints Cyril and Methodius Day", + "2049-07-06": "Jan Hus Day", + "2049-09-28": "Statehood Day", + "2049-10-28": "Independent Czechoslovak State Day", + "2049-11-17": "Struggle for Freedom and Democracy Day", + "2049-12-24": "Christmas Eve", + "2049-12-25": "Christmas Day", + "2049-12-26": "Second Day of Christmas", + "2050-01-01": "Independent Czech State Restoration Day", + "2050-04-08": "Good Friday", + "2050-04-11": "Easter Monday", + "2050-05-01": "Labor Day", + "2050-05-08": "Victory Day", + "2050-07-05": "Saints Cyril and Methodius Day", + "2050-07-06": "Jan Hus Day", + "2050-09-28": "Statehood Day", + "2050-10-28": "Independent Czechoslovak State Day", + "2050-11-17": "Struggle for Freedom and Democracy Day", + "2050-12-24": "Christmas Eve", + "2050-12-25": "Christmas Day", + "2050-12-26": "Second Day of Christmas" +} diff --git a/snapshots/countries/DE.json b/snapshots/countries/DE.json new file mode 100644 index 000000000..27670ee1b --- /dev/null +++ b/snapshots/countries/DE.json @@ -0,0 +1,1092 @@ +{ + "1990-10-03": "German Unity Day", + "1990-10-31": "Reformation Day", + "1990-11-01": "All Saints' Day", + "1990-11-21": "Repentance and Prayer Day", + "1990-12-25": "Christmas Day", + "1990-12-26": "Second Day of Christmas", + "1991-01-01": "New Year's Day", + "1991-01-06": "Epiphany", + "1991-03-29": "Good Friday", + "1991-03-31": "Easter Sunday", + "1991-04-01": "Easter Monday", + "1991-05-01": "Labor Day", + "1991-05-09": "Ascension Day", + "1991-05-19": "Whit Sunday", + "1991-05-20": "Whit Monday", + "1991-05-30": "Corpus Christi", + "1991-08-15": "Assumption Day", + "1991-10-03": "German Unity Day", + "1991-10-31": "Reformation Day", + "1991-11-01": "All Saints' Day", + "1991-11-20": "Repentance and Prayer Day", + "1991-12-25": "Christmas Day", + "1991-12-26": "Second Day of Christmas", + "1992-01-01": "New Year's Day", + "1992-01-06": "Epiphany", + "1992-04-17": "Good Friday", + "1992-04-19": "Easter Sunday", + "1992-04-20": "Easter Monday", + "1992-05-01": "Labor Day", + "1992-05-28": "Ascension Day", + "1992-06-07": "Whit Sunday", + "1992-06-08": "Whit Monday", + "1992-06-18": "Corpus Christi", + "1992-08-15": "Assumption Day", + "1992-10-03": "German Unity Day", + "1992-10-31": "Reformation Day", + "1992-11-01": "All Saints' Day", + "1992-11-18": "Repentance and Prayer Day", + "1992-12-25": "Christmas Day", + "1992-12-26": "Second Day of Christmas", + "1993-01-01": "New Year's Day", + "1993-01-06": "Epiphany", + "1993-04-09": "Good Friday", + "1993-04-11": "Easter Sunday", + "1993-04-12": "Easter Monday", + "1993-05-01": "Labor Day", + "1993-05-20": "Ascension Day", + "1993-05-30": "Whit Sunday", + "1993-05-31": "Whit Monday", + "1993-06-10": "Corpus Christi", + "1993-08-15": "Assumption Day", + "1993-10-03": "German Unity Day", + "1993-10-31": "Reformation Day", + "1993-11-01": "All Saints' Day", + "1993-11-17": "Repentance and Prayer Day", + "1993-12-25": "Christmas Day", + "1993-12-26": "Second Day of Christmas", + "1994-01-01": "New Year's Day", + "1994-01-06": "Epiphany", + "1994-04-01": "Good Friday", + "1994-04-03": "Easter Sunday", + "1994-04-04": "Easter Monday", + "1994-05-01": "Labor Day", + "1994-05-12": "Ascension Day", + "1994-05-22": "Whit Sunday", + "1994-05-23": "Whit Monday", + "1994-06-02": "Corpus Christi", + "1994-08-15": "Assumption Day", + "1994-10-03": "German Unity Day", + "1994-10-31": "Reformation Day", + "1994-11-01": "All Saints' Day", + "1994-11-16": "Repentance and Prayer Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Second Day of Christmas", + "1995-01-01": "New Year's Day", + "1995-01-06": "Epiphany", + "1995-04-14": "Good Friday", + "1995-04-16": "Easter Sunday", + "1995-04-17": "Easter Monday", + "1995-05-01": "Labor Day", + "1995-05-25": "Ascension Day", + "1995-06-04": "Whit Sunday", + "1995-06-05": "Whit Monday", + "1995-06-15": "Corpus Christi", + "1995-08-15": "Assumption Day", + "1995-10-03": "German Unity Day", + "1995-10-31": "Reformation Day", + "1995-11-01": "All Saints' Day", + "1995-11-22": "Repentance and Prayer Day", + "1995-12-25": "Christmas Day", + "1995-12-26": "Second Day of Christmas", + "1996-01-01": "New Year's Day", + "1996-01-06": "Epiphany", + "1996-04-05": "Good Friday", + "1996-04-07": "Easter Sunday", + "1996-04-08": "Easter Monday", + "1996-05-01": "Labor Day", + "1996-05-16": "Ascension Day", + "1996-05-26": "Whit Sunday", + "1996-05-27": "Whit Monday", + "1996-06-06": "Corpus Christi", + "1996-08-15": "Assumption Day", + "1996-10-03": "German Unity Day", + "1996-10-31": "Reformation Day", + "1996-11-01": "All Saints' Day", + "1996-11-20": "Repentance and Prayer Day", + "1996-12-25": "Christmas Day", + "1996-12-26": "Second Day of Christmas", + "1997-01-01": "New Year's Day", + "1997-01-06": "Epiphany", + "1997-03-28": "Good Friday", + "1997-03-30": "Easter Sunday", + "1997-03-31": "Easter Monday", + "1997-05-01": "Labor Day", + "1997-05-08": "Ascension Day", + "1997-05-18": "Whit Sunday", + "1997-05-19": "Whit Monday", + "1997-05-29": "Corpus Christi", + "1997-08-15": "Assumption Day", + "1997-10-03": "German Unity Day", + "1997-10-31": "Reformation Day", + "1997-11-01": "All Saints' Day", + "1997-11-19": "Repentance and Prayer Day", + "1997-12-25": "Christmas Day", + "1997-12-26": "Second Day of Christmas", + "1998-01-01": "New Year's Day", + "1998-01-06": "Epiphany", + "1998-04-10": "Good Friday", + "1998-04-12": "Easter Sunday", + "1998-04-13": "Easter Monday", + "1998-05-01": "Labor Day", + "1998-05-21": "Ascension Day", + "1998-05-31": "Whit Sunday", + "1998-06-01": "Whit Monday", + "1998-06-11": "Corpus Christi", + "1998-08-15": "Assumption Day", + "1998-10-03": "German Unity Day", + "1998-10-31": "Reformation Day", + "1998-11-01": "All Saints' Day", + "1998-11-18": "Repentance and Prayer Day", + "1998-12-25": "Christmas Day", + "1998-12-26": "Second Day of Christmas", + "1999-01-01": "New Year's Day", + "1999-01-06": "Epiphany", + "1999-04-02": "Good Friday", + "1999-04-04": "Easter Sunday", + "1999-04-05": "Easter Monday", + "1999-05-01": "Labor Day", + "1999-05-13": "Ascension Day", + "1999-05-23": "Whit Sunday", + "1999-05-24": "Whit Monday", + "1999-06-03": "Corpus Christi", + "1999-08-15": "Assumption Day", + "1999-10-03": "German Unity Day", + "1999-10-31": "Reformation Day", + "1999-11-01": "All Saints' Day", + "1999-11-17": "Repentance and Prayer Day", + "1999-12-25": "Christmas Day", + "1999-12-26": "Second Day of Christmas", + "2000-01-01": "New Year's Day", + "2000-01-06": "Epiphany", + "2000-04-21": "Good Friday", + "2000-04-23": "Easter Sunday", + "2000-04-24": "Easter Monday", + "2000-05-01": "Labor Day", + "2000-06-01": "Ascension Day", + "2000-06-11": "Whit Sunday", + "2000-06-12": "Whit Monday", + "2000-06-22": "Corpus Christi", + "2000-08-15": "Assumption Day", + "2000-10-03": "German Unity Day", + "2000-10-31": "Reformation Day", + "2000-11-01": "All Saints' Day", + "2000-11-22": "Repentance and Prayer Day", + "2000-12-25": "Christmas Day", + "2000-12-26": "Second Day of Christmas", + "2001-01-01": "New Year's Day", + "2001-01-06": "Epiphany", + "2001-04-13": "Good Friday", + "2001-04-15": "Easter Sunday", + "2001-04-16": "Easter Monday", + "2001-05-01": "Labor Day", + "2001-05-24": "Ascension Day", + "2001-06-03": "Whit Sunday", + "2001-06-04": "Whit Monday", + "2001-06-14": "Corpus Christi", + "2001-08-15": "Assumption Day", + "2001-10-03": "German Unity Day", + "2001-10-31": "Reformation Day", + "2001-11-01": "All Saints' Day", + "2001-11-21": "Repentance and Prayer Day", + "2001-12-25": "Christmas Day", + "2001-12-26": "Second Day of Christmas", + "2002-01-01": "New Year's Day", + "2002-01-06": "Epiphany", + "2002-03-29": "Good Friday", + "2002-03-31": "Easter Sunday", + "2002-04-01": "Easter Monday", + "2002-05-01": "Labor Day", + "2002-05-09": "Ascension Day", + "2002-05-19": "Whit Sunday", + "2002-05-20": "Whit Monday", + "2002-05-30": "Corpus Christi", + "2002-08-15": "Assumption Day", + "2002-10-03": "German Unity Day", + "2002-10-31": "Reformation Day", + "2002-11-01": "All Saints' Day", + "2002-11-20": "Repentance and Prayer Day", + "2002-12-25": "Christmas Day", + "2002-12-26": "Second Day of Christmas", + "2003-01-01": "New Year's Day", + "2003-01-06": "Epiphany", + "2003-04-18": "Good Friday", + "2003-04-20": "Easter Sunday", + "2003-04-21": "Easter Monday", + "2003-05-01": "Labor Day", + "2003-05-29": "Ascension Day", + "2003-06-08": "Whit Sunday", + "2003-06-09": "Whit Monday", + "2003-06-19": "Corpus Christi", + "2003-08-15": "Assumption Day", + "2003-10-03": "German Unity Day", + "2003-10-31": "Reformation Day", + "2003-11-01": "All Saints' Day", + "2003-11-19": "Repentance and Prayer Day", + "2003-12-25": "Christmas Day", + "2003-12-26": "Second Day of Christmas", + "2004-01-01": "New Year's Day", + "2004-01-06": "Epiphany", + "2004-04-09": "Good Friday", + "2004-04-11": "Easter Sunday", + "2004-04-12": "Easter Monday", + "2004-05-01": "Labor Day", + "2004-05-20": "Ascension Day", + "2004-05-30": "Whit Sunday", + "2004-05-31": "Whit Monday", + "2004-06-10": "Corpus Christi", + "2004-08-15": "Assumption Day", + "2004-10-03": "German Unity Day", + "2004-10-31": "Reformation Day", + "2004-11-01": "All Saints' Day", + "2004-11-17": "Repentance and Prayer Day", + "2004-12-25": "Christmas Day", + "2004-12-26": "Second Day of Christmas", + "2005-01-01": "New Year's Day", + "2005-01-06": "Epiphany", + "2005-03-25": "Good Friday", + "2005-03-27": "Easter Sunday", + "2005-03-28": "Easter Monday", + "2005-05-01": "Labor Day", + "2005-05-05": "Ascension Day", + "2005-05-15": "Whit Sunday", + "2005-05-16": "Whit Monday", + "2005-05-26": "Corpus Christi", + "2005-08-15": "Assumption Day", + "2005-10-03": "German Unity Day", + "2005-10-31": "Reformation Day", + "2005-11-01": "All Saints' Day", + "2005-11-16": "Repentance and Prayer Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "Second Day of Christmas", + "2006-01-01": "New Year's Day", + "2006-01-06": "Epiphany", + "2006-04-14": "Good Friday", + "2006-04-16": "Easter Sunday", + "2006-04-17": "Easter Monday", + "2006-05-01": "Labor Day", + "2006-05-25": "Ascension Day", + "2006-06-04": "Whit Sunday", + "2006-06-05": "Whit Monday", + "2006-06-15": "Corpus Christi", + "2006-08-15": "Assumption Day", + "2006-10-03": "German Unity Day", + "2006-10-31": "Reformation Day", + "2006-11-01": "All Saints' Day", + "2006-11-22": "Repentance and Prayer Day", + "2006-12-25": "Christmas Day", + "2006-12-26": "Second Day of Christmas", + "2007-01-01": "New Year's Day", + "2007-01-06": "Epiphany", + "2007-04-06": "Good Friday", + "2007-04-08": "Easter Sunday", + "2007-04-09": "Easter Monday", + "2007-05-01": "Labor Day", + "2007-05-17": "Ascension Day", + "2007-05-27": "Whit Sunday", + "2007-05-28": "Whit Monday", + "2007-06-07": "Corpus Christi", + "2007-08-15": "Assumption Day", + "2007-10-03": "German Unity Day", + "2007-10-31": "Reformation Day", + "2007-11-01": "All Saints' Day", + "2007-11-21": "Repentance and Prayer Day", + "2007-12-25": "Christmas Day", + "2007-12-26": "Second Day of Christmas", + "2008-01-01": "New Year's Day", + "2008-01-06": "Epiphany", + "2008-03-21": "Good Friday", + "2008-03-23": "Easter Sunday", + "2008-03-24": "Easter Monday", + "2008-05-01": "Ascension Day; Labor Day", + "2008-05-11": "Whit Sunday", + "2008-05-12": "Whit Monday", + "2008-05-22": "Corpus Christi", + "2008-08-15": "Assumption Day", + "2008-10-03": "German Unity Day", + "2008-10-31": "Reformation Day", + "2008-11-01": "All Saints' Day", + "2008-11-19": "Repentance and Prayer Day", + "2008-12-25": "Christmas Day", + "2008-12-26": "Second Day of Christmas", + "2009-01-01": "New Year's Day", + "2009-01-06": "Epiphany", + "2009-04-10": "Good Friday", + "2009-04-12": "Easter Sunday", + "2009-04-13": "Easter Monday", + "2009-05-01": "Labor Day", + "2009-05-21": "Ascension Day", + "2009-05-31": "Whit Sunday", + "2009-06-01": "Whit Monday", + "2009-06-11": "Corpus Christi", + "2009-08-15": "Assumption Day", + "2009-10-03": "German Unity Day", + "2009-10-31": "Reformation Day", + "2009-11-01": "All Saints' Day", + "2009-11-18": "Repentance and Prayer Day", + "2009-12-25": "Christmas Day", + "2009-12-26": "Second Day of Christmas", + "2010-01-01": "New Year's Day", + "2010-01-06": "Epiphany", + "2010-04-02": "Good Friday", + "2010-04-04": "Easter Sunday", + "2010-04-05": "Easter Monday", + "2010-05-01": "Labor Day", + "2010-05-13": "Ascension Day", + "2010-05-23": "Whit Sunday", + "2010-05-24": "Whit Monday", + "2010-06-03": "Corpus Christi", + "2010-08-15": "Assumption Day", + "2010-10-03": "German Unity Day", + "2010-10-31": "Reformation Day", + "2010-11-01": "All Saints' Day", + "2010-11-17": "Repentance and Prayer Day", + "2010-12-25": "Christmas Day", + "2010-12-26": "Second Day of Christmas", + "2011-01-01": "New Year's Day", + "2011-01-06": "Epiphany", + "2011-04-22": "Good Friday", + "2011-04-24": "Easter Sunday", + "2011-04-25": "Easter Monday", + "2011-05-01": "Labor Day", + "2011-06-02": "Ascension Day", + "2011-06-12": "Whit Sunday", + "2011-06-13": "Whit Monday", + "2011-06-23": "Corpus Christi", + "2011-08-15": "Assumption Day", + "2011-10-03": "German Unity Day", + "2011-10-31": "Reformation Day", + "2011-11-01": "All Saints' Day", + "2011-11-16": "Repentance and Prayer Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "Second Day of Christmas", + "2012-01-01": "New Year's Day", + "2012-01-06": "Epiphany", + "2012-04-06": "Good Friday", + "2012-04-08": "Easter Sunday", + "2012-04-09": "Easter Monday", + "2012-05-01": "Labor Day", + "2012-05-17": "Ascension Day", + "2012-05-27": "Whit Sunday", + "2012-05-28": "Whit Monday", + "2012-06-07": "Corpus Christi", + "2012-08-15": "Assumption Day", + "2012-10-03": "German Unity Day", + "2012-10-31": "Reformation Day", + "2012-11-01": "All Saints' Day", + "2012-11-21": "Repentance and Prayer Day", + "2012-12-25": "Christmas Day", + "2012-12-26": "Second Day of Christmas", + "2013-01-01": "New Year's Day", + "2013-01-06": "Epiphany", + "2013-03-29": "Good Friday", + "2013-03-31": "Easter Sunday", + "2013-04-01": "Easter Monday", + "2013-05-01": "Labor Day", + "2013-05-09": "Ascension Day", + "2013-05-19": "Whit Sunday", + "2013-05-20": "Whit Monday", + "2013-05-30": "Corpus Christi", + "2013-08-15": "Assumption Day", + "2013-10-03": "German Unity Day", + "2013-10-31": "Reformation Day", + "2013-11-01": "All Saints' Day", + "2013-11-20": "Repentance and Prayer Day", + "2013-12-25": "Christmas Day", + "2013-12-26": "Second Day of Christmas", + "2014-01-01": "New Year's Day", + "2014-01-06": "Epiphany", + "2014-04-18": "Good Friday", + "2014-04-20": "Easter Sunday", + "2014-04-21": "Easter Monday", + "2014-05-01": "Labor Day", + "2014-05-29": "Ascension Day", + "2014-06-08": "Whit Sunday", + "2014-06-09": "Whit Monday", + "2014-06-19": "Corpus Christi", + "2014-08-15": "Assumption Day", + "2014-10-03": "German Unity Day", + "2014-10-31": "Reformation Day", + "2014-11-01": "All Saints' Day", + "2014-11-19": "Repentance and Prayer Day", + "2014-12-25": "Christmas Day", + "2014-12-26": "Second Day of Christmas", + "2015-01-01": "New Year's Day", + "2015-01-06": "Epiphany", + "2015-04-03": "Good Friday", + "2015-04-05": "Easter Sunday", + "2015-04-06": "Easter Monday", + "2015-05-01": "Labor Day", + "2015-05-14": "Ascension Day", + "2015-05-24": "Whit Sunday", + "2015-05-25": "Whit Monday", + "2015-06-04": "Corpus Christi", + "2015-08-15": "Assumption Day", + "2015-10-03": "German Unity Day", + "2015-10-31": "Reformation Day", + "2015-11-01": "All Saints' Day", + "2015-11-18": "Repentance and Prayer Day", + "2015-12-25": "Christmas Day", + "2015-12-26": "Second Day of Christmas", + "2016-01-01": "New Year's Day", + "2016-01-06": "Epiphany", + "2016-03-25": "Good Friday", + "2016-03-27": "Easter Sunday", + "2016-03-28": "Easter Monday", + "2016-05-01": "Labor Day", + "2016-05-05": "Ascension Day", + "2016-05-15": "Whit Sunday", + "2016-05-16": "Whit Monday", + "2016-05-26": "Corpus Christi", + "2016-08-15": "Assumption Day", + "2016-10-03": "German Unity Day", + "2016-10-31": "Reformation Day", + "2016-11-01": "All Saints' Day", + "2016-11-16": "Repentance and Prayer Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "Second Day of Christmas", + "2017-01-01": "New Year's Day", + "2017-01-06": "Epiphany", + "2017-04-14": "Good Friday", + "2017-04-16": "Easter Sunday", + "2017-04-17": "Easter Monday", + "2017-05-01": "Labor Day", + "2017-05-25": "Ascension Day", + "2017-06-04": "Whit Sunday", + "2017-06-05": "Whit Monday", + "2017-06-15": "Corpus Christi", + "2017-08-15": "Assumption Day", + "2017-10-03": "German Unity Day", + "2017-10-31": "Reformation Day", + "2017-11-01": "All Saints' Day", + "2017-11-22": "Repentance and Prayer Day", + "2017-12-25": "Christmas Day", + "2017-12-26": "Second Day of Christmas", + "2018-01-01": "New Year's Day", + "2018-01-06": "Epiphany", + "2018-03-30": "Good Friday", + "2018-04-01": "Easter Sunday", + "2018-04-02": "Easter Monday", + "2018-05-01": "Labor Day", + "2018-05-10": "Ascension Day", + "2018-05-20": "Whit Sunday", + "2018-05-21": "Whit Monday", + "2018-05-31": "Corpus Christi", + "2018-08-15": "Assumption Day", + "2018-10-03": "German Unity Day", + "2018-10-31": "Reformation Day", + "2018-11-01": "All Saints' Day", + "2018-11-21": "Repentance and Prayer Day", + "2018-12-25": "Christmas Day", + "2018-12-26": "Second Day of Christmas", + "2019-01-01": "New Year's Day", + "2019-01-06": "Epiphany", + "2019-03-08": "International Women's Day", + "2019-04-19": "Good Friday", + "2019-04-21": "Easter Sunday", + "2019-04-22": "Easter Monday", + "2019-05-01": "Labor Day", + "2019-05-30": "Ascension Day", + "2019-06-09": "Whit Sunday", + "2019-06-10": "Whit Monday", + "2019-06-20": "Corpus Christi", + "2019-08-15": "Assumption Day", + "2019-09-20": "World Children's Day", + "2019-10-03": "German Unity Day", + "2019-10-31": "Reformation Day", + "2019-11-01": "All Saints' Day", + "2019-11-20": "Repentance and Prayer Day", + "2019-12-25": "Christmas Day", + "2019-12-26": "Second Day of Christmas", + "2020-01-01": "New Year's Day", + "2020-01-06": "Epiphany", + "2020-03-08": "International Women's Day", + "2020-04-10": "Good Friday", + "2020-04-12": "Easter Sunday", + "2020-04-13": "Easter Monday", + "2020-05-01": "Labor Day", + "2020-05-08": "75th anniversary of the liberation from Nazism and the end of the Second World War in Europe", + "2020-05-21": "Ascension Day", + "2020-05-31": "Whit Sunday", + "2020-06-01": "Whit Monday", + "2020-06-11": "Corpus Christi", + "2020-08-15": "Assumption Day", + "2020-09-20": "World Children's Day", + "2020-10-03": "German Unity Day", + "2020-10-31": "Reformation Day", + "2020-11-01": "All Saints' Day", + "2020-11-18": "Repentance and Prayer Day", + "2020-12-25": "Christmas Day", + "2020-12-26": "Second Day of Christmas", + "2021-01-01": "New Year's Day", + "2021-01-06": "Epiphany", + "2021-03-08": "International Women's Day", + "2021-04-02": "Good Friday", + "2021-04-04": "Easter Sunday", + "2021-04-05": "Easter Monday", + "2021-05-01": "Labor Day", + "2021-05-13": "Ascension Day", + "2021-05-23": "Whit Sunday", + "2021-05-24": "Whit Monday", + "2021-06-03": "Corpus Christi", + "2021-08-15": "Assumption Day", + "2021-09-20": "World Children's Day", + "2021-10-03": "German Unity Day", + "2021-10-31": "Reformation Day", + "2021-11-01": "All Saints' Day", + "2021-11-17": "Repentance and Prayer Day", + "2021-12-25": "Christmas Day", + "2021-12-26": "Second Day of Christmas", + "2022-01-01": "New Year's Day", + "2022-01-06": "Epiphany", + "2022-03-08": "International Women's Day", + "2022-04-15": "Good Friday", + "2022-04-17": "Easter Sunday", + "2022-04-18": "Easter Monday", + "2022-05-01": "Labor Day", + "2022-05-26": "Ascension Day", + "2022-06-05": "Whit Sunday", + "2022-06-06": "Whit Monday", + "2022-06-16": "Corpus Christi", + "2022-08-15": "Assumption Day", + "2022-09-20": "World Children's Day", + "2022-10-03": "German Unity Day", + "2022-10-31": "Reformation Day", + "2022-11-01": "All Saints' Day", + "2022-11-16": "Repentance and Prayer Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "Second Day of Christmas", + "2023-01-01": "New Year's Day", + "2023-01-06": "Epiphany", + "2023-03-08": "International Women's Day", + "2023-04-07": "Good Friday", + "2023-04-09": "Easter Sunday", + "2023-04-10": "Easter Monday", + "2023-05-01": "Labor Day", + "2023-05-18": "Ascension Day", + "2023-05-28": "Whit Sunday", + "2023-05-29": "Whit Monday", + "2023-06-08": "Corpus Christi", + "2023-08-15": "Assumption Day", + "2023-09-20": "World Children's Day", + "2023-10-03": "German Unity Day", + "2023-10-31": "Reformation Day", + "2023-11-01": "All Saints' Day", + "2023-11-22": "Repentance and Prayer Day", + "2023-12-25": "Christmas Day", + "2023-12-26": "Second Day of Christmas", + "2024-01-01": "New Year's Day", + "2024-01-06": "Epiphany", + "2024-03-08": "International Women's Day", + "2024-03-29": "Good Friday", + "2024-03-31": "Easter Sunday", + "2024-04-01": "Easter Monday", + "2024-05-01": "Labor Day", + "2024-05-09": "Ascension Day", + "2024-05-19": "Whit Sunday", + "2024-05-20": "Whit Monday", + "2024-05-30": "Corpus Christi", + "2024-08-15": "Assumption Day", + "2024-09-20": "World Children's Day", + "2024-10-03": "German Unity Day", + "2024-10-31": "Reformation Day", + "2024-11-01": "All Saints' Day", + "2024-11-20": "Repentance and Prayer Day", + "2024-12-25": "Christmas Day", + "2024-12-26": "Second Day of Christmas", + "2025-01-01": "New Year's Day", + "2025-01-06": "Epiphany", + "2025-03-08": "International Women's Day", + "2025-04-18": "Good Friday", + "2025-04-20": "Easter Sunday", + "2025-04-21": "Easter Monday", + "2025-05-01": "Labor Day", + "2025-05-29": "Ascension Day", + "2025-06-08": "Whit Sunday", + "2025-06-09": "Whit Monday", + "2025-06-19": "Corpus Christi", + "2025-08-15": "Assumption Day", + "2025-09-20": "World Children's Day", + "2025-10-03": "German Unity Day", + "2025-10-31": "Reformation Day", + "2025-11-01": "All Saints' Day", + "2025-11-19": "Repentance and Prayer Day", + "2025-12-25": "Christmas Day", + "2025-12-26": "Second Day of Christmas", + "2026-01-01": "New Year's Day", + "2026-01-06": "Epiphany", + "2026-03-08": "International Women's Day", + "2026-04-03": "Good Friday", + "2026-04-05": "Easter Sunday", + "2026-04-06": "Easter Monday", + "2026-05-01": "Labor Day", + "2026-05-14": "Ascension Day", + "2026-05-24": "Whit Sunday", + "2026-05-25": "Whit Monday", + "2026-06-04": "Corpus Christi", + "2026-08-15": "Assumption Day", + "2026-09-20": "World Children's Day", + "2026-10-03": "German Unity Day", + "2026-10-31": "Reformation Day", + "2026-11-01": "All Saints' Day", + "2026-11-18": "Repentance and Prayer Day", + "2026-12-25": "Christmas Day", + "2026-12-26": "Second Day of Christmas", + "2027-01-01": "New Year's Day", + "2027-01-06": "Epiphany", + "2027-03-08": "International Women's Day", + "2027-03-26": "Good Friday", + "2027-03-28": "Easter Sunday", + "2027-03-29": "Easter Monday", + "2027-05-01": "Labor Day", + "2027-05-06": "Ascension Day", + "2027-05-16": "Whit Sunday", + "2027-05-17": "Whit Monday", + "2027-05-27": "Corpus Christi", + "2027-08-15": "Assumption Day", + "2027-09-20": "World Children's Day", + "2027-10-03": "German Unity Day", + "2027-10-31": "Reformation Day", + "2027-11-01": "All Saints' Day", + "2027-11-17": "Repentance and Prayer Day", + "2027-12-25": "Christmas Day", + "2027-12-26": "Second Day of Christmas", + "2028-01-01": "New Year's Day", + "2028-01-06": "Epiphany", + "2028-03-08": "International Women's Day", + "2028-04-14": "Good Friday", + "2028-04-16": "Easter Sunday", + "2028-04-17": "Easter Monday", + "2028-05-01": "Labor Day", + "2028-05-25": "Ascension Day", + "2028-06-04": "Whit Sunday", + "2028-06-05": "Whit Monday", + "2028-06-15": "Corpus Christi", + "2028-08-15": "Assumption Day", + "2028-09-20": "World Children's Day", + "2028-10-03": "German Unity Day", + "2028-10-31": "Reformation Day", + "2028-11-01": "All Saints' Day", + "2028-11-22": "Repentance and Prayer Day", + "2028-12-25": "Christmas Day", + "2028-12-26": "Second Day of Christmas", + "2029-01-01": "New Year's Day", + "2029-01-06": "Epiphany", + "2029-03-08": "International Women's Day", + "2029-03-30": "Good Friday", + "2029-04-01": "Easter Sunday", + "2029-04-02": "Easter Monday", + "2029-05-01": "Labor Day", + "2029-05-10": "Ascension Day", + "2029-05-20": "Whit Sunday", + "2029-05-21": "Whit Monday", + "2029-05-31": "Corpus Christi", + "2029-08-15": "Assumption Day", + "2029-09-20": "World Children's Day", + "2029-10-03": "German Unity Day", + "2029-10-31": "Reformation Day", + "2029-11-01": "All Saints' Day", + "2029-11-21": "Repentance and Prayer Day", + "2029-12-25": "Christmas Day", + "2029-12-26": "Second Day of Christmas", + "2030-01-01": "New Year's Day", + "2030-01-06": "Epiphany", + "2030-03-08": "International Women's Day", + "2030-04-19": "Good Friday", + "2030-04-21": "Easter Sunday", + "2030-04-22": "Easter Monday", + "2030-05-01": "Labor Day", + "2030-05-30": "Ascension Day", + "2030-06-09": "Whit Sunday", + "2030-06-10": "Whit Monday", + "2030-06-20": "Corpus Christi", + "2030-08-15": "Assumption Day", + "2030-09-20": "World Children's Day", + "2030-10-03": "German Unity Day", + "2030-10-31": "Reformation Day", + "2030-11-01": "All Saints' Day", + "2030-11-20": "Repentance and Prayer Day", + "2030-12-25": "Christmas Day", + "2030-12-26": "Second Day of Christmas", + "2031-01-01": "New Year's Day", + "2031-01-06": "Epiphany", + "2031-03-08": "International Women's Day", + "2031-04-11": "Good Friday", + "2031-04-13": "Easter Sunday", + "2031-04-14": "Easter Monday", + "2031-05-01": "Labor Day", + "2031-05-22": "Ascension Day", + "2031-06-01": "Whit Sunday", + "2031-06-02": "Whit Monday", + "2031-06-12": "Corpus Christi", + "2031-08-15": "Assumption Day", + "2031-09-20": "World Children's Day", + "2031-10-03": "German Unity Day", + "2031-10-31": "Reformation Day", + "2031-11-01": "All Saints' Day", + "2031-11-19": "Repentance and Prayer Day", + "2031-12-25": "Christmas Day", + "2031-12-26": "Second Day of Christmas", + "2032-01-01": "New Year's Day", + "2032-01-06": "Epiphany", + "2032-03-08": "International Women's Day", + "2032-03-26": "Good Friday", + "2032-03-28": "Easter Sunday", + "2032-03-29": "Easter Monday", + "2032-05-01": "Labor Day", + "2032-05-06": "Ascension Day", + "2032-05-16": "Whit Sunday", + "2032-05-17": "Whit Monday", + "2032-05-27": "Corpus Christi", + "2032-08-15": "Assumption Day", + "2032-09-20": "World Children's Day", + "2032-10-03": "German Unity Day", + "2032-10-31": "Reformation Day", + "2032-11-01": "All Saints' Day", + "2032-11-17": "Repentance and Prayer Day", + "2032-12-25": "Christmas Day", + "2032-12-26": "Second Day of Christmas", + "2033-01-01": "New Year's Day", + "2033-01-06": "Epiphany", + "2033-03-08": "International Women's Day", + "2033-04-15": "Good Friday", + "2033-04-17": "Easter Sunday", + "2033-04-18": "Easter Monday", + "2033-05-01": "Labor Day", + "2033-05-26": "Ascension Day", + "2033-06-05": "Whit Sunday", + "2033-06-06": "Whit Monday", + "2033-06-16": "Corpus Christi", + "2033-08-15": "Assumption Day", + "2033-09-20": "World Children's Day", + "2033-10-03": "German Unity Day", + "2033-10-31": "Reformation Day", + "2033-11-01": "All Saints' Day", + "2033-11-16": "Repentance and Prayer Day", + "2033-12-25": "Christmas Day", + "2033-12-26": "Second Day of Christmas", + "2034-01-01": "New Year's Day", + "2034-01-06": "Epiphany", + "2034-03-08": "International Women's Day", + "2034-04-07": "Good Friday", + "2034-04-09": "Easter Sunday", + "2034-04-10": "Easter Monday", + "2034-05-01": "Labor Day", + "2034-05-18": "Ascension Day", + "2034-05-28": "Whit Sunday", + "2034-05-29": "Whit Monday", + "2034-06-08": "Corpus Christi", + "2034-08-15": "Assumption Day", + "2034-09-20": "World Children's Day", + "2034-10-03": "German Unity Day", + "2034-10-31": "Reformation Day", + "2034-11-01": "All Saints' Day", + "2034-11-22": "Repentance and Prayer Day", + "2034-12-25": "Christmas Day", + "2034-12-26": "Second Day of Christmas", + "2035-01-01": "New Year's Day", + "2035-01-06": "Epiphany", + "2035-03-08": "International Women's Day", + "2035-03-23": "Good Friday", + "2035-03-25": "Easter Sunday", + "2035-03-26": "Easter Monday", + "2035-05-01": "Labor Day", + "2035-05-03": "Ascension Day", + "2035-05-13": "Whit Sunday", + "2035-05-14": "Whit Monday", + "2035-05-24": "Corpus Christi", + "2035-08-15": "Assumption Day", + "2035-09-20": "World Children's Day", + "2035-10-03": "German Unity Day", + "2035-10-31": "Reformation Day", + "2035-11-01": "All Saints' Day", + "2035-11-21": "Repentance and Prayer Day", + "2035-12-25": "Christmas Day", + "2035-12-26": "Second Day of Christmas", + "2036-01-01": "New Year's Day", + "2036-01-06": "Epiphany", + "2036-03-08": "International Women's Day", + "2036-04-11": "Good Friday", + "2036-04-13": "Easter Sunday", + "2036-04-14": "Easter Monday", + "2036-05-01": "Labor Day", + "2036-05-22": "Ascension Day", + "2036-06-01": "Whit Sunday", + "2036-06-02": "Whit Monday", + "2036-06-12": "Corpus Christi", + "2036-08-15": "Assumption Day", + "2036-09-20": "World Children's Day", + "2036-10-03": "German Unity Day", + "2036-10-31": "Reformation Day", + "2036-11-01": "All Saints' Day", + "2036-11-19": "Repentance and Prayer Day", + "2036-12-25": "Christmas Day", + "2036-12-26": "Second Day of Christmas", + "2037-01-01": "New Year's Day", + "2037-01-06": "Epiphany", + "2037-03-08": "International Women's Day", + "2037-04-03": "Good Friday", + "2037-04-05": "Easter Sunday", + "2037-04-06": "Easter Monday", + "2037-05-01": "Labor Day", + "2037-05-14": "Ascension Day", + "2037-05-24": "Whit Sunday", + "2037-05-25": "Whit Monday", + "2037-06-04": "Corpus Christi", + "2037-08-15": "Assumption Day", + "2037-09-20": "World Children's Day", + "2037-10-03": "German Unity Day", + "2037-10-31": "Reformation Day", + "2037-11-01": "All Saints' Day", + "2037-11-18": "Repentance and Prayer Day", + "2037-12-25": "Christmas Day", + "2037-12-26": "Second Day of Christmas", + "2038-01-01": "New Year's Day", + "2038-01-06": "Epiphany", + "2038-03-08": "International Women's Day", + "2038-04-23": "Good Friday", + "2038-04-25": "Easter Sunday", + "2038-04-26": "Easter Monday", + "2038-05-01": "Labor Day", + "2038-06-03": "Ascension Day", + "2038-06-13": "Whit Sunday", + "2038-06-14": "Whit Monday", + "2038-06-24": "Corpus Christi", + "2038-08-15": "Assumption Day", + "2038-09-20": "World Children's Day", + "2038-10-03": "German Unity Day", + "2038-10-31": "Reformation Day", + "2038-11-01": "All Saints' Day", + "2038-11-17": "Repentance and Prayer Day", + "2038-12-25": "Christmas Day", + "2038-12-26": "Second Day of Christmas", + "2039-01-01": "New Year's Day", + "2039-01-06": "Epiphany", + "2039-03-08": "International Women's Day", + "2039-04-08": "Good Friday", + "2039-04-10": "Easter Sunday", + "2039-04-11": "Easter Monday", + "2039-05-01": "Labor Day", + "2039-05-19": "Ascension Day", + "2039-05-29": "Whit Sunday", + "2039-05-30": "Whit Monday", + "2039-06-09": "Corpus Christi", + "2039-08-15": "Assumption Day", + "2039-09-20": "World Children's Day", + "2039-10-03": "German Unity Day", + "2039-10-31": "Reformation Day", + "2039-11-01": "All Saints' Day", + "2039-11-16": "Repentance and Prayer Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Second Day of Christmas", + "2040-01-01": "New Year's Day", + "2040-01-06": "Epiphany", + "2040-03-08": "International Women's Day", + "2040-03-30": "Good Friday", + "2040-04-01": "Easter Sunday", + "2040-04-02": "Easter Monday", + "2040-05-01": "Labor Day", + "2040-05-10": "Ascension Day", + "2040-05-20": "Whit Sunday", + "2040-05-21": "Whit Monday", + "2040-05-31": "Corpus Christi", + "2040-08-15": "Assumption Day", + "2040-09-20": "World Children's Day", + "2040-10-03": "German Unity Day", + "2040-10-31": "Reformation Day", + "2040-11-01": "All Saints' Day", + "2040-11-21": "Repentance and Prayer Day", + "2040-12-25": "Christmas Day", + "2040-12-26": "Second Day of Christmas", + "2041-01-01": "New Year's Day", + "2041-01-06": "Epiphany", + "2041-03-08": "International Women's Day", + "2041-04-19": "Good Friday", + "2041-04-21": "Easter Sunday", + "2041-04-22": "Easter Monday", + "2041-05-01": "Labor Day", + "2041-05-30": "Ascension Day", + "2041-06-09": "Whit Sunday", + "2041-06-10": "Whit Monday", + "2041-06-20": "Corpus Christi", + "2041-08-15": "Assumption Day", + "2041-09-20": "World Children's Day", + "2041-10-03": "German Unity Day", + "2041-10-31": "Reformation Day", + "2041-11-01": "All Saints' Day", + "2041-11-20": "Repentance and Prayer Day", + "2041-12-25": "Christmas Day", + "2041-12-26": "Second Day of Christmas", + "2042-01-01": "New Year's Day", + "2042-01-06": "Epiphany", + "2042-03-08": "International Women's Day", + "2042-04-04": "Good Friday", + "2042-04-06": "Easter Sunday", + "2042-04-07": "Easter Monday", + "2042-05-01": "Labor Day", + "2042-05-15": "Ascension Day", + "2042-05-25": "Whit Sunday", + "2042-05-26": "Whit Monday", + "2042-06-05": "Corpus Christi", + "2042-08-15": "Assumption Day", + "2042-09-20": "World Children's Day", + "2042-10-03": "German Unity Day", + "2042-10-31": "Reformation Day", + "2042-11-01": "All Saints' Day", + "2042-11-19": "Repentance and Prayer Day", + "2042-12-25": "Christmas Day", + "2042-12-26": "Second Day of Christmas", + "2043-01-01": "New Year's Day", + "2043-01-06": "Epiphany", + "2043-03-08": "International Women's Day", + "2043-03-27": "Good Friday", + "2043-03-29": "Easter Sunday", + "2043-03-30": "Easter Monday", + "2043-05-01": "Labor Day", + "2043-05-07": "Ascension Day", + "2043-05-17": "Whit Sunday", + "2043-05-18": "Whit Monday", + "2043-05-28": "Corpus Christi", + "2043-08-15": "Assumption Day", + "2043-09-20": "World Children's Day", + "2043-10-03": "German Unity Day", + "2043-10-31": "Reformation Day", + "2043-11-01": "All Saints' Day", + "2043-11-18": "Repentance and Prayer Day", + "2043-12-25": "Christmas Day", + "2043-12-26": "Second Day of Christmas", + "2044-01-01": "New Year's Day", + "2044-01-06": "Epiphany", + "2044-03-08": "International Women's Day", + "2044-04-15": "Good Friday", + "2044-04-17": "Easter Sunday", + "2044-04-18": "Easter Monday", + "2044-05-01": "Labor Day", + "2044-05-26": "Ascension Day", + "2044-06-05": "Whit Sunday", + "2044-06-06": "Whit Monday", + "2044-06-16": "Corpus Christi", + "2044-08-15": "Assumption Day", + "2044-09-20": "World Children's Day", + "2044-10-03": "German Unity Day", + "2044-10-31": "Reformation Day", + "2044-11-01": "All Saints' Day", + "2044-11-16": "Repentance and Prayer Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "Second Day of Christmas", + "2045-01-01": "New Year's Day", + "2045-01-06": "Epiphany", + "2045-03-08": "International Women's Day", + "2045-04-07": "Good Friday", + "2045-04-09": "Easter Sunday", + "2045-04-10": "Easter Monday", + "2045-05-01": "Labor Day", + "2045-05-18": "Ascension Day", + "2045-05-28": "Whit Sunday", + "2045-05-29": "Whit Monday", + "2045-06-08": "Corpus Christi", + "2045-08-15": "Assumption Day", + "2045-09-20": "World Children's Day", + "2045-10-03": "German Unity Day", + "2045-10-31": "Reformation Day", + "2045-11-01": "All Saints' Day", + "2045-11-22": "Repentance and Prayer Day", + "2045-12-25": "Christmas Day", + "2045-12-26": "Second Day of Christmas", + "2046-01-01": "New Year's Day", + "2046-01-06": "Epiphany", + "2046-03-08": "International Women's Day", + "2046-03-23": "Good Friday", + "2046-03-25": "Easter Sunday", + "2046-03-26": "Easter Monday", + "2046-05-01": "Labor Day", + "2046-05-03": "Ascension Day", + "2046-05-13": "Whit Sunday", + "2046-05-14": "Whit Monday", + "2046-05-24": "Corpus Christi", + "2046-08-15": "Assumption Day", + "2046-09-20": "World Children's Day", + "2046-10-03": "German Unity Day", + "2046-10-31": "Reformation Day", + "2046-11-01": "All Saints' Day", + "2046-11-21": "Repentance and Prayer Day", + "2046-12-25": "Christmas Day", + "2046-12-26": "Second Day of Christmas", + "2047-01-01": "New Year's Day", + "2047-01-06": "Epiphany", + "2047-03-08": "International Women's Day", + "2047-04-12": "Good Friday", + "2047-04-14": "Easter Sunday", + "2047-04-15": "Easter Monday", + "2047-05-01": "Labor Day", + "2047-05-23": "Ascension Day", + "2047-06-02": "Whit Sunday", + "2047-06-03": "Whit Monday", + "2047-06-13": "Corpus Christi", + "2047-08-15": "Assumption Day", + "2047-09-20": "World Children's Day", + "2047-10-03": "German Unity Day", + "2047-10-31": "Reformation Day", + "2047-11-01": "All Saints' Day", + "2047-11-20": "Repentance and Prayer Day", + "2047-12-25": "Christmas Day", + "2047-12-26": "Second Day of Christmas", + "2048-01-01": "New Year's Day", + "2048-01-06": "Epiphany", + "2048-03-08": "International Women's Day", + "2048-04-03": "Good Friday", + "2048-04-05": "Easter Sunday", + "2048-04-06": "Easter Monday", + "2048-05-01": "Labor Day", + "2048-05-14": "Ascension Day", + "2048-05-24": "Whit Sunday", + "2048-05-25": "Whit Monday", + "2048-06-04": "Corpus Christi", + "2048-08-15": "Assumption Day", + "2048-09-20": "World Children's Day", + "2048-10-03": "German Unity Day", + "2048-10-31": "Reformation Day", + "2048-11-01": "All Saints' Day", + "2048-11-18": "Repentance and Prayer Day", + "2048-12-25": "Christmas Day", + "2048-12-26": "Second Day of Christmas", + "2049-01-01": "New Year's Day", + "2049-01-06": "Epiphany", + "2049-03-08": "International Women's Day", + "2049-04-16": "Good Friday", + "2049-04-18": "Easter Sunday", + "2049-04-19": "Easter Monday", + "2049-05-01": "Labor Day", + "2049-05-27": "Ascension Day", + "2049-06-06": "Whit Sunday", + "2049-06-07": "Whit Monday", + "2049-06-17": "Corpus Christi", + "2049-08-15": "Assumption Day", + "2049-09-20": "World Children's Day", + "2049-10-03": "German Unity Day", + "2049-10-31": "Reformation Day", + "2049-11-01": "All Saints' Day", + "2049-11-17": "Repentance and Prayer Day", + "2049-12-25": "Christmas Day", + "2049-12-26": "Second Day of Christmas", + "2050-01-01": "New Year's Day", + "2050-01-06": "Epiphany", + "2050-03-08": "International Women's Day", + "2050-04-08": "Good Friday", + "2050-04-10": "Easter Sunday", + "2050-04-11": "Easter Monday", + "2050-05-01": "Labor Day", + "2050-05-19": "Ascension Day", + "2050-05-29": "Whit Sunday", + "2050-05-30": "Whit Monday", + "2050-06-09": "Corpus Christi", + "2050-08-15": "Assumption Day", + "2050-09-20": "World Children's Day", + "2050-10-03": "German Unity Day", + "2050-10-31": "Reformation Day", + "2050-11-01": "All Saints' Day", + "2050-11-16": "Repentance and Prayer Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "Second Day of Christmas" +} diff --git a/snapshots/countries/DJ.json b/snapshots/countries/DJ.json new file mode 100644 index 000000000..7a731b2a5 --- /dev/null +++ b/snapshots/countries/DJ.json @@ -0,0 +1,962 @@ +{ + "1978-01-01": "New Year's Day", + "1978-02-19": "Prophet Muhammad's Birthday* (*estimated)", + "1978-05-01": "Labor Day", + "1978-06-27": "Independence Day", + "1978-06-28": "Independence Day Holiday", + "1978-07-02": "Isra and Miraj* (*estimated)", + "1978-09-03": "Eid al-Fitr* (*estimated)", + "1978-09-04": "Eid al-Fitr Holiday* (*estimated)", + "1978-11-09": "Arafat* (*estimated)", + "1978-11-10": "Eid al-Adha* (*estimated)", + "1978-11-11": "Eid al-Adha Holiday* (*estimated)", + "1978-12-01": "Islamic New Year* (*estimated)", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-02-09": "Prophet Muhammad's Birthday* (*estimated)", + "1979-05-01": "Labor Day", + "1979-06-22": "Isra and Miraj* (*estimated)", + "1979-06-27": "Independence Day", + "1979-06-28": "Independence Day Holiday", + "1979-08-23": "Eid al-Fitr* (*estimated)", + "1979-08-24": "Eid al-Fitr Holiday* (*estimated)", + "1979-10-30": "Arafat* (*estimated)", + "1979-10-31": "Eid al-Adha* (*estimated)", + "1979-11-01": "Eid al-Adha Holiday* (*estimated)", + "1979-11-20": "Islamic New Year* (*estimated)", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-01-30": "Prophet Muhammad's Birthday* (*estimated)", + "1980-05-01": "Labor Day", + "1980-06-10": "Isra and Miraj* (*estimated)", + "1980-06-27": "Independence Day", + "1980-06-28": "Independence Day Holiday", + "1980-08-12": "Eid al-Fitr* (*estimated)", + "1980-08-13": "Eid al-Fitr Holiday* (*estimated)", + "1980-10-18": "Arafat* (*estimated)", + "1980-10-19": "Eid al-Adha* (*estimated)", + "1980-10-20": "Eid al-Adha Holiday* (*estimated)", + "1980-11-09": "Islamic New Year* (*estimated)", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-01-18": "Prophet Muhammad's Birthday* (*estimated)", + "1981-05-01": "Labor Day", + "1981-05-31": "Isra and Miraj* (*estimated)", + "1981-06-27": "Independence Day", + "1981-06-28": "Independence Day Holiday", + "1981-08-01": "Eid al-Fitr* (*estimated)", + "1981-08-02": "Eid al-Fitr Holiday* (*estimated)", + "1981-10-07": "Arafat* (*estimated)", + "1981-10-08": "Eid al-Adha* (*estimated)", + "1981-10-09": "Eid al-Adha Holiday* (*estimated)", + "1981-10-28": "Islamic New Year* (*estimated)", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-01-07": "Prophet Muhammad's Birthday* (*estimated)", + "1982-05-01": "Labor Day", + "1982-05-20": "Isra and Miraj* (*estimated)", + "1982-06-27": "Independence Day", + "1982-06-28": "Independence Day Holiday", + "1982-07-21": "Eid al-Fitr* (*estimated)", + "1982-07-22": "Eid al-Fitr Holiday* (*estimated)", + "1982-09-26": "Arafat* (*estimated)", + "1982-09-27": "Eid al-Adha* (*estimated)", + "1982-09-28": "Eid al-Adha Holiday* (*estimated)", + "1982-10-18": "Islamic New Year* (*estimated)", + "1982-12-25": "Christmas Day", + "1982-12-27": "Prophet Muhammad's Birthday* (*estimated)", + "1983-01-01": "New Year's Day", + "1983-05-01": "Labor Day", + "1983-05-10": "Isra and Miraj* (*estimated)", + "1983-06-27": "Independence Day", + "1983-06-28": "Independence Day Holiday", + "1983-07-11": "Eid al-Fitr* (*estimated)", + "1983-07-12": "Eid al-Fitr Holiday* (*estimated)", + "1983-09-16": "Arafat* (*estimated)", + "1983-09-17": "Eid al-Adha* (*estimated)", + "1983-09-18": "Eid al-Adha Holiday* (*estimated)", + "1983-10-07": "Islamic New Year* (*estimated)", + "1983-12-16": "Prophet Muhammad's Birthday* (*estimated)", + "1983-12-25": "Christmas Day", + "1984-01-01": "New Year's Day", + "1984-04-28": "Isra and Miraj* (*estimated)", + "1984-05-01": "Labor Day", + "1984-06-27": "Independence Day", + "1984-06-28": "Independence Day Holiday", + "1984-06-30": "Eid al-Fitr* (*estimated)", + "1984-07-01": "Eid al-Fitr Holiday* (*estimated)", + "1984-09-04": "Arafat* (*estimated)", + "1984-09-05": "Eid al-Adha* (*estimated)", + "1984-09-06": "Eid al-Adha Holiday* (*estimated)", + "1984-09-26": "Islamic New Year* (*estimated)", + "1984-12-04": "Prophet Muhammad's Birthday* (*estimated)", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-04-17": "Isra and Miraj* (*estimated)", + "1985-05-01": "Labor Day", + "1985-06-19": "Eid al-Fitr* (*estimated)", + "1985-06-20": "Eid al-Fitr Holiday* (*estimated)", + "1985-06-27": "Independence Day", + "1985-06-28": "Independence Day Holiday", + "1985-08-25": "Arafat* (*estimated)", + "1985-08-26": "Eid al-Adha* (*estimated)", + "1985-08-27": "Eid al-Adha Holiday* (*estimated)", + "1985-09-15": "Islamic New Year* (*estimated)", + "1985-11-24": "Prophet Muhammad's Birthday* (*estimated)", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-04-06": "Isra and Miraj* (*estimated)", + "1986-05-01": "Labor Day", + "1986-06-08": "Eid al-Fitr* (*estimated)", + "1986-06-09": "Eid al-Fitr Holiday* (*estimated)", + "1986-06-27": "Independence Day", + "1986-06-28": "Independence Day Holiday", + "1986-08-14": "Arafat* (*estimated)", + "1986-08-15": "Eid al-Adha* (*estimated)", + "1986-08-16": "Eid al-Adha Holiday* (*estimated)", + "1986-09-05": "Islamic New Year* (*estimated)", + "1986-11-14": "Prophet Muhammad's Birthday* (*estimated)", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-03-27": "Isra and Miraj* (*estimated)", + "1987-05-01": "Labor Day", + "1987-05-28": "Eid al-Fitr* (*estimated)", + "1987-05-29": "Eid al-Fitr Holiday* (*estimated)", + "1987-06-27": "Independence Day", + "1987-06-28": "Independence Day Holiday", + "1987-08-03": "Arafat* (*estimated)", + "1987-08-04": "Eid al-Adha* (*estimated)", + "1987-08-05": "Eid al-Adha Holiday* (*estimated)", + "1987-08-25": "Islamic New Year* (*estimated)", + "1987-11-03": "Prophet Muhammad's Birthday* (*estimated)", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-03-15": "Isra and Miraj* (*estimated)", + "1988-05-01": "Labor Day", + "1988-05-16": "Eid al-Fitr* (*estimated)", + "1988-05-17": "Eid al-Fitr Holiday* (*estimated)", + "1988-06-27": "Independence Day", + "1988-06-28": "Independence Day Holiday", + "1988-07-22": "Arafat* (*estimated)", + "1988-07-23": "Eid al-Adha* (*estimated)", + "1988-07-24": "Eid al-Adha Holiday* (*estimated)", + "1988-08-13": "Islamic New Year* (*estimated)", + "1988-10-22": "Prophet Muhammad's Birthday* (*estimated)", + "1988-12-25": "Christmas Day", + "1989-01-01": "New Year's Day", + "1989-03-05": "Isra and Miraj* (*estimated)", + "1989-05-01": "Labor Day", + "1989-05-06": "Eid al-Fitr* (*estimated)", + "1989-05-07": "Eid al-Fitr Holiday* (*estimated)", + "1989-06-27": "Independence Day", + "1989-06-28": "Independence Day Holiday", + "1989-07-12": "Arafat* (*estimated)", + "1989-07-13": "Eid al-Adha* (*estimated)", + "1989-07-14": "Eid al-Adha Holiday* (*estimated)", + "1989-08-02": "Islamic New Year* (*estimated)", + "1989-10-11": "Prophet Muhammad's Birthday* (*estimated)", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-02-22": "Isra and Miraj* (*estimated)", + "1990-04-26": "Eid al-Fitr* (*estimated)", + "1990-04-27": "Eid al-Fitr Holiday* (*estimated)", + "1990-05-01": "Labor Day", + "1990-06-27": "Independence Day", + "1990-06-28": "Independence Day Holiday", + "1990-07-01": "Arafat* (*estimated)", + "1990-07-02": "Eid al-Adha* (*estimated)", + "1990-07-03": "Eid al-Adha Holiday* (*estimated)", + "1990-07-23": "Islamic New Year* (*estimated)", + "1990-10-01": "Prophet Muhammad's Birthday* (*estimated)", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-02-11": "Isra and Miraj* (*estimated)", + "1991-04-15": "Eid al-Fitr* (*estimated)", + "1991-04-16": "Eid al-Fitr Holiday* (*estimated)", + "1991-05-01": "Labor Day", + "1991-06-21": "Arafat* (*estimated)", + "1991-06-22": "Eid al-Adha* (*estimated)", + "1991-06-23": "Eid al-Adha Holiday* (*estimated)", + "1991-06-27": "Independence Day", + "1991-06-28": "Independence Day Holiday", + "1991-07-12": "Islamic New Year* (*estimated)", + "1991-09-20": "Prophet Muhammad's Birthday* (*estimated)", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-01-31": "Isra and Miraj* (*estimated)", + "1992-04-04": "Eid al-Fitr* (*estimated)", + "1992-04-05": "Eid al-Fitr Holiday* (*estimated)", + "1992-05-01": "Labor Day", + "1992-06-10": "Arafat* (*estimated)", + "1992-06-11": "Eid al-Adha* (*estimated)", + "1992-06-12": "Eid al-Adha Holiday* (*estimated)", + "1992-06-27": "Independence Day", + "1992-06-28": "Independence Day Holiday", + "1992-07-01": "Islamic New Year* (*estimated)", + "1992-09-09": "Prophet Muhammad's Birthday* (*estimated)", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-01-20": "Isra and Miraj* (*estimated)", + "1993-03-24": "Eid al-Fitr* (*estimated)", + "1993-03-25": "Eid al-Fitr Holiday* (*estimated)", + "1993-05-01": "Labor Day", + "1993-05-30": "Arafat* (*estimated)", + "1993-05-31": "Eid al-Adha* (*estimated)", + "1993-06-01": "Eid al-Adha Holiday* (*estimated)", + "1993-06-21": "Islamic New Year* (*estimated)", + "1993-06-27": "Independence Day", + "1993-06-28": "Independence Day Holiday", + "1993-08-29": "Prophet Muhammad's Birthday* (*estimated)", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-01-09": "Isra and Miraj* (*estimated)", + "1994-03-13": "Eid al-Fitr* (*estimated)", + "1994-03-14": "Eid al-Fitr Holiday* (*estimated)", + "1994-05-01": "Labor Day", + "1994-05-19": "Arafat* (*estimated)", + "1994-05-20": "Eid al-Adha* (*estimated)", + "1994-05-21": "Eid al-Adha Holiday* (*estimated)", + "1994-06-10": "Islamic New Year* (*estimated)", + "1994-06-27": "Independence Day", + "1994-06-28": "Independence Day Holiday", + "1994-08-19": "Prophet Muhammad's Birthday* (*estimated)", + "1994-12-25": "Christmas Day", + "1994-12-29": "Isra and Miraj* (*estimated)", + "1995-01-01": "New Year's Day", + "1995-03-02": "Eid al-Fitr* (*estimated)", + "1995-03-03": "Eid al-Fitr Holiday* (*estimated)", + "1995-05-01": "Labor Day", + "1995-05-08": "Arafat* (*estimated)", + "1995-05-09": "Eid al-Adha* (*estimated)", + "1995-05-10": "Eid al-Adha Holiday* (*estimated)", + "1995-05-30": "Islamic New Year* (*estimated)", + "1995-06-27": "Independence Day", + "1995-06-28": "Independence Day Holiday", + "1995-08-08": "Prophet Muhammad's Birthday* (*estimated)", + "1995-12-19": "Isra and Miraj* (*estimated)", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-02-19": "Eid al-Fitr* (*estimated)", + "1996-02-20": "Eid al-Fitr Holiday* (*estimated)", + "1996-04-26": "Arafat* (*estimated)", + "1996-04-27": "Eid al-Adha* (*estimated)", + "1996-04-28": "Eid al-Adha Holiday* (*estimated)", + "1996-05-01": "Labor Day", + "1996-05-18": "Islamic New Year* (*estimated)", + "1996-06-27": "Independence Day", + "1996-06-28": "Independence Day Holiday", + "1996-07-27": "Prophet Muhammad's Birthday* (*estimated)", + "1996-12-08": "Isra and Miraj* (*estimated)", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-02-08": "Eid al-Fitr* (*estimated)", + "1997-02-09": "Eid al-Fitr Holiday* (*estimated)", + "1997-04-16": "Arafat* (*estimated)", + "1997-04-17": "Eid al-Adha* (*estimated)", + "1997-04-18": "Eid al-Adha Holiday* (*estimated)", + "1997-05-01": "Labor Day", + "1997-05-07": "Islamic New Year* (*estimated)", + "1997-06-27": "Independence Day", + "1997-06-28": "Independence Day Holiday", + "1997-07-16": "Prophet Muhammad's Birthday* (*estimated)", + "1997-11-27": "Isra and Miraj* (*estimated)", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-01-29": "Eid al-Fitr* (*estimated)", + "1998-01-30": "Eid al-Fitr Holiday* (*estimated)", + "1998-04-06": "Arafat* (*estimated)", + "1998-04-07": "Eid al-Adha* (*estimated)", + "1998-04-08": "Eid al-Adha Holiday* (*estimated)", + "1998-04-27": "Islamic New Year* (*estimated)", + "1998-05-01": "Labor Day", + "1998-06-27": "Independence Day", + "1998-06-28": "Independence Day Holiday", + "1998-07-06": "Prophet Muhammad's Birthday* (*estimated)", + "1998-11-16": "Isra and Miraj* (*estimated)", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-01-18": "Eid al-Fitr* (*estimated)", + "1999-01-19": "Eid al-Fitr Holiday* (*estimated)", + "1999-03-26": "Arafat* (*estimated)", + "1999-03-27": "Eid al-Adha* (*estimated)", + "1999-03-28": "Eid al-Adha Holiday* (*estimated)", + "1999-04-17": "Islamic New Year* (*estimated)", + "1999-05-01": "Labor Day", + "1999-06-26": "Prophet Muhammad's Birthday* (*estimated)", + "1999-06-27": "Independence Day", + "1999-06-28": "Independence Day Holiday", + "1999-11-05": "Isra and Miraj* (*estimated)", + "1999-12-25": "Christmas Day", + "2000-01-01": "New Year's Day", + "2000-01-08": "Eid al-Fitr* (*estimated)", + "2000-01-09": "Eid al-Fitr Holiday* (*estimated)", + "2000-03-15": "Arafat* (*estimated)", + "2000-03-16": "Eid al-Adha* (*estimated)", + "2000-03-17": "Eid al-Adha Holiday* (*estimated)", + "2000-04-06": "Islamic New Year* (*estimated)", + "2000-05-01": "Labor Day", + "2000-06-14": "Prophet Muhammad's Birthday* (*estimated)", + "2000-06-27": "Independence Day", + "2000-06-28": "Independence Day Holiday", + "2000-10-24": "Isra and Miraj* (*estimated)", + "2000-12-25": "Christmas Day", + "2000-12-27": "Eid al-Fitr* (*estimated)", + "2000-12-28": "Eid al-Fitr Holiday* (*estimated)", + "2001-01-01": "New Year's Day", + "2001-03-04": "Arafat* (*estimated)", + "2001-03-05": "Eid al-Adha* (*estimated)", + "2001-03-06": "Eid al-Adha Holiday* (*estimated)", + "2001-03-26": "Islamic New Year* (*estimated)", + "2001-05-01": "Labor Day", + "2001-06-04": "Prophet Muhammad's Birthday* (*estimated)", + "2001-06-27": "Independence Day", + "2001-06-28": "Independence Day Holiday", + "2001-10-14": "Isra and Miraj* (*estimated)", + "2001-12-16": "Eid al-Fitr* (*estimated)", + "2001-12-17": "Eid al-Fitr Holiday* (*estimated)", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-02-21": "Arafat* (*estimated)", + "2002-02-22": "Eid al-Adha* (*estimated)", + "2002-02-23": "Eid al-Adha Holiday* (*estimated)", + "2002-03-15": "Islamic New Year* (*estimated)", + "2002-05-01": "Labor Day", + "2002-05-24": "Prophet Muhammad's Birthday* (*estimated)", + "2002-06-27": "Independence Day", + "2002-06-28": "Independence Day Holiday", + "2002-10-04": "Isra and Miraj* (*estimated)", + "2002-12-05": "Eid al-Fitr* (*estimated)", + "2002-12-06": "Eid al-Fitr Holiday* (*estimated)", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-02-10": "Arafat* (*estimated)", + "2003-02-11": "Eid al-Adha* (*estimated)", + "2003-02-12": "Eid al-Adha Holiday* (*estimated)", + "2003-03-04": "Islamic New Year* (*estimated)", + "2003-05-01": "Labor Day", + "2003-05-13": "Prophet Muhammad's Birthday* (*estimated)", + "2003-06-27": "Independence Day", + "2003-06-28": "Independence Day Holiday", + "2003-09-24": "Isra and Miraj* (*estimated)", + "2003-11-25": "Eid al-Fitr* (*estimated)", + "2003-11-26": "Eid al-Fitr Holiday* (*estimated)", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-01-31": "Arafat* (*estimated)", + "2004-02-01": "Eid al-Adha* (*estimated)", + "2004-02-02": "Eid al-Adha Holiday* (*estimated)", + "2004-02-21": "Islamic New Year* (*estimated)", + "2004-05-01": "Labor Day; Prophet Muhammad's Birthday* (*estimated)", + "2004-06-27": "Independence Day", + "2004-06-28": "Independence Day Holiday", + "2004-09-12": "Isra and Miraj* (*estimated)", + "2004-11-14": "Eid al-Fitr* (*estimated)", + "2004-11-15": "Eid al-Fitr Holiday* (*estimated)", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-01-20": "Arafat* (*estimated)", + "2005-01-21": "Eid al-Adha* (*estimated)", + "2005-01-22": "Eid al-Adha Holiday* (*estimated)", + "2005-02-10": "Islamic New Year* (*estimated)", + "2005-04-21": "Prophet Muhammad's Birthday* (*estimated)", + "2005-05-01": "Labor Day", + "2005-06-27": "Independence Day", + "2005-06-28": "Independence Day Holiday", + "2005-09-01": "Isra and Miraj* (*estimated)", + "2005-11-03": "Eid al-Fitr* (*estimated)", + "2005-11-04": "Eid al-Fitr Holiday* (*estimated)", + "2005-12-25": "Christmas Day", + "2006-01-01": "New Year's Day", + "2006-01-09": "Arafat* (*estimated)", + "2006-01-10": "Eid al-Adha* (*estimated)", + "2006-01-11": "Eid al-Adha Holiday* (*estimated)", + "2006-01-31": "Islamic New Year* (*estimated)", + "2006-04-10": "Prophet Muhammad's Birthday* (*estimated)", + "2006-05-01": "Labor Day", + "2006-06-27": "Independence Day", + "2006-06-28": "Independence Day Holiday", + "2006-08-21": "Isra and Miraj* (*estimated)", + "2006-10-23": "Eid al-Fitr* (*estimated)", + "2006-10-24": "Eid al-Fitr Holiday* (*estimated)", + "2006-12-25": "Christmas Day", + "2006-12-30": "Arafat* (*estimated)", + "2006-12-31": "Eid al-Adha* (*estimated)", + "2007-01-01": "Eid al-Adha Holiday* (*estimated); New Year's Day", + "2007-01-20": "Islamic New Year* (*estimated)", + "2007-03-31": "Prophet Muhammad's Birthday* (*estimated)", + "2007-05-01": "Labor Day", + "2007-06-27": "Independence Day", + "2007-06-28": "Independence Day Holiday", + "2007-08-10": "Isra and Miraj* (*estimated)", + "2007-10-13": "Eid al-Fitr* (*estimated)", + "2007-10-14": "Eid al-Fitr Holiday* (*estimated)", + "2007-12-19": "Arafat* (*estimated)", + "2007-12-20": "Eid al-Adha* (*estimated)", + "2007-12-21": "Eid al-Adha Holiday* (*estimated)", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-01-10": "Islamic New Year* (*estimated)", + "2008-03-20": "Prophet Muhammad's Birthday* (*estimated)", + "2008-05-01": "Labor Day", + "2008-06-27": "Independence Day", + "2008-06-28": "Independence Day Holiday", + "2008-07-30": "Isra and Miraj* (*estimated)", + "2008-10-01": "Eid al-Fitr* (*estimated)", + "2008-10-02": "Eid al-Fitr Holiday* (*estimated)", + "2008-12-07": "Arafat* (*estimated)", + "2008-12-08": "Eid al-Adha* (*estimated)", + "2008-12-09": "Eid al-Adha Holiday* (*estimated)", + "2008-12-25": "Christmas Day", + "2008-12-29": "Islamic New Year* (*estimated)", + "2009-01-01": "New Year's Day", + "2009-03-09": "Prophet Muhammad's Birthday* (*estimated)", + "2009-05-01": "Labor Day", + "2009-06-27": "Independence Day", + "2009-06-28": "Independence Day Holiday", + "2009-07-20": "Isra and Miraj* (*estimated)", + "2009-09-20": "Eid al-Fitr* (*estimated)", + "2009-09-21": "Eid al-Fitr Holiday* (*estimated)", + "2009-11-26": "Arafat* (*estimated)", + "2009-11-27": "Eid al-Adha* (*estimated)", + "2009-11-28": "Eid al-Adha Holiday* (*estimated)", + "2009-12-18": "Islamic New Year* (*estimated)", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-02-26": "Prophet Muhammad's Birthday* (*estimated)", + "2010-05-01": "Labor Day", + "2010-06-27": "Independence Day", + "2010-06-28": "Independence Day Holiday", + "2010-07-09": "Isra and Miraj* (*estimated)", + "2010-09-10": "Eid al-Fitr* (*estimated)", + "2010-09-11": "Eid al-Fitr Holiday* (*estimated)", + "2010-11-15": "Arafat* (*estimated)", + "2010-11-16": "Eid al-Adha* (*estimated)", + "2010-11-17": "Eid al-Adha Holiday* (*estimated)", + "2010-12-07": "Islamic New Year* (*estimated)", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-02-15": "Prophet Muhammad's Birthday* (*estimated)", + "2011-05-01": "Labor Day", + "2011-06-27": "Independence Day", + "2011-06-28": "Independence Day Holiday", + "2011-06-29": "Isra and Miraj* (*estimated)", + "2011-08-30": "Eid al-Fitr* (*estimated)", + "2011-08-31": "Eid al-Fitr Holiday* (*estimated)", + "2011-11-05": "Arafat* (*estimated)", + "2011-11-06": "Eid al-Adha* (*estimated)", + "2011-11-07": "Eid al-Adha Holiday* (*estimated)", + "2011-11-26": "Islamic New Year* (*estimated)", + "2011-12-25": "Christmas Day", + "2012-01-01": "New Year's Day", + "2012-02-04": "Prophet Muhammad's Birthday* (*estimated)", + "2012-05-01": "Labor Day", + "2012-06-17": "Isra and Miraj* (*estimated)", + "2012-06-27": "Independence Day", + "2012-06-28": "Independence Day Holiday", + "2012-08-19": "Eid al-Fitr* (*estimated)", + "2012-08-20": "Eid al-Fitr Holiday* (*estimated)", + "2012-10-25": "Arafat* (*estimated)", + "2012-10-26": "Eid al-Adha* (*estimated)", + "2012-10-27": "Eid al-Adha Holiday* (*estimated)", + "2012-11-15": "Islamic New Year* (*estimated)", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-01-24": "Prophet Muhammad's Birthday* (*estimated)", + "2013-05-01": "Labor Day", + "2013-06-06": "Isra and Miraj* (*estimated)", + "2013-06-27": "Independence Day", + "2013-06-28": "Independence Day Holiday", + "2013-08-08": "Eid al-Fitr* (*estimated)", + "2013-08-09": "Eid al-Fitr Holiday* (*estimated)", + "2013-10-14": "Arafat* (*estimated)", + "2013-10-15": "Eid al-Adha* (*estimated)", + "2013-10-16": "Eid al-Adha Holiday* (*estimated)", + "2013-11-04": "Islamic New Year* (*estimated)", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-13": "Prophet Muhammad's Birthday* (*estimated)", + "2014-05-01": "Labor Day", + "2014-05-26": "Isra and Miraj* (*estimated)", + "2014-06-27": "Independence Day", + "2014-06-28": "Independence Day Holiday", + "2014-07-28": "Eid al-Fitr* (*estimated)", + "2014-07-29": "Eid al-Fitr Holiday* (*estimated)", + "2014-10-03": "Arafat* (*estimated)", + "2014-10-04": "Eid al-Adha* (*estimated)", + "2014-10-05": "Eid al-Adha Holiday* (*estimated)", + "2014-10-25": "Islamic New Year* (*estimated)", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-01-03": "Prophet Muhammad's Birthday* (*estimated)", + "2015-05-01": "Labor Day", + "2015-05-16": "Isra and Miraj* (*estimated)", + "2015-06-27": "Independence Day", + "2015-06-28": "Independence Day Holiday", + "2015-07-17": "Eid al-Fitr* (*estimated)", + "2015-07-18": "Eid al-Fitr Holiday* (*estimated)", + "2015-09-22": "Arafat* (*estimated)", + "2015-09-23": "Eid al-Adha* (*estimated)", + "2015-09-24": "Eid al-Adha Holiday* (*estimated)", + "2015-10-14": "Islamic New Year* (*estimated)", + "2015-12-23": "Prophet Muhammad's Birthday* (*estimated)", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-05-01": "Labor Day", + "2016-05-04": "Isra and Miraj* (*estimated)", + "2016-06-27": "Independence Day", + "2016-06-28": "Independence Day Holiday", + "2016-07-06": "Eid al-Fitr* (*estimated)", + "2016-07-07": "Eid al-Fitr Holiday* (*estimated)", + "2016-09-10": "Arafat* (*estimated)", + "2016-09-11": "Eid al-Adha* (*estimated)", + "2016-09-12": "Eid al-Adha Holiday* (*estimated)", + "2016-10-02": "Islamic New Year* (*estimated)", + "2016-12-11": "Prophet Muhammad's Birthday* (*estimated)", + "2016-12-25": "Christmas Day", + "2017-01-01": "New Year's Day", + "2017-04-24": "Isra and Miraj* (*estimated)", + "2017-05-01": "Labor Day", + "2017-06-25": "Eid al-Fitr* (*estimated)", + "2017-06-26": "Eid al-Fitr Holiday* (*estimated)", + "2017-06-27": "Independence Day", + "2017-06-28": "Independence Day Holiday", + "2017-08-31": "Arafat* (*estimated)", + "2017-09-01": "Eid al-Adha* (*estimated)", + "2017-09-02": "Eid al-Adha Holiday* (*estimated)", + "2017-09-21": "Islamic New Year* (*estimated)", + "2017-11-30": "Prophet Muhammad's Birthday* (*estimated)", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-04-13": "Isra and Miraj* (*estimated)", + "2018-05-01": "Labor Day", + "2018-06-15": "Eid al-Fitr* (*estimated)", + "2018-06-16": "Eid al-Fitr Holiday* (*estimated)", + "2018-06-27": "Independence Day", + "2018-06-28": "Independence Day Holiday", + "2018-08-20": "Arafat* (*estimated)", + "2018-08-21": "Eid al-Adha* (*estimated)", + "2018-08-22": "Eid al-Adha Holiday* (*estimated)", + "2018-09-11": "Islamic New Year* (*estimated)", + "2018-11-20": "Prophet Muhammad's Birthday* (*estimated)", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-04-03": "Isra and Miraj* (*estimated)", + "2019-05-01": "Labor Day", + "2019-06-04": "Eid al-Fitr* (*estimated)", + "2019-06-05": "Eid al-Fitr Holiday* (*estimated)", + "2019-06-27": "Independence Day", + "2019-06-28": "Independence Day Holiday", + "2019-08-10": "Arafat* (*estimated)", + "2019-08-11": "Eid al-Adha* (*estimated)", + "2019-08-12": "Eid al-Adha Holiday* (*estimated)", + "2019-08-31": "Islamic New Year* (*estimated)", + "2019-11-09": "Prophet Muhammad's Birthday* (*estimated)", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-03-22": "Isra and Miraj* (*estimated)", + "2020-05-01": "Labor Day", + "2020-05-24": "Eid al-Fitr* (*estimated)", + "2020-05-25": "Eid al-Fitr Holiday* (*estimated)", + "2020-06-27": "Independence Day", + "2020-06-28": "Independence Day Holiday", + "2020-07-30": "Arafat* (*estimated)", + "2020-07-31": "Eid al-Adha* (*estimated)", + "2020-08-01": "Eid al-Adha Holiday* (*estimated)", + "2020-08-20": "Islamic New Year* (*estimated)", + "2020-10-29": "Prophet Muhammad's Birthday* (*estimated)", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-03-11": "Isra and Miraj* (*estimated)", + "2021-05-01": "Labor Day", + "2021-05-13": "Eid al-Fitr* (*estimated)", + "2021-05-14": "Eid al-Fitr Holiday* (*estimated)", + "2021-06-27": "Independence Day", + "2021-06-28": "Independence Day Holiday", + "2021-07-19": "Arafat* (*estimated)", + "2021-07-20": "Eid al-Adha* (*estimated)", + "2021-07-21": "Eid al-Adha Holiday* (*estimated)", + "2021-08-09": "Islamic New Year* (*estimated)", + "2021-10-18": "Prophet Muhammad's Birthday* (*estimated)", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-02-28": "Isra and Miraj* (*estimated)", + "2022-05-01": "Labor Day", + "2022-05-02": "Eid al-Fitr* (*estimated)", + "2022-05-03": "Eid al-Fitr Holiday* (*estimated)", + "2022-06-27": "Independence Day", + "2022-06-28": "Independence Day Holiday", + "2022-07-08": "Arafat* (*estimated)", + "2022-07-09": "Eid al-Adha* (*estimated)", + "2022-07-10": "Eid al-Adha Holiday* (*estimated)", + "2022-07-30": "Islamic New Year* (*estimated)", + "2022-10-08": "Prophet Muhammad's Birthday* (*estimated)", + "2022-12-25": "Christmas Day", + "2023-01-01": "New Year's Day", + "2023-02-18": "Isra and Miraj* (*estimated)", + "2023-04-21": "Eid al-Fitr* (*estimated)", + "2023-04-22": "Eid al-Fitr Holiday* (*estimated)", + "2023-05-01": "Labor Day", + "2023-06-27": "Arafat* (*estimated); Independence Day", + "2023-06-28": "Eid al-Adha* (*estimated); Independence Day Holiday", + "2023-06-29": "Eid al-Adha Holiday* (*estimated)", + "2023-07-19": "Islamic New Year* (*estimated)", + "2023-09-27": "Prophet Muhammad's Birthday* (*estimated)", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-02-08": "Isra and Miraj* (*estimated)", + "2024-04-10": "Eid al-Fitr* (*estimated)", + "2024-04-11": "Eid al-Fitr Holiday* (*estimated)", + "2024-05-01": "Labor Day", + "2024-06-15": "Arafat* (*estimated)", + "2024-06-16": "Eid al-Adha* (*estimated)", + "2024-06-17": "Eid al-Adha Holiday* (*estimated)", + "2024-06-27": "Independence Day", + "2024-06-28": "Independence Day Holiday", + "2024-07-07": "Islamic New Year* (*estimated)", + "2024-09-15": "Prophet Muhammad's Birthday* (*estimated)", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-01-27": "Isra and Miraj* (*estimated)", + "2025-03-30": "Eid al-Fitr* (*estimated)", + "2025-03-31": "Eid al-Fitr Holiday* (*estimated)", + "2025-05-01": "Labor Day", + "2025-06-05": "Arafat* (*estimated)", + "2025-06-06": "Eid al-Adha* (*estimated)", + "2025-06-07": "Eid al-Adha Holiday* (*estimated)", + "2025-06-26": "Islamic New Year* (*estimated)", + "2025-06-27": "Independence Day", + "2025-06-28": "Independence Day Holiday", + "2025-09-04": "Prophet Muhammad's Birthday* (*estimated)", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-01-16": "Isra and Miraj* (*estimated)", + "2026-03-20": "Eid al-Fitr* (*estimated)", + "2026-03-21": "Eid al-Fitr Holiday* (*estimated)", + "2026-05-01": "Labor Day", + "2026-05-26": "Arafat* (*estimated)", + "2026-05-27": "Eid al-Adha* (*estimated)", + "2026-05-28": "Eid al-Adha Holiday* (*estimated)", + "2026-06-16": "Islamic New Year* (*estimated)", + "2026-06-27": "Independence Day", + "2026-06-28": "Independence Day Holiday", + "2026-08-25": "Prophet Muhammad's Birthday* (*estimated)", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-01-05": "Isra and Miraj* (*estimated)", + "2027-03-09": "Eid al-Fitr* (*estimated)", + "2027-03-10": "Eid al-Fitr Holiday* (*estimated)", + "2027-05-01": "Labor Day", + "2027-05-15": "Arafat* (*estimated)", + "2027-05-16": "Eid al-Adha* (*estimated)", + "2027-05-17": "Eid al-Adha Holiday* (*estimated)", + "2027-06-06": "Islamic New Year* (*estimated)", + "2027-06-27": "Independence Day", + "2027-06-28": "Independence Day Holiday", + "2027-08-14": "Prophet Muhammad's Birthday* (*estimated)", + "2027-12-25": "Christmas Day; Isra and Miraj* (*estimated)", + "2028-01-01": "New Year's Day", + "2028-02-26": "Eid al-Fitr* (*estimated)", + "2028-02-27": "Eid al-Fitr Holiday* (*estimated)", + "2028-05-01": "Labor Day", + "2028-05-04": "Arafat* (*estimated)", + "2028-05-05": "Eid al-Adha* (*estimated)", + "2028-05-06": "Eid al-Adha Holiday* (*estimated)", + "2028-05-25": "Islamic New Year* (*estimated)", + "2028-06-27": "Independence Day", + "2028-06-28": "Independence Day Holiday", + "2028-08-03": "Prophet Muhammad's Birthday* (*estimated)", + "2028-12-14": "Isra and Miraj* (*estimated)", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-02-14": "Eid al-Fitr* (*estimated)", + "2029-02-15": "Eid al-Fitr Holiday* (*estimated)", + "2029-04-23": "Arafat* (*estimated)", + "2029-04-24": "Eid al-Adha* (*estimated)", + "2029-04-25": "Eid al-Adha Holiday* (*estimated)", + "2029-05-01": "Labor Day", + "2029-05-14": "Islamic New Year* (*estimated)", + "2029-06-27": "Independence Day", + "2029-06-28": "Independence Day Holiday", + "2029-07-24": "Prophet Muhammad's Birthday* (*estimated)", + "2029-12-03": "Isra and Miraj* (*estimated)", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-02-04": "Eid al-Fitr* (*estimated)", + "2030-02-05": "Eid al-Fitr Holiday* (*estimated)", + "2030-04-12": "Arafat* (*estimated)", + "2030-04-13": "Eid al-Adha* (*estimated)", + "2030-04-14": "Eid al-Adha Holiday* (*estimated)", + "2030-05-01": "Labor Day", + "2030-05-03": "Islamic New Year* (*estimated)", + "2030-06-27": "Independence Day", + "2030-06-28": "Independence Day Holiday", + "2030-07-13": "Prophet Muhammad's Birthday* (*estimated)", + "2030-11-23": "Isra and Miraj* (*estimated)", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-01-24": "Eid al-Fitr* (*estimated)", + "2031-01-25": "Eid al-Fitr Holiday* (*estimated)", + "2031-04-01": "Arafat* (*estimated)", + "2031-04-02": "Eid al-Adha* (*estimated)", + "2031-04-03": "Eid al-Adha Holiday* (*estimated)", + "2031-04-23": "Islamic New Year* (*estimated)", + "2031-05-01": "Labor Day", + "2031-06-27": "Independence Day", + "2031-06-28": "Independence Day Holiday", + "2031-07-02": "Prophet Muhammad's Birthday* (*estimated)", + "2031-11-12": "Isra and Miraj* (*estimated)", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-01-14": "Eid al-Fitr* (*estimated)", + "2032-01-15": "Eid al-Fitr Holiday* (*estimated)", + "2032-03-21": "Arafat* (*estimated)", + "2032-03-22": "Eid al-Adha* (*estimated)", + "2032-03-23": "Eid al-Adha Holiday* (*estimated)", + "2032-04-11": "Islamic New Year* (*estimated)", + "2032-05-01": "Labor Day", + "2032-06-20": "Prophet Muhammad's Birthday* (*estimated)", + "2032-06-27": "Independence Day", + "2032-06-28": "Independence Day Holiday", + "2032-11-01": "Isra and Miraj* (*estimated)", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "Eid al-Fitr* (*estimated)", + "2033-01-03": "Eid al-Fitr Holiday* (*estimated)", + "2033-03-10": "Arafat* (*estimated)", + "2033-03-11": "Eid al-Adha* (*estimated)", + "2033-03-12": "Eid al-Adha Holiday* (*estimated)", + "2033-04-01": "Islamic New Year* (*estimated)", + "2033-05-01": "Labor Day", + "2033-06-09": "Prophet Muhammad's Birthday* (*estimated)", + "2033-06-27": "Independence Day", + "2033-06-28": "Independence Day Holiday", + "2033-10-21": "Isra and Miraj* (*estimated)", + "2033-12-23": "Eid al-Fitr* (*estimated)", + "2033-12-24": "Eid al-Fitr Holiday* (*estimated)", + "2033-12-25": "Christmas Day", + "2034-01-01": "New Year's Day", + "2034-02-28": "Arafat* (*estimated)", + "2034-03-01": "Eid al-Adha* (*estimated)", + "2034-03-02": "Eid al-Adha Holiday* (*estimated)", + "2034-03-21": "Islamic New Year* (*estimated)", + "2034-05-01": "Labor Day", + "2034-05-30": "Prophet Muhammad's Birthday* (*estimated)", + "2034-06-27": "Independence Day", + "2034-06-28": "Independence Day Holiday", + "2034-10-10": "Isra and Miraj* (*estimated)", + "2034-12-12": "Eid al-Fitr* (*estimated)", + "2034-12-13": "Eid al-Fitr Holiday* (*estimated)", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-02-17": "Arafat* (*estimated)", + "2035-02-18": "Eid al-Adha* (*estimated)", + "2035-02-19": "Eid al-Adha Holiday* (*estimated)", + "2035-03-11": "Islamic New Year* (*estimated)", + "2035-05-01": "Labor Day", + "2035-05-20": "Prophet Muhammad's Birthday* (*estimated)", + "2035-06-27": "Independence Day", + "2035-06-28": "Independence Day Holiday", + "2035-09-29": "Isra and Miraj* (*estimated)", + "2035-12-01": "Eid al-Fitr* (*estimated)", + "2035-12-02": "Eid al-Fitr Holiday* (*estimated)", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-02-06": "Arafat* (*estimated)", + "2036-02-07": "Eid al-Adha* (*estimated)", + "2036-02-08": "Eid al-Adha Holiday* (*estimated)", + "2036-02-28": "Islamic New Year* (*estimated)", + "2036-05-01": "Labor Day", + "2036-05-08": "Prophet Muhammad's Birthday* (*estimated)", + "2036-06-27": "Independence Day", + "2036-06-28": "Independence Day Holiday", + "2036-09-18": "Isra and Miraj* (*estimated)", + "2036-11-19": "Eid al-Fitr* (*estimated)", + "2036-11-20": "Eid al-Fitr Holiday* (*estimated)", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-25": "Arafat* (*estimated)", + "2037-01-26": "Eid al-Adha* (*estimated)", + "2037-01-27": "Eid al-Adha Holiday* (*estimated)", + "2037-02-16": "Islamic New Year* (*estimated)", + "2037-04-28": "Prophet Muhammad's Birthday* (*estimated)", + "2037-05-01": "Labor Day", + "2037-06-27": "Independence Day", + "2037-06-28": "Independence Day Holiday", + "2037-09-07": "Isra and Miraj* (*estimated)", + "2037-11-08": "Eid al-Fitr* (*estimated)", + "2037-11-09": "Eid al-Fitr Holiday* (*estimated)", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-01-15": "Arafat* (*estimated)", + "2038-01-16": "Eid al-Adha* (*estimated)", + "2038-01-17": "Eid al-Adha Holiday* (*estimated)", + "2038-02-05": "Islamic New Year* (*estimated)", + "2038-04-17": "Prophet Muhammad's Birthday* (*estimated)", + "2038-05-01": "Labor Day", + "2038-06-27": "Independence Day", + "2038-06-28": "Independence Day Holiday", + "2038-08-28": "Isra and Miraj* (*estimated)", + "2038-10-29": "Eid al-Fitr* (*estimated)", + "2038-10-30": "Eid al-Fitr Holiday* (*estimated)", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-01-04": "Arafat* (*estimated)", + "2039-01-05": "Eid al-Adha* (*estimated)", + "2039-01-06": "Eid al-Adha Holiday* (*estimated)", + "2039-01-26": "Islamic New Year* (*estimated)", + "2039-04-06": "Prophet Muhammad's Birthday* (*estimated)", + "2039-05-01": "Labor Day", + "2039-06-27": "Independence Day", + "2039-06-28": "Independence Day Holiday", + "2039-08-17": "Isra and Miraj* (*estimated)", + "2039-10-19": "Eid al-Fitr* (*estimated)", + "2039-10-20": "Eid al-Fitr Holiday* (*estimated)", + "2039-12-25": "Arafat* (*estimated); Christmas Day", + "2039-12-26": "Eid al-Adha* (*estimated)", + "2039-12-27": "Eid al-Adha Holiday* (*estimated)", + "2040-01-01": "New Year's Day", + "2040-01-15": "Islamic New Year* (*estimated)", + "2040-03-25": "Prophet Muhammad's Birthday* (*estimated)", + "2040-05-01": "Labor Day", + "2040-06-27": "Independence Day", + "2040-06-28": "Independence Day Holiday", + "2040-08-05": "Isra and Miraj* (*estimated)", + "2040-10-07": "Eid al-Fitr* (*estimated)", + "2040-10-08": "Eid al-Fitr Holiday* (*estimated)", + "2040-12-13": "Arafat* (*estimated)", + "2040-12-14": "Eid al-Adha* (*estimated)", + "2040-12-15": "Eid al-Adha Holiday* (*estimated)", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-01-04": "Islamic New Year* (*estimated)", + "2041-03-15": "Prophet Muhammad's Birthday* (*estimated)", + "2041-05-01": "Labor Day", + "2041-06-27": "Independence Day", + "2041-06-28": "Independence Day Holiday", + "2041-07-25": "Isra and Miraj* (*estimated)", + "2041-09-26": "Eid al-Fitr* (*estimated)", + "2041-09-27": "Eid al-Fitr Holiday* (*estimated)", + "2041-12-03": "Arafat* (*estimated)", + "2041-12-04": "Eid al-Adha* (*estimated)", + "2041-12-05": "Eid al-Adha Holiday* (*estimated)", + "2041-12-24": "Islamic New Year* (*estimated)", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-03-04": "Prophet Muhammad's Birthday* (*estimated)", + "2042-05-01": "Labor Day", + "2042-06-27": "Independence Day", + "2042-06-28": "Independence Day Holiday", + "2042-07-15": "Isra and Miraj* (*estimated)", + "2042-09-15": "Eid al-Fitr* (*estimated)", + "2042-09-16": "Eid al-Fitr Holiday* (*estimated)", + "2042-11-22": "Arafat* (*estimated)", + "2042-11-23": "Eid al-Adha* (*estimated)", + "2042-11-24": "Eid al-Adha Holiday* (*estimated)", + "2042-12-14": "Islamic New Year* (*estimated)", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-02-22": "Prophet Muhammad's Birthday* (*estimated)", + "2043-05-01": "Labor Day", + "2043-06-27": "Independence Day", + "2043-06-28": "Independence Day Holiday", + "2043-07-04": "Isra and Miraj* (*estimated)", + "2043-09-04": "Eid al-Fitr* (*estimated)", + "2043-09-05": "Eid al-Fitr Holiday* (*estimated)", + "2043-11-11": "Arafat* (*estimated)", + "2043-11-12": "Eid al-Adha* (*estimated)", + "2043-11-13": "Eid al-Adha Holiday* (*estimated)", + "2043-12-03": "Islamic New Year* (*estimated)", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-02-11": "Prophet Muhammad's Birthday* (*estimated)", + "2044-05-01": "Labor Day", + "2044-06-23": "Isra and Miraj* (*estimated)", + "2044-06-27": "Independence Day", + "2044-06-28": "Independence Day Holiday", + "2044-08-24": "Eid al-Fitr* (*estimated)", + "2044-08-25": "Eid al-Fitr Holiday* (*estimated)", + "2044-10-30": "Arafat* (*estimated)", + "2044-10-31": "Eid al-Adha* (*estimated)", + "2044-11-01": "Eid al-Adha Holiday* (*estimated)", + "2044-11-21": "Islamic New Year* (*estimated)", + "2044-12-25": "Christmas Day", + "2045-01-01": "New Year's Day", + "2045-01-30": "Prophet Muhammad's Birthday* (*estimated)", + "2045-05-01": "Labor Day", + "2045-06-13": "Isra and Miraj* (*estimated)", + "2045-06-27": "Independence Day", + "2045-06-28": "Independence Day Holiday", + "2045-08-14": "Eid al-Fitr* (*estimated)", + "2045-08-15": "Eid al-Fitr Holiday* (*estimated)", + "2045-10-20": "Arafat* (*estimated)", + "2045-10-21": "Eid al-Adha* (*estimated)", + "2045-10-22": "Eid al-Adha Holiday* (*estimated)", + "2045-11-10": "Islamic New Year* (*estimated)", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-01-19": "Prophet Muhammad's Birthday* (*estimated)", + "2046-05-01": "Labor Day", + "2046-06-02": "Isra and Miraj* (*estimated)", + "2046-06-27": "Independence Day", + "2046-06-28": "Independence Day Holiday", + "2046-08-03": "Eid al-Fitr* (*estimated)", + "2046-08-04": "Eid al-Fitr Holiday* (*estimated)", + "2046-10-09": "Arafat* (*estimated)", + "2046-10-10": "Eid al-Adha* (*estimated)", + "2046-10-11": "Eid al-Adha Holiday* (*estimated)", + "2046-10-31": "Islamic New Year* (*estimated)", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-08": "Prophet Muhammad's Birthday* (*estimated)", + "2047-05-01": "Labor Day", + "2047-05-22": "Isra and Miraj* (*estimated)", + "2047-06-27": "Independence Day", + "2047-06-28": "Independence Day Holiday", + "2047-07-24": "Eid al-Fitr* (*estimated)", + "2047-07-25": "Eid al-Fitr Holiday* (*estimated)", + "2047-09-29": "Arafat* (*estimated)", + "2047-09-30": "Eid al-Adha* (*estimated)", + "2047-10-01": "Eid al-Adha Holiday* (*estimated)", + "2047-10-20": "Islamic New Year* (*estimated)", + "2047-12-25": "Christmas Day", + "2047-12-29": "Prophet Muhammad's Birthday* (*estimated)", + "2048-01-01": "New Year's Day", + "2048-05-01": "Labor Day", + "2048-05-10": "Isra and Miraj* (*estimated)", + "2048-06-27": "Independence Day", + "2048-06-28": "Independence Day Holiday", + "2048-07-12": "Eid al-Fitr* (*estimated)", + "2048-07-13": "Eid al-Fitr Holiday* (*estimated)", + "2048-09-18": "Arafat* (*estimated)", + "2048-09-19": "Eid al-Adha* (*estimated)", + "2048-09-20": "Eid al-Adha Holiday* (*estimated)", + "2048-10-09": "Islamic New Year* (*estimated)", + "2048-12-18": "Prophet Muhammad's Birthday* (*estimated)", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-04-29": "Isra and Miraj* (*estimated)", + "2049-05-01": "Labor Day", + "2049-06-27": "Independence Day", + "2049-06-28": "Independence Day Holiday", + "2049-07-01": "Eid al-Fitr* (*estimated)", + "2049-07-02": "Eid al-Fitr Holiday* (*estimated)", + "2049-09-07": "Arafat* (*estimated)", + "2049-09-08": "Eid al-Adha* (*estimated)", + "2049-09-09": "Eid al-Adha Holiday* (*estimated)", + "2049-09-28": "Islamic New Year* (*estimated)", + "2049-12-07": "Prophet Muhammad's Birthday* (*estimated)", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-04-19": "Isra and Miraj* (*estimated)", + "2050-05-01": "Labor Day", + "2050-06-20": "Eid al-Fitr* (*estimated)", + "2050-06-21": "Eid al-Fitr Holiday* (*estimated)", + "2050-06-27": "Independence Day", + "2050-06-28": "Independence Day Holiday", + "2050-08-27": "Arafat* (*estimated)", + "2050-08-28": "Eid al-Adha* (*estimated)", + "2050-08-29": "Eid al-Adha Holiday* (*estimated)", + "2050-09-17": "Islamic New Year* (*estimated)", + "2050-11-26": "Prophet Muhammad's Birthday* (*estimated)", + "2050-12-25": "Christmas Day" +} diff --git a/snapshots/countries/DK.json b/snapshots/countries/DK.json new file mode 100644 index 000000000..6e672a56d --- /dev/null +++ b/snapshots/countries/DK.json @@ -0,0 +1,1086 @@ +{ + "1950-01-01": "New Year's Day", + "1950-04-06": "Maundy Thursday", + "1950-04-07": "Good Friday", + "1950-04-09": "Easter Sunday", + "1950-04-10": "Easter Monday", + "1950-05-05": "Great Prayer Day", + "1950-05-18": "Ascension Day", + "1950-05-28": "Whit Sunday", + "1950-05-29": "Whit Monday", + "1950-12-25": "Christmas Day", + "1950-12-26": "Second Day of Christmas", + "1951-01-01": "New Year's Day", + "1951-03-22": "Maundy Thursday", + "1951-03-23": "Good Friday", + "1951-03-25": "Easter Sunday", + "1951-03-26": "Easter Monday", + "1951-04-20": "Great Prayer Day", + "1951-05-03": "Ascension Day", + "1951-05-13": "Whit Sunday", + "1951-05-14": "Whit Monday", + "1951-12-25": "Christmas Day", + "1951-12-26": "Second Day of Christmas", + "1952-01-01": "New Year's Day", + "1952-04-10": "Maundy Thursday", + "1952-04-11": "Good Friday", + "1952-04-13": "Easter Sunday", + "1952-04-14": "Easter Monday", + "1952-05-09": "Great Prayer Day", + "1952-05-22": "Ascension Day", + "1952-06-01": "Whit Sunday", + "1952-06-02": "Whit Monday", + "1952-12-25": "Christmas Day", + "1952-12-26": "Second Day of Christmas", + "1953-01-01": "New Year's Day", + "1953-04-02": "Maundy Thursday", + "1953-04-03": "Good Friday", + "1953-04-05": "Easter Sunday", + "1953-04-06": "Easter Monday", + "1953-05-01": "Great Prayer Day", + "1953-05-14": "Ascension Day", + "1953-05-24": "Whit Sunday", + "1953-05-25": "Whit Monday", + "1953-12-25": "Christmas Day", + "1953-12-26": "Second Day of Christmas", + "1954-01-01": "New Year's Day", + "1954-04-15": "Maundy Thursday", + "1954-04-16": "Good Friday", + "1954-04-18": "Easter Sunday", + "1954-04-19": "Easter Monday", + "1954-05-14": "Great Prayer Day", + "1954-05-27": "Ascension Day", + "1954-06-06": "Whit Sunday", + "1954-06-07": "Whit Monday", + "1954-12-25": "Christmas Day", + "1954-12-26": "Second Day of Christmas", + "1955-01-01": "New Year's Day", + "1955-04-07": "Maundy Thursday", + "1955-04-08": "Good Friday", + "1955-04-10": "Easter Sunday", + "1955-04-11": "Easter Monday", + "1955-05-06": "Great Prayer Day", + "1955-05-19": "Ascension Day", + "1955-05-29": "Whit Sunday", + "1955-05-30": "Whit Monday", + "1955-12-25": "Christmas Day", + "1955-12-26": "Second Day of Christmas", + "1956-01-01": "New Year's Day", + "1956-03-29": "Maundy Thursday", + "1956-03-30": "Good Friday", + "1956-04-01": "Easter Sunday", + "1956-04-02": "Easter Monday", + "1956-04-27": "Great Prayer Day", + "1956-05-10": "Ascension Day", + "1956-05-20": "Whit Sunday", + "1956-05-21": "Whit Monday", + "1956-12-25": "Christmas Day", + "1956-12-26": "Second Day of Christmas", + "1957-01-01": "New Year's Day", + "1957-04-18": "Maundy Thursday", + "1957-04-19": "Good Friday", + "1957-04-21": "Easter Sunday", + "1957-04-22": "Easter Monday", + "1957-05-17": "Great Prayer Day", + "1957-05-30": "Ascension Day", + "1957-06-09": "Whit Sunday", + "1957-06-10": "Whit Monday", + "1957-12-25": "Christmas Day", + "1957-12-26": "Second Day of Christmas", + "1958-01-01": "New Year's Day", + "1958-04-03": "Maundy Thursday", + "1958-04-04": "Good Friday", + "1958-04-06": "Easter Sunday", + "1958-04-07": "Easter Monday", + "1958-05-02": "Great Prayer Day", + "1958-05-15": "Ascension Day", + "1958-05-25": "Whit Sunday", + "1958-05-26": "Whit Monday", + "1958-12-25": "Christmas Day", + "1958-12-26": "Second Day of Christmas", + "1959-01-01": "New Year's Day", + "1959-03-26": "Maundy Thursday", + "1959-03-27": "Good Friday", + "1959-03-29": "Easter Sunday", + "1959-03-30": "Easter Monday", + "1959-04-24": "Great Prayer Day", + "1959-05-07": "Ascension Day", + "1959-05-17": "Whit Sunday", + "1959-05-18": "Whit Monday", + "1959-12-25": "Christmas Day", + "1959-12-26": "Second Day of Christmas", + "1960-01-01": "New Year's Day", + "1960-04-14": "Maundy Thursday", + "1960-04-15": "Good Friday", + "1960-04-17": "Easter Sunday", + "1960-04-18": "Easter Monday", + "1960-05-13": "Great Prayer Day", + "1960-05-26": "Ascension Day", + "1960-06-05": "Whit Sunday", + "1960-06-06": "Whit Monday", + "1960-12-25": "Christmas Day", + "1960-12-26": "Second Day of Christmas", + "1961-01-01": "New Year's Day", + "1961-03-30": "Maundy Thursday", + "1961-03-31": "Good Friday", + "1961-04-02": "Easter Sunday", + "1961-04-03": "Easter Monday", + "1961-04-28": "Great Prayer Day", + "1961-05-11": "Ascension Day", + "1961-05-21": "Whit Sunday", + "1961-05-22": "Whit Monday", + "1961-12-25": "Christmas Day", + "1961-12-26": "Second Day of Christmas", + "1962-01-01": "New Year's Day", + "1962-04-19": "Maundy Thursday", + "1962-04-20": "Good Friday", + "1962-04-22": "Easter Sunday", + "1962-04-23": "Easter Monday", + "1962-05-18": "Great Prayer Day", + "1962-05-31": "Ascension Day", + "1962-06-10": "Whit Sunday", + "1962-06-11": "Whit Monday", + "1962-12-25": "Christmas Day", + "1962-12-26": "Second Day of Christmas", + "1963-01-01": "New Year's Day", + "1963-04-11": "Maundy Thursday", + "1963-04-12": "Good Friday", + "1963-04-14": "Easter Sunday", + "1963-04-15": "Easter Monday", + "1963-05-10": "Great Prayer Day", + "1963-05-23": "Ascension Day", + "1963-06-02": "Whit Sunday", + "1963-06-03": "Whit Monday", + "1963-12-25": "Christmas Day", + "1963-12-26": "Second Day of Christmas", + "1964-01-01": "New Year's Day", + "1964-03-26": "Maundy Thursday", + "1964-03-27": "Good Friday", + "1964-03-29": "Easter Sunday", + "1964-03-30": "Easter Monday", + "1964-04-24": "Great Prayer Day", + "1964-05-07": "Ascension Day", + "1964-05-17": "Whit Sunday", + "1964-05-18": "Whit Monday", + "1964-12-25": "Christmas Day", + "1964-12-26": "Second Day of Christmas", + "1965-01-01": "New Year's Day", + "1965-04-15": "Maundy Thursday", + "1965-04-16": "Good Friday", + "1965-04-18": "Easter Sunday", + "1965-04-19": "Easter Monday", + "1965-05-14": "Great Prayer Day", + "1965-05-27": "Ascension Day", + "1965-06-06": "Whit Sunday", + "1965-06-07": "Whit Monday", + "1965-12-25": "Christmas Day", + "1965-12-26": "Second Day of Christmas", + "1966-01-01": "New Year's Day", + "1966-04-07": "Maundy Thursday", + "1966-04-08": "Good Friday", + "1966-04-10": "Easter Sunday", + "1966-04-11": "Easter Monday", + "1966-05-06": "Great Prayer Day", + "1966-05-19": "Ascension Day", + "1966-05-29": "Whit Sunday", + "1966-05-30": "Whit Monday", + "1966-12-25": "Christmas Day", + "1966-12-26": "Second Day of Christmas", + "1967-01-01": "New Year's Day", + "1967-03-23": "Maundy Thursday", + "1967-03-24": "Good Friday", + "1967-03-26": "Easter Sunday", + "1967-03-27": "Easter Monday", + "1967-04-21": "Great Prayer Day", + "1967-05-04": "Ascension Day", + "1967-05-14": "Whit Sunday", + "1967-05-15": "Whit Monday", + "1967-12-25": "Christmas Day", + "1967-12-26": "Second Day of Christmas", + "1968-01-01": "New Year's Day", + "1968-04-11": "Maundy Thursday", + "1968-04-12": "Good Friday", + "1968-04-14": "Easter Sunday", + "1968-04-15": "Easter Monday", + "1968-05-10": "Great Prayer Day", + "1968-05-23": "Ascension Day", + "1968-06-02": "Whit Sunday", + "1968-06-03": "Whit Monday", + "1968-12-25": "Christmas Day", + "1968-12-26": "Second Day of Christmas", + "1969-01-01": "New Year's Day", + "1969-04-03": "Maundy Thursday", + "1969-04-04": "Good Friday", + "1969-04-06": "Easter Sunday", + "1969-04-07": "Easter Monday", + "1969-05-02": "Great Prayer Day", + "1969-05-15": "Ascension Day", + "1969-05-25": "Whit Sunday", + "1969-05-26": "Whit Monday", + "1969-12-25": "Christmas Day", + "1969-12-26": "Second Day of Christmas", + "1970-01-01": "New Year's Day", + "1970-03-26": "Maundy Thursday", + "1970-03-27": "Good Friday", + "1970-03-29": "Easter Sunday", + "1970-03-30": "Easter Monday", + "1970-04-24": "Great Prayer Day", + "1970-05-07": "Ascension Day", + "1970-05-17": "Whit Sunday", + "1970-05-18": "Whit Monday", + "1970-12-25": "Christmas Day", + "1970-12-26": "Second Day of Christmas", + "1971-01-01": "New Year's Day", + "1971-04-08": "Maundy Thursday", + "1971-04-09": "Good Friday", + "1971-04-11": "Easter Sunday", + "1971-04-12": "Easter Monday", + "1971-05-07": "Great Prayer Day", + "1971-05-20": "Ascension Day", + "1971-05-30": "Whit Sunday", + "1971-05-31": "Whit Monday", + "1971-12-25": "Christmas Day", + "1971-12-26": "Second Day of Christmas", + "1972-01-01": "New Year's Day", + "1972-03-30": "Maundy Thursday", + "1972-03-31": "Good Friday", + "1972-04-02": "Easter Sunday", + "1972-04-03": "Easter Monday", + "1972-04-28": "Great Prayer Day", + "1972-05-11": "Ascension Day", + "1972-05-21": "Whit Sunday", + "1972-05-22": "Whit Monday", + "1972-12-25": "Christmas Day", + "1972-12-26": "Second Day of Christmas", + "1973-01-01": "New Year's Day", + "1973-04-19": "Maundy Thursday", + "1973-04-20": "Good Friday", + "1973-04-22": "Easter Sunday", + "1973-04-23": "Easter Monday", + "1973-05-18": "Great Prayer Day", + "1973-05-31": "Ascension Day", + "1973-06-10": "Whit Sunday", + "1973-06-11": "Whit Monday", + "1973-12-25": "Christmas Day", + "1973-12-26": "Second Day of Christmas", + "1974-01-01": "New Year's Day", + "1974-04-11": "Maundy Thursday", + "1974-04-12": "Good Friday", + "1974-04-14": "Easter Sunday", + "1974-04-15": "Easter Monday", + "1974-05-10": "Great Prayer Day", + "1974-05-23": "Ascension Day", + "1974-06-02": "Whit Sunday", + "1974-06-03": "Whit Monday", + "1974-12-25": "Christmas Day", + "1974-12-26": "Second Day of Christmas", + "1975-01-01": "New Year's Day", + "1975-03-27": "Maundy Thursday", + "1975-03-28": "Good Friday", + "1975-03-30": "Easter Sunday", + "1975-03-31": "Easter Monday", + "1975-04-25": "Great Prayer Day", + "1975-05-08": "Ascension Day", + "1975-05-18": "Whit Sunday", + "1975-05-19": "Whit Monday", + "1975-12-25": "Christmas Day", + "1975-12-26": "Second Day of Christmas", + "1976-01-01": "New Year's Day", + "1976-04-15": "Maundy Thursday", + "1976-04-16": "Good Friday", + "1976-04-18": "Easter Sunday", + "1976-04-19": "Easter Monday", + "1976-05-14": "Great Prayer Day", + "1976-05-27": "Ascension Day", + "1976-06-06": "Whit Sunday", + "1976-06-07": "Whit Monday", + "1976-12-25": "Christmas Day", + "1976-12-26": "Second Day of Christmas", + "1977-01-01": "New Year's Day", + "1977-04-07": "Maundy Thursday", + "1977-04-08": "Good Friday", + "1977-04-10": "Easter Sunday", + "1977-04-11": "Easter Monday", + "1977-05-06": "Great Prayer Day", + "1977-05-19": "Ascension Day", + "1977-05-29": "Whit Sunday", + "1977-05-30": "Whit Monday", + "1977-12-25": "Christmas Day", + "1977-12-26": "Second Day of Christmas", + "1978-01-01": "New Year's Day", + "1978-03-23": "Maundy Thursday", + "1978-03-24": "Good Friday", + "1978-03-26": "Easter Sunday", + "1978-03-27": "Easter Monday", + "1978-04-21": "Great Prayer Day", + "1978-05-04": "Ascension Day", + "1978-05-14": "Whit Sunday", + "1978-05-15": "Whit Monday", + "1978-12-25": "Christmas Day", + "1978-12-26": "Second Day of Christmas", + "1979-01-01": "New Year's Day", + "1979-04-12": "Maundy Thursday", + "1979-04-13": "Good Friday", + "1979-04-15": "Easter Sunday", + "1979-04-16": "Easter Monday", + "1979-05-11": "Great Prayer Day", + "1979-05-24": "Ascension Day", + "1979-06-03": "Whit Sunday", + "1979-06-04": "Whit Monday", + "1979-12-25": "Christmas Day", + "1979-12-26": "Second Day of Christmas", + "1980-01-01": "New Year's Day", + "1980-04-03": "Maundy Thursday", + "1980-04-04": "Good Friday", + "1980-04-06": "Easter Sunday", + "1980-04-07": "Easter Monday", + "1980-05-02": "Great Prayer Day", + "1980-05-15": "Ascension Day", + "1980-05-25": "Whit Sunday", + "1980-05-26": "Whit Monday", + "1980-12-25": "Christmas Day", + "1980-12-26": "Second Day of Christmas", + "1981-01-01": "New Year's Day", + "1981-04-16": "Maundy Thursday", + "1981-04-17": "Good Friday", + "1981-04-19": "Easter Sunday", + "1981-04-20": "Easter Monday", + "1981-05-15": "Great Prayer Day", + "1981-05-28": "Ascension Day", + "1981-06-07": "Whit Sunday", + "1981-06-08": "Whit Monday", + "1981-12-25": "Christmas Day", + "1981-12-26": "Second Day of Christmas", + "1982-01-01": "New Year's Day", + "1982-04-08": "Maundy Thursday", + "1982-04-09": "Good Friday", + "1982-04-11": "Easter Sunday", + "1982-04-12": "Easter Monday", + "1982-05-07": "Great Prayer Day", + "1982-05-20": "Ascension Day", + "1982-05-30": "Whit Sunday", + "1982-05-31": "Whit Monday", + "1982-12-25": "Christmas Day", + "1982-12-26": "Second Day of Christmas", + "1983-01-01": "New Year's Day", + "1983-03-31": "Maundy Thursday", + "1983-04-01": "Good Friday", + "1983-04-03": "Easter Sunday", + "1983-04-04": "Easter Monday", + "1983-04-29": "Great Prayer Day", + "1983-05-12": "Ascension Day", + "1983-05-22": "Whit Sunday", + "1983-05-23": "Whit Monday", + "1983-12-25": "Christmas Day", + "1983-12-26": "Second Day of Christmas", + "1984-01-01": "New Year's Day", + "1984-04-19": "Maundy Thursday", + "1984-04-20": "Good Friday", + "1984-04-22": "Easter Sunday", + "1984-04-23": "Easter Monday", + "1984-05-18": "Great Prayer Day", + "1984-05-31": "Ascension Day", + "1984-06-10": "Whit Sunday", + "1984-06-11": "Whit Monday", + "1984-12-25": "Christmas Day", + "1984-12-26": "Second Day of Christmas", + "1985-01-01": "New Year's Day", + "1985-04-04": "Maundy Thursday", + "1985-04-05": "Good Friday", + "1985-04-07": "Easter Sunday", + "1985-04-08": "Easter Monday", + "1985-05-03": "Great Prayer Day", + "1985-05-16": "Ascension Day", + "1985-05-26": "Whit Sunday", + "1985-05-27": "Whit Monday", + "1985-12-25": "Christmas Day", + "1985-12-26": "Second Day of Christmas", + "1986-01-01": "New Year's Day", + "1986-03-27": "Maundy Thursday", + "1986-03-28": "Good Friday", + "1986-03-30": "Easter Sunday", + "1986-03-31": "Easter Monday", + "1986-04-25": "Great Prayer Day", + "1986-05-08": "Ascension Day", + "1986-05-18": "Whit Sunday", + "1986-05-19": "Whit Monday", + "1986-12-25": "Christmas Day", + "1986-12-26": "Second Day of Christmas", + "1987-01-01": "New Year's Day", + "1987-04-16": "Maundy Thursday", + "1987-04-17": "Good Friday", + "1987-04-19": "Easter Sunday", + "1987-04-20": "Easter Monday", + "1987-05-15": "Great Prayer Day", + "1987-05-28": "Ascension Day", + "1987-06-07": "Whit Sunday", + "1987-06-08": "Whit Monday", + "1987-12-25": "Christmas Day", + "1987-12-26": "Second Day of Christmas", + "1988-01-01": "New Year's Day", + "1988-03-31": "Maundy Thursday", + "1988-04-01": "Good Friday", + "1988-04-03": "Easter Sunday", + "1988-04-04": "Easter Monday", + "1988-04-29": "Great Prayer Day", + "1988-05-12": "Ascension Day", + "1988-05-22": "Whit Sunday", + "1988-05-23": "Whit Monday", + "1988-12-25": "Christmas Day", + "1988-12-26": "Second Day of Christmas", + "1989-01-01": "New Year's Day", + "1989-03-23": "Maundy Thursday", + "1989-03-24": "Good Friday", + "1989-03-26": "Easter Sunday", + "1989-03-27": "Easter Monday", + "1989-04-21": "Great Prayer Day", + "1989-05-04": "Ascension Day", + "1989-05-14": "Whit Sunday", + "1989-05-15": "Whit Monday", + "1989-12-25": "Christmas Day", + "1989-12-26": "Second Day of Christmas", + "1990-01-01": "New Year's Day", + "1990-04-12": "Maundy Thursday", + "1990-04-13": "Good Friday", + "1990-04-15": "Easter Sunday", + "1990-04-16": "Easter Monday", + "1990-05-11": "Great Prayer Day", + "1990-05-24": "Ascension Day", + "1990-06-03": "Whit Sunday", + "1990-06-04": "Whit Monday", + "1990-12-25": "Christmas Day", + "1990-12-26": "Second Day of Christmas", + "1991-01-01": "New Year's Day", + "1991-03-28": "Maundy Thursday", + "1991-03-29": "Good Friday", + "1991-03-31": "Easter Sunday", + "1991-04-01": "Easter Monday", + "1991-04-26": "Great Prayer Day", + "1991-05-09": "Ascension Day", + "1991-05-19": "Whit Sunday", + "1991-05-20": "Whit Monday", + "1991-12-25": "Christmas Day", + "1991-12-26": "Second Day of Christmas", + "1992-01-01": "New Year's Day", + "1992-04-16": "Maundy Thursday", + "1992-04-17": "Good Friday", + "1992-04-19": "Easter Sunday", + "1992-04-20": "Easter Monday", + "1992-05-15": "Great Prayer Day", + "1992-05-28": "Ascension Day", + "1992-06-07": "Whit Sunday", + "1992-06-08": "Whit Monday", + "1992-12-25": "Christmas Day", + "1992-12-26": "Second Day of Christmas", + "1993-01-01": "New Year's Day", + "1993-04-08": "Maundy Thursday", + "1993-04-09": "Good Friday", + "1993-04-11": "Easter Sunday", + "1993-04-12": "Easter Monday", + "1993-05-07": "Great Prayer Day", + "1993-05-20": "Ascension Day", + "1993-05-30": "Whit Sunday", + "1993-05-31": "Whit Monday", + "1993-12-25": "Christmas Day", + "1993-12-26": "Second Day of Christmas", + "1994-01-01": "New Year's Day", + "1994-03-31": "Maundy Thursday", + "1994-04-01": "Good Friday", + "1994-04-03": "Easter Sunday", + "1994-04-04": "Easter Monday", + "1994-04-29": "Great Prayer Day", + "1994-05-12": "Ascension Day", + "1994-05-22": "Whit Sunday", + "1994-05-23": "Whit Monday", + "1994-12-25": "Christmas Day", + "1994-12-26": "Second Day of Christmas", + "1995-01-01": "New Year's Day", + "1995-04-13": "Maundy Thursday", + "1995-04-14": "Good Friday", + "1995-04-16": "Easter Sunday", + "1995-04-17": "Easter Monday", + "1995-05-12": "Great Prayer Day", + "1995-05-25": "Ascension Day", + "1995-06-04": "Whit Sunday", + "1995-06-05": "Whit Monday", + "1995-12-25": "Christmas Day", + "1995-12-26": "Second Day of Christmas", + "1996-01-01": "New Year's Day", + "1996-04-04": "Maundy Thursday", + "1996-04-05": "Good Friday", + "1996-04-07": "Easter Sunday", + "1996-04-08": "Easter Monday", + "1996-05-03": "Great Prayer Day", + "1996-05-16": "Ascension Day", + "1996-05-26": "Whit Sunday", + "1996-05-27": "Whit Monday", + "1996-12-25": "Christmas Day", + "1996-12-26": "Second Day of Christmas", + "1997-01-01": "New Year's Day", + "1997-03-27": "Maundy Thursday", + "1997-03-28": "Good Friday", + "1997-03-30": "Easter Sunday", + "1997-03-31": "Easter Monday", + "1997-04-25": "Great Prayer Day", + "1997-05-08": "Ascension Day", + "1997-05-18": "Whit Sunday", + "1997-05-19": "Whit Monday", + "1997-12-25": "Christmas Day", + "1997-12-26": "Second Day of Christmas", + "1998-01-01": "New Year's Day", + "1998-04-09": "Maundy Thursday", + "1998-04-10": "Good Friday", + "1998-04-12": "Easter Sunday", + "1998-04-13": "Easter Monday", + "1998-05-08": "Great Prayer Day", + "1998-05-21": "Ascension Day", + "1998-05-31": "Whit Sunday", + "1998-06-01": "Whit Monday", + "1998-12-25": "Christmas Day", + "1998-12-26": "Second Day of Christmas", + "1999-01-01": "New Year's Day", + "1999-04-01": "Maundy Thursday", + "1999-04-02": "Good Friday", + "1999-04-04": "Easter Sunday", + "1999-04-05": "Easter Monday", + "1999-04-30": "Great Prayer Day", + "1999-05-13": "Ascension Day", + "1999-05-23": "Whit Sunday", + "1999-05-24": "Whit Monday", + "1999-12-25": "Christmas Day", + "1999-12-26": "Second Day of Christmas", + "2000-01-01": "New Year's Day", + "2000-04-20": "Maundy Thursday", + "2000-04-21": "Good Friday", + "2000-04-23": "Easter Sunday", + "2000-04-24": "Easter Monday", + "2000-05-19": "Great Prayer Day", + "2000-06-01": "Ascension Day", + "2000-06-11": "Whit Sunday", + "2000-06-12": "Whit Monday", + "2000-12-25": "Christmas Day", + "2000-12-26": "Second Day of Christmas", + "2001-01-01": "New Year's Day", + "2001-04-12": "Maundy Thursday", + "2001-04-13": "Good Friday", + "2001-04-15": "Easter Sunday", + "2001-04-16": "Easter Monday", + "2001-05-11": "Great Prayer Day", + "2001-05-24": "Ascension Day", + "2001-06-03": "Whit Sunday", + "2001-06-04": "Whit Monday", + "2001-12-25": "Christmas Day", + "2001-12-26": "Second Day of Christmas", + "2002-01-01": "New Year's Day", + "2002-03-28": "Maundy Thursday", + "2002-03-29": "Good Friday", + "2002-03-31": "Easter Sunday", + "2002-04-01": "Easter Monday", + "2002-04-26": "Great Prayer Day", + "2002-05-09": "Ascension Day", + "2002-05-19": "Whit Sunday", + "2002-05-20": "Whit Monday", + "2002-12-25": "Christmas Day", + "2002-12-26": "Second Day of Christmas", + "2003-01-01": "New Year's Day", + "2003-04-17": "Maundy Thursday", + "2003-04-18": "Good Friday", + "2003-04-20": "Easter Sunday", + "2003-04-21": "Easter Monday", + "2003-05-16": "Great Prayer Day", + "2003-05-29": "Ascension Day", + "2003-06-08": "Whit Sunday", + "2003-06-09": "Whit Monday", + "2003-12-25": "Christmas Day", + "2003-12-26": "Second Day of Christmas", + "2004-01-01": "New Year's Day", + "2004-04-08": "Maundy Thursday", + "2004-04-09": "Good Friday", + "2004-04-11": "Easter Sunday", + "2004-04-12": "Easter Monday", + "2004-05-07": "Great Prayer Day", + "2004-05-20": "Ascension Day", + "2004-05-30": "Whit Sunday", + "2004-05-31": "Whit Monday", + "2004-12-25": "Christmas Day", + "2004-12-26": "Second Day of Christmas", + "2005-01-01": "New Year's Day", + "2005-03-24": "Maundy Thursday", + "2005-03-25": "Good Friday", + "2005-03-27": "Easter Sunday", + "2005-03-28": "Easter Monday", + "2005-04-22": "Great Prayer Day", + "2005-05-05": "Ascension Day", + "2005-05-15": "Whit Sunday", + "2005-05-16": "Whit Monday", + "2005-12-25": "Christmas Day", + "2005-12-26": "Second Day of Christmas", + "2006-01-01": "New Year's Day", + "2006-04-13": "Maundy Thursday", + "2006-04-14": "Good Friday", + "2006-04-16": "Easter Sunday", + "2006-04-17": "Easter Monday", + "2006-05-12": "Great Prayer Day", + "2006-05-25": "Ascension Day", + "2006-06-04": "Whit Sunday", + "2006-06-05": "Whit Monday", + "2006-12-25": "Christmas Day", + "2006-12-26": "Second Day of Christmas", + "2007-01-01": "New Year's Day", + "2007-04-05": "Maundy Thursday", + "2007-04-06": "Good Friday", + "2007-04-08": "Easter Sunday", + "2007-04-09": "Easter Monday", + "2007-05-04": "Great Prayer Day", + "2007-05-17": "Ascension Day", + "2007-05-27": "Whit Sunday", + "2007-05-28": "Whit Monday", + "2007-12-25": "Christmas Day", + "2007-12-26": "Second Day of Christmas", + "2008-01-01": "New Year's Day", + "2008-03-20": "Maundy Thursday", + "2008-03-21": "Good Friday", + "2008-03-23": "Easter Sunday", + "2008-03-24": "Easter Monday", + "2008-04-18": "Great Prayer Day", + "2008-05-01": "Ascension Day", + "2008-05-11": "Whit Sunday", + "2008-05-12": "Whit Monday", + "2008-12-25": "Christmas Day", + "2008-12-26": "Second Day of Christmas", + "2009-01-01": "New Year's Day", + "2009-04-09": "Maundy Thursday", + "2009-04-10": "Good Friday", + "2009-04-12": "Easter Sunday", + "2009-04-13": "Easter Monday", + "2009-05-08": "Great Prayer Day", + "2009-05-21": "Ascension Day", + "2009-05-31": "Whit Sunday", + "2009-06-01": "Whit Monday", + "2009-12-25": "Christmas Day", + "2009-12-26": "Second Day of Christmas", + "2010-01-01": "New Year's Day", + "2010-04-01": "Maundy Thursday", + "2010-04-02": "Good Friday", + "2010-04-04": "Easter Sunday", + "2010-04-05": "Easter Monday", + "2010-04-30": "Great Prayer Day", + "2010-05-13": "Ascension Day", + "2010-05-23": "Whit Sunday", + "2010-05-24": "Whit Monday", + "2010-12-25": "Christmas Day", + "2010-12-26": "Second Day of Christmas", + "2011-01-01": "New Year's Day", + "2011-04-21": "Maundy Thursday", + "2011-04-22": "Good Friday", + "2011-04-24": "Easter Sunday", + "2011-04-25": "Easter Monday", + "2011-05-20": "Great Prayer Day", + "2011-06-02": "Ascension Day", + "2011-06-12": "Whit Sunday", + "2011-06-13": "Whit Monday", + "2011-12-25": "Christmas Day", + "2011-12-26": "Second Day of Christmas", + "2012-01-01": "New Year's Day", + "2012-04-05": "Maundy Thursday", + "2012-04-06": "Good Friday", + "2012-04-08": "Easter Sunday", + "2012-04-09": "Easter Monday", + "2012-05-04": "Great Prayer Day", + "2012-05-17": "Ascension Day", + "2012-05-27": "Whit Sunday", + "2012-05-28": "Whit Monday", + "2012-12-25": "Christmas Day", + "2012-12-26": "Second Day of Christmas", + "2013-01-01": "New Year's Day", + "2013-03-28": "Maundy Thursday", + "2013-03-29": "Good Friday", + "2013-03-31": "Easter Sunday", + "2013-04-01": "Easter Monday", + "2013-04-26": "Great Prayer Day", + "2013-05-09": "Ascension Day", + "2013-05-19": "Whit Sunday", + "2013-05-20": "Whit Monday", + "2013-12-25": "Christmas Day", + "2013-12-26": "Second Day of Christmas", + "2014-01-01": "New Year's Day", + "2014-04-17": "Maundy Thursday", + "2014-04-18": "Good Friday", + "2014-04-20": "Easter Sunday", + "2014-04-21": "Easter Monday", + "2014-05-16": "Great Prayer Day", + "2014-05-29": "Ascension Day", + "2014-06-08": "Whit Sunday", + "2014-06-09": "Whit Monday", + "2014-12-25": "Christmas Day", + "2014-12-26": "Second Day of Christmas", + "2015-01-01": "New Year's Day", + "2015-04-02": "Maundy Thursday", + "2015-04-03": "Good Friday", + "2015-04-05": "Easter Sunday", + "2015-04-06": "Easter Monday", + "2015-05-01": "Great Prayer Day", + "2015-05-14": "Ascension Day", + "2015-05-24": "Whit Sunday", + "2015-05-25": "Whit Monday", + "2015-12-25": "Christmas Day", + "2015-12-26": "Second Day of Christmas", + "2016-01-01": "New Year's Day", + "2016-03-24": "Maundy Thursday", + "2016-03-25": "Good Friday", + "2016-03-27": "Easter Sunday", + "2016-03-28": "Easter Monday", + "2016-04-22": "Great Prayer Day", + "2016-05-05": "Ascension Day", + "2016-05-15": "Whit Sunday", + "2016-05-16": "Whit Monday", + "2016-12-25": "Christmas Day", + "2016-12-26": "Second Day of Christmas", + "2017-01-01": "New Year's Day", + "2017-04-13": "Maundy Thursday", + "2017-04-14": "Good Friday", + "2017-04-16": "Easter Sunday", + "2017-04-17": "Easter Monday", + "2017-05-12": "Great Prayer Day", + "2017-05-25": "Ascension Day", + "2017-06-04": "Whit Sunday", + "2017-06-05": "Whit Monday", + "2017-12-25": "Christmas Day", + "2017-12-26": "Second Day of Christmas", + "2018-01-01": "New Year's Day", + "2018-03-29": "Maundy Thursday", + "2018-03-30": "Good Friday", + "2018-04-01": "Easter Sunday", + "2018-04-02": "Easter Monday", + "2018-04-27": "Great Prayer Day", + "2018-05-10": "Ascension Day", + "2018-05-20": "Whit Sunday", + "2018-05-21": "Whit Monday", + "2018-12-25": "Christmas Day", + "2018-12-26": "Second Day of Christmas", + "2019-01-01": "New Year's Day", + "2019-04-18": "Maundy Thursday", + "2019-04-19": "Good Friday", + "2019-04-21": "Easter Sunday", + "2019-04-22": "Easter Monday", + "2019-05-17": "Great Prayer Day", + "2019-05-30": "Ascension Day", + "2019-06-09": "Whit Sunday", + "2019-06-10": "Whit Monday", + "2019-12-25": "Christmas Day", + "2019-12-26": "Second Day of Christmas", + "2020-01-01": "New Year's Day", + "2020-04-09": "Maundy Thursday", + "2020-04-10": "Good Friday", + "2020-04-12": "Easter Sunday", + "2020-04-13": "Easter Monday", + "2020-05-08": "Great Prayer Day", + "2020-05-21": "Ascension Day", + "2020-05-31": "Whit Sunday", + "2020-06-01": "Whit Monday", + "2020-12-25": "Christmas Day", + "2020-12-26": "Second Day of Christmas", + "2021-01-01": "New Year's Day", + "2021-04-01": "Maundy Thursday", + "2021-04-02": "Good Friday", + "2021-04-04": "Easter Sunday", + "2021-04-05": "Easter Monday", + "2021-04-30": "Great Prayer Day", + "2021-05-13": "Ascension Day", + "2021-05-23": "Whit Sunday", + "2021-05-24": "Whit Monday", + "2021-12-25": "Christmas Day", + "2021-12-26": "Second Day of Christmas", + "2022-01-01": "New Year's Day", + "2022-04-14": "Maundy Thursday", + "2022-04-15": "Good Friday", + "2022-04-17": "Easter Sunday", + "2022-04-18": "Easter Monday", + "2022-05-13": "Great Prayer Day", + "2022-05-26": "Ascension Day", + "2022-06-05": "Whit Sunday", + "2022-06-06": "Whit Monday", + "2022-12-25": "Christmas Day", + "2022-12-26": "Second Day of Christmas", + "2023-01-01": "New Year's Day", + "2023-04-06": "Maundy Thursday", + "2023-04-07": "Good Friday", + "2023-04-09": "Easter Sunday", + "2023-04-10": "Easter Monday", + "2023-05-05": "Great Prayer Day", + "2023-05-18": "Ascension Day", + "2023-05-28": "Whit Sunday", + "2023-05-29": "Whit Monday", + "2023-12-25": "Christmas Day", + "2023-12-26": "Second Day of Christmas", + "2024-01-01": "New Year's Day", + "2024-03-28": "Maundy Thursday", + "2024-03-29": "Good Friday", + "2024-03-31": "Easter Sunday", + "2024-04-01": "Easter Monday", + "2024-05-09": "Ascension Day", + "2024-05-19": "Whit Sunday", + "2024-05-20": "Whit Monday", + "2024-12-25": "Christmas Day", + "2024-12-26": "Second Day of Christmas", + "2025-01-01": "New Year's Day", + "2025-04-17": "Maundy Thursday", + "2025-04-18": "Good Friday", + "2025-04-20": "Easter Sunday", + "2025-04-21": "Easter Monday", + "2025-05-29": "Ascension Day", + "2025-06-08": "Whit Sunday", + "2025-06-09": "Whit Monday", + "2025-12-25": "Christmas Day", + "2025-12-26": "Second Day of Christmas", + "2026-01-01": "New Year's Day", + "2026-04-02": "Maundy Thursday", + "2026-04-03": "Good Friday", + "2026-04-05": "Easter Sunday", + "2026-04-06": "Easter Monday", + "2026-05-14": "Ascension Day", + "2026-05-24": "Whit Sunday", + "2026-05-25": "Whit Monday", + "2026-12-25": "Christmas Day", + "2026-12-26": "Second Day of Christmas", + "2027-01-01": "New Year's Day", + "2027-03-25": "Maundy Thursday", + "2027-03-26": "Good Friday", + "2027-03-28": "Easter Sunday", + "2027-03-29": "Easter Monday", + "2027-05-06": "Ascension Day", + "2027-05-16": "Whit Sunday", + "2027-05-17": "Whit Monday", + "2027-12-25": "Christmas Day", + "2027-12-26": "Second Day of Christmas", + "2028-01-01": "New Year's Day", + "2028-04-13": "Maundy Thursday", + "2028-04-14": "Good Friday", + "2028-04-16": "Easter Sunday", + "2028-04-17": "Easter Monday", + "2028-05-25": "Ascension Day", + "2028-06-04": "Whit Sunday", + "2028-06-05": "Whit Monday", + "2028-12-25": "Christmas Day", + "2028-12-26": "Second Day of Christmas", + "2029-01-01": "New Year's Day", + "2029-03-29": "Maundy Thursday", + "2029-03-30": "Good Friday", + "2029-04-01": "Easter Sunday", + "2029-04-02": "Easter Monday", + "2029-05-10": "Ascension Day", + "2029-05-20": "Whit Sunday", + "2029-05-21": "Whit Monday", + "2029-12-25": "Christmas Day", + "2029-12-26": "Second Day of Christmas", + "2030-01-01": "New Year's Day", + "2030-04-18": "Maundy Thursday", + "2030-04-19": "Good Friday", + "2030-04-21": "Easter Sunday", + "2030-04-22": "Easter Monday", + "2030-05-30": "Ascension Day", + "2030-06-09": "Whit Sunday", + "2030-06-10": "Whit Monday", + "2030-12-25": "Christmas Day", + "2030-12-26": "Second Day of Christmas", + "2031-01-01": "New Year's Day", + "2031-04-10": "Maundy Thursday", + "2031-04-11": "Good Friday", + "2031-04-13": "Easter Sunday", + "2031-04-14": "Easter Monday", + "2031-05-22": "Ascension Day", + "2031-06-01": "Whit Sunday", + "2031-06-02": "Whit Monday", + "2031-12-25": "Christmas Day", + "2031-12-26": "Second Day of Christmas", + "2032-01-01": "New Year's Day", + "2032-03-25": "Maundy Thursday", + "2032-03-26": "Good Friday", + "2032-03-28": "Easter Sunday", + "2032-03-29": "Easter Monday", + "2032-05-06": "Ascension Day", + "2032-05-16": "Whit Sunday", + "2032-05-17": "Whit Monday", + "2032-12-25": "Christmas Day", + "2032-12-26": "Second Day of Christmas", + "2033-01-01": "New Year's Day", + "2033-04-14": "Maundy Thursday", + "2033-04-15": "Good Friday", + "2033-04-17": "Easter Sunday", + "2033-04-18": "Easter Monday", + "2033-05-26": "Ascension Day", + "2033-06-05": "Whit Sunday", + "2033-06-06": "Whit Monday", + "2033-12-25": "Christmas Day", + "2033-12-26": "Second Day of Christmas", + "2034-01-01": "New Year's Day", + "2034-04-06": "Maundy Thursday", + "2034-04-07": "Good Friday", + "2034-04-09": "Easter Sunday", + "2034-04-10": "Easter Monday", + "2034-05-18": "Ascension Day", + "2034-05-28": "Whit Sunday", + "2034-05-29": "Whit Monday", + "2034-12-25": "Christmas Day", + "2034-12-26": "Second Day of Christmas", + "2035-01-01": "New Year's Day", + "2035-03-22": "Maundy Thursday", + "2035-03-23": "Good Friday", + "2035-03-25": "Easter Sunday", + "2035-03-26": "Easter Monday", + "2035-05-03": "Ascension Day", + "2035-05-13": "Whit Sunday", + "2035-05-14": "Whit Monday", + "2035-12-25": "Christmas Day", + "2035-12-26": "Second Day of Christmas", + "2036-01-01": "New Year's Day", + "2036-04-10": "Maundy Thursday", + "2036-04-11": "Good Friday", + "2036-04-13": "Easter Sunday", + "2036-04-14": "Easter Monday", + "2036-05-22": "Ascension Day", + "2036-06-01": "Whit Sunday", + "2036-06-02": "Whit Monday", + "2036-12-25": "Christmas Day", + "2036-12-26": "Second Day of Christmas", + "2037-01-01": "New Year's Day", + "2037-04-02": "Maundy Thursday", + "2037-04-03": "Good Friday", + "2037-04-05": "Easter Sunday", + "2037-04-06": "Easter Monday", + "2037-05-14": "Ascension Day", + "2037-05-24": "Whit Sunday", + "2037-05-25": "Whit Monday", + "2037-12-25": "Christmas Day", + "2037-12-26": "Second Day of Christmas", + "2038-01-01": "New Year's Day", + "2038-04-22": "Maundy Thursday", + "2038-04-23": "Good Friday", + "2038-04-25": "Easter Sunday", + "2038-04-26": "Easter Monday", + "2038-06-03": "Ascension Day", + "2038-06-13": "Whit Sunday", + "2038-06-14": "Whit Monday", + "2038-12-25": "Christmas Day", + "2038-12-26": "Second Day of Christmas", + "2039-01-01": "New Year's Day", + "2039-04-07": "Maundy Thursday", + "2039-04-08": "Good Friday", + "2039-04-10": "Easter Sunday", + "2039-04-11": "Easter Monday", + "2039-05-19": "Ascension Day", + "2039-05-29": "Whit Sunday", + "2039-05-30": "Whit Monday", + "2039-12-25": "Christmas Day", + "2039-12-26": "Second Day of Christmas", + "2040-01-01": "New Year's Day", + "2040-03-29": "Maundy Thursday", + "2040-03-30": "Good Friday", + "2040-04-01": "Easter Sunday", + "2040-04-02": "Easter Monday", + "2040-05-10": "Ascension Day", + "2040-05-20": "Whit Sunday", + "2040-05-21": "Whit Monday", + "2040-12-25": "Christmas Day", + "2040-12-26": "Second Day of Christmas", + "2041-01-01": "New Year's Day", + "2041-04-18": "Maundy Thursday", + "2041-04-19": "Good Friday", + "2041-04-21": "Easter Sunday", + "2041-04-22": "Easter Monday", + "2041-05-30": "Ascension Day", + "2041-06-09": "Whit Sunday", + "2041-06-10": "Whit Monday", + "2041-12-25": "Christmas Day", + "2041-12-26": "Second Day of Christmas", + "2042-01-01": "New Year's Day", + "2042-04-03": "Maundy Thursday", + "2042-04-04": "Good Friday", + "2042-04-06": "Easter Sunday", + "2042-04-07": "Easter Monday", + "2042-05-15": "Ascension Day", + "2042-05-25": "Whit Sunday", + "2042-05-26": "Whit Monday", + "2042-12-25": "Christmas Day", + "2042-12-26": "Second Day of Christmas", + "2043-01-01": "New Year's Day", + "2043-03-26": "Maundy Thursday", + "2043-03-27": "Good Friday", + "2043-03-29": "Easter Sunday", + "2043-03-30": "Easter Monday", + "2043-05-07": "Ascension Day", + "2043-05-17": "Whit Sunday", + "2043-05-18": "Whit Monday", + "2043-12-25": "Christmas Day", + "2043-12-26": "Second Day of Christmas", + "2044-01-01": "New Year's Day", + "2044-04-14": "Maundy Thursday", + "2044-04-15": "Good Friday", + "2044-04-17": "Easter Sunday", + "2044-04-18": "Easter Monday", + "2044-05-26": "Ascension Day", + "2044-06-05": "Whit Sunday", + "2044-06-06": "Whit Monday", + "2044-12-25": "Christmas Day", + "2044-12-26": "Second Day of Christmas", + "2045-01-01": "New Year's Day", + "2045-04-06": "Maundy Thursday", + "2045-04-07": "Good Friday", + "2045-04-09": "Easter Sunday", + "2045-04-10": "Easter Monday", + "2045-05-18": "Ascension Day", + "2045-05-28": "Whit Sunday", + "2045-05-29": "Whit Monday", + "2045-12-25": "Christmas Day", + "2045-12-26": "Second Day of Christmas", + "2046-01-01": "New Year's Day", + "2046-03-22": "Maundy Thursday", + "2046-03-23": "Good Friday", + "2046-03-25": "Easter Sunday", + "2046-03-26": "Easter Monday", + "2046-05-03": "Ascension Day", + "2046-05-13": "Whit Sunday", + "2046-05-14": "Whit Monday", + "2046-12-25": "Christmas Day", + "2046-12-26": "Second Day of Christmas", + "2047-01-01": "New Year's Day", + "2047-04-11": "Maundy Thursday", + "2047-04-12": "Good Friday", + "2047-04-14": "Easter Sunday", + "2047-04-15": "Easter Monday", + "2047-05-23": "Ascension Day", + "2047-06-02": "Whit Sunday", + "2047-06-03": "Whit Monday", + "2047-12-25": "Christmas Day", + "2047-12-26": "Second Day of Christmas", + "2048-01-01": "New Year's Day", + "2048-04-02": "Maundy Thursday", + "2048-04-03": "Good Friday", + "2048-04-05": "Easter Sunday", + "2048-04-06": "Easter Monday", + "2048-05-14": "Ascension Day", + "2048-05-24": "Whit Sunday", + "2048-05-25": "Whit Monday", + "2048-12-25": "Christmas Day", + "2048-12-26": "Second Day of Christmas", + "2049-01-01": "New Year's Day", + "2049-04-15": "Maundy Thursday", + "2049-04-16": "Good Friday", + "2049-04-18": "Easter Sunday", + "2049-04-19": "Easter Monday", + "2049-05-27": "Ascension Day", + "2049-06-06": "Whit Sunday", + "2049-06-07": "Whit Monday", + "2049-12-25": "Christmas Day", + "2049-12-26": "Second Day of Christmas", + "2050-01-01": "New Year's Day", + "2050-04-07": "Maundy Thursday", + "2050-04-08": "Good Friday", + "2050-04-10": "Easter Sunday", + "2050-04-11": "Easter Monday", + "2050-05-19": "Ascension Day", + "2050-05-29": "Whit Sunday", + "2050-05-30": "Whit Monday", + "2050-12-25": "Christmas Day", + "2050-12-26": "Second Day of Christmas" +} diff --git a/snapshots/countries/DO.json b/snapshots/countries/DO.json new file mode 100644 index 000000000..7f62552e1 --- /dev/null +++ b/snapshots/countries/DO.json @@ -0,0 +1,1214 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-06": "Epiphany", + "1950-01-21": "Lady of Altagracia", + "1950-01-26": "Juan Pablo Duarte Day", + "1950-02-27": "Independence Day", + "1950-04-07": "Good Friday", + "1950-05-01": "Labor Day", + "1950-06-08": "Feast of Corpus Christi", + "1950-08-16": "Restoration Day", + "1950-09-24": "Our Lady of Mercedes Day", + "1950-11-06": "Constitution Day", + "1950-12-25": "Christmas Day", + "1951-01-01": "New Year's Day", + "1951-01-06": "Epiphany", + "1951-01-21": "Lady of Altagracia", + "1951-01-26": "Juan Pablo Duarte Day", + "1951-02-27": "Independence Day", + "1951-03-23": "Good Friday", + "1951-05-01": "Labor Day", + "1951-05-24": "Feast of Corpus Christi", + "1951-08-16": "Restoration Day", + "1951-09-24": "Our Lady of Mercedes Day", + "1951-11-06": "Constitution Day", + "1951-12-25": "Christmas Day", + "1952-01-01": "New Year's Day", + "1952-01-06": "Epiphany", + "1952-01-21": "Lady of Altagracia", + "1952-01-26": "Juan Pablo Duarte Day", + "1952-02-27": "Independence Day", + "1952-04-11": "Good Friday", + "1952-05-01": "Labor Day", + "1952-06-12": "Feast of Corpus Christi", + "1952-08-16": "Restoration Day", + "1952-09-24": "Our Lady of Mercedes Day", + "1952-11-06": "Constitution Day", + "1952-12-25": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-01-06": "Epiphany", + "1953-01-21": "Lady of Altagracia", + "1953-01-26": "Juan Pablo Duarte Day", + "1953-02-27": "Independence Day", + "1953-04-03": "Good Friday", + "1953-05-01": "Labor Day", + "1953-06-04": "Feast of Corpus Christi", + "1953-08-16": "Restoration Day", + "1953-09-24": "Our Lady of Mercedes Day", + "1953-11-06": "Constitution Day", + "1953-12-25": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-01-06": "Epiphany", + "1954-01-21": "Lady of Altagracia", + "1954-01-26": "Juan Pablo Duarte Day", + "1954-02-27": "Independence Day", + "1954-04-16": "Good Friday", + "1954-05-01": "Labor Day", + "1954-06-17": "Feast of Corpus Christi", + "1954-08-16": "Restoration Day", + "1954-09-24": "Our Lady of Mercedes Day", + "1954-11-06": "Constitution Day", + "1954-12-25": "Christmas Day", + "1955-01-01": "New Year's Day", + "1955-01-06": "Epiphany", + "1955-01-21": "Lady of Altagracia", + "1955-01-26": "Juan Pablo Duarte Day", + "1955-02-27": "Independence Day", + "1955-04-08": "Good Friday", + "1955-05-01": "Labor Day", + "1955-06-09": "Feast of Corpus Christi", + "1955-08-16": "Restoration Day", + "1955-09-24": "Our Lady of Mercedes Day", + "1955-11-06": "Constitution Day", + "1955-12-25": "Christmas Day", + "1956-01-01": "New Year's Day", + "1956-01-06": "Epiphany", + "1956-01-21": "Lady of Altagracia", + "1956-01-26": "Juan Pablo Duarte Day", + "1956-02-27": "Independence Day", + "1956-03-30": "Good Friday", + "1956-05-01": "Labor Day", + "1956-05-31": "Feast of Corpus Christi", + "1956-08-16": "Restoration Day", + "1956-09-24": "Our Lady of Mercedes Day", + "1956-11-06": "Constitution Day", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-01-06": "Epiphany", + "1957-01-21": "Lady of Altagracia", + "1957-01-26": "Juan Pablo Duarte Day", + "1957-02-27": "Independence Day", + "1957-04-19": "Good Friday", + "1957-05-01": "Labor Day", + "1957-06-20": "Feast of Corpus Christi", + "1957-08-16": "Restoration Day", + "1957-09-24": "Our Lady of Mercedes Day", + "1957-11-06": "Constitution Day", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-01-06": "Epiphany", + "1958-01-21": "Lady of Altagracia", + "1958-01-26": "Juan Pablo Duarte Day", + "1958-02-27": "Independence Day", + "1958-04-04": "Good Friday", + "1958-05-01": "Labor Day", + "1958-06-05": "Feast of Corpus Christi", + "1958-08-16": "Restoration Day", + "1958-09-24": "Our Lady of Mercedes Day", + "1958-11-06": "Constitution Day", + "1958-12-25": "Christmas Day", + "1959-01-01": "New Year's Day", + "1959-01-06": "Epiphany", + "1959-01-21": "Lady of Altagracia", + "1959-01-26": "Juan Pablo Duarte Day", + "1959-02-27": "Independence Day", + "1959-03-27": "Good Friday", + "1959-05-01": "Labor Day", + "1959-05-28": "Feast of Corpus Christi", + "1959-08-16": "Restoration Day", + "1959-09-24": "Our Lady of Mercedes Day", + "1959-11-06": "Constitution Day", + "1959-12-25": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-01-06": "Epiphany", + "1960-01-21": "Lady of Altagracia", + "1960-01-26": "Juan Pablo Duarte Day", + "1960-02-27": "Independence Day", + "1960-04-15": "Good Friday", + "1960-05-01": "Labor Day", + "1960-06-16": "Feast of Corpus Christi", + "1960-08-16": "Restoration Day", + "1960-09-24": "Our Lady of Mercedes Day", + "1960-11-06": "Constitution Day", + "1960-12-25": "Christmas Day", + "1961-01-01": "New Year's Day", + "1961-01-06": "Epiphany", + "1961-01-21": "Lady of Altagracia", + "1961-01-26": "Juan Pablo Duarte Day", + "1961-02-27": "Independence Day", + "1961-03-31": "Good Friday", + "1961-05-01": "Labor Day", + "1961-06-01": "Feast of Corpus Christi", + "1961-08-16": "Restoration Day", + "1961-09-24": "Our Lady of Mercedes Day", + "1961-11-06": "Constitution Day", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-01-06": "Epiphany", + "1962-01-21": "Lady of Altagracia", + "1962-01-26": "Juan Pablo Duarte Day", + "1962-02-27": "Independence Day", + "1962-04-20": "Good Friday", + "1962-05-01": "Labor Day", + "1962-06-21": "Feast of Corpus Christi", + "1962-08-16": "Restoration Day", + "1962-09-24": "Our Lady of Mercedes Day", + "1962-11-06": "Constitution Day", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-01-06": "Epiphany", + "1963-01-21": "Lady of Altagracia", + "1963-01-26": "Juan Pablo Duarte Day", + "1963-02-27": "Independence Day", + "1963-04-12": "Good Friday", + "1963-05-01": "Labor Day", + "1963-06-13": "Feast of Corpus Christi", + "1963-08-16": "Restoration Day", + "1963-09-24": "Our Lady of Mercedes Day", + "1963-11-06": "Constitution Day", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-01-06": "Epiphany", + "1964-01-21": "Lady of Altagracia", + "1964-01-26": "Juan Pablo Duarte Day", + "1964-02-27": "Independence Day", + "1964-03-27": "Good Friday", + "1964-05-01": "Labor Day", + "1964-05-28": "Feast of Corpus Christi", + "1964-08-16": "Restoration Day", + "1964-09-24": "Our Lady of Mercedes Day", + "1964-11-06": "Constitution Day", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-01-06": "Epiphany", + "1965-01-21": "Lady of Altagracia", + "1965-01-26": "Juan Pablo Duarte Day", + "1965-02-27": "Independence Day", + "1965-04-16": "Good Friday", + "1965-05-01": "Labor Day", + "1965-06-17": "Feast of Corpus Christi", + "1965-08-16": "Restoration Day", + "1965-09-24": "Our Lady of Mercedes Day", + "1965-11-06": "Constitution Day", + "1965-12-25": "Christmas Day", + "1966-01-01": "New Year's Day", + "1966-01-06": "Epiphany", + "1966-01-21": "Lady of Altagracia", + "1966-01-26": "Juan Pablo Duarte Day", + "1966-02-27": "Independence Day", + "1966-04-08": "Good Friday", + "1966-05-01": "Labor Day", + "1966-06-09": "Feast of Corpus Christi", + "1966-08-16": "Restoration Day", + "1966-09-24": "Our Lady of Mercedes Day", + "1966-11-06": "Constitution Day", + "1966-12-25": "Christmas Day", + "1967-01-01": "New Year's Day", + "1967-01-06": "Epiphany", + "1967-01-21": "Lady of Altagracia", + "1967-01-26": "Juan Pablo Duarte Day", + "1967-02-27": "Independence Day", + "1967-03-24": "Good Friday", + "1967-05-01": "Labor Day", + "1967-05-25": "Feast of Corpus Christi", + "1967-08-16": "Restoration Day", + "1967-09-24": "Our Lady of Mercedes Day", + "1967-11-06": "Constitution Day", + "1967-12-25": "Christmas Day", + "1968-01-01": "New Year's Day", + "1968-01-06": "Epiphany", + "1968-01-21": "Lady of Altagracia", + "1968-01-26": "Juan Pablo Duarte Day", + "1968-02-27": "Independence Day", + "1968-04-12": "Good Friday", + "1968-05-01": "Labor Day", + "1968-06-13": "Feast of Corpus Christi", + "1968-08-16": "Restoration Day", + "1968-09-24": "Our Lady of Mercedes Day", + "1968-11-06": "Constitution Day", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-01-06": "Epiphany", + "1969-01-21": "Lady of Altagracia", + "1969-01-26": "Juan Pablo Duarte Day", + "1969-02-27": "Independence Day", + "1969-04-04": "Good Friday", + "1969-05-01": "Labor Day", + "1969-06-05": "Feast of Corpus Christi", + "1969-08-16": "Restoration Day", + "1969-09-24": "Our Lady of Mercedes Day", + "1969-11-06": "Constitution Day", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-01-06": "Epiphany", + "1970-01-21": "Lady of Altagracia", + "1970-01-26": "Juan Pablo Duarte Day", + "1970-02-27": "Independence Day", + "1970-03-27": "Good Friday", + "1970-05-01": "Labor Day", + "1970-05-28": "Feast of Corpus Christi", + "1970-08-16": "Restoration Day", + "1970-09-24": "Our Lady of Mercedes Day", + "1970-11-06": "Constitution Day", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-01-06": "Epiphany", + "1971-01-21": "Lady of Altagracia", + "1971-01-26": "Juan Pablo Duarte Day", + "1971-02-27": "Independence Day", + "1971-04-09": "Good Friday", + "1971-05-01": "Labor Day", + "1971-06-10": "Feast of Corpus Christi", + "1971-08-16": "Restoration Day", + "1971-09-24": "Our Lady of Mercedes Day", + "1971-11-06": "Constitution Day", + "1971-12-25": "Christmas Day", + "1972-01-01": "New Year's Day", + "1972-01-06": "Epiphany", + "1972-01-21": "Lady of Altagracia", + "1972-01-26": "Juan Pablo Duarte Day", + "1972-02-27": "Independence Day", + "1972-03-31": "Good Friday", + "1972-05-01": "Labor Day", + "1972-06-01": "Feast of Corpus Christi", + "1972-08-16": "Restoration Day", + "1972-09-24": "Our Lady of Mercedes Day", + "1972-11-06": "Constitution Day", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-01-06": "Epiphany", + "1973-01-21": "Lady of Altagracia", + "1973-01-26": "Juan Pablo Duarte Day", + "1973-02-27": "Independence Day", + "1973-04-20": "Good Friday", + "1973-05-01": "Labor Day", + "1973-06-21": "Feast of Corpus Christi", + "1973-08-16": "Restoration Day", + "1973-09-24": "Our Lady of Mercedes Day", + "1973-11-06": "Constitution Day", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-01-06": "Epiphany", + "1974-01-21": "Lady of Altagracia", + "1974-01-26": "Juan Pablo Duarte Day", + "1974-02-27": "Independence Day", + "1974-04-12": "Good Friday", + "1974-05-01": "Labor Day", + "1974-06-13": "Feast of Corpus Christi", + "1974-08-16": "Restoration Day", + "1974-09-24": "Our Lady of Mercedes Day", + "1974-11-06": "Constitution Day", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-01-06": "Epiphany", + "1975-01-21": "Lady of Altagracia", + "1975-01-26": "Juan Pablo Duarte Day", + "1975-02-27": "Independence Day", + "1975-03-28": "Good Friday", + "1975-05-01": "Labor Day", + "1975-05-29": "Feast of Corpus Christi", + "1975-08-16": "Restoration Day", + "1975-09-24": "Our Lady of Mercedes Day", + "1975-11-06": "Constitution Day", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-01-06": "Epiphany", + "1976-01-21": "Lady of Altagracia", + "1976-01-26": "Juan Pablo Duarte Day", + "1976-02-27": "Independence Day", + "1976-04-16": "Good Friday", + "1976-05-01": "Labor Day", + "1976-06-17": "Feast of Corpus Christi", + "1976-08-16": "Restoration Day", + "1976-09-24": "Our Lady of Mercedes Day", + "1976-11-06": "Constitution Day", + "1976-12-25": "Christmas Day", + "1977-01-01": "New Year's Day", + "1977-01-06": "Epiphany", + "1977-01-21": "Lady of Altagracia", + "1977-01-26": "Juan Pablo Duarte Day", + "1977-02-27": "Independence Day", + "1977-04-08": "Good Friday", + "1977-05-01": "Labor Day", + "1977-06-09": "Feast of Corpus Christi", + "1977-08-16": "Restoration Day", + "1977-09-24": "Our Lady of Mercedes Day", + "1977-11-06": "Constitution Day", + "1977-12-25": "Christmas Day", + "1978-01-01": "New Year's Day", + "1978-01-06": "Epiphany", + "1978-01-21": "Lady of Altagracia", + "1978-01-26": "Juan Pablo Duarte Day", + "1978-02-27": "Independence Day", + "1978-03-24": "Good Friday", + "1978-05-01": "Labor Day", + "1978-05-25": "Feast of Corpus Christi", + "1978-08-16": "Restoration Day", + "1978-09-24": "Our Lady of Mercedes Day", + "1978-11-06": "Constitution Day", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-01-06": "Epiphany", + "1979-01-21": "Lady of Altagracia", + "1979-01-26": "Juan Pablo Duarte Day", + "1979-02-27": "Independence Day", + "1979-04-13": "Good Friday", + "1979-05-01": "Labor Day", + "1979-06-14": "Feast of Corpus Christi", + "1979-08-16": "Restoration Day", + "1979-09-24": "Our Lady of Mercedes Day", + "1979-11-06": "Constitution Day", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-01-06": "Epiphany", + "1980-01-21": "Lady of Altagracia", + "1980-01-26": "Juan Pablo Duarte Day", + "1980-02-27": "Independence Day", + "1980-04-04": "Good Friday", + "1980-05-01": "Labor Day", + "1980-06-05": "Feast of Corpus Christi", + "1980-08-16": "Restoration Day", + "1980-09-24": "Our Lady of Mercedes Day", + "1980-11-06": "Constitution Day", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-01-06": "Epiphany", + "1981-01-21": "Lady of Altagracia", + "1981-01-26": "Juan Pablo Duarte Day", + "1981-02-27": "Independence Day", + "1981-04-17": "Good Friday", + "1981-05-01": "Labor Day", + "1981-06-18": "Feast of Corpus Christi", + "1981-08-16": "Restoration Day", + "1981-09-24": "Our Lady of Mercedes Day", + "1981-11-06": "Constitution Day", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-01-06": "Epiphany", + "1982-01-21": "Lady of Altagracia", + "1982-01-26": "Juan Pablo Duarte Day", + "1982-02-27": "Independence Day", + "1982-04-09": "Good Friday", + "1982-05-01": "Labor Day", + "1982-06-10": "Feast of Corpus Christi", + "1982-08-16": "Restoration Day", + "1982-09-24": "Our Lady of Mercedes Day", + "1982-11-06": "Constitution Day", + "1982-12-25": "Christmas Day", + "1983-01-01": "New Year's Day", + "1983-01-06": "Epiphany", + "1983-01-21": "Lady of Altagracia", + "1983-01-26": "Juan Pablo Duarte Day", + "1983-02-27": "Independence Day", + "1983-04-01": "Good Friday", + "1983-05-01": "Labor Day", + "1983-06-02": "Feast of Corpus Christi", + "1983-08-16": "Restoration Day", + "1983-09-24": "Our Lady of Mercedes Day", + "1983-11-06": "Constitution Day", + "1983-12-25": "Christmas Day", + "1984-01-01": "New Year's Day", + "1984-01-06": "Epiphany", + "1984-01-21": "Lady of Altagracia", + "1984-01-26": "Juan Pablo Duarte Day", + "1984-02-27": "Independence Day", + "1984-04-20": "Good Friday", + "1984-05-01": "Labor Day", + "1984-06-21": "Feast of Corpus Christi", + "1984-08-16": "Restoration Day", + "1984-09-24": "Our Lady of Mercedes Day", + "1984-11-06": "Constitution Day", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-01-06": "Epiphany", + "1985-01-21": "Lady of Altagracia", + "1985-01-26": "Juan Pablo Duarte Day", + "1985-02-27": "Independence Day", + "1985-04-05": "Good Friday", + "1985-05-01": "Labor Day", + "1985-06-06": "Feast of Corpus Christi", + "1985-08-16": "Restoration Day", + "1985-09-24": "Our Lady of Mercedes Day", + "1985-11-06": "Constitution Day", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-01-06": "Epiphany", + "1986-01-21": "Lady of Altagracia", + "1986-01-26": "Juan Pablo Duarte Day", + "1986-02-27": "Independence Day", + "1986-03-28": "Good Friday", + "1986-05-01": "Labor Day", + "1986-05-29": "Feast of Corpus Christi", + "1986-08-16": "Restoration Day", + "1986-09-24": "Our Lady of Mercedes Day", + "1986-11-06": "Constitution Day", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-01-06": "Epiphany", + "1987-01-21": "Lady of Altagracia", + "1987-01-26": "Juan Pablo Duarte Day", + "1987-02-27": "Independence Day", + "1987-04-17": "Good Friday", + "1987-05-01": "Labor Day", + "1987-06-18": "Feast of Corpus Christi", + "1987-08-16": "Restoration Day", + "1987-09-24": "Our Lady of Mercedes Day", + "1987-11-06": "Constitution Day", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-01-06": "Epiphany", + "1988-01-21": "Lady of Altagracia", + "1988-01-26": "Juan Pablo Duarte Day", + "1988-02-27": "Independence Day", + "1988-04-01": "Good Friday", + "1988-05-01": "Labor Day", + "1988-06-02": "Feast of Corpus Christi", + "1988-08-16": "Restoration Day", + "1988-09-24": "Our Lady of Mercedes Day", + "1988-11-06": "Constitution Day", + "1988-12-25": "Christmas Day", + "1989-01-01": "New Year's Day", + "1989-01-06": "Epiphany", + "1989-01-21": "Lady of Altagracia", + "1989-01-26": "Juan Pablo Duarte Day", + "1989-02-27": "Independence Day", + "1989-03-24": "Good Friday", + "1989-05-01": "Labor Day", + "1989-05-25": "Feast of Corpus Christi", + "1989-08-16": "Restoration Day", + "1989-09-24": "Our Lady of Mercedes Day", + "1989-11-06": "Constitution Day", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-01-06": "Epiphany", + "1990-01-21": "Lady of Altagracia", + "1990-01-26": "Juan Pablo Duarte Day", + "1990-02-27": "Independence Day", + "1990-04-13": "Good Friday", + "1990-05-01": "Labor Day", + "1990-06-14": "Feast of Corpus Christi", + "1990-08-16": "Restoration Day", + "1990-09-24": "Our Lady of Mercedes Day", + "1990-11-06": "Constitution Day", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-01-06": "Epiphany", + "1991-01-21": "Lady of Altagracia", + "1991-01-26": "Juan Pablo Duarte Day", + "1991-02-27": "Independence Day", + "1991-03-29": "Good Friday", + "1991-05-01": "Labor Day", + "1991-05-30": "Feast of Corpus Christi", + "1991-08-16": "Restoration Day", + "1991-09-24": "Our Lady of Mercedes Day", + "1991-11-06": "Constitution Day", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-01-06": "Epiphany", + "1992-01-21": "Lady of Altagracia", + "1992-01-26": "Juan Pablo Duarte Day", + "1992-02-27": "Independence Day", + "1992-04-17": "Good Friday", + "1992-05-01": "Labor Day", + "1992-06-18": "Feast of Corpus Christi", + "1992-08-16": "Restoration Day", + "1992-09-24": "Our Lady of Mercedes Day", + "1992-11-06": "Constitution Day", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-01-06": "Epiphany", + "1993-01-21": "Lady of Altagracia", + "1993-01-26": "Juan Pablo Duarte Day", + "1993-02-27": "Independence Day", + "1993-04-09": "Good Friday", + "1993-05-01": "Labor Day", + "1993-06-10": "Feast of Corpus Christi", + "1993-08-16": "Restoration Day", + "1993-09-24": "Our Lady of Mercedes Day", + "1993-11-06": "Constitution Day", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-01-06": "Epiphany", + "1994-01-21": "Lady of Altagracia", + "1994-01-26": "Juan Pablo Duarte Day", + "1994-02-27": "Independence Day", + "1994-04-01": "Good Friday", + "1994-05-01": "Labor Day", + "1994-06-02": "Feast of Corpus Christi", + "1994-08-16": "Restoration Day", + "1994-09-24": "Our Lady of Mercedes Day", + "1994-11-06": "Constitution Day", + "1994-12-25": "Christmas Day", + "1995-01-01": "New Year's Day", + "1995-01-06": "Epiphany", + "1995-01-21": "Lady of Altagracia", + "1995-01-26": "Juan Pablo Duarte Day", + "1995-02-27": "Independence Day", + "1995-04-14": "Good Friday", + "1995-05-01": "Labor Day", + "1995-06-15": "Feast of Corpus Christi", + "1995-08-16": "Restoration Day", + "1995-09-24": "Our Lady of Mercedes Day", + "1995-11-06": "Constitution Day", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-01-06": "Epiphany", + "1996-01-21": "Lady of Altagracia", + "1996-01-26": "Juan Pablo Duarte Day", + "1996-02-27": "Independence Day", + "1996-04-05": "Good Friday", + "1996-05-01": "Labor Day", + "1996-06-06": "Feast of Corpus Christi", + "1996-08-16": "Restoration Day", + "1996-09-24": "Our Lady of Mercedes Day", + "1996-11-06": "Constitution Day", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-01-06": "Epiphany", + "1997-01-21": "Lady of Altagracia", + "1997-01-26": "Juan Pablo Duarte Day", + "1997-02-27": "Independence Day", + "1997-03-28": "Good Friday", + "1997-05-01": "Labor Day", + "1997-05-29": "Feast of Corpus Christi", + "1997-08-16": "Restoration Day", + "1997-09-24": "Our Lady of Mercedes Day", + "1997-11-10": "Constitution Day", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-01-05": "Epiphany", + "1998-01-21": "Lady of Altagracia", + "1998-01-26": "Juan Pablo Duarte Day", + "1998-02-27": "Independence Day", + "1998-04-10": "Good Friday", + "1998-05-04": "Labor Day", + "1998-06-11": "Feast of Corpus Christi", + "1998-08-16": "Restoration Day", + "1998-09-24": "Our Lady of Mercedes Day", + "1998-11-09": "Constitution Day", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-01-04": "Epiphany", + "1999-01-21": "Lady of Altagracia", + "1999-01-25": "Juan Pablo Duarte Day", + "1999-02-27": "Independence Day", + "1999-04-02": "Good Friday", + "1999-05-01": "Labor Day", + "1999-06-03": "Feast of Corpus Christi", + "1999-08-16": "Restoration Day", + "1999-09-24": "Our Lady of Mercedes Day", + "1999-11-06": "Constitution Day", + "1999-12-25": "Christmas Day", + "2000-01-01": "New Year's Day", + "2000-01-10": "Epiphany", + "2000-01-21": "Lady of Altagracia", + "2000-01-24": "Juan Pablo Duarte Day", + "2000-02-27": "Independence Day", + "2000-04-21": "Good Friday", + "2000-05-01": "Labor Day", + "2000-06-22": "Feast of Corpus Christi", + "2000-08-16": "Restoration Day", + "2000-09-24": "Our Lady of Mercedes Day", + "2000-11-06": "Constitution Day", + "2000-12-25": "Christmas Day", + "2001-01-01": "New Year's Day", + "2001-01-06": "Epiphany", + "2001-01-21": "Lady of Altagracia", + "2001-01-29": "Juan Pablo Duarte Day", + "2001-02-27": "Independence Day", + "2001-04-13": "Good Friday", + "2001-04-30": "Labor Day", + "2001-06-14": "Feast of Corpus Christi", + "2001-08-20": "Restoration Day", + "2001-09-24": "Our Lady of Mercedes Day", + "2001-11-05": "Constitution Day", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-01-06": "Epiphany", + "2002-01-21": "Lady of Altagracia", + "2002-01-26": "Juan Pablo Duarte Day", + "2002-02-27": "Independence Day", + "2002-03-29": "Good Friday", + "2002-04-29": "Labor Day", + "2002-05-30": "Feast of Corpus Christi", + "2002-08-19": "Restoration Day", + "2002-09-24": "Our Lady of Mercedes Day", + "2002-11-04": "Constitution Day", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-01-06": "Epiphany", + "2003-01-21": "Lady of Altagracia", + "2003-01-26": "Juan Pablo Duarte Day", + "2003-02-27": "Independence Day", + "2003-04-18": "Good Friday", + "2003-05-05": "Labor Day", + "2003-06-19": "Feast of Corpus Christi", + "2003-08-16": "Restoration Day", + "2003-09-24": "Our Lady of Mercedes Day", + "2003-11-10": "Constitution Day", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-01-05": "Epiphany", + "2004-01-21": "Lady of Altagracia", + "2004-01-26": "Juan Pablo Duarte Day", + "2004-02-27": "Independence Day", + "2004-04-09": "Good Friday", + "2004-05-01": "Labor Day", + "2004-06-10": "Feast of Corpus Christi", + "2004-08-16": "Restoration Day", + "2004-09-24": "Our Lady of Mercedes Day", + "2004-11-06": "Constitution Day", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-01-10": "Epiphany", + "2005-01-21": "Lady of Altagracia", + "2005-01-24": "Juan Pablo Duarte Day", + "2005-02-27": "Independence Day", + "2005-03-25": "Good Friday", + "2005-05-02": "Labor Day", + "2005-05-26": "Feast of Corpus Christi", + "2005-08-15": "Restoration Day", + "2005-09-24": "Our Lady of Mercedes Day", + "2005-11-06": "Constitution Day", + "2005-12-25": "Christmas Day", + "2006-01-01": "New Year's Day", + "2006-01-09": "Epiphany", + "2006-01-21": "Lady of Altagracia", + "2006-01-30": "Juan Pablo Duarte Day", + "2006-02-27": "Independence Day", + "2006-04-14": "Good Friday", + "2006-05-01": "Labor Day", + "2006-06-15": "Feast of Corpus Christi", + "2006-08-14": "Restoration Day", + "2006-09-24": "Our Lady of Mercedes Day", + "2006-11-06": "Constitution Day", + "2006-12-25": "Christmas Day", + "2007-01-01": "New Year's Day", + "2007-01-06": "Epiphany", + "2007-01-21": "Lady of Altagracia", + "2007-01-29": "Juan Pablo Duarte Day", + "2007-02-27": "Independence Day", + "2007-04-06": "Good Friday", + "2007-04-30": "Labor Day", + "2007-06-07": "Feast of Corpus Christi", + "2007-08-20": "Restoration Day", + "2007-09-24": "Our Lady of Mercedes Day", + "2007-11-05": "Constitution Day", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-01-06": "Epiphany", + "2008-01-21": "Lady of Altagracia", + "2008-01-26": "Juan Pablo Duarte Day", + "2008-02-27": "Independence Day", + "2008-03-21": "Good Friday", + "2008-05-05": "Labor Day", + "2008-05-22": "Feast of Corpus Christi", + "2008-08-16": "Restoration Day", + "2008-09-24": "Our Lady of Mercedes Day", + "2008-11-10": "Constitution Day", + "2008-12-25": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-01-05": "Epiphany", + "2009-01-21": "Lady of Altagracia", + "2009-01-26": "Juan Pablo Duarte Day", + "2009-02-27": "Independence Day", + "2009-04-10": "Good Friday", + "2009-05-04": "Labor Day", + "2009-06-11": "Feast of Corpus Christi", + "2009-08-16": "Restoration Day", + "2009-09-24": "Our Lady of Mercedes Day", + "2009-11-09": "Constitution Day", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-01-04": "Epiphany", + "2010-01-21": "Lady of Altagracia", + "2010-01-25": "Juan Pablo Duarte Day", + "2010-02-27": "Independence Day", + "2010-04-02": "Good Friday", + "2010-05-01": "Labor Day", + "2010-06-03": "Feast of Corpus Christi", + "2010-08-16": "Restoration Day", + "2010-09-24": "Our Lady of Mercedes Day", + "2010-11-06": "Constitution Day", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-01-10": "Epiphany", + "2011-01-21": "Lady of Altagracia", + "2011-01-24": "Juan Pablo Duarte Day", + "2011-02-27": "Independence Day", + "2011-04-22": "Good Friday", + "2011-05-02": "Labor Day", + "2011-06-23": "Feast of Corpus Christi", + "2011-08-15": "Restoration Day", + "2011-09-24": "Our Lady of Mercedes Day", + "2011-11-06": "Constitution Day", + "2011-12-25": "Christmas Day", + "2012-01-01": "New Year's Day", + "2012-01-09": "Epiphany", + "2012-01-21": "Lady of Altagracia", + "2012-01-30": "Juan Pablo Duarte Day", + "2012-02-27": "Independence Day", + "2012-04-06": "Good Friday", + "2012-04-30": "Labor Day", + "2012-06-07": "Feast of Corpus Christi", + "2012-08-20": "Restoration Day", + "2012-09-24": "Our Lady of Mercedes Day", + "2012-11-05": "Constitution Day", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-01-06": "Epiphany", + "2013-01-21": "Lady of Altagracia", + "2013-01-26": "Juan Pablo Duarte Day", + "2013-02-27": "Independence Day", + "2013-03-29": "Good Friday", + "2013-04-29": "Labor Day", + "2013-05-30": "Feast of Corpus Christi", + "2013-08-19": "Restoration Day", + "2013-09-24": "Our Lady of Mercedes Day", + "2013-11-04": "Constitution Day", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-06": "Epiphany", + "2014-01-21": "Lady of Altagracia", + "2014-01-26": "Juan Pablo Duarte Day", + "2014-02-27": "Independence Day", + "2014-04-18": "Good Friday", + "2014-05-05": "Labor Day", + "2014-06-19": "Feast of Corpus Christi", + "2014-08-16": "Restoration Day", + "2014-09-24": "Our Lady of Mercedes Day", + "2014-11-10": "Constitution Day", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-01-05": "Epiphany", + "2015-01-21": "Lady of Altagracia", + "2015-01-26": "Juan Pablo Duarte Day", + "2015-02-27": "Independence Day", + "2015-04-03": "Good Friday", + "2015-05-04": "Labor Day", + "2015-06-04": "Feast of Corpus Christi", + "2015-08-16": "Restoration Day", + "2015-09-24": "Our Lady of Mercedes Day", + "2015-11-09": "Constitution Day", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-01-04": "Epiphany", + "2016-01-21": "Lady of Altagracia", + "2016-01-25": "Juan Pablo Duarte Day", + "2016-02-27": "Independence Day", + "2016-03-25": "Good Friday", + "2016-05-02": "Labor Day", + "2016-05-26": "Feast of Corpus Christi", + "2016-08-15": "Restoration Day", + "2016-09-24": "Our Lady of Mercedes Day", + "2016-11-06": "Constitution Day", + "2016-12-25": "Christmas Day", + "2017-01-01": "New Year's Day", + "2017-01-09": "Epiphany", + "2017-01-21": "Lady of Altagracia", + "2017-01-30": "Juan Pablo Duarte Day", + "2017-02-27": "Independence Day", + "2017-04-14": "Good Friday", + "2017-05-01": "Labor Day", + "2017-06-15": "Feast of Corpus Christi", + "2017-08-14": "Restoration Day", + "2017-09-24": "Our Lady of Mercedes Day", + "2017-11-06": "Constitution Day", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-01-06": "Epiphany", + "2018-01-21": "Lady of Altagracia", + "2018-01-29": "Juan Pablo Duarte Day", + "2018-02-27": "Independence Day", + "2018-03-30": "Good Friday", + "2018-04-30": "Labor Day", + "2018-05-31": "Feast of Corpus Christi", + "2018-08-20": "Restoration Day", + "2018-09-24": "Our Lady of Mercedes Day", + "2018-11-05": "Constitution Day", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-01-06": "Epiphany", + "2019-01-21": "Lady of Altagracia", + "2019-01-26": "Juan Pablo Duarte Day", + "2019-02-27": "Independence Day", + "2019-04-19": "Good Friday", + "2019-04-29": "Labor Day", + "2019-06-20": "Feast of Corpus Christi", + "2019-08-19": "Restoration Day", + "2019-09-24": "Our Lady of Mercedes Day", + "2019-11-04": "Constitution Day", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-01-06": "Epiphany", + "2020-01-21": "Lady of Altagracia", + "2020-01-26": "Juan Pablo Duarte Day", + "2020-02-27": "Independence Day", + "2020-04-10": "Good Friday", + "2020-05-04": "Labor Day", + "2020-06-11": "Feast of Corpus Christi", + "2020-08-16": "Restoration Day", + "2020-09-24": "Our Lady of Mercedes Day", + "2020-11-09": "Constitution Day", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-01-04": "Epiphany", + "2021-01-21": "Lady of Altagracia", + "2021-01-25": "Juan Pablo Duarte Day", + "2021-02-27": "Independence Day", + "2021-04-02": "Good Friday", + "2021-05-01": "Labor Day", + "2021-06-03": "Feast of Corpus Christi", + "2021-08-16": "Restoration Day", + "2021-09-24": "Our Lady of Mercedes Day", + "2021-11-06": "Constitution Day", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-01-10": "Epiphany", + "2022-01-21": "Lady of Altagracia", + "2022-01-24": "Juan Pablo Duarte Day", + "2022-02-27": "Independence Day", + "2022-04-15": "Good Friday", + "2022-05-02": "Labor Day", + "2022-06-16": "Feast of Corpus Christi", + "2022-08-15": "Restoration Day", + "2022-09-24": "Our Lady of Mercedes Day", + "2022-11-06": "Constitution Day", + "2022-12-25": "Christmas Day", + "2023-01-01": "New Year's Day", + "2023-01-09": "Epiphany", + "2023-01-21": "Lady of Altagracia", + "2023-01-30": "Juan Pablo Duarte Day", + "2023-02-27": "Independence Day", + "2023-04-07": "Good Friday", + "2023-05-01": "Labor Day", + "2023-06-08": "Feast of Corpus Christi", + "2023-08-14": "Restoration Day", + "2023-09-24": "Our Lady of Mercedes Day", + "2023-11-06": "Constitution Day", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-01-06": "Epiphany", + "2024-01-21": "Lady of Altagracia", + "2024-01-29": "Juan Pablo Duarte Day", + "2024-02-27": "Independence Day", + "2024-03-29": "Good Friday", + "2024-04-29": "Labor Day", + "2024-05-30": "Feast of Corpus Christi", + "2024-08-19": "Restoration Day", + "2024-09-24": "Our Lady of Mercedes Day", + "2024-11-04": "Constitution Day", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-01-06": "Epiphany", + "2025-01-21": "Lady of Altagracia", + "2025-01-26": "Juan Pablo Duarte Day", + "2025-02-27": "Independence Day", + "2025-04-18": "Good Friday", + "2025-05-05": "Labor Day", + "2025-06-19": "Feast of Corpus Christi", + "2025-08-16": "Restoration Day", + "2025-09-24": "Our Lady of Mercedes Day", + "2025-11-10": "Constitution Day", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-01-05": "Epiphany", + "2026-01-21": "Lady of Altagracia", + "2026-01-26": "Juan Pablo Duarte Day", + "2026-02-27": "Independence Day", + "2026-04-03": "Good Friday", + "2026-05-04": "Labor Day", + "2026-06-04": "Feast of Corpus Christi", + "2026-08-16": "Restoration Day", + "2026-09-24": "Our Lady of Mercedes Day", + "2026-11-09": "Constitution Day", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-01-04": "Epiphany", + "2027-01-21": "Lady of Altagracia", + "2027-01-25": "Juan Pablo Duarte Day", + "2027-02-27": "Independence Day", + "2027-03-26": "Good Friday", + "2027-05-01": "Labor Day", + "2027-05-27": "Feast of Corpus Christi", + "2027-08-16": "Restoration Day", + "2027-09-24": "Our Lady of Mercedes Day", + "2027-11-06": "Constitution Day", + "2027-12-25": "Christmas Day", + "2028-01-01": "New Year's Day", + "2028-01-10": "Epiphany", + "2028-01-21": "Lady of Altagracia", + "2028-01-24": "Juan Pablo Duarte Day", + "2028-02-27": "Independence Day", + "2028-04-14": "Good Friday", + "2028-05-01": "Labor Day", + "2028-06-15": "Feast of Corpus Christi", + "2028-08-14": "Restoration Day", + "2028-09-24": "Our Lady of Mercedes Day", + "2028-11-06": "Constitution Day", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-01-06": "Epiphany", + "2029-01-21": "Lady of Altagracia", + "2029-01-29": "Juan Pablo Duarte Day", + "2029-02-27": "Independence Day", + "2029-03-30": "Good Friday", + "2029-04-30": "Labor Day", + "2029-05-31": "Feast of Corpus Christi", + "2029-08-20": "Restoration Day", + "2029-09-24": "Our Lady of Mercedes Day", + "2029-11-05": "Constitution Day", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-01-06": "Epiphany", + "2030-01-21": "Lady of Altagracia", + "2030-01-26": "Juan Pablo Duarte Day", + "2030-02-27": "Independence Day", + "2030-04-19": "Good Friday", + "2030-04-29": "Labor Day", + "2030-06-20": "Feast of Corpus Christi", + "2030-08-19": "Restoration Day", + "2030-09-24": "Our Lady of Mercedes Day", + "2030-11-04": "Constitution Day", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-01-06": "Epiphany", + "2031-01-21": "Lady of Altagracia", + "2031-01-26": "Juan Pablo Duarte Day", + "2031-02-27": "Independence Day", + "2031-04-11": "Good Friday", + "2031-05-05": "Labor Day", + "2031-06-12": "Feast of Corpus Christi", + "2031-08-16": "Restoration Day", + "2031-09-24": "Our Lady of Mercedes Day", + "2031-11-10": "Constitution Day", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-01-05": "Epiphany", + "2032-01-21": "Lady of Altagracia", + "2032-01-26": "Juan Pablo Duarte Day", + "2032-02-27": "Independence Day", + "2032-03-26": "Good Friday", + "2032-05-01": "Labor Day", + "2032-05-27": "Feast of Corpus Christi", + "2032-08-16": "Restoration Day", + "2032-09-24": "Our Lady of Mercedes Day", + "2032-11-06": "Constitution Day", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-01-10": "Epiphany", + "2033-01-21": "Lady of Altagracia", + "2033-01-24": "Juan Pablo Duarte Day", + "2033-02-27": "Independence Day", + "2033-04-15": "Good Friday", + "2033-05-02": "Labor Day", + "2033-06-16": "Feast of Corpus Christi", + "2033-08-15": "Restoration Day", + "2033-09-24": "Our Lady of Mercedes Day", + "2033-11-06": "Constitution Day", + "2033-12-25": "Christmas Day", + "2034-01-01": "New Year's Day", + "2034-01-09": "Epiphany", + "2034-01-21": "Lady of Altagracia", + "2034-01-30": "Juan Pablo Duarte Day", + "2034-02-27": "Independence Day", + "2034-04-07": "Good Friday", + "2034-05-01": "Labor Day", + "2034-06-08": "Feast of Corpus Christi", + "2034-08-14": "Restoration Day", + "2034-09-24": "Our Lady of Mercedes Day", + "2034-11-06": "Constitution Day", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-01-06": "Epiphany", + "2035-01-21": "Lady of Altagracia", + "2035-01-29": "Juan Pablo Duarte Day", + "2035-02-27": "Independence Day", + "2035-03-23": "Good Friday", + "2035-04-30": "Labor Day", + "2035-05-24": "Feast of Corpus Christi", + "2035-08-20": "Restoration Day", + "2035-09-24": "Our Lady of Mercedes Day", + "2035-11-05": "Constitution Day", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-01-06": "Epiphany", + "2036-01-21": "Lady of Altagracia", + "2036-01-26": "Juan Pablo Duarte Day", + "2036-02-27": "Independence Day", + "2036-04-11": "Good Friday", + "2036-05-05": "Labor Day", + "2036-06-12": "Feast of Corpus Christi", + "2036-08-16": "Restoration Day", + "2036-09-24": "Our Lady of Mercedes Day", + "2036-11-10": "Constitution Day", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-05": "Epiphany", + "2037-01-21": "Lady of Altagracia", + "2037-01-26": "Juan Pablo Duarte Day", + "2037-02-27": "Independence Day", + "2037-04-03": "Good Friday", + "2037-05-04": "Labor Day", + "2037-06-04": "Feast of Corpus Christi", + "2037-08-16": "Restoration Day", + "2037-09-24": "Our Lady of Mercedes Day", + "2037-11-09": "Constitution Day", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-01-04": "Epiphany", + "2038-01-21": "Lady of Altagracia", + "2038-01-25": "Juan Pablo Duarte Day", + "2038-02-27": "Independence Day", + "2038-04-23": "Good Friday", + "2038-05-01": "Labor Day", + "2038-06-24": "Feast of Corpus Christi", + "2038-08-16": "Restoration Day", + "2038-09-24": "Our Lady of Mercedes Day", + "2038-11-06": "Constitution Day", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-01-10": "Epiphany", + "2039-01-21": "Lady of Altagracia", + "2039-01-24": "Juan Pablo Duarte Day", + "2039-02-27": "Independence Day", + "2039-04-08": "Good Friday", + "2039-05-02": "Labor Day", + "2039-06-09": "Feast of Corpus Christi", + "2039-08-15": "Restoration Day", + "2039-09-24": "Our Lady of Mercedes Day", + "2039-11-06": "Constitution Day", + "2039-12-25": "Christmas Day", + "2040-01-01": "New Year's Day", + "2040-01-09": "Epiphany", + "2040-01-21": "Lady of Altagracia", + "2040-01-30": "Juan Pablo Duarte Day", + "2040-02-27": "Independence Day", + "2040-03-30": "Good Friday", + "2040-04-30": "Labor Day", + "2040-05-31": "Feast of Corpus Christi", + "2040-08-20": "Restoration Day", + "2040-09-24": "Our Lady of Mercedes Day", + "2040-11-05": "Constitution Day", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-01-06": "Epiphany", + "2041-01-21": "Lady of Altagracia", + "2041-01-26": "Juan Pablo Duarte Day", + "2041-02-27": "Independence Day", + "2041-04-19": "Good Friday", + "2041-04-29": "Labor Day", + "2041-06-20": "Feast of Corpus Christi", + "2041-08-19": "Restoration Day", + "2041-09-24": "Our Lady of Mercedes Day", + "2041-11-04": "Constitution Day", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-01-06": "Epiphany", + "2042-01-21": "Lady of Altagracia", + "2042-01-26": "Juan Pablo Duarte Day", + "2042-02-27": "Independence Day", + "2042-04-04": "Good Friday", + "2042-05-05": "Labor Day", + "2042-06-05": "Feast of Corpus Christi", + "2042-08-16": "Restoration Day", + "2042-09-24": "Our Lady of Mercedes Day", + "2042-11-10": "Constitution Day", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-01-05": "Epiphany", + "2043-01-21": "Lady of Altagracia", + "2043-01-26": "Juan Pablo Duarte Day", + "2043-02-27": "Independence Day", + "2043-03-27": "Good Friday", + "2043-05-04": "Labor Day", + "2043-05-28": "Feast of Corpus Christi", + "2043-08-16": "Restoration Day", + "2043-09-24": "Our Lady of Mercedes Day", + "2043-11-09": "Constitution Day", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-01-04": "Epiphany", + "2044-01-21": "Lady of Altagracia", + "2044-01-25": "Juan Pablo Duarte Day", + "2044-02-27": "Independence Day", + "2044-04-15": "Good Friday", + "2044-05-02": "Labor Day", + "2044-06-16": "Feast of Corpus Christi", + "2044-08-15": "Restoration Day", + "2044-09-24": "Our Lady of Mercedes Day", + "2044-11-06": "Constitution Day", + "2044-12-25": "Christmas Day", + "2045-01-01": "New Year's Day", + "2045-01-09": "Epiphany", + "2045-01-21": "Lady of Altagracia", + "2045-01-30": "Juan Pablo Duarte Day", + "2045-02-27": "Independence Day", + "2045-04-07": "Good Friday", + "2045-05-01": "Labor Day", + "2045-06-08": "Feast of Corpus Christi", + "2045-08-14": "Restoration Day", + "2045-09-24": "Our Lady of Mercedes Day", + "2045-11-06": "Constitution Day", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-01-06": "Epiphany", + "2046-01-21": "Lady of Altagracia", + "2046-01-29": "Juan Pablo Duarte Day", + "2046-02-27": "Independence Day", + "2046-03-23": "Good Friday", + "2046-04-30": "Labor Day", + "2046-05-24": "Feast of Corpus Christi", + "2046-08-20": "Restoration Day", + "2046-09-24": "Our Lady of Mercedes Day", + "2046-11-05": "Constitution Day", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-06": "Epiphany", + "2047-01-21": "Lady of Altagracia", + "2047-01-26": "Juan Pablo Duarte Day", + "2047-02-27": "Independence Day", + "2047-04-12": "Good Friday", + "2047-04-29": "Labor Day", + "2047-06-13": "Feast of Corpus Christi", + "2047-08-19": "Restoration Day", + "2047-09-24": "Our Lady of Mercedes Day", + "2047-11-04": "Constitution Day", + "2047-12-25": "Christmas Day", + "2048-01-01": "New Year's Day", + "2048-01-06": "Epiphany", + "2048-01-21": "Lady of Altagracia", + "2048-01-26": "Juan Pablo Duarte Day", + "2048-02-27": "Independence Day", + "2048-04-03": "Good Friday", + "2048-05-04": "Labor Day", + "2048-06-04": "Feast of Corpus Christi", + "2048-08-16": "Restoration Day", + "2048-09-24": "Our Lady of Mercedes Day", + "2048-11-09": "Constitution Day", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-01-04": "Epiphany", + "2049-01-21": "Lady of Altagracia", + "2049-01-25": "Juan Pablo Duarte Day", + "2049-02-27": "Independence Day", + "2049-04-16": "Good Friday", + "2049-05-01": "Labor Day", + "2049-06-17": "Feast of Corpus Christi", + "2049-08-16": "Restoration Day", + "2049-09-24": "Our Lady of Mercedes Day", + "2049-11-06": "Constitution Day", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-01-10": "Epiphany", + "2050-01-21": "Lady of Altagracia", + "2050-01-24": "Juan Pablo Duarte Day", + "2050-02-27": "Independence Day", + "2050-04-08": "Good Friday", + "2050-05-02": "Labor Day", + "2050-06-09": "Feast of Corpus Christi", + "2050-08-15": "Restoration Day", + "2050-09-24": "Our Lady of Mercedes Day", + "2050-11-06": "Constitution Day", + "2050-12-25": "Christmas Day" +} diff --git a/snapshots/countries/DZ.json b/snapshots/countries/DZ.json new file mode 100644 index 000000000..c6351c0bc --- /dev/null +++ b/snapshots/countries/DZ.json @@ -0,0 +1,1191 @@ +{ + "1950-01-01": "New Year's Day; Prophet's Birthday* (*estimated)", + "1950-05-01": "Labor Day", + "1950-07-16": "Eid al-Fitr* (*estimated)", + "1950-07-17": "Eid al-Fitr Holiday* (*estimated)", + "1950-09-23": "Eid al-Adha* (*estimated)", + "1950-09-24": "Eid al-Adha Holiday* (*estimated)", + "1950-10-13": "Islamic New Year* (*estimated)", + "1950-10-22": "Ashura* (*estimated)", + "1950-12-22": "Prophet's Birthday* (*estimated)", + "1951-01-01": "New Year's Day", + "1951-05-01": "Labor Day", + "1951-07-06": "Eid al-Fitr* (*estimated)", + "1951-07-07": "Eid al-Fitr Holiday* (*estimated)", + "1951-09-12": "Eid al-Adha* (*estimated)", + "1951-09-13": "Eid al-Adha Holiday* (*estimated)", + "1951-10-02": "Islamic New Year* (*estimated)", + "1951-10-11": "Ashura* (*estimated)", + "1951-12-11": "Prophet's Birthday* (*estimated)", + "1952-01-01": "New Year's Day", + "1952-05-01": "Labor Day", + "1952-06-23": "Eid al-Fitr* (*estimated)", + "1952-06-24": "Eid al-Fitr Holiday* (*estimated)", + "1952-08-31": "Eid al-Adha* (*estimated)", + "1952-09-01": "Eid al-Adha Holiday* (*estimated)", + "1952-09-21": "Islamic New Year* (*estimated)", + "1952-09-30": "Ashura* (*estimated)", + "1952-11-30": "Prophet's Birthday* (*estimated)", + "1953-01-01": "New Year's Day", + "1953-05-01": "Labor Day", + "1953-06-13": "Eid al-Fitr* (*estimated)", + "1953-06-14": "Eid al-Fitr Holiday* (*estimated)", + "1953-08-20": "Eid al-Adha* (*estimated)", + "1953-08-21": "Eid al-Adha Holiday* (*estimated)", + "1953-09-10": "Islamic New Year* (*estimated)", + "1953-09-19": "Ashura* (*estimated)", + "1953-11-19": "Prophet's Birthday* (*estimated)", + "1954-01-01": "New Year's Day", + "1954-05-01": "Labor Day", + "1954-06-02": "Eid al-Fitr* (*estimated)", + "1954-06-03": "Eid al-Fitr Holiday* (*estimated)", + "1954-08-09": "Eid al-Adha* (*estimated)", + "1954-08-10": "Eid al-Adha Holiday* (*estimated)", + "1954-08-30": "Islamic New Year* (*estimated)", + "1954-09-08": "Ashura* (*estimated)", + "1954-11-08": "Prophet's Birthday* (*estimated)", + "1955-01-01": "New Year's Day", + "1955-05-01": "Labor Day", + "1955-05-23": "Eid al-Fitr* (*estimated)", + "1955-05-24": "Eid al-Fitr Holiday* (*estimated)", + "1955-07-30": "Eid al-Adha* (*estimated)", + "1955-07-31": "Eid al-Adha Holiday* (*estimated)", + "1955-08-20": "Islamic New Year* (*estimated)", + "1955-08-29": "Ashura* (*estimated)", + "1955-10-29": "Prophet's Birthday* (*estimated)", + "1956-01-01": "New Year's Day", + "1956-05-01": "Labor Day", + "1956-05-11": "Eid al-Fitr* (*estimated)", + "1956-05-12": "Eid al-Fitr Holiday* (*estimated)", + "1956-07-19": "Eid al-Adha* (*estimated)", + "1956-07-20": "Eid al-Adha Holiday* (*estimated)", + "1956-08-08": "Islamic New Year* (*estimated)", + "1956-08-17": "Ashura* (*estimated)", + "1956-10-17": "Prophet's Birthday* (*estimated)", + "1957-01-01": "New Year's Day", + "1957-05-01": "Eid al-Fitr* (*estimated); Labor Day", + "1957-05-02": "Eid al-Fitr Holiday* (*estimated)", + "1957-07-08": "Eid al-Adha* (*estimated)", + "1957-07-09": "Eid al-Adha Holiday* (*estimated)", + "1957-07-28": "Islamic New Year* (*estimated)", + "1957-08-06": "Ashura* (*estimated)", + "1957-10-06": "Prophet's Birthday* (*estimated)", + "1958-01-01": "New Year's Day", + "1958-04-20": "Eid al-Fitr* (*estimated)", + "1958-04-21": "Eid al-Fitr Holiday* (*estimated)", + "1958-05-01": "Labor Day", + "1958-06-27": "Eid al-Adha* (*estimated)", + "1958-06-28": "Eid al-Adha Holiday* (*estimated)", + "1958-07-18": "Islamic New Year* (*estimated)", + "1958-07-27": "Ashura* (*estimated)", + "1958-09-26": "Prophet's Birthday* (*estimated)", + "1959-01-01": "New Year's Day", + "1959-04-10": "Eid al-Fitr* (*estimated)", + "1959-04-11": "Eid al-Fitr Holiday* (*estimated)", + "1959-05-01": "Labor Day", + "1959-06-17": "Eid al-Adha* (*estimated)", + "1959-06-18": "Eid al-Adha Holiday* (*estimated)", + "1959-07-07": "Islamic New Year* (*estimated)", + "1959-07-16": "Ashura* (*estimated)", + "1959-09-15": "Prophet's Birthday* (*estimated)", + "1960-01-01": "New Year's Day", + "1960-03-28": "Eid al-Fitr* (*estimated)", + "1960-03-29": "Eid al-Fitr Holiday* (*estimated)", + "1960-05-01": "Labor Day", + "1960-06-04": "Eid al-Adha* (*estimated)", + "1960-06-05": "Eid al-Adha Holiday* (*estimated)", + "1960-06-25": "Islamic New Year* (*estimated)", + "1960-07-04": "Ashura* (*estimated)", + "1960-09-03": "Prophet's Birthday* (*estimated)", + "1961-01-01": "New Year's Day", + "1961-03-18": "Eid al-Fitr* (*estimated)", + "1961-03-19": "Eid al-Fitr Holiday* (*estimated)", + "1961-05-01": "Labor Day", + "1961-05-25": "Eid al-Adha* (*estimated)", + "1961-05-26": "Eid al-Adha Holiday* (*estimated)", + "1961-06-14": "Islamic New Year* (*estimated)", + "1961-06-23": "Ashura* (*estimated)", + "1961-08-23": "Prophet's Birthday* (*estimated)", + "1962-01-01": "New Year's Day", + "1962-03-07": "Eid al-Fitr* (*estimated)", + "1962-03-08": "Eid al-Fitr Holiday* (*estimated)", + "1962-05-01": "Labor Day", + "1962-05-14": "Eid al-Adha* (*estimated)", + "1962-05-15": "Eid al-Adha Holiday* (*estimated)", + "1962-06-03": "Islamic New Year* (*estimated)", + "1962-06-12": "Ashura* (*estimated)", + "1962-07-05": "Independence Day", + "1962-08-12": "Prophet's Birthday* (*estimated)", + "1963-01-01": "New Year's Day", + "1963-02-24": "Eid al-Fitr* (*estimated)", + "1963-02-25": "Eid al-Fitr Holiday* (*estimated)", + "1963-05-01": "Labor Day", + "1963-05-03": "Eid al-Adha* (*estimated)", + "1963-05-04": "Eid al-Adha Holiday* (*estimated)", + "1963-05-24": "Islamic New Year* (*estimated)", + "1963-06-02": "Ashura* (*estimated)", + "1963-07-05": "Independence Day", + "1963-08-02": "Prophet's Birthday* (*estimated)", + "1963-11-01": "Revolution Day", + "1964-01-01": "New Year's Day", + "1964-02-14": "Eid al-Fitr* (*estimated)", + "1964-02-15": "Eid al-Fitr Holiday* (*estimated)", + "1964-04-22": "Eid al-Adha* (*estimated)", + "1964-04-23": "Eid al-Adha Holiday* (*estimated)", + "1964-05-01": "Labor Day", + "1964-05-12": "Islamic New Year* (*estimated)", + "1964-05-21": "Ashura* (*estimated)", + "1964-07-05": "Independence Day", + "1964-07-21": "Prophet's Birthday* (*estimated)", + "1964-11-01": "Revolution Day", + "1965-01-01": "New Year's Day", + "1965-02-02": "Eid al-Fitr* (*estimated)", + "1965-02-03": "Eid al-Fitr Holiday* (*estimated)", + "1965-04-11": "Eid al-Adha* (*estimated)", + "1965-04-12": "Eid al-Adha Holiday* (*estimated)", + "1965-05-01": "Islamic New Year* (*estimated); Labor Day", + "1965-05-10": "Ashura* (*estimated)", + "1965-07-05": "Independence Day", + "1965-07-10": "Prophet's Birthday* (*estimated)", + "1965-11-01": "Revolution Day", + "1966-01-01": "New Year's Day", + "1966-01-22": "Eid al-Fitr* (*estimated)", + "1966-01-23": "Eid al-Fitr Holiday* (*estimated)", + "1966-04-01": "Eid al-Adha* (*estimated)", + "1966-04-02": "Eid al-Adha Holiday* (*estimated)", + "1966-04-21": "Islamic New Year* (*estimated)", + "1966-04-30": "Ashura* (*estimated)", + "1966-05-01": "Labor Day", + "1966-07-01": "Prophet's Birthday* (*estimated)", + "1966-07-05": "Independence Day", + "1966-11-01": "Revolution Day", + "1967-01-01": "New Year's Day", + "1967-01-12": "Eid al-Fitr* (*estimated)", + "1967-01-13": "Eid al-Fitr Holiday* (*estimated)", + "1967-03-21": "Eid al-Adha* (*estimated)", + "1967-03-22": "Eid al-Adha Holiday* (*estimated)", + "1967-04-11": "Islamic New Year* (*estimated)", + "1967-04-20": "Ashura* (*estimated)", + "1967-05-01": "Labor Day", + "1967-06-19": "Prophet's Birthday* (*estimated)", + "1967-07-05": "Independence Day", + "1967-11-01": "Revolution Day", + "1968-01-01": "Eid al-Fitr* (*estimated); New Year's Day", + "1968-01-02": "Eid al-Fitr Holiday* (*estimated)", + "1968-03-09": "Eid al-Adha* (*estimated)", + "1968-03-10": "Eid al-Adha Holiday* (*estimated)", + "1968-03-30": "Islamic New Year* (*estimated)", + "1968-04-08": "Ashura* (*estimated)", + "1968-05-01": "Labor Day", + "1968-06-08": "Prophet's Birthday* (*estimated)", + "1968-07-05": "Independence Day", + "1968-11-01": "Revolution Day", + "1968-12-21": "Eid al-Fitr* (*estimated)", + "1968-12-22": "Eid al-Fitr Holiday* (*estimated)", + "1969-01-01": "New Year's Day", + "1969-02-27": "Eid al-Adha* (*estimated)", + "1969-02-28": "Eid al-Adha Holiday* (*estimated)", + "1969-03-19": "Islamic New Year* (*estimated)", + "1969-03-28": "Ashura* (*estimated)", + "1969-05-01": "Labor Day", + "1969-05-28": "Prophet's Birthday* (*estimated)", + "1969-07-05": "Independence Day", + "1969-11-01": "Revolution Day", + "1969-12-10": "Eid al-Fitr* (*estimated)", + "1969-12-11": "Eid al-Fitr Holiday* (*estimated)", + "1970-01-01": "New Year's Day", + "1970-02-16": "Eid al-Adha* (*estimated)", + "1970-02-17": "Eid al-Adha Holiday* (*estimated)", + "1970-03-09": "Islamic New Year* (*estimated)", + "1970-03-18": "Ashura* (*estimated)", + "1970-05-01": "Labor Day", + "1970-05-18": "Prophet's Birthday* (*estimated)", + "1970-07-05": "Independence Day", + "1970-11-01": "Revolution Day", + "1970-11-30": "Eid al-Fitr* (*estimated)", + "1970-12-01": "Eid al-Fitr Holiday* (*estimated)", + "1971-01-01": "New Year's Day", + "1971-02-06": "Eid al-Adha* (*estimated)", + "1971-02-07": "Eid al-Adha Holiday* (*estimated)", + "1971-02-26": "Islamic New Year* (*estimated)", + "1971-03-07": "Ashura* (*estimated)", + "1971-05-01": "Labor Day", + "1971-05-07": "Prophet's Birthday* (*estimated)", + "1971-07-05": "Independence Day", + "1971-11-01": "Revolution Day", + "1971-11-19": "Eid al-Fitr* (*estimated)", + "1971-11-20": "Eid al-Fitr Holiday* (*estimated)", + "1972-01-01": "New Year's Day", + "1972-01-26": "Eid al-Adha* (*estimated)", + "1972-01-27": "Eid al-Adha Holiday* (*estimated)", + "1972-02-16": "Islamic New Year* (*estimated)", + "1972-02-25": "Ashura* (*estimated)", + "1972-04-25": "Prophet's Birthday* (*estimated)", + "1972-05-01": "Labor Day", + "1972-07-05": "Independence Day", + "1972-11-01": "Revolution Day", + "1972-11-07": "Eid al-Fitr* (*estimated)", + "1972-11-08": "Eid al-Fitr Holiday* (*estimated)", + "1973-01-01": "New Year's Day", + "1973-01-14": "Eid al-Adha* (*estimated)", + "1973-01-15": "Eid al-Adha Holiday* (*estimated)", + "1973-02-04": "Islamic New Year* (*estimated)", + "1973-02-13": "Ashura* (*estimated)", + "1973-04-15": "Prophet's Birthday* (*estimated)", + "1973-05-01": "Labor Day", + "1973-07-05": "Independence Day", + "1973-10-27": "Eid al-Fitr* (*estimated)", + "1973-10-28": "Eid al-Fitr Holiday* (*estimated)", + "1973-11-01": "Revolution Day", + "1974-01-01": "New Year's Day", + "1974-01-03": "Eid al-Adha* (*estimated)", + "1974-01-04": "Eid al-Adha Holiday* (*estimated)", + "1974-01-24": "Islamic New Year* (*estimated)", + "1974-02-02": "Ashura* (*estimated)", + "1974-04-04": "Prophet's Birthday* (*estimated)", + "1974-05-01": "Labor Day", + "1974-07-05": "Independence Day", + "1974-10-16": "Eid al-Fitr* (*estimated)", + "1974-10-17": "Eid al-Fitr Holiday* (*estimated)", + "1974-11-01": "Revolution Day", + "1974-12-24": "Eid al-Adha* (*estimated)", + "1974-12-25": "Eid al-Adha Holiday* (*estimated)", + "1975-01-01": "New Year's Day", + "1975-01-13": "Islamic New Year* (*estimated)", + "1975-01-22": "Ashura* (*estimated)", + "1975-03-24": "Prophet's Birthday* (*estimated)", + "1975-05-01": "Labor Day", + "1975-07-05": "Independence Day", + "1975-10-06": "Eid al-Fitr* (*estimated)", + "1975-10-07": "Eid al-Fitr Holiday* (*estimated)", + "1975-11-01": "Revolution Day", + "1975-12-13": "Eid al-Adha* (*estimated)", + "1975-12-14": "Eid al-Adha Holiday* (*estimated)", + "1976-01-01": "New Year's Day", + "1976-01-02": "Islamic New Year* (*estimated)", + "1976-01-11": "Ashura* (*estimated)", + "1976-03-12": "Prophet's Birthday* (*estimated)", + "1976-05-01": "Labor Day", + "1976-07-05": "Independence Day", + "1976-09-24": "Eid al-Fitr* (*estimated)", + "1976-09-25": "Eid al-Fitr Holiday* (*estimated)", + "1976-11-01": "Revolution Day", + "1976-12-01": "Eid al-Adha* (*estimated)", + "1976-12-02": "Eid al-Adha Holiday* (*estimated)", + "1976-12-22": "Islamic New Year* (*estimated)", + "1976-12-31": "Ashura* (*estimated)", + "1977-01-01": "New Year's Day", + "1977-03-02": "Prophet's Birthday* (*estimated)", + "1977-05-01": "Labor Day", + "1977-07-05": "Independence Day", + "1977-09-14": "Eid al-Fitr* (*estimated)", + "1977-09-15": "Eid al-Fitr Holiday* (*estimated)", + "1977-11-01": "Revolution Day", + "1977-11-21": "Eid al-Adha* (*estimated)", + "1977-11-22": "Eid al-Adha Holiday* (*estimated)", + "1977-12-11": "Islamic New Year* (*estimated)", + "1977-12-20": "Ashura* (*estimated)", + "1978-01-01": "New Year's Day", + "1978-02-19": "Prophet's Birthday* (*estimated)", + "1978-05-01": "Labor Day", + "1978-07-05": "Independence Day", + "1978-09-03": "Eid al-Fitr* (*estimated)", + "1978-09-04": "Eid al-Fitr Holiday* (*estimated)", + "1978-11-01": "Revolution Day", + "1978-11-10": "Eid al-Adha* (*estimated)", + "1978-11-11": "Eid al-Adha Holiday* (*estimated)", + "1978-12-01": "Islamic New Year* (*estimated)", + "1978-12-10": "Ashura* (*estimated)", + "1979-01-01": "New Year's Day", + "1979-02-09": "Prophet's Birthday* (*estimated)", + "1979-05-01": "Labor Day", + "1979-07-05": "Independence Day", + "1979-08-23": "Eid al-Fitr* (*estimated)", + "1979-08-24": "Eid al-Fitr Holiday* (*estimated)", + "1979-10-31": "Eid al-Adha* (*estimated)", + "1979-11-01": "Eid al-Adha Holiday* (*estimated); Revolution Day", + "1979-11-20": "Islamic New Year* (*estimated)", + "1979-11-29": "Ashura* (*estimated)", + "1980-01-01": "New Year's Day", + "1980-01-30": "Prophet's Birthday* (*estimated)", + "1980-05-01": "Labor Day", + "1980-07-05": "Independence Day", + "1980-08-12": "Eid al-Fitr* (*estimated)", + "1980-08-13": "Eid al-Fitr Holiday* (*estimated)", + "1980-10-19": "Eid al-Adha* (*estimated)", + "1980-10-20": "Eid al-Adha Holiday* (*estimated)", + "1980-11-01": "Revolution Day", + "1980-11-09": "Islamic New Year* (*estimated)", + "1980-11-18": "Ashura* (*estimated)", + "1981-01-01": "New Year's Day", + "1981-01-18": "Prophet's Birthday* (*estimated)", + "1981-05-01": "Labor Day", + "1981-07-05": "Independence Day", + "1981-08-01": "Eid al-Fitr* (*estimated)", + "1981-08-02": "Eid al-Fitr Holiday* (*estimated)", + "1981-10-08": "Eid al-Adha* (*estimated)", + "1981-10-09": "Eid al-Adha Holiday* (*estimated)", + "1981-10-28": "Islamic New Year* (*estimated)", + "1981-11-01": "Revolution Day", + "1981-11-06": "Ashura* (*estimated)", + "1982-01-01": "New Year's Day", + "1982-01-07": "Prophet's Birthday* (*estimated)", + "1982-05-01": "Labor Day", + "1982-07-05": "Independence Day", + "1982-07-21": "Eid al-Fitr* (*estimated)", + "1982-07-22": "Eid al-Fitr Holiday* (*estimated)", + "1982-09-27": "Eid al-Adha* (*estimated)", + "1982-09-28": "Eid al-Adha Holiday* (*estimated)", + "1982-10-18": "Islamic New Year* (*estimated)", + "1982-10-27": "Ashura* (*estimated)", + "1982-11-01": "Revolution Day", + "1982-12-27": "Prophet's Birthday* (*estimated)", + "1983-01-01": "New Year's Day", + "1983-05-01": "Labor Day", + "1983-07-05": "Independence Day", + "1983-07-11": "Eid al-Fitr* (*estimated)", + "1983-07-12": "Eid al-Fitr Holiday* (*estimated)", + "1983-09-17": "Eid al-Adha* (*estimated)", + "1983-09-18": "Eid al-Adha Holiday* (*estimated)", + "1983-10-07": "Islamic New Year* (*estimated)", + "1983-10-16": "Ashura* (*estimated)", + "1983-11-01": "Revolution Day", + "1983-12-16": "Prophet's Birthday* (*estimated)", + "1984-01-01": "New Year's Day", + "1984-05-01": "Labor Day", + "1984-06-30": "Eid al-Fitr* (*estimated)", + "1984-07-01": "Eid al-Fitr Holiday* (*estimated)", + "1984-07-05": "Independence Day", + "1984-09-05": "Eid al-Adha* (*estimated)", + "1984-09-06": "Eid al-Adha Holiday* (*estimated)", + "1984-09-26": "Islamic New Year* (*estimated)", + "1984-10-05": "Ashura* (*estimated)", + "1984-11-01": "Revolution Day", + "1984-12-04": "Prophet's Birthday* (*estimated)", + "1985-01-01": "New Year's Day", + "1985-05-01": "Labor Day", + "1985-06-19": "Eid al-Fitr* (*estimated)", + "1985-06-20": "Eid al-Fitr Holiday* (*estimated)", + "1985-07-05": "Independence Day", + "1985-08-26": "Eid al-Adha* (*estimated)", + "1985-08-27": "Eid al-Adha Holiday* (*estimated)", + "1985-09-15": "Islamic New Year* (*estimated)", + "1985-09-24": "Ashura* (*estimated)", + "1985-11-01": "Revolution Day", + "1985-11-24": "Prophet's Birthday* (*estimated)", + "1986-01-01": "New Year's Day", + "1986-05-01": "Labor Day", + "1986-06-08": "Eid al-Fitr* (*estimated)", + "1986-06-09": "Eid al-Fitr Holiday* (*estimated)", + "1986-07-05": "Independence Day", + "1986-08-15": "Eid al-Adha* (*estimated)", + "1986-08-16": "Eid al-Adha Holiday* (*estimated)", + "1986-09-05": "Islamic New Year* (*estimated)", + "1986-09-14": "Ashura* (*estimated)", + "1986-11-01": "Revolution Day", + "1986-11-14": "Prophet's Birthday* (*estimated)", + "1987-01-01": "New Year's Day", + "1987-05-01": "Labor Day", + "1987-05-28": "Eid al-Fitr* (*estimated)", + "1987-05-29": "Eid al-Fitr Holiday* (*estimated)", + "1987-07-05": "Independence Day", + "1987-08-04": "Eid al-Adha* (*estimated)", + "1987-08-05": "Eid al-Adha Holiday* (*estimated)", + "1987-08-25": "Islamic New Year* (*estimated)", + "1987-09-03": "Ashura* (*estimated)", + "1987-11-01": "Revolution Day", + "1987-11-03": "Prophet's Birthday* (*estimated)", + "1988-01-01": "New Year's Day", + "1988-05-01": "Labor Day", + "1988-05-16": "Eid al-Fitr* (*estimated)", + "1988-05-17": "Eid al-Fitr Holiday* (*estimated)", + "1988-07-05": "Independence Day", + "1988-07-23": "Eid al-Adha* (*estimated)", + "1988-07-24": "Eid al-Adha Holiday* (*estimated)", + "1988-08-13": "Islamic New Year* (*estimated)", + "1988-08-22": "Ashura* (*estimated)", + "1988-10-22": "Prophet's Birthday* (*estimated)", + "1988-11-01": "Revolution Day", + "1989-01-01": "New Year's Day", + "1989-05-01": "Labor Day", + "1989-05-06": "Eid al-Fitr* (*estimated)", + "1989-05-07": "Eid al-Fitr Holiday* (*estimated)", + "1989-07-05": "Independence Day", + "1989-07-13": "Eid al-Adha* (*estimated)", + "1989-07-14": "Eid al-Adha Holiday* (*estimated)", + "1989-08-02": "Islamic New Year* (*estimated)", + "1989-08-11": "Ashura* (*estimated)", + "1989-10-11": "Prophet's Birthday* (*estimated)", + "1989-11-01": "Revolution Day", + "1990-01-01": "New Year's Day", + "1990-04-26": "Eid al-Fitr* (*estimated)", + "1990-04-27": "Eid al-Fitr Holiday* (*estimated)", + "1990-05-01": "Labor Day", + "1990-07-02": "Eid al-Adha* (*estimated)", + "1990-07-03": "Eid al-Adha Holiday* (*estimated)", + "1990-07-05": "Independence Day", + "1990-07-23": "Islamic New Year* (*estimated)", + "1990-08-01": "Ashura* (*estimated)", + "1990-10-01": "Prophet's Birthday* (*estimated)", + "1990-11-01": "Revolution Day", + "1991-01-01": "New Year's Day", + "1991-04-15": "Eid al-Fitr* (*estimated)", + "1991-04-16": "Eid al-Fitr Holiday* (*estimated)", + "1991-05-01": "Labor Day", + "1991-06-22": "Eid al-Adha* (*estimated)", + "1991-06-23": "Eid al-Adha Holiday* (*estimated)", + "1991-07-05": "Independence Day", + "1991-07-12": "Islamic New Year* (*estimated)", + "1991-07-21": "Ashura* (*estimated)", + "1991-09-20": "Prophet's Birthday* (*estimated)", + "1991-11-01": "Revolution Day", + "1992-01-01": "New Year's Day", + "1992-04-04": "Eid al-Fitr* (*estimated)", + "1992-04-05": "Eid al-Fitr Holiday* (*estimated)", + "1992-05-01": "Labor Day", + "1992-06-11": "Eid al-Adha* (*estimated)", + "1992-06-12": "Eid al-Adha Holiday* (*estimated)", + "1992-07-01": "Islamic New Year* (*estimated)", + "1992-07-05": "Independence Day", + "1992-07-10": "Ashura* (*estimated)", + "1992-09-09": "Prophet's Birthday* (*estimated)", + "1992-11-01": "Revolution Day", + "1993-01-01": "New Year's Day", + "1993-03-24": "Eid al-Fitr* (*estimated)", + "1993-03-25": "Eid al-Fitr Holiday* (*estimated)", + "1993-05-01": "Labor Day", + "1993-05-31": "Eid al-Adha* (*estimated)", + "1993-06-01": "Eid al-Adha Holiday* (*estimated)", + "1993-06-21": "Islamic New Year* (*estimated)", + "1993-06-30": "Ashura* (*estimated)", + "1993-07-05": "Independence Day", + "1993-08-29": "Prophet's Birthday* (*estimated)", + "1993-11-01": "Revolution Day", + "1994-01-01": "New Year's Day", + "1994-03-13": "Eid al-Fitr* (*estimated)", + "1994-03-14": "Eid al-Fitr Holiday* (*estimated)", + "1994-05-01": "Labor Day", + "1994-05-20": "Eid al-Adha* (*estimated)", + "1994-05-21": "Eid al-Adha Holiday* (*estimated)", + "1994-06-10": "Islamic New Year* (*estimated)", + "1994-06-19": "Ashura* (*estimated)", + "1994-07-05": "Independence Day", + "1994-08-19": "Prophet's Birthday* (*estimated)", + "1994-11-01": "Revolution Day", + "1995-01-01": "New Year's Day", + "1995-03-02": "Eid al-Fitr* (*estimated)", + "1995-03-03": "Eid al-Fitr Holiday* (*estimated)", + "1995-05-01": "Labor Day", + "1995-05-09": "Eid al-Adha* (*estimated)", + "1995-05-10": "Eid al-Adha Holiday* (*estimated)", + "1995-05-30": "Islamic New Year* (*estimated)", + "1995-06-08": "Ashura* (*estimated)", + "1995-07-05": "Independence Day", + "1995-08-08": "Prophet's Birthday* (*estimated)", + "1995-11-01": "Revolution Day", + "1996-01-01": "New Year's Day", + "1996-02-19": "Eid al-Fitr* (*estimated)", + "1996-02-20": "Eid al-Fitr Holiday* (*estimated)", + "1996-04-27": "Eid al-Adha* (*estimated)", + "1996-04-28": "Eid al-Adha Holiday* (*estimated)", + "1996-05-01": "Labor Day", + "1996-05-18": "Islamic New Year* (*estimated)", + "1996-05-27": "Ashura* (*estimated)", + "1996-07-05": "Independence Day", + "1996-07-27": "Prophet's Birthday* (*estimated)", + "1996-11-01": "Revolution Day", + "1997-01-01": "New Year's Day", + "1997-02-08": "Eid al-Fitr* (*estimated)", + "1997-02-09": "Eid al-Fitr Holiday* (*estimated)", + "1997-04-17": "Eid al-Adha* (*estimated)", + "1997-04-18": "Eid al-Adha Holiday* (*estimated)", + "1997-05-01": "Labor Day", + "1997-05-07": "Islamic New Year* (*estimated)", + "1997-05-16": "Ashura* (*estimated)", + "1997-07-05": "Independence Day", + "1997-07-16": "Prophet's Birthday* (*estimated)", + "1997-11-01": "Revolution Day", + "1998-01-01": "New Year's Day", + "1998-01-29": "Eid al-Fitr* (*estimated)", + "1998-01-30": "Eid al-Fitr Holiday* (*estimated)", + "1998-04-07": "Eid al-Adha* (*estimated)", + "1998-04-08": "Eid al-Adha Holiday* (*estimated)", + "1998-04-27": "Islamic New Year* (*estimated)", + "1998-05-01": "Labor Day", + "1998-05-06": "Ashura* (*estimated)", + "1998-07-05": "Independence Day", + "1998-07-06": "Prophet's Birthday* (*estimated)", + "1998-11-01": "Revolution Day", + "1999-01-01": "New Year's Day", + "1999-01-18": "Eid al-Fitr* (*estimated)", + "1999-01-19": "Eid al-Fitr Holiday* (*estimated)", + "1999-03-27": "Eid al-Adha* (*estimated)", + "1999-03-28": "Eid al-Adha Holiday* (*estimated)", + "1999-04-17": "Islamic New Year* (*estimated)", + "1999-04-26": "Ashura* (*estimated)", + "1999-05-01": "Labor Day", + "1999-06-26": "Prophet's Birthday* (*estimated)", + "1999-07-05": "Independence Day", + "1999-11-01": "Revolution Day", + "2000-01-01": "New Year's Day", + "2000-01-08": "Eid al-Fitr* (*estimated)", + "2000-01-09": "Eid al-Fitr Holiday* (*estimated)", + "2000-03-16": "Eid al-Adha* (*estimated)", + "2000-03-17": "Eid al-Adha Holiday* (*estimated)", + "2000-04-06": "Islamic New Year* (*estimated)", + "2000-04-15": "Ashura* (*estimated)", + "2000-05-01": "Labor Day", + "2000-06-14": "Prophet's Birthday* (*estimated)", + "2000-07-05": "Independence Day", + "2000-11-01": "Revolution Day", + "2000-12-27": "Eid al-Fitr* (*estimated)", + "2000-12-28": "Eid al-Fitr Holiday* (*estimated)", + "2001-01-01": "New Year's Day", + "2001-03-05": "Eid al-Adha* (*estimated)", + "2001-03-06": "Eid al-Adha Holiday* (*estimated)", + "2001-03-26": "Islamic New Year* (*estimated)", + "2001-04-04": "Ashura* (*estimated)", + "2001-05-01": "Labor Day", + "2001-06-04": "Prophet's Birthday* (*estimated)", + "2001-07-05": "Independence Day", + "2001-11-01": "Revolution Day", + "2001-12-16": "Eid al-Fitr* (*estimated)", + "2001-12-17": "Eid al-Fitr Holiday* (*estimated)", + "2002-01-01": "New Year's Day", + "2002-02-22": "Eid al-Adha* (*estimated)", + "2002-02-23": "Eid al-Adha Holiday* (*estimated)", + "2002-03-15": "Islamic New Year* (*estimated)", + "2002-03-24": "Ashura* (*estimated)", + "2002-05-01": "Labor Day", + "2002-05-24": "Prophet's Birthday* (*estimated)", + "2002-07-05": "Independence Day", + "2002-11-01": "Revolution Day", + "2002-12-05": "Eid al-Fitr* (*estimated)", + "2002-12-06": "Eid al-Fitr Holiday* (*estimated)", + "2003-01-01": "New Year's Day", + "2003-02-11": "Eid al-Adha* (*estimated)", + "2003-02-12": "Eid al-Adha Holiday* (*estimated)", + "2003-03-04": "Islamic New Year* (*estimated)", + "2003-03-13": "Ashura* (*estimated)", + "2003-05-01": "Labor Day", + "2003-05-13": "Prophet's Birthday* (*estimated)", + "2003-07-05": "Independence Day", + "2003-11-01": "Revolution Day", + "2003-11-25": "Eid al-Fitr* (*estimated)", + "2003-11-26": "Eid al-Fitr Holiday* (*estimated)", + "2004-01-01": "New Year's Day", + "2004-02-01": "Eid al-Adha* (*estimated)", + "2004-02-02": "Eid al-Adha Holiday* (*estimated)", + "2004-02-21": "Islamic New Year* (*estimated)", + "2004-03-01": "Ashura* (*estimated)", + "2004-05-01": "Labor Day; Prophet's Birthday* (*estimated)", + "2004-07-05": "Independence Day", + "2004-11-01": "Revolution Day", + "2004-11-14": "Eid al-Fitr* (*estimated)", + "2004-11-15": "Eid al-Fitr Holiday* (*estimated)", + "2005-01-01": "New Year's Day", + "2005-01-21": "Eid al-Adha* (*estimated)", + "2005-01-22": "Eid al-Adha Holiday* (*estimated)", + "2005-02-10": "Islamic New Year* (*estimated)", + "2005-02-19": "Ashura* (*estimated)", + "2005-04-21": "Prophet's Birthday* (*estimated)", + "2005-05-01": "Labor Day", + "2005-07-05": "Independence Day", + "2005-11-01": "Revolution Day", + "2005-11-03": "Eid al-Fitr* (*estimated)", + "2005-11-04": "Eid al-Fitr Holiday* (*estimated)", + "2006-01-01": "New Year's Day", + "2006-01-10": "Eid al-Adha* (*estimated)", + "2006-01-11": "Eid al-Adha Holiday* (*estimated)", + "2006-01-31": "Islamic New Year* (*estimated)", + "2006-02-09": "Ashura* (*estimated)", + "2006-04-10": "Prophet's Birthday* (*estimated)", + "2006-05-01": "Labor Day", + "2006-07-05": "Independence Day", + "2006-10-23": "Eid al-Fitr* (*estimated)", + "2006-10-24": "Eid al-Fitr Holiday* (*estimated)", + "2006-11-01": "Revolution Day", + "2006-12-31": "Eid al-Adha* (*estimated)", + "2007-01-01": "Eid al-Adha Holiday* (*estimated); New Year's Day", + "2007-01-20": "Islamic New Year* (*estimated)", + "2007-01-29": "Ashura* (*estimated)", + "2007-03-31": "Prophet's Birthday* (*estimated)", + "2007-05-01": "Labor Day", + "2007-07-05": "Independence Day", + "2007-10-13": "Eid al-Fitr* (*estimated)", + "2007-10-14": "Eid al-Fitr Holiday* (*estimated)", + "2007-11-01": "Revolution Day", + "2007-12-20": "Eid al-Adha* (*estimated)", + "2007-12-21": "Eid al-Adha Holiday* (*estimated)", + "2008-01-01": "New Year's Day", + "2008-01-10": "Islamic New Year* (*estimated)", + "2008-01-19": "Ashura* (*estimated)", + "2008-03-20": "Prophet's Birthday* (*estimated)", + "2008-05-01": "Labor Day", + "2008-07-05": "Independence Day", + "2008-10-01": "Eid al-Fitr* (*estimated)", + "2008-10-02": "Eid al-Fitr Holiday* (*estimated)", + "2008-11-01": "Revolution Day", + "2008-12-08": "Eid al-Adha* (*estimated)", + "2008-12-09": "Eid al-Adha Holiday* (*estimated)", + "2008-12-29": "Islamic New Year* (*estimated)", + "2009-01-01": "New Year's Day", + "2009-01-07": "Ashura* (*estimated)", + "2009-03-09": "Prophet's Birthday* (*estimated)", + "2009-05-01": "Labor Day", + "2009-07-05": "Independence Day", + "2009-09-20": "Eid al-Fitr* (*estimated)", + "2009-09-21": "Eid al-Fitr Holiday* (*estimated)", + "2009-11-01": "Revolution Day", + "2009-11-27": "Eid al-Adha* (*estimated)", + "2009-11-28": "Eid al-Adha Holiday* (*estimated)", + "2009-12-18": "Islamic New Year* (*estimated)", + "2009-12-27": "Ashura* (*estimated)", + "2010-01-01": "New Year's Day", + "2010-02-26": "Prophet's Birthday* (*estimated)", + "2010-05-01": "Labor Day", + "2010-07-05": "Independence Day", + "2010-09-10": "Eid al-Fitr* (*estimated)", + "2010-09-11": "Eid al-Fitr Holiday* (*estimated)", + "2010-11-01": "Revolution Day", + "2010-11-16": "Eid al-Adha* (*estimated)", + "2010-11-17": "Eid al-Adha Holiday* (*estimated)", + "2010-12-07": "Islamic New Year* (*estimated)", + "2010-12-16": "Ashura* (*estimated)", + "2011-01-01": "New Year's Day", + "2011-02-15": "Prophet's Birthday* (*estimated)", + "2011-05-01": "Labor Day", + "2011-07-05": "Independence Day", + "2011-08-30": "Eid al-Fitr* (*estimated)", + "2011-08-31": "Eid al-Fitr Holiday* (*estimated)", + "2011-11-01": "Revolution Day", + "2011-11-06": "Eid al-Adha* (*estimated)", + "2011-11-07": "Eid al-Adha Holiday* (*estimated)", + "2011-11-26": "Islamic New Year* (*estimated)", + "2011-12-05": "Ashura* (*estimated)", + "2012-01-01": "New Year's Day", + "2012-02-04": "Prophet's Birthday* (*estimated)", + "2012-05-01": "Labor Day", + "2012-07-05": "Independence Day", + "2012-08-19": "Eid al-Fitr* (*estimated)", + "2012-08-20": "Eid al-Fitr Holiday* (*estimated)", + "2012-10-26": "Eid al-Adha* (*estimated)", + "2012-10-27": "Eid al-Adha Holiday* (*estimated)", + "2012-11-01": "Revolution Day", + "2012-11-15": "Islamic New Year* (*estimated)", + "2012-11-24": "Ashura* (*estimated)", + "2013-01-01": "New Year's Day", + "2013-01-24": "Prophet's Birthday* (*estimated)", + "2013-05-01": "Labor Day", + "2013-07-05": "Independence Day", + "2013-08-08": "Eid al-Fitr* (*estimated)", + "2013-08-09": "Eid al-Fitr Holiday* (*estimated)", + "2013-10-15": "Eid al-Adha* (*estimated)", + "2013-10-16": "Eid al-Adha Holiday* (*estimated)", + "2013-11-01": "Revolution Day", + "2013-11-04": "Islamic New Year* (*estimated)", + "2013-11-13": "Ashura* (*estimated)", + "2014-01-01": "New Year's Day", + "2014-01-13": "Prophet's Birthday* (*estimated)", + "2014-05-01": "Labor Day", + "2014-07-05": "Independence Day", + "2014-07-28": "Eid al-Fitr* (*estimated)", + "2014-07-29": "Eid al-Fitr Holiday* (*estimated)", + "2014-10-04": "Eid al-Adha* (*estimated)", + "2014-10-05": "Eid al-Adha Holiday* (*estimated)", + "2014-10-25": "Islamic New Year* (*estimated)", + "2014-11-01": "Revolution Day", + "2014-11-03": "Ashura* (*estimated)", + "2015-01-01": "New Year's Day", + "2015-01-03": "Prophet's Birthday* (*estimated)", + "2015-05-01": "Labor Day", + "2015-07-05": "Independence Day", + "2015-07-17": "Eid al-Fitr* (*estimated)", + "2015-07-18": "Eid al-Fitr Holiday* (*estimated)", + "2015-09-23": "Eid al-Adha* (*estimated)", + "2015-09-24": "Eid al-Adha Holiday* (*estimated)", + "2015-10-14": "Islamic New Year* (*estimated)", + "2015-10-23": "Ashura* (*estimated)", + "2015-11-01": "Revolution Day", + "2015-12-23": "Prophet's Birthday* (*estimated)", + "2016-01-01": "New Year's Day", + "2016-05-01": "Labor Day", + "2016-07-05": "Independence Day", + "2016-07-06": "Eid al-Fitr* (*estimated)", + "2016-07-07": "Eid al-Fitr Holiday* (*estimated)", + "2016-09-11": "Eid al-Adha* (*estimated)", + "2016-09-12": "Eid al-Adha Holiday* (*estimated)", + "2016-10-02": "Islamic New Year* (*estimated)", + "2016-10-11": "Ashura* (*estimated)", + "2016-11-01": "Revolution Day", + "2016-12-11": "Prophet's Birthday* (*estimated)", + "2017-01-01": "New Year's Day", + "2017-05-01": "Labor Day", + "2017-06-25": "Eid al-Fitr* (*estimated)", + "2017-06-26": "Eid al-Fitr Holiday* (*estimated)", + "2017-07-05": "Independence Day", + "2017-09-01": "Eid al-Adha* (*estimated)", + "2017-09-02": "Eid al-Adha Holiday* (*estimated)", + "2017-09-21": "Islamic New Year* (*estimated)", + "2017-09-30": "Ashura* (*estimated)", + "2017-11-01": "Revolution Day", + "2017-11-30": "Prophet's Birthday* (*estimated)", + "2018-01-01": "New Year's Day", + "2018-01-12": "Amazigh New Year", + "2018-05-01": "Labor Day", + "2018-06-15": "Eid al-Fitr* (*estimated)", + "2018-06-16": "Eid al-Fitr Holiday* (*estimated)", + "2018-07-05": "Independence Day", + "2018-08-21": "Eid al-Adha* (*estimated)", + "2018-08-22": "Eid al-Adha Holiday* (*estimated)", + "2018-09-11": "Islamic New Year* (*estimated)", + "2018-09-20": "Ashura* (*estimated)", + "2018-11-01": "Revolution Day", + "2018-11-20": "Prophet's Birthday* (*estimated)", + "2019-01-01": "New Year's Day", + "2019-01-12": "Amazigh New Year", + "2019-05-01": "Labor Day", + "2019-06-04": "Eid al-Fitr* (*estimated)", + "2019-06-05": "Eid al-Fitr Holiday* (*estimated)", + "2019-07-05": "Independence Day", + "2019-08-11": "Eid al-Adha* (*estimated)", + "2019-08-12": "Eid al-Adha Holiday* (*estimated)", + "2019-08-31": "Islamic New Year* (*estimated)", + "2019-09-09": "Ashura* (*estimated)", + "2019-11-01": "Revolution Day", + "2019-11-09": "Prophet's Birthday* (*estimated)", + "2020-01-01": "New Year's Day", + "2020-01-12": "Amazigh New Year", + "2020-05-01": "Labor Day", + "2020-05-24": "Eid al-Fitr* (*estimated)", + "2020-05-25": "Eid al-Fitr Holiday* (*estimated)", + "2020-07-05": "Independence Day", + "2020-07-31": "Eid al-Adha* (*estimated)", + "2020-08-01": "Eid al-Adha Holiday* (*estimated)", + "2020-08-20": "Islamic New Year* (*estimated)", + "2020-08-29": "Ashura* (*estimated)", + "2020-10-29": "Prophet's Birthday* (*estimated)", + "2020-11-01": "Revolution Day", + "2021-01-01": "New Year's Day", + "2021-01-12": "Amazigh New Year", + "2021-05-01": "Labor Day", + "2021-05-13": "Eid al-Fitr* (*estimated)", + "2021-05-14": "Eid al-Fitr Holiday* (*estimated)", + "2021-07-05": "Independence Day", + "2021-07-20": "Eid al-Adha* (*estimated)", + "2021-07-21": "Eid al-Adha Holiday* (*estimated)", + "2021-08-09": "Islamic New Year* (*estimated)", + "2021-08-18": "Ashura* (*estimated)", + "2021-10-18": "Prophet's Birthday* (*estimated)", + "2021-11-01": "Revolution Day", + "2022-01-01": "New Year's Day", + "2022-01-12": "Amazigh New Year", + "2022-05-01": "Labor Day", + "2022-05-02": "Eid al-Fitr* (*estimated)", + "2022-05-03": "Eid al-Fitr Holiday* (*estimated)", + "2022-07-05": "Independence Day", + "2022-07-09": "Eid al-Adha* (*estimated)", + "2022-07-10": "Eid al-Adha Holiday* (*estimated)", + "2022-07-30": "Islamic New Year* (*estimated)", + "2022-08-08": "Ashura* (*estimated)", + "2022-10-08": "Prophet's Birthday* (*estimated)", + "2022-11-01": "Revolution Day", + "2023-01-01": "New Year's Day", + "2023-01-12": "Amazigh New Year", + "2023-04-21": "Eid al-Fitr* (*estimated)", + "2023-04-22": "Eid al-Fitr Holiday* (*estimated)", + "2023-05-01": "Labor Day", + "2023-06-28": "Eid al-Adha* (*estimated)", + "2023-06-29": "Eid al-Adha Holiday* (*estimated)", + "2023-06-30": "Eid al-Adha Holiday* (*estimated)", + "2023-07-05": "Independence Day", + "2023-07-19": "Islamic New Year* (*estimated)", + "2023-07-28": "Ashura* (*estimated)", + "2023-09-27": "Prophet's Birthday* (*estimated)", + "2023-11-01": "Revolution Day", + "2024-01-01": "New Year's Day", + "2024-01-12": "Amazigh New Year", + "2024-04-10": "Eid al-Fitr* (*estimated)", + "2024-04-11": "Eid al-Fitr Holiday* (*estimated)", + "2024-04-12": "Eid al-Fitr Holiday* (*estimated)", + "2024-05-01": "Labor Day", + "2024-06-16": "Eid al-Adha* (*estimated)", + "2024-06-17": "Eid al-Adha Holiday* (*estimated)", + "2024-06-18": "Eid al-Adha Holiday* (*estimated)", + "2024-07-05": "Independence Day", + "2024-07-07": "Islamic New Year* (*estimated)", + "2024-07-16": "Ashura* (*estimated)", + "2024-09-15": "Prophet's Birthday* (*estimated)", + "2024-11-01": "Revolution Day", + "2025-01-01": "New Year's Day", + "2025-01-12": "Amazigh New Year", + "2025-03-30": "Eid al-Fitr* (*estimated)", + "2025-03-31": "Eid al-Fitr Holiday* (*estimated)", + "2025-04-01": "Eid al-Fitr Holiday* (*estimated)", + "2025-05-01": "Labor Day", + "2025-06-06": "Eid al-Adha* (*estimated)", + "2025-06-07": "Eid al-Adha Holiday* (*estimated)", + "2025-06-08": "Eid al-Adha Holiday* (*estimated)", + "2025-06-26": "Islamic New Year* (*estimated)", + "2025-07-05": "Ashura* (*estimated); Independence Day", + "2025-09-04": "Prophet's Birthday* (*estimated)", + "2025-11-01": "Revolution Day", + "2026-01-01": "New Year's Day", + "2026-01-12": "Amazigh New Year", + "2026-03-20": "Eid al-Fitr* (*estimated)", + "2026-03-21": "Eid al-Fitr Holiday* (*estimated)", + "2026-03-22": "Eid al-Fitr Holiday* (*estimated)", + "2026-05-01": "Labor Day", + "2026-05-27": "Eid al-Adha* (*estimated)", + "2026-05-28": "Eid al-Adha Holiday* (*estimated)", + "2026-05-29": "Eid al-Adha Holiday* (*estimated)", + "2026-06-16": "Islamic New Year* (*estimated)", + "2026-06-25": "Ashura* (*estimated)", + "2026-07-05": "Independence Day", + "2026-08-25": "Prophet's Birthday* (*estimated)", + "2026-11-01": "Revolution Day", + "2027-01-01": "New Year's Day", + "2027-01-12": "Amazigh New Year", + "2027-03-09": "Eid al-Fitr* (*estimated)", + "2027-03-10": "Eid al-Fitr Holiday* (*estimated)", + "2027-03-11": "Eid al-Fitr Holiday* (*estimated)", + "2027-05-01": "Labor Day", + "2027-05-16": "Eid al-Adha* (*estimated)", + "2027-05-17": "Eid al-Adha Holiday* (*estimated)", + "2027-05-18": "Eid al-Adha Holiday* (*estimated)", + "2027-06-06": "Islamic New Year* (*estimated)", + "2027-06-15": "Ashura* (*estimated)", + "2027-07-05": "Independence Day", + "2027-08-14": "Prophet's Birthday* (*estimated)", + "2027-11-01": "Revolution Day", + "2028-01-01": "New Year's Day", + "2028-01-12": "Amazigh New Year", + "2028-02-26": "Eid al-Fitr* (*estimated)", + "2028-02-27": "Eid al-Fitr Holiday* (*estimated)", + "2028-02-28": "Eid al-Fitr Holiday* (*estimated)", + "2028-05-01": "Labor Day", + "2028-05-05": "Eid al-Adha* (*estimated)", + "2028-05-06": "Eid al-Adha Holiday* (*estimated)", + "2028-05-07": "Eid al-Adha Holiday* (*estimated)", + "2028-05-25": "Islamic New Year* (*estimated)", + "2028-06-03": "Ashura* (*estimated)", + "2028-07-05": "Independence Day", + "2028-08-03": "Prophet's Birthday* (*estimated)", + "2028-11-01": "Revolution Day", + "2029-01-01": "New Year's Day", + "2029-01-12": "Amazigh New Year", + "2029-02-14": "Eid al-Fitr* (*estimated)", + "2029-02-15": "Eid al-Fitr Holiday* (*estimated)", + "2029-02-16": "Eid al-Fitr Holiday* (*estimated)", + "2029-04-24": "Eid al-Adha* (*estimated)", + "2029-04-25": "Eid al-Adha Holiday* (*estimated)", + "2029-04-26": "Eid al-Adha Holiday* (*estimated)", + "2029-05-01": "Labor Day", + "2029-05-14": "Islamic New Year* (*estimated)", + "2029-05-23": "Ashura* (*estimated)", + "2029-07-05": "Independence Day", + "2029-07-24": "Prophet's Birthday* (*estimated)", + "2029-11-01": "Revolution Day", + "2030-01-01": "New Year's Day", + "2030-01-12": "Amazigh New Year", + "2030-02-04": "Eid al-Fitr* (*estimated)", + "2030-02-05": "Eid al-Fitr Holiday* (*estimated)", + "2030-02-06": "Eid al-Fitr Holiday* (*estimated)", + "2030-04-13": "Eid al-Adha* (*estimated)", + "2030-04-14": "Eid al-Adha Holiday* (*estimated)", + "2030-04-15": "Eid al-Adha Holiday* (*estimated)", + "2030-05-01": "Labor Day", + "2030-05-03": "Islamic New Year* (*estimated)", + "2030-05-12": "Ashura* (*estimated)", + "2030-07-05": "Independence Day", + "2030-07-13": "Prophet's Birthday* (*estimated)", + "2030-11-01": "Revolution Day", + "2031-01-01": "New Year's Day", + "2031-01-12": "Amazigh New Year", + "2031-01-24": "Eid al-Fitr* (*estimated)", + "2031-01-25": "Eid al-Fitr Holiday* (*estimated)", + "2031-01-26": "Eid al-Fitr Holiday* (*estimated)", + "2031-04-02": "Eid al-Adha* (*estimated)", + "2031-04-03": "Eid al-Adha Holiday* (*estimated)", + "2031-04-04": "Eid al-Adha Holiday* (*estimated)", + "2031-04-23": "Islamic New Year* (*estimated)", + "2031-05-01": "Labor Day", + "2031-05-02": "Ashura* (*estimated)", + "2031-07-02": "Prophet's Birthday* (*estimated)", + "2031-07-05": "Independence Day", + "2031-11-01": "Revolution Day", + "2032-01-01": "New Year's Day", + "2032-01-12": "Amazigh New Year", + "2032-01-14": "Eid al-Fitr* (*estimated)", + "2032-01-15": "Eid al-Fitr Holiday* (*estimated)", + "2032-01-16": "Eid al-Fitr Holiday* (*estimated)", + "2032-03-22": "Eid al-Adha* (*estimated)", + "2032-03-23": "Eid al-Adha Holiday* (*estimated)", + "2032-03-24": "Eid al-Adha Holiday* (*estimated)", + "2032-04-11": "Islamic New Year* (*estimated)", + "2032-04-20": "Ashura* (*estimated)", + "2032-05-01": "Labor Day", + "2032-06-20": "Prophet's Birthday* (*estimated)", + "2032-07-05": "Independence Day", + "2032-11-01": "Revolution Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "Eid al-Fitr* (*estimated)", + "2033-01-03": "Eid al-Fitr Holiday* (*estimated)", + "2033-01-04": "Eid al-Fitr Holiday* (*estimated)", + "2033-01-12": "Amazigh New Year", + "2033-03-11": "Eid al-Adha* (*estimated)", + "2033-03-12": "Eid al-Adha Holiday* (*estimated)", + "2033-03-13": "Eid al-Adha Holiday* (*estimated)", + "2033-04-01": "Islamic New Year* (*estimated)", + "2033-04-10": "Ashura* (*estimated)", + "2033-05-01": "Labor Day", + "2033-06-09": "Prophet's Birthday* (*estimated)", + "2033-07-05": "Independence Day", + "2033-11-01": "Revolution Day", + "2033-12-23": "Eid al-Fitr* (*estimated)", + "2033-12-24": "Eid al-Fitr Holiday* (*estimated)", + "2033-12-25": "Eid al-Fitr Holiday* (*estimated)", + "2034-01-01": "New Year's Day", + "2034-01-12": "Amazigh New Year", + "2034-03-01": "Eid al-Adha* (*estimated)", + "2034-03-02": "Eid al-Adha Holiday* (*estimated)", + "2034-03-03": "Eid al-Adha Holiday* (*estimated)", + "2034-03-21": "Islamic New Year* (*estimated)", + "2034-03-30": "Ashura* (*estimated)", + "2034-05-01": "Labor Day", + "2034-05-30": "Prophet's Birthday* (*estimated)", + "2034-07-05": "Independence Day", + "2034-11-01": "Revolution Day", + "2034-12-12": "Eid al-Fitr* (*estimated)", + "2034-12-13": "Eid al-Fitr Holiday* (*estimated)", + "2034-12-14": "Eid al-Fitr Holiday* (*estimated)", + "2035-01-01": "New Year's Day", + "2035-01-12": "Amazigh New Year", + "2035-02-18": "Eid al-Adha* (*estimated)", + "2035-02-19": "Eid al-Adha Holiday* (*estimated)", + "2035-02-20": "Eid al-Adha Holiday* (*estimated)", + "2035-03-11": "Islamic New Year* (*estimated)", + "2035-03-20": "Ashura* (*estimated)", + "2035-05-01": "Labor Day", + "2035-05-20": "Prophet's Birthday* (*estimated)", + "2035-07-05": "Independence Day", + "2035-11-01": "Revolution Day", + "2035-12-01": "Eid al-Fitr* (*estimated)", + "2035-12-02": "Eid al-Fitr Holiday* (*estimated)", + "2035-12-03": "Eid al-Fitr Holiday* (*estimated)", + "2036-01-01": "New Year's Day", + "2036-01-12": "Amazigh New Year", + "2036-02-07": "Eid al-Adha* (*estimated)", + "2036-02-08": "Eid al-Adha Holiday* (*estimated)", + "2036-02-09": "Eid al-Adha Holiday* (*estimated)", + "2036-02-28": "Islamic New Year* (*estimated)", + "2036-03-08": "Ashura* (*estimated)", + "2036-05-01": "Labor Day", + "2036-05-08": "Prophet's Birthday* (*estimated)", + "2036-07-05": "Independence Day", + "2036-11-01": "Revolution Day", + "2036-11-19": "Eid al-Fitr* (*estimated)", + "2036-11-20": "Eid al-Fitr Holiday* (*estimated)", + "2036-11-21": "Eid al-Fitr Holiday* (*estimated)", + "2037-01-01": "New Year's Day", + "2037-01-12": "Amazigh New Year", + "2037-01-26": "Eid al-Adha* (*estimated)", + "2037-01-27": "Eid al-Adha Holiday* (*estimated)", + "2037-01-28": "Eid al-Adha Holiday* (*estimated)", + "2037-02-16": "Islamic New Year* (*estimated)", + "2037-02-25": "Ashura* (*estimated)", + "2037-04-28": "Prophet's Birthday* (*estimated)", + "2037-05-01": "Labor Day", + "2037-07-05": "Independence Day", + "2037-11-01": "Revolution Day", + "2037-11-08": "Eid al-Fitr* (*estimated)", + "2037-11-09": "Eid al-Fitr Holiday* (*estimated)", + "2037-11-10": "Eid al-Fitr Holiday* (*estimated)", + "2038-01-01": "New Year's Day", + "2038-01-12": "Amazigh New Year", + "2038-01-16": "Eid al-Adha* (*estimated)", + "2038-01-17": "Eid al-Adha Holiday* (*estimated)", + "2038-01-18": "Eid al-Adha Holiday* (*estimated)", + "2038-02-05": "Islamic New Year* (*estimated)", + "2038-02-14": "Ashura* (*estimated)", + "2038-04-17": "Prophet's Birthday* (*estimated)", + "2038-05-01": "Labor Day", + "2038-07-05": "Independence Day", + "2038-10-29": "Eid al-Fitr* (*estimated)", + "2038-10-30": "Eid al-Fitr Holiday* (*estimated)", + "2038-10-31": "Eid al-Fitr Holiday* (*estimated)", + "2038-11-01": "Revolution Day", + "2039-01-01": "New Year's Day", + "2039-01-05": "Eid al-Adha* (*estimated)", + "2039-01-06": "Eid al-Adha Holiday* (*estimated)", + "2039-01-07": "Eid al-Adha Holiday* (*estimated)", + "2039-01-12": "Amazigh New Year", + "2039-01-26": "Islamic New Year* (*estimated)", + "2039-02-04": "Ashura* (*estimated)", + "2039-04-06": "Prophet's Birthday* (*estimated)", + "2039-05-01": "Labor Day", + "2039-07-05": "Independence Day", + "2039-10-19": "Eid al-Fitr* (*estimated)", + "2039-10-20": "Eid al-Fitr Holiday* (*estimated)", + "2039-10-21": "Eid al-Fitr Holiday* (*estimated)", + "2039-11-01": "Revolution Day", + "2039-12-26": "Eid al-Adha* (*estimated)", + "2039-12-27": "Eid al-Adha Holiday* (*estimated)", + "2039-12-28": "Eid al-Adha Holiday* (*estimated)", + "2040-01-01": "New Year's Day", + "2040-01-12": "Amazigh New Year", + "2040-01-15": "Islamic New Year* (*estimated)", + "2040-01-24": "Ashura* (*estimated)", + "2040-03-25": "Prophet's Birthday* (*estimated)", + "2040-05-01": "Labor Day", + "2040-07-05": "Independence Day", + "2040-10-07": "Eid al-Fitr* (*estimated)", + "2040-10-08": "Eid al-Fitr Holiday* (*estimated)", + "2040-10-09": "Eid al-Fitr Holiday* (*estimated)", + "2040-11-01": "Revolution Day", + "2040-12-14": "Eid al-Adha* (*estimated)", + "2040-12-15": "Eid al-Adha Holiday* (*estimated)", + "2040-12-16": "Eid al-Adha Holiday* (*estimated)", + "2041-01-01": "New Year's Day", + "2041-01-04": "Islamic New Year* (*estimated)", + "2041-01-12": "Amazigh New Year", + "2041-01-13": "Ashura* (*estimated)", + "2041-03-15": "Prophet's Birthday* (*estimated)", + "2041-05-01": "Labor Day", + "2041-07-05": "Independence Day", + "2041-09-26": "Eid al-Fitr* (*estimated)", + "2041-09-27": "Eid al-Fitr Holiday* (*estimated)", + "2041-09-28": "Eid al-Fitr Holiday* (*estimated)", + "2041-11-01": "Revolution Day", + "2041-12-04": "Eid al-Adha* (*estimated)", + "2041-12-05": "Eid al-Adha Holiday* (*estimated)", + "2041-12-06": "Eid al-Adha Holiday* (*estimated)", + "2041-12-24": "Islamic New Year* (*estimated)", + "2042-01-01": "New Year's Day", + "2042-01-02": "Ashura* (*estimated)", + "2042-01-12": "Amazigh New Year", + "2042-03-04": "Prophet's Birthday* (*estimated)", + "2042-05-01": "Labor Day", + "2042-07-05": "Independence Day", + "2042-09-15": "Eid al-Fitr* (*estimated)", + "2042-09-16": "Eid al-Fitr Holiday* (*estimated)", + "2042-09-17": "Eid al-Fitr Holiday* (*estimated)", + "2042-11-01": "Revolution Day", + "2042-11-23": "Eid al-Adha* (*estimated)", + "2042-11-24": "Eid al-Adha Holiday* (*estimated)", + "2042-11-25": "Eid al-Adha Holiday* (*estimated)", + "2042-12-14": "Islamic New Year* (*estimated)", + "2042-12-23": "Ashura* (*estimated)", + "2043-01-01": "New Year's Day", + "2043-01-12": "Amazigh New Year", + "2043-02-22": "Prophet's Birthday* (*estimated)", + "2043-05-01": "Labor Day", + "2043-07-05": "Independence Day", + "2043-09-04": "Eid al-Fitr* (*estimated)", + "2043-09-05": "Eid al-Fitr Holiday* (*estimated)", + "2043-09-06": "Eid al-Fitr Holiday* (*estimated)", + "2043-11-01": "Revolution Day", + "2043-11-12": "Eid al-Adha* (*estimated)", + "2043-11-13": "Eid al-Adha Holiday* (*estimated)", + "2043-11-14": "Eid al-Adha Holiday* (*estimated)", + "2043-12-03": "Islamic New Year* (*estimated)", + "2043-12-12": "Ashura* (*estimated)", + "2044-01-01": "New Year's Day", + "2044-01-12": "Amazigh New Year", + "2044-02-11": "Prophet's Birthday* (*estimated)", + "2044-05-01": "Labor Day", + "2044-07-05": "Independence Day", + "2044-08-24": "Eid al-Fitr* (*estimated)", + "2044-08-25": "Eid al-Fitr Holiday* (*estimated)", + "2044-08-26": "Eid al-Fitr Holiday* (*estimated)", + "2044-10-31": "Eid al-Adha* (*estimated)", + "2044-11-01": "Eid al-Adha Holiday* (*estimated); Revolution Day", + "2044-11-02": "Eid al-Adha Holiday* (*estimated)", + "2044-11-21": "Islamic New Year* (*estimated)", + "2044-11-30": "Ashura* (*estimated)", + "2045-01-01": "New Year's Day", + "2045-01-12": "Amazigh New Year", + "2045-01-30": "Prophet's Birthday* (*estimated)", + "2045-05-01": "Labor Day", + "2045-07-05": "Independence Day", + "2045-08-14": "Eid al-Fitr* (*estimated)", + "2045-08-15": "Eid al-Fitr Holiday* (*estimated)", + "2045-08-16": "Eid al-Fitr Holiday* (*estimated)", + "2045-10-21": "Eid al-Adha* (*estimated)", + "2045-10-22": "Eid al-Adha Holiday* (*estimated)", + "2045-10-23": "Eid al-Adha Holiday* (*estimated)", + "2045-11-01": "Revolution Day", + "2045-11-10": "Islamic New Year* (*estimated)", + "2045-11-19": "Ashura* (*estimated)", + "2046-01-01": "New Year's Day", + "2046-01-12": "Amazigh New Year", + "2046-01-19": "Prophet's Birthday* (*estimated)", + "2046-05-01": "Labor Day", + "2046-07-05": "Independence Day", + "2046-08-03": "Eid al-Fitr* (*estimated)", + "2046-08-04": "Eid al-Fitr Holiday* (*estimated)", + "2046-08-05": "Eid al-Fitr Holiday* (*estimated)", + "2046-10-10": "Eid al-Adha* (*estimated)", + "2046-10-11": "Eid al-Adha Holiday* (*estimated)", + "2046-10-12": "Eid al-Adha Holiday* (*estimated)", + "2046-10-31": "Islamic New Year* (*estimated)", + "2046-11-01": "Revolution Day", + "2046-11-09": "Ashura* (*estimated)", + "2047-01-01": "New Year's Day", + "2047-01-08": "Prophet's Birthday* (*estimated)", + "2047-01-12": "Amazigh New Year", + "2047-05-01": "Labor Day", + "2047-07-05": "Independence Day", + "2047-07-24": "Eid al-Fitr* (*estimated)", + "2047-07-25": "Eid al-Fitr Holiday* (*estimated)", + "2047-07-26": "Eid al-Fitr Holiday* (*estimated)", + "2047-09-30": "Eid al-Adha* (*estimated)", + "2047-10-01": "Eid al-Adha Holiday* (*estimated)", + "2047-10-02": "Eid al-Adha Holiday* (*estimated)", + "2047-10-20": "Islamic New Year* (*estimated)", + "2047-10-29": "Ashura* (*estimated)", + "2047-11-01": "Revolution Day", + "2047-12-29": "Prophet's Birthday* (*estimated)", + "2048-01-01": "New Year's Day", + "2048-01-12": "Amazigh New Year", + "2048-05-01": "Labor Day", + "2048-07-05": "Independence Day", + "2048-07-12": "Eid al-Fitr* (*estimated)", + "2048-07-13": "Eid al-Fitr Holiday* (*estimated)", + "2048-07-14": "Eid al-Fitr Holiday* (*estimated)", + "2048-09-19": "Eid al-Adha* (*estimated)", + "2048-09-20": "Eid al-Adha Holiday* (*estimated)", + "2048-09-21": "Eid al-Adha Holiday* (*estimated)", + "2048-10-09": "Islamic New Year* (*estimated)", + "2048-10-18": "Ashura* (*estimated)", + "2048-11-01": "Revolution Day", + "2048-12-18": "Prophet's Birthday* (*estimated)", + "2049-01-01": "New Year's Day", + "2049-01-12": "Amazigh New Year", + "2049-05-01": "Labor Day", + "2049-07-01": "Eid al-Fitr* (*estimated)", + "2049-07-02": "Eid al-Fitr Holiday* (*estimated)", + "2049-07-03": "Eid al-Fitr Holiday* (*estimated)", + "2049-07-05": "Independence Day", + "2049-09-08": "Eid al-Adha* (*estimated)", + "2049-09-09": "Eid al-Adha Holiday* (*estimated)", + "2049-09-10": "Eid al-Adha Holiday* (*estimated)", + "2049-09-28": "Islamic New Year* (*estimated)", + "2049-10-07": "Ashura* (*estimated)", + "2049-11-01": "Revolution Day", + "2049-12-07": "Prophet's Birthday* (*estimated)", + "2050-01-01": "New Year's Day", + "2050-01-12": "Amazigh New Year", + "2050-05-01": "Labor Day", + "2050-06-20": "Eid al-Fitr* (*estimated)", + "2050-06-21": "Eid al-Fitr Holiday* (*estimated)", + "2050-06-22": "Eid al-Fitr Holiday* (*estimated)", + "2050-07-05": "Independence Day", + "2050-08-28": "Eid al-Adha* (*estimated)", + "2050-08-29": "Eid al-Adha Holiday* (*estimated)", + "2050-08-30": "Eid al-Adha Holiday* (*estimated)", + "2050-09-17": "Islamic New Year* (*estimated)", + "2050-09-26": "Ashura* (*estimated)", + "2050-11-01": "Revolution Day", + "2050-11-26": "Prophet's Birthday* (*estimated)" +} diff --git a/snapshots/countries/EC.json b/snapshots/countries/EC.json new file mode 100644 index 000000000..6084f9557 --- /dev/null +++ b/snapshots/countries/EC.json @@ -0,0 +1,1254 @@ +{ + "1950-01-01": "New Year's Day", + "1950-02-20": "Carnival", + "1950-02-21": "Carnival", + "1950-04-07": "Good Friday", + "1950-05-01": "Labour Day", + "1950-05-24": "The Battle of Pichincha", + "1950-08-10": "Declaration of Independence of Quito", + "1950-10-09": "Independence of Guayaquil", + "1950-11-02": "All Souls' Day", + "1950-11-03": "Independence of Cuenca", + "1950-12-25": "Christmas Day", + "1951-01-01": "New Year's Day", + "1951-02-05": "Carnival", + "1951-02-06": "Carnival", + "1951-03-23": "Good Friday", + "1951-05-01": "Labour Day", + "1951-05-24": "The Battle of Pichincha", + "1951-08-10": "Declaration of Independence of Quito", + "1951-10-09": "Independence of Guayaquil", + "1951-11-02": "All Souls' Day", + "1951-11-03": "Independence of Cuenca", + "1951-12-25": "Christmas Day", + "1952-01-01": "New Year's Day", + "1952-02-25": "Carnival", + "1952-02-26": "Carnival", + "1952-04-11": "Good Friday", + "1952-05-01": "Labour Day", + "1952-05-24": "The Battle of Pichincha", + "1952-08-10": "Declaration of Independence of Quito", + "1952-10-09": "Independence of Guayaquil", + "1952-11-02": "All Souls' Day", + "1952-11-03": "Independence of Cuenca", + "1952-12-25": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-02-16": "Carnival", + "1953-02-17": "Carnival", + "1953-04-03": "Good Friday", + "1953-05-01": "Labour Day", + "1953-05-24": "The Battle of Pichincha", + "1953-08-10": "Declaration of Independence of Quito", + "1953-10-09": "Independence of Guayaquil", + "1953-11-02": "All Souls' Day", + "1953-11-03": "Independence of Cuenca", + "1953-12-25": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-03-01": "Carnival", + "1954-03-02": "Carnival", + "1954-04-16": "Good Friday", + "1954-05-01": "Labour Day", + "1954-05-24": "The Battle of Pichincha", + "1954-08-10": "Declaration of Independence of Quito", + "1954-10-09": "Independence of Guayaquil", + "1954-11-02": "All Souls' Day", + "1954-11-03": "Independence of Cuenca", + "1954-12-25": "Christmas Day", + "1955-01-01": "New Year's Day", + "1955-02-21": "Carnival", + "1955-02-22": "Carnival", + "1955-04-08": "Good Friday", + "1955-05-01": "Labour Day", + "1955-05-24": "The Battle of Pichincha", + "1955-08-10": "Declaration of Independence of Quito", + "1955-10-09": "Independence of Guayaquil", + "1955-11-02": "All Souls' Day", + "1955-11-03": "Independence of Cuenca", + "1955-12-25": "Christmas Day", + "1956-01-01": "New Year's Day", + "1956-02-13": "Carnival", + "1956-02-14": "Carnival", + "1956-03-30": "Good Friday", + "1956-05-01": "Labour Day", + "1956-05-24": "The Battle of Pichincha", + "1956-08-10": "Declaration of Independence of Quito", + "1956-10-09": "Independence of Guayaquil", + "1956-11-02": "All Souls' Day", + "1956-11-03": "Independence of Cuenca", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-03-04": "Carnival", + "1957-03-05": "Carnival", + "1957-04-19": "Good Friday", + "1957-05-01": "Labour Day", + "1957-05-24": "The Battle of Pichincha", + "1957-08-10": "Declaration of Independence of Quito", + "1957-10-09": "Independence of Guayaquil", + "1957-11-02": "All Souls' Day", + "1957-11-03": "Independence of Cuenca", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-02-17": "Carnival", + "1958-02-18": "Carnival", + "1958-04-04": "Good Friday", + "1958-05-01": "Labour Day", + "1958-05-24": "The Battle of Pichincha", + "1958-08-10": "Declaration of Independence of Quito", + "1958-10-09": "Independence of Guayaquil", + "1958-11-02": "All Souls' Day", + "1958-11-03": "Independence of Cuenca", + "1958-12-25": "Christmas Day", + "1959-01-01": "New Year's Day", + "1959-02-09": "Carnival", + "1959-02-10": "Carnival", + "1959-03-27": "Good Friday", + "1959-05-01": "Labour Day", + "1959-05-24": "The Battle of Pichincha", + "1959-08-10": "Declaration of Independence of Quito", + "1959-10-09": "Independence of Guayaquil", + "1959-11-02": "All Souls' Day", + "1959-11-03": "Independence of Cuenca", + "1959-12-25": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-02-29": "Carnival", + "1960-03-01": "Carnival", + "1960-04-15": "Good Friday", + "1960-05-01": "Labour Day", + "1960-05-24": "The Battle of Pichincha", + "1960-08-10": "Declaration of Independence of Quito", + "1960-10-09": "Independence of Guayaquil", + "1960-11-02": "All Souls' Day", + "1960-11-03": "Independence of Cuenca", + "1960-12-25": "Christmas Day", + "1961-01-01": "New Year's Day", + "1961-02-13": "Carnival", + "1961-02-14": "Carnival", + "1961-03-31": "Good Friday", + "1961-05-01": "Labour Day", + "1961-05-24": "The Battle of Pichincha", + "1961-08-10": "Declaration of Independence of Quito", + "1961-10-09": "Independence of Guayaquil", + "1961-11-02": "All Souls' Day", + "1961-11-03": "Independence of Cuenca", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-03-05": "Carnival", + "1962-03-06": "Carnival", + "1962-04-20": "Good Friday", + "1962-05-01": "Labour Day", + "1962-05-24": "The Battle of Pichincha", + "1962-08-10": "Declaration of Independence of Quito", + "1962-10-09": "Independence of Guayaquil", + "1962-11-02": "All Souls' Day", + "1962-11-03": "Independence of Cuenca", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-02-25": "Carnival", + "1963-02-26": "Carnival", + "1963-04-12": "Good Friday", + "1963-05-01": "Labour Day", + "1963-05-24": "The Battle of Pichincha", + "1963-08-10": "Declaration of Independence of Quito", + "1963-10-09": "Independence of Guayaquil", + "1963-11-02": "All Souls' Day", + "1963-11-03": "Independence of Cuenca", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-02-10": "Carnival", + "1964-02-11": "Carnival", + "1964-03-27": "Good Friday", + "1964-05-01": "Labour Day", + "1964-05-24": "The Battle of Pichincha", + "1964-08-10": "Declaration of Independence of Quito", + "1964-10-09": "Independence of Guayaquil", + "1964-11-02": "All Souls' Day", + "1964-11-03": "Independence of Cuenca", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-03-01": "Carnival", + "1965-03-02": "Carnival", + "1965-04-16": "Good Friday", + "1965-05-01": "Labour Day", + "1965-05-24": "The Battle of Pichincha", + "1965-08-10": "Declaration of Independence of Quito", + "1965-10-09": "Independence of Guayaquil", + "1965-11-02": "All Souls' Day", + "1965-11-03": "Independence of Cuenca", + "1965-12-25": "Christmas Day", + "1966-01-01": "New Year's Day", + "1966-02-21": "Carnival", + "1966-02-22": "Carnival", + "1966-04-08": "Good Friday", + "1966-05-01": "Labour Day", + "1966-05-24": "The Battle of Pichincha", + "1966-08-10": "Declaration of Independence of Quito", + "1966-10-09": "Independence of Guayaquil", + "1966-11-02": "All Souls' Day", + "1966-11-03": "Independence of Cuenca", + "1966-12-25": "Christmas Day", + "1967-01-01": "New Year's Day", + "1967-02-06": "Carnival", + "1967-02-07": "Carnival", + "1967-03-24": "Good Friday", + "1967-05-01": "Labour Day", + "1967-05-24": "The Battle of Pichincha", + "1967-08-10": "Declaration of Independence of Quito", + "1967-10-09": "Independence of Guayaquil", + "1967-11-02": "All Souls' Day", + "1967-11-03": "Independence of Cuenca", + "1967-12-25": "Christmas Day", + "1968-01-01": "New Year's Day", + "1968-02-26": "Carnival", + "1968-02-27": "Carnival", + "1968-04-12": "Good Friday", + "1968-05-01": "Labour Day", + "1968-05-24": "The Battle of Pichincha", + "1968-08-10": "Declaration of Independence of Quito", + "1968-10-09": "Independence of Guayaquil", + "1968-11-02": "All Souls' Day", + "1968-11-03": "Independence of Cuenca", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-02-17": "Carnival", + "1969-02-18": "Carnival", + "1969-04-04": "Good Friday", + "1969-05-01": "Labour Day", + "1969-05-24": "The Battle of Pichincha", + "1969-08-10": "Declaration of Independence of Quito", + "1969-10-09": "Independence of Guayaquil", + "1969-11-02": "All Souls' Day", + "1969-11-03": "Independence of Cuenca", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-02-09": "Carnival", + "1970-02-10": "Carnival", + "1970-03-27": "Good Friday", + "1970-05-01": "Labour Day", + "1970-05-24": "The Battle of Pichincha", + "1970-08-10": "Declaration of Independence of Quito", + "1970-10-09": "Independence of Guayaquil", + "1970-11-02": "All Souls' Day", + "1970-11-03": "Independence of Cuenca", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-02-22": "Carnival", + "1971-02-23": "Carnival", + "1971-04-09": "Good Friday", + "1971-05-01": "Labour Day", + "1971-05-24": "The Battle of Pichincha", + "1971-08-10": "Declaration of Independence of Quito", + "1971-10-09": "Independence of Guayaquil", + "1971-11-02": "All Souls' Day", + "1971-11-03": "Independence of Cuenca", + "1971-12-25": "Christmas Day", + "1972-01-01": "New Year's Day", + "1972-02-14": "Carnival", + "1972-02-15": "Carnival", + "1972-03-31": "Good Friday", + "1972-05-01": "Labour Day", + "1972-05-24": "The Battle of Pichincha", + "1972-08-10": "Declaration of Independence of Quito", + "1972-10-09": "Independence of Guayaquil", + "1972-11-02": "All Souls' Day", + "1972-11-03": "Independence of Cuenca", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-03-05": "Carnival", + "1973-03-06": "Carnival", + "1973-04-20": "Good Friday", + "1973-05-01": "Labour Day", + "1973-05-24": "The Battle of Pichincha", + "1973-08-10": "Declaration of Independence of Quito", + "1973-10-09": "Independence of Guayaquil", + "1973-11-02": "All Souls' Day", + "1973-11-03": "Independence of Cuenca", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-02-25": "Carnival", + "1974-02-26": "Carnival", + "1974-04-12": "Good Friday", + "1974-05-01": "Labour Day", + "1974-05-24": "The Battle of Pichincha", + "1974-08-10": "Declaration of Independence of Quito", + "1974-10-09": "Independence of Guayaquil", + "1974-11-02": "All Souls' Day", + "1974-11-03": "Independence of Cuenca", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-02-10": "Carnival", + "1975-02-11": "Carnival", + "1975-03-28": "Good Friday", + "1975-05-01": "Labour Day", + "1975-05-24": "The Battle of Pichincha", + "1975-08-10": "Declaration of Independence of Quito", + "1975-10-09": "Independence of Guayaquil", + "1975-11-02": "All Souls' Day", + "1975-11-03": "Independence of Cuenca", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-03-01": "Carnival", + "1976-03-02": "Carnival", + "1976-04-16": "Good Friday", + "1976-05-01": "Labour Day", + "1976-05-24": "The Battle of Pichincha", + "1976-08-10": "Declaration of Independence of Quito", + "1976-10-09": "Independence of Guayaquil", + "1976-11-02": "All Souls' Day", + "1976-11-03": "Independence of Cuenca", + "1976-12-25": "Christmas Day", + "1977-01-01": "New Year's Day", + "1977-02-21": "Carnival", + "1977-02-22": "Carnival", + "1977-04-08": "Good Friday", + "1977-05-01": "Labour Day", + "1977-05-24": "The Battle of Pichincha", + "1977-08-10": "Declaration of Independence of Quito", + "1977-10-09": "Independence of Guayaquil", + "1977-11-02": "All Souls' Day", + "1977-11-03": "Independence of Cuenca", + "1977-12-25": "Christmas Day", + "1978-01-01": "New Year's Day", + "1978-02-06": "Carnival", + "1978-02-07": "Carnival", + "1978-03-24": "Good Friday", + "1978-05-01": "Labour Day", + "1978-05-24": "The Battle of Pichincha", + "1978-08-10": "Declaration of Independence of Quito", + "1978-10-09": "Independence of Guayaquil", + "1978-11-02": "All Souls' Day", + "1978-11-03": "Independence of Cuenca", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-02-26": "Carnival", + "1979-02-27": "Carnival", + "1979-04-13": "Good Friday", + "1979-05-01": "Labour Day", + "1979-05-24": "The Battle of Pichincha", + "1979-08-10": "Declaration of Independence of Quito", + "1979-10-09": "Independence of Guayaquil", + "1979-11-02": "All Souls' Day", + "1979-11-03": "Independence of Cuenca", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-02-18": "Carnival", + "1980-02-19": "Carnival", + "1980-04-04": "Good Friday", + "1980-05-01": "Labour Day", + "1980-05-24": "The Battle of Pichincha", + "1980-08-10": "Declaration of Independence of Quito", + "1980-10-09": "Independence of Guayaquil", + "1980-11-02": "All Souls' Day", + "1980-11-03": "Independence of Cuenca", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-03-02": "Carnival", + "1981-03-03": "Carnival", + "1981-04-17": "Good Friday", + "1981-05-01": "Labour Day", + "1981-05-24": "The Battle of Pichincha", + "1981-08-10": "Declaration of Independence of Quito", + "1981-10-09": "Independence of Guayaquil", + "1981-11-02": "All Souls' Day", + "1981-11-03": "Independence of Cuenca", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-02-22": "Carnival", + "1982-02-23": "Carnival", + "1982-04-09": "Good Friday", + "1982-05-01": "Labour Day", + "1982-05-24": "The Battle of Pichincha", + "1982-08-10": "Declaration of Independence of Quito", + "1982-10-09": "Independence of Guayaquil", + "1982-11-02": "All Souls' Day", + "1982-11-03": "Independence of Cuenca", + "1982-12-25": "Christmas Day", + "1983-01-01": "New Year's Day", + "1983-02-14": "Carnival", + "1983-02-15": "Carnival", + "1983-04-01": "Good Friday", + "1983-05-01": "Labour Day", + "1983-05-24": "The Battle of Pichincha", + "1983-08-10": "Declaration of Independence of Quito", + "1983-10-09": "Independence of Guayaquil", + "1983-11-02": "All Souls' Day", + "1983-11-03": "Independence of Cuenca", + "1983-12-25": "Christmas Day", + "1984-01-01": "New Year's Day", + "1984-03-05": "Carnival", + "1984-03-06": "Carnival", + "1984-04-20": "Good Friday", + "1984-05-01": "Labour Day", + "1984-05-24": "The Battle of Pichincha", + "1984-08-10": "Declaration of Independence of Quito", + "1984-10-09": "Independence of Guayaquil", + "1984-11-02": "All Souls' Day", + "1984-11-03": "Independence of Cuenca", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-02-18": "Carnival", + "1985-02-19": "Carnival", + "1985-04-05": "Good Friday", + "1985-05-01": "Labour Day", + "1985-05-24": "The Battle of Pichincha", + "1985-08-10": "Declaration of Independence of Quito", + "1985-10-09": "Independence of Guayaquil", + "1985-11-02": "All Souls' Day", + "1985-11-03": "Independence of Cuenca", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-02-10": "Carnival", + "1986-02-11": "Carnival", + "1986-03-28": "Good Friday", + "1986-05-01": "Labour Day", + "1986-05-24": "The Battle of Pichincha", + "1986-08-10": "Declaration of Independence of Quito", + "1986-10-09": "Independence of Guayaquil", + "1986-11-02": "All Souls' Day", + "1986-11-03": "Independence of Cuenca", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-03-02": "Carnival", + "1987-03-03": "Carnival", + "1987-04-17": "Good Friday", + "1987-05-01": "Labour Day", + "1987-05-24": "The Battle of Pichincha", + "1987-08-10": "Declaration of Independence of Quito", + "1987-10-09": "Independence of Guayaquil", + "1987-11-02": "All Souls' Day", + "1987-11-03": "Independence of Cuenca", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-02-15": "Carnival", + "1988-02-16": "Carnival", + "1988-04-01": "Good Friday", + "1988-05-01": "Labour Day", + "1988-05-24": "The Battle of Pichincha", + "1988-08-10": "Declaration of Independence of Quito", + "1988-10-09": "Independence of Guayaquil", + "1988-11-02": "All Souls' Day", + "1988-11-03": "Independence of Cuenca", + "1988-12-25": "Christmas Day", + "1989-01-01": "New Year's Day", + "1989-02-06": "Carnival", + "1989-02-07": "Carnival", + "1989-03-24": "Good Friday", + "1989-05-01": "Labour Day", + "1989-05-24": "The Battle of Pichincha", + "1989-08-10": "Declaration of Independence of Quito", + "1989-10-09": "Independence of Guayaquil", + "1989-11-02": "All Souls' Day", + "1989-11-03": "Independence of Cuenca", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-02-26": "Carnival", + "1990-02-27": "Carnival", + "1990-04-13": "Good Friday", + "1990-05-01": "Labour Day", + "1990-05-24": "The Battle of Pichincha", + "1990-08-10": "Declaration of Independence of Quito", + "1990-10-09": "Independence of Guayaquil", + "1990-11-02": "All Souls' Day", + "1990-11-03": "Independence of Cuenca", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-02-11": "Carnival", + "1991-02-12": "Carnival", + "1991-03-29": "Good Friday", + "1991-05-01": "Labour Day", + "1991-05-24": "The Battle of Pichincha", + "1991-08-10": "Declaration of Independence of Quito", + "1991-10-09": "Independence of Guayaquil", + "1991-11-02": "All Souls' Day", + "1991-11-03": "Independence of Cuenca", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-03-02": "Carnival", + "1992-03-03": "Carnival", + "1992-04-17": "Good Friday", + "1992-05-01": "Labour Day", + "1992-05-24": "The Battle of Pichincha", + "1992-08-10": "Declaration of Independence of Quito", + "1992-10-09": "Independence of Guayaquil", + "1992-11-02": "All Souls' Day", + "1992-11-03": "Independence of Cuenca", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-02-22": "Carnival", + "1993-02-23": "Carnival", + "1993-04-09": "Good Friday", + "1993-05-01": "Labour Day", + "1993-05-24": "The Battle of Pichincha", + "1993-08-10": "Declaration of Independence of Quito", + "1993-10-09": "Independence of Guayaquil", + "1993-11-02": "All Souls' Day", + "1993-11-03": "Independence of Cuenca", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-02-14": "Carnival", + "1994-02-15": "Carnival", + "1994-04-01": "Good Friday", + "1994-05-01": "Labour Day", + "1994-05-24": "The Battle of Pichincha", + "1994-08-10": "Declaration of Independence of Quito", + "1994-10-09": "Independence of Guayaquil", + "1994-11-02": "All Souls' Day", + "1994-11-03": "Independence of Cuenca", + "1994-12-25": "Christmas Day", + "1995-01-01": "New Year's Day", + "1995-02-27": "Carnival", + "1995-02-28": "Carnival", + "1995-04-14": "Good Friday", + "1995-05-01": "Labour Day", + "1995-05-24": "The Battle of Pichincha", + "1995-08-10": "Declaration of Independence of Quito", + "1995-10-09": "Independence of Guayaquil", + "1995-11-02": "All Souls' Day", + "1995-11-03": "Independence of Cuenca", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-02-19": "Carnival", + "1996-02-20": "Carnival", + "1996-04-05": "Good Friday", + "1996-05-01": "Labour Day", + "1996-05-24": "The Battle of Pichincha", + "1996-08-10": "Declaration of Independence of Quito", + "1996-10-09": "Independence of Guayaquil", + "1996-11-02": "All Souls' Day", + "1996-11-03": "Independence of Cuenca", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-02-10": "Carnival", + "1997-02-11": "Carnival", + "1997-03-28": "Good Friday", + "1997-05-01": "Labour Day", + "1997-05-24": "The Battle of Pichincha", + "1997-08-10": "Declaration of Independence of Quito", + "1997-10-09": "Independence of Guayaquil", + "1997-11-02": "All Souls' Day", + "1997-11-03": "Independence of Cuenca", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-02-23": "Carnival", + "1998-02-24": "Carnival", + "1998-04-10": "Good Friday", + "1998-05-01": "Labour Day", + "1998-05-24": "The Battle of Pichincha", + "1998-08-10": "Declaration of Independence of Quito", + "1998-10-09": "Independence of Guayaquil", + "1998-11-02": "All Souls' Day", + "1998-11-03": "Independence of Cuenca", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-02-15": "Carnival", + "1999-02-16": "Carnival", + "1999-04-02": "Good Friday", + "1999-05-01": "Labour Day", + "1999-05-24": "The Battle of Pichincha", + "1999-08-10": "Declaration of Independence of Quito", + "1999-10-09": "Independence of Guayaquil", + "1999-11-02": "All Souls' Day", + "1999-11-03": "Independence of Cuenca", + "1999-12-25": "Christmas Day", + "2000-01-01": "New Year's Day", + "2000-03-06": "Carnival", + "2000-03-07": "Carnival", + "2000-04-21": "Good Friday", + "2000-05-01": "Labour Day", + "2000-05-24": "The Battle of Pichincha", + "2000-08-10": "Declaration of Independence of Quito", + "2000-10-09": "Independence of Guayaquil", + "2000-11-02": "All Souls' Day", + "2000-11-03": "Independence of Cuenca", + "2000-12-25": "Christmas Day", + "2001-01-01": "New Year's Day", + "2001-02-26": "Carnival", + "2001-02-27": "Carnival", + "2001-04-13": "Good Friday", + "2001-05-01": "Labour Day", + "2001-05-24": "The Battle of Pichincha", + "2001-08-10": "Declaration of Independence of Quito", + "2001-10-09": "Independence of Guayaquil", + "2001-11-02": "All Souls' Day", + "2001-11-03": "Independence of Cuenca", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-02-11": "Carnival", + "2002-02-12": "Carnival", + "2002-03-29": "Good Friday", + "2002-05-01": "Labour Day", + "2002-05-24": "The Battle of Pichincha", + "2002-08-10": "Declaration of Independence of Quito", + "2002-10-09": "Independence of Guayaquil", + "2002-11-02": "All Souls' Day", + "2002-11-03": "Independence of Cuenca", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-03-03": "Carnival", + "2003-03-04": "Carnival", + "2003-04-18": "Good Friday", + "2003-05-01": "Labour Day", + "2003-05-24": "The Battle of Pichincha", + "2003-08-10": "Declaration of Independence of Quito", + "2003-10-09": "Independence of Guayaquil", + "2003-11-02": "All Souls' Day", + "2003-11-03": "Independence of Cuenca", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-02-23": "Carnival", + "2004-02-24": "Carnival", + "2004-04-09": "Good Friday", + "2004-05-01": "Labour Day", + "2004-05-24": "The Battle of Pichincha", + "2004-08-10": "Declaration of Independence of Quito", + "2004-10-09": "Independence of Guayaquil", + "2004-11-02": "All Souls' Day", + "2004-11-03": "Independence of Cuenca", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-02-07": "Carnival", + "2005-02-08": "Carnival", + "2005-03-25": "Good Friday", + "2005-05-01": "Labour Day", + "2005-05-24": "The Battle of Pichincha", + "2005-08-10": "Declaration of Independence of Quito", + "2005-10-09": "Independence of Guayaquil", + "2005-11-02": "All Souls' Day", + "2005-11-03": "Independence of Cuenca", + "2005-12-25": "Christmas Day", + "2006-01-01": "New Year's Day", + "2006-02-27": "Carnival", + "2006-02-28": "Carnival", + "2006-04-14": "Good Friday", + "2006-05-01": "Labour Day", + "2006-05-24": "The Battle of Pichincha", + "2006-08-10": "Declaration of Independence of Quito", + "2006-10-09": "Independence of Guayaquil", + "2006-11-02": "All Souls' Day", + "2006-11-03": "Independence of Cuenca", + "2006-12-25": "Christmas Day", + "2007-01-01": "New Year's Day", + "2007-02-19": "Carnival", + "2007-02-20": "Carnival", + "2007-04-06": "Good Friday", + "2007-05-01": "Labour Day", + "2007-05-24": "The Battle of Pichincha", + "2007-08-10": "Declaration of Independence of Quito", + "2007-10-09": "Independence of Guayaquil", + "2007-11-02": "All Souls' Day", + "2007-11-03": "Independence of Cuenca", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-02-04": "Carnival", + "2008-02-05": "Carnival", + "2008-03-21": "Good Friday", + "2008-05-01": "Labour Day", + "2008-05-24": "The Battle of Pichincha", + "2008-08-10": "Declaration of Independence of Quito", + "2008-10-09": "Independence of Guayaquil", + "2008-11-02": "All Souls' Day", + "2008-11-03": "Independence of Cuenca", + "2008-12-25": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-02-23": "Carnival", + "2009-02-24": "Carnival", + "2009-04-10": "Good Friday", + "2009-05-01": "Labour Day", + "2009-05-24": "The Battle of Pichincha", + "2009-08-10": "Declaration of Independence of Quito", + "2009-10-09": "Independence of Guayaquil", + "2009-11-02": "All Souls' Day", + "2009-11-03": "Independence of Cuenca", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-02-15": "Carnival", + "2010-02-16": "Carnival", + "2010-04-02": "Good Friday", + "2010-05-01": "Labour Day", + "2010-05-24": "The Battle of Pichincha", + "2010-08-10": "Declaration of Independence of Quito", + "2010-10-09": "Independence of Guayaquil", + "2010-11-02": "All Souls' Day", + "2010-11-03": "Independence of Cuenca", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-03-07": "Carnival", + "2011-03-08": "Carnival", + "2011-04-22": "Good Friday", + "2011-05-01": "Labour Day", + "2011-05-24": "The Battle of Pichincha", + "2011-08-10": "Declaration of Independence of Quito", + "2011-10-09": "Independence of Guayaquil", + "2011-11-02": "All Souls' Day", + "2011-11-03": "Independence of Cuenca", + "2011-12-25": "Christmas Day", + "2012-01-01": "New Year's Day", + "2012-02-20": "Carnival", + "2012-02-21": "Carnival", + "2012-04-06": "Good Friday", + "2012-05-01": "Labour Day", + "2012-05-24": "The Battle of Pichincha", + "2012-08-10": "Declaration of Independence of Quito", + "2012-10-09": "Independence of Guayaquil", + "2012-11-02": "All Souls' Day", + "2012-11-03": "Independence of Cuenca", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-02-11": "Carnival", + "2013-02-12": "Carnival", + "2013-03-29": "Good Friday", + "2013-05-01": "Labour Day", + "2013-05-24": "The Battle of Pichincha", + "2013-08-10": "Declaration of Independence of Quito", + "2013-10-09": "Independence of Guayaquil", + "2013-11-02": "All Souls' Day", + "2013-11-03": "Independence of Cuenca", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-03-03": "Carnival", + "2014-03-04": "Carnival", + "2014-04-18": "Good Friday", + "2014-05-01": "Labour Day", + "2014-05-24": "The Battle of Pichincha", + "2014-08-10": "Declaration of Independence of Quito", + "2014-10-09": "Independence of Guayaquil", + "2014-11-02": "All Souls' Day", + "2014-11-03": "Independence of Cuenca", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-02-16": "Carnival", + "2015-02-17": "Carnival", + "2015-04-03": "Good Friday", + "2015-05-01": "Labour Day", + "2015-05-24": "The Battle of Pichincha", + "2015-08-10": "Declaration of Independence of Quito", + "2015-10-09": "Independence of Guayaquil", + "2015-11-02": "All Souls' Day", + "2015-11-03": "Independence of Cuenca", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-02-08": "Carnival", + "2016-02-09": "Carnival", + "2016-03-25": "Good Friday", + "2016-05-01": "Labour Day", + "2016-05-24": "The Battle of Pichincha", + "2016-08-10": "Declaration of Independence of Quito", + "2016-10-09": "Independence of Guayaquil", + "2016-11-02": "All Souls' Day", + "2016-11-03": "Independence of Cuenca", + "2016-12-25": "Christmas Day", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (Observed)", + "2017-02-27": "Carnival", + "2017-02-28": "Carnival", + "2017-04-14": "Good Friday", + "2017-05-01": "Labour Day", + "2017-05-24": "The Battle of Pichincha", + "2017-05-26": "The Battle of Pichincha (Observed)", + "2017-08-10": "Declaration of Independence of Quito", + "2017-08-11": "Declaration of Independence of Quito (Observed)", + "2017-10-09": "Independence of Guayaquil", + "2017-11-02": "All Souls' Day", + "2017-11-03": "Independence of Cuenca", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-02-12": "Carnival", + "2018-02-13": "Carnival", + "2018-03-30": "Good Friday", + "2018-04-30": "Labour Day (Observed)", + "2018-05-01": "Labour Day", + "2018-05-24": "The Battle of Pichincha", + "2018-05-25": "The Battle of Pichincha (Observed)", + "2018-08-10": "Declaration of Independence of Quito", + "2018-10-08": "Independence of Guayaquil (Observed)", + "2018-10-09": "Independence of Guayaquil", + "2018-11-02": "All Souls' Day", + "2018-11-03": "Independence of Cuenca", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-03-04": "Carnival", + "2019-03-05": "Carnival", + "2019-04-19": "Good Friday", + "2019-05-01": "Labour Day", + "2019-05-03": "Labour Day (Observed)", + "2019-05-24": "The Battle of Pichincha", + "2019-08-09": "Declaration of Independence of Quito (Observed)", + "2019-08-10": "Declaration of Independence of Quito", + "2019-10-09": "Independence of Guayaquil", + "2019-10-11": "Independence of Guayaquil (Observed)", + "2019-11-01": "All Souls' Day (Observed)", + "2019-11-02": "All Souls' Day", + "2019-11-03": "Independence of Cuenca", + "2019-11-04": "Independence of Cuenca (Observed)", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-02-24": "Carnival", + "2020-02-25": "Carnival", + "2020-04-10": "Good Friday", + "2020-05-01": "Labour Day", + "2020-05-24": "The Battle of Pichincha", + "2020-05-25": "The Battle of Pichincha (Observed)", + "2020-08-10": "Declaration of Independence of Quito", + "2020-10-09": "Independence of Guayaquil", + "2020-11-02": "All Souls' Day", + "2020-11-03": "Independence of Cuenca", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-02-15": "Carnival", + "2021-02-16": "Carnival", + "2021-04-02": "Good Friday", + "2021-04-30": "Labour Day (Observed)", + "2021-05-01": "Labour Day", + "2021-05-24": "The Battle of Pichincha", + "2021-08-09": "Declaration of Independence of Quito (Observed)", + "2021-08-10": "Declaration of Independence of Quito", + "2021-10-08": "Independence of Guayaquil (Observed)", + "2021-10-09": "Independence of Guayaquil", + "2021-11-01": "All Souls' Day (Observed)", + "2021-11-02": "All Souls' Day", + "2021-11-03": "Independence of Cuenca", + "2021-11-05": "Independence of Cuenca (Observed)", + "2021-12-24": "Christmas Day (Observed)", + "2021-12-25": "Christmas Day", + "2021-12-31": "New Year's Day (Observed)", + "2022-01-01": "New Year's Day", + "2022-02-28": "Carnival", + "2022-03-01": "Carnival", + "2022-04-15": "Good Friday", + "2022-05-01": "Labour Day", + "2022-05-02": "Labour Day (Observed)", + "2022-05-23": "The Battle of Pichincha (Observed)", + "2022-05-24": "The Battle of Pichincha", + "2022-08-10": "Declaration of Independence of Quito", + "2022-08-12": "Declaration of Independence of Quito (Observed)", + "2022-10-09": "Independence of Guayaquil", + "2022-10-10": "Independence of Guayaquil (Observed)", + "2022-11-02": "All Souls' Day", + "2022-11-03": "Independence of Cuenca", + "2022-11-04": "All Souls' Day (Observed); Independence of Cuenca (Observed)", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day (Observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (Observed)", + "2023-02-20": "Carnival", + "2023-02-21": "Carnival", + "2023-04-07": "Good Friday", + "2023-05-01": "Labour Day", + "2023-05-24": "The Battle of Pichincha", + "2023-05-26": "The Battle of Pichincha (Observed)", + "2023-08-10": "Declaration of Independence of Quito", + "2023-08-11": "Declaration of Independence of Quito (Observed)", + "2023-10-09": "Independence of Guayaquil", + "2023-11-02": "All Souls' Day", + "2023-11-03": "Independence of Cuenca", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-02-12": "Carnival", + "2024-02-13": "Carnival", + "2024-03-29": "Good Friday", + "2024-05-01": "Labour Day", + "2024-05-03": "Labour Day (Observed)", + "2024-05-24": "The Battle of Pichincha", + "2024-08-09": "Declaration of Independence of Quito (Observed)", + "2024-08-10": "Declaration of Independence of Quito", + "2024-10-09": "Independence of Guayaquil", + "2024-10-11": "Independence of Guayaquil (Observed)", + "2024-11-01": "All Souls' Day (Observed)", + "2024-11-02": "All Souls' Day", + "2024-11-03": "Independence of Cuenca", + "2024-11-04": "Independence of Cuenca (Observed)", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-03-03": "Carnival", + "2025-03-04": "Carnival", + "2025-04-18": "Good Friday", + "2025-05-01": "Labour Day", + "2025-05-02": "Labour Day (Observed)", + "2025-05-23": "The Battle of Pichincha (Observed)", + "2025-05-24": "The Battle of Pichincha", + "2025-08-10": "Declaration of Independence of Quito", + "2025-08-11": "Declaration of Independence of Quito (Observed)", + "2025-10-09": "Independence of Guayaquil", + "2025-10-10": "Independence of Guayaquil (Observed)", + "2025-11-02": "All Souls' Day", + "2025-11-03": "Independence of Cuenca", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-02-16": "Carnival", + "2026-02-17": "Carnival", + "2026-04-03": "Good Friday", + "2026-05-01": "Labour Day", + "2026-05-24": "The Battle of Pichincha", + "2026-05-25": "The Battle of Pichincha (Observed)", + "2026-08-10": "Declaration of Independence of Quito", + "2026-10-09": "Independence of Guayaquil", + "2026-11-02": "All Souls' Day", + "2026-11-03": "Independence of Cuenca", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-02-08": "Carnival", + "2027-02-09": "Carnival", + "2027-03-26": "Good Friday", + "2027-04-30": "Labour Day (Observed)", + "2027-05-01": "Labour Day", + "2027-05-24": "The Battle of Pichincha", + "2027-08-09": "Declaration of Independence of Quito (Observed)", + "2027-08-10": "Declaration of Independence of Quito", + "2027-10-08": "Independence of Guayaquil (Observed)", + "2027-10-09": "Independence of Guayaquil", + "2027-11-01": "All Souls' Day (Observed)", + "2027-11-02": "All Souls' Day", + "2027-11-03": "Independence of Cuenca", + "2027-11-05": "Independence of Cuenca (Observed)", + "2027-12-24": "Christmas Day (Observed)", + "2027-12-25": "Christmas Day", + "2027-12-31": "New Year's Day (Observed)", + "2028-01-01": "New Year's Day", + "2028-02-28": "Carnival", + "2028-02-29": "Carnival", + "2028-04-14": "Good Friday", + "2028-05-01": "Labour Day", + "2028-05-24": "The Battle of Pichincha", + "2028-05-26": "The Battle of Pichincha (Observed)", + "2028-08-10": "Declaration of Independence of Quito", + "2028-08-11": "Declaration of Independence of Quito (Observed)", + "2028-10-09": "Independence of Guayaquil", + "2028-11-02": "All Souls' Day", + "2028-11-03": "Independence of Cuenca", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-02-12": "Carnival", + "2029-02-13": "Carnival", + "2029-03-30": "Good Friday", + "2029-04-30": "Labour Day (Observed)", + "2029-05-01": "Labour Day", + "2029-05-24": "The Battle of Pichincha", + "2029-05-25": "The Battle of Pichincha (Observed)", + "2029-08-10": "Declaration of Independence of Quito", + "2029-10-08": "Independence of Guayaquil (Observed)", + "2029-10-09": "Independence of Guayaquil", + "2029-11-02": "All Souls' Day", + "2029-11-03": "Independence of Cuenca", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-03-04": "Carnival", + "2030-03-05": "Carnival", + "2030-04-19": "Good Friday", + "2030-05-01": "Labour Day", + "2030-05-03": "Labour Day (Observed)", + "2030-05-24": "The Battle of Pichincha", + "2030-08-09": "Declaration of Independence of Quito (Observed)", + "2030-08-10": "Declaration of Independence of Quito", + "2030-10-09": "Independence of Guayaquil", + "2030-10-11": "Independence of Guayaquil (Observed)", + "2030-11-01": "All Souls' Day (Observed)", + "2030-11-02": "All Souls' Day", + "2030-11-03": "Independence of Cuenca", + "2030-11-04": "Independence of Cuenca (Observed)", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-02-24": "Carnival", + "2031-02-25": "Carnival", + "2031-04-11": "Good Friday", + "2031-05-01": "Labour Day", + "2031-05-02": "Labour Day (Observed)", + "2031-05-23": "The Battle of Pichincha (Observed)", + "2031-05-24": "The Battle of Pichincha", + "2031-08-10": "Declaration of Independence of Quito", + "2031-08-11": "Declaration of Independence of Quito (Observed)", + "2031-10-09": "Independence of Guayaquil", + "2031-10-10": "Independence of Guayaquil (Observed)", + "2031-11-02": "All Souls' Day", + "2031-11-03": "Independence of Cuenca", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-02-09": "Carnival", + "2032-02-10": "Carnival", + "2032-03-26": "Good Friday", + "2032-04-30": "Labour Day (Observed)", + "2032-05-01": "Labour Day", + "2032-05-24": "The Battle of Pichincha", + "2032-08-09": "Declaration of Independence of Quito (Observed)", + "2032-08-10": "Declaration of Independence of Quito", + "2032-10-08": "Independence of Guayaquil (Observed)", + "2032-10-09": "Independence of Guayaquil", + "2032-11-01": "All Souls' Day (Observed)", + "2032-11-02": "All Souls' Day", + "2032-11-03": "Independence of Cuenca", + "2032-11-05": "Independence of Cuenca (Observed)", + "2032-12-24": "Christmas Day (Observed)", + "2032-12-25": "Christmas Day", + "2032-12-31": "New Year's Day (Observed)", + "2033-01-01": "New Year's Day", + "2033-02-28": "Carnival", + "2033-03-01": "Carnival", + "2033-04-15": "Good Friday", + "2033-05-01": "Labour Day", + "2033-05-02": "Labour Day (Observed)", + "2033-05-23": "The Battle of Pichincha (Observed)", + "2033-05-24": "The Battle of Pichincha", + "2033-08-10": "Declaration of Independence of Quito", + "2033-08-12": "Declaration of Independence of Quito (Observed)", + "2033-10-09": "Independence of Guayaquil", + "2033-10-10": "Independence of Guayaquil (Observed)", + "2033-11-02": "All Souls' Day", + "2033-11-03": "Independence of Cuenca", + "2033-11-04": "All Souls' Day (Observed); Independence of Cuenca (Observed)", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day (Observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-02-20": "Carnival", + "2034-02-21": "Carnival", + "2034-04-07": "Good Friday", + "2034-05-01": "Labour Day", + "2034-05-24": "The Battle of Pichincha", + "2034-05-26": "The Battle of Pichincha (Observed)", + "2034-08-10": "Declaration of Independence of Quito", + "2034-08-11": "Declaration of Independence of Quito (Observed)", + "2034-10-09": "Independence of Guayaquil", + "2034-11-02": "All Souls' Day", + "2034-11-03": "Independence of Cuenca", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-02-05": "Carnival", + "2035-02-06": "Carnival", + "2035-03-23": "Good Friday", + "2035-04-30": "Labour Day (Observed)", + "2035-05-01": "Labour Day", + "2035-05-24": "The Battle of Pichincha", + "2035-05-25": "The Battle of Pichincha (Observed)", + "2035-08-10": "Declaration of Independence of Quito", + "2035-10-08": "Independence of Guayaquil (Observed)", + "2035-10-09": "Independence of Guayaquil", + "2035-11-02": "All Souls' Day", + "2035-11-03": "Independence of Cuenca", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-02-25": "Carnival", + "2036-02-26": "Carnival", + "2036-04-11": "Good Friday", + "2036-05-01": "Labour Day", + "2036-05-02": "Labour Day (Observed)", + "2036-05-23": "The Battle of Pichincha (Observed)", + "2036-05-24": "The Battle of Pichincha", + "2036-08-10": "Declaration of Independence of Quito", + "2036-08-11": "Declaration of Independence of Quito (Observed)", + "2036-10-09": "Independence of Guayaquil", + "2036-10-10": "Independence of Guayaquil (Observed)", + "2036-11-02": "All Souls' Day", + "2036-11-03": "Independence of Cuenca", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-02-16": "Carnival", + "2037-02-17": "Carnival", + "2037-04-03": "Good Friday", + "2037-05-01": "Labour Day", + "2037-05-24": "The Battle of Pichincha", + "2037-05-25": "The Battle of Pichincha (Observed)", + "2037-08-10": "Declaration of Independence of Quito", + "2037-10-09": "Independence of Guayaquil", + "2037-11-02": "All Souls' Day", + "2037-11-03": "Independence of Cuenca", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-03-08": "Carnival", + "2038-03-09": "Carnival", + "2038-04-23": "Good Friday", + "2038-04-30": "Labour Day (Observed)", + "2038-05-01": "Labour Day", + "2038-05-24": "The Battle of Pichincha", + "2038-08-09": "Declaration of Independence of Quito (Observed)", + "2038-08-10": "Declaration of Independence of Quito", + "2038-10-08": "Independence of Guayaquil (Observed)", + "2038-10-09": "Independence of Guayaquil", + "2038-11-01": "All Souls' Day (Observed)", + "2038-11-02": "All Souls' Day", + "2038-11-03": "Independence of Cuenca", + "2038-11-05": "Independence of Cuenca (Observed)", + "2038-12-24": "Christmas Day (Observed)", + "2038-12-25": "Christmas Day", + "2038-12-31": "New Year's Day (Observed)", + "2039-01-01": "New Year's Day", + "2039-02-21": "Carnival", + "2039-02-22": "Carnival", + "2039-04-08": "Good Friday", + "2039-05-01": "Labour Day", + "2039-05-02": "Labour Day (Observed)", + "2039-05-23": "The Battle of Pichincha (Observed)", + "2039-05-24": "The Battle of Pichincha", + "2039-08-10": "Declaration of Independence of Quito", + "2039-08-12": "Declaration of Independence of Quito (Observed)", + "2039-10-09": "Independence of Guayaquil", + "2039-10-10": "Independence of Guayaquil (Observed)", + "2039-11-02": "All Souls' Day", + "2039-11-03": "Independence of Cuenca", + "2039-11-04": "All Souls' Day (Observed); Independence of Cuenca (Observed)", + "2039-12-25": "Christmas Day", + "2039-12-26": "Christmas Day (Observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (Observed)", + "2040-02-13": "Carnival", + "2040-02-14": "Carnival", + "2040-03-30": "Good Friday", + "2040-04-30": "Labour Day (Observed)", + "2040-05-01": "Labour Day", + "2040-05-24": "The Battle of Pichincha", + "2040-05-25": "The Battle of Pichincha (Observed)", + "2040-08-10": "Declaration of Independence of Quito", + "2040-10-08": "Independence of Guayaquil (Observed)", + "2040-10-09": "Independence of Guayaquil", + "2040-11-02": "All Souls' Day", + "2040-11-03": "Independence of Cuenca", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-03-04": "Carnival", + "2041-03-05": "Carnival", + "2041-04-19": "Good Friday", + "2041-05-01": "Labour Day", + "2041-05-03": "Labour Day (Observed)", + "2041-05-24": "The Battle of Pichincha", + "2041-08-09": "Declaration of Independence of Quito (Observed)", + "2041-08-10": "Declaration of Independence of Quito", + "2041-10-09": "Independence of Guayaquil", + "2041-10-11": "Independence of Guayaquil (Observed)", + "2041-11-01": "All Souls' Day (Observed)", + "2041-11-02": "All Souls' Day", + "2041-11-03": "Independence of Cuenca", + "2041-11-04": "Independence of Cuenca (Observed)", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-02-17": "Carnival", + "2042-02-18": "Carnival", + "2042-04-04": "Good Friday", + "2042-05-01": "Labour Day", + "2042-05-02": "Labour Day (Observed)", + "2042-05-23": "The Battle of Pichincha (Observed)", + "2042-05-24": "The Battle of Pichincha", + "2042-08-10": "Declaration of Independence of Quito", + "2042-08-11": "Declaration of Independence of Quito (Observed)", + "2042-10-09": "Independence of Guayaquil", + "2042-10-10": "Independence of Guayaquil (Observed)", + "2042-11-02": "All Souls' Day", + "2042-11-03": "Independence of Cuenca", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-02-09": "Carnival", + "2043-02-10": "Carnival", + "2043-03-27": "Good Friday", + "2043-05-01": "Labour Day", + "2043-05-24": "The Battle of Pichincha", + "2043-05-25": "The Battle of Pichincha (Observed)", + "2043-08-10": "Declaration of Independence of Quito", + "2043-10-09": "Independence of Guayaquil", + "2043-11-02": "All Souls' Day", + "2043-11-03": "Independence of Cuenca", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-02-29": "Carnival", + "2044-03-01": "Carnival", + "2044-04-15": "Good Friday", + "2044-05-01": "Labour Day", + "2044-05-02": "Labour Day (Observed)", + "2044-05-23": "The Battle of Pichincha (Observed)", + "2044-05-24": "The Battle of Pichincha", + "2044-08-10": "Declaration of Independence of Quito", + "2044-08-12": "Declaration of Independence of Quito (Observed)", + "2044-10-09": "Independence of Guayaquil", + "2044-10-10": "Independence of Guayaquil (Observed)", + "2044-11-02": "All Souls' Day", + "2044-11-03": "Independence of Cuenca", + "2044-11-04": "All Souls' Day (Observed); Independence of Cuenca (Observed)", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day (Observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (Observed)", + "2045-02-20": "Carnival", + "2045-02-21": "Carnival", + "2045-04-07": "Good Friday", + "2045-05-01": "Labour Day", + "2045-05-24": "The Battle of Pichincha", + "2045-05-26": "The Battle of Pichincha (Observed)", + "2045-08-10": "Declaration of Independence of Quito", + "2045-08-11": "Declaration of Independence of Quito (Observed)", + "2045-10-09": "Independence of Guayaquil", + "2045-11-02": "All Souls' Day", + "2045-11-03": "Independence of Cuenca", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-02-05": "Carnival", + "2046-02-06": "Carnival", + "2046-03-23": "Good Friday", + "2046-04-30": "Labour Day (Observed)", + "2046-05-01": "Labour Day", + "2046-05-24": "The Battle of Pichincha", + "2046-05-25": "The Battle of Pichincha (Observed)", + "2046-08-10": "Declaration of Independence of Quito", + "2046-10-08": "Independence of Guayaquil (Observed)", + "2046-10-09": "Independence of Guayaquil", + "2046-11-02": "All Souls' Day", + "2046-11-03": "Independence of Cuenca", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-02-25": "Carnival", + "2047-02-26": "Carnival", + "2047-04-12": "Good Friday", + "2047-05-01": "Labour Day", + "2047-05-03": "Labour Day (Observed)", + "2047-05-24": "The Battle of Pichincha", + "2047-08-09": "Declaration of Independence of Quito (Observed)", + "2047-08-10": "Declaration of Independence of Quito", + "2047-10-09": "Independence of Guayaquil", + "2047-10-11": "Independence of Guayaquil (Observed)", + "2047-11-01": "All Souls' Day (Observed)", + "2047-11-02": "All Souls' Day", + "2047-11-03": "Independence of Cuenca", + "2047-11-04": "Independence of Cuenca (Observed)", + "2047-12-25": "Christmas Day", + "2048-01-01": "New Year's Day", + "2048-02-17": "Carnival", + "2048-02-18": "Carnival", + "2048-04-03": "Good Friday", + "2048-05-01": "Labour Day", + "2048-05-24": "The Battle of Pichincha", + "2048-05-25": "The Battle of Pichincha (Observed)", + "2048-08-10": "Declaration of Independence of Quito", + "2048-10-09": "Independence of Guayaquil", + "2048-11-02": "All Souls' Day", + "2048-11-03": "Independence of Cuenca", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-03-01": "Carnival", + "2049-03-02": "Carnival", + "2049-04-16": "Good Friday", + "2049-04-30": "Labour Day (Observed)", + "2049-05-01": "Labour Day", + "2049-05-24": "The Battle of Pichincha", + "2049-08-09": "Declaration of Independence of Quito (Observed)", + "2049-08-10": "Declaration of Independence of Quito", + "2049-10-08": "Independence of Guayaquil (Observed)", + "2049-10-09": "Independence of Guayaquil", + "2049-11-01": "All Souls' Day (Observed)", + "2049-11-02": "All Souls' Day", + "2049-11-03": "Independence of Cuenca", + "2049-11-05": "Independence of Cuenca (Observed)", + "2049-12-24": "Christmas Day (Observed)", + "2049-12-25": "Christmas Day", + "2049-12-31": "New Year's Day (Observed)", + "2050-01-01": "New Year's Day", + "2050-02-21": "Carnival", + "2050-02-22": "Carnival", + "2050-04-08": "Good Friday", + "2050-05-01": "Labour Day", + "2050-05-02": "Labour Day (Observed)", + "2050-05-23": "The Battle of Pichincha (Observed)", + "2050-05-24": "The Battle of Pichincha", + "2050-08-10": "Declaration of Independence of Quito", + "2050-08-12": "Declaration of Independence of Quito (Observed)", + "2050-10-09": "Independence of Guayaquil", + "2050-10-10": "Independence of Guayaquil (Observed)", + "2050-11-02": "All Souls' Day", + "2050-11-03": "Independence of Cuenca", + "2050-11-04": "All Souls' Day (Observed); Independence of Cuenca (Observed)", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day (Observed)" +} diff --git a/snapshots/countries/EE.json b/snapshots/countries/EE.json new file mode 100644 index 000000000..1b02d5439 --- /dev/null +++ b/snapshots/countries/EE.json @@ -0,0 +1,1111 @@ +{ + "1950-01-01": "New Year's Day", + "1950-02-24": "Independence Day", + "1950-04-07": "Good Friday", + "1950-04-09": "Easter Sunday", + "1950-05-01": "Spring Day", + "1950-05-28": "Whit Sunday", + "1950-06-23": "Victory Day", + "1950-06-24": "Midsummer Day", + "1950-12-25": "Christmas Day", + "1950-12-26": "Second Day of Christmas", + "1951-01-01": "New Year's Day", + "1951-02-24": "Independence Day", + "1951-03-23": "Good Friday", + "1951-03-25": "Easter Sunday", + "1951-05-01": "Spring Day", + "1951-05-13": "Whit Sunday", + "1951-06-23": "Victory Day", + "1951-06-24": "Midsummer Day", + "1951-12-25": "Christmas Day", + "1951-12-26": "Second Day of Christmas", + "1952-01-01": "New Year's Day", + "1952-02-24": "Independence Day", + "1952-04-11": "Good Friday", + "1952-04-13": "Easter Sunday", + "1952-05-01": "Spring Day", + "1952-06-01": "Whit Sunday", + "1952-06-23": "Victory Day", + "1952-06-24": "Midsummer Day", + "1952-12-25": "Christmas Day", + "1952-12-26": "Second Day of Christmas", + "1953-01-01": "New Year's Day", + "1953-02-24": "Independence Day", + "1953-04-03": "Good Friday", + "1953-04-05": "Easter Sunday", + "1953-05-01": "Spring Day", + "1953-05-24": "Whit Sunday", + "1953-06-23": "Victory Day", + "1953-06-24": "Midsummer Day", + "1953-12-25": "Christmas Day", + "1953-12-26": "Second Day of Christmas", + "1954-01-01": "New Year's Day", + "1954-02-24": "Independence Day", + "1954-04-16": "Good Friday", + "1954-04-18": "Easter Sunday", + "1954-05-01": "Spring Day", + "1954-06-06": "Whit Sunday", + "1954-06-23": "Victory Day", + "1954-06-24": "Midsummer Day", + "1954-12-25": "Christmas Day", + "1954-12-26": "Second Day of Christmas", + "1955-01-01": "New Year's Day", + "1955-02-24": "Independence Day", + "1955-04-08": "Good Friday", + "1955-04-10": "Easter Sunday", + "1955-05-01": "Spring Day", + "1955-05-29": "Whit Sunday", + "1955-06-23": "Victory Day", + "1955-06-24": "Midsummer Day", + "1955-12-25": "Christmas Day", + "1955-12-26": "Second Day of Christmas", + "1956-01-01": "New Year's Day", + "1956-02-24": "Independence Day", + "1956-03-30": "Good Friday", + "1956-04-01": "Easter Sunday", + "1956-05-01": "Spring Day", + "1956-05-20": "Whit Sunday", + "1956-06-23": "Victory Day", + "1956-06-24": "Midsummer Day", + "1956-12-25": "Christmas Day", + "1956-12-26": "Second Day of Christmas", + "1957-01-01": "New Year's Day", + "1957-02-24": "Independence Day", + "1957-04-19": "Good Friday", + "1957-04-21": "Easter Sunday", + "1957-05-01": "Spring Day", + "1957-06-09": "Whit Sunday", + "1957-06-23": "Victory Day", + "1957-06-24": "Midsummer Day", + "1957-12-25": "Christmas Day", + "1957-12-26": "Second Day of Christmas", + "1958-01-01": "New Year's Day", + "1958-02-24": "Independence Day", + "1958-04-04": "Good Friday", + "1958-04-06": "Easter Sunday", + "1958-05-01": "Spring Day", + "1958-05-25": "Whit Sunday", + "1958-06-23": "Victory Day", + "1958-06-24": "Midsummer Day", + "1958-12-25": "Christmas Day", + "1958-12-26": "Second Day of Christmas", + "1959-01-01": "New Year's Day", + "1959-02-24": "Independence Day", + "1959-03-27": "Good Friday", + "1959-03-29": "Easter Sunday", + "1959-05-01": "Spring Day", + "1959-05-17": "Whit Sunday", + "1959-06-23": "Victory Day", + "1959-06-24": "Midsummer Day", + "1959-12-25": "Christmas Day", + "1959-12-26": "Second Day of Christmas", + "1960-01-01": "New Year's Day", + "1960-02-24": "Independence Day", + "1960-04-15": "Good Friday", + "1960-04-17": "Easter Sunday", + "1960-05-01": "Spring Day", + "1960-06-05": "Whit Sunday", + "1960-06-23": "Victory Day", + "1960-06-24": "Midsummer Day", + "1960-12-25": "Christmas Day", + "1960-12-26": "Second Day of Christmas", + "1961-01-01": "New Year's Day", + "1961-02-24": "Independence Day", + "1961-03-31": "Good Friday", + "1961-04-02": "Easter Sunday", + "1961-05-01": "Spring Day", + "1961-05-21": "Whit Sunday", + "1961-06-23": "Victory Day", + "1961-06-24": "Midsummer Day", + "1961-12-25": "Christmas Day", + "1961-12-26": "Second Day of Christmas", + "1962-01-01": "New Year's Day", + "1962-02-24": "Independence Day", + "1962-04-20": "Good Friday", + "1962-04-22": "Easter Sunday", + "1962-05-01": "Spring Day", + "1962-06-10": "Whit Sunday", + "1962-06-23": "Victory Day", + "1962-06-24": "Midsummer Day", + "1962-12-25": "Christmas Day", + "1962-12-26": "Second Day of Christmas", + "1963-01-01": "New Year's Day", + "1963-02-24": "Independence Day", + "1963-04-12": "Good Friday", + "1963-04-14": "Easter Sunday", + "1963-05-01": "Spring Day", + "1963-06-02": "Whit Sunday", + "1963-06-23": "Victory Day", + "1963-06-24": "Midsummer Day", + "1963-12-25": "Christmas Day", + "1963-12-26": "Second Day of Christmas", + "1964-01-01": "New Year's Day", + "1964-02-24": "Independence Day", + "1964-03-27": "Good Friday", + "1964-03-29": "Easter Sunday", + "1964-05-01": "Spring Day", + "1964-05-17": "Whit Sunday", + "1964-06-23": "Victory Day", + "1964-06-24": "Midsummer Day", + "1964-12-25": "Christmas Day", + "1964-12-26": "Second Day of Christmas", + "1965-01-01": "New Year's Day", + "1965-02-24": "Independence Day", + "1965-04-16": "Good Friday", + "1965-04-18": "Easter Sunday", + "1965-05-01": "Spring Day", + "1965-06-06": "Whit Sunday", + "1965-06-23": "Victory Day", + "1965-06-24": "Midsummer Day", + "1965-12-25": "Christmas Day", + "1965-12-26": "Second Day of Christmas", + "1966-01-01": "New Year's Day", + "1966-02-24": "Independence Day", + "1966-04-08": "Good Friday", + "1966-04-10": "Easter Sunday", + "1966-05-01": "Spring Day", + "1966-05-29": "Whit Sunday", + "1966-06-23": "Victory Day", + "1966-06-24": "Midsummer Day", + "1966-12-25": "Christmas Day", + "1966-12-26": "Second Day of Christmas", + "1967-01-01": "New Year's Day", + "1967-02-24": "Independence Day", + "1967-03-24": "Good Friday", + "1967-03-26": "Easter Sunday", + "1967-05-01": "Spring Day", + "1967-05-14": "Whit Sunday", + "1967-06-23": "Victory Day", + "1967-06-24": "Midsummer Day", + "1967-12-25": "Christmas Day", + "1967-12-26": "Second Day of Christmas", + "1968-01-01": "New Year's Day", + "1968-02-24": "Independence Day", + "1968-04-12": "Good Friday", + "1968-04-14": "Easter Sunday", + "1968-05-01": "Spring Day", + "1968-06-02": "Whit Sunday", + "1968-06-23": "Victory Day", + "1968-06-24": "Midsummer Day", + "1968-12-25": "Christmas Day", + "1968-12-26": "Second Day of Christmas", + "1969-01-01": "New Year's Day", + "1969-02-24": "Independence Day", + "1969-04-04": "Good Friday", + "1969-04-06": "Easter Sunday", + "1969-05-01": "Spring Day", + "1969-05-25": "Whit Sunday", + "1969-06-23": "Victory Day", + "1969-06-24": "Midsummer Day", + "1969-12-25": "Christmas Day", + "1969-12-26": "Second Day of Christmas", + "1970-01-01": "New Year's Day", + "1970-02-24": "Independence Day", + "1970-03-27": "Good Friday", + "1970-03-29": "Easter Sunday", + "1970-05-01": "Spring Day", + "1970-05-17": "Whit Sunday", + "1970-06-23": "Victory Day", + "1970-06-24": "Midsummer Day", + "1970-12-25": "Christmas Day", + "1970-12-26": "Second Day of Christmas", + "1971-01-01": "New Year's Day", + "1971-02-24": "Independence Day", + "1971-04-09": "Good Friday", + "1971-04-11": "Easter Sunday", + "1971-05-01": "Spring Day", + "1971-05-30": "Whit Sunday", + "1971-06-23": "Victory Day", + "1971-06-24": "Midsummer Day", + "1971-12-25": "Christmas Day", + "1971-12-26": "Second Day of Christmas", + "1972-01-01": "New Year's Day", + "1972-02-24": "Independence Day", + "1972-03-31": "Good Friday", + "1972-04-02": "Easter Sunday", + "1972-05-01": "Spring Day", + "1972-05-21": "Whit Sunday", + "1972-06-23": "Victory Day", + "1972-06-24": "Midsummer Day", + "1972-12-25": "Christmas Day", + "1972-12-26": "Second Day of Christmas", + "1973-01-01": "New Year's Day", + "1973-02-24": "Independence Day", + "1973-04-20": "Good Friday", + "1973-04-22": "Easter Sunday", + "1973-05-01": "Spring Day", + "1973-06-10": "Whit Sunday", + "1973-06-23": "Victory Day", + "1973-06-24": "Midsummer Day", + "1973-12-25": "Christmas Day", + "1973-12-26": "Second Day of Christmas", + "1974-01-01": "New Year's Day", + "1974-02-24": "Independence Day", + "1974-04-12": "Good Friday", + "1974-04-14": "Easter Sunday", + "1974-05-01": "Spring Day", + "1974-06-02": "Whit Sunday", + "1974-06-23": "Victory Day", + "1974-06-24": "Midsummer Day", + "1974-12-25": "Christmas Day", + "1974-12-26": "Second Day of Christmas", + "1975-01-01": "New Year's Day", + "1975-02-24": "Independence Day", + "1975-03-28": "Good Friday", + "1975-03-30": "Easter Sunday", + "1975-05-01": "Spring Day", + "1975-05-18": "Whit Sunday", + "1975-06-23": "Victory Day", + "1975-06-24": "Midsummer Day", + "1975-12-25": "Christmas Day", + "1975-12-26": "Second Day of Christmas", + "1976-01-01": "New Year's Day", + "1976-02-24": "Independence Day", + "1976-04-16": "Good Friday", + "1976-04-18": "Easter Sunday", + "1976-05-01": "Spring Day", + "1976-06-06": "Whit Sunday", + "1976-06-23": "Victory Day", + "1976-06-24": "Midsummer Day", + "1976-12-25": "Christmas Day", + "1976-12-26": "Second Day of Christmas", + "1977-01-01": "New Year's Day", + "1977-02-24": "Independence Day", + "1977-04-08": "Good Friday", + "1977-04-10": "Easter Sunday", + "1977-05-01": "Spring Day", + "1977-05-29": "Whit Sunday", + "1977-06-23": "Victory Day", + "1977-06-24": "Midsummer Day", + "1977-12-25": "Christmas Day", + "1977-12-26": "Second Day of Christmas", + "1978-01-01": "New Year's Day", + "1978-02-24": "Independence Day", + "1978-03-24": "Good Friday", + "1978-03-26": "Easter Sunday", + "1978-05-01": "Spring Day", + "1978-05-14": "Whit Sunday", + "1978-06-23": "Victory Day", + "1978-06-24": "Midsummer Day", + "1978-12-25": "Christmas Day", + "1978-12-26": "Second Day of Christmas", + "1979-01-01": "New Year's Day", + "1979-02-24": "Independence Day", + "1979-04-13": "Good Friday", + "1979-04-15": "Easter Sunday", + "1979-05-01": "Spring Day", + "1979-06-03": "Whit Sunday", + "1979-06-23": "Victory Day", + "1979-06-24": "Midsummer Day", + "1979-12-25": "Christmas Day", + "1979-12-26": "Second Day of Christmas", + "1980-01-01": "New Year's Day", + "1980-02-24": "Independence Day", + "1980-04-04": "Good Friday", + "1980-04-06": "Easter Sunday", + "1980-05-01": "Spring Day", + "1980-05-25": "Whit Sunday", + "1980-06-23": "Victory Day", + "1980-06-24": "Midsummer Day", + "1980-12-25": "Christmas Day", + "1980-12-26": "Second Day of Christmas", + "1981-01-01": "New Year's Day", + "1981-02-24": "Independence Day", + "1981-04-17": "Good Friday", + "1981-04-19": "Easter Sunday", + "1981-05-01": "Spring Day", + "1981-06-07": "Whit Sunday", + "1981-06-23": "Victory Day", + "1981-06-24": "Midsummer Day", + "1981-12-25": "Christmas Day", + "1981-12-26": "Second Day of Christmas", + "1982-01-01": "New Year's Day", + "1982-02-24": "Independence Day", + "1982-04-09": "Good Friday", + "1982-04-11": "Easter Sunday", + "1982-05-01": "Spring Day", + "1982-05-30": "Whit Sunday", + "1982-06-23": "Victory Day", + "1982-06-24": "Midsummer Day", + "1982-12-25": "Christmas Day", + "1982-12-26": "Second Day of Christmas", + "1983-01-01": "New Year's Day", + "1983-02-24": "Independence Day", + "1983-04-01": "Good Friday", + "1983-04-03": "Easter Sunday", + "1983-05-01": "Spring Day", + "1983-05-22": "Whit Sunday", + "1983-06-23": "Victory Day", + "1983-06-24": "Midsummer Day", + "1983-12-25": "Christmas Day", + "1983-12-26": "Second Day of Christmas", + "1984-01-01": "New Year's Day", + "1984-02-24": "Independence Day", + "1984-04-20": "Good Friday", + "1984-04-22": "Easter Sunday", + "1984-05-01": "Spring Day", + "1984-06-10": "Whit Sunday", + "1984-06-23": "Victory Day", + "1984-06-24": "Midsummer Day", + "1984-12-25": "Christmas Day", + "1984-12-26": "Second Day of Christmas", + "1985-01-01": "New Year's Day", + "1985-02-24": "Independence Day", + "1985-04-05": "Good Friday", + "1985-04-07": "Easter Sunday", + "1985-05-01": "Spring Day", + "1985-05-26": "Whit Sunday", + "1985-06-23": "Victory Day", + "1985-06-24": "Midsummer Day", + "1985-12-25": "Christmas Day", + "1985-12-26": "Second Day of Christmas", + "1986-01-01": "New Year's Day", + "1986-02-24": "Independence Day", + "1986-03-28": "Good Friday", + "1986-03-30": "Easter Sunday", + "1986-05-01": "Spring Day", + "1986-05-18": "Whit Sunday", + "1986-06-23": "Victory Day", + "1986-06-24": "Midsummer Day", + "1986-12-25": "Christmas Day", + "1986-12-26": "Second Day of Christmas", + "1987-01-01": "New Year's Day", + "1987-02-24": "Independence Day", + "1987-04-17": "Good Friday", + "1987-04-19": "Easter Sunday", + "1987-05-01": "Spring Day", + "1987-06-07": "Whit Sunday", + "1987-06-23": "Victory Day", + "1987-06-24": "Midsummer Day", + "1987-12-25": "Christmas Day", + "1987-12-26": "Second Day of Christmas", + "1988-01-01": "New Year's Day", + "1988-02-24": "Independence Day", + "1988-04-01": "Good Friday", + "1988-04-03": "Easter Sunday", + "1988-05-01": "Spring Day", + "1988-05-22": "Whit Sunday", + "1988-06-23": "Victory Day", + "1988-06-24": "Midsummer Day", + "1988-12-25": "Christmas Day", + "1988-12-26": "Second Day of Christmas", + "1989-01-01": "New Year's Day", + "1989-02-24": "Independence Day", + "1989-03-24": "Good Friday", + "1989-03-26": "Easter Sunday", + "1989-05-01": "Spring Day", + "1989-05-14": "Whit Sunday", + "1989-06-23": "Victory Day", + "1989-06-24": "Midsummer Day", + "1989-12-25": "Christmas Day", + "1989-12-26": "Second Day of Christmas", + "1990-01-01": "New Year's Day", + "1990-02-24": "Independence Day", + "1990-04-13": "Good Friday", + "1990-04-15": "Easter Sunday", + "1990-05-01": "Spring Day", + "1990-06-03": "Whit Sunday", + "1990-06-23": "Victory Day", + "1990-06-24": "Midsummer Day", + "1990-12-25": "Christmas Day", + "1990-12-26": "Second Day of Christmas", + "1991-01-01": "New Year's Day", + "1991-02-24": "Independence Day", + "1991-03-29": "Good Friday", + "1991-03-31": "Easter Sunday", + "1991-05-01": "Spring Day", + "1991-05-19": "Whit Sunday", + "1991-06-23": "Victory Day", + "1991-06-24": "Midsummer Day", + "1991-12-25": "Christmas Day", + "1991-12-26": "Second Day of Christmas", + "1992-01-01": "New Year's Day", + "1992-02-24": "Independence Day", + "1992-04-17": "Good Friday", + "1992-04-19": "Easter Sunday", + "1992-05-01": "Spring Day", + "1992-06-07": "Whit Sunday", + "1992-06-23": "Victory Day", + "1992-06-24": "Midsummer Day", + "1992-12-25": "Christmas Day", + "1992-12-26": "Second Day of Christmas", + "1993-01-01": "New Year's Day", + "1993-02-24": "Independence Day", + "1993-04-09": "Good Friday", + "1993-04-11": "Easter Sunday", + "1993-05-01": "Spring Day", + "1993-05-30": "Whit Sunday", + "1993-06-23": "Victory Day", + "1993-06-24": "Midsummer Day", + "1993-12-25": "Christmas Day", + "1993-12-26": "Second Day of Christmas", + "1994-01-01": "New Year's Day", + "1994-02-24": "Independence Day", + "1994-04-01": "Good Friday", + "1994-04-03": "Easter Sunday", + "1994-05-01": "Spring Day", + "1994-05-22": "Whit Sunday", + "1994-06-23": "Victory Day", + "1994-06-24": "Midsummer Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Second Day of Christmas", + "1995-01-01": "New Year's Day", + "1995-02-24": "Independence Day", + "1995-04-14": "Good Friday", + "1995-04-16": "Easter Sunday", + "1995-05-01": "Spring Day", + "1995-06-04": "Whit Sunday", + "1995-06-23": "Victory Day", + "1995-06-24": "Midsummer Day", + "1995-12-25": "Christmas Day", + "1995-12-26": "Second Day of Christmas", + "1996-01-01": "New Year's Day", + "1996-02-24": "Independence Day", + "1996-04-05": "Good Friday", + "1996-04-07": "Easter Sunday", + "1996-05-01": "Spring Day", + "1996-05-26": "Whit Sunday", + "1996-06-23": "Victory Day", + "1996-06-24": "Midsummer Day", + "1996-12-25": "Christmas Day", + "1996-12-26": "Second Day of Christmas", + "1997-01-01": "New Year's Day", + "1997-02-24": "Independence Day", + "1997-03-28": "Good Friday", + "1997-03-30": "Easter Sunday", + "1997-05-01": "Spring Day", + "1997-05-18": "Whit Sunday", + "1997-06-23": "Victory Day", + "1997-06-24": "Midsummer Day", + "1997-12-25": "Christmas Day", + "1997-12-26": "Second Day of Christmas", + "1998-01-01": "New Year's Day", + "1998-02-24": "Independence Day", + "1998-04-10": "Good Friday", + "1998-04-12": "Easter Sunday", + "1998-05-01": "Spring Day", + "1998-05-31": "Whit Sunday", + "1998-06-23": "Victory Day", + "1998-06-24": "Midsummer Day", + "1998-08-20": "Independence Restoration Day", + "1998-12-25": "Christmas Day", + "1998-12-26": "Second Day of Christmas", + "1999-01-01": "New Year's Day", + "1999-02-24": "Independence Day", + "1999-04-02": "Good Friday", + "1999-04-04": "Easter Sunday", + "1999-05-01": "Spring Day", + "1999-05-23": "Whit Sunday", + "1999-06-23": "Victory Day", + "1999-06-24": "Midsummer Day", + "1999-08-20": "Independence Restoration Day", + "1999-12-25": "Christmas Day", + "1999-12-26": "Second Day of Christmas", + "2000-01-01": "New Year's Day", + "2000-02-24": "Independence Day", + "2000-04-21": "Good Friday", + "2000-04-23": "Easter Sunday", + "2000-05-01": "Spring Day", + "2000-06-11": "Whit Sunday", + "2000-06-23": "Victory Day", + "2000-06-24": "Midsummer Day", + "2000-08-20": "Independence Restoration Day", + "2000-12-25": "Christmas Day", + "2000-12-26": "Second Day of Christmas", + "2001-01-01": "New Year's Day", + "2001-02-24": "Independence Day", + "2001-04-13": "Good Friday", + "2001-04-15": "Easter Sunday", + "2001-05-01": "Spring Day", + "2001-06-03": "Whit Sunday", + "2001-06-23": "Victory Day", + "2001-06-24": "Midsummer Day", + "2001-08-20": "Independence Restoration Day", + "2001-12-25": "Christmas Day", + "2001-12-26": "Second Day of Christmas", + "2002-01-01": "New Year's Day", + "2002-02-24": "Independence Day", + "2002-03-29": "Good Friday", + "2002-03-31": "Easter Sunday", + "2002-05-01": "Spring Day", + "2002-05-19": "Whit Sunday", + "2002-06-23": "Victory Day", + "2002-06-24": "Midsummer Day", + "2002-08-20": "Independence Restoration Day", + "2002-12-25": "Christmas Day", + "2002-12-26": "Second Day of Christmas", + "2003-01-01": "New Year's Day", + "2003-02-24": "Independence Day", + "2003-04-18": "Good Friday", + "2003-04-20": "Easter Sunday", + "2003-05-01": "Spring Day", + "2003-06-08": "Whit Sunday", + "2003-06-23": "Victory Day", + "2003-06-24": "Midsummer Day", + "2003-08-20": "Independence Restoration Day", + "2003-12-25": "Christmas Day", + "2003-12-26": "Second Day of Christmas", + "2004-01-01": "New Year's Day", + "2004-02-24": "Independence Day", + "2004-04-09": "Good Friday", + "2004-04-11": "Easter Sunday", + "2004-05-01": "Spring Day", + "2004-05-30": "Whit Sunday", + "2004-06-23": "Victory Day", + "2004-06-24": "Midsummer Day", + "2004-08-20": "Independence Restoration Day", + "2004-12-25": "Christmas Day", + "2004-12-26": "Second Day of Christmas", + "2005-01-01": "New Year's Day", + "2005-02-24": "Independence Day", + "2005-03-25": "Good Friday", + "2005-03-27": "Easter Sunday", + "2005-05-01": "Spring Day", + "2005-05-15": "Whit Sunday", + "2005-06-23": "Victory Day", + "2005-06-24": "Midsummer Day", + "2005-08-20": "Independence Restoration Day", + "2005-12-24": "Christmas Eve", + "2005-12-25": "Christmas Day", + "2005-12-26": "Second Day of Christmas", + "2006-01-01": "New Year's Day", + "2006-02-24": "Independence Day", + "2006-04-14": "Good Friday", + "2006-04-16": "Easter Sunday", + "2006-05-01": "Spring Day", + "2006-06-04": "Whit Sunday", + "2006-06-23": "Victory Day", + "2006-06-24": "Midsummer Day", + "2006-08-20": "Independence Restoration Day", + "2006-12-24": "Christmas Eve", + "2006-12-25": "Christmas Day", + "2006-12-26": "Second Day of Christmas", + "2007-01-01": "New Year's Day", + "2007-02-24": "Independence Day", + "2007-04-06": "Good Friday", + "2007-04-08": "Easter Sunday", + "2007-05-01": "Spring Day", + "2007-05-27": "Whit Sunday", + "2007-06-23": "Victory Day", + "2007-06-24": "Midsummer Day", + "2007-08-20": "Independence Restoration Day", + "2007-12-24": "Christmas Eve", + "2007-12-25": "Christmas Day", + "2007-12-26": "Second Day of Christmas", + "2008-01-01": "New Year's Day", + "2008-02-24": "Independence Day", + "2008-03-21": "Good Friday", + "2008-03-23": "Easter Sunday", + "2008-05-01": "Spring Day", + "2008-05-11": "Whit Sunday", + "2008-06-23": "Victory Day", + "2008-06-24": "Midsummer Day", + "2008-08-20": "Independence Restoration Day", + "2008-12-24": "Christmas Eve", + "2008-12-25": "Christmas Day", + "2008-12-26": "Second Day of Christmas", + "2009-01-01": "New Year's Day", + "2009-02-24": "Independence Day", + "2009-04-10": "Good Friday", + "2009-04-12": "Easter Sunday", + "2009-05-01": "Spring Day", + "2009-05-31": "Whit Sunday", + "2009-06-23": "Victory Day", + "2009-06-24": "Midsummer Day", + "2009-08-20": "Independence Restoration Day", + "2009-12-24": "Christmas Eve", + "2009-12-25": "Christmas Day", + "2009-12-26": "Second Day of Christmas", + "2010-01-01": "New Year's Day", + "2010-02-24": "Independence Day", + "2010-04-02": "Good Friday", + "2010-04-04": "Easter Sunday", + "2010-05-01": "Spring Day", + "2010-05-23": "Whit Sunday", + "2010-06-23": "Victory Day", + "2010-06-24": "Midsummer Day", + "2010-08-20": "Independence Restoration Day", + "2010-12-24": "Christmas Eve", + "2010-12-25": "Christmas Day", + "2010-12-26": "Second Day of Christmas", + "2011-01-01": "New Year's Day", + "2011-02-24": "Independence Day", + "2011-04-22": "Good Friday", + "2011-04-24": "Easter Sunday", + "2011-05-01": "Spring Day", + "2011-06-12": "Whit Sunday", + "2011-06-23": "Victory Day", + "2011-06-24": "Midsummer Day", + "2011-08-20": "Independence Restoration Day", + "2011-12-24": "Christmas Eve", + "2011-12-25": "Christmas Day", + "2011-12-26": "Second Day of Christmas", + "2012-01-01": "New Year's Day", + "2012-02-24": "Independence Day", + "2012-04-06": "Good Friday", + "2012-04-08": "Easter Sunday", + "2012-05-01": "Spring Day", + "2012-05-27": "Whit Sunday", + "2012-06-23": "Victory Day", + "2012-06-24": "Midsummer Day", + "2012-08-20": "Independence Restoration Day", + "2012-12-24": "Christmas Eve", + "2012-12-25": "Christmas Day", + "2012-12-26": "Second Day of Christmas", + "2013-01-01": "New Year's Day", + "2013-02-24": "Independence Day", + "2013-03-29": "Good Friday", + "2013-03-31": "Easter Sunday", + "2013-05-01": "Spring Day", + "2013-05-19": "Whit Sunday", + "2013-06-23": "Victory Day", + "2013-06-24": "Midsummer Day", + "2013-08-20": "Independence Restoration Day", + "2013-12-24": "Christmas Eve", + "2013-12-25": "Christmas Day", + "2013-12-26": "Second Day of Christmas", + "2014-01-01": "New Year's Day", + "2014-02-24": "Independence Day", + "2014-04-18": "Good Friday", + "2014-04-20": "Easter Sunday", + "2014-05-01": "Spring Day", + "2014-06-08": "Whit Sunday", + "2014-06-23": "Victory Day", + "2014-06-24": "Midsummer Day", + "2014-08-20": "Independence Restoration Day", + "2014-12-24": "Christmas Eve", + "2014-12-25": "Christmas Day", + "2014-12-26": "Second Day of Christmas", + "2015-01-01": "New Year's Day", + "2015-02-24": "Independence Day", + "2015-04-03": "Good Friday", + "2015-04-05": "Easter Sunday", + "2015-05-01": "Spring Day", + "2015-05-24": "Whit Sunday", + "2015-06-23": "Victory Day", + "2015-06-24": "Midsummer Day", + "2015-08-20": "Independence Restoration Day", + "2015-12-24": "Christmas Eve", + "2015-12-25": "Christmas Day", + "2015-12-26": "Second Day of Christmas", + "2016-01-01": "New Year's Day", + "2016-02-24": "Independence Day", + "2016-03-25": "Good Friday", + "2016-03-27": "Easter Sunday", + "2016-05-01": "Spring Day", + "2016-05-15": "Whit Sunday", + "2016-06-23": "Victory Day", + "2016-06-24": "Midsummer Day", + "2016-08-20": "Independence Restoration Day", + "2016-12-24": "Christmas Eve", + "2016-12-25": "Christmas Day", + "2016-12-26": "Second Day of Christmas", + "2017-01-01": "New Year's Day", + "2017-02-24": "Independence Day", + "2017-04-14": "Good Friday", + "2017-04-16": "Easter Sunday", + "2017-05-01": "Spring Day", + "2017-06-04": "Whit Sunday", + "2017-06-23": "Victory Day", + "2017-06-24": "Midsummer Day", + "2017-08-20": "Independence Restoration Day", + "2017-12-24": "Christmas Eve", + "2017-12-25": "Christmas Day", + "2017-12-26": "Second Day of Christmas", + "2018-01-01": "New Year's Day", + "2018-02-24": "Independence Day", + "2018-03-30": "Good Friday", + "2018-04-01": "Easter Sunday", + "2018-05-01": "Spring Day", + "2018-05-20": "Whit Sunday", + "2018-06-23": "Victory Day", + "2018-06-24": "Midsummer Day", + "2018-08-20": "Independence Restoration Day", + "2018-12-24": "Christmas Eve", + "2018-12-25": "Christmas Day", + "2018-12-26": "Second Day of Christmas", + "2019-01-01": "New Year's Day", + "2019-02-24": "Independence Day", + "2019-04-19": "Good Friday", + "2019-04-21": "Easter Sunday", + "2019-05-01": "Spring Day", + "2019-06-09": "Whit Sunday", + "2019-06-23": "Victory Day", + "2019-06-24": "Midsummer Day", + "2019-08-20": "Independence Restoration Day", + "2019-12-24": "Christmas Eve", + "2019-12-25": "Christmas Day", + "2019-12-26": "Second Day of Christmas", + "2020-01-01": "New Year's Day", + "2020-02-24": "Independence Day", + "2020-04-10": "Good Friday", + "2020-04-12": "Easter Sunday", + "2020-05-01": "Spring Day", + "2020-05-31": "Whit Sunday", + "2020-06-23": "Victory Day", + "2020-06-24": "Midsummer Day", + "2020-08-20": "Independence Restoration Day", + "2020-12-24": "Christmas Eve", + "2020-12-25": "Christmas Day", + "2020-12-26": "Second Day of Christmas", + "2021-01-01": "New Year's Day", + "2021-02-24": "Independence Day", + "2021-04-02": "Good Friday", + "2021-04-04": "Easter Sunday", + "2021-05-01": "Spring Day", + "2021-05-23": "Whit Sunday", + "2021-06-23": "Victory Day", + "2021-06-24": "Midsummer Day", + "2021-08-20": "Independence Restoration Day", + "2021-12-24": "Christmas Eve", + "2021-12-25": "Christmas Day", + "2021-12-26": "Second Day of Christmas", + "2022-01-01": "New Year's Day", + "2022-02-24": "Independence Day", + "2022-04-15": "Good Friday", + "2022-04-17": "Easter Sunday", + "2022-05-01": "Spring Day", + "2022-06-05": "Whit Sunday", + "2022-06-23": "Victory Day", + "2022-06-24": "Midsummer Day", + "2022-08-20": "Independence Restoration Day", + "2022-12-24": "Christmas Eve", + "2022-12-25": "Christmas Day", + "2022-12-26": "Second Day of Christmas", + "2023-01-01": "New Year's Day", + "2023-02-24": "Independence Day", + "2023-04-07": "Good Friday", + "2023-04-09": "Easter Sunday", + "2023-05-01": "Spring Day", + "2023-05-28": "Whit Sunday", + "2023-06-23": "Victory Day", + "2023-06-24": "Midsummer Day", + "2023-08-20": "Independence Restoration Day", + "2023-12-24": "Christmas Eve", + "2023-12-25": "Christmas Day", + "2023-12-26": "Second Day of Christmas", + "2024-01-01": "New Year's Day", + "2024-02-24": "Independence Day", + "2024-03-29": "Good Friday", + "2024-03-31": "Easter Sunday", + "2024-05-01": "Spring Day", + "2024-05-19": "Whit Sunday", + "2024-06-23": "Victory Day", + "2024-06-24": "Midsummer Day", + "2024-08-20": "Independence Restoration Day", + "2024-12-24": "Christmas Eve", + "2024-12-25": "Christmas Day", + "2024-12-26": "Second Day of Christmas", + "2025-01-01": "New Year's Day", + "2025-02-24": "Independence Day", + "2025-04-18": "Good Friday", + "2025-04-20": "Easter Sunday", + "2025-05-01": "Spring Day", + "2025-06-08": "Whit Sunday", + "2025-06-23": "Victory Day", + "2025-06-24": "Midsummer Day", + "2025-08-20": "Independence Restoration Day", + "2025-12-24": "Christmas Eve", + "2025-12-25": "Christmas Day", + "2025-12-26": "Second Day of Christmas", + "2026-01-01": "New Year's Day", + "2026-02-24": "Independence Day", + "2026-04-03": "Good Friday", + "2026-04-05": "Easter Sunday", + "2026-05-01": "Spring Day", + "2026-05-24": "Whit Sunday", + "2026-06-23": "Victory Day", + "2026-06-24": "Midsummer Day", + "2026-08-20": "Independence Restoration Day", + "2026-12-24": "Christmas Eve", + "2026-12-25": "Christmas Day", + "2026-12-26": "Second Day of Christmas", + "2027-01-01": "New Year's Day", + "2027-02-24": "Independence Day", + "2027-03-26": "Good Friday", + "2027-03-28": "Easter Sunday", + "2027-05-01": "Spring Day", + "2027-05-16": "Whit Sunday", + "2027-06-23": "Victory Day", + "2027-06-24": "Midsummer Day", + "2027-08-20": "Independence Restoration Day", + "2027-12-24": "Christmas Eve", + "2027-12-25": "Christmas Day", + "2027-12-26": "Second Day of Christmas", + "2028-01-01": "New Year's Day", + "2028-02-24": "Independence Day", + "2028-04-14": "Good Friday", + "2028-04-16": "Easter Sunday", + "2028-05-01": "Spring Day", + "2028-06-04": "Whit Sunday", + "2028-06-23": "Victory Day", + "2028-06-24": "Midsummer Day", + "2028-08-20": "Independence Restoration Day", + "2028-12-24": "Christmas Eve", + "2028-12-25": "Christmas Day", + "2028-12-26": "Second Day of Christmas", + "2029-01-01": "New Year's Day", + "2029-02-24": "Independence Day", + "2029-03-30": "Good Friday", + "2029-04-01": "Easter Sunday", + "2029-05-01": "Spring Day", + "2029-05-20": "Whit Sunday", + "2029-06-23": "Victory Day", + "2029-06-24": "Midsummer Day", + "2029-08-20": "Independence Restoration Day", + "2029-12-24": "Christmas Eve", + "2029-12-25": "Christmas Day", + "2029-12-26": "Second Day of Christmas", + "2030-01-01": "New Year's Day", + "2030-02-24": "Independence Day", + "2030-04-19": "Good Friday", + "2030-04-21": "Easter Sunday", + "2030-05-01": "Spring Day", + "2030-06-09": "Whit Sunday", + "2030-06-23": "Victory Day", + "2030-06-24": "Midsummer Day", + "2030-08-20": "Independence Restoration Day", + "2030-12-24": "Christmas Eve", + "2030-12-25": "Christmas Day", + "2030-12-26": "Second Day of Christmas", + "2031-01-01": "New Year's Day", + "2031-02-24": "Independence Day", + "2031-04-11": "Good Friday", + "2031-04-13": "Easter Sunday", + "2031-05-01": "Spring Day", + "2031-06-01": "Whit Sunday", + "2031-06-23": "Victory Day", + "2031-06-24": "Midsummer Day", + "2031-08-20": "Independence Restoration Day", + "2031-12-24": "Christmas Eve", + "2031-12-25": "Christmas Day", + "2031-12-26": "Second Day of Christmas", + "2032-01-01": "New Year's Day", + "2032-02-24": "Independence Day", + "2032-03-26": "Good Friday", + "2032-03-28": "Easter Sunday", + "2032-05-01": "Spring Day", + "2032-05-16": "Whit Sunday", + "2032-06-23": "Victory Day", + "2032-06-24": "Midsummer Day", + "2032-08-20": "Independence Restoration Day", + "2032-12-24": "Christmas Eve", + "2032-12-25": "Christmas Day", + "2032-12-26": "Second Day of Christmas", + "2033-01-01": "New Year's Day", + "2033-02-24": "Independence Day", + "2033-04-15": "Good Friday", + "2033-04-17": "Easter Sunday", + "2033-05-01": "Spring Day", + "2033-06-05": "Whit Sunday", + "2033-06-23": "Victory Day", + "2033-06-24": "Midsummer Day", + "2033-08-20": "Independence Restoration Day", + "2033-12-24": "Christmas Eve", + "2033-12-25": "Christmas Day", + "2033-12-26": "Second Day of Christmas", + "2034-01-01": "New Year's Day", + "2034-02-24": "Independence Day", + "2034-04-07": "Good Friday", + "2034-04-09": "Easter Sunday", + "2034-05-01": "Spring Day", + "2034-05-28": "Whit Sunday", + "2034-06-23": "Victory Day", + "2034-06-24": "Midsummer Day", + "2034-08-20": "Independence Restoration Day", + "2034-12-24": "Christmas Eve", + "2034-12-25": "Christmas Day", + "2034-12-26": "Second Day of Christmas", + "2035-01-01": "New Year's Day", + "2035-02-24": "Independence Day", + "2035-03-23": "Good Friday", + "2035-03-25": "Easter Sunday", + "2035-05-01": "Spring Day", + "2035-05-13": "Whit Sunday", + "2035-06-23": "Victory Day", + "2035-06-24": "Midsummer Day", + "2035-08-20": "Independence Restoration Day", + "2035-12-24": "Christmas Eve", + "2035-12-25": "Christmas Day", + "2035-12-26": "Second Day of Christmas", + "2036-01-01": "New Year's Day", + "2036-02-24": "Independence Day", + "2036-04-11": "Good Friday", + "2036-04-13": "Easter Sunday", + "2036-05-01": "Spring Day", + "2036-06-01": "Whit Sunday", + "2036-06-23": "Victory Day", + "2036-06-24": "Midsummer Day", + "2036-08-20": "Independence Restoration Day", + "2036-12-24": "Christmas Eve", + "2036-12-25": "Christmas Day", + "2036-12-26": "Second Day of Christmas", + "2037-01-01": "New Year's Day", + "2037-02-24": "Independence Day", + "2037-04-03": "Good Friday", + "2037-04-05": "Easter Sunday", + "2037-05-01": "Spring Day", + "2037-05-24": "Whit Sunday", + "2037-06-23": "Victory Day", + "2037-06-24": "Midsummer Day", + "2037-08-20": "Independence Restoration Day", + "2037-12-24": "Christmas Eve", + "2037-12-25": "Christmas Day", + "2037-12-26": "Second Day of Christmas", + "2038-01-01": "New Year's Day", + "2038-02-24": "Independence Day", + "2038-04-23": "Good Friday", + "2038-04-25": "Easter Sunday", + "2038-05-01": "Spring Day", + "2038-06-13": "Whit Sunday", + "2038-06-23": "Victory Day", + "2038-06-24": "Midsummer Day", + "2038-08-20": "Independence Restoration Day", + "2038-12-24": "Christmas Eve", + "2038-12-25": "Christmas Day", + "2038-12-26": "Second Day of Christmas", + "2039-01-01": "New Year's Day", + "2039-02-24": "Independence Day", + "2039-04-08": "Good Friday", + "2039-04-10": "Easter Sunday", + "2039-05-01": "Spring Day", + "2039-05-29": "Whit Sunday", + "2039-06-23": "Victory Day", + "2039-06-24": "Midsummer Day", + "2039-08-20": "Independence Restoration Day", + "2039-12-24": "Christmas Eve", + "2039-12-25": "Christmas Day", + "2039-12-26": "Second Day of Christmas", + "2040-01-01": "New Year's Day", + "2040-02-24": "Independence Day", + "2040-03-30": "Good Friday", + "2040-04-01": "Easter Sunday", + "2040-05-01": "Spring Day", + "2040-05-20": "Whit Sunday", + "2040-06-23": "Victory Day", + "2040-06-24": "Midsummer Day", + "2040-08-20": "Independence Restoration Day", + "2040-12-24": "Christmas Eve", + "2040-12-25": "Christmas Day", + "2040-12-26": "Second Day of Christmas", + "2041-01-01": "New Year's Day", + "2041-02-24": "Independence Day", + "2041-04-19": "Good Friday", + "2041-04-21": "Easter Sunday", + "2041-05-01": "Spring Day", + "2041-06-09": "Whit Sunday", + "2041-06-23": "Victory Day", + "2041-06-24": "Midsummer Day", + "2041-08-20": "Independence Restoration Day", + "2041-12-24": "Christmas Eve", + "2041-12-25": "Christmas Day", + "2041-12-26": "Second Day of Christmas", + "2042-01-01": "New Year's Day", + "2042-02-24": "Independence Day", + "2042-04-04": "Good Friday", + "2042-04-06": "Easter Sunday", + "2042-05-01": "Spring Day", + "2042-05-25": "Whit Sunday", + "2042-06-23": "Victory Day", + "2042-06-24": "Midsummer Day", + "2042-08-20": "Independence Restoration Day", + "2042-12-24": "Christmas Eve", + "2042-12-25": "Christmas Day", + "2042-12-26": "Second Day of Christmas", + "2043-01-01": "New Year's Day", + "2043-02-24": "Independence Day", + "2043-03-27": "Good Friday", + "2043-03-29": "Easter Sunday", + "2043-05-01": "Spring Day", + "2043-05-17": "Whit Sunday", + "2043-06-23": "Victory Day", + "2043-06-24": "Midsummer Day", + "2043-08-20": "Independence Restoration Day", + "2043-12-24": "Christmas Eve", + "2043-12-25": "Christmas Day", + "2043-12-26": "Second Day of Christmas", + "2044-01-01": "New Year's Day", + "2044-02-24": "Independence Day", + "2044-04-15": "Good Friday", + "2044-04-17": "Easter Sunday", + "2044-05-01": "Spring Day", + "2044-06-05": "Whit Sunday", + "2044-06-23": "Victory Day", + "2044-06-24": "Midsummer Day", + "2044-08-20": "Independence Restoration Day", + "2044-12-24": "Christmas Eve", + "2044-12-25": "Christmas Day", + "2044-12-26": "Second Day of Christmas", + "2045-01-01": "New Year's Day", + "2045-02-24": "Independence Day", + "2045-04-07": "Good Friday", + "2045-04-09": "Easter Sunday", + "2045-05-01": "Spring Day", + "2045-05-28": "Whit Sunday", + "2045-06-23": "Victory Day", + "2045-06-24": "Midsummer Day", + "2045-08-20": "Independence Restoration Day", + "2045-12-24": "Christmas Eve", + "2045-12-25": "Christmas Day", + "2045-12-26": "Second Day of Christmas", + "2046-01-01": "New Year's Day", + "2046-02-24": "Independence Day", + "2046-03-23": "Good Friday", + "2046-03-25": "Easter Sunday", + "2046-05-01": "Spring Day", + "2046-05-13": "Whit Sunday", + "2046-06-23": "Victory Day", + "2046-06-24": "Midsummer Day", + "2046-08-20": "Independence Restoration Day", + "2046-12-24": "Christmas Eve", + "2046-12-25": "Christmas Day", + "2046-12-26": "Second Day of Christmas", + "2047-01-01": "New Year's Day", + "2047-02-24": "Independence Day", + "2047-04-12": "Good Friday", + "2047-04-14": "Easter Sunday", + "2047-05-01": "Spring Day", + "2047-06-02": "Whit Sunday", + "2047-06-23": "Victory Day", + "2047-06-24": "Midsummer Day", + "2047-08-20": "Independence Restoration Day", + "2047-12-24": "Christmas Eve", + "2047-12-25": "Christmas Day", + "2047-12-26": "Second Day of Christmas", + "2048-01-01": "New Year's Day", + "2048-02-24": "Independence Day", + "2048-04-03": "Good Friday", + "2048-04-05": "Easter Sunday", + "2048-05-01": "Spring Day", + "2048-05-24": "Whit Sunday", + "2048-06-23": "Victory Day", + "2048-06-24": "Midsummer Day", + "2048-08-20": "Independence Restoration Day", + "2048-12-24": "Christmas Eve", + "2048-12-25": "Christmas Day", + "2048-12-26": "Second Day of Christmas", + "2049-01-01": "New Year's Day", + "2049-02-24": "Independence Day", + "2049-04-16": "Good Friday", + "2049-04-18": "Easter Sunday", + "2049-05-01": "Spring Day", + "2049-06-06": "Whit Sunday", + "2049-06-23": "Victory Day", + "2049-06-24": "Midsummer Day", + "2049-08-20": "Independence Restoration Day", + "2049-12-24": "Christmas Eve", + "2049-12-25": "Christmas Day", + "2049-12-26": "Second Day of Christmas", + "2050-01-01": "New Year's Day", + "2050-02-24": "Independence Day", + "2050-04-08": "Good Friday", + "2050-04-10": "Easter Sunday", + "2050-05-01": "Spring Day", + "2050-05-29": "Whit Sunday", + "2050-06-23": "Victory Day", + "2050-06-24": "Midsummer Day", + "2050-08-20": "Independence Restoration Day", + "2050-12-24": "Christmas Eve", + "2050-12-25": "Christmas Day", + "2050-12-26": "Second Day of Christmas" +} diff --git a/snapshots/countries/EG.json b/snapshots/countries/EG.json new file mode 100644 index 000000000..4c6056ad9 --- /dev/null +++ b/snapshots/countries/EG.json @@ -0,0 +1,1759 @@ +{ + "1950-01-01": "New Year's Day; Prophet's Birthday* (*estimated)", + "1950-01-07": "Coptic Christmas", + "1950-04-09": "Coptic Easter - Orthodox Easter", + "1950-04-10": "Sham El Nessim", + "1950-05-01": "Labor Day", + "1950-07-16": "Eid al-Fitr* (*estimated)", + "1950-07-17": "Eid al-Fitr Holiday* (*estimated)", + "1950-07-18": "Eid al-Fitr Holiday* (*estimated)", + "1950-09-22": "Arafat Day* (*estimated)", + "1950-09-23": "Eid al-Adha* (*estimated)", + "1950-09-24": "Eid al-Adha Holiday* (*estimated)", + "1950-09-25": "Eid al-Adha Holiday* (*estimated)", + "1950-10-06": "Armed Forces Day", + "1950-10-13": "Islamic New Year* (*estimated)", + "1950-12-22": "Prophet's Birthday* (*estimated)", + "1951-01-01": "New Year's Day", + "1951-01-07": "Coptic Christmas", + "1951-04-29": "Coptic Easter - Orthodox Easter", + "1951-04-30": "Sham El Nessim", + "1951-05-01": "Labor Day", + "1951-07-06": "Eid al-Fitr* (*estimated)", + "1951-07-07": "Eid al-Fitr Holiday* (*estimated)", + "1951-07-08": "Eid al-Fitr Holiday* (*estimated)", + "1951-09-11": "Arafat Day* (*estimated)", + "1951-09-12": "Eid al-Adha* (*estimated)", + "1951-09-13": "Eid al-Adha Holiday* (*estimated)", + "1951-09-14": "Eid al-Adha Holiday* (*estimated)", + "1951-10-02": "Islamic New Year* (*estimated)", + "1951-10-06": "Armed Forces Day", + "1951-12-11": "Prophet's Birthday* (*estimated)", + "1952-01-01": "New Year's Day", + "1952-01-07": "Coptic Christmas", + "1952-04-20": "Coptic Easter - Orthodox Easter", + "1952-04-21": "Sham El Nessim", + "1952-05-01": "Labor Day", + "1952-06-23": "Eid al-Fitr* (*estimated)", + "1952-06-24": "Eid al-Fitr Holiday* (*estimated)", + "1952-06-25": "Eid al-Fitr Holiday* (*estimated)", + "1952-08-30": "Arafat Day* (*estimated)", + "1952-08-31": "Eid al-Adha* (*estimated)", + "1952-09-01": "Eid al-Adha Holiday* (*estimated)", + "1952-09-02": "Eid al-Adha Holiday* (*estimated)", + "1952-09-21": "Islamic New Year* (*estimated)", + "1952-10-06": "Armed Forces Day", + "1952-11-30": "Prophet's Birthday* (*estimated)", + "1953-01-01": "New Year's Day", + "1953-01-07": "Coptic Christmas", + "1953-04-05": "Coptic Easter - Orthodox Easter", + "1953-04-06": "Sham El Nessim", + "1953-05-01": "Labor Day", + "1953-06-13": "Eid al-Fitr* (*estimated)", + "1953-06-14": "Eid al-Fitr Holiday* (*estimated)", + "1953-06-15": "Eid al-Fitr Holiday* (*estimated)", + "1953-07-23": "July 23 Revolution Day", + "1953-08-19": "Arafat Day* (*estimated)", + "1953-08-20": "Eid al-Adha* (*estimated)", + "1953-08-21": "Eid al-Adha Holiday* (*estimated)", + "1953-08-22": "Eid al-Adha Holiday* (*estimated)", + "1953-09-10": "Islamic New Year* (*estimated)", + "1953-10-06": "Armed Forces Day", + "1953-11-19": "Prophet's Birthday* (*estimated)", + "1954-01-01": "New Year's Day", + "1954-01-07": "Coptic Christmas", + "1954-04-25": "Coptic Easter - Orthodox Easter", + "1954-04-26": "Sham El Nessim", + "1954-05-01": "Labor Day", + "1954-06-02": "Eid al-Fitr* (*estimated)", + "1954-06-03": "Eid al-Fitr Holiday* (*estimated)", + "1954-06-04": "Eid al-Fitr Holiday* (*estimated)", + "1954-07-23": "July 23 Revolution Day", + "1954-08-08": "Arafat Day* (*estimated)", + "1954-08-09": "Eid al-Adha* (*estimated)", + "1954-08-10": "Eid al-Adha Holiday* (*estimated)", + "1954-08-11": "Eid al-Adha Holiday* (*estimated)", + "1954-08-30": "Islamic New Year* (*estimated)", + "1954-10-06": "Armed Forces Day", + "1954-11-08": "Prophet's Birthday* (*estimated)", + "1955-01-01": "New Year's Day", + "1955-01-07": "Coptic Christmas", + "1955-04-17": "Coptic Easter - Orthodox Easter", + "1955-04-18": "Sham El Nessim", + "1955-05-01": "Labor Day", + "1955-05-23": "Eid al-Fitr* (*estimated)", + "1955-05-24": "Eid al-Fitr Holiday* (*estimated)", + "1955-05-25": "Eid al-Fitr Holiday* (*estimated)", + "1955-07-23": "July 23 Revolution Day", + "1955-07-29": "Arafat Day* (*estimated)", + "1955-07-30": "Eid al-Adha* (*estimated)", + "1955-07-31": "Eid al-Adha Holiday* (*estimated)", + "1955-08-01": "Eid al-Adha Holiday* (*estimated)", + "1955-08-20": "Islamic New Year* (*estimated)", + "1955-10-06": "Armed Forces Day", + "1955-10-29": "Prophet's Birthday* (*estimated)", + "1956-01-01": "New Year's Day", + "1956-01-07": "Coptic Christmas", + "1956-05-01": "Labor Day", + "1956-05-06": "Coptic Easter - Orthodox Easter", + "1956-05-07": "Sham El Nessim", + "1956-05-11": "Eid al-Fitr* (*estimated)", + "1956-05-12": "Eid al-Fitr Holiday* (*estimated)", + "1956-05-13": "Eid al-Fitr Holiday* (*estimated)", + "1956-07-18": "Arafat Day* (*estimated)", + "1956-07-19": "Eid al-Adha* (*estimated)", + "1956-07-20": "Eid al-Adha Holiday* (*estimated)", + "1956-07-21": "Eid al-Adha Holiday* (*estimated)", + "1956-07-23": "July 23 Revolution Day", + "1956-08-08": "Islamic New Year* (*estimated)", + "1956-10-06": "Armed Forces Day", + "1956-10-17": "Prophet's Birthday* (*estimated)", + "1957-01-01": "New Year's Day", + "1957-01-07": "Coptic Christmas", + "1957-04-21": "Coptic Easter - Orthodox Easter", + "1957-04-22": "Sham El Nessim", + "1957-05-01": "Eid al-Fitr* (*estimated); Labor Day", + "1957-05-02": "Eid al-Fitr Holiday* (*estimated)", + "1957-05-03": "Eid al-Fitr Holiday* (*estimated)", + "1957-07-07": "Arafat Day* (*estimated)", + "1957-07-08": "Eid al-Adha* (*estimated)", + "1957-07-09": "Eid al-Adha Holiday* (*estimated)", + "1957-07-10": "Eid al-Adha Holiday* (*estimated)", + "1957-07-23": "July 23 Revolution Day", + "1957-07-28": "Islamic New Year* (*estimated)", + "1957-10-06": "Armed Forces Day; Prophet's Birthday* (*estimated)", + "1958-01-01": "New Year's Day", + "1958-01-07": "Coptic Christmas", + "1958-04-13": "Coptic Easter - Orthodox Easter", + "1958-04-14": "Sham El Nessim", + "1958-04-20": "Eid al-Fitr* (*estimated)", + "1958-04-21": "Eid al-Fitr Holiday* (*estimated)", + "1958-04-22": "Eid al-Fitr Holiday* (*estimated)", + "1958-05-01": "Labor Day", + "1958-06-26": "Arafat Day* (*estimated)", + "1958-06-27": "Eid al-Adha* (*estimated)", + "1958-06-28": "Eid al-Adha Holiday* (*estimated)", + "1958-06-29": "Eid al-Adha Holiday* (*estimated)", + "1958-07-18": "Islamic New Year* (*estimated)", + "1958-07-23": "July 23 Revolution Day", + "1958-09-26": "Prophet's Birthday* (*estimated)", + "1958-10-06": "Armed Forces Day", + "1959-01-01": "New Year's Day", + "1959-01-07": "Coptic Christmas", + "1959-04-10": "Eid al-Fitr* (*estimated)", + "1959-04-11": "Eid al-Fitr Holiday* (*estimated)", + "1959-04-12": "Eid al-Fitr Holiday* (*estimated)", + "1959-05-01": "Labor Day", + "1959-05-03": "Coptic Easter - Orthodox Easter", + "1959-05-04": "Sham El Nessim", + "1959-06-16": "Arafat Day* (*estimated)", + "1959-06-17": "Eid al-Adha* (*estimated)", + "1959-06-18": "Eid al-Adha Holiday* (*estimated)", + "1959-06-19": "Eid al-Adha Holiday* (*estimated)", + "1959-07-07": "Islamic New Year* (*estimated)", + "1959-07-23": "July 23 Revolution Day", + "1959-09-15": "Prophet's Birthday* (*estimated)", + "1959-10-06": "Armed Forces Day", + "1960-01-01": "New Year's Day", + "1960-01-07": "Coptic Christmas", + "1960-03-28": "Eid al-Fitr* (*estimated)", + "1960-03-29": "Eid al-Fitr Holiday* (*estimated)", + "1960-03-30": "Eid al-Fitr Holiday* (*estimated)", + "1960-04-17": "Coptic Easter - Orthodox Easter", + "1960-04-18": "Sham El Nessim", + "1960-05-01": "Labor Day", + "1960-06-03": "Arafat Day* (*estimated)", + "1960-06-04": "Eid al-Adha* (*estimated)", + "1960-06-05": "Eid al-Adha Holiday* (*estimated)", + "1960-06-06": "Eid al-Adha Holiday* (*estimated)", + "1960-06-25": "Islamic New Year* (*estimated)", + "1960-07-23": "July 23 Revolution Day", + "1960-09-03": "Prophet's Birthday* (*estimated)", + "1960-10-06": "Armed Forces Day", + "1961-01-01": "New Year's Day", + "1961-01-07": "Coptic Christmas", + "1961-03-18": "Eid al-Fitr* (*estimated)", + "1961-03-19": "Eid al-Fitr Holiday* (*estimated)", + "1961-03-20": "Eid al-Fitr Holiday* (*estimated)", + "1961-04-09": "Coptic Easter - Orthodox Easter", + "1961-04-10": "Sham El Nessim", + "1961-05-01": "Labor Day", + "1961-05-24": "Arafat Day* (*estimated)", + "1961-05-25": "Eid al-Adha* (*estimated)", + "1961-05-26": "Eid al-Adha Holiday* (*estimated)", + "1961-05-27": "Eid al-Adha Holiday* (*estimated)", + "1961-06-14": "Islamic New Year* (*estimated)", + "1961-07-23": "July 23 Revolution Day", + "1961-08-23": "Prophet's Birthday* (*estimated)", + "1961-10-06": "Armed Forces Day", + "1962-01-01": "New Year's Day", + "1962-01-07": "Coptic Christmas", + "1962-03-07": "Eid al-Fitr* (*estimated)", + "1962-03-08": "Eid al-Fitr Holiday* (*estimated)", + "1962-03-09": "Eid al-Fitr Holiday* (*estimated)", + "1962-04-29": "Coptic Easter - Orthodox Easter", + "1962-04-30": "Sham El Nessim", + "1962-05-01": "Labor Day", + "1962-05-13": "Arafat Day* (*estimated)", + "1962-05-14": "Eid al-Adha* (*estimated)", + "1962-05-15": "Eid al-Adha Holiday* (*estimated)", + "1962-05-16": "Eid al-Adha Holiday* (*estimated)", + "1962-06-03": "Islamic New Year* (*estimated)", + "1962-07-23": "July 23 Revolution Day", + "1962-08-12": "Prophet's Birthday* (*estimated)", + "1962-10-06": "Armed Forces Day", + "1963-01-01": "New Year's Day", + "1963-01-07": "Coptic Christmas", + "1963-02-24": "Eid al-Fitr* (*estimated)", + "1963-02-25": "Eid al-Fitr Holiday* (*estimated)", + "1963-02-26": "Eid al-Fitr Holiday* (*estimated)", + "1963-04-14": "Coptic Easter - Orthodox Easter", + "1963-04-15": "Sham El Nessim", + "1963-05-01": "Labor Day", + "1963-05-02": "Arafat Day* (*estimated)", + "1963-05-03": "Eid al-Adha* (*estimated)", + "1963-05-04": "Eid al-Adha Holiday* (*estimated)", + "1963-05-05": "Eid al-Adha Holiday* (*estimated)", + "1963-05-24": "Islamic New Year* (*estimated)", + "1963-07-23": "July 23 Revolution Day", + "1963-08-02": "Prophet's Birthday* (*estimated)", + "1963-10-06": "Armed Forces Day", + "1964-01-01": "New Year's Day", + "1964-01-07": "Coptic Christmas", + "1964-02-14": "Eid al-Fitr* (*estimated)", + "1964-02-15": "Eid al-Fitr Holiday* (*estimated)", + "1964-02-16": "Eid al-Fitr Holiday* (*estimated)", + "1964-04-21": "Arafat Day* (*estimated)", + "1964-04-22": "Eid al-Adha* (*estimated)", + "1964-04-23": "Eid al-Adha Holiday* (*estimated)", + "1964-04-24": "Eid al-Adha Holiday* (*estimated)", + "1964-05-01": "Labor Day", + "1964-05-03": "Coptic Easter - Orthodox Easter", + "1964-05-04": "Sham El Nessim", + "1964-05-12": "Islamic New Year* (*estimated)", + "1964-07-21": "Prophet's Birthday* (*estimated)", + "1964-07-23": "July 23 Revolution Day", + "1964-10-06": "Armed Forces Day", + "1965-01-01": "New Year's Day", + "1965-01-07": "Coptic Christmas", + "1965-02-02": "Eid al-Fitr* (*estimated)", + "1965-02-03": "Eid al-Fitr Holiday* (*estimated)", + "1965-02-04": "Eid al-Fitr Holiday* (*estimated)", + "1965-04-10": "Arafat Day* (*estimated)", + "1965-04-11": "Eid al-Adha* (*estimated)", + "1965-04-12": "Eid al-Adha Holiday* (*estimated)", + "1965-04-13": "Eid al-Adha Holiday* (*estimated)", + "1965-04-25": "Coptic Easter - Orthodox Easter", + "1965-04-26": "Sham El Nessim", + "1965-05-01": "Islamic New Year* (*estimated); Labor Day", + "1965-07-10": "Prophet's Birthday* (*estimated)", + "1965-07-23": "July 23 Revolution Day", + "1965-10-06": "Armed Forces Day", + "1966-01-01": "New Year's Day", + "1966-01-07": "Coptic Christmas", + "1966-01-22": "Eid al-Fitr* (*estimated)", + "1966-01-23": "Eid al-Fitr Holiday* (*estimated)", + "1966-01-24": "Eid al-Fitr Holiday* (*estimated)", + "1966-03-31": "Arafat Day* (*estimated)", + "1966-04-01": "Eid al-Adha* (*estimated)", + "1966-04-02": "Eid al-Adha Holiday* (*estimated)", + "1966-04-03": "Eid al-Adha Holiday* (*estimated)", + "1966-04-10": "Coptic Easter - Orthodox Easter", + "1966-04-11": "Sham El Nessim", + "1966-04-21": "Islamic New Year* (*estimated)", + "1966-05-01": "Labor Day", + "1966-07-01": "Prophet's Birthday* (*estimated)", + "1966-07-23": "July 23 Revolution Day", + "1966-10-06": "Armed Forces Day", + "1967-01-01": "New Year's Day", + "1967-01-07": "Coptic Christmas", + "1967-01-12": "Eid al-Fitr* (*estimated)", + "1967-01-13": "Eid al-Fitr Holiday* (*estimated)", + "1967-01-14": "Eid al-Fitr Holiday* (*estimated)", + "1967-03-20": "Arafat Day* (*estimated)", + "1967-03-21": "Eid al-Adha* (*estimated)", + "1967-03-22": "Eid al-Adha Holiday* (*estimated)", + "1967-03-23": "Eid al-Adha Holiday* (*estimated)", + "1967-04-11": "Islamic New Year* (*estimated)", + "1967-04-30": "Coptic Easter - Orthodox Easter", + "1967-05-01": "Labor Day; Sham El Nessim", + "1967-06-19": "Prophet's Birthday* (*estimated)", + "1967-07-23": "July 23 Revolution Day", + "1967-10-06": "Armed Forces Day", + "1968-01-01": "Eid al-Fitr* (*estimated); New Year's Day", + "1968-01-02": "Eid al-Fitr Holiday* (*estimated)", + "1968-01-03": "Eid al-Fitr Holiday* (*estimated)", + "1968-01-07": "Coptic Christmas", + "1968-03-08": "Arafat Day* (*estimated)", + "1968-03-09": "Eid al-Adha* (*estimated)", + "1968-03-10": "Eid al-Adha Holiday* (*estimated)", + "1968-03-11": "Eid al-Adha Holiday* (*estimated)", + "1968-03-30": "Islamic New Year* (*estimated)", + "1968-04-21": "Coptic Easter - Orthodox Easter", + "1968-04-22": "Sham El Nessim", + "1968-05-01": "Labor Day", + "1968-06-08": "Prophet's Birthday* (*estimated)", + "1968-07-23": "July 23 Revolution Day", + "1968-10-06": "Armed Forces Day", + "1968-12-21": "Eid al-Fitr* (*estimated)", + "1968-12-22": "Eid al-Fitr Holiday* (*estimated)", + "1968-12-23": "Eid al-Fitr Holiday* (*estimated)", + "1969-01-01": "New Year's Day", + "1969-01-07": "Coptic Christmas", + "1969-02-26": "Arafat Day* (*estimated)", + "1969-02-27": "Eid al-Adha* (*estimated)", + "1969-02-28": "Eid al-Adha Holiday* (*estimated)", + "1969-03-01": "Eid al-Adha Holiday* (*estimated)", + "1969-03-19": "Islamic New Year* (*estimated)", + "1969-04-13": "Coptic Easter - Orthodox Easter", + "1969-04-14": "Sham El Nessim", + "1969-05-01": "Labor Day", + "1969-05-28": "Prophet's Birthday* (*estimated)", + "1969-07-23": "July 23 Revolution Day", + "1969-10-06": "Armed Forces Day", + "1969-12-10": "Eid al-Fitr* (*estimated)", + "1969-12-11": "Eid al-Fitr Holiday* (*estimated)", + "1969-12-12": "Eid al-Fitr Holiday* (*estimated)", + "1970-01-01": "New Year's Day", + "1970-01-07": "Coptic Christmas", + "1970-02-15": "Arafat Day* (*estimated)", + "1970-02-16": "Eid al-Adha* (*estimated)", + "1970-02-17": "Eid al-Adha Holiday* (*estimated)", + "1970-02-18": "Eid al-Adha Holiday* (*estimated)", + "1970-03-09": "Islamic New Year* (*estimated)", + "1970-04-26": "Coptic Easter - Orthodox Easter", + "1970-04-27": "Sham El Nessim", + "1970-05-01": "Labor Day", + "1970-05-18": "Prophet's Birthday* (*estimated)", + "1970-07-23": "July 23 Revolution Day", + "1970-10-06": "Armed Forces Day", + "1970-11-30": "Eid al-Fitr* (*estimated)", + "1970-12-01": "Eid al-Fitr Holiday* (*estimated)", + "1970-12-02": "Eid al-Fitr Holiday* (*estimated)", + "1971-01-01": "New Year's Day", + "1971-01-07": "Coptic Christmas", + "1971-02-05": "Arafat Day* (*estimated)", + "1971-02-06": "Eid al-Adha* (*estimated)", + "1971-02-07": "Eid al-Adha Holiday* (*estimated)", + "1971-02-08": "Eid al-Adha Holiday* (*estimated)", + "1971-02-26": "Islamic New Year* (*estimated)", + "1971-04-18": "Coptic Easter - Orthodox Easter", + "1971-04-19": "Sham El Nessim", + "1971-05-01": "Labor Day", + "1971-05-07": "Prophet's Birthday* (*estimated)", + "1971-07-23": "July 23 Revolution Day", + "1971-10-06": "Armed Forces Day", + "1971-11-19": "Eid al-Fitr* (*estimated)", + "1971-11-20": "Eid al-Fitr Holiday* (*estimated)", + "1971-11-21": "Eid al-Fitr Holiday* (*estimated)", + "1972-01-01": "New Year's Day", + "1972-01-07": "Coptic Christmas", + "1972-01-25": "Arafat Day* (*estimated)", + "1972-01-26": "Eid al-Adha* (*estimated)", + "1972-01-27": "Eid al-Adha Holiday* (*estimated)", + "1972-01-28": "Eid al-Adha Holiday* (*estimated)", + "1972-02-16": "Islamic New Year* (*estimated)", + "1972-04-09": "Coptic Easter - Orthodox Easter", + "1972-04-10": "Sham El Nessim", + "1972-04-25": "Prophet's Birthday* (*estimated)", + "1972-05-01": "Labor Day", + "1972-07-23": "July 23 Revolution Day", + "1972-10-06": "Armed Forces Day", + "1972-11-07": "Eid al-Fitr* (*estimated)", + "1972-11-08": "Eid al-Fitr Holiday* (*estimated)", + "1972-11-09": "Eid al-Fitr Holiday* (*estimated)", + "1973-01-01": "New Year's Day", + "1973-01-07": "Coptic Christmas", + "1973-01-13": "Arafat Day* (*estimated)", + "1973-01-14": "Eid al-Adha* (*estimated)", + "1973-01-15": "Eid al-Adha Holiday* (*estimated)", + "1973-01-16": "Eid al-Adha Holiday* (*estimated)", + "1973-02-04": "Islamic New Year* (*estimated)", + "1973-04-15": "Prophet's Birthday* (*estimated)", + "1973-04-29": "Coptic Easter - Orthodox Easter", + "1973-04-30": "Sham El Nessim", + "1973-05-01": "Labor Day", + "1973-07-23": "July 23 Revolution Day", + "1973-10-06": "Armed Forces Day", + "1973-10-27": "Eid al-Fitr* (*estimated)", + "1973-10-28": "Eid al-Fitr Holiday* (*estimated)", + "1973-10-29": "Eid al-Fitr Holiday* (*estimated)", + "1974-01-01": "New Year's Day", + "1974-01-02": "Arafat Day* (*estimated)", + "1974-01-03": "Eid al-Adha* (*estimated)", + "1974-01-04": "Eid al-Adha Holiday* (*estimated)", + "1974-01-05": "Eid al-Adha Holiday* (*estimated)", + "1974-01-07": "Coptic Christmas", + "1974-01-24": "Islamic New Year* (*estimated)", + "1974-04-04": "Prophet's Birthday* (*estimated)", + "1974-04-14": "Coptic Easter - Orthodox Easter", + "1974-04-15": "Sham El Nessim", + "1974-05-01": "Labor Day", + "1974-07-23": "July 23 Revolution Day", + "1974-10-06": "Armed Forces Day", + "1974-10-16": "Eid al-Fitr* (*estimated)", + "1974-10-17": "Eid al-Fitr Holiday* (*estimated)", + "1974-10-18": "Eid al-Fitr Holiday* (*estimated)", + "1974-12-23": "Arafat Day* (*estimated)", + "1974-12-24": "Eid al-Adha* (*estimated)", + "1974-12-25": "Eid al-Adha Holiday* (*estimated)", + "1974-12-26": "Eid al-Adha Holiday* (*estimated)", + "1975-01-01": "New Year's Day", + "1975-01-07": "Coptic Christmas", + "1975-01-13": "Islamic New Year* (*estimated)", + "1975-03-24": "Prophet's Birthday* (*estimated)", + "1975-05-01": "Labor Day", + "1975-05-04": "Coptic Easter - Orthodox Easter", + "1975-05-05": "Sham El Nessim", + "1975-07-23": "July 23 Revolution Day", + "1975-10-06": "Armed Forces Day; Eid al-Fitr* (*estimated)", + "1975-10-07": "Eid al-Fitr Holiday* (*estimated)", + "1975-10-08": "Eid al-Fitr Holiday* (*estimated)", + "1975-12-12": "Arafat Day* (*estimated)", + "1975-12-13": "Eid al-Adha* (*estimated)", + "1975-12-14": "Eid al-Adha Holiday* (*estimated)", + "1975-12-15": "Eid al-Adha Holiday* (*estimated)", + "1976-01-01": "New Year's Day", + "1976-01-02": "Islamic New Year* (*estimated)", + "1976-01-07": "Coptic Christmas", + "1976-03-12": "Prophet's Birthday* (*estimated)", + "1976-04-25": "Coptic Easter - Orthodox Easter", + "1976-04-26": "Sham El Nessim", + "1976-05-01": "Labor Day", + "1976-07-23": "July 23 Revolution Day", + "1976-09-24": "Eid al-Fitr* (*estimated)", + "1976-09-25": "Eid al-Fitr Holiday* (*estimated)", + "1976-09-26": "Eid al-Fitr Holiday* (*estimated)", + "1976-10-06": "Armed Forces Day", + "1976-11-30": "Arafat Day* (*estimated)", + "1976-12-01": "Eid al-Adha* (*estimated)", + "1976-12-02": "Eid al-Adha Holiday* (*estimated)", + "1976-12-03": "Eid al-Adha Holiday* (*estimated)", + "1976-12-22": "Islamic New Year* (*estimated)", + "1977-01-01": "New Year's Day", + "1977-01-07": "Coptic Christmas", + "1977-03-02": "Prophet's Birthday* (*estimated)", + "1977-04-10": "Coptic Easter - Orthodox Easter", + "1977-04-11": "Sham El Nessim", + "1977-05-01": "Labor Day", + "1977-07-23": "July 23 Revolution Day", + "1977-09-14": "Eid al-Fitr* (*estimated)", + "1977-09-15": "Eid al-Fitr Holiday* (*estimated)", + "1977-09-16": "Eid al-Fitr Holiday* (*estimated)", + "1977-10-06": "Armed Forces Day", + "1977-11-20": "Arafat Day* (*estimated)", + "1977-11-21": "Eid al-Adha* (*estimated)", + "1977-11-22": "Eid al-Adha Holiday* (*estimated)", + "1977-11-23": "Eid al-Adha Holiday* (*estimated)", + "1977-12-11": "Islamic New Year* (*estimated)", + "1978-01-01": "New Year's Day", + "1978-01-07": "Coptic Christmas", + "1978-02-19": "Prophet's Birthday* (*estimated)", + "1978-04-30": "Coptic Easter - Orthodox Easter", + "1978-05-01": "Labor Day; Sham El Nessim", + "1978-07-23": "July 23 Revolution Day", + "1978-09-03": "Eid al-Fitr* (*estimated)", + "1978-09-04": "Eid al-Fitr Holiday* (*estimated)", + "1978-09-05": "Eid al-Fitr Holiday* (*estimated)", + "1978-10-06": "Armed Forces Day", + "1978-11-09": "Arafat Day* (*estimated)", + "1978-11-10": "Eid al-Adha* (*estimated)", + "1978-11-11": "Eid al-Adha Holiday* (*estimated)", + "1978-11-12": "Eid al-Adha Holiday* (*estimated)", + "1978-12-01": "Islamic New Year* (*estimated)", + "1979-01-01": "New Year's Day", + "1979-01-07": "Coptic Christmas", + "1979-02-09": "Prophet's Birthday* (*estimated)", + "1979-04-22": "Coptic Easter - Orthodox Easter", + "1979-04-23": "Sham El Nessim", + "1979-05-01": "Labor Day", + "1979-07-23": "July 23 Revolution Day", + "1979-08-23": "Eid al-Fitr* (*estimated)", + "1979-08-24": "Eid al-Fitr Holiday* (*estimated)", + "1979-08-25": "Eid al-Fitr Holiday* (*estimated)", + "1979-10-06": "Armed Forces Day", + "1979-10-30": "Arafat Day* (*estimated)", + "1979-10-31": "Eid al-Adha* (*estimated)", + "1979-11-01": "Eid al-Adha Holiday* (*estimated)", + "1979-11-02": "Eid al-Adha Holiday* (*estimated)", + "1979-11-20": "Islamic New Year* (*estimated)", + "1980-01-01": "New Year's Day", + "1980-01-07": "Coptic Christmas", + "1980-01-30": "Prophet's Birthday* (*estimated)", + "1980-04-06": "Coptic Easter - Orthodox Easter", + "1980-04-07": "Sham El Nessim", + "1980-05-01": "Labor Day", + "1980-07-23": "July 23 Revolution Day", + "1980-08-12": "Eid al-Fitr* (*estimated)", + "1980-08-13": "Eid al-Fitr Holiday* (*estimated)", + "1980-08-14": "Eid al-Fitr Holiday* (*estimated)", + "1980-10-06": "Armed Forces Day", + "1980-10-18": "Arafat Day* (*estimated)", + "1980-10-19": "Eid al-Adha* (*estimated)", + "1980-10-20": "Eid al-Adha Holiday* (*estimated)", + "1980-10-21": "Eid al-Adha Holiday* (*estimated)", + "1980-11-09": "Islamic New Year* (*estimated)", + "1981-01-01": "New Year's Day", + "1981-01-07": "Coptic Christmas", + "1981-01-18": "Prophet's Birthday* (*estimated)", + "1981-04-26": "Coptic Easter - Orthodox Easter", + "1981-04-27": "Sham El Nessim", + "1981-05-01": "Labor Day", + "1981-07-23": "July 23 Revolution Day", + "1981-08-01": "Eid al-Fitr* (*estimated)", + "1981-08-02": "Eid al-Fitr Holiday* (*estimated)", + "1981-08-03": "Eid al-Fitr Holiday* (*estimated)", + "1981-10-06": "Armed Forces Day", + "1981-10-07": "Arafat Day* (*estimated)", + "1981-10-08": "Eid al-Adha* (*estimated)", + "1981-10-09": "Eid al-Adha Holiday* (*estimated)", + "1981-10-10": "Eid al-Adha Holiday* (*estimated)", + "1981-10-28": "Islamic New Year* (*estimated)", + "1982-01-01": "New Year's Day", + "1982-01-07": "Coptic Christmas; Prophet's Birthday* (*estimated)", + "1982-04-18": "Coptic Easter - Orthodox Easter", + "1982-04-19": "Sham El Nessim", + "1982-05-01": "Labor Day", + "1982-07-21": "Eid al-Fitr* (*estimated)", + "1982-07-22": "Eid al-Fitr Holiday* (*estimated)", + "1982-07-23": "Eid al-Fitr Holiday* (*estimated); July 23 Revolution Day", + "1982-09-26": "Arafat Day* (*estimated)", + "1982-09-27": "Eid al-Adha* (*estimated)", + "1982-09-28": "Eid al-Adha Holiday* (*estimated)", + "1982-09-29": "Eid al-Adha Holiday* (*estimated)", + "1982-10-06": "Armed Forces Day", + "1982-10-18": "Islamic New Year* (*estimated)", + "1982-12-27": "Prophet's Birthday* (*estimated)", + "1983-01-01": "New Year's Day", + "1983-01-07": "Coptic Christmas", + "1983-04-25": "Sinai Liberation Day", + "1983-05-01": "Labor Day", + "1983-05-08": "Coptic Easter - Orthodox Easter", + "1983-05-09": "Sham El Nessim", + "1983-07-11": "Eid al-Fitr* (*estimated)", + "1983-07-12": "Eid al-Fitr Holiday* (*estimated)", + "1983-07-13": "Eid al-Fitr Holiday* (*estimated)", + "1983-07-23": "July 23 Revolution Day", + "1983-09-16": "Arafat Day* (*estimated)", + "1983-09-17": "Eid al-Adha* (*estimated)", + "1983-09-18": "Eid al-Adha Holiday* (*estimated)", + "1983-09-19": "Eid al-Adha Holiday* (*estimated)", + "1983-10-06": "Armed Forces Day", + "1983-10-07": "Islamic New Year* (*estimated)", + "1983-12-16": "Prophet's Birthday* (*estimated)", + "1984-01-01": "New Year's Day", + "1984-01-07": "Coptic Christmas", + "1984-04-22": "Coptic Easter - Orthodox Easter", + "1984-04-23": "Sham El Nessim", + "1984-04-25": "Sinai Liberation Day", + "1984-05-01": "Labor Day", + "1984-06-30": "Eid al-Fitr* (*estimated)", + "1984-07-01": "Eid al-Fitr Holiday* (*estimated)", + "1984-07-02": "Eid al-Fitr Holiday* (*estimated)", + "1984-07-23": "July 23 Revolution Day", + "1984-09-04": "Arafat Day* (*estimated)", + "1984-09-05": "Eid al-Adha* (*estimated)", + "1984-09-06": "Eid al-Adha Holiday* (*estimated)", + "1984-09-07": "Eid al-Adha Holiday* (*estimated)", + "1984-09-26": "Islamic New Year* (*estimated)", + "1984-10-06": "Armed Forces Day", + "1984-12-04": "Prophet's Birthday* (*estimated)", + "1985-01-01": "New Year's Day", + "1985-01-07": "Coptic Christmas", + "1985-04-14": "Coptic Easter - Orthodox Easter", + "1985-04-15": "Sham El Nessim", + "1985-04-25": "Sinai Liberation Day", + "1985-05-01": "Labor Day", + "1985-06-19": "Eid al-Fitr* (*estimated)", + "1985-06-20": "Eid al-Fitr Holiday* (*estimated)", + "1985-06-21": "Eid al-Fitr Holiday* (*estimated)", + "1985-07-23": "July 23 Revolution Day", + "1985-08-25": "Arafat Day* (*estimated)", + "1985-08-26": "Eid al-Adha* (*estimated)", + "1985-08-27": "Eid al-Adha Holiday* (*estimated)", + "1985-08-28": "Eid al-Adha Holiday* (*estimated)", + "1985-09-15": "Islamic New Year* (*estimated)", + "1985-10-06": "Armed Forces Day", + "1985-11-24": "Prophet's Birthday* (*estimated)", + "1986-01-01": "New Year's Day", + "1986-01-07": "Coptic Christmas", + "1986-04-25": "Sinai Liberation Day", + "1986-05-01": "Labor Day", + "1986-05-04": "Coptic Easter - Orthodox Easter", + "1986-05-05": "Sham El Nessim", + "1986-06-08": "Eid al-Fitr* (*estimated)", + "1986-06-09": "Eid al-Fitr Holiday* (*estimated)", + "1986-06-10": "Eid al-Fitr Holiday* (*estimated)", + "1986-07-23": "July 23 Revolution Day", + "1986-08-14": "Arafat Day* (*estimated)", + "1986-08-15": "Eid al-Adha* (*estimated)", + "1986-08-16": "Eid al-Adha Holiday* (*estimated)", + "1986-08-17": "Eid al-Adha Holiday* (*estimated)", + "1986-09-05": "Islamic New Year* (*estimated)", + "1986-10-06": "Armed Forces Day", + "1986-11-14": "Prophet's Birthday* (*estimated)", + "1987-01-01": "New Year's Day", + "1987-01-07": "Coptic Christmas", + "1987-04-19": "Coptic Easter - Orthodox Easter", + "1987-04-20": "Sham El Nessim", + "1987-04-25": "Sinai Liberation Day", + "1987-05-01": "Labor Day", + "1987-05-28": "Eid al-Fitr* (*estimated)", + "1987-05-29": "Eid al-Fitr Holiday* (*estimated)", + "1987-05-30": "Eid al-Fitr Holiday* (*estimated)", + "1987-07-23": "July 23 Revolution Day", + "1987-08-03": "Arafat Day* (*estimated)", + "1987-08-04": "Eid al-Adha* (*estimated)", + "1987-08-05": "Eid al-Adha Holiday* (*estimated)", + "1987-08-06": "Eid al-Adha Holiday* (*estimated)", + "1987-08-25": "Islamic New Year* (*estimated)", + "1987-10-06": "Armed Forces Day", + "1987-11-03": "Prophet's Birthday* (*estimated)", + "1988-01-01": "New Year's Day", + "1988-01-07": "Coptic Christmas", + "1988-04-10": "Coptic Easter - Orthodox Easter", + "1988-04-11": "Sham El Nessim", + "1988-04-25": "Sinai Liberation Day", + "1988-05-01": "Labor Day", + "1988-05-16": "Eid al-Fitr* (*estimated)", + "1988-05-17": "Eid al-Fitr Holiday* (*estimated)", + "1988-05-18": "Eid al-Fitr Holiday* (*estimated)", + "1988-07-22": "Arafat Day* (*estimated)", + "1988-07-23": "Eid al-Adha* (*estimated); July 23 Revolution Day", + "1988-07-24": "Eid al-Adha Holiday* (*estimated)", + "1988-07-25": "Eid al-Adha Holiday* (*estimated)", + "1988-08-13": "Islamic New Year* (*estimated)", + "1988-10-06": "Armed Forces Day", + "1988-10-22": "Prophet's Birthday* (*estimated)", + "1989-01-01": "New Year's Day", + "1989-01-07": "Coptic Christmas", + "1989-04-25": "Sinai Liberation Day", + "1989-04-30": "Coptic Easter - Orthodox Easter", + "1989-05-01": "Labor Day; Sham El Nessim", + "1989-05-06": "Eid al-Fitr* (*estimated)", + "1989-05-07": "Eid al-Fitr Holiday* (*estimated)", + "1989-05-08": "Eid al-Fitr Holiday* (*estimated)", + "1989-07-12": "Arafat Day* (*estimated)", + "1989-07-13": "Eid al-Adha* (*estimated)", + "1989-07-14": "Eid al-Adha Holiday* (*estimated)", + "1989-07-15": "Eid al-Adha Holiday* (*estimated)", + "1989-07-23": "July 23 Revolution Day", + "1989-08-02": "Islamic New Year* (*estimated)", + "1989-10-06": "Armed Forces Day", + "1989-10-11": "Prophet's Birthday* (*estimated)", + "1990-01-01": "New Year's Day", + "1990-01-07": "Coptic Christmas", + "1990-04-15": "Coptic Easter - Orthodox Easter", + "1990-04-16": "Sham El Nessim", + "1990-04-25": "Sinai Liberation Day", + "1990-04-26": "Eid al-Fitr* (*estimated)", + "1990-04-27": "Eid al-Fitr Holiday* (*estimated)", + "1990-04-28": "Eid al-Fitr Holiday* (*estimated)", + "1990-05-01": "Labor Day", + "1990-07-01": "Arafat Day* (*estimated)", + "1990-07-02": "Eid al-Adha* (*estimated)", + "1990-07-03": "Eid al-Adha Holiday* (*estimated)", + "1990-07-04": "Eid al-Adha Holiday* (*estimated)", + "1990-07-23": "Islamic New Year* (*estimated); July 23 Revolution Day", + "1990-10-01": "Prophet's Birthday* (*estimated)", + "1990-10-06": "Armed Forces Day", + "1991-01-01": "New Year's Day", + "1991-01-07": "Coptic Christmas", + "1991-04-07": "Coptic Easter - Orthodox Easter", + "1991-04-08": "Sham El Nessim", + "1991-04-15": "Eid al-Fitr* (*estimated)", + "1991-04-16": "Eid al-Fitr Holiday* (*estimated)", + "1991-04-17": "Eid al-Fitr Holiday* (*estimated)", + "1991-04-25": "Sinai Liberation Day", + "1991-05-01": "Labor Day", + "1991-06-21": "Arafat Day* (*estimated)", + "1991-06-22": "Eid al-Adha* (*estimated)", + "1991-06-23": "Eid al-Adha Holiday* (*estimated)", + "1991-06-24": "Eid al-Adha Holiday* (*estimated)", + "1991-07-12": "Islamic New Year* (*estimated)", + "1991-07-23": "July 23 Revolution Day", + "1991-09-20": "Prophet's Birthday* (*estimated)", + "1991-10-06": "Armed Forces Day", + "1992-01-01": "New Year's Day", + "1992-01-07": "Coptic Christmas", + "1992-04-04": "Eid al-Fitr* (*estimated)", + "1992-04-05": "Eid al-Fitr Holiday* (*estimated)", + "1992-04-06": "Eid al-Fitr Holiday* (*estimated)", + "1992-04-25": "Sinai Liberation Day", + "1992-04-26": "Coptic Easter - Orthodox Easter", + "1992-04-27": "Sham El Nessim", + "1992-05-01": "Labor Day", + "1992-06-10": "Arafat Day* (*estimated)", + "1992-06-11": "Eid al-Adha* (*estimated)", + "1992-06-12": "Eid al-Adha Holiday* (*estimated)", + "1992-06-13": "Eid al-Adha Holiday* (*estimated)", + "1992-07-01": "Islamic New Year* (*estimated)", + "1992-07-23": "July 23 Revolution Day", + "1992-09-09": "Prophet's Birthday* (*estimated)", + "1992-10-06": "Armed Forces Day", + "1993-01-01": "New Year's Day", + "1993-01-07": "Coptic Christmas", + "1993-03-24": "Eid al-Fitr* (*estimated)", + "1993-03-25": "Eid al-Fitr Holiday* (*estimated)", + "1993-03-26": "Eid al-Fitr Holiday* (*estimated)", + "1993-04-18": "Coptic Easter - Orthodox Easter", + "1993-04-19": "Sham El Nessim", + "1993-04-25": "Sinai Liberation Day", + "1993-05-01": "Labor Day", + "1993-05-30": "Arafat Day* (*estimated)", + "1993-05-31": "Eid al-Adha* (*estimated)", + "1993-06-01": "Eid al-Adha Holiday* (*estimated)", + "1993-06-02": "Eid al-Adha Holiday* (*estimated)", + "1993-06-21": "Islamic New Year* (*estimated)", + "1993-07-23": "July 23 Revolution Day", + "1993-08-29": "Prophet's Birthday* (*estimated)", + "1993-10-06": "Armed Forces Day", + "1994-01-01": "New Year's Day", + "1994-01-07": "Coptic Christmas", + "1994-03-13": "Eid al-Fitr* (*estimated)", + "1994-03-14": "Eid al-Fitr Holiday* (*estimated)", + "1994-03-15": "Eid al-Fitr Holiday* (*estimated)", + "1994-04-25": "Sinai Liberation Day", + "1994-05-01": "Coptic Easter - Orthodox Easter; Labor Day", + "1994-05-02": "Sham El Nessim", + "1994-05-19": "Arafat Day* (*estimated)", + "1994-05-20": "Eid al-Adha* (*estimated)", + "1994-05-21": "Eid al-Adha Holiday* (*estimated)", + "1994-05-22": "Eid al-Adha Holiday* (*estimated)", + "1994-06-10": "Islamic New Year* (*estimated)", + "1994-07-23": "July 23 Revolution Day", + "1994-08-19": "Prophet's Birthday* (*estimated)", + "1994-10-06": "Armed Forces Day", + "1995-01-01": "New Year's Day", + "1995-01-07": "Coptic Christmas", + "1995-03-02": "Eid al-Fitr* (*estimated)", + "1995-03-03": "Eid al-Fitr Holiday* (*estimated)", + "1995-03-04": "Eid al-Fitr Holiday* (*estimated)", + "1995-04-23": "Coptic Easter - Orthodox Easter", + "1995-04-24": "Sham El Nessim", + "1995-04-25": "Sinai Liberation Day", + "1995-05-01": "Labor Day", + "1995-05-08": "Arafat Day* (*estimated)", + "1995-05-09": "Eid al-Adha* (*estimated)", + "1995-05-10": "Eid al-Adha Holiday* (*estimated)", + "1995-05-11": "Eid al-Adha Holiday* (*estimated)", + "1995-05-30": "Islamic New Year* (*estimated)", + "1995-07-23": "July 23 Revolution Day", + "1995-08-08": "Prophet's Birthday* (*estimated)", + "1995-10-06": "Armed Forces Day", + "1996-01-01": "New Year's Day", + "1996-01-07": "Coptic Christmas", + "1996-02-19": "Eid al-Fitr* (*estimated)", + "1996-02-20": "Eid al-Fitr Holiday* (*estimated)", + "1996-02-21": "Eid al-Fitr Holiday* (*estimated)", + "1996-04-14": "Coptic Easter - Orthodox Easter", + "1996-04-15": "Sham El Nessim", + "1996-04-25": "Sinai Liberation Day", + "1996-04-26": "Arafat Day* (*estimated)", + "1996-04-27": "Eid al-Adha* (*estimated)", + "1996-04-28": "Eid al-Adha Holiday* (*estimated)", + "1996-04-29": "Eid al-Adha Holiday* (*estimated)", + "1996-05-01": "Labor Day", + "1996-05-18": "Islamic New Year* (*estimated)", + "1996-07-23": "July 23 Revolution Day", + "1996-07-27": "Prophet's Birthday* (*estimated)", + "1996-10-06": "Armed Forces Day", + "1997-01-01": "New Year's Day", + "1997-01-07": "Coptic Christmas", + "1997-02-08": "Eid al-Fitr* (*estimated)", + "1997-02-09": "Eid al-Fitr Holiday* (*estimated)", + "1997-02-10": "Eid al-Fitr Holiday* (*estimated)", + "1997-04-16": "Arafat Day* (*estimated)", + "1997-04-17": "Eid al-Adha* (*estimated)", + "1997-04-18": "Eid al-Adha Holiday* (*estimated)", + "1997-04-19": "Eid al-Adha Holiday* (*estimated)", + "1997-04-25": "Sinai Liberation Day", + "1997-04-27": "Coptic Easter - Orthodox Easter", + "1997-04-28": "Sham El Nessim", + "1997-05-01": "Labor Day", + "1997-05-07": "Islamic New Year* (*estimated)", + "1997-07-16": "Prophet's Birthday* (*estimated)", + "1997-07-23": "July 23 Revolution Day", + "1997-10-06": "Armed Forces Day", + "1998-01-01": "New Year's Day", + "1998-01-07": "Coptic Christmas", + "1998-01-29": "Eid al-Fitr* (*estimated)", + "1998-01-30": "Eid al-Fitr Holiday* (*estimated)", + "1998-01-31": "Eid al-Fitr Holiday* (*estimated)", + "1998-04-06": "Arafat Day* (*estimated)", + "1998-04-07": "Eid al-Adha* (*estimated)", + "1998-04-08": "Eid al-Adha Holiday* (*estimated)", + "1998-04-09": "Eid al-Adha Holiday* (*estimated)", + "1998-04-19": "Coptic Easter - Orthodox Easter", + "1998-04-20": "Sham El Nessim", + "1998-04-25": "Sinai Liberation Day", + "1998-04-27": "Islamic New Year* (*estimated)", + "1998-05-01": "Labor Day", + "1998-07-06": "Prophet's Birthday* (*estimated)", + "1998-07-23": "July 23 Revolution Day", + "1998-10-06": "Armed Forces Day", + "1999-01-01": "New Year's Day", + "1999-01-07": "Coptic Christmas", + "1999-01-18": "Eid al-Fitr* (*estimated)", + "1999-01-19": "Eid al-Fitr Holiday* (*estimated)", + "1999-01-20": "Eid al-Fitr Holiday* (*estimated)", + "1999-03-26": "Arafat Day* (*estimated)", + "1999-03-27": "Eid al-Adha* (*estimated)", + "1999-03-28": "Eid al-Adha Holiday* (*estimated)", + "1999-03-29": "Eid al-Adha Holiday* (*estimated)", + "1999-04-11": "Coptic Easter - Orthodox Easter", + "1999-04-12": "Sham El Nessim", + "1999-04-17": "Islamic New Year* (*estimated)", + "1999-04-25": "Sinai Liberation Day", + "1999-05-01": "Labor Day", + "1999-06-26": "Prophet's Birthday* (*estimated)", + "1999-07-23": "July 23 Revolution Day", + "1999-10-06": "Armed Forces Day", + "2000-01-01": "New Year's Day", + "2000-01-07": "Coptic Christmas", + "2000-01-08": "Eid al-Fitr* (*estimated)", + "2000-01-09": "Eid al-Fitr Holiday* (*estimated)", + "2000-01-10": "Eid al-Fitr Holiday* (*estimated)", + "2000-03-15": "Arafat Day* (*estimated)", + "2000-03-16": "Eid al-Adha* (*estimated)", + "2000-03-17": "Eid al-Adha Holiday* (*estimated)", + "2000-03-18": "Eid al-Adha Holiday* (*estimated)", + "2000-04-06": "Islamic New Year* (*estimated)", + "2000-04-25": "Sinai Liberation Day", + "2000-04-30": "Coptic Easter - Orthodox Easter", + "2000-05-01": "Labor Day; Sham El Nessim", + "2000-06-14": "Prophet's Birthday* (*estimated)", + "2000-07-23": "July 23 Revolution Day", + "2000-10-06": "Armed Forces Day", + "2000-12-27": "Eid al-Fitr* (*estimated)", + "2000-12-28": "Eid al-Fitr Holiday* (*estimated)", + "2000-12-29": "Eid al-Fitr Holiday* (*estimated)", + "2001-01-01": "New Year's Day", + "2001-01-07": "Coptic Christmas", + "2001-03-04": "Arafat Day* (*estimated)", + "2001-03-05": "Eid al-Adha* (*estimated)", + "2001-03-06": "Eid al-Adha Holiday* (*estimated)", + "2001-03-07": "Eid al-Adha Holiday* (*estimated)", + "2001-03-26": "Islamic New Year* (*estimated)", + "2001-04-15": "Coptic Easter - Orthodox Easter", + "2001-04-16": "Sham El Nessim", + "2001-04-25": "Sinai Liberation Day", + "2001-05-01": "Labor Day", + "2001-06-04": "Prophet's Birthday* (*estimated)", + "2001-07-23": "July 23 Revolution Day", + "2001-10-06": "Armed Forces Day", + "2001-12-16": "Eid al-Fitr* (*estimated)", + "2001-12-17": "Eid al-Fitr Holiday* (*estimated)", + "2001-12-18": "Eid al-Fitr Holiday* (*estimated)", + "2002-01-01": "New Year's Day", + "2002-01-07": "Coptic Christmas", + "2002-02-21": "Arafat Day* (*estimated)", + "2002-02-22": "Eid al-Adha* (*estimated)", + "2002-02-23": "Eid al-Adha Holiday* (*estimated)", + "2002-02-24": "Eid al-Adha Holiday* (*estimated)", + "2002-03-15": "Islamic New Year* (*estimated)", + "2002-04-25": "Sinai Liberation Day", + "2002-05-01": "Labor Day", + "2002-05-05": "Coptic Easter - Orthodox Easter", + "2002-05-06": "Sham El Nessim", + "2002-05-24": "Prophet's Birthday* (*estimated)", + "2002-07-23": "July 23 Revolution Day", + "2002-10-06": "Armed Forces Day", + "2002-12-05": "Eid al-Fitr* (*estimated)", + "2002-12-06": "Eid al-Fitr Holiday* (*estimated)", + "2002-12-07": "Eid al-Fitr Holiday* (*estimated)", + "2003-01-01": "New Year's Day", + "2003-01-07": "Coptic Christmas", + "2003-02-10": "Arafat Day* (*estimated)", + "2003-02-11": "Eid al-Adha* (*estimated)", + "2003-02-12": "Eid al-Adha Holiday* (*estimated)", + "2003-02-13": "Eid al-Adha Holiday* (*estimated)", + "2003-03-04": "Islamic New Year* (*estimated)", + "2003-04-25": "Sinai Liberation Day", + "2003-04-27": "Coptic Easter - Orthodox Easter", + "2003-04-28": "Sham El Nessim", + "2003-05-01": "Labor Day", + "2003-05-13": "Prophet's Birthday* (*estimated)", + "2003-07-23": "July 23 Revolution Day", + "2003-10-06": "Armed Forces Day", + "2003-11-25": "Eid al-Fitr* (*estimated)", + "2003-11-26": "Eid al-Fitr Holiday* (*estimated)", + "2003-11-27": "Eid al-Fitr Holiday* (*estimated)", + "2004-01-01": "New Year's Day", + "2004-01-07": "Coptic Christmas", + "2004-01-31": "Arafat Day* (*estimated)", + "2004-02-01": "Eid al-Adha* (*estimated)", + "2004-02-02": "Eid al-Adha Holiday* (*estimated)", + "2004-02-03": "Eid al-Adha Holiday* (*estimated)", + "2004-02-21": "Islamic New Year* (*estimated)", + "2004-04-11": "Coptic Easter - Orthodox Easter", + "2004-04-12": "Sham El Nessim", + "2004-04-25": "Sinai Liberation Day", + "2004-05-01": "Labor Day; Prophet's Birthday* (*estimated)", + "2004-07-23": "July 23 Revolution Day", + "2004-10-06": "Armed Forces Day", + "2004-11-14": "Eid al-Fitr* (*estimated)", + "2004-11-15": "Eid al-Fitr Holiday* (*estimated)", + "2004-11-16": "Eid al-Fitr Holiday* (*estimated)", + "2005-01-01": "New Year's Day", + "2005-01-07": "Coptic Christmas", + "2005-01-20": "Arafat Day* (*estimated)", + "2005-01-21": "Eid al-Adha* (*estimated)", + "2005-01-22": "Eid al-Adha Holiday* (*estimated)", + "2005-01-23": "Eid al-Adha Holiday* (*estimated)", + "2005-02-10": "Islamic New Year* (*estimated)", + "2005-04-21": "Prophet's Birthday* (*estimated)", + "2005-04-25": "Sinai Liberation Day", + "2005-05-01": "Coptic Easter - Orthodox Easter; Labor Day", + "2005-05-02": "Sham El Nessim", + "2005-07-23": "July 23 Revolution Day", + "2005-10-06": "Armed Forces Day", + "2005-11-03": "Eid al-Fitr* (*estimated)", + "2005-11-04": "Eid al-Fitr Holiday* (*estimated)", + "2005-11-05": "Eid al-Fitr Holiday* (*estimated)", + "2006-01-01": "New Year's Day", + "2006-01-07": "Coptic Christmas", + "2006-01-09": "Arafat Day* (*estimated)", + "2006-01-10": "Eid al-Adha* (*estimated)", + "2006-01-11": "Eid al-Adha Holiday* (*estimated)", + "2006-01-12": "Eid al-Adha Holiday* (*estimated)", + "2006-01-31": "Islamic New Year* (*estimated)", + "2006-04-10": "Prophet's Birthday* (*estimated)", + "2006-04-23": "Coptic Easter - Orthodox Easter", + "2006-04-24": "Sham El Nessim", + "2006-04-25": "Sinai Liberation Day", + "2006-05-01": "Labor Day", + "2006-07-23": "July 23 Revolution Day", + "2006-10-06": "Armed Forces Day", + "2006-10-23": "Eid al-Fitr* (*estimated)", + "2006-10-24": "Eid al-Fitr Holiday* (*estimated)", + "2006-10-25": "Eid al-Fitr Holiday* (*estimated)", + "2006-12-30": "Arafat Day* (*estimated)", + "2006-12-31": "Eid al-Adha* (*estimated)", + "2007-01-01": "Eid al-Adha Holiday* (*estimated); New Year's Day", + "2007-01-02": "Eid al-Adha Holiday* (*estimated)", + "2007-01-07": "Coptic Christmas", + "2007-01-20": "Islamic New Year* (*estimated)", + "2007-03-31": "Prophet's Birthday* (*estimated)", + "2007-04-08": "Coptic Easter - Orthodox Easter", + "2007-04-09": "Sham El Nessim", + "2007-04-25": "Sinai Liberation Day", + "2007-05-01": "Labor Day", + "2007-07-23": "July 23 Revolution Day", + "2007-10-06": "Armed Forces Day", + "2007-10-13": "Eid al-Fitr* (*estimated)", + "2007-10-14": "Eid al-Fitr Holiday* (*estimated)", + "2007-10-15": "Eid al-Fitr Holiday* (*estimated)", + "2007-12-19": "Arafat Day* (*estimated)", + "2007-12-20": "Eid al-Adha* (*estimated)", + "2007-12-21": "Eid al-Adha Holiday* (*estimated)", + "2007-12-22": "Eid al-Adha Holiday* (*estimated)", + "2008-01-01": "New Year's Day", + "2008-01-07": "Coptic Christmas", + "2008-01-10": "Islamic New Year* (*estimated)", + "2008-03-20": "Prophet's Birthday* (*estimated)", + "2008-04-25": "Sinai Liberation Day", + "2008-04-27": "Coptic Easter - Orthodox Easter", + "2008-04-28": "Sham El Nessim", + "2008-05-01": "Labor Day", + "2008-07-23": "July 23 Revolution Day", + "2008-10-01": "Eid al-Fitr* (*estimated)", + "2008-10-02": "Eid al-Fitr Holiday* (*estimated)", + "2008-10-03": "Eid al-Fitr Holiday* (*estimated)", + "2008-10-06": "Armed Forces Day", + "2008-12-07": "Arafat Day* (*estimated)", + "2008-12-08": "Eid al-Adha* (*estimated)", + "2008-12-09": "Eid al-Adha Holiday* (*estimated)", + "2008-12-10": "Eid al-Adha Holiday* (*estimated)", + "2008-12-29": "Islamic New Year* (*estimated)", + "2009-01-01": "New Year's Day", + "2009-01-07": "Coptic Christmas", + "2009-01-25": "Police Day", + "2009-03-09": "Prophet's Birthday* (*estimated)", + "2009-04-19": "Coptic Easter - Orthodox Easter", + "2009-04-20": "Sham El Nessim", + "2009-04-25": "Sinai Liberation Day", + "2009-05-01": "Labor Day", + "2009-07-23": "July 23 Revolution Day", + "2009-09-20": "Eid al-Fitr* (*estimated)", + "2009-09-21": "Eid al-Fitr Holiday* (*estimated)", + "2009-09-22": "Eid al-Fitr Holiday* (*estimated)", + "2009-10-06": "Armed Forces Day", + "2009-11-26": "Arafat Day* (*estimated)", + "2009-11-27": "Eid al-Adha* (*estimated)", + "2009-11-28": "Eid al-Adha Holiday* (*estimated)", + "2009-11-29": "Eid al-Adha Holiday* (*estimated)", + "2009-12-18": "Islamic New Year* (*estimated)", + "2010-01-01": "New Year's Day", + "2010-01-07": "Coptic Christmas", + "2010-01-25": "Police Day", + "2010-02-26": "Prophet's Birthday* (*estimated)", + "2010-04-04": "Coptic Easter - Orthodox Easter", + "2010-04-05": "Sham El Nessim", + "2010-04-25": "Sinai Liberation Day", + "2010-05-01": "Labor Day", + "2010-07-23": "July 23 Revolution Day", + "2010-09-10": "Eid al-Fitr* (*estimated)", + "2010-09-11": "Eid al-Fitr Holiday* (*estimated)", + "2010-09-12": "Eid al-Fitr Holiday* (*estimated)", + "2010-10-06": "Armed Forces Day", + "2010-11-15": "Arafat Day* (*estimated)", + "2010-11-16": "Eid al-Adha* (*estimated)", + "2010-11-17": "Eid al-Adha Holiday* (*estimated)", + "2010-11-18": "Eid al-Adha Holiday* (*estimated)", + "2010-12-07": "Islamic New Year* (*estimated)", + "2011-01-01": "New Year's Day", + "2011-01-07": "Coptic Christmas", + "2011-01-25": "Police Day", + "2011-02-15": "Prophet's Birthday* (*estimated)", + "2011-04-24": "Coptic Easter - Orthodox Easter", + "2011-04-25": "Sham El Nessim; Sinai Liberation Day", + "2011-05-01": "Labor Day", + "2011-07-23": "July 23 Revolution Day", + "2011-08-30": "Eid al-Fitr* (*estimated)", + "2011-08-31": "Eid al-Fitr Holiday* (*estimated)", + "2011-09-01": "Eid al-Fitr Holiday* (*estimated)", + "2011-10-06": "Armed Forces Day", + "2011-11-05": "Arafat Day* (*estimated)", + "2011-11-06": "Eid al-Adha* (*estimated)", + "2011-11-07": "Eid al-Adha Holiday* (*estimated)", + "2011-11-08": "Eid al-Adha Holiday* (*estimated)", + "2011-11-26": "Islamic New Year* (*estimated)", + "2012-01-01": "New Year's Day", + "2012-01-07": "Coptic Christmas", + "2012-01-25": "January 25th Revolution Day", + "2012-02-04": "Prophet's Birthday* (*estimated)", + "2012-04-15": "Coptic Easter - Orthodox Easter", + "2012-04-16": "Sham El Nessim", + "2012-04-25": "Sinai Liberation Day", + "2012-05-01": "Labor Day", + "2012-07-23": "July 23 Revolution Day", + "2012-08-19": "Eid al-Fitr* (*estimated)", + "2012-08-20": "Eid al-Fitr Holiday* (*estimated)", + "2012-08-21": "Eid al-Fitr Holiday* (*estimated)", + "2012-10-06": "Armed Forces Day", + "2012-10-25": "Arafat Day* (*estimated)", + "2012-10-26": "Eid al-Adha* (*estimated)", + "2012-10-27": "Eid al-Adha Holiday* (*estimated)", + "2012-10-28": "Eid al-Adha Holiday* (*estimated)", + "2012-11-15": "Islamic New Year* (*estimated)", + "2013-01-01": "New Year's Day", + "2013-01-07": "Coptic Christmas", + "2013-01-24": "Prophet's Birthday* (*estimated)", + "2013-01-25": "January 25th Revolution Day", + "2013-04-25": "Sinai Liberation Day", + "2013-05-01": "Labor Day", + "2013-05-05": "Coptic Easter - Orthodox Easter", + "2013-05-06": "Sham El Nessim", + "2013-07-23": "July 23 Revolution Day", + "2013-08-08": "Eid al-Fitr* (*estimated)", + "2013-08-09": "Eid al-Fitr Holiday* (*estimated)", + "2013-08-10": "Eid al-Fitr Holiday* (*estimated)", + "2013-10-06": "Armed Forces Day", + "2013-10-14": "Arafat Day* (*estimated)", + "2013-10-15": "Eid al-Adha* (*estimated)", + "2013-10-16": "Eid al-Adha Holiday* (*estimated)", + "2013-10-17": "Eid al-Adha Holiday* (*estimated)", + "2013-11-04": "Islamic New Year* (*estimated)", + "2014-01-01": "New Year's Day", + "2014-01-07": "Coptic Christmas", + "2014-01-13": "Prophet's Birthday* (*estimated)", + "2014-01-25": "January 25th Revolution Day", + "2014-04-20": "Coptic Easter - Orthodox Easter", + "2014-04-21": "Sham El Nessim", + "2014-04-25": "Sinai Liberation Day", + "2014-05-01": "Labor Day", + "2014-06-30": "June 30 Revolution Day", + "2014-07-23": "July 23 Revolution Day", + "2014-07-28": "Eid al-Fitr* (*estimated)", + "2014-07-29": "Eid al-Fitr Holiday* (*estimated)", + "2014-07-30": "Eid al-Fitr Holiday* (*estimated)", + "2014-10-03": "Arafat Day* (*estimated)", + "2014-10-04": "Eid al-Adha* (*estimated)", + "2014-10-05": "Eid al-Adha Holiday* (*estimated)", + "2014-10-06": "Armed Forces Day; Eid al-Adha Holiday* (*estimated)", + "2014-10-25": "Islamic New Year* (*estimated)", + "2015-01-01": "New Year's Day", + "2015-01-03": "Prophet's Birthday* (*estimated)", + "2015-01-07": "Coptic Christmas", + "2015-01-25": "January 25th Revolution Day", + "2015-04-12": "Coptic Easter - Orthodox Easter", + "2015-04-13": "Sham El Nessim", + "2015-04-25": "Sinai Liberation Day", + "2015-05-01": "Labor Day", + "2015-06-30": "June 30 Revolution Day", + "2015-07-17": "Eid al-Fitr* (*estimated)", + "2015-07-18": "Eid al-Fitr Holiday* (*estimated)", + "2015-07-19": "Eid al-Fitr Holiday* (*estimated)", + "2015-07-23": "July 23 Revolution Day", + "2015-09-22": "Arafat Day* (*estimated)", + "2015-09-23": "Eid al-Adha* (*estimated)", + "2015-09-24": "Eid al-Adha Holiday* (*estimated)", + "2015-09-25": "Eid al-Adha Holiday* (*estimated)", + "2015-10-06": "Armed Forces Day", + "2015-10-14": "Islamic New Year* (*estimated)", + "2015-12-23": "Prophet's Birthday* (*estimated)", + "2016-01-01": "New Year's Day", + "2016-01-07": "Coptic Christmas", + "2016-01-25": "January 25th Revolution Day", + "2016-04-25": "Sinai Liberation Day", + "2016-05-01": "Coptic Easter - Orthodox Easter; Labor Day", + "2016-05-02": "Sham El Nessim", + "2016-06-30": "June 30 Revolution Day", + "2016-07-06": "Eid al-Fitr* (*estimated)", + "2016-07-07": "Eid al-Fitr Holiday* (*estimated)", + "2016-07-08": "Eid al-Fitr Holiday* (*estimated)", + "2016-07-23": "July 23 Revolution Day", + "2016-09-10": "Arafat Day* (*estimated)", + "2016-09-11": "Eid al-Adha* (*estimated)", + "2016-09-12": "Eid al-Adha Holiday* (*estimated)", + "2016-09-13": "Eid al-Adha Holiday* (*estimated)", + "2016-10-02": "Islamic New Year* (*estimated)", + "2016-10-06": "Armed Forces Day", + "2016-12-11": "Prophet's Birthday* (*estimated)", + "2017-01-01": "New Year's Day", + "2017-01-07": "Coptic Christmas", + "2017-01-25": "January 25th Revolution Day", + "2017-04-16": "Coptic Easter - Orthodox Easter", + "2017-04-17": "Sham El Nessim", + "2017-04-25": "Sinai Liberation Day", + "2017-05-01": "Labor Day", + "2017-06-25": "Eid al-Fitr* (*estimated)", + "2017-06-26": "Eid al-Fitr Holiday* (*estimated)", + "2017-06-27": "Eid al-Fitr Holiday* (*estimated)", + "2017-06-30": "June 30 Revolution Day", + "2017-07-23": "July 23 Revolution Day", + "2017-08-31": "Arafat Day* (*estimated)", + "2017-09-01": "Eid al-Adha* (*estimated)", + "2017-09-02": "Eid al-Adha Holiday* (*estimated)", + "2017-09-03": "Eid al-Adha Holiday* (*estimated)", + "2017-09-21": "Islamic New Year* (*estimated)", + "2017-10-06": "Armed Forces Day", + "2017-11-30": "Prophet's Birthday* (*estimated)", + "2018-01-01": "New Year's Day", + "2018-01-07": "Coptic Christmas", + "2018-01-25": "January 25th Revolution Day", + "2018-04-08": "Coptic Easter - Orthodox Easter", + "2018-04-09": "Sham El Nessim", + "2018-04-25": "Sinai Liberation Day", + "2018-05-01": "Labor Day", + "2018-06-15": "Eid al-Fitr* (*estimated)", + "2018-06-16": "Eid al-Fitr Holiday* (*estimated)", + "2018-06-17": "Eid al-Fitr Holiday* (*estimated)", + "2018-06-30": "June 30 Revolution Day", + "2018-07-23": "July 23 Revolution Day", + "2018-08-20": "Arafat Day* (*estimated)", + "2018-08-21": "Eid al-Adha* (*estimated)", + "2018-08-22": "Eid al-Adha Holiday* (*estimated)", + "2018-08-23": "Eid al-Adha Holiday* (*estimated)", + "2018-09-11": "Islamic New Year* (*estimated)", + "2018-10-06": "Armed Forces Day", + "2018-11-20": "Prophet's Birthday* (*estimated)", + "2019-01-01": "New Year's Day", + "2019-01-07": "Coptic Christmas", + "2019-01-25": "January 25th Revolution Day", + "2019-04-25": "Sinai Liberation Day", + "2019-04-28": "Coptic Easter - Orthodox Easter", + "2019-04-29": "Sham El Nessim", + "2019-05-01": "Labor Day", + "2019-06-04": "Eid al-Fitr* (*estimated)", + "2019-06-05": "Eid al-Fitr Holiday* (*estimated)", + "2019-06-06": "Eid al-Fitr Holiday* (*estimated)", + "2019-06-30": "June 30 Revolution Day", + "2019-07-23": "July 23 Revolution Day", + "2019-08-10": "Arafat Day* (*estimated)", + "2019-08-11": "Eid al-Adha* (*estimated)", + "2019-08-12": "Eid al-Adha Holiday* (*estimated)", + "2019-08-13": "Eid al-Adha Holiday* (*estimated)", + "2019-08-31": "Islamic New Year* (*estimated)", + "2019-10-06": "Armed Forces Day", + "2019-11-09": "Prophet's Birthday* (*estimated)", + "2020-01-01": "New Year's Day", + "2020-01-07": "Coptic Christmas", + "2020-01-25": "January 25th Revolution Day", + "2020-04-19": "Coptic Easter - Orthodox Easter", + "2020-04-20": "Sham El Nessim", + "2020-04-25": "Sinai Liberation Day", + "2020-05-01": "Labor Day", + "2020-05-24": "Eid al-Fitr* (*estimated)", + "2020-05-25": "Eid al-Fitr Holiday* (*estimated)", + "2020-05-26": "Eid al-Fitr Holiday* (*estimated)", + "2020-06-30": "June 30 Revolution Day", + "2020-07-23": "July 23 Revolution Day", + "2020-07-30": "Arafat Day* (*estimated)", + "2020-07-31": "Eid al-Adha* (*estimated)", + "2020-08-01": "Eid al-Adha Holiday* (*estimated)", + "2020-08-02": "Eid al-Adha Holiday* (*estimated)", + "2020-08-20": "Islamic New Year* (*estimated)", + "2020-10-06": "Armed Forces Day", + "2020-10-29": "Prophet's Birthday* (*estimated)", + "2021-01-01": "New Year's Day", + "2021-01-07": "Coptic Christmas", + "2021-01-25": "January 25th Revolution Day", + "2021-04-25": "Sinai Liberation Day", + "2021-05-01": "Labor Day", + "2021-05-02": "Coptic Easter - Orthodox Easter", + "2021-05-03": "Sham El Nessim", + "2021-05-13": "Eid al-Fitr* (*estimated)", + "2021-05-14": "Eid al-Fitr Holiday* (*estimated)", + "2021-05-15": "Eid al-Fitr Holiday* (*estimated)", + "2021-06-30": "June 30 Revolution Day", + "2021-07-19": "Arafat Day* (*estimated)", + "2021-07-20": "Eid al-Adha* (*estimated)", + "2021-07-21": "Eid al-Adha Holiday* (*estimated)", + "2021-07-22": "Eid al-Adha Holiday* (*estimated)", + "2021-07-23": "July 23 Revolution Day", + "2021-08-09": "Islamic New Year* (*estimated)", + "2021-10-06": "Armed Forces Day", + "2021-10-18": "Prophet's Birthday* (*estimated)", + "2022-01-01": "New Year's Day", + "2022-01-07": "Coptic Christmas", + "2022-01-25": "January 25th Revolution Day", + "2022-04-24": "Coptic Easter - Orthodox Easter", + "2022-04-25": "Sham El Nessim; Sinai Liberation Day", + "2022-05-01": "Labor Day", + "2022-05-02": "Eid al-Fitr* (*estimated)", + "2022-05-03": "Eid al-Fitr Holiday* (*estimated)", + "2022-05-04": "Eid al-Fitr Holiday* (*estimated)", + "2022-06-30": "June 30 Revolution Day", + "2022-07-08": "Arafat Day* (*estimated)", + "2022-07-09": "Eid al-Adha* (*estimated)", + "2022-07-10": "Eid al-Adha Holiday* (*estimated)", + "2022-07-11": "Eid al-Adha Holiday* (*estimated)", + "2022-07-23": "July 23 Revolution Day", + "2022-07-30": "Islamic New Year* (*estimated)", + "2022-10-06": "Armed Forces Day", + "2022-10-08": "Prophet's Birthday* (*estimated)", + "2023-01-01": "New Year's Day", + "2023-01-07": "Coptic Christmas", + "2023-01-25": "January 25th Revolution Day", + "2023-04-16": "Coptic Easter - Orthodox Easter", + "2023-04-17": "Sham El Nessim", + "2023-04-21": "Eid al-Fitr* (*estimated)", + "2023-04-22": "Eid al-Fitr Holiday* (*estimated)", + "2023-04-23": "Eid al-Fitr Holiday* (*estimated)", + "2023-04-25": "Sinai Liberation Day", + "2023-05-01": "Labor Day", + "2023-06-27": "Arafat Day* (*estimated)", + "2023-06-28": "Eid al-Adha* (*estimated)", + "2023-06-29": "Eid al-Adha Holiday* (*estimated)", + "2023-06-30": "Eid al-Adha Holiday* (*estimated); June 30 Revolution Day", + "2023-07-19": "Islamic New Year* (*estimated)", + "2023-07-23": "July 23 Revolution Day", + "2023-09-27": "Prophet's Birthday* (*estimated)", + "2023-10-06": "Armed Forces Day", + "2024-01-01": "New Year's Day", + "2024-01-07": "Coptic Christmas", + "2024-01-25": "January 25th Revolution Day", + "2024-04-10": "Eid al-Fitr* (*estimated)", + "2024-04-11": "Eid al-Fitr Holiday* (*estimated)", + "2024-04-12": "Eid al-Fitr Holiday* (*estimated)", + "2024-04-25": "Sinai Liberation Day", + "2024-05-01": "Labor Day", + "2024-05-05": "Coptic Easter - Orthodox Easter", + "2024-05-06": "Sham El Nessim", + "2024-06-15": "Arafat Day* (*estimated)", + "2024-06-16": "Eid al-Adha* (*estimated)", + "2024-06-17": "Eid al-Adha Holiday* (*estimated)", + "2024-06-18": "Eid al-Adha Holiday* (*estimated)", + "2024-06-30": "June 30 Revolution Day", + "2024-07-07": "Islamic New Year* (*estimated)", + "2024-07-23": "July 23 Revolution Day", + "2024-09-15": "Prophet's Birthday* (*estimated)", + "2024-10-06": "Armed Forces Day", + "2025-01-01": "New Year's Day", + "2025-01-07": "Coptic Christmas", + "2025-01-25": "January 25th Revolution Day", + "2025-03-30": "Eid al-Fitr* (*estimated)", + "2025-03-31": "Eid al-Fitr Holiday* (*estimated)", + "2025-04-01": "Eid al-Fitr Holiday* (*estimated)", + "2025-04-20": "Coptic Easter - Orthodox Easter", + "2025-04-21": "Sham El Nessim", + "2025-04-25": "Sinai Liberation Day", + "2025-05-01": "Labor Day", + "2025-06-05": "Arafat Day* (*estimated)", + "2025-06-06": "Eid al-Adha* (*estimated)", + "2025-06-07": "Eid al-Adha Holiday* (*estimated)", + "2025-06-08": "Eid al-Adha Holiday* (*estimated)", + "2025-06-26": "Islamic New Year* (*estimated)", + "2025-06-30": "June 30 Revolution Day", + "2025-07-23": "July 23 Revolution Day", + "2025-09-04": "Prophet's Birthday* (*estimated)", + "2025-10-06": "Armed Forces Day", + "2026-01-01": "New Year's Day", + "2026-01-07": "Coptic Christmas", + "2026-01-25": "January 25th Revolution Day", + "2026-03-20": "Eid al-Fitr* (*estimated)", + "2026-03-21": "Eid al-Fitr Holiday* (*estimated)", + "2026-03-22": "Eid al-Fitr Holiday* (*estimated)", + "2026-04-12": "Coptic Easter - Orthodox Easter", + "2026-04-13": "Sham El Nessim", + "2026-04-25": "Sinai Liberation Day", + "2026-05-01": "Labor Day", + "2026-05-26": "Arafat Day* (*estimated)", + "2026-05-27": "Eid al-Adha* (*estimated)", + "2026-05-28": "Eid al-Adha Holiday* (*estimated)", + "2026-05-29": "Eid al-Adha Holiday* (*estimated)", + "2026-06-16": "Islamic New Year* (*estimated)", + "2026-06-30": "June 30 Revolution Day", + "2026-07-23": "July 23 Revolution Day", + "2026-08-25": "Prophet's Birthday* (*estimated)", + "2026-10-06": "Armed Forces Day", + "2027-01-01": "New Year's Day", + "2027-01-07": "Coptic Christmas", + "2027-01-25": "January 25th Revolution Day", + "2027-03-09": "Eid al-Fitr* (*estimated)", + "2027-03-10": "Eid al-Fitr Holiday* (*estimated)", + "2027-03-11": "Eid al-Fitr Holiday* (*estimated)", + "2027-04-25": "Sinai Liberation Day", + "2027-05-01": "Labor Day", + "2027-05-02": "Coptic Easter - Orthodox Easter", + "2027-05-03": "Sham El Nessim", + "2027-05-15": "Arafat Day* (*estimated)", + "2027-05-16": "Eid al-Adha* (*estimated)", + "2027-05-17": "Eid al-Adha Holiday* (*estimated)", + "2027-05-18": "Eid al-Adha Holiday* (*estimated)", + "2027-06-06": "Islamic New Year* (*estimated)", + "2027-06-30": "June 30 Revolution Day", + "2027-07-23": "July 23 Revolution Day", + "2027-08-14": "Prophet's Birthday* (*estimated)", + "2027-10-06": "Armed Forces Day", + "2028-01-01": "New Year's Day", + "2028-01-07": "Coptic Christmas", + "2028-01-25": "January 25th Revolution Day", + "2028-02-26": "Eid al-Fitr* (*estimated)", + "2028-02-27": "Eid al-Fitr Holiday* (*estimated)", + "2028-02-28": "Eid al-Fitr Holiday* (*estimated)", + "2028-04-16": "Coptic Easter - Orthodox Easter", + "2028-04-17": "Sham El Nessim", + "2028-04-25": "Sinai Liberation Day", + "2028-05-01": "Labor Day", + "2028-05-04": "Arafat Day* (*estimated)", + "2028-05-05": "Eid al-Adha* (*estimated)", + "2028-05-06": "Eid al-Adha Holiday* (*estimated)", + "2028-05-07": "Eid al-Adha Holiday* (*estimated)", + "2028-05-25": "Islamic New Year* (*estimated)", + "2028-06-30": "June 30 Revolution Day", + "2028-07-23": "July 23 Revolution Day", + "2028-08-03": "Prophet's Birthday* (*estimated)", + "2028-10-06": "Armed Forces Day", + "2029-01-01": "New Year's Day", + "2029-01-07": "Coptic Christmas", + "2029-01-25": "January 25th Revolution Day", + "2029-02-14": "Eid al-Fitr* (*estimated)", + "2029-02-15": "Eid al-Fitr Holiday* (*estimated)", + "2029-02-16": "Eid al-Fitr Holiday* (*estimated)", + "2029-04-08": "Coptic Easter - Orthodox Easter", + "2029-04-09": "Sham El Nessim", + "2029-04-23": "Arafat Day* (*estimated)", + "2029-04-24": "Eid al-Adha* (*estimated)", + "2029-04-25": "Eid al-Adha Holiday* (*estimated); Sinai Liberation Day", + "2029-04-26": "Eid al-Adha Holiday* (*estimated)", + "2029-05-01": "Labor Day", + "2029-05-14": "Islamic New Year* (*estimated)", + "2029-06-30": "June 30 Revolution Day", + "2029-07-23": "July 23 Revolution Day", + "2029-07-24": "Prophet's Birthday* (*estimated)", + "2029-10-06": "Armed Forces Day", + "2030-01-01": "New Year's Day", + "2030-01-07": "Coptic Christmas", + "2030-01-25": "January 25th Revolution Day", + "2030-02-04": "Eid al-Fitr* (*estimated)", + "2030-02-05": "Eid al-Fitr Holiday* (*estimated)", + "2030-02-06": "Eid al-Fitr Holiday* (*estimated)", + "2030-04-12": "Arafat Day* (*estimated)", + "2030-04-13": "Eid al-Adha* (*estimated)", + "2030-04-14": "Eid al-Adha Holiday* (*estimated)", + "2030-04-15": "Eid al-Adha Holiday* (*estimated)", + "2030-04-25": "Sinai Liberation Day", + "2030-04-28": "Coptic Easter - Orthodox Easter", + "2030-04-29": "Sham El Nessim", + "2030-05-01": "Labor Day", + "2030-05-03": "Islamic New Year* (*estimated)", + "2030-06-30": "June 30 Revolution Day", + "2030-07-13": "Prophet's Birthday* (*estimated)", + "2030-07-23": "July 23 Revolution Day", + "2030-10-06": "Armed Forces Day", + "2031-01-01": "New Year's Day", + "2031-01-07": "Coptic Christmas", + "2031-01-24": "Eid al-Fitr* (*estimated)", + "2031-01-25": "Eid al-Fitr Holiday* (*estimated); January 25th Revolution Day", + "2031-01-26": "Eid al-Fitr Holiday* (*estimated)", + "2031-04-01": "Arafat Day* (*estimated)", + "2031-04-02": "Eid al-Adha* (*estimated)", + "2031-04-03": "Eid al-Adha Holiday* (*estimated)", + "2031-04-04": "Eid al-Adha Holiday* (*estimated)", + "2031-04-13": "Coptic Easter - Orthodox Easter", + "2031-04-14": "Sham El Nessim", + "2031-04-23": "Islamic New Year* (*estimated)", + "2031-04-25": "Sinai Liberation Day", + "2031-05-01": "Labor Day", + "2031-06-30": "June 30 Revolution Day", + "2031-07-02": "Prophet's Birthday* (*estimated)", + "2031-07-23": "July 23 Revolution Day", + "2031-10-06": "Armed Forces Day", + "2032-01-01": "New Year's Day", + "2032-01-07": "Coptic Christmas", + "2032-01-14": "Eid al-Fitr* (*estimated)", + "2032-01-15": "Eid al-Fitr Holiday* (*estimated)", + "2032-01-16": "Eid al-Fitr Holiday* (*estimated)", + "2032-01-25": "January 25th Revolution Day", + "2032-03-21": "Arafat Day* (*estimated)", + "2032-03-22": "Eid al-Adha* (*estimated)", + "2032-03-23": "Eid al-Adha Holiday* (*estimated)", + "2032-03-24": "Eid al-Adha Holiday* (*estimated)", + "2032-04-11": "Islamic New Year* (*estimated)", + "2032-04-25": "Sinai Liberation Day", + "2032-05-01": "Labor Day", + "2032-05-02": "Coptic Easter - Orthodox Easter", + "2032-05-03": "Sham El Nessim", + "2032-06-20": "Prophet's Birthday* (*estimated)", + "2032-06-30": "June 30 Revolution Day", + "2032-07-23": "July 23 Revolution Day", + "2032-10-06": "Armed Forces Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "Eid al-Fitr* (*estimated)", + "2033-01-03": "Eid al-Fitr Holiday* (*estimated)", + "2033-01-04": "Eid al-Fitr Holiday* (*estimated)", + "2033-01-07": "Coptic Christmas", + "2033-01-25": "January 25th Revolution Day", + "2033-03-10": "Arafat Day* (*estimated)", + "2033-03-11": "Eid al-Adha* (*estimated)", + "2033-03-12": "Eid al-Adha Holiday* (*estimated)", + "2033-03-13": "Eid al-Adha Holiday* (*estimated)", + "2033-04-01": "Islamic New Year* (*estimated)", + "2033-04-24": "Coptic Easter - Orthodox Easter", + "2033-04-25": "Sham El Nessim; Sinai Liberation Day", + "2033-05-01": "Labor Day", + "2033-06-09": "Prophet's Birthday* (*estimated)", + "2033-06-30": "June 30 Revolution Day", + "2033-07-23": "July 23 Revolution Day", + "2033-10-06": "Armed Forces Day", + "2033-12-23": "Eid al-Fitr* (*estimated)", + "2033-12-24": "Eid al-Fitr Holiday* (*estimated)", + "2033-12-25": "Eid al-Fitr Holiday* (*estimated)", + "2034-01-01": "New Year's Day", + "2034-01-07": "Coptic Christmas", + "2034-01-25": "January 25th Revolution Day", + "2034-02-28": "Arafat Day* (*estimated)", + "2034-03-01": "Eid al-Adha* (*estimated)", + "2034-03-02": "Eid al-Adha Holiday* (*estimated)", + "2034-03-03": "Eid al-Adha Holiday* (*estimated)", + "2034-03-21": "Islamic New Year* (*estimated)", + "2034-04-09": "Coptic Easter - Orthodox Easter", + "2034-04-10": "Sham El Nessim", + "2034-04-25": "Sinai Liberation Day", + "2034-05-01": "Labor Day", + "2034-05-30": "Prophet's Birthday* (*estimated)", + "2034-06-30": "June 30 Revolution Day", + "2034-07-23": "July 23 Revolution Day", + "2034-10-06": "Armed Forces Day", + "2034-12-12": "Eid al-Fitr* (*estimated)", + "2034-12-13": "Eid al-Fitr Holiday* (*estimated)", + "2034-12-14": "Eid al-Fitr Holiday* (*estimated)", + "2035-01-01": "New Year's Day", + "2035-01-07": "Coptic Christmas", + "2035-01-25": "January 25th Revolution Day", + "2035-02-17": "Arafat Day* (*estimated)", + "2035-02-18": "Eid al-Adha* (*estimated)", + "2035-02-19": "Eid al-Adha Holiday* (*estimated)", + "2035-02-20": "Eid al-Adha Holiday* (*estimated)", + "2035-03-11": "Islamic New Year* (*estimated)", + "2035-04-25": "Sinai Liberation Day", + "2035-04-29": "Coptic Easter - Orthodox Easter", + "2035-04-30": "Sham El Nessim", + "2035-05-01": "Labor Day", + "2035-05-20": "Prophet's Birthday* (*estimated)", + "2035-06-30": "June 30 Revolution Day", + "2035-07-23": "July 23 Revolution Day", + "2035-10-06": "Armed Forces Day", + "2035-12-01": "Eid al-Fitr* (*estimated)", + "2035-12-02": "Eid al-Fitr Holiday* (*estimated)", + "2035-12-03": "Eid al-Fitr Holiday* (*estimated)", + "2036-01-01": "New Year's Day", + "2036-01-07": "Coptic Christmas", + "2036-01-25": "January 25th Revolution Day", + "2036-02-06": "Arafat Day* (*estimated)", + "2036-02-07": "Eid al-Adha* (*estimated)", + "2036-02-08": "Eid al-Adha Holiday* (*estimated)", + "2036-02-09": "Eid al-Adha Holiday* (*estimated)", + "2036-02-28": "Islamic New Year* (*estimated)", + "2036-04-20": "Coptic Easter - Orthodox Easter", + "2036-04-21": "Sham El Nessim", + "2036-04-25": "Sinai Liberation Day", + "2036-05-01": "Labor Day", + "2036-05-08": "Prophet's Birthday* (*estimated)", + "2036-06-30": "June 30 Revolution Day", + "2036-07-23": "July 23 Revolution Day", + "2036-10-06": "Armed Forces Day", + "2036-11-19": "Eid al-Fitr* (*estimated)", + "2036-11-20": "Eid al-Fitr Holiday* (*estimated)", + "2036-11-21": "Eid al-Fitr Holiday* (*estimated)", + "2037-01-01": "New Year's Day", + "2037-01-07": "Coptic Christmas", + "2037-01-25": "Arafat Day* (*estimated); January 25th Revolution Day", + "2037-01-26": "Eid al-Adha* (*estimated)", + "2037-01-27": "Eid al-Adha Holiday* (*estimated)", + "2037-01-28": "Eid al-Adha Holiday* (*estimated)", + "2037-02-16": "Islamic New Year* (*estimated)", + "2037-04-05": "Coptic Easter - Orthodox Easter", + "2037-04-06": "Sham El Nessim", + "2037-04-25": "Sinai Liberation Day", + "2037-04-28": "Prophet's Birthday* (*estimated)", + "2037-05-01": "Labor Day", + "2037-06-30": "June 30 Revolution Day", + "2037-07-23": "July 23 Revolution Day", + "2037-10-06": "Armed Forces Day", + "2037-11-08": "Eid al-Fitr* (*estimated)", + "2037-11-09": "Eid al-Fitr Holiday* (*estimated)", + "2037-11-10": "Eid al-Fitr Holiday* (*estimated)", + "2038-01-01": "New Year's Day", + "2038-01-07": "Coptic Christmas", + "2038-01-15": "Arafat Day* (*estimated)", + "2038-01-16": "Eid al-Adha* (*estimated)", + "2038-01-17": "Eid al-Adha Holiday* (*estimated)", + "2038-01-18": "Eid al-Adha Holiday* (*estimated)", + "2038-01-25": "January 25th Revolution Day", + "2038-02-05": "Islamic New Year* (*estimated)", + "2038-04-17": "Prophet's Birthday* (*estimated)", + "2038-04-25": "Coptic Easter - Orthodox Easter; Sinai Liberation Day", + "2038-04-26": "Sham El Nessim", + "2038-05-01": "Labor Day", + "2038-06-30": "June 30 Revolution Day", + "2038-07-23": "July 23 Revolution Day", + "2038-10-06": "Armed Forces Day", + "2038-10-29": "Eid al-Fitr* (*estimated)", + "2038-10-30": "Eid al-Fitr Holiday* (*estimated)", + "2038-10-31": "Eid al-Fitr Holiday* (*estimated)", + "2039-01-01": "New Year's Day", + "2039-01-04": "Arafat Day* (*estimated)", + "2039-01-05": "Eid al-Adha* (*estimated)", + "2039-01-06": "Eid al-Adha Holiday* (*estimated)", + "2039-01-07": "Coptic Christmas; Eid al-Adha Holiday* (*estimated)", + "2039-01-25": "January 25th Revolution Day", + "2039-01-26": "Islamic New Year* (*estimated)", + "2039-04-06": "Prophet's Birthday* (*estimated)", + "2039-04-17": "Coptic Easter - Orthodox Easter", + "2039-04-18": "Sham El Nessim", + "2039-04-25": "Sinai Liberation Day", + "2039-05-01": "Labor Day", + "2039-06-30": "June 30 Revolution Day", + "2039-07-23": "July 23 Revolution Day", + "2039-10-06": "Armed Forces Day", + "2039-10-19": "Eid al-Fitr* (*estimated)", + "2039-10-20": "Eid al-Fitr Holiday* (*estimated)", + "2039-10-21": "Eid al-Fitr Holiday* (*estimated)", + "2039-12-25": "Arafat Day* (*estimated)", + "2039-12-26": "Eid al-Adha* (*estimated)", + "2039-12-27": "Eid al-Adha Holiday* (*estimated)", + "2039-12-28": "Eid al-Adha Holiday* (*estimated)", + "2040-01-01": "New Year's Day", + "2040-01-07": "Coptic Christmas", + "2040-01-15": "Islamic New Year* (*estimated)", + "2040-01-25": "January 25th Revolution Day", + "2040-03-25": "Prophet's Birthday* (*estimated)", + "2040-04-25": "Sinai Liberation Day", + "2040-05-01": "Labor Day", + "2040-05-06": "Coptic Easter - Orthodox Easter", + "2040-05-07": "Sham El Nessim", + "2040-06-30": "June 30 Revolution Day", + "2040-07-23": "July 23 Revolution Day", + "2040-10-06": "Armed Forces Day", + "2040-10-07": "Eid al-Fitr* (*estimated)", + "2040-10-08": "Eid al-Fitr Holiday* (*estimated)", + "2040-10-09": "Eid al-Fitr Holiday* (*estimated)", + "2040-12-13": "Arafat Day* (*estimated)", + "2040-12-14": "Eid al-Adha* (*estimated)", + "2040-12-15": "Eid al-Adha Holiday* (*estimated)", + "2040-12-16": "Eid al-Adha Holiday* (*estimated)", + "2041-01-01": "New Year's Day", + "2041-01-04": "Islamic New Year* (*estimated)", + "2041-01-07": "Coptic Christmas", + "2041-01-25": "January 25th Revolution Day", + "2041-03-15": "Prophet's Birthday* (*estimated)", + "2041-04-21": "Coptic Easter - Orthodox Easter", + "2041-04-22": "Sham El Nessim", + "2041-04-25": "Sinai Liberation Day", + "2041-05-01": "Labor Day", + "2041-06-30": "June 30 Revolution Day", + "2041-07-23": "July 23 Revolution Day", + "2041-09-26": "Eid al-Fitr* (*estimated)", + "2041-09-27": "Eid al-Fitr Holiday* (*estimated)", + "2041-09-28": "Eid al-Fitr Holiday* (*estimated)", + "2041-10-06": "Armed Forces Day", + "2041-12-03": "Arafat Day* (*estimated)", + "2041-12-04": "Eid al-Adha* (*estimated)", + "2041-12-05": "Eid al-Adha Holiday* (*estimated)", + "2041-12-06": "Eid al-Adha Holiday* (*estimated)", + "2041-12-24": "Islamic New Year* (*estimated)", + "2042-01-01": "New Year's Day", + "2042-01-07": "Coptic Christmas", + "2042-01-25": "January 25th Revolution Day", + "2042-03-04": "Prophet's Birthday* (*estimated)", + "2042-04-13": "Coptic Easter - Orthodox Easter", + "2042-04-14": "Sham El Nessim", + "2042-04-25": "Sinai Liberation Day", + "2042-05-01": "Labor Day", + "2042-06-30": "June 30 Revolution Day", + "2042-07-23": "July 23 Revolution Day", + "2042-09-15": "Eid al-Fitr* (*estimated)", + "2042-09-16": "Eid al-Fitr Holiday* (*estimated)", + "2042-09-17": "Eid al-Fitr Holiday* (*estimated)", + "2042-10-06": "Armed Forces Day", + "2042-11-22": "Arafat Day* (*estimated)", + "2042-11-23": "Eid al-Adha* (*estimated)", + "2042-11-24": "Eid al-Adha Holiday* (*estimated)", + "2042-11-25": "Eid al-Adha Holiday* (*estimated)", + "2042-12-14": "Islamic New Year* (*estimated)", + "2043-01-01": "New Year's Day", + "2043-01-07": "Coptic Christmas", + "2043-01-25": "January 25th Revolution Day", + "2043-02-22": "Prophet's Birthday* (*estimated)", + "2043-04-25": "Sinai Liberation Day", + "2043-05-01": "Labor Day", + "2043-05-03": "Coptic Easter - Orthodox Easter", + "2043-05-04": "Sham El Nessim", + "2043-06-30": "June 30 Revolution Day", + "2043-07-23": "July 23 Revolution Day", + "2043-09-04": "Eid al-Fitr* (*estimated)", + "2043-09-05": "Eid al-Fitr Holiday* (*estimated)", + "2043-09-06": "Eid al-Fitr Holiday* (*estimated)", + "2043-10-06": "Armed Forces Day", + "2043-11-11": "Arafat Day* (*estimated)", + "2043-11-12": "Eid al-Adha* (*estimated)", + "2043-11-13": "Eid al-Adha Holiday* (*estimated)", + "2043-11-14": "Eid al-Adha Holiday* (*estimated)", + "2043-12-03": "Islamic New Year* (*estimated)", + "2044-01-01": "New Year's Day", + "2044-01-07": "Coptic Christmas", + "2044-01-25": "January 25th Revolution Day", + "2044-02-11": "Prophet's Birthday* (*estimated)", + "2044-04-24": "Coptic Easter - Orthodox Easter", + "2044-04-25": "Sham El Nessim; Sinai Liberation Day", + "2044-05-01": "Labor Day", + "2044-06-30": "June 30 Revolution Day", + "2044-07-23": "July 23 Revolution Day", + "2044-08-24": "Eid al-Fitr* (*estimated)", + "2044-08-25": "Eid al-Fitr Holiday* (*estimated)", + "2044-08-26": "Eid al-Fitr Holiday* (*estimated)", + "2044-10-06": "Armed Forces Day", + "2044-10-30": "Arafat Day* (*estimated)", + "2044-10-31": "Eid al-Adha* (*estimated)", + "2044-11-01": "Eid al-Adha Holiday* (*estimated)", + "2044-11-02": "Eid al-Adha Holiday* (*estimated)", + "2044-11-21": "Islamic New Year* (*estimated)", + "2045-01-01": "New Year's Day", + "2045-01-07": "Coptic Christmas", + "2045-01-25": "January 25th Revolution Day", + "2045-01-30": "Prophet's Birthday* (*estimated)", + "2045-04-09": "Coptic Easter - Orthodox Easter", + "2045-04-10": "Sham El Nessim", + "2045-04-25": "Sinai Liberation Day", + "2045-05-01": "Labor Day", + "2045-06-30": "June 30 Revolution Day", + "2045-07-23": "July 23 Revolution Day", + "2045-08-14": "Eid al-Fitr* (*estimated)", + "2045-08-15": "Eid al-Fitr Holiday* (*estimated)", + "2045-08-16": "Eid al-Fitr Holiday* (*estimated)", + "2045-10-06": "Armed Forces Day", + "2045-10-20": "Arafat Day* (*estimated)", + "2045-10-21": "Eid al-Adha* (*estimated)", + "2045-10-22": "Eid al-Adha Holiday* (*estimated)", + "2045-10-23": "Eid al-Adha Holiday* (*estimated)", + "2045-11-10": "Islamic New Year* (*estimated)", + "2046-01-01": "New Year's Day", + "2046-01-07": "Coptic Christmas", + "2046-01-19": "Prophet's Birthday* (*estimated)", + "2046-01-25": "January 25th Revolution Day", + "2046-04-25": "Sinai Liberation Day", + "2046-04-29": "Coptic Easter - Orthodox Easter", + "2046-04-30": "Sham El Nessim", + "2046-05-01": "Labor Day", + "2046-06-30": "June 30 Revolution Day", + "2046-07-23": "July 23 Revolution Day", + "2046-08-03": "Eid al-Fitr* (*estimated)", + "2046-08-04": "Eid al-Fitr Holiday* (*estimated)", + "2046-08-05": "Eid al-Fitr Holiday* (*estimated)", + "2046-10-06": "Armed Forces Day", + "2046-10-09": "Arafat Day* (*estimated)", + "2046-10-10": "Eid al-Adha* (*estimated)", + "2046-10-11": "Eid al-Adha Holiday* (*estimated)", + "2046-10-12": "Eid al-Adha Holiday* (*estimated)", + "2046-10-31": "Islamic New Year* (*estimated)", + "2047-01-01": "New Year's Day", + "2047-01-07": "Coptic Christmas", + "2047-01-08": "Prophet's Birthday* (*estimated)", + "2047-01-25": "January 25th Revolution Day", + "2047-04-21": "Coptic Easter - Orthodox Easter", + "2047-04-22": "Sham El Nessim", + "2047-04-25": "Sinai Liberation Day", + "2047-05-01": "Labor Day", + "2047-06-30": "June 30 Revolution Day", + "2047-07-23": "July 23 Revolution Day", + "2047-07-24": "Eid al-Fitr* (*estimated)", + "2047-07-25": "Eid al-Fitr Holiday* (*estimated)", + "2047-07-26": "Eid al-Fitr Holiday* (*estimated)", + "2047-09-29": "Arafat Day* (*estimated)", + "2047-09-30": "Eid al-Adha* (*estimated)", + "2047-10-01": "Eid al-Adha Holiday* (*estimated)", + "2047-10-02": "Eid al-Adha Holiday* (*estimated)", + "2047-10-06": "Armed Forces Day", + "2047-10-20": "Islamic New Year* (*estimated)", + "2047-12-29": "Prophet's Birthday* (*estimated)", + "2048-01-01": "New Year's Day", + "2048-01-07": "Coptic Christmas", + "2048-01-25": "January 25th Revolution Day", + "2048-04-05": "Coptic Easter - Orthodox Easter", + "2048-04-06": "Sham El Nessim", + "2048-04-25": "Sinai Liberation Day", + "2048-05-01": "Labor Day", + "2048-06-30": "June 30 Revolution Day", + "2048-07-12": "Eid al-Fitr* (*estimated)", + "2048-07-13": "Eid al-Fitr Holiday* (*estimated)", + "2048-07-14": "Eid al-Fitr Holiday* (*estimated)", + "2048-07-23": "July 23 Revolution Day", + "2048-09-18": "Arafat Day* (*estimated)", + "2048-09-19": "Eid al-Adha* (*estimated)", + "2048-09-20": "Eid al-Adha Holiday* (*estimated)", + "2048-09-21": "Eid al-Adha Holiday* (*estimated)", + "2048-10-06": "Armed Forces Day", + "2048-10-09": "Islamic New Year* (*estimated)", + "2048-12-18": "Prophet's Birthday* (*estimated)", + "2049-01-01": "New Year's Day", + "2049-01-07": "Coptic Christmas", + "2049-01-25": "January 25th Revolution Day", + "2049-04-25": "Coptic Easter - Orthodox Easter; Sinai Liberation Day", + "2049-04-26": "Sham El Nessim", + "2049-05-01": "Labor Day", + "2049-06-30": "June 30 Revolution Day", + "2049-07-01": "Eid al-Fitr* (*estimated)", + "2049-07-02": "Eid al-Fitr Holiday* (*estimated)", + "2049-07-03": "Eid al-Fitr Holiday* (*estimated)", + "2049-07-23": "July 23 Revolution Day", + "2049-09-07": "Arafat Day* (*estimated)", + "2049-09-08": "Eid al-Adha* (*estimated)", + "2049-09-09": "Eid al-Adha Holiday* (*estimated)", + "2049-09-10": "Eid al-Adha Holiday* (*estimated)", + "2049-09-28": "Islamic New Year* (*estimated)", + "2049-10-06": "Armed Forces Day", + "2049-12-07": "Prophet's Birthday* (*estimated)", + "2050-01-01": "New Year's Day", + "2050-01-07": "Coptic Christmas", + "2050-01-25": "January 25th Revolution Day", + "2050-04-17": "Coptic Easter - Orthodox Easter", + "2050-04-18": "Sham El Nessim", + "2050-04-25": "Sinai Liberation Day", + "2050-05-01": "Labor Day", + "2050-06-20": "Eid al-Fitr* (*estimated)", + "2050-06-21": "Eid al-Fitr Holiday* (*estimated)", + "2050-06-22": "Eid al-Fitr Holiday* (*estimated)", + "2050-06-30": "June 30 Revolution Day", + "2050-07-23": "July 23 Revolution Day", + "2050-08-27": "Arafat Day* (*estimated)", + "2050-08-28": "Eid al-Adha* (*estimated)", + "2050-08-29": "Eid al-Adha Holiday* (*estimated)", + "2050-08-30": "Eid al-Adha Holiday* (*estimated)", + "2050-09-17": "Islamic New Year* (*estimated)", + "2050-10-06": "Armed Forces Day", + "2050-11-26": "Prophet's Birthday* (*estimated)" +} diff --git a/snapshots/countries/ES.json b/snapshots/countries/ES.json new file mode 100644 index 000000000..cb13671eb --- /dev/null +++ b/snapshots/countries/ES.json @@ -0,0 +1,3219 @@ +{ + "1950-01-01": "A\u00f1o nuevo", + "1950-01-06": "Epifan\u00eda del Se\u00f1or", + "1950-02-28": "D\u00eda de Andalucia", + "1950-03-01": "D\u00eda de las Islas Baleares", + "1950-03-19": "San Jos\u00e9", + "1950-03-20": "San Jos\u00e9 (Trasladado)", + "1950-04-06": "Jueves Santo", + "1950-04-07": "Viernes Santo", + "1950-04-10": "Lunes de Pascua", + "1950-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1950-05-01": "D\u00eda del Trabajador", + "1950-05-02": "D\u00eda de Comunidad de Madrid", + "1950-05-30": "D\u00eda de Canarias", + "1950-05-31": "D\u00eda de Castilla La Mancha", + "1950-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1950-06-24": "San Juan", + "1950-07-25": "D\u00eda Nacional de Galicia", + "1950-07-28": "D\u00eda de las Instituciones de Cantabria", + "1950-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1950-08-15": "Asunci\u00f3n de la Virgen", + "1950-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1950-09-06": "D\u00eda de Elcano", + "1950-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1950-09-11": "D\u00eda Nacional de Catalunya", + "1950-09-15": "D\u00eda de la Bien Aparecida", + "1950-09-17": "D\u00eda de Melilla", + "1950-10-09": "D\u00eda de la Comunidad Valenciana", + "1950-10-12": "D\u00eda de la Hispanidad", + "1950-11-01": "Todos los Santos", + "1950-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1950-12-08": "La Inmaculada Concepci\u00f3n", + "1950-12-25": "Navidad", + "1950-12-26": "San Esteban", + "1951-01-01": "A\u00f1o nuevo", + "1951-01-06": "Epifan\u00eda del Se\u00f1or", + "1951-02-28": "D\u00eda de Andalucia", + "1951-03-01": "D\u00eda de las Islas Baleares", + "1951-03-19": "San Jos\u00e9", + "1951-03-22": "Jueves Santo", + "1951-03-23": "Viernes Santo", + "1951-03-26": "Lunes de Pascua", + "1951-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1951-05-01": "D\u00eda del Trabajador", + "1951-05-02": "D\u00eda de Comunidad de Madrid", + "1951-05-30": "D\u00eda de Canarias", + "1951-05-31": "D\u00eda de Castilla La Mancha", + "1951-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1951-06-24": "San Juan", + "1951-07-25": "D\u00eda Nacional de Galicia", + "1951-07-28": "D\u00eda de las Instituciones de Cantabria", + "1951-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1951-08-15": "Asunci\u00f3n de la Virgen", + "1951-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1951-09-06": "D\u00eda de Elcano", + "1951-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1951-09-11": "D\u00eda Nacional de Catalunya", + "1951-09-15": "D\u00eda de la Bien Aparecida", + "1951-09-17": "D\u00eda de Melilla", + "1951-10-09": "D\u00eda de la Comunidad Valenciana", + "1951-10-12": "D\u00eda de la Hispanidad", + "1951-11-01": "Todos los Santos", + "1951-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1951-12-08": "La Inmaculada Concepci\u00f3n", + "1951-12-25": "Navidad", + "1951-12-26": "San Esteban", + "1952-01-01": "A\u00f1o nuevo", + "1952-01-06": "Epifan\u00eda del Se\u00f1or", + "1952-02-28": "D\u00eda de Andalucia", + "1952-03-01": "D\u00eda de las Islas Baleares", + "1952-03-19": "San Jos\u00e9", + "1952-04-10": "Jueves Santo", + "1952-04-11": "Viernes Santo", + "1952-04-14": "Lunes de Pascua", + "1952-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1952-05-01": "D\u00eda del Trabajador", + "1952-05-02": "D\u00eda de Comunidad de Madrid", + "1952-05-30": "D\u00eda de Canarias", + "1952-05-31": "D\u00eda de Castilla La Mancha", + "1952-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1952-06-24": "San Juan", + "1952-07-25": "D\u00eda Nacional de Galicia", + "1952-07-28": "D\u00eda de las Instituciones de Cantabria", + "1952-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1952-08-15": "Asunci\u00f3n de la Virgen", + "1952-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1952-09-06": "D\u00eda de Elcano", + "1952-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1952-09-11": "D\u00eda Nacional de Catalunya", + "1952-09-15": "D\u00eda de la Bien Aparecida", + "1952-09-17": "D\u00eda de Melilla", + "1952-10-09": "D\u00eda de la Comunidad Valenciana", + "1952-10-12": "D\u00eda de la Hispanidad", + "1952-11-01": "Todos los Santos", + "1952-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1952-12-08": "La Inmaculada Concepci\u00f3n", + "1952-12-25": "Navidad", + "1952-12-26": "San Esteban", + "1953-01-01": "A\u00f1o nuevo", + "1953-01-06": "Epifan\u00eda del Se\u00f1or", + "1953-02-28": "D\u00eda de Andalucia", + "1953-03-01": "D\u00eda de las Islas Baleares", + "1953-03-19": "San Jos\u00e9", + "1953-04-02": "Jueves Santo", + "1953-04-03": "Viernes Santo", + "1953-04-06": "Lunes de Pascua", + "1953-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1953-05-01": "D\u00eda del Trabajador", + "1953-05-02": "D\u00eda de Comunidad de Madrid", + "1953-05-30": "D\u00eda de Canarias", + "1953-05-31": "D\u00eda de Castilla La Mancha", + "1953-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1953-06-24": "San Juan", + "1953-07-25": "D\u00eda Nacional de Galicia", + "1953-07-28": "D\u00eda de las Instituciones de Cantabria", + "1953-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1953-08-15": "Asunci\u00f3n de la Virgen", + "1953-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1953-09-06": "D\u00eda de Elcano", + "1953-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1953-09-11": "D\u00eda Nacional de Catalunya", + "1953-09-15": "D\u00eda de la Bien Aparecida", + "1953-09-17": "D\u00eda de Melilla", + "1953-10-09": "D\u00eda de la Comunidad Valenciana", + "1953-10-12": "D\u00eda de la Hispanidad", + "1953-11-01": "Todos los Santos", + "1953-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1953-12-08": "La Inmaculada Concepci\u00f3n", + "1953-12-25": "Navidad", + "1953-12-26": "San Esteban", + "1954-01-01": "A\u00f1o nuevo", + "1954-01-06": "Epifan\u00eda del Se\u00f1or", + "1954-02-28": "D\u00eda de Andalucia", + "1954-03-01": "D\u00eda de las Islas Baleares", + "1954-03-19": "San Jos\u00e9", + "1954-04-15": "Jueves Santo", + "1954-04-16": "Viernes Santo", + "1954-04-19": "Lunes de Pascua", + "1954-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1954-05-01": "D\u00eda del Trabajador", + "1954-05-02": "D\u00eda de Comunidad de Madrid", + "1954-05-30": "D\u00eda de Canarias", + "1954-05-31": "D\u00eda de Castilla La Mancha", + "1954-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1954-06-24": "San Juan", + "1954-07-25": "D\u00eda Nacional de Galicia", + "1954-07-28": "D\u00eda de las Instituciones de Cantabria", + "1954-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1954-08-15": "Asunci\u00f3n de la Virgen", + "1954-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1954-09-06": "D\u00eda de Elcano", + "1954-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1954-09-11": "D\u00eda Nacional de Catalunya", + "1954-09-15": "D\u00eda de la Bien Aparecida", + "1954-09-17": "D\u00eda de Melilla", + "1954-10-09": "D\u00eda de la Comunidad Valenciana", + "1954-10-12": "D\u00eda de la Hispanidad", + "1954-11-01": "Todos los Santos", + "1954-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1954-12-08": "La Inmaculada Concepci\u00f3n", + "1954-12-25": "Navidad", + "1954-12-26": "San Esteban", + "1955-01-01": "A\u00f1o nuevo", + "1955-01-06": "Epifan\u00eda del Se\u00f1or", + "1955-02-28": "D\u00eda de Andalucia", + "1955-03-01": "D\u00eda de las Islas Baleares", + "1955-03-19": "San Jos\u00e9", + "1955-04-07": "Jueves Santo", + "1955-04-08": "Viernes Santo", + "1955-04-11": "Lunes de Pascua", + "1955-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1955-05-01": "D\u00eda del Trabajador", + "1955-05-02": "D\u00eda de Comunidad de Madrid", + "1955-05-30": "D\u00eda de Canarias", + "1955-05-31": "D\u00eda de Castilla La Mancha", + "1955-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1955-06-24": "San Juan", + "1955-07-25": "D\u00eda Nacional de Galicia", + "1955-07-28": "D\u00eda de las Instituciones de Cantabria", + "1955-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1955-08-15": "Asunci\u00f3n de la Virgen", + "1955-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1955-09-06": "D\u00eda de Elcano", + "1955-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1955-09-11": "D\u00eda Nacional de Catalunya", + "1955-09-15": "D\u00eda de la Bien Aparecida", + "1955-09-17": "D\u00eda de Melilla", + "1955-10-09": "D\u00eda de la Comunidad Valenciana", + "1955-10-12": "D\u00eda de la Hispanidad", + "1955-11-01": "Todos los Santos", + "1955-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1955-12-08": "La Inmaculada Concepci\u00f3n", + "1955-12-25": "Navidad", + "1955-12-26": "San Esteban", + "1956-01-01": "A\u00f1o nuevo", + "1956-01-06": "Epifan\u00eda del Se\u00f1or", + "1956-02-28": "D\u00eda de Andalucia", + "1956-03-01": "D\u00eda de las Islas Baleares", + "1956-03-19": "San Jos\u00e9", + "1956-03-29": "Jueves Santo", + "1956-03-30": "Viernes Santo", + "1956-04-02": "Lunes de Pascua", + "1956-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1956-05-01": "D\u00eda del Trabajador", + "1956-05-02": "D\u00eda de Comunidad de Madrid", + "1956-05-30": "D\u00eda de Canarias", + "1956-05-31": "D\u00eda de Castilla La Mancha", + "1956-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1956-06-24": "San Juan", + "1956-07-25": "D\u00eda Nacional de Galicia", + "1956-07-28": "D\u00eda de las Instituciones de Cantabria", + "1956-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1956-08-15": "Asunci\u00f3n de la Virgen", + "1956-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1956-09-06": "D\u00eda de Elcano", + "1956-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1956-09-11": "D\u00eda Nacional de Catalunya", + "1956-09-15": "D\u00eda de la Bien Aparecida", + "1956-09-17": "D\u00eda de Melilla", + "1956-10-09": "D\u00eda de la Comunidad Valenciana", + "1956-10-12": "D\u00eda de la Hispanidad", + "1956-11-01": "Todos los Santos", + "1956-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1956-12-08": "La Inmaculada Concepci\u00f3n", + "1956-12-25": "Navidad", + "1956-12-26": "San Esteban", + "1957-01-01": "A\u00f1o nuevo", + "1957-01-06": "Epifan\u00eda del Se\u00f1or", + "1957-02-28": "D\u00eda de Andalucia", + "1957-03-01": "D\u00eda de las Islas Baleares", + "1957-03-19": "San Jos\u00e9", + "1957-04-18": "Jueves Santo", + "1957-04-19": "Viernes Santo", + "1957-04-22": "Lunes de Pascua", + "1957-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1957-05-01": "D\u00eda del Trabajador", + "1957-05-02": "D\u00eda de Comunidad de Madrid", + "1957-05-30": "D\u00eda de Canarias", + "1957-05-31": "D\u00eda de Castilla La Mancha", + "1957-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1957-06-24": "San Juan", + "1957-07-25": "D\u00eda Nacional de Galicia", + "1957-07-28": "D\u00eda de las Instituciones de Cantabria", + "1957-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1957-08-15": "Asunci\u00f3n de la Virgen", + "1957-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1957-09-06": "D\u00eda de Elcano", + "1957-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1957-09-11": "D\u00eda Nacional de Catalunya", + "1957-09-15": "D\u00eda de la Bien Aparecida", + "1957-09-17": "D\u00eda de Melilla", + "1957-10-09": "D\u00eda de la Comunidad Valenciana", + "1957-10-12": "D\u00eda de la Hispanidad", + "1957-11-01": "Todos los Santos", + "1957-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1957-12-08": "La Inmaculada Concepci\u00f3n", + "1957-12-25": "Navidad", + "1957-12-26": "San Esteban", + "1958-01-01": "A\u00f1o nuevo", + "1958-01-06": "Epifan\u00eda del Se\u00f1or", + "1958-02-28": "D\u00eda de Andalucia", + "1958-03-01": "D\u00eda de las Islas Baleares", + "1958-03-19": "San Jos\u00e9", + "1958-04-03": "Jueves Santo", + "1958-04-04": "Viernes Santo", + "1958-04-07": "Lunes de Pascua", + "1958-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1958-05-01": "D\u00eda del Trabajador", + "1958-05-02": "D\u00eda de Comunidad de Madrid", + "1958-05-30": "D\u00eda de Canarias", + "1958-05-31": "D\u00eda de Castilla La Mancha", + "1958-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1958-06-24": "San Juan", + "1958-07-25": "D\u00eda Nacional de Galicia", + "1958-07-28": "D\u00eda de las Instituciones de Cantabria", + "1958-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1958-08-15": "Asunci\u00f3n de la Virgen", + "1958-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1958-09-06": "D\u00eda de Elcano", + "1958-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1958-09-11": "D\u00eda Nacional de Catalunya", + "1958-09-15": "D\u00eda de la Bien Aparecida", + "1958-09-17": "D\u00eda de Melilla", + "1958-10-09": "D\u00eda de la Comunidad Valenciana", + "1958-10-12": "D\u00eda de la Hispanidad", + "1958-11-01": "Todos los Santos", + "1958-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1958-12-08": "La Inmaculada Concepci\u00f3n", + "1958-12-25": "Navidad", + "1958-12-26": "San Esteban", + "1959-01-01": "A\u00f1o nuevo", + "1959-01-06": "Epifan\u00eda del Se\u00f1or", + "1959-02-28": "D\u00eda de Andalucia", + "1959-03-01": "D\u00eda de las Islas Baleares", + "1959-03-19": "San Jos\u00e9", + "1959-03-26": "Jueves Santo", + "1959-03-27": "Viernes Santo", + "1959-03-30": "Lunes de Pascua", + "1959-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1959-05-01": "D\u00eda del Trabajador", + "1959-05-02": "D\u00eda de Comunidad de Madrid", + "1959-05-30": "D\u00eda de Canarias", + "1959-05-31": "D\u00eda de Castilla La Mancha", + "1959-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1959-06-24": "San Juan", + "1959-07-25": "D\u00eda Nacional de Galicia", + "1959-07-28": "D\u00eda de las Instituciones de Cantabria", + "1959-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1959-08-15": "Asunci\u00f3n de la Virgen", + "1959-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1959-09-06": "D\u00eda de Elcano", + "1959-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1959-09-11": "D\u00eda Nacional de Catalunya", + "1959-09-15": "D\u00eda de la Bien Aparecida", + "1959-09-17": "D\u00eda de Melilla", + "1959-10-09": "D\u00eda de la Comunidad Valenciana", + "1959-10-12": "D\u00eda de la Hispanidad", + "1959-11-01": "Todos los Santos", + "1959-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1959-12-08": "La Inmaculada Concepci\u00f3n", + "1959-12-25": "Navidad", + "1959-12-26": "San Esteban", + "1960-01-01": "A\u00f1o nuevo", + "1960-01-06": "Epifan\u00eda del Se\u00f1or", + "1960-02-28": "D\u00eda de Andalucia", + "1960-03-01": "D\u00eda de las Islas Baleares", + "1960-03-19": "San Jos\u00e9", + "1960-04-14": "Jueves Santo", + "1960-04-15": "Viernes Santo", + "1960-04-18": "Lunes de Pascua", + "1960-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1960-05-01": "D\u00eda del Trabajador", + "1960-05-02": "D\u00eda de Comunidad de Madrid", + "1960-05-30": "D\u00eda de Canarias", + "1960-05-31": "D\u00eda de Castilla La Mancha", + "1960-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1960-06-24": "San Juan", + "1960-07-25": "D\u00eda Nacional de Galicia", + "1960-07-28": "D\u00eda de las Instituciones de Cantabria", + "1960-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1960-08-15": "Asunci\u00f3n de la Virgen", + "1960-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1960-09-06": "D\u00eda de Elcano", + "1960-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1960-09-11": "D\u00eda Nacional de Catalunya", + "1960-09-15": "D\u00eda de la Bien Aparecida", + "1960-09-17": "D\u00eda de Melilla", + "1960-10-09": "D\u00eda de la Comunidad Valenciana", + "1960-10-12": "D\u00eda de la Hispanidad", + "1960-11-01": "Todos los Santos", + "1960-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1960-12-08": "La Inmaculada Concepci\u00f3n", + "1960-12-25": "Navidad", + "1960-12-26": "San Esteban", + "1961-01-01": "A\u00f1o nuevo", + "1961-01-06": "Epifan\u00eda del Se\u00f1or", + "1961-02-28": "D\u00eda de Andalucia", + "1961-03-01": "D\u00eda de las Islas Baleares", + "1961-03-19": "San Jos\u00e9", + "1961-03-20": "San Jos\u00e9 (Trasladado)", + "1961-03-30": "Jueves Santo", + "1961-03-31": "Viernes Santo", + "1961-04-03": "Lunes de Pascua", + "1961-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1961-05-01": "D\u00eda del Trabajador", + "1961-05-02": "D\u00eda de Comunidad de Madrid", + "1961-05-30": "D\u00eda de Canarias", + "1961-05-31": "D\u00eda de Castilla La Mancha", + "1961-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1961-06-24": "San Juan", + "1961-07-25": "D\u00eda Nacional de Galicia", + "1961-07-28": "D\u00eda de las Instituciones de Cantabria", + "1961-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1961-08-15": "Asunci\u00f3n de la Virgen", + "1961-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1961-09-06": "D\u00eda de Elcano", + "1961-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1961-09-11": "D\u00eda Nacional de Catalunya", + "1961-09-15": "D\u00eda de la Bien Aparecida", + "1961-09-17": "D\u00eda de Melilla", + "1961-10-09": "D\u00eda de la Comunidad Valenciana", + "1961-10-12": "D\u00eda de la Hispanidad", + "1961-11-01": "Todos los Santos", + "1961-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1961-12-08": "La Inmaculada Concepci\u00f3n", + "1961-12-25": "Navidad", + "1961-12-26": "San Esteban", + "1962-01-01": "A\u00f1o nuevo", + "1962-01-06": "Epifan\u00eda del Se\u00f1or", + "1962-02-28": "D\u00eda de Andalucia", + "1962-03-01": "D\u00eda de las Islas Baleares", + "1962-03-19": "San Jos\u00e9", + "1962-04-19": "Jueves Santo", + "1962-04-20": "Viernes Santo", + "1962-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge; Lunes de Pascua", + "1962-05-01": "D\u00eda del Trabajador", + "1962-05-02": "D\u00eda de Comunidad de Madrid", + "1962-05-30": "D\u00eda de Canarias", + "1962-05-31": "D\u00eda de Castilla La Mancha", + "1962-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1962-06-24": "San Juan", + "1962-07-25": "D\u00eda Nacional de Galicia", + "1962-07-28": "D\u00eda de las Instituciones de Cantabria", + "1962-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1962-08-15": "Asunci\u00f3n de la Virgen", + "1962-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1962-09-06": "D\u00eda de Elcano", + "1962-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1962-09-11": "D\u00eda Nacional de Catalunya", + "1962-09-15": "D\u00eda de la Bien Aparecida", + "1962-09-17": "D\u00eda de Melilla", + "1962-10-09": "D\u00eda de la Comunidad Valenciana", + "1962-10-12": "D\u00eda de la Hispanidad", + "1962-11-01": "Todos los Santos", + "1962-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1962-12-08": "La Inmaculada Concepci\u00f3n", + "1962-12-25": "Navidad", + "1962-12-26": "San Esteban", + "1963-01-01": "A\u00f1o nuevo", + "1963-01-06": "Epifan\u00eda del Se\u00f1or", + "1963-02-28": "D\u00eda de Andalucia", + "1963-03-01": "D\u00eda de las Islas Baleares", + "1963-03-19": "San Jos\u00e9", + "1963-04-11": "Jueves Santo", + "1963-04-12": "Viernes Santo", + "1963-04-15": "Lunes de Pascua", + "1963-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1963-05-01": "D\u00eda del Trabajador", + "1963-05-02": "D\u00eda de Comunidad de Madrid", + "1963-05-30": "D\u00eda de Canarias", + "1963-05-31": "D\u00eda de Castilla La Mancha", + "1963-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1963-06-24": "San Juan", + "1963-07-25": "D\u00eda Nacional de Galicia", + "1963-07-28": "D\u00eda de las Instituciones de Cantabria", + "1963-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1963-08-15": "Asunci\u00f3n de la Virgen", + "1963-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1963-09-06": "D\u00eda de Elcano", + "1963-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1963-09-11": "D\u00eda Nacional de Catalunya", + "1963-09-15": "D\u00eda de la Bien Aparecida", + "1963-09-17": "D\u00eda de Melilla", + "1963-10-09": "D\u00eda de la Comunidad Valenciana", + "1963-10-12": "D\u00eda de la Hispanidad", + "1963-11-01": "Todos los Santos", + "1963-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1963-12-08": "La Inmaculada Concepci\u00f3n", + "1963-12-25": "Navidad", + "1963-12-26": "San Esteban", + "1964-01-01": "A\u00f1o nuevo", + "1964-01-06": "Epifan\u00eda del Se\u00f1or", + "1964-02-28": "D\u00eda de Andalucia", + "1964-03-01": "D\u00eda de las Islas Baleares", + "1964-03-19": "San Jos\u00e9", + "1964-03-26": "Jueves Santo", + "1964-03-27": "Viernes Santo", + "1964-03-30": "Lunes de Pascua", + "1964-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1964-05-01": "D\u00eda del Trabajador", + "1964-05-02": "D\u00eda de Comunidad de Madrid", + "1964-05-30": "D\u00eda de Canarias", + "1964-05-31": "D\u00eda de Castilla La Mancha", + "1964-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1964-06-24": "San Juan", + "1964-07-25": "D\u00eda Nacional de Galicia", + "1964-07-28": "D\u00eda de las Instituciones de Cantabria", + "1964-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1964-08-15": "Asunci\u00f3n de la Virgen", + "1964-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1964-09-06": "D\u00eda de Elcano", + "1964-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1964-09-11": "D\u00eda Nacional de Catalunya", + "1964-09-15": "D\u00eda de la Bien Aparecida", + "1964-09-17": "D\u00eda de Melilla", + "1964-10-09": "D\u00eda de la Comunidad Valenciana", + "1964-10-12": "D\u00eda de la Hispanidad", + "1964-11-01": "Todos los Santos", + "1964-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1964-12-08": "La Inmaculada Concepci\u00f3n", + "1964-12-25": "Navidad", + "1964-12-26": "San Esteban", + "1965-01-01": "A\u00f1o nuevo", + "1965-01-06": "Epifan\u00eda del Se\u00f1or", + "1965-02-28": "D\u00eda de Andalucia", + "1965-03-01": "D\u00eda de las Islas Baleares", + "1965-03-19": "San Jos\u00e9", + "1965-04-15": "Jueves Santo", + "1965-04-16": "Viernes Santo", + "1965-04-19": "Lunes de Pascua", + "1965-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1965-05-01": "D\u00eda del Trabajador", + "1965-05-02": "D\u00eda de Comunidad de Madrid", + "1965-05-30": "D\u00eda de Canarias", + "1965-05-31": "D\u00eda de Castilla La Mancha", + "1965-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1965-06-24": "San Juan", + "1965-07-25": "D\u00eda Nacional de Galicia", + "1965-07-28": "D\u00eda de las Instituciones de Cantabria", + "1965-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1965-08-15": "Asunci\u00f3n de la Virgen", + "1965-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1965-09-06": "D\u00eda de Elcano", + "1965-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1965-09-11": "D\u00eda Nacional de Catalunya", + "1965-09-15": "D\u00eda de la Bien Aparecida", + "1965-09-17": "D\u00eda de Melilla", + "1965-10-09": "D\u00eda de la Comunidad Valenciana", + "1965-10-12": "D\u00eda de la Hispanidad", + "1965-11-01": "Todos los Santos", + "1965-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1965-12-08": "La Inmaculada Concepci\u00f3n", + "1965-12-25": "Navidad", + "1965-12-26": "San Esteban", + "1966-01-01": "A\u00f1o nuevo", + "1966-01-06": "Epifan\u00eda del Se\u00f1or", + "1966-02-28": "D\u00eda de Andalucia", + "1966-03-01": "D\u00eda de las Islas Baleares", + "1966-03-19": "San Jos\u00e9", + "1966-04-07": "Jueves Santo", + "1966-04-08": "Viernes Santo", + "1966-04-11": "Lunes de Pascua", + "1966-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1966-05-01": "D\u00eda del Trabajador", + "1966-05-02": "D\u00eda de Comunidad de Madrid", + "1966-05-30": "D\u00eda de Canarias", + "1966-05-31": "D\u00eda de Castilla La Mancha", + "1966-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1966-06-24": "San Juan", + "1966-07-25": "D\u00eda Nacional de Galicia", + "1966-07-28": "D\u00eda de las Instituciones de Cantabria", + "1966-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1966-08-15": "Asunci\u00f3n de la Virgen", + "1966-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1966-09-06": "D\u00eda de Elcano", + "1966-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1966-09-11": "D\u00eda Nacional de Catalunya", + "1966-09-15": "D\u00eda de la Bien Aparecida", + "1966-09-17": "D\u00eda de Melilla", + "1966-10-09": "D\u00eda de la Comunidad Valenciana", + "1966-10-12": "D\u00eda de la Hispanidad", + "1966-11-01": "Todos los Santos", + "1966-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1966-12-08": "La Inmaculada Concepci\u00f3n", + "1966-12-25": "Navidad", + "1966-12-26": "San Esteban", + "1967-01-01": "A\u00f1o nuevo", + "1967-01-06": "Epifan\u00eda del Se\u00f1or", + "1967-02-28": "D\u00eda de Andalucia", + "1967-03-01": "D\u00eda de las Islas Baleares", + "1967-03-19": "San Jos\u00e9", + "1967-03-20": "San Jos\u00e9 (Trasladado)", + "1967-03-23": "Jueves Santo", + "1967-03-24": "Viernes Santo", + "1967-03-27": "Lunes de Pascua", + "1967-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1967-05-01": "D\u00eda del Trabajador", + "1967-05-02": "D\u00eda de Comunidad de Madrid", + "1967-05-30": "D\u00eda de Canarias", + "1967-05-31": "D\u00eda de Castilla La Mancha", + "1967-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1967-06-24": "San Juan", + "1967-07-25": "D\u00eda Nacional de Galicia", + "1967-07-28": "D\u00eda de las Instituciones de Cantabria", + "1967-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1967-08-15": "Asunci\u00f3n de la Virgen", + "1967-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1967-09-06": "D\u00eda de Elcano", + "1967-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1967-09-11": "D\u00eda Nacional de Catalunya", + "1967-09-15": "D\u00eda de la Bien Aparecida", + "1967-09-17": "D\u00eda de Melilla", + "1967-10-09": "D\u00eda de la Comunidad Valenciana", + "1967-10-12": "D\u00eda de la Hispanidad", + "1967-11-01": "Todos los Santos", + "1967-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1967-12-08": "La Inmaculada Concepci\u00f3n", + "1967-12-25": "Navidad", + "1967-12-26": "San Esteban", + "1968-01-01": "A\u00f1o nuevo", + "1968-01-06": "Epifan\u00eda del Se\u00f1or", + "1968-02-28": "D\u00eda de Andalucia", + "1968-03-01": "D\u00eda de las Islas Baleares", + "1968-03-19": "San Jos\u00e9", + "1968-04-11": "Jueves Santo", + "1968-04-12": "Viernes Santo", + "1968-04-15": "Lunes de Pascua", + "1968-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1968-05-01": "D\u00eda del Trabajador", + "1968-05-02": "D\u00eda de Comunidad de Madrid", + "1968-05-30": "D\u00eda de Canarias", + "1968-05-31": "D\u00eda de Castilla La Mancha", + "1968-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1968-06-24": "San Juan", + "1968-07-25": "D\u00eda Nacional de Galicia", + "1968-07-28": "D\u00eda de las Instituciones de Cantabria", + "1968-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1968-08-15": "Asunci\u00f3n de la Virgen", + "1968-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1968-09-06": "D\u00eda de Elcano", + "1968-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1968-09-11": "D\u00eda Nacional de Catalunya", + "1968-09-15": "D\u00eda de la Bien Aparecida", + "1968-09-17": "D\u00eda de Melilla", + "1968-10-09": "D\u00eda de la Comunidad Valenciana", + "1968-10-12": "D\u00eda de la Hispanidad", + "1968-11-01": "Todos los Santos", + "1968-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1968-12-08": "La Inmaculada Concepci\u00f3n", + "1968-12-25": "Navidad", + "1968-12-26": "San Esteban", + "1969-01-01": "A\u00f1o nuevo", + "1969-01-06": "Epifan\u00eda del Se\u00f1or", + "1969-02-28": "D\u00eda de Andalucia", + "1969-03-01": "D\u00eda de las Islas Baleares", + "1969-03-19": "San Jos\u00e9", + "1969-04-03": "Jueves Santo", + "1969-04-04": "Viernes Santo", + "1969-04-07": "Lunes de Pascua", + "1969-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1969-05-01": "D\u00eda del Trabajador", + "1969-05-02": "D\u00eda de Comunidad de Madrid", + "1969-05-30": "D\u00eda de Canarias", + "1969-05-31": "D\u00eda de Castilla La Mancha", + "1969-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1969-06-24": "San Juan", + "1969-07-25": "D\u00eda Nacional de Galicia", + "1969-07-28": "D\u00eda de las Instituciones de Cantabria", + "1969-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1969-08-15": "Asunci\u00f3n de la Virgen", + "1969-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1969-09-06": "D\u00eda de Elcano", + "1969-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1969-09-11": "D\u00eda Nacional de Catalunya", + "1969-09-15": "D\u00eda de la Bien Aparecida", + "1969-09-17": "D\u00eda de Melilla", + "1969-10-09": "D\u00eda de la Comunidad Valenciana", + "1969-10-12": "D\u00eda de la Hispanidad", + "1969-11-01": "Todos los Santos", + "1969-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1969-12-08": "La Inmaculada Concepci\u00f3n", + "1969-12-25": "Navidad", + "1969-12-26": "San Esteban", + "1970-01-01": "A\u00f1o nuevo", + "1970-01-06": "Epifan\u00eda del Se\u00f1or", + "1970-02-28": "D\u00eda de Andalucia", + "1970-03-01": "D\u00eda de las Islas Baleares", + "1970-03-19": "San Jos\u00e9", + "1970-03-26": "Jueves Santo", + "1970-03-27": "Viernes Santo", + "1970-03-30": "Lunes de Pascua", + "1970-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1970-05-01": "D\u00eda del Trabajador", + "1970-05-02": "D\u00eda de Comunidad de Madrid", + "1970-05-30": "D\u00eda de Canarias", + "1970-05-31": "D\u00eda de Castilla La Mancha", + "1970-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1970-06-24": "San Juan", + "1970-07-25": "D\u00eda Nacional de Galicia", + "1970-07-28": "D\u00eda de las Instituciones de Cantabria", + "1970-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1970-08-15": "Asunci\u00f3n de la Virgen", + "1970-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1970-09-06": "D\u00eda de Elcano", + "1970-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1970-09-11": "D\u00eda Nacional de Catalunya", + "1970-09-15": "D\u00eda de la Bien Aparecida", + "1970-09-17": "D\u00eda de Melilla", + "1970-10-09": "D\u00eda de la Comunidad Valenciana", + "1970-10-12": "D\u00eda de la Hispanidad", + "1970-11-01": "Todos los Santos", + "1970-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1970-12-08": "La Inmaculada Concepci\u00f3n", + "1970-12-25": "Navidad", + "1970-12-26": "San Esteban", + "1971-01-01": "A\u00f1o nuevo", + "1971-01-06": "Epifan\u00eda del Se\u00f1or", + "1971-02-28": "D\u00eda de Andalucia", + "1971-03-01": "D\u00eda de las Islas Baleares", + "1971-03-19": "San Jos\u00e9", + "1971-04-08": "Jueves Santo", + "1971-04-09": "Viernes Santo", + "1971-04-12": "Lunes de Pascua", + "1971-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1971-05-01": "D\u00eda del Trabajador", + "1971-05-02": "D\u00eda de Comunidad de Madrid", + "1971-05-30": "D\u00eda de Canarias", + "1971-05-31": "D\u00eda de Castilla La Mancha", + "1971-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1971-06-24": "San Juan", + "1971-07-25": "D\u00eda Nacional de Galicia", + "1971-07-28": "D\u00eda de las Instituciones de Cantabria", + "1971-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1971-08-15": "Asunci\u00f3n de la Virgen", + "1971-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1971-09-06": "D\u00eda de Elcano", + "1971-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1971-09-11": "D\u00eda Nacional de Catalunya", + "1971-09-15": "D\u00eda de la Bien Aparecida", + "1971-09-17": "D\u00eda de Melilla", + "1971-10-09": "D\u00eda de la Comunidad Valenciana", + "1971-10-12": "D\u00eda de la Hispanidad", + "1971-11-01": "Todos los Santos", + "1971-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1971-12-08": "La Inmaculada Concepci\u00f3n", + "1971-12-25": "Navidad", + "1971-12-26": "San Esteban", + "1972-01-01": "A\u00f1o nuevo", + "1972-01-06": "Epifan\u00eda del Se\u00f1or", + "1972-02-28": "D\u00eda de Andalucia", + "1972-03-01": "D\u00eda de las Islas Baleares", + "1972-03-19": "San Jos\u00e9", + "1972-03-20": "San Jos\u00e9 (Trasladado)", + "1972-03-30": "Jueves Santo", + "1972-03-31": "Viernes Santo", + "1972-04-03": "Lunes de Pascua", + "1972-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1972-05-01": "D\u00eda del Trabajador", + "1972-05-02": "D\u00eda de Comunidad de Madrid", + "1972-05-30": "D\u00eda de Canarias", + "1972-05-31": "D\u00eda de Castilla La Mancha", + "1972-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1972-06-24": "San Juan", + "1972-07-25": "D\u00eda Nacional de Galicia", + "1972-07-28": "D\u00eda de las Instituciones de Cantabria", + "1972-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1972-08-15": "Asunci\u00f3n de la Virgen", + "1972-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1972-09-06": "D\u00eda de Elcano", + "1972-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1972-09-11": "D\u00eda Nacional de Catalunya", + "1972-09-15": "D\u00eda de la Bien Aparecida", + "1972-09-17": "D\u00eda de Melilla", + "1972-10-09": "D\u00eda de la Comunidad Valenciana", + "1972-10-12": "D\u00eda de la Hispanidad", + "1972-11-01": "Todos los Santos", + "1972-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1972-12-08": "La Inmaculada Concepci\u00f3n", + "1972-12-25": "Navidad", + "1972-12-26": "San Esteban", + "1973-01-01": "A\u00f1o nuevo", + "1973-01-06": "Epifan\u00eda del Se\u00f1or", + "1973-02-28": "D\u00eda de Andalucia", + "1973-03-01": "D\u00eda de las Islas Baleares", + "1973-03-19": "San Jos\u00e9", + "1973-04-19": "Jueves Santo", + "1973-04-20": "Viernes Santo", + "1973-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge; Lunes de Pascua", + "1973-05-01": "D\u00eda del Trabajador", + "1973-05-02": "D\u00eda de Comunidad de Madrid", + "1973-05-30": "D\u00eda de Canarias", + "1973-05-31": "D\u00eda de Castilla La Mancha", + "1973-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1973-06-24": "San Juan", + "1973-07-25": "D\u00eda Nacional de Galicia", + "1973-07-28": "D\u00eda de las Instituciones de Cantabria", + "1973-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1973-08-15": "Asunci\u00f3n de la Virgen", + "1973-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1973-09-06": "D\u00eda de Elcano", + "1973-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1973-09-11": "D\u00eda Nacional de Catalunya", + "1973-09-15": "D\u00eda de la Bien Aparecida", + "1973-09-17": "D\u00eda de Melilla", + "1973-10-09": "D\u00eda de la Comunidad Valenciana", + "1973-10-12": "D\u00eda de la Hispanidad", + "1973-11-01": "Todos los Santos", + "1973-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1973-12-08": "La Inmaculada Concepci\u00f3n", + "1973-12-25": "Navidad", + "1973-12-26": "San Esteban", + "1974-01-01": "A\u00f1o nuevo", + "1974-01-06": "Epifan\u00eda del Se\u00f1or", + "1974-02-28": "D\u00eda de Andalucia", + "1974-03-01": "D\u00eda de las Islas Baleares", + "1974-03-19": "San Jos\u00e9", + "1974-04-11": "Jueves Santo", + "1974-04-12": "Viernes Santo", + "1974-04-15": "Lunes de Pascua", + "1974-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1974-05-01": "D\u00eda del Trabajador", + "1974-05-02": "D\u00eda de Comunidad de Madrid", + "1974-05-30": "D\u00eda de Canarias", + "1974-05-31": "D\u00eda de Castilla La Mancha", + "1974-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1974-06-24": "San Juan", + "1974-07-25": "D\u00eda Nacional de Galicia", + "1974-07-28": "D\u00eda de las Instituciones de Cantabria", + "1974-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1974-08-15": "Asunci\u00f3n de la Virgen", + "1974-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1974-09-06": "D\u00eda de Elcano", + "1974-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1974-09-11": "D\u00eda Nacional de Catalunya", + "1974-09-15": "D\u00eda de la Bien Aparecida", + "1974-09-17": "D\u00eda de Melilla", + "1974-10-09": "D\u00eda de la Comunidad Valenciana", + "1974-10-12": "D\u00eda de la Hispanidad", + "1974-11-01": "Todos los Santos", + "1974-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1974-12-08": "La Inmaculada Concepci\u00f3n", + "1974-12-25": "Navidad", + "1974-12-26": "San Esteban", + "1975-01-01": "A\u00f1o nuevo", + "1975-01-06": "Epifan\u00eda del Se\u00f1or", + "1975-02-28": "D\u00eda de Andalucia", + "1975-03-01": "D\u00eda de las Islas Baleares", + "1975-03-19": "San Jos\u00e9", + "1975-03-27": "Jueves Santo", + "1975-03-28": "Viernes Santo", + "1975-03-31": "Lunes de Pascua", + "1975-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1975-05-01": "D\u00eda del Trabajador", + "1975-05-02": "D\u00eda de Comunidad de Madrid", + "1975-05-30": "D\u00eda de Canarias", + "1975-05-31": "D\u00eda de Castilla La Mancha", + "1975-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1975-06-24": "San Juan", + "1975-07-25": "D\u00eda Nacional de Galicia", + "1975-07-28": "D\u00eda de las Instituciones de Cantabria", + "1975-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1975-08-15": "Asunci\u00f3n de la Virgen", + "1975-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1975-09-06": "D\u00eda de Elcano", + "1975-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1975-09-11": "D\u00eda Nacional de Catalunya", + "1975-09-15": "D\u00eda de la Bien Aparecida", + "1975-09-17": "D\u00eda de Melilla", + "1975-10-09": "D\u00eda de la Comunidad Valenciana", + "1975-10-12": "D\u00eda de la Hispanidad", + "1975-11-01": "Todos los Santos", + "1975-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1975-12-08": "La Inmaculada Concepci\u00f3n", + "1975-12-25": "Navidad", + "1975-12-26": "San Esteban", + "1976-01-01": "A\u00f1o nuevo", + "1976-01-06": "Epifan\u00eda del Se\u00f1or", + "1976-02-28": "D\u00eda de Andalucia", + "1976-03-01": "D\u00eda de las Islas Baleares", + "1976-03-19": "San Jos\u00e9", + "1976-04-15": "Jueves Santo", + "1976-04-16": "Viernes Santo", + "1976-04-19": "Lunes de Pascua", + "1976-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1976-05-01": "D\u00eda del Trabajador", + "1976-05-02": "D\u00eda de Comunidad de Madrid", + "1976-05-30": "D\u00eda de Canarias", + "1976-05-31": "D\u00eda de Castilla La Mancha", + "1976-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1976-06-24": "San Juan", + "1976-07-25": "D\u00eda Nacional de Galicia", + "1976-07-28": "D\u00eda de las Instituciones de Cantabria", + "1976-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1976-08-15": "Asunci\u00f3n de la Virgen", + "1976-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1976-09-06": "D\u00eda de Elcano", + "1976-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1976-09-11": "D\u00eda Nacional de Catalunya", + "1976-09-15": "D\u00eda de la Bien Aparecida", + "1976-09-17": "D\u00eda de Melilla", + "1976-10-09": "D\u00eda de la Comunidad Valenciana", + "1976-10-12": "D\u00eda de la Hispanidad", + "1976-11-01": "Todos los Santos", + "1976-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1976-12-08": "La Inmaculada Concepci\u00f3n", + "1976-12-25": "Navidad", + "1976-12-26": "San Esteban", + "1977-01-01": "A\u00f1o nuevo", + "1977-01-06": "Epifan\u00eda del Se\u00f1or", + "1977-02-28": "D\u00eda de Andalucia", + "1977-03-01": "D\u00eda de las Islas Baleares", + "1977-03-19": "San Jos\u00e9", + "1977-04-07": "Jueves Santo", + "1977-04-08": "Viernes Santo", + "1977-04-11": "Lunes de Pascua", + "1977-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1977-05-01": "D\u00eda del Trabajador", + "1977-05-02": "D\u00eda de Comunidad de Madrid", + "1977-05-30": "D\u00eda de Canarias", + "1977-05-31": "D\u00eda de Castilla La Mancha", + "1977-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1977-06-24": "San Juan", + "1977-07-25": "D\u00eda Nacional de Galicia", + "1977-07-28": "D\u00eda de las Instituciones de Cantabria", + "1977-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1977-08-15": "Asunci\u00f3n de la Virgen", + "1977-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1977-09-06": "D\u00eda de Elcano", + "1977-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1977-09-11": "D\u00eda Nacional de Catalunya", + "1977-09-15": "D\u00eda de la Bien Aparecida", + "1977-09-17": "D\u00eda de Melilla", + "1977-10-09": "D\u00eda de la Comunidad Valenciana", + "1977-10-12": "D\u00eda de la Hispanidad", + "1977-11-01": "Todos los Santos", + "1977-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1977-12-08": "La Inmaculada Concepci\u00f3n", + "1977-12-25": "Navidad", + "1977-12-26": "San Esteban", + "1978-01-01": "A\u00f1o nuevo", + "1978-01-06": "Epifan\u00eda del Se\u00f1or", + "1978-02-28": "D\u00eda de Andalucia", + "1978-03-01": "D\u00eda de las Islas Baleares", + "1978-03-19": "San Jos\u00e9", + "1978-03-20": "San Jos\u00e9 (Trasladado)", + "1978-03-23": "Jueves Santo", + "1978-03-24": "Viernes Santo", + "1978-03-27": "Lunes de Pascua", + "1978-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1978-05-01": "D\u00eda del Trabajador", + "1978-05-02": "D\u00eda de Comunidad de Madrid", + "1978-05-30": "D\u00eda de Canarias", + "1978-05-31": "D\u00eda de Castilla La Mancha", + "1978-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1978-06-24": "San Juan", + "1978-07-25": "D\u00eda Nacional de Galicia", + "1978-07-28": "D\u00eda de las Instituciones de Cantabria", + "1978-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1978-08-15": "Asunci\u00f3n de la Virgen", + "1978-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1978-09-06": "D\u00eda de Elcano", + "1978-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1978-09-11": "D\u00eda Nacional de Catalunya", + "1978-09-15": "D\u00eda de la Bien Aparecida", + "1978-09-17": "D\u00eda de Melilla", + "1978-10-09": "D\u00eda de la Comunidad Valenciana", + "1978-10-12": "D\u00eda de la Hispanidad", + "1978-11-01": "Todos los Santos", + "1978-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1978-12-08": "La Inmaculada Concepci\u00f3n", + "1978-12-25": "Navidad", + "1978-12-26": "San Esteban", + "1979-01-01": "A\u00f1o nuevo", + "1979-01-06": "Epifan\u00eda del Se\u00f1or", + "1979-02-28": "D\u00eda de Andalucia", + "1979-03-01": "D\u00eda de las Islas Baleares", + "1979-03-19": "San Jos\u00e9", + "1979-04-12": "Jueves Santo", + "1979-04-13": "Viernes Santo", + "1979-04-16": "Lunes de Pascua", + "1979-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1979-05-01": "D\u00eda del Trabajador", + "1979-05-02": "D\u00eda de Comunidad de Madrid", + "1979-05-30": "D\u00eda de Canarias", + "1979-05-31": "D\u00eda de Castilla La Mancha", + "1979-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1979-06-24": "San Juan", + "1979-07-25": "D\u00eda Nacional de Galicia", + "1979-07-28": "D\u00eda de las Instituciones de Cantabria", + "1979-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1979-08-15": "Asunci\u00f3n de la Virgen", + "1979-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1979-09-06": "D\u00eda de Elcano", + "1979-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1979-09-11": "D\u00eda Nacional de Catalunya", + "1979-09-15": "D\u00eda de la Bien Aparecida", + "1979-09-17": "D\u00eda de Melilla", + "1979-10-09": "D\u00eda de la Comunidad Valenciana", + "1979-10-12": "D\u00eda de la Hispanidad", + "1979-11-01": "Todos los Santos", + "1979-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1979-12-08": "La Inmaculada Concepci\u00f3n", + "1979-12-25": "Navidad", + "1979-12-26": "San Esteban", + "1980-01-01": "A\u00f1o nuevo", + "1980-01-06": "Epifan\u00eda del Se\u00f1or", + "1980-02-28": "D\u00eda de Andalucia", + "1980-03-01": "D\u00eda de las Islas Baleares", + "1980-03-19": "San Jos\u00e9", + "1980-04-03": "Jueves Santo", + "1980-04-04": "Viernes Santo", + "1980-04-07": "Lunes de Pascua", + "1980-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1980-05-01": "D\u00eda del Trabajador", + "1980-05-02": "D\u00eda de Comunidad de Madrid", + "1980-05-30": "D\u00eda de Canarias", + "1980-05-31": "D\u00eda de Castilla La Mancha", + "1980-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1980-06-24": "San Juan", + "1980-07-25": "D\u00eda Nacional de Galicia", + "1980-07-28": "D\u00eda de las Instituciones de Cantabria", + "1980-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1980-08-15": "Asunci\u00f3n de la Virgen", + "1980-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1980-09-06": "D\u00eda de Elcano", + "1980-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1980-09-11": "D\u00eda Nacional de Catalunya", + "1980-09-15": "D\u00eda de la Bien Aparecida", + "1980-09-17": "D\u00eda de Melilla", + "1980-10-09": "D\u00eda de la Comunidad Valenciana", + "1980-10-12": "D\u00eda de la Hispanidad", + "1980-11-01": "Todos los Santos", + "1980-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1980-12-08": "La Inmaculada Concepci\u00f3n", + "1980-12-25": "Navidad", + "1980-12-26": "San Esteban", + "1981-01-01": "A\u00f1o nuevo", + "1981-01-06": "Epifan\u00eda del Se\u00f1or", + "1981-02-28": "D\u00eda de Andalucia", + "1981-03-01": "D\u00eda de las Islas Baleares", + "1981-03-19": "San Jos\u00e9", + "1981-04-16": "Jueves Santo", + "1981-04-17": "Viernes Santo", + "1981-04-20": "Lunes de Pascua", + "1981-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1981-05-01": "D\u00eda del Trabajador", + "1981-05-02": "D\u00eda de Comunidad de Madrid", + "1981-05-30": "D\u00eda de Canarias", + "1981-05-31": "D\u00eda de Castilla La Mancha", + "1981-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1981-06-24": "San Juan", + "1981-07-25": "D\u00eda Nacional de Galicia", + "1981-07-28": "D\u00eda de las Instituciones de Cantabria", + "1981-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1981-08-15": "Asunci\u00f3n de la Virgen", + "1981-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1981-09-06": "D\u00eda de Elcano", + "1981-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1981-09-11": "D\u00eda Nacional de Catalunya", + "1981-09-15": "D\u00eda de la Bien Aparecida", + "1981-09-17": "D\u00eda de Melilla", + "1981-10-09": "D\u00eda de la Comunidad Valenciana", + "1981-10-12": "D\u00eda de la Hispanidad", + "1981-11-01": "Todos los Santos", + "1981-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1981-12-08": "La Inmaculada Concepci\u00f3n", + "1981-12-25": "Navidad", + "1981-12-26": "San Esteban", + "1982-01-01": "A\u00f1o nuevo", + "1982-01-06": "Epifan\u00eda del Se\u00f1or", + "1982-02-28": "D\u00eda de Andalucia", + "1982-03-01": "D\u00eda de las Islas Baleares", + "1982-03-19": "San Jos\u00e9", + "1982-04-08": "Jueves Santo", + "1982-04-09": "Viernes Santo", + "1982-04-12": "Lunes de Pascua", + "1982-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1982-05-01": "D\u00eda del Trabajador", + "1982-05-02": "D\u00eda de Comunidad de Madrid", + "1982-05-30": "D\u00eda de Canarias", + "1982-05-31": "D\u00eda de Castilla La Mancha", + "1982-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1982-06-24": "San Juan", + "1982-07-25": "D\u00eda Nacional de Galicia", + "1982-07-28": "D\u00eda de las Instituciones de Cantabria", + "1982-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1982-08-15": "Asunci\u00f3n de la Virgen", + "1982-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1982-09-06": "D\u00eda de Elcano", + "1982-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1982-09-11": "D\u00eda Nacional de Catalunya", + "1982-09-15": "D\u00eda de la Bien Aparecida", + "1982-09-17": "D\u00eda de Melilla", + "1982-10-09": "D\u00eda de la Comunidad Valenciana", + "1982-10-12": "D\u00eda de la Hispanidad", + "1982-11-01": "Todos los Santos", + "1982-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1982-12-08": "La Inmaculada Concepci\u00f3n", + "1982-12-25": "Navidad", + "1982-12-26": "San Esteban", + "1983-01-01": "A\u00f1o nuevo", + "1983-01-06": "Epifan\u00eda del Se\u00f1or", + "1983-02-28": "D\u00eda de Andalucia", + "1983-03-01": "D\u00eda de las Islas Baleares", + "1983-03-19": "San Jos\u00e9", + "1983-03-31": "Jueves Santo", + "1983-04-01": "Viernes Santo", + "1983-04-04": "Lunes de Pascua", + "1983-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1983-05-01": "D\u00eda del Trabajador", + "1983-05-02": "D\u00eda de Comunidad de Madrid", + "1983-05-30": "D\u00eda de Canarias", + "1983-05-31": "D\u00eda de Castilla La Mancha", + "1983-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1983-06-24": "San Juan", + "1983-07-25": "D\u00eda Nacional de Galicia", + "1983-07-28": "D\u00eda de las Instituciones de Cantabria", + "1983-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1983-08-15": "Asunci\u00f3n de la Virgen", + "1983-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1983-09-06": "D\u00eda de Elcano", + "1983-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1983-09-11": "D\u00eda Nacional de Catalunya", + "1983-09-15": "D\u00eda de la Bien Aparecida", + "1983-09-17": "D\u00eda de Melilla", + "1983-10-09": "D\u00eda de la Comunidad Valenciana", + "1983-10-12": "D\u00eda de la Hispanidad", + "1983-11-01": "Todos los Santos", + "1983-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1983-12-08": "La Inmaculada Concepci\u00f3n", + "1983-12-25": "Navidad", + "1983-12-26": "San Esteban", + "1984-01-01": "A\u00f1o nuevo", + "1984-01-06": "Epifan\u00eda del Se\u00f1or", + "1984-02-28": "D\u00eda de Andalucia", + "1984-03-01": "D\u00eda de las Islas Baleares", + "1984-03-19": "San Jos\u00e9", + "1984-04-19": "Jueves Santo", + "1984-04-20": "Viernes Santo", + "1984-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge; Lunes de Pascua", + "1984-05-01": "D\u00eda del Trabajador", + "1984-05-02": "D\u00eda de Comunidad de Madrid", + "1984-05-30": "D\u00eda de Canarias", + "1984-05-31": "D\u00eda de Castilla La Mancha", + "1984-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1984-06-24": "San Juan", + "1984-07-25": "D\u00eda Nacional de Galicia", + "1984-07-28": "D\u00eda de las Instituciones de Cantabria", + "1984-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1984-08-15": "Asunci\u00f3n de la Virgen", + "1984-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1984-09-06": "D\u00eda de Elcano", + "1984-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1984-09-11": "D\u00eda Nacional de Catalunya", + "1984-09-15": "D\u00eda de la Bien Aparecida", + "1984-09-17": "D\u00eda de Melilla", + "1984-10-09": "D\u00eda de la Comunidad Valenciana", + "1984-10-12": "D\u00eda de la Hispanidad", + "1984-11-01": "Todos los Santos", + "1984-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1984-12-08": "La Inmaculada Concepci\u00f3n", + "1984-12-25": "Navidad", + "1984-12-26": "San Esteban", + "1985-01-01": "A\u00f1o nuevo", + "1985-01-06": "Epifan\u00eda del Se\u00f1or", + "1985-02-28": "D\u00eda de Andalucia", + "1985-03-01": "D\u00eda de las Islas Baleares", + "1985-03-19": "San Jos\u00e9", + "1985-04-04": "Jueves Santo", + "1985-04-05": "Viernes Santo", + "1985-04-08": "Lunes de Pascua", + "1985-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1985-05-01": "D\u00eda del Trabajador", + "1985-05-02": "D\u00eda de Comunidad de Madrid", + "1985-05-30": "D\u00eda de Canarias", + "1985-05-31": "D\u00eda de Castilla La Mancha", + "1985-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1985-06-24": "San Juan", + "1985-07-25": "D\u00eda Nacional de Galicia", + "1985-07-28": "D\u00eda de las Instituciones de Cantabria", + "1985-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1985-08-15": "Asunci\u00f3n de la Virgen", + "1985-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1985-09-06": "D\u00eda de Elcano", + "1985-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1985-09-11": "D\u00eda Nacional de Catalunya", + "1985-09-15": "D\u00eda de la Bien Aparecida", + "1985-09-17": "D\u00eda de Melilla", + "1985-10-09": "D\u00eda de la Comunidad Valenciana", + "1985-10-12": "D\u00eda de la Hispanidad", + "1985-11-01": "Todos los Santos", + "1985-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1985-12-08": "La Inmaculada Concepci\u00f3n", + "1985-12-25": "Navidad", + "1985-12-26": "San Esteban", + "1986-01-01": "A\u00f1o nuevo", + "1986-01-06": "Epifan\u00eda del Se\u00f1or", + "1986-02-28": "D\u00eda de Andalucia", + "1986-03-01": "D\u00eda de las Islas Baleares", + "1986-03-19": "San Jos\u00e9", + "1986-03-27": "Jueves Santo", + "1986-03-28": "Viernes Santo", + "1986-03-31": "Lunes de Pascua", + "1986-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1986-05-01": "D\u00eda del Trabajador", + "1986-05-02": "D\u00eda de Comunidad de Madrid", + "1986-05-30": "D\u00eda de Canarias", + "1986-05-31": "D\u00eda de Castilla La Mancha", + "1986-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1986-06-24": "San Juan", + "1986-07-25": "D\u00eda Nacional de Galicia", + "1986-07-28": "D\u00eda de las Instituciones de Cantabria", + "1986-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1986-08-15": "Asunci\u00f3n de la Virgen", + "1986-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1986-09-06": "D\u00eda de Elcano", + "1986-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1986-09-11": "D\u00eda Nacional de Catalunya", + "1986-09-15": "D\u00eda de la Bien Aparecida", + "1986-09-17": "D\u00eda de Melilla", + "1986-10-09": "D\u00eda de la Comunidad Valenciana", + "1986-10-12": "D\u00eda de la Hispanidad", + "1986-11-01": "Todos los Santos", + "1986-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1986-12-08": "La Inmaculada Concepci\u00f3n", + "1986-12-25": "Navidad", + "1986-12-26": "San Esteban", + "1987-01-01": "A\u00f1o nuevo", + "1987-01-06": "Epifan\u00eda del Se\u00f1or", + "1987-02-28": "D\u00eda de Andalucia", + "1987-03-01": "D\u00eda de las Islas Baleares", + "1987-03-19": "San Jos\u00e9", + "1987-04-16": "Jueves Santo", + "1987-04-17": "Viernes Santo", + "1987-04-20": "Lunes de Pascua", + "1987-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1987-05-01": "D\u00eda del Trabajador", + "1987-05-02": "D\u00eda de Comunidad de Madrid", + "1987-05-30": "D\u00eda de Canarias", + "1987-05-31": "D\u00eda de Castilla La Mancha", + "1987-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1987-06-24": "San Juan", + "1987-07-25": "D\u00eda Nacional de Galicia", + "1987-07-28": "D\u00eda de las Instituciones de Cantabria", + "1987-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1987-08-15": "Asunci\u00f3n de la Virgen", + "1987-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1987-09-06": "D\u00eda de Elcano", + "1987-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1987-09-11": "D\u00eda Nacional de Catalunya", + "1987-09-15": "D\u00eda de la Bien Aparecida", + "1987-09-17": "D\u00eda de Melilla", + "1987-10-09": "D\u00eda de la Comunidad Valenciana", + "1987-10-12": "D\u00eda de la Hispanidad", + "1987-11-01": "Todos los Santos", + "1987-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1987-12-08": "La Inmaculada Concepci\u00f3n", + "1987-12-25": "Navidad", + "1987-12-26": "San Esteban", + "1988-01-01": "A\u00f1o nuevo", + "1988-01-06": "Epifan\u00eda del Se\u00f1or", + "1988-02-28": "D\u00eda de Andalucia", + "1988-03-01": "D\u00eda de las Islas Baleares", + "1988-03-19": "San Jos\u00e9", + "1988-03-31": "Jueves Santo", + "1988-04-01": "Viernes Santo", + "1988-04-04": "Lunes de Pascua", + "1988-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1988-05-01": "D\u00eda del Trabajador", + "1988-05-02": "D\u00eda de Comunidad de Madrid", + "1988-05-30": "D\u00eda de Canarias", + "1988-05-31": "D\u00eda de Castilla La Mancha", + "1988-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1988-06-24": "San Juan", + "1988-07-25": "D\u00eda Nacional de Galicia", + "1988-07-28": "D\u00eda de las Instituciones de Cantabria", + "1988-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1988-08-15": "Asunci\u00f3n de la Virgen", + "1988-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1988-09-06": "D\u00eda de Elcano", + "1988-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1988-09-11": "D\u00eda Nacional de Catalunya", + "1988-09-15": "D\u00eda de la Bien Aparecida", + "1988-09-17": "D\u00eda de Melilla", + "1988-10-09": "D\u00eda de la Comunidad Valenciana", + "1988-10-12": "D\u00eda de la Hispanidad", + "1988-11-01": "Todos los Santos", + "1988-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1988-12-08": "La Inmaculada Concepci\u00f3n", + "1988-12-25": "Navidad", + "1988-12-26": "San Esteban", + "1989-01-01": "A\u00f1o nuevo", + "1989-01-06": "Epifan\u00eda del Se\u00f1or", + "1989-02-28": "D\u00eda de Andalucia", + "1989-03-01": "D\u00eda de las Islas Baleares", + "1989-03-19": "San Jos\u00e9", + "1989-03-20": "San Jos\u00e9 (Trasladado)", + "1989-03-23": "Jueves Santo", + "1989-03-24": "Viernes Santo", + "1989-03-27": "Lunes de Pascua", + "1989-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1989-05-01": "D\u00eda del Trabajador", + "1989-05-02": "D\u00eda de Comunidad de Madrid", + "1989-05-30": "D\u00eda de Canarias", + "1989-05-31": "D\u00eda de Castilla La Mancha", + "1989-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1989-06-24": "San Juan", + "1989-07-25": "D\u00eda Nacional de Galicia", + "1989-07-28": "D\u00eda de las Instituciones de Cantabria", + "1989-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1989-08-15": "Asunci\u00f3n de la Virgen", + "1989-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1989-09-06": "D\u00eda de Elcano", + "1989-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1989-09-11": "D\u00eda Nacional de Catalunya", + "1989-09-15": "D\u00eda de la Bien Aparecida", + "1989-09-17": "D\u00eda de Melilla", + "1989-10-09": "D\u00eda de la Comunidad Valenciana", + "1989-10-12": "D\u00eda de la Hispanidad", + "1989-11-01": "Todos los Santos", + "1989-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1989-12-08": "La Inmaculada Concepci\u00f3n", + "1989-12-25": "Navidad", + "1989-12-26": "San Esteban", + "1990-01-01": "A\u00f1o nuevo", + "1990-01-06": "Epifan\u00eda del Se\u00f1or", + "1990-02-28": "D\u00eda de Andalucia", + "1990-03-01": "D\u00eda de las Islas Baleares", + "1990-03-19": "San Jos\u00e9", + "1990-04-12": "Jueves Santo", + "1990-04-13": "Viernes Santo", + "1990-04-16": "Lunes de Pascua", + "1990-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1990-05-01": "D\u00eda del Trabajador", + "1990-05-02": "D\u00eda de Comunidad de Madrid", + "1990-05-30": "D\u00eda de Canarias", + "1990-05-31": "D\u00eda de Castilla La Mancha", + "1990-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1990-06-24": "San Juan", + "1990-07-25": "D\u00eda Nacional de Galicia", + "1990-07-28": "D\u00eda de las Instituciones de Cantabria", + "1990-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1990-08-15": "Asunci\u00f3n de la Virgen", + "1990-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1990-09-06": "D\u00eda de Elcano", + "1990-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1990-09-11": "D\u00eda Nacional de Catalunya", + "1990-09-15": "D\u00eda de la Bien Aparecida", + "1990-09-17": "D\u00eda de Melilla", + "1990-10-09": "D\u00eda de la Comunidad Valenciana", + "1990-10-12": "D\u00eda de la Hispanidad", + "1990-11-01": "Todos los Santos", + "1990-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1990-12-08": "La Inmaculada Concepci\u00f3n", + "1990-12-25": "Navidad", + "1990-12-26": "San Esteban", + "1991-01-01": "A\u00f1o nuevo", + "1991-01-06": "Epifan\u00eda del Se\u00f1or", + "1991-02-28": "D\u00eda de Andalucia", + "1991-03-01": "D\u00eda de las Islas Baleares", + "1991-03-19": "San Jos\u00e9", + "1991-03-28": "Jueves Santo", + "1991-03-29": "Viernes Santo", + "1991-04-01": "Lunes de Pascua", + "1991-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1991-05-01": "D\u00eda del Trabajador", + "1991-05-02": "D\u00eda de Comunidad de Madrid", + "1991-05-30": "D\u00eda de Canarias", + "1991-05-31": "D\u00eda de Castilla La Mancha", + "1991-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1991-06-24": "San Juan", + "1991-07-25": "D\u00eda Nacional de Galicia", + "1991-07-28": "D\u00eda de las Instituciones de Cantabria", + "1991-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1991-08-15": "Asunci\u00f3n de la Virgen", + "1991-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1991-09-06": "D\u00eda de Elcano", + "1991-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1991-09-11": "D\u00eda Nacional de Catalunya", + "1991-09-15": "D\u00eda de la Bien Aparecida", + "1991-09-17": "D\u00eda de Melilla", + "1991-10-09": "D\u00eda de la Comunidad Valenciana", + "1991-10-12": "D\u00eda de la Hispanidad", + "1991-11-01": "Todos los Santos", + "1991-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1991-12-08": "La Inmaculada Concepci\u00f3n", + "1991-12-25": "Navidad", + "1991-12-26": "San Esteban", + "1992-01-01": "A\u00f1o nuevo", + "1992-01-06": "Epifan\u00eda del Se\u00f1or", + "1992-02-28": "D\u00eda de Andalucia", + "1992-03-01": "D\u00eda de las Islas Baleares", + "1992-03-19": "San Jos\u00e9", + "1992-04-16": "Jueves Santo", + "1992-04-17": "Viernes Santo", + "1992-04-20": "Lunes de Pascua", + "1992-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1992-05-01": "D\u00eda del Trabajador", + "1992-05-02": "D\u00eda de Comunidad de Madrid", + "1992-05-30": "D\u00eda de Canarias", + "1992-05-31": "D\u00eda de Castilla La Mancha", + "1992-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1992-06-24": "San Juan", + "1992-07-25": "D\u00eda Nacional de Galicia", + "1992-07-28": "D\u00eda de las Instituciones de Cantabria", + "1992-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1992-08-15": "Asunci\u00f3n de la Virgen", + "1992-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1992-09-06": "D\u00eda de Elcano", + "1992-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1992-09-11": "D\u00eda Nacional de Catalunya", + "1992-09-15": "D\u00eda de la Bien Aparecida", + "1992-09-17": "D\u00eda de Melilla", + "1992-10-09": "D\u00eda de la Comunidad Valenciana", + "1992-10-12": "D\u00eda de la Hispanidad", + "1992-11-01": "Todos los Santos", + "1992-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1992-12-08": "La Inmaculada Concepci\u00f3n", + "1992-12-25": "Navidad", + "1992-12-26": "San Esteban", + "1993-01-01": "A\u00f1o nuevo", + "1993-01-06": "Epifan\u00eda del Se\u00f1or", + "1993-02-28": "D\u00eda de Andalucia", + "1993-03-01": "D\u00eda de las Islas Baleares", + "1993-03-19": "San Jos\u00e9", + "1993-04-08": "Jueves Santo", + "1993-04-09": "Viernes Santo", + "1993-04-12": "Lunes de Pascua", + "1993-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1993-05-01": "D\u00eda del Trabajador", + "1993-05-02": "D\u00eda de Comunidad de Madrid", + "1993-05-30": "D\u00eda de Canarias", + "1993-05-31": "D\u00eda de Castilla La Mancha", + "1993-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1993-06-24": "San Juan", + "1993-07-25": "D\u00eda Nacional de Galicia", + "1993-07-28": "D\u00eda de las Instituciones de Cantabria", + "1993-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1993-08-15": "Asunci\u00f3n de la Virgen", + "1993-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1993-09-06": "D\u00eda de Elcano", + "1993-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1993-09-11": "D\u00eda Nacional de Catalunya", + "1993-09-15": "D\u00eda de la Bien Aparecida", + "1993-09-17": "D\u00eda de Melilla", + "1993-10-09": "D\u00eda de la Comunidad Valenciana", + "1993-10-12": "D\u00eda de la Hispanidad", + "1993-11-01": "Todos los Santos", + "1993-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1993-12-08": "La Inmaculada Concepci\u00f3n", + "1993-12-25": "Navidad", + "1993-12-26": "San Esteban", + "1994-01-01": "A\u00f1o nuevo", + "1994-01-06": "Epifan\u00eda del Se\u00f1or", + "1994-02-28": "D\u00eda de Andalucia", + "1994-03-01": "D\u00eda de las Islas Baleares", + "1994-03-19": "San Jos\u00e9", + "1994-03-31": "Jueves Santo", + "1994-04-01": "Viernes Santo", + "1994-04-04": "Lunes de Pascua", + "1994-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1994-05-01": "D\u00eda del Trabajador", + "1994-05-02": "D\u00eda de Comunidad de Madrid", + "1994-05-30": "D\u00eda de Canarias", + "1994-05-31": "D\u00eda de Castilla La Mancha", + "1994-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1994-06-24": "San Juan", + "1994-07-25": "D\u00eda Nacional de Galicia", + "1994-07-28": "D\u00eda de las Instituciones de Cantabria", + "1994-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1994-08-15": "Asunci\u00f3n de la Virgen", + "1994-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1994-09-06": "D\u00eda de Elcano", + "1994-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1994-09-11": "D\u00eda Nacional de Catalunya", + "1994-09-15": "D\u00eda de la Bien Aparecida", + "1994-09-17": "D\u00eda de Melilla", + "1994-10-09": "D\u00eda de la Comunidad Valenciana", + "1994-10-12": "D\u00eda de la Hispanidad", + "1994-11-01": "Todos los Santos", + "1994-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1994-12-08": "La Inmaculada Concepci\u00f3n", + "1994-12-25": "Navidad", + "1994-12-26": "San Esteban", + "1995-01-01": "A\u00f1o nuevo", + "1995-01-06": "Epifan\u00eda del Se\u00f1or", + "1995-02-28": "D\u00eda de Andalucia", + "1995-03-01": "D\u00eda de las Islas Baleares", + "1995-03-19": "San Jos\u00e9", + "1995-03-20": "San Jos\u00e9 (Trasladado)", + "1995-04-13": "Jueves Santo", + "1995-04-14": "Viernes Santo", + "1995-04-17": "Lunes de Pascua", + "1995-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1995-05-01": "D\u00eda del Trabajador", + "1995-05-02": "D\u00eda de Comunidad de Madrid", + "1995-05-30": "D\u00eda de Canarias", + "1995-05-31": "D\u00eda de Castilla La Mancha", + "1995-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1995-06-24": "San Juan", + "1995-07-25": "D\u00eda Nacional de Galicia", + "1995-07-28": "D\u00eda de las Instituciones de Cantabria", + "1995-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1995-08-15": "Asunci\u00f3n de la Virgen", + "1995-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1995-09-06": "D\u00eda de Elcano", + "1995-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1995-09-11": "D\u00eda Nacional de Catalunya", + "1995-09-15": "D\u00eda de la Bien Aparecida", + "1995-09-17": "D\u00eda de Melilla", + "1995-10-09": "D\u00eda de la Comunidad Valenciana", + "1995-10-12": "D\u00eda de la Hispanidad", + "1995-11-01": "Todos los Santos", + "1995-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1995-12-08": "La Inmaculada Concepci\u00f3n", + "1995-12-25": "Navidad", + "1995-12-26": "San Esteban", + "1996-01-01": "A\u00f1o nuevo", + "1996-01-06": "Epifan\u00eda del Se\u00f1or", + "1996-02-28": "D\u00eda de Andalucia", + "1996-03-01": "D\u00eda de las Islas Baleares", + "1996-03-19": "San Jos\u00e9", + "1996-04-04": "Jueves Santo", + "1996-04-05": "Viernes Santo", + "1996-04-08": "Lunes de Pascua", + "1996-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1996-05-01": "D\u00eda del Trabajador", + "1996-05-02": "D\u00eda de Comunidad de Madrid", + "1996-05-30": "D\u00eda de Canarias", + "1996-05-31": "D\u00eda de Castilla La Mancha", + "1996-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1996-06-24": "San Juan", + "1996-07-25": "D\u00eda Nacional de Galicia", + "1996-07-28": "D\u00eda de las Instituciones de Cantabria", + "1996-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1996-08-15": "Asunci\u00f3n de la Virgen", + "1996-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1996-09-06": "D\u00eda de Elcano", + "1996-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1996-09-11": "D\u00eda Nacional de Catalunya", + "1996-09-15": "D\u00eda de la Bien Aparecida", + "1996-09-17": "D\u00eda de Melilla", + "1996-10-09": "D\u00eda de la Comunidad Valenciana", + "1996-10-12": "D\u00eda de la Hispanidad", + "1996-11-01": "Todos los Santos", + "1996-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1996-12-08": "La Inmaculada Concepci\u00f3n", + "1996-12-25": "Navidad", + "1996-12-26": "San Esteban", + "1997-01-01": "A\u00f1o nuevo", + "1997-01-06": "Epifan\u00eda del Se\u00f1or", + "1997-02-28": "D\u00eda de Andalucia", + "1997-03-01": "D\u00eda de las Islas Baleares", + "1997-03-19": "San Jos\u00e9", + "1997-03-27": "Jueves Santo", + "1997-03-28": "Viernes Santo", + "1997-03-31": "Lunes de Pascua", + "1997-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1997-05-01": "D\u00eda del Trabajador", + "1997-05-02": "D\u00eda de Comunidad de Madrid", + "1997-05-30": "D\u00eda de Canarias", + "1997-05-31": "D\u00eda de Castilla La Mancha", + "1997-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1997-06-24": "San Juan", + "1997-07-25": "D\u00eda Nacional de Galicia", + "1997-07-28": "D\u00eda de las Instituciones de Cantabria", + "1997-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1997-08-15": "Asunci\u00f3n de la Virgen", + "1997-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1997-09-06": "D\u00eda de Elcano", + "1997-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1997-09-11": "D\u00eda Nacional de Catalunya", + "1997-09-15": "D\u00eda de la Bien Aparecida", + "1997-09-17": "D\u00eda de Melilla", + "1997-10-09": "D\u00eda de la Comunidad Valenciana", + "1997-10-12": "D\u00eda de la Hispanidad", + "1997-11-01": "Todos los Santos", + "1997-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1997-12-08": "La Inmaculada Concepci\u00f3n", + "1997-12-25": "Navidad", + "1997-12-26": "San Esteban", + "1998-01-01": "A\u00f1o nuevo", + "1998-01-06": "Epifan\u00eda del Se\u00f1or", + "1998-02-28": "D\u00eda de Andalucia", + "1998-03-01": "D\u00eda de las Islas Baleares", + "1998-03-19": "San Jos\u00e9", + "1998-04-09": "Jueves Santo", + "1998-04-10": "Viernes Santo", + "1998-04-13": "Lunes de Pascua", + "1998-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1998-05-01": "D\u00eda del Trabajador", + "1998-05-02": "D\u00eda de Comunidad de Madrid", + "1998-05-30": "D\u00eda de Canarias", + "1998-05-31": "D\u00eda de Castilla La Mancha", + "1998-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1998-06-24": "San Juan", + "1998-07-25": "D\u00eda Nacional de Galicia", + "1998-07-28": "D\u00eda de las Instituciones de Cantabria", + "1998-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1998-08-15": "Asunci\u00f3n de la Virgen", + "1998-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1998-09-06": "D\u00eda de Elcano", + "1998-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1998-09-11": "D\u00eda Nacional de Catalunya", + "1998-09-15": "D\u00eda de la Bien Aparecida", + "1998-09-17": "D\u00eda de Melilla", + "1998-10-09": "D\u00eda de la Comunidad Valenciana", + "1998-10-12": "D\u00eda de la Hispanidad", + "1998-11-01": "Todos los Santos", + "1998-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1998-12-08": "La Inmaculada Concepci\u00f3n", + "1998-12-25": "Navidad", + "1998-12-26": "San Esteban", + "1999-01-01": "A\u00f1o nuevo", + "1999-01-06": "Epifan\u00eda del Se\u00f1or", + "1999-02-28": "D\u00eda de Andalucia", + "1999-03-01": "D\u00eda de las Islas Baleares", + "1999-03-19": "San Jos\u00e9", + "1999-04-01": "Jueves Santo", + "1999-04-02": "Viernes Santo", + "1999-04-05": "Lunes de Pascua", + "1999-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "1999-05-01": "D\u00eda del Trabajador", + "1999-05-02": "D\u00eda de Comunidad de Madrid", + "1999-05-30": "D\u00eda de Canarias", + "1999-05-31": "D\u00eda de Castilla La Mancha", + "1999-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1999-06-24": "San Juan", + "1999-07-25": "D\u00eda Nacional de Galicia", + "1999-07-28": "D\u00eda de las Instituciones de Cantabria", + "1999-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "1999-08-15": "Asunci\u00f3n de la Virgen", + "1999-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "1999-09-06": "D\u00eda de Elcano", + "1999-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "1999-09-11": "D\u00eda Nacional de Catalunya", + "1999-09-15": "D\u00eda de la Bien Aparecida", + "1999-09-17": "D\u00eda de Melilla", + "1999-10-09": "D\u00eda de la Comunidad Valenciana", + "1999-10-12": "D\u00eda de la Hispanidad", + "1999-11-01": "Todos los Santos", + "1999-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "1999-12-08": "La Inmaculada Concepci\u00f3n", + "1999-12-25": "Navidad", + "1999-12-26": "San Esteban", + "2000-01-01": "A\u00f1o nuevo", + "2000-01-06": "Epifan\u00eda del Se\u00f1or", + "2000-02-28": "D\u00eda de Andalucia", + "2000-03-01": "D\u00eda de las Islas Baleares", + "2000-03-19": "San Jos\u00e9", + "2000-03-20": "San Jos\u00e9 (Trasladado)", + "2000-04-20": "Jueves Santo", + "2000-04-21": "Viernes Santo", + "2000-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2000-04-24": "Lunes de Pascua", + "2000-05-01": "D\u00eda del Trabajador", + "2000-05-02": "D\u00eda de Comunidad de Madrid", + "2000-05-30": "D\u00eda de Canarias", + "2000-05-31": "D\u00eda de Castilla La Mancha", + "2000-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2000-06-24": "San Juan", + "2000-07-25": "D\u00eda Nacional de Galicia", + "2000-07-28": "D\u00eda de las Instituciones de Cantabria", + "2000-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2000-08-15": "Asunci\u00f3n de la Virgen", + "2000-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2000-09-06": "D\u00eda de Elcano", + "2000-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2000-09-11": "D\u00eda Nacional de Catalunya", + "2000-09-15": "D\u00eda de la Bien Aparecida", + "2000-09-17": "D\u00eda de Melilla", + "2000-10-09": "D\u00eda de la Comunidad Valenciana", + "2000-10-12": "D\u00eda de la Hispanidad", + "2000-11-01": "Todos los Santos", + "2000-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2000-12-08": "La Inmaculada Concepci\u00f3n", + "2000-12-25": "Navidad", + "2000-12-26": "San Esteban", + "2001-01-01": "A\u00f1o nuevo", + "2001-01-06": "Epifan\u00eda del Se\u00f1or", + "2001-02-28": "D\u00eda de Andalucia", + "2001-03-01": "D\u00eda de las Islas Baleares", + "2001-03-19": "San Jos\u00e9", + "2001-04-12": "Jueves Santo", + "2001-04-13": "Viernes Santo", + "2001-04-16": "Lunes de Pascua", + "2001-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2001-05-01": "D\u00eda del Trabajador", + "2001-05-02": "D\u00eda de Comunidad de Madrid", + "2001-05-30": "D\u00eda de Canarias", + "2001-05-31": "D\u00eda de Castilla La Mancha", + "2001-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2001-06-24": "San Juan", + "2001-07-25": "D\u00eda Nacional de Galicia", + "2001-07-28": "D\u00eda de las Instituciones de Cantabria", + "2001-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2001-08-15": "Asunci\u00f3n de la Virgen", + "2001-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2001-09-06": "D\u00eda de Elcano", + "2001-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2001-09-11": "D\u00eda Nacional de Catalunya", + "2001-09-15": "D\u00eda de la Bien Aparecida", + "2001-09-17": "D\u00eda de Melilla", + "2001-10-09": "D\u00eda de la Comunidad Valenciana", + "2001-10-12": "D\u00eda de la Hispanidad", + "2001-11-01": "Todos los Santos", + "2001-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2001-12-08": "La Inmaculada Concepci\u00f3n", + "2001-12-25": "Navidad", + "2001-12-26": "San Esteban", + "2002-01-01": "A\u00f1o nuevo", + "2002-01-06": "Epifan\u00eda del Se\u00f1or", + "2002-02-28": "D\u00eda de Andalucia", + "2002-03-01": "D\u00eda de las Islas Baleares", + "2002-03-19": "San Jos\u00e9", + "2002-03-28": "Jueves Santo", + "2002-03-29": "Viernes Santo", + "2002-04-01": "Lunes de Pascua", + "2002-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2002-05-01": "D\u00eda del Trabajador", + "2002-05-02": "D\u00eda de Comunidad de Madrid", + "2002-05-30": "D\u00eda de Canarias", + "2002-05-31": "D\u00eda de Castilla La Mancha", + "2002-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2002-06-24": "San Juan", + "2002-07-25": "D\u00eda Nacional de Galicia", + "2002-07-28": "D\u00eda de las Instituciones de Cantabria", + "2002-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2002-08-15": "Asunci\u00f3n de la Virgen", + "2002-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2002-09-06": "D\u00eda de Elcano", + "2002-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2002-09-11": "D\u00eda Nacional de Catalunya", + "2002-09-15": "D\u00eda de la Bien Aparecida", + "2002-09-17": "D\u00eda de Melilla", + "2002-10-09": "D\u00eda de la Comunidad Valenciana", + "2002-10-12": "D\u00eda de la Hispanidad", + "2002-11-01": "Todos los Santos", + "2002-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2002-12-08": "La Inmaculada Concepci\u00f3n", + "2002-12-25": "Navidad", + "2002-12-26": "San Esteban", + "2003-01-01": "A\u00f1o nuevo", + "2003-01-06": "Epifan\u00eda del Se\u00f1or", + "2003-02-28": "D\u00eda de Andalucia", + "2003-03-01": "D\u00eda de las Islas Baleares", + "2003-03-19": "San Jos\u00e9", + "2003-04-17": "Jueves Santo", + "2003-04-18": "Viernes Santo", + "2003-04-21": "Lunes de Pascua", + "2003-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2003-05-01": "D\u00eda del Trabajador", + "2003-05-02": "D\u00eda de Comunidad de Madrid", + "2003-05-30": "D\u00eda de Canarias", + "2003-05-31": "D\u00eda de Castilla La Mancha", + "2003-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2003-06-24": "San Juan", + "2003-07-25": "D\u00eda Nacional de Galicia", + "2003-07-28": "D\u00eda de las Instituciones de Cantabria", + "2003-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2003-08-15": "Asunci\u00f3n de la Virgen", + "2003-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2003-09-06": "D\u00eda de Elcano", + "2003-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2003-09-11": "D\u00eda Nacional de Catalunya", + "2003-09-15": "D\u00eda de la Bien Aparecida", + "2003-09-17": "D\u00eda de Melilla", + "2003-10-09": "D\u00eda de la Comunidad Valenciana", + "2003-10-12": "D\u00eda de la Hispanidad", + "2003-11-01": "Todos los Santos", + "2003-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2003-12-08": "La Inmaculada Concepci\u00f3n", + "2003-12-25": "Navidad", + "2003-12-26": "San Esteban", + "2004-01-01": "A\u00f1o nuevo", + "2004-01-06": "Epifan\u00eda del Se\u00f1or", + "2004-02-28": "D\u00eda de Andalucia", + "2004-03-01": "D\u00eda de las Islas Baleares", + "2004-03-19": "San Jos\u00e9", + "2004-04-08": "Jueves Santo", + "2004-04-09": "Viernes Santo", + "2004-04-12": "Lunes de Pascua", + "2004-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2004-05-01": "D\u00eda del Trabajador", + "2004-05-02": "D\u00eda de Comunidad de Madrid", + "2004-05-30": "D\u00eda de Canarias", + "2004-05-31": "D\u00eda de Castilla La Mancha", + "2004-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2004-06-24": "San Juan", + "2004-07-25": "D\u00eda Nacional de Galicia", + "2004-07-28": "D\u00eda de las Instituciones de Cantabria", + "2004-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2004-08-15": "Asunci\u00f3n de la Virgen", + "2004-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2004-09-06": "D\u00eda de Elcano", + "2004-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2004-09-11": "D\u00eda Nacional de Catalunya", + "2004-09-15": "D\u00eda de la Bien Aparecida", + "2004-09-17": "D\u00eda de Melilla", + "2004-10-09": "D\u00eda de la Comunidad Valenciana", + "2004-10-12": "D\u00eda de la Hispanidad", + "2004-11-01": "Todos los Santos", + "2004-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2004-12-08": "La Inmaculada Concepci\u00f3n", + "2004-12-25": "Navidad", + "2004-12-26": "San Esteban", + "2005-01-01": "A\u00f1o nuevo", + "2005-01-06": "Epifan\u00eda del Se\u00f1or", + "2005-02-28": "D\u00eda de Andalucia", + "2005-03-01": "D\u00eda de las Islas Baleares", + "2005-03-19": "San Jos\u00e9", + "2005-03-24": "Jueves Santo", + "2005-03-25": "Viernes Santo", + "2005-03-28": "Lunes de Pascua", + "2005-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2005-05-01": "D\u00eda del Trabajador", + "2005-05-02": "D\u00eda de Comunidad de Madrid", + "2005-05-30": "D\u00eda de Canarias", + "2005-05-31": "D\u00eda de Castilla La Mancha", + "2005-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2005-06-24": "San Juan", + "2005-07-25": "D\u00eda Nacional de Galicia", + "2005-07-28": "D\u00eda de las Instituciones de Cantabria", + "2005-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2005-08-15": "Asunci\u00f3n de la Virgen", + "2005-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2005-09-06": "D\u00eda de Elcano", + "2005-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2005-09-11": "D\u00eda Nacional de Catalunya", + "2005-09-15": "D\u00eda de la Bien Aparecida", + "2005-09-17": "D\u00eda de Melilla", + "2005-10-09": "D\u00eda de la Comunidad Valenciana", + "2005-10-12": "D\u00eda de la Hispanidad", + "2005-11-01": "Todos los Santos", + "2005-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2005-12-08": "La Inmaculada Concepci\u00f3n", + "2005-12-25": "Navidad", + "2005-12-26": "San Esteban", + "2006-01-01": "A\u00f1o nuevo", + "2006-01-06": "Epifan\u00eda del Se\u00f1or", + "2006-02-28": "D\u00eda de Andalucia", + "2006-03-01": "D\u00eda de las Islas Baleares", + "2006-03-19": "San Jos\u00e9", + "2006-03-20": "San Jos\u00e9 (Trasladado)", + "2006-04-13": "Jueves Santo", + "2006-04-14": "Viernes Santo", + "2006-04-17": "Lunes de Pascua", + "2006-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2006-05-01": "D\u00eda del Trabajador", + "2006-05-02": "D\u00eda de Comunidad de Madrid", + "2006-05-30": "D\u00eda de Canarias", + "2006-05-31": "D\u00eda de Castilla La Mancha", + "2006-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2006-06-24": "San Juan", + "2006-07-25": "D\u00eda Nacional de Galicia", + "2006-07-28": "D\u00eda de las Instituciones de Cantabria", + "2006-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2006-08-15": "Asunci\u00f3n de la Virgen", + "2006-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2006-09-06": "D\u00eda de Elcano", + "2006-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2006-09-11": "D\u00eda Nacional de Catalunya", + "2006-09-15": "D\u00eda de la Bien Aparecida", + "2006-09-17": "D\u00eda de Melilla", + "2006-10-09": "D\u00eda de la Comunidad Valenciana", + "2006-10-12": "D\u00eda de la Hispanidad", + "2006-11-01": "Todos los Santos", + "2006-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2006-12-08": "La Inmaculada Concepci\u00f3n", + "2006-12-25": "Navidad", + "2006-12-26": "San Esteban", + "2007-01-01": "A\u00f1o nuevo", + "2007-01-06": "Epifan\u00eda del Se\u00f1or", + "2007-02-28": "D\u00eda de Andalucia", + "2007-03-01": "D\u00eda de las Islas Baleares", + "2007-03-19": "San Jos\u00e9", + "2007-04-05": "Jueves Santo", + "2007-04-06": "Viernes Santo", + "2007-04-09": "Lunes de Pascua", + "2007-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2007-05-01": "D\u00eda del Trabajador", + "2007-05-02": "D\u00eda de Comunidad de Madrid", + "2007-05-30": "D\u00eda de Canarias", + "2007-05-31": "D\u00eda de Castilla La Mancha", + "2007-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2007-06-24": "San Juan", + "2007-07-25": "D\u00eda Nacional de Galicia", + "2007-07-28": "D\u00eda de las Instituciones de Cantabria", + "2007-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2007-08-15": "Asunci\u00f3n de la Virgen", + "2007-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2007-09-06": "D\u00eda de Elcano", + "2007-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2007-09-11": "D\u00eda Nacional de Catalunya", + "2007-09-15": "D\u00eda de la Bien Aparecida", + "2007-09-17": "D\u00eda de Melilla", + "2007-10-09": "D\u00eda de la Comunidad Valenciana", + "2007-10-12": "D\u00eda de la Hispanidad", + "2007-11-01": "Todos los Santos", + "2007-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2007-12-08": "La Inmaculada Concepci\u00f3n", + "2007-12-25": "Navidad", + "2007-12-26": "San Esteban", + "2008-01-01": "A\u00f1o nuevo", + "2008-01-06": "Epifan\u00eda del Se\u00f1or", + "2008-02-28": "D\u00eda de Andalucia", + "2008-03-01": "D\u00eda de las Islas Baleares", + "2008-03-19": "San Jos\u00e9", + "2008-03-20": "Jueves Santo", + "2008-03-21": "Viernes Santo", + "2008-03-24": "Lunes de Pascua", + "2008-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2008-05-01": "D\u00eda del Trabajador", + "2008-05-02": "D\u00eda de Comunidad de Madrid", + "2008-05-30": "D\u00eda de Canarias", + "2008-05-31": "D\u00eda de Castilla La Mancha", + "2008-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2008-06-24": "San Juan", + "2008-07-25": "D\u00eda Nacional de Galicia", + "2008-07-28": "D\u00eda de las Instituciones de Cantabria", + "2008-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2008-08-15": "Asunci\u00f3n de la Virgen", + "2008-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2008-09-06": "D\u00eda de Elcano", + "2008-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2008-09-11": "D\u00eda Nacional de Catalunya", + "2008-09-15": "D\u00eda de la Bien Aparecida", + "2008-09-17": "D\u00eda de Melilla", + "2008-10-09": "D\u00eda de la Comunidad Valenciana", + "2008-10-12": "D\u00eda de la Hispanidad", + "2008-11-01": "Todos los Santos", + "2008-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2008-12-08": "La Inmaculada Concepci\u00f3n", + "2008-12-25": "Navidad", + "2008-12-26": "San Esteban", + "2009-01-01": "A\u00f1o nuevo", + "2009-01-06": "Epifan\u00eda del Se\u00f1or", + "2009-02-28": "D\u00eda de Andalucia", + "2009-03-01": "D\u00eda de las Islas Baleares", + "2009-03-19": "San Jos\u00e9", + "2009-04-09": "Jueves Santo", + "2009-04-10": "Viernes Santo", + "2009-04-13": "Lunes de Pascua", + "2009-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2009-05-01": "D\u00eda del Trabajador", + "2009-05-02": "D\u00eda de Comunidad de Madrid", + "2009-05-30": "D\u00eda de Canarias", + "2009-05-31": "D\u00eda de Castilla La Mancha", + "2009-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2009-06-24": "San Juan", + "2009-07-25": "D\u00eda Nacional de Galicia", + "2009-07-28": "D\u00eda de las Instituciones de Cantabria", + "2009-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2009-08-15": "Asunci\u00f3n de la Virgen", + "2009-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2009-09-06": "D\u00eda de Elcano", + "2009-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2009-09-11": "D\u00eda Nacional de Catalunya", + "2009-09-15": "D\u00eda de la Bien Aparecida", + "2009-09-17": "D\u00eda de Melilla", + "2009-10-09": "D\u00eda de la Comunidad Valenciana", + "2009-10-12": "D\u00eda de la Hispanidad", + "2009-11-01": "Todos los Santos", + "2009-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2009-12-08": "La Inmaculada Concepci\u00f3n", + "2009-12-25": "Navidad", + "2009-12-26": "San Esteban", + "2010-01-01": "A\u00f1o nuevo", + "2010-01-06": "Epifan\u00eda del Se\u00f1or", + "2010-02-28": "D\u00eda de Andalucia", + "2010-03-01": "D\u00eda de las Islas Baleares", + "2010-03-19": "San Jos\u00e9", + "2010-04-01": "Jueves Santo", + "2010-04-02": "Viernes Santo", + "2010-04-05": "Lunes de Pascua", + "2010-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2010-05-01": "D\u00eda del Trabajador", + "2010-05-02": "D\u00eda de Comunidad de Madrid", + "2010-05-30": "D\u00eda de Canarias", + "2010-05-31": "D\u00eda de Castilla La Mancha", + "2010-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2010-06-24": "San Juan", + "2010-07-25": "D\u00eda Nacional de Galicia", + "2010-07-28": "D\u00eda de las Instituciones de Cantabria", + "2010-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2010-08-15": "Asunci\u00f3n de la Virgen", + "2010-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2010-09-06": "D\u00eda de Elcano", + "2010-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2010-09-11": "D\u00eda Nacional de Catalunya", + "2010-09-15": "D\u00eda de la Bien Aparecida", + "2010-09-17": "D\u00eda de Melilla", + "2010-10-09": "D\u00eda de la Comunidad Valenciana", + "2010-10-12": "D\u00eda de la Hispanidad", + "2010-11-01": "Todos los Santos", + "2010-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2010-12-08": "La Inmaculada Concepci\u00f3n", + "2010-12-25": "Navidad", + "2010-12-26": "San Esteban", + "2011-01-01": "A\u00f1o nuevo", + "2011-01-06": "Epifan\u00eda del Se\u00f1or", + "2011-02-28": "D\u00eda de Andalucia", + "2011-03-01": "D\u00eda de las Islas Baleares", + "2011-03-19": "San Jos\u00e9", + "2011-04-21": "Jueves Santo", + "2011-04-22": "Viernes Santo", + "2011-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2011-04-25": "Lunes de Pascua", + "2011-05-01": "D\u00eda del Trabajador", + "2011-05-02": "D\u00eda de Comunidad de Madrid", + "2011-05-30": "D\u00eda de Canarias", + "2011-05-31": "D\u00eda de Castilla La Mancha", + "2011-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2011-06-24": "San Juan", + "2011-07-25": "D\u00eda Nacional de Galicia", + "2011-07-28": "D\u00eda de las Instituciones de Cantabria", + "2011-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2011-08-15": "Asunci\u00f3n de la Virgen", + "2011-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2011-09-06": "D\u00eda de Elcano", + "2011-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2011-09-11": "D\u00eda Nacional de Catalunya", + "2011-09-15": "D\u00eda de la Bien Aparecida", + "2011-09-17": "D\u00eda de Melilla", + "2011-10-09": "D\u00eda de la Comunidad Valenciana", + "2011-10-12": "D\u00eda de la Hispanidad", + "2011-10-25": "D\u00eda del Pa\u00eds Vasco", + "2011-11-01": "Todos los Santos", + "2011-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2011-12-08": "La Inmaculada Concepci\u00f3n", + "2011-12-25": "Navidad", + "2011-12-26": "San Esteban", + "2012-01-01": "A\u00f1o nuevo", + "2012-01-06": "Epifan\u00eda del Se\u00f1or", + "2012-02-28": "D\u00eda de Andalucia", + "2012-03-01": "D\u00eda de las Islas Baleares", + "2012-03-19": "San Jos\u00e9", + "2012-04-05": "Jueves Santo", + "2012-04-06": "Viernes Santo", + "2012-04-09": "Lunes de Pascua", + "2012-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2012-05-01": "D\u00eda del Trabajador", + "2012-05-02": "D\u00eda de Comunidad de Madrid", + "2012-05-30": "D\u00eda de Canarias", + "2012-05-31": "D\u00eda de Castilla La Mancha", + "2012-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2012-06-24": "San Juan", + "2012-07-25": "D\u00eda Nacional de Galicia", + "2012-07-28": "D\u00eda de las Instituciones de Cantabria", + "2012-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2012-08-15": "Asunci\u00f3n de la Virgen", + "2012-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2012-09-06": "D\u00eda de Elcano", + "2012-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2012-09-11": "D\u00eda Nacional de Catalunya", + "2012-09-15": "D\u00eda de la Bien Aparecida", + "2012-09-17": "D\u00eda de Melilla", + "2012-10-09": "D\u00eda de la Comunidad Valenciana", + "2012-10-12": "D\u00eda de la Hispanidad", + "2012-10-25": "D\u00eda del Pa\u00eds Vasco", + "2012-11-01": "Todos los Santos", + "2012-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2012-12-08": "La Inmaculada Concepci\u00f3n", + "2012-12-25": "Navidad", + "2012-12-26": "San Esteban", + "2013-01-01": "A\u00f1o nuevo", + "2013-01-06": "Epifan\u00eda del Se\u00f1or", + "2013-02-28": "D\u00eda de Andalucia", + "2013-03-01": "D\u00eda de las Islas Baleares", + "2013-03-19": "San Jos\u00e9", + "2013-03-28": "Jueves Santo", + "2013-03-29": "Viernes Santo", + "2013-04-01": "Lunes de Pascua", + "2013-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2013-05-01": "D\u00eda del Trabajador", + "2013-05-02": "D\u00eda de Comunidad de Madrid", + "2013-05-30": "D\u00eda de Canarias", + "2013-05-31": "D\u00eda de Castilla La Mancha", + "2013-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2013-06-24": "San Juan", + "2013-07-25": "D\u00eda Nacional de Galicia", + "2013-07-28": "D\u00eda de las Instituciones de Cantabria", + "2013-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2013-08-15": "Asunci\u00f3n de la Virgen", + "2013-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2013-09-06": "D\u00eda de Elcano", + "2013-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2013-09-11": "D\u00eda Nacional de Catalunya", + "2013-09-15": "D\u00eda de la Bien Aparecida", + "2013-09-17": "D\u00eda de Melilla", + "2013-10-09": "D\u00eda de la Comunidad Valenciana", + "2013-10-12": "D\u00eda de la Hispanidad", + "2013-10-25": "D\u00eda del Pa\u00eds Vasco", + "2013-11-01": "Todos los Santos", + "2013-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2013-12-08": "La Inmaculada Concepci\u00f3n", + "2013-12-25": "Navidad", + "2013-12-26": "San Esteban", + "2014-01-01": "A\u00f1o nuevo", + "2014-01-06": "Epifan\u00eda del Se\u00f1or", + "2014-02-28": "D\u00eda de Andalucia", + "2014-03-01": "D\u00eda de las Islas Baleares", + "2014-03-19": "San Jos\u00e9", + "2014-04-17": "Jueves Santo", + "2014-04-18": "Viernes Santo", + "2014-04-21": "Lunes de Pascua", + "2014-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2014-05-01": "D\u00eda del Trabajador", + "2014-05-02": "D\u00eda de Comunidad de Madrid", + "2014-05-30": "D\u00eda de Canarias", + "2014-05-31": "D\u00eda de Castilla La Mancha", + "2014-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2014-06-24": "San Juan", + "2014-07-25": "D\u00eda Nacional de Galicia", + "2014-07-28": "D\u00eda de las Instituciones de Cantabria", + "2014-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2014-08-15": "Asunci\u00f3n de la Virgen", + "2014-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2014-09-06": "D\u00eda de Elcano", + "2014-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2014-09-11": "D\u00eda Nacional de Catalunya", + "2014-09-15": "D\u00eda de la Bien Aparecida", + "2014-09-17": "D\u00eda de Melilla", + "2014-10-09": "D\u00eda de la Comunidad Valenciana", + "2014-10-12": "D\u00eda de la Hispanidad", + "2014-11-01": "Todos los Santos", + "2014-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2014-12-08": "La Inmaculada Concepci\u00f3n", + "2014-12-25": "Navidad", + "2014-12-26": "San Esteban", + "2015-01-01": "A\u00f1o nuevo", + "2015-01-06": "Epifan\u00eda del Se\u00f1or", + "2015-02-28": "D\u00eda de Andalucia", + "2015-03-01": "D\u00eda de las Islas Baleares", + "2015-03-19": "San Jos\u00e9", + "2015-04-02": "Jueves Santo", + "2015-04-03": "Viernes Santo", + "2015-04-06": "Lunes de Pascua", + "2015-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2015-05-01": "D\u00eda del Trabajador", + "2015-05-02": "D\u00eda de Comunidad de Madrid", + "2015-05-30": "D\u00eda de Canarias", + "2015-05-31": "D\u00eda de Castilla La Mancha", + "2015-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2015-06-24": "San Juan", + "2015-07-25": "D\u00eda Nacional de Galicia", + "2015-07-28": "D\u00eda de las Instituciones de Cantabria", + "2015-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2015-08-15": "Asunci\u00f3n de la Virgen", + "2015-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2015-09-06": "D\u00eda de Elcano", + "2015-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2015-09-11": "D\u00eda Nacional de Catalunya", + "2015-09-15": "D\u00eda de la Bien Aparecida", + "2015-09-17": "D\u00eda de Melilla", + "2015-10-09": "D\u00eda de la Comunidad Valenciana", + "2015-10-12": "D\u00eda de la Hispanidad", + "2015-11-01": "Todos los Santos", + "2015-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2015-12-08": "La Inmaculada Concepci\u00f3n", + "2015-12-25": "Navidad", + "2015-12-26": "San Esteban", + "2016-01-01": "A\u00f1o nuevo", + "2016-01-06": "Epifan\u00eda del Se\u00f1or", + "2016-02-28": "D\u00eda de Andalucia", + "2016-03-01": "D\u00eda de las Islas Baleares", + "2016-03-19": "San Jos\u00e9", + "2016-03-24": "Jueves Santo", + "2016-03-25": "Viernes Santo", + "2016-03-28": "Lunes de Pascua", + "2016-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2016-05-01": "D\u00eda del Trabajador", + "2016-05-02": "D\u00eda de Comunidad de Madrid", + "2016-05-30": "D\u00eda de Canarias", + "2016-05-31": "D\u00eda de Castilla La Mancha", + "2016-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2016-06-24": "San Juan", + "2016-07-25": "D\u00eda Nacional de Galicia", + "2016-07-28": "D\u00eda de las Instituciones de Cantabria", + "2016-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2016-08-15": "Asunci\u00f3n de la Virgen", + "2016-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2016-09-06": "D\u00eda de Elcano", + "2016-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2016-09-11": "D\u00eda Nacional de Catalunya", + "2016-09-15": "D\u00eda de la Bien Aparecida", + "2016-09-17": "D\u00eda de Melilla", + "2016-10-09": "D\u00eda de la Comunidad Valenciana", + "2016-10-12": "D\u00eda de la Hispanidad", + "2016-11-01": "Todos los Santos", + "2016-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2016-12-08": "La Inmaculada Concepci\u00f3n", + "2016-12-25": "Navidad", + "2016-12-26": "San Esteban", + "2017-01-01": "A\u00f1o nuevo", + "2017-01-06": "Epifan\u00eda del Se\u00f1or", + "2017-02-28": "D\u00eda de Andalucia", + "2017-03-01": "D\u00eda de las Islas Baleares", + "2017-03-19": "San Jos\u00e9", + "2017-04-13": "Jueves Santo", + "2017-04-14": "Viernes Santo", + "2017-04-17": "Lunes de Pascua", + "2017-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2017-05-01": "D\u00eda del Trabajador", + "2017-05-02": "D\u00eda de Comunidad de Madrid", + "2017-05-30": "D\u00eda de Canarias", + "2017-05-31": "D\u00eda de Castilla La Mancha", + "2017-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2017-06-24": "San Juan", + "2017-07-25": "D\u00eda Nacional de Galicia", + "2017-07-28": "D\u00eda de las Instituciones de Cantabria", + "2017-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2017-08-15": "Asunci\u00f3n de la Virgen", + "2017-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2017-09-06": "D\u00eda de Elcano", + "2017-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2017-09-11": "D\u00eda Nacional de Catalunya", + "2017-09-15": "D\u00eda de la Bien Aparecida", + "2017-09-17": "D\u00eda de Melilla", + "2017-10-09": "D\u00eda de la Comunidad Valenciana", + "2017-10-12": "D\u00eda de la Hispanidad", + "2017-11-01": "Todos los Santos", + "2017-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2017-12-08": "La Inmaculada Concepci\u00f3n", + "2017-12-25": "Navidad", + "2017-12-26": "San Esteban", + "2018-01-01": "A\u00f1o nuevo", + "2018-01-06": "Epifan\u00eda del Se\u00f1or", + "2018-02-28": "D\u00eda de Andalucia", + "2018-03-01": "D\u00eda de las Islas Baleares", + "2018-03-19": "San Jos\u00e9", + "2018-03-29": "Jueves Santo", + "2018-03-30": "Viernes Santo", + "2018-04-02": "Lunes de Pascua", + "2018-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2018-05-01": "D\u00eda del Trabajador", + "2018-05-02": "D\u00eda de Comunidad de Madrid", + "2018-05-30": "D\u00eda de Canarias", + "2018-05-31": "D\u00eda de Castilla La Mancha", + "2018-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2018-06-24": "San Juan", + "2018-07-25": "D\u00eda Nacional de Galicia", + "2018-07-28": "D\u00eda de las Instituciones de Cantabria", + "2018-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2018-08-15": "Asunci\u00f3n de la Virgen", + "2018-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2018-09-06": "D\u00eda de Elcano", + "2018-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2018-09-11": "D\u00eda Nacional de Catalunya", + "2018-09-15": "D\u00eda de la Bien Aparecida", + "2018-09-17": "D\u00eda de Melilla", + "2018-10-09": "D\u00eda de la Comunidad Valenciana", + "2018-10-12": "D\u00eda de la Hispanidad", + "2018-11-01": "Todos los Santos", + "2018-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2018-12-08": "La Inmaculada Concepci\u00f3n", + "2018-12-25": "Navidad", + "2018-12-26": "San Esteban", + "2019-01-01": "A\u00f1o nuevo", + "2019-01-06": "Epifan\u00eda del Se\u00f1or", + "2019-02-28": "D\u00eda de Andalucia", + "2019-03-01": "D\u00eda de las Islas Baleares", + "2019-03-19": "San Jos\u00e9", + "2019-04-18": "Jueves Santo", + "2019-04-19": "Viernes Santo", + "2019-04-22": "Lunes de Pascua", + "2019-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2019-05-01": "D\u00eda del Trabajador", + "2019-05-02": "D\u00eda de Comunidad de Madrid", + "2019-05-30": "D\u00eda de Canarias", + "2019-05-31": "D\u00eda de Castilla La Mancha", + "2019-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2019-06-24": "San Juan", + "2019-07-25": "D\u00eda Nacional de Galicia", + "2019-07-28": "D\u00eda de las Instituciones de Cantabria", + "2019-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2019-08-15": "Asunci\u00f3n de la Virgen", + "2019-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2019-09-06": "D\u00eda de Elcano", + "2019-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2019-09-11": "D\u00eda Nacional de Catalunya", + "2019-09-15": "D\u00eda de la Bien Aparecida", + "2019-09-17": "D\u00eda de Melilla", + "2019-10-09": "D\u00eda de la Comunidad Valenciana", + "2019-10-12": "D\u00eda de la Hispanidad", + "2019-11-01": "Todos los Santos", + "2019-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2019-12-08": "La Inmaculada Concepci\u00f3n", + "2019-12-25": "Navidad", + "2019-12-26": "San Esteban", + "2020-01-01": "A\u00f1o nuevo", + "2020-01-06": "Epifan\u00eda del Se\u00f1or", + "2020-02-28": "D\u00eda de Andalucia", + "2020-03-01": "D\u00eda de las Islas Baleares", + "2020-03-19": "San Jos\u00e9", + "2020-04-09": "Jueves Santo", + "2020-04-10": "Viernes Santo", + "2020-04-13": "Lunes de Pascua", + "2020-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2020-05-01": "D\u00eda del Trabajador", + "2020-05-02": "D\u00eda de Comunidad de Madrid", + "2020-05-30": "D\u00eda de Canarias", + "2020-05-31": "D\u00eda de Castilla La Mancha", + "2020-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2020-06-24": "San Juan", + "2020-07-25": "D\u00eda Nacional de Galicia", + "2020-07-28": "D\u00eda de las Instituciones de Cantabria", + "2020-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2020-08-15": "Asunci\u00f3n de la Virgen", + "2020-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2020-09-06": "D\u00eda de Elcano", + "2020-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2020-09-11": "D\u00eda Nacional de Catalunya", + "2020-09-15": "D\u00eda de la Bien Aparecida", + "2020-09-17": "D\u00eda de Melilla", + "2020-10-09": "D\u00eda de la Comunidad Valenciana", + "2020-10-12": "D\u00eda de la Hispanidad", + "2020-11-01": "Todos los Santos", + "2020-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2020-12-08": "La Inmaculada Concepci\u00f3n", + "2020-12-25": "Navidad", + "2020-12-26": "San Esteban", + "2021-01-01": "A\u00f1o nuevo", + "2021-01-06": "Epifan\u00eda del Se\u00f1or", + "2021-02-28": "D\u00eda de Andalucia", + "2021-03-01": "D\u00eda de las Islas Baleares", + "2021-03-19": "San Jos\u00e9", + "2021-04-01": "Jueves Santo", + "2021-04-02": "Viernes Santo", + "2021-04-05": "Lunes de Pascua", + "2021-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2021-05-01": "D\u00eda del Trabajador", + "2021-05-02": "D\u00eda de Comunidad de Madrid", + "2021-05-30": "D\u00eda de Canarias", + "2021-05-31": "D\u00eda de Castilla La Mancha", + "2021-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2021-06-24": "San Juan", + "2021-07-25": "D\u00eda Nacional de Galicia", + "2021-07-28": "D\u00eda de las Instituciones de Cantabria", + "2021-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2021-08-15": "Asunci\u00f3n de la Virgen", + "2021-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2021-09-06": "D\u00eda de Elcano", + "2021-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2021-09-11": "D\u00eda Nacional de Catalunya", + "2021-09-15": "D\u00eda de la Bien Aparecida", + "2021-09-17": "D\u00eda de Melilla", + "2021-10-09": "D\u00eda de la Comunidad Valenciana", + "2021-10-12": "D\u00eda de la Hispanidad", + "2021-11-01": "Todos los Santos", + "2021-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2021-12-08": "La Inmaculada Concepci\u00f3n", + "2021-12-25": "Navidad", + "2021-12-26": "San Esteban", + "2022-01-01": "A\u00f1o nuevo", + "2022-01-06": "Epifan\u00eda del Se\u00f1or", + "2022-02-28": "D\u00eda de Andalucia", + "2022-03-01": "D\u00eda de las Islas Baleares", + "2022-03-19": "San Jos\u00e9", + "2022-04-14": "Jueves Santo", + "2022-04-15": "Viernes Santo", + "2022-04-18": "Lunes de Pascua", + "2022-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2022-05-01": "D\u00eda del Trabajador", + "2022-05-02": "D\u00eda de Comunidad de Madrid; D\u00eda del Trabajador (Trasladado)", + "2022-05-03": "Eid al-Fitr* (*estimated)", + "2022-05-17": "D\u00eda de las letras Gallegas", + "2022-05-30": "D\u00eda de Canarias", + "2022-05-31": "D\u00eda de Castilla La Mancha", + "2022-06-06": "D\u00eda de la Pascua Granada", + "2022-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2022-06-16": "Corpus Christi", + "2022-06-24": "San Juan", + "2022-07-09": "Eid al-Adha* (*estimated)", + "2022-07-11": "Eid al-Adha* (*estimated)", + "2022-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2022-07-28": "D\u00eda de las Instituciones de Cantabria", + "2022-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2022-08-15": "Asunci\u00f3n de la Virgen", + "2022-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2022-09-06": "D\u00eda de Elcano", + "2022-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2022-09-11": "D\u00eda Nacional de Catalunya", + "2022-09-15": "D\u00eda de la Bien Aparecida", + "2022-09-17": "D\u00eda de Melilla", + "2022-10-12": "D\u00eda de la Hispanidad", + "2022-11-01": "Todos los Santos", + "2022-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2022-12-08": "La Inmaculada Concepci\u00f3n", + "2022-12-25": "Navidad", + "2022-12-26": "Navidad (Trasladado); San Esteban", + "2023-01-01": "A\u00f1o nuevo", + "2023-01-02": "A\u00f1o nuevo (Trasladado)", + "2023-01-06": "Epifan\u00eda del Se\u00f1or", + "2023-02-21": "Carnaval", + "2023-02-28": "D\u00eda de Andalucia", + "2023-03-01": "D\u00eda de las Islas Baleares", + "2023-03-19": "San Jos\u00e9", + "2023-03-20": "San Jos\u00e9 (Trasladado)", + "2023-04-06": "Jueves Santo", + "2023-04-07": "Viernes Santo", + "2023-04-10": "Lunes de Pascua", + "2023-04-21": "Eid al-Fitr* (*estimated)", + "2023-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2023-05-01": "D\u00eda del Trabajador", + "2023-05-02": "D\u00eda de Comunidad de Madrid", + "2023-05-17": "D\u00eda de las letras Gallegas", + "2023-05-30": "D\u00eda de Canarias", + "2023-05-31": "D\u00eda de Castilla La Mancha", + "2023-06-08": "Corpus Christi", + "2023-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2023-06-24": "San Juan", + "2023-06-29": "Eid al-Adha* (*estimated)", + "2023-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2023-07-28": "D\u00eda de las Instituciones de Cantabria", + "2023-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2023-08-15": "Asunci\u00f3n de la Virgen", + "2023-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2023-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2023-09-11": "D\u00eda Nacional de Catalunya", + "2023-09-15": "D\u00eda de la Bien Aparecida", + "2023-09-17": "D\u00eda de Melilla", + "2023-10-12": "D\u00eda de la Hispanidad", + "2023-11-01": "Todos los Santos", + "2023-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2023-12-08": "La Inmaculada Concepci\u00f3n", + "2023-12-25": "Navidad", + "2023-12-26": "San Esteban", + "2024-01-01": "A\u00f1o nuevo", + "2024-01-06": "Epifan\u00eda del Se\u00f1or", + "2024-02-28": "D\u00eda de Andalucia", + "2024-03-01": "D\u00eda de las Islas Baleares", + "2024-03-28": "Jueves Santo", + "2024-03-29": "Viernes Santo", + "2024-04-01": "Lunes de Pascua", + "2024-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2024-05-01": "D\u00eda del Trabajador", + "2024-05-02": "D\u00eda de Comunidad de Madrid", + "2024-05-17": "D\u00eda de las letras Gallegas", + "2024-05-30": "Corpus Christi; D\u00eda de Canarias", + "2024-05-31": "D\u00eda de Castilla La Mancha", + "2024-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2024-06-24": "San Juan", + "2024-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2024-07-28": "D\u00eda de las Instituciones de Cantabria", + "2024-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2024-08-15": "Asunci\u00f3n de la Virgen", + "2024-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2024-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2024-09-11": "D\u00eda Nacional de Catalunya", + "2024-09-15": "D\u00eda de la Bien Aparecida", + "2024-09-17": "D\u00eda de Melilla", + "2024-10-12": "D\u00eda de la Hispanidad", + "2024-11-01": "Todos los Santos", + "2024-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2024-12-08": "La Inmaculada Concepci\u00f3n", + "2024-12-25": "Navidad", + "2024-12-26": "San Esteban", + "2025-01-01": "A\u00f1o nuevo", + "2025-01-06": "Epifan\u00eda del Se\u00f1or", + "2025-02-28": "D\u00eda de Andalucia", + "2025-03-01": "D\u00eda de las Islas Baleares", + "2025-04-17": "Jueves Santo", + "2025-04-18": "Viernes Santo", + "2025-04-21": "Lunes de Pascua", + "2025-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2025-05-01": "D\u00eda del Trabajador", + "2025-05-02": "D\u00eda de Comunidad de Madrid", + "2025-05-17": "D\u00eda de las letras Gallegas", + "2025-05-30": "D\u00eda de Canarias", + "2025-05-31": "D\u00eda de Castilla La Mancha", + "2025-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2025-06-19": "Corpus Christi", + "2025-06-24": "San Juan", + "2025-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2025-07-28": "D\u00eda de las Instituciones de Cantabria", + "2025-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2025-08-15": "Asunci\u00f3n de la Virgen", + "2025-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2025-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2025-09-11": "D\u00eda Nacional de Catalunya", + "2025-09-15": "D\u00eda de la Bien Aparecida", + "2025-09-17": "D\u00eda de Melilla", + "2025-10-12": "D\u00eda de la Hispanidad", + "2025-11-01": "Todos los Santos", + "2025-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2025-12-08": "La Inmaculada Concepci\u00f3n", + "2025-12-25": "Navidad", + "2025-12-26": "San Esteban", + "2026-01-01": "A\u00f1o nuevo", + "2026-01-06": "Epifan\u00eda del Se\u00f1or", + "2026-02-28": "D\u00eda de Andalucia", + "2026-03-01": "D\u00eda de las Islas Baleares", + "2026-04-02": "Jueves Santo", + "2026-04-03": "Viernes Santo", + "2026-04-06": "Lunes de Pascua", + "2026-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2026-05-01": "D\u00eda del Trabajador", + "2026-05-02": "D\u00eda de Comunidad de Madrid", + "2026-05-17": "D\u00eda de las letras Gallegas", + "2026-05-30": "D\u00eda de Canarias", + "2026-05-31": "D\u00eda de Castilla La Mancha", + "2026-06-04": "Corpus Christi", + "2026-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2026-06-24": "San Juan", + "2026-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2026-07-28": "D\u00eda de las Instituciones de Cantabria", + "2026-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2026-08-15": "Asunci\u00f3n de la Virgen", + "2026-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2026-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2026-09-11": "D\u00eda Nacional de Catalunya", + "2026-09-15": "D\u00eda de la Bien Aparecida", + "2026-09-17": "D\u00eda de Melilla", + "2026-10-12": "D\u00eda de la Hispanidad", + "2026-11-01": "Todos los Santos", + "2026-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2026-12-08": "La Inmaculada Concepci\u00f3n", + "2026-12-25": "Navidad", + "2026-12-26": "San Esteban", + "2027-01-01": "A\u00f1o nuevo", + "2027-01-06": "Epifan\u00eda del Se\u00f1or", + "2027-02-28": "D\u00eda de Andalucia", + "2027-03-01": "D\u00eda de las Islas Baleares", + "2027-03-25": "Jueves Santo", + "2027-03-26": "Viernes Santo", + "2027-03-29": "Lunes de Pascua", + "2027-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2027-05-01": "D\u00eda del Trabajador", + "2027-05-02": "D\u00eda de Comunidad de Madrid", + "2027-05-17": "D\u00eda de las letras Gallegas", + "2027-05-27": "Corpus Christi", + "2027-05-30": "D\u00eda de Canarias", + "2027-05-31": "D\u00eda de Castilla La Mancha", + "2027-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2027-06-24": "San Juan", + "2027-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2027-07-28": "D\u00eda de las Instituciones de Cantabria", + "2027-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2027-08-15": "Asunci\u00f3n de la Virgen", + "2027-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2027-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2027-09-11": "D\u00eda Nacional de Catalunya", + "2027-09-15": "D\u00eda de la Bien Aparecida", + "2027-09-17": "D\u00eda de Melilla", + "2027-10-12": "D\u00eda de la Hispanidad", + "2027-11-01": "Todos los Santos", + "2027-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2027-12-08": "La Inmaculada Concepci\u00f3n", + "2027-12-25": "Navidad", + "2027-12-26": "San Esteban", + "2028-01-01": "A\u00f1o nuevo", + "2028-01-06": "Epifan\u00eda del Se\u00f1or", + "2028-02-28": "D\u00eda de Andalucia", + "2028-03-01": "D\u00eda de las Islas Baleares", + "2028-04-13": "Jueves Santo", + "2028-04-14": "Viernes Santo", + "2028-04-17": "Lunes de Pascua", + "2028-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2028-05-01": "D\u00eda del Trabajador", + "2028-05-02": "D\u00eda de Comunidad de Madrid", + "2028-05-17": "D\u00eda de las letras Gallegas", + "2028-05-30": "D\u00eda de Canarias", + "2028-05-31": "D\u00eda de Castilla La Mancha", + "2028-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2028-06-15": "Corpus Christi", + "2028-06-24": "San Juan", + "2028-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2028-07-28": "D\u00eda de las Instituciones de Cantabria", + "2028-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2028-08-15": "Asunci\u00f3n de la Virgen", + "2028-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2028-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2028-09-11": "D\u00eda Nacional de Catalunya", + "2028-09-15": "D\u00eda de la Bien Aparecida", + "2028-09-17": "D\u00eda de Melilla", + "2028-10-12": "D\u00eda de la Hispanidad", + "2028-11-01": "Todos los Santos", + "2028-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2028-12-08": "La Inmaculada Concepci\u00f3n", + "2028-12-25": "Navidad", + "2028-12-26": "San Esteban", + "2029-01-01": "A\u00f1o nuevo", + "2029-01-06": "Epifan\u00eda del Se\u00f1or", + "2029-02-28": "D\u00eda de Andalucia", + "2029-03-01": "D\u00eda de las Islas Baleares", + "2029-03-29": "Jueves Santo", + "2029-03-30": "Viernes Santo", + "2029-04-02": "Lunes de Pascua", + "2029-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2029-05-01": "D\u00eda del Trabajador", + "2029-05-02": "D\u00eda de Comunidad de Madrid", + "2029-05-17": "D\u00eda de las letras Gallegas", + "2029-05-30": "D\u00eda de Canarias", + "2029-05-31": "Corpus Christi; D\u00eda de Castilla La Mancha", + "2029-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2029-06-24": "San Juan", + "2029-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2029-07-28": "D\u00eda de las Instituciones de Cantabria", + "2029-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2029-08-15": "Asunci\u00f3n de la Virgen", + "2029-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2029-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2029-09-11": "D\u00eda Nacional de Catalunya", + "2029-09-15": "D\u00eda de la Bien Aparecida", + "2029-09-17": "D\u00eda de Melilla", + "2029-10-12": "D\u00eda de la Hispanidad", + "2029-11-01": "Todos los Santos", + "2029-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2029-12-08": "La Inmaculada Concepci\u00f3n", + "2029-12-25": "Navidad", + "2029-12-26": "San Esteban", + "2030-01-01": "A\u00f1o nuevo", + "2030-01-06": "Epifan\u00eda del Se\u00f1or", + "2030-02-28": "D\u00eda de Andalucia", + "2030-03-01": "D\u00eda de las Islas Baleares", + "2030-04-18": "Jueves Santo", + "2030-04-19": "Viernes Santo", + "2030-04-22": "Lunes de Pascua", + "2030-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2030-05-01": "D\u00eda del Trabajador", + "2030-05-02": "D\u00eda de Comunidad de Madrid", + "2030-05-17": "D\u00eda de las letras Gallegas", + "2030-05-30": "D\u00eda de Canarias", + "2030-05-31": "D\u00eda de Castilla La Mancha", + "2030-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2030-06-20": "Corpus Christi", + "2030-06-24": "San Juan", + "2030-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2030-07-28": "D\u00eda de las Instituciones de Cantabria", + "2030-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2030-08-15": "Asunci\u00f3n de la Virgen", + "2030-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2030-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2030-09-11": "D\u00eda Nacional de Catalunya", + "2030-09-15": "D\u00eda de la Bien Aparecida", + "2030-09-17": "D\u00eda de Melilla", + "2030-10-12": "D\u00eda de la Hispanidad", + "2030-11-01": "Todos los Santos", + "2030-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2030-12-08": "La Inmaculada Concepci\u00f3n", + "2030-12-25": "Navidad", + "2030-12-26": "San Esteban", + "2031-01-01": "A\u00f1o nuevo", + "2031-01-06": "Epifan\u00eda del Se\u00f1or", + "2031-02-28": "D\u00eda de Andalucia", + "2031-03-01": "D\u00eda de las Islas Baleares", + "2031-04-10": "Jueves Santo", + "2031-04-11": "Viernes Santo", + "2031-04-14": "Lunes de Pascua", + "2031-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2031-05-01": "D\u00eda del Trabajador", + "2031-05-02": "D\u00eda de Comunidad de Madrid", + "2031-05-17": "D\u00eda de las letras Gallegas", + "2031-05-30": "D\u00eda de Canarias", + "2031-05-31": "D\u00eda de Castilla La Mancha", + "2031-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2031-06-12": "Corpus Christi", + "2031-06-24": "San Juan", + "2031-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2031-07-28": "D\u00eda de las Instituciones de Cantabria", + "2031-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2031-08-15": "Asunci\u00f3n de la Virgen", + "2031-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2031-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2031-09-11": "D\u00eda Nacional de Catalunya", + "2031-09-15": "D\u00eda de la Bien Aparecida", + "2031-09-17": "D\u00eda de Melilla", + "2031-10-12": "D\u00eda de la Hispanidad", + "2031-11-01": "Todos los Santos", + "2031-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2031-12-08": "La Inmaculada Concepci\u00f3n", + "2031-12-25": "Navidad", + "2031-12-26": "San Esteban", + "2032-01-01": "A\u00f1o nuevo", + "2032-01-06": "Epifan\u00eda del Se\u00f1or", + "2032-02-28": "D\u00eda de Andalucia", + "2032-03-01": "D\u00eda de las Islas Baleares", + "2032-03-25": "Jueves Santo", + "2032-03-26": "Viernes Santo", + "2032-03-29": "Lunes de Pascua", + "2032-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2032-05-01": "D\u00eda del Trabajador", + "2032-05-02": "D\u00eda de Comunidad de Madrid", + "2032-05-17": "D\u00eda de las letras Gallegas", + "2032-05-27": "Corpus Christi", + "2032-05-30": "D\u00eda de Canarias", + "2032-05-31": "D\u00eda de Castilla La Mancha", + "2032-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2032-06-24": "San Juan", + "2032-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2032-07-28": "D\u00eda de las Instituciones de Cantabria", + "2032-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2032-08-15": "Asunci\u00f3n de la Virgen", + "2032-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2032-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2032-09-11": "D\u00eda Nacional de Catalunya", + "2032-09-15": "D\u00eda de la Bien Aparecida", + "2032-09-17": "D\u00eda de Melilla", + "2032-10-12": "D\u00eda de la Hispanidad", + "2032-11-01": "Todos los Santos", + "2032-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2032-12-08": "La Inmaculada Concepci\u00f3n", + "2032-12-25": "Navidad", + "2032-12-26": "San Esteban", + "2033-01-01": "A\u00f1o nuevo", + "2033-01-06": "Epifan\u00eda del Se\u00f1or", + "2033-02-28": "D\u00eda de Andalucia", + "2033-03-01": "D\u00eda de las Islas Baleares", + "2033-04-14": "Jueves Santo", + "2033-04-15": "Viernes Santo", + "2033-04-18": "Lunes de Pascua", + "2033-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2033-05-01": "D\u00eda del Trabajador", + "2033-05-02": "D\u00eda de Comunidad de Madrid", + "2033-05-17": "D\u00eda de las letras Gallegas", + "2033-05-30": "D\u00eda de Canarias", + "2033-05-31": "D\u00eda de Castilla La Mancha", + "2033-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2033-06-16": "Corpus Christi", + "2033-06-24": "San Juan", + "2033-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2033-07-28": "D\u00eda de las Instituciones de Cantabria", + "2033-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2033-08-15": "Asunci\u00f3n de la Virgen", + "2033-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2033-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2033-09-11": "D\u00eda Nacional de Catalunya", + "2033-09-15": "D\u00eda de la Bien Aparecida", + "2033-09-17": "D\u00eda de Melilla", + "2033-10-12": "D\u00eda de la Hispanidad", + "2033-11-01": "Todos los Santos", + "2033-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2033-12-08": "La Inmaculada Concepci\u00f3n", + "2033-12-25": "Navidad", + "2033-12-26": "San Esteban", + "2034-01-01": "A\u00f1o nuevo", + "2034-01-06": "Epifan\u00eda del Se\u00f1or", + "2034-02-28": "D\u00eda de Andalucia", + "2034-03-01": "D\u00eda de las Islas Baleares", + "2034-04-06": "Jueves Santo", + "2034-04-07": "Viernes Santo", + "2034-04-10": "Lunes de Pascua", + "2034-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2034-05-01": "D\u00eda del Trabajador", + "2034-05-02": "D\u00eda de Comunidad de Madrid", + "2034-05-17": "D\u00eda de las letras Gallegas", + "2034-05-30": "D\u00eda de Canarias", + "2034-05-31": "D\u00eda de Castilla La Mancha", + "2034-06-08": "Corpus Christi", + "2034-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2034-06-24": "San Juan", + "2034-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2034-07-28": "D\u00eda de las Instituciones de Cantabria", + "2034-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2034-08-15": "Asunci\u00f3n de la Virgen", + "2034-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2034-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2034-09-11": "D\u00eda Nacional de Catalunya", + "2034-09-15": "D\u00eda de la Bien Aparecida", + "2034-09-17": "D\u00eda de Melilla", + "2034-10-12": "D\u00eda de la Hispanidad", + "2034-11-01": "Todos los Santos", + "2034-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2034-12-08": "La Inmaculada Concepci\u00f3n", + "2034-12-25": "Navidad", + "2034-12-26": "San Esteban", + "2035-01-01": "A\u00f1o nuevo", + "2035-01-06": "Epifan\u00eda del Se\u00f1or", + "2035-02-28": "D\u00eda de Andalucia", + "2035-03-01": "D\u00eda de las Islas Baleares", + "2035-03-22": "Jueves Santo", + "2035-03-23": "Viernes Santo", + "2035-03-26": "Lunes de Pascua", + "2035-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2035-05-01": "D\u00eda del Trabajador", + "2035-05-02": "D\u00eda de Comunidad de Madrid", + "2035-05-17": "D\u00eda de las letras Gallegas", + "2035-05-24": "Corpus Christi", + "2035-05-30": "D\u00eda de Canarias", + "2035-05-31": "D\u00eda de Castilla La Mancha", + "2035-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2035-06-24": "San Juan", + "2035-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2035-07-28": "D\u00eda de las Instituciones de Cantabria", + "2035-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2035-08-15": "Asunci\u00f3n de la Virgen", + "2035-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2035-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2035-09-11": "D\u00eda Nacional de Catalunya", + "2035-09-15": "D\u00eda de la Bien Aparecida", + "2035-09-17": "D\u00eda de Melilla", + "2035-10-12": "D\u00eda de la Hispanidad", + "2035-11-01": "Todos los Santos", + "2035-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2035-12-08": "La Inmaculada Concepci\u00f3n", + "2035-12-25": "Navidad", + "2035-12-26": "San Esteban", + "2036-01-01": "A\u00f1o nuevo", + "2036-01-06": "Epifan\u00eda del Se\u00f1or", + "2036-02-28": "D\u00eda de Andalucia", + "2036-03-01": "D\u00eda de las Islas Baleares", + "2036-04-10": "Jueves Santo", + "2036-04-11": "Viernes Santo", + "2036-04-14": "Lunes de Pascua", + "2036-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2036-05-01": "D\u00eda del Trabajador", + "2036-05-02": "D\u00eda de Comunidad de Madrid", + "2036-05-17": "D\u00eda de las letras Gallegas", + "2036-05-30": "D\u00eda de Canarias", + "2036-05-31": "D\u00eda de Castilla La Mancha", + "2036-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2036-06-12": "Corpus Christi", + "2036-06-24": "San Juan", + "2036-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2036-07-28": "D\u00eda de las Instituciones de Cantabria", + "2036-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2036-08-15": "Asunci\u00f3n de la Virgen", + "2036-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2036-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2036-09-11": "D\u00eda Nacional de Catalunya", + "2036-09-15": "D\u00eda de la Bien Aparecida", + "2036-09-17": "D\u00eda de Melilla", + "2036-10-12": "D\u00eda de la Hispanidad", + "2036-11-01": "Todos los Santos", + "2036-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2036-12-08": "La Inmaculada Concepci\u00f3n", + "2036-12-25": "Navidad", + "2036-12-26": "San Esteban", + "2037-01-01": "A\u00f1o nuevo", + "2037-01-06": "Epifan\u00eda del Se\u00f1or", + "2037-02-28": "D\u00eda de Andalucia", + "2037-03-01": "D\u00eda de las Islas Baleares", + "2037-04-02": "Jueves Santo", + "2037-04-03": "Viernes Santo", + "2037-04-06": "Lunes de Pascua", + "2037-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2037-05-01": "D\u00eda del Trabajador", + "2037-05-02": "D\u00eda de Comunidad de Madrid", + "2037-05-17": "D\u00eda de las letras Gallegas", + "2037-05-30": "D\u00eda de Canarias", + "2037-05-31": "D\u00eda de Castilla La Mancha", + "2037-06-04": "Corpus Christi", + "2037-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2037-06-24": "San Juan", + "2037-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2037-07-28": "D\u00eda de las Instituciones de Cantabria", + "2037-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2037-08-15": "Asunci\u00f3n de la Virgen", + "2037-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2037-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2037-09-11": "D\u00eda Nacional de Catalunya", + "2037-09-15": "D\u00eda de la Bien Aparecida", + "2037-09-17": "D\u00eda de Melilla", + "2037-10-12": "D\u00eda de la Hispanidad", + "2037-11-01": "Todos los Santos", + "2037-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2037-12-08": "La Inmaculada Concepci\u00f3n", + "2037-12-25": "Navidad", + "2037-12-26": "San Esteban", + "2038-01-01": "A\u00f1o nuevo", + "2038-01-06": "Epifan\u00eda del Se\u00f1or", + "2038-02-28": "D\u00eda de Andalucia", + "2038-03-01": "D\u00eda de las Islas Baleares", + "2038-04-22": "Jueves Santo", + "2038-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge; Viernes Santo", + "2038-04-26": "Lunes de Pascua", + "2038-05-01": "D\u00eda del Trabajador", + "2038-05-02": "D\u00eda de Comunidad de Madrid", + "2038-05-17": "D\u00eda de las letras Gallegas", + "2038-05-30": "D\u00eda de Canarias", + "2038-05-31": "D\u00eda de Castilla La Mancha", + "2038-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2038-06-24": "Corpus Christi; San Juan", + "2038-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2038-07-28": "D\u00eda de las Instituciones de Cantabria", + "2038-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2038-08-15": "Asunci\u00f3n de la Virgen", + "2038-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2038-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2038-09-11": "D\u00eda Nacional de Catalunya", + "2038-09-15": "D\u00eda de la Bien Aparecida", + "2038-09-17": "D\u00eda de Melilla", + "2038-10-12": "D\u00eda de la Hispanidad", + "2038-11-01": "Todos los Santos", + "2038-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2038-12-08": "La Inmaculada Concepci\u00f3n", + "2038-12-25": "Navidad", + "2038-12-26": "San Esteban", + "2039-01-01": "A\u00f1o nuevo", + "2039-01-06": "Epifan\u00eda del Se\u00f1or", + "2039-02-28": "D\u00eda de Andalucia", + "2039-03-01": "D\u00eda de las Islas Baleares", + "2039-04-07": "Jueves Santo", + "2039-04-08": "Viernes Santo", + "2039-04-11": "Lunes de Pascua", + "2039-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2039-05-01": "D\u00eda del Trabajador", + "2039-05-02": "D\u00eda de Comunidad de Madrid", + "2039-05-17": "D\u00eda de las letras Gallegas", + "2039-05-30": "D\u00eda de Canarias", + "2039-05-31": "D\u00eda de Castilla La Mancha", + "2039-06-09": "Corpus Christi; D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2039-06-24": "San Juan", + "2039-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2039-07-28": "D\u00eda de las Instituciones de Cantabria", + "2039-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2039-08-15": "Asunci\u00f3n de la Virgen", + "2039-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2039-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2039-09-11": "D\u00eda Nacional de Catalunya", + "2039-09-15": "D\u00eda de la Bien Aparecida", + "2039-09-17": "D\u00eda de Melilla", + "2039-10-12": "D\u00eda de la Hispanidad", + "2039-11-01": "Todos los Santos", + "2039-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2039-12-08": "La Inmaculada Concepci\u00f3n", + "2039-12-25": "Navidad", + "2039-12-26": "San Esteban", + "2040-01-01": "A\u00f1o nuevo", + "2040-01-06": "Epifan\u00eda del Se\u00f1or", + "2040-02-28": "D\u00eda de Andalucia", + "2040-03-01": "D\u00eda de las Islas Baleares", + "2040-03-29": "Jueves Santo", + "2040-03-30": "Viernes Santo", + "2040-04-02": "Lunes de Pascua", + "2040-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2040-05-01": "D\u00eda del Trabajador", + "2040-05-02": "D\u00eda de Comunidad de Madrid", + "2040-05-17": "D\u00eda de las letras Gallegas", + "2040-05-30": "D\u00eda de Canarias", + "2040-05-31": "Corpus Christi; D\u00eda de Castilla La Mancha", + "2040-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2040-06-24": "San Juan", + "2040-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2040-07-28": "D\u00eda de las Instituciones de Cantabria", + "2040-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2040-08-15": "Asunci\u00f3n de la Virgen", + "2040-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2040-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2040-09-11": "D\u00eda Nacional de Catalunya", + "2040-09-15": "D\u00eda de la Bien Aparecida", + "2040-09-17": "D\u00eda de Melilla", + "2040-10-12": "D\u00eda de la Hispanidad", + "2040-11-01": "Todos los Santos", + "2040-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2040-12-08": "La Inmaculada Concepci\u00f3n", + "2040-12-25": "Navidad", + "2040-12-26": "San Esteban", + "2041-01-01": "A\u00f1o nuevo", + "2041-01-06": "Epifan\u00eda del Se\u00f1or", + "2041-02-28": "D\u00eda de Andalucia", + "2041-03-01": "D\u00eda de las Islas Baleares", + "2041-04-18": "Jueves Santo", + "2041-04-19": "Viernes Santo", + "2041-04-22": "Lunes de Pascua", + "2041-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2041-05-01": "D\u00eda del Trabajador", + "2041-05-02": "D\u00eda de Comunidad de Madrid", + "2041-05-17": "D\u00eda de las letras Gallegas", + "2041-05-30": "D\u00eda de Canarias", + "2041-05-31": "D\u00eda de Castilla La Mancha", + "2041-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2041-06-20": "Corpus Christi", + "2041-06-24": "San Juan", + "2041-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2041-07-28": "D\u00eda de las Instituciones de Cantabria", + "2041-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2041-08-15": "Asunci\u00f3n de la Virgen", + "2041-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2041-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2041-09-11": "D\u00eda Nacional de Catalunya", + "2041-09-15": "D\u00eda de la Bien Aparecida", + "2041-09-17": "D\u00eda de Melilla", + "2041-10-12": "D\u00eda de la Hispanidad", + "2041-11-01": "Todos los Santos", + "2041-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2041-12-08": "La Inmaculada Concepci\u00f3n", + "2041-12-25": "Navidad", + "2041-12-26": "San Esteban", + "2042-01-01": "A\u00f1o nuevo", + "2042-01-06": "Epifan\u00eda del Se\u00f1or", + "2042-02-28": "D\u00eda de Andalucia", + "2042-03-01": "D\u00eda de las Islas Baleares", + "2042-04-03": "Jueves Santo", + "2042-04-04": "Viernes Santo", + "2042-04-07": "Lunes de Pascua", + "2042-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2042-05-01": "D\u00eda del Trabajador", + "2042-05-02": "D\u00eda de Comunidad de Madrid", + "2042-05-17": "D\u00eda de las letras Gallegas", + "2042-05-30": "D\u00eda de Canarias", + "2042-05-31": "D\u00eda de Castilla La Mancha", + "2042-06-05": "Corpus Christi", + "2042-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2042-06-24": "San Juan", + "2042-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2042-07-28": "D\u00eda de las Instituciones de Cantabria", + "2042-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2042-08-15": "Asunci\u00f3n de la Virgen", + "2042-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2042-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2042-09-11": "D\u00eda Nacional de Catalunya", + "2042-09-15": "D\u00eda de la Bien Aparecida", + "2042-09-17": "D\u00eda de Melilla", + "2042-10-12": "D\u00eda de la Hispanidad", + "2042-11-01": "Todos los Santos", + "2042-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2042-12-08": "La Inmaculada Concepci\u00f3n", + "2042-12-25": "Navidad", + "2042-12-26": "San Esteban", + "2043-01-01": "A\u00f1o nuevo", + "2043-01-06": "Epifan\u00eda del Se\u00f1or", + "2043-02-28": "D\u00eda de Andalucia", + "2043-03-01": "D\u00eda de las Islas Baleares", + "2043-03-26": "Jueves Santo", + "2043-03-27": "Viernes Santo", + "2043-03-30": "Lunes de Pascua", + "2043-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2043-05-01": "D\u00eda del Trabajador", + "2043-05-02": "D\u00eda de Comunidad de Madrid", + "2043-05-17": "D\u00eda de las letras Gallegas", + "2043-05-28": "Corpus Christi", + "2043-05-30": "D\u00eda de Canarias", + "2043-05-31": "D\u00eda de Castilla La Mancha", + "2043-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2043-06-24": "San Juan", + "2043-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2043-07-28": "D\u00eda de las Instituciones de Cantabria", + "2043-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2043-08-15": "Asunci\u00f3n de la Virgen", + "2043-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2043-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2043-09-11": "D\u00eda Nacional de Catalunya", + "2043-09-15": "D\u00eda de la Bien Aparecida", + "2043-09-17": "D\u00eda de Melilla", + "2043-10-12": "D\u00eda de la Hispanidad", + "2043-11-01": "Todos los Santos", + "2043-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2043-12-08": "La Inmaculada Concepci\u00f3n", + "2043-12-25": "Navidad", + "2043-12-26": "San Esteban", + "2044-01-01": "A\u00f1o nuevo", + "2044-01-06": "Epifan\u00eda del Se\u00f1or", + "2044-02-28": "D\u00eda de Andalucia", + "2044-03-01": "D\u00eda de las Islas Baleares", + "2044-04-14": "Jueves Santo", + "2044-04-15": "Viernes Santo", + "2044-04-18": "Lunes de Pascua", + "2044-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2044-05-01": "D\u00eda del Trabajador", + "2044-05-02": "D\u00eda de Comunidad de Madrid", + "2044-05-17": "D\u00eda de las letras Gallegas", + "2044-05-30": "D\u00eda de Canarias", + "2044-05-31": "D\u00eda de Castilla La Mancha", + "2044-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2044-06-16": "Corpus Christi", + "2044-06-24": "San Juan", + "2044-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2044-07-28": "D\u00eda de las Instituciones de Cantabria", + "2044-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2044-08-15": "Asunci\u00f3n de la Virgen", + "2044-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2044-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2044-09-11": "D\u00eda Nacional de Catalunya", + "2044-09-15": "D\u00eda de la Bien Aparecida", + "2044-09-17": "D\u00eda de Melilla", + "2044-10-12": "D\u00eda de la Hispanidad", + "2044-11-01": "Todos los Santos", + "2044-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2044-12-08": "La Inmaculada Concepci\u00f3n", + "2044-12-25": "Navidad", + "2044-12-26": "San Esteban", + "2045-01-01": "A\u00f1o nuevo", + "2045-01-06": "Epifan\u00eda del Se\u00f1or", + "2045-02-28": "D\u00eda de Andalucia", + "2045-03-01": "D\u00eda de las Islas Baleares", + "2045-04-06": "Jueves Santo", + "2045-04-07": "Viernes Santo", + "2045-04-10": "Lunes de Pascua", + "2045-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2045-05-01": "D\u00eda del Trabajador", + "2045-05-02": "D\u00eda de Comunidad de Madrid", + "2045-05-17": "D\u00eda de las letras Gallegas", + "2045-05-30": "D\u00eda de Canarias", + "2045-05-31": "D\u00eda de Castilla La Mancha", + "2045-06-08": "Corpus Christi", + "2045-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2045-06-24": "San Juan", + "2045-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2045-07-28": "D\u00eda de las Instituciones de Cantabria", + "2045-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2045-08-15": "Asunci\u00f3n de la Virgen", + "2045-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2045-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2045-09-11": "D\u00eda Nacional de Catalunya", + "2045-09-15": "D\u00eda de la Bien Aparecida", + "2045-09-17": "D\u00eda de Melilla", + "2045-10-12": "D\u00eda de la Hispanidad", + "2045-11-01": "Todos los Santos", + "2045-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2045-12-08": "La Inmaculada Concepci\u00f3n", + "2045-12-25": "Navidad", + "2045-12-26": "San Esteban", + "2046-01-01": "A\u00f1o nuevo", + "2046-01-06": "Epifan\u00eda del Se\u00f1or", + "2046-02-28": "D\u00eda de Andalucia", + "2046-03-01": "D\u00eda de las Islas Baleares", + "2046-03-22": "Jueves Santo", + "2046-03-23": "Viernes Santo", + "2046-03-26": "Lunes de Pascua", + "2046-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2046-05-01": "D\u00eda del Trabajador", + "2046-05-02": "D\u00eda de Comunidad de Madrid", + "2046-05-17": "D\u00eda de las letras Gallegas", + "2046-05-24": "Corpus Christi", + "2046-05-30": "D\u00eda de Canarias", + "2046-05-31": "D\u00eda de Castilla La Mancha", + "2046-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2046-06-24": "San Juan", + "2046-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2046-07-28": "D\u00eda de las Instituciones de Cantabria", + "2046-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2046-08-15": "Asunci\u00f3n de la Virgen", + "2046-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2046-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2046-09-11": "D\u00eda Nacional de Catalunya", + "2046-09-15": "D\u00eda de la Bien Aparecida", + "2046-09-17": "D\u00eda de Melilla", + "2046-10-12": "D\u00eda de la Hispanidad", + "2046-11-01": "Todos los Santos", + "2046-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2046-12-08": "La Inmaculada Concepci\u00f3n", + "2046-12-25": "Navidad", + "2046-12-26": "San Esteban", + "2047-01-01": "A\u00f1o nuevo", + "2047-01-06": "Epifan\u00eda del Se\u00f1or", + "2047-02-28": "D\u00eda de Andalucia", + "2047-03-01": "D\u00eda de las Islas Baleares", + "2047-04-11": "Jueves Santo", + "2047-04-12": "Viernes Santo", + "2047-04-15": "Lunes de Pascua", + "2047-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2047-05-01": "D\u00eda del Trabajador", + "2047-05-02": "D\u00eda de Comunidad de Madrid", + "2047-05-17": "D\u00eda de las letras Gallegas", + "2047-05-30": "D\u00eda de Canarias", + "2047-05-31": "D\u00eda de Castilla La Mancha", + "2047-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2047-06-13": "Corpus Christi", + "2047-06-24": "San Juan", + "2047-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2047-07-28": "D\u00eda de las Instituciones de Cantabria", + "2047-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2047-08-15": "Asunci\u00f3n de la Virgen", + "2047-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2047-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2047-09-11": "D\u00eda Nacional de Catalunya", + "2047-09-15": "D\u00eda de la Bien Aparecida", + "2047-09-17": "D\u00eda de Melilla", + "2047-10-12": "D\u00eda de la Hispanidad", + "2047-11-01": "Todos los Santos", + "2047-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2047-12-08": "La Inmaculada Concepci\u00f3n", + "2047-12-25": "Navidad", + "2047-12-26": "San Esteban", + "2048-01-01": "A\u00f1o nuevo", + "2048-01-06": "Epifan\u00eda del Se\u00f1or", + "2048-02-28": "D\u00eda de Andalucia", + "2048-03-01": "D\u00eda de las Islas Baleares", + "2048-04-02": "Jueves Santo", + "2048-04-03": "Viernes Santo", + "2048-04-06": "Lunes de Pascua", + "2048-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2048-05-01": "D\u00eda del Trabajador", + "2048-05-02": "D\u00eda de Comunidad de Madrid", + "2048-05-17": "D\u00eda de las letras Gallegas", + "2048-05-30": "D\u00eda de Canarias", + "2048-05-31": "D\u00eda de Castilla La Mancha", + "2048-06-04": "Corpus Christi", + "2048-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2048-06-24": "San Juan", + "2048-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2048-07-28": "D\u00eda de las Instituciones de Cantabria", + "2048-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2048-08-15": "Asunci\u00f3n de la Virgen", + "2048-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2048-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2048-09-11": "D\u00eda Nacional de Catalunya", + "2048-09-15": "D\u00eda de la Bien Aparecida", + "2048-09-17": "D\u00eda de Melilla", + "2048-10-12": "D\u00eda de la Hispanidad", + "2048-11-01": "Todos los Santos", + "2048-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2048-12-08": "La Inmaculada Concepci\u00f3n", + "2048-12-25": "Navidad", + "2048-12-26": "San Esteban", + "2049-01-01": "A\u00f1o nuevo", + "2049-01-06": "Epifan\u00eda del Se\u00f1or", + "2049-02-28": "D\u00eda de Andalucia", + "2049-03-01": "D\u00eda de las Islas Baleares", + "2049-04-15": "Jueves Santo", + "2049-04-16": "Viernes Santo", + "2049-04-19": "Lunes de Pascua", + "2049-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2049-05-01": "D\u00eda del Trabajador", + "2049-05-02": "D\u00eda de Comunidad de Madrid", + "2049-05-17": "D\u00eda de las letras Gallegas", + "2049-05-30": "D\u00eda de Canarias", + "2049-05-31": "D\u00eda de Castilla La Mancha", + "2049-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2049-06-17": "Corpus Christi", + "2049-06-24": "San Juan", + "2049-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2049-07-28": "D\u00eda de las Instituciones de Cantabria", + "2049-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2049-08-15": "Asunci\u00f3n de la Virgen", + "2049-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2049-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2049-09-11": "D\u00eda Nacional de Catalunya", + "2049-09-15": "D\u00eda de la Bien Aparecida", + "2049-09-17": "D\u00eda de Melilla", + "2049-10-12": "D\u00eda de la Hispanidad", + "2049-11-01": "Todos los Santos", + "2049-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2049-12-08": "La Inmaculada Concepci\u00f3n", + "2049-12-25": "Navidad", + "2049-12-26": "San Esteban", + "2050-01-01": "A\u00f1o nuevo", + "2050-01-06": "Epifan\u00eda del Se\u00f1or", + "2050-02-28": "D\u00eda de Andalucia", + "2050-03-01": "D\u00eda de las Islas Baleares", + "2050-04-07": "Jueves Santo", + "2050-04-08": "Viernes Santo", + "2050-04-11": "Lunes de Pascua", + "2050-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2050-05-01": "D\u00eda del Trabajador", + "2050-05-02": "D\u00eda de Comunidad de Madrid", + "2050-05-17": "D\u00eda de las letras Gallegas", + "2050-05-30": "D\u00eda de Canarias", + "2050-05-31": "D\u00eda de Castilla La Mancha", + "2050-06-09": "Corpus Christi; D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2050-06-24": "San Juan", + "2050-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2050-07-28": "D\u00eda de las Instituciones de Cantabria", + "2050-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2050-08-15": "Asunci\u00f3n de la Virgen", + "2050-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", + "2050-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", + "2050-09-11": "D\u00eda Nacional de Catalunya", + "2050-09-15": "D\u00eda de la Bien Aparecida", + "2050-09-17": "D\u00eda de Melilla", + "2050-10-12": "D\u00eda de la Hispanidad", + "2050-11-01": "Todos los Santos", + "2050-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2050-12-08": "La Inmaculada Concepci\u00f3n", + "2050-12-25": "Navidad", + "2050-12-26": "San Esteban" +} diff --git a/snapshots/countries/ET.json b/snapshots/countries/ET.json new file mode 100644 index 000000000..f4ac7c11c --- /dev/null +++ b/snapshots/countries/ET.json @@ -0,0 +1,1484 @@ +{ + "1950-01-01": "Prophet Muhammad's Birthday* (*estimated)", + "1950-01-02": "Prophet Muhammad's Birthday* (*estimated)", + "1950-01-07": "Orthodox Christmas Day", + "1950-01-19": "Orthodox Epiphany Day", + "1950-03-02": "Adwa Victory Day", + "1950-04-07": "Orthodox Good Friday", + "1950-04-09": "Orthodox Easter Sunday", + "1950-05-01": "Labor Day", + "1950-05-05": "Patriots Day", + "1950-07-16": "Eid al-Fitr* (*estimated)", + "1950-09-11": "Ethiopian New Year's Day", + "1950-09-23": "Eid al-Adha* (*estimated)", + "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-27": "Finding of True Cross", + "1950-12-22": "Prophet Muhammad's Birthday* (*estimated)", + "1950-12-23": "Prophet Muhammad's Birthday* (*estimated)", + "1951-01-07": "Orthodox Christmas Day", + "1951-01-19": "Orthodox Epiphany Day", + "1951-03-02": "Adwa Victory Day", + "1951-04-27": "Orthodox Good Friday", + "1951-04-29": "Orthodox Easter Sunday", + "1951-05-01": "Labor Day", + "1951-05-05": "Patriots Day", + "1951-07-06": "Eid al-Fitr* (*estimated)", + "1951-09-12": "Eid al-Adha* (*estimated); Ethiopian New Year's Day", + "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-28": "Finding of True Cross", + "1951-12-11": "Prophet Muhammad's Birthday* (*estimated)", + "1951-12-12": "Prophet Muhammad's Birthday* (*estimated)", + "1952-01-07": "Orthodox Christmas Day", + "1952-01-19": "Orthodox Epiphany Day", + "1952-03-02": "Adwa Victory Day", + "1952-04-18": "Orthodox Good Friday", + "1952-04-20": "Orthodox Easter Sunday", + "1952-05-01": "Labor Day", + "1952-05-05": "Patriots Day", + "1952-06-23": "Eid al-Fitr* (*estimated)", + "1952-08-31": "Eid al-Adha* (*estimated)", + "1952-09-01": "Eid al-Adha* (*estimated)", + "1952-09-11": "Ethiopian New Year's Day", + "1952-09-27": "Finding of True Cross", + "1952-11-30": "Prophet Muhammad's Birthday* (*estimated)", + "1952-12-01": "Prophet Muhammad's Birthday* (*estimated)", + "1953-01-07": "Orthodox Christmas Day", + "1953-01-19": "Orthodox Epiphany Day", + "1953-03-02": "Adwa Victory Day", + "1953-04-03": "Orthodox Good Friday", + "1953-04-05": "Orthodox Easter Sunday", + "1953-05-01": "Labor Day", + "1953-05-05": "Patriots Day", + "1953-06-13": "Eid al-Fitr* (*estimated)", + "1953-08-20": "Eid al-Adha* (*estimated)", + "1953-08-21": "Eid al-Adha* (*estimated)", + "1953-09-11": "Ethiopian New Year's Day", + "1953-09-27": "Finding of True Cross", + "1953-11-19": "Prophet Muhammad's Birthday* (*estimated)", + "1953-11-20": "Prophet Muhammad's Birthday* (*estimated)", + "1954-01-07": "Orthodox Christmas Day", + "1954-01-19": "Orthodox Epiphany Day", + "1954-03-02": "Adwa Victory Day", + "1954-04-23": "Orthodox Good Friday", + "1954-04-25": "Orthodox Easter Sunday", + "1954-05-01": "Labor Day", + "1954-05-05": "Patriots Day", + "1954-06-02": "Eid al-Fitr* (*estimated)", + "1954-08-09": "Eid al-Adha* (*estimated)", + "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-09-11": "Ethiopian New Year's Day", + "1954-09-27": "Finding of True Cross", + "1954-11-08": "Prophet Muhammad's Birthday* (*estimated)", + "1954-11-09": "Prophet Muhammad's Birthday* (*estimated)", + "1955-01-07": "Orthodox Christmas Day", + "1955-01-19": "Orthodox Epiphany Day", + "1955-03-02": "Adwa Victory Day", + "1955-04-15": "Orthodox Good Friday", + "1955-04-17": "Orthodox Easter Sunday", + "1955-05-01": "Labor Day", + "1955-05-05": "Patriots Day", + "1955-05-23": "Eid al-Fitr* (*estimated)", + "1955-07-30": "Eid al-Adha* (*estimated)", + "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-09-12": "Ethiopian New Year's Day", + "1955-09-28": "Finding of True Cross", + "1955-10-29": "Prophet Muhammad's Birthday* (*estimated)", + "1955-10-30": "Prophet Muhammad's Birthday* (*estimated)", + "1956-01-07": "Orthodox Christmas Day", + "1956-01-19": "Orthodox Epiphany Day", + "1956-03-02": "Adwa Victory Day", + "1956-05-01": "Labor Day", + "1956-05-04": "Orthodox Good Friday", + "1956-05-05": "Patriots Day", + "1956-05-06": "Orthodox Easter Sunday", + "1956-05-11": "Eid al-Fitr* (*estimated)", + "1956-07-19": "Eid al-Adha* (*estimated)", + "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-09-11": "Ethiopian New Year's Day", + "1956-09-27": "Finding of True Cross", + "1956-10-17": "Prophet Muhammad's Birthday* (*estimated)", + "1956-10-18": "Prophet Muhammad's Birthday* (*estimated)", + "1957-01-07": "Orthodox Christmas Day", + "1957-01-19": "Orthodox Epiphany Day", + "1957-03-02": "Adwa Victory Day", + "1957-04-19": "Orthodox Good Friday", + "1957-04-21": "Orthodox Easter Sunday", + "1957-05-01": "Eid al-Fitr* (*estimated); Labor Day", + "1957-05-05": "Patriots Day", + "1957-07-08": "Eid al-Adha* (*estimated)", + "1957-07-09": "Eid al-Adha* (*estimated)", + "1957-09-11": "Ethiopian New Year's Day", + "1957-09-27": "Finding of True Cross", + "1957-10-06": "Prophet Muhammad's Birthday* (*estimated)", + "1957-10-07": "Prophet Muhammad's Birthday* (*estimated)", + "1958-01-07": "Orthodox Christmas Day", + "1958-01-19": "Orthodox Epiphany Day", + "1958-03-02": "Adwa Victory Day", + "1958-04-11": "Orthodox Good Friday", + "1958-04-13": "Orthodox Easter Sunday", + "1958-04-20": "Eid al-Fitr* (*estimated)", + "1958-05-01": "Labor Day", + "1958-05-05": "Patriots Day", + "1958-06-27": "Eid al-Adha* (*estimated)", + "1958-06-28": "Eid al-Adha* (*estimated)", + "1958-09-11": "Ethiopian New Year's Day", + "1958-09-26": "Prophet Muhammad's Birthday* (*estimated)", + "1958-09-27": "Finding of True Cross; Prophet Muhammad's Birthday* (*estimated)", + "1959-01-07": "Orthodox Christmas Day", + "1959-01-19": "Orthodox Epiphany Day", + "1959-03-02": "Adwa Victory Day", + "1959-04-10": "Eid al-Fitr* (*estimated)", + "1959-05-01": "Labor Day; Orthodox Good Friday", + "1959-05-03": "Orthodox Easter Sunday", + "1959-05-05": "Patriots Day", + "1959-06-17": "Eid al-Adha* (*estimated)", + "1959-06-18": "Eid al-Adha* (*estimated)", + "1959-09-12": "Ethiopian New Year's Day", + "1959-09-15": "Prophet Muhammad's Birthday* (*estimated)", + "1959-09-16": "Prophet Muhammad's Birthday* (*estimated)", + "1959-09-28": "Finding of True Cross", + "1960-01-07": "Orthodox Christmas Day", + "1960-01-19": "Orthodox Epiphany Day", + "1960-03-02": "Adwa Victory Day", + "1960-03-28": "Eid al-Fitr* (*estimated)", + "1960-04-15": "Orthodox Good Friday", + "1960-04-17": "Orthodox Easter Sunday", + "1960-05-01": "Labor Day", + "1960-05-05": "Patriots Day", + "1960-06-04": "Eid al-Adha* (*estimated)", + "1960-06-05": "Eid al-Adha* (*estimated)", + "1960-09-03": "Prophet Muhammad's Birthday* (*estimated)", + "1960-09-04": "Prophet Muhammad's Birthday* (*estimated)", + "1960-09-11": "Ethiopian New Year's Day", + "1960-09-27": "Finding of True Cross", + "1961-01-07": "Orthodox Christmas Day", + "1961-01-19": "Orthodox Epiphany Day", + "1961-03-02": "Adwa Victory Day", + "1961-03-18": "Eid al-Fitr* (*estimated)", + "1961-04-07": "Orthodox Good Friday", + "1961-04-09": "Orthodox Easter Sunday", + "1961-05-01": "Labor Day", + "1961-05-05": "Patriots Day", + "1961-05-25": "Eid al-Adha* (*estimated)", + "1961-05-26": "Eid al-Adha* (*estimated)", + "1961-08-23": "Prophet Muhammad's Birthday* (*estimated)", + "1961-08-24": "Prophet Muhammad's Birthday* (*estimated)", + "1961-09-11": "Ethiopian New Year's Day", + "1961-09-27": "Finding of True Cross", + "1962-01-07": "Orthodox Christmas Day", + "1962-01-19": "Orthodox Epiphany Day", + "1962-03-02": "Adwa Victory Day", + "1962-03-07": "Eid al-Fitr* (*estimated)", + "1962-04-27": "Orthodox Good Friday", + "1962-04-29": "Orthodox Easter Sunday", + "1962-05-01": "Labor Day", + "1962-05-05": "Patriots Day", + "1962-05-14": "Eid al-Adha* (*estimated)", + "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-08-12": "Prophet Muhammad's Birthday* (*estimated)", + "1962-08-13": "Prophet Muhammad's Birthday* (*estimated)", + "1962-09-11": "Ethiopian New Year's Day", + "1962-09-27": "Finding of True Cross", + "1963-01-07": "Orthodox Christmas Day", + "1963-01-19": "Orthodox Epiphany Day", + "1963-02-24": "Eid al-Fitr* (*estimated)", + "1963-03-02": "Adwa Victory Day", + "1963-04-12": "Orthodox Good Friday", + "1963-04-14": "Orthodox Easter Sunday", + "1963-05-01": "Labor Day", + "1963-05-03": "Eid al-Adha* (*estimated)", + "1963-05-04": "Eid al-Adha* (*estimated)", + "1963-05-05": "Patriots Day", + "1963-08-02": "Prophet Muhammad's Birthday* (*estimated)", + "1963-08-03": "Prophet Muhammad's Birthday* (*estimated)", + "1963-09-12": "Ethiopian New Year's Day", + "1963-09-28": "Finding of True Cross", + "1964-01-07": "Orthodox Christmas Day", + "1964-01-19": "Orthodox Epiphany Day", + "1964-02-14": "Eid al-Fitr* (*estimated)", + "1964-03-02": "Adwa Victory Day", + "1964-04-22": "Eid al-Adha* (*estimated)", + "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-05-01": "Labor Day; Orthodox Good Friday", + "1964-05-03": "Orthodox Easter Sunday", + "1964-05-05": "Patriots Day", + "1964-07-21": "Prophet Muhammad's Birthday* (*estimated)", + "1964-07-22": "Prophet Muhammad's Birthday* (*estimated)", + "1964-09-11": "Ethiopian New Year's Day", + "1964-09-27": "Finding of True Cross", + "1965-01-07": "Orthodox Christmas Day", + "1965-01-19": "Orthodox Epiphany Day", + "1965-02-02": "Eid al-Fitr* (*estimated)", + "1965-03-02": "Adwa Victory Day", + "1965-04-11": "Eid al-Adha* (*estimated)", + "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-04-23": "Orthodox Good Friday", + "1965-04-25": "Orthodox Easter Sunday", + "1965-05-01": "Labor Day", + "1965-05-05": "Patriots Day", + "1965-07-10": "Prophet Muhammad's Birthday* (*estimated)", + "1965-07-11": "Prophet Muhammad's Birthday* (*estimated)", + "1965-09-11": "Ethiopian New Year's Day", + "1965-09-27": "Finding of True Cross", + "1966-01-07": "Orthodox Christmas Day", + "1966-01-19": "Orthodox Epiphany Day", + "1966-01-22": "Eid al-Fitr* (*estimated)", + "1966-03-02": "Adwa Victory Day", + "1966-04-01": "Eid al-Adha* (*estimated)", + "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-08": "Orthodox Good Friday", + "1966-04-10": "Orthodox Easter Sunday", + "1966-05-01": "Labor Day", + "1966-05-05": "Patriots Day", + "1966-07-01": "Prophet Muhammad's Birthday* (*estimated)", + "1966-07-02": "Prophet Muhammad's Birthday* (*estimated)", + "1966-09-11": "Ethiopian New Year's Day", + "1966-09-27": "Finding of True Cross", + "1967-01-07": "Orthodox Christmas Day", + "1967-01-12": "Eid al-Fitr* (*estimated)", + "1967-01-19": "Orthodox Epiphany Day", + "1967-03-02": "Adwa Victory Day", + "1967-03-21": "Eid al-Adha* (*estimated)", + "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-04-28": "Orthodox Good Friday", + "1967-04-30": "Orthodox Easter Sunday", + "1967-05-01": "Labor Day", + "1967-05-05": "Patriots Day", + "1967-06-19": "Prophet Muhammad's Birthday* (*estimated)", + "1967-06-20": "Prophet Muhammad's Birthday* (*estimated)", + "1967-09-12": "Ethiopian New Year's Day", + "1967-09-28": "Finding of True Cross", + "1968-01-01": "Eid al-Fitr* (*estimated)", + "1968-01-07": "Orthodox Christmas Day", + "1968-01-19": "Orthodox Epiphany Day", + "1968-03-02": "Adwa Victory Day", + "1968-03-09": "Eid al-Adha* (*estimated)", + "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-04-19": "Orthodox Good Friday", + "1968-04-21": "Orthodox Easter Sunday", + "1968-05-01": "Labor Day", + "1968-05-05": "Patriots Day", + "1968-06-08": "Prophet Muhammad's Birthday* (*estimated)", + "1968-06-09": "Prophet Muhammad's Birthday* (*estimated)", + "1968-09-11": "Ethiopian New Year's Day", + "1968-09-27": "Finding of True Cross", + "1968-12-21": "Eid al-Fitr* (*estimated)", + "1969-01-07": "Orthodox Christmas Day", + "1969-01-19": "Orthodox Epiphany Day", + "1969-02-27": "Eid al-Adha* (*estimated)", + "1969-02-28": "Eid al-Adha* (*estimated)", + "1969-03-02": "Adwa Victory Day", + "1969-04-11": "Orthodox Good Friday", + "1969-04-13": "Orthodox Easter Sunday", + "1969-05-01": "Labor Day", + "1969-05-05": "Patriots Day", + "1969-05-28": "Prophet Muhammad's Birthday* (*estimated)", + "1969-05-29": "Prophet Muhammad's Birthday* (*estimated)", + "1969-09-11": "Ethiopian New Year's Day", + "1969-09-27": "Finding of True Cross", + "1969-12-10": "Eid al-Fitr* (*estimated)", + "1970-01-07": "Orthodox Christmas Day", + "1970-01-19": "Orthodox Epiphany Day", + "1970-02-16": "Eid al-Adha* (*estimated)", + "1970-02-17": "Eid al-Adha* (*estimated)", + "1970-03-02": "Adwa Victory Day", + "1970-04-24": "Orthodox Good Friday", + "1970-04-26": "Orthodox Easter Sunday", + "1970-05-01": "Labor Day", + "1970-05-05": "Patriots Day", + "1970-05-18": "Prophet Muhammad's Birthday* (*estimated)", + "1970-05-19": "Prophet Muhammad's Birthday* (*estimated)", + "1970-09-11": "Ethiopian New Year's Day", + "1970-09-27": "Finding of True Cross", + "1970-11-30": "Eid al-Fitr* (*estimated)", + "1971-01-07": "Orthodox Christmas Day", + "1971-01-19": "Orthodox Epiphany Day", + "1971-02-06": "Eid al-Adha* (*estimated)", + "1971-02-07": "Eid al-Adha* (*estimated)", + "1971-03-02": "Adwa Victory Day", + "1971-04-16": "Orthodox Good Friday", + "1971-04-18": "Orthodox Easter Sunday", + "1971-05-01": "Labor Day", + "1971-05-05": "Patriots Day", + "1971-05-07": "Prophet Muhammad's Birthday* (*estimated)", + "1971-05-08": "Prophet Muhammad's Birthday* (*estimated)", + "1971-09-12": "Ethiopian New Year's Day", + "1971-09-28": "Finding of True Cross", + "1971-11-19": "Eid al-Fitr* (*estimated)", + "1972-01-07": "Orthodox Christmas Day", + "1972-01-19": "Orthodox Epiphany Day", + "1972-01-26": "Eid al-Adha* (*estimated)", + "1972-01-27": "Eid al-Adha* (*estimated)", + "1972-03-02": "Adwa Victory Day", + "1972-04-07": "Orthodox Good Friday", + "1972-04-09": "Orthodox Easter Sunday", + "1972-04-25": "Prophet Muhammad's Birthday* (*estimated)", + "1972-04-26": "Prophet Muhammad's Birthday* (*estimated)", + "1972-05-01": "Labor Day", + "1972-05-05": "Patriots Day", + "1972-09-11": "Ethiopian New Year's Day", + "1972-09-27": "Finding of True Cross", + "1972-11-07": "Eid al-Fitr* (*estimated)", + "1973-01-07": "Orthodox Christmas Day", + "1973-01-14": "Eid al-Adha* (*estimated)", + "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-19": "Orthodox Epiphany Day", + "1973-03-02": "Adwa Victory Day", + "1973-04-15": "Prophet Muhammad's Birthday* (*estimated)", + "1973-04-16": "Prophet Muhammad's Birthday* (*estimated)", + "1973-04-27": "Orthodox Good Friday", + "1973-04-29": "Orthodox Easter Sunday", + "1973-05-01": "Labor Day", + "1973-05-05": "Patriots Day", + "1973-09-11": "Ethiopian New Year's Day", + "1973-09-27": "Finding of True Cross", + "1973-10-27": "Eid al-Fitr* (*estimated)", + "1974-01-03": "Eid al-Adha* (*estimated)", + "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-07": "Orthodox Christmas Day", + "1974-01-19": "Orthodox Epiphany Day", + "1974-03-02": "Adwa Victory Day", + "1974-04-04": "Prophet Muhammad's Birthday* (*estimated)", + "1974-04-05": "Prophet Muhammad's Birthday* (*estimated)", + "1974-04-12": "Orthodox Good Friday", + "1974-04-14": "Orthodox Easter Sunday", + "1974-05-01": "Labor Day", + "1974-05-05": "Patriots Day", + "1974-09-11": "Ethiopian New Year's Day", + "1974-09-27": "Finding of True Cross", + "1974-10-16": "Eid al-Fitr* (*estimated)", + "1974-12-24": "Eid al-Adha* (*estimated)", + "1974-12-25": "Eid al-Adha* (*estimated)", + "1975-01-07": "Orthodox Christmas Day", + "1975-01-19": "Orthodox Epiphany Day", + "1975-03-02": "Adwa Victory Day", + "1975-03-24": "Prophet Muhammad's Birthday* (*estimated)", + "1975-03-25": "Prophet Muhammad's Birthday* (*estimated)", + "1975-05-01": "Labor Day", + "1975-05-02": "Orthodox Good Friday", + "1975-05-04": "Orthodox Easter Sunday", + "1975-05-05": "Patriots Day", + "1975-09-12": "Ethiopian New Year's Day", + "1975-09-13": "Downfall of King Haile Selassie Day", + "1975-09-28": "Finding of True Cross", + "1975-10-06": "Eid al-Fitr* (*estimated)", + "1975-12-13": "Eid al-Adha* (*estimated)", + "1975-12-14": "Eid al-Adha* (*estimated)", + "1976-01-07": "Orthodox Christmas Day", + "1976-01-19": "Orthodox Epiphany Day", + "1976-03-02": "Adwa Victory Day", + "1976-03-12": "Prophet Muhammad's Birthday* (*estimated)", + "1976-03-13": "Prophet Muhammad's Birthday* (*estimated)", + "1976-04-23": "Orthodox Good Friday", + "1976-04-25": "Orthodox Easter Sunday", + "1976-05-01": "Labor Day", + "1976-05-05": "Patriots Day", + "1976-09-11": "Ethiopian New Year's Day", + "1976-09-12": "Downfall of King Haile Selassie Day", + "1976-09-24": "Eid al-Fitr* (*estimated)", + "1976-09-27": "Finding of True Cross", + "1976-12-01": "Eid al-Adha* (*estimated)", + "1976-12-02": "Eid al-Adha* (*estimated)", + "1977-01-07": "Orthodox Christmas Day", + "1977-01-19": "Orthodox Epiphany Day", + "1977-03-02": "Adwa Victory Day; Prophet Muhammad's Birthday* (*estimated)", + "1977-03-03": "Prophet Muhammad's Birthday* (*estimated)", + "1977-04-08": "Orthodox Good Friday", + "1977-04-10": "Orthodox Easter Sunday", + "1977-05-01": "Labor Day", + "1977-05-05": "Patriots Day", + "1977-09-11": "Ethiopian New Year's Day", + "1977-09-12": "Downfall of King Haile Selassie Day", + "1977-09-14": "Eid al-Fitr* (*estimated)", + "1977-09-27": "Finding of True Cross", + "1977-11-21": "Eid al-Adha* (*estimated)", + "1977-11-22": "Eid al-Adha* (*estimated)", + "1978-01-07": "Orthodox Christmas Day", + "1978-01-19": "Orthodox Epiphany Day", + "1978-02-19": "Prophet Muhammad's Birthday* (*estimated)", + "1978-02-20": "Prophet Muhammad's Birthday* (*estimated)", + "1978-03-02": "Adwa Victory Day", + "1978-04-28": "Orthodox Good Friday", + "1978-04-30": "Orthodox Easter Sunday", + "1978-05-01": "Labor Day", + "1978-05-05": "Patriots Day", + "1978-09-03": "Eid al-Fitr* (*estimated)", + "1978-09-11": "Ethiopian New Year's Day", + "1978-09-12": "Downfall of King Haile Selassie Day", + "1978-09-27": "Finding of True Cross", + "1978-11-10": "Eid al-Adha* (*estimated)", + "1978-11-11": "Eid al-Adha* (*estimated)", + "1979-01-07": "Orthodox Christmas Day", + "1979-01-19": "Orthodox Epiphany Day", + "1979-02-09": "Prophet Muhammad's Birthday* (*estimated)", + "1979-02-10": "Prophet Muhammad's Birthday* (*estimated)", + "1979-03-02": "Adwa Victory Day", + "1979-04-20": "Orthodox Good Friday", + "1979-04-22": "Orthodox Easter Sunday", + "1979-05-01": "Labor Day", + "1979-05-05": "Patriots Day", + "1979-08-23": "Eid al-Fitr* (*estimated)", + "1979-09-12": "Ethiopian New Year's Day", + "1979-09-13": "Downfall of King Haile Selassie Day", + "1979-09-28": "Finding of True Cross", + "1979-10-31": "Eid al-Adha* (*estimated)", + "1979-11-01": "Eid al-Adha* (*estimated)", + "1980-01-07": "Orthodox Christmas Day", + "1980-01-19": "Orthodox Epiphany Day", + "1980-01-30": "Prophet Muhammad's Birthday* (*estimated)", + "1980-01-31": "Prophet Muhammad's Birthday* (*estimated)", + "1980-03-02": "Adwa Victory Day", + "1980-04-04": "Orthodox Good Friday", + "1980-04-06": "Orthodox Easter Sunday", + "1980-05-01": "Labor Day", + "1980-05-05": "Patriots Day", + "1980-08-12": "Eid al-Fitr* (*estimated)", + "1980-09-11": "Ethiopian New Year's Day", + "1980-09-12": "Downfall of King Haile Selassie Day", + "1980-09-27": "Finding of True Cross", + "1980-10-19": "Eid al-Adha* (*estimated)", + "1980-10-20": "Eid al-Adha* (*estimated)", + "1981-01-07": "Orthodox Christmas Day", + "1981-01-18": "Prophet Muhammad's Birthday* (*estimated)", + "1981-01-19": "Orthodox Epiphany Day; Prophet Muhammad's Birthday* (*estimated)", + "1981-03-02": "Adwa Victory Day", + "1981-04-24": "Orthodox Good Friday", + "1981-04-26": "Orthodox Easter Sunday", + "1981-05-01": "Labor Day", + "1981-05-05": "Patriots Day", + "1981-08-01": "Eid al-Fitr* (*estimated)", + "1981-09-11": "Ethiopian New Year's Day", + "1981-09-12": "Downfall of King Haile Selassie Day", + "1981-09-27": "Finding of True Cross", + "1981-10-08": "Eid al-Adha* (*estimated)", + "1981-10-09": "Eid al-Adha* (*estimated)", + "1982-01-07": "Orthodox Christmas Day; Prophet Muhammad's Birthday* (*estimated)", + "1982-01-08": "Prophet Muhammad's Birthday* (*estimated)", + "1982-01-19": "Orthodox Epiphany Day", + "1982-03-02": "Adwa Victory Day", + "1982-04-16": "Orthodox Good Friday", + "1982-04-18": "Orthodox Easter Sunday", + "1982-05-01": "Labor Day", + "1982-05-05": "Patriots Day", + "1982-07-21": "Eid al-Fitr* (*estimated)", + "1982-09-11": "Ethiopian New Year's Day", + "1982-09-12": "Downfall of King Haile Selassie Day", + "1982-09-27": "Eid al-Adha* (*estimated); Finding of True Cross", + "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-12-27": "Prophet Muhammad's Birthday* (*estimated)", + "1982-12-28": "Prophet Muhammad's Birthday* (*estimated)", + "1983-01-07": "Orthodox Christmas Day", + "1983-01-19": "Orthodox Epiphany Day", + "1983-03-02": "Adwa Victory Day", + "1983-05-01": "Labor Day", + "1983-05-05": "Patriots Day", + "1983-05-06": "Orthodox Good Friday", + "1983-05-08": "Orthodox Easter Sunday", + "1983-07-11": "Eid al-Fitr* (*estimated)", + "1983-09-12": "Ethiopian New Year's Day", + "1983-09-13": "Downfall of King Haile Selassie Day", + "1983-09-17": "Eid al-Adha* (*estimated)", + "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-28": "Finding of True Cross", + "1983-12-16": "Prophet Muhammad's Birthday* (*estimated)", + "1983-12-17": "Prophet Muhammad's Birthday* (*estimated)", + "1984-01-07": "Orthodox Christmas Day", + "1984-01-19": "Orthodox Epiphany Day", + "1984-03-02": "Adwa Victory Day", + "1984-04-20": "Orthodox Good Friday", + "1984-04-22": "Orthodox Easter Sunday", + "1984-05-01": "Labor Day", + "1984-05-05": "Patriots Day", + "1984-06-30": "Eid al-Fitr* (*estimated)", + "1984-09-05": "Eid al-Adha* (*estimated)", + "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-11": "Ethiopian New Year's Day", + "1984-09-12": "Downfall of King Haile Selassie Day", + "1984-09-27": "Finding of True Cross", + "1984-12-04": "Prophet Muhammad's Birthday* (*estimated)", + "1984-12-05": "Prophet Muhammad's Birthday* (*estimated)", + "1985-01-07": "Orthodox Christmas Day", + "1985-01-19": "Orthodox Epiphany Day", + "1985-03-02": "Adwa Victory Day", + "1985-04-12": "Orthodox Good Friday", + "1985-04-14": "Orthodox Easter Sunday", + "1985-05-01": "Labor Day", + "1985-05-05": "Patriots Day", + "1985-06-19": "Eid al-Fitr* (*estimated)", + "1985-08-26": "Eid al-Adha* (*estimated)", + "1985-08-27": "Eid al-Adha* (*estimated)", + "1985-09-11": "Ethiopian New Year's Day", + "1985-09-12": "Downfall of King Haile Selassie Day", + "1985-09-27": "Finding of True Cross", + "1985-11-24": "Prophet Muhammad's Birthday* (*estimated)", + "1985-11-25": "Prophet Muhammad's Birthday* (*estimated)", + "1986-01-07": "Orthodox Christmas Day", + "1986-01-19": "Orthodox Epiphany Day", + "1986-03-02": "Adwa Victory Day", + "1986-05-01": "Labor Day", + "1986-05-02": "Orthodox Good Friday", + "1986-05-04": "Orthodox Easter Sunday", + "1986-05-05": "Patriots Day", + "1986-06-08": "Eid al-Fitr* (*estimated)", + "1986-08-15": "Eid al-Adha* (*estimated)", + "1986-08-16": "Eid al-Adha* (*estimated)", + "1986-09-11": "Ethiopian New Year's Day", + "1986-09-12": "Downfall of King Haile Selassie Day", + "1986-09-27": "Finding of True Cross", + "1986-11-14": "Prophet Muhammad's Birthday* (*estimated)", + "1986-11-15": "Prophet Muhammad's Birthday* (*estimated)", + "1987-01-07": "Orthodox Christmas Day", + "1987-01-19": "Orthodox Epiphany Day", + "1987-03-02": "Adwa Victory Day", + "1987-04-17": "Orthodox Good Friday", + "1987-04-19": "Orthodox Easter Sunday", + "1987-05-01": "Labor Day", + "1987-05-05": "Patriots Day", + "1987-05-28": "Eid al-Fitr* (*estimated)", + "1987-08-04": "Eid al-Adha* (*estimated)", + "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-09-12": "Ethiopian New Year's Day", + "1987-09-13": "Downfall of King Haile Selassie Day", + "1987-09-28": "Finding of True Cross", + "1987-11-03": "Prophet Muhammad's Birthday* (*estimated)", + "1987-11-04": "Prophet Muhammad's Birthday* (*estimated)", + "1988-01-07": "Orthodox Christmas Day", + "1988-01-19": "Orthodox Epiphany Day", + "1988-03-02": "Adwa Victory Day", + "1988-04-08": "Orthodox Good Friday", + "1988-04-10": "Orthodox Easter Sunday", + "1988-05-01": "Labor Day", + "1988-05-05": "Patriots Day", + "1988-05-16": "Eid al-Fitr* (*estimated)", + "1988-07-23": "Eid al-Adha* (*estimated)", + "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-09-11": "Ethiopian New Year's Day", + "1988-09-12": "Downfall of King Haile Selassie Day", + "1988-09-27": "Finding of True Cross", + "1988-10-22": "Prophet Muhammad's Birthday* (*estimated)", + "1988-10-23": "Prophet Muhammad's Birthday* (*estimated)", + "1989-01-07": "Orthodox Christmas Day", + "1989-01-19": "Orthodox Epiphany Day", + "1989-03-02": "Adwa Victory Day", + "1989-04-28": "Orthodox Good Friday", + "1989-04-30": "Orthodox Easter Sunday", + "1989-05-01": "Labor Day", + "1989-05-05": "Patriots Day", + "1989-05-06": "Eid al-Fitr* (*estimated)", + "1989-07-13": "Eid al-Adha* (*estimated)", + "1989-07-14": "Eid al-Adha* (*estimated)", + "1989-09-11": "Ethiopian New Year's Day", + "1989-09-12": "Downfall of King Haile Selassie Day", + "1989-09-27": "Finding of True Cross", + "1989-10-11": "Prophet Muhammad's Birthday* (*estimated)", + "1989-10-12": "Prophet Muhammad's Birthday* (*estimated)", + "1990-01-07": "Orthodox Christmas Day", + "1990-01-19": "Orthodox Epiphany Day", + "1990-03-02": "Adwa Victory Day", + "1990-04-13": "Orthodox Good Friday", + "1990-04-15": "Orthodox Easter Sunday", + "1990-04-26": "Eid al-Fitr* (*estimated)", + "1990-05-01": "Labor Day", + "1990-05-05": "Patriots Day", + "1990-07-02": "Eid al-Adha* (*estimated)", + "1990-07-03": "Eid al-Adha* (*estimated)", + "1990-09-11": "Ethiopian New Year's Day", + "1990-09-12": "Downfall of King Haile Selassie Day", + "1990-09-27": "Finding of True Cross", + "1990-10-01": "Prophet Muhammad's Birthday* (*estimated)", + "1990-10-02": "Prophet Muhammad's Birthday* (*estimated)", + "1991-01-07": "Orthodox Christmas Day", + "1991-01-19": "Orthodox Epiphany Day", + "1991-03-02": "Adwa Victory Day", + "1991-04-05": "Orthodox Good Friday", + "1991-04-07": "Orthodox Easter Sunday", + "1991-04-15": "Eid al-Fitr* (*estimated)", + "1991-05-01": "Labor Day", + "1991-05-05": "Patriots Day", + "1991-06-22": "Eid al-Adha* (*estimated)", + "1991-06-23": "Eid al-Adha* (*estimated)", + "1991-09-12": "Ethiopian New Year's Day", + "1991-09-20": "Prophet Muhammad's Birthday* (*estimated)", + "1991-09-21": "Prophet Muhammad's Birthday* (*estimated)", + "1991-09-28": "Finding of True Cross", + "1992-01-07": "Orthodox Christmas Day", + "1992-01-19": "Orthodox Epiphany Day", + "1992-03-02": "Adwa Victory Day", + "1992-04-04": "Eid al-Fitr* (*estimated)", + "1992-04-24": "Orthodox Good Friday", + "1992-04-26": "Orthodox Easter Sunday", + "1992-05-01": "Labor Day", + "1992-05-05": "Patriots Day", + "1992-05-28": "Downfall of Dergue Regime Day", + "1992-06-11": "Eid al-Adha* (*estimated)", + "1992-06-12": "Eid al-Adha* (*estimated)", + "1992-09-09": "Prophet Muhammad's Birthday* (*estimated)", + "1992-09-10": "Prophet Muhammad's Birthday* (*estimated)", + "1992-09-11": "Ethiopian New Year's Day", + "1992-09-27": "Finding of True Cross", + "1993-01-07": "Orthodox Christmas Day", + "1993-01-19": "Orthodox Epiphany Day", + "1993-03-02": "Adwa Victory Day", + "1993-03-24": "Eid al-Fitr* (*estimated)", + "1993-04-16": "Orthodox Good Friday", + "1993-04-18": "Orthodox Easter Sunday", + "1993-05-01": "Labor Day", + "1993-05-05": "Patriots Day", + "1993-05-28": "Downfall of Dergue Regime Day", + "1993-05-31": "Eid al-Adha* (*estimated)", + "1993-06-01": "Eid al-Adha* (*estimated)", + "1993-08-29": "Prophet Muhammad's Birthday* (*estimated)", + "1993-08-30": "Prophet Muhammad's Birthday* (*estimated)", + "1993-09-11": "Ethiopian New Year's Day", + "1993-09-27": "Finding of True Cross", + "1994-01-07": "Orthodox Christmas Day", + "1994-01-19": "Orthodox Epiphany Day", + "1994-03-02": "Adwa Victory Day", + "1994-03-13": "Eid al-Fitr* (*estimated)", + "1994-04-29": "Orthodox Good Friday", + "1994-05-01": "Labor Day; Orthodox Easter Sunday", + "1994-05-05": "Patriots Day", + "1994-05-20": "Eid al-Adha* (*estimated)", + "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-28": "Downfall of Dergue Regime Day", + "1994-08-19": "Prophet Muhammad's Birthday* (*estimated)", + "1994-08-20": "Prophet Muhammad's Birthday* (*estimated)", + "1994-09-11": "Ethiopian New Year's Day", + "1994-09-27": "Finding of True Cross", + "1995-01-07": "Orthodox Christmas Day", + "1995-01-19": "Orthodox Epiphany Day", + "1995-03-02": "Adwa Victory Day; Eid al-Fitr* (*estimated)", + "1995-04-21": "Orthodox Good Friday", + "1995-04-23": "Orthodox Easter Sunday", + "1995-05-01": "Labor Day", + "1995-05-05": "Patriots Day", + "1995-05-09": "Eid al-Adha* (*estimated)", + "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-28": "Downfall of Dergue Regime Day", + "1995-08-08": "Prophet Muhammad's Birthday* (*estimated)", + "1995-08-09": "Prophet Muhammad's Birthday* (*estimated)", + "1995-09-12": "Ethiopian New Year's Day", + "1995-09-28": "Finding of True Cross", + "1996-01-07": "Orthodox Christmas Day", + "1996-01-19": "Orthodox Epiphany Day", + "1996-02-19": "Eid al-Fitr* (*estimated)", + "1996-03-02": "Adwa Victory Day", + "1996-04-12": "Orthodox Good Friday", + "1996-04-14": "Orthodox Easter Sunday", + "1996-04-27": "Eid al-Adha* (*estimated)", + "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-05-01": "Labor Day", + "1996-05-05": "Patriots Day", + "1996-05-28": "Downfall of Dergue Regime Day", + "1996-07-27": "Prophet Muhammad's Birthday* (*estimated)", + "1996-07-28": "Prophet Muhammad's Birthday* (*estimated)", + "1996-09-11": "Ethiopian New Year's Day", + "1996-09-27": "Finding of True Cross", + "1997-01-07": "Orthodox Christmas Day", + "1997-01-19": "Orthodox Epiphany Day", + "1997-02-08": "Eid al-Fitr* (*estimated)", + "1997-03-02": "Adwa Victory Day", + "1997-04-17": "Eid al-Adha* (*estimated)", + "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-25": "Orthodox Good Friday", + "1997-04-27": "Orthodox Easter Sunday", + "1997-05-01": "Labor Day", + "1997-05-05": "Patriots Day", + "1997-05-28": "Downfall of Dergue Regime Day", + "1997-07-16": "Prophet Muhammad's Birthday* (*estimated)", + "1997-07-17": "Prophet Muhammad's Birthday* (*estimated)", + "1997-09-11": "Ethiopian New Year's Day", + "1997-09-27": "Finding of True Cross", + "1998-01-07": "Orthodox Christmas Day", + "1998-01-19": "Orthodox Epiphany Day", + "1998-01-29": "Eid al-Fitr* (*estimated)", + "1998-03-02": "Adwa Victory Day", + "1998-04-07": "Eid al-Adha* (*estimated)", + "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-17": "Orthodox Good Friday", + "1998-04-19": "Orthodox Easter Sunday", + "1998-05-01": "Labor Day", + "1998-05-05": "Patriots Day", + "1998-05-28": "Downfall of Dergue Regime Day", + "1998-07-06": "Prophet Muhammad's Birthday* (*estimated)", + "1998-07-07": "Prophet Muhammad's Birthday* (*estimated)", + "1998-09-11": "Ethiopian New Year's Day", + "1998-09-27": "Finding of True Cross", + "1999-01-07": "Orthodox Christmas Day", + "1999-01-18": "Eid al-Fitr* (*estimated)", + "1999-01-19": "Orthodox Epiphany Day", + "1999-03-02": "Adwa Victory Day", + "1999-03-27": "Eid al-Adha* (*estimated)", + "1999-03-28": "Eid al-Adha* (*estimated)", + "1999-04-09": "Orthodox Good Friday", + "1999-04-11": "Orthodox Easter Sunday", + "1999-05-01": "Labor Day", + "1999-05-05": "Patriots Day", + "1999-05-28": "Downfall of Dergue Regime Day", + "1999-06-26": "Prophet Muhammad's Birthday* (*estimated)", + "1999-06-27": "Prophet Muhammad's Birthday* (*estimated)", + "1999-09-12": "Ethiopian New Year's Day", + "1999-09-28": "Finding of True Cross", + "2000-01-07": "Orthodox Christmas Day", + "2000-01-08": "Eid al-Fitr* (*estimated)", + "2000-01-19": "Orthodox Epiphany Day", + "2000-03-02": "Adwa Victory Day", + "2000-03-16": "Eid al-Adha* (*estimated)", + "2000-03-17": "Eid al-Adha* (*estimated)", + "2000-04-28": "Orthodox Good Friday", + "2000-04-30": "Orthodox Easter Sunday", + "2000-05-01": "Labor Day", + "2000-05-05": "Patriots Day", + "2000-05-28": "Downfall of Dergue Regime Day", + "2000-06-14": "Prophet Muhammad's Birthday* (*estimated)", + "2000-06-15": "Prophet Muhammad's Birthday* (*estimated)", + "2000-09-11": "Ethiopian New Year's Day", + "2000-09-27": "Finding of True Cross", + "2000-12-27": "Eid al-Fitr* (*estimated)", + "2001-01-07": "Orthodox Christmas Day", + "2001-01-19": "Orthodox Epiphany Day", + "2001-03-02": "Adwa Victory Day", + "2001-03-05": "Eid al-Adha* (*estimated)", + "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-04-13": "Orthodox Good Friday", + "2001-04-15": "Orthodox Easter Sunday", + "2001-05-01": "Labor Day", + "2001-05-05": "Patriots Day", + "2001-05-28": "Downfall of Dergue Regime Day", + "2001-06-04": "Prophet Muhammad's Birthday* (*estimated)", + "2001-06-05": "Prophet Muhammad's Birthday* (*estimated)", + "2001-09-11": "Ethiopian New Year's Day", + "2001-09-27": "Finding of True Cross", + "2001-12-16": "Eid al-Fitr* (*estimated)", + "2002-01-07": "Orthodox Christmas Day", + "2002-01-19": "Orthodox Epiphany Day", + "2002-02-22": "Eid al-Adha* (*estimated)", + "2002-02-23": "Eid al-Adha* (*estimated)", + "2002-03-02": "Adwa Victory Day", + "2002-05-01": "Labor Day", + "2002-05-03": "Orthodox Good Friday", + "2002-05-05": "Orthodox Easter Sunday; Patriots Day", + "2002-05-24": "Prophet Muhammad's Birthday* (*estimated)", + "2002-05-25": "Prophet Muhammad's Birthday* (*estimated)", + "2002-05-28": "Downfall of Dergue Regime Day", + "2002-09-11": "Ethiopian New Year's Day", + "2002-09-27": "Finding of True Cross", + "2002-12-05": "Eid al-Fitr* (*estimated)", + "2003-01-07": "Orthodox Christmas Day", + "2003-01-19": "Orthodox Epiphany Day", + "2003-02-11": "Eid al-Adha* (*estimated)", + "2003-02-12": "Eid al-Adha* (*estimated)", + "2003-03-02": "Adwa Victory Day", + "2003-04-25": "Orthodox Good Friday", + "2003-04-27": "Orthodox Easter Sunday", + "2003-05-01": "Labor Day", + "2003-05-05": "Patriots Day", + "2003-05-13": "Prophet Muhammad's Birthday* (*estimated)", + "2003-05-14": "Prophet Muhammad's Birthday* (*estimated)", + "2003-05-28": "Downfall of Dergue Regime Day", + "2003-09-12": "Ethiopian New Year's Day", + "2003-09-28": "Finding of True Cross", + "2003-11-25": "Eid al-Fitr* (*estimated)", + "2004-01-07": "Orthodox Christmas Day", + "2004-01-19": "Orthodox Epiphany Day", + "2004-02-01": "Eid al-Adha* (*estimated)", + "2004-02-02": "Eid al-Adha* (*estimated)", + "2004-03-02": "Adwa Victory Day", + "2004-04-09": "Orthodox Good Friday", + "2004-04-11": "Orthodox Easter Sunday", + "2004-05-01": "Labor Day; Prophet Muhammad's Birthday* (*estimated)", + "2004-05-02": "Prophet Muhammad's Birthday* (*estimated)", + "2004-05-05": "Patriots Day", + "2004-05-28": "Downfall of Dergue Regime Day", + "2004-09-11": "Ethiopian New Year's Day", + "2004-09-27": "Finding of True Cross", + "2004-11-14": "Eid al-Fitr* (*estimated)", + "2005-01-07": "Orthodox Christmas Day", + "2005-01-19": "Orthodox Epiphany Day", + "2005-01-21": "Eid al-Adha* (*estimated)", + "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-03-02": "Adwa Victory Day", + "2005-04-21": "Prophet Muhammad's Birthday* (*estimated)", + "2005-04-22": "Prophet Muhammad's Birthday* (*estimated)", + "2005-04-29": "Orthodox Good Friday", + "2005-05-01": "Labor Day; Orthodox Easter Sunday", + "2005-05-05": "Patriots Day", + "2005-05-28": "Downfall of Dergue Regime Day", + "2005-09-11": "Ethiopian New Year's Day", + "2005-09-27": "Finding of True Cross", + "2005-11-03": "Eid al-Fitr* (*estimated)", + "2006-01-07": "Orthodox Christmas Day", + "2006-01-10": "Eid al-Adha* (*estimated)", + "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-19": "Orthodox Epiphany Day", + "2006-03-02": "Adwa Victory Day", + "2006-04-10": "Prophet Muhammad's Birthday* (*estimated)", + "2006-04-11": "Prophet Muhammad's Birthday* (*estimated)", + "2006-04-21": "Orthodox Good Friday", + "2006-04-23": "Orthodox Easter Sunday", + "2006-05-01": "Labor Day", + "2006-05-05": "Patriots Day", + "2006-05-28": "Downfall of Dergue Regime Day", + "2006-09-11": "Ethiopian New Year's Day", + "2006-09-27": "Finding of True Cross", + "2006-10-23": "Eid al-Fitr* (*estimated)", + "2006-12-31": "Eid al-Adha* (*estimated)", + "2007-01-01": "Eid al-Adha* (*estimated)", + "2007-01-07": "Orthodox Christmas Day", + "2007-01-19": "Orthodox Epiphany Day", + "2007-03-02": "Adwa Victory Day", + "2007-03-31": "Prophet Muhammad's Birthday* (*estimated)", + "2007-04-01": "Prophet Muhammad's Birthday* (*estimated)", + "2007-04-06": "Orthodox Good Friday", + "2007-04-08": "Orthodox Easter Sunday", + "2007-05-01": "Labor Day", + "2007-05-05": "Patriots Day", + "2007-05-28": "Downfall of Dergue Regime Day", + "2007-09-12": "Ethiopian New Year's Day", + "2007-09-28": "Finding of True Cross", + "2007-10-13": "Eid al-Fitr* (*estimated)", + "2007-12-20": "Eid al-Adha* (*estimated)", + "2007-12-21": "Eid al-Adha* (*estimated)", + "2008-01-07": "Orthodox Christmas Day", + "2008-01-19": "Orthodox Epiphany Day", + "2008-03-02": "Adwa Victory Day", + "2008-03-20": "Prophet Muhammad's Birthday* (*estimated)", + "2008-03-21": "Prophet Muhammad's Birthday* (*estimated)", + "2008-04-25": "Orthodox Good Friday", + "2008-04-27": "Orthodox Easter Sunday", + "2008-05-01": "Labor Day", + "2008-05-05": "Patriots Day", + "2008-05-28": "Downfall of Dergue Regime Day", + "2008-09-11": "Ethiopian New Year's Day", + "2008-09-27": "Finding of True Cross", + "2008-10-01": "Eid al-Fitr* (*estimated)", + "2008-12-08": "Eid al-Adha* (*estimated)", + "2008-12-09": "Eid al-Adha* (*estimated)", + "2009-01-07": "Orthodox Christmas Day", + "2009-01-19": "Orthodox Epiphany Day", + "2009-03-02": "Adwa Victory Day", + "2009-03-09": "Prophet Muhammad's Birthday* (*estimated)", + "2009-03-10": "Prophet Muhammad's Birthday* (*estimated)", + "2009-04-17": "Orthodox Good Friday", + "2009-04-19": "Orthodox Easter Sunday", + "2009-05-01": "Labor Day", + "2009-05-05": "Patriots Day", + "2009-05-28": "Downfall of Dergue Regime Day", + "2009-09-11": "Ethiopian New Year's Day", + "2009-09-20": "Eid al-Fitr* (*estimated)", + "2009-09-27": "Finding of True Cross", + "2009-11-27": "Eid al-Adha* (*estimated)", + "2009-11-28": "Eid al-Adha* (*estimated)", + "2010-01-07": "Orthodox Christmas Day", + "2010-01-19": "Orthodox Epiphany Day", + "2010-02-26": "Prophet Muhammad's Birthday* (*estimated)", + "2010-02-27": "Prophet Muhammad's Birthday* (*estimated)", + "2010-03-02": "Adwa Victory Day", + "2010-04-02": "Orthodox Good Friday", + "2010-04-04": "Orthodox Easter Sunday", + "2010-05-01": "Labor Day", + "2010-05-05": "Patriots Day", + "2010-05-28": "Downfall of Dergue Regime Day", + "2010-09-10": "Eid al-Fitr* (*estimated)", + "2010-09-11": "Ethiopian New Year's Day", + "2010-09-27": "Finding of True Cross", + "2010-11-16": "Eid al-Adha* (*estimated)", + "2010-11-17": "Eid al-Adha* (*estimated)", + "2011-01-07": "Orthodox Christmas Day", + "2011-01-19": "Orthodox Epiphany Day", + "2011-02-15": "Prophet Muhammad's Birthday* (*estimated)", + "2011-02-16": "Prophet Muhammad's Birthday* (*estimated)", + "2011-03-02": "Adwa Victory Day", + "2011-04-22": "Orthodox Good Friday", + "2011-04-24": "Orthodox Easter Sunday", + "2011-05-01": "Labor Day", + "2011-05-05": "Patriots Day", + "2011-05-28": "Downfall of Dergue Regime Day", + "2011-08-30": "Eid al-Fitr* (*estimated)", + "2011-09-12": "Ethiopian New Year's Day", + "2011-09-28": "Finding of True Cross", + "2011-11-06": "Eid al-Adha* (*estimated)", + "2011-11-07": "Eid al-Adha* (*estimated)", + "2012-01-07": "Orthodox Christmas Day", + "2012-01-19": "Orthodox Epiphany Day", + "2012-02-04": "Prophet Muhammad's Birthday* (*estimated)", + "2012-02-05": "Prophet Muhammad's Birthday* (*estimated)", + "2012-03-02": "Adwa Victory Day", + "2012-04-13": "Orthodox Good Friday", + "2012-04-15": "Orthodox Easter Sunday", + "2012-05-01": "Labor Day", + "2012-05-05": "Patriots Day", + "2012-05-28": "Downfall of Dergue Regime Day", + "2012-08-19": "Eid al-Fitr* (*estimated)", + "2012-09-11": "Ethiopian New Year's Day", + "2012-09-27": "Finding of True Cross", + "2012-10-26": "Eid al-Adha* (*estimated)", + "2012-10-27": "Eid al-Adha* (*estimated)", + "2013-01-07": "Orthodox Christmas Day", + "2013-01-19": "Orthodox Epiphany Day", + "2013-01-24": "Prophet Muhammad's Birthday* (*estimated)", + "2013-01-25": "Prophet Muhammad's Birthday* (*estimated)", + "2013-03-02": "Adwa Victory Day", + "2013-05-01": "Labor Day", + "2013-05-03": "Orthodox Good Friday", + "2013-05-05": "Orthodox Easter Sunday; Patriots Day", + "2013-05-28": "Downfall of Dergue Regime Day", + "2013-08-08": "Eid al-Fitr* (*estimated)", + "2013-09-11": "Ethiopian New Year's Day", + "2013-09-27": "Finding of True Cross", + "2013-10-15": "Eid al-Adha* (*estimated)", + "2013-10-16": "Eid al-Adha* (*estimated)", + "2014-01-07": "Orthodox Christmas Day", + "2014-01-13": "Prophet Muhammad's Birthday* (*estimated)", + "2014-01-14": "Prophet Muhammad's Birthday* (*estimated)", + "2014-01-19": "Orthodox Epiphany Day", + "2014-03-02": "Adwa Victory Day", + "2014-04-18": "Orthodox Good Friday", + "2014-04-20": "Orthodox Easter Sunday", + "2014-05-01": "Labor Day", + "2014-05-05": "Patriots Day", + "2014-05-28": "Downfall of Dergue Regime Day", + "2014-07-28": "Eid al-Fitr* (*estimated)", + "2014-09-11": "Ethiopian New Year's Day", + "2014-09-27": "Finding of True Cross", + "2014-10-04": "Eid al-Adha* (*estimated)", + "2014-10-05": "Eid al-Adha* (*estimated)", + "2015-01-03": "Prophet Muhammad's Birthday* (*estimated)", + "2015-01-04": "Prophet Muhammad's Birthday* (*estimated)", + "2015-01-07": "Orthodox Christmas Day", + "2015-01-19": "Orthodox Epiphany Day", + "2015-03-02": "Adwa Victory Day", + "2015-04-10": "Orthodox Good Friday", + "2015-04-12": "Orthodox Easter Sunday", + "2015-05-01": "Labor Day", + "2015-05-05": "Patriots Day", + "2015-05-28": "Downfall of Dergue Regime Day", + "2015-07-17": "Eid al-Fitr* (*estimated)", + "2015-09-12": "Ethiopian New Year's Day", + "2015-09-23": "Eid al-Adha* (*estimated)", + "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-28": "Finding of True Cross", + "2015-12-23": "Prophet Muhammad's Birthday* (*estimated)", + "2015-12-24": "Prophet Muhammad's Birthday* (*estimated)", + "2016-01-07": "Orthodox Christmas Day", + "2016-01-19": "Orthodox Epiphany Day", + "2016-03-02": "Adwa Victory Day", + "2016-04-29": "Orthodox Good Friday", + "2016-05-01": "Labor Day; Orthodox Easter Sunday", + "2016-05-05": "Patriots Day", + "2016-05-28": "Downfall of Dergue Regime Day", + "2016-07-06": "Eid al-Fitr* (*estimated)", + "2016-09-11": "Eid al-Adha* (*estimated); Ethiopian New Year's Day", + "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-27": "Finding of True Cross", + "2016-12-11": "Prophet Muhammad's Birthday* (*estimated)", + "2016-12-12": "Prophet Muhammad's Birthday* (*estimated)", + "2017-01-07": "Orthodox Christmas Day", + "2017-01-19": "Orthodox Epiphany Day", + "2017-03-02": "Adwa Victory Day", + "2017-04-14": "Orthodox Good Friday", + "2017-04-16": "Orthodox Easter Sunday", + "2017-05-01": "Labor Day", + "2017-05-05": "Patriots Day", + "2017-05-28": "Downfall of Dergue Regime Day", + "2017-06-25": "Eid al-Fitr* (*estimated)", + "2017-09-01": "Eid al-Adha* (*estimated)", + "2017-09-02": "Eid al-Adha* (*estimated)", + "2017-09-11": "Ethiopian New Year's Day", + "2017-09-27": "Finding of True Cross", + "2017-11-30": "Prophet Muhammad's Birthday* (*estimated)", + "2017-12-01": "Prophet Muhammad's Birthday* (*estimated)", + "2018-01-07": "Orthodox Christmas Day", + "2018-01-19": "Orthodox Epiphany Day", + "2018-03-02": "Adwa Victory Day", + "2018-04-06": "Orthodox Good Friday", + "2018-04-08": "Orthodox Easter Sunday", + "2018-05-01": "Labor Day", + "2018-05-05": "Patriots Day", + "2018-05-28": "Downfall of Dergue Regime Day", + "2018-06-15": "Eid al-Fitr* (*estimated)", + "2018-08-21": "Eid al-Adha* (*estimated)", + "2018-08-22": "Eid al-Adha* (*estimated)", + "2018-09-11": "Ethiopian New Year's Day", + "2018-09-27": "Finding of True Cross", + "2018-11-20": "Prophet Muhammad's Birthday* (*estimated)", + "2018-11-21": "Prophet Muhammad's Birthday* (*estimated)", + "2019-01-07": "Orthodox Christmas Day", + "2019-01-19": "Orthodox Epiphany Day", + "2019-03-02": "Adwa Victory Day", + "2019-04-26": "Orthodox Good Friday", + "2019-04-28": "Orthodox Easter Sunday", + "2019-05-01": "Labor Day", + "2019-05-05": "Patriots Day", + "2019-05-28": "Downfall of Dergue Regime Day", + "2019-06-04": "Eid al-Fitr* (*estimated)", + "2019-08-11": "Eid al-Adha* (*estimated)", + "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-09-12": "Ethiopian New Year's Day", + "2019-09-28": "Finding of True Cross", + "2019-11-09": "Prophet Muhammad's Birthday* (*estimated)", + "2019-11-10": "Prophet Muhammad's Birthday* (*estimated)", + "2020-01-07": "Orthodox Christmas Day", + "2020-01-19": "Orthodox Epiphany Day", + "2020-03-02": "Adwa Victory Day", + "2020-04-17": "Orthodox Good Friday", + "2020-04-19": "Orthodox Easter Sunday", + "2020-05-01": "Labor Day", + "2020-05-05": "Patriots Day", + "2020-05-24": "Eid al-Fitr* (*estimated)", + "2020-05-28": "Downfall of Dergue Regime Day", + "2020-07-31": "Eid al-Adha* (*estimated)", + "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-09-11": "Ethiopian New Year's Day", + "2020-09-27": "Finding of True Cross", + "2020-10-29": "Prophet Muhammad's Birthday* (*estimated)", + "2020-10-30": "Prophet Muhammad's Birthday* (*estimated)", + "2021-01-07": "Orthodox Christmas Day", + "2021-01-19": "Orthodox Epiphany Day", + "2021-03-02": "Adwa Victory Day", + "2021-04-30": "Orthodox Good Friday", + "2021-05-01": "Labor Day", + "2021-05-02": "Orthodox Easter Sunday", + "2021-05-05": "Patriots Day", + "2021-05-13": "Eid al-Fitr* (*estimated)", + "2021-05-28": "Downfall of Dergue Regime Day", + "2021-07-20": "Eid al-Adha* (*estimated)", + "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-09-11": "Ethiopian New Year's Day", + "2021-09-27": "Finding of True Cross", + "2021-10-18": "Prophet Muhammad's Birthday* (*estimated)", + "2021-10-19": "Prophet Muhammad's Birthday* (*estimated)", + "2022-01-07": "Orthodox Christmas Day", + "2022-01-19": "Orthodox Epiphany Day", + "2022-03-02": "Adwa Victory Day", + "2022-04-22": "Orthodox Good Friday", + "2022-04-24": "Orthodox Easter Sunday", + "2022-05-01": "Labor Day", + "2022-05-02": "Eid al-Fitr* (*estimated)", + "2022-05-05": "Patriots Day", + "2022-05-28": "Downfall of Dergue Regime Day", + "2022-07-09": "Eid al-Adha* (*estimated)", + "2022-07-10": "Eid al-Adha* (*estimated)", + "2022-09-11": "Ethiopian New Year's Day", + "2022-09-27": "Finding of True Cross", + "2022-10-08": "Prophet Muhammad's Birthday* (*estimated)", + "2022-10-09": "Prophet Muhammad's Birthday* (*estimated)", + "2023-01-07": "Orthodox Christmas Day", + "2023-01-19": "Orthodox Epiphany Day", + "2023-03-02": "Adwa Victory Day", + "2023-04-14": "Orthodox Good Friday", + "2023-04-16": "Orthodox Easter Sunday", + "2023-04-21": "Eid al-Fitr* (*estimated)", + "2023-05-01": "Labor Day", + "2023-05-05": "Patriots Day", + "2023-05-28": "Downfall of Dergue Regime Day", + "2023-06-28": "Eid al-Adha* (*estimated)", + "2023-06-29": "Eid al-Adha* (*estimated)", + "2023-09-12": "Ethiopian New Year's Day", + "2023-09-27": "Prophet Muhammad's Birthday* (*estimated)", + "2023-09-28": "Finding of True Cross; Prophet Muhammad's Birthday* (*estimated)", + "2024-01-07": "Orthodox Christmas Day", + "2024-01-19": "Orthodox Epiphany Day", + "2024-03-02": "Adwa Victory Day", + "2024-04-10": "Eid al-Fitr* (*estimated)", + "2024-05-01": "Labor Day", + "2024-05-03": "Orthodox Good Friday", + "2024-05-05": "Orthodox Easter Sunday; Patriots Day", + "2024-05-28": "Downfall of Dergue Regime Day", + "2024-06-16": "Eid al-Adha* (*estimated)", + "2024-06-17": "Eid al-Adha* (*estimated)", + "2024-09-11": "Ethiopian New Year's Day", + "2024-09-15": "Prophet Muhammad's Birthday* (*estimated)", + "2024-09-16": "Prophet Muhammad's Birthday* (*estimated)", + "2024-09-27": "Finding of True Cross", + "2025-01-07": "Orthodox Christmas Day", + "2025-01-19": "Orthodox Epiphany Day", + "2025-03-02": "Adwa Victory Day", + "2025-03-30": "Eid al-Fitr* (*estimated)", + "2025-04-18": "Orthodox Good Friday", + "2025-04-20": "Orthodox Easter Sunday", + "2025-05-01": "Labor Day", + "2025-05-05": "Patriots Day", + "2025-05-28": "Downfall of Dergue Regime Day", + "2025-06-06": "Eid al-Adha* (*estimated)", + "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-09-04": "Prophet Muhammad's Birthday* (*estimated)", + "2025-09-05": "Prophet Muhammad's Birthday* (*estimated)", + "2025-09-11": "Ethiopian New Year's Day", + "2025-09-27": "Finding of True Cross", + "2026-01-07": "Orthodox Christmas Day", + "2026-01-19": "Orthodox Epiphany Day", + "2026-03-02": "Adwa Victory Day", + "2026-03-20": "Eid al-Fitr* (*estimated)", + "2026-04-10": "Orthodox Good Friday", + "2026-04-12": "Orthodox Easter Sunday", + "2026-05-01": "Labor Day", + "2026-05-05": "Patriots Day", + "2026-05-27": "Eid al-Adha* (*estimated)", + "2026-05-28": "Downfall of Dergue Regime Day; Eid al-Adha* (*estimated)", + "2026-08-25": "Prophet Muhammad's Birthday* (*estimated)", + "2026-08-26": "Prophet Muhammad's Birthday* (*estimated)", + "2026-09-11": "Ethiopian New Year's Day", + "2026-09-27": "Finding of True Cross", + "2027-01-07": "Orthodox Christmas Day", + "2027-01-19": "Orthodox Epiphany Day", + "2027-03-02": "Adwa Victory Day", + "2027-03-09": "Eid al-Fitr* (*estimated)", + "2027-04-30": "Orthodox Good Friday", + "2027-05-01": "Labor Day", + "2027-05-02": "Orthodox Easter Sunday", + "2027-05-05": "Patriots Day", + "2027-05-16": "Eid al-Adha* (*estimated)", + "2027-05-17": "Eid al-Adha* (*estimated)", + "2027-05-28": "Downfall of Dergue Regime Day", + "2027-08-14": "Prophet Muhammad's Birthday* (*estimated)", + "2027-08-15": "Prophet Muhammad's Birthday* (*estimated)", + "2027-09-12": "Ethiopian New Year's Day", + "2027-09-28": "Finding of True Cross", + "2028-01-07": "Orthodox Christmas Day", + "2028-01-19": "Orthodox Epiphany Day", + "2028-02-26": "Eid al-Fitr* (*estimated)", + "2028-03-02": "Adwa Victory Day", + "2028-04-14": "Orthodox Good Friday", + "2028-04-16": "Orthodox Easter Sunday", + "2028-05-01": "Labor Day", + "2028-05-05": "Eid al-Adha* (*estimated); Patriots Day", + "2028-05-06": "Eid al-Adha* (*estimated)", + "2028-05-28": "Downfall of Dergue Regime Day", + "2028-08-03": "Prophet Muhammad's Birthday* (*estimated)", + "2028-08-04": "Prophet Muhammad's Birthday* (*estimated)", + "2028-09-11": "Ethiopian New Year's Day", + "2028-09-27": "Finding of True Cross", + "2029-01-07": "Orthodox Christmas Day", + "2029-01-19": "Orthodox Epiphany Day", + "2029-02-14": "Eid al-Fitr* (*estimated)", + "2029-03-02": "Adwa Victory Day", + "2029-04-06": "Orthodox Good Friday", + "2029-04-08": "Orthodox Easter Sunday", + "2029-04-24": "Eid al-Adha* (*estimated)", + "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-05-01": "Labor Day", + "2029-05-05": "Patriots Day", + "2029-05-28": "Downfall of Dergue Regime Day", + "2029-07-24": "Prophet Muhammad's Birthday* (*estimated)", + "2029-07-25": "Prophet Muhammad's Birthday* (*estimated)", + "2029-09-11": "Ethiopian New Year's Day", + "2029-09-27": "Finding of True Cross", + "2030-01-07": "Orthodox Christmas Day", + "2030-01-19": "Orthodox Epiphany Day", + "2030-02-04": "Eid al-Fitr* (*estimated)", + "2030-03-02": "Adwa Victory Day", + "2030-04-13": "Eid al-Adha* (*estimated)", + "2030-04-14": "Eid al-Adha* (*estimated)", + "2030-04-26": "Orthodox Good Friday", + "2030-04-28": "Orthodox Easter Sunday", + "2030-05-01": "Labor Day", + "2030-05-05": "Patriots Day", + "2030-05-28": "Downfall of Dergue Regime Day", + "2030-07-13": "Prophet Muhammad's Birthday* (*estimated)", + "2030-07-14": "Prophet Muhammad's Birthday* (*estimated)", + "2030-09-11": "Ethiopian New Year's Day", + "2030-09-27": "Finding of True Cross", + "2031-01-07": "Orthodox Christmas Day", + "2031-01-19": "Orthodox Epiphany Day", + "2031-01-24": "Eid al-Fitr* (*estimated)", + "2031-03-02": "Adwa Victory Day", + "2031-04-02": "Eid al-Adha* (*estimated)", + "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-11": "Orthodox Good Friday", + "2031-04-13": "Orthodox Easter Sunday", + "2031-05-01": "Labor Day", + "2031-05-05": "Patriots Day", + "2031-05-28": "Downfall of Dergue Regime Day", + "2031-07-02": "Prophet Muhammad's Birthday* (*estimated)", + "2031-07-03": "Prophet Muhammad's Birthday* (*estimated)", + "2031-09-12": "Ethiopian New Year's Day", + "2031-09-28": "Finding of True Cross", + "2032-01-07": "Orthodox Christmas Day", + "2032-01-14": "Eid al-Fitr* (*estimated)", + "2032-01-19": "Orthodox Epiphany Day", + "2032-03-02": "Adwa Victory Day", + "2032-03-22": "Eid al-Adha* (*estimated)", + "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-04-30": "Orthodox Good Friday", + "2032-05-01": "Labor Day", + "2032-05-02": "Orthodox Easter Sunday", + "2032-05-05": "Patriots Day", + "2032-05-28": "Downfall of Dergue Regime Day", + "2032-06-20": "Prophet Muhammad's Birthday* (*estimated)", + "2032-06-21": "Prophet Muhammad's Birthday* (*estimated)", + "2032-09-11": "Ethiopian New Year's Day", + "2032-09-27": "Finding of True Cross", + "2033-01-02": "Eid al-Fitr* (*estimated)", + "2033-01-07": "Orthodox Christmas Day", + "2033-01-19": "Orthodox Epiphany Day", + "2033-03-02": "Adwa Victory Day", + "2033-03-11": "Eid al-Adha* (*estimated)", + "2033-03-12": "Eid al-Adha* (*estimated)", + "2033-04-22": "Orthodox Good Friday", + "2033-04-24": "Orthodox Easter Sunday", + "2033-05-01": "Labor Day", + "2033-05-05": "Patriots Day", + "2033-05-28": "Downfall of Dergue Regime Day", + "2033-06-09": "Prophet Muhammad's Birthday* (*estimated)", + "2033-06-10": "Prophet Muhammad's Birthday* (*estimated)", + "2033-09-11": "Ethiopian New Year's Day", + "2033-09-27": "Finding of True Cross", + "2033-12-23": "Eid al-Fitr* (*estimated)", + "2034-01-07": "Orthodox Christmas Day", + "2034-01-19": "Orthodox Epiphany Day", + "2034-03-01": "Eid al-Adha* (*estimated)", + "2034-03-02": "Adwa Victory Day; Eid al-Adha* (*estimated)", + "2034-04-07": "Orthodox Good Friday", + "2034-04-09": "Orthodox Easter Sunday", + "2034-05-01": "Labor Day", + "2034-05-05": "Patriots Day", + "2034-05-28": "Downfall of Dergue Regime Day", + "2034-05-30": "Prophet Muhammad's Birthday* (*estimated)", + "2034-05-31": "Prophet Muhammad's Birthday* (*estimated)", + "2034-09-11": "Ethiopian New Year's Day", + "2034-09-27": "Finding of True Cross", + "2034-12-12": "Eid al-Fitr* (*estimated)", + "2035-01-07": "Orthodox Christmas Day", + "2035-01-19": "Orthodox Epiphany Day", + "2035-02-18": "Eid al-Adha* (*estimated)", + "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-03-02": "Adwa Victory Day", + "2035-04-27": "Orthodox Good Friday", + "2035-04-29": "Orthodox Easter Sunday", + "2035-05-01": "Labor Day", + "2035-05-05": "Patriots Day", + "2035-05-20": "Prophet Muhammad's Birthday* (*estimated)", + "2035-05-21": "Prophet Muhammad's Birthday* (*estimated)", + "2035-05-28": "Downfall of Dergue Regime Day", + "2035-09-12": "Ethiopian New Year's Day", + "2035-09-28": "Finding of True Cross", + "2035-12-01": "Eid al-Fitr* (*estimated)", + "2036-01-07": "Orthodox Christmas Day", + "2036-01-19": "Orthodox Epiphany Day", + "2036-02-07": "Eid al-Adha* (*estimated)", + "2036-02-08": "Eid al-Adha* (*estimated)", + "2036-03-02": "Adwa Victory Day", + "2036-04-18": "Orthodox Good Friday", + "2036-04-20": "Orthodox Easter Sunday", + "2036-05-01": "Labor Day", + "2036-05-05": "Patriots Day", + "2036-05-08": "Prophet Muhammad's Birthday* (*estimated)", + "2036-05-09": "Prophet Muhammad's Birthday* (*estimated)", + "2036-05-28": "Downfall of Dergue Regime Day", + "2036-09-11": "Ethiopian New Year's Day", + "2036-09-27": "Finding of True Cross", + "2036-11-19": "Eid al-Fitr* (*estimated)", + "2037-01-07": "Orthodox Christmas Day", + "2037-01-19": "Orthodox Epiphany Day", + "2037-01-26": "Eid al-Adha* (*estimated)", + "2037-01-27": "Eid al-Adha* (*estimated)", + "2037-03-02": "Adwa Victory Day", + "2037-04-03": "Orthodox Good Friday", + "2037-04-05": "Orthodox Easter Sunday", + "2037-04-28": "Prophet Muhammad's Birthday* (*estimated)", + "2037-04-29": "Prophet Muhammad's Birthday* (*estimated)", + "2037-05-01": "Labor Day", + "2037-05-05": "Patriots Day", + "2037-05-28": "Downfall of Dergue Regime Day", + "2037-09-11": "Ethiopian New Year's Day", + "2037-09-27": "Finding of True Cross", + "2037-11-08": "Eid al-Fitr* (*estimated)", + "2038-01-07": "Orthodox Christmas Day", + "2038-01-16": "Eid al-Adha* (*estimated)", + "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-19": "Orthodox Epiphany Day", + "2038-03-02": "Adwa Victory Day", + "2038-04-17": "Prophet Muhammad's Birthday* (*estimated)", + "2038-04-18": "Prophet Muhammad's Birthday* (*estimated)", + "2038-04-23": "Orthodox Good Friday", + "2038-04-25": "Orthodox Easter Sunday", + "2038-05-01": "Labor Day", + "2038-05-05": "Patriots Day", + "2038-05-28": "Downfall of Dergue Regime Day", + "2038-09-11": "Ethiopian New Year's Day", + "2038-09-27": "Finding of True Cross", + "2038-10-29": "Eid al-Fitr* (*estimated)", + "2039-01-05": "Eid al-Adha* (*estimated)", + "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-07": "Orthodox Christmas Day", + "2039-01-19": "Orthodox Epiphany Day", + "2039-03-02": "Adwa Victory Day", + "2039-04-06": "Prophet Muhammad's Birthday* (*estimated)", + "2039-04-07": "Prophet Muhammad's Birthday* (*estimated)", + "2039-04-15": "Orthodox Good Friday", + "2039-04-17": "Orthodox Easter Sunday", + "2039-05-01": "Labor Day", + "2039-05-05": "Patriots Day", + "2039-05-28": "Downfall of Dergue Regime Day", + "2039-09-12": "Ethiopian New Year's Day", + "2039-09-28": "Finding of True Cross", + "2039-10-19": "Eid al-Fitr* (*estimated)", + "2039-12-26": "Eid al-Adha* (*estimated)", + "2039-12-27": "Eid al-Adha* (*estimated)", + "2040-01-07": "Orthodox Christmas Day", + "2040-01-19": "Orthodox Epiphany Day", + "2040-03-02": "Adwa Victory Day", + "2040-03-25": "Prophet Muhammad's Birthday* (*estimated)", + "2040-03-26": "Prophet Muhammad's Birthday* (*estimated)", + "2040-05-01": "Labor Day", + "2040-05-04": "Orthodox Good Friday", + "2040-05-05": "Patriots Day", + "2040-05-06": "Orthodox Easter Sunday", + "2040-05-28": "Downfall of Dergue Regime Day", + "2040-09-11": "Ethiopian New Year's Day", + "2040-09-27": "Finding of True Cross", + "2040-10-07": "Eid al-Fitr* (*estimated)", + "2040-12-14": "Eid al-Adha* (*estimated)", + "2040-12-15": "Eid al-Adha* (*estimated)", + "2041-01-07": "Orthodox Christmas Day", + "2041-01-19": "Orthodox Epiphany Day", + "2041-03-02": "Adwa Victory Day", + "2041-03-15": "Prophet Muhammad's Birthday* (*estimated)", + "2041-03-16": "Prophet Muhammad's Birthday* (*estimated)", + "2041-04-19": "Orthodox Good Friday", + "2041-04-21": "Orthodox Easter Sunday", + "2041-05-01": "Labor Day", + "2041-05-05": "Patriots Day", + "2041-05-28": "Downfall of Dergue Regime Day", + "2041-09-11": "Ethiopian New Year's Day", + "2041-09-26": "Eid al-Fitr* (*estimated)", + "2041-09-27": "Finding of True Cross", + "2041-12-04": "Eid al-Adha* (*estimated)", + "2041-12-05": "Eid al-Adha* (*estimated)", + "2042-01-07": "Orthodox Christmas Day", + "2042-01-19": "Orthodox Epiphany Day", + "2042-03-02": "Adwa Victory Day", + "2042-03-04": "Prophet Muhammad's Birthday* (*estimated)", + "2042-03-05": "Prophet Muhammad's Birthday* (*estimated)", + "2042-04-11": "Orthodox Good Friday", + "2042-04-13": "Orthodox Easter Sunday", + "2042-05-01": "Labor Day", + "2042-05-05": "Patriots Day", + "2042-05-28": "Downfall of Dergue Regime Day", + "2042-09-11": "Ethiopian New Year's Day", + "2042-09-15": "Eid al-Fitr* (*estimated)", + "2042-09-27": "Finding of True Cross", + "2042-11-23": "Eid al-Adha* (*estimated)", + "2042-11-24": "Eid al-Adha* (*estimated)", + "2043-01-07": "Orthodox Christmas Day", + "2043-01-19": "Orthodox Epiphany Day", + "2043-02-22": "Prophet Muhammad's Birthday* (*estimated)", + "2043-02-23": "Prophet Muhammad's Birthday* (*estimated)", + "2043-03-02": "Adwa Victory Day", + "2043-05-01": "Labor Day; Orthodox Good Friday", + "2043-05-03": "Orthodox Easter Sunday", + "2043-05-05": "Patriots Day", + "2043-05-28": "Downfall of Dergue Regime Day", + "2043-09-04": "Eid al-Fitr* (*estimated)", + "2043-09-12": "Ethiopian New Year's Day", + "2043-09-28": "Finding of True Cross", + "2043-11-12": "Eid al-Adha* (*estimated)", + "2043-11-13": "Eid al-Adha* (*estimated)", + "2044-01-07": "Orthodox Christmas Day", + "2044-01-19": "Orthodox Epiphany Day", + "2044-02-11": "Prophet Muhammad's Birthday* (*estimated)", + "2044-02-12": "Prophet Muhammad's Birthday* (*estimated)", + "2044-03-02": "Adwa Victory Day", + "2044-04-22": "Orthodox Good Friday", + "2044-04-24": "Orthodox Easter Sunday", + "2044-05-01": "Labor Day", + "2044-05-05": "Patriots Day", + "2044-05-28": "Downfall of Dergue Regime Day", + "2044-08-24": "Eid al-Fitr* (*estimated)", + "2044-09-11": "Ethiopian New Year's Day", + "2044-09-27": "Finding of True Cross", + "2044-10-31": "Eid al-Adha* (*estimated)", + "2044-11-01": "Eid al-Adha* (*estimated)", + "2045-01-07": "Orthodox Christmas Day", + "2045-01-19": "Orthodox Epiphany Day", + "2045-01-30": "Prophet Muhammad's Birthday* (*estimated)", + "2045-01-31": "Prophet Muhammad's Birthday* (*estimated)", + "2045-03-02": "Adwa Victory Day", + "2045-04-07": "Orthodox Good Friday", + "2045-04-09": "Orthodox Easter Sunday", + "2045-05-01": "Labor Day", + "2045-05-05": "Patriots Day", + "2045-05-28": "Downfall of Dergue Regime Day", + "2045-08-14": "Eid al-Fitr* (*estimated)", + "2045-09-11": "Ethiopian New Year's Day", + "2045-09-27": "Finding of True Cross", + "2045-10-21": "Eid al-Adha* (*estimated)", + "2045-10-22": "Eid al-Adha* (*estimated)", + "2046-01-07": "Orthodox Christmas Day", + "2046-01-19": "Orthodox Epiphany Day; Prophet Muhammad's Birthday* (*estimated)", + "2046-01-20": "Prophet Muhammad's Birthday* (*estimated)", + "2046-03-02": "Adwa Victory Day", + "2046-04-27": "Orthodox Good Friday", + "2046-04-29": "Orthodox Easter Sunday", + "2046-05-01": "Labor Day", + "2046-05-05": "Patriots Day", + "2046-05-28": "Downfall of Dergue Regime Day", + "2046-08-03": "Eid al-Fitr* (*estimated)", + "2046-09-11": "Ethiopian New Year's Day", + "2046-09-27": "Finding of True Cross", + "2046-10-10": "Eid al-Adha* (*estimated)", + "2046-10-11": "Eid al-Adha* (*estimated)", + "2047-01-07": "Orthodox Christmas Day", + "2047-01-08": "Prophet Muhammad's Birthday* (*estimated)", + "2047-01-09": "Prophet Muhammad's Birthday* (*estimated)", + "2047-01-19": "Orthodox Epiphany Day", + "2047-03-02": "Adwa Victory Day", + "2047-04-19": "Orthodox Good Friday", + "2047-04-21": "Orthodox Easter Sunday", + "2047-05-01": "Labor Day", + "2047-05-05": "Patriots Day", + "2047-05-28": "Downfall of Dergue Regime Day", + "2047-07-24": "Eid al-Fitr* (*estimated)", + "2047-09-12": "Ethiopian New Year's Day", + "2047-09-28": "Finding of True Cross", + "2047-09-30": "Eid al-Adha* (*estimated)", + "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-12-29": "Prophet Muhammad's Birthday* (*estimated)", + "2047-12-30": "Prophet Muhammad's Birthday* (*estimated)", + "2048-01-07": "Orthodox Christmas Day", + "2048-01-19": "Orthodox Epiphany Day", + "2048-03-02": "Adwa Victory Day", + "2048-04-03": "Orthodox Good Friday", + "2048-04-05": "Orthodox Easter Sunday", + "2048-05-01": "Labor Day", + "2048-05-05": "Patriots Day", + "2048-05-28": "Downfall of Dergue Regime Day", + "2048-07-12": "Eid al-Fitr* (*estimated)", + "2048-09-11": "Ethiopian New Year's Day", + "2048-09-19": "Eid al-Adha* (*estimated)", + "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-27": "Finding of True Cross", + "2048-12-18": "Prophet Muhammad's Birthday* (*estimated)", + "2048-12-19": "Prophet Muhammad's Birthday* (*estimated)", + "2049-01-07": "Orthodox Christmas Day", + "2049-01-19": "Orthodox Epiphany Day", + "2049-03-02": "Adwa Victory Day", + "2049-04-23": "Orthodox Good Friday", + "2049-04-25": "Orthodox Easter Sunday", + "2049-05-01": "Labor Day", + "2049-05-05": "Patriots Day", + "2049-05-28": "Downfall of Dergue Regime Day", + "2049-07-01": "Eid al-Fitr* (*estimated)", + "2049-09-08": "Eid al-Adha* (*estimated)", + "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-11": "Ethiopian New Year's Day", + "2049-09-27": "Finding of True Cross", + "2049-12-07": "Prophet Muhammad's Birthday* (*estimated)", + "2049-12-08": "Prophet Muhammad's Birthday* (*estimated)", + "2050-01-07": "Orthodox Christmas Day", + "2050-01-19": "Orthodox Epiphany Day", + "2050-03-02": "Adwa Victory Day", + "2050-04-15": "Orthodox Good Friday", + "2050-04-17": "Orthodox Easter Sunday", + "2050-05-01": "Labor Day", + "2050-05-05": "Patriots Day", + "2050-05-28": "Downfall of Dergue Regime Day", + "2050-06-20": "Eid al-Fitr* (*estimated)", + "2050-08-28": "Eid al-Adha* (*estimated)", + "2050-08-29": "Eid al-Adha* (*estimated)", + "2050-09-11": "Ethiopian New Year's Day", + "2050-09-27": "Finding of True Cross", + "2050-11-26": "Prophet Muhammad's Birthday* (*estimated)", + "2050-11-27": "Prophet Muhammad's Birthday* (*estimated)" +} diff --git a/snapshots/countries/FI.json b/snapshots/countries/FI.json new file mode 100644 index 000000000..2670821cf --- /dev/null +++ b/snapshots/countries/FI.json @@ -0,0 +1,1516 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-06": "Epiphany", + "1950-04-07": "Good Friday", + "1950-04-09": "Easter Sunday", + "1950-04-10": "Easter Monday", + "1950-05-01": "May Day", + "1950-05-18": "Ascension Day", + "1950-05-28": "Whit Sunday", + "1950-06-23": "Midsummer Eve", + "1950-06-24": "Midsummer Day", + "1950-11-01": "All Saints' Day", + "1950-12-06": "Independence Day", + "1950-12-24": "Christmas Eve", + "1950-12-25": "Christmas Day", + "1950-12-26": "Second Day of Christmas", + "1951-01-01": "New Year's Day", + "1951-01-06": "Epiphany", + "1951-03-23": "Good Friday", + "1951-03-25": "Easter Sunday", + "1951-03-26": "Easter Monday", + "1951-05-01": "May Day", + "1951-05-03": "Ascension Day", + "1951-05-13": "Whit Sunday", + "1951-06-23": "Midsummer Eve", + "1951-06-24": "Midsummer Day", + "1951-11-01": "All Saints' Day", + "1951-12-06": "Independence Day", + "1951-12-24": "Christmas Eve", + "1951-12-25": "Christmas Day", + "1951-12-26": "Second Day of Christmas", + "1952-01-01": "New Year's Day", + "1952-01-06": "Epiphany", + "1952-04-11": "Good Friday", + "1952-04-13": "Easter Sunday", + "1952-04-14": "Easter Monday", + "1952-05-01": "May Day", + "1952-05-22": "Ascension Day", + "1952-06-01": "Whit Sunday", + "1952-06-23": "Midsummer Eve", + "1952-06-24": "Midsummer Day", + "1952-11-01": "All Saints' Day", + "1952-12-06": "Independence Day", + "1952-12-24": "Christmas Eve", + "1952-12-25": "Christmas Day", + "1952-12-26": "Second Day of Christmas", + "1953-01-01": "New Year's Day", + "1953-01-06": "Epiphany", + "1953-04-03": "Good Friday", + "1953-04-05": "Easter Sunday", + "1953-04-06": "Easter Monday", + "1953-05-01": "May Day", + "1953-05-14": "Ascension Day", + "1953-05-24": "Whit Sunday", + "1953-06-23": "Midsummer Eve", + "1953-06-24": "Midsummer Day", + "1953-11-01": "All Saints' Day", + "1953-12-06": "Independence Day", + "1953-12-24": "Christmas Eve", + "1953-12-25": "Christmas Day", + "1953-12-26": "Second Day of Christmas", + "1954-01-01": "New Year's Day", + "1954-01-06": "Epiphany", + "1954-04-16": "Good Friday", + "1954-04-18": "Easter Sunday", + "1954-04-19": "Easter Monday", + "1954-05-01": "May Day", + "1954-05-27": "Ascension Day", + "1954-06-06": "Whit Sunday", + "1954-06-23": "Midsummer Eve", + "1954-06-24": "Midsummer Day", + "1954-11-01": "All Saints' Day", + "1954-12-06": "Independence Day", + "1954-12-24": "Christmas Eve", + "1954-12-25": "Christmas Day", + "1954-12-26": "Second Day of Christmas", + "1955-01-01": "New Year's Day", + "1955-01-06": "Epiphany", + "1955-04-08": "Good Friday", + "1955-04-10": "Easter Sunday", + "1955-04-11": "Easter Monday", + "1955-05-01": "May Day", + "1955-05-19": "Ascension Day", + "1955-05-29": "Whit Sunday", + "1955-06-24": "Midsummer Eve", + "1955-06-25": "Midsummer Day", + "1955-11-05": "All Saints' Day", + "1955-12-06": "Independence Day", + "1955-12-24": "Christmas Eve", + "1955-12-25": "Christmas Day", + "1955-12-26": "Second Day of Christmas", + "1956-01-01": "New Year's Day", + "1956-01-06": "Epiphany", + "1956-03-30": "Good Friday", + "1956-04-01": "Easter Sunday", + "1956-04-02": "Easter Monday", + "1956-05-01": "May Day", + "1956-05-10": "Ascension Day", + "1956-05-20": "Whit Sunday", + "1956-06-22": "Midsummer Eve", + "1956-06-23": "Midsummer Day", + "1956-11-03": "All Saints' Day", + "1956-12-06": "Independence Day", + "1956-12-24": "Christmas Eve", + "1956-12-25": "Christmas Day", + "1956-12-26": "Second Day of Christmas", + "1957-01-01": "New Year's Day", + "1957-01-06": "Epiphany", + "1957-04-19": "Good Friday", + "1957-04-21": "Easter Sunday", + "1957-04-22": "Easter Monday", + "1957-05-01": "May Day", + "1957-05-30": "Ascension Day", + "1957-06-09": "Whit Sunday", + "1957-06-21": "Midsummer Eve", + "1957-06-22": "Midsummer Day", + "1957-11-02": "All Saints' Day", + "1957-12-06": "Independence Day", + "1957-12-24": "Christmas Eve", + "1957-12-25": "Christmas Day", + "1957-12-26": "Second Day of Christmas", + "1958-01-01": "New Year's Day", + "1958-01-06": "Epiphany", + "1958-04-04": "Good Friday", + "1958-04-06": "Easter Sunday", + "1958-04-07": "Easter Monday", + "1958-05-01": "May Day", + "1958-05-15": "Ascension Day", + "1958-05-25": "Whit Sunday", + "1958-06-20": "Midsummer Eve", + "1958-06-21": "Midsummer Day", + "1958-11-01": "All Saints' Day", + "1958-12-06": "Independence Day", + "1958-12-24": "Christmas Eve", + "1958-12-25": "Christmas Day", + "1958-12-26": "Second Day of Christmas", + "1959-01-01": "New Year's Day", + "1959-01-06": "Epiphany", + "1959-03-27": "Good Friday", + "1959-03-29": "Easter Sunday", + "1959-03-30": "Easter Monday", + "1959-05-01": "May Day", + "1959-05-07": "Ascension Day", + "1959-05-17": "Whit Sunday", + "1959-06-19": "Midsummer Eve", + "1959-06-20": "Midsummer Day", + "1959-10-31": "All Saints' Day", + "1959-12-06": "Independence Day", + "1959-12-24": "Christmas Eve", + "1959-12-25": "Christmas Day", + "1959-12-26": "Second Day of Christmas", + "1960-01-01": "New Year's Day", + "1960-01-06": "Epiphany", + "1960-04-15": "Good Friday", + "1960-04-17": "Easter Sunday", + "1960-04-18": "Easter Monday", + "1960-05-01": "May Day", + "1960-05-26": "Ascension Day", + "1960-06-05": "Whit Sunday", + "1960-06-24": "Midsummer Eve", + "1960-06-25": "Midsummer Day", + "1960-11-05": "All Saints' Day", + "1960-12-06": "Independence Day", + "1960-12-24": "Christmas Eve", + "1960-12-25": "Christmas Day", + "1960-12-26": "Second Day of Christmas", + "1961-01-01": "New Year's Day", + "1961-01-06": "Epiphany", + "1961-03-31": "Good Friday", + "1961-04-02": "Easter Sunday", + "1961-04-03": "Easter Monday", + "1961-05-01": "May Day", + "1961-05-11": "Ascension Day", + "1961-05-21": "Whit Sunday", + "1961-06-23": "Midsummer Eve", + "1961-06-24": "Midsummer Day", + "1961-11-04": "All Saints' Day", + "1961-12-06": "Independence Day", + "1961-12-24": "Christmas Eve", + "1961-12-25": "Christmas Day", + "1961-12-26": "Second Day of Christmas", + "1962-01-01": "New Year's Day", + "1962-01-06": "Epiphany", + "1962-04-20": "Good Friday", + "1962-04-22": "Easter Sunday", + "1962-04-23": "Easter Monday", + "1962-05-01": "May Day", + "1962-05-31": "Ascension Day", + "1962-06-10": "Whit Sunday", + "1962-06-22": "Midsummer Eve", + "1962-06-23": "Midsummer Day", + "1962-11-03": "All Saints' Day", + "1962-12-06": "Independence Day", + "1962-12-24": "Christmas Eve", + "1962-12-25": "Christmas Day", + "1962-12-26": "Second Day of Christmas", + "1963-01-01": "New Year's Day", + "1963-01-06": "Epiphany", + "1963-04-12": "Good Friday", + "1963-04-14": "Easter Sunday", + "1963-04-15": "Easter Monday", + "1963-05-01": "May Day", + "1963-05-23": "Ascension Day", + "1963-06-02": "Whit Sunday", + "1963-06-21": "Midsummer Eve", + "1963-06-22": "Midsummer Day", + "1963-11-02": "All Saints' Day", + "1963-12-06": "Independence Day", + "1963-12-24": "Christmas Eve", + "1963-12-25": "Christmas Day", + "1963-12-26": "Second Day of Christmas", + "1964-01-01": "New Year's Day", + "1964-01-06": "Epiphany", + "1964-03-27": "Good Friday", + "1964-03-29": "Easter Sunday", + "1964-03-30": "Easter Monday", + "1964-05-01": "May Day", + "1964-05-07": "Ascension Day", + "1964-05-17": "Whit Sunday", + "1964-06-19": "Midsummer Eve", + "1964-06-20": "Midsummer Day", + "1964-10-31": "All Saints' Day", + "1964-12-06": "Independence Day", + "1964-12-24": "Christmas Eve", + "1964-12-25": "Christmas Day", + "1964-12-26": "Second Day of Christmas", + "1965-01-01": "New Year's Day", + "1965-01-06": "Epiphany", + "1965-04-16": "Good Friday", + "1965-04-18": "Easter Sunday", + "1965-04-19": "Easter Monday", + "1965-05-01": "May Day", + "1965-05-27": "Ascension Day", + "1965-06-06": "Whit Sunday", + "1965-06-25": "Midsummer Eve", + "1965-06-26": "Midsummer Day", + "1965-11-06": "All Saints' Day", + "1965-12-06": "Independence Day", + "1965-12-24": "Christmas Eve", + "1965-12-25": "Christmas Day", + "1965-12-26": "Second Day of Christmas", + "1966-01-01": "New Year's Day", + "1966-01-06": "Epiphany", + "1966-04-08": "Good Friday", + "1966-04-10": "Easter Sunday", + "1966-04-11": "Easter Monday", + "1966-05-01": "May Day", + "1966-05-19": "Ascension Day", + "1966-05-29": "Whit Sunday", + "1966-06-24": "Midsummer Eve", + "1966-06-25": "Midsummer Day", + "1966-11-05": "All Saints' Day", + "1966-12-06": "Independence Day", + "1966-12-24": "Christmas Eve", + "1966-12-25": "Christmas Day", + "1966-12-26": "Second Day of Christmas", + "1967-01-01": "New Year's Day", + "1967-01-06": "Epiphany", + "1967-03-24": "Good Friday", + "1967-03-26": "Easter Sunday", + "1967-03-27": "Easter Monday", + "1967-05-01": "May Day", + "1967-05-04": "Ascension Day", + "1967-05-14": "Whit Sunday", + "1967-06-23": "Midsummer Eve", + "1967-06-24": "Midsummer Day", + "1967-11-04": "All Saints' Day", + "1967-12-06": "Independence Day", + "1967-12-24": "Christmas Eve", + "1967-12-25": "Christmas Day", + "1967-12-26": "Second Day of Christmas", + "1968-01-01": "New Year's Day", + "1968-01-06": "Epiphany", + "1968-04-12": "Good Friday", + "1968-04-14": "Easter Sunday", + "1968-04-15": "Easter Monday", + "1968-05-01": "May Day", + "1968-05-23": "Ascension Day", + "1968-06-02": "Whit Sunday", + "1968-06-21": "Midsummer Eve", + "1968-06-22": "Midsummer Day", + "1968-11-02": "All Saints' Day", + "1968-12-06": "Independence Day", + "1968-12-24": "Christmas Eve", + "1968-12-25": "Christmas Day", + "1968-12-26": "Second Day of Christmas", + "1969-01-01": "New Year's Day", + "1969-01-06": "Epiphany", + "1969-04-04": "Good Friday", + "1969-04-06": "Easter Sunday", + "1969-04-07": "Easter Monday", + "1969-05-01": "May Day", + "1969-05-15": "Ascension Day", + "1969-05-25": "Whit Sunday", + "1969-06-20": "Midsummer Eve", + "1969-06-21": "Midsummer Day", + "1969-11-01": "All Saints' Day", + "1969-12-06": "Independence Day", + "1969-12-24": "Christmas Eve", + "1969-12-25": "Christmas Day", + "1969-12-26": "Second Day of Christmas", + "1970-01-01": "New Year's Day", + "1970-01-06": "Epiphany", + "1970-03-27": "Good Friday", + "1970-03-29": "Easter Sunday", + "1970-03-30": "Easter Monday", + "1970-05-01": "May Day", + "1970-05-07": "Ascension Day", + "1970-05-17": "Whit Sunday", + "1970-06-19": "Midsummer Eve", + "1970-06-20": "Midsummer Day", + "1970-10-31": "All Saints' Day", + "1970-12-06": "Independence Day", + "1970-12-24": "Christmas Eve", + "1970-12-25": "Christmas Day", + "1970-12-26": "Second Day of Christmas", + "1971-01-01": "New Year's Day", + "1971-01-06": "Epiphany", + "1971-04-09": "Good Friday", + "1971-04-11": "Easter Sunday", + "1971-04-12": "Easter Monday", + "1971-05-01": "May Day", + "1971-05-20": "Ascension Day", + "1971-05-30": "Whit Sunday", + "1971-06-25": "Midsummer Eve", + "1971-06-26": "Midsummer Day", + "1971-11-06": "All Saints' Day", + "1971-12-06": "Independence Day", + "1971-12-24": "Christmas Eve", + "1971-12-25": "Christmas Day", + "1971-12-26": "Second Day of Christmas", + "1972-01-01": "New Year's Day", + "1972-01-06": "Epiphany", + "1972-03-31": "Good Friday", + "1972-04-02": "Easter Sunday", + "1972-04-03": "Easter Monday", + "1972-05-01": "May Day", + "1972-05-11": "Ascension Day", + "1972-05-21": "Whit Sunday", + "1972-06-23": "Midsummer Eve", + "1972-06-24": "Midsummer Day", + "1972-11-04": "All Saints' Day", + "1972-12-06": "Independence Day", + "1972-12-24": "Christmas Eve", + "1972-12-25": "Christmas Day", + "1972-12-26": "Second Day of Christmas", + "1973-01-01": "New Year's Day", + "1973-01-06": "Epiphany", + "1973-04-20": "Good Friday", + "1973-04-22": "Easter Sunday", + "1973-04-23": "Easter Monday", + "1973-05-01": "May Day", + "1973-05-26": "Ascension Day", + "1973-06-10": "Whit Sunday", + "1973-06-22": "Midsummer Eve", + "1973-06-23": "Midsummer Day", + "1973-11-03": "All Saints' Day", + "1973-12-06": "Independence Day", + "1973-12-24": "Christmas Eve", + "1973-12-25": "Christmas Day", + "1973-12-26": "Second Day of Christmas", + "1974-01-01": "New Year's Day", + "1974-01-12": "Epiphany", + "1974-04-12": "Good Friday", + "1974-04-14": "Easter Sunday", + "1974-04-15": "Easter Monday", + "1974-05-01": "May Day", + "1974-05-18": "Ascension Day", + "1974-06-02": "Whit Sunday", + "1974-06-21": "Midsummer Eve", + "1974-06-22": "Midsummer Day", + "1974-11-02": "All Saints' Day", + "1974-12-06": "Independence Day", + "1974-12-24": "Christmas Eve", + "1974-12-25": "Christmas Day", + "1974-12-26": "Second Day of Christmas", + "1975-01-01": "New Year's Day", + "1975-01-11": "Epiphany", + "1975-03-28": "Good Friday", + "1975-03-30": "Easter Sunday", + "1975-03-31": "Easter Monday", + "1975-05-01": "May Day", + "1975-05-03": "Ascension Day", + "1975-05-18": "Whit Sunday", + "1975-06-20": "Midsummer Eve", + "1975-06-21": "Midsummer Day", + "1975-11-01": "All Saints' Day", + "1975-12-06": "Independence Day", + "1975-12-24": "Christmas Eve", + "1975-12-25": "Christmas Day", + "1975-12-26": "Second Day of Christmas", + "1976-01-01": "New Year's Day", + "1976-01-10": "Epiphany", + "1976-04-16": "Good Friday", + "1976-04-18": "Easter Sunday", + "1976-04-19": "Easter Monday", + "1976-05-01": "May Day", + "1976-05-22": "Ascension Day", + "1976-06-06": "Whit Sunday", + "1976-06-25": "Midsummer Eve", + "1976-06-26": "Midsummer Day", + "1976-11-06": "All Saints' Day", + "1976-12-06": "Independence Day", + "1976-12-24": "Christmas Eve", + "1976-12-25": "Christmas Day", + "1976-12-26": "Second Day of Christmas", + "1977-01-01": "New Year's Day", + "1977-01-08": "Epiphany", + "1977-04-08": "Good Friday", + "1977-04-10": "Easter Sunday", + "1977-04-11": "Easter Monday", + "1977-05-01": "May Day", + "1977-05-14": "Ascension Day", + "1977-05-29": "Whit Sunday", + "1977-06-24": "Midsummer Eve", + "1977-06-25": "Midsummer Day", + "1977-11-05": "All Saints' Day", + "1977-12-06": "Independence Day", + "1977-12-24": "Christmas Eve", + "1977-12-25": "Christmas Day", + "1977-12-26": "Second Day of Christmas", + "1978-01-01": "New Year's Day", + "1978-01-07": "Epiphany", + "1978-03-24": "Good Friday", + "1978-03-26": "Easter Sunday", + "1978-03-27": "Easter Monday", + "1978-04-29": "Ascension Day", + "1978-05-01": "May Day", + "1978-05-14": "Whit Sunday", + "1978-06-23": "Midsummer Eve", + "1978-06-24": "Midsummer Day", + "1978-11-04": "All Saints' Day", + "1978-12-06": "Independence Day", + "1978-12-24": "Christmas Eve", + "1978-12-25": "Christmas Day", + "1978-12-26": "Second Day of Christmas", + "1979-01-01": "New Year's Day", + "1979-01-06": "Epiphany", + "1979-04-13": "Good Friday", + "1979-04-15": "Easter Sunday", + "1979-04-16": "Easter Monday", + "1979-05-01": "May Day", + "1979-05-19": "Ascension Day", + "1979-06-03": "Whit Sunday", + "1979-06-22": "Midsummer Eve", + "1979-06-23": "Midsummer Day", + "1979-11-03": "All Saints' Day", + "1979-12-06": "Independence Day", + "1979-12-24": "Christmas Eve", + "1979-12-25": "Christmas Day", + "1979-12-26": "Second Day of Christmas", + "1980-01-01": "New Year's Day", + "1980-01-12": "Epiphany", + "1980-04-04": "Good Friday", + "1980-04-06": "Easter Sunday", + "1980-04-07": "Easter Monday", + "1980-05-01": "May Day", + "1980-05-10": "Ascension Day", + "1980-05-25": "Whit Sunday", + "1980-06-20": "Midsummer Eve", + "1980-06-21": "Midsummer Day", + "1980-11-01": "All Saints' Day", + "1980-12-06": "Independence Day", + "1980-12-24": "Christmas Eve", + "1980-12-25": "Christmas Day", + "1980-12-26": "Second Day of Christmas", + "1981-01-01": "New Year's Day", + "1981-01-10": "Epiphany", + "1981-04-17": "Good Friday", + "1981-04-19": "Easter Sunday", + "1981-04-20": "Easter Monday", + "1981-05-01": "May Day", + "1981-05-23": "Ascension Day", + "1981-06-07": "Whit Sunday", + "1981-06-19": "Midsummer Eve", + "1981-06-20": "Midsummer Day", + "1981-10-31": "All Saints' Day", + "1981-12-06": "Independence Day", + "1981-12-24": "Christmas Eve", + "1981-12-25": "Christmas Day", + "1981-12-26": "Second Day of Christmas", + "1982-01-01": "New Year's Day", + "1982-01-09": "Epiphany", + "1982-04-09": "Good Friday", + "1982-04-11": "Easter Sunday", + "1982-04-12": "Easter Monday", + "1982-05-01": "May Day", + "1982-05-15": "Ascension Day", + "1982-05-30": "Whit Sunday", + "1982-06-25": "Midsummer Eve", + "1982-06-26": "Midsummer Day", + "1982-11-06": "All Saints' Day", + "1982-12-06": "Independence Day", + "1982-12-24": "Christmas Eve", + "1982-12-25": "Christmas Day", + "1982-12-26": "Second Day of Christmas", + "1983-01-01": "New Year's Day", + "1983-01-08": "Epiphany", + "1983-04-01": "Good Friday", + "1983-04-03": "Easter Sunday", + "1983-04-04": "Easter Monday", + "1983-05-01": "May Day", + "1983-05-07": "Ascension Day", + "1983-05-22": "Whit Sunday", + "1983-06-24": "Midsummer Eve", + "1983-06-25": "Midsummer Day", + "1983-11-05": "All Saints' Day", + "1983-12-06": "Independence Day", + "1983-12-24": "Christmas Eve", + "1983-12-25": "Christmas Day", + "1983-12-26": "Second Day of Christmas", + "1984-01-01": "New Year's Day", + "1984-01-07": "Epiphany", + "1984-04-20": "Good Friday", + "1984-04-22": "Easter Sunday", + "1984-04-23": "Easter Monday", + "1984-05-01": "May Day", + "1984-05-26": "Ascension Day", + "1984-06-10": "Whit Sunday", + "1984-06-22": "Midsummer Eve", + "1984-06-23": "Midsummer Day", + "1984-11-03": "All Saints' Day", + "1984-12-06": "Independence Day", + "1984-12-24": "Christmas Eve", + "1984-12-25": "Christmas Day", + "1984-12-26": "Second Day of Christmas", + "1985-01-01": "New Year's Day", + "1985-01-12": "Epiphany", + "1985-04-05": "Good Friday", + "1985-04-07": "Easter Sunday", + "1985-04-08": "Easter Monday", + "1985-05-01": "May Day", + "1985-05-11": "Ascension Day", + "1985-05-26": "Whit Sunday", + "1985-06-21": "Midsummer Eve", + "1985-06-22": "Midsummer Day", + "1985-11-02": "All Saints' Day", + "1985-12-06": "Independence Day", + "1985-12-24": "Christmas Eve", + "1985-12-25": "Christmas Day", + "1985-12-26": "Second Day of Christmas", + "1986-01-01": "New Year's Day", + "1986-01-11": "Epiphany", + "1986-03-28": "Good Friday", + "1986-03-30": "Easter Sunday", + "1986-03-31": "Easter Monday", + "1986-05-01": "May Day", + "1986-05-03": "Ascension Day", + "1986-05-18": "Whit Sunday", + "1986-06-20": "Midsummer Eve", + "1986-06-21": "Midsummer Day", + "1986-11-01": "All Saints' Day", + "1986-12-06": "Independence Day", + "1986-12-24": "Christmas Eve", + "1986-12-25": "Christmas Day", + "1986-12-26": "Second Day of Christmas", + "1987-01-01": "New Year's Day", + "1987-01-10": "Epiphany", + "1987-04-17": "Good Friday", + "1987-04-19": "Easter Sunday", + "1987-04-20": "Easter Monday", + "1987-05-01": "May Day", + "1987-05-23": "Ascension Day", + "1987-06-07": "Whit Sunday", + "1987-06-19": "Midsummer Eve", + "1987-06-20": "Midsummer Day", + "1987-10-31": "All Saints' Day", + "1987-12-06": "Independence Day", + "1987-12-24": "Christmas Eve", + "1987-12-25": "Christmas Day", + "1987-12-26": "Second Day of Christmas", + "1988-01-01": "New Year's Day", + "1988-01-09": "Epiphany", + "1988-04-01": "Good Friday", + "1988-04-03": "Easter Sunday", + "1988-04-04": "Easter Monday", + "1988-05-01": "May Day", + "1988-05-07": "Ascension Day", + "1988-05-22": "Whit Sunday", + "1988-06-24": "Midsummer Eve", + "1988-06-25": "Midsummer Day", + "1988-11-05": "All Saints' Day", + "1988-12-06": "Independence Day", + "1988-12-24": "Christmas Eve", + "1988-12-25": "Christmas Day", + "1988-12-26": "Second Day of Christmas", + "1989-01-01": "New Year's Day", + "1989-01-07": "Epiphany", + "1989-03-24": "Good Friday", + "1989-03-26": "Easter Sunday", + "1989-03-27": "Easter Monday", + "1989-04-29": "Ascension Day", + "1989-05-01": "May Day", + "1989-05-14": "Whit Sunday", + "1989-06-23": "Midsummer Eve", + "1989-06-24": "Midsummer Day", + "1989-11-04": "All Saints' Day", + "1989-12-06": "Independence Day", + "1989-12-24": "Christmas Eve", + "1989-12-25": "Christmas Day", + "1989-12-26": "Second Day of Christmas", + "1990-01-01": "New Year's Day", + "1990-01-06": "Epiphany", + "1990-04-13": "Good Friday", + "1990-04-15": "Easter Sunday", + "1990-04-16": "Easter Monday", + "1990-05-01": "May Day", + "1990-05-19": "Ascension Day", + "1990-06-03": "Whit Sunday", + "1990-06-22": "Midsummer Eve", + "1990-06-23": "Midsummer Day", + "1990-11-03": "All Saints' Day", + "1990-12-06": "Independence Day", + "1990-12-24": "Christmas Eve", + "1990-12-25": "Christmas Day", + "1990-12-26": "Second Day of Christmas", + "1991-01-01": "New Year's Day", + "1991-01-06": "Epiphany", + "1991-03-29": "Good Friday", + "1991-03-31": "Easter Sunday", + "1991-04-01": "Easter Monday", + "1991-05-01": "May Day", + "1991-05-09": "Ascension Day", + "1991-05-19": "Whit Sunday", + "1991-06-21": "Midsummer Eve", + "1991-06-22": "Midsummer Day", + "1991-11-02": "All Saints' Day", + "1991-12-06": "Independence Day", + "1991-12-24": "Christmas Eve", + "1991-12-25": "Christmas Day", + "1991-12-26": "Second Day of Christmas", + "1992-01-01": "New Year's Day", + "1992-01-06": "Epiphany", + "1992-04-17": "Good Friday", + "1992-04-19": "Easter Sunday", + "1992-04-20": "Easter Monday", + "1992-05-01": "May Day", + "1992-05-28": "Ascension Day", + "1992-06-07": "Whit Sunday", + "1992-06-19": "Midsummer Eve", + "1992-06-20": "Midsummer Day", + "1992-10-31": "All Saints' Day", + "1992-12-06": "Independence Day", + "1992-12-24": "Christmas Eve", + "1992-12-25": "Christmas Day", + "1992-12-26": "Second Day of Christmas", + "1993-01-01": "New Year's Day", + "1993-01-06": "Epiphany", + "1993-04-09": "Good Friday", + "1993-04-11": "Easter Sunday", + "1993-04-12": "Easter Monday", + "1993-05-01": "May Day", + "1993-05-20": "Ascension Day", + "1993-05-30": "Whit Sunday", + "1993-06-25": "Midsummer Eve", + "1993-06-26": "Midsummer Day", + "1993-11-06": "All Saints' Day", + "1993-12-06": "Independence Day", + "1993-12-24": "Christmas Eve", + "1993-12-25": "Christmas Day", + "1993-12-26": "Second Day of Christmas", + "1994-01-01": "New Year's Day", + "1994-01-06": "Epiphany", + "1994-04-01": "Good Friday", + "1994-04-03": "Easter Sunday", + "1994-04-04": "Easter Monday", + "1994-05-01": "May Day", + "1994-05-12": "Ascension Day", + "1994-05-22": "Whit Sunday", + "1994-06-24": "Midsummer Eve", + "1994-06-25": "Midsummer Day", + "1994-11-05": "All Saints' Day", + "1994-12-06": "Independence Day", + "1994-12-24": "Christmas Eve", + "1994-12-25": "Christmas Day", + "1994-12-26": "Second Day of Christmas", + "1995-01-01": "New Year's Day", + "1995-01-06": "Epiphany", + "1995-04-14": "Good Friday", + "1995-04-16": "Easter Sunday", + "1995-04-17": "Easter Monday", + "1995-05-01": "May Day", + "1995-05-25": "Ascension Day", + "1995-06-04": "Whit Sunday", + "1995-06-23": "Midsummer Eve", + "1995-06-24": "Midsummer Day", + "1995-11-04": "All Saints' Day", + "1995-12-06": "Independence Day", + "1995-12-24": "Christmas Eve", + "1995-12-25": "Christmas Day", + "1995-12-26": "Second Day of Christmas", + "1996-01-01": "New Year's Day", + "1996-01-06": "Epiphany", + "1996-04-05": "Good Friday", + "1996-04-07": "Easter Sunday", + "1996-04-08": "Easter Monday", + "1996-05-01": "May Day", + "1996-05-16": "Ascension Day", + "1996-05-26": "Whit Sunday", + "1996-06-21": "Midsummer Eve", + "1996-06-22": "Midsummer Day", + "1996-11-02": "All Saints' Day", + "1996-12-06": "Independence Day", + "1996-12-24": "Christmas Eve", + "1996-12-25": "Christmas Day", + "1996-12-26": "Second Day of Christmas", + "1997-01-01": "New Year's Day", + "1997-01-06": "Epiphany", + "1997-03-28": "Good Friday", + "1997-03-30": "Easter Sunday", + "1997-03-31": "Easter Monday", + "1997-05-01": "May Day", + "1997-05-08": "Ascension Day", + "1997-05-18": "Whit Sunday", + "1997-06-20": "Midsummer Eve", + "1997-06-21": "Midsummer Day", + "1997-11-01": "All Saints' Day", + "1997-12-06": "Independence Day", + "1997-12-24": "Christmas Eve", + "1997-12-25": "Christmas Day", + "1997-12-26": "Second Day of Christmas", + "1998-01-01": "New Year's Day", + "1998-01-06": "Epiphany", + "1998-04-10": "Good Friday", + "1998-04-12": "Easter Sunday", + "1998-04-13": "Easter Monday", + "1998-05-01": "May Day", + "1998-05-21": "Ascension Day", + "1998-05-31": "Whit Sunday", + "1998-06-19": "Midsummer Eve", + "1998-06-20": "Midsummer Day", + "1998-10-31": "All Saints' Day", + "1998-12-06": "Independence Day", + "1998-12-24": "Christmas Eve", + "1998-12-25": "Christmas Day", + "1998-12-26": "Second Day of Christmas", + "1999-01-01": "New Year's Day", + "1999-01-06": "Epiphany", + "1999-04-02": "Good Friday", + "1999-04-04": "Easter Sunday", + "1999-04-05": "Easter Monday", + "1999-05-01": "May Day", + "1999-05-13": "Ascension Day", + "1999-05-23": "Whit Sunday", + "1999-06-25": "Midsummer Eve", + "1999-06-26": "Midsummer Day", + "1999-11-06": "All Saints' Day", + "1999-12-06": "Independence Day", + "1999-12-24": "Christmas Eve", + "1999-12-25": "Christmas Day", + "1999-12-26": "Second Day of Christmas", + "2000-01-01": "New Year's Day", + "2000-01-06": "Epiphany", + "2000-04-21": "Good Friday", + "2000-04-23": "Easter Sunday", + "2000-04-24": "Easter Monday", + "2000-05-01": "May Day", + "2000-06-01": "Ascension Day", + "2000-06-11": "Whit Sunday", + "2000-06-23": "Midsummer Eve", + "2000-06-24": "Midsummer Day", + "2000-11-04": "All Saints' Day", + "2000-12-06": "Independence Day", + "2000-12-24": "Christmas Eve", + "2000-12-25": "Christmas Day", + "2000-12-26": "Second Day of Christmas", + "2001-01-01": "New Year's Day", + "2001-01-06": "Epiphany", + "2001-04-13": "Good Friday", + "2001-04-15": "Easter Sunday", + "2001-04-16": "Easter Monday", + "2001-05-01": "May Day", + "2001-05-24": "Ascension Day", + "2001-06-03": "Whit Sunday", + "2001-06-22": "Midsummer Eve", + "2001-06-23": "Midsummer Day", + "2001-11-03": "All Saints' Day", + "2001-12-06": "Independence Day", + "2001-12-24": "Christmas Eve", + "2001-12-25": "Christmas Day", + "2001-12-26": "Second Day of Christmas", + "2002-01-01": "New Year's Day", + "2002-01-06": "Epiphany", + "2002-03-29": "Good Friday", + "2002-03-31": "Easter Sunday", + "2002-04-01": "Easter Monday", + "2002-05-01": "May Day", + "2002-05-09": "Ascension Day", + "2002-05-19": "Whit Sunday", + "2002-06-21": "Midsummer Eve", + "2002-06-22": "Midsummer Day", + "2002-11-02": "All Saints' Day", + "2002-12-06": "Independence Day", + "2002-12-24": "Christmas Eve", + "2002-12-25": "Christmas Day", + "2002-12-26": "Second Day of Christmas", + "2003-01-01": "New Year's Day", + "2003-01-06": "Epiphany", + "2003-04-18": "Good Friday", + "2003-04-20": "Easter Sunday", + "2003-04-21": "Easter Monday", + "2003-05-01": "May Day", + "2003-05-29": "Ascension Day", + "2003-06-08": "Whit Sunday", + "2003-06-20": "Midsummer Eve", + "2003-06-21": "Midsummer Day", + "2003-11-01": "All Saints' Day", + "2003-12-06": "Independence Day", + "2003-12-24": "Christmas Eve", + "2003-12-25": "Christmas Day", + "2003-12-26": "Second Day of Christmas", + "2004-01-01": "New Year's Day", + "2004-01-06": "Epiphany", + "2004-04-09": "Good Friday", + "2004-04-11": "Easter Sunday", + "2004-04-12": "Easter Monday", + "2004-05-01": "May Day", + "2004-05-20": "Ascension Day", + "2004-05-30": "Whit Sunday", + "2004-06-25": "Midsummer Eve", + "2004-06-26": "Midsummer Day", + "2004-11-06": "All Saints' Day", + "2004-12-06": "Independence Day", + "2004-12-24": "Christmas Eve", + "2004-12-25": "Christmas Day", + "2004-12-26": "Second Day of Christmas", + "2005-01-01": "New Year's Day", + "2005-01-06": "Epiphany", + "2005-03-25": "Good Friday", + "2005-03-27": "Easter Sunday", + "2005-03-28": "Easter Monday", + "2005-05-01": "May Day", + "2005-05-05": "Ascension Day", + "2005-05-15": "Whit Sunday", + "2005-06-24": "Midsummer Eve", + "2005-06-25": "Midsummer Day", + "2005-11-05": "All Saints' Day", + "2005-12-06": "Independence Day", + "2005-12-24": "Christmas Eve", + "2005-12-25": "Christmas Day", + "2005-12-26": "Second Day of Christmas", + "2006-01-01": "New Year's Day", + "2006-01-06": "Epiphany", + "2006-04-14": "Good Friday", + "2006-04-16": "Easter Sunday", + "2006-04-17": "Easter Monday", + "2006-05-01": "May Day", + "2006-05-25": "Ascension Day", + "2006-06-04": "Whit Sunday", + "2006-06-23": "Midsummer Eve", + "2006-06-24": "Midsummer Day", + "2006-11-04": "All Saints' Day", + "2006-12-06": "Independence Day", + "2006-12-24": "Christmas Eve", + "2006-12-25": "Christmas Day", + "2006-12-26": "Second Day of Christmas", + "2007-01-01": "New Year's Day", + "2007-01-06": "Epiphany", + "2007-04-06": "Good Friday", + "2007-04-08": "Easter Sunday", + "2007-04-09": "Easter Monday", + "2007-05-01": "May Day", + "2007-05-17": "Ascension Day", + "2007-05-27": "Whit Sunday", + "2007-06-22": "Midsummer Eve", + "2007-06-23": "Midsummer Day", + "2007-11-03": "All Saints' Day", + "2007-12-06": "Independence Day", + "2007-12-24": "Christmas Eve", + "2007-12-25": "Christmas Day", + "2007-12-26": "Second Day of Christmas", + "2008-01-01": "New Year's Day", + "2008-01-06": "Epiphany", + "2008-03-21": "Good Friday", + "2008-03-23": "Easter Sunday", + "2008-03-24": "Easter Monday", + "2008-05-01": "Ascension Day; May Day", + "2008-05-11": "Whit Sunday", + "2008-06-20": "Midsummer Eve", + "2008-06-21": "Midsummer Day", + "2008-11-01": "All Saints' Day", + "2008-12-06": "Independence Day", + "2008-12-24": "Christmas Eve", + "2008-12-25": "Christmas Day", + "2008-12-26": "Second Day of Christmas", + "2009-01-01": "New Year's Day", + "2009-01-06": "Epiphany", + "2009-04-10": "Good Friday", + "2009-04-12": "Easter Sunday", + "2009-04-13": "Easter Monday", + "2009-05-01": "May Day", + "2009-05-21": "Ascension Day", + "2009-05-31": "Whit Sunday", + "2009-06-19": "Midsummer Eve", + "2009-06-20": "Midsummer Day", + "2009-10-31": "All Saints' Day", + "2009-12-06": "Independence Day", + "2009-12-24": "Christmas Eve", + "2009-12-25": "Christmas Day", + "2009-12-26": "Second Day of Christmas", + "2010-01-01": "New Year's Day", + "2010-01-06": "Epiphany", + "2010-04-02": "Good Friday", + "2010-04-04": "Easter Sunday", + "2010-04-05": "Easter Monday", + "2010-05-01": "May Day", + "2010-05-13": "Ascension Day", + "2010-05-23": "Whit Sunday", + "2010-06-25": "Midsummer Eve", + "2010-06-26": "Midsummer Day", + "2010-11-06": "All Saints' Day", + "2010-12-06": "Independence Day", + "2010-12-24": "Christmas Eve", + "2010-12-25": "Christmas Day", + "2010-12-26": "Second Day of Christmas", + "2011-01-01": "New Year's Day", + "2011-01-06": "Epiphany", + "2011-04-22": "Good Friday", + "2011-04-24": "Easter Sunday", + "2011-04-25": "Easter Monday", + "2011-05-01": "May Day", + "2011-06-02": "Ascension Day", + "2011-06-12": "Whit Sunday", + "2011-06-24": "Midsummer Eve", + "2011-06-25": "Midsummer Day", + "2011-11-05": "All Saints' Day", + "2011-12-06": "Independence Day", + "2011-12-24": "Christmas Eve", + "2011-12-25": "Christmas Day", + "2011-12-26": "Second Day of Christmas", + "2012-01-01": "New Year's Day", + "2012-01-06": "Epiphany", + "2012-04-06": "Good Friday", + "2012-04-08": "Easter Sunday", + "2012-04-09": "Easter Monday", + "2012-05-01": "May Day", + "2012-05-17": "Ascension Day", + "2012-05-27": "Whit Sunday", + "2012-06-22": "Midsummer Eve", + "2012-06-23": "Midsummer Day", + "2012-11-03": "All Saints' Day", + "2012-12-06": "Independence Day", + "2012-12-24": "Christmas Eve", + "2012-12-25": "Christmas Day", + "2012-12-26": "Second Day of Christmas", + "2013-01-01": "New Year's Day", + "2013-01-06": "Epiphany", + "2013-03-29": "Good Friday", + "2013-03-31": "Easter Sunday", + "2013-04-01": "Easter Monday", + "2013-05-01": "May Day", + "2013-05-09": "Ascension Day", + "2013-05-19": "Whit Sunday", + "2013-06-21": "Midsummer Eve", + "2013-06-22": "Midsummer Day", + "2013-11-02": "All Saints' Day", + "2013-12-06": "Independence Day", + "2013-12-24": "Christmas Eve", + "2013-12-25": "Christmas Day", + "2013-12-26": "Second Day of Christmas", + "2014-01-01": "New Year's Day", + "2014-01-06": "Epiphany", + "2014-04-18": "Good Friday", + "2014-04-20": "Easter Sunday", + "2014-04-21": "Easter Monday", + "2014-05-01": "May Day", + "2014-05-29": "Ascension Day", + "2014-06-08": "Whit Sunday", + "2014-06-20": "Midsummer Eve", + "2014-06-21": "Midsummer Day", + "2014-11-01": "All Saints' Day", + "2014-12-06": "Independence Day", + "2014-12-24": "Christmas Eve", + "2014-12-25": "Christmas Day", + "2014-12-26": "Second Day of Christmas", + "2015-01-01": "New Year's Day", + "2015-01-06": "Epiphany", + "2015-04-03": "Good Friday", + "2015-04-05": "Easter Sunday", + "2015-04-06": "Easter Monday", + "2015-05-01": "May Day", + "2015-05-14": "Ascension Day", + "2015-05-24": "Whit Sunday", + "2015-06-19": "Midsummer Eve", + "2015-06-20": "Midsummer Day", + "2015-10-31": "All Saints' Day", + "2015-12-06": "Independence Day", + "2015-12-24": "Christmas Eve", + "2015-12-25": "Christmas Day", + "2015-12-26": "Second Day of Christmas", + "2016-01-01": "New Year's Day", + "2016-01-06": "Epiphany", + "2016-03-25": "Good Friday", + "2016-03-27": "Easter Sunday", + "2016-03-28": "Easter Monday", + "2016-05-01": "May Day", + "2016-05-05": "Ascension Day", + "2016-05-15": "Whit Sunday", + "2016-06-24": "Midsummer Eve", + "2016-06-25": "Midsummer Day", + "2016-11-05": "All Saints' Day", + "2016-12-06": "Independence Day", + "2016-12-24": "Christmas Eve", + "2016-12-25": "Christmas Day", + "2016-12-26": "Second Day of Christmas", + "2017-01-01": "New Year's Day", + "2017-01-06": "Epiphany", + "2017-04-14": "Good Friday", + "2017-04-16": "Easter Sunday", + "2017-04-17": "Easter Monday", + "2017-05-01": "May Day", + "2017-05-25": "Ascension Day", + "2017-06-04": "Whit Sunday", + "2017-06-23": "Midsummer Eve", + "2017-06-24": "Midsummer Day", + "2017-11-04": "All Saints' Day", + "2017-12-06": "Independence Day", + "2017-12-24": "Christmas Eve", + "2017-12-25": "Christmas Day", + "2017-12-26": "Second Day of Christmas", + "2018-01-01": "New Year's Day", + "2018-01-06": "Epiphany", + "2018-03-30": "Good Friday", + "2018-04-01": "Easter Sunday", + "2018-04-02": "Easter Monday", + "2018-05-01": "May Day", + "2018-05-10": "Ascension Day", + "2018-05-20": "Whit Sunday", + "2018-06-22": "Midsummer Eve", + "2018-06-23": "Midsummer Day", + "2018-11-03": "All Saints' Day", + "2018-12-06": "Independence Day", + "2018-12-24": "Christmas Eve", + "2018-12-25": "Christmas Day", + "2018-12-26": "Second Day of Christmas", + "2019-01-01": "New Year's Day", + "2019-01-06": "Epiphany", + "2019-04-19": "Good Friday", + "2019-04-21": "Easter Sunday", + "2019-04-22": "Easter Monday", + "2019-05-01": "May Day", + "2019-05-30": "Ascension Day", + "2019-06-09": "Whit Sunday", + "2019-06-21": "Midsummer Eve", + "2019-06-22": "Midsummer Day", + "2019-11-02": "All Saints' Day", + "2019-12-06": "Independence Day", + "2019-12-24": "Christmas Eve", + "2019-12-25": "Christmas Day", + "2019-12-26": "Second Day of Christmas", + "2020-01-01": "New Year's Day", + "2020-01-06": "Epiphany", + "2020-04-10": "Good Friday", + "2020-04-12": "Easter Sunday", + "2020-04-13": "Easter Monday", + "2020-05-01": "May Day", + "2020-05-21": "Ascension Day", + "2020-05-31": "Whit Sunday", + "2020-06-19": "Midsummer Eve", + "2020-06-20": "Midsummer Day", + "2020-10-31": "All Saints' Day", + "2020-12-06": "Independence Day", + "2020-12-24": "Christmas Eve", + "2020-12-25": "Christmas Day", + "2020-12-26": "Second Day of Christmas", + "2021-01-01": "New Year's Day", + "2021-01-06": "Epiphany", + "2021-04-02": "Good Friday", + "2021-04-04": "Easter Sunday", + "2021-04-05": "Easter Monday", + "2021-05-01": "May Day", + "2021-05-13": "Ascension Day", + "2021-05-23": "Whit Sunday", + "2021-06-25": "Midsummer Eve", + "2021-06-26": "Midsummer Day", + "2021-11-06": "All Saints' Day", + "2021-12-06": "Independence Day", + "2021-12-24": "Christmas Eve", + "2021-12-25": "Christmas Day", + "2021-12-26": "Second Day of Christmas", + "2022-01-01": "New Year's Day", + "2022-01-06": "Epiphany", + "2022-04-15": "Good Friday", + "2022-04-17": "Easter Sunday", + "2022-04-18": "Easter Monday", + "2022-05-01": "May Day", + "2022-05-26": "Ascension Day", + "2022-06-05": "Whit Sunday", + "2022-06-24": "Midsummer Eve", + "2022-06-25": "Midsummer Day", + "2022-11-05": "All Saints' Day", + "2022-12-06": "Independence Day", + "2022-12-24": "Christmas Eve", + "2022-12-25": "Christmas Day", + "2022-12-26": "Second Day of Christmas", + "2023-01-01": "New Year's Day", + "2023-01-06": "Epiphany", + "2023-04-07": "Good Friday", + "2023-04-09": "Easter Sunday", + "2023-04-10": "Easter Monday", + "2023-05-01": "May Day", + "2023-05-18": "Ascension Day", + "2023-05-28": "Whit Sunday", + "2023-06-23": "Midsummer Eve", + "2023-06-24": "Midsummer Day", + "2023-11-04": "All Saints' Day", + "2023-12-06": "Independence Day", + "2023-12-24": "Christmas Eve", + "2023-12-25": "Christmas Day", + "2023-12-26": "Second Day of Christmas", + "2024-01-01": "New Year's Day", + "2024-01-06": "Epiphany", + "2024-03-29": "Good Friday", + "2024-03-31": "Easter Sunday", + "2024-04-01": "Easter Monday", + "2024-05-01": "May Day", + "2024-05-09": "Ascension Day", + "2024-05-19": "Whit Sunday", + "2024-06-21": "Midsummer Eve", + "2024-06-22": "Midsummer Day", + "2024-11-02": "All Saints' Day", + "2024-12-06": "Independence Day", + "2024-12-24": "Christmas Eve", + "2024-12-25": "Christmas Day", + "2024-12-26": "Second Day of Christmas", + "2025-01-01": "New Year's Day", + "2025-01-06": "Epiphany", + "2025-04-18": "Good Friday", + "2025-04-20": "Easter Sunday", + "2025-04-21": "Easter Monday", + "2025-05-01": "May Day", + "2025-05-29": "Ascension Day", + "2025-06-08": "Whit Sunday", + "2025-06-20": "Midsummer Eve", + "2025-06-21": "Midsummer Day", + "2025-11-01": "All Saints' Day", + "2025-12-06": "Independence Day", + "2025-12-24": "Christmas Eve", + "2025-12-25": "Christmas Day", + "2025-12-26": "Second Day of Christmas", + "2026-01-01": "New Year's Day", + "2026-01-06": "Epiphany", + "2026-04-03": "Good Friday", + "2026-04-05": "Easter Sunday", + "2026-04-06": "Easter Monday", + "2026-05-01": "May Day", + "2026-05-14": "Ascension Day", + "2026-05-24": "Whit Sunday", + "2026-06-19": "Midsummer Eve", + "2026-06-20": "Midsummer Day", + "2026-10-31": "All Saints' Day", + "2026-12-06": "Independence Day", + "2026-12-24": "Christmas Eve", + "2026-12-25": "Christmas Day", + "2026-12-26": "Second Day of Christmas", + "2027-01-01": "New Year's Day", + "2027-01-06": "Epiphany", + "2027-03-26": "Good Friday", + "2027-03-28": "Easter Sunday", + "2027-03-29": "Easter Monday", + "2027-05-01": "May Day", + "2027-05-06": "Ascension Day", + "2027-05-16": "Whit Sunday", + "2027-06-25": "Midsummer Eve", + "2027-06-26": "Midsummer Day", + "2027-11-06": "All Saints' Day", + "2027-12-06": "Independence Day", + "2027-12-24": "Christmas Eve", + "2027-12-25": "Christmas Day", + "2027-12-26": "Second Day of Christmas", + "2028-01-01": "New Year's Day", + "2028-01-06": "Epiphany", + "2028-04-14": "Good Friday", + "2028-04-16": "Easter Sunday", + "2028-04-17": "Easter Monday", + "2028-05-01": "May Day", + "2028-05-25": "Ascension Day", + "2028-06-04": "Whit Sunday", + "2028-06-23": "Midsummer Eve", + "2028-06-24": "Midsummer Day", + "2028-11-04": "All Saints' Day", + "2028-12-06": "Independence Day", + "2028-12-24": "Christmas Eve", + "2028-12-25": "Christmas Day", + "2028-12-26": "Second Day of Christmas", + "2029-01-01": "New Year's Day", + "2029-01-06": "Epiphany", + "2029-03-30": "Good Friday", + "2029-04-01": "Easter Sunday", + "2029-04-02": "Easter Monday", + "2029-05-01": "May Day", + "2029-05-10": "Ascension Day", + "2029-05-20": "Whit Sunday", + "2029-06-22": "Midsummer Eve", + "2029-06-23": "Midsummer Day", + "2029-11-03": "All Saints' Day", + "2029-12-06": "Independence Day", + "2029-12-24": "Christmas Eve", + "2029-12-25": "Christmas Day", + "2029-12-26": "Second Day of Christmas", + "2030-01-01": "New Year's Day", + "2030-01-06": "Epiphany", + "2030-04-19": "Good Friday", + "2030-04-21": "Easter Sunday", + "2030-04-22": "Easter Monday", + "2030-05-01": "May Day", + "2030-05-30": "Ascension Day", + "2030-06-09": "Whit Sunday", + "2030-06-21": "Midsummer Eve", + "2030-06-22": "Midsummer Day", + "2030-11-02": "All Saints' Day", + "2030-12-06": "Independence Day", + "2030-12-24": "Christmas Eve", + "2030-12-25": "Christmas Day", + "2030-12-26": "Second Day of Christmas", + "2031-01-01": "New Year's Day", + "2031-01-06": "Epiphany", + "2031-04-11": "Good Friday", + "2031-04-13": "Easter Sunday", + "2031-04-14": "Easter Monday", + "2031-05-01": "May Day", + "2031-05-22": "Ascension Day", + "2031-06-01": "Whit Sunday", + "2031-06-20": "Midsummer Eve", + "2031-06-21": "Midsummer Day", + "2031-11-01": "All Saints' Day", + "2031-12-06": "Independence Day", + "2031-12-24": "Christmas Eve", + "2031-12-25": "Christmas Day", + "2031-12-26": "Second Day of Christmas", + "2032-01-01": "New Year's Day", + "2032-01-06": "Epiphany", + "2032-03-26": "Good Friday", + "2032-03-28": "Easter Sunday", + "2032-03-29": "Easter Monday", + "2032-05-01": "May Day", + "2032-05-06": "Ascension Day", + "2032-05-16": "Whit Sunday", + "2032-06-25": "Midsummer Eve", + "2032-06-26": "Midsummer Day", + "2032-11-06": "All Saints' Day", + "2032-12-06": "Independence Day", + "2032-12-24": "Christmas Eve", + "2032-12-25": "Christmas Day", + "2032-12-26": "Second Day of Christmas", + "2033-01-01": "New Year's Day", + "2033-01-06": "Epiphany", + "2033-04-15": "Good Friday", + "2033-04-17": "Easter Sunday", + "2033-04-18": "Easter Monday", + "2033-05-01": "May Day", + "2033-05-26": "Ascension Day", + "2033-06-05": "Whit Sunday", + "2033-06-24": "Midsummer Eve", + "2033-06-25": "Midsummer Day", + "2033-11-05": "All Saints' Day", + "2033-12-06": "Independence Day", + "2033-12-24": "Christmas Eve", + "2033-12-25": "Christmas Day", + "2033-12-26": "Second Day of Christmas", + "2034-01-01": "New Year's Day", + "2034-01-06": "Epiphany", + "2034-04-07": "Good Friday", + "2034-04-09": "Easter Sunday", + "2034-04-10": "Easter Monday", + "2034-05-01": "May Day", + "2034-05-18": "Ascension Day", + "2034-05-28": "Whit Sunday", + "2034-06-23": "Midsummer Eve", + "2034-06-24": "Midsummer Day", + "2034-11-04": "All Saints' Day", + "2034-12-06": "Independence Day", + "2034-12-24": "Christmas Eve", + "2034-12-25": "Christmas Day", + "2034-12-26": "Second Day of Christmas", + "2035-01-01": "New Year's Day", + "2035-01-06": "Epiphany", + "2035-03-23": "Good Friday", + "2035-03-25": "Easter Sunday", + "2035-03-26": "Easter Monday", + "2035-05-01": "May Day", + "2035-05-03": "Ascension Day", + "2035-05-13": "Whit Sunday", + "2035-06-22": "Midsummer Eve", + "2035-06-23": "Midsummer Day", + "2035-11-03": "All Saints' Day", + "2035-12-06": "Independence Day", + "2035-12-24": "Christmas Eve", + "2035-12-25": "Christmas Day", + "2035-12-26": "Second Day of Christmas", + "2036-01-01": "New Year's Day", + "2036-01-06": "Epiphany", + "2036-04-11": "Good Friday", + "2036-04-13": "Easter Sunday", + "2036-04-14": "Easter Monday", + "2036-05-01": "May Day", + "2036-05-22": "Ascension Day", + "2036-06-01": "Whit Sunday", + "2036-06-20": "Midsummer Eve", + "2036-06-21": "Midsummer Day", + "2036-11-01": "All Saints' Day", + "2036-12-06": "Independence Day", + "2036-12-24": "Christmas Eve", + "2036-12-25": "Christmas Day", + "2036-12-26": "Second Day of Christmas", + "2037-01-01": "New Year's Day", + "2037-01-06": "Epiphany", + "2037-04-03": "Good Friday", + "2037-04-05": "Easter Sunday", + "2037-04-06": "Easter Monday", + "2037-05-01": "May Day", + "2037-05-14": "Ascension Day", + "2037-05-24": "Whit Sunday", + "2037-06-19": "Midsummer Eve", + "2037-06-20": "Midsummer Day", + "2037-10-31": "All Saints' Day", + "2037-12-06": "Independence Day", + "2037-12-24": "Christmas Eve", + "2037-12-25": "Christmas Day", + "2037-12-26": "Second Day of Christmas", + "2038-01-01": "New Year's Day", + "2038-01-06": "Epiphany", + "2038-04-23": "Good Friday", + "2038-04-25": "Easter Sunday", + "2038-04-26": "Easter Monday", + "2038-05-01": "May Day", + "2038-06-03": "Ascension Day", + "2038-06-13": "Whit Sunday", + "2038-06-25": "Midsummer Eve", + "2038-06-26": "Midsummer Day", + "2038-11-06": "All Saints' Day", + "2038-12-06": "Independence Day", + "2038-12-24": "Christmas Eve", + "2038-12-25": "Christmas Day", + "2038-12-26": "Second Day of Christmas", + "2039-01-01": "New Year's Day", + "2039-01-06": "Epiphany", + "2039-04-08": "Good Friday", + "2039-04-10": "Easter Sunday", + "2039-04-11": "Easter Monday", + "2039-05-01": "May Day", + "2039-05-19": "Ascension Day", + "2039-05-29": "Whit Sunday", + "2039-06-24": "Midsummer Eve", + "2039-06-25": "Midsummer Day", + "2039-11-05": "All Saints' Day", + "2039-12-06": "Independence Day", + "2039-12-24": "Christmas Eve", + "2039-12-25": "Christmas Day", + "2039-12-26": "Second Day of Christmas", + "2040-01-01": "New Year's Day", + "2040-01-06": "Epiphany", + "2040-03-30": "Good Friday", + "2040-04-01": "Easter Sunday", + "2040-04-02": "Easter Monday", + "2040-05-01": "May Day", + "2040-05-10": "Ascension Day", + "2040-05-20": "Whit Sunday", + "2040-06-22": "Midsummer Eve", + "2040-06-23": "Midsummer Day", + "2040-11-03": "All Saints' Day", + "2040-12-06": "Independence Day", + "2040-12-24": "Christmas Eve", + "2040-12-25": "Christmas Day", + "2040-12-26": "Second Day of Christmas", + "2041-01-01": "New Year's Day", + "2041-01-06": "Epiphany", + "2041-04-19": "Good Friday", + "2041-04-21": "Easter Sunday", + "2041-04-22": "Easter Monday", + "2041-05-01": "May Day", + "2041-05-30": "Ascension Day", + "2041-06-09": "Whit Sunday", + "2041-06-21": "Midsummer Eve", + "2041-06-22": "Midsummer Day", + "2041-11-02": "All Saints' Day", + "2041-12-06": "Independence Day", + "2041-12-24": "Christmas Eve", + "2041-12-25": "Christmas Day", + "2041-12-26": "Second Day of Christmas", + "2042-01-01": "New Year's Day", + "2042-01-06": "Epiphany", + "2042-04-04": "Good Friday", + "2042-04-06": "Easter Sunday", + "2042-04-07": "Easter Monday", + "2042-05-01": "May Day", + "2042-05-15": "Ascension Day", + "2042-05-25": "Whit Sunday", + "2042-06-20": "Midsummer Eve", + "2042-06-21": "Midsummer Day", + "2042-11-01": "All Saints' Day", + "2042-12-06": "Independence Day", + "2042-12-24": "Christmas Eve", + "2042-12-25": "Christmas Day", + "2042-12-26": "Second Day of Christmas", + "2043-01-01": "New Year's Day", + "2043-01-06": "Epiphany", + "2043-03-27": "Good Friday", + "2043-03-29": "Easter Sunday", + "2043-03-30": "Easter Monday", + "2043-05-01": "May Day", + "2043-05-07": "Ascension Day", + "2043-05-17": "Whit Sunday", + "2043-06-19": "Midsummer Eve", + "2043-06-20": "Midsummer Day", + "2043-10-31": "All Saints' Day", + "2043-12-06": "Independence Day", + "2043-12-24": "Christmas Eve", + "2043-12-25": "Christmas Day", + "2043-12-26": "Second Day of Christmas", + "2044-01-01": "New Year's Day", + "2044-01-06": "Epiphany", + "2044-04-15": "Good Friday", + "2044-04-17": "Easter Sunday", + "2044-04-18": "Easter Monday", + "2044-05-01": "May Day", + "2044-05-26": "Ascension Day", + "2044-06-05": "Whit Sunday", + "2044-06-24": "Midsummer Eve", + "2044-06-25": "Midsummer Day", + "2044-11-05": "All Saints' Day", + "2044-12-06": "Independence Day", + "2044-12-24": "Christmas Eve", + "2044-12-25": "Christmas Day", + "2044-12-26": "Second Day of Christmas", + "2045-01-01": "New Year's Day", + "2045-01-06": "Epiphany", + "2045-04-07": "Good Friday", + "2045-04-09": "Easter Sunday", + "2045-04-10": "Easter Monday", + "2045-05-01": "May Day", + "2045-05-18": "Ascension Day", + "2045-05-28": "Whit Sunday", + "2045-06-23": "Midsummer Eve", + "2045-06-24": "Midsummer Day", + "2045-11-04": "All Saints' Day", + "2045-12-06": "Independence Day", + "2045-12-24": "Christmas Eve", + "2045-12-25": "Christmas Day", + "2045-12-26": "Second Day of Christmas", + "2046-01-01": "New Year's Day", + "2046-01-06": "Epiphany", + "2046-03-23": "Good Friday", + "2046-03-25": "Easter Sunday", + "2046-03-26": "Easter Monday", + "2046-05-01": "May Day", + "2046-05-03": "Ascension Day", + "2046-05-13": "Whit Sunday", + "2046-06-22": "Midsummer Eve", + "2046-06-23": "Midsummer Day", + "2046-11-03": "All Saints' Day", + "2046-12-06": "Independence Day", + "2046-12-24": "Christmas Eve", + "2046-12-25": "Christmas Day", + "2046-12-26": "Second Day of Christmas", + "2047-01-01": "New Year's Day", + "2047-01-06": "Epiphany", + "2047-04-12": "Good Friday", + "2047-04-14": "Easter Sunday", + "2047-04-15": "Easter Monday", + "2047-05-01": "May Day", + "2047-05-23": "Ascension Day", + "2047-06-02": "Whit Sunday", + "2047-06-21": "Midsummer Eve", + "2047-06-22": "Midsummer Day", + "2047-11-02": "All Saints' Day", + "2047-12-06": "Independence Day", + "2047-12-24": "Christmas Eve", + "2047-12-25": "Christmas Day", + "2047-12-26": "Second Day of Christmas", + "2048-01-01": "New Year's Day", + "2048-01-06": "Epiphany", + "2048-04-03": "Good Friday", + "2048-04-05": "Easter Sunday", + "2048-04-06": "Easter Monday", + "2048-05-01": "May Day", + "2048-05-14": "Ascension Day", + "2048-05-24": "Whit Sunday", + "2048-06-19": "Midsummer Eve", + "2048-06-20": "Midsummer Day", + "2048-10-31": "All Saints' Day", + "2048-12-06": "Independence Day", + "2048-12-24": "Christmas Eve", + "2048-12-25": "Christmas Day", + "2048-12-26": "Second Day of Christmas", + "2049-01-01": "New Year's Day", + "2049-01-06": "Epiphany", + "2049-04-16": "Good Friday", + "2049-04-18": "Easter Sunday", + "2049-04-19": "Easter Monday", + "2049-05-01": "May Day", + "2049-05-27": "Ascension Day", + "2049-06-06": "Whit Sunday", + "2049-06-25": "Midsummer Eve", + "2049-06-26": "Midsummer Day", + "2049-11-06": "All Saints' Day", + "2049-12-06": "Independence Day", + "2049-12-24": "Christmas Eve", + "2049-12-25": "Christmas Day", + "2049-12-26": "Second Day of Christmas", + "2050-01-01": "New Year's Day", + "2050-01-06": "Epiphany", + "2050-04-08": "Good Friday", + "2050-04-10": "Easter Sunday", + "2050-04-11": "Easter Monday", + "2050-05-01": "May Day", + "2050-05-19": "Ascension Day", + "2050-05-29": "Whit Sunday", + "2050-06-24": "Midsummer Eve", + "2050-06-25": "Midsummer Day", + "2050-11-05": "All Saints' Day", + "2050-12-06": "Independence Day", + "2050-12-24": "Christmas Eve", + "2050-12-25": "Christmas Day", + "2050-12-26": "Second Day of Christmas" +} diff --git a/snapshots/countries/FR.json b/snapshots/countries/FR.json new file mode 100644 index 000000000..7589fc3d6 --- /dev/null +++ b/snapshots/countries/FR.json @@ -0,0 +1,2580 @@ +{ + "1950-01-01": "New Year's Day", + "1950-03-05": "Missionary Day", + "1950-03-16": "Mi-Careme", + "1950-04-07": "Good Friday", + "1950-04-10": "Easter Monday", + "1950-04-27": "Abolition of Slavery", + "1950-04-28": "Feast of Saint Peter Chanel", + "1950-05-01": "Labor Day", + "1950-05-18": "Ascension Day", + "1950-05-22": "Abolition of Slavery", + "1950-05-27": "Abolition of Slavery", + "1950-05-29": "Whit Monday", + "1950-06-10": "Abolition of Slavery", + "1950-06-29": "Internal Autonomy Day", + "1950-07-14": "National Day", + "1950-07-21": "Feast of Victor Schoelcher", + "1950-07-29": "Festival of the Territory", + "1950-08-15": "Assumption Day", + "1950-09-24": "Citizenship Day", + "1950-10-09": "Abolition of Slavery", + "1950-11-01": "All Saints' Day", + "1950-11-11": "Armistice Day", + "1950-12-25": "Christmas Day", + "1950-12-26": "Saint Stephen's Day", + "1951-01-01": "New Year's Day", + "1951-03-01": "Mi-Careme", + "1951-03-05": "Missionary Day", + "1951-03-23": "Good Friday", + "1951-03-26": "Easter Monday", + "1951-04-27": "Abolition of Slavery", + "1951-04-28": "Feast of Saint Peter Chanel", + "1951-05-01": "Labor Day", + "1951-05-03": "Ascension Day", + "1951-05-14": "Whit Monday", + "1951-05-22": "Abolition of Slavery", + "1951-05-27": "Abolition of Slavery", + "1951-06-10": "Abolition of Slavery", + "1951-06-29": "Internal Autonomy Day", + "1951-07-14": "National Day", + "1951-07-21": "Feast of Victor Schoelcher", + "1951-07-29": "Festival of the Territory", + "1951-08-15": "Assumption Day", + "1951-09-24": "Citizenship Day", + "1951-10-09": "Abolition of Slavery", + "1951-11-01": "All Saints' Day", + "1951-11-11": "Armistice Day", + "1951-12-25": "Christmas Day", + "1951-12-26": "Saint Stephen's Day", + "1952-01-01": "New Year's Day", + "1952-03-05": "Missionary Day", + "1952-03-20": "Mi-Careme", + "1952-04-11": "Good Friday", + "1952-04-14": "Easter Monday", + "1952-04-27": "Abolition of Slavery", + "1952-04-28": "Feast of Saint Peter Chanel", + "1952-05-01": "Labor Day", + "1952-05-22": "Abolition of Slavery; Ascension Day", + "1952-05-27": "Abolition of Slavery", + "1952-06-02": "Whit Monday", + "1952-06-10": "Abolition of Slavery", + "1952-06-29": "Internal Autonomy Day", + "1952-07-14": "National Day", + "1952-07-21": "Feast of Victor Schoelcher", + "1952-07-29": "Festival of the Territory", + "1952-08-15": "Assumption Day", + "1952-09-24": "Citizenship Day", + "1952-10-09": "Abolition of Slavery", + "1952-11-01": "All Saints' Day", + "1952-11-11": "Armistice Day", + "1952-12-25": "Christmas Day", + "1952-12-26": "Saint Stephen's Day", + "1953-01-01": "New Year's Day", + "1953-03-05": "Missionary Day", + "1953-03-12": "Mi-Careme", + "1953-04-03": "Good Friday", + "1953-04-06": "Easter Monday", + "1953-04-27": "Abolition of Slavery", + "1953-04-28": "Feast of Saint Peter Chanel", + "1953-05-01": "Labor Day", + "1953-05-08": "Victory Day", + "1953-05-14": "Ascension Day", + "1953-05-22": "Abolition of Slavery", + "1953-05-25": "Whit Monday", + "1953-05-27": "Abolition of Slavery", + "1953-06-10": "Abolition of Slavery", + "1953-06-29": "Internal Autonomy Day", + "1953-07-14": "National Day", + "1953-07-21": "Feast of Victor Schoelcher", + "1953-07-29": "Festival of the Territory", + "1953-08-15": "Assumption Day", + "1953-09-24": "Citizenship Day", + "1953-10-09": "Abolition of Slavery", + "1953-11-01": "All Saints' Day", + "1953-11-11": "Armistice Day", + "1953-12-25": "Christmas Day", + "1953-12-26": "Saint Stephen's Day", + "1954-01-01": "New Year's Day", + "1954-03-05": "Missionary Day", + "1954-03-25": "Mi-Careme", + "1954-04-16": "Good Friday", + "1954-04-19": "Easter Monday", + "1954-04-27": "Abolition of Slavery", + "1954-04-28": "Feast of Saint Peter Chanel", + "1954-05-01": "Labor Day", + "1954-05-08": "Victory Day", + "1954-05-22": "Abolition of Slavery", + "1954-05-27": "Abolition of Slavery; Ascension Day", + "1954-06-07": "Whit Monday", + "1954-06-10": "Abolition of Slavery", + "1954-06-29": "Internal Autonomy Day", + "1954-07-14": "National Day", + "1954-07-21": "Feast of Victor Schoelcher", + "1954-07-29": "Festival of the Territory", + "1954-08-15": "Assumption Day", + "1954-09-24": "Citizenship Day", + "1954-10-09": "Abolition of Slavery", + "1954-11-01": "All Saints' Day", + "1954-11-11": "Armistice Day", + "1954-12-25": "Christmas Day", + "1954-12-26": "Saint Stephen's Day", + "1955-01-01": "New Year's Day", + "1955-03-05": "Missionary Day", + "1955-03-17": "Mi-Careme", + "1955-04-08": "Good Friday", + "1955-04-11": "Easter Monday", + "1955-04-27": "Abolition of Slavery", + "1955-04-28": "Feast of Saint Peter Chanel", + "1955-05-01": "Labor Day", + "1955-05-08": "Victory Day", + "1955-05-19": "Ascension Day", + "1955-05-22": "Abolition of Slavery", + "1955-05-27": "Abolition of Slavery", + "1955-05-30": "Whit Monday", + "1955-06-10": "Abolition of Slavery", + "1955-06-29": "Internal Autonomy Day", + "1955-07-14": "National Day", + "1955-07-21": "Feast of Victor Schoelcher", + "1955-07-29": "Festival of the Territory", + "1955-08-15": "Assumption Day", + "1955-09-24": "Citizenship Day", + "1955-10-09": "Abolition of Slavery", + "1955-11-01": "All Saints' Day", + "1955-11-11": "Armistice Day", + "1955-12-25": "Christmas Day", + "1955-12-26": "Saint Stephen's Day", + "1956-01-01": "New Year's Day", + "1956-03-05": "Missionary Day", + "1956-03-08": "Mi-Careme", + "1956-03-30": "Good Friday", + "1956-04-02": "Easter Monday", + "1956-04-27": "Abolition of Slavery", + "1956-04-28": "Feast of Saint Peter Chanel", + "1956-05-01": "Labor Day", + "1956-05-08": "Victory Day", + "1956-05-10": "Ascension Day", + "1956-05-21": "Whit Monday", + "1956-05-22": "Abolition of Slavery", + "1956-05-27": "Abolition of Slavery", + "1956-06-10": "Abolition of Slavery", + "1956-06-29": "Internal Autonomy Day", + "1956-07-14": "National Day", + "1956-07-21": "Feast of Victor Schoelcher", + "1956-07-29": "Festival of the Territory", + "1956-08-15": "Assumption Day", + "1956-09-24": "Citizenship Day", + "1956-10-09": "Abolition of Slavery", + "1956-11-01": "All Saints' Day", + "1956-11-11": "Armistice Day", + "1956-12-25": "Christmas Day", + "1956-12-26": "Saint Stephen's Day", + "1957-01-01": "New Year's Day", + "1957-03-05": "Missionary Day", + "1957-03-28": "Mi-Careme", + "1957-04-19": "Good Friday", + "1957-04-22": "Easter Monday", + "1957-04-27": "Abolition of Slavery", + "1957-04-28": "Feast of Saint Peter Chanel", + "1957-05-01": "Labor Day", + "1957-05-08": "Victory Day", + "1957-05-22": "Abolition of Slavery", + "1957-05-27": "Abolition of Slavery", + "1957-05-30": "Ascension Day", + "1957-06-10": "Abolition of Slavery; Whit Monday", + "1957-06-29": "Internal Autonomy Day", + "1957-07-14": "National Day", + "1957-07-21": "Feast of Victor Schoelcher", + "1957-07-29": "Festival of the Territory", + "1957-08-15": "Assumption Day", + "1957-09-24": "Citizenship Day", + "1957-10-09": "Abolition of Slavery", + "1957-11-01": "All Saints' Day", + "1957-11-11": "Armistice Day", + "1957-12-25": "Christmas Day", + "1957-12-26": "Saint Stephen's Day", + "1958-01-01": "New Year's Day", + "1958-03-05": "Missionary Day", + "1958-03-13": "Mi-Careme", + "1958-04-04": "Good Friday", + "1958-04-07": "Easter Monday", + "1958-04-27": "Abolition of Slavery", + "1958-04-28": "Feast of Saint Peter Chanel", + "1958-05-01": "Labor Day", + "1958-05-08": "Victory Day", + "1958-05-15": "Ascension Day", + "1958-05-22": "Abolition of Slavery", + "1958-05-26": "Whit Monday", + "1958-05-27": "Abolition of Slavery", + "1958-06-10": "Abolition of Slavery", + "1958-06-29": "Internal Autonomy Day", + "1958-07-14": "National Day", + "1958-07-21": "Feast of Victor Schoelcher", + "1958-07-29": "Festival of the Territory", + "1958-08-15": "Assumption Day", + "1958-09-24": "Citizenship Day", + "1958-10-09": "Abolition of Slavery", + "1958-11-01": "All Saints' Day", + "1958-11-11": "Armistice Day", + "1958-12-25": "Christmas Day", + "1958-12-26": "Saint Stephen's Day", + "1959-01-01": "New Year's Day", + "1959-03-05": "Mi-Careme; Missionary Day", + "1959-03-27": "Good Friday", + "1959-03-30": "Easter Monday", + "1959-04-27": "Abolition of Slavery", + "1959-04-28": "Feast of Saint Peter Chanel", + "1959-05-01": "Labor Day", + "1959-05-07": "Ascension Day", + "1959-05-08": "Victory Day", + "1959-05-18": "Whit Monday", + "1959-05-22": "Abolition of Slavery", + "1959-05-27": "Abolition of Slavery", + "1959-06-10": "Abolition of Slavery", + "1959-06-29": "Internal Autonomy Day", + "1959-07-14": "National Day", + "1959-07-21": "Feast of Victor Schoelcher", + "1959-07-29": "Festival of the Territory", + "1959-08-15": "Assumption Day", + "1959-09-24": "Citizenship Day", + "1959-10-09": "Abolition of Slavery", + "1959-11-01": "All Saints' Day", + "1959-11-11": "Armistice Day", + "1959-12-25": "Christmas Day", + "1959-12-26": "Saint Stephen's Day", + "1960-01-01": "New Year's Day", + "1960-03-05": "Missionary Day", + "1960-03-24": "Mi-Careme", + "1960-04-15": "Good Friday", + "1960-04-18": "Easter Monday", + "1960-04-27": "Abolition of Slavery", + "1960-04-28": "Feast of Saint Peter Chanel", + "1960-05-01": "Labor Day", + "1960-05-22": "Abolition of Slavery", + "1960-05-26": "Ascension Day", + "1960-05-27": "Abolition of Slavery", + "1960-06-06": "Whit Monday", + "1960-06-10": "Abolition of Slavery", + "1960-06-29": "Internal Autonomy Day", + "1960-07-14": "National Day", + "1960-07-21": "Feast of Victor Schoelcher", + "1960-07-29": "Festival of the Territory", + "1960-08-15": "Assumption Day", + "1960-09-24": "Citizenship Day", + "1960-10-09": "Abolition of Slavery", + "1960-11-01": "All Saints' Day", + "1960-11-11": "Armistice Day", + "1960-12-25": "Christmas Day", + "1960-12-26": "Saint Stephen's Day", + "1961-01-01": "New Year's Day", + "1961-03-05": "Missionary Day", + "1961-03-09": "Mi-Careme", + "1961-03-31": "Good Friday", + "1961-04-03": "Easter Monday", + "1961-04-27": "Abolition of Slavery", + "1961-04-28": "Feast of Saint Peter Chanel", + "1961-05-01": "Labor Day", + "1961-05-11": "Ascension Day", + "1961-05-22": "Abolition of Slavery; Whit Monday", + "1961-05-27": "Abolition of Slavery", + "1961-06-10": "Abolition of Slavery", + "1961-06-29": "Internal Autonomy Day", + "1961-07-14": "National Day", + "1961-07-21": "Feast of Victor Schoelcher", + "1961-07-29": "Festival of the Territory", + "1961-08-15": "Assumption Day", + "1961-09-24": "Citizenship Day", + "1961-10-09": "Abolition of Slavery", + "1961-11-01": "All Saints' Day", + "1961-11-11": "Armistice Day", + "1961-12-25": "Christmas Day", + "1961-12-26": "Saint Stephen's Day", + "1962-01-01": "New Year's Day", + "1962-03-05": "Missionary Day", + "1962-03-29": "Mi-Careme", + "1962-04-20": "Good Friday", + "1962-04-23": "Easter Monday", + "1962-04-27": "Abolition of Slavery", + "1962-04-28": "Feast of Saint Peter Chanel", + "1962-05-01": "Labor Day", + "1962-05-22": "Abolition of Slavery", + "1962-05-27": "Abolition of Slavery", + "1962-05-31": "Ascension Day", + "1962-06-10": "Abolition of Slavery", + "1962-06-11": "Whit Monday", + "1962-06-29": "Internal Autonomy Day", + "1962-07-14": "National Day", + "1962-07-21": "Feast of Victor Schoelcher", + "1962-07-29": "Festival of the Territory", + "1962-08-15": "Assumption Day", + "1962-09-24": "Citizenship Day", + "1962-10-09": "Abolition of Slavery", + "1962-11-01": "All Saints' Day", + "1962-11-11": "Armistice Day", + "1962-12-25": "Christmas Day", + "1962-12-26": "Saint Stephen's Day", + "1963-01-01": "New Year's Day", + "1963-03-05": "Missionary Day", + "1963-03-21": "Mi-Careme", + "1963-04-12": "Good Friday", + "1963-04-15": "Easter Monday", + "1963-04-27": "Abolition of Slavery", + "1963-04-28": "Feast of Saint Peter Chanel", + "1963-05-01": "Labor Day", + "1963-05-22": "Abolition of Slavery", + "1963-05-23": "Ascension Day", + "1963-05-27": "Abolition of Slavery", + "1963-06-03": "Whit Monday", + "1963-06-10": "Abolition of Slavery", + "1963-06-29": "Internal Autonomy Day", + "1963-07-14": "National Day", + "1963-07-21": "Feast of Victor Schoelcher", + "1963-07-29": "Festival of the Territory", + "1963-08-15": "Assumption Day", + "1963-09-24": "Citizenship Day", + "1963-10-09": "Abolition of Slavery", + "1963-11-01": "All Saints' Day", + "1963-11-11": "Armistice Day", + "1963-12-25": "Christmas Day", + "1963-12-26": "Saint Stephen's Day", + "1964-01-01": "New Year's Day", + "1964-03-05": "Mi-Careme; Missionary Day", + "1964-03-27": "Good Friday", + "1964-03-30": "Easter Monday", + "1964-04-27": "Abolition of Slavery", + "1964-04-28": "Feast of Saint Peter Chanel", + "1964-05-01": "Labor Day", + "1964-05-07": "Ascension Day", + "1964-05-18": "Whit Monday", + "1964-05-22": "Abolition of Slavery", + "1964-05-27": "Abolition of Slavery", + "1964-06-10": "Abolition of Slavery", + "1964-06-29": "Internal Autonomy Day", + "1964-07-14": "National Day", + "1964-07-21": "Feast of Victor Schoelcher", + "1964-07-29": "Festival of the Territory", + "1964-08-15": "Assumption Day", + "1964-09-24": "Citizenship Day", + "1964-10-09": "Abolition of Slavery", + "1964-11-01": "All Saints' Day", + "1964-11-11": "Armistice Day", + "1964-12-25": "Christmas Day", + "1964-12-26": "Saint Stephen's Day", + "1965-01-01": "New Year's Day", + "1965-03-05": "Missionary Day", + "1965-03-25": "Mi-Careme", + "1965-04-16": "Good Friday", + "1965-04-19": "Easter Monday", + "1965-04-27": "Abolition of Slavery", + "1965-04-28": "Feast of Saint Peter Chanel", + "1965-05-01": "Labor Day", + "1965-05-22": "Abolition of Slavery", + "1965-05-27": "Abolition of Slavery; Ascension Day", + "1965-06-07": "Whit Monday", + "1965-06-10": "Abolition of Slavery", + "1965-06-29": "Internal Autonomy Day", + "1965-07-14": "National Day", + "1965-07-21": "Feast of Victor Schoelcher", + "1965-07-29": "Festival of the Territory", + "1965-08-15": "Assumption Day", + "1965-09-24": "Citizenship Day", + "1965-10-09": "Abolition of Slavery", + "1965-11-01": "All Saints' Day", + "1965-11-11": "Armistice Day", + "1965-12-25": "Christmas Day", + "1965-12-26": "Saint Stephen's Day", + "1966-01-01": "New Year's Day", + "1966-03-05": "Missionary Day", + "1966-03-17": "Mi-Careme", + "1966-04-08": "Good Friday", + "1966-04-11": "Easter Monday", + "1966-04-27": "Abolition of Slavery", + "1966-04-28": "Feast of Saint Peter Chanel", + "1966-05-01": "Labor Day", + "1966-05-19": "Ascension Day", + "1966-05-22": "Abolition of Slavery", + "1966-05-27": "Abolition of Slavery", + "1966-05-30": "Whit Monday", + "1966-06-10": "Abolition of Slavery", + "1966-06-29": "Internal Autonomy Day", + "1966-07-14": "National Day", + "1966-07-21": "Feast of Victor Schoelcher", + "1966-07-29": "Festival of the Territory", + "1966-08-15": "Assumption Day", + "1966-09-24": "Citizenship Day", + "1966-10-09": "Abolition of Slavery", + "1966-11-01": "All Saints' Day", + "1966-11-11": "Armistice Day", + "1966-12-25": "Christmas Day", + "1966-12-26": "Saint Stephen's Day", + "1967-01-01": "New Year's Day", + "1967-03-02": "Mi-Careme", + "1967-03-05": "Missionary Day", + "1967-03-24": "Good Friday", + "1967-03-27": "Easter Monday", + "1967-04-27": "Abolition of Slavery", + "1967-04-28": "Feast of Saint Peter Chanel", + "1967-05-01": "Labor Day", + "1967-05-04": "Ascension Day", + "1967-05-15": "Whit Monday", + "1967-05-22": "Abolition of Slavery", + "1967-05-27": "Abolition of Slavery", + "1967-06-10": "Abolition of Slavery", + "1967-06-29": "Internal Autonomy Day", + "1967-07-14": "National Day", + "1967-07-21": "Feast of Victor Schoelcher", + "1967-07-29": "Festival of the Territory", + "1967-08-15": "Assumption Day", + "1967-09-24": "Citizenship Day", + "1967-10-09": "Abolition of Slavery", + "1967-11-01": "All Saints' Day", + "1967-11-11": "Armistice Day", + "1967-12-25": "Christmas Day", + "1967-12-26": "Saint Stephen's Day", + "1968-01-01": "New Year's Day", + "1968-03-05": "Missionary Day", + "1968-03-21": "Mi-Careme", + "1968-04-12": "Good Friday", + "1968-04-15": "Easter Monday", + "1968-04-27": "Abolition of Slavery", + "1968-04-28": "Feast of Saint Peter Chanel", + "1968-05-01": "Labor Day", + "1968-05-22": "Abolition of Slavery", + "1968-05-23": "Ascension Day", + "1968-05-27": "Abolition of Slavery", + "1968-06-03": "Whit Monday", + "1968-06-10": "Abolition of Slavery", + "1968-06-29": "Internal Autonomy Day", + "1968-07-14": "National Day", + "1968-07-21": "Feast of Victor Schoelcher", + "1968-07-29": "Festival of the Territory", + "1968-08-15": "Assumption Day", + "1968-09-24": "Citizenship Day", + "1968-10-09": "Abolition of Slavery", + "1968-11-01": "All Saints' Day", + "1968-11-11": "Armistice Day", + "1968-12-25": "Christmas Day", + "1968-12-26": "Saint Stephen's Day", + "1969-01-01": "New Year's Day", + "1969-03-05": "Missionary Day", + "1969-03-13": "Mi-Careme", + "1969-04-04": "Good Friday", + "1969-04-07": "Easter Monday", + "1969-04-27": "Abolition of Slavery", + "1969-04-28": "Feast of Saint Peter Chanel", + "1969-05-01": "Labor Day", + "1969-05-15": "Ascension Day", + "1969-05-22": "Abolition of Slavery", + "1969-05-26": "Whit Monday", + "1969-05-27": "Abolition of Slavery", + "1969-06-10": "Abolition of Slavery", + "1969-06-29": "Internal Autonomy Day", + "1969-07-14": "National Day", + "1969-07-21": "Feast of Victor Schoelcher", + "1969-07-29": "Festival of the Territory", + "1969-08-15": "Assumption Day", + "1969-09-24": "Citizenship Day", + "1969-10-09": "Abolition of Slavery", + "1969-11-01": "All Saints' Day", + "1969-11-11": "Armistice Day", + "1969-12-25": "Christmas Day", + "1969-12-26": "Saint Stephen's Day", + "1970-01-01": "New Year's Day", + "1970-03-05": "Mi-Careme; Missionary Day", + "1970-03-27": "Good Friday", + "1970-03-30": "Easter Monday", + "1970-04-27": "Abolition of Slavery", + "1970-04-28": "Feast of Saint Peter Chanel", + "1970-05-01": "Labor Day", + "1970-05-07": "Ascension Day", + "1970-05-18": "Whit Monday", + "1970-05-22": "Abolition of Slavery", + "1970-05-27": "Abolition of Slavery", + "1970-06-10": "Abolition of Slavery", + "1970-06-29": "Internal Autonomy Day", + "1970-07-14": "National Day", + "1970-07-21": "Feast of Victor Schoelcher", + "1970-07-29": "Festival of the Territory", + "1970-08-15": "Assumption Day", + "1970-09-24": "Citizenship Day", + "1970-10-09": "Abolition of Slavery", + "1970-11-01": "All Saints' Day", + "1970-11-11": "Armistice Day", + "1970-12-25": "Christmas Day", + "1970-12-26": "Saint Stephen's Day", + "1971-01-01": "New Year's Day", + "1971-03-05": "Missionary Day", + "1971-03-18": "Mi-Careme", + "1971-04-09": "Good Friday", + "1971-04-12": "Easter Monday", + "1971-04-27": "Abolition of Slavery", + "1971-04-28": "Feast of Saint Peter Chanel", + "1971-05-01": "Labor Day", + "1971-05-20": "Ascension Day", + "1971-05-22": "Abolition of Slavery", + "1971-05-27": "Abolition of Slavery", + "1971-05-31": "Whit Monday", + "1971-06-10": "Abolition of Slavery", + "1971-06-29": "Internal Autonomy Day", + "1971-07-14": "National Day", + "1971-07-21": "Feast of Victor Schoelcher", + "1971-07-29": "Festival of the Territory", + "1971-08-15": "Assumption Day", + "1971-09-24": "Citizenship Day", + "1971-10-09": "Abolition of Slavery", + "1971-11-01": "All Saints' Day", + "1971-11-11": "Armistice Day", + "1971-12-25": "Christmas Day", + "1971-12-26": "Saint Stephen's Day", + "1972-01-01": "New Year's Day", + "1972-03-05": "Missionary Day", + "1972-03-09": "Mi-Careme", + "1972-03-31": "Good Friday", + "1972-04-03": "Easter Monday", + "1972-04-27": "Abolition of Slavery", + "1972-04-28": "Feast of Saint Peter Chanel", + "1972-05-01": "Labor Day", + "1972-05-11": "Ascension Day", + "1972-05-22": "Abolition of Slavery; Whit Monday", + "1972-05-27": "Abolition of Slavery", + "1972-06-10": "Abolition of Slavery", + "1972-06-29": "Internal Autonomy Day", + "1972-07-14": "National Day", + "1972-07-21": "Feast of Victor Schoelcher", + "1972-07-29": "Festival of the Territory", + "1972-08-15": "Assumption Day", + "1972-09-24": "Citizenship Day", + "1972-10-09": "Abolition of Slavery", + "1972-11-01": "All Saints' Day", + "1972-11-11": "Armistice Day", + "1972-12-25": "Christmas Day", + "1972-12-26": "Saint Stephen's Day", + "1973-01-01": "New Year's Day", + "1973-03-05": "Missionary Day", + "1973-03-29": "Mi-Careme", + "1973-04-20": "Good Friday", + "1973-04-23": "Easter Monday", + "1973-04-27": "Abolition of Slavery", + "1973-04-28": "Feast of Saint Peter Chanel", + "1973-05-01": "Labor Day", + "1973-05-22": "Abolition of Slavery", + "1973-05-27": "Abolition of Slavery", + "1973-05-31": "Ascension Day", + "1973-06-10": "Abolition of Slavery", + "1973-06-11": "Whit Monday", + "1973-06-29": "Internal Autonomy Day", + "1973-07-14": "National Day", + "1973-07-21": "Feast of Victor Schoelcher", + "1973-07-29": "Festival of the Territory", + "1973-08-15": "Assumption Day", + "1973-09-24": "Citizenship Day", + "1973-10-09": "Abolition of Slavery", + "1973-11-01": "All Saints' Day", + "1973-11-11": "Armistice Day", + "1973-12-25": "Christmas Day", + "1973-12-26": "Saint Stephen's Day", + "1974-01-01": "New Year's Day", + "1974-03-05": "Missionary Day", + "1974-03-21": "Mi-Careme", + "1974-04-12": "Good Friday", + "1974-04-15": "Easter Monday", + "1974-04-27": "Abolition of Slavery", + "1974-04-28": "Feast of Saint Peter Chanel", + "1974-05-01": "Labor Day", + "1974-05-22": "Abolition of Slavery", + "1974-05-23": "Ascension Day", + "1974-05-27": "Abolition of Slavery", + "1974-06-03": "Whit Monday", + "1974-06-10": "Abolition of Slavery", + "1974-06-29": "Internal Autonomy Day", + "1974-07-14": "National Day", + "1974-07-21": "Feast of Victor Schoelcher", + "1974-07-29": "Festival of the Territory", + "1974-08-15": "Assumption Day", + "1974-09-24": "Citizenship Day", + "1974-10-09": "Abolition of Slavery", + "1974-11-01": "All Saints' Day", + "1974-11-11": "Armistice Day", + "1974-12-25": "Christmas Day", + "1974-12-26": "Saint Stephen's Day", + "1975-01-01": "New Year's Day", + "1975-03-05": "Missionary Day", + "1975-03-06": "Mi-Careme", + "1975-03-28": "Good Friday", + "1975-03-31": "Easter Monday", + "1975-04-27": "Abolition of Slavery", + "1975-04-28": "Feast of Saint Peter Chanel", + "1975-05-01": "Labor Day", + "1975-05-08": "Ascension Day", + "1975-05-19": "Whit Monday", + "1975-05-22": "Abolition of Slavery", + "1975-05-27": "Abolition of Slavery", + "1975-06-10": "Abolition of Slavery", + "1975-06-29": "Internal Autonomy Day", + "1975-07-14": "National Day", + "1975-07-21": "Feast of Victor Schoelcher", + "1975-07-29": "Festival of the Territory", + "1975-08-15": "Assumption Day", + "1975-09-24": "Citizenship Day", + "1975-10-09": "Abolition of Slavery", + "1975-11-01": "All Saints' Day", + "1975-11-11": "Armistice Day", + "1975-12-25": "Christmas Day", + "1975-12-26": "Saint Stephen's Day", + "1976-01-01": "New Year's Day", + "1976-03-05": "Missionary Day", + "1976-03-25": "Mi-Careme", + "1976-04-16": "Good Friday", + "1976-04-19": "Easter Monday", + "1976-04-27": "Abolition of Slavery", + "1976-04-28": "Feast of Saint Peter Chanel", + "1976-05-01": "Labor Day", + "1976-05-22": "Abolition of Slavery", + "1976-05-27": "Abolition of Slavery; Ascension Day", + "1976-06-07": "Whit Monday", + "1976-06-10": "Abolition of Slavery", + "1976-06-29": "Internal Autonomy Day", + "1976-07-14": "National Day", + "1976-07-21": "Feast of Victor Schoelcher", + "1976-07-29": "Festival of the Territory", + "1976-08-15": "Assumption Day", + "1976-09-24": "Citizenship Day", + "1976-10-09": "Abolition of Slavery", + "1976-11-01": "All Saints' Day", + "1976-11-11": "Armistice Day", + "1976-12-25": "Christmas Day", + "1976-12-26": "Saint Stephen's Day", + "1977-01-01": "New Year's Day", + "1977-03-05": "Missionary Day", + "1977-03-17": "Mi-Careme", + "1977-04-08": "Good Friday", + "1977-04-11": "Easter Monday", + "1977-04-27": "Abolition of Slavery", + "1977-04-28": "Feast of Saint Peter Chanel", + "1977-05-01": "Labor Day", + "1977-05-19": "Ascension Day", + "1977-05-22": "Abolition of Slavery", + "1977-05-27": "Abolition of Slavery", + "1977-05-30": "Whit Monday", + "1977-06-10": "Abolition of Slavery", + "1977-06-29": "Internal Autonomy Day", + "1977-07-14": "National Day", + "1977-07-21": "Feast of Victor Schoelcher", + "1977-07-29": "Festival of the Territory", + "1977-08-15": "Assumption Day", + "1977-09-24": "Citizenship Day", + "1977-10-09": "Abolition of Slavery", + "1977-11-01": "All Saints' Day", + "1977-11-11": "Armistice Day", + "1977-12-25": "Christmas Day", + "1977-12-26": "Saint Stephen's Day", + "1978-01-01": "New Year's Day", + "1978-03-02": "Mi-Careme", + "1978-03-05": "Missionary Day", + "1978-03-24": "Good Friday", + "1978-03-27": "Easter Monday", + "1978-04-27": "Abolition of Slavery", + "1978-04-28": "Feast of Saint Peter Chanel", + "1978-05-01": "Labor Day", + "1978-05-04": "Ascension Day", + "1978-05-15": "Whit Monday", + "1978-05-22": "Abolition of Slavery", + "1978-05-27": "Abolition of Slavery", + "1978-06-10": "Abolition of Slavery", + "1978-06-29": "Internal Autonomy Day", + "1978-07-14": "National Day", + "1978-07-21": "Feast of Victor Schoelcher", + "1978-07-29": "Festival of the Territory", + "1978-08-15": "Assumption Day", + "1978-09-24": "Citizenship Day", + "1978-10-09": "Abolition of Slavery", + "1978-11-01": "All Saints' Day", + "1978-11-11": "Armistice Day", + "1978-12-25": "Christmas Day", + "1978-12-26": "Saint Stephen's Day", + "1979-01-01": "New Year's Day", + "1979-03-05": "Missionary Day", + "1979-03-22": "Mi-Careme", + "1979-04-13": "Good Friday", + "1979-04-16": "Easter Monday", + "1979-04-27": "Abolition of Slavery", + "1979-04-28": "Feast of Saint Peter Chanel", + "1979-05-01": "Labor Day", + "1979-05-22": "Abolition of Slavery", + "1979-05-24": "Ascension Day", + "1979-05-27": "Abolition of Slavery", + "1979-06-04": "Whit Monday", + "1979-06-10": "Abolition of Slavery", + "1979-06-29": "Internal Autonomy Day", + "1979-07-14": "National Day", + "1979-07-21": "Feast of Victor Schoelcher", + "1979-07-29": "Festival of the Territory", + "1979-08-15": "Assumption Day", + "1979-09-24": "Citizenship Day", + "1979-10-09": "Abolition of Slavery", + "1979-11-01": "All Saints' Day", + "1979-11-11": "Armistice Day", + "1979-12-25": "Christmas Day", + "1979-12-26": "Saint Stephen's Day", + "1980-01-01": "New Year's Day", + "1980-03-05": "Missionary Day", + "1980-03-13": "Mi-Careme", + "1980-04-04": "Good Friday", + "1980-04-07": "Easter Monday", + "1980-04-27": "Abolition of Slavery", + "1980-04-28": "Feast of Saint Peter Chanel", + "1980-05-01": "Labor Day", + "1980-05-15": "Ascension Day", + "1980-05-22": "Abolition of Slavery", + "1980-05-26": "Whit Monday", + "1980-05-27": "Abolition of Slavery", + "1980-06-10": "Abolition of Slavery", + "1980-06-29": "Internal Autonomy Day", + "1980-07-14": "National Day", + "1980-07-21": "Feast of Victor Schoelcher", + "1980-07-29": "Festival of the Territory", + "1980-08-15": "Assumption Day", + "1980-09-24": "Citizenship Day", + "1980-10-09": "Abolition of Slavery", + "1980-11-01": "All Saints' Day", + "1980-11-11": "Armistice Day", + "1980-12-25": "Christmas Day", + "1980-12-26": "Saint Stephen's Day", + "1981-01-01": "New Year's Day", + "1981-03-05": "Missionary Day", + "1981-03-26": "Mi-Careme", + "1981-04-17": "Good Friday", + "1981-04-20": "Easter Monday", + "1981-04-27": "Abolition of Slavery", + "1981-04-28": "Feast of Saint Peter Chanel", + "1981-05-01": "Labor Day", + "1981-05-22": "Abolition of Slavery", + "1981-05-27": "Abolition of Slavery", + "1981-05-28": "Ascension Day", + "1981-06-08": "Whit Monday", + "1981-06-10": "Abolition of Slavery", + "1981-06-29": "Internal Autonomy Day", + "1981-07-14": "National Day", + "1981-07-21": "Feast of Victor Schoelcher", + "1981-07-29": "Festival of the Territory", + "1981-08-15": "Assumption Day", + "1981-09-24": "Citizenship Day", + "1981-10-09": "Abolition of Slavery", + "1981-11-01": "All Saints' Day", + "1981-11-11": "Armistice Day", + "1981-12-20": "Abolition of Slavery", + "1981-12-25": "Christmas Day", + "1981-12-26": "Saint Stephen's Day", + "1982-01-01": "New Year's Day", + "1982-03-05": "Missionary Day", + "1982-03-18": "Mi-Careme", + "1982-04-09": "Good Friday", + "1982-04-12": "Easter Monday", + "1982-04-27": "Abolition of Slavery", + "1982-04-28": "Feast of Saint Peter Chanel", + "1982-05-01": "Labor Day", + "1982-05-08": "Victory Day", + "1982-05-20": "Ascension Day", + "1982-05-22": "Abolition of Slavery", + "1982-05-27": "Abolition of Slavery", + "1982-05-31": "Whit Monday", + "1982-06-10": "Abolition of Slavery", + "1982-06-29": "Internal Autonomy Day", + "1982-07-14": "National Day", + "1982-07-21": "Feast of Victor Schoelcher", + "1982-07-29": "Festival of the Territory", + "1982-08-15": "Assumption Day", + "1982-09-24": "Citizenship Day", + "1982-10-09": "Abolition of Slavery", + "1982-11-01": "All Saints' Day", + "1982-11-11": "Armistice Day", + "1982-12-20": "Abolition of Slavery", + "1982-12-25": "Christmas Day", + "1982-12-26": "Saint Stephen's Day", + "1983-01-01": "New Year's Day", + "1983-03-05": "Missionary Day", + "1983-03-10": "Mi-Careme", + "1983-04-01": "Good Friday", + "1983-04-04": "Easter Monday", + "1983-04-27": "Abolition of Slavery", + "1983-04-28": "Feast of Saint Peter Chanel", + "1983-05-01": "Labor Day", + "1983-05-08": "Victory Day", + "1983-05-12": "Ascension Day", + "1983-05-22": "Abolition of Slavery", + "1983-05-23": "Whit Monday", + "1983-05-27": "Abolition of Slavery", + "1983-06-10": "Abolition of Slavery", + "1983-06-29": "Internal Autonomy Day", + "1983-07-14": "National Day", + "1983-07-21": "Feast of Victor Schoelcher", + "1983-07-29": "Festival of the Territory", + "1983-08-15": "Assumption Day", + "1983-09-24": "Citizenship Day", + "1983-10-09": "Abolition of Slavery", + "1983-11-01": "All Saints' Day", + "1983-11-11": "Armistice Day", + "1983-12-20": "Abolition of Slavery", + "1983-12-25": "Christmas Day", + "1983-12-26": "Saint Stephen's Day", + "1984-01-01": "New Year's Day", + "1984-03-05": "Missionary Day", + "1984-03-29": "Mi-Careme", + "1984-04-20": "Good Friday", + "1984-04-23": "Easter Monday", + "1984-04-27": "Abolition of Slavery", + "1984-04-28": "Feast of Saint Peter Chanel", + "1984-05-01": "Labor Day", + "1984-05-08": "Victory Day", + "1984-05-22": "Abolition of Slavery", + "1984-05-27": "Abolition of Slavery", + "1984-05-31": "Ascension Day", + "1984-06-10": "Abolition of Slavery", + "1984-06-11": "Whit Monday", + "1984-06-29": "Internal Autonomy Day", + "1984-07-14": "National Day", + "1984-07-21": "Feast of Victor Schoelcher", + "1984-07-29": "Festival of the Territory", + "1984-08-15": "Assumption Day", + "1984-09-24": "Citizenship Day", + "1984-10-09": "Abolition of Slavery", + "1984-11-01": "All Saints' Day", + "1984-11-11": "Armistice Day", + "1984-12-20": "Abolition of Slavery", + "1984-12-25": "Christmas Day", + "1984-12-26": "Saint Stephen's Day", + "1985-01-01": "New Year's Day", + "1985-03-05": "Missionary Day", + "1985-03-14": "Mi-Careme", + "1985-04-05": "Good Friday", + "1985-04-08": "Easter Monday", + "1985-04-27": "Abolition of Slavery", + "1985-04-28": "Feast of Saint Peter Chanel", + "1985-05-01": "Labor Day", + "1985-05-08": "Victory Day", + "1985-05-16": "Ascension Day", + "1985-05-22": "Abolition of Slavery", + "1985-05-27": "Abolition of Slavery; Whit Monday", + "1985-06-10": "Abolition of Slavery", + "1985-06-29": "Internal Autonomy Day", + "1985-07-14": "National Day", + "1985-07-21": "Feast of Victor Schoelcher", + "1985-07-29": "Festival of the Territory", + "1985-08-15": "Assumption Day", + "1985-09-24": "Citizenship Day", + "1985-10-09": "Abolition of Slavery", + "1985-11-01": "All Saints' Day", + "1985-11-11": "Armistice Day", + "1985-12-20": "Abolition of Slavery", + "1985-12-25": "Christmas Day", + "1985-12-26": "Saint Stephen's Day", + "1986-01-01": "New Year's Day", + "1986-03-05": "Missionary Day", + "1986-03-06": "Mi-Careme", + "1986-03-28": "Good Friday", + "1986-03-31": "Easter Monday", + "1986-04-27": "Abolition of Slavery", + "1986-04-28": "Feast of Saint Peter Chanel", + "1986-05-01": "Labor Day", + "1986-05-08": "Ascension Day; Victory Day", + "1986-05-19": "Whit Monday", + "1986-05-22": "Abolition of Slavery", + "1986-05-27": "Abolition of Slavery", + "1986-06-10": "Abolition of Slavery", + "1986-06-29": "Internal Autonomy Day", + "1986-07-14": "National Day", + "1986-07-21": "Feast of Victor Schoelcher", + "1986-07-29": "Festival of the Territory", + "1986-08-15": "Assumption Day", + "1986-09-24": "Citizenship Day", + "1986-10-09": "Abolition of Slavery", + "1986-11-01": "All Saints' Day", + "1986-11-11": "Armistice Day", + "1986-12-20": "Abolition of Slavery", + "1986-12-25": "Christmas Day", + "1986-12-26": "Saint Stephen's Day", + "1987-01-01": "New Year's Day", + "1987-03-05": "Missionary Day", + "1987-03-26": "Mi-Careme", + "1987-04-17": "Good Friday", + "1987-04-20": "Easter Monday", + "1987-04-27": "Abolition of Slavery", + "1987-04-28": "Feast of Saint Peter Chanel", + "1987-05-01": "Labor Day", + "1987-05-08": "Victory Day", + "1987-05-22": "Abolition of Slavery", + "1987-05-27": "Abolition of Slavery", + "1987-05-28": "Ascension Day", + "1987-06-08": "Whit Monday", + "1987-06-10": "Abolition of Slavery", + "1987-06-29": "Internal Autonomy Day", + "1987-07-14": "National Day", + "1987-07-21": "Feast of Victor Schoelcher", + "1987-07-29": "Festival of the Territory", + "1987-08-15": "Assumption Day", + "1987-09-24": "Citizenship Day", + "1987-10-09": "Abolition of Slavery", + "1987-11-01": "All Saints' Day", + "1987-11-11": "Armistice Day", + "1987-12-20": "Abolition of Slavery", + "1987-12-25": "Christmas Day", + "1987-12-26": "Saint Stephen's Day", + "1988-01-01": "New Year's Day", + "1988-03-05": "Missionary Day", + "1988-03-10": "Mi-Careme", + "1988-04-01": "Good Friday", + "1988-04-04": "Easter Monday", + "1988-04-27": "Abolition of Slavery", + "1988-04-28": "Feast of Saint Peter Chanel", + "1988-05-01": "Labor Day", + "1988-05-08": "Victory Day", + "1988-05-12": "Ascension Day", + "1988-05-22": "Abolition of Slavery", + "1988-05-23": "Whit Monday", + "1988-05-27": "Abolition of Slavery", + "1988-06-10": "Abolition of Slavery", + "1988-06-29": "Internal Autonomy Day", + "1988-07-14": "National Day", + "1988-07-21": "Feast of Victor Schoelcher", + "1988-07-29": "Festival of the Territory", + "1988-08-15": "Assumption Day", + "1988-09-24": "Citizenship Day", + "1988-10-09": "Abolition of Slavery", + "1988-11-01": "All Saints' Day", + "1988-11-11": "Armistice Day", + "1988-12-20": "Abolition of Slavery", + "1988-12-25": "Christmas Day", + "1988-12-26": "Saint Stephen's Day", + "1989-01-01": "New Year's Day", + "1989-03-02": "Mi-Careme", + "1989-03-05": "Missionary Day", + "1989-03-24": "Good Friday", + "1989-03-27": "Easter Monday", + "1989-04-27": "Abolition of Slavery", + "1989-04-28": "Feast of Saint Peter Chanel", + "1989-05-01": "Labor Day", + "1989-05-04": "Ascension Day", + "1989-05-08": "Victory Day", + "1989-05-15": "Whit Monday", + "1989-05-22": "Abolition of Slavery", + "1989-05-27": "Abolition of Slavery", + "1989-06-10": "Abolition of Slavery", + "1989-06-29": "Internal Autonomy Day", + "1989-07-14": "National Day", + "1989-07-21": "Feast of Victor Schoelcher", + "1989-07-29": "Festival of the Territory", + "1989-08-15": "Assumption Day", + "1989-09-24": "Citizenship Day", + "1989-10-09": "Abolition of Slavery", + "1989-11-01": "All Saints' Day", + "1989-11-11": "Armistice Day", + "1989-12-20": "Abolition of Slavery", + "1989-12-25": "Christmas Day", + "1989-12-26": "Saint Stephen's Day", + "1990-01-01": "New Year's Day", + "1990-03-05": "Missionary Day", + "1990-03-22": "Mi-Careme", + "1990-04-13": "Good Friday", + "1990-04-16": "Easter Monday", + "1990-04-27": "Abolition of Slavery", + "1990-04-28": "Feast of Saint Peter Chanel", + "1990-05-01": "Labor Day", + "1990-05-08": "Victory Day", + "1990-05-22": "Abolition of Slavery", + "1990-05-24": "Ascension Day", + "1990-05-27": "Abolition of Slavery", + "1990-06-04": "Whit Monday", + "1990-06-10": "Abolition of Slavery", + "1990-06-29": "Internal Autonomy Day", + "1990-07-14": "National Day", + "1990-07-21": "Feast of Victor Schoelcher", + "1990-07-29": "Festival of the Territory", + "1990-08-15": "Assumption Day", + "1990-09-24": "Citizenship Day", + "1990-10-09": "Abolition of Slavery", + "1990-11-01": "All Saints' Day", + "1990-11-11": "Armistice Day", + "1990-12-20": "Abolition of Slavery", + "1990-12-25": "Christmas Day", + "1990-12-26": "Saint Stephen's Day", + "1991-01-01": "New Year's Day", + "1991-03-05": "Missionary Day", + "1991-03-07": "Mi-Careme", + "1991-03-29": "Good Friday", + "1991-04-01": "Easter Monday", + "1991-04-27": "Abolition of Slavery", + "1991-04-28": "Feast of Saint Peter Chanel", + "1991-05-01": "Labor Day", + "1991-05-08": "Victory Day", + "1991-05-09": "Ascension Day", + "1991-05-20": "Whit Monday", + "1991-05-22": "Abolition of Slavery", + "1991-05-27": "Abolition of Slavery", + "1991-06-10": "Abolition of Slavery", + "1991-06-29": "Internal Autonomy Day", + "1991-07-14": "National Day", + "1991-07-21": "Feast of Victor Schoelcher", + "1991-07-29": "Festival of the Territory", + "1991-08-15": "Assumption Day", + "1991-09-24": "Citizenship Day", + "1991-10-09": "Abolition of Slavery", + "1991-11-01": "All Saints' Day", + "1991-11-11": "Armistice Day", + "1991-12-20": "Abolition of Slavery", + "1991-12-25": "Christmas Day", + "1991-12-26": "Saint Stephen's Day", + "1992-01-01": "New Year's Day", + "1992-03-05": "Missionary Day", + "1992-03-26": "Mi-Careme", + "1992-04-17": "Good Friday", + "1992-04-20": "Easter Monday", + "1992-04-27": "Abolition of Slavery", + "1992-04-28": "Feast of Saint Peter Chanel", + "1992-05-01": "Labor Day", + "1992-05-08": "Victory Day", + "1992-05-22": "Abolition of Slavery", + "1992-05-27": "Abolition of Slavery", + "1992-05-28": "Ascension Day", + "1992-06-08": "Whit Monday", + "1992-06-10": "Abolition of Slavery", + "1992-06-29": "Internal Autonomy Day", + "1992-07-14": "National Day", + "1992-07-21": "Feast of Victor Schoelcher", + "1992-07-29": "Festival of the Territory", + "1992-08-15": "Assumption Day", + "1992-09-24": "Citizenship Day", + "1992-10-09": "Abolition of Slavery", + "1992-11-01": "All Saints' Day", + "1992-11-11": "Armistice Day", + "1992-12-20": "Abolition of Slavery", + "1992-12-25": "Christmas Day", + "1992-12-26": "Saint Stephen's Day", + "1993-01-01": "New Year's Day", + "1993-03-05": "Missionary Day", + "1993-03-18": "Mi-Careme", + "1993-04-09": "Good Friday", + "1993-04-12": "Easter Monday", + "1993-04-27": "Abolition of Slavery", + "1993-04-28": "Feast of Saint Peter Chanel", + "1993-05-01": "Labor Day", + "1993-05-08": "Victory Day", + "1993-05-20": "Ascension Day", + "1993-05-22": "Abolition of Slavery", + "1993-05-27": "Abolition of Slavery", + "1993-05-31": "Whit Monday", + "1993-06-10": "Abolition of Slavery", + "1993-06-29": "Internal Autonomy Day", + "1993-07-14": "National Day", + "1993-07-21": "Feast of Victor Schoelcher", + "1993-07-29": "Festival of the Territory", + "1993-08-15": "Assumption Day", + "1993-09-24": "Citizenship Day", + "1993-10-09": "Abolition of Slavery", + "1993-11-01": "All Saints' Day", + "1993-11-11": "Armistice Day", + "1993-12-20": "Abolition of Slavery", + "1993-12-25": "Christmas Day", + "1993-12-26": "Saint Stephen's Day", + "1994-01-01": "New Year's Day", + "1994-03-05": "Missionary Day", + "1994-03-10": "Mi-Careme", + "1994-04-01": "Good Friday", + "1994-04-04": "Easter Monday", + "1994-04-27": "Abolition of Slavery", + "1994-04-28": "Feast of Saint Peter Chanel", + "1994-05-01": "Labor Day", + "1994-05-08": "Victory Day", + "1994-05-12": "Ascension Day", + "1994-05-22": "Abolition of Slavery", + "1994-05-23": "Whit Monday", + "1994-05-27": "Abolition of Slavery", + "1994-06-10": "Abolition of Slavery", + "1994-06-29": "Internal Autonomy Day", + "1994-07-14": "National Day", + "1994-07-21": "Feast of Victor Schoelcher", + "1994-07-29": "Festival of the Territory", + "1994-08-15": "Assumption Day", + "1994-09-24": "Citizenship Day", + "1994-10-09": "Abolition of Slavery", + "1994-11-01": "All Saints' Day", + "1994-11-11": "Armistice Day", + "1994-12-20": "Abolition of Slavery", + "1994-12-25": "Christmas Day", + "1994-12-26": "Saint Stephen's Day", + "1995-01-01": "New Year's Day", + "1995-03-05": "Missionary Day", + "1995-03-23": "Mi-Careme", + "1995-04-14": "Good Friday", + "1995-04-17": "Easter Monday", + "1995-04-27": "Abolition of Slavery", + "1995-04-28": "Feast of Saint Peter Chanel", + "1995-05-01": "Labor Day", + "1995-05-08": "Victory Day", + "1995-05-22": "Abolition of Slavery", + "1995-05-25": "Ascension Day", + "1995-05-27": "Abolition of Slavery", + "1995-06-05": "Whit Monday", + "1995-06-10": "Abolition of Slavery", + "1995-06-29": "Internal Autonomy Day", + "1995-07-14": "National Day", + "1995-07-21": "Feast of Victor Schoelcher", + "1995-07-29": "Festival of the Territory", + "1995-08-15": "Assumption Day", + "1995-09-24": "Citizenship Day", + "1995-10-09": "Abolition of Slavery", + "1995-11-01": "All Saints' Day", + "1995-11-11": "Armistice Day", + "1995-12-20": "Abolition of Slavery", + "1995-12-25": "Christmas Day", + "1995-12-26": "Saint Stephen's Day", + "1996-01-01": "New Year's Day", + "1996-03-05": "Missionary Day", + "1996-03-14": "Mi-Careme", + "1996-04-05": "Good Friday", + "1996-04-08": "Easter Monday", + "1996-04-27": "Abolition of Slavery", + "1996-04-28": "Feast of Saint Peter Chanel", + "1996-05-01": "Labor Day", + "1996-05-08": "Victory Day", + "1996-05-16": "Ascension Day", + "1996-05-22": "Abolition of Slavery", + "1996-05-27": "Abolition of Slavery; Whit Monday", + "1996-06-10": "Abolition of Slavery", + "1996-06-29": "Internal Autonomy Day", + "1996-07-14": "National Day", + "1996-07-21": "Feast of Victor Schoelcher", + "1996-07-29": "Festival of the Territory", + "1996-08-15": "Assumption Day", + "1996-09-24": "Citizenship Day", + "1996-10-09": "Abolition of Slavery", + "1996-11-01": "All Saints' Day", + "1996-11-11": "Armistice Day", + "1996-12-20": "Abolition of Slavery", + "1996-12-25": "Christmas Day", + "1996-12-26": "Saint Stephen's Day", + "1997-01-01": "New Year's Day", + "1997-03-05": "Missionary Day", + "1997-03-06": "Mi-Careme", + "1997-03-28": "Good Friday", + "1997-03-31": "Easter Monday", + "1997-04-27": "Abolition of Slavery", + "1997-04-28": "Feast of Saint Peter Chanel", + "1997-05-01": "Labor Day", + "1997-05-08": "Ascension Day; Victory Day", + "1997-05-19": "Whit Monday", + "1997-05-22": "Abolition of Slavery", + "1997-05-27": "Abolition of Slavery", + "1997-06-10": "Abolition of Slavery", + "1997-06-29": "Internal Autonomy Day", + "1997-07-14": "National Day", + "1997-07-21": "Feast of Victor Schoelcher", + "1997-07-29": "Festival of the Territory", + "1997-08-15": "Assumption Day", + "1997-09-24": "Citizenship Day", + "1997-10-09": "Abolition of Slavery", + "1997-11-01": "All Saints' Day", + "1997-11-11": "Armistice Day", + "1997-12-20": "Abolition of Slavery", + "1997-12-25": "Christmas Day", + "1997-12-26": "Saint Stephen's Day", + "1998-01-01": "New Year's Day", + "1998-03-05": "Missionary Day", + "1998-03-19": "Mi-Careme", + "1998-04-10": "Good Friday", + "1998-04-13": "Easter Monday", + "1998-04-27": "Abolition of Slavery", + "1998-04-28": "Feast of Saint Peter Chanel", + "1998-05-01": "Labor Day", + "1998-05-08": "Victory Day", + "1998-05-21": "Ascension Day", + "1998-05-22": "Abolition of Slavery", + "1998-05-27": "Abolition of Slavery", + "1998-06-01": "Whit Monday", + "1998-06-10": "Abolition of Slavery", + "1998-06-29": "Internal Autonomy Day", + "1998-07-14": "National Day", + "1998-07-21": "Feast of Victor Schoelcher", + "1998-07-29": "Festival of the Territory", + "1998-08-15": "Assumption Day", + "1998-09-24": "Citizenship Day", + "1998-10-09": "Abolition of Slavery", + "1998-11-01": "All Saints' Day", + "1998-11-11": "Armistice Day", + "1998-12-20": "Abolition of Slavery", + "1998-12-25": "Christmas Day", + "1998-12-26": "Saint Stephen's Day", + "1999-01-01": "New Year's Day", + "1999-03-05": "Missionary Day", + "1999-03-11": "Mi-Careme", + "1999-04-02": "Good Friday", + "1999-04-05": "Easter Monday", + "1999-04-27": "Abolition of Slavery", + "1999-04-28": "Feast of Saint Peter Chanel", + "1999-05-01": "Labor Day", + "1999-05-08": "Victory Day", + "1999-05-13": "Ascension Day", + "1999-05-22": "Abolition of Slavery", + "1999-05-24": "Whit Monday", + "1999-05-27": "Abolition of Slavery", + "1999-06-10": "Abolition of Slavery", + "1999-06-29": "Internal Autonomy Day", + "1999-07-14": "National Day", + "1999-07-21": "Feast of Victor Schoelcher", + "1999-07-29": "Festival of the Territory", + "1999-08-15": "Assumption Day", + "1999-09-24": "Citizenship Day", + "1999-10-09": "Abolition of Slavery", + "1999-11-01": "All Saints' Day", + "1999-11-11": "Armistice Day", + "1999-12-20": "Abolition of Slavery", + "1999-12-25": "Christmas Day", + "1999-12-26": "Saint Stephen's Day", + "2000-01-01": "New Year's Day", + "2000-03-05": "Missionary Day", + "2000-03-30": "Mi-Careme", + "2000-04-21": "Good Friday", + "2000-04-24": "Easter Monday", + "2000-04-27": "Abolition of Slavery", + "2000-04-28": "Feast of Saint Peter Chanel", + "2000-05-01": "Labor Day", + "2000-05-08": "Victory Day", + "2000-05-22": "Abolition of Slavery", + "2000-05-27": "Abolition of Slavery", + "2000-06-01": "Ascension Day", + "2000-06-10": "Abolition of Slavery", + "2000-06-12": "Whit Monday", + "2000-06-29": "Internal Autonomy Day", + "2000-07-14": "National Day", + "2000-07-21": "Feast of Victor Schoelcher", + "2000-07-29": "Festival of the Territory", + "2000-08-15": "Assumption Day", + "2000-09-24": "Citizenship Day", + "2000-10-09": "Abolition of Slavery", + "2000-11-01": "All Saints' Day", + "2000-11-11": "Armistice Day", + "2000-12-20": "Abolition of Slavery", + "2000-12-25": "Christmas Day", + "2000-12-26": "Saint Stephen's Day", + "2001-01-01": "New Year's Day", + "2001-03-05": "Missionary Day", + "2001-03-22": "Mi-Careme", + "2001-04-13": "Good Friday", + "2001-04-16": "Easter Monday", + "2001-04-27": "Abolition of Slavery", + "2001-04-28": "Feast of Saint Peter Chanel", + "2001-05-01": "Labor Day", + "2001-05-08": "Victory Day", + "2001-05-22": "Abolition of Slavery", + "2001-05-24": "Ascension Day", + "2001-05-27": "Abolition of Slavery", + "2001-06-04": "Whit Monday", + "2001-06-10": "Abolition of Slavery", + "2001-06-29": "Internal Autonomy Day", + "2001-07-14": "National Day", + "2001-07-21": "Feast of Victor Schoelcher", + "2001-07-29": "Festival of the Territory", + "2001-08-15": "Assumption Day", + "2001-09-24": "Citizenship Day", + "2001-10-09": "Abolition of Slavery", + "2001-11-01": "All Saints' Day", + "2001-11-11": "Armistice Day", + "2001-12-20": "Abolition of Slavery", + "2001-12-25": "Christmas Day", + "2001-12-26": "Saint Stephen's Day", + "2002-01-01": "New Year's Day", + "2002-03-05": "Missionary Day", + "2002-03-07": "Mi-Careme", + "2002-03-29": "Good Friday", + "2002-04-01": "Easter Monday", + "2002-04-27": "Abolition of Slavery", + "2002-04-28": "Feast of Saint Peter Chanel", + "2002-05-01": "Labor Day", + "2002-05-08": "Victory Day", + "2002-05-09": "Ascension Day", + "2002-05-20": "Whit Monday", + "2002-05-22": "Abolition of Slavery", + "2002-05-27": "Abolition of Slavery", + "2002-06-10": "Abolition of Slavery", + "2002-06-29": "Internal Autonomy Day", + "2002-07-14": "National Day", + "2002-07-21": "Feast of Victor Schoelcher", + "2002-07-29": "Festival of the Territory", + "2002-08-15": "Assumption Day", + "2002-09-24": "Citizenship Day", + "2002-10-09": "Abolition of Slavery", + "2002-11-01": "All Saints' Day", + "2002-11-11": "Armistice Day", + "2002-12-20": "Abolition of Slavery", + "2002-12-25": "Christmas Day", + "2002-12-26": "Saint Stephen's Day", + "2003-01-01": "New Year's Day", + "2003-03-05": "Missionary Day", + "2003-03-27": "Mi-Careme", + "2003-04-18": "Good Friday", + "2003-04-21": "Easter Monday", + "2003-04-27": "Abolition of Slavery", + "2003-04-28": "Feast of Saint Peter Chanel", + "2003-05-01": "Labor Day", + "2003-05-08": "Victory Day", + "2003-05-22": "Abolition of Slavery", + "2003-05-27": "Abolition of Slavery", + "2003-05-29": "Ascension Day", + "2003-06-09": "Whit Monday", + "2003-06-10": "Abolition of Slavery", + "2003-06-29": "Internal Autonomy Day", + "2003-07-14": "National Day", + "2003-07-21": "Feast of Victor Schoelcher", + "2003-07-29": "Festival of the Territory", + "2003-08-15": "Assumption Day", + "2003-09-24": "Citizenship Day", + "2003-10-09": "Abolition of Slavery", + "2003-11-01": "All Saints' Day", + "2003-11-11": "Armistice Day", + "2003-12-20": "Abolition of Slavery", + "2003-12-25": "Christmas Day", + "2003-12-26": "Saint Stephen's Day", + "2004-01-01": "New Year's Day", + "2004-03-05": "Missionary Day", + "2004-03-18": "Mi-Careme", + "2004-04-09": "Good Friday", + "2004-04-12": "Easter Monday", + "2004-04-27": "Abolition of Slavery", + "2004-04-28": "Feast of Saint Peter Chanel", + "2004-05-01": "Labor Day", + "2004-05-08": "Victory Day", + "2004-05-20": "Ascension Day", + "2004-05-22": "Abolition of Slavery", + "2004-05-27": "Abolition of Slavery", + "2004-05-31": "Whit Monday", + "2004-06-10": "Abolition of Slavery", + "2004-06-29": "Internal Autonomy Day", + "2004-07-14": "National Day", + "2004-07-21": "Feast of Victor Schoelcher", + "2004-07-29": "Festival of the Territory", + "2004-08-15": "Assumption Day", + "2004-09-24": "Citizenship Day", + "2004-10-09": "Abolition of Slavery", + "2004-11-01": "All Saints' Day", + "2004-11-11": "Armistice Day", + "2004-12-20": "Abolition of Slavery", + "2004-12-25": "Christmas Day", + "2004-12-26": "Saint Stephen's Day", + "2005-01-01": "New Year's Day", + "2005-03-03": "Mi-Careme", + "2005-03-05": "Missionary Day", + "2005-03-25": "Good Friday", + "2005-03-28": "Easter Monday", + "2005-04-27": "Abolition of Slavery", + "2005-04-28": "Feast of Saint Peter Chanel", + "2005-05-01": "Labor Day", + "2005-05-05": "Ascension Day", + "2005-05-08": "Victory Day", + "2005-05-22": "Abolition of Slavery", + "2005-05-27": "Abolition of Slavery", + "2005-06-10": "Abolition of Slavery", + "2005-06-29": "Internal Autonomy Day", + "2005-07-14": "National Day", + "2005-07-21": "Feast of Victor Schoelcher", + "2005-07-29": "Festival of the Territory", + "2005-08-15": "Assumption Day", + "2005-09-24": "Citizenship Day", + "2005-10-09": "Abolition of Slavery", + "2005-11-01": "All Saints' Day", + "2005-11-11": "Armistice Day", + "2005-12-20": "Abolition of Slavery", + "2005-12-25": "Christmas Day", + "2005-12-26": "Saint Stephen's Day", + "2006-01-01": "New Year's Day", + "2006-03-05": "Missionary Day", + "2006-03-23": "Mi-Careme", + "2006-04-14": "Good Friday", + "2006-04-17": "Easter Monday", + "2006-04-27": "Abolition of Slavery", + "2006-04-28": "Feast of Saint Peter Chanel", + "2006-05-01": "Labor Day", + "2006-05-08": "Victory Day", + "2006-05-22": "Abolition of Slavery", + "2006-05-25": "Ascension Day", + "2006-05-27": "Abolition of Slavery", + "2006-06-10": "Abolition of Slavery", + "2006-06-29": "Internal Autonomy Day", + "2006-07-14": "National Day", + "2006-07-21": "Feast of Victor Schoelcher", + "2006-07-29": "Festival of the Territory", + "2006-08-15": "Assumption Day", + "2006-09-24": "Citizenship Day", + "2006-10-09": "Abolition of Slavery", + "2006-11-01": "All Saints' Day", + "2006-11-11": "Armistice Day", + "2006-12-20": "Abolition of Slavery", + "2006-12-25": "Christmas Day", + "2006-12-26": "Saint Stephen's Day", + "2007-01-01": "New Year's Day", + "2007-03-05": "Missionary Day", + "2007-03-15": "Mi-Careme", + "2007-04-06": "Good Friday", + "2007-04-09": "Easter Monday", + "2007-04-27": "Abolition of Slavery", + "2007-04-28": "Feast of Saint Peter Chanel", + "2007-05-01": "Labor Day", + "2007-05-08": "Victory Day", + "2007-05-17": "Ascension Day", + "2007-05-22": "Abolition of Slavery", + "2007-05-27": "Abolition of Slavery", + "2007-06-10": "Abolition of Slavery", + "2007-06-29": "Internal Autonomy Day", + "2007-07-14": "National Day", + "2007-07-21": "Feast of Victor Schoelcher", + "2007-07-29": "Festival of the Territory", + "2007-08-15": "Assumption Day", + "2007-09-24": "Citizenship Day", + "2007-10-09": "Abolition of Slavery", + "2007-11-01": "All Saints' Day", + "2007-11-11": "Armistice Day", + "2007-12-20": "Abolition of Slavery", + "2007-12-25": "Christmas Day", + "2007-12-26": "Saint Stephen's Day", + "2008-01-01": "New Year's Day", + "2008-02-28": "Mi-Careme", + "2008-03-05": "Missionary Day", + "2008-03-21": "Good Friday", + "2008-03-24": "Easter Monday", + "2008-04-27": "Abolition of Slavery", + "2008-04-28": "Feast of Saint Peter Chanel", + "2008-05-01": "Ascension Day; Labor Day", + "2008-05-08": "Victory Day", + "2008-05-12": "Whit Monday", + "2008-05-22": "Abolition of Slavery", + "2008-05-27": "Abolition of Slavery", + "2008-06-10": "Abolition of Slavery", + "2008-06-29": "Internal Autonomy Day", + "2008-07-14": "National Day", + "2008-07-21": "Feast of Victor Schoelcher", + "2008-07-29": "Festival of the Territory", + "2008-08-15": "Assumption Day", + "2008-09-24": "Citizenship Day", + "2008-10-09": "Abolition of Slavery", + "2008-11-01": "All Saints' Day", + "2008-11-11": "Armistice Day", + "2008-12-20": "Abolition of Slavery", + "2008-12-25": "Christmas Day", + "2008-12-26": "Saint Stephen's Day", + "2009-01-01": "New Year's Day", + "2009-03-05": "Missionary Day", + "2009-03-19": "Mi-Careme", + "2009-04-10": "Good Friday", + "2009-04-13": "Easter Monday", + "2009-04-27": "Abolition of Slavery", + "2009-04-28": "Feast of Saint Peter Chanel", + "2009-05-01": "Labor Day", + "2009-05-08": "Victory Day", + "2009-05-21": "Ascension Day", + "2009-05-22": "Abolition of Slavery", + "2009-05-27": "Abolition of Slavery", + "2009-06-01": "Whit Monday", + "2009-06-10": "Abolition of Slavery", + "2009-06-29": "Internal Autonomy Day", + "2009-07-14": "National Day", + "2009-07-21": "Feast of Victor Schoelcher", + "2009-07-29": "Festival of the Territory", + "2009-08-15": "Assumption Day", + "2009-09-24": "Citizenship Day", + "2009-10-09": "Abolition of Slavery", + "2009-11-01": "All Saints' Day", + "2009-11-11": "Armistice Day", + "2009-12-20": "Abolition of Slavery", + "2009-12-25": "Christmas Day", + "2009-12-26": "Saint Stephen's Day", + "2010-01-01": "New Year's Day", + "2010-03-05": "Missionary Day", + "2010-03-11": "Mi-Careme", + "2010-04-02": "Good Friday", + "2010-04-05": "Easter Monday", + "2010-04-27": "Abolition of Slavery", + "2010-04-28": "Feast of Saint Peter Chanel", + "2010-05-01": "Labor Day", + "2010-05-08": "Victory Day", + "2010-05-13": "Ascension Day", + "2010-05-22": "Abolition of Slavery", + "2010-05-24": "Whit Monday", + "2010-05-27": "Abolition of Slavery", + "2010-06-10": "Abolition of Slavery", + "2010-06-29": "Internal Autonomy Day", + "2010-07-14": "National Day", + "2010-07-21": "Feast of Victor Schoelcher", + "2010-07-29": "Festival of the Territory", + "2010-08-15": "Assumption Day", + "2010-09-24": "Citizenship Day", + "2010-10-09": "Abolition of Slavery", + "2010-11-01": "All Saints' Day", + "2010-11-11": "Armistice Day", + "2010-12-20": "Abolition of Slavery", + "2010-12-25": "Christmas Day", + "2010-12-26": "Saint Stephen's Day", + "2011-01-01": "New Year's Day", + "2011-03-05": "Missionary Day", + "2011-03-31": "Mi-Careme", + "2011-04-22": "Good Friday", + "2011-04-25": "Easter Monday", + "2011-04-27": "Abolition of Slavery", + "2011-04-28": "Feast of Saint Peter Chanel", + "2011-05-01": "Labor Day", + "2011-05-08": "Victory Day", + "2011-05-22": "Abolition of Slavery", + "2011-05-27": "Abolition of Slavery", + "2011-06-02": "Ascension Day", + "2011-06-10": "Abolition of Slavery", + "2011-06-13": "Whit Monday", + "2011-06-29": "Internal Autonomy Day", + "2011-07-14": "National Day", + "2011-07-21": "Feast of Victor Schoelcher", + "2011-07-29": "Festival of the Territory", + "2011-08-15": "Assumption Day", + "2011-09-24": "Citizenship Day", + "2011-10-09": "Abolition of Slavery", + "2011-11-01": "All Saints' Day", + "2011-11-11": "Armistice Day", + "2011-12-20": "Abolition of Slavery", + "2011-12-25": "Christmas Day", + "2011-12-26": "Saint Stephen's Day", + "2012-01-01": "New Year's Day", + "2012-03-05": "Missionary Day", + "2012-03-15": "Mi-Careme", + "2012-04-06": "Good Friday", + "2012-04-09": "Easter Monday", + "2012-04-27": "Abolition of Slavery", + "2012-04-28": "Feast of Saint Peter Chanel", + "2012-05-01": "Labor Day", + "2012-05-08": "Victory Day", + "2012-05-17": "Ascension Day", + "2012-05-22": "Abolition of Slavery", + "2012-05-27": "Abolition of Slavery", + "2012-05-28": "Whit Monday", + "2012-06-10": "Abolition of Slavery", + "2012-06-29": "Internal Autonomy Day", + "2012-07-14": "National Day", + "2012-07-21": "Feast of Victor Schoelcher", + "2012-07-29": "Festival of the Territory", + "2012-08-15": "Assumption Day", + "2012-09-24": "Citizenship Day", + "2012-10-09": "Abolition of Slavery", + "2012-11-01": "All Saints' Day", + "2012-11-11": "Armistice Day", + "2012-12-20": "Abolition of Slavery", + "2012-12-25": "Christmas Day", + "2012-12-26": "Saint Stephen's Day", + "2013-01-01": "New Year's Day", + "2013-03-05": "Missionary Day", + "2013-03-07": "Mi-Careme", + "2013-03-29": "Good Friday", + "2013-04-01": "Easter Monday", + "2013-04-27": "Abolition of Slavery", + "2013-04-28": "Feast of Saint Peter Chanel", + "2013-05-01": "Labor Day", + "2013-05-08": "Victory Day", + "2013-05-09": "Ascension Day", + "2013-05-20": "Whit Monday", + "2013-05-22": "Abolition of Slavery", + "2013-05-27": "Abolition of Slavery", + "2013-06-10": "Abolition of Slavery", + "2013-06-29": "Internal Autonomy Day", + "2013-07-14": "National Day", + "2013-07-21": "Feast of Victor Schoelcher", + "2013-07-29": "Festival of the Territory", + "2013-08-15": "Assumption Day", + "2013-09-24": "Citizenship Day", + "2013-10-09": "Abolition of Slavery", + "2013-11-01": "All Saints' Day", + "2013-11-11": "Armistice Day", + "2013-12-20": "Abolition of Slavery", + "2013-12-25": "Christmas Day", + "2013-12-26": "Saint Stephen's Day", + "2014-01-01": "New Year's Day", + "2014-03-05": "Missionary Day", + "2014-03-27": "Mi-Careme", + "2014-04-18": "Good Friday", + "2014-04-21": "Easter Monday", + "2014-04-27": "Abolition of Slavery", + "2014-04-28": "Feast of Saint Peter Chanel", + "2014-05-01": "Labor Day", + "2014-05-08": "Victory Day", + "2014-05-22": "Abolition of Slavery", + "2014-05-27": "Abolition of Slavery", + "2014-05-29": "Ascension Day", + "2014-06-09": "Whit Monday", + "2014-06-10": "Abolition of Slavery", + "2014-06-29": "Internal Autonomy Day", + "2014-07-14": "National Day", + "2014-07-21": "Feast of Victor Schoelcher", + "2014-07-29": "Festival of the Territory", + "2014-08-15": "Assumption Day", + "2014-09-24": "Citizenship Day", + "2014-10-09": "Abolition of Slavery", + "2014-11-01": "All Saints' Day", + "2014-11-11": "Armistice Day", + "2014-12-20": "Abolition of Slavery", + "2014-12-25": "Christmas Day", + "2014-12-26": "Saint Stephen's Day", + "2015-01-01": "New Year's Day", + "2015-03-05": "Missionary Day", + "2015-03-12": "Mi-Careme", + "2015-04-03": "Good Friday", + "2015-04-06": "Easter Monday", + "2015-04-27": "Abolition of Slavery", + "2015-04-28": "Feast of Saint Peter Chanel", + "2015-05-01": "Labor Day", + "2015-05-08": "Victory Day", + "2015-05-14": "Ascension Day", + "2015-05-22": "Abolition of Slavery", + "2015-05-25": "Whit Monday", + "2015-05-27": "Abolition of Slavery", + "2015-06-10": "Abolition of Slavery", + "2015-06-29": "Internal Autonomy Day", + "2015-07-14": "National Day", + "2015-07-21": "Feast of Victor Schoelcher", + "2015-07-29": "Festival of the Territory", + "2015-08-15": "Assumption Day", + "2015-09-24": "Citizenship Day", + "2015-10-09": "Abolition of Slavery", + "2015-11-01": "All Saints' Day", + "2015-11-11": "Armistice Day", + "2015-12-20": "Abolition of Slavery", + "2015-12-25": "Christmas Day", + "2015-12-26": "Saint Stephen's Day", + "2016-01-01": "New Year's Day", + "2016-03-03": "Mi-Careme", + "2016-03-05": "Missionary Day", + "2016-03-25": "Good Friday", + "2016-03-28": "Easter Monday", + "2016-04-27": "Abolition of Slavery", + "2016-04-28": "Feast of Saint Peter Chanel", + "2016-05-01": "Labor Day", + "2016-05-05": "Ascension Day", + "2016-05-08": "Victory Day", + "2016-05-16": "Whit Monday", + "2016-05-22": "Abolition of Slavery", + "2016-05-27": "Abolition of Slavery", + "2016-06-10": "Abolition of Slavery", + "2016-06-29": "Internal Autonomy Day", + "2016-07-14": "National Day", + "2016-07-21": "Feast of Victor Schoelcher", + "2016-07-29": "Festival of the Territory", + "2016-08-15": "Assumption Day", + "2016-09-24": "Citizenship Day", + "2016-10-09": "Abolition of Slavery", + "2016-11-01": "All Saints' Day", + "2016-11-11": "Armistice Day", + "2016-12-20": "Abolition of Slavery", + "2016-12-25": "Christmas Day", + "2016-12-26": "Saint Stephen's Day", + "2017-01-01": "New Year's Day", + "2017-03-05": "Missionary Day", + "2017-03-23": "Mi-Careme", + "2017-04-14": "Good Friday", + "2017-04-17": "Easter Monday", + "2017-04-27": "Abolition of Slavery", + "2017-04-28": "Feast of Saint Peter Chanel", + "2017-05-01": "Labor Day", + "2017-05-08": "Victory Day", + "2017-05-22": "Abolition of Slavery", + "2017-05-25": "Ascension Day", + "2017-05-27": "Abolition of Slavery", + "2017-06-05": "Whit Monday", + "2017-06-10": "Abolition of Slavery", + "2017-06-29": "Internal Autonomy Day", + "2017-07-14": "National Day", + "2017-07-21": "Feast of Victor Schoelcher", + "2017-07-29": "Festival of the Territory", + "2017-08-15": "Assumption Day", + "2017-09-24": "Citizenship Day", + "2017-10-09": "Abolition of Slavery", + "2017-11-01": "All Saints' Day", + "2017-11-11": "Armistice Day", + "2017-12-20": "Abolition of Slavery", + "2017-12-25": "Christmas Day", + "2017-12-26": "Saint Stephen's Day", + "2018-01-01": "New Year's Day", + "2018-03-05": "Missionary Day", + "2018-03-08": "Mi-Careme", + "2018-03-30": "Good Friday", + "2018-04-02": "Easter Monday", + "2018-04-27": "Abolition of Slavery", + "2018-04-28": "Feast of Saint Peter Chanel", + "2018-05-01": "Labor Day", + "2018-05-08": "Victory Day", + "2018-05-10": "Ascension Day", + "2018-05-21": "Whit Monday", + "2018-05-22": "Abolition of Slavery", + "2018-05-27": "Abolition of Slavery", + "2018-05-28": "Abolition of Slavery", + "2018-06-10": "Abolition of Slavery", + "2018-06-29": "Internal Autonomy Day", + "2018-07-14": "National Day", + "2018-07-21": "Feast of Victor Schoelcher", + "2018-07-29": "Festival of the Territory", + "2018-08-15": "Assumption Day", + "2018-09-24": "Citizenship Day", + "2018-10-09": "Abolition of Slavery", + "2018-11-01": "All Saints' Day", + "2018-11-11": "Armistice Day", + "2018-12-20": "Abolition of Slavery", + "2018-12-25": "Christmas Day", + "2018-12-26": "Saint Stephen's Day", + "2019-01-01": "New Year's Day", + "2019-03-05": "Missionary Day", + "2019-03-28": "Mi-Careme", + "2019-04-19": "Good Friday", + "2019-04-22": "Easter Monday", + "2019-04-27": "Abolition of Slavery", + "2019-04-28": "Feast of Saint Peter Chanel", + "2019-05-01": "Labor Day", + "2019-05-08": "Victory Day", + "2019-05-22": "Abolition of Slavery", + "2019-05-27": "Abolition of Slavery", + "2019-05-28": "Abolition of Slavery", + "2019-05-30": "Ascension Day", + "2019-06-10": "Abolition of Slavery; Whit Monday", + "2019-06-29": "Internal Autonomy Day", + "2019-07-14": "National Day", + "2019-07-21": "Feast of Victor Schoelcher", + "2019-07-29": "Festival of the Territory", + "2019-08-15": "Assumption Day", + "2019-09-24": "Citizenship Day", + "2019-10-09": "Abolition of Slavery", + "2019-11-01": "All Saints' Day", + "2019-11-11": "Armistice Day", + "2019-12-20": "Abolition of Slavery", + "2019-12-25": "Christmas Day", + "2019-12-26": "Saint Stephen's Day", + "2020-01-01": "New Year's Day", + "2020-03-05": "Missionary Day", + "2020-03-19": "Mi-Careme", + "2020-04-10": "Good Friday", + "2020-04-13": "Easter Monday", + "2020-04-27": "Abolition of Slavery", + "2020-04-28": "Feast of Saint Peter Chanel", + "2020-05-01": "Labor Day", + "2020-05-08": "Victory Day", + "2020-05-21": "Ascension Day", + "2020-05-22": "Abolition of Slavery", + "2020-05-27": "Abolition of Slavery", + "2020-05-28": "Abolition of Slavery", + "2020-06-01": "Whit Monday", + "2020-06-10": "Abolition of Slavery", + "2020-06-29": "Internal Autonomy Day", + "2020-07-14": "National Day", + "2020-07-21": "Feast of Victor Schoelcher", + "2020-07-29": "Festival of the Territory", + "2020-08-15": "Assumption Day", + "2020-09-24": "Citizenship Day", + "2020-10-09": "Abolition of Slavery", + "2020-11-01": "All Saints' Day", + "2020-11-11": "Armistice Day", + "2020-12-20": "Abolition of Slavery", + "2020-12-25": "Christmas Day", + "2020-12-26": "Saint Stephen's Day", + "2021-01-01": "New Year's Day", + "2021-03-05": "Missionary Day", + "2021-03-11": "Mi-Careme", + "2021-04-02": "Good Friday", + "2021-04-05": "Easter Monday", + "2021-04-27": "Abolition of Slavery", + "2021-04-28": "Feast of Saint Peter Chanel", + "2021-05-01": "Labor Day", + "2021-05-08": "Victory Day", + "2021-05-13": "Ascension Day", + "2021-05-22": "Abolition of Slavery", + "2021-05-24": "Whit Monday", + "2021-05-27": "Abolition of Slavery", + "2021-05-28": "Abolition of Slavery", + "2021-06-10": "Abolition of Slavery", + "2021-06-29": "Internal Autonomy Day", + "2021-07-14": "National Day", + "2021-07-21": "Feast of Victor Schoelcher", + "2021-07-29": "Festival of the Territory", + "2021-08-15": "Assumption Day", + "2021-09-24": "Citizenship Day", + "2021-10-09": "Abolition of Slavery", + "2021-11-01": "All Saints' Day", + "2021-11-11": "Armistice Day", + "2021-12-20": "Abolition of Slavery", + "2021-12-25": "Christmas Day", + "2021-12-26": "Saint Stephen's Day", + "2022-01-01": "New Year's Day", + "2022-03-05": "Missionary Day", + "2022-03-24": "Mi-Careme", + "2022-04-15": "Good Friday", + "2022-04-18": "Easter Monday", + "2022-04-27": "Abolition of Slavery", + "2022-04-28": "Feast of Saint Peter Chanel", + "2022-05-01": "Labor Day", + "2022-05-08": "Victory Day", + "2022-05-22": "Abolition of Slavery", + "2022-05-26": "Ascension Day", + "2022-05-27": "Abolition of Slavery", + "2022-05-28": "Abolition of Slavery", + "2022-06-06": "Whit Monday", + "2022-06-10": "Abolition of Slavery", + "2022-06-29": "Internal Autonomy Day", + "2022-07-14": "National Day", + "2022-07-21": "Feast of Victor Schoelcher", + "2022-07-29": "Festival of the Territory", + "2022-08-15": "Assumption Day", + "2022-09-24": "Citizenship Day", + "2022-10-09": "Abolition of Slavery", + "2022-11-01": "All Saints' Day", + "2022-11-11": "Armistice Day", + "2022-12-20": "Abolition of Slavery", + "2022-12-25": "Christmas Day", + "2022-12-26": "Saint Stephen's Day", + "2023-01-01": "New Year's Day", + "2023-03-05": "Missionary Day", + "2023-03-16": "Mi-Careme", + "2023-04-07": "Good Friday", + "2023-04-10": "Easter Monday", + "2023-04-27": "Abolition of Slavery", + "2023-04-28": "Feast of Saint Peter Chanel", + "2023-05-01": "Labor Day", + "2023-05-08": "Victory Day", + "2023-05-18": "Ascension Day", + "2023-05-22": "Abolition of Slavery", + "2023-05-27": "Abolition of Slavery", + "2023-05-28": "Abolition of Slavery", + "2023-05-29": "Whit Monday", + "2023-06-10": "Abolition of Slavery", + "2023-06-29": "Internal Autonomy Day", + "2023-07-14": "National Day", + "2023-07-21": "Feast of Victor Schoelcher", + "2023-07-29": "Festival of the Territory", + "2023-08-15": "Assumption Day", + "2023-09-24": "Citizenship Day", + "2023-10-09": "Abolition of Slavery", + "2023-11-01": "All Saints' Day", + "2023-11-11": "Armistice Day", + "2023-12-20": "Abolition of Slavery", + "2023-12-25": "Christmas Day", + "2023-12-26": "Saint Stephen's Day", + "2024-01-01": "New Year's Day", + "2024-03-05": "Missionary Day", + "2024-03-07": "Mi-Careme", + "2024-03-29": "Good Friday", + "2024-04-01": "Easter Monday", + "2024-04-27": "Abolition of Slavery", + "2024-04-28": "Feast of Saint Peter Chanel", + "2024-05-01": "Labor Day", + "2024-05-08": "Victory Day", + "2024-05-09": "Ascension Day", + "2024-05-20": "Whit Monday", + "2024-05-22": "Abolition of Slavery", + "2024-05-27": "Abolition of Slavery", + "2024-05-28": "Abolition of Slavery", + "2024-06-10": "Abolition of Slavery", + "2024-06-29": "Internal Autonomy Day", + "2024-07-14": "National Day", + "2024-07-21": "Feast of Victor Schoelcher", + "2024-07-29": "Festival of the Territory", + "2024-08-15": "Assumption Day", + "2024-09-24": "Citizenship Day", + "2024-10-09": "Abolition of Slavery", + "2024-11-01": "All Saints' Day", + "2024-11-11": "Armistice Day", + "2024-12-20": "Abolition of Slavery", + "2024-12-25": "Christmas Day", + "2024-12-26": "Saint Stephen's Day", + "2025-01-01": "New Year's Day", + "2025-03-05": "Missionary Day", + "2025-03-27": "Mi-Careme", + "2025-04-18": "Good Friday", + "2025-04-21": "Easter Monday", + "2025-04-27": "Abolition of Slavery", + "2025-04-28": "Feast of Saint Peter Chanel", + "2025-05-01": "Labor Day", + "2025-05-08": "Victory Day", + "2025-05-22": "Abolition of Slavery", + "2025-05-27": "Abolition of Slavery", + "2025-05-28": "Abolition of Slavery", + "2025-05-29": "Ascension Day", + "2025-06-09": "Whit Monday", + "2025-06-10": "Abolition of Slavery", + "2025-06-29": "Internal Autonomy Day", + "2025-07-14": "National Day", + "2025-07-21": "Feast of Victor Schoelcher", + "2025-07-29": "Festival of the Territory", + "2025-08-15": "Assumption Day", + "2025-09-24": "Citizenship Day", + "2025-10-09": "Abolition of Slavery", + "2025-11-01": "All Saints' Day", + "2025-11-11": "Armistice Day", + "2025-12-20": "Abolition of Slavery", + "2025-12-25": "Christmas Day", + "2025-12-26": "Saint Stephen's Day", + "2026-01-01": "New Year's Day", + "2026-03-05": "Missionary Day", + "2026-03-12": "Mi-Careme", + "2026-04-03": "Good Friday", + "2026-04-06": "Easter Monday", + "2026-04-27": "Abolition of Slavery", + "2026-04-28": "Feast of Saint Peter Chanel", + "2026-05-01": "Labor Day", + "2026-05-08": "Victory Day", + "2026-05-14": "Ascension Day", + "2026-05-22": "Abolition of Slavery", + "2026-05-25": "Whit Monday", + "2026-05-27": "Abolition of Slavery", + "2026-05-28": "Abolition of Slavery", + "2026-06-10": "Abolition of Slavery", + "2026-06-29": "Internal Autonomy Day", + "2026-07-14": "National Day", + "2026-07-21": "Feast of Victor Schoelcher", + "2026-07-29": "Festival of the Territory", + "2026-08-15": "Assumption Day", + "2026-09-24": "Citizenship Day", + "2026-10-09": "Abolition of Slavery", + "2026-11-01": "All Saints' Day", + "2026-11-11": "Armistice Day", + "2026-12-20": "Abolition of Slavery", + "2026-12-25": "Christmas Day", + "2026-12-26": "Saint Stephen's Day", + "2027-01-01": "New Year's Day", + "2027-03-04": "Mi-Careme", + "2027-03-05": "Missionary Day", + "2027-03-26": "Good Friday", + "2027-03-29": "Easter Monday", + "2027-04-27": "Abolition of Slavery", + "2027-04-28": "Feast of Saint Peter Chanel", + "2027-05-01": "Labor Day", + "2027-05-06": "Ascension Day", + "2027-05-08": "Victory Day", + "2027-05-17": "Whit Monday", + "2027-05-22": "Abolition of Slavery", + "2027-05-27": "Abolition of Slavery", + "2027-05-28": "Abolition of Slavery", + "2027-06-10": "Abolition of Slavery", + "2027-06-29": "Internal Autonomy Day", + "2027-07-14": "National Day", + "2027-07-21": "Feast of Victor Schoelcher", + "2027-07-29": "Festival of the Territory", + "2027-08-15": "Assumption Day", + "2027-09-24": "Citizenship Day", + "2027-10-09": "Abolition of Slavery", + "2027-11-01": "All Saints' Day", + "2027-11-11": "Armistice Day", + "2027-12-20": "Abolition of Slavery", + "2027-12-25": "Christmas Day", + "2027-12-26": "Saint Stephen's Day", + "2028-01-01": "New Year's Day", + "2028-03-05": "Missionary Day", + "2028-03-23": "Mi-Careme", + "2028-04-14": "Good Friday", + "2028-04-17": "Easter Monday", + "2028-04-27": "Abolition of Slavery", + "2028-04-28": "Feast of Saint Peter Chanel", + "2028-05-01": "Labor Day", + "2028-05-08": "Victory Day", + "2028-05-22": "Abolition of Slavery", + "2028-05-25": "Ascension Day", + "2028-05-27": "Abolition of Slavery", + "2028-05-28": "Abolition of Slavery", + "2028-06-05": "Whit Monday", + "2028-06-10": "Abolition of Slavery", + "2028-06-29": "Internal Autonomy Day", + "2028-07-14": "National Day", + "2028-07-21": "Feast of Victor Schoelcher", + "2028-07-29": "Festival of the Territory", + "2028-08-15": "Assumption Day", + "2028-09-24": "Citizenship Day", + "2028-10-09": "Abolition of Slavery", + "2028-11-01": "All Saints' Day", + "2028-11-11": "Armistice Day", + "2028-12-20": "Abolition of Slavery", + "2028-12-25": "Christmas Day", + "2028-12-26": "Saint Stephen's Day", + "2029-01-01": "New Year's Day", + "2029-03-05": "Missionary Day", + "2029-03-08": "Mi-Careme", + "2029-03-30": "Good Friday", + "2029-04-02": "Easter Monday", + "2029-04-27": "Abolition of Slavery", + "2029-04-28": "Feast of Saint Peter Chanel", + "2029-05-01": "Labor Day", + "2029-05-08": "Victory Day", + "2029-05-10": "Ascension Day", + "2029-05-21": "Whit Monday", + "2029-05-22": "Abolition of Slavery", + "2029-05-27": "Abolition of Slavery", + "2029-05-28": "Abolition of Slavery", + "2029-06-10": "Abolition of Slavery", + "2029-06-29": "Internal Autonomy Day", + "2029-07-14": "National Day", + "2029-07-21": "Feast of Victor Schoelcher", + "2029-07-29": "Festival of the Territory", + "2029-08-15": "Assumption Day", + "2029-09-24": "Citizenship Day", + "2029-10-09": "Abolition of Slavery", + "2029-11-01": "All Saints' Day", + "2029-11-11": "Armistice Day", + "2029-12-20": "Abolition of Slavery", + "2029-12-25": "Christmas Day", + "2029-12-26": "Saint Stephen's Day", + "2030-01-01": "New Year's Day", + "2030-03-05": "Missionary Day", + "2030-03-28": "Mi-Careme", + "2030-04-19": "Good Friday", + "2030-04-22": "Easter Monday", + "2030-04-27": "Abolition of Slavery", + "2030-04-28": "Feast of Saint Peter Chanel", + "2030-05-01": "Labor Day", + "2030-05-08": "Victory Day", + "2030-05-22": "Abolition of Slavery", + "2030-05-27": "Abolition of Slavery", + "2030-05-28": "Abolition of Slavery", + "2030-05-30": "Ascension Day", + "2030-06-10": "Abolition of Slavery; Whit Monday", + "2030-06-29": "Internal Autonomy Day", + "2030-07-14": "National Day", + "2030-07-21": "Feast of Victor Schoelcher", + "2030-07-29": "Festival of the Territory", + "2030-08-15": "Assumption Day", + "2030-09-24": "Citizenship Day", + "2030-10-09": "Abolition of Slavery", + "2030-11-01": "All Saints' Day", + "2030-11-11": "Armistice Day", + "2030-12-20": "Abolition of Slavery", + "2030-12-25": "Christmas Day", + "2030-12-26": "Saint Stephen's Day", + "2031-01-01": "New Year's Day", + "2031-03-05": "Missionary Day", + "2031-03-20": "Mi-Careme", + "2031-04-11": "Good Friday", + "2031-04-14": "Easter Monday", + "2031-04-27": "Abolition of Slavery", + "2031-04-28": "Feast of Saint Peter Chanel", + "2031-05-01": "Labor Day", + "2031-05-08": "Victory Day", + "2031-05-22": "Abolition of Slavery; Ascension Day", + "2031-05-27": "Abolition of Slavery", + "2031-05-28": "Abolition of Slavery", + "2031-06-02": "Whit Monday", + "2031-06-10": "Abolition of Slavery", + "2031-06-29": "Internal Autonomy Day", + "2031-07-14": "National Day", + "2031-07-21": "Feast of Victor Schoelcher", + "2031-07-29": "Festival of the Territory", + "2031-08-15": "Assumption Day", + "2031-09-24": "Citizenship Day", + "2031-10-09": "Abolition of Slavery", + "2031-11-01": "All Saints' Day", + "2031-11-11": "Armistice Day", + "2031-12-20": "Abolition of Slavery", + "2031-12-25": "Christmas Day", + "2031-12-26": "Saint Stephen's Day", + "2032-01-01": "New Year's Day", + "2032-03-04": "Mi-Careme", + "2032-03-05": "Missionary Day", + "2032-03-26": "Good Friday", + "2032-03-29": "Easter Monday", + "2032-04-27": "Abolition of Slavery", + "2032-04-28": "Feast of Saint Peter Chanel", + "2032-05-01": "Labor Day", + "2032-05-06": "Ascension Day", + "2032-05-08": "Victory Day", + "2032-05-17": "Whit Monday", + "2032-05-22": "Abolition of Slavery", + "2032-05-27": "Abolition of Slavery", + "2032-05-28": "Abolition of Slavery", + "2032-06-10": "Abolition of Slavery", + "2032-06-29": "Internal Autonomy Day", + "2032-07-14": "National Day", + "2032-07-21": "Feast of Victor Schoelcher", + "2032-07-29": "Festival of the Territory", + "2032-08-15": "Assumption Day", + "2032-09-24": "Citizenship Day", + "2032-10-09": "Abolition of Slavery", + "2032-11-01": "All Saints' Day", + "2032-11-11": "Armistice Day", + "2032-12-20": "Abolition of Slavery", + "2032-12-25": "Christmas Day", + "2032-12-26": "Saint Stephen's Day", + "2033-01-01": "New Year's Day", + "2033-03-05": "Missionary Day", + "2033-03-24": "Mi-Careme", + "2033-04-15": "Good Friday", + "2033-04-18": "Easter Monday", + "2033-04-27": "Abolition of Slavery", + "2033-04-28": "Feast of Saint Peter Chanel", + "2033-05-01": "Labor Day", + "2033-05-08": "Victory Day", + "2033-05-22": "Abolition of Slavery", + "2033-05-26": "Ascension Day", + "2033-05-27": "Abolition of Slavery", + "2033-05-28": "Abolition of Slavery", + "2033-06-06": "Whit Monday", + "2033-06-10": "Abolition of Slavery", + "2033-06-29": "Internal Autonomy Day", + "2033-07-14": "National Day", + "2033-07-21": "Feast of Victor Schoelcher", + "2033-07-29": "Festival of the Territory", + "2033-08-15": "Assumption Day", + "2033-09-24": "Citizenship Day", + "2033-10-09": "Abolition of Slavery", + "2033-11-01": "All Saints' Day", + "2033-11-11": "Armistice Day", + "2033-12-20": "Abolition of Slavery", + "2033-12-25": "Christmas Day", + "2033-12-26": "Saint Stephen's Day", + "2034-01-01": "New Year's Day", + "2034-03-05": "Missionary Day", + "2034-03-16": "Mi-Careme", + "2034-04-07": "Good Friday", + "2034-04-10": "Easter Monday", + "2034-04-27": "Abolition of Slavery", + "2034-04-28": "Feast of Saint Peter Chanel", + "2034-05-01": "Labor Day", + "2034-05-08": "Victory Day", + "2034-05-18": "Ascension Day", + "2034-05-22": "Abolition of Slavery", + "2034-05-27": "Abolition of Slavery", + "2034-05-28": "Abolition of Slavery", + "2034-05-29": "Whit Monday", + "2034-06-10": "Abolition of Slavery", + "2034-06-29": "Internal Autonomy Day", + "2034-07-14": "National Day", + "2034-07-21": "Feast of Victor Schoelcher", + "2034-07-29": "Festival of the Territory", + "2034-08-15": "Assumption Day", + "2034-09-24": "Citizenship Day", + "2034-10-09": "Abolition of Slavery", + "2034-11-01": "All Saints' Day", + "2034-11-11": "Armistice Day", + "2034-12-20": "Abolition of Slavery", + "2034-12-25": "Christmas Day", + "2034-12-26": "Saint Stephen's Day", + "2035-01-01": "New Year's Day", + "2035-03-01": "Mi-Careme", + "2035-03-05": "Missionary Day", + "2035-03-23": "Good Friday", + "2035-03-26": "Easter Monday", + "2035-04-27": "Abolition of Slavery", + "2035-04-28": "Feast of Saint Peter Chanel", + "2035-05-01": "Labor Day", + "2035-05-03": "Ascension Day", + "2035-05-08": "Victory Day", + "2035-05-14": "Whit Monday", + "2035-05-22": "Abolition of Slavery", + "2035-05-27": "Abolition of Slavery", + "2035-05-28": "Abolition of Slavery", + "2035-06-10": "Abolition of Slavery", + "2035-06-29": "Internal Autonomy Day", + "2035-07-14": "National Day", + "2035-07-21": "Feast of Victor Schoelcher", + "2035-07-29": "Festival of the Territory", + "2035-08-15": "Assumption Day", + "2035-09-24": "Citizenship Day", + "2035-10-09": "Abolition of Slavery", + "2035-11-01": "All Saints' Day", + "2035-11-11": "Armistice Day", + "2035-12-20": "Abolition of Slavery", + "2035-12-25": "Christmas Day", + "2035-12-26": "Saint Stephen's Day", + "2036-01-01": "New Year's Day", + "2036-03-05": "Missionary Day", + "2036-03-20": "Mi-Careme", + "2036-04-11": "Good Friday", + "2036-04-14": "Easter Monday", + "2036-04-27": "Abolition of Slavery", + "2036-04-28": "Feast of Saint Peter Chanel", + "2036-05-01": "Labor Day", + "2036-05-08": "Victory Day", + "2036-05-22": "Abolition of Slavery; Ascension Day", + "2036-05-27": "Abolition of Slavery", + "2036-05-28": "Abolition of Slavery", + "2036-06-02": "Whit Monday", + "2036-06-10": "Abolition of Slavery", + "2036-06-29": "Internal Autonomy Day", + "2036-07-14": "National Day", + "2036-07-21": "Feast of Victor Schoelcher", + "2036-07-29": "Festival of the Territory", + "2036-08-15": "Assumption Day", + "2036-09-24": "Citizenship Day", + "2036-10-09": "Abolition of Slavery", + "2036-11-01": "All Saints' Day", + "2036-11-11": "Armistice Day", + "2036-12-20": "Abolition of Slavery", + "2036-12-25": "Christmas Day", + "2036-12-26": "Saint Stephen's Day", + "2037-01-01": "New Year's Day", + "2037-03-05": "Missionary Day", + "2037-03-12": "Mi-Careme", + "2037-04-03": "Good Friday", + "2037-04-06": "Easter Monday", + "2037-04-27": "Abolition of Slavery", + "2037-04-28": "Feast of Saint Peter Chanel", + "2037-05-01": "Labor Day", + "2037-05-08": "Victory Day", + "2037-05-14": "Ascension Day", + "2037-05-22": "Abolition of Slavery", + "2037-05-25": "Whit Monday", + "2037-05-27": "Abolition of Slavery", + "2037-05-28": "Abolition of Slavery", + "2037-06-10": "Abolition of Slavery", + "2037-06-29": "Internal Autonomy Day", + "2037-07-14": "National Day", + "2037-07-21": "Feast of Victor Schoelcher", + "2037-07-29": "Festival of the Territory", + "2037-08-15": "Assumption Day", + "2037-09-24": "Citizenship Day", + "2037-10-09": "Abolition of Slavery", + "2037-11-01": "All Saints' Day", + "2037-11-11": "Armistice Day", + "2037-12-20": "Abolition of Slavery", + "2037-12-25": "Christmas Day", + "2037-12-26": "Saint Stephen's Day", + "2038-01-01": "New Year's Day", + "2038-03-05": "Missionary Day", + "2038-04-01": "Mi-Careme", + "2038-04-23": "Good Friday", + "2038-04-26": "Easter Monday", + "2038-04-27": "Abolition of Slavery", + "2038-04-28": "Feast of Saint Peter Chanel", + "2038-05-01": "Labor Day", + "2038-05-08": "Victory Day", + "2038-05-22": "Abolition of Slavery", + "2038-05-27": "Abolition of Slavery", + "2038-05-28": "Abolition of Slavery", + "2038-06-03": "Ascension Day", + "2038-06-10": "Abolition of Slavery", + "2038-06-14": "Whit Monday", + "2038-06-29": "Internal Autonomy Day", + "2038-07-14": "National Day", + "2038-07-21": "Feast of Victor Schoelcher", + "2038-07-29": "Festival of the Territory", + "2038-08-15": "Assumption Day", + "2038-09-24": "Citizenship Day", + "2038-10-09": "Abolition of Slavery", + "2038-11-01": "All Saints' Day", + "2038-11-11": "Armistice Day", + "2038-12-20": "Abolition of Slavery", + "2038-12-25": "Christmas Day", + "2038-12-26": "Saint Stephen's Day", + "2039-01-01": "New Year's Day", + "2039-03-05": "Missionary Day", + "2039-03-17": "Mi-Careme", + "2039-04-08": "Good Friday", + "2039-04-11": "Easter Monday", + "2039-04-27": "Abolition of Slavery", + "2039-04-28": "Feast of Saint Peter Chanel", + "2039-05-01": "Labor Day", + "2039-05-08": "Victory Day", + "2039-05-19": "Ascension Day", + "2039-05-22": "Abolition of Slavery", + "2039-05-27": "Abolition of Slavery", + "2039-05-28": "Abolition of Slavery", + "2039-05-30": "Whit Monday", + "2039-06-10": "Abolition of Slavery", + "2039-06-29": "Internal Autonomy Day", + "2039-07-14": "National Day", + "2039-07-21": "Feast of Victor Schoelcher", + "2039-07-29": "Festival of the Territory", + "2039-08-15": "Assumption Day", + "2039-09-24": "Citizenship Day", + "2039-10-09": "Abolition of Slavery", + "2039-11-01": "All Saints' Day", + "2039-11-11": "Armistice Day", + "2039-12-20": "Abolition of Slavery", + "2039-12-25": "Christmas Day", + "2039-12-26": "Saint Stephen's Day", + "2040-01-01": "New Year's Day", + "2040-03-05": "Missionary Day", + "2040-03-08": "Mi-Careme", + "2040-03-30": "Good Friday", + "2040-04-02": "Easter Monday", + "2040-04-27": "Abolition of Slavery", + "2040-04-28": "Feast of Saint Peter Chanel", + "2040-05-01": "Labor Day", + "2040-05-08": "Victory Day", + "2040-05-10": "Ascension Day", + "2040-05-21": "Whit Monday", + "2040-05-22": "Abolition of Slavery", + "2040-05-27": "Abolition of Slavery", + "2040-05-28": "Abolition of Slavery", + "2040-06-10": "Abolition of Slavery", + "2040-06-29": "Internal Autonomy Day", + "2040-07-14": "National Day", + "2040-07-21": "Feast of Victor Schoelcher", + "2040-07-29": "Festival of the Territory", + "2040-08-15": "Assumption Day", + "2040-09-24": "Citizenship Day", + "2040-10-09": "Abolition of Slavery", + "2040-11-01": "All Saints' Day", + "2040-11-11": "Armistice Day", + "2040-12-20": "Abolition of Slavery", + "2040-12-25": "Christmas Day", + "2040-12-26": "Saint Stephen's Day", + "2041-01-01": "New Year's Day", + "2041-03-05": "Missionary Day", + "2041-03-28": "Mi-Careme", + "2041-04-19": "Good Friday", + "2041-04-22": "Easter Monday", + "2041-04-27": "Abolition of Slavery", + "2041-04-28": "Feast of Saint Peter Chanel", + "2041-05-01": "Labor Day", + "2041-05-08": "Victory Day", + "2041-05-22": "Abolition of Slavery", + "2041-05-27": "Abolition of Slavery", + "2041-05-28": "Abolition of Slavery", + "2041-05-30": "Ascension Day", + "2041-06-10": "Abolition of Slavery; Whit Monday", + "2041-06-29": "Internal Autonomy Day", + "2041-07-14": "National Day", + "2041-07-21": "Feast of Victor Schoelcher", + "2041-07-29": "Festival of the Territory", + "2041-08-15": "Assumption Day", + "2041-09-24": "Citizenship Day", + "2041-10-09": "Abolition of Slavery", + "2041-11-01": "All Saints' Day", + "2041-11-11": "Armistice Day", + "2041-12-20": "Abolition of Slavery", + "2041-12-25": "Christmas Day", + "2041-12-26": "Saint Stephen's Day", + "2042-01-01": "New Year's Day", + "2042-03-05": "Missionary Day", + "2042-03-13": "Mi-Careme", + "2042-04-04": "Good Friday", + "2042-04-07": "Easter Monday", + "2042-04-27": "Abolition of Slavery", + "2042-04-28": "Feast of Saint Peter Chanel", + "2042-05-01": "Labor Day", + "2042-05-08": "Victory Day", + "2042-05-15": "Ascension Day", + "2042-05-22": "Abolition of Slavery", + "2042-05-26": "Whit Monday", + "2042-05-27": "Abolition of Slavery", + "2042-05-28": "Abolition of Slavery", + "2042-06-10": "Abolition of Slavery", + "2042-06-29": "Internal Autonomy Day", + "2042-07-14": "National Day", + "2042-07-21": "Feast of Victor Schoelcher", + "2042-07-29": "Festival of the Territory", + "2042-08-15": "Assumption Day", + "2042-09-24": "Citizenship Day", + "2042-10-09": "Abolition of Slavery", + "2042-11-01": "All Saints' Day", + "2042-11-11": "Armistice Day", + "2042-12-20": "Abolition of Slavery", + "2042-12-25": "Christmas Day", + "2042-12-26": "Saint Stephen's Day", + "2043-01-01": "New Year's Day", + "2043-03-05": "Mi-Careme; Missionary Day", + "2043-03-27": "Good Friday", + "2043-03-30": "Easter Monday", + "2043-04-27": "Abolition of Slavery", + "2043-04-28": "Feast of Saint Peter Chanel", + "2043-05-01": "Labor Day", + "2043-05-07": "Ascension Day", + "2043-05-08": "Victory Day", + "2043-05-18": "Whit Monday", + "2043-05-22": "Abolition of Slavery", + "2043-05-27": "Abolition of Slavery", + "2043-05-28": "Abolition of Slavery", + "2043-06-10": "Abolition of Slavery", + "2043-06-29": "Internal Autonomy Day", + "2043-07-14": "National Day", + "2043-07-21": "Feast of Victor Schoelcher", + "2043-07-29": "Festival of the Territory", + "2043-08-15": "Assumption Day", + "2043-09-24": "Citizenship Day", + "2043-10-09": "Abolition of Slavery", + "2043-11-01": "All Saints' Day", + "2043-11-11": "Armistice Day", + "2043-12-20": "Abolition of Slavery", + "2043-12-25": "Christmas Day", + "2043-12-26": "Saint Stephen's Day", + "2044-01-01": "New Year's Day", + "2044-03-05": "Missionary Day", + "2044-03-24": "Mi-Careme", + "2044-04-15": "Good Friday", + "2044-04-18": "Easter Monday", + "2044-04-27": "Abolition of Slavery", + "2044-04-28": "Feast of Saint Peter Chanel", + "2044-05-01": "Labor Day", + "2044-05-08": "Victory Day", + "2044-05-22": "Abolition of Slavery", + "2044-05-26": "Ascension Day", + "2044-05-27": "Abolition of Slavery", + "2044-05-28": "Abolition of Slavery", + "2044-06-06": "Whit Monday", + "2044-06-10": "Abolition of Slavery", + "2044-06-29": "Internal Autonomy Day", + "2044-07-14": "National Day", + "2044-07-21": "Feast of Victor Schoelcher", + "2044-07-29": "Festival of the Territory", + "2044-08-15": "Assumption Day", + "2044-09-24": "Citizenship Day", + "2044-10-09": "Abolition of Slavery", + "2044-11-01": "All Saints' Day", + "2044-11-11": "Armistice Day", + "2044-12-20": "Abolition of Slavery", + "2044-12-25": "Christmas Day", + "2044-12-26": "Saint Stephen's Day", + "2045-01-01": "New Year's Day", + "2045-03-05": "Missionary Day", + "2045-03-16": "Mi-Careme", + "2045-04-07": "Good Friday", + "2045-04-10": "Easter Monday", + "2045-04-27": "Abolition of Slavery", + "2045-04-28": "Feast of Saint Peter Chanel", + "2045-05-01": "Labor Day", + "2045-05-08": "Victory Day", + "2045-05-18": "Ascension Day", + "2045-05-22": "Abolition of Slavery", + "2045-05-27": "Abolition of Slavery", + "2045-05-28": "Abolition of Slavery", + "2045-05-29": "Whit Monday", + "2045-06-10": "Abolition of Slavery", + "2045-06-29": "Internal Autonomy Day", + "2045-07-14": "National Day", + "2045-07-21": "Feast of Victor Schoelcher", + "2045-07-29": "Festival of the Territory", + "2045-08-15": "Assumption Day", + "2045-09-24": "Citizenship Day", + "2045-10-09": "Abolition of Slavery", + "2045-11-01": "All Saints' Day", + "2045-11-11": "Armistice Day", + "2045-12-20": "Abolition of Slavery", + "2045-12-25": "Christmas Day", + "2045-12-26": "Saint Stephen's Day", + "2046-01-01": "New Year's Day", + "2046-03-01": "Mi-Careme", + "2046-03-05": "Missionary Day", + "2046-03-23": "Good Friday", + "2046-03-26": "Easter Monday", + "2046-04-27": "Abolition of Slavery", + "2046-04-28": "Feast of Saint Peter Chanel", + "2046-05-01": "Labor Day", + "2046-05-03": "Ascension Day", + "2046-05-08": "Victory Day", + "2046-05-14": "Whit Monday", + "2046-05-22": "Abolition of Slavery", + "2046-05-27": "Abolition of Slavery", + "2046-05-28": "Abolition of Slavery", + "2046-06-10": "Abolition of Slavery", + "2046-06-29": "Internal Autonomy Day", + "2046-07-14": "National Day", + "2046-07-21": "Feast of Victor Schoelcher", + "2046-07-29": "Festival of the Territory", + "2046-08-15": "Assumption Day", + "2046-09-24": "Citizenship Day", + "2046-10-09": "Abolition of Slavery", + "2046-11-01": "All Saints' Day", + "2046-11-11": "Armistice Day", + "2046-12-20": "Abolition of Slavery", + "2046-12-25": "Christmas Day", + "2046-12-26": "Saint Stephen's Day", + "2047-01-01": "New Year's Day", + "2047-03-05": "Missionary Day", + "2047-03-21": "Mi-Careme", + "2047-04-12": "Good Friday", + "2047-04-15": "Easter Monday", + "2047-04-27": "Abolition of Slavery", + "2047-04-28": "Feast of Saint Peter Chanel", + "2047-05-01": "Labor Day", + "2047-05-08": "Victory Day", + "2047-05-22": "Abolition of Slavery", + "2047-05-23": "Ascension Day", + "2047-05-27": "Abolition of Slavery", + "2047-05-28": "Abolition of Slavery", + "2047-06-03": "Whit Monday", + "2047-06-10": "Abolition of Slavery", + "2047-06-29": "Internal Autonomy Day", + "2047-07-14": "National Day", + "2047-07-21": "Feast of Victor Schoelcher", + "2047-07-29": "Festival of the Territory", + "2047-08-15": "Assumption Day", + "2047-09-24": "Citizenship Day", + "2047-10-09": "Abolition of Slavery", + "2047-11-01": "All Saints' Day", + "2047-11-11": "Armistice Day", + "2047-12-20": "Abolition of Slavery", + "2047-12-25": "Christmas Day", + "2047-12-26": "Saint Stephen's Day", + "2048-01-01": "New Year's Day", + "2048-03-05": "Missionary Day", + "2048-03-12": "Mi-Careme", + "2048-04-03": "Good Friday", + "2048-04-06": "Easter Monday", + "2048-04-27": "Abolition of Slavery", + "2048-04-28": "Feast of Saint Peter Chanel", + "2048-05-01": "Labor Day", + "2048-05-08": "Victory Day", + "2048-05-14": "Ascension Day", + "2048-05-22": "Abolition of Slavery", + "2048-05-25": "Whit Monday", + "2048-05-27": "Abolition of Slavery", + "2048-05-28": "Abolition of Slavery", + "2048-06-10": "Abolition of Slavery", + "2048-06-29": "Internal Autonomy Day", + "2048-07-14": "National Day", + "2048-07-21": "Feast of Victor Schoelcher", + "2048-07-29": "Festival of the Territory", + "2048-08-15": "Assumption Day", + "2048-09-24": "Citizenship Day", + "2048-10-09": "Abolition of Slavery", + "2048-11-01": "All Saints' Day", + "2048-11-11": "Armistice Day", + "2048-12-20": "Abolition of Slavery", + "2048-12-25": "Christmas Day", + "2048-12-26": "Saint Stephen's Day", + "2049-01-01": "New Year's Day", + "2049-03-05": "Missionary Day", + "2049-03-25": "Mi-Careme", + "2049-04-16": "Good Friday", + "2049-04-19": "Easter Monday", + "2049-04-27": "Abolition of Slavery", + "2049-04-28": "Feast of Saint Peter Chanel", + "2049-05-01": "Labor Day", + "2049-05-08": "Victory Day", + "2049-05-22": "Abolition of Slavery", + "2049-05-27": "Abolition of Slavery; Ascension Day", + "2049-05-28": "Abolition of Slavery", + "2049-06-07": "Whit Monday", + "2049-06-10": "Abolition of Slavery", + "2049-06-29": "Internal Autonomy Day", + "2049-07-14": "National Day", + "2049-07-21": "Feast of Victor Schoelcher", + "2049-07-29": "Festival of the Territory", + "2049-08-15": "Assumption Day", + "2049-09-24": "Citizenship Day", + "2049-10-09": "Abolition of Slavery", + "2049-11-01": "All Saints' Day", + "2049-11-11": "Armistice Day", + "2049-12-20": "Abolition of Slavery", + "2049-12-25": "Christmas Day", + "2049-12-26": "Saint Stephen's Day", + "2050-01-01": "New Year's Day", + "2050-03-05": "Missionary Day", + "2050-03-17": "Mi-Careme", + "2050-04-08": "Good Friday", + "2050-04-11": "Easter Monday", + "2050-04-27": "Abolition of Slavery", + "2050-04-28": "Feast of Saint Peter Chanel", + "2050-05-01": "Labor Day", + "2050-05-08": "Victory Day", + "2050-05-19": "Ascension Day", + "2050-05-22": "Abolition of Slavery", + "2050-05-27": "Abolition of Slavery", + "2050-05-28": "Abolition of Slavery", + "2050-05-30": "Whit Monday", + "2050-06-10": "Abolition of Slavery", + "2050-06-29": "Internal Autonomy Day", + "2050-07-14": "National Day", + "2050-07-21": "Feast of Victor Schoelcher", + "2050-07-29": "Festival of the Territory", + "2050-08-15": "Assumption Day", + "2050-09-24": "Citizenship Day", + "2050-10-09": "Abolition of Slavery", + "2050-11-01": "All Saints' Day", + "2050-11-11": "Armistice Day", + "2050-12-20": "Abolition of Slavery", + "2050-12-25": "Christmas Day", + "2050-12-26": "Saint Stephen's Day" +} diff --git a/snapshots/countries/GA.json b/snapshots/countries/GA.json new file mode 100644 index 000000000..821bac838 --- /dev/null +++ b/snapshots/countries/GA.json @@ -0,0 +1,1116 @@ +{ + "1961-01-01": "New Year's Day", + "1961-03-18": "Eid al-Fitr* (*estimated)", + "1961-04-03": "Easter Monday", + "1961-05-01": "Labour Day", + "1961-05-11": "Ascension Day", + "1961-05-22": "Whit Monday", + "1961-05-25": "Eid al-Adha* (*estimated)", + "1961-08-15": "Assumption Day", + "1961-08-16": "Independence Day", + "1961-08-17": "Independence Day Holiday", + "1961-11-01": "All Saints' Day", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-03-07": "Eid al-Fitr* (*estimated)", + "1962-04-23": "Easter Monday", + "1962-05-01": "Labour Day", + "1962-05-14": "Eid al-Adha* (*estimated)", + "1962-05-31": "Ascension Day", + "1962-06-11": "Whit Monday", + "1962-08-15": "Assumption Day", + "1962-08-16": "Independence Day", + "1962-08-17": "Independence Day Holiday", + "1962-11-01": "All Saints' Day", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-02-24": "Eid al-Fitr* (*estimated)", + "1963-04-15": "Easter Monday", + "1963-05-01": "Labour Day", + "1963-05-03": "Eid al-Adha* (*estimated)", + "1963-05-23": "Ascension Day", + "1963-06-03": "Whit Monday", + "1963-08-15": "Assumption Day", + "1963-08-16": "Independence Day", + "1963-08-17": "Independence Day Holiday", + "1963-11-01": "All Saints' Day", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-02-14": "Eid al-Fitr* (*estimated)", + "1964-03-30": "Easter Monday", + "1964-04-22": "Eid al-Adha* (*estimated)", + "1964-05-01": "Labour Day", + "1964-05-07": "Ascension Day", + "1964-05-18": "Whit Monday", + "1964-08-15": "Assumption Day", + "1964-08-16": "Independence Day", + "1964-08-17": "Independence Day Holiday", + "1964-11-01": "All Saints' Day", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-02-02": "Eid al-Fitr* (*estimated)", + "1965-04-11": "Eid al-Adha* (*estimated)", + "1965-04-19": "Easter Monday", + "1965-05-01": "Labour Day", + "1965-05-27": "Ascension Day", + "1965-06-07": "Whit Monday", + "1965-08-15": "Assumption Day", + "1965-08-16": "Independence Day", + "1965-08-17": "Independence Day Holiday", + "1965-11-01": "All Saints' Day", + "1965-12-25": "Christmas Day", + "1966-01-01": "New Year's Day", + "1966-01-22": "Eid al-Fitr* (*estimated)", + "1966-04-01": "Eid al-Adha* (*estimated)", + "1966-04-11": "Easter Monday", + "1966-05-01": "Labour Day", + "1966-05-19": "Ascension Day", + "1966-05-30": "Whit Monday", + "1966-08-15": "Assumption Day", + "1966-08-16": "Independence Day", + "1966-08-17": "Independence Day Holiday", + "1966-11-01": "All Saints' Day", + "1966-12-25": "Christmas Day", + "1967-01-01": "New Year's Day", + "1967-01-12": "Eid al-Fitr* (*estimated)", + "1967-03-21": "Eid al-Adha* (*estimated)", + "1967-03-27": "Easter Monday", + "1967-05-01": "Labour Day", + "1967-05-04": "Ascension Day", + "1967-05-15": "Whit Monday", + "1967-08-15": "Assumption Day", + "1967-08-16": "Independence Day", + "1967-08-17": "Independence Day Holiday", + "1967-11-01": "All Saints' Day", + "1967-12-25": "Christmas Day", + "1968-01-01": "Eid al-Fitr* (*estimated); New Year's Day", + "1968-03-09": "Eid al-Adha* (*estimated)", + "1968-04-15": "Easter Monday", + "1968-05-01": "Labour Day", + "1968-05-23": "Ascension Day", + "1968-06-03": "Whit Monday", + "1968-08-15": "Assumption Day", + "1968-08-16": "Independence Day", + "1968-08-17": "Independence Day Holiday", + "1968-11-01": "All Saints' Day", + "1968-12-21": "Eid al-Fitr* (*estimated)", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-02-27": "Eid al-Adha* (*estimated)", + "1969-04-07": "Easter Monday", + "1969-05-01": "Labour Day", + "1969-05-15": "Ascension Day", + "1969-05-26": "Whit Monday", + "1969-08-15": "Assumption Day", + "1969-08-16": "Independence Day", + "1969-08-17": "Independence Day Holiday", + "1969-11-01": "All Saints' Day", + "1969-12-10": "Eid al-Fitr* (*estimated)", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-02-16": "Eid al-Adha* (*estimated)", + "1970-03-30": "Easter Monday", + "1970-05-01": "Labour Day", + "1970-05-07": "Ascension Day", + "1970-05-18": "Whit Monday", + "1970-08-15": "Assumption Day", + "1970-08-16": "Independence Day", + "1970-08-17": "Independence Day Holiday", + "1970-11-01": "All Saints' Day", + "1970-11-30": "Eid al-Fitr* (*estimated)", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-02-06": "Eid al-Adha* (*estimated)", + "1971-04-12": "Easter Monday", + "1971-05-01": "Labour Day", + "1971-05-20": "Ascension Day", + "1971-05-31": "Whit Monday", + "1971-08-15": "Assumption Day", + "1971-08-16": "Independence Day", + "1971-08-17": "Independence Day Holiday", + "1971-11-01": "All Saints' Day", + "1971-11-19": "Eid al-Fitr* (*estimated)", + "1971-12-25": "Christmas Day", + "1972-01-01": "New Year's Day", + "1972-01-26": "Eid al-Adha* (*estimated)", + "1972-04-03": "Easter Monday", + "1972-05-01": "Labour Day", + "1972-05-11": "Ascension Day", + "1972-05-22": "Whit Monday", + "1972-08-15": "Assumption Day", + "1972-08-16": "Independence Day", + "1972-08-17": "Independence Day Holiday", + "1972-11-01": "All Saints' Day", + "1972-11-07": "Eid al-Fitr* (*estimated)", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-01-14": "Eid al-Adha* (*estimated)", + "1973-04-23": "Easter Monday", + "1973-05-01": "Labour Day", + "1973-05-31": "Ascension Day", + "1973-06-11": "Whit Monday", + "1973-08-15": "Assumption Day", + "1973-08-16": "Independence Day", + "1973-08-17": "Independence Day Holiday", + "1973-10-27": "Eid al-Fitr* (*estimated)", + "1973-11-01": "All Saints' Day", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-01-03": "Eid al-Adha* (*estimated)", + "1974-04-15": "Easter Monday", + "1974-05-01": "Labour Day", + "1974-05-23": "Ascension Day", + "1974-06-03": "Whit Monday", + "1974-08-15": "Assumption Day", + "1974-08-16": "Independence Day", + "1974-08-17": "Independence Day Holiday", + "1974-10-16": "Eid al-Fitr* (*estimated)", + "1974-11-01": "All Saints' Day", + "1974-12-24": "Eid al-Adha* (*estimated)", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-03-31": "Easter Monday", + "1975-05-01": "Labour Day", + "1975-05-08": "Ascension Day", + "1975-05-19": "Whit Monday", + "1975-08-15": "Assumption Day", + "1975-08-16": "Independence Day", + "1975-08-17": "Independence Day Holiday", + "1975-10-06": "Eid al-Fitr* (*estimated)", + "1975-11-01": "All Saints' Day", + "1975-12-13": "Eid al-Adha* (*estimated)", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-04-19": "Easter Monday", + "1976-05-01": "Labour Day", + "1976-05-27": "Ascension Day", + "1976-06-07": "Whit Monday", + "1976-08-15": "Assumption Day", + "1976-08-16": "Independence Day", + "1976-08-17": "Independence Day Holiday", + "1976-09-24": "Eid al-Fitr* (*estimated)", + "1976-11-01": "All Saints' Day", + "1976-12-01": "Eid al-Adha* (*estimated)", + "1976-12-25": "Christmas Day", + "1977-01-01": "New Year's Day", + "1977-04-11": "Easter Monday", + "1977-05-01": "Labour Day", + "1977-05-19": "Ascension Day", + "1977-05-30": "Whit Monday", + "1977-08-15": "Assumption Day", + "1977-08-16": "Independence Day", + "1977-08-17": "Independence Day Holiday", + "1977-09-14": "Eid al-Fitr* (*estimated)", + "1977-11-01": "All Saints' Day", + "1977-11-21": "Eid al-Adha* (*estimated)", + "1977-12-25": "Christmas Day", + "1978-01-01": "New Year's Day", + "1978-03-27": "Easter Monday", + "1978-05-01": "Labour Day", + "1978-05-04": "Ascension Day", + "1978-05-15": "Whit Monday", + "1978-08-15": "Assumption Day", + "1978-08-16": "Independence Day", + "1978-08-17": "Independence Day Holiday", + "1978-09-03": "Eid al-Fitr* (*estimated)", + "1978-11-01": "All Saints' Day", + "1978-11-10": "Eid al-Adha* (*estimated)", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-04-16": "Easter Monday", + "1979-05-01": "Labour Day", + "1979-05-24": "Ascension Day", + "1979-06-04": "Whit Monday", + "1979-08-15": "Assumption Day", + "1979-08-16": "Independence Day", + "1979-08-17": "Independence Day Holiday", + "1979-08-23": "Eid al-Fitr* (*estimated)", + "1979-10-31": "Eid al-Adha* (*estimated)", + "1979-11-01": "All Saints' Day", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-04-07": "Easter Monday", + "1980-05-01": "Labour Day", + "1980-05-15": "Ascension Day", + "1980-05-26": "Whit Monday", + "1980-08-12": "Eid al-Fitr* (*estimated)", + "1980-08-15": "Assumption Day", + "1980-08-16": "Independence Day", + "1980-08-17": "Independence Day Holiday", + "1980-10-19": "Eid al-Adha* (*estimated)", + "1980-11-01": "All Saints' Day", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-04-20": "Easter Monday", + "1981-05-01": "Labour Day", + "1981-05-28": "Ascension Day", + "1981-06-08": "Whit Monday", + "1981-08-01": "Eid al-Fitr* (*estimated)", + "1981-08-15": "Assumption Day", + "1981-08-16": "Independence Day", + "1981-08-17": "Independence Day Holiday", + "1981-10-08": "Eid al-Adha* (*estimated)", + "1981-11-01": "All Saints' Day", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-04-12": "Easter Monday", + "1982-05-01": "Labour Day", + "1982-05-20": "Ascension Day", + "1982-05-31": "Whit Monday", + "1982-07-21": "Eid al-Fitr* (*estimated)", + "1982-08-15": "Assumption Day", + "1982-08-16": "Independence Day", + "1982-08-17": "Independence Day Holiday", + "1982-09-27": "Eid al-Adha* (*estimated)", + "1982-11-01": "All Saints' Day", + "1982-12-25": "Christmas Day", + "1983-01-01": "New Year's Day", + "1983-04-04": "Easter Monday", + "1983-05-01": "Labour Day", + "1983-05-12": "Ascension Day", + "1983-05-23": "Whit Monday", + "1983-07-11": "Eid al-Fitr* (*estimated)", + "1983-08-15": "Assumption Day", + "1983-08-16": "Independence Day", + "1983-08-17": "Independence Day Holiday", + "1983-09-17": "Eid al-Adha* (*estimated)", + "1983-11-01": "All Saints' Day", + "1983-12-25": "Christmas Day", + "1984-01-01": "New Year's Day", + "1984-04-23": "Easter Monday", + "1984-05-01": "Labour Day", + "1984-05-31": "Ascension Day", + "1984-06-11": "Whit Monday", + "1984-06-30": "Eid al-Fitr* (*estimated)", + "1984-08-15": "Assumption Day", + "1984-08-16": "Independence Day", + "1984-08-17": "Independence Day Holiday", + "1984-09-05": "Eid al-Adha* (*estimated)", + "1984-11-01": "All Saints' Day", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-04-08": "Easter Monday", + "1985-05-01": "Labour Day", + "1985-05-16": "Ascension Day", + "1985-05-27": "Whit Monday", + "1985-06-19": "Eid al-Fitr* (*estimated)", + "1985-08-15": "Assumption Day", + "1985-08-16": "Independence Day", + "1985-08-17": "Independence Day Holiday", + "1985-08-26": "Eid al-Adha* (*estimated)", + "1985-11-01": "All Saints' Day", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-03-31": "Easter Monday", + "1986-05-01": "Labour Day", + "1986-05-08": "Ascension Day", + "1986-05-19": "Whit Monday", + "1986-06-08": "Eid al-Fitr* (*estimated)", + "1986-08-15": "Assumption Day; Eid al-Adha* (*estimated)", + "1986-08-16": "Independence Day", + "1986-08-17": "Independence Day Holiday", + "1986-11-01": "All Saints' Day", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-04-20": "Easter Monday", + "1987-05-01": "Labour Day", + "1987-05-28": "Ascension Day; Eid al-Fitr* (*estimated)", + "1987-06-08": "Whit Monday", + "1987-08-04": "Eid al-Adha* (*estimated)", + "1987-08-15": "Assumption Day", + "1987-08-16": "Independence Day", + "1987-08-17": "Independence Day Holiday", + "1987-11-01": "All Saints' Day", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-04-04": "Easter Monday", + "1988-05-01": "Labour Day", + "1988-05-12": "Ascension Day", + "1988-05-16": "Eid al-Fitr* (*estimated)", + "1988-05-23": "Whit Monday", + "1988-07-23": "Eid al-Adha* (*estimated)", + "1988-08-15": "Assumption Day", + "1988-08-16": "Independence Day", + "1988-08-17": "Independence Day Holiday", + "1988-11-01": "All Saints' Day", + "1988-12-25": "Christmas Day", + "1989-01-01": "New Year's Day", + "1989-03-27": "Easter Monday", + "1989-05-01": "Labour Day", + "1989-05-04": "Ascension Day", + "1989-05-06": "Eid al-Fitr* (*estimated)", + "1989-05-15": "Whit Monday", + "1989-07-13": "Eid al-Adha* (*estimated)", + "1989-08-15": "Assumption Day", + "1989-08-16": "Independence Day", + "1989-08-17": "Independence Day Holiday", + "1989-11-01": "All Saints' Day", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-04-16": "Easter Monday", + "1990-04-26": "Eid al-Fitr* (*estimated)", + "1990-05-01": "Labour Day", + "1990-05-24": "Ascension Day", + "1990-06-04": "Whit Monday", + "1990-07-02": "Eid al-Adha* (*estimated)", + "1990-08-15": "Assumption Day", + "1990-08-16": "Independence Day", + "1990-08-17": "Independence Day Holiday", + "1990-11-01": "All Saints' Day", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-04-01": "Easter Monday", + "1991-04-15": "Eid al-Fitr* (*estimated)", + "1991-05-01": "Labour Day", + "1991-05-09": "Ascension Day", + "1991-05-20": "Whit Monday", + "1991-06-22": "Eid al-Adha* (*estimated)", + "1991-08-15": "Assumption Day", + "1991-08-16": "Independence Day", + "1991-08-17": "Independence Day Holiday", + "1991-11-01": "All Saints' Day", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-04-04": "Eid al-Fitr* (*estimated)", + "1992-04-20": "Easter Monday", + "1992-05-01": "Labour Day", + "1992-05-28": "Ascension Day", + "1992-06-08": "Whit Monday", + "1992-06-11": "Eid al-Adha* (*estimated)", + "1992-08-15": "Assumption Day", + "1992-08-16": "Independence Day", + "1992-08-17": "Independence Day Holiday", + "1992-11-01": "All Saints' Day", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-03-24": "Eid al-Fitr* (*estimated)", + "1993-04-12": "Easter Monday", + "1993-05-01": "Labour Day", + "1993-05-20": "Ascension Day", + "1993-05-31": "Eid al-Adha* (*estimated); Whit Monday", + "1993-08-15": "Assumption Day", + "1993-08-16": "Independence Day", + "1993-08-17": "Independence Day Holiday", + "1993-11-01": "All Saints' Day", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-03-13": "Eid al-Fitr* (*estimated)", + "1994-04-04": "Easter Monday", + "1994-05-01": "Labour Day", + "1994-05-12": "Ascension Day", + "1994-05-20": "Eid al-Adha* (*estimated)", + "1994-05-23": "Whit Monday", + "1994-08-15": "Assumption Day", + "1994-08-16": "Independence Day", + "1994-08-17": "Independence Day Holiday", + "1994-11-01": "All Saints' Day", + "1994-12-25": "Christmas Day", + "1995-01-01": "New Year's Day", + "1995-03-02": "Eid al-Fitr* (*estimated)", + "1995-04-17": "Easter Monday", + "1995-05-01": "Labour Day", + "1995-05-09": "Eid al-Adha* (*estimated)", + "1995-05-25": "Ascension Day", + "1995-06-05": "Whit Monday", + "1995-08-15": "Assumption Day", + "1995-08-16": "Independence Day", + "1995-08-17": "Independence Day Holiday", + "1995-11-01": "All Saints' Day", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-02-19": "Eid al-Fitr* (*estimated)", + "1996-04-08": "Easter Monday", + "1996-04-27": "Eid al-Adha* (*estimated)", + "1996-05-01": "Labour Day", + "1996-05-16": "Ascension Day", + "1996-05-27": "Whit Monday", + "1996-08-15": "Assumption Day", + "1996-08-16": "Independence Day", + "1996-08-17": "Independence Day Holiday", + "1996-11-01": "All Saints' Day", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-02-08": "Eid al-Fitr* (*estimated)", + "1997-03-31": "Easter Monday", + "1997-04-17": "Eid al-Adha* (*estimated)", + "1997-05-01": "Labour Day", + "1997-05-08": "Ascension Day", + "1997-05-19": "Whit Monday", + "1997-08-15": "Assumption Day", + "1997-08-16": "Independence Day", + "1997-08-17": "Independence Day Holiday", + "1997-11-01": "All Saints' Day", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-01-29": "Eid al-Fitr* (*estimated)", + "1998-04-07": "Eid al-Adha* (*estimated)", + "1998-04-13": "Easter Monday", + "1998-05-01": "Labour Day", + "1998-05-21": "Ascension Day", + "1998-06-01": "Whit Monday", + "1998-08-15": "Assumption Day", + "1998-08-16": "Independence Day", + "1998-08-17": "Independence Day Holiday", + "1998-11-01": "All Saints' Day", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-01-18": "Eid al-Fitr* (*estimated)", + "1999-03-27": "Eid al-Adha* (*estimated)", + "1999-04-05": "Easter Monday", + "1999-05-01": "Labour Day", + "1999-05-13": "Ascension Day", + "1999-05-24": "Whit Monday", + "1999-08-15": "Assumption Day", + "1999-08-16": "Independence Day", + "1999-08-17": "Independence Day Holiday", + "1999-11-01": "All Saints' Day", + "1999-12-25": "Christmas Day", + "2000-01-01": "New Year's Day", + "2000-01-08": "Eid al-Fitr* (*estimated)", + "2000-03-16": "Eid al-Adha* (*estimated)", + "2000-04-24": "Easter Monday", + "2000-05-01": "Labour Day", + "2000-06-01": "Ascension Day", + "2000-06-12": "Whit Monday", + "2000-08-15": "Assumption Day", + "2000-08-16": "Independence Day", + "2000-08-17": "Independence Day Holiday", + "2000-11-01": "All Saints' Day", + "2000-12-25": "Christmas Day", + "2000-12-27": "Eid al-Fitr* (*estimated)", + "2001-01-01": "New Year's Day", + "2001-03-06": "Eid al-Adha", + "2001-04-16": "Easter Monday", + "2001-05-01": "Labour Day", + "2001-05-24": "Ascension Day", + "2001-06-04": "Whit Monday", + "2001-08-15": "Assumption Day", + "2001-08-16": "Independence Day", + "2001-08-17": "Independence Day Holiday", + "2001-11-01": "All Saints' Day", + "2001-12-17": "Eid al-Fitr", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-02-23": "Eid al-Adha", + "2002-04-01": "Easter Monday", + "2002-05-01": "Labour Day", + "2002-05-09": "Ascension Day", + "2002-05-20": "Whit Monday", + "2002-08-15": "Assumption Day", + "2002-08-16": "Independence Day", + "2002-08-17": "Independence Day Holiday", + "2002-11-01": "All Saints' Day", + "2002-12-06": "Eid al-Fitr", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-02-12": "Eid al-Adha", + "2003-04-21": "Easter Monday", + "2003-05-01": "Labour Day", + "2003-05-29": "Ascension Day", + "2003-06-09": "Whit Monday", + "2003-08-15": "Assumption Day", + "2003-08-16": "Independence Day", + "2003-08-17": "Independence Day Holiday", + "2003-11-01": "All Saints' Day", + "2003-11-26": "Eid al-Fitr", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-02-02": "Eid al-Adha", + "2004-04-12": "Easter Monday", + "2004-05-01": "Labour Day", + "2004-05-20": "Ascension Day", + "2004-05-31": "Whit Monday", + "2004-08-15": "Assumption Day", + "2004-08-16": "Independence Day", + "2004-08-17": "Independence Day Holiday", + "2004-11-01": "All Saints' Day", + "2004-11-14": "Eid al-Fitr", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-01-21": "Eid al-Adha", + "2005-03-28": "Easter Monday", + "2005-05-01": "Labour Day", + "2005-05-05": "Ascension Day", + "2005-05-16": "Whit Monday", + "2005-08-15": "Assumption Day", + "2005-08-16": "Independence Day", + "2005-08-17": "Independence Day Holiday", + "2005-11-01": "All Saints' Day", + "2005-11-04": "Eid al-Fitr", + "2005-12-25": "Christmas Day", + "2006-01-01": "New Year's Day", + "2006-01-10": "Eid al-Adha", + "2006-04-17": "Easter Monday", + "2006-05-01": "Labour Day", + "2006-05-25": "Ascension Day", + "2006-06-05": "Whit Monday", + "2006-08-15": "Assumption Day", + "2006-08-16": "Independence Day", + "2006-08-17": "Independence Day Holiday", + "2006-10-24": "Eid al-Fitr", + "2006-11-01": "All Saints' Day", + "2006-12-25": "Christmas Day", + "2006-12-31": "Eid al-Adha", + "2007-01-01": "New Year's Day", + "2007-04-09": "Easter Monday", + "2007-05-01": "Labour Day", + "2007-05-17": "Ascension Day", + "2007-05-28": "Whit Monday", + "2007-08-15": "Assumption Day", + "2007-08-16": "Independence Day", + "2007-08-17": "Independence Day Holiday", + "2007-10-13": "Eid al-Fitr", + "2007-11-01": "All Saints' Day", + "2007-12-20": "Eid al-Adha", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-03-24": "Easter Monday", + "2008-05-01": "Ascension Day; Labour Day", + "2008-05-12": "Whit Monday", + "2008-08-15": "Assumption Day", + "2008-08-16": "Independence Day", + "2008-08-17": "Independence Day Holiday", + "2008-10-02": "Eid al-Fitr", + "2008-11-01": "All Saints' Day", + "2008-12-09": "Eid al-Adha", + "2008-12-25": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-04-13": "Easter Monday", + "2009-05-01": "Labour Day", + "2009-05-21": "Ascension Day", + "2009-06-01": "Whit Monday", + "2009-08-15": "Assumption Day", + "2009-08-16": "Independence Day", + "2009-08-17": "Independence Day Holiday", + "2009-09-21": "Eid al-Fitr", + "2009-11-01": "All Saints' Day", + "2009-11-28": "Eid al-Adha", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-04-05": "Easter Monday", + "2010-05-01": "Labour Day", + "2010-05-13": "Ascension Day", + "2010-05-24": "Whit Monday", + "2010-08-15": "Assumption Day", + "2010-08-16": "Independence Day", + "2010-08-17": "Independence Day Holiday", + "2010-09-10": "Eid al-Fitr", + "2010-11-01": "All Saints' Day", + "2010-11-17": "Eid al-Adha", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-04-25": "Easter Monday", + "2011-05-01": "Labour Day", + "2011-06-02": "Ascension Day", + "2011-06-13": "Whit Monday", + "2011-08-15": "Assumption Day", + "2011-08-16": "Independence Day", + "2011-08-17": "Independence Day Holiday", + "2011-08-31": "Eid al-Fitr", + "2011-11-01": "All Saints' Day", + "2011-11-07": "Eid al-Adha", + "2011-12-25": "Christmas Day", + "2012-01-01": "New Year's Day", + "2012-04-09": "Easter Monday", + "2012-05-01": "Labour Day", + "2012-05-17": "Ascension Day", + "2012-05-28": "Whit Monday", + "2012-08-15": "Assumption Day", + "2012-08-16": "Independence Day", + "2012-08-17": "Independence Day Holiday", + "2012-08-19": "Eid al-Fitr", + "2012-10-26": "Eid al-Adha", + "2012-11-01": "All Saints' Day", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-04-01": "Easter Monday", + "2013-05-01": "Labour Day", + "2013-05-09": "Ascension Day", + "2013-05-20": "Whit Monday", + "2013-08-08": "Eid al-Fitr", + "2013-08-15": "Assumption Day", + "2013-08-16": "Independence Day", + "2013-08-17": "Independence Day Holiday", + "2013-10-15": "Eid al-Adha", + "2013-11-01": "All Saints' Day", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-04-21": "Easter Monday", + "2014-05-01": "Labour Day", + "2014-05-29": "Ascension Day", + "2014-06-09": "Whit Monday", + "2014-07-29": "Eid al-Fitr", + "2014-08-15": "Assumption Day", + "2014-08-16": "Independence Day", + "2014-08-17": "Independence Day Holiday", + "2014-10-05": "Eid al-Adha", + "2014-11-01": "All Saints' Day", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-04-06": "Easter Monday", + "2015-04-17": "Women's Rights Day", + "2015-05-01": "Labour Day", + "2015-05-14": "Ascension Day", + "2015-05-25": "Whit Monday", + "2015-07-18": "Eid al-Fitr", + "2015-08-15": "Assumption Day", + "2015-08-16": "Independence Day", + "2015-08-17": "Independence Day Holiday", + "2015-09-24": "Eid al-Adha", + "2015-11-01": "All Saints' Day", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-03-28": "Easter Monday", + "2016-04-17": "Women's Rights Day", + "2016-05-01": "Labour Day", + "2016-05-05": "Ascension Day", + "2016-05-16": "Whit Monday", + "2016-07-07": "Eid al-Fitr", + "2016-08-15": "Assumption Day", + "2016-08-16": "Independence Day", + "2016-08-17": "Independence Day Holiday", + "2016-09-13": "Eid al-Adha", + "2016-11-01": "All Saints' Day", + "2016-12-25": "Christmas Day", + "2017-01-01": "New Year's Day", + "2017-04-17": "Easter Monday; Women's Rights Day", + "2017-05-01": "Labour Day", + "2017-05-25": "Ascension Day", + "2017-06-05": "Whit Monday", + "2017-06-26": "Eid al-Fitr", + "2017-08-15": "Assumption Day", + "2017-08-16": "Independence Day", + "2017-08-17": "Independence Day Holiday", + "2017-09-02": "Eid al-Adha", + "2017-11-01": "All Saints' Day", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-04-02": "Easter Monday", + "2018-04-17": "Women's Rights Day", + "2018-05-01": "Labour Day", + "2018-05-10": "Ascension Day", + "2018-05-21": "Whit Monday", + "2018-06-15": "Eid al-Fitr", + "2018-08-15": "Assumption Day", + "2018-08-16": "Independence Day", + "2018-08-17": "Independence Day Holiday", + "2018-08-22": "Eid al-Adha", + "2018-11-01": "All Saints' Day", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-04-17": "Women's Rights Day", + "2019-04-22": "Easter Monday", + "2019-05-01": "Labour Day", + "2019-05-30": "Ascension Day", + "2019-06-04": "Eid al-Fitr", + "2019-06-10": "Whit Monday", + "2019-08-11": "Eid al-Adha", + "2019-08-15": "Assumption Day", + "2019-08-16": "Independence Day", + "2019-08-17": "Independence Day Holiday", + "2019-11-01": "All Saints' Day", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-04-13": "Easter Monday", + "2020-04-17": "Women's Rights Day", + "2020-05-01": "Labour Day", + "2020-05-21": "Ascension Day", + "2020-05-24": "Eid al-Fitr", + "2020-06-01": "Whit Monday", + "2020-07-31": "Eid al-Adha", + "2020-08-15": "Assumption Day", + "2020-08-16": "Independence Day", + "2020-08-17": "Independence Day Holiday", + "2020-11-01": "All Saints' Day", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-04-05": "Easter Monday", + "2021-04-17": "Women's Rights Day", + "2021-05-01": "Labour Day", + "2021-05-13": "Ascension Day; Eid al-Fitr", + "2021-05-24": "Whit Monday", + "2021-07-20": "Eid al-Adha", + "2021-08-15": "Assumption Day", + "2021-08-16": "Independence Day", + "2021-08-17": "Independence Day Holiday", + "2021-11-01": "All Saints' Day", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-04-17": "Women's Rights Day", + "2022-04-18": "Easter Monday", + "2022-05-01": "Labour Day", + "2022-05-02": "Eid al-Fitr", + "2022-05-26": "Ascension Day", + "2022-06-06": "Whit Monday", + "2022-07-09": "Eid al-Adha", + "2022-08-15": "Assumption Day", + "2022-08-16": "Independence Day", + "2022-08-17": "Independence Day Holiday", + "2022-11-01": "All Saints' Day", + "2022-12-25": "Christmas Day", + "2023-01-01": "New Year's Day", + "2023-04-10": "Easter Monday", + "2023-04-17": "Women's Rights Day", + "2023-04-21": "Eid al-Fitr", + "2023-05-01": "Labour Day", + "2023-05-18": "Ascension Day", + "2023-05-29": "Whit Monday", + "2023-06-28": "Eid al-Adha", + "2023-08-15": "Assumption Day", + "2023-08-16": "Independence Day", + "2023-08-17": "Independence Day Holiday", + "2023-11-01": "All Saints' Day", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-04-01": "Easter Monday", + "2024-04-10": "Eid al-Fitr* (*estimated)", + "2024-04-17": "Women's Rights Day", + "2024-05-01": "Labour Day", + "2024-05-09": "Ascension Day", + "2024-05-20": "Whit Monday", + "2024-06-16": "Eid al-Adha* (*estimated)", + "2024-08-15": "Assumption Day", + "2024-08-16": "Independence Day", + "2024-08-17": "Independence Day Holiday", + "2024-11-01": "All Saints' Day", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-03-30": "Eid al-Fitr* (*estimated)", + "2025-04-17": "Women's Rights Day", + "2025-04-21": "Easter Monday", + "2025-05-01": "Labour Day", + "2025-05-29": "Ascension Day", + "2025-06-06": "Eid al-Adha* (*estimated)", + "2025-06-09": "Whit Monday", + "2025-08-15": "Assumption Day", + "2025-08-16": "Independence Day", + "2025-08-17": "Independence Day Holiday", + "2025-11-01": "All Saints' Day", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-03-20": "Eid al-Fitr* (*estimated)", + "2026-04-06": "Easter Monday", + "2026-04-17": "Women's Rights Day", + "2026-05-01": "Labour Day", + "2026-05-14": "Ascension Day", + "2026-05-25": "Whit Monday", + "2026-05-27": "Eid al-Adha* (*estimated)", + "2026-08-15": "Assumption Day", + "2026-08-16": "Independence Day", + "2026-08-17": "Independence Day Holiday", + "2026-11-01": "All Saints' Day", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-03-09": "Eid al-Fitr* (*estimated)", + "2027-03-29": "Easter Monday", + "2027-04-17": "Women's Rights Day", + "2027-05-01": "Labour Day", + "2027-05-06": "Ascension Day", + "2027-05-16": "Eid al-Adha* (*estimated)", + "2027-05-17": "Whit Monday", + "2027-08-15": "Assumption Day", + "2027-08-16": "Independence Day", + "2027-08-17": "Independence Day Holiday", + "2027-11-01": "All Saints' Day", + "2027-12-25": "Christmas Day", + "2028-01-01": "New Year's Day", + "2028-02-26": "Eid al-Fitr* (*estimated)", + "2028-04-17": "Easter Monday; Women's Rights Day", + "2028-05-01": "Labour Day", + "2028-05-05": "Eid al-Adha* (*estimated)", + "2028-05-25": "Ascension Day", + "2028-06-05": "Whit Monday", + "2028-08-15": "Assumption Day", + "2028-08-16": "Independence Day", + "2028-08-17": "Independence Day Holiday", + "2028-11-01": "All Saints' Day", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-02-14": "Eid al-Fitr* (*estimated)", + "2029-04-02": "Easter Monday", + "2029-04-17": "Women's Rights Day", + "2029-04-24": "Eid al-Adha* (*estimated)", + "2029-05-01": "Labour Day", + "2029-05-10": "Ascension Day", + "2029-05-21": "Whit Monday", + "2029-08-15": "Assumption Day", + "2029-08-16": "Independence Day", + "2029-08-17": "Independence Day Holiday", + "2029-11-01": "All Saints' Day", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-02-04": "Eid al-Fitr* (*estimated)", + "2030-04-13": "Eid al-Adha* (*estimated)", + "2030-04-17": "Women's Rights Day", + "2030-04-22": "Easter Monday", + "2030-05-01": "Labour Day", + "2030-05-30": "Ascension Day", + "2030-06-10": "Whit Monday", + "2030-08-15": "Assumption Day", + "2030-08-16": "Independence Day", + "2030-08-17": "Independence Day Holiday", + "2030-11-01": "All Saints' Day", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-01-24": "Eid al-Fitr* (*estimated)", + "2031-04-02": "Eid al-Adha* (*estimated)", + "2031-04-14": "Easter Monday", + "2031-04-17": "Women's Rights Day", + "2031-05-01": "Labour Day", + "2031-05-22": "Ascension Day", + "2031-06-02": "Whit Monday", + "2031-08-15": "Assumption Day", + "2031-08-16": "Independence Day", + "2031-08-17": "Independence Day Holiday", + "2031-11-01": "All Saints' Day", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-01-14": "Eid al-Fitr* (*estimated)", + "2032-03-22": "Eid al-Adha* (*estimated)", + "2032-03-29": "Easter Monday", + "2032-04-17": "Women's Rights Day", + "2032-05-01": "Labour Day", + "2032-05-06": "Ascension Day", + "2032-05-17": "Whit Monday", + "2032-08-15": "Assumption Day", + "2032-08-16": "Independence Day", + "2032-08-17": "Independence Day Holiday", + "2032-11-01": "All Saints' Day", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "Eid al-Fitr* (*estimated)", + "2033-03-11": "Eid al-Adha* (*estimated)", + "2033-04-17": "Women's Rights Day", + "2033-04-18": "Easter Monday", + "2033-05-01": "Labour Day", + "2033-05-26": "Ascension Day", + "2033-06-06": "Whit Monday", + "2033-08-15": "Assumption Day", + "2033-08-16": "Independence Day", + "2033-08-17": "Independence Day Holiday", + "2033-11-01": "All Saints' Day", + "2033-12-23": "Eid al-Fitr* (*estimated)", + "2033-12-25": "Christmas Day", + "2034-01-01": "New Year's Day", + "2034-03-01": "Eid al-Adha* (*estimated)", + "2034-04-10": "Easter Monday", + "2034-04-17": "Women's Rights Day", + "2034-05-01": "Labour Day", + "2034-05-18": "Ascension Day", + "2034-05-29": "Whit Monday", + "2034-08-15": "Assumption Day", + "2034-08-16": "Independence Day", + "2034-08-17": "Independence Day Holiday", + "2034-11-01": "All Saints' Day", + "2034-12-12": "Eid al-Fitr* (*estimated)", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-02-18": "Eid al-Adha* (*estimated)", + "2035-03-26": "Easter Monday", + "2035-04-17": "Women's Rights Day", + "2035-05-01": "Labour Day", + "2035-05-03": "Ascension Day", + "2035-05-14": "Whit Monday", + "2035-08-15": "Assumption Day", + "2035-08-16": "Independence Day", + "2035-08-17": "Independence Day Holiday", + "2035-11-01": "All Saints' Day", + "2035-12-01": "Eid al-Fitr* (*estimated)", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-02-07": "Eid al-Adha* (*estimated)", + "2036-04-14": "Easter Monday", + "2036-04-17": "Women's Rights Day", + "2036-05-01": "Labour Day", + "2036-05-22": "Ascension Day", + "2036-06-02": "Whit Monday", + "2036-08-15": "Assumption Day", + "2036-08-16": "Independence Day", + "2036-08-17": "Independence Day Holiday", + "2036-11-01": "All Saints' Day", + "2036-11-19": "Eid al-Fitr* (*estimated)", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-26": "Eid al-Adha* (*estimated)", + "2037-04-06": "Easter Monday", + "2037-04-17": "Women's Rights Day", + "2037-05-01": "Labour Day", + "2037-05-14": "Ascension Day", + "2037-05-25": "Whit Monday", + "2037-08-15": "Assumption Day", + "2037-08-16": "Independence Day", + "2037-08-17": "Independence Day Holiday", + "2037-11-01": "All Saints' Day", + "2037-11-08": "Eid al-Fitr* (*estimated)", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-01-16": "Eid al-Adha* (*estimated)", + "2038-04-17": "Women's Rights Day", + "2038-04-26": "Easter Monday", + "2038-05-01": "Labour Day", + "2038-06-03": "Ascension Day", + "2038-06-14": "Whit Monday", + "2038-08-15": "Assumption Day", + "2038-08-16": "Independence Day", + "2038-08-17": "Independence Day Holiday", + "2038-10-29": "Eid al-Fitr* (*estimated)", + "2038-11-01": "All Saints' Day", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-01-05": "Eid al-Adha* (*estimated)", + "2039-04-11": "Easter Monday", + "2039-04-17": "Women's Rights Day", + "2039-05-01": "Labour Day", + "2039-05-19": "Ascension Day", + "2039-05-30": "Whit Monday", + "2039-08-15": "Assumption Day", + "2039-08-16": "Independence Day", + "2039-08-17": "Independence Day Holiday", + "2039-10-19": "Eid al-Fitr* (*estimated)", + "2039-11-01": "All Saints' Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Eid al-Adha* (*estimated)", + "2040-01-01": "New Year's Day", + "2040-04-02": "Easter Monday", + "2040-04-17": "Women's Rights Day", + "2040-05-01": "Labour Day", + "2040-05-10": "Ascension Day", + "2040-05-21": "Whit Monday", + "2040-08-15": "Assumption Day", + "2040-08-16": "Independence Day", + "2040-08-17": "Independence Day Holiday", + "2040-10-07": "Eid al-Fitr* (*estimated)", + "2040-11-01": "All Saints' Day", + "2040-12-14": "Eid al-Adha* (*estimated)", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-04-17": "Women's Rights Day", + "2041-04-22": "Easter Monday", + "2041-05-01": "Labour Day", + "2041-05-30": "Ascension Day", + "2041-06-10": "Whit Monday", + "2041-08-15": "Assumption Day", + "2041-08-16": "Independence Day", + "2041-08-17": "Independence Day Holiday", + "2041-09-26": "Eid al-Fitr* (*estimated)", + "2041-11-01": "All Saints' Day", + "2041-12-04": "Eid al-Adha* (*estimated)", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-04-07": "Easter Monday", + "2042-04-17": "Women's Rights Day", + "2042-05-01": "Labour Day", + "2042-05-15": "Ascension Day", + "2042-05-26": "Whit Monday", + "2042-08-15": "Assumption Day", + "2042-08-16": "Independence Day", + "2042-08-17": "Independence Day Holiday", + "2042-09-15": "Eid al-Fitr* (*estimated)", + "2042-11-01": "All Saints' Day", + "2042-11-23": "Eid al-Adha* (*estimated)", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-03-30": "Easter Monday", + "2043-04-17": "Women's Rights Day", + "2043-05-01": "Labour Day", + "2043-05-07": "Ascension Day", + "2043-05-18": "Whit Monday", + "2043-08-15": "Assumption Day", + "2043-08-16": "Independence Day", + "2043-08-17": "Independence Day Holiday", + "2043-09-04": "Eid al-Fitr* (*estimated)", + "2043-11-01": "All Saints' Day", + "2043-11-12": "Eid al-Adha* (*estimated)", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-04-17": "Women's Rights Day", + "2044-04-18": "Easter Monday", + "2044-05-01": "Labour Day", + "2044-05-26": "Ascension Day", + "2044-06-06": "Whit Monday", + "2044-08-15": "Assumption Day", + "2044-08-16": "Independence Day", + "2044-08-17": "Independence Day Holiday", + "2044-08-24": "Eid al-Fitr* (*estimated)", + "2044-10-31": "Eid al-Adha* (*estimated)", + "2044-11-01": "All Saints' Day", + "2044-12-25": "Christmas Day", + "2045-01-01": "New Year's Day", + "2045-04-10": "Easter Monday", + "2045-04-17": "Women's Rights Day", + "2045-05-01": "Labour Day", + "2045-05-18": "Ascension Day", + "2045-05-29": "Whit Monday", + "2045-08-14": "Eid al-Fitr* (*estimated)", + "2045-08-15": "Assumption Day", + "2045-08-16": "Independence Day", + "2045-08-17": "Independence Day Holiday", + "2045-10-21": "Eid al-Adha* (*estimated)", + "2045-11-01": "All Saints' Day", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-03-26": "Easter Monday", + "2046-04-17": "Women's Rights Day", + "2046-05-01": "Labour Day", + "2046-05-03": "Ascension Day", + "2046-05-14": "Whit Monday", + "2046-08-03": "Eid al-Fitr* (*estimated)", + "2046-08-15": "Assumption Day", + "2046-08-16": "Independence Day", + "2046-08-17": "Independence Day Holiday", + "2046-10-10": "Eid al-Adha* (*estimated)", + "2046-11-01": "All Saints' Day", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-04-15": "Easter Monday", + "2047-04-17": "Women's Rights Day", + "2047-05-01": "Labour Day", + "2047-05-23": "Ascension Day", + "2047-06-03": "Whit Monday", + "2047-07-24": "Eid al-Fitr* (*estimated)", + "2047-08-15": "Assumption Day", + "2047-08-16": "Independence Day", + "2047-08-17": "Independence Day Holiday", + "2047-09-30": "Eid al-Adha* (*estimated)", + "2047-11-01": "All Saints' Day", + "2047-12-25": "Christmas Day", + "2048-01-01": "New Year's Day", + "2048-04-06": "Easter Monday", + "2048-04-17": "Women's Rights Day", + "2048-05-01": "Labour Day", + "2048-05-14": "Ascension Day", + "2048-05-25": "Whit Monday", + "2048-07-12": "Eid al-Fitr* (*estimated)", + "2048-08-15": "Assumption Day", + "2048-08-16": "Independence Day", + "2048-08-17": "Independence Day Holiday", + "2048-09-19": "Eid al-Adha* (*estimated)", + "2048-11-01": "All Saints' Day", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-04-17": "Women's Rights Day", + "2049-04-19": "Easter Monday", + "2049-05-01": "Labour Day", + "2049-05-27": "Ascension Day", + "2049-06-07": "Whit Monday", + "2049-07-01": "Eid al-Fitr* (*estimated)", + "2049-08-15": "Assumption Day", + "2049-08-16": "Independence Day", + "2049-08-17": "Independence Day Holiday", + "2049-09-08": "Eid al-Adha* (*estimated)", + "2049-11-01": "All Saints' Day", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-04-11": "Easter Monday", + "2050-04-17": "Women's Rights Day", + "2050-05-01": "Labour Day", + "2050-05-19": "Ascension Day", + "2050-05-30": "Whit Monday", + "2050-06-20": "Eid al-Fitr* (*estimated)", + "2050-08-15": "Assumption Day", + "2050-08-16": "Independence Day", + "2050-08-17": "Independence Day Holiday", + "2050-08-28": "Eid al-Adha* (*estimated)", + "2050-11-01": "All Saints' Day", + "2050-12-25": "Christmas Day" +} diff --git a/snapshots/countries/GB.json b/snapshots/countries/GB.json new file mode 100644 index 000000000..093daf1b2 --- /dev/null +++ b/snapshots/countries/GB.json @@ -0,0 +1,1384 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-02": "New Year Holiday; New Year's Day (Observed)", + "1950-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "1950-03-17": "St. Patrick's Day", + "1950-04-07": "Good Friday", + "1950-04-10": "Easter Monday", + "1950-07-12": "Battle of the Boyne", + "1950-08-07": "Summer Bank Holiday", + "1950-12-25": "Christmas Day", + "1950-12-26": "Boxing Day", + "1951-01-01": "New Year's Day", + "1951-01-02": "New Year Holiday", + "1951-03-17": "St. Patrick's Day", + "1951-03-19": "St. Patrick's Day (Observed)", + "1951-03-23": "Good Friday", + "1951-03-26": "Easter Monday", + "1951-07-12": "Battle of the Boyne", + "1951-08-06": "Summer Bank Holiday", + "1951-12-25": "Christmas Day", + "1951-12-26": "Boxing Day", + "1952-01-01": "New Year's Day", + "1952-01-02": "New Year Holiday", + "1952-03-17": "St. Patrick's Day", + "1952-04-11": "Good Friday", + "1952-04-14": "Easter Monday", + "1952-07-12": "Battle of the Boyne", + "1952-07-14": "Battle of the Boyne (Observed)", + "1952-08-04": "Summer Bank Holiday", + "1952-12-25": "Christmas Day", + "1952-12-26": "Boxing Day", + "1953-01-01": "New Year's Day", + "1953-01-02": "New Year Holiday", + "1953-03-17": "St. Patrick's Day", + "1953-04-03": "Good Friday", + "1953-04-06": "Easter Monday", + "1953-07-12": "Battle of the Boyne", + "1953-07-13": "Battle of the Boyne (Observed)", + "1953-08-03": "Summer Bank Holiday", + "1953-12-25": "Christmas Day", + "1953-12-26": "Boxing Day", + "1953-12-28": "Boxing Day (Observed)", + "1954-01-01": "New Year's Day", + "1954-01-02": "New Year Holiday", + "1954-01-04": "New Year Holiday (Observed)", + "1954-03-17": "St. Patrick's Day", + "1954-04-16": "Good Friday", + "1954-04-19": "Easter Monday", + "1954-07-12": "Battle of the Boyne", + "1954-08-02": "Summer Bank Holiday", + "1954-12-25": "Christmas Day", + "1954-12-26": "Boxing Day", + "1954-12-27": "Christmas Day (Observed)", + "1954-12-28": "Boxing Day (Observed)", + "1955-01-01": "New Year's Day", + "1955-01-02": "New Year Holiday", + "1955-01-03": "New Year's Day (Observed)", + "1955-01-04": "New Year Holiday (Observed)", + "1955-03-17": "St. Patrick's Day", + "1955-04-08": "Good Friday", + "1955-04-11": "Easter Monday", + "1955-07-12": "Battle of the Boyne", + "1955-08-01": "Summer Bank Holiday", + "1955-12-25": "Christmas Day", + "1955-12-26": "Boxing Day; Christmas Day (Observed)", + "1955-12-27": "Christmas Day (Observed)", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year Holiday; New Year's Day (Observed)", + "1956-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "1956-03-17": "St. Patrick's Day", + "1956-03-19": "St. Patrick's Day (Observed)", + "1956-03-30": "Good Friday", + "1956-04-02": "Easter Monday", + "1956-07-12": "Battle of the Boyne", + "1956-08-06": "Summer Bank Holiday", + "1956-12-25": "Christmas Day", + "1956-12-26": "Boxing Day", + "1957-01-01": "New Year's Day", + "1957-01-02": "New Year Holiday", + "1957-03-17": "St. Patrick's Day", + "1957-03-18": "St. Patrick's Day (Observed)", + "1957-04-19": "Good Friday", + "1957-04-22": "Easter Monday", + "1957-07-12": "Battle of the Boyne", + "1957-08-05": "Summer Bank Holiday", + "1957-12-25": "Christmas Day", + "1957-12-26": "Boxing Day", + "1958-01-01": "New Year's Day", + "1958-01-02": "New Year Holiday", + "1958-03-17": "St. Patrick's Day", + "1958-04-04": "Good Friday", + "1958-04-07": "Easter Monday", + "1958-07-12": "Battle of the Boyne", + "1958-07-14": "Battle of the Boyne (Observed)", + "1958-08-04": "Summer Bank Holiday", + "1958-12-25": "Christmas Day", + "1958-12-26": "Boxing Day", + "1959-01-01": "New Year's Day", + "1959-01-02": "New Year Holiday", + "1959-03-17": "St. Patrick's Day", + "1959-03-27": "Good Friday", + "1959-03-30": "Easter Monday", + "1959-07-12": "Battle of the Boyne", + "1959-07-13": "Battle of the Boyne (Observed)", + "1959-08-03": "Summer Bank Holiday", + "1959-12-25": "Christmas Day", + "1959-12-26": "Boxing Day", + "1959-12-28": "Boxing Day (Observed)", + "1960-01-01": "New Year's Day", + "1960-01-02": "New Year Holiday", + "1960-01-04": "New Year Holiday (Observed)", + "1960-03-17": "St. Patrick's Day", + "1960-04-15": "Good Friday", + "1960-04-18": "Easter Monday", + "1960-07-12": "Battle of the Boyne", + "1960-08-01": "Summer Bank Holiday", + "1960-12-25": "Christmas Day", + "1960-12-26": "Boxing Day; Christmas Day (Observed)", + "1960-12-27": "Christmas Day (Observed)", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year Holiday; New Year's Day (Observed)", + "1961-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "1961-03-17": "St. Patrick's Day", + "1961-03-31": "Good Friday", + "1961-04-03": "Easter Monday", + "1961-07-12": "Battle of the Boyne", + "1961-08-07": "Summer Bank Holiday", + "1961-12-25": "Christmas Day", + "1961-12-26": "Boxing Day", + "1962-01-01": "New Year's Day", + "1962-01-02": "New Year Holiday", + "1962-03-17": "St. Patrick's Day", + "1962-03-19": "St. Patrick's Day (Observed)", + "1962-04-20": "Good Friday", + "1962-04-23": "Easter Monday", + "1962-07-12": "Battle of the Boyne", + "1962-08-06": "Summer Bank Holiday", + "1962-12-25": "Christmas Day", + "1962-12-26": "Boxing Day", + "1963-01-01": "New Year's Day", + "1963-01-02": "New Year Holiday", + "1963-03-17": "St. Patrick's Day", + "1963-03-18": "St. Patrick's Day (Observed)", + "1963-04-12": "Good Friday", + "1963-04-15": "Easter Monday", + "1963-07-12": "Battle of the Boyne", + "1963-08-05": "Summer Bank Holiday", + "1963-12-25": "Christmas Day", + "1963-12-26": "Boxing Day", + "1964-01-01": "New Year's Day", + "1964-01-02": "New Year Holiday", + "1964-03-17": "St. Patrick's Day", + "1964-03-27": "Good Friday", + "1964-03-30": "Easter Monday", + "1964-07-12": "Battle of the Boyne", + "1964-07-13": "Battle of the Boyne (Observed)", + "1964-08-03": "Summer Bank Holiday", + "1964-12-25": "Christmas Day", + "1964-12-26": "Boxing Day", + "1964-12-28": "Boxing Day (Observed)", + "1965-01-01": "New Year's Day", + "1965-01-02": "New Year Holiday", + "1965-01-04": "New Year Holiday (Observed)", + "1965-03-17": "St. Patrick's Day", + "1965-04-16": "Good Friday", + "1965-04-19": "Easter Monday", + "1965-07-12": "Battle of the Boyne", + "1965-08-02": "Summer Bank Holiday", + "1965-12-25": "Christmas Day", + "1965-12-26": "Boxing Day", + "1965-12-27": "Christmas Day (Observed)", + "1965-12-28": "Boxing Day (Observed)", + "1966-01-01": "New Year's Day", + "1966-01-02": "New Year Holiday", + "1966-01-03": "New Year's Day (Observed)", + "1966-01-04": "New Year Holiday (Observed)", + "1966-03-17": "St. Patrick's Day", + "1966-04-08": "Good Friday", + "1966-04-11": "Easter Monday", + "1966-07-12": "Battle of the Boyne", + "1966-08-01": "Summer Bank Holiday", + "1966-12-25": "Christmas Day", + "1966-12-26": "Boxing Day; Christmas Day (Observed)", + "1966-12-27": "Christmas Day (Observed)", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year Holiday; New Year's Day (Observed)", + "1967-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "1967-03-17": "St. Patrick's Day", + "1967-03-24": "Good Friday", + "1967-03-27": "Easter Monday", + "1967-07-12": "Battle of the Boyne", + "1967-08-07": "Summer Bank Holiday", + "1967-12-25": "Christmas Day", + "1967-12-26": "Boxing Day", + "1968-01-01": "New Year's Day", + "1968-01-02": "New Year Holiday", + "1968-03-17": "St. Patrick's Day", + "1968-03-18": "St. Patrick's Day (Observed)", + "1968-04-12": "Good Friday", + "1968-04-15": "Easter Monday", + "1968-07-12": "Battle of the Boyne", + "1968-08-05": "Summer Bank Holiday", + "1968-12-25": "Christmas Day", + "1968-12-26": "Boxing Day", + "1969-01-01": "New Year's Day", + "1969-01-02": "New Year Holiday", + "1969-03-17": "St. Patrick's Day", + "1969-04-04": "Good Friday", + "1969-04-07": "Easter Monday", + "1969-07-12": "Battle of the Boyne", + "1969-07-14": "Battle of the Boyne (Observed)", + "1969-08-04": "Summer Bank Holiday", + "1969-12-25": "Christmas Day", + "1969-12-26": "Boxing Day", + "1970-01-01": "New Year's Day", + "1970-01-02": "New Year Holiday", + "1970-03-17": "St. Patrick's Day", + "1970-03-27": "Good Friday", + "1970-03-30": "Easter Monday", + "1970-07-12": "Battle of the Boyne", + "1970-07-13": "Battle of the Boyne (Observed)", + "1970-08-03": "Summer Bank Holiday", + "1970-12-25": "Christmas Day", + "1970-12-26": "Boxing Day", + "1970-12-28": "Boxing Day (Observed)", + "1971-01-01": "New Year's Day", + "1971-01-02": "New Year Holiday", + "1971-01-04": "New Year Holiday (Observed)", + "1971-03-17": "St. Patrick's Day", + "1971-04-09": "Good Friday", + "1971-04-12": "Easter Monday", + "1971-05-31": "Spring Bank Holiday", + "1971-07-12": "Battle of the Boyne", + "1971-08-02": "Summer Bank Holiday", + "1971-08-30": "Late Summer Bank Holiday", + "1971-12-25": "Christmas Day", + "1971-12-26": "Boxing Day", + "1971-12-27": "Christmas Day (Observed)", + "1971-12-28": "Boxing Day (Observed)", + "1972-01-01": "New Year's Day", + "1972-01-02": "New Year Holiday", + "1972-01-03": "New Year's Day (Observed)", + "1972-01-04": "New Year Holiday (Observed)", + "1972-03-17": "St. Patrick's Day", + "1972-03-31": "Good Friday", + "1972-04-03": "Easter Monday", + "1972-05-29": "Spring Bank Holiday", + "1972-07-12": "Battle of the Boyne", + "1972-08-07": "Summer Bank Holiday", + "1972-08-28": "Late Summer Bank Holiday", + "1972-12-25": "Christmas Day", + "1972-12-26": "Boxing Day", + "1973-01-01": "New Year's Day", + "1973-01-02": "New Year Holiday", + "1973-03-17": "St. Patrick's Day", + "1973-03-19": "St. Patrick's Day (Observed)", + "1973-04-20": "Good Friday", + "1973-04-23": "Easter Monday", + "1973-05-28": "Spring Bank Holiday", + "1973-07-12": "Battle of the Boyne", + "1973-08-06": "Summer Bank Holiday", + "1973-08-27": "Late Summer Bank Holiday", + "1973-12-25": "Christmas Day", + "1973-12-26": "Boxing Day", + "1974-01-01": "New Year's Day", + "1974-01-02": "New Year Holiday", + "1974-03-17": "St. Patrick's Day", + "1974-03-18": "St. Patrick's Day (Observed)", + "1974-04-12": "Good Friday", + "1974-04-15": "Easter Monday", + "1974-05-27": "Spring Bank Holiday", + "1974-07-12": "Battle of the Boyne", + "1974-08-05": "Summer Bank Holiday", + "1974-08-26": "Late Summer Bank Holiday", + "1974-12-25": "Christmas Day", + "1974-12-26": "Boxing Day", + "1975-01-01": "New Year's Day", + "1975-01-02": "New Year Holiday", + "1975-03-17": "St. Patrick's Day", + "1975-03-28": "Good Friday", + "1975-03-31": "Easter Monday", + "1975-05-26": "Spring Bank Holiday", + "1975-07-12": "Battle of the Boyne", + "1975-07-14": "Battle of the Boyne (Observed)", + "1975-08-04": "Summer Bank Holiday", + "1975-08-25": "Late Summer Bank Holiday", + "1975-12-25": "Christmas Day", + "1975-12-26": "Boxing Day", + "1976-01-01": "New Year's Day", + "1976-01-02": "New Year Holiday", + "1976-03-17": "St. Patrick's Day", + "1976-04-16": "Good Friday", + "1976-04-19": "Easter Monday", + "1976-05-31": "Spring Bank Holiday", + "1976-07-12": "Battle of the Boyne", + "1976-08-02": "Summer Bank Holiday", + "1976-08-30": "Late Summer Bank Holiday", + "1976-12-25": "Christmas Day", + "1976-12-26": "Boxing Day", + "1976-12-27": "Christmas Day (Observed)", + "1976-12-28": "Boxing Day (Observed)", + "1977-01-01": "New Year's Day", + "1977-01-02": "New Year Holiday", + "1977-01-03": "New Year's Day (Observed)", + "1977-01-04": "New Year Holiday (Observed)", + "1977-03-17": "St. Patrick's Day", + "1977-04-08": "Good Friday", + "1977-04-11": "Easter Monday", + "1977-05-30": "Spring Bank Holiday", + "1977-06-07": "Silver Jubilee of Elizabeth II", + "1977-07-12": "Battle of the Boyne", + "1977-08-01": "Summer Bank Holiday", + "1977-08-29": "Late Summer Bank Holiday", + "1977-12-25": "Christmas Day", + "1977-12-26": "Boxing Day", + "1977-12-27": "Christmas Day (Observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year Holiday; New Year's Day (Observed)", + "1978-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "1978-03-17": "St. Patrick's Day", + "1978-03-24": "Good Friday", + "1978-03-27": "Easter Monday", + "1978-05-01": "May Day", + "1978-05-29": "Spring Bank Holiday", + "1978-07-12": "Battle of the Boyne", + "1978-08-07": "Summer Bank Holiday", + "1978-08-28": "Late Summer Bank Holiday", + "1978-12-25": "Christmas Day", + "1978-12-26": "Boxing Day", + "1979-01-01": "New Year's Day", + "1979-01-02": "New Year Holiday", + "1979-03-17": "St. Patrick's Day", + "1979-03-19": "St. Patrick's Day (Observed)", + "1979-04-13": "Good Friday", + "1979-04-16": "Easter Monday", + "1979-05-07": "May Day", + "1979-05-28": "Spring Bank Holiday", + "1979-07-12": "Battle of the Boyne", + "1979-08-06": "Summer Bank Holiday", + "1979-08-27": "Late Summer Bank Holiday", + "1979-12-25": "Christmas Day", + "1979-12-26": "Boxing Day", + "1980-01-01": "New Year's Day", + "1980-01-02": "New Year Holiday", + "1980-03-17": "St. Patrick's Day", + "1980-04-04": "Good Friday", + "1980-04-07": "Easter Monday", + "1980-05-05": "May Day", + "1980-05-26": "Spring Bank Holiday", + "1980-07-12": "Battle of the Boyne", + "1980-07-14": "Battle of the Boyne (Observed)", + "1980-08-04": "Summer Bank Holiday", + "1980-08-25": "Late Summer Bank Holiday", + "1980-12-25": "Christmas Day", + "1980-12-26": "Boxing Day", + "1981-01-01": "New Year's Day", + "1981-01-02": "New Year Holiday", + "1981-03-17": "St. Patrick's Day", + "1981-04-17": "Good Friday", + "1981-04-20": "Easter Monday", + "1981-05-04": "May Day", + "1981-05-25": "Spring Bank Holiday", + "1981-07-12": "Battle of the Boyne", + "1981-07-13": "Battle of the Boyne (Observed)", + "1981-07-29": "Wedding of Charles and Diana", + "1981-08-03": "Summer Bank Holiday", + "1981-08-31": "Late Summer Bank Holiday", + "1981-12-25": "Christmas Day", + "1981-12-26": "Boxing Day", + "1981-12-28": "Boxing Day (Observed)", + "1982-01-01": "New Year's Day", + "1982-01-02": "New Year Holiday", + "1982-01-04": "New Year Holiday (Observed)", + "1982-03-17": "St. Patrick's Day", + "1982-04-09": "Good Friday", + "1982-04-12": "Easter Monday", + "1982-05-03": "May Day", + "1982-05-31": "Spring Bank Holiday", + "1982-07-12": "Battle of the Boyne", + "1982-08-02": "Summer Bank Holiday", + "1982-08-30": "Late Summer Bank Holiday", + "1982-12-25": "Christmas Day", + "1982-12-26": "Boxing Day", + "1982-12-27": "Christmas Day (Observed)", + "1982-12-28": "Boxing Day (Observed)", + "1983-01-01": "New Year's Day", + "1983-01-02": "New Year Holiday", + "1983-01-03": "New Year's Day (Observed)", + "1983-01-04": "New Year Holiday (Observed)", + "1983-03-17": "St. Patrick's Day", + "1983-04-01": "Good Friday", + "1983-04-04": "Easter Monday", + "1983-05-02": "May Day", + "1983-05-30": "Spring Bank Holiday", + "1983-07-12": "Battle of the Boyne", + "1983-08-01": "Summer Bank Holiday", + "1983-08-29": "Late Summer Bank Holiday", + "1983-12-25": "Christmas Day", + "1983-12-26": "Boxing Day", + "1983-12-27": "Christmas Day (Observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year Holiday; New Year's Day (Observed)", + "1984-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "1984-03-17": "St. Patrick's Day", + "1984-03-19": "St. Patrick's Day (Observed)", + "1984-04-20": "Good Friday", + "1984-04-23": "Easter Monday", + "1984-05-07": "May Day", + "1984-05-28": "Spring Bank Holiday", + "1984-07-12": "Battle of the Boyne", + "1984-08-06": "Summer Bank Holiday", + "1984-08-27": "Late Summer Bank Holiday", + "1984-12-25": "Christmas Day", + "1984-12-26": "Boxing Day", + "1985-01-01": "New Year's Day", + "1985-01-02": "New Year Holiday", + "1985-03-17": "St. Patrick's Day", + "1985-03-18": "St. Patrick's Day (Observed)", + "1985-04-05": "Good Friday", + "1985-04-08": "Easter Monday", + "1985-05-06": "May Day", + "1985-05-27": "Spring Bank Holiday", + "1985-07-12": "Battle of the Boyne", + "1985-08-05": "Summer Bank Holiday", + "1985-08-26": "Late Summer Bank Holiday", + "1985-12-25": "Christmas Day", + "1985-12-26": "Boxing Day", + "1986-01-01": "New Year's Day", + "1986-01-02": "New Year Holiday", + "1986-03-17": "St. Patrick's Day", + "1986-03-28": "Good Friday", + "1986-03-31": "Easter Monday", + "1986-05-05": "May Day", + "1986-05-26": "Spring Bank Holiday", + "1986-07-12": "Battle of the Boyne", + "1986-07-14": "Battle of the Boyne (Observed)", + "1986-08-04": "Summer Bank Holiday", + "1986-08-25": "Late Summer Bank Holiday", + "1986-12-25": "Christmas Day", + "1986-12-26": "Boxing Day", + "1987-01-01": "New Year's Day", + "1987-01-02": "New Year Holiday", + "1987-03-17": "St. Patrick's Day", + "1987-04-17": "Good Friday", + "1987-04-20": "Easter Monday", + "1987-05-04": "May Day", + "1987-05-25": "Spring Bank Holiday", + "1987-07-12": "Battle of the Boyne", + "1987-07-13": "Battle of the Boyne (Observed)", + "1987-08-03": "Summer Bank Holiday", + "1987-08-31": "Late Summer Bank Holiday", + "1987-12-25": "Christmas Day", + "1987-12-26": "Boxing Day", + "1987-12-28": "Boxing Day (Observed)", + "1988-01-01": "New Year's Day", + "1988-01-02": "New Year Holiday", + "1988-01-04": "New Year Holiday (Observed)", + "1988-03-17": "St. Patrick's Day", + "1988-04-01": "Good Friday", + "1988-04-04": "Easter Monday", + "1988-05-02": "May Day", + "1988-05-30": "Spring Bank Holiday", + "1988-07-12": "Battle of the Boyne", + "1988-08-01": "Summer Bank Holiday", + "1988-08-29": "Late Summer Bank Holiday", + "1988-12-25": "Christmas Day", + "1988-12-26": "Boxing Day", + "1988-12-27": "Christmas Day (Observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year Holiday; New Year's Day (Observed)", + "1989-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "1989-03-17": "St. Patrick's Day", + "1989-03-24": "Good Friday", + "1989-03-27": "Easter Monday", + "1989-05-01": "May Day", + "1989-05-29": "Spring Bank Holiday", + "1989-07-12": "Battle of the Boyne", + "1989-08-07": "Summer Bank Holiday", + "1989-08-28": "Late Summer Bank Holiday", + "1989-12-25": "Christmas Day", + "1989-12-26": "Boxing Day", + "1990-01-01": "New Year's Day", + "1990-01-02": "New Year Holiday", + "1990-03-17": "St. Patrick's Day", + "1990-03-19": "St. Patrick's Day (Observed)", + "1990-04-13": "Good Friday", + "1990-04-16": "Easter Monday", + "1990-05-07": "May Day", + "1990-05-28": "Spring Bank Holiday", + "1990-07-12": "Battle of the Boyne", + "1990-08-06": "Summer Bank Holiday", + "1990-08-27": "Late Summer Bank Holiday", + "1990-12-25": "Christmas Day", + "1990-12-26": "Boxing Day", + "1991-01-01": "New Year's Day", + "1991-01-02": "New Year Holiday", + "1991-03-17": "St. Patrick's Day", + "1991-03-18": "St. Patrick's Day (Observed)", + "1991-03-29": "Good Friday", + "1991-04-01": "Easter Monday", + "1991-05-06": "May Day", + "1991-05-27": "Spring Bank Holiday", + "1991-07-12": "Battle of the Boyne", + "1991-08-05": "Summer Bank Holiday", + "1991-08-26": "Late Summer Bank Holiday", + "1991-12-25": "Christmas Day", + "1991-12-26": "Boxing Day", + "1992-01-01": "New Year's Day", + "1992-01-02": "New Year Holiday", + "1992-03-17": "St. Patrick's Day", + "1992-04-17": "Good Friday", + "1992-04-20": "Easter Monday", + "1992-05-04": "May Day", + "1992-05-25": "Spring Bank Holiday", + "1992-07-12": "Battle of the Boyne", + "1992-07-13": "Battle of the Boyne (Observed)", + "1992-08-03": "Summer Bank Holiday", + "1992-08-31": "Late Summer Bank Holiday", + "1992-12-25": "Christmas Day", + "1992-12-26": "Boxing Day", + "1992-12-28": "Boxing Day (Observed)", + "1993-01-01": "New Year's Day", + "1993-01-02": "New Year Holiday", + "1993-01-04": "New Year Holiday (Observed)", + "1993-03-17": "St. Patrick's Day", + "1993-04-09": "Good Friday", + "1993-04-12": "Easter Monday", + "1993-05-03": "May Day", + "1993-05-31": "Spring Bank Holiday", + "1993-07-12": "Battle of the Boyne", + "1993-08-02": "Summer Bank Holiday", + "1993-08-30": "Late Summer Bank Holiday", + "1993-12-25": "Christmas Day", + "1993-12-26": "Boxing Day", + "1993-12-27": "Christmas Day (Observed)", + "1993-12-28": "Boxing Day (Observed)", + "1994-01-01": "New Year's Day", + "1994-01-02": "New Year Holiday", + "1994-01-03": "New Year's Day (Observed)", + "1994-01-04": "New Year Holiday (Observed)", + "1994-03-17": "St. Patrick's Day", + "1994-04-01": "Good Friday", + "1994-04-04": "Easter Monday", + "1994-05-02": "May Day", + "1994-05-30": "Spring Bank Holiday", + "1994-07-12": "Battle of the Boyne", + "1994-08-01": "Summer Bank Holiday", + "1994-08-29": "Late Summer Bank Holiday", + "1994-12-25": "Christmas Day", + "1994-12-26": "Boxing Day", + "1994-12-27": "Christmas Day (Observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year Holiday; New Year's Day (Observed)", + "1995-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "1995-03-17": "St. Patrick's Day", + "1995-04-14": "Good Friday", + "1995-04-17": "Easter Monday", + "1995-05-08": "May Day", + "1995-05-29": "Spring Bank Holiday", + "1995-07-12": "Battle of the Boyne", + "1995-08-07": "Summer Bank Holiday", + "1995-08-28": "Late Summer Bank Holiday", + "1995-12-25": "Christmas Day", + "1995-12-26": "Boxing Day", + "1996-01-01": "New Year's Day", + "1996-01-02": "New Year Holiday", + "1996-03-17": "St. Patrick's Day", + "1996-03-18": "St. Patrick's Day (Observed)", + "1996-04-05": "Good Friday", + "1996-04-08": "Easter Monday", + "1996-05-06": "May Day", + "1996-05-27": "Spring Bank Holiday", + "1996-07-12": "Battle of the Boyne", + "1996-08-05": "Summer Bank Holiday", + "1996-08-26": "Late Summer Bank Holiday", + "1996-12-25": "Christmas Day", + "1996-12-26": "Boxing Day", + "1997-01-01": "New Year's Day", + "1997-01-02": "New Year Holiday", + "1997-03-17": "St. Patrick's Day", + "1997-03-28": "Good Friday", + "1997-03-31": "Easter Monday", + "1997-05-05": "May Day", + "1997-05-26": "Spring Bank Holiday", + "1997-07-12": "Battle of the Boyne", + "1997-07-14": "Battle of the Boyne (Observed)", + "1997-08-04": "Summer Bank Holiday", + "1997-08-25": "Late Summer Bank Holiday", + "1997-12-25": "Christmas Day", + "1997-12-26": "Boxing Day", + "1998-01-01": "New Year's Day", + "1998-01-02": "New Year Holiday", + "1998-03-17": "St. Patrick's Day", + "1998-04-10": "Good Friday", + "1998-04-13": "Easter Monday", + "1998-05-04": "May Day", + "1998-05-25": "Spring Bank Holiday", + "1998-07-12": "Battle of the Boyne", + "1998-07-13": "Battle of the Boyne (Observed)", + "1998-08-03": "Summer Bank Holiday", + "1998-08-31": "Late Summer Bank Holiday", + "1998-12-25": "Christmas Day", + "1998-12-26": "Boxing Day", + "1998-12-28": "Boxing Day (Observed)", + "1999-01-01": "New Year's Day", + "1999-01-02": "New Year Holiday", + "1999-01-04": "New Year Holiday (Observed)", + "1999-03-17": "St. Patrick's Day", + "1999-04-02": "Good Friday", + "1999-04-05": "Easter Monday", + "1999-05-03": "May Day", + "1999-05-31": "Spring Bank Holiday", + "1999-07-12": "Battle of the Boyne", + "1999-08-02": "Summer Bank Holiday", + "1999-08-30": "Late Summer Bank Holiday", + "1999-12-25": "Christmas Day", + "1999-12-26": "Boxing Day", + "1999-12-27": "Christmas Day (Observed)", + "1999-12-28": "Boxing Day (Observed)", + "1999-12-31": "Millennium Celebrations", + "2000-01-01": "New Year's Day", + "2000-01-02": "New Year Holiday", + "2000-01-03": "New Year's Day (Observed)", + "2000-01-04": "New Year Holiday (Observed)", + "2000-03-17": "St. Patrick's Day", + "2000-04-21": "Good Friday", + "2000-04-24": "Easter Monday", + "2000-05-01": "May Day", + "2000-05-29": "Spring Bank Holiday", + "2000-07-12": "Battle of the Boyne", + "2000-08-07": "Summer Bank Holiday", + "2000-08-28": "Late Summer Bank Holiday", + "2000-12-25": "Christmas Day", + "2000-12-26": "Boxing Day", + "2001-01-01": "New Year's Day", + "2001-01-02": "New Year Holiday", + "2001-03-17": "St. Patrick's Day", + "2001-03-19": "St. Patrick's Day (Observed)", + "2001-04-13": "Good Friday", + "2001-04-16": "Easter Monday", + "2001-05-07": "May Day", + "2001-05-28": "Spring Bank Holiday", + "2001-07-12": "Battle of the Boyne", + "2001-08-06": "Summer Bank Holiday", + "2001-08-27": "Late Summer Bank Holiday", + "2001-12-25": "Christmas Day", + "2001-12-26": "Boxing Day", + "2002-01-01": "New Year's Day", + "2002-01-02": "New Year Holiday", + "2002-03-17": "St. Patrick's Day", + "2002-03-18": "St. Patrick's Day (Observed)", + "2002-03-29": "Good Friday", + "2002-04-01": "Easter Monday", + "2002-05-06": "May Day", + "2002-06-03": "Golden Jubilee of Elizabeth II", + "2002-06-04": "Spring Bank Holiday", + "2002-07-12": "Battle of the Boyne", + "2002-08-05": "Summer Bank Holiday", + "2002-08-26": "Late Summer Bank Holiday", + "2002-12-25": "Christmas Day", + "2002-12-26": "Boxing Day", + "2003-01-01": "New Year's Day", + "2003-01-02": "New Year Holiday", + "2003-03-17": "St. Patrick's Day", + "2003-04-18": "Good Friday", + "2003-04-21": "Easter Monday", + "2003-05-05": "May Day", + "2003-05-26": "Spring Bank Holiday", + "2003-07-12": "Battle of the Boyne", + "2003-07-14": "Battle of the Boyne (Observed)", + "2003-08-04": "Summer Bank Holiday", + "2003-08-25": "Late Summer Bank Holiday", + "2003-12-25": "Christmas Day", + "2003-12-26": "Boxing Day", + "2004-01-01": "New Year's Day", + "2004-01-02": "New Year Holiday", + "2004-03-17": "St. Patrick's Day", + "2004-04-09": "Good Friday", + "2004-04-12": "Easter Monday", + "2004-05-03": "May Day", + "2004-05-31": "Spring Bank Holiday", + "2004-07-12": "Battle of the Boyne", + "2004-08-02": "Summer Bank Holiday", + "2004-08-30": "Late Summer Bank Holiday", + "2004-12-25": "Christmas Day", + "2004-12-26": "Boxing Day", + "2004-12-27": "Christmas Day (Observed)", + "2004-12-28": "Boxing Day (Observed)", + "2005-01-01": "New Year's Day", + "2005-01-02": "New Year Holiday", + "2005-01-03": "New Year's Day (Observed)", + "2005-01-04": "New Year Holiday (Observed)", + "2005-03-17": "St. Patrick's Day", + "2005-03-25": "Good Friday", + "2005-03-28": "Easter Monday", + "2005-05-02": "May Day", + "2005-05-30": "Spring Bank Holiday", + "2005-07-12": "Battle of the Boyne", + "2005-08-01": "Summer Bank Holiday", + "2005-08-29": "Late Summer Bank Holiday", + "2005-12-25": "Christmas Day", + "2005-12-26": "Boxing Day", + "2005-12-27": "Christmas Day (Observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year Holiday; New Year's Day (Observed)", + "2006-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "2006-03-17": "St. Patrick's Day", + "2006-04-14": "Good Friday", + "2006-04-17": "Easter Monday", + "2006-05-01": "May Day", + "2006-05-29": "Spring Bank Holiday", + "2006-07-12": "Battle of the Boyne", + "2006-08-07": "Summer Bank Holiday", + "2006-08-28": "Late Summer Bank Holiday", + "2006-11-30": "St. Andrew's Day", + "2006-12-25": "Christmas Day", + "2006-12-26": "Boxing Day", + "2007-01-01": "New Year's Day", + "2007-01-02": "New Year Holiday", + "2007-03-17": "St. Patrick's Day", + "2007-03-19": "St. Patrick's Day (Observed)", + "2007-04-06": "Good Friday", + "2007-04-09": "Easter Monday", + "2007-05-07": "May Day", + "2007-05-28": "Spring Bank Holiday", + "2007-07-12": "Battle of the Boyne", + "2007-08-06": "Summer Bank Holiday", + "2007-08-27": "Late Summer Bank Holiday", + "2007-11-30": "St. Andrew's Day", + "2007-12-25": "Christmas Day", + "2007-12-26": "Boxing Day", + "2008-01-01": "New Year's Day", + "2008-01-02": "New Year Holiday", + "2008-03-17": "St. Patrick's Day", + "2008-03-21": "Good Friday", + "2008-03-24": "Easter Monday", + "2008-05-05": "May Day", + "2008-05-26": "Spring Bank Holiday", + "2008-07-12": "Battle of the Boyne", + "2008-07-14": "Battle of the Boyne (Observed)", + "2008-08-04": "Summer Bank Holiday", + "2008-08-25": "Late Summer Bank Holiday", + "2008-11-30": "St. Andrew's Day", + "2008-12-01": "St. Andrew's Day (Observed)", + "2008-12-25": "Christmas Day", + "2008-12-26": "Boxing Day", + "2009-01-01": "New Year's Day", + "2009-01-02": "New Year Holiday", + "2009-03-17": "St. Patrick's Day", + "2009-04-10": "Good Friday", + "2009-04-13": "Easter Monday", + "2009-05-04": "May Day", + "2009-05-25": "Spring Bank Holiday", + "2009-07-12": "Battle of the Boyne", + "2009-07-13": "Battle of the Boyne (Observed)", + "2009-08-03": "Summer Bank Holiday", + "2009-08-31": "Late Summer Bank Holiday", + "2009-11-30": "St. Andrew's Day", + "2009-12-25": "Christmas Day", + "2009-12-26": "Boxing Day", + "2009-12-28": "Boxing Day (Observed)", + "2010-01-01": "New Year's Day", + "2010-01-02": "New Year Holiday", + "2010-01-04": "New Year Holiday (Observed)", + "2010-03-17": "St. Patrick's Day", + "2010-04-02": "Good Friday", + "2010-04-05": "Easter Monday", + "2010-05-03": "May Day", + "2010-05-31": "Spring Bank Holiday", + "2010-07-12": "Battle of the Boyne", + "2010-08-02": "Summer Bank Holiday", + "2010-08-30": "Late Summer Bank Holiday", + "2010-11-30": "St. Andrew's Day", + "2010-12-25": "Christmas Day", + "2010-12-26": "Boxing Day", + "2010-12-27": "Christmas Day (Observed)", + "2010-12-28": "Boxing Day (Observed)", + "2011-01-01": "New Year's Day", + "2011-01-02": "New Year Holiday", + "2011-01-03": "New Year's Day (Observed)", + "2011-01-04": "New Year Holiday (Observed)", + "2011-03-17": "St. Patrick's Day", + "2011-04-22": "Good Friday", + "2011-04-25": "Easter Monday", + "2011-04-29": "Wedding of William and Catherine", + "2011-05-02": "May Day", + "2011-05-30": "Spring Bank Holiday", + "2011-07-12": "Battle of the Boyne", + "2011-08-01": "Summer Bank Holiday", + "2011-08-29": "Late Summer Bank Holiday", + "2011-11-30": "St. Andrew's Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "Boxing Day", + "2011-12-27": "Christmas Day (Observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year Holiday; New Year's Day (Observed)", + "2012-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "2012-03-17": "St. Patrick's Day", + "2012-03-19": "St. Patrick's Day (Observed)", + "2012-04-06": "Good Friday", + "2012-04-09": "Easter Monday", + "2012-05-07": "May Day", + "2012-06-04": "Spring Bank Holiday", + "2012-06-05": "Diamond Jubilee of Elizabeth II", + "2012-07-12": "Battle of the Boyne", + "2012-08-06": "Summer Bank Holiday", + "2012-08-27": "Late Summer Bank Holiday", + "2012-11-30": "St. Andrew's Day", + "2012-12-25": "Christmas Day", + "2012-12-26": "Boxing Day", + "2013-01-01": "New Year's Day", + "2013-01-02": "New Year Holiday", + "2013-03-17": "St. Patrick's Day", + "2013-03-18": "St. Patrick's Day (Observed)", + "2013-03-29": "Good Friday", + "2013-04-01": "Easter Monday", + "2013-05-06": "May Day", + "2013-05-27": "Spring Bank Holiday", + "2013-07-12": "Battle of the Boyne", + "2013-08-05": "Summer Bank Holiday", + "2013-08-26": "Late Summer Bank Holiday", + "2013-11-30": "St. Andrew's Day", + "2013-12-02": "St. Andrew's Day (Observed)", + "2013-12-25": "Christmas Day", + "2013-12-26": "Boxing Day", + "2014-01-01": "New Year's Day", + "2014-01-02": "New Year Holiday", + "2014-03-17": "St. Patrick's Day", + "2014-04-18": "Good Friday", + "2014-04-21": "Easter Monday", + "2014-05-05": "May Day", + "2014-05-26": "Spring Bank Holiday", + "2014-07-12": "Battle of the Boyne", + "2014-07-14": "Battle of the Boyne (Observed)", + "2014-08-04": "Summer Bank Holiday", + "2014-08-25": "Late Summer Bank Holiday", + "2014-11-30": "St. Andrew's Day", + "2014-12-01": "St. Andrew's Day (Observed)", + "2014-12-25": "Christmas Day", + "2014-12-26": "Boxing Day", + "2015-01-01": "New Year's Day", + "2015-01-02": "New Year Holiday", + "2015-03-17": "St. Patrick's Day", + "2015-04-03": "Good Friday", + "2015-04-06": "Easter Monday", + "2015-05-04": "May Day", + "2015-05-25": "Spring Bank Holiday", + "2015-07-12": "Battle of the Boyne", + "2015-07-13": "Battle of the Boyne (Observed)", + "2015-08-03": "Summer Bank Holiday", + "2015-08-31": "Late Summer Bank Holiday", + "2015-11-30": "St. Andrew's Day", + "2015-12-25": "Christmas Day", + "2015-12-26": "Boxing Day", + "2015-12-28": "Boxing Day (Observed)", + "2016-01-01": "New Year's Day", + "2016-01-02": "New Year Holiday", + "2016-01-04": "New Year Holiday (Observed)", + "2016-03-17": "St. Patrick's Day", + "2016-03-25": "Good Friday", + "2016-03-28": "Easter Monday", + "2016-05-02": "May Day", + "2016-05-30": "Spring Bank Holiday", + "2016-07-12": "Battle of the Boyne", + "2016-08-01": "Summer Bank Holiday", + "2016-08-29": "Late Summer Bank Holiday", + "2016-11-30": "St. Andrew's Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "Boxing Day", + "2016-12-27": "Christmas Day (Observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year Holiday; New Year's Day (Observed)", + "2017-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "2017-03-17": "St. Patrick's Day", + "2017-04-14": "Good Friday", + "2017-04-17": "Easter Monday", + "2017-05-01": "May Day", + "2017-05-29": "Spring Bank Holiday", + "2017-07-12": "Battle of the Boyne", + "2017-08-07": "Summer Bank Holiday", + "2017-08-28": "Late Summer Bank Holiday", + "2017-11-30": "St. Andrew's Day", + "2017-12-25": "Christmas Day", + "2017-12-26": "Boxing Day", + "2018-01-01": "New Year's Day", + "2018-01-02": "New Year Holiday", + "2018-03-17": "St. Patrick's Day", + "2018-03-19": "St. Patrick's Day (Observed)", + "2018-03-30": "Good Friday", + "2018-04-02": "Easter Monday", + "2018-05-07": "May Day", + "2018-05-28": "Spring Bank Holiday", + "2018-07-12": "Battle of the Boyne", + "2018-08-06": "Summer Bank Holiday", + "2018-08-27": "Late Summer Bank Holiday", + "2018-11-30": "St. Andrew's Day", + "2018-12-25": "Christmas Day", + "2018-12-26": "Boxing Day", + "2019-01-01": "New Year's Day", + "2019-01-02": "New Year Holiday", + "2019-03-17": "St. Patrick's Day", + "2019-03-18": "St. Patrick's Day (Observed)", + "2019-04-19": "Good Friday", + "2019-04-22": "Easter Monday", + "2019-05-06": "May Day", + "2019-05-27": "Spring Bank Holiday", + "2019-07-12": "Battle of the Boyne", + "2019-08-05": "Summer Bank Holiday", + "2019-08-26": "Late Summer Bank Holiday", + "2019-11-30": "St. Andrew's Day", + "2019-12-02": "St. Andrew's Day (Observed)", + "2019-12-25": "Christmas Day", + "2019-12-26": "Boxing Day", + "2020-01-01": "New Year's Day", + "2020-01-02": "New Year Holiday", + "2020-03-17": "St. Patrick's Day", + "2020-04-10": "Good Friday", + "2020-04-13": "Easter Monday", + "2020-05-08": "May Day", + "2020-05-25": "Spring Bank Holiday", + "2020-07-12": "Battle of the Boyne", + "2020-07-13": "Battle of the Boyne (Observed)", + "2020-08-03": "Summer Bank Holiday", + "2020-08-31": "Late Summer Bank Holiday", + "2020-11-30": "St. Andrew's Day", + "2020-12-25": "Christmas Day", + "2020-12-26": "Boxing Day", + "2020-12-28": "Boxing Day (Observed)", + "2021-01-01": "New Year's Day", + "2021-01-02": "New Year Holiday", + "2021-01-04": "New Year Holiday (Observed)", + "2021-03-17": "St. Patrick's Day", + "2021-04-02": "Good Friday", + "2021-04-05": "Easter Monday", + "2021-05-03": "May Day", + "2021-05-31": "Spring Bank Holiday", + "2021-07-12": "Battle of the Boyne", + "2021-08-02": "Summer Bank Holiday", + "2021-08-30": "Late Summer Bank Holiday", + "2021-11-30": "St. Andrew's Day", + "2021-12-25": "Christmas Day", + "2021-12-26": "Boxing Day", + "2021-12-27": "Christmas Day (Observed)", + "2021-12-28": "Boxing Day (Observed)", + "2022-01-01": "New Year's Day", + "2022-01-02": "New Year Holiday", + "2022-01-03": "New Year's Day (Observed)", + "2022-01-04": "New Year Holiday (Observed)", + "2022-03-17": "St. Patrick's Day", + "2022-04-15": "Good Friday", + "2022-04-18": "Easter Monday", + "2022-05-02": "May Day", + "2022-06-02": "Spring Bank Holiday", + "2022-06-03": "Platinum Jubilee of Elizabeth II", + "2022-07-12": "Battle of the Boyne", + "2022-08-01": "Summer Bank Holiday", + "2022-08-29": "Late Summer Bank Holiday", + "2022-09-19": "State Funeral of Queen Elizabeth II", + "2022-11-30": "St. Andrew's Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "Boxing Day", + "2022-12-27": "Christmas Day (Observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year Holiday; New Year's Day (Observed)", + "2023-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "2023-03-17": "St. Patrick's Day", + "2023-04-07": "Good Friday", + "2023-04-10": "Easter Monday", + "2023-05-01": "May Day", + "2023-05-08": "Coronation of Charles III", + "2023-05-29": "Spring Bank Holiday", + "2023-07-12": "Battle of the Boyne", + "2023-08-07": "Summer Bank Holiday", + "2023-08-28": "Late Summer Bank Holiday", + "2023-11-30": "St. Andrew's Day", + "2023-12-25": "Christmas Day", + "2023-12-26": "Boxing Day", + "2024-01-01": "New Year's Day", + "2024-01-02": "New Year Holiday", + "2024-03-17": "St. Patrick's Day", + "2024-03-18": "St. Patrick's Day (Observed)", + "2024-03-29": "Good Friday", + "2024-04-01": "Easter Monday", + "2024-05-06": "May Day", + "2024-05-27": "Spring Bank Holiday", + "2024-07-12": "Battle of the Boyne", + "2024-08-05": "Summer Bank Holiday", + "2024-08-26": "Late Summer Bank Holiday", + "2024-11-30": "St. Andrew's Day", + "2024-12-02": "St. Andrew's Day (Observed)", + "2024-12-25": "Christmas Day", + "2024-12-26": "Boxing Day", + "2025-01-01": "New Year's Day", + "2025-01-02": "New Year Holiday", + "2025-03-17": "St. Patrick's Day", + "2025-04-18": "Good Friday", + "2025-04-21": "Easter Monday", + "2025-05-05": "May Day", + "2025-05-26": "Spring Bank Holiday", + "2025-07-12": "Battle of the Boyne", + "2025-07-14": "Battle of the Boyne (Observed)", + "2025-08-04": "Summer Bank Holiday", + "2025-08-25": "Late Summer Bank Holiday", + "2025-11-30": "St. Andrew's Day", + "2025-12-01": "St. Andrew's Day (Observed)", + "2025-12-25": "Christmas Day", + "2025-12-26": "Boxing Day", + "2026-01-01": "New Year's Day", + "2026-01-02": "New Year Holiday", + "2026-03-17": "St. Patrick's Day", + "2026-04-03": "Good Friday", + "2026-04-06": "Easter Monday", + "2026-05-04": "May Day", + "2026-05-25": "Spring Bank Holiday", + "2026-07-12": "Battle of the Boyne", + "2026-07-13": "Battle of the Boyne (Observed)", + "2026-08-03": "Summer Bank Holiday", + "2026-08-31": "Late Summer Bank Holiday", + "2026-11-30": "St. Andrew's Day", + "2026-12-25": "Christmas Day", + "2026-12-26": "Boxing Day", + "2026-12-28": "Boxing Day (Observed)", + "2027-01-01": "New Year's Day", + "2027-01-02": "New Year Holiday", + "2027-01-04": "New Year Holiday (Observed)", + "2027-03-17": "St. Patrick's Day", + "2027-03-26": "Good Friday", + "2027-03-29": "Easter Monday", + "2027-05-03": "May Day", + "2027-05-31": "Spring Bank Holiday", + "2027-07-12": "Battle of the Boyne", + "2027-08-02": "Summer Bank Holiday", + "2027-08-30": "Late Summer Bank Holiday", + "2027-11-30": "St. Andrew's Day", + "2027-12-25": "Christmas Day", + "2027-12-26": "Boxing Day", + "2027-12-27": "Christmas Day (Observed)", + "2027-12-28": "Boxing Day (Observed)", + "2028-01-01": "New Year's Day", + "2028-01-02": "New Year Holiday", + "2028-01-03": "New Year's Day (Observed)", + "2028-01-04": "New Year Holiday (Observed)", + "2028-03-17": "St. Patrick's Day", + "2028-04-14": "Good Friday", + "2028-04-17": "Easter Monday", + "2028-05-01": "May Day", + "2028-05-29": "Spring Bank Holiday", + "2028-07-12": "Battle of the Boyne", + "2028-08-07": "Summer Bank Holiday", + "2028-08-28": "Late Summer Bank Holiday", + "2028-11-30": "St. Andrew's Day", + "2028-12-25": "Christmas Day", + "2028-12-26": "Boxing Day", + "2029-01-01": "New Year's Day", + "2029-01-02": "New Year Holiday", + "2029-03-17": "St. Patrick's Day", + "2029-03-19": "St. Patrick's Day (Observed)", + "2029-03-30": "Good Friday", + "2029-04-02": "Easter Monday", + "2029-05-07": "May Day", + "2029-05-28": "Spring Bank Holiday", + "2029-07-12": "Battle of the Boyne", + "2029-08-06": "Summer Bank Holiday", + "2029-08-27": "Late Summer Bank Holiday", + "2029-11-30": "St. Andrew's Day", + "2029-12-25": "Christmas Day", + "2029-12-26": "Boxing Day", + "2030-01-01": "New Year's Day", + "2030-01-02": "New Year Holiday", + "2030-03-17": "St. Patrick's Day", + "2030-03-18": "St. Patrick's Day (Observed)", + "2030-04-19": "Good Friday", + "2030-04-22": "Easter Monday", + "2030-05-06": "May Day", + "2030-05-27": "Spring Bank Holiday", + "2030-07-12": "Battle of the Boyne", + "2030-08-05": "Summer Bank Holiday", + "2030-08-26": "Late Summer Bank Holiday", + "2030-11-30": "St. Andrew's Day", + "2030-12-02": "St. Andrew's Day (Observed)", + "2030-12-25": "Christmas Day", + "2030-12-26": "Boxing Day", + "2031-01-01": "New Year's Day", + "2031-01-02": "New Year Holiday", + "2031-03-17": "St. Patrick's Day", + "2031-04-11": "Good Friday", + "2031-04-14": "Easter Monday", + "2031-05-05": "May Day", + "2031-05-26": "Spring Bank Holiday", + "2031-07-12": "Battle of the Boyne", + "2031-07-14": "Battle of the Boyne (Observed)", + "2031-08-04": "Summer Bank Holiday", + "2031-08-25": "Late Summer Bank Holiday", + "2031-11-30": "St. Andrew's Day", + "2031-12-01": "St. Andrew's Day (Observed)", + "2031-12-25": "Christmas Day", + "2031-12-26": "Boxing Day", + "2032-01-01": "New Year's Day", + "2032-01-02": "New Year Holiday", + "2032-03-17": "St. Patrick's Day", + "2032-03-26": "Good Friday", + "2032-03-29": "Easter Monday", + "2032-05-03": "May Day", + "2032-05-31": "Spring Bank Holiday", + "2032-07-12": "Battle of the Boyne", + "2032-08-02": "Summer Bank Holiday", + "2032-08-30": "Late Summer Bank Holiday", + "2032-11-30": "St. Andrew's Day", + "2032-12-25": "Christmas Day", + "2032-12-26": "Boxing Day", + "2032-12-27": "Christmas Day (Observed)", + "2032-12-28": "Boxing Day (Observed)", + "2033-01-01": "New Year's Day", + "2033-01-02": "New Year Holiday", + "2033-01-03": "New Year's Day (Observed)", + "2033-01-04": "New Year Holiday (Observed)", + "2033-03-17": "St. Patrick's Day", + "2033-04-15": "Good Friday", + "2033-04-18": "Easter Monday", + "2033-05-02": "May Day", + "2033-05-30": "Spring Bank Holiday", + "2033-07-12": "Battle of the Boyne", + "2033-08-01": "Summer Bank Holiday", + "2033-08-29": "Late Summer Bank Holiday", + "2033-11-30": "St. Andrew's Day", + "2033-12-25": "Christmas Day", + "2033-12-26": "Boxing Day", + "2033-12-27": "Christmas Day (Observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year Holiday; New Year's Day (Observed)", + "2034-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "2034-03-17": "St. Patrick's Day", + "2034-04-07": "Good Friday", + "2034-04-10": "Easter Monday", + "2034-05-01": "May Day", + "2034-05-29": "Spring Bank Holiday", + "2034-07-12": "Battle of the Boyne", + "2034-08-07": "Summer Bank Holiday", + "2034-08-28": "Late Summer Bank Holiday", + "2034-11-30": "St. Andrew's Day", + "2034-12-25": "Christmas Day", + "2034-12-26": "Boxing Day", + "2035-01-01": "New Year's Day", + "2035-01-02": "New Year Holiday", + "2035-03-17": "St. Patrick's Day", + "2035-03-19": "St. Patrick's Day (Observed)", + "2035-03-23": "Good Friday", + "2035-03-26": "Easter Monday", + "2035-05-07": "May Day", + "2035-05-28": "Spring Bank Holiday", + "2035-07-12": "Battle of the Boyne", + "2035-08-06": "Summer Bank Holiday", + "2035-08-27": "Late Summer Bank Holiday", + "2035-11-30": "St. Andrew's Day", + "2035-12-25": "Christmas Day", + "2035-12-26": "Boxing Day", + "2036-01-01": "New Year's Day", + "2036-01-02": "New Year Holiday", + "2036-03-17": "St. Patrick's Day", + "2036-04-11": "Good Friday", + "2036-04-14": "Easter Monday", + "2036-05-05": "May Day", + "2036-05-26": "Spring Bank Holiday", + "2036-07-12": "Battle of the Boyne", + "2036-07-14": "Battle of the Boyne (Observed)", + "2036-08-04": "Summer Bank Holiday", + "2036-08-25": "Late Summer Bank Holiday", + "2036-11-30": "St. Andrew's Day", + "2036-12-01": "St. Andrew's Day (Observed)", + "2036-12-25": "Christmas Day", + "2036-12-26": "Boxing Day", + "2037-01-01": "New Year's Day", + "2037-01-02": "New Year Holiday", + "2037-03-17": "St. Patrick's Day", + "2037-04-03": "Good Friday", + "2037-04-06": "Easter Monday", + "2037-05-04": "May Day", + "2037-05-25": "Spring Bank Holiday", + "2037-07-12": "Battle of the Boyne", + "2037-07-13": "Battle of the Boyne (Observed)", + "2037-08-03": "Summer Bank Holiday", + "2037-08-31": "Late Summer Bank Holiday", + "2037-11-30": "St. Andrew's Day", + "2037-12-25": "Christmas Day", + "2037-12-26": "Boxing Day", + "2037-12-28": "Boxing Day (Observed)", + "2038-01-01": "New Year's Day", + "2038-01-02": "New Year Holiday", + "2038-01-04": "New Year Holiday (Observed)", + "2038-03-17": "St. Patrick's Day", + "2038-04-23": "Good Friday", + "2038-04-26": "Easter Monday", + "2038-05-03": "May Day", + "2038-05-31": "Spring Bank Holiday", + "2038-07-12": "Battle of the Boyne", + "2038-08-02": "Summer Bank Holiday", + "2038-08-30": "Late Summer Bank Holiday", + "2038-11-30": "St. Andrew's Day", + "2038-12-25": "Christmas Day", + "2038-12-26": "Boxing Day", + "2038-12-27": "Christmas Day (Observed)", + "2038-12-28": "Boxing Day (Observed)", + "2039-01-01": "New Year's Day", + "2039-01-02": "New Year Holiday", + "2039-01-03": "New Year's Day (Observed)", + "2039-01-04": "New Year Holiday (Observed)", + "2039-03-17": "St. Patrick's Day", + "2039-04-08": "Good Friday", + "2039-04-11": "Easter Monday", + "2039-05-02": "May Day", + "2039-05-30": "Spring Bank Holiday", + "2039-07-12": "Battle of the Boyne", + "2039-08-01": "Summer Bank Holiday", + "2039-08-29": "Late Summer Bank Holiday", + "2039-11-30": "St. Andrew's Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Boxing Day", + "2039-12-27": "Christmas Day (Observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year Holiday; New Year's Day (Observed)", + "2040-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "2040-03-17": "St. Patrick's Day", + "2040-03-19": "St. Patrick's Day (Observed)", + "2040-03-30": "Good Friday", + "2040-04-02": "Easter Monday", + "2040-05-07": "May Day", + "2040-05-28": "Spring Bank Holiday", + "2040-07-12": "Battle of the Boyne", + "2040-08-06": "Summer Bank Holiday", + "2040-08-27": "Late Summer Bank Holiday", + "2040-11-30": "St. Andrew's Day", + "2040-12-25": "Christmas Day", + "2040-12-26": "Boxing Day", + "2041-01-01": "New Year's Day", + "2041-01-02": "New Year Holiday", + "2041-03-17": "St. Patrick's Day", + "2041-03-18": "St. Patrick's Day (Observed)", + "2041-04-19": "Good Friday", + "2041-04-22": "Easter Monday", + "2041-05-06": "May Day", + "2041-05-27": "Spring Bank Holiday", + "2041-07-12": "Battle of the Boyne", + "2041-08-05": "Summer Bank Holiday", + "2041-08-26": "Late Summer Bank Holiday", + "2041-11-30": "St. Andrew's Day", + "2041-12-02": "St. Andrew's Day (Observed)", + "2041-12-25": "Christmas Day", + "2041-12-26": "Boxing Day", + "2042-01-01": "New Year's Day", + "2042-01-02": "New Year Holiday", + "2042-03-17": "St. Patrick's Day", + "2042-04-04": "Good Friday", + "2042-04-07": "Easter Monday", + "2042-05-05": "May Day", + "2042-05-26": "Spring Bank Holiday", + "2042-07-12": "Battle of the Boyne", + "2042-07-14": "Battle of the Boyne (Observed)", + "2042-08-04": "Summer Bank Holiday", + "2042-08-25": "Late Summer Bank Holiday", + "2042-11-30": "St. Andrew's Day", + "2042-12-01": "St. Andrew's Day (Observed)", + "2042-12-25": "Christmas Day", + "2042-12-26": "Boxing Day", + "2043-01-01": "New Year's Day", + "2043-01-02": "New Year Holiday", + "2043-03-17": "St. Patrick's Day", + "2043-03-27": "Good Friday", + "2043-03-30": "Easter Monday", + "2043-05-04": "May Day", + "2043-05-25": "Spring Bank Holiday", + "2043-07-12": "Battle of the Boyne", + "2043-07-13": "Battle of the Boyne (Observed)", + "2043-08-03": "Summer Bank Holiday", + "2043-08-31": "Late Summer Bank Holiday", + "2043-11-30": "St. Andrew's Day", + "2043-12-25": "Christmas Day", + "2043-12-26": "Boxing Day", + "2043-12-28": "Boxing Day (Observed)", + "2044-01-01": "New Year's Day", + "2044-01-02": "New Year Holiday", + "2044-01-04": "New Year Holiday (Observed)", + "2044-03-17": "St. Patrick's Day", + "2044-04-15": "Good Friday", + "2044-04-18": "Easter Monday", + "2044-05-02": "May Day", + "2044-05-30": "Spring Bank Holiday", + "2044-07-12": "Battle of the Boyne", + "2044-08-01": "Summer Bank Holiday", + "2044-08-29": "Late Summer Bank Holiday", + "2044-11-30": "St. Andrew's Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "Boxing Day", + "2044-12-27": "Christmas Day (Observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year Holiday; New Year's Day (Observed)", + "2045-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "2045-03-17": "St. Patrick's Day", + "2045-04-07": "Good Friday", + "2045-04-10": "Easter Monday", + "2045-05-01": "May Day", + "2045-05-29": "Spring Bank Holiday", + "2045-07-12": "Battle of the Boyne", + "2045-08-07": "Summer Bank Holiday", + "2045-08-28": "Late Summer Bank Holiday", + "2045-11-30": "St. Andrew's Day", + "2045-12-25": "Christmas Day", + "2045-12-26": "Boxing Day", + "2046-01-01": "New Year's Day", + "2046-01-02": "New Year Holiday", + "2046-03-17": "St. Patrick's Day", + "2046-03-19": "St. Patrick's Day (Observed)", + "2046-03-23": "Good Friday", + "2046-03-26": "Easter Monday", + "2046-05-07": "May Day", + "2046-05-28": "Spring Bank Holiday", + "2046-07-12": "Battle of the Boyne", + "2046-08-06": "Summer Bank Holiday", + "2046-08-27": "Late Summer Bank Holiday", + "2046-11-30": "St. Andrew's Day", + "2046-12-25": "Christmas Day", + "2046-12-26": "Boxing Day", + "2047-01-01": "New Year's Day", + "2047-01-02": "New Year Holiday", + "2047-03-17": "St. Patrick's Day", + "2047-03-18": "St. Patrick's Day (Observed)", + "2047-04-12": "Good Friday", + "2047-04-15": "Easter Monday", + "2047-05-06": "May Day", + "2047-05-27": "Spring Bank Holiday", + "2047-07-12": "Battle of the Boyne", + "2047-08-05": "Summer Bank Holiday", + "2047-08-26": "Late Summer Bank Holiday", + "2047-11-30": "St. Andrew's Day", + "2047-12-02": "St. Andrew's Day (Observed)", + "2047-12-25": "Christmas Day", + "2047-12-26": "Boxing Day", + "2048-01-01": "New Year's Day", + "2048-01-02": "New Year Holiday", + "2048-03-17": "St. Patrick's Day", + "2048-04-03": "Good Friday", + "2048-04-06": "Easter Monday", + "2048-05-04": "May Day", + "2048-05-25": "Spring Bank Holiday", + "2048-07-12": "Battle of the Boyne", + "2048-07-13": "Battle of the Boyne (Observed)", + "2048-08-03": "Summer Bank Holiday", + "2048-08-31": "Late Summer Bank Holiday", + "2048-11-30": "St. Andrew's Day", + "2048-12-25": "Christmas Day", + "2048-12-26": "Boxing Day", + "2048-12-28": "Boxing Day (Observed)", + "2049-01-01": "New Year's Day", + "2049-01-02": "New Year Holiday", + "2049-01-04": "New Year Holiday (Observed)", + "2049-03-17": "St. Patrick's Day", + "2049-04-16": "Good Friday", + "2049-04-19": "Easter Monday", + "2049-05-03": "May Day", + "2049-05-31": "Spring Bank Holiday", + "2049-07-12": "Battle of the Boyne", + "2049-08-02": "Summer Bank Holiday", + "2049-08-30": "Late Summer Bank Holiday", + "2049-11-30": "St. Andrew's Day", + "2049-12-25": "Christmas Day", + "2049-12-26": "Boxing Day", + "2049-12-27": "Christmas Day (Observed)", + "2049-12-28": "Boxing Day (Observed)", + "2050-01-01": "New Year's Day", + "2050-01-02": "New Year Holiday", + "2050-01-03": "New Year's Day (Observed)", + "2050-01-04": "New Year Holiday (Observed)", + "2050-03-17": "St. Patrick's Day", + "2050-04-08": "Good Friday", + "2050-04-11": "Easter Monday", + "2050-05-02": "May Day", + "2050-05-30": "Spring Bank Holiday", + "2050-07-12": "Battle of the Boyne", + "2050-08-01": "Summer Bank Holiday", + "2050-08-29": "Late Summer Bank Holiday", + "2050-11-30": "St. Andrew's Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "Boxing Day", + "2050-12-27": "Christmas Day (Observed)" +} diff --git a/snapshots/countries/GE.json b/snapshots/countries/GE.json new file mode 100644 index 000000000..c70976a35 --- /dev/null +++ b/snapshots/countries/GE.json @@ -0,0 +1,1015 @@ +{ + "1991-01-01": "New Year's Day", + "1991-01-02": "New Year's Day", + "1991-01-07": "Christmas Day", + "1991-01-19": "Epiphany", + "1991-03-03": "Mother's Day", + "1991-03-08": "International Women's Day", + "1991-04-05": "Good Friday", + "1991-04-06": "Holy Saturday", + "1991-04-07": "Easter Sunday", + "1991-04-08": "Easter Monday", + "1991-04-09": "National Unity Day", + "1991-05-09": "Day of Victory over Fascism", + "1991-05-12": "Saint Andrew's Day", + "1991-05-26": "Independence Day", + "1991-08-28": "Assumption of the Virgin Mary", + "1991-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "1991-11-23": "Saint George's Day", + "1992-01-01": "New Year's Day", + "1992-01-02": "New Year's Day", + "1992-01-07": "Christmas Day", + "1992-01-19": "Epiphany", + "1992-03-03": "Mother's Day", + "1992-03-08": "International Women's Day", + "1992-04-09": "National Unity Day", + "1992-04-24": "Good Friday", + "1992-04-25": "Holy Saturday", + "1992-04-26": "Easter Sunday", + "1992-04-27": "Easter Monday", + "1992-05-09": "Day of Victory over Fascism", + "1992-05-12": "Saint Andrew's Day", + "1992-05-26": "Independence Day", + "1992-08-28": "Assumption of the Virgin Mary", + "1992-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "1992-11-23": "Saint George's Day", + "1993-01-01": "New Year's Day", + "1993-01-02": "New Year's Day", + "1993-01-07": "Christmas Day", + "1993-01-19": "Epiphany", + "1993-03-03": "Mother's Day", + "1993-03-08": "International Women's Day", + "1993-04-09": "National Unity Day", + "1993-04-16": "Good Friday", + "1993-04-17": "Holy Saturday", + "1993-04-18": "Easter Sunday", + "1993-04-19": "Easter Monday", + "1993-05-09": "Day of Victory over Fascism", + "1993-05-12": "Saint Andrew's Day", + "1993-05-26": "Independence Day", + "1993-08-28": "Assumption of the Virgin Mary", + "1993-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "1993-11-23": "Saint George's Day", + "1994-01-01": "New Year's Day", + "1994-01-02": "New Year's Day", + "1994-01-07": "Christmas Day", + "1994-01-19": "Epiphany", + "1994-03-03": "Mother's Day", + "1994-03-08": "International Women's Day", + "1994-04-09": "National Unity Day", + "1994-04-29": "Good Friday", + "1994-04-30": "Holy Saturday", + "1994-05-01": "Easter Sunday", + "1994-05-02": "Easter Monday", + "1994-05-09": "Day of Victory over Fascism", + "1994-05-12": "Saint Andrew's Day", + "1994-05-26": "Independence Day", + "1994-08-28": "Assumption of the Virgin Mary", + "1994-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "1994-11-23": "Saint George's Day", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day", + "1995-01-07": "Christmas Day", + "1995-01-19": "Epiphany", + "1995-03-03": "Mother's Day", + "1995-03-08": "International Women's Day", + "1995-04-09": "National Unity Day", + "1995-04-21": "Good Friday", + "1995-04-22": "Holy Saturday", + "1995-04-23": "Easter Sunday", + "1995-04-24": "Easter Monday", + "1995-05-09": "Day of Victory over Fascism", + "1995-05-12": "Saint Andrew's Day", + "1995-05-26": "Independence Day", + "1995-08-28": "Assumption of the Virgin Mary", + "1995-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "1995-11-23": "Saint George's Day", + "1996-01-01": "New Year's Day", + "1996-01-02": "New Year's Day", + "1996-01-07": "Christmas Day", + "1996-01-19": "Epiphany", + "1996-03-03": "Mother's Day", + "1996-03-08": "International Women's Day", + "1996-04-09": "National Unity Day", + "1996-04-12": "Good Friday", + "1996-04-13": "Holy Saturday", + "1996-04-14": "Easter Sunday", + "1996-04-15": "Easter Monday", + "1996-05-09": "Day of Victory over Fascism", + "1996-05-12": "Saint Andrew's Day", + "1996-05-26": "Independence Day", + "1996-08-28": "Assumption of the Virgin Mary", + "1996-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "1996-11-23": "Saint George's Day", + "1997-01-01": "New Year's Day", + "1997-01-02": "New Year's Day", + "1997-01-07": "Christmas Day", + "1997-01-19": "Epiphany", + "1997-03-03": "Mother's Day", + "1997-03-08": "International Women's Day", + "1997-04-09": "National Unity Day", + "1997-04-25": "Good Friday", + "1997-04-26": "Holy Saturday", + "1997-04-27": "Easter Sunday", + "1997-04-28": "Easter Monday", + "1997-05-09": "Day of Victory over Fascism", + "1997-05-12": "Saint Andrew's Day", + "1997-05-26": "Independence Day", + "1997-08-28": "Assumption of the Virgin Mary", + "1997-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "1997-11-23": "Saint George's Day", + "1998-01-01": "New Year's Day", + "1998-01-02": "New Year's Day", + "1998-01-07": "Christmas Day", + "1998-01-19": "Epiphany", + "1998-03-03": "Mother's Day", + "1998-03-08": "International Women's Day", + "1998-04-09": "National Unity Day", + "1998-04-17": "Good Friday", + "1998-04-18": "Holy Saturday", + "1998-04-19": "Easter Sunday", + "1998-04-20": "Easter Monday", + "1998-05-09": "Day of Victory over Fascism", + "1998-05-12": "Saint Andrew's Day", + "1998-05-26": "Independence Day", + "1998-08-28": "Assumption of the Virgin Mary", + "1998-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "1998-11-23": "Saint George's Day", + "1999-01-01": "New Year's Day", + "1999-01-02": "New Year's Day", + "1999-01-07": "Christmas Day", + "1999-01-19": "Epiphany", + "1999-03-03": "Mother's Day", + "1999-03-08": "International Women's Day", + "1999-04-09": "Good Friday; National Unity Day", + "1999-04-10": "Holy Saturday", + "1999-04-11": "Easter Sunday", + "1999-04-12": "Easter Monday", + "1999-05-09": "Day of Victory over Fascism", + "1999-05-12": "Saint Andrew's Day", + "1999-05-26": "Independence Day", + "1999-08-28": "Assumption of the Virgin Mary", + "1999-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "1999-11-23": "Saint George's Day", + "2000-01-01": "New Year's Day", + "2000-01-02": "New Year's Day", + "2000-01-07": "Christmas Day", + "2000-01-19": "Epiphany", + "2000-03-03": "Mother's Day", + "2000-03-08": "International Women's Day", + "2000-04-09": "National Unity Day", + "2000-04-28": "Good Friday", + "2000-04-29": "Holy Saturday", + "2000-04-30": "Easter Sunday", + "2000-05-01": "Easter Monday", + "2000-05-09": "Day of Victory over Fascism", + "2000-05-12": "Saint Andrew's Day", + "2000-05-26": "Independence Day", + "2000-08-28": "Assumption of the Virgin Mary", + "2000-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2000-11-23": "Saint George's Day", + "2001-01-01": "New Year's Day", + "2001-01-02": "New Year's Day", + "2001-01-07": "Christmas Day", + "2001-01-19": "Epiphany", + "2001-03-03": "Mother's Day", + "2001-03-08": "International Women's Day", + "2001-04-09": "National Unity Day", + "2001-04-13": "Good Friday", + "2001-04-14": "Holy Saturday", + "2001-04-15": "Easter Sunday", + "2001-04-16": "Easter Monday", + "2001-05-09": "Day of Victory over Fascism", + "2001-05-12": "Saint Andrew's Day", + "2001-05-26": "Independence Day", + "2001-08-28": "Assumption of the Virgin Mary", + "2001-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2001-11-23": "Saint George's Day", + "2002-01-01": "New Year's Day", + "2002-01-02": "New Year's Day", + "2002-01-07": "Christmas Day", + "2002-01-19": "Epiphany", + "2002-03-03": "Mother's Day", + "2002-03-08": "International Women's Day", + "2002-04-09": "National Unity Day", + "2002-05-03": "Good Friday", + "2002-05-04": "Holy Saturday", + "2002-05-05": "Easter Sunday", + "2002-05-06": "Easter Monday", + "2002-05-09": "Day of Victory over Fascism", + "2002-05-12": "Saint Andrew's Day", + "2002-05-26": "Independence Day", + "2002-08-28": "Assumption of the Virgin Mary", + "2002-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2002-11-23": "Saint George's Day", + "2003-01-01": "New Year's Day", + "2003-01-02": "New Year's Day", + "2003-01-07": "Christmas Day", + "2003-01-19": "Epiphany", + "2003-03-03": "Mother's Day", + "2003-03-08": "International Women's Day", + "2003-04-09": "National Unity Day", + "2003-04-25": "Good Friday", + "2003-04-26": "Holy Saturday", + "2003-04-27": "Easter Sunday", + "2003-04-28": "Easter Monday", + "2003-05-09": "Day of Victory over Fascism", + "2003-05-12": "Saint Andrew's Day", + "2003-05-26": "Independence Day", + "2003-08-28": "Assumption of the Virgin Mary", + "2003-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2003-11-23": "Saint George's Day", + "2004-01-01": "New Year's Day", + "2004-01-02": "New Year's Day", + "2004-01-07": "Christmas Day", + "2004-01-19": "Epiphany", + "2004-03-03": "Mother's Day", + "2004-03-08": "International Women's Day", + "2004-04-09": "Good Friday; National Unity Day", + "2004-04-10": "Holy Saturday", + "2004-04-11": "Easter Sunday", + "2004-04-12": "Easter Monday", + "2004-05-09": "Day of Victory over Fascism", + "2004-05-12": "Saint Andrew's Day", + "2004-05-26": "Independence Day", + "2004-08-28": "Assumption of the Virgin Mary", + "2004-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2004-11-23": "Saint George's Day", + "2005-01-01": "New Year's Day", + "2005-01-02": "New Year's Day", + "2005-01-07": "Christmas Day", + "2005-01-19": "Epiphany", + "2005-03-03": "Mother's Day", + "2005-03-08": "International Women's Day", + "2005-04-09": "National Unity Day", + "2005-04-29": "Good Friday", + "2005-04-30": "Holy Saturday", + "2005-05-01": "Easter Sunday", + "2005-05-02": "Easter Monday", + "2005-05-09": "Day of Victory over Fascism", + "2005-05-12": "Saint Andrew's Day", + "2005-05-26": "Independence Day", + "2005-08-28": "Assumption of the Virgin Mary", + "2005-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2005-11-23": "Saint George's Day", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day", + "2006-01-07": "Christmas Day", + "2006-01-19": "Epiphany", + "2006-03-03": "Mother's Day", + "2006-03-08": "International Women's Day", + "2006-04-09": "National Unity Day", + "2006-04-21": "Good Friday", + "2006-04-22": "Holy Saturday", + "2006-04-23": "Easter Sunday", + "2006-04-24": "Easter Monday", + "2006-05-09": "Day of Victory over Fascism", + "2006-05-12": "Saint Andrew's Day", + "2006-05-26": "Independence Day", + "2006-08-28": "Assumption of the Virgin Mary", + "2006-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2006-11-23": "Saint George's Day", + "2007-01-01": "New Year's Day", + "2007-01-02": "New Year's Day", + "2007-01-07": "Christmas Day", + "2007-01-19": "Epiphany", + "2007-03-03": "Mother's Day", + "2007-03-08": "International Women's Day", + "2007-04-06": "Good Friday", + "2007-04-07": "Holy Saturday", + "2007-04-08": "Easter Sunday", + "2007-04-09": "Easter Monday; National Unity Day", + "2007-05-09": "Day of Victory over Fascism", + "2007-05-12": "Saint Andrew's Day", + "2007-05-26": "Independence Day", + "2007-08-28": "Assumption of the Virgin Mary", + "2007-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2007-11-23": "Saint George's Day", + "2008-01-01": "New Year's Day", + "2008-01-02": "New Year's Day", + "2008-01-07": "Christmas Day", + "2008-01-19": "Epiphany", + "2008-03-03": "Mother's Day", + "2008-03-08": "International Women's Day", + "2008-04-09": "National Unity Day", + "2008-04-25": "Good Friday", + "2008-04-26": "Holy Saturday", + "2008-04-27": "Easter Sunday", + "2008-04-28": "Easter Monday", + "2008-05-09": "Day of Victory over Fascism", + "2008-05-12": "Saint Andrew's Day", + "2008-05-26": "Independence Day", + "2008-08-28": "Assumption of the Virgin Mary", + "2008-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2008-11-23": "Saint George's Day", + "2009-01-01": "New Year's Day", + "2009-01-02": "New Year's Day", + "2009-01-07": "Christmas Day", + "2009-01-19": "Epiphany", + "2009-03-03": "Mother's Day", + "2009-03-08": "International Women's Day", + "2009-04-09": "National Unity Day", + "2009-04-17": "Good Friday", + "2009-04-18": "Holy Saturday", + "2009-04-19": "Easter Sunday", + "2009-04-20": "Easter Monday", + "2009-05-09": "Day of Victory over Fascism", + "2009-05-12": "Saint Andrew's Day", + "2009-05-26": "Independence Day", + "2009-08-28": "Assumption of the Virgin Mary", + "2009-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2009-11-23": "Saint George's Day", + "2010-01-01": "New Year's Day", + "2010-01-02": "New Year's Day", + "2010-01-07": "Christmas Day", + "2010-01-19": "Epiphany", + "2010-03-03": "Mother's Day", + "2010-03-08": "International Women's Day", + "2010-04-02": "Good Friday", + "2010-04-03": "Holy Saturday", + "2010-04-04": "Easter Sunday", + "2010-04-05": "Easter Monday", + "2010-04-09": "National Unity Day", + "2010-05-09": "Day of Victory over Fascism", + "2010-05-12": "Saint Andrew's Day", + "2010-05-26": "Independence Day", + "2010-08-28": "Assumption of the Virgin Mary", + "2010-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2010-11-23": "Saint George's Day", + "2011-01-01": "New Year's Day", + "2011-01-02": "New Year's Day", + "2011-01-07": "Christmas Day", + "2011-01-19": "Epiphany", + "2011-03-03": "Mother's Day", + "2011-03-08": "International Women's Day", + "2011-04-09": "National Unity Day", + "2011-04-22": "Good Friday", + "2011-04-23": "Holy Saturday", + "2011-04-24": "Easter Sunday", + "2011-04-25": "Easter Monday", + "2011-05-09": "Day of Victory over Fascism", + "2011-05-12": "Saint Andrew's Day", + "2011-05-26": "Independence Day", + "2011-08-28": "Assumption of the Virgin Mary", + "2011-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2011-11-23": "Saint George's Day", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day", + "2012-01-07": "Christmas Day", + "2012-01-19": "Epiphany", + "2012-03-03": "Mother's Day", + "2012-03-08": "International Women's Day", + "2012-04-09": "National Unity Day", + "2012-04-13": "Good Friday", + "2012-04-14": "Holy Saturday", + "2012-04-15": "Easter Sunday", + "2012-04-16": "Easter Monday", + "2012-05-09": "Day of Victory over Fascism", + "2012-05-12": "Saint Andrew's Day", + "2012-05-26": "Independence Day", + "2012-08-28": "Assumption of the Virgin Mary", + "2012-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2012-11-23": "Saint George's Day", + "2013-01-01": "New Year's Day", + "2013-01-02": "New Year's Day", + "2013-01-07": "Christmas Day", + "2013-01-19": "Epiphany", + "2013-03-03": "Mother's Day", + "2013-03-08": "International Women's Day", + "2013-04-09": "National Unity Day", + "2013-05-03": "Good Friday", + "2013-05-04": "Holy Saturday", + "2013-05-05": "Easter Sunday", + "2013-05-06": "Easter Monday", + "2013-05-09": "Day of Victory over Fascism", + "2013-05-12": "Saint Andrew's Day", + "2013-05-26": "Independence Day", + "2013-08-28": "Assumption of the Virgin Mary", + "2013-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2013-11-23": "Saint George's Day", + "2014-01-01": "New Year's Day", + "2014-01-02": "New Year's Day", + "2014-01-07": "Christmas Day", + "2014-01-19": "Epiphany", + "2014-03-03": "Mother's Day", + "2014-03-08": "International Women's Day", + "2014-04-09": "National Unity Day", + "2014-04-18": "Good Friday", + "2014-04-19": "Holy Saturday", + "2014-04-20": "Easter Sunday", + "2014-04-21": "Easter Monday", + "2014-05-09": "Day of Victory over Fascism", + "2014-05-12": "Saint Andrew's Day", + "2014-05-26": "Independence Day", + "2014-08-28": "Assumption of the Virgin Mary", + "2014-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2014-11-23": "Saint George's Day", + "2015-01-01": "New Year's Day", + "2015-01-02": "New Year's Day", + "2015-01-07": "Christmas Day", + "2015-01-19": "Epiphany", + "2015-03-03": "Mother's Day", + "2015-03-08": "International Women's Day", + "2015-04-09": "National Unity Day", + "2015-04-10": "Good Friday", + "2015-04-11": "Holy Saturday", + "2015-04-12": "Easter Sunday", + "2015-04-13": "Easter Monday", + "2015-05-09": "Day of Victory over Fascism", + "2015-05-12": "Saint Andrew's Day", + "2015-05-26": "Independence Day", + "2015-08-28": "Assumption of the Virgin Mary", + "2015-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2015-11-23": "Saint George's Day", + "2016-01-01": "New Year's Day", + "2016-01-02": "New Year's Day", + "2016-01-07": "Christmas Day", + "2016-01-19": "Epiphany", + "2016-03-03": "Mother's Day", + "2016-03-08": "International Women's Day", + "2016-04-09": "National Unity Day", + "2016-04-29": "Good Friday", + "2016-04-30": "Holy Saturday", + "2016-05-01": "Easter Sunday", + "2016-05-02": "Easter Monday", + "2016-05-09": "Day of Victory over Fascism", + "2016-05-12": "Saint Andrew's Day", + "2016-05-26": "Independence Day", + "2016-08-28": "Assumption of the Virgin Mary", + "2016-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2016-11-23": "Saint George's Day", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day", + "2017-01-07": "Christmas Day", + "2017-01-19": "Epiphany", + "2017-03-03": "Mother's Day", + "2017-03-08": "International Women's Day", + "2017-04-09": "National Unity Day", + "2017-04-14": "Good Friday", + "2017-04-15": "Holy Saturday", + "2017-04-16": "Easter Sunday", + "2017-04-17": "Easter Monday", + "2017-05-09": "Day of Victory over Fascism", + "2017-05-12": "Saint Andrew's Day", + "2017-05-26": "Independence Day", + "2017-08-28": "Assumption of the Virgin Mary", + "2017-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2017-11-23": "Saint George's Day", + "2018-01-01": "New Year's Day", + "2018-01-02": "New Year's Day", + "2018-01-07": "Christmas Day", + "2018-01-19": "Epiphany", + "2018-03-03": "Mother's Day", + "2018-03-08": "International Women's Day", + "2018-04-06": "Good Friday", + "2018-04-07": "Holy Saturday", + "2018-04-08": "Easter Sunday", + "2018-04-09": "Easter Monday; National Unity Day", + "2018-05-09": "Day of Victory over Fascism", + "2018-05-12": "Saint Andrew's Day", + "2018-05-26": "Independence Day", + "2018-08-28": "Assumption of the Virgin Mary", + "2018-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2018-11-23": "Saint George's Day", + "2019-01-01": "New Year's Day", + "2019-01-02": "New Year's Day", + "2019-01-07": "Christmas Day", + "2019-01-19": "Epiphany", + "2019-03-03": "Mother's Day", + "2019-03-08": "International Women's Day", + "2019-04-09": "National Unity Day", + "2019-04-26": "Good Friday", + "2019-04-27": "Holy Saturday", + "2019-04-28": "Easter Sunday", + "2019-04-29": "Easter Monday", + "2019-05-09": "Day of Victory over Fascism", + "2019-05-12": "Saint Andrew's Day", + "2019-05-26": "Independence Day", + "2019-08-28": "Assumption of the Virgin Mary", + "2019-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2019-11-23": "Saint George's Day", + "2020-01-01": "New Year's Day", + "2020-01-02": "New Year's Day", + "2020-01-07": "Christmas Day", + "2020-01-19": "Epiphany", + "2020-03-03": "Mother's Day", + "2020-03-08": "International Women's Day", + "2020-04-09": "National Unity Day", + "2020-04-17": "Good Friday", + "2020-04-18": "Holy Saturday", + "2020-04-19": "Easter Sunday", + "2020-04-20": "Easter Monday", + "2020-05-09": "Day of Victory over Fascism", + "2020-05-12": "Saint Andrew's Day", + "2020-05-26": "Independence Day", + "2020-08-28": "Assumption of the Virgin Mary", + "2020-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2020-11-23": "Saint George's Day", + "2021-01-01": "New Year's Day", + "2021-01-02": "New Year's Day", + "2021-01-07": "Christmas Day", + "2021-01-19": "Epiphany", + "2021-03-03": "Mother's Day", + "2021-03-08": "International Women's Day", + "2021-04-09": "National Unity Day", + "2021-04-30": "Good Friday", + "2021-05-01": "Holy Saturday", + "2021-05-02": "Easter Sunday", + "2021-05-03": "Easter Monday", + "2021-05-09": "Day of Victory over Fascism", + "2021-05-12": "Saint Andrew's Day", + "2021-05-26": "Independence Day", + "2021-08-28": "Assumption of the Virgin Mary", + "2021-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2021-11-23": "Saint George's Day", + "2022-01-01": "New Year's Day", + "2022-01-02": "New Year's Day", + "2022-01-07": "Christmas Day", + "2022-01-19": "Epiphany", + "2022-03-03": "Mother's Day", + "2022-03-08": "International Women's Day", + "2022-04-09": "National Unity Day", + "2022-04-22": "Good Friday", + "2022-04-23": "Holy Saturday", + "2022-04-24": "Easter Sunday", + "2022-04-25": "Easter Monday", + "2022-05-09": "Day of Victory over Fascism", + "2022-05-12": "Saint Andrew's Day", + "2022-05-26": "Independence Day", + "2022-08-28": "Assumption of the Virgin Mary", + "2022-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2022-11-23": "Saint George's Day", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day", + "2023-01-07": "Christmas Day", + "2023-01-19": "Epiphany", + "2023-03-03": "Mother's Day", + "2023-03-08": "International Women's Day", + "2023-04-09": "National Unity Day", + "2023-04-14": "Good Friday", + "2023-04-15": "Holy Saturday", + "2023-04-16": "Easter Sunday", + "2023-04-17": "Easter Monday", + "2023-05-09": "Day of Victory over Fascism", + "2023-05-12": "Saint Andrew's Day", + "2023-05-26": "Independence Day", + "2023-08-28": "Assumption of the Virgin Mary", + "2023-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2023-11-23": "Saint George's Day", + "2024-01-01": "New Year's Day", + "2024-01-02": "New Year's Day", + "2024-01-07": "Christmas Day", + "2024-01-19": "Epiphany", + "2024-03-03": "Mother's Day", + "2024-03-08": "International Women's Day", + "2024-04-09": "National Unity Day", + "2024-05-03": "Good Friday", + "2024-05-04": "Holy Saturday", + "2024-05-05": "Easter Sunday", + "2024-05-06": "Easter Monday", + "2024-05-09": "Day of Victory over Fascism", + "2024-05-12": "Saint Andrew's Day", + "2024-05-26": "Independence Day", + "2024-08-28": "Assumption of the Virgin Mary", + "2024-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2024-11-23": "Saint George's Day", + "2025-01-01": "New Year's Day", + "2025-01-02": "New Year's Day", + "2025-01-07": "Christmas Day", + "2025-01-19": "Epiphany", + "2025-03-03": "Mother's Day", + "2025-03-08": "International Women's Day", + "2025-04-09": "National Unity Day", + "2025-04-18": "Good Friday", + "2025-04-19": "Holy Saturday", + "2025-04-20": "Easter Sunday", + "2025-04-21": "Easter Monday", + "2025-05-09": "Day of Victory over Fascism", + "2025-05-12": "Saint Andrew's Day", + "2025-05-26": "Independence Day", + "2025-08-28": "Assumption of the Virgin Mary", + "2025-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2025-11-23": "Saint George's Day", + "2026-01-01": "New Year's Day", + "2026-01-02": "New Year's Day", + "2026-01-07": "Christmas Day", + "2026-01-19": "Epiphany", + "2026-03-03": "Mother's Day", + "2026-03-08": "International Women's Day", + "2026-04-09": "National Unity Day", + "2026-04-10": "Good Friday", + "2026-04-11": "Holy Saturday", + "2026-04-12": "Easter Sunday", + "2026-04-13": "Easter Monday", + "2026-05-09": "Day of Victory over Fascism", + "2026-05-12": "Saint Andrew's Day", + "2026-05-26": "Independence Day", + "2026-08-28": "Assumption of the Virgin Mary", + "2026-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2026-11-23": "Saint George's Day", + "2027-01-01": "New Year's Day", + "2027-01-02": "New Year's Day", + "2027-01-07": "Christmas Day", + "2027-01-19": "Epiphany", + "2027-03-03": "Mother's Day", + "2027-03-08": "International Women's Day", + "2027-04-09": "National Unity Day", + "2027-04-30": "Good Friday", + "2027-05-01": "Holy Saturday", + "2027-05-02": "Easter Sunday", + "2027-05-03": "Easter Monday", + "2027-05-09": "Day of Victory over Fascism", + "2027-05-12": "Saint Andrew's Day", + "2027-05-26": "Independence Day", + "2027-08-28": "Assumption of the Virgin Mary", + "2027-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2027-11-23": "Saint George's Day", + "2028-01-01": "New Year's Day", + "2028-01-02": "New Year's Day", + "2028-01-07": "Christmas Day", + "2028-01-19": "Epiphany", + "2028-03-03": "Mother's Day", + "2028-03-08": "International Women's Day", + "2028-04-09": "National Unity Day", + "2028-04-14": "Good Friday", + "2028-04-15": "Holy Saturday", + "2028-04-16": "Easter Sunday", + "2028-04-17": "Easter Monday", + "2028-05-09": "Day of Victory over Fascism", + "2028-05-12": "Saint Andrew's Day", + "2028-05-26": "Independence Day", + "2028-08-28": "Assumption of the Virgin Mary", + "2028-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2028-11-23": "Saint George's Day", + "2029-01-01": "New Year's Day", + "2029-01-02": "New Year's Day", + "2029-01-07": "Christmas Day", + "2029-01-19": "Epiphany", + "2029-03-03": "Mother's Day", + "2029-03-08": "International Women's Day", + "2029-04-06": "Good Friday", + "2029-04-07": "Holy Saturday", + "2029-04-08": "Easter Sunday", + "2029-04-09": "Easter Monday; National Unity Day", + "2029-05-09": "Day of Victory over Fascism", + "2029-05-12": "Saint Andrew's Day", + "2029-05-26": "Independence Day", + "2029-08-28": "Assumption of the Virgin Mary", + "2029-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2029-11-23": "Saint George's Day", + "2030-01-01": "New Year's Day", + "2030-01-02": "New Year's Day", + "2030-01-07": "Christmas Day", + "2030-01-19": "Epiphany", + "2030-03-03": "Mother's Day", + "2030-03-08": "International Women's Day", + "2030-04-09": "National Unity Day", + "2030-04-26": "Good Friday", + "2030-04-27": "Holy Saturday", + "2030-04-28": "Easter Sunday", + "2030-04-29": "Easter Monday", + "2030-05-09": "Day of Victory over Fascism", + "2030-05-12": "Saint Andrew's Day", + "2030-05-26": "Independence Day", + "2030-08-28": "Assumption of the Virgin Mary", + "2030-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2030-11-23": "Saint George's Day", + "2031-01-01": "New Year's Day", + "2031-01-02": "New Year's Day", + "2031-01-07": "Christmas Day", + "2031-01-19": "Epiphany", + "2031-03-03": "Mother's Day", + "2031-03-08": "International Women's Day", + "2031-04-09": "National Unity Day", + "2031-04-11": "Good Friday", + "2031-04-12": "Holy Saturday", + "2031-04-13": "Easter Sunday", + "2031-04-14": "Easter Monday", + "2031-05-09": "Day of Victory over Fascism", + "2031-05-12": "Saint Andrew's Day", + "2031-05-26": "Independence Day", + "2031-08-28": "Assumption of the Virgin Mary", + "2031-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2031-11-23": "Saint George's Day", + "2032-01-01": "New Year's Day", + "2032-01-02": "New Year's Day", + "2032-01-07": "Christmas Day", + "2032-01-19": "Epiphany", + "2032-03-03": "Mother's Day", + "2032-03-08": "International Women's Day", + "2032-04-09": "National Unity Day", + "2032-04-30": "Good Friday", + "2032-05-01": "Holy Saturday", + "2032-05-02": "Easter Sunday", + "2032-05-03": "Easter Monday", + "2032-05-09": "Day of Victory over Fascism", + "2032-05-12": "Saint Andrew's Day", + "2032-05-26": "Independence Day", + "2032-08-28": "Assumption of the Virgin Mary", + "2032-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2032-11-23": "Saint George's Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "New Year's Day", + "2033-01-07": "Christmas Day", + "2033-01-19": "Epiphany", + "2033-03-03": "Mother's Day", + "2033-03-08": "International Women's Day", + "2033-04-09": "National Unity Day", + "2033-04-22": "Good Friday", + "2033-04-23": "Holy Saturday", + "2033-04-24": "Easter Sunday", + "2033-04-25": "Easter Monday", + "2033-05-09": "Day of Victory over Fascism", + "2033-05-12": "Saint Andrew's Day", + "2033-05-26": "Independence Day", + "2033-08-28": "Assumption of the Virgin Mary", + "2033-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2033-11-23": "Saint George's Day", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day", + "2034-01-07": "Christmas Day", + "2034-01-19": "Epiphany", + "2034-03-03": "Mother's Day", + "2034-03-08": "International Women's Day", + "2034-04-07": "Good Friday", + "2034-04-08": "Holy Saturday", + "2034-04-09": "Easter Sunday; National Unity Day", + "2034-04-10": "Easter Monday", + "2034-05-09": "Day of Victory over Fascism", + "2034-05-12": "Saint Andrew's Day", + "2034-05-26": "Independence Day", + "2034-08-28": "Assumption of the Virgin Mary", + "2034-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2034-11-23": "Saint George's Day", + "2035-01-01": "New Year's Day", + "2035-01-02": "New Year's Day", + "2035-01-07": "Christmas Day", + "2035-01-19": "Epiphany", + "2035-03-03": "Mother's Day", + "2035-03-08": "International Women's Day", + "2035-04-09": "National Unity Day", + "2035-04-27": "Good Friday", + "2035-04-28": "Holy Saturday", + "2035-04-29": "Easter Sunday", + "2035-04-30": "Easter Monday", + "2035-05-09": "Day of Victory over Fascism", + "2035-05-12": "Saint Andrew's Day", + "2035-05-26": "Independence Day", + "2035-08-28": "Assumption of the Virgin Mary", + "2035-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2035-11-23": "Saint George's Day", + "2036-01-01": "New Year's Day", + "2036-01-02": "New Year's Day", + "2036-01-07": "Christmas Day", + "2036-01-19": "Epiphany", + "2036-03-03": "Mother's Day", + "2036-03-08": "International Women's Day", + "2036-04-09": "National Unity Day", + "2036-04-18": "Good Friday", + "2036-04-19": "Holy Saturday", + "2036-04-20": "Easter Sunday", + "2036-04-21": "Easter Monday", + "2036-05-09": "Day of Victory over Fascism", + "2036-05-12": "Saint Andrew's Day", + "2036-05-26": "Independence Day", + "2036-08-28": "Assumption of the Virgin Mary", + "2036-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2036-11-23": "Saint George's Day", + "2037-01-01": "New Year's Day", + "2037-01-02": "New Year's Day", + "2037-01-07": "Christmas Day", + "2037-01-19": "Epiphany", + "2037-03-03": "Mother's Day", + "2037-03-08": "International Women's Day", + "2037-04-03": "Good Friday", + "2037-04-04": "Holy Saturday", + "2037-04-05": "Easter Sunday", + "2037-04-06": "Easter Monday", + "2037-04-09": "National Unity Day", + "2037-05-09": "Day of Victory over Fascism", + "2037-05-12": "Saint Andrew's Day", + "2037-05-26": "Independence Day", + "2037-08-28": "Assumption of the Virgin Mary", + "2037-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2037-11-23": "Saint George's Day", + "2038-01-01": "New Year's Day", + "2038-01-02": "New Year's Day", + "2038-01-07": "Christmas Day", + "2038-01-19": "Epiphany", + "2038-03-03": "Mother's Day", + "2038-03-08": "International Women's Day", + "2038-04-09": "National Unity Day", + "2038-04-23": "Good Friday", + "2038-04-24": "Holy Saturday", + "2038-04-25": "Easter Sunday", + "2038-04-26": "Easter Monday", + "2038-05-09": "Day of Victory over Fascism", + "2038-05-12": "Saint Andrew's Day", + "2038-05-26": "Independence Day", + "2038-08-28": "Assumption of the Virgin Mary", + "2038-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2038-11-23": "Saint George's Day", + "2039-01-01": "New Year's Day", + "2039-01-02": "New Year's Day", + "2039-01-07": "Christmas Day", + "2039-01-19": "Epiphany", + "2039-03-03": "Mother's Day", + "2039-03-08": "International Women's Day", + "2039-04-09": "National Unity Day", + "2039-04-15": "Good Friday", + "2039-04-16": "Holy Saturday", + "2039-04-17": "Easter Sunday", + "2039-04-18": "Easter Monday", + "2039-05-09": "Day of Victory over Fascism", + "2039-05-12": "Saint Andrew's Day", + "2039-05-26": "Independence Day", + "2039-08-28": "Assumption of the Virgin Mary", + "2039-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2039-11-23": "Saint George's Day", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day", + "2040-01-07": "Christmas Day", + "2040-01-19": "Epiphany", + "2040-03-03": "Mother's Day", + "2040-03-08": "International Women's Day", + "2040-04-09": "National Unity Day", + "2040-05-04": "Good Friday", + "2040-05-05": "Holy Saturday", + "2040-05-06": "Easter Sunday", + "2040-05-07": "Easter Monday", + "2040-05-09": "Day of Victory over Fascism", + "2040-05-12": "Saint Andrew's Day", + "2040-05-26": "Independence Day", + "2040-08-28": "Assumption of the Virgin Mary", + "2040-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2040-11-23": "Saint George's Day", + "2041-01-01": "New Year's Day", + "2041-01-02": "New Year's Day", + "2041-01-07": "Christmas Day", + "2041-01-19": "Epiphany", + "2041-03-03": "Mother's Day", + "2041-03-08": "International Women's Day", + "2041-04-09": "National Unity Day", + "2041-04-19": "Good Friday", + "2041-04-20": "Holy Saturday", + "2041-04-21": "Easter Sunday", + "2041-04-22": "Easter Monday", + "2041-05-09": "Day of Victory over Fascism", + "2041-05-12": "Saint Andrew's Day", + "2041-05-26": "Independence Day", + "2041-08-28": "Assumption of the Virgin Mary", + "2041-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2041-11-23": "Saint George's Day", + "2042-01-01": "New Year's Day", + "2042-01-02": "New Year's Day", + "2042-01-07": "Christmas Day", + "2042-01-19": "Epiphany", + "2042-03-03": "Mother's Day", + "2042-03-08": "International Women's Day", + "2042-04-09": "National Unity Day", + "2042-04-11": "Good Friday", + "2042-04-12": "Holy Saturday", + "2042-04-13": "Easter Sunday", + "2042-04-14": "Easter Monday", + "2042-05-09": "Day of Victory over Fascism", + "2042-05-12": "Saint Andrew's Day", + "2042-05-26": "Independence Day", + "2042-08-28": "Assumption of the Virgin Mary", + "2042-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2042-11-23": "Saint George's Day", + "2043-01-01": "New Year's Day", + "2043-01-02": "New Year's Day", + "2043-01-07": "Christmas Day", + "2043-01-19": "Epiphany", + "2043-03-03": "Mother's Day", + "2043-03-08": "International Women's Day", + "2043-04-09": "National Unity Day", + "2043-05-01": "Good Friday", + "2043-05-02": "Holy Saturday", + "2043-05-03": "Easter Sunday", + "2043-05-04": "Easter Monday", + "2043-05-09": "Day of Victory over Fascism", + "2043-05-12": "Saint Andrew's Day", + "2043-05-26": "Independence Day", + "2043-08-28": "Assumption of the Virgin Mary", + "2043-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2043-11-23": "Saint George's Day", + "2044-01-01": "New Year's Day", + "2044-01-02": "New Year's Day", + "2044-01-07": "Christmas Day", + "2044-01-19": "Epiphany", + "2044-03-03": "Mother's Day", + "2044-03-08": "International Women's Day", + "2044-04-09": "National Unity Day", + "2044-04-22": "Good Friday", + "2044-04-23": "Holy Saturday", + "2044-04-24": "Easter Sunday", + "2044-04-25": "Easter Monday", + "2044-05-09": "Day of Victory over Fascism", + "2044-05-12": "Saint Andrew's Day", + "2044-05-26": "Independence Day", + "2044-08-28": "Assumption of the Virgin Mary", + "2044-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2044-11-23": "Saint George's Day", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day", + "2045-01-07": "Christmas Day", + "2045-01-19": "Epiphany", + "2045-03-03": "Mother's Day", + "2045-03-08": "International Women's Day", + "2045-04-07": "Good Friday", + "2045-04-08": "Holy Saturday", + "2045-04-09": "Easter Sunday; National Unity Day", + "2045-04-10": "Easter Monday", + "2045-05-09": "Day of Victory over Fascism", + "2045-05-12": "Saint Andrew's Day", + "2045-05-26": "Independence Day", + "2045-08-28": "Assumption of the Virgin Mary", + "2045-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2045-11-23": "Saint George's Day", + "2046-01-01": "New Year's Day", + "2046-01-02": "New Year's Day", + "2046-01-07": "Christmas Day", + "2046-01-19": "Epiphany", + "2046-03-03": "Mother's Day", + "2046-03-08": "International Women's Day", + "2046-04-09": "National Unity Day", + "2046-04-27": "Good Friday", + "2046-04-28": "Holy Saturday", + "2046-04-29": "Easter Sunday", + "2046-04-30": "Easter Monday", + "2046-05-09": "Day of Victory over Fascism", + "2046-05-12": "Saint Andrew's Day", + "2046-05-26": "Independence Day", + "2046-08-28": "Assumption of the Virgin Mary", + "2046-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2046-11-23": "Saint George's Day", + "2047-01-01": "New Year's Day", + "2047-01-02": "New Year's Day", + "2047-01-07": "Christmas Day", + "2047-01-19": "Epiphany", + "2047-03-03": "Mother's Day", + "2047-03-08": "International Women's Day", + "2047-04-09": "National Unity Day", + "2047-04-19": "Good Friday", + "2047-04-20": "Holy Saturday", + "2047-04-21": "Easter Sunday", + "2047-04-22": "Easter Monday", + "2047-05-09": "Day of Victory over Fascism", + "2047-05-12": "Saint Andrew's Day", + "2047-05-26": "Independence Day", + "2047-08-28": "Assumption of the Virgin Mary", + "2047-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2047-11-23": "Saint George's Day", + "2048-01-01": "New Year's Day", + "2048-01-02": "New Year's Day", + "2048-01-07": "Christmas Day", + "2048-01-19": "Epiphany", + "2048-03-03": "Mother's Day", + "2048-03-08": "International Women's Day", + "2048-04-03": "Good Friday", + "2048-04-04": "Holy Saturday", + "2048-04-05": "Easter Sunday", + "2048-04-06": "Easter Monday", + "2048-04-09": "National Unity Day", + "2048-05-09": "Day of Victory over Fascism", + "2048-05-12": "Saint Andrew's Day", + "2048-05-26": "Independence Day", + "2048-08-28": "Assumption of the Virgin Mary", + "2048-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2048-11-23": "Saint George's Day", + "2049-01-01": "New Year's Day", + "2049-01-02": "New Year's Day", + "2049-01-07": "Christmas Day", + "2049-01-19": "Epiphany", + "2049-03-03": "Mother's Day", + "2049-03-08": "International Women's Day", + "2049-04-09": "National Unity Day", + "2049-04-23": "Good Friday", + "2049-04-24": "Holy Saturday", + "2049-04-25": "Easter Sunday", + "2049-04-26": "Easter Monday", + "2049-05-09": "Day of Victory over Fascism", + "2049-05-12": "Saint Andrew's Day", + "2049-05-26": "Independence Day", + "2049-08-28": "Assumption of the Virgin Mary", + "2049-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2049-11-23": "Saint George's Day", + "2050-01-01": "New Year's Day", + "2050-01-02": "New Year's Day", + "2050-01-07": "Christmas Day", + "2050-01-19": "Epiphany", + "2050-03-03": "Mother's Day", + "2050-03-08": "International Women's Day", + "2050-04-09": "National Unity Day", + "2050-04-15": "Good Friday", + "2050-04-16": "Holy Saturday", + "2050-04-17": "Easter Sunday", + "2050-04-18": "Easter Monday", + "2050-05-09": "Day of Victory over Fascism", + "2050-05-12": "Saint Andrew's Day", + "2050-05-26": "Independence Day", + "2050-08-28": "Assumption of the Virgin Mary", + "2050-10-14": "Holiday of Svetitskhovloba, Robe of Jesus", + "2050-11-23": "Saint George's Day" +} diff --git a/snapshots/countries/GR.json b/snapshots/countries/GR.json new file mode 100644 index 000000000..ce5ef3ac8 --- /dev/null +++ b/snapshots/countries/GR.json @@ -0,0 +1,1438 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-06": "Epiphany", + "1950-02-20": "Clean Monday", + "1950-03-25": "Independence Day", + "1950-04-07": "Good Friday", + "1950-04-10": "Easter Monday", + "1950-05-01": "Labor Day", + "1950-05-29": "Easter Monday", + "1950-08-15": "Dormition of the Mother of God", + "1950-10-28": "Ochi Day", + "1950-12-24": "Christmas Eve", + "1950-12-25": "Christmas Day", + "1950-12-26": "Glorifying Mother of God", + "1950-12-31": "New Year's Eve", + "1951-01-01": "New Year's Day", + "1951-01-06": "Epiphany", + "1951-03-12": "Clean Monday", + "1951-03-25": "Independence Day", + "1951-04-27": "Good Friday", + "1951-04-30": "Easter Monday", + "1951-05-01": "Labor Day", + "1951-06-18": "Easter Monday", + "1951-08-15": "Dormition of the Mother of God", + "1951-10-28": "Ochi Day", + "1951-12-24": "Christmas Eve", + "1951-12-25": "Christmas Day", + "1951-12-26": "Glorifying Mother of God", + "1951-12-31": "New Year's Eve", + "1952-01-01": "New Year's Day", + "1952-01-06": "Epiphany", + "1952-03-03": "Clean Monday", + "1952-03-25": "Independence Day", + "1952-04-18": "Good Friday", + "1952-04-21": "Easter Monday", + "1952-05-01": "Labor Day", + "1952-06-09": "Easter Monday", + "1952-08-15": "Dormition of the Mother of God", + "1952-10-28": "Ochi Day", + "1952-12-24": "Christmas Eve", + "1952-12-25": "Christmas Day", + "1952-12-26": "Glorifying Mother of God", + "1952-12-31": "New Year's Eve", + "1953-01-01": "New Year's Day", + "1953-01-06": "Epiphany", + "1953-02-16": "Clean Monday", + "1953-03-25": "Independence Day", + "1953-04-03": "Good Friday", + "1953-04-06": "Easter Monday", + "1953-05-01": "Labor Day", + "1953-05-25": "Easter Monday", + "1953-08-15": "Dormition of the Mother of God", + "1953-10-28": "Ochi Day", + "1953-12-24": "Christmas Eve", + "1953-12-25": "Christmas Day", + "1953-12-26": "Glorifying Mother of God", + "1953-12-31": "New Year's Eve", + "1954-01-01": "New Year's Day", + "1954-01-06": "Epiphany", + "1954-03-08": "Clean Monday", + "1954-03-25": "Independence Day", + "1954-04-23": "Good Friday", + "1954-04-26": "Easter Monday", + "1954-05-01": "Labor Day", + "1954-05-03": "Labor Day (Observed)", + "1954-06-14": "Easter Monday", + "1954-08-15": "Dormition of the Mother of God", + "1954-10-28": "Ochi Day", + "1954-12-24": "Christmas Eve", + "1954-12-25": "Christmas Day", + "1954-12-26": "Glorifying Mother of God", + "1954-12-31": "New Year's Eve", + "1955-01-01": "New Year's Day", + "1955-01-06": "Epiphany", + "1955-02-28": "Clean Monday", + "1955-03-25": "Independence Day", + "1955-04-15": "Good Friday", + "1955-04-18": "Easter Monday", + "1955-05-01": "Labor Day", + "1955-05-02": "Labor Day (Observed)", + "1955-06-06": "Easter Monday", + "1955-08-15": "Dormition of the Mother of God", + "1955-10-28": "Ochi Day", + "1955-12-24": "Christmas Eve", + "1955-12-25": "Christmas Day", + "1955-12-26": "Glorifying Mother of God", + "1955-12-31": "New Year's Eve", + "1956-01-01": "New Year's Day", + "1956-01-06": "Epiphany", + "1956-03-19": "Clean Monday", + "1956-03-25": "Independence Day", + "1956-05-01": "Labor Day", + "1956-05-04": "Good Friday", + "1956-05-07": "Easter Monday", + "1956-06-25": "Easter Monday", + "1956-08-15": "Dormition of the Mother of God", + "1956-10-28": "Ochi Day", + "1956-12-24": "Christmas Eve", + "1956-12-25": "Christmas Day", + "1956-12-26": "Glorifying Mother of God", + "1956-12-31": "New Year's Eve", + "1957-01-01": "New Year's Day", + "1957-01-06": "Epiphany", + "1957-03-04": "Clean Monday", + "1957-03-25": "Independence Day", + "1957-04-19": "Good Friday", + "1957-04-22": "Easter Monday", + "1957-05-01": "Labor Day", + "1957-06-10": "Easter Monday", + "1957-08-15": "Dormition of the Mother of God", + "1957-10-28": "Ochi Day", + "1957-12-24": "Christmas Eve", + "1957-12-25": "Christmas Day", + "1957-12-26": "Glorifying Mother of God", + "1957-12-31": "New Year's Eve", + "1958-01-01": "New Year's Day", + "1958-01-06": "Epiphany", + "1958-02-24": "Clean Monday", + "1958-03-25": "Independence Day", + "1958-04-11": "Good Friday", + "1958-04-14": "Easter Monday", + "1958-05-01": "Labor Day", + "1958-06-02": "Easter Monday", + "1958-08-15": "Dormition of the Mother of God", + "1958-10-28": "Ochi Day", + "1958-12-24": "Christmas Eve", + "1958-12-25": "Christmas Day", + "1958-12-26": "Glorifying Mother of God", + "1958-12-31": "New Year's Eve", + "1959-01-01": "New Year's Day", + "1959-01-06": "Epiphany", + "1959-03-16": "Clean Monday", + "1959-03-25": "Independence Day", + "1959-05-01": "Good Friday; Labor Day", + "1959-05-04": "Easter Monday", + "1959-06-22": "Easter Monday", + "1959-08-15": "Dormition of the Mother of God", + "1959-10-28": "Ochi Day", + "1959-12-24": "Christmas Eve", + "1959-12-25": "Christmas Day", + "1959-12-26": "Glorifying Mother of God", + "1959-12-31": "New Year's Eve", + "1960-01-01": "New Year's Day", + "1960-01-06": "Epiphany", + "1960-02-29": "Clean Monday", + "1960-03-25": "Independence Day", + "1960-04-15": "Good Friday", + "1960-04-18": "Easter Monday", + "1960-05-01": "Labor Day", + "1960-05-02": "Labor Day (Observed)", + "1960-06-06": "Easter Monday", + "1960-08-15": "Dormition of the Mother of God", + "1960-10-28": "Ochi Day", + "1960-12-24": "Christmas Eve", + "1960-12-25": "Christmas Day", + "1960-12-26": "Glorifying Mother of God", + "1960-12-31": "New Year's Eve", + "1961-01-01": "New Year's Day", + "1961-01-06": "Epiphany", + "1961-02-20": "Clean Monday", + "1961-03-25": "Independence Day", + "1961-04-07": "Good Friday", + "1961-04-10": "Easter Monday", + "1961-05-01": "Labor Day", + "1961-05-29": "Easter Monday", + "1961-08-15": "Dormition of the Mother of God", + "1961-10-28": "Ochi Day", + "1961-12-24": "Christmas Eve", + "1961-12-25": "Christmas Day", + "1961-12-26": "Glorifying Mother of God", + "1961-12-31": "New Year's Eve", + "1962-01-01": "New Year's Day", + "1962-01-06": "Epiphany", + "1962-03-12": "Clean Monday", + "1962-03-25": "Independence Day", + "1962-04-27": "Good Friday", + "1962-04-30": "Easter Monday", + "1962-05-01": "Labor Day", + "1962-06-18": "Easter Monday", + "1962-08-15": "Dormition of the Mother of God", + "1962-10-28": "Ochi Day", + "1962-12-24": "Christmas Eve", + "1962-12-25": "Christmas Day", + "1962-12-26": "Glorifying Mother of God", + "1962-12-31": "New Year's Eve", + "1963-01-01": "New Year's Day", + "1963-01-06": "Epiphany", + "1963-02-25": "Clean Monday", + "1963-03-25": "Independence Day", + "1963-04-12": "Good Friday", + "1963-04-15": "Easter Monday", + "1963-05-01": "Labor Day", + "1963-06-03": "Easter Monday", + "1963-08-15": "Dormition of the Mother of God", + "1963-10-28": "Ochi Day", + "1963-12-24": "Christmas Eve", + "1963-12-25": "Christmas Day", + "1963-12-26": "Glorifying Mother of God", + "1963-12-31": "New Year's Eve", + "1964-01-01": "New Year's Day", + "1964-01-06": "Epiphany", + "1964-03-16": "Clean Monday", + "1964-03-25": "Independence Day", + "1964-05-01": "Good Friday; Labor Day", + "1964-05-04": "Easter Monday", + "1964-06-22": "Easter Monday", + "1964-08-15": "Dormition of the Mother of God", + "1964-10-28": "Ochi Day", + "1964-12-24": "Christmas Eve", + "1964-12-25": "Christmas Day", + "1964-12-26": "Glorifying Mother of God", + "1964-12-31": "New Year's Eve", + "1965-01-01": "New Year's Day", + "1965-01-06": "Epiphany", + "1965-03-08": "Clean Monday", + "1965-03-25": "Independence Day", + "1965-04-23": "Good Friday", + "1965-04-26": "Easter Monday", + "1965-05-01": "Labor Day", + "1965-05-03": "Labor Day (Observed)", + "1965-06-14": "Easter Monday", + "1965-08-15": "Dormition of the Mother of God", + "1965-10-28": "Ochi Day", + "1965-12-24": "Christmas Eve", + "1965-12-25": "Christmas Day", + "1965-12-26": "Glorifying Mother of God", + "1965-12-31": "New Year's Eve", + "1966-01-01": "New Year's Day", + "1966-01-06": "Epiphany", + "1966-02-21": "Clean Monday", + "1966-03-25": "Independence Day", + "1966-04-08": "Good Friday", + "1966-04-11": "Easter Monday", + "1966-05-01": "Labor Day", + "1966-05-02": "Labor Day (Observed)", + "1966-05-30": "Easter Monday", + "1966-08-15": "Dormition of the Mother of God", + "1966-10-28": "Ochi Day", + "1966-12-24": "Christmas Eve", + "1966-12-25": "Christmas Day", + "1966-12-26": "Glorifying Mother of God", + "1966-12-31": "New Year's Eve", + "1967-01-01": "New Year's Day", + "1967-01-06": "Epiphany", + "1967-03-13": "Clean Monday", + "1967-03-25": "Independence Day", + "1967-04-28": "Good Friday", + "1967-05-01": "Easter Monday; Labor Day", + "1967-06-19": "Easter Monday", + "1967-08-15": "Dormition of the Mother of God", + "1967-10-28": "Ochi Day", + "1967-12-24": "Christmas Eve", + "1967-12-25": "Christmas Day", + "1967-12-26": "Glorifying Mother of God", + "1967-12-31": "New Year's Eve", + "1968-01-01": "New Year's Day", + "1968-01-06": "Epiphany", + "1968-03-04": "Clean Monday", + "1968-03-25": "Independence Day", + "1968-04-19": "Good Friday", + "1968-04-22": "Easter Monday", + "1968-05-01": "Labor Day", + "1968-06-10": "Easter Monday", + "1968-08-15": "Dormition of the Mother of God", + "1968-10-28": "Ochi Day", + "1968-12-24": "Christmas Eve", + "1968-12-25": "Christmas Day", + "1968-12-26": "Glorifying Mother of God", + "1968-12-31": "New Year's Eve", + "1969-01-01": "New Year's Day", + "1969-01-06": "Epiphany", + "1969-02-24": "Clean Monday", + "1969-03-25": "Independence Day", + "1969-04-11": "Good Friday", + "1969-04-14": "Easter Monday", + "1969-05-01": "Labor Day", + "1969-06-02": "Easter Monday", + "1969-08-15": "Dormition of the Mother of God", + "1969-10-28": "Ochi Day", + "1969-12-24": "Christmas Eve", + "1969-12-25": "Christmas Day", + "1969-12-26": "Glorifying Mother of God", + "1969-12-31": "New Year's Eve", + "1970-01-01": "New Year's Day", + "1970-01-06": "Epiphany", + "1970-03-09": "Clean Monday", + "1970-03-25": "Independence Day", + "1970-04-24": "Good Friday", + "1970-04-27": "Easter Monday", + "1970-05-01": "Labor Day", + "1970-06-15": "Easter Monday", + "1970-08-15": "Dormition of the Mother of God", + "1970-10-28": "Ochi Day", + "1970-12-24": "Christmas Eve", + "1970-12-25": "Christmas Day", + "1970-12-26": "Glorifying Mother of God", + "1970-12-31": "New Year's Eve", + "1971-01-01": "New Year's Day", + "1971-01-06": "Epiphany", + "1971-03-01": "Clean Monday", + "1971-03-25": "Independence Day", + "1971-04-16": "Good Friday", + "1971-04-19": "Easter Monday", + "1971-05-01": "Labor Day", + "1971-05-03": "Labor Day (Observed)", + "1971-06-07": "Easter Monday", + "1971-08-15": "Dormition of the Mother of God", + "1971-10-28": "Ochi Day", + "1971-12-24": "Christmas Eve", + "1971-12-25": "Christmas Day", + "1971-12-26": "Glorifying Mother of God", + "1971-12-31": "New Year's Eve", + "1972-01-01": "New Year's Day", + "1972-01-06": "Epiphany", + "1972-02-21": "Clean Monday", + "1972-03-25": "Independence Day", + "1972-04-07": "Good Friday", + "1972-04-10": "Easter Monday", + "1972-05-01": "Labor Day", + "1972-05-29": "Easter Monday", + "1972-08-15": "Dormition of the Mother of God", + "1972-10-28": "Ochi Day", + "1972-12-24": "Christmas Eve", + "1972-12-25": "Christmas Day", + "1972-12-26": "Glorifying Mother of God", + "1972-12-31": "New Year's Eve", + "1973-01-01": "New Year's Day", + "1973-01-06": "Epiphany", + "1973-03-12": "Clean Monday", + "1973-03-25": "Independence Day", + "1973-04-27": "Good Friday", + "1973-04-30": "Easter Monday", + "1973-05-01": "Labor Day", + "1973-06-18": "Easter Monday", + "1973-08-15": "Dormition of the Mother of God", + "1973-10-28": "Ochi Day", + "1973-12-24": "Christmas Eve", + "1973-12-25": "Christmas Day", + "1973-12-26": "Glorifying Mother of God", + "1973-12-31": "New Year's Eve", + "1974-01-01": "New Year's Day", + "1974-01-06": "Epiphany", + "1974-02-25": "Clean Monday", + "1974-03-25": "Independence Day", + "1974-04-12": "Good Friday", + "1974-04-15": "Easter Monday", + "1974-05-01": "Labor Day", + "1974-06-03": "Easter Monday", + "1974-08-15": "Dormition of the Mother of God", + "1974-10-28": "Ochi Day", + "1974-12-24": "Christmas Eve", + "1974-12-25": "Christmas Day", + "1974-12-26": "Glorifying Mother of God", + "1974-12-31": "New Year's Eve", + "1975-01-01": "New Year's Day", + "1975-01-06": "Epiphany", + "1975-03-17": "Clean Monday", + "1975-03-25": "Independence Day", + "1975-05-01": "Labor Day", + "1975-05-02": "Good Friday", + "1975-05-05": "Easter Monday", + "1975-06-23": "Easter Monday", + "1975-08-15": "Dormition of the Mother of God", + "1975-10-28": "Ochi Day", + "1975-12-24": "Christmas Eve", + "1975-12-25": "Christmas Day", + "1975-12-26": "Glorifying Mother of God", + "1975-12-31": "New Year's Eve", + "1976-01-01": "New Year's Day", + "1976-01-06": "Epiphany", + "1976-03-08": "Clean Monday", + "1976-03-25": "Independence Day", + "1976-04-23": "Good Friday", + "1976-04-26": "Easter Monday", + "1976-05-01": "Labor Day", + "1976-05-03": "Labor Day (Observed)", + "1976-06-14": "Easter Monday", + "1976-08-15": "Dormition of the Mother of God", + "1976-10-28": "Ochi Day", + "1976-12-24": "Christmas Eve", + "1976-12-25": "Christmas Day", + "1976-12-26": "Glorifying Mother of God", + "1976-12-31": "New Year's Eve", + "1977-01-01": "New Year's Day", + "1977-01-06": "Epiphany", + "1977-02-21": "Clean Monday", + "1977-03-25": "Independence Day", + "1977-04-08": "Good Friday", + "1977-04-11": "Easter Monday", + "1977-05-01": "Labor Day", + "1977-05-02": "Labor Day (Observed)", + "1977-05-30": "Easter Monday", + "1977-08-15": "Dormition of the Mother of God", + "1977-10-28": "Ochi Day", + "1977-12-24": "Christmas Eve", + "1977-12-25": "Christmas Day", + "1977-12-26": "Glorifying Mother of God", + "1977-12-31": "New Year's Eve", + "1978-01-01": "New Year's Day", + "1978-01-06": "Epiphany", + "1978-03-13": "Clean Monday", + "1978-03-25": "Independence Day", + "1978-04-28": "Good Friday", + "1978-05-01": "Easter Monday; Labor Day", + "1978-06-19": "Easter Monday", + "1978-08-15": "Dormition of the Mother of God", + "1978-10-28": "Ochi Day", + "1978-12-24": "Christmas Eve", + "1978-12-25": "Christmas Day", + "1978-12-26": "Glorifying Mother of God", + "1978-12-31": "New Year's Eve", + "1979-01-01": "New Year's Day", + "1979-01-06": "Epiphany", + "1979-03-05": "Clean Monday", + "1979-03-25": "Independence Day", + "1979-04-20": "Good Friday", + "1979-04-23": "Easter Monday", + "1979-05-01": "Labor Day", + "1979-06-11": "Easter Monday", + "1979-08-15": "Dormition of the Mother of God", + "1979-10-28": "Ochi Day", + "1979-12-24": "Christmas Eve", + "1979-12-25": "Christmas Day", + "1979-12-26": "Glorifying Mother of God", + "1979-12-31": "New Year's Eve", + "1980-01-01": "New Year's Day", + "1980-01-06": "Epiphany", + "1980-02-18": "Clean Monday", + "1980-03-25": "Independence Day", + "1980-04-04": "Good Friday", + "1980-04-07": "Easter Monday", + "1980-05-01": "Labor Day", + "1980-05-26": "Easter Monday", + "1980-08-15": "Dormition of the Mother of God", + "1980-10-28": "Ochi Day", + "1980-12-24": "Christmas Eve", + "1980-12-25": "Christmas Day", + "1980-12-26": "Glorifying Mother of God", + "1980-12-31": "New Year's Eve", + "1981-01-01": "New Year's Day", + "1981-01-06": "Epiphany", + "1981-03-09": "Clean Monday", + "1981-03-25": "Independence Day", + "1981-04-24": "Good Friday", + "1981-04-27": "Easter Monday", + "1981-05-01": "Labor Day", + "1981-06-15": "Easter Monday", + "1981-08-15": "Dormition of the Mother of God", + "1981-10-28": "Ochi Day", + "1981-12-24": "Christmas Eve", + "1981-12-25": "Christmas Day", + "1981-12-26": "Glorifying Mother of God", + "1981-12-31": "New Year's Eve", + "1982-01-01": "New Year's Day", + "1982-01-06": "Epiphany", + "1982-03-01": "Clean Monday", + "1982-03-25": "Independence Day", + "1982-04-16": "Good Friday", + "1982-04-19": "Easter Monday", + "1982-05-01": "Labor Day", + "1982-05-03": "Labor Day (Observed)", + "1982-06-07": "Easter Monday", + "1982-08-15": "Dormition of the Mother of God", + "1982-10-28": "Ochi Day", + "1982-12-24": "Christmas Eve", + "1982-12-25": "Christmas Day", + "1982-12-26": "Glorifying Mother of God", + "1982-12-31": "New Year's Eve", + "1983-01-01": "New Year's Day", + "1983-01-06": "Epiphany", + "1983-03-21": "Clean Monday", + "1983-03-25": "Independence Day", + "1983-05-01": "Labor Day", + "1983-05-02": "Labor Day (Observed)", + "1983-05-06": "Good Friday", + "1983-05-09": "Easter Monday", + "1983-06-27": "Easter Monday", + "1983-08-15": "Dormition of the Mother of God", + "1983-10-28": "Ochi Day", + "1983-12-24": "Christmas Eve", + "1983-12-25": "Christmas Day", + "1983-12-26": "Glorifying Mother of God", + "1983-12-31": "New Year's Eve", + "1984-01-01": "New Year's Day", + "1984-01-06": "Epiphany", + "1984-03-05": "Clean Monday", + "1984-03-25": "Independence Day", + "1984-04-20": "Good Friday", + "1984-04-23": "Easter Monday", + "1984-05-01": "Labor Day", + "1984-06-11": "Easter Monday", + "1984-08-15": "Dormition of the Mother of God", + "1984-10-28": "Ochi Day", + "1984-12-24": "Christmas Eve", + "1984-12-25": "Christmas Day", + "1984-12-26": "Glorifying Mother of God", + "1984-12-31": "New Year's Eve", + "1985-01-01": "New Year's Day", + "1985-01-06": "Epiphany", + "1985-02-25": "Clean Monday", + "1985-03-25": "Independence Day", + "1985-04-12": "Good Friday", + "1985-04-15": "Easter Monday", + "1985-05-01": "Labor Day", + "1985-06-03": "Easter Monday", + "1985-08-15": "Dormition of the Mother of God", + "1985-10-28": "Ochi Day", + "1985-12-24": "Christmas Eve", + "1985-12-25": "Christmas Day", + "1985-12-26": "Glorifying Mother of God", + "1985-12-31": "New Year's Eve", + "1986-01-01": "New Year's Day", + "1986-01-06": "Epiphany", + "1986-03-17": "Clean Monday", + "1986-03-25": "Independence Day", + "1986-05-01": "Labor Day", + "1986-05-02": "Good Friday", + "1986-05-05": "Easter Monday", + "1986-06-23": "Easter Monday", + "1986-08-15": "Dormition of the Mother of God", + "1986-10-28": "Ochi Day", + "1986-12-24": "Christmas Eve", + "1986-12-25": "Christmas Day", + "1986-12-26": "Glorifying Mother of God", + "1986-12-31": "New Year's Eve", + "1987-01-01": "New Year's Day", + "1987-01-06": "Epiphany", + "1987-03-02": "Clean Monday", + "1987-03-25": "Independence Day", + "1987-04-17": "Good Friday", + "1987-04-20": "Easter Monday", + "1987-05-01": "Labor Day", + "1987-06-08": "Easter Monday", + "1987-08-15": "Dormition of the Mother of God", + "1987-10-28": "Ochi Day", + "1987-12-24": "Christmas Eve", + "1987-12-25": "Christmas Day", + "1987-12-26": "Glorifying Mother of God", + "1987-12-31": "New Year's Eve", + "1988-01-01": "New Year's Day", + "1988-01-06": "Epiphany", + "1988-02-22": "Clean Monday", + "1988-03-25": "Independence Day", + "1988-04-08": "Good Friday", + "1988-04-11": "Easter Monday", + "1988-05-01": "Labor Day", + "1988-05-02": "Labor Day (Observed)", + "1988-05-30": "Easter Monday", + "1988-08-15": "Dormition of the Mother of God", + "1988-10-28": "Ochi Day", + "1988-12-24": "Christmas Eve", + "1988-12-25": "Christmas Day", + "1988-12-26": "Glorifying Mother of God", + "1988-12-31": "New Year's Eve", + "1989-01-01": "New Year's Day", + "1989-01-06": "Epiphany", + "1989-03-13": "Clean Monday", + "1989-03-25": "Independence Day", + "1989-04-28": "Good Friday", + "1989-05-01": "Easter Monday; Labor Day", + "1989-06-19": "Easter Monday", + "1989-08-15": "Dormition of the Mother of God", + "1989-10-28": "Ochi Day", + "1989-12-24": "Christmas Eve", + "1989-12-25": "Christmas Day", + "1989-12-26": "Glorifying Mother of God", + "1989-12-31": "New Year's Eve", + "1990-01-01": "New Year's Day", + "1990-01-06": "Epiphany", + "1990-02-26": "Clean Monday", + "1990-03-25": "Independence Day", + "1990-04-13": "Good Friday", + "1990-04-16": "Easter Monday", + "1990-05-01": "Labor Day", + "1990-06-04": "Easter Monday", + "1990-08-15": "Dormition of the Mother of God", + "1990-10-28": "Ochi Day", + "1990-12-24": "Christmas Eve", + "1990-12-25": "Christmas Day", + "1990-12-26": "Glorifying Mother of God", + "1990-12-31": "New Year's Eve", + "1991-01-01": "New Year's Day", + "1991-01-06": "Epiphany", + "1991-02-18": "Clean Monday", + "1991-03-25": "Independence Day", + "1991-04-05": "Good Friday", + "1991-04-08": "Easter Monday", + "1991-05-01": "Labor Day", + "1991-05-27": "Easter Monday", + "1991-08-15": "Dormition of the Mother of God", + "1991-10-28": "Ochi Day", + "1991-12-24": "Christmas Eve", + "1991-12-25": "Christmas Day", + "1991-12-26": "Glorifying Mother of God", + "1991-12-31": "New Year's Eve", + "1992-01-01": "New Year's Day", + "1992-01-06": "Epiphany", + "1992-03-09": "Clean Monday", + "1992-03-25": "Independence Day", + "1992-04-24": "Good Friday", + "1992-04-27": "Easter Monday", + "1992-05-01": "Labor Day", + "1992-06-15": "Easter Monday", + "1992-08-15": "Dormition of the Mother of God", + "1992-10-28": "Ochi Day", + "1992-12-24": "Christmas Eve", + "1992-12-25": "Christmas Day", + "1992-12-26": "Glorifying Mother of God", + "1992-12-31": "New Year's Eve", + "1993-01-01": "New Year's Day", + "1993-01-06": "Epiphany", + "1993-03-01": "Clean Monday", + "1993-03-25": "Independence Day", + "1993-04-16": "Good Friday", + "1993-04-19": "Easter Monday", + "1993-05-01": "Labor Day", + "1993-05-03": "Labor Day (Observed)", + "1993-06-07": "Easter Monday", + "1993-08-15": "Dormition of the Mother of God", + "1993-10-28": "Ochi Day", + "1993-12-24": "Christmas Eve", + "1993-12-25": "Christmas Day", + "1993-12-26": "Glorifying Mother of God", + "1993-12-31": "New Year's Eve", + "1994-01-01": "New Year's Day", + "1994-01-06": "Epiphany", + "1994-03-14": "Clean Monday", + "1994-03-25": "Independence Day", + "1994-04-29": "Good Friday", + "1994-05-01": "Labor Day", + "1994-05-02": "Easter Monday", + "1994-05-03": "Labor Day (Observed)", + "1994-06-20": "Easter Monday", + "1994-08-15": "Dormition of the Mother of God", + "1994-10-28": "Ochi Day", + "1994-12-24": "Christmas Eve", + "1994-12-25": "Christmas Day", + "1994-12-26": "Glorifying Mother of God", + "1994-12-31": "New Year's Eve", + "1995-01-01": "New Year's Day", + "1995-01-06": "Epiphany", + "1995-03-06": "Clean Monday", + "1995-03-25": "Independence Day", + "1995-04-21": "Good Friday", + "1995-04-24": "Easter Monday", + "1995-05-01": "Labor Day", + "1995-06-12": "Easter Monday", + "1995-08-15": "Dormition of the Mother of God", + "1995-10-28": "Ochi Day", + "1995-12-24": "Christmas Eve", + "1995-12-25": "Christmas Day", + "1995-12-26": "Glorifying Mother of God", + "1995-12-31": "New Year's Eve", + "1996-01-01": "New Year's Day", + "1996-01-06": "Epiphany", + "1996-02-26": "Clean Monday", + "1996-03-25": "Independence Day", + "1996-04-12": "Good Friday", + "1996-04-15": "Easter Monday", + "1996-05-01": "Labor Day", + "1996-06-03": "Easter Monday", + "1996-08-15": "Dormition of the Mother of God", + "1996-10-28": "Ochi Day", + "1996-12-24": "Christmas Eve", + "1996-12-25": "Christmas Day", + "1996-12-26": "Glorifying Mother of God", + "1996-12-31": "New Year's Eve", + "1997-01-01": "New Year's Day", + "1997-01-06": "Epiphany", + "1997-03-10": "Clean Monday", + "1997-03-25": "Independence Day", + "1997-04-25": "Good Friday", + "1997-04-28": "Easter Monday", + "1997-05-01": "Labor Day", + "1997-06-16": "Easter Monday", + "1997-08-15": "Dormition of the Mother of God", + "1997-10-28": "Ochi Day", + "1997-12-24": "Christmas Eve", + "1997-12-25": "Christmas Day", + "1997-12-26": "Glorifying Mother of God", + "1997-12-31": "New Year's Eve", + "1998-01-01": "New Year's Day", + "1998-01-06": "Epiphany", + "1998-03-02": "Clean Monday", + "1998-03-25": "Independence Day", + "1998-04-17": "Good Friday", + "1998-04-20": "Easter Monday", + "1998-05-01": "Labor Day", + "1998-06-08": "Easter Monday", + "1998-08-15": "Dormition of the Mother of God", + "1998-10-28": "Ochi Day", + "1998-12-24": "Christmas Eve", + "1998-12-25": "Christmas Day", + "1998-12-26": "Glorifying Mother of God", + "1998-12-31": "New Year's Eve", + "1999-01-01": "New Year's Day", + "1999-01-06": "Epiphany", + "1999-02-22": "Clean Monday", + "1999-03-25": "Independence Day", + "1999-04-09": "Good Friday", + "1999-04-12": "Easter Monday", + "1999-05-01": "Labor Day", + "1999-05-03": "Labor Day (Observed)", + "1999-05-31": "Easter Monday", + "1999-08-15": "Dormition of the Mother of God", + "1999-10-28": "Ochi Day", + "1999-12-24": "Christmas Eve", + "1999-12-25": "Christmas Day", + "1999-12-26": "Glorifying Mother of God", + "1999-12-31": "New Year's Eve", + "2000-01-01": "New Year's Day", + "2000-01-06": "Epiphany", + "2000-03-13": "Clean Monday", + "2000-03-25": "Independence Day", + "2000-04-28": "Good Friday", + "2000-05-01": "Easter Monday; Labor Day", + "2000-06-19": "Easter Monday", + "2000-08-15": "Dormition of the Mother of God", + "2000-10-28": "Ochi Day", + "2000-12-24": "Christmas Eve", + "2000-12-25": "Christmas Day", + "2000-12-26": "Glorifying Mother of God", + "2000-12-31": "New Year's Eve", + "2001-01-01": "New Year's Day", + "2001-01-06": "Epiphany", + "2001-02-26": "Clean Monday", + "2001-03-25": "Independence Day", + "2001-04-13": "Good Friday", + "2001-04-16": "Easter Monday", + "2001-05-01": "Labor Day", + "2001-06-04": "Easter Monday", + "2001-08-15": "Dormition of the Mother of God", + "2001-10-28": "Ochi Day", + "2001-12-24": "Christmas Eve", + "2001-12-25": "Christmas Day", + "2001-12-26": "Glorifying Mother of God", + "2001-12-31": "New Year's Eve", + "2002-01-01": "New Year's Day", + "2002-01-06": "Epiphany", + "2002-03-18": "Clean Monday", + "2002-03-25": "Independence Day", + "2002-05-01": "Labor Day", + "2002-05-03": "Good Friday", + "2002-05-06": "Easter Monday", + "2002-06-24": "Easter Monday", + "2002-08-15": "Dormition of the Mother of God", + "2002-10-28": "Ochi Day", + "2002-12-24": "Christmas Eve", + "2002-12-25": "Christmas Day", + "2002-12-26": "Glorifying Mother of God", + "2002-12-31": "New Year's Eve", + "2003-01-01": "New Year's Day", + "2003-01-06": "Epiphany", + "2003-03-10": "Clean Monday", + "2003-03-25": "Independence Day", + "2003-04-25": "Good Friday", + "2003-04-28": "Easter Monday", + "2003-05-01": "Labor Day", + "2003-06-16": "Easter Monday", + "2003-08-15": "Dormition of the Mother of God", + "2003-10-28": "Ochi Day", + "2003-12-24": "Christmas Eve", + "2003-12-25": "Christmas Day", + "2003-12-26": "Glorifying Mother of God", + "2003-12-31": "New Year's Eve", + "2004-01-01": "New Year's Day", + "2004-01-06": "Epiphany", + "2004-02-23": "Clean Monday", + "2004-03-25": "Independence Day", + "2004-04-09": "Good Friday", + "2004-04-12": "Easter Monday", + "2004-05-01": "Labor Day", + "2004-05-03": "Labor Day (Observed)", + "2004-05-31": "Easter Monday", + "2004-08-15": "Dormition of the Mother of God", + "2004-10-28": "Ochi Day", + "2004-12-24": "Christmas Eve", + "2004-12-25": "Christmas Day", + "2004-12-26": "Glorifying Mother of God", + "2004-12-31": "New Year's Eve", + "2005-01-01": "New Year's Day", + "2005-01-06": "Epiphany", + "2005-03-14": "Clean Monday", + "2005-03-25": "Independence Day", + "2005-04-29": "Good Friday", + "2005-05-01": "Labor Day", + "2005-05-02": "Easter Monday", + "2005-05-03": "Labor Day (Observed)", + "2005-06-20": "Easter Monday", + "2005-08-15": "Dormition of the Mother of God", + "2005-10-28": "Ochi Day", + "2005-12-24": "Christmas Eve", + "2005-12-25": "Christmas Day", + "2005-12-26": "Glorifying Mother of God", + "2005-12-31": "New Year's Eve", + "2006-01-01": "New Year's Day", + "2006-01-06": "Epiphany", + "2006-03-06": "Clean Monday", + "2006-03-25": "Independence Day", + "2006-04-21": "Good Friday", + "2006-04-24": "Easter Monday", + "2006-05-01": "Labor Day", + "2006-06-12": "Easter Monday", + "2006-08-15": "Dormition of the Mother of God", + "2006-10-28": "Ochi Day", + "2006-12-24": "Christmas Eve", + "2006-12-25": "Christmas Day", + "2006-12-26": "Glorifying Mother of God", + "2006-12-31": "New Year's Eve", + "2007-01-01": "New Year's Day", + "2007-01-06": "Epiphany", + "2007-02-19": "Clean Monday", + "2007-03-25": "Independence Day", + "2007-04-06": "Good Friday", + "2007-04-09": "Easter Monday", + "2007-05-01": "Labor Day", + "2007-05-28": "Easter Monday", + "2007-08-15": "Dormition of the Mother of God", + "2007-10-28": "Ochi Day", + "2007-12-24": "Christmas Eve", + "2007-12-25": "Christmas Day", + "2007-12-26": "Glorifying Mother of God", + "2007-12-31": "New Year's Eve", + "2008-01-01": "New Year's Day", + "2008-01-06": "Epiphany", + "2008-03-10": "Clean Monday", + "2008-03-25": "Independence Day", + "2008-04-25": "Good Friday", + "2008-04-28": "Easter Monday", + "2008-05-01": "Labor Day", + "2008-06-16": "Easter Monday", + "2008-08-15": "Dormition of the Mother of God", + "2008-10-28": "Ochi Day", + "2008-12-24": "Christmas Eve", + "2008-12-25": "Christmas Day", + "2008-12-26": "Glorifying Mother of God", + "2008-12-31": "New Year's Eve", + "2009-01-01": "New Year's Day", + "2009-01-06": "Epiphany", + "2009-03-02": "Clean Monday", + "2009-03-25": "Independence Day", + "2009-04-17": "Good Friday", + "2009-04-20": "Easter Monday", + "2009-05-01": "Labor Day", + "2009-06-08": "Easter Monday", + "2009-08-15": "Dormition of the Mother of God", + "2009-10-28": "Ochi Day", + "2009-12-24": "Christmas Eve", + "2009-12-25": "Christmas Day", + "2009-12-26": "Glorifying Mother of God", + "2009-12-31": "New Year's Eve", + "2010-01-01": "New Year's Day", + "2010-01-06": "Epiphany", + "2010-02-15": "Clean Monday", + "2010-03-25": "Independence Day", + "2010-04-02": "Good Friday", + "2010-04-05": "Easter Monday", + "2010-05-01": "Labor Day", + "2010-05-03": "Labor Day (Observed)", + "2010-05-24": "Easter Monday", + "2010-08-15": "Dormition of the Mother of God", + "2010-10-28": "Ochi Day", + "2010-12-24": "Christmas Eve", + "2010-12-25": "Christmas Day", + "2010-12-26": "Glorifying Mother of God", + "2010-12-31": "New Year's Eve", + "2011-01-01": "New Year's Day", + "2011-01-06": "Epiphany", + "2011-03-07": "Clean Monday", + "2011-03-25": "Independence Day", + "2011-04-22": "Good Friday", + "2011-04-25": "Easter Monday", + "2011-05-01": "Labor Day", + "2011-05-02": "Labor Day (Observed)", + "2011-06-13": "Easter Monday", + "2011-08-15": "Dormition of the Mother of God", + "2011-10-28": "Ochi Day", + "2011-12-24": "Christmas Eve", + "2011-12-25": "Christmas Day", + "2011-12-26": "Glorifying Mother of God", + "2011-12-31": "New Year's Eve", + "2012-01-01": "New Year's Day", + "2012-01-06": "Epiphany", + "2012-02-27": "Clean Monday", + "2012-03-25": "Independence Day", + "2012-04-13": "Good Friday", + "2012-04-16": "Easter Monday", + "2012-05-01": "Labor Day", + "2012-06-04": "Easter Monday", + "2012-08-15": "Dormition of the Mother of God", + "2012-10-28": "Ochi Day", + "2012-12-24": "Christmas Eve", + "2012-12-25": "Christmas Day", + "2012-12-26": "Glorifying Mother of God", + "2012-12-31": "New Year's Eve", + "2013-01-01": "New Year's Day", + "2013-01-06": "Epiphany", + "2013-03-18": "Clean Monday", + "2013-03-25": "Independence Day", + "2013-05-01": "Labor Day", + "2013-05-03": "Good Friday", + "2013-05-06": "Easter Monday", + "2013-06-24": "Easter Monday", + "2013-08-15": "Dormition of the Mother of God", + "2013-10-28": "Ochi Day", + "2013-12-24": "Christmas Eve", + "2013-12-25": "Christmas Day", + "2013-12-26": "Glorifying Mother of God", + "2013-12-31": "New Year's Eve", + "2014-01-01": "New Year's Day", + "2014-01-06": "Epiphany", + "2014-03-03": "Clean Monday", + "2014-03-25": "Independence Day", + "2014-04-18": "Good Friday", + "2014-04-21": "Easter Monday", + "2014-05-01": "Labor Day", + "2014-06-09": "Easter Monday", + "2014-08-15": "Dormition of the Mother of God", + "2014-10-28": "Ochi Day", + "2014-12-24": "Christmas Eve", + "2014-12-25": "Christmas Day", + "2014-12-26": "Glorifying Mother of God", + "2014-12-31": "New Year's Eve", + "2015-01-01": "New Year's Day", + "2015-01-06": "Epiphany", + "2015-02-23": "Clean Monday", + "2015-03-25": "Independence Day", + "2015-04-10": "Good Friday", + "2015-04-13": "Easter Monday", + "2015-05-01": "Labor Day", + "2015-06-01": "Easter Monday", + "2015-08-15": "Dormition of the Mother of God", + "2015-10-28": "Ochi Day", + "2015-12-24": "Christmas Eve", + "2015-12-25": "Christmas Day", + "2015-12-26": "Glorifying Mother of God", + "2015-12-31": "New Year's Eve", + "2016-01-01": "New Year's Day", + "2016-01-06": "Epiphany", + "2016-03-14": "Clean Monday", + "2016-03-25": "Independence Day", + "2016-04-29": "Good Friday", + "2016-05-01": "Labor Day", + "2016-05-02": "Easter Monday", + "2016-05-03": "Labor Day (Observed)", + "2016-06-20": "Easter Monday", + "2016-08-15": "Dormition of the Mother of God", + "2016-10-28": "Ochi Day", + "2016-12-24": "Christmas Eve", + "2016-12-25": "Christmas Day", + "2016-12-26": "Glorifying Mother of God", + "2016-12-31": "New Year's Eve", + "2017-01-01": "New Year's Day", + "2017-01-06": "Epiphany", + "2017-02-27": "Clean Monday", + "2017-03-25": "Independence Day", + "2017-04-14": "Good Friday", + "2017-04-17": "Easter Monday", + "2017-05-01": "Labor Day", + "2017-06-05": "Easter Monday", + "2017-08-15": "Dormition of the Mother of God", + "2017-10-28": "Ochi Day", + "2017-12-24": "Christmas Eve", + "2017-12-25": "Christmas Day", + "2017-12-26": "Glorifying Mother of God", + "2017-12-31": "New Year's Eve", + "2018-01-01": "New Year's Day", + "2018-01-06": "Epiphany", + "2018-02-19": "Clean Monday", + "2018-03-25": "Independence Day", + "2018-04-06": "Good Friday", + "2018-04-09": "Easter Monday", + "2018-05-01": "Labor Day", + "2018-05-28": "Easter Monday", + "2018-08-15": "Dormition of the Mother of God", + "2018-10-28": "Ochi Day", + "2018-12-24": "Christmas Eve", + "2018-12-25": "Christmas Day", + "2018-12-26": "Glorifying Mother of God", + "2018-12-31": "New Year's Eve", + "2019-01-01": "New Year's Day", + "2019-01-06": "Epiphany", + "2019-03-11": "Clean Monday", + "2019-03-25": "Independence Day", + "2019-04-26": "Good Friday", + "2019-04-29": "Easter Monday", + "2019-05-01": "Labor Day", + "2019-06-17": "Easter Monday", + "2019-08-15": "Dormition of the Mother of God", + "2019-10-28": "Ochi Day", + "2019-12-24": "Christmas Eve", + "2019-12-25": "Christmas Day", + "2019-12-26": "Glorifying Mother of God", + "2019-12-31": "New Year's Eve", + "2020-01-01": "New Year's Day", + "2020-01-06": "Epiphany", + "2020-03-02": "Clean Monday", + "2020-03-25": "Independence Day", + "2020-04-17": "Good Friday", + "2020-04-20": "Easter Monday", + "2020-05-01": "Labor Day", + "2020-06-08": "Easter Monday", + "2020-08-15": "Dormition of the Mother of God", + "2020-10-28": "Ochi Day", + "2020-12-24": "Christmas Eve", + "2020-12-25": "Christmas Day", + "2020-12-26": "Glorifying Mother of God", + "2020-12-31": "New Year's Eve", + "2021-01-01": "New Year's Day", + "2021-01-06": "Epiphany", + "2021-03-15": "Clean Monday", + "2021-03-25": "Independence Day", + "2021-04-30": "Good Friday", + "2021-05-01": "Labor Day", + "2021-05-03": "Easter Monday", + "2021-05-04": "Labor Day (Observed)", + "2021-06-21": "Easter Monday", + "2021-08-15": "Dormition of the Mother of God", + "2021-10-28": "Ochi Day", + "2021-12-24": "Christmas Eve", + "2021-12-25": "Christmas Day", + "2021-12-26": "Glorifying Mother of God", + "2021-12-31": "New Year's Eve", + "2022-01-01": "New Year's Day", + "2022-01-06": "Epiphany", + "2022-03-07": "Clean Monday", + "2022-03-25": "Independence Day", + "2022-04-22": "Good Friday", + "2022-04-25": "Easter Monday", + "2022-05-01": "Labor Day", + "2022-05-02": "Labor Day (Observed)", + "2022-06-13": "Easter Monday", + "2022-08-15": "Dormition of the Mother of God", + "2022-10-28": "Ochi Day", + "2022-12-24": "Christmas Eve", + "2022-12-25": "Christmas Day", + "2022-12-26": "Glorifying Mother of God", + "2022-12-31": "New Year's Eve", + "2023-01-01": "New Year's Day", + "2023-01-06": "Epiphany", + "2023-02-27": "Clean Monday", + "2023-03-25": "Independence Day", + "2023-04-14": "Good Friday", + "2023-04-17": "Easter Monday", + "2023-05-01": "Labor Day", + "2023-06-05": "Easter Monday", + "2023-08-15": "Dormition of the Mother of God", + "2023-10-28": "Ochi Day", + "2023-12-24": "Christmas Eve", + "2023-12-25": "Christmas Day", + "2023-12-26": "Glorifying Mother of God", + "2023-12-31": "New Year's Eve", + "2024-01-01": "New Year's Day", + "2024-01-06": "Epiphany", + "2024-03-18": "Clean Monday", + "2024-03-25": "Independence Day", + "2024-05-01": "Labor Day", + "2024-05-03": "Good Friday", + "2024-05-06": "Easter Monday", + "2024-06-24": "Easter Monday", + "2024-08-15": "Dormition of the Mother of God", + "2024-10-28": "Ochi Day", + "2024-12-24": "Christmas Eve", + "2024-12-25": "Christmas Day", + "2024-12-26": "Glorifying Mother of God", + "2024-12-31": "New Year's Eve", + "2025-01-01": "New Year's Day", + "2025-01-06": "Epiphany", + "2025-03-03": "Clean Monday", + "2025-03-25": "Independence Day", + "2025-04-18": "Good Friday", + "2025-04-21": "Easter Monday", + "2025-05-01": "Labor Day", + "2025-06-09": "Easter Monday", + "2025-08-15": "Dormition of the Mother of God", + "2025-10-28": "Ochi Day", + "2025-12-24": "Christmas Eve", + "2025-12-25": "Christmas Day", + "2025-12-26": "Glorifying Mother of God", + "2025-12-31": "New Year's Eve", + "2026-01-01": "New Year's Day", + "2026-01-06": "Epiphany", + "2026-02-23": "Clean Monday", + "2026-03-25": "Independence Day", + "2026-04-10": "Good Friday", + "2026-04-13": "Easter Monday", + "2026-05-01": "Labor Day", + "2026-06-01": "Easter Monday", + "2026-08-15": "Dormition of the Mother of God", + "2026-10-28": "Ochi Day", + "2026-12-24": "Christmas Eve", + "2026-12-25": "Christmas Day", + "2026-12-26": "Glorifying Mother of God", + "2026-12-31": "New Year's Eve", + "2027-01-01": "New Year's Day", + "2027-01-06": "Epiphany", + "2027-03-15": "Clean Monday", + "2027-03-25": "Independence Day", + "2027-04-30": "Good Friday", + "2027-05-01": "Labor Day", + "2027-05-03": "Easter Monday", + "2027-05-04": "Labor Day (Observed)", + "2027-06-21": "Easter Monday", + "2027-08-15": "Dormition of the Mother of God", + "2027-10-28": "Ochi Day", + "2027-12-24": "Christmas Eve", + "2027-12-25": "Christmas Day", + "2027-12-26": "Glorifying Mother of God", + "2027-12-31": "New Year's Eve", + "2028-01-01": "New Year's Day", + "2028-01-06": "Epiphany", + "2028-02-28": "Clean Monday", + "2028-03-25": "Independence Day", + "2028-04-14": "Good Friday", + "2028-04-17": "Easter Monday", + "2028-05-01": "Labor Day", + "2028-06-05": "Easter Monday", + "2028-08-15": "Dormition of the Mother of God", + "2028-10-28": "Ochi Day", + "2028-12-24": "Christmas Eve", + "2028-12-25": "Christmas Day", + "2028-12-26": "Glorifying Mother of God", + "2028-12-31": "New Year's Eve", + "2029-01-01": "New Year's Day", + "2029-01-06": "Epiphany", + "2029-02-19": "Clean Monday", + "2029-03-25": "Independence Day", + "2029-04-06": "Good Friday", + "2029-04-09": "Easter Monday", + "2029-05-01": "Labor Day", + "2029-05-28": "Easter Monday", + "2029-08-15": "Dormition of the Mother of God", + "2029-10-28": "Ochi Day", + "2029-12-24": "Christmas Eve", + "2029-12-25": "Christmas Day", + "2029-12-26": "Glorifying Mother of God", + "2029-12-31": "New Year's Eve", + "2030-01-01": "New Year's Day", + "2030-01-06": "Epiphany", + "2030-03-11": "Clean Monday", + "2030-03-25": "Independence Day", + "2030-04-26": "Good Friday", + "2030-04-29": "Easter Monday", + "2030-05-01": "Labor Day", + "2030-06-17": "Easter Monday", + "2030-08-15": "Dormition of the Mother of God", + "2030-10-28": "Ochi Day", + "2030-12-24": "Christmas Eve", + "2030-12-25": "Christmas Day", + "2030-12-26": "Glorifying Mother of God", + "2030-12-31": "New Year's Eve", + "2031-01-01": "New Year's Day", + "2031-01-06": "Epiphany", + "2031-02-24": "Clean Monday", + "2031-03-25": "Independence Day", + "2031-04-11": "Good Friday", + "2031-04-14": "Easter Monday", + "2031-05-01": "Labor Day", + "2031-06-02": "Easter Monday", + "2031-08-15": "Dormition of the Mother of God", + "2031-10-28": "Ochi Day", + "2031-12-24": "Christmas Eve", + "2031-12-25": "Christmas Day", + "2031-12-26": "Glorifying Mother of God", + "2031-12-31": "New Year's Eve", + "2032-01-01": "New Year's Day", + "2032-01-06": "Epiphany", + "2032-03-15": "Clean Monday", + "2032-03-25": "Independence Day", + "2032-04-30": "Good Friday", + "2032-05-01": "Labor Day", + "2032-05-03": "Easter Monday", + "2032-05-04": "Labor Day (Observed)", + "2032-06-21": "Easter Monday", + "2032-08-15": "Dormition of the Mother of God", + "2032-10-28": "Ochi Day", + "2032-12-24": "Christmas Eve", + "2032-12-25": "Christmas Day", + "2032-12-26": "Glorifying Mother of God", + "2032-12-31": "New Year's Eve", + "2033-01-01": "New Year's Day", + "2033-01-06": "Epiphany", + "2033-03-07": "Clean Monday", + "2033-03-25": "Independence Day", + "2033-04-22": "Good Friday", + "2033-04-25": "Easter Monday", + "2033-05-01": "Labor Day", + "2033-05-02": "Labor Day (Observed)", + "2033-06-13": "Easter Monday", + "2033-08-15": "Dormition of the Mother of God", + "2033-10-28": "Ochi Day", + "2033-12-24": "Christmas Eve", + "2033-12-25": "Christmas Day", + "2033-12-26": "Glorifying Mother of God", + "2033-12-31": "New Year's Eve", + "2034-01-01": "New Year's Day", + "2034-01-06": "Epiphany", + "2034-02-20": "Clean Monday", + "2034-03-25": "Independence Day", + "2034-04-07": "Good Friday", + "2034-04-10": "Easter Monday", + "2034-05-01": "Labor Day", + "2034-05-29": "Easter Monday", + "2034-08-15": "Dormition of the Mother of God", + "2034-10-28": "Ochi Day", + "2034-12-24": "Christmas Eve", + "2034-12-25": "Christmas Day", + "2034-12-26": "Glorifying Mother of God", + "2034-12-31": "New Year's Eve", + "2035-01-01": "New Year's Day", + "2035-01-06": "Epiphany", + "2035-03-12": "Clean Monday", + "2035-03-25": "Independence Day", + "2035-04-27": "Good Friday", + "2035-04-30": "Easter Monday", + "2035-05-01": "Labor Day", + "2035-06-18": "Easter Monday", + "2035-08-15": "Dormition of the Mother of God", + "2035-10-28": "Ochi Day", + "2035-12-24": "Christmas Eve", + "2035-12-25": "Christmas Day", + "2035-12-26": "Glorifying Mother of God", + "2035-12-31": "New Year's Eve", + "2036-01-01": "New Year's Day", + "2036-01-06": "Epiphany", + "2036-03-03": "Clean Monday", + "2036-03-25": "Independence Day", + "2036-04-18": "Good Friday", + "2036-04-21": "Easter Monday", + "2036-05-01": "Labor Day", + "2036-06-09": "Easter Monday", + "2036-08-15": "Dormition of the Mother of God", + "2036-10-28": "Ochi Day", + "2036-12-24": "Christmas Eve", + "2036-12-25": "Christmas Day", + "2036-12-26": "Glorifying Mother of God", + "2036-12-31": "New Year's Eve", + "2037-01-01": "New Year's Day", + "2037-01-06": "Epiphany", + "2037-02-16": "Clean Monday", + "2037-03-25": "Independence Day", + "2037-04-03": "Good Friday", + "2037-04-06": "Easter Monday", + "2037-05-01": "Labor Day", + "2037-05-25": "Easter Monday", + "2037-08-15": "Dormition of the Mother of God", + "2037-10-28": "Ochi Day", + "2037-12-24": "Christmas Eve", + "2037-12-25": "Christmas Day", + "2037-12-26": "Glorifying Mother of God", + "2037-12-31": "New Year's Eve", + "2038-01-01": "New Year's Day", + "2038-01-06": "Epiphany", + "2038-03-08": "Clean Monday", + "2038-03-25": "Independence Day", + "2038-04-23": "Good Friday", + "2038-04-26": "Easter Monday", + "2038-05-01": "Labor Day", + "2038-05-03": "Labor Day (Observed)", + "2038-06-14": "Easter Monday", + "2038-08-15": "Dormition of the Mother of God", + "2038-10-28": "Ochi Day", + "2038-12-24": "Christmas Eve", + "2038-12-25": "Christmas Day", + "2038-12-26": "Glorifying Mother of God", + "2038-12-31": "New Year's Eve", + "2039-01-01": "New Year's Day", + "2039-01-06": "Epiphany", + "2039-02-28": "Clean Monday", + "2039-03-25": "Independence Day", + "2039-04-15": "Good Friday", + "2039-04-18": "Easter Monday", + "2039-05-01": "Labor Day", + "2039-05-02": "Labor Day (Observed)", + "2039-06-06": "Easter Monday", + "2039-08-15": "Dormition of the Mother of God", + "2039-10-28": "Ochi Day", + "2039-12-24": "Christmas Eve", + "2039-12-25": "Christmas Day", + "2039-12-26": "Glorifying Mother of God", + "2039-12-31": "New Year's Eve", + "2040-01-01": "New Year's Day", + "2040-01-06": "Epiphany", + "2040-03-19": "Clean Monday", + "2040-03-25": "Independence Day", + "2040-05-01": "Labor Day", + "2040-05-04": "Good Friday", + "2040-05-07": "Easter Monday", + "2040-06-25": "Easter Monday", + "2040-08-15": "Dormition of the Mother of God", + "2040-10-28": "Ochi Day", + "2040-12-24": "Christmas Eve", + "2040-12-25": "Christmas Day", + "2040-12-26": "Glorifying Mother of God", + "2040-12-31": "New Year's Eve", + "2041-01-01": "New Year's Day", + "2041-01-06": "Epiphany", + "2041-03-04": "Clean Monday", + "2041-03-25": "Independence Day", + "2041-04-19": "Good Friday", + "2041-04-22": "Easter Monday", + "2041-05-01": "Labor Day", + "2041-06-10": "Easter Monday", + "2041-08-15": "Dormition of the Mother of God", + "2041-10-28": "Ochi Day", + "2041-12-24": "Christmas Eve", + "2041-12-25": "Christmas Day", + "2041-12-26": "Glorifying Mother of God", + "2041-12-31": "New Year's Eve", + "2042-01-01": "New Year's Day", + "2042-01-06": "Epiphany", + "2042-02-24": "Clean Monday", + "2042-03-25": "Independence Day", + "2042-04-11": "Good Friday", + "2042-04-14": "Easter Monday", + "2042-05-01": "Labor Day", + "2042-06-02": "Easter Monday", + "2042-08-15": "Dormition of the Mother of God", + "2042-10-28": "Ochi Day", + "2042-12-24": "Christmas Eve", + "2042-12-25": "Christmas Day", + "2042-12-26": "Glorifying Mother of God", + "2042-12-31": "New Year's Eve", + "2043-01-01": "New Year's Day", + "2043-01-06": "Epiphany", + "2043-03-16": "Clean Monday", + "2043-03-25": "Independence Day", + "2043-05-01": "Good Friday; Labor Day", + "2043-05-04": "Easter Monday", + "2043-06-22": "Easter Monday", + "2043-08-15": "Dormition of the Mother of God", + "2043-10-28": "Ochi Day", + "2043-12-24": "Christmas Eve", + "2043-12-25": "Christmas Day", + "2043-12-26": "Glorifying Mother of God", + "2043-12-31": "New Year's Eve", + "2044-01-01": "New Year's Day", + "2044-01-06": "Epiphany", + "2044-03-07": "Clean Monday", + "2044-03-25": "Independence Day", + "2044-04-22": "Good Friday", + "2044-04-25": "Easter Monday", + "2044-05-01": "Labor Day", + "2044-05-02": "Labor Day (Observed)", + "2044-06-13": "Easter Monday", + "2044-08-15": "Dormition of the Mother of God", + "2044-10-28": "Ochi Day", + "2044-12-24": "Christmas Eve", + "2044-12-25": "Christmas Day", + "2044-12-26": "Glorifying Mother of God", + "2044-12-31": "New Year's Eve", + "2045-01-01": "New Year's Day", + "2045-01-06": "Epiphany", + "2045-02-20": "Clean Monday", + "2045-03-25": "Independence Day", + "2045-04-07": "Good Friday", + "2045-04-10": "Easter Monday", + "2045-05-01": "Labor Day", + "2045-05-29": "Easter Monday", + "2045-08-15": "Dormition of the Mother of God", + "2045-10-28": "Ochi Day", + "2045-12-24": "Christmas Eve", + "2045-12-25": "Christmas Day", + "2045-12-26": "Glorifying Mother of God", + "2045-12-31": "New Year's Eve", + "2046-01-01": "New Year's Day", + "2046-01-06": "Epiphany", + "2046-03-12": "Clean Monday", + "2046-03-25": "Independence Day", + "2046-04-27": "Good Friday", + "2046-04-30": "Easter Monday", + "2046-05-01": "Labor Day", + "2046-06-18": "Easter Monday", + "2046-08-15": "Dormition of the Mother of God", + "2046-10-28": "Ochi Day", + "2046-12-24": "Christmas Eve", + "2046-12-25": "Christmas Day", + "2046-12-26": "Glorifying Mother of God", + "2046-12-31": "New Year's Eve", + "2047-01-01": "New Year's Day", + "2047-01-06": "Epiphany", + "2047-03-04": "Clean Monday", + "2047-03-25": "Independence Day", + "2047-04-19": "Good Friday", + "2047-04-22": "Easter Monday", + "2047-05-01": "Labor Day", + "2047-06-10": "Easter Monday", + "2047-08-15": "Dormition of the Mother of God", + "2047-10-28": "Ochi Day", + "2047-12-24": "Christmas Eve", + "2047-12-25": "Christmas Day", + "2047-12-26": "Glorifying Mother of God", + "2047-12-31": "New Year's Eve", + "2048-01-01": "New Year's Day", + "2048-01-06": "Epiphany", + "2048-02-17": "Clean Monday", + "2048-03-25": "Independence Day", + "2048-04-03": "Good Friday", + "2048-04-06": "Easter Monday", + "2048-05-01": "Labor Day", + "2048-05-25": "Easter Monday", + "2048-08-15": "Dormition of the Mother of God", + "2048-10-28": "Ochi Day", + "2048-12-24": "Christmas Eve", + "2048-12-25": "Christmas Day", + "2048-12-26": "Glorifying Mother of God", + "2048-12-31": "New Year's Eve", + "2049-01-01": "New Year's Day", + "2049-01-06": "Epiphany", + "2049-03-08": "Clean Monday", + "2049-03-25": "Independence Day", + "2049-04-23": "Good Friday", + "2049-04-26": "Easter Monday", + "2049-05-01": "Labor Day", + "2049-05-03": "Labor Day (Observed)", + "2049-06-14": "Easter Monday", + "2049-08-15": "Dormition of the Mother of God", + "2049-10-28": "Ochi Day", + "2049-12-24": "Christmas Eve", + "2049-12-25": "Christmas Day", + "2049-12-26": "Glorifying Mother of God", + "2049-12-31": "New Year's Eve", + "2050-01-01": "New Year's Day", + "2050-01-06": "Epiphany", + "2050-02-28": "Clean Monday", + "2050-03-25": "Independence Day", + "2050-04-15": "Good Friday", + "2050-04-18": "Easter Monday", + "2050-05-01": "Labor Day", + "2050-05-02": "Labor Day (Observed)", + "2050-06-06": "Easter Monday", + "2050-08-15": "Dormition of the Mother of God", + "2050-10-28": "Ochi Day", + "2050-12-24": "Christmas Eve", + "2050-12-25": "Christmas Day", + "2050-12-26": "Glorifying Mother of God", + "2050-12-31": "New Year's Eve" +} diff --git a/snapshots/countries/GT.json b/snapshots/countries/GT.json new file mode 100644 index 000000000..716e00cd6 --- /dev/null +++ b/snapshots/countries/GT.json @@ -0,0 +1,1113 @@ +{ + "1950-01-01": "New Year's Day", + "1950-04-06": "Good Thursday", + "1950-04-07": "Good Friday", + "1950-04-08": "Good Saturday", + "1950-05-01": "Labor Day", + "1950-06-30": "Army Day", + "1950-08-15": "Assumption Day", + "1950-09-15": "Independence Day", + "1950-10-20": "Revolution Day", + "1950-11-01": "All Saints' Day", + "1950-12-25": "Christmas Day", + "1951-01-01": "New Year's Day", + "1951-03-22": "Good Thursday", + "1951-03-23": "Good Friday", + "1951-03-24": "Good Saturday", + "1951-05-01": "Labor Day", + "1951-06-30": "Army Day", + "1951-08-15": "Assumption Day", + "1951-09-15": "Independence Day", + "1951-10-20": "Revolution Day", + "1951-11-01": "All Saints' Day", + "1951-12-25": "Christmas Day", + "1952-01-01": "New Year's Day", + "1952-04-10": "Good Thursday", + "1952-04-11": "Good Friday", + "1952-04-12": "Good Saturday", + "1952-05-01": "Labor Day", + "1952-06-30": "Army Day", + "1952-08-15": "Assumption Day", + "1952-09-15": "Independence Day", + "1952-10-20": "Revolution Day", + "1952-11-01": "All Saints' Day", + "1952-12-25": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-04-02": "Good Thursday", + "1953-04-03": "Good Friday", + "1953-04-04": "Good Saturday", + "1953-05-01": "Labor Day", + "1953-06-30": "Army Day", + "1953-08-15": "Assumption Day", + "1953-09-15": "Independence Day", + "1953-10-20": "Revolution Day", + "1953-11-01": "All Saints' Day", + "1953-12-25": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-04-15": "Good Thursday", + "1954-04-16": "Good Friday", + "1954-04-17": "Good Saturday", + "1954-05-01": "Labor Day", + "1954-06-30": "Army Day", + "1954-08-15": "Assumption Day", + "1954-09-15": "Independence Day", + "1954-10-20": "Revolution Day", + "1954-11-01": "All Saints' Day", + "1954-12-25": "Christmas Day", + "1955-01-01": "New Year's Day", + "1955-04-07": "Good Thursday", + "1955-04-08": "Good Friday", + "1955-04-09": "Good Saturday", + "1955-05-01": "Labor Day", + "1955-06-30": "Army Day", + "1955-08-15": "Assumption Day", + "1955-09-15": "Independence Day", + "1955-10-20": "Revolution Day", + "1955-11-01": "All Saints' Day", + "1955-12-25": "Christmas Day", + "1956-01-01": "New Year's Day", + "1956-03-29": "Good Thursday", + "1956-03-30": "Good Friday", + "1956-03-31": "Good Saturday", + "1956-05-01": "Labor Day", + "1956-06-30": "Army Day", + "1956-08-15": "Assumption Day", + "1956-09-15": "Independence Day", + "1956-10-20": "Revolution Day", + "1956-11-01": "All Saints' Day", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-04-18": "Good Thursday", + "1957-04-19": "Good Friday", + "1957-04-20": "Good Saturday", + "1957-05-01": "Labor Day", + "1957-06-30": "Army Day", + "1957-08-15": "Assumption Day", + "1957-09-15": "Independence Day", + "1957-10-20": "Revolution Day", + "1957-11-01": "All Saints' Day", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-04-03": "Good Thursday", + "1958-04-04": "Good Friday", + "1958-04-05": "Good Saturday", + "1958-05-01": "Labor Day", + "1958-06-30": "Army Day", + "1958-08-15": "Assumption Day", + "1958-09-15": "Independence Day", + "1958-10-20": "Revolution Day", + "1958-11-01": "All Saints' Day", + "1958-12-25": "Christmas Day", + "1959-01-01": "New Year's Day", + "1959-03-26": "Good Thursday", + "1959-03-27": "Good Friday", + "1959-03-28": "Good Saturday", + "1959-05-01": "Labor Day", + "1959-06-30": "Army Day", + "1959-08-15": "Assumption Day", + "1959-09-15": "Independence Day", + "1959-10-20": "Revolution Day", + "1959-11-01": "All Saints' Day", + "1959-12-25": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-04-14": "Good Thursday", + "1960-04-15": "Good Friday", + "1960-04-16": "Good Saturday", + "1960-05-01": "Labor Day", + "1960-06-30": "Army Day", + "1960-08-15": "Assumption Day", + "1960-09-15": "Independence Day", + "1960-10-20": "Revolution Day", + "1960-11-01": "All Saints' Day", + "1960-12-25": "Christmas Day", + "1961-01-01": "New Year's Day", + "1961-03-30": "Good Thursday", + "1961-03-31": "Good Friday", + "1961-04-01": "Good Saturday", + "1961-05-01": "Labor Day", + "1961-06-30": "Army Day", + "1961-08-15": "Assumption Day", + "1961-09-15": "Independence Day", + "1961-10-20": "Revolution Day", + "1961-11-01": "All Saints' Day", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-04-19": "Good Thursday", + "1962-04-20": "Good Friday", + "1962-04-21": "Good Saturday", + "1962-05-01": "Labor Day", + "1962-06-30": "Army Day", + "1962-08-15": "Assumption Day", + "1962-09-15": "Independence Day", + "1962-10-20": "Revolution Day", + "1962-11-01": "All Saints' Day", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-04-11": "Good Thursday", + "1963-04-12": "Good Friday", + "1963-04-13": "Good Saturday", + "1963-05-01": "Labor Day", + "1963-06-30": "Army Day", + "1963-08-15": "Assumption Day", + "1963-09-15": "Independence Day", + "1963-10-20": "Revolution Day", + "1963-11-01": "All Saints' Day", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-03-26": "Good Thursday", + "1964-03-27": "Good Friday", + "1964-03-28": "Good Saturday", + "1964-05-01": "Labor Day", + "1964-06-30": "Army Day", + "1964-08-15": "Assumption Day", + "1964-09-15": "Independence Day", + "1964-10-20": "Revolution Day", + "1964-11-01": "All Saints' Day", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-04-15": "Good Thursday", + "1965-04-16": "Good Friday", + "1965-04-17": "Good Saturday", + "1965-05-01": "Labor Day", + "1965-06-30": "Army Day", + "1965-08-15": "Assumption Day", + "1965-09-15": "Independence Day", + "1965-10-20": "Revolution Day", + "1965-11-01": "All Saints' Day", + "1965-12-25": "Christmas Day", + "1966-01-01": "New Year's Day", + "1966-04-07": "Good Thursday", + "1966-04-08": "Good Friday", + "1966-04-09": "Good Saturday", + "1966-05-01": "Labor Day", + "1966-06-30": "Army Day", + "1966-08-15": "Assumption Day", + "1966-09-15": "Independence Day", + "1966-10-20": "Revolution Day", + "1966-11-01": "All Saints' Day", + "1966-12-25": "Christmas Day", + "1967-01-01": "New Year's Day", + "1967-03-23": "Good Thursday", + "1967-03-24": "Good Friday", + "1967-03-25": "Good Saturday", + "1967-05-01": "Labor Day", + "1967-06-30": "Army Day", + "1967-08-15": "Assumption Day", + "1967-09-15": "Independence Day", + "1967-10-20": "Revolution Day", + "1967-11-01": "All Saints' Day", + "1967-12-25": "Christmas Day", + "1968-01-01": "New Year's Day", + "1968-04-11": "Good Thursday", + "1968-04-12": "Good Friday", + "1968-04-13": "Good Saturday", + "1968-05-01": "Labor Day", + "1968-06-30": "Army Day", + "1968-08-15": "Assumption Day", + "1968-09-15": "Independence Day", + "1968-10-20": "Revolution Day", + "1968-11-01": "All Saints' Day", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-04-03": "Good Thursday", + "1969-04-04": "Good Friday", + "1969-04-05": "Good Saturday", + "1969-05-01": "Labor Day", + "1969-06-30": "Army Day", + "1969-08-15": "Assumption Day", + "1969-09-15": "Independence Day", + "1969-10-20": "Revolution Day", + "1969-11-01": "All Saints' Day", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-03-26": "Good Thursday", + "1970-03-27": "Good Friday", + "1970-03-28": "Good Saturday", + "1970-05-01": "Labor Day", + "1970-06-30": "Army Day", + "1970-08-15": "Assumption Day", + "1970-09-15": "Independence Day", + "1970-10-20": "Revolution Day", + "1970-11-01": "All Saints' Day", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-04-08": "Good Thursday", + "1971-04-09": "Good Friday", + "1971-04-10": "Good Saturday", + "1971-05-01": "Labor Day", + "1971-06-30": "Army Day", + "1971-08-15": "Assumption Day", + "1971-09-15": "Independence Day", + "1971-10-20": "Revolution Day", + "1971-11-01": "All Saints' Day", + "1971-12-25": "Christmas Day", + "1972-01-01": "New Year's Day", + "1972-03-30": "Good Thursday", + "1972-03-31": "Good Friday", + "1972-04-01": "Good Saturday", + "1972-05-01": "Labor Day", + "1972-06-30": "Army Day", + "1972-08-15": "Assumption Day", + "1972-09-15": "Independence Day", + "1972-10-20": "Revolution Day", + "1972-11-01": "All Saints' Day", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-04-19": "Good Thursday", + "1973-04-20": "Good Friday", + "1973-04-21": "Good Saturday", + "1973-05-01": "Labor Day", + "1973-06-30": "Army Day", + "1973-08-15": "Assumption Day", + "1973-09-15": "Independence Day", + "1973-10-20": "Revolution Day", + "1973-11-01": "All Saints' Day", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-04-11": "Good Thursday", + "1974-04-12": "Good Friday", + "1974-04-13": "Good Saturday", + "1974-05-01": "Labor Day", + "1974-06-30": "Army Day", + "1974-08-15": "Assumption Day", + "1974-09-15": "Independence Day", + "1974-10-20": "Revolution Day", + "1974-11-01": "All Saints' Day", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-03-27": "Good Thursday", + "1975-03-28": "Good Friday", + "1975-03-29": "Good Saturday", + "1975-05-01": "Labor Day", + "1975-06-30": "Army Day", + "1975-08-15": "Assumption Day", + "1975-09-15": "Independence Day", + "1975-10-20": "Revolution Day", + "1975-11-01": "All Saints' Day", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-04-15": "Good Thursday", + "1976-04-16": "Good Friday", + "1976-04-17": "Good Saturday", + "1976-05-01": "Labor Day", + "1976-06-30": "Army Day", + "1976-08-15": "Assumption Day", + "1976-09-15": "Independence Day", + "1976-10-20": "Revolution Day", + "1976-11-01": "All Saints' Day", + "1976-12-25": "Christmas Day", + "1977-01-01": "New Year's Day", + "1977-04-07": "Good Thursday", + "1977-04-08": "Good Friday", + "1977-04-09": "Good Saturday", + "1977-05-01": "Labor Day", + "1977-06-30": "Army Day", + "1977-08-15": "Assumption Day", + "1977-09-15": "Independence Day", + "1977-10-20": "Revolution Day", + "1977-11-01": "All Saints' Day", + "1977-12-25": "Christmas Day", + "1978-01-01": "New Year's Day", + "1978-03-23": "Good Thursday", + "1978-03-24": "Good Friday", + "1978-03-25": "Good Saturday", + "1978-05-01": "Labor Day", + "1978-06-30": "Army Day", + "1978-08-15": "Assumption Day", + "1978-09-15": "Independence Day", + "1978-10-20": "Revolution Day", + "1978-11-01": "All Saints' Day", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-04-12": "Good Thursday", + "1979-04-13": "Good Friday", + "1979-04-14": "Good Saturday", + "1979-05-01": "Labor Day", + "1979-06-30": "Army Day", + "1979-08-15": "Assumption Day", + "1979-09-15": "Independence Day", + "1979-10-20": "Revolution Day", + "1979-11-01": "All Saints' Day", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-04-03": "Good Thursday", + "1980-04-04": "Good Friday", + "1980-04-05": "Good Saturday", + "1980-05-01": "Labor Day", + "1980-06-30": "Army Day", + "1980-08-15": "Assumption Day", + "1980-09-15": "Independence Day", + "1980-10-20": "Revolution Day", + "1980-11-01": "All Saints' Day", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-04-16": "Good Thursday", + "1981-04-17": "Good Friday", + "1981-04-18": "Good Saturday", + "1981-05-01": "Labor Day", + "1981-06-30": "Army Day", + "1981-08-15": "Assumption Day", + "1981-09-15": "Independence Day", + "1981-10-20": "Revolution Day", + "1981-11-01": "All Saints' Day", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-04-08": "Good Thursday", + "1982-04-09": "Good Friday", + "1982-04-10": "Good Saturday", + "1982-05-01": "Labor Day", + "1982-06-30": "Army Day", + "1982-08-15": "Assumption Day", + "1982-09-15": "Independence Day", + "1982-10-20": "Revolution Day", + "1982-11-01": "All Saints' Day", + "1982-12-25": "Christmas Day", + "1983-01-01": "New Year's Day", + "1983-03-31": "Good Thursday", + "1983-04-01": "Good Friday", + "1983-04-02": "Good Saturday", + "1983-05-01": "Labor Day", + "1983-06-30": "Army Day", + "1983-08-15": "Assumption Day", + "1983-09-15": "Independence Day", + "1983-10-20": "Revolution Day", + "1983-11-01": "All Saints' Day", + "1983-12-25": "Christmas Day", + "1984-01-01": "New Year's Day", + "1984-04-19": "Good Thursday", + "1984-04-20": "Good Friday", + "1984-04-21": "Good Saturday", + "1984-05-01": "Labor Day", + "1984-06-30": "Army Day", + "1984-08-15": "Assumption Day", + "1984-09-15": "Independence Day", + "1984-10-20": "Revolution Day", + "1984-11-01": "All Saints' Day", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-04-04": "Good Thursday", + "1985-04-05": "Good Friday", + "1985-04-06": "Good Saturday", + "1985-05-01": "Labor Day", + "1985-06-30": "Army Day", + "1985-08-15": "Assumption Day", + "1985-09-15": "Independence Day", + "1985-10-20": "Revolution Day", + "1985-11-01": "All Saints' Day", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-03-27": "Good Thursday", + "1986-03-28": "Good Friday", + "1986-03-29": "Good Saturday", + "1986-05-01": "Labor Day", + "1986-06-30": "Army Day", + "1986-08-15": "Assumption Day", + "1986-09-15": "Independence Day", + "1986-10-20": "Revolution Day", + "1986-11-01": "All Saints' Day", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-04-16": "Good Thursday", + "1987-04-17": "Good Friday", + "1987-04-18": "Good Saturday", + "1987-05-01": "Labor Day", + "1987-06-30": "Army Day", + "1987-08-15": "Assumption Day", + "1987-09-15": "Independence Day", + "1987-10-20": "Revolution Day", + "1987-11-01": "All Saints' Day", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-03-31": "Good Thursday", + "1988-04-01": "Good Friday", + "1988-04-02": "Good Saturday", + "1988-05-01": "Labor Day", + "1988-06-30": "Army Day", + "1988-08-15": "Assumption Day", + "1988-09-15": "Independence Day", + "1988-10-20": "Revolution Day", + "1988-11-01": "All Saints' Day", + "1988-12-25": "Christmas Day", + "1989-01-01": "New Year's Day", + "1989-03-23": "Good Thursday", + "1989-03-24": "Good Friday", + "1989-03-25": "Good Saturday", + "1989-05-01": "Labor Day", + "1989-06-30": "Army Day", + "1989-08-15": "Assumption Day", + "1989-09-15": "Independence Day", + "1989-10-20": "Revolution Day", + "1989-11-01": "All Saints' Day", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-04-12": "Good Thursday", + "1990-04-13": "Good Friday", + "1990-04-14": "Good Saturday", + "1990-05-01": "Labor Day", + "1990-06-30": "Army Day", + "1990-08-15": "Assumption Day", + "1990-09-15": "Independence Day", + "1990-10-20": "Revolution Day", + "1990-11-01": "All Saints' Day", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-03-28": "Good Thursday", + "1991-03-29": "Good Friday", + "1991-03-30": "Good Saturday", + "1991-05-01": "Labor Day", + "1991-06-30": "Army Day", + "1991-08-15": "Assumption Day", + "1991-09-15": "Independence Day", + "1991-10-20": "Revolution Day", + "1991-11-01": "All Saints' Day", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-04-16": "Good Thursday", + "1992-04-17": "Good Friday", + "1992-04-18": "Good Saturday", + "1992-05-01": "Labor Day", + "1992-06-30": "Army Day", + "1992-08-15": "Assumption Day", + "1992-09-15": "Independence Day", + "1992-10-20": "Revolution Day", + "1992-11-01": "All Saints' Day", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-04-08": "Good Thursday", + "1993-04-09": "Good Friday", + "1993-04-10": "Good Saturday", + "1993-05-01": "Labor Day", + "1993-06-30": "Army Day", + "1993-08-15": "Assumption Day", + "1993-09-15": "Independence Day", + "1993-10-20": "Revolution Day", + "1993-11-01": "All Saints' Day", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-03-31": "Good Thursday", + "1994-04-01": "Good Friday", + "1994-04-02": "Good Saturday", + "1994-05-01": "Labor Day", + "1994-06-30": "Army Day", + "1994-08-15": "Assumption Day", + "1994-09-15": "Independence Day", + "1994-10-20": "Revolution Day", + "1994-11-01": "All Saints' Day", + "1994-12-25": "Christmas Day", + "1995-01-01": "New Year's Day", + "1995-04-13": "Good Thursday", + "1995-04-14": "Good Friday", + "1995-04-15": "Good Saturday", + "1995-05-01": "Labor Day", + "1995-06-30": "Army Day", + "1995-08-15": "Assumption Day", + "1995-09-15": "Independence Day", + "1995-10-20": "Revolution Day", + "1995-11-01": "All Saints' Day", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-04-04": "Good Thursday", + "1996-04-05": "Good Friday", + "1996-04-06": "Good Saturday", + "1996-05-01": "Labor Day", + "1996-06-30": "Army Day", + "1996-08-15": "Assumption Day", + "1996-09-15": "Independence Day", + "1996-10-20": "Revolution Day", + "1996-11-01": "All Saints' Day", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-03-27": "Good Thursday", + "1997-03-28": "Good Friday", + "1997-03-29": "Good Saturday", + "1997-05-01": "Labor Day", + "1997-06-30": "Army Day", + "1997-08-15": "Assumption Day", + "1997-09-15": "Independence Day", + "1997-10-20": "Revolution Day", + "1997-11-01": "All Saints' Day", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-04-09": "Good Thursday", + "1998-04-10": "Good Friday", + "1998-04-11": "Good Saturday", + "1998-05-01": "Labor Day", + "1998-06-30": "Army Day", + "1998-08-15": "Assumption Day", + "1998-09-15": "Independence Day", + "1998-10-20": "Revolution Day", + "1998-11-01": "All Saints' Day", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-04-01": "Good Thursday", + "1999-04-02": "Good Friday", + "1999-04-03": "Good Saturday", + "1999-05-01": "Labor Day", + "1999-06-30": "Army Day", + "1999-08-15": "Assumption Day", + "1999-09-15": "Independence Day", + "1999-10-20": "Revolution Day", + "1999-11-01": "All Saints' Day", + "1999-12-25": "Christmas Day", + "2000-01-01": "New Year's Day", + "2000-04-20": "Good Thursday", + "2000-04-21": "Good Friday", + "2000-04-22": "Good Saturday", + "2000-05-01": "Labor Day", + "2000-06-30": "Army Day", + "2000-08-15": "Assumption Day", + "2000-09-15": "Independence Day", + "2000-10-20": "Revolution Day", + "2000-11-01": "All Saints' Day", + "2000-12-25": "Christmas Day", + "2001-01-01": "New Year's Day", + "2001-04-12": "Good Thursday", + "2001-04-13": "Good Friday", + "2001-04-14": "Good Saturday", + "2001-05-01": "Labor Day", + "2001-06-30": "Army Day", + "2001-08-15": "Assumption Day", + "2001-09-15": "Independence Day", + "2001-10-20": "Revolution Day", + "2001-11-01": "All Saints' Day", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-03-28": "Good Thursday", + "2002-03-29": "Good Friday", + "2002-03-30": "Good Saturday", + "2002-05-01": "Labor Day", + "2002-06-30": "Army Day", + "2002-08-15": "Assumption Day", + "2002-09-15": "Independence Day", + "2002-10-20": "Revolution Day", + "2002-11-01": "All Saints' Day", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-04-17": "Good Thursday", + "2003-04-18": "Good Friday", + "2003-04-19": "Good Saturday", + "2003-05-01": "Labor Day", + "2003-06-30": "Army Day", + "2003-08-15": "Assumption Day", + "2003-09-15": "Independence Day", + "2003-10-20": "Revolution Day", + "2003-11-01": "All Saints' Day", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-04-08": "Good Thursday", + "2004-04-09": "Good Friday", + "2004-04-10": "Good Saturday", + "2004-05-01": "Labor Day", + "2004-06-30": "Army Day", + "2004-08-15": "Assumption Day", + "2004-09-15": "Independence Day", + "2004-10-20": "Revolution Day", + "2004-11-01": "All Saints' Day", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-03-24": "Good Thursday", + "2005-03-25": "Good Friday", + "2005-03-26": "Good Saturday", + "2005-05-01": "Labor Day", + "2005-06-30": "Army Day", + "2005-08-15": "Assumption Day", + "2005-09-15": "Independence Day", + "2005-10-20": "Revolution Day", + "2005-11-01": "All Saints' Day", + "2005-12-25": "Christmas Day", + "2006-01-01": "New Year's Day", + "2006-04-13": "Good Thursday", + "2006-04-14": "Good Friday", + "2006-04-15": "Good Saturday", + "2006-05-01": "Labor Day", + "2006-06-30": "Army Day", + "2006-08-15": "Assumption Day", + "2006-09-15": "Independence Day", + "2006-10-20": "Revolution Day", + "2006-11-01": "All Saints' Day", + "2006-12-25": "Christmas Day", + "2007-01-01": "New Year's Day", + "2007-04-05": "Good Thursday", + "2007-04-06": "Good Friday", + "2007-04-07": "Good Saturday", + "2007-05-01": "Labor Day", + "2007-06-30": "Army Day", + "2007-08-15": "Assumption Day", + "2007-09-15": "Independence Day", + "2007-10-20": "Revolution Day", + "2007-11-01": "All Saints' Day", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-03-20": "Good Thursday", + "2008-03-21": "Good Friday", + "2008-03-22": "Good Saturday", + "2008-05-01": "Labor Day", + "2008-06-30": "Army Day", + "2008-08-15": "Assumption Day", + "2008-09-15": "Independence Day", + "2008-10-20": "Revolution Day", + "2008-11-01": "All Saints' Day", + "2008-12-25": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-04-09": "Good Thursday", + "2009-04-10": "Good Friday", + "2009-04-11": "Good Saturday", + "2009-05-01": "Labor Day", + "2009-06-30": "Army Day", + "2009-08-15": "Assumption Day", + "2009-09-15": "Independence Day", + "2009-10-20": "Revolution Day", + "2009-11-01": "All Saints' Day", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-04-01": "Good Thursday", + "2010-04-02": "Good Friday", + "2010-04-03": "Good Saturday", + "2010-05-01": "Labor Day", + "2010-06-30": "Army Day", + "2010-08-15": "Assumption Day", + "2010-09-15": "Independence Day", + "2010-10-20": "Revolution Day", + "2010-11-01": "All Saints' Day", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-04-21": "Good Thursday", + "2011-04-22": "Good Friday", + "2011-04-23": "Good Saturday", + "2011-05-01": "Labor Day", + "2011-06-30": "Army Day", + "2011-08-15": "Assumption Day", + "2011-09-15": "Independence Day", + "2011-10-20": "Revolution Day", + "2011-11-01": "All Saints' Day", + "2011-12-25": "Christmas Day", + "2012-01-01": "New Year's Day", + "2012-04-05": "Good Thursday", + "2012-04-06": "Good Friday", + "2012-04-07": "Good Saturday", + "2012-05-01": "Labor Day", + "2012-06-30": "Army Day", + "2012-08-15": "Assumption Day", + "2012-09-15": "Independence Day", + "2012-10-20": "Revolution Day", + "2012-11-01": "All Saints' Day", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-03-28": "Good Thursday", + "2013-03-29": "Good Friday", + "2013-03-30": "Good Saturday", + "2013-05-01": "Labor Day", + "2013-06-30": "Army Day", + "2013-08-15": "Assumption Day", + "2013-09-15": "Independence Day", + "2013-10-20": "Revolution Day", + "2013-11-01": "All Saints' Day", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-04-17": "Good Thursday", + "2014-04-18": "Good Friday", + "2014-04-19": "Good Saturday", + "2014-05-01": "Labor Day", + "2014-06-30": "Army Day", + "2014-08-15": "Assumption Day", + "2014-09-15": "Independence Day", + "2014-10-20": "Revolution Day", + "2014-11-01": "All Saints' Day", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-04-02": "Good Thursday", + "2015-04-03": "Good Friday", + "2015-04-04": "Good Saturday", + "2015-05-01": "Labor Day", + "2015-06-30": "Army Day", + "2015-08-15": "Assumption Day", + "2015-09-15": "Independence Day", + "2015-10-20": "Revolution Day", + "2015-11-01": "All Saints' Day", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-03-24": "Good Thursday", + "2016-03-25": "Good Friday", + "2016-03-26": "Good Saturday", + "2016-05-01": "Labor Day", + "2016-06-30": "Army Day", + "2016-08-15": "Assumption Day", + "2016-09-15": "Independence Day", + "2016-10-20": "Revolution Day", + "2016-11-01": "All Saints' Day", + "2016-12-25": "Christmas Day", + "2017-01-01": "New Year's Day", + "2017-04-13": "Good Thursday", + "2017-04-14": "Good Friday", + "2017-04-15": "Good Saturday", + "2017-05-01": "Labor Day", + "2017-06-30": "Army Day", + "2017-08-15": "Assumption Day", + "2017-09-15": "Independence Day", + "2017-10-20": "Revolution Day", + "2017-11-01": "All Saints' Day", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-03-29": "Good Thursday", + "2018-03-30": "Good Friday", + "2018-03-31": "Good Saturday", + "2018-05-01": "Labor Day", + "2018-06-30": "Army Day", + "2018-08-15": "Assumption Day", + "2018-09-15": "Independence Day", + "2018-10-22": "Revolution Day", + "2018-11-01": "All Saints' Day", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-04-18": "Good Thursday", + "2019-04-19": "Good Friday", + "2019-04-20": "Good Saturday", + "2019-04-29": "Labor Day", + "2019-07-01": "Army Day", + "2019-08-15": "Assumption Day", + "2019-09-15": "Independence Day", + "2019-10-21": "Revolution Day", + "2019-11-01": "All Saints' Day", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-04-09": "Good Thursday", + "2020-04-10": "Good Friday", + "2020-04-11": "Good Saturday", + "2020-05-01": "Labor Day", + "2020-06-29": "Army Day", + "2020-08-15": "Assumption Day", + "2020-09-15": "Independence Day", + "2020-10-20": "Revolution Day", + "2020-11-01": "All Saints' Day", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-04-01": "Good Thursday", + "2021-04-02": "Good Friday", + "2021-04-03": "Good Saturday", + "2021-05-01": "Labor Day", + "2021-06-28": "Army Day", + "2021-08-15": "Assumption Day", + "2021-09-15": "Independence Day", + "2021-10-20": "Revolution Day", + "2021-11-01": "All Saints' Day", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-04-14": "Good Thursday", + "2022-04-15": "Good Friday", + "2022-04-16": "Good Saturday", + "2022-05-01": "Labor Day", + "2022-07-04": "Army Day", + "2022-08-15": "Assumption Day", + "2022-09-15": "Independence Day", + "2022-10-20": "Revolution Day", + "2022-11-01": "All Saints' Day", + "2022-12-25": "Christmas Day", + "2023-01-01": "New Year's Day", + "2023-04-06": "Good Thursday", + "2023-04-07": "Good Friday", + "2023-04-08": "Good Saturday", + "2023-05-01": "Labor Day", + "2023-07-03": "Army Day", + "2023-08-15": "Assumption Day", + "2023-09-15": "Independence Day", + "2023-10-20": "Revolution Day", + "2023-11-01": "All Saints' Day", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-03-28": "Good Thursday", + "2024-03-29": "Good Friday", + "2024-03-30": "Good Saturday", + "2024-05-01": "Labor Day", + "2024-07-01": "Army Day", + "2024-08-15": "Assumption Day", + "2024-09-15": "Independence Day", + "2024-10-20": "Revolution Day", + "2024-11-01": "All Saints' Day", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-04-17": "Good Thursday", + "2025-04-18": "Good Friday", + "2025-04-19": "Good Saturday", + "2025-05-01": "Labor Day", + "2025-06-30": "Army Day", + "2025-08-15": "Assumption Day", + "2025-09-15": "Independence Day", + "2025-10-20": "Revolution Day", + "2025-11-01": "All Saints' Day", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-04-02": "Good Thursday", + "2026-04-03": "Good Friday", + "2026-04-04": "Good Saturday", + "2026-05-01": "Labor Day", + "2026-06-29": "Army Day", + "2026-08-15": "Assumption Day", + "2026-09-15": "Independence Day", + "2026-10-20": "Revolution Day", + "2026-11-01": "All Saints' Day", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-03-25": "Good Thursday", + "2027-03-26": "Good Friday", + "2027-03-27": "Good Saturday", + "2027-05-01": "Labor Day", + "2027-06-28": "Army Day", + "2027-08-15": "Assumption Day", + "2027-09-15": "Independence Day", + "2027-10-20": "Revolution Day", + "2027-11-01": "All Saints' Day", + "2027-12-25": "Christmas Day", + "2028-01-01": "New Year's Day", + "2028-04-13": "Good Thursday", + "2028-04-14": "Good Friday", + "2028-04-15": "Good Saturday", + "2028-05-01": "Labor Day", + "2028-07-03": "Army Day", + "2028-08-15": "Assumption Day", + "2028-09-15": "Independence Day", + "2028-10-20": "Revolution Day", + "2028-11-01": "All Saints' Day", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-03-29": "Good Thursday", + "2029-03-30": "Good Friday", + "2029-03-31": "Good Saturday", + "2029-05-01": "Labor Day", + "2029-07-02": "Army Day", + "2029-08-15": "Assumption Day", + "2029-09-15": "Independence Day", + "2029-10-20": "Revolution Day", + "2029-11-01": "All Saints' Day", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-04-18": "Good Thursday", + "2030-04-19": "Good Friday", + "2030-04-20": "Good Saturday", + "2030-05-01": "Labor Day", + "2030-07-01": "Army Day", + "2030-08-15": "Assumption Day", + "2030-09-15": "Independence Day", + "2030-10-20": "Revolution Day", + "2030-11-01": "All Saints' Day", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-04-10": "Good Thursday", + "2031-04-11": "Good Friday", + "2031-04-12": "Good Saturday", + "2031-05-01": "Labor Day", + "2031-06-30": "Army Day", + "2031-08-15": "Assumption Day", + "2031-09-15": "Independence Day", + "2031-10-20": "Revolution Day", + "2031-11-01": "All Saints' Day", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-03-25": "Good Thursday", + "2032-03-26": "Good Friday", + "2032-03-27": "Good Saturday", + "2032-05-01": "Labor Day", + "2032-06-28": "Army Day", + "2032-08-15": "Assumption Day", + "2032-09-15": "Independence Day", + "2032-10-20": "Revolution Day", + "2032-11-01": "All Saints' Day", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-04-14": "Good Thursday", + "2033-04-15": "Good Friday", + "2033-04-16": "Good Saturday", + "2033-05-01": "Labor Day", + "2033-07-04": "Army Day", + "2033-08-15": "Assumption Day", + "2033-09-15": "Independence Day", + "2033-10-20": "Revolution Day", + "2033-11-01": "All Saints' Day", + "2033-12-25": "Christmas Day", + "2034-01-01": "New Year's Day", + "2034-04-06": "Good Thursday", + "2034-04-07": "Good Friday", + "2034-04-08": "Good Saturday", + "2034-05-01": "Labor Day", + "2034-07-03": "Army Day", + "2034-08-15": "Assumption Day", + "2034-09-15": "Independence Day", + "2034-10-20": "Revolution Day", + "2034-11-01": "All Saints' Day", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-03-22": "Good Thursday", + "2035-03-23": "Good Friday", + "2035-03-24": "Good Saturday", + "2035-05-01": "Labor Day", + "2035-07-02": "Army Day", + "2035-08-15": "Assumption Day", + "2035-09-15": "Independence Day", + "2035-10-20": "Revolution Day", + "2035-11-01": "All Saints' Day", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-04-10": "Good Thursday", + "2036-04-11": "Good Friday", + "2036-04-12": "Good Saturday", + "2036-05-01": "Labor Day", + "2036-06-30": "Army Day", + "2036-08-15": "Assumption Day", + "2036-09-15": "Independence Day", + "2036-10-20": "Revolution Day", + "2036-11-01": "All Saints' Day", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-04-02": "Good Thursday", + "2037-04-03": "Good Friday", + "2037-04-04": "Good Saturday", + "2037-05-01": "Labor Day", + "2037-06-29": "Army Day", + "2037-08-15": "Assumption Day", + "2037-09-15": "Independence Day", + "2037-10-20": "Revolution Day", + "2037-11-01": "All Saints' Day", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-04-22": "Good Thursday", + "2038-04-23": "Good Friday", + "2038-04-24": "Good Saturday", + "2038-05-01": "Labor Day", + "2038-06-28": "Army Day", + "2038-08-15": "Assumption Day", + "2038-09-15": "Independence Day", + "2038-10-20": "Revolution Day", + "2038-11-01": "All Saints' Day", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-04-07": "Good Thursday", + "2039-04-08": "Good Friday", + "2039-04-09": "Good Saturday", + "2039-05-01": "Labor Day", + "2039-07-04": "Army Day", + "2039-08-15": "Assumption Day", + "2039-09-15": "Independence Day", + "2039-10-20": "Revolution Day", + "2039-11-01": "All Saints' Day", + "2039-12-25": "Christmas Day", + "2040-01-01": "New Year's Day", + "2040-03-29": "Good Thursday", + "2040-03-30": "Good Friday", + "2040-03-31": "Good Saturday", + "2040-05-01": "Labor Day", + "2040-07-02": "Army Day", + "2040-08-15": "Assumption Day", + "2040-09-15": "Independence Day", + "2040-10-20": "Revolution Day", + "2040-11-01": "All Saints' Day", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-04-18": "Good Thursday", + "2041-04-19": "Good Friday", + "2041-04-20": "Good Saturday", + "2041-05-01": "Labor Day", + "2041-07-01": "Army Day", + "2041-08-15": "Assumption Day", + "2041-09-15": "Independence Day", + "2041-10-20": "Revolution Day", + "2041-11-01": "All Saints' Day", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-04-03": "Good Thursday", + "2042-04-04": "Good Friday", + "2042-04-05": "Good Saturday", + "2042-05-01": "Labor Day", + "2042-06-30": "Army Day", + "2042-08-15": "Assumption Day", + "2042-09-15": "Independence Day", + "2042-10-20": "Revolution Day", + "2042-11-01": "All Saints' Day", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-03-26": "Good Thursday", + "2043-03-27": "Good Friday", + "2043-03-28": "Good Saturday", + "2043-05-01": "Labor Day", + "2043-06-29": "Army Day", + "2043-08-15": "Assumption Day", + "2043-09-15": "Independence Day", + "2043-10-20": "Revolution Day", + "2043-11-01": "All Saints' Day", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-04-14": "Good Thursday", + "2044-04-15": "Good Friday", + "2044-04-16": "Good Saturday", + "2044-05-01": "Labor Day", + "2044-07-04": "Army Day", + "2044-08-15": "Assumption Day", + "2044-09-15": "Independence Day", + "2044-10-20": "Revolution Day", + "2044-11-01": "All Saints' Day", + "2044-12-25": "Christmas Day", + "2045-01-01": "New Year's Day", + "2045-04-06": "Good Thursday", + "2045-04-07": "Good Friday", + "2045-04-08": "Good Saturday", + "2045-05-01": "Labor Day", + "2045-07-03": "Army Day", + "2045-08-15": "Assumption Day", + "2045-09-15": "Independence Day", + "2045-10-20": "Revolution Day", + "2045-11-01": "All Saints' Day", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-03-22": "Good Thursday", + "2046-03-23": "Good Friday", + "2046-03-24": "Good Saturday", + "2046-05-01": "Labor Day", + "2046-07-02": "Army Day", + "2046-08-15": "Assumption Day", + "2046-09-15": "Independence Day", + "2046-10-20": "Revolution Day", + "2046-11-01": "All Saints' Day", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-04-11": "Good Thursday", + "2047-04-12": "Good Friday", + "2047-04-13": "Good Saturday", + "2047-05-01": "Labor Day", + "2047-07-01": "Army Day", + "2047-08-15": "Assumption Day", + "2047-09-15": "Independence Day", + "2047-10-20": "Revolution Day", + "2047-11-01": "All Saints' Day", + "2047-12-25": "Christmas Day", + "2048-01-01": "New Year's Day", + "2048-04-02": "Good Thursday", + "2048-04-03": "Good Friday", + "2048-04-04": "Good Saturday", + "2048-05-01": "Labor Day", + "2048-06-29": "Army Day", + "2048-08-15": "Assumption Day", + "2048-09-15": "Independence Day", + "2048-10-20": "Revolution Day", + "2048-11-01": "All Saints' Day", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-04-15": "Good Thursday", + "2049-04-16": "Good Friday", + "2049-04-17": "Good Saturday", + "2049-05-01": "Labor Day", + "2049-06-28": "Army Day", + "2049-08-15": "Assumption Day", + "2049-09-15": "Independence Day", + "2049-10-20": "Revolution Day", + "2049-11-01": "All Saints' Day", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-04-07": "Good Thursday", + "2050-04-08": "Good Friday", + "2050-04-09": "Good Saturday", + "2050-05-01": "Labor Day", + "2050-07-04": "Army Day", + "2050-08-15": "Assumption Day", + "2050-09-15": "Independence Day", + "2050-10-20": "Revolution Day", + "2050-11-01": "All Saints' Day", + "2050-12-25": "Christmas Day" +} diff --git a/snapshots/countries/GU.json b/snapshots/countries/GU.json new file mode 100644 index 000000000..a27ed330a --- /dev/null +++ b/snapshots/countries/GU.json @@ -0,0 +1,1615 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-02": "New Year's Day (Observed)", + "1950-02-22": "Washington's Birthday", + "1950-04-07": "Good Friday", + "1950-05-30": "Memorial Day", + "1950-07-04": "Independence Day", + "1950-07-21": "Liberation Day (Guam)", + "1950-09-04": "Labor Day", + "1950-10-12": "Columbus Day", + "1950-11-02": "All Souls' Day", + "1950-11-10": "Armistice Day (Observed)", + "1950-11-11": "Armistice Day", + "1950-11-23": "Thanksgiving", + "1950-12-08": "Lady of Camarin Day", + "1950-12-25": "Christmas Day", + "1951-01-01": "New Year's Day", + "1951-02-22": "Washington's Birthday", + "1951-03-23": "Good Friday", + "1951-05-30": "Memorial Day", + "1951-07-04": "Independence Day", + "1951-07-21": "Liberation Day (Guam)", + "1951-09-03": "Labor Day", + "1951-10-12": "Columbus Day", + "1951-11-02": "All Souls' Day", + "1951-11-11": "Armistice Day", + "1951-11-12": "Armistice Day (Observed)", + "1951-11-22": "Thanksgiving", + "1951-12-08": "Lady of Camarin Day", + "1951-12-25": "Christmas Day", + "1952-01-01": "New Year's Day", + "1952-02-22": "Washington's Birthday", + "1952-04-11": "Good Friday", + "1952-05-30": "Memorial Day", + "1952-07-04": "Independence Day", + "1952-07-21": "Liberation Day (Guam)", + "1952-09-01": "Labor Day", + "1952-10-12": "Columbus Day", + "1952-11-02": "All Souls' Day", + "1952-11-11": "Armistice Day", + "1952-11-27": "Thanksgiving", + "1952-12-08": "Lady of Camarin Day", + "1952-12-25": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-02-22": "Washington's Birthday", + "1953-04-03": "Good Friday", + "1953-05-30": "Memorial Day", + "1953-07-03": "Independence Day (Observed)", + "1953-07-04": "Independence Day", + "1953-07-21": "Liberation Day (Guam)", + "1953-09-07": "Labor Day", + "1953-10-12": "Columbus Day", + "1953-11-02": "All Souls' Day", + "1953-11-11": "Armistice Day", + "1953-11-26": "Thanksgiving", + "1953-12-08": "Lady of Camarin Day", + "1953-12-25": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-02-22": "Washington's Birthday", + "1954-04-16": "Good Friday", + "1954-05-30": "Memorial Day", + "1954-07-04": "Independence Day", + "1954-07-05": "Independence Day (Observed)", + "1954-07-21": "Liberation Day (Guam)", + "1954-09-06": "Labor Day", + "1954-10-12": "Columbus Day", + "1954-11-02": "All Souls' Day", + "1954-11-11": "Veterans Day", + "1954-11-25": "Thanksgiving", + "1954-12-08": "Lady of Camarin Day", + "1954-12-24": "Christmas Day (Observed)", + "1954-12-25": "Christmas Day", + "1954-12-31": "New Year's Day (Observed)", + "1955-01-01": "New Year's Day", + "1955-02-22": "Washington's Birthday", + "1955-04-08": "Good Friday", + "1955-05-30": "Memorial Day", + "1955-07-04": "Independence Day", + "1955-07-21": "Liberation Day (Guam)", + "1955-09-05": "Labor Day", + "1955-10-12": "Columbus Day", + "1955-11-02": "All Souls' Day", + "1955-11-11": "Veterans Day", + "1955-11-24": "Thanksgiving", + "1955-12-08": "Lady of Camarin Day", + "1955-12-25": "Christmas Day", + "1955-12-26": "Christmas Day (Observed)", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year's Day (Observed)", + "1956-02-22": "Washington's Birthday", + "1956-03-30": "Good Friday", + "1956-05-30": "Memorial Day", + "1956-07-04": "Independence Day", + "1956-07-21": "Liberation Day (Guam)", + "1956-09-03": "Labor Day", + "1956-10-12": "Columbus Day", + "1956-11-02": "All Souls' Day", + "1956-11-11": "Veterans Day", + "1956-11-12": "Veterans Day (Observed)", + "1956-11-22": "Thanksgiving", + "1956-12-08": "Lady of Camarin Day", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-02-22": "Washington's Birthday", + "1957-04-19": "Good Friday", + "1957-05-30": "Memorial Day", + "1957-07-04": "Independence Day", + "1957-07-21": "Liberation Day (Guam)", + "1957-09-02": "Labor Day", + "1957-10-12": "Columbus Day", + "1957-11-02": "All Souls' Day", + "1957-11-11": "Veterans Day", + "1957-11-28": "Thanksgiving", + "1957-12-08": "Lady of Camarin Day", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-02-22": "Washington's Birthday", + "1958-04-04": "Good Friday", + "1958-05-30": "Memorial Day", + "1958-07-04": "Independence Day", + "1958-07-21": "Liberation Day (Guam)", + "1958-09-01": "Labor Day", + "1958-10-12": "Columbus Day", + "1958-11-02": "All Souls' Day", + "1958-11-11": "Veterans Day", + "1958-11-27": "Thanksgiving", + "1958-12-08": "Lady of Camarin Day", + "1958-12-25": "Christmas Day", + "1959-01-01": "New Year's Day", + "1959-02-22": "Washington's Birthday", + "1959-03-27": "Good Friday", + "1959-05-30": "Memorial Day", + "1959-07-03": "Independence Day (Observed)", + "1959-07-04": "Independence Day", + "1959-07-21": "Liberation Day (Guam)", + "1959-09-07": "Labor Day", + "1959-10-12": "Columbus Day", + "1959-11-02": "All Souls' Day", + "1959-11-11": "Veterans Day", + "1959-11-26": "Thanksgiving", + "1959-12-08": "Lady of Camarin Day", + "1959-12-25": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-02-22": "Washington's Birthday", + "1960-04-15": "Good Friday", + "1960-05-30": "Memorial Day", + "1960-07-04": "Independence Day", + "1960-07-21": "Liberation Day (Guam)", + "1960-09-05": "Labor Day", + "1960-10-12": "Columbus Day", + "1960-11-02": "All Souls' Day", + "1960-11-11": "Veterans Day", + "1960-11-24": "Thanksgiving", + "1960-12-08": "Lady of Camarin Day", + "1960-12-25": "Christmas Day", + "1960-12-26": "Christmas Day (Observed)", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day (Observed)", + "1961-02-22": "Washington's Birthday", + "1961-03-31": "Good Friday", + "1961-05-30": "Memorial Day", + "1961-07-04": "Independence Day", + "1961-07-21": "Liberation Day (Guam)", + "1961-09-04": "Labor Day", + "1961-10-12": "Columbus Day", + "1961-11-02": "All Souls' Day", + "1961-11-10": "Veterans Day (Observed)", + "1961-11-11": "Veterans Day", + "1961-11-23": "Thanksgiving", + "1961-12-08": "Lady of Camarin Day", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-02-22": "Washington's Birthday", + "1962-04-20": "Good Friday", + "1962-05-30": "Memorial Day", + "1962-07-04": "Independence Day", + "1962-07-21": "Liberation Day (Guam)", + "1962-09-03": "Labor Day", + "1962-10-12": "Columbus Day", + "1962-11-02": "All Souls' Day", + "1962-11-11": "Veterans Day", + "1962-11-12": "Veterans Day (Observed)", + "1962-11-22": "Thanksgiving", + "1962-12-08": "Lady of Camarin Day", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-02-22": "Washington's Birthday", + "1963-04-12": "Good Friday", + "1963-05-30": "Memorial Day", + "1963-07-04": "Independence Day", + "1963-07-21": "Liberation Day (Guam)", + "1963-09-02": "Labor Day", + "1963-10-12": "Columbus Day", + "1963-11-02": "All Souls' Day", + "1963-11-11": "Veterans Day", + "1963-11-28": "Thanksgiving", + "1963-12-08": "Lady of Camarin Day", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-02-22": "Washington's Birthday", + "1964-03-27": "Good Friday", + "1964-05-30": "Memorial Day", + "1964-07-03": "Independence Day (Observed)", + "1964-07-04": "Independence Day", + "1964-07-21": "Liberation Day (Guam)", + "1964-09-07": "Labor Day", + "1964-10-12": "Columbus Day", + "1964-11-02": "All Souls' Day", + "1964-11-11": "Veterans Day", + "1964-11-26": "Thanksgiving", + "1964-12-08": "Lady of Camarin Day", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-02-22": "Washington's Birthday", + "1965-04-16": "Good Friday", + "1965-05-30": "Memorial Day", + "1965-07-04": "Independence Day", + "1965-07-05": "Independence Day (Observed)", + "1965-07-21": "Liberation Day (Guam)", + "1965-09-06": "Labor Day", + "1965-10-12": "Columbus Day", + "1965-11-02": "All Souls' Day", + "1965-11-11": "Veterans Day", + "1965-11-25": "Thanksgiving", + "1965-12-08": "Lady of Camarin Day", + "1965-12-24": "Christmas Day (Observed)", + "1965-12-25": "Christmas Day", + "1965-12-31": "New Year's Day (Observed)", + "1966-01-01": "New Year's Day", + "1966-02-22": "Washington's Birthday", + "1966-04-08": "Good Friday", + "1966-05-30": "Memorial Day", + "1966-07-04": "Independence Day", + "1966-07-21": "Liberation Day (Guam)", + "1966-09-05": "Labor Day", + "1966-10-12": "Columbus Day", + "1966-11-02": "All Souls' Day", + "1966-11-11": "Veterans Day", + "1966-11-24": "Thanksgiving", + "1966-12-08": "Lady of Camarin Day", + "1966-12-25": "Christmas Day", + "1966-12-26": "Christmas Day (Observed)", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day (Observed)", + "1967-02-22": "Washington's Birthday", + "1967-03-24": "Good Friday", + "1967-05-30": "Memorial Day", + "1967-07-04": "Independence Day", + "1967-07-21": "Liberation Day (Guam)", + "1967-09-04": "Labor Day", + "1967-10-12": "Columbus Day", + "1967-11-02": "All Souls' Day", + "1967-11-10": "Veterans Day (Observed)", + "1967-11-11": "Veterans Day", + "1967-11-23": "Thanksgiving", + "1967-12-08": "Lady of Camarin Day", + "1967-12-25": "Christmas Day", + "1968-01-01": "New Year's Day", + "1968-02-22": "Washington's Birthday", + "1968-04-12": "Good Friday", + "1968-05-30": "Memorial Day", + "1968-07-04": "Independence Day", + "1968-07-21": "Liberation Day (Guam)", + "1968-09-02": "Labor Day", + "1968-10-12": "Columbus Day", + "1968-11-02": "All Souls' Day", + "1968-11-11": "Veterans Day", + "1968-11-28": "Thanksgiving", + "1968-12-08": "Lady of Camarin Day", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-02-22": "Washington's Birthday", + "1969-04-04": "Good Friday", + "1969-05-30": "Memorial Day", + "1969-07-04": "Independence Day", + "1969-07-21": "Liberation Day (Guam)", + "1969-09-01": "Labor Day", + "1969-10-12": "Columbus Day", + "1969-11-02": "All Souls' Day", + "1969-11-11": "Veterans Day", + "1969-11-27": "Thanksgiving", + "1969-12-08": "Lady of Camarin Day", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-02-22": "Washington's Birthday", + "1970-03-02": "Guam Discovery Day", + "1970-03-27": "Good Friday", + "1970-05-30": "Memorial Day", + "1970-07-03": "Independence Day (Observed)", + "1970-07-04": "Independence Day", + "1970-07-21": "Liberation Day (Guam)", + "1970-09-07": "Labor Day", + "1970-10-12": "Columbus Day", + "1970-11-02": "All Souls' Day", + "1970-11-11": "Veterans Day", + "1970-11-26": "Thanksgiving", + "1970-12-08": "Lady of Camarin Day", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-02-15": "Washington's Birthday", + "1971-03-01": "Guam Discovery Day", + "1971-04-09": "Good Friday", + "1971-05-31": "Memorial Day", + "1971-07-04": "Independence Day", + "1971-07-05": "Independence Day (Observed)", + "1971-07-21": "Liberation Day (Guam)", + "1971-09-06": "Labor Day", + "1971-10-11": "Columbus Day", + "1971-10-25": "Veterans Day", + "1971-11-02": "All Souls' Day", + "1971-11-25": "Thanksgiving", + "1971-12-08": "Lady of Camarin Day", + "1971-12-24": "Christmas Day (Observed)", + "1971-12-25": "Christmas Day", + "1971-12-31": "New Year's Day (Observed)", + "1972-01-01": "New Year's Day", + "1972-02-21": "Washington's Birthday", + "1972-03-06": "Guam Discovery Day", + "1972-03-31": "Good Friday", + "1972-05-29": "Memorial Day", + "1972-07-04": "Independence Day", + "1972-07-21": "Liberation Day (Guam)", + "1972-09-04": "Labor Day", + "1972-10-09": "Columbus Day", + "1972-10-23": "Veterans Day", + "1972-11-02": "All Souls' Day", + "1972-11-23": "Thanksgiving", + "1972-12-08": "Lady of Camarin Day", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-02-19": "Washington's Birthday", + "1973-03-05": "Guam Discovery Day", + "1973-04-20": "Good Friday", + "1973-05-28": "Memorial Day", + "1973-07-04": "Independence Day", + "1973-07-21": "Liberation Day (Guam)", + "1973-09-03": "Labor Day", + "1973-10-08": "Columbus Day", + "1973-10-22": "Veterans Day", + "1973-11-02": "All Souls' Day", + "1973-11-22": "Thanksgiving", + "1973-12-08": "Lady of Camarin Day", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-02-18": "Washington's Birthday", + "1974-03-04": "Guam Discovery Day", + "1974-04-12": "Good Friday", + "1974-05-27": "Memorial Day", + "1974-07-04": "Independence Day", + "1974-07-21": "Liberation Day (Guam)", + "1974-09-02": "Labor Day", + "1974-10-14": "Columbus Day", + "1974-10-28": "Veterans Day", + "1974-11-02": "All Souls' Day", + "1974-11-28": "Thanksgiving", + "1974-12-08": "Lady of Camarin Day", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-02-17": "Washington's Birthday", + "1975-03-03": "Guam Discovery Day", + "1975-03-28": "Good Friday", + "1975-05-26": "Memorial Day", + "1975-07-04": "Independence Day", + "1975-07-21": "Liberation Day (Guam)", + "1975-09-01": "Labor Day", + "1975-10-13": "Columbus Day", + "1975-10-27": "Veterans Day", + "1975-11-02": "All Souls' Day", + "1975-11-27": "Thanksgiving", + "1975-12-08": "Lady of Camarin Day", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-02-16": "Washington's Birthday", + "1976-03-01": "Guam Discovery Day", + "1976-04-16": "Good Friday", + "1976-05-31": "Memorial Day", + "1976-07-04": "Independence Day", + "1976-07-05": "Independence Day (Observed)", + "1976-07-21": "Liberation Day (Guam)", + "1976-09-06": "Labor Day", + "1976-10-11": "Columbus Day", + "1976-10-25": "Veterans Day", + "1976-11-02": "All Souls' Day", + "1976-11-25": "Thanksgiving", + "1976-12-08": "Lady of Camarin Day", + "1976-12-24": "Christmas Day (Observed)", + "1976-12-25": "Christmas Day", + "1976-12-31": "New Year's Day (Observed)", + "1977-01-01": "New Year's Day", + "1977-02-21": "Washington's Birthday", + "1977-03-07": "Guam Discovery Day", + "1977-04-08": "Good Friday", + "1977-05-30": "Memorial Day", + "1977-07-04": "Independence Day", + "1977-07-21": "Liberation Day (Guam)", + "1977-09-05": "Labor Day", + "1977-10-10": "Columbus Day", + "1977-10-24": "Veterans Day", + "1977-11-02": "All Souls' Day", + "1977-11-24": "Thanksgiving", + "1977-12-08": "Lady of Camarin Day", + "1977-12-25": "Christmas Day", + "1977-12-26": "Christmas Day (Observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day (Observed)", + "1978-02-20": "Washington's Birthday", + "1978-03-06": "Guam Discovery Day", + "1978-03-24": "Good Friday", + "1978-05-29": "Memorial Day", + "1978-07-04": "Independence Day", + "1978-07-21": "Liberation Day (Guam)", + "1978-09-04": "Labor Day", + "1978-10-09": "Columbus Day", + "1978-11-02": "All Souls' Day", + "1978-11-10": "Veterans Day (Observed)", + "1978-11-11": "Veterans Day", + "1978-11-23": "Thanksgiving", + "1978-12-08": "Lady of Camarin Day", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-02-19": "Washington's Birthday", + "1979-03-05": "Guam Discovery Day", + "1979-04-13": "Good Friday", + "1979-05-28": "Memorial Day", + "1979-07-04": "Independence Day", + "1979-07-21": "Liberation Day (Guam)", + "1979-09-03": "Labor Day", + "1979-10-08": "Columbus Day", + "1979-11-02": "All Souls' Day", + "1979-11-11": "Veterans Day", + "1979-11-12": "Veterans Day (Observed)", + "1979-11-22": "Thanksgiving", + "1979-12-08": "Lady of Camarin Day", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-02-18": "Washington's Birthday", + "1980-03-03": "Guam Discovery Day", + "1980-04-04": "Good Friday", + "1980-05-26": "Memorial Day", + "1980-07-04": "Independence Day", + "1980-07-21": "Liberation Day (Guam)", + "1980-09-01": "Labor Day", + "1980-10-13": "Columbus Day", + "1980-11-02": "All Souls' Day", + "1980-11-11": "Veterans Day", + "1980-11-27": "Thanksgiving", + "1980-12-08": "Lady of Camarin Day", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-02-16": "Washington's Birthday", + "1981-03-02": "Guam Discovery Day", + "1981-04-17": "Good Friday", + "1981-05-25": "Memorial Day", + "1981-07-03": "Independence Day (Observed)", + "1981-07-04": "Independence Day", + "1981-07-21": "Liberation Day (Guam)", + "1981-09-07": "Labor Day", + "1981-10-12": "Columbus Day", + "1981-11-02": "All Souls' Day", + "1981-11-11": "Veterans Day", + "1981-11-26": "Thanksgiving", + "1981-12-08": "Lady of Camarin Day", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-02-15": "Washington's Birthday", + "1982-03-01": "Guam Discovery Day", + "1982-04-09": "Good Friday", + "1982-05-31": "Memorial Day", + "1982-07-04": "Independence Day", + "1982-07-05": "Independence Day (Observed)", + "1982-07-21": "Liberation Day (Guam)", + "1982-09-06": "Labor Day", + "1982-10-11": "Columbus Day", + "1982-11-02": "All Souls' Day", + "1982-11-11": "Veterans Day", + "1982-11-25": "Thanksgiving", + "1982-12-08": "Lady of Camarin Day", + "1982-12-24": "Christmas Day (Observed)", + "1982-12-25": "Christmas Day", + "1982-12-31": "New Year's Day (Observed)", + "1983-01-01": "New Year's Day", + "1983-02-21": "Washington's Birthday", + "1983-03-07": "Guam Discovery Day", + "1983-04-01": "Good Friday", + "1983-05-30": "Memorial Day", + "1983-07-04": "Independence Day", + "1983-07-21": "Liberation Day (Guam)", + "1983-09-05": "Labor Day", + "1983-10-10": "Columbus Day", + "1983-11-02": "All Souls' Day", + "1983-11-11": "Veterans Day", + "1983-11-24": "Thanksgiving", + "1983-12-08": "Lady of Camarin Day", + "1983-12-25": "Christmas Day", + "1983-12-26": "Christmas Day (Observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (Observed)", + "1984-02-20": "Washington's Birthday", + "1984-03-05": "Guam Discovery Day", + "1984-04-20": "Good Friday", + "1984-05-28": "Memorial Day", + "1984-07-04": "Independence Day", + "1984-07-21": "Liberation Day (Guam)", + "1984-09-03": "Labor Day", + "1984-10-08": "Columbus Day", + "1984-11-02": "All Souls' Day", + "1984-11-11": "Veterans Day", + "1984-11-12": "Veterans Day (Observed)", + "1984-11-22": "Thanksgiving", + "1984-12-08": "Lady of Camarin Day", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-02-18": "Washington's Birthday", + "1985-03-04": "Guam Discovery Day", + "1985-04-05": "Good Friday", + "1985-05-27": "Memorial Day", + "1985-07-04": "Independence Day", + "1985-07-21": "Liberation Day (Guam)", + "1985-09-02": "Labor Day", + "1985-10-14": "Columbus Day", + "1985-11-02": "All Souls' Day", + "1985-11-11": "Veterans Day", + "1985-11-28": "Thanksgiving", + "1985-12-08": "Lady of Camarin Day", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-01-20": "Martin Luther King Jr. Day", + "1986-02-17": "Washington's Birthday", + "1986-03-03": "Guam Discovery Day", + "1986-03-28": "Good Friday", + "1986-05-26": "Memorial Day", + "1986-07-04": "Independence Day", + "1986-07-21": "Liberation Day (Guam)", + "1986-09-01": "Labor Day", + "1986-10-13": "Columbus Day", + "1986-11-02": "All Souls' Day", + "1986-11-11": "Veterans Day", + "1986-11-27": "Thanksgiving", + "1986-12-08": "Lady of Camarin Day", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-01-19": "Martin Luther King Jr. Day", + "1987-02-16": "Washington's Birthday", + "1987-03-02": "Guam Discovery Day", + "1987-04-17": "Good Friday", + "1987-05-25": "Memorial Day", + "1987-07-03": "Independence Day (Observed)", + "1987-07-04": "Independence Day", + "1987-07-21": "Liberation Day (Guam)", + "1987-09-07": "Labor Day", + "1987-10-12": "Columbus Day", + "1987-11-02": "All Souls' Day", + "1987-11-11": "Veterans Day", + "1987-11-26": "Thanksgiving", + "1987-12-08": "Lady of Camarin Day", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-01-18": "Martin Luther King Jr. Day", + "1988-02-15": "Washington's Birthday", + "1988-03-07": "Guam Discovery Day", + "1988-04-01": "Good Friday", + "1988-05-30": "Memorial Day", + "1988-07-04": "Independence Day", + "1988-07-21": "Liberation Day (Guam)", + "1988-09-05": "Labor Day", + "1988-10-10": "Columbus Day", + "1988-11-02": "All Souls' Day", + "1988-11-11": "Veterans Day", + "1988-11-24": "Thanksgiving", + "1988-12-08": "Lady of Camarin Day", + "1988-12-25": "Christmas Day", + "1988-12-26": "Christmas Day (Observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (Observed)", + "1989-01-16": "Martin Luther King Jr. Day", + "1989-02-20": "Washington's Birthday", + "1989-03-06": "Guam Discovery Day", + "1989-03-24": "Good Friday", + "1989-05-29": "Memorial Day", + "1989-07-04": "Independence Day", + "1989-07-21": "Liberation Day (Guam)", + "1989-09-04": "Labor Day", + "1989-10-09": "Columbus Day", + "1989-11-02": "All Souls' Day", + "1989-11-10": "Veterans Day (Observed)", + "1989-11-11": "Veterans Day", + "1989-11-23": "Thanksgiving", + "1989-12-08": "Lady of Camarin Day", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-01-15": "Martin Luther King Jr. Day", + "1990-02-19": "Washington's Birthday", + "1990-03-05": "Guam Discovery Day", + "1990-04-13": "Good Friday", + "1990-05-28": "Memorial Day", + "1990-07-04": "Independence Day", + "1990-07-21": "Liberation Day (Guam)", + "1990-09-03": "Labor Day", + "1990-10-08": "Columbus Day", + "1990-11-02": "All Souls' Day", + "1990-11-11": "Veterans Day", + "1990-11-12": "Veterans Day (Observed)", + "1990-11-22": "Thanksgiving", + "1990-12-08": "Lady of Camarin Day", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-01-21": "Martin Luther King Jr. Day", + "1991-02-18": "Washington's Birthday", + "1991-03-04": "Guam Discovery Day", + "1991-03-29": "Good Friday", + "1991-05-27": "Memorial Day", + "1991-07-04": "Independence Day", + "1991-07-21": "Liberation Day (Guam)", + "1991-09-02": "Labor Day", + "1991-10-14": "Columbus Day", + "1991-11-02": "All Souls' Day", + "1991-11-11": "Veterans Day", + "1991-11-28": "Thanksgiving", + "1991-12-08": "Lady of Camarin Day", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-01-20": "Martin Luther King Jr. Day", + "1992-02-17": "Washington's Birthday", + "1992-03-02": "Guam Discovery Day", + "1992-04-17": "Good Friday", + "1992-05-25": "Memorial Day", + "1992-07-03": "Independence Day (Observed)", + "1992-07-04": "Independence Day", + "1992-07-21": "Liberation Day (Guam)", + "1992-09-07": "Labor Day", + "1992-10-12": "Columbus Day", + "1992-11-02": "All Souls' Day", + "1992-11-11": "Veterans Day", + "1992-11-26": "Thanksgiving", + "1992-12-08": "Lady of Camarin Day", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-01-18": "Martin Luther King Jr. Day", + "1993-02-15": "Washington's Birthday", + "1993-03-01": "Guam Discovery Day", + "1993-04-09": "Good Friday", + "1993-05-31": "Memorial Day", + "1993-07-04": "Independence Day", + "1993-07-05": "Independence Day (Observed)", + "1993-07-21": "Liberation Day (Guam)", + "1993-09-06": "Labor Day", + "1993-10-11": "Columbus Day", + "1993-11-02": "All Souls' Day", + "1993-11-11": "Veterans Day", + "1993-11-25": "Thanksgiving", + "1993-12-08": "Lady of Camarin Day", + "1993-12-24": "Christmas Day (Observed)", + "1993-12-25": "Christmas Day", + "1993-12-31": "New Year's Day (Observed)", + "1994-01-01": "New Year's Day", + "1994-01-17": "Martin Luther King Jr. Day", + "1994-02-21": "Washington's Birthday", + "1994-03-07": "Guam Discovery Day", + "1994-04-01": "Good Friday", + "1994-05-30": "Memorial Day", + "1994-07-04": "Independence Day", + "1994-07-21": "Liberation Day (Guam)", + "1994-09-05": "Labor Day", + "1994-10-10": "Columbus Day", + "1994-11-02": "All Souls' Day", + "1994-11-11": "Veterans Day", + "1994-11-24": "Thanksgiving", + "1994-12-08": "Lady of Camarin Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day (Observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (Observed)", + "1995-01-16": "Martin Luther King Jr. Day", + "1995-02-20": "Washington's Birthday", + "1995-03-06": "Guam Discovery Day", + "1995-04-14": "Good Friday", + "1995-05-29": "Memorial Day", + "1995-07-04": "Independence Day", + "1995-07-21": "Liberation Day (Guam)", + "1995-09-04": "Labor Day", + "1995-10-09": "Columbus Day", + "1995-11-02": "All Souls' Day", + "1995-11-10": "Veterans Day (Observed)", + "1995-11-11": "Veterans Day", + "1995-11-23": "Thanksgiving", + "1995-12-08": "Lady of Camarin Day", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-01-15": "Martin Luther King Jr. Day", + "1996-02-19": "Washington's Birthday", + "1996-03-04": "Guam Discovery Day", + "1996-04-05": "Good Friday", + "1996-05-27": "Memorial Day", + "1996-07-04": "Independence Day", + "1996-07-21": "Liberation Day (Guam)", + "1996-09-02": "Labor Day", + "1996-10-14": "Columbus Day", + "1996-11-02": "All Souls' Day", + "1996-11-11": "Veterans Day", + "1996-11-28": "Thanksgiving", + "1996-12-08": "Lady of Camarin Day", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-01-20": "Martin Luther King Jr. Day", + "1997-02-17": "Washington's Birthday", + "1997-03-03": "Guam Discovery Day", + "1997-03-28": "Good Friday", + "1997-05-26": "Memorial Day", + "1997-07-04": "Independence Day", + "1997-07-21": "Liberation Day (Guam)", + "1997-09-01": "Labor Day", + "1997-10-13": "Columbus Day", + "1997-11-02": "All Souls' Day", + "1997-11-11": "Veterans Day", + "1997-11-27": "Thanksgiving", + "1997-12-08": "Lady of Camarin Day", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-01-19": "Martin Luther King Jr. Day", + "1998-02-16": "Washington's Birthday", + "1998-03-02": "Guam Discovery Day", + "1998-04-10": "Good Friday", + "1998-05-25": "Memorial Day", + "1998-07-03": "Independence Day (Observed)", + "1998-07-04": "Independence Day", + "1998-07-21": "Liberation Day (Guam)", + "1998-09-07": "Labor Day", + "1998-10-12": "Columbus Day", + "1998-11-02": "All Souls' Day", + "1998-11-11": "Veterans Day", + "1998-11-26": "Thanksgiving", + "1998-12-08": "Lady of Camarin Day", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-01-18": "Martin Luther King Jr. Day", + "1999-02-15": "Washington's Birthday", + "1999-03-01": "Guam Discovery Day", + "1999-04-02": "Good Friday", + "1999-05-31": "Memorial Day", + "1999-07-04": "Independence Day", + "1999-07-05": "Independence Day (Observed)", + "1999-07-21": "Liberation Day (Guam)", + "1999-09-06": "Labor Day", + "1999-10-11": "Columbus Day", + "1999-11-02": "All Souls' Day", + "1999-11-11": "Veterans Day", + "1999-11-25": "Thanksgiving", + "1999-12-08": "Lady of Camarin Day", + "1999-12-24": "Christmas Day (Observed)", + "1999-12-25": "Christmas Day", + "1999-12-31": "New Year's Day (Observed)", + "2000-01-01": "New Year's Day", + "2000-01-17": "Martin Luther King Jr. Day", + "2000-02-21": "Washington's Birthday", + "2000-03-06": "Guam Discovery Day", + "2000-04-21": "Good Friday", + "2000-05-29": "Memorial Day", + "2000-07-04": "Independence Day", + "2000-07-21": "Liberation Day (Guam)", + "2000-09-04": "Labor Day", + "2000-10-09": "Columbus Day", + "2000-11-02": "All Souls' Day", + "2000-11-10": "Veterans Day (Observed)", + "2000-11-11": "Veterans Day", + "2000-11-23": "Thanksgiving", + "2000-12-08": "Lady of Camarin Day", + "2000-12-25": "Christmas Day", + "2001-01-01": "New Year's Day", + "2001-01-15": "Martin Luther King Jr. Day", + "2001-02-19": "Washington's Birthday", + "2001-03-05": "Guam Discovery Day", + "2001-04-13": "Good Friday", + "2001-05-28": "Memorial Day", + "2001-07-04": "Independence Day", + "2001-07-21": "Liberation Day (Guam)", + "2001-09-03": "Labor Day", + "2001-10-08": "Columbus Day", + "2001-11-02": "All Souls' Day", + "2001-11-11": "Veterans Day", + "2001-11-12": "Veterans Day (Observed)", + "2001-11-22": "Thanksgiving", + "2001-12-08": "Lady of Camarin Day", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-01-21": "Martin Luther King Jr. Day", + "2002-02-18": "Washington's Birthday", + "2002-03-04": "Guam Discovery Day", + "2002-03-29": "Good Friday", + "2002-05-27": "Memorial Day", + "2002-07-04": "Independence Day", + "2002-07-21": "Liberation Day (Guam)", + "2002-09-02": "Labor Day", + "2002-10-14": "Columbus Day", + "2002-11-02": "All Souls' Day", + "2002-11-11": "Veterans Day", + "2002-11-28": "Thanksgiving", + "2002-12-08": "Lady of Camarin Day", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-01-20": "Martin Luther King Jr. Day", + "2003-02-17": "Washington's Birthday", + "2003-03-03": "Guam Discovery Day", + "2003-04-18": "Good Friday", + "2003-05-26": "Memorial Day", + "2003-07-04": "Independence Day", + "2003-07-21": "Liberation Day (Guam)", + "2003-09-01": "Labor Day", + "2003-10-13": "Columbus Day", + "2003-11-02": "All Souls' Day", + "2003-11-11": "Veterans Day", + "2003-11-27": "Thanksgiving", + "2003-12-08": "Lady of Camarin Day", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-01-19": "Martin Luther King Jr. Day", + "2004-02-16": "Washington's Birthday", + "2004-03-01": "Guam Discovery Day", + "2004-04-09": "Good Friday", + "2004-05-31": "Memorial Day", + "2004-07-04": "Independence Day", + "2004-07-05": "Independence Day (Observed)", + "2004-07-21": "Liberation Day (Guam)", + "2004-09-06": "Labor Day", + "2004-10-11": "Columbus Day", + "2004-11-02": "All Souls' Day", + "2004-11-11": "Veterans Day", + "2004-11-25": "Thanksgiving", + "2004-12-08": "Lady of Camarin Day", + "2004-12-24": "Christmas Day (Observed)", + "2004-12-25": "Christmas Day", + "2004-12-31": "New Year's Day (Observed)", + "2005-01-01": "New Year's Day", + "2005-01-17": "Martin Luther King Jr. Day", + "2005-02-21": "Washington's Birthday", + "2005-03-07": "Guam Discovery Day", + "2005-03-25": "Good Friday", + "2005-05-30": "Memorial Day", + "2005-07-04": "Independence Day", + "2005-07-21": "Liberation Day (Guam)", + "2005-09-05": "Labor Day", + "2005-10-10": "Columbus Day", + "2005-11-02": "All Souls' Day", + "2005-11-11": "Veterans Day", + "2005-11-24": "Thanksgiving", + "2005-12-08": "Lady of Camarin Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day (Observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (Observed)", + "2006-01-16": "Martin Luther King Jr. Day", + "2006-02-20": "Washington's Birthday", + "2006-03-06": "Guam Discovery Day", + "2006-04-14": "Good Friday", + "2006-05-29": "Memorial Day", + "2006-07-04": "Independence Day", + "2006-07-21": "Liberation Day (Guam)", + "2006-09-04": "Labor Day", + "2006-10-09": "Columbus Day", + "2006-11-02": "All Souls' Day", + "2006-11-10": "Veterans Day (Observed)", + "2006-11-11": "Veterans Day", + "2006-11-23": "Thanksgiving", + "2006-12-08": "Lady of Camarin Day", + "2006-12-25": "Christmas Day", + "2007-01-01": "New Year's Day", + "2007-01-15": "Martin Luther King Jr. Day", + "2007-02-19": "Washington's Birthday", + "2007-03-05": "Guam Discovery Day", + "2007-04-06": "Good Friday", + "2007-05-28": "Memorial Day", + "2007-07-04": "Independence Day", + "2007-07-21": "Liberation Day (Guam)", + "2007-09-03": "Labor Day", + "2007-10-08": "Columbus Day", + "2007-11-02": "All Souls' Day", + "2007-11-11": "Veterans Day", + "2007-11-12": "Veterans Day (Observed)", + "2007-11-22": "Thanksgiving", + "2007-12-08": "Lady of Camarin Day", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-01-21": "Martin Luther King Jr. Day", + "2008-02-18": "Washington's Birthday", + "2008-03-03": "Guam Discovery Day", + "2008-03-21": "Good Friday", + "2008-05-26": "Memorial Day", + "2008-07-04": "Independence Day", + "2008-07-21": "Liberation Day (Guam)", + "2008-09-01": "Labor Day", + "2008-10-13": "Columbus Day", + "2008-11-02": "All Souls' Day", + "2008-11-11": "Veterans Day", + "2008-11-27": "Thanksgiving", + "2008-12-08": "Lady of Camarin Day", + "2008-12-25": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-01-19": "Martin Luther King Jr. Day", + "2009-02-16": "Washington's Birthday", + "2009-03-02": "Guam Discovery Day", + "2009-04-10": "Good Friday", + "2009-05-25": "Memorial Day", + "2009-07-03": "Independence Day (Observed)", + "2009-07-04": "Independence Day", + "2009-07-21": "Liberation Day (Guam)", + "2009-09-07": "Labor Day", + "2009-10-12": "Columbus Day", + "2009-11-02": "All Souls' Day", + "2009-11-11": "Veterans Day", + "2009-11-26": "Thanksgiving", + "2009-12-08": "Lady of Camarin Day", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-01-18": "Martin Luther King Jr. Day", + "2010-02-15": "Washington's Birthday", + "2010-03-01": "Guam Discovery Day", + "2010-04-02": "Good Friday", + "2010-05-31": "Memorial Day", + "2010-07-04": "Independence Day", + "2010-07-05": "Independence Day (Observed)", + "2010-07-21": "Liberation Day (Guam)", + "2010-09-06": "Labor Day", + "2010-10-11": "Columbus Day", + "2010-11-02": "All Souls' Day", + "2010-11-11": "Veterans Day", + "2010-11-25": "Thanksgiving", + "2010-12-08": "Lady of Camarin Day", + "2010-12-24": "Christmas Day (Observed)", + "2010-12-25": "Christmas Day", + "2010-12-31": "New Year's Day (Observed)", + "2011-01-01": "New Year's Day", + "2011-01-17": "Martin Luther King Jr. Day", + "2011-02-21": "Washington's Birthday", + "2011-03-07": "Guam Discovery Day", + "2011-04-22": "Good Friday", + "2011-05-30": "Memorial Day", + "2011-07-04": "Independence Day", + "2011-07-21": "Liberation Day (Guam)", + "2011-09-05": "Labor Day", + "2011-10-10": "Columbus Day", + "2011-11-02": "All Souls' Day", + "2011-11-11": "Veterans Day", + "2011-11-24": "Thanksgiving", + "2011-12-08": "Lady of Camarin Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day (Observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (Observed)", + "2012-01-16": "Martin Luther King Jr. Day", + "2012-02-20": "Washington's Birthday", + "2012-03-05": "Guam Discovery Day", + "2012-04-06": "Good Friday", + "2012-05-28": "Memorial Day", + "2012-07-04": "Independence Day", + "2012-07-21": "Liberation Day (Guam)", + "2012-09-03": "Labor Day", + "2012-10-08": "Columbus Day", + "2012-11-02": "All Souls' Day", + "2012-11-11": "Veterans Day", + "2012-11-12": "Veterans Day (Observed)", + "2012-11-22": "Thanksgiving", + "2012-12-08": "Lady of Camarin Day", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-01-21": "Martin Luther King Jr. Day", + "2013-02-18": "Washington's Birthday", + "2013-03-04": "Guam Discovery Day", + "2013-03-29": "Good Friday", + "2013-05-27": "Memorial Day", + "2013-07-04": "Independence Day", + "2013-07-21": "Liberation Day (Guam)", + "2013-09-02": "Labor Day", + "2013-10-14": "Columbus Day", + "2013-11-02": "All Souls' Day", + "2013-11-11": "Veterans Day", + "2013-11-28": "Thanksgiving", + "2013-12-08": "Lady of Camarin Day", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-20": "Martin Luther King Jr. Day", + "2014-02-17": "Washington's Birthday", + "2014-03-03": "Guam Discovery Day", + "2014-04-18": "Good Friday", + "2014-05-26": "Memorial Day", + "2014-07-04": "Independence Day", + "2014-07-21": "Liberation Day (Guam)", + "2014-09-01": "Labor Day", + "2014-10-13": "Columbus Day", + "2014-11-02": "All Souls' Day", + "2014-11-11": "Veterans Day", + "2014-11-27": "Thanksgiving", + "2014-12-08": "Lady of Camarin Day", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-01-19": "Martin Luther King Jr. Day", + "2015-02-16": "Washington's Birthday", + "2015-03-02": "Guam Discovery Day", + "2015-04-03": "Good Friday", + "2015-05-25": "Memorial Day", + "2015-07-03": "Independence Day (Observed)", + "2015-07-04": "Independence Day", + "2015-07-21": "Liberation Day (Guam)", + "2015-09-07": "Labor Day", + "2015-10-12": "Columbus Day", + "2015-11-02": "All Souls' Day", + "2015-11-11": "Veterans Day", + "2015-11-26": "Thanksgiving", + "2015-12-08": "Lady of Camarin Day", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-01-18": "Martin Luther King Jr. Day", + "2016-02-15": "Washington's Birthday", + "2016-03-07": "Guam Discovery Day", + "2016-03-25": "Good Friday", + "2016-05-30": "Memorial Day", + "2016-07-04": "Independence Day", + "2016-07-21": "Liberation Day (Guam)", + "2016-09-05": "Labor Day", + "2016-10-10": "Columbus Day", + "2016-11-02": "All Souls' Day", + "2016-11-11": "Veterans Day", + "2016-11-24": "Thanksgiving", + "2016-12-08": "Lady of Camarin Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day (Observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (Observed)", + "2017-01-16": "Martin Luther King Jr. Day", + "2017-02-20": "Washington's Birthday", + "2017-03-06": "Guam Discovery Day", + "2017-04-14": "Good Friday", + "2017-05-29": "Memorial Day", + "2017-07-04": "Independence Day", + "2017-07-21": "Liberation Day (Guam)", + "2017-09-04": "Labor Day", + "2017-10-09": "Columbus Day", + "2017-11-02": "All Souls' Day", + "2017-11-10": "Veterans Day (Observed)", + "2017-11-11": "Veterans Day", + "2017-11-23": "Thanksgiving", + "2017-12-08": "Lady of Camarin Day", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-01-15": "Martin Luther King Jr. Day", + "2018-02-19": "Washington's Birthday", + "2018-03-05": "Guam Discovery Day", + "2018-03-30": "Good Friday", + "2018-05-28": "Memorial Day", + "2018-07-04": "Independence Day", + "2018-07-21": "Liberation Day (Guam)", + "2018-09-03": "Labor Day", + "2018-10-08": "Columbus Day", + "2018-11-02": "All Souls' Day", + "2018-11-11": "Veterans Day", + "2018-11-12": "Veterans Day (Observed)", + "2018-11-22": "Thanksgiving", + "2018-12-08": "Lady of Camarin Day", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-01-21": "Martin Luther King Jr. Day", + "2019-02-18": "Washington's Birthday", + "2019-03-04": "Guam Discovery Day", + "2019-04-19": "Good Friday", + "2019-05-27": "Memorial Day", + "2019-07-04": "Independence Day", + "2019-07-21": "Liberation Day (Guam)", + "2019-09-02": "Labor Day", + "2019-10-14": "Columbus Day", + "2019-11-02": "All Souls' Day", + "2019-11-11": "Veterans Day", + "2019-11-28": "Thanksgiving", + "2019-12-08": "Lady of Camarin Day", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-01-20": "Martin Luther King Jr. Day", + "2020-02-17": "Washington's Birthday", + "2020-03-02": "Guam Discovery Day", + "2020-04-10": "Good Friday", + "2020-05-25": "Memorial Day", + "2020-07-03": "Independence Day (Observed)", + "2020-07-04": "Independence Day", + "2020-07-21": "Liberation Day (Guam)", + "2020-09-07": "Labor Day", + "2020-10-12": "Columbus Day", + "2020-11-02": "All Souls' Day", + "2020-11-11": "Veterans Day", + "2020-11-26": "Thanksgiving", + "2020-12-08": "Lady of Camarin Day", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-01-18": "Martin Luther King Jr. Day", + "2021-02-15": "Washington's Birthday", + "2021-03-01": "Guam Discovery Day", + "2021-04-02": "Good Friday", + "2021-05-31": "Memorial Day", + "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-19": "Juneteenth National Independence Day", + "2021-07-04": "Independence Day", + "2021-07-05": "Independence Day (Observed)", + "2021-07-21": "Liberation Day (Guam)", + "2021-09-06": "Labor Day", + "2021-10-11": "Columbus Day", + "2021-11-02": "All Souls' Day", + "2021-11-11": "Veterans Day", + "2021-11-25": "Thanksgiving", + "2021-12-08": "Lady of Camarin Day", + "2021-12-24": "Christmas Day (Observed)", + "2021-12-25": "Christmas Day", + "2021-12-31": "New Year's Day (Observed)", + "2022-01-01": "New Year's Day", + "2022-01-17": "Martin Luther King Jr. Day", + "2022-02-21": "Washington's Birthday", + "2022-03-07": "Guam Discovery Day", + "2022-04-15": "Good Friday", + "2022-05-30": "Memorial Day", + "2022-06-19": "Juneteenth National Independence Day", + "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-07-04": "Independence Day", + "2022-07-21": "Liberation Day (Guam)", + "2022-09-05": "Labor Day", + "2022-10-10": "Columbus Day", + "2022-11-02": "All Souls' Day", + "2022-11-11": "Veterans Day", + "2022-11-24": "Thanksgiving", + "2022-12-08": "Lady of Camarin Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day (Observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (Observed)", + "2023-01-16": "Martin Luther King Jr. Day", + "2023-02-20": "Washington's Birthday", + "2023-03-06": "Guam Discovery Day", + "2023-04-07": "Good Friday", + "2023-05-29": "Memorial Day", + "2023-06-19": "Juneteenth National Independence Day", + "2023-07-04": "Independence Day", + "2023-07-21": "Liberation Day (Guam)", + "2023-09-04": "Labor Day", + "2023-10-09": "Columbus Day", + "2023-11-02": "All Souls' Day", + "2023-11-10": "Veterans Day (Observed)", + "2023-11-11": "Veterans Day", + "2023-11-23": "Thanksgiving", + "2023-12-08": "Lady of Camarin Day", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-01-15": "Martin Luther King Jr. Day", + "2024-02-19": "Washington's Birthday", + "2024-03-04": "Guam Discovery Day", + "2024-03-29": "Good Friday", + "2024-05-27": "Memorial Day", + "2024-06-19": "Juneteenth National Independence Day", + "2024-07-04": "Independence Day", + "2024-07-21": "Liberation Day (Guam)", + "2024-09-02": "Labor Day", + "2024-10-14": "Columbus Day", + "2024-11-02": "All Souls' Day", + "2024-11-11": "Veterans Day", + "2024-11-28": "Thanksgiving", + "2024-12-08": "Lady of Camarin Day", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-01-20": "Martin Luther King Jr. Day", + "2025-02-17": "Washington's Birthday", + "2025-03-03": "Guam Discovery Day", + "2025-04-18": "Good Friday", + "2025-05-26": "Memorial Day", + "2025-06-19": "Juneteenth National Independence Day", + "2025-07-04": "Independence Day", + "2025-07-21": "Liberation Day (Guam)", + "2025-09-01": "Labor Day", + "2025-10-13": "Columbus Day", + "2025-11-02": "All Souls' Day", + "2025-11-11": "Veterans Day", + "2025-11-27": "Thanksgiving", + "2025-12-08": "Lady of Camarin Day", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-01-19": "Martin Luther King Jr. Day", + "2026-02-16": "Washington's Birthday", + "2026-03-02": "Guam Discovery Day", + "2026-04-03": "Good Friday", + "2026-05-25": "Memorial Day", + "2026-06-19": "Juneteenth National Independence Day", + "2026-07-03": "Independence Day (Observed)", + "2026-07-04": "Independence Day", + "2026-07-21": "Liberation Day (Guam)", + "2026-09-07": "Labor Day", + "2026-10-12": "Columbus Day", + "2026-11-02": "All Souls' Day", + "2026-11-11": "Veterans Day", + "2026-11-26": "Thanksgiving", + "2026-12-08": "Lady of Camarin Day", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-01-18": "Martin Luther King Jr. Day", + "2027-02-15": "Washington's Birthday", + "2027-03-01": "Guam Discovery Day", + "2027-03-26": "Good Friday", + "2027-05-31": "Memorial Day", + "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-19": "Juneteenth National Independence Day", + "2027-07-04": "Independence Day", + "2027-07-05": "Independence Day (Observed)", + "2027-07-21": "Liberation Day (Guam)", + "2027-09-06": "Labor Day", + "2027-10-11": "Columbus Day", + "2027-11-02": "All Souls' Day", + "2027-11-11": "Veterans Day", + "2027-11-25": "Thanksgiving", + "2027-12-08": "Lady of Camarin Day", + "2027-12-24": "Christmas Day (Observed)", + "2027-12-25": "Christmas Day", + "2027-12-31": "New Year's Day (Observed)", + "2028-01-01": "New Year's Day", + "2028-01-17": "Martin Luther King Jr. Day", + "2028-02-21": "Washington's Birthday", + "2028-03-06": "Guam Discovery Day", + "2028-04-14": "Good Friday", + "2028-05-29": "Memorial Day", + "2028-06-19": "Juneteenth National Independence Day", + "2028-07-04": "Independence Day", + "2028-07-21": "Liberation Day (Guam)", + "2028-09-04": "Labor Day", + "2028-10-09": "Columbus Day", + "2028-11-02": "All Souls' Day", + "2028-11-10": "Veterans Day (Observed)", + "2028-11-11": "Veterans Day", + "2028-11-23": "Thanksgiving", + "2028-12-08": "Lady of Camarin Day", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-01-15": "Martin Luther King Jr. Day", + "2029-02-19": "Washington's Birthday", + "2029-03-05": "Guam Discovery Day", + "2029-03-30": "Good Friday", + "2029-05-28": "Memorial Day", + "2029-06-19": "Juneteenth National Independence Day", + "2029-07-04": "Independence Day", + "2029-07-21": "Liberation Day (Guam)", + "2029-09-03": "Labor Day", + "2029-10-08": "Columbus Day", + "2029-11-02": "All Souls' Day", + "2029-11-11": "Veterans Day", + "2029-11-12": "Veterans Day (Observed)", + "2029-11-22": "Thanksgiving", + "2029-12-08": "Lady of Camarin Day", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-01-21": "Martin Luther King Jr. Day", + "2030-02-18": "Washington's Birthday", + "2030-03-04": "Guam Discovery Day", + "2030-04-19": "Good Friday", + "2030-05-27": "Memorial Day", + "2030-06-19": "Juneteenth National Independence Day", + "2030-07-04": "Independence Day", + "2030-07-21": "Liberation Day (Guam)", + "2030-09-02": "Labor Day", + "2030-10-14": "Columbus Day", + "2030-11-02": "All Souls' Day", + "2030-11-11": "Veterans Day", + "2030-11-28": "Thanksgiving", + "2030-12-08": "Lady of Camarin Day", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-01-20": "Martin Luther King Jr. Day", + "2031-02-17": "Washington's Birthday", + "2031-03-03": "Guam Discovery Day", + "2031-04-11": "Good Friday", + "2031-05-26": "Memorial Day", + "2031-06-19": "Juneteenth National Independence Day", + "2031-07-04": "Independence Day", + "2031-07-21": "Liberation Day (Guam)", + "2031-09-01": "Labor Day", + "2031-10-13": "Columbus Day", + "2031-11-02": "All Souls' Day", + "2031-11-11": "Veterans Day", + "2031-11-27": "Thanksgiving", + "2031-12-08": "Lady of Camarin Day", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-01-19": "Martin Luther King Jr. Day", + "2032-02-16": "Washington's Birthday", + "2032-03-01": "Guam Discovery Day", + "2032-03-26": "Good Friday", + "2032-05-31": "Memorial Day", + "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-19": "Juneteenth National Independence Day", + "2032-07-04": "Independence Day", + "2032-07-05": "Independence Day (Observed)", + "2032-07-21": "Liberation Day (Guam)", + "2032-09-06": "Labor Day", + "2032-10-11": "Columbus Day", + "2032-11-02": "All Souls' Day", + "2032-11-11": "Veterans Day", + "2032-11-25": "Thanksgiving", + "2032-12-08": "Lady of Camarin Day", + "2032-12-24": "Christmas Day (Observed)", + "2032-12-25": "Christmas Day", + "2032-12-31": "New Year's Day (Observed)", + "2033-01-01": "New Year's Day", + "2033-01-17": "Martin Luther King Jr. Day", + "2033-02-21": "Washington's Birthday", + "2033-03-07": "Guam Discovery Day", + "2033-04-15": "Good Friday", + "2033-05-30": "Memorial Day", + "2033-06-19": "Juneteenth National Independence Day", + "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-07-04": "Independence Day", + "2033-07-21": "Liberation Day (Guam)", + "2033-09-05": "Labor Day", + "2033-10-10": "Columbus Day", + "2033-11-02": "All Souls' Day", + "2033-11-11": "Veterans Day", + "2033-11-24": "Thanksgiving", + "2033-12-08": "Lady of Camarin Day", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day (Observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-01-16": "Martin Luther King Jr. Day", + "2034-02-20": "Washington's Birthday", + "2034-03-06": "Guam Discovery Day", + "2034-04-07": "Good Friday", + "2034-05-29": "Memorial Day", + "2034-06-19": "Juneteenth National Independence Day", + "2034-07-04": "Independence Day", + "2034-07-21": "Liberation Day (Guam)", + "2034-09-04": "Labor Day", + "2034-10-09": "Columbus Day", + "2034-11-02": "All Souls' Day", + "2034-11-10": "Veterans Day (Observed)", + "2034-11-11": "Veterans Day", + "2034-11-23": "Thanksgiving", + "2034-12-08": "Lady of Camarin Day", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-01-15": "Martin Luther King Jr. Day", + "2035-02-19": "Washington's Birthday", + "2035-03-05": "Guam Discovery Day", + "2035-03-23": "Good Friday", + "2035-05-28": "Memorial Day", + "2035-06-19": "Juneteenth National Independence Day", + "2035-07-04": "Independence Day", + "2035-07-21": "Liberation Day (Guam)", + "2035-09-03": "Labor Day", + "2035-10-08": "Columbus Day", + "2035-11-02": "All Souls' Day", + "2035-11-11": "Veterans Day", + "2035-11-12": "Veterans Day (Observed)", + "2035-11-22": "Thanksgiving", + "2035-12-08": "Lady of Camarin Day", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-01-21": "Martin Luther King Jr. Day", + "2036-02-18": "Washington's Birthday", + "2036-03-03": "Guam Discovery Day", + "2036-04-11": "Good Friday", + "2036-05-26": "Memorial Day", + "2036-06-19": "Juneteenth National Independence Day", + "2036-07-04": "Independence Day", + "2036-07-21": "Liberation Day (Guam)", + "2036-09-01": "Labor Day", + "2036-10-13": "Columbus Day", + "2036-11-02": "All Souls' Day", + "2036-11-11": "Veterans Day", + "2036-11-27": "Thanksgiving", + "2036-12-08": "Lady of Camarin Day", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-19": "Martin Luther King Jr. Day", + "2037-02-16": "Washington's Birthday", + "2037-03-02": "Guam Discovery Day", + "2037-04-03": "Good Friday", + "2037-05-25": "Memorial Day", + "2037-06-19": "Juneteenth National Independence Day", + "2037-07-03": "Independence Day (Observed)", + "2037-07-04": "Independence Day", + "2037-07-21": "Liberation Day (Guam)", + "2037-09-07": "Labor Day", + "2037-10-12": "Columbus Day", + "2037-11-02": "All Souls' Day", + "2037-11-11": "Veterans Day", + "2037-11-26": "Thanksgiving", + "2037-12-08": "Lady of Camarin Day", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-01-18": "Martin Luther King Jr. Day", + "2038-02-15": "Washington's Birthday", + "2038-03-01": "Guam Discovery Day", + "2038-04-23": "Good Friday", + "2038-05-31": "Memorial Day", + "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-19": "Juneteenth National Independence Day", + "2038-07-04": "Independence Day", + "2038-07-05": "Independence Day (Observed)", + "2038-07-21": "Liberation Day (Guam)", + "2038-09-06": "Labor Day", + "2038-10-11": "Columbus Day", + "2038-11-02": "All Souls' Day", + "2038-11-11": "Veterans Day", + "2038-11-25": "Thanksgiving", + "2038-12-08": "Lady of Camarin Day", + "2038-12-24": "Christmas Day (Observed)", + "2038-12-25": "Christmas Day", + "2038-12-31": "New Year's Day (Observed)", + "2039-01-01": "New Year's Day", + "2039-01-17": "Martin Luther King Jr. Day", + "2039-02-21": "Washington's Birthday", + "2039-03-07": "Guam Discovery Day", + "2039-04-08": "Good Friday", + "2039-05-30": "Memorial Day", + "2039-06-19": "Juneteenth National Independence Day", + "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-07-04": "Independence Day", + "2039-07-21": "Liberation Day (Guam)", + "2039-09-05": "Labor Day", + "2039-10-10": "Columbus Day", + "2039-11-02": "All Souls' Day", + "2039-11-11": "Veterans Day", + "2039-11-24": "Thanksgiving", + "2039-12-08": "Lady of Camarin Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Christmas Day (Observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (Observed)", + "2040-01-16": "Martin Luther King Jr. Day", + "2040-02-20": "Washington's Birthday", + "2040-03-05": "Guam Discovery Day", + "2040-03-30": "Good Friday", + "2040-05-28": "Memorial Day", + "2040-06-19": "Juneteenth National Independence Day", + "2040-07-04": "Independence Day", + "2040-07-21": "Liberation Day (Guam)", + "2040-09-03": "Labor Day", + "2040-10-08": "Columbus Day", + "2040-11-02": "All Souls' Day", + "2040-11-11": "Veterans Day", + "2040-11-12": "Veterans Day (Observed)", + "2040-11-22": "Thanksgiving", + "2040-12-08": "Lady of Camarin Day", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-01-21": "Martin Luther King Jr. Day", + "2041-02-18": "Washington's Birthday", + "2041-03-04": "Guam Discovery Day", + "2041-04-19": "Good Friday", + "2041-05-27": "Memorial Day", + "2041-06-19": "Juneteenth National Independence Day", + "2041-07-04": "Independence Day", + "2041-07-21": "Liberation Day (Guam)", + "2041-09-02": "Labor Day", + "2041-10-14": "Columbus Day", + "2041-11-02": "All Souls' Day", + "2041-11-11": "Veterans Day", + "2041-11-28": "Thanksgiving", + "2041-12-08": "Lady of Camarin Day", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-01-20": "Martin Luther King Jr. Day", + "2042-02-17": "Washington's Birthday", + "2042-03-03": "Guam Discovery Day", + "2042-04-04": "Good Friday", + "2042-05-26": "Memorial Day", + "2042-06-19": "Juneteenth National Independence Day", + "2042-07-04": "Independence Day", + "2042-07-21": "Liberation Day (Guam)", + "2042-09-01": "Labor Day", + "2042-10-13": "Columbus Day", + "2042-11-02": "All Souls' Day", + "2042-11-11": "Veterans Day", + "2042-11-27": "Thanksgiving", + "2042-12-08": "Lady of Camarin Day", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-01-19": "Martin Luther King Jr. Day", + "2043-02-16": "Washington's Birthday", + "2043-03-02": "Guam Discovery Day", + "2043-03-27": "Good Friday", + "2043-05-25": "Memorial Day", + "2043-06-19": "Juneteenth National Independence Day", + "2043-07-03": "Independence Day (Observed)", + "2043-07-04": "Independence Day", + "2043-07-21": "Liberation Day (Guam)", + "2043-09-07": "Labor Day", + "2043-10-12": "Columbus Day", + "2043-11-02": "All Souls' Day", + "2043-11-11": "Veterans Day", + "2043-11-26": "Thanksgiving", + "2043-12-08": "Lady of Camarin Day", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-01-18": "Martin Luther King Jr. Day", + "2044-02-15": "Washington's Birthday", + "2044-03-07": "Guam Discovery Day", + "2044-04-15": "Good Friday", + "2044-05-30": "Memorial Day", + "2044-06-19": "Juneteenth National Independence Day", + "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-07-04": "Independence Day", + "2044-07-21": "Liberation Day (Guam)", + "2044-09-05": "Labor Day", + "2044-10-10": "Columbus Day", + "2044-11-02": "All Souls' Day", + "2044-11-11": "Veterans Day", + "2044-11-24": "Thanksgiving", + "2044-12-08": "Lady of Camarin Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day (Observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (Observed)", + "2045-01-16": "Martin Luther King Jr. Day", + "2045-02-20": "Washington's Birthday", + "2045-03-06": "Guam Discovery Day", + "2045-04-07": "Good Friday", + "2045-05-29": "Memorial Day", + "2045-06-19": "Juneteenth National Independence Day", + "2045-07-04": "Independence Day", + "2045-07-21": "Liberation Day (Guam)", + "2045-09-04": "Labor Day", + "2045-10-09": "Columbus Day", + "2045-11-02": "All Souls' Day", + "2045-11-10": "Veterans Day (Observed)", + "2045-11-11": "Veterans Day", + "2045-11-23": "Thanksgiving", + "2045-12-08": "Lady of Camarin Day", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-01-15": "Martin Luther King Jr. Day", + "2046-02-19": "Washington's Birthday", + "2046-03-05": "Guam Discovery Day", + "2046-03-23": "Good Friday", + "2046-05-28": "Memorial Day", + "2046-06-19": "Juneteenth National Independence Day", + "2046-07-04": "Independence Day", + "2046-07-21": "Liberation Day (Guam)", + "2046-09-03": "Labor Day", + "2046-10-08": "Columbus Day", + "2046-11-02": "All Souls' Day", + "2046-11-11": "Veterans Day", + "2046-11-12": "Veterans Day (Observed)", + "2046-11-22": "Thanksgiving", + "2046-12-08": "Lady of Camarin Day", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-21": "Martin Luther King Jr. Day", + "2047-02-18": "Washington's Birthday", + "2047-03-04": "Guam Discovery Day", + "2047-04-12": "Good Friday", + "2047-05-27": "Memorial Day", + "2047-06-19": "Juneteenth National Independence Day", + "2047-07-04": "Independence Day", + "2047-07-21": "Liberation Day (Guam)", + "2047-09-02": "Labor Day", + "2047-10-14": "Columbus Day", + "2047-11-02": "All Souls' Day", + "2047-11-11": "Veterans Day", + "2047-11-28": "Thanksgiving", + "2047-12-08": "Lady of Camarin Day", + "2047-12-25": "Christmas Day", + "2048-01-01": "New Year's Day", + "2048-01-20": "Martin Luther King Jr. Day", + "2048-02-17": "Washington's Birthday", + "2048-03-02": "Guam Discovery Day", + "2048-04-03": "Good Friday", + "2048-05-25": "Memorial Day", + "2048-06-19": "Juneteenth National Independence Day", + "2048-07-03": "Independence Day (Observed)", + "2048-07-04": "Independence Day", + "2048-07-21": "Liberation Day (Guam)", + "2048-09-07": "Labor Day", + "2048-10-12": "Columbus Day", + "2048-11-02": "All Souls' Day", + "2048-11-11": "Veterans Day", + "2048-11-26": "Thanksgiving", + "2048-12-08": "Lady of Camarin Day", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-01-18": "Martin Luther King Jr. Day", + "2049-02-15": "Washington's Birthday", + "2049-03-01": "Guam Discovery Day", + "2049-04-16": "Good Friday", + "2049-05-31": "Memorial Day", + "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-19": "Juneteenth National Independence Day", + "2049-07-04": "Independence Day", + "2049-07-05": "Independence Day (Observed)", + "2049-07-21": "Liberation Day (Guam)", + "2049-09-06": "Labor Day", + "2049-10-11": "Columbus Day", + "2049-11-02": "All Souls' Day", + "2049-11-11": "Veterans Day", + "2049-11-25": "Thanksgiving", + "2049-12-08": "Lady of Camarin Day", + "2049-12-24": "Christmas Day (Observed)", + "2049-12-25": "Christmas Day", + "2049-12-31": "New Year's Day (Observed)", + "2050-01-01": "New Year's Day", + "2050-01-17": "Martin Luther King Jr. Day", + "2050-02-21": "Washington's Birthday", + "2050-03-07": "Guam Discovery Day", + "2050-04-08": "Good Friday", + "2050-05-30": "Memorial Day", + "2050-06-19": "Juneteenth National Independence Day", + "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-07-04": "Independence Day", + "2050-07-21": "Liberation Day (Guam)", + "2050-09-05": "Labor Day", + "2050-10-10": "Columbus Day", + "2050-11-02": "All Souls' Day", + "2050-11-11": "Veterans Day", + "2050-11-24": "Thanksgiving", + "2050-12-08": "Lady of Camarin Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day (Observed)" +} diff --git a/snapshots/countries/HK.json b/snapshots/countries/HK.json new file mode 100644 index 000000000..933af641c --- /dev/null +++ b/snapshots/countries/HK.json @@ -0,0 +1,1666 @@ +{ + "1950-01-02": "The day following The first day of January", + "1950-02-17": "Lunar New Year's Day", + "1950-02-18": "The second day of Lunar New Year", + "1950-02-20": "The fourth day of Lunar New Year", + "1950-04-05": "Ching Ming Festival", + "1950-04-07": "Good Friday", + "1950-04-08": "The day following Good Friday", + "1950-04-10": "Easter Monday", + "1950-06-19": "Tuen Ng Festival", + "1950-08-27": "Anniversary of the victory in the Second Sino-Japanese War", + "1950-08-28": "Anniversary of the liberation of Hong Kong", + "1950-09-27": "The day following the Chinese Mid-Autumn Festival", + "1950-10-19": "Chung Yeung Festival", + "1950-12-25": "Christmas Day", + "1950-12-26": "The first weekday after Christmas Day", + "1951-01-01": "The first day of January", + "1951-02-06": "Lunar New Year's Day", + "1951-02-07": "The second day of Lunar New Year", + "1951-02-08": "The third day of Lunar New Year", + "1951-03-23": "Good Friday", + "1951-03-24": "The day following Good Friday", + "1951-03-26": "Easter Monday", + "1951-04-05": "Ching Ming Festival", + "1951-06-09": "Tuen Ng Festival", + "1951-08-26": "Anniversary of the victory in the Second Sino-Japanese War", + "1951-08-27": "Anniversary of the liberation of Hong Kong", + "1951-09-17": "The second day of the Chinese Mid-Autumn Festival (Monday)", + "1951-10-09": "Chung Yeung Festival", + "1951-12-25": "Christmas Day", + "1951-12-26": "The first weekday after Christmas Day", + "1952-01-01": "The first day of January", + "1952-01-28": "The second day of Lunar New Year", + "1952-01-29": "The third day of Lunar New Year", + "1952-01-30": "The fourth day of Lunar New Year", + "1952-04-04": "Ching Ming Festival", + "1952-04-11": "Good Friday", + "1952-04-12": "The day following Good Friday", + "1952-04-14": "Easter Monday", + "1952-05-28": "Tuen Ng Festival", + "1952-06-09": "Queen's Birthday", + "1952-08-24": "Anniversary of the victory in the Second Sino-Japanese War", + "1952-08-25": "Anniversary of the liberation of Hong Kong", + "1952-10-04": "The day following the Chinese Mid-Autumn Festival", + "1952-10-27": "Chung Yeung Festival", + "1952-12-25": "Christmas Day", + "1952-12-26": "The first weekday after Christmas Day", + "1953-01-01": "The first day of January", + "1953-02-14": "Lunar New Year's Day", + "1953-02-16": "The third day of Lunar New Year", + "1953-02-17": "The fourth day of Lunar New Year", + "1953-04-03": "Good Friday", + "1953-04-04": "The day following Good Friday", + "1953-04-06": "The day following Ching Ming Festival", + "1953-04-07": "The day following Easter Monday", + "1953-06-08": "Queen's Birthday", + "1953-06-15": "Tuen Ng Festival", + "1953-08-30": "Anniversary of the victory in the Second Sino-Japanese War", + "1953-08-31": "Anniversary of the liberation of Hong Kong", + "1953-09-23": "The day following the Chinese Mid-Autumn Festival", + "1953-10-16": "Chung Yeung Festival", + "1953-12-25": "Christmas Day", + "1953-12-26": "The first weekday after Christmas Day", + "1954-01-01": "The first day of January", + "1954-02-03": "Lunar New Year's Day", + "1954-02-04": "The second day of Lunar New Year", + "1954-02-05": "The third day of Lunar New Year", + "1954-04-05": "Ching Ming Festival", + "1954-04-16": "Good Friday", + "1954-04-17": "The day following Good Friday", + "1954-04-19": "Easter Monday", + "1954-06-05": "Tuen Ng Festival", + "1954-06-14": "Queen's Birthday", + "1954-08-29": "Anniversary of the victory in the Second Sino-Japanese War", + "1954-08-30": "Anniversary of the liberation of Hong Kong", + "1954-09-13": "The second day of the Chinese Mid-Autumn Festival (Monday)", + "1954-10-05": "Chung Yeung Festival", + "1954-12-25": "Christmas Day", + "1954-12-27": "The first weekday after Christmas Day", + "1955-01-01": "The first day of January", + "1955-01-24": "Lunar New Year's Day", + "1955-01-25": "The second day of Lunar New Year", + "1955-01-26": "The third day of Lunar New Year", + "1955-04-05": "Ching Ming Festival", + "1955-04-08": "Good Friday", + "1955-04-09": "The day following Good Friday", + "1955-04-11": "Easter Monday", + "1955-06-13": "Queen's Birthday", + "1955-06-24": "Tuen Ng Festival", + "1955-08-28": "Anniversary of the victory in the Second Sino-Japanese War", + "1955-08-29": "Anniversary of the liberation of Hong Kong", + "1955-10-01": "The day following the Chinese Mid-Autumn Festival", + "1955-10-24": "Chung Yeung Festival", + "1955-12-26": "The first weekday after Christmas Day", + "1955-12-27": "The second weekday after Christmas Day", + "1956-01-02": "The day following The first day of January", + "1956-02-13": "The second day of Lunar New Year", + "1956-02-14": "The third day of Lunar New Year", + "1956-02-15": "The fourth day of Lunar New Year", + "1956-03-30": "Good Friday", + "1956-03-31": "The day following Good Friday", + "1956-04-02": "Easter Monday", + "1956-04-04": "Ching Ming Festival", + "1956-06-11": "Queen's Birthday", + "1956-06-13": "Tuen Ng Festival", + "1956-08-26": "Anniversary of the victory in the Second Sino-Japanese War", + "1956-08-27": "Anniversary of the liberation of Hong Kong", + "1956-09-20": "The day following the Chinese Mid-Autumn Festival", + "1956-10-12": "Chung Yeung Festival", + "1956-12-25": "Christmas Day", + "1956-12-26": "The first weekday after Christmas Day", + "1957-01-01": "The first day of January", + "1957-01-31": "Lunar New Year's Day", + "1957-02-01": "The second day of Lunar New Year", + "1957-02-02": "The third day of Lunar New Year", + "1957-04-05": "Ching Ming Festival", + "1957-04-19": "Good Friday", + "1957-04-20": "The day following Good Friday", + "1957-04-22": "Easter Monday", + "1957-06-03": "The day following Tuen Ng Festival", + "1957-06-10": "Queen's Birthday", + "1957-08-25": "Anniversary of the victory in the Second Sino-Japanese War", + "1957-08-26": "Anniversary of the liberation of Hong Kong", + "1957-09-09": "The day following the Chinese Mid-Autumn Festival", + "1957-10-31": "Chung Yeung Festival", + "1957-12-25": "Christmas Day", + "1957-12-26": "The first weekday after Christmas Day", + "1958-01-01": "The first day of January", + "1958-02-18": "Lunar New Year's Day", + "1958-02-19": "The second day of Lunar New Year", + "1958-02-20": "The third day of Lunar New Year", + "1958-04-04": "Good Friday", + "1958-04-05": "Ching Ming Festival; The day following Good Friday", + "1958-04-07": "Easter Monday", + "1958-06-09": "Queen's Birthday", + "1958-06-21": "Tuen Ng Festival", + "1958-08-24": "Anniversary of the victory in the Second Sino-Japanese War", + "1958-08-25": "Anniversary of the liberation of Hong Kong", + "1958-09-29": "The second day of the Chinese Mid-Autumn Festival (Monday)", + "1958-10-21": "Chung Yeung Festival", + "1958-12-25": "Christmas Day", + "1958-12-26": "The first weekday after Christmas Day", + "1959-01-01": "The first day of January", + "1959-02-09": "The second day of Lunar New Year", + "1959-02-10": "The third day of Lunar New Year", + "1959-02-11": "The fourth day of Lunar New Year", + "1959-03-27": "Good Friday", + "1959-03-28": "The day following Good Friday", + "1959-03-30": "Easter Monday", + "1959-04-06": "The day following Ching Ming Festival", + "1959-06-08": "Queen's Birthday", + "1959-06-10": "Tuen Ng Festival", + "1959-08-30": "Anniversary of the victory in the Second Sino-Japanese War", + "1959-08-31": "Anniversary of the liberation of Hong Kong", + "1959-09-18": "The day following the Chinese Mid-Autumn Festival", + "1959-10-10": "Chung Yeung Festival", + "1959-12-25": "Christmas Day", + "1959-12-26": "The first weekday after Christmas Day", + "1960-01-01": "The first day of January", + "1960-01-28": "Lunar New Year's Day", + "1960-01-29": "The second day of Lunar New Year", + "1960-01-30": "The third day of Lunar New Year", + "1960-04-04": "Ching Ming Festival", + "1960-04-15": "Good Friday", + "1960-04-16": "The day following Good Friday", + "1960-04-18": "Easter Monday", + "1960-05-30": "The day following Tuen Ng Festival", + "1960-06-13": "Queen's Birthday", + "1960-08-28": "Anniversary of the victory in the Second Sino-Japanese War", + "1960-08-29": "Anniversary of the liberation of Hong Kong", + "1960-10-06": "The day following the Chinese Mid-Autumn Festival", + "1960-10-28": "Chung Yeung Festival", + "1960-12-26": "The first weekday after Christmas Day", + "1960-12-27": "The second weekday after Christmas Day", + "1961-01-02": "The day following The first day of January", + "1961-02-15": "Lunar New Year's Day", + "1961-02-16": "The second day of Lunar New Year", + "1961-02-17": "The third day of Lunar New Year", + "1961-03-31": "Good Friday", + "1961-04-01": "The day following Good Friday", + "1961-04-03": "Easter Monday", + "1961-04-05": "Ching Ming Festival", + "1961-06-12": "Queen's Birthday", + "1961-06-17": "Tuen Ng Festival", + "1961-08-27": "Anniversary of the victory in the Second Sino-Japanese War", + "1961-08-28": "Anniversary of the liberation of Hong Kong", + "1961-09-25": "The day following the Chinese Mid-Autumn Festival", + "1961-10-18": "Chung Yeung Festival", + "1961-12-25": "Christmas Day", + "1961-12-26": "The first weekday after Christmas Day", + "1962-01-01": "The first day of January", + "1962-02-05": "Lunar New Year's Day", + "1962-02-06": "The second day of Lunar New Year", + "1962-02-07": "The third day of Lunar New Year", + "1962-04-05": "Ching Ming Festival", + "1962-04-20": "Good Friday", + "1962-04-21": "The day following Good Friday", + "1962-04-23": "Easter Monday", + "1962-06-06": "Tuen Ng Festival", + "1962-06-11": "Queen's Birthday", + "1962-08-26": "Anniversary of the victory in the Second Sino-Japanese War", + "1962-08-27": "Anniversary of the liberation of Hong Kong", + "1962-09-14": "The day following the Chinese Mid-Autumn Festival", + "1962-10-08": "The day following Chung Yeung Festival", + "1962-12-25": "Christmas Day", + "1962-12-26": "The first weekday after Christmas Day", + "1963-01-01": "The first day of January", + "1963-01-25": "Lunar New Year's Day", + "1963-01-26": "The second day of Lunar New Year", + "1963-01-28": "The fourth day of Lunar New Year", + "1963-04-05": "Ching Ming Festival", + "1963-04-12": "Good Friday", + "1963-04-13": "The day following Good Friday", + "1963-04-15": "Easter Monday", + "1963-06-10": "Queen's Birthday", + "1963-06-25": "Tuen Ng Festival", + "1963-08-25": "Anniversary of the victory in the Second Sino-Japanese War", + "1963-08-26": "Anniversary of the liberation of Hong Kong", + "1963-10-03": "The day following the Chinese Mid-Autumn Festival", + "1963-10-25": "Chung Yeung Festival", + "1963-12-25": "Christmas Day", + "1963-12-26": "The first weekday after Christmas Day", + "1964-01-01": "The first day of January", + "1964-02-13": "Lunar New Year's Day", + "1964-02-14": "The second day of Lunar New Year", + "1964-02-15": "The third day of Lunar New Year", + "1964-03-27": "Good Friday", + "1964-03-28": "The day following Good Friday", + "1964-03-30": "Easter Monday", + "1964-04-04": "Ching Ming Festival", + "1964-06-08": "Queen's Birthday", + "1964-06-15": "The day following Tuen Ng Festival", + "1964-08-30": "Anniversary of the victory in the Second Sino-Japanese War", + "1964-08-31": "Anniversary of the liberation of Hong Kong", + "1964-09-21": "The day following the Chinese Mid-Autumn Festival", + "1964-10-14": "Chung Yeung Festival", + "1964-12-25": "Christmas Day", + "1964-12-26": "The first weekday after Christmas Day", + "1965-01-01": "The first day of January", + "1965-02-02": "Lunar New Year's Day", + "1965-02-03": "The second day of Lunar New Year", + "1965-02-04": "The third day of Lunar New Year", + "1965-04-05": "Ching Ming Festival", + "1965-04-16": "Good Friday", + "1965-04-17": "The day following Good Friday", + "1965-04-19": "Easter Monday", + "1965-06-04": "Tuen Ng Festival", + "1965-06-14": "Queen's Birthday", + "1965-08-29": "Anniversary of the victory in the Second Sino-Japanese War", + "1965-08-30": "Anniversary of the liberation of Hong Kong", + "1965-09-11": "The day following the Chinese Mid-Autumn Festival", + "1965-10-04": "The day following Chung Yeung Festival", + "1965-12-25": "Christmas Day", + "1965-12-27": "The first weekday after Christmas Day", + "1966-01-01": "The first day of January", + "1966-01-21": "Lunar New Year's Day", + "1966-01-22": "The second day of Lunar New Year", + "1966-01-24": "The fourth day of Lunar New Year", + "1966-04-05": "Ching Ming Festival", + "1966-04-08": "Good Friday", + "1966-04-09": "The day following Good Friday", + "1966-04-11": "Easter Monday", + "1966-06-13": "Queen's Birthday", + "1966-06-23": "Tuen Ng Festival", + "1966-08-28": "Anniversary of the victory in the Second Sino-Japanese War", + "1966-08-29": "Anniversary of the liberation of Hong Kong", + "1966-09-30": "The day following the Chinese Mid-Autumn Festival", + "1966-10-22": "Chung Yeung Festival", + "1966-12-26": "The first weekday after Christmas Day", + "1966-12-27": "The second weekday after Christmas Day", + "1967-01-02": "The day following The first day of January", + "1967-02-09": "Lunar New Year's Day", + "1967-02-10": "The second day of Lunar New Year", + "1967-02-11": "The third day of Lunar New Year", + "1967-03-24": "Good Friday", + "1967-03-25": "The day following Good Friday", + "1967-03-27": "Easter Monday", + "1967-04-05": "Ching Ming Festival", + "1967-06-12": "Tuen Ng Festival", + "1967-06-13": "The day following Queen's Birthday", + "1967-08-27": "Anniversary of the victory in the Second Sino-Japanese War", + "1967-08-28": "Anniversary of the liberation of Hong Kong", + "1967-09-19": "The day following the Chinese Mid-Autumn Festival", + "1967-10-12": "Chung Yeung Festival", + "1967-12-25": "Christmas Day", + "1967-12-26": "The first weekday after Christmas Day", + "1968-01-01": "The first day of January", + "1968-01-30": "Lunar New Year's Day", + "1968-01-31": "The second day of Lunar New Year", + "1968-02-01": "The third day of Lunar New Year", + "1968-04-04": "Ching Ming Festival", + "1968-04-12": "Good Friday", + "1968-04-13": "The day following Good Friday", + "1968-04-15": "Easter Monday", + "1968-05-31": "Tuen Ng Festival", + "1968-06-10": "Queen's Birthday", + "1968-08-25": "Anniversary of the victory in the Second Sino-Japanese War", + "1968-08-26": "Anniversary of the liberation of Hong Kong", + "1968-10-07": "The day following the Chinese Mid-Autumn Festival", + "1968-10-30": "Chung Yeung Festival", + "1968-12-25": "Christmas Day", + "1968-12-26": "The first weekday after Christmas Day", + "1969-01-01": "The first day of January", + "1969-02-17": "Lunar New Year's Day", + "1969-02-18": "The second day of Lunar New Year", + "1969-02-19": "The third day of Lunar New Year", + "1969-04-04": "Good Friday", + "1969-04-05": "Ching Ming Festival; The day following Good Friday", + "1969-04-07": "Easter Monday", + "1969-06-09": "Queen's Birthday", + "1969-06-19": "Tuen Ng Festival", + "1969-08-24": "Anniversary of the victory in the Second Sino-Japanese War", + "1969-08-25": "Anniversary of the liberation of Hong Kong", + "1969-09-27": "The day following the Chinese Mid-Autumn Festival", + "1969-10-20": "The day following Chung Yeung Festival", + "1969-12-25": "Christmas Day", + "1969-12-26": "The first weekday after Christmas Day", + "1970-01-01": "The first day of January", + "1970-02-06": "Lunar New Year's Day", + "1970-02-07": "The second day of Lunar New Year", + "1970-02-09": "The fourth day of Lunar New Year", + "1970-03-27": "Good Friday", + "1970-03-28": "The day following Good Friday", + "1970-03-30": "Easter Monday", + "1970-04-06": "The day following Ching Ming Festival", + "1970-06-08": "Tuen Ng Festival", + "1970-06-09": "The day following Queen's Birthday", + "1970-08-30": "Anniversary of the victory in the Second Sino-Japanese War", + "1970-08-31": "Anniversary of the liberation of Hong Kong", + "1970-09-16": "The day following the Chinese Mid-Autumn Festival", + "1970-10-08": "Chung Yeung Festival", + "1970-12-25": "Christmas Day", + "1970-12-26": "The first weekday after Christmas Day", + "1971-01-01": "The first day of January", + "1971-01-27": "Lunar New Year's Day", + "1971-01-28": "The second day of Lunar New Year", + "1971-01-29": "The third day of Lunar New Year", + "1971-04-05": "Ching Ming Festival", + "1971-04-09": "Good Friday", + "1971-04-10": "The day following Good Friday", + "1971-04-12": "Easter Monday", + "1971-05-28": "Tuen Ng Festival", + "1971-06-14": "Queen's Birthday", + "1971-08-29": "Anniversary of the victory in the Second Sino-Japanese War", + "1971-08-30": "Anniversary of the liberation of Hong Kong", + "1971-10-04": "The day following the Chinese Mid-Autumn Festival", + "1971-10-27": "Chung Yeung Festival", + "1971-12-25": "Christmas Day", + "1971-12-27": "The first weekday after Christmas Day", + "1972-01-01": "The first day of January", + "1972-02-15": "Lunar New Year's Day", + "1972-02-16": "The second day of Lunar New Year", + "1972-02-17": "The third day of Lunar New Year", + "1972-03-31": "Good Friday", + "1972-04-01": "The day following Good Friday", + "1972-04-03": "Easter Monday", + "1972-04-04": "Ching Ming Festival", + "1972-06-12": "Queen's Birthday", + "1972-06-15": "Tuen Ng Festival", + "1972-08-27": "Anniversary of the victory in the Second Sino-Japanese War", + "1972-08-28": "Anniversary of the liberation of Hong Kong", + "1972-09-23": "The day following the Chinese Mid-Autumn Festival", + "1972-10-16": "The day following Chung Yeung Festival", + "1972-12-25": "Christmas Day", + "1972-12-26": "The first weekday after Christmas Day", + "1973-01-01": "The first day of January", + "1973-02-03": "Lunar New Year's Day", + "1973-02-05": "The third day of Lunar New Year", + "1973-02-06": "The fourth day of Lunar New Year", + "1973-04-05": "Ching Ming Festival", + "1973-04-20": "Good Friday", + "1973-04-21": "The day following Good Friday", + "1973-04-23": "Easter Monday", + "1973-06-05": "Tuen Ng Festival", + "1973-06-11": "Queen's Birthday", + "1973-08-26": "Anniversary of the victory in the Second Sino-Japanese War", + "1973-08-27": "Anniversary of the liberation of Hong Kong", + "1973-09-12": "The day following the Chinese Mid-Autumn Festival", + "1973-10-04": "Chung Yeung Festival", + "1973-12-25": "Christmas Day", + "1973-12-26": "The first weekday after Christmas Day", + "1974-01-01": "The first day of January", + "1974-01-23": "Lunar New Year's Day", + "1974-01-24": "The second day of Lunar New Year", + "1974-01-25": "The third day of Lunar New Year", + "1974-04-05": "Ching Ming Festival", + "1974-04-12": "Good Friday", + "1974-04-13": "The day following Good Friday", + "1974-04-15": "Easter Monday", + "1974-06-10": "Queen's Birthday", + "1974-06-24": "Tuen Ng Festival", + "1974-08-25": "Anniversary of the victory in the Second Sino-Japanese War", + "1974-08-26": "Anniversary of the liberation of Hong Kong", + "1974-10-01": "The day following the Chinese Mid-Autumn Festival", + "1974-10-23": "Chung Yeung Festival", + "1974-12-25": "Christmas Day", + "1974-12-26": "The first weekday after Christmas Day", + "1975-01-01": "The first day of January", + "1975-02-11": "Lunar New Year's Day", + "1975-02-12": "The second day of Lunar New Year", + "1975-02-13": "The third day of Lunar New Year", + "1975-03-28": "Good Friday", + "1975-03-29": "The day following Good Friday", + "1975-03-31": "Easter Monday", + "1975-04-05": "Ching Ming Festival", + "1975-06-09": "Queen's Birthday", + "1975-06-14": "Tuen Ng Festival", + "1975-08-24": "Anniversary of the victory in the Second Sino-Japanese War", + "1975-08-25": "Anniversary of the liberation of Hong Kong", + "1975-09-22": "The second day of the Chinese Mid-Autumn Festival (Monday)", + "1975-10-13": "Chung Yeung Festival", + "1975-12-25": "Christmas Day", + "1975-12-26": "The first weekday after Christmas Day", + "1976-01-01": "The first day of January", + "1976-01-31": "Lunar New Year's Day", + "1976-02-02": "The third day of Lunar New Year", + "1976-02-03": "The fourth day of Lunar New Year", + "1976-04-05": "The day following Ching Ming Festival", + "1976-04-16": "Good Friday", + "1976-04-17": "The day following Good Friday", + "1976-04-19": "Easter Monday", + "1976-06-02": "Tuen Ng Festival", + "1976-06-14": "Queen's Birthday", + "1976-08-29": "Anniversary of the victory in the Second Sino-Japanese War", + "1976-08-30": "Anniversary of the liberation of Hong Kong", + "1976-09-09": "The day following the Chinese Mid-Autumn Festival", + "1976-11-01": "The day following Chung Yeung Festival", + "1976-12-25": "Christmas Day", + "1976-12-27": "The first weekday after Christmas Day", + "1977-01-01": "The first day of January", + "1977-02-18": "Lunar New Year's Day", + "1977-02-19": "The second day of Lunar New Year", + "1977-02-21": "The fourth day of Lunar New Year", + "1977-04-05": "Ching Ming Festival", + "1977-04-08": "Good Friday", + "1977-04-09": "The day following Good Friday", + "1977-04-11": "Easter Monday", + "1977-06-13": "Queen's Birthday", + "1977-06-21": "Tuen Ng Festival", + "1977-08-28": "Anniversary of the victory in the Second Sino-Japanese War", + "1977-08-29": "Anniversary of the liberation of Hong Kong", + "1977-09-28": "The day following the Chinese Mid-Autumn Festival", + "1977-10-21": "Chung Yeung Festival", + "1977-12-26": "The first weekday after Christmas Day", + "1977-12-27": "The second weekday after Christmas Day", + "1978-01-02": "The day following The first day of January", + "1978-02-07": "Lunar New Year's Day", + "1978-02-08": "The second day of Lunar New Year", + "1978-02-09": "The third day of Lunar New Year", + "1978-03-24": "Good Friday", + "1978-03-25": "The day following Good Friday", + "1978-03-27": "Easter Monday", + "1978-04-05": "Ching Ming Festival", + "1978-06-10": "Tuen Ng Festival", + "1978-06-12": "Queen's Birthday", + "1978-08-27": "Anniversary of the victory in the Second Sino-Japanese War", + "1978-08-28": "Anniversary of the liberation of Hong Kong", + "1978-09-18": "The day following the Chinese Mid-Autumn Festival", + "1978-10-10": "Chung Yeung Festival", + "1978-12-25": "Christmas Day", + "1978-12-26": "The first weekday after Christmas Day", + "1979-01-01": "The first day of January", + "1979-01-29": "The second day of Lunar New Year", + "1979-01-30": "The third day of Lunar New Year", + "1979-01-31": "The fourth day of Lunar New Year", + "1979-04-05": "Ching Ming Festival", + "1979-04-13": "Good Friday", + "1979-04-14": "The day following Good Friday", + "1979-04-16": "Easter Monday", + "1979-05-30": "Tuen Ng Festival", + "1979-06-11": "Queen's Birthday", + "1979-08-26": "Anniversary of the victory in the Second Sino-Japanese War", + "1979-08-27": "Anniversary of the liberation of Hong Kong", + "1979-10-06": "The day following the Chinese Mid-Autumn Festival", + "1979-10-29": "Chung Yeung Festival", + "1979-12-25": "Christmas Day", + "1979-12-26": "The first weekday after Christmas Day", + "1980-01-01": "The first day of January", + "1980-02-16": "Lunar New Year's Day", + "1980-02-18": "The third day of Lunar New Year", + "1980-02-19": "The fourth day of Lunar New Year", + "1980-04-04": "Ching Ming Festival; Good Friday", + "1980-04-05": "The day following Good Friday", + "1980-04-07": "Easter Monday", + "1980-06-09": "Queen's Birthday", + "1980-06-17": "Tuen Ng Festival", + "1980-08-24": "Anniversary of the victory in the Second Sino-Japanese War", + "1980-08-25": "Anniversary of the liberation of Hong Kong", + "1980-09-24": "The day following the Chinese Mid-Autumn Festival", + "1980-10-17": "Chung Yeung Festival", + "1980-12-25": "Christmas Day", + "1980-12-26": "The first weekday after Christmas Day", + "1981-01-01": "The first day of January", + "1981-02-05": "Lunar New Year's Day", + "1981-02-06": "The second day of Lunar New Year", + "1981-02-07": "The third day of Lunar New Year", + "1981-04-06": "The day following Ching Ming Festival", + "1981-04-17": "Good Friday", + "1981-04-18": "The day following Good Friday", + "1981-04-20": "Easter Monday", + "1981-06-06": "Tuen Ng Festival", + "1981-06-08": "Queen's Birthday", + "1981-08-30": "Anniversary of the victory in the Second Sino-Japanese War", + "1981-08-31": "Anniversary of the liberation of Hong Kong", + "1981-09-14": "The second day of the Chinese Mid-Autumn Festival (Monday)", + "1981-10-06": "Chung Yeung Festival", + "1981-12-25": "Christmas Day", + "1981-12-26": "The first weekday after Christmas Day", + "1982-01-01": "The first day of January", + "1982-01-25": "Lunar New Year's Day", + "1982-01-26": "The second day of Lunar New Year", + "1982-01-27": "The third day of Lunar New Year", + "1982-04-05": "Ching Ming Festival", + "1982-04-09": "Good Friday", + "1982-04-10": "The day following Good Friday", + "1982-04-12": "Easter Monday", + "1982-06-14": "Queen's Birthday", + "1982-06-25": "Tuen Ng Festival", + "1982-08-29": "Anniversary of the victory in the Second Sino-Japanese War", + "1982-08-30": "Anniversary of the liberation of Hong Kong", + "1982-10-02": "The day following the Chinese Mid-Autumn Festival", + "1982-10-25": "Chung Yeung Festival", + "1982-12-25": "Christmas Day", + "1982-12-27": "The first weekday after Christmas Day", + "1983-01-01": "The first day of January", + "1983-02-14": "The second day of Lunar New Year", + "1983-02-15": "The third day of Lunar New Year", + "1983-02-16": "The fourth day of Lunar New Year", + "1983-04-01": "Good Friday", + "1983-04-02": "The day following Good Friday", + "1983-04-04": "Easter Monday", + "1983-04-05": "Ching Ming Festival", + "1983-06-13": "Queen's Birthday", + "1983-06-15": "Tuen Ng Festival", + "1983-08-28": "Anniversary of the victory in the Second Sino-Japanese War", + "1983-08-29": "Anniversary of the liberation of Hong Kong", + "1983-09-22": "The day following the Chinese Mid-Autumn Festival", + "1983-10-14": "Chung Yeung Festival", + "1983-12-26": "The first weekday after Christmas Day", + "1983-12-27": "The second weekday after Christmas Day", + "1984-01-02": "The day following The first day of January", + "1984-02-02": "Lunar New Year's Day", + "1984-02-03": "The second day of Lunar New Year", + "1984-02-04": "The third day of Lunar New Year", + "1984-04-04": "Ching Ming Festival", + "1984-04-20": "Good Friday", + "1984-04-21": "The day following Good Friday", + "1984-04-23": "Easter Monday", + "1984-06-04": "Tuen Ng Festival", + "1984-06-11": "Queen's Birthday", + "1984-08-26": "Anniversary of the victory in the Second Sino-Japanese War", + "1984-08-27": "Anniversary of the liberation of Hong Kong", + "1984-09-11": "The day following the Chinese Mid-Autumn Festival", + "1984-10-03": "Chung Yeung Festival", + "1984-12-25": "Christmas Day", + "1984-12-26": "The first weekday after Christmas Day", + "1985-01-01": "The first day of January", + "1985-02-20": "Lunar New Year's Day", + "1985-02-21": "The second day of Lunar New Year", + "1985-02-22": "The third day of Lunar New Year", + "1985-04-05": "Ching Ming Festival; Good Friday", + "1985-04-06": "The day following Good Friday", + "1985-04-08": "Easter Monday", + "1985-06-10": "Queen's Birthday", + "1985-06-22": "Tuen Ng Festival", + "1985-08-25": "Anniversary of the victory in the Second Sino-Japanese War", + "1985-08-26": "Anniversary of the liberation of Hong Kong", + "1985-09-30": "The day following the Chinese Mid-Autumn Festival", + "1985-10-22": "Chung Yeung Festival", + "1985-12-25": "Christmas Day", + "1985-12-26": "The first weekday after Christmas Day", + "1986-01-01": "The first day of January", + "1986-02-10": "The second day of Lunar New Year", + "1986-02-11": "The third day of Lunar New Year", + "1986-02-12": "The fourth day of Lunar New Year", + "1986-03-28": "Good Friday", + "1986-03-29": "The day following Good Friday", + "1986-03-31": "Easter Monday", + "1986-04-05": "Ching Ming Festival", + "1986-06-09": "Queen's Birthday", + "1986-06-11": "Tuen Ng Festival", + "1986-08-24": "Anniversary of the victory in the Second Sino-Japanese War", + "1986-08-25": "Anniversary of the liberation of Hong Kong", + "1986-09-19": "The day following the Chinese Mid-Autumn Festival", + "1986-10-13": "The day following Chung Yeung Festival", + "1986-12-25": "Christmas Day", + "1986-12-26": "The first weekday after Christmas Day", + "1987-01-01": "The first day of January", + "1987-01-29": "Lunar New Year's Day", + "1987-01-30": "The second day of Lunar New Year", + "1987-01-31": "The third day of Lunar New Year", + "1987-04-06": "The day following Ching Ming Festival", + "1987-04-17": "Good Friday", + "1987-04-18": "The day following Good Friday", + "1987-04-20": "Easter Monday", + "1987-06-01": "The day following Tuen Ng Festival", + "1987-06-08": "Queen's Birthday", + "1987-08-30": "Anniversary of the victory in the Second Sino-Japanese War", + "1987-08-31": "Anniversary of the liberation of Hong Kong", + "1987-10-08": "The day following the Chinese Mid-Autumn Festival", + "1987-10-31": "Chung Yeung Festival", + "1987-12-25": "Christmas Day", + "1987-12-26": "The first weekday after Christmas Day", + "1988-01-01": "The first day of January", + "1988-02-17": "Lunar New Year's Day", + "1988-02-18": "The second day of Lunar New Year", + "1988-02-19": "The third day of Lunar New Year", + "1988-04-01": "Good Friday", + "1988-04-02": "The day following Good Friday", + "1988-04-04": "Easter Monday", + "1988-04-05": "The day following Ching Ming Festival", + "1988-06-13": "Queen's Birthday", + "1988-06-18": "Tuen Ng Festival", + "1988-08-28": "Anniversary of the victory in the Second Sino-Japanese War", + "1988-08-29": "Anniversary of the liberation of Hong Kong", + "1988-09-26": "The day following the Chinese Mid-Autumn Festival", + "1988-10-19": "Chung Yeung Festival", + "1988-12-26": "The first weekday after Christmas Day", + "1988-12-27": "The second weekday after Christmas Day", + "1989-01-02": "The day following The first day of January", + "1989-02-06": "Lunar New Year's Day", + "1989-02-07": "The second day of Lunar New Year", + "1989-02-08": "The third day of Lunar New Year", + "1989-03-24": "Good Friday", + "1989-03-25": "The day following Good Friday", + "1989-03-27": "Easter Monday", + "1989-04-05": "Ching Ming Festival", + "1989-06-08": "Tuen Ng Festival", + "1989-06-12": "Queen's Birthday", + "1989-08-27": "Anniversary of the victory in the Second Sino-Japanese War", + "1989-08-28": "Anniversary of the liberation of Hong Kong", + "1989-09-15": "The day following the Chinese Mid-Autumn Festival", + "1989-10-09": "The day following Chung Yeung Festival", + "1989-12-25": "Christmas Day", + "1989-12-26": "The first weekday after Christmas Day", + "1990-01-01": "The first day of January", + "1990-01-27": "Lunar New Year's Day", + "1990-01-29": "The third day of Lunar New Year", + "1990-01-30": "The fourth day of Lunar New Year", + "1990-04-05": "Ching Ming Festival", + "1990-04-13": "Good Friday", + "1990-04-14": "The day following Good Friday", + "1990-04-16": "Easter Monday", + "1990-05-28": "Tuen Ng Festival", + "1990-06-11": "Queen's Birthday", + "1990-08-26": "Anniversary of the victory in the Second Sino-Japanese War", + "1990-08-27": "Anniversary of the liberation of Hong Kong", + "1990-10-04": "The day following the Chinese Mid-Autumn Festival", + "1990-10-26": "Chung Yeung Festival", + "1990-12-25": "Christmas Day", + "1990-12-26": "The first weekday after Christmas Day", + "1991-01-01": "The first day of January", + "1991-02-15": "Lunar New Year's Day", + "1991-02-16": "The second day of Lunar New Year", + "1991-02-18": "The fourth day of Lunar New Year", + "1991-03-29": "Good Friday", + "1991-03-30": "The day following Good Friday", + "1991-04-01": "Easter Monday", + "1991-04-05": "Ching Ming Festival", + "1991-06-10": "Queen's Birthday", + "1991-06-17": "The day following Tuen Ng Festival", + "1991-08-25": "Anniversary of the victory in the Second Sino-Japanese War", + "1991-08-26": "Anniversary of the liberation of Hong Kong", + "1991-09-23": "The day following the Chinese Mid-Autumn Festival", + "1991-10-16": "Chung Yeung Festival", + "1991-12-25": "Christmas Day", + "1991-12-26": "The first weekday after Christmas Day", + "1992-01-01": "The first day of January", + "1992-02-04": "Lunar New Year's Day", + "1992-02-05": "The second day of Lunar New Year", + "1992-02-06": "The third day of Lunar New Year", + "1992-04-04": "Ching Ming Festival", + "1992-04-17": "Good Friday", + "1992-04-18": "The day following Good Friday", + "1992-04-20": "Easter Monday", + "1992-06-05": "Tuen Ng Festival", + "1992-06-08": "Queen's Birthday", + "1992-08-30": "Anniversary of the victory in the Second Sino-Japanese War", + "1992-08-31": "Anniversary of the liberation of Hong Kong", + "1992-09-12": "The day following the Chinese Mid-Autumn Festival", + "1992-10-05": "The day following Chung Yeung Festival", + "1992-12-25": "Christmas Day", + "1992-12-26": "The first weekday after Christmas Day", + "1993-01-01": "The first day of January", + "1993-01-23": "Lunar New Year's Day", + "1993-01-25": "The third day of Lunar New Year", + "1993-01-26": "The fourth day of Lunar New Year", + "1993-04-05": "Ching Ming Festival", + "1993-04-09": "Good Friday", + "1993-04-10": "The day following Good Friday", + "1993-04-12": "Easter Monday", + "1993-06-14": "Queen's Birthday", + "1993-06-24": "Tuen Ng Festival", + "1993-08-29": "Anniversary of the victory in the Second Sino-Japanese War", + "1993-08-30": "Anniversary of the liberation of Hong Kong", + "1993-10-01": "The day following the Chinese Mid-Autumn Festival", + "1993-10-23": "Chung Yeung Festival", + "1993-12-25": "Christmas Day", + "1993-12-27": "The first weekday after Christmas Day", + "1994-01-01": "The first day of January", + "1994-02-10": "Lunar New Year's Day", + "1994-02-11": "The second day of Lunar New Year", + "1994-02-12": "The third day of Lunar New Year", + "1994-04-01": "Good Friday", + "1994-04-02": "The day following Good Friday", + "1994-04-04": "Easter Monday", + "1994-04-05": "Ching Ming Festival", + "1994-06-13": "Tuen Ng Festival", + "1994-06-14": "The day following Queen's Birthday", + "1994-08-28": "Anniversary of the victory in the Second Sino-Japanese War", + "1994-08-29": "Anniversary of the liberation of Hong Kong", + "1994-09-21": "The day following the Chinese Mid-Autumn Festival", + "1994-10-13": "Chung Yeung Festival", + "1994-12-26": "The first weekday after Christmas Day", + "1994-12-27": "The second weekday after Christmas Day", + "1995-01-02": "The day following The first day of January", + "1995-01-31": "Lunar New Year's Day", + "1995-02-01": "The second day of Lunar New Year", + "1995-02-02": "The third day of Lunar New Year", + "1995-04-05": "Ching Ming Festival", + "1995-04-14": "Good Friday", + "1995-04-15": "The day following Good Friday", + "1995-04-17": "Easter Monday", + "1995-06-02": "Tuen Ng Festival", + "1995-06-12": "Queen's Birthday", + "1995-08-27": "Anniversary of the victory in the Second Sino-Japanese War", + "1995-08-28": "Anniversary of the liberation of Hong Kong", + "1995-09-09": "Chinese Mid-Autumn Festival", + "1995-11-01": "Chung Yeung Festival", + "1995-12-25": "Christmas Day", + "1995-12-26": "The first weekday after Christmas Day", + "1996-01-01": "The first day of January", + "1996-02-19": "Lunar New Year's Day", + "1996-02-20": "The second day of Lunar New Year", + "1996-02-21": "The third day of Lunar New Year", + "1996-04-04": "Ching Ming Festival", + "1996-04-05": "Good Friday", + "1996-04-06": "The day following Good Friday", + "1996-04-08": "Easter Monday", + "1996-06-10": "Queen's Birthday", + "1996-06-20": "Tuen Ng Festival", + "1996-08-25": "Anniversary of the victory in the Second Sino-Japanese War", + "1996-08-26": "Anniversary of the liberation of Hong Kong", + "1996-09-28": "The day following the Chinese Mid-Autumn Festival", + "1996-10-21": "The day following Chung Yeung Festival", + "1996-12-25": "Christmas Day", + "1996-12-26": "The first weekday after Christmas Day", + "1997-01-01": "The first day of January", + "1997-02-07": "Lunar New Year's Day", + "1997-02-08": "The second day of Lunar New Year", + "1997-02-10": "The fourth day of Lunar New Year", + "1997-03-28": "Good Friday", + "1997-03-29": "The day following Good Friday", + "1997-03-31": "Easter Monday", + "1997-04-05": "Ching Ming Festival", + "1997-06-09": "Tuen Ng Festival", + "1997-06-10": "The day following Queen's Birthday", + "1997-07-01": "Hong Kong Special Administrative Region Establishment Day", + "1997-07-02": "Hong Kong Special Administrative Region Establishment Day", + "1997-08-24": "Anniversary of the victory in the Second Sino-Japanese War", + "1997-09-17": "The day following the Chinese Mid-Autumn Festival", + "1997-10-01": "National Day", + "1997-10-02": "National Day", + "1997-10-10": "Chung Yeung Festival", + "1997-12-25": "Christmas Day", + "1997-12-26": "The first weekday after Christmas Day", + "1998-01-01": "The first day of January", + "1998-01-28": "Lunar New Year's Day", + "1998-01-29": "The second day of Lunar New Year", + "1998-01-30": "The third day of Lunar New Year", + "1998-04-06": "The day following Ching Ming Festival", + "1998-04-10": "Good Friday", + "1998-04-11": "The day following Good Friday", + "1998-04-13": "Easter Monday", + "1998-05-30": "Tuen Ng Festival", + "1998-07-01": "Hong Kong Special Administrative Region Establishment Day", + "1998-08-30": "Anniversary of the victory in the Second Sino-Japanese War", + "1998-10-01": "National Day", + "1998-10-02": "National Day", + "1998-10-06": "The day following the Chinese Mid-Autumn Festival", + "1998-10-28": "Chung Yeung Festival", + "1998-12-25": "Christmas Day", + "1998-12-26": "The first weekday after Christmas Day", + "1999-01-01": "The first day of January", + "1999-02-16": "Lunar New Year's Day", + "1999-02-17": "The second day of Lunar New Year", + "1999-02-18": "The third day of Lunar New Year", + "1999-04-02": "Good Friday", + "1999-04-03": "The day following Good Friday", + "1999-04-05": "Easter Monday", + "1999-04-06": "The day following Ching Ming Festival", + "1999-05-01": "Labour Day", + "1999-05-22": "The Birthday of the Buddha", + "1999-06-18": "Tuen Ng Festival", + "1999-07-01": "Hong Kong Special Administrative Region Establishment Day", + "1999-09-25": "The day following the Chinese Mid-Autumn Festival", + "1999-10-01": "National Day", + "1999-10-18": "The day following Chung Yeung Festival", + "1999-12-25": "Christmas Day", + "1999-12-27": "The first weekday after Christmas Day", + "2000-01-01": "The first day of January", + "2000-02-05": "Lunar New Year's Day", + "2000-02-07": "The third day of Lunar New Year", + "2000-02-08": "The fourth day of Lunar New Year", + "2000-04-04": "Ching Ming Festival", + "2000-04-21": "Good Friday", + "2000-04-22": "The day following Good Friday", + "2000-04-24": "Easter Monday", + "2000-05-01": "Labour Day", + "2000-05-11": "The Birthday of the Buddha", + "2000-06-06": "Tuen Ng Festival", + "2000-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2000-09-13": "The day following the Chinese Mid-Autumn Festival", + "2000-10-02": "The day following National Day", + "2000-10-06": "Chung Yeung Festival", + "2000-12-25": "Christmas Day", + "2000-12-26": "The first weekday after Christmas Day", + "2001-01-01": "The first day of January", + "2001-01-24": "Lunar New Year's Day", + "2001-01-25": "The second day of Lunar New Year", + "2001-01-26": "The third day of Lunar New Year", + "2001-04-05": "Ching Ming Festival", + "2001-04-13": "Good Friday", + "2001-04-14": "The day following Good Friday", + "2001-04-16": "Easter Monday", + "2001-04-30": "The Birthday of the Buddha", + "2001-05-01": "Labour Day", + "2001-06-25": "Tuen Ng Festival", + "2001-07-02": "The day following Hong Kong Special Administrative Region Establishment Day", + "2001-10-01": "National Day", + "2001-10-02": "The day following the Chinese Mid-Autumn Festival", + "2001-10-25": "Chung Yeung Festival", + "2001-12-25": "Christmas Day", + "2001-12-26": "The first weekday after Christmas Day", + "2002-01-01": "The first day of January", + "2002-02-12": "Lunar New Year's Day", + "2002-02-13": "The second day of Lunar New Year", + "2002-02-14": "The third day of Lunar New Year", + "2002-03-29": "Good Friday", + "2002-03-30": "The day following Good Friday", + "2002-04-01": "Easter Monday", + "2002-04-05": "Ching Ming Festival", + "2002-05-01": "Labour Day", + "2002-05-20": "The day following The Birthday of the Buddha", + "2002-06-15": "Tuen Ng Festival", + "2002-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2002-09-21": "Chinese Mid-Autumn Festival", + "2002-10-01": "National Day", + "2002-10-14": "Chung Yeung Festival", + "2002-12-25": "Christmas Day", + "2002-12-26": "The first weekday after Christmas Day", + "2003-01-01": "The first day of January", + "2003-02-01": "Lunar New Year's Day", + "2003-02-03": "The third day of Lunar New Year", + "2003-02-04": "The fourth day of Lunar New Year", + "2003-04-05": "Ching Ming Festival", + "2003-04-18": "Good Friday", + "2003-04-19": "The day following Good Friday", + "2003-04-21": "Easter Monday", + "2003-05-01": "Labour Day", + "2003-05-08": "The Birthday of the Buddha", + "2003-06-04": "Tuen Ng Festival", + "2003-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2003-09-12": "The day following the Chinese Mid-Autumn Festival", + "2003-10-01": "National Day", + "2003-10-04": "Chung Yeung Festival", + "2003-12-25": "Christmas Day", + "2003-12-26": "The first weekday after Christmas Day", + "2004-01-01": "The first day of January", + "2004-01-22": "Lunar New Year's Day", + "2004-01-23": "The second day of Lunar New Year", + "2004-01-24": "The third day of Lunar New Year", + "2004-04-05": "The day following Ching Ming Festival", + "2004-04-09": "Good Friday", + "2004-04-10": "The day following Good Friday", + "2004-04-12": "Easter Monday", + "2004-05-01": "Labour Day", + "2004-05-26": "The Birthday of the Buddha", + "2004-06-22": "Tuen Ng Festival", + "2004-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2004-09-29": "The day following the Chinese Mid-Autumn Festival", + "2004-10-01": "National Day", + "2004-10-22": "Chung Yeung Festival", + "2004-12-25": "Christmas Day", + "2004-12-27": "The first weekday after Christmas Day", + "2005-01-01": "The first day of January", + "2005-02-09": "Lunar New Year's Day", + "2005-02-10": "The second day of Lunar New Year", + "2005-02-11": "The third day of Lunar New Year", + "2005-03-25": "Good Friday", + "2005-03-26": "The day following Good Friday", + "2005-03-28": "Easter Monday", + "2005-04-05": "Ching Ming Festival", + "2005-05-02": "The day following Labour Day", + "2005-05-16": "The day following The Birthday of the Buddha", + "2005-06-11": "Tuen Ng Festival", + "2005-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2005-09-19": "The day following the Chinese Mid-Autumn Festival", + "2005-10-01": "National Day", + "2005-10-11": "Chung Yeung Festival", + "2005-12-26": "The first weekday after Christmas Day", + "2005-12-27": "The second weekday after Christmas Day", + "2006-01-02": "The day following The first day of January", + "2006-01-28": "The day preceding Lunar New Year's Day", + "2006-01-30": "The second day of Lunar New Year", + "2006-01-31": "The third day of Lunar New Year", + "2006-04-05": "Ching Ming Festival", + "2006-04-14": "Good Friday", + "2006-04-15": "The day following Good Friday", + "2006-04-17": "Easter Monday", + "2006-05-01": "Labour Day", + "2006-05-05": "The Birthday of the Buddha", + "2006-05-31": "Tuen Ng Festival", + "2006-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2006-10-02": "The day following National Day", + "2006-10-07": "The day following the Chinese Mid-Autumn Festival", + "2006-10-30": "Chung Yeung Festival", + "2006-12-25": "Christmas Day", + "2006-12-26": "The first weekday after Christmas Day", + "2007-01-01": "The first day of January", + "2007-02-17": "The day preceding Lunar New Year's Day", + "2007-02-19": "The second day of Lunar New Year", + "2007-02-20": "The third day of Lunar New Year", + "2007-04-05": "Ching Ming Festival", + "2007-04-06": "Good Friday", + "2007-04-07": "The day following Good Friday", + "2007-04-09": "Easter Monday", + "2007-05-01": "Labour Day", + "2007-05-24": "The Birthday of the Buddha", + "2007-06-19": "Tuen Ng Festival", + "2007-07-02": "The day following Hong Kong Special Administrative Region Establishment Day", + "2007-09-26": "The day following the Chinese Mid-Autumn Festival", + "2007-10-01": "National Day", + "2007-10-19": "Chung Yeung Festival", + "2007-12-25": "Christmas Day", + "2007-12-26": "The first weekday after Christmas Day", + "2008-01-01": "The first day of January", + "2008-02-07": "Lunar New Year's Day", + "2008-02-08": "The second day of Lunar New Year", + "2008-02-09": "The third day of Lunar New Year", + "2008-03-21": "Good Friday", + "2008-03-22": "The day following Good Friday", + "2008-03-24": "Easter Monday", + "2008-04-04": "Ching Ming Festival", + "2008-05-01": "Labour Day", + "2008-05-12": "The Birthday of the Buddha", + "2008-06-09": "The day following Tuen Ng Festival", + "2008-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2008-09-15": "The day following the Chinese Mid-Autumn Festival", + "2008-10-01": "National Day", + "2008-10-07": "Chung Yeung Festival", + "2008-12-25": "Christmas Day", + "2008-12-26": "The first weekday after Christmas Day", + "2009-01-01": "The first day of January", + "2009-01-26": "Lunar New Year's Day", + "2009-01-27": "The second day of Lunar New Year", + "2009-01-28": "The third day of Lunar New Year", + "2009-04-04": "Ching Ming Festival", + "2009-04-10": "Good Friday", + "2009-04-11": "The day following Good Friday", + "2009-04-13": "Easter Monday", + "2009-05-01": "Labour Day", + "2009-05-02": "The Birthday of the Buddha", + "2009-05-28": "Tuen Ng Festival", + "2009-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2009-10-01": "National Day", + "2009-10-03": "Chinese Mid-Autumn Festival", + "2009-10-26": "Chung Yeung Festival", + "2009-12-25": "Christmas Day", + "2009-12-26": "The first weekday after Christmas Day", + "2010-01-01": "The first day of January", + "2010-02-13": "The day preceding Lunar New Year's Day", + "2010-02-15": "The second day of Lunar New Year", + "2010-02-16": "The third day of Lunar New Year", + "2010-04-02": "Good Friday", + "2010-04-03": "The day following Good Friday", + "2010-04-05": "Easter Monday", + "2010-04-06": "The day following Ching Ming Festival", + "2010-05-01": "Labour Day", + "2010-05-21": "The Birthday of the Buddha", + "2010-06-16": "Tuen Ng Festival", + "2010-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2010-09-23": "The day following the Chinese Mid-Autumn Festival", + "2010-10-01": "National Day", + "2010-10-16": "Chung Yeung Festival", + "2010-12-25": "Christmas Day", + "2010-12-27": "The first weekday after Christmas Day", + "2011-01-01": "The first day of January", + "2011-02-03": "Lunar New Year's Day", + "2011-02-04": "The second day of Lunar New Year", + "2011-02-05": "The third day of Lunar New Year", + "2011-04-05": "Ching Ming Festival", + "2011-04-22": "Good Friday", + "2011-04-23": "The day following Good Friday", + "2011-04-25": "Easter Monday", + "2011-05-02": "The day following Labour Day", + "2011-05-10": "The Birthday of the Buddha", + "2011-06-06": "Tuen Ng Festival", + "2011-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2011-09-13": "The day following the Chinese Mid-Autumn Festival", + "2011-10-01": "National Day", + "2011-10-05": "Chung Yeung Festival", + "2011-12-26": "The first weekday after Christmas Day", + "2011-12-27": "The second weekday after Christmas Day", + "2012-01-02": "The day following The first day of January", + "2012-01-23": "Lunar New Year's Day", + "2012-01-24": "The second day of Lunar New Year", + "2012-01-25": "The third day of Lunar New Year", + "2012-04-04": "Ching Ming Festival", + "2012-04-06": "Good Friday", + "2012-04-07": "The day following Good Friday", + "2012-04-09": "Easter Monday", + "2012-04-28": "The Birthday of the Buddha", + "2012-05-01": "Labour Day", + "2012-06-23": "Tuen Ng Festival", + "2012-07-02": "The day following Hong Kong Special Administrative Region Establishment Day", + "2012-10-01": "The day following the Chinese Mid-Autumn Festival", + "2012-10-02": "The day following National Day", + "2012-10-23": "Chung Yeung Festival", + "2012-12-25": "Christmas Day", + "2012-12-26": "The first weekday after Christmas Day", + "2013-01-01": "The first day of January", + "2013-02-11": "The second day of Lunar New Year", + "2013-02-12": "The third day of Lunar New Year", + "2013-02-13": "The fourth day of Lunar New Year", + "2013-03-29": "Good Friday", + "2013-03-30": "The day following Good Friday", + "2013-04-01": "Easter Monday", + "2013-04-04": "Ching Ming Festival", + "2013-05-01": "Labour Day", + "2013-05-17": "The Birthday of the Buddha", + "2013-06-12": "Tuen Ng Festival", + "2013-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2013-09-20": "The day following the Chinese Mid-Autumn Festival", + "2013-10-01": "National Day", + "2013-10-14": "The day following Chung Yeung Festival", + "2013-12-25": "Christmas Day", + "2013-12-26": "The first weekday after Christmas Day", + "2014-01-01": "The first day of January", + "2014-01-31": "Lunar New Year's Day", + "2014-02-01": "The second day of Lunar New Year", + "2014-02-03": "The fourth day of Lunar New Year", + "2014-04-05": "Ching Ming Festival", + "2014-04-18": "Good Friday", + "2014-04-19": "The day following Good Friday", + "2014-04-21": "Easter Monday", + "2014-05-01": "Labour Day", + "2014-05-06": "The Birthday of the Buddha", + "2014-06-02": "Tuen Ng Festival", + "2014-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2014-09-09": "The day following the Chinese Mid-Autumn Festival", + "2014-10-01": "National Day", + "2014-10-02": "Chung Yeung Festival", + "2014-12-25": "Christmas Day", + "2014-12-26": "The first weekday after Christmas Day", + "2015-01-01": "The first day of January", + "2015-02-19": "Lunar New Year's Day", + "2015-02-20": "The second day of Lunar New Year", + "2015-02-21": "The third day of Lunar New Year", + "2015-04-03": "Good Friday", + "2015-04-04": "The day following Good Friday", + "2015-04-06": "The day following Ching Ming Festival", + "2015-04-07": "The day following Easter Monday", + "2015-05-01": "Labour Day", + "2015-05-25": "The Birthday of the Buddha", + "2015-06-20": "Tuen Ng Festival", + "2015-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2015-09-03": "The 70th anniversary day of the victory of the Chinese people's war of resistance against Japanese aggression", + "2015-09-28": "The day following the Chinese Mid-Autumn Festival", + "2015-10-01": "National Day", + "2015-10-21": "Chung Yeung Festival", + "2015-12-25": "Christmas Day", + "2015-12-26": "The first weekday after Christmas Day", + "2016-01-01": "The first day of January", + "2016-02-08": "Lunar New Year's Day", + "2016-02-09": "The second day of Lunar New Year", + "2016-02-10": "The third day of Lunar New Year", + "2016-03-25": "Good Friday", + "2016-03-26": "The day following Good Friday", + "2016-03-28": "Easter Monday", + "2016-04-04": "Ching Ming Festival", + "2016-05-02": "The day following Labour Day", + "2016-05-14": "The Birthday of the Buddha", + "2016-06-09": "Tuen Ng Festival", + "2016-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2016-09-16": "The day following the Chinese Mid-Autumn Festival", + "2016-10-01": "National Day", + "2016-10-10": "The day following Chung Yeung Festival", + "2016-12-26": "The first weekday after Christmas Day", + "2016-12-27": "The second weekday after Christmas Day", + "2017-01-02": "The day following The first day of January", + "2017-01-28": "Lunar New Year's Day", + "2017-01-30": "The third day of Lunar New Year", + "2017-01-31": "The fourth day of Lunar New Year", + "2017-04-04": "Ching Ming Festival", + "2017-04-14": "Good Friday", + "2017-04-15": "The day following Good Friday", + "2017-04-17": "Easter Monday", + "2017-05-01": "Labour Day", + "2017-05-03": "The Birthday of the Buddha", + "2017-05-30": "Tuen Ng Festival", + "2017-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2017-10-02": "The day following National Day", + "2017-10-05": "The day following the Chinese Mid-Autumn Festival", + "2017-10-28": "Chung Yeung Festival", + "2017-12-25": "Christmas Day", + "2017-12-26": "The first weekday after Christmas Day", + "2018-01-01": "The first day of January", + "2018-02-16": "Lunar New Year's Day", + "2018-02-17": "The second day of Lunar New Year", + "2018-02-19": "The fourth day of Lunar New Year", + "2018-03-30": "Good Friday", + "2018-03-31": "The day following Good Friday", + "2018-04-02": "Easter Monday", + "2018-04-05": "Ching Ming Festival", + "2018-05-01": "Labour Day", + "2018-05-22": "The Birthday of the Buddha", + "2018-06-18": "Tuen Ng Festival", + "2018-07-02": "The day following Hong Kong Special Administrative Region Establishment Day", + "2018-09-25": "The day following the Chinese Mid-Autumn Festival", + "2018-10-01": "National Day", + "2018-10-17": "Chung Yeung Festival", + "2018-12-25": "Christmas Day", + "2018-12-26": "The first weekday after Christmas Day", + "2019-01-01": "The first day of January", + "2019-02-05": "Lunar New Year's Day", + "2019-02-06": "The second day of Lunar New Year", + "2019-02-07": "The third day of Lunar New Year", + "2019-04-05": "Ching Ming Festival", + "2019-04-19": "Good Friday", + "2019-04-20": "The day following Good Friday", + "2019-04-22": "Easter Monday", + "2019-05-01": "Labour Day", + "2019-05-13": "The day following The Birthday of the Buddha", + "2019-06-07": "Tuen Ng Festival", + "2019-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2019-09-14": "The day following the Chinese Mid-Autumn Festival", + "2019-10-01": "National Day", + "2019-10-07": "Chung Yeung Festival", + "2019-12-25": "Christmas Day", + "2019-12-26": "The first weekday after Christmas Day", + "2020-01-01": "The first day of January", + "2020-01-25": "Lunar New Year's Day", + "2020-01-27": "The third day of Lunar New Year", + "2020-01-28": "The fourth day of Lunar New Year", + "2020-04-04": "Ching Ming Festival", + "2020-04-10": "Good Friday", + "2020-04-11": "The day following Good Friday", + "2020-04-13": "Easter Monday", + "2020-04-30": "The Birthday of the Buddha", + "2020-05-01": "Labour Day", + "2020-06-25": "Tuen Ng Festival", + "2020-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2020-10-01": "National Day", + "2020-10-02": "The day following the Chinese Mid-Autumn Festival", + "2020-10-26": "The day following Chung Yeung Festival", + "2020-12-25": "Christmas Day", + "2020-12-26": "The first weekday after Christmas Day", + "2021-01-01": "The first day of January", + "2021-02-12": "Lunar New Year's Day", + "2021-02-13": "The second day of Lunar New Year", + "2021-02-15": "The fourth day of Lunar New Year", + "2021-04-02": "Good Friday", + "2021-04-03": "The day following Good Friday", + "2021-04-05": "The day following Ching Ming Festival", + "2021-04-06": "The day following Easter Monday", + "2021-05-01": "Labour Day", + "2021-05-19": "The Birthday of the Buddha", + "2021-06-14": "Tuen Ng Festival", + "2021-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2021-09-22": "The day following the Chinese Mid-Autumn Festival", + "2021-10-01": "National Day", + "2021-10-14": "Chung Yeung Festival", + "2021-12-25": "Christmas Day", + "2021-12-27": "The first weekday after Christmas Day", + "2022-01-01": "The first day of January", + "2022-02-01": "Lunar New Year's Day", + "2022-02-02": "The second day of Lunar New Year", + "2022-02-03": "The third day of Lunar New Year", + "2022-04-05": "Ching Ming Festival", + "2022-04-15": "Good Friday", + "2022-04-16": "The day following Good Friday", + "2022-04-18": "Easter Monday", + "2022-05-02": "The day following Labour Day", + "2022-05-09": "The day following The Birthday of the Buddha", + "2022-06-03": "Tuen Ng Festival", + "2022-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2022-09-12": "The second day of the Chinese Mid-Autumn Festival (Monday)", + "2022-10-01": "National Day", + "2022-10-04": "Chung Yeung Festival", + "2022-12-26": "The first weekday after Christmas Day", + "2022-12-27": "The second weekday after Christmas Day", + "2023-01-02": "The day following The first day of January", + "2023-01-23": "The second day of Lunar New Year", + "2023-01-24": "The third day of Lunar New Year", + "2023-01-25": "The fourth day of Lunar New Year", + "2023-04-05": "Ching Ming Festival", + "2023-04-07": "Good Friday", + "2023-04-08": "The day following Good Friday", + "2023-04-10": "Easter Monday", + "2023-05-01": "Labour Day", + "2023-05-26": "The Birthday of the Buddha", + "2023-06-22": "Tuen Ng Festival", + "2023-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2023-09-30": "The day following the Chinese Mid-Autumn Festival", + "2023-10-02": "The day following National Day", + "2023-10-23": "Chung Yeung Festival", + "2023-12-25": "Christmas Day", + "2023-12-26": "The first weekday after Christmas Day", + "2024-01-01": "The first day of January", + "2024-02-10": "Lunar New Year's Day", + "2024-02-12": "The third day of Lunar New Year", + "2024-02-13": "The fourth day of Lunar New Year", + "2024-03-29": "Good Friday", + "2024-03-30": "The day following Good Friday", + "2024-04-01": "Easter Monday", + "2024-04-04": "Ching Ming Festival", + "2024-05-01": "Labour Day", + "2024-05-15": "The Birthday of the Buddha", + "2024-06-10": "Tuen Ng Festival", + "2024-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2024-09-18": "The day following the Chinese Mid-Autumn Festival", + "2024-10-01": "National Day", + "2024-10-11": "Chung Yeung Festival", + "2024-12-25": "Christmas Day", + "2024-12-26": "The first weekday after Christmas Day", + "2025-01-01": "The first day of January", + "2025-01-29": "Lunar New Year's Day", + "2025-01-30": "The second day of Lunar New Year", + "2025-01-31": "The third day of Lunar New Year", + "2025-04-04": "Ching Ming Festival", + "2025-04-18": "Good Friday", + "2025-04-19": "The day following Good Friday", + "2025-04-21": "Easter Monday", + "2025-05-01": "Labour Day", + "2025-05-05": "The day following The Birthday of the Buddha", + "2025-05-31": "Tuen Ng Festival", + "2025-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2025-10-01": "National Day", + "2025-10-07": "The day following the Chinese Mid-Autumn Festival", + "2025-10-29": "Chung Yeung Festival", + "2025-12-25": "Christmas Day", + "2025-12-26": "The first weekday after Christmas Day", + "2026-01-01": "The first day of January", + "2026-02-17": "Lunar New Year's Day", + "2026-02-18": "The second day of Lunar New Year", + "2026-02-19": "The third day of Lunar New Year", + "2026-04-03": "Good Friday", + "2026-04-04": "The day following Good Friday", + "2026-04-06": "The day following Ching Ming Festival", + "2026-04-07": "The day following Easter Monday", + "2026-05-01": "Labour Day", + "2026-05-25": "The day following The Birthday of the Buddha", + "2026-06-19": "Tuen Ng Festival", + "2026-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2026-09-26": "The day following the Chinese Mid-Autumn Festival", + "2026-10-01": "National Day", + "2026-10-19": "The day following Chung Yeung Festival", + "2026-12-25": "Christmas Day", + "2026-12-26": "The first weekday after Christmas Day", + "2027-01-01": "The first day of January", + "2027-02-06": "Lunar New Year's Day", + "2027-02-08": "The third day of Lunar New Year", + "2027-02-09": "The fourth day of Lunar New Year", + "2027-03-26": "Good Friday", + "2027-03-27": "The day following Good Friday", + "2027-03-29": "Easter Monday", + "2027-04-05": "Ching Ming Festival", + "2027-05-01": "Labour Day", + "2027-05-13": "The Birthday of the Buddha", + "2027-06-09": "Tuen Ng Festival", + "2027-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2027-09-16": "The day following the Chinese Mid-Autumn Festival", + "2027-10-01": "National Day", + "2027-10-08": "Chung Yeung Festival", + "2027-12-25": "Christmas Day", + "2027-12-27": "The first weekday after Christmas Day", + "2028-01-01": "The first day of January", + "2028-01-26": "Lunar New Year's Day", + "2028-01-27": "The second day of Lunar New Year", + "2028-01-28": "The third day of Lunar New Year", + "2028-04-04": "Ching Ming Festival", + "2028-04-14": "Good Friday", + "2028-04-15": "The day following Good Friday", + "2028-04-17": "Easter Monday", + "2028-05-01": "Labour Day", + "2028-05-02": "The Birthday of the Buddha", + "2028-05-29": "The day following Tuen Ng Festival", + "2028-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2028-10-02": "The day following National Day", + "2028-10-04": "The day following the Chinese Mid-Autumn Festival", + "2028-10-26": "Chung Yeung Festival", + "2028-12-25": "Christmas Day", + "2028-12-26": "The first weekday after Christmas Day", + "2029-01-01": "The first day of January", + "2029-02-13": "Lunar New Year's Day", + "2029-02-14": "The second day of Lunar New Year", + "2029-02-15": "The third day of Lunar New Year", + "2029-03-30": "Good Friday", + "2029-03-31": "The day following Good Friday", + "2029-04-02": "Easter Monday", + "2029-04-04": "Ching Ming Festival", + "2029-05-01": "Labour Day", + "2029-05-21": "The day following The Birthday of the Buddha", + "2029-06-16": "Tuen Ng Festival", + "2029-07-02": "The day following Hong Kong Special Administrative Region Establishment Day", + "2029-09-24": "The second day of the Chinese Mid-Autumn Festival (Monday)", + "2029-10-01": "National Day", + "2029-10-16": "Chung Yeung Festival", + "2029-12-25": "Christmas Day", + "2029-12-26": "The first weekday after Christmas Day", + "2030-01-01": "The first day of January", + "2030-02-04": "The second day of Lunar New Year", + "2030-02-05": "The third day of Lunar New Year", + "2030-02-06": "The fourth day of Lunar New Year", + "2030-04-05": "Ching Ming Festival", + "2030-04-19": "Good Friday", + "2030-04-20": "The day following Good Friday", + "2030-04-22": "Easter Monday", + "2030-05-01": "Labour Day", + "2030-05-09": "The Birthday of the Buddha", + "2030-06-05": "Tuen Ng Festival", + "2030-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2030-09-13": "The day following the Chinese Mid-Autumn Festival", + "2030-10-01": "National Day", + "2030-10-05": "Chung Yeung Festival", + "2030-12-25": "Christmas Day", + "2030-12-26": "The first weekday after Christmas Day", + "2031-01-01": "The first day of January", + "2031-01-23": "Lunar New Year's Day", + "2031-01-24": "The second day of Lunar New Year", + "2031-01-25": "The third day of Lunar New Year", + "2031-04-05": "Ching Ming Festival", + "2031-04-11": "Good Friday", + "2031-04-12": "The day following Good Friday", + "2031-04-14": "Easter Monday", + "2031-05-01": "Labour Day", + "2031-05-28": "The Birthday of the Buddha", + "2031-06-24": "Tuen Ng Festival", + "2031-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2031-10-01": "National Day", + "2031-10-02": "The day following the Chinese Mid-Autumn Festival", + "2031-10-24": "Chung Yeung Festival", + "2031-12-25": "Christmas Day", + "2031-12-26": "The first weekday after Christmas Day", + "2032-01-01": "The first day of January", + "2032-02-11": "Lunar New Year's Day", + "2032-02-12": "The second day of Lunar New Year", + "2032-02-13": "The third day of Lunar New Year", + "2032-03-26": "Good Friday", + "2032-03-27": "The day following Good Friday", + "2032-03-29": "Easter Monday", + "2032-04-05": "The day following Ching Ming Festival", + "2032-05-01": "Labour Day", + "2032-05-17": "The day following The Birthday of the Buddha", + "2032-06-12": "Tuen Ng Festival", + "2032-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2032-09-20": "The day following the Chinese Mid-Autumn Festival", + "2032-10-01": "National Day", + "2032-10-12": "Chung Yeung Festival", + "2032-12-25": "Christmas Day", + "2032-12-27": "The first weekday after Christmas Day", + "2033-01-01": "The first day of January", + "2033-01-31": "Lunar New Year's Day", + "2033-02-01": "The second day of Lunar New Year", + "2033-02-02": "The third day of Lunar New Year", + "2033-04-04": "Ching Ming Festival", + "2033-04-15": "Good Friday", + "2033-04-16": "The day following Good Friday", + "2033-04-18": "Easter Monday", + "2033-05-02": "The day following Labour Day", + "2033-05-06": "The Birthday of the Buddha", + "2033-06-01": "Tuen Ng Festival", + "2033-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2033-09-09": "The day following the Chinese Mid-Autumn Festival", + "2033-10-01": "Chung Yeung Festival", + "2033-10-03": "The day following National Day", + "2033-12-26": "The first weekday after Christmas Day", + "2033-12-27": "The second weekday after Christmas Day", + "2034-01-02": "The day following The first day of January", + "2034-02-20": "The second day of Lunar New Year", + "2034-02-21": "The third day of Lunar New Year", + "2034-02-22": "The fourth day of Lunar New Year", + "2034-04-05": "Ching Ming Festival", + "2034-04-07": "Good Friday", + "2034-04-08": "The day following Good Friday", + "2034-04-10": "Easter Monday", + "2034-05-01": "Labour Day", + "2034-05-25": "The Birthday of the Buddha", + "2034-06-20": "Tuen Ng Festival", + "2034-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2034-09-28": "The day following the Chinese Mid-Autumn Festival", + "2034-10-02": "The day following National Day", + "2034-10-20": "Chung Yeung Festival", + "2034-12-25": "Christmas Day", + "2034-12-26": "The first weekday after Christmas Day", + "2035-01-01": "The first day of January", + "2035-02-08": "Lunar New Year's Day", + "2035-02-09": "The second day of Lunar New Year", + "2035-02-10": "The third day of Lunar New Year", + "2035-03-23": "Good Friday", + "2035-03-24": "The day following Good Friday", + "2035-03-26": "Easter Monday", + "2035-04-05": "Ching Ming Festival", + "2035-05-01": "Labour Day", + "2035-05-15": "The Birthday of the Buddha", + "2035-06-11": "The day following Tuen Ng Festival", + "2035-07-02": "The day following Hong Kong Special Administrative Region Establishment Day", + "2035-09-17": "The day following the Chinese Mid-Autumn Festival", + "2035-10-01": "National Day", + "2035-10-09": "Chung Yeung Festival", + "2035-12-25": "Christmas Day", + "2035-12-26": "The first weekday after Christmas Day", + "2036-01-01": "The first day of January", + "2036-01-28": "Lunar New Year's Day", + "2036-01-29": "The second day of Lunar New Year", + "2036-01-30": "The third day of Lunar New Year", + "2036-04-04": "Ching Ming Festival", + "2036-04-11": "Good Friday", + "2036-04-12": "The day following Good Friday", + "2036-04-14": "Easter Monday", + "2036-05-01": "Labour Day", + "2036-05-03": "The Birthday of the Buddha", + "2036-05-30": "Tuen Ng Festival", + "2036-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2036-10-01": "National Day", + "2036-10-06": "The second day of the Chinese Mid-Autumn Festival (Monday)", + "2036-10-27": "Chung Yeung Festival", + "2036-12-25": "Christmas Day", + "2036-12-26": "The first weekday after Christmas Day", + "2037-01-01": "The first day of January", + "2037-02-16": "The second day of Lunar New Year", + "2037-02-17": "The third day of Lunar New Year", + "2037-02-18": "The fourth day of Lunar New Year", + "2037-04-03": "Good Friday", + "2037-04-04": "Ching Ming Festival; The day following Good Friday", + "2037-04-06": "Easter Monday", + "2037-05-01": "Labour Day", + "2037-05-22": "The Birthday of the Buddha", + "2037-06-18": "Tuen Ng Festival", + "2037-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2037-09-25": "The day following the Chinese Mid-Autumn Festival", + "2037-10-01": "National Day", + "2037-10-17": "Chung Yeung Festival", + "2037-12-25": "Christmas Day", + "2037-12-26": "The first weekday after Christmas Day", + "2038-01-01": "The first day of January", + "2038-02-04": "Lunar New Year's Day", + "2038-02-05": "The second day of Lunar New Year", + "2038-02-06": "The third day of Lunar New Year", + "2038-04-05": "Ching Ming Festival", + "2038-04-23": "Good Friday", + "2038-04-24": "The day following Good Friday", + "2038-04-26": "Easter Monday", + "2038-05-01": "Labour Day", + "2038-05-11": "The Birthday of the Buddha", + "2038-06-07": "Tuen Ng Festival", + "2038-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2038-09-14": "The day following the Chinese Mid-Autumn Festival", + "2038-10-01": "National Day", + "2038-10-07": "Chung Yeung Festival", + "2038-12-25": "Christmas Day", + "2038-12-27": "The first weekday after Christmas Day", + "2039-01-01": "The first day of January", + "2039-01-24": "Lunar New Year's Day", + "2039-01-25": "The second day of Lunar New Year", + "2039-01-26": "The third day of Lunar New Year", + "2039-04-05": "Ching Ming Festival", + "2039-04-08": "Good Friday", + "2039-04-09": "The day following Good Friday", + "2039-04-11": "Easter Monday", + "2039-04-30": "The Birthday of the Buddha", + "2039-05-02": "The day following Labour Day", + "2039-05-27": "Tuen Ng Festival", + "2039-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2039-10-01": "National Day", + "2039-10-03": "The day following the Chinese Mid-Autumn Festival", + "2039-10-26": "Chung Yeung Festival", + "2039-12-26": "The first weekday after Christmas Day", + "2039-12-27": "The second weekday after Christmas Day", + "2040-01-02": "The day following The first day of January", + "2040-02-13": "The second day of Lunar New Year", + "2040-02-14": "The third day of Lunar New Year", + "2040-02-15": "The fourth day of Lunar New Year", + "2040-03-30": "Good Friday", + "2040-03-31": "The day following Good Friday", + "2040-04-02": "Easter Monday", + "2040-04-04": "Ching Ming Festival", + "2040-05-01": "Labour Day", + "2040-05-18": "The Birthday of the Buddha", + "2040-06-14": "Tuen Ng Festival", + "2040-07-02": "The day following Hong Kong Special Administrative Region Establishment Day", + "2040-09-21": "The day following the Chinese Mid-Autumn Festival", + "2040-10-01": "National Day", + "2040-10-15": "The day following Chung Yeung Festival", + "2040-12-25": "Christmas Day", + "2040-12-26": "The first weekday after Christmas Day", + "2041-01-01": "The first day of January", + "2041-02-01": "Lunar New Year's Day", + "2041-02-02": "The second day of Lunar New Year", + "2041-02-04": "The fourth day of Lunar New Year", + "2041-04-04": "Ching Ming Festival", + "2041-04-19": "Good Friday", + "2041-04-20": "The day following Good Friday", + "2041-04-22": "Easter Monday", + "2041-05-01": "Labour Day", + "2041-05-07": "The Birthday of the Buddha", + "2041-06-03": "Tuen Ng Festival", + "2041-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2041-09-11": "The day following the Chinese Mid-Autumn Festival", + "2041-10-01": "National Day", + "2041-10-03": "Chung Yeung Festival", + "2041-12-25": "Christmas Day", + "2041-12-26": "The first weekday after Christmas Day", + "2042-01-01": "The first day of January", + "2042-01-22": "Lunar New Year's Day", + "2042-01-23": "The second day of Lunar New Year", + "2042-01-24": "The third day of Lunar New Year", + "2042-04-04": "Good Friday", + "2042-04-05": "Ching Ming Festival; The day following Good Friday", + "2042-04-07": "Easter Monday", + "2042-05-01": "Labour Day", + "2042-05-26": "The Birthday of the Buddha", + "2042-06-23": "The day following Tuen Ng Festival", + "2042-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2042-09-29": "The day following the Chinese Mid-Autumn Festival", + "2042-10-01": "National Day", + "2042-10-22": "Chung Yeung Festival", + "2042-12-25": "Christmas Day", + "2042-12-26": "The first weekday after Christmas Day", + "2043-01-01": "The first day of January", + "2043-02-10": "Lunar New Year's Day", + "2043-02-11": "The second day of Lunar New Year", + "2043-02-12": "The third day of Lunar New Year", + "2043-03-27": "Good Friday", + "2043-03-28": "The day following Good Friday", + "2043-03-30": "Easter Monday", + "2043-04-06": "The day following Ching Ming Festival", + "2043-05-01": "Labour Day", + "2043-05-16": "The Birthday of the Buddha", + "2043-06-11": "Tuen Ng Festival", + "2043-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2043-09-18": "The day following the Chinese Mid-Autumn Festival", + "2043-10-01": "National Day", + "2043-10-12": "The day following Chung Yeung Festival", + "2043-12-25": "Christmas Day", + "2043-12-26": "The first weekday after Christmas Day", + "2044-01-01": "The first day of January", + "2044-01-30": "Lunar New Year's Day", + "2044-02-01": "The third day of Lunar New Year", + "2044-02-02": "The fourth day of Lunar New Year", + "2044-04-04": "Ching Ming Festival", + "2044-04-15": "Good Friday", + "2044-04-16": "The day following Good Friday", + "2044-04-18": "Easter Monday", + "2044-05-02": "The day following Labour Day", + "2044-05-05": "The Birthday of the Buddha", + "2044-05-31": "Tuen Ng Festival", + "2044-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2044-10-01": "National Day", + "2044-10-06": "The day following the Chinese Mid-Autumn Festival", + "2044-10-29": "Chung Yeung Festival", + "2044-12-26": "The first weekday after Christmas Day", + "2044-12-27": "The second weekday after Christmas Day", + "2045-01-02": "The day following The first day of January", + "2045-02-17": "Lunar New Year's Day", + "2045-02-18": "The second day of Lunar New Year", + "2045-02-20": "The fourth day of Lunar New Year", + "2045-04-04": "Ching Ming Festival", + "2045-04-07": "Good Friday", + "2045-04-08": "The day following Good Friday", + "2045-04-10": "Easter Monday", + "2045-05-01": "Labour Day", + "2045-05-24": "The Birthday of the Buddha", + "2045-06-19": "Tuen Ng Festival", + "2045-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2045-09-26": "The day following the Chinese Mid-Autumn Festival", + "2045-10-02": "The day following National Day", + "2045-10-18": "Chung Yeung Festival", + "2045-12-25": "Christmas Day", + "2045-12-26": "The first weekday after Christmas Day", + "2046-01-01": "The first day of January", + "2046-02-06": "Lunar New Year's Day", + "2046-02-07": "The second day of Lunar New Year", + "2046-02-08": "The third day of Lunar New Year", + "2046-03-23": "Good Friday", + "2046-03-24": "The day following Good Friday", + "2046-03-26": "Easter Monday", + "2046-04-05": "Ching Ming Festival", + "2046-05-01": "Labour Day", + "2046-05-14": "The day following The Birthday of the Buddha", + "2046-06-08": "Tuen Ng Festival", + "2046-07-02": "The day following Hong Kong Special Administrative Region Establishment Day", + "2046-09-17": "The second day of the Chinese Mid-Autumn Festival (Monday)", + "2046-10-01": "National Day", + "2046-10-08": "Chung Yeung Festival", + "2046-12-25": "Christmas Day", + "2046-12-26": "The first weekday after Christmas Day", + "2047-01-01": "The first day of January", + "2047-01-26": "Lunar New Year's Day", + "2047-01-28": "The third day of Lunar New Year", + "2047-01-29": "The fourth day of Lunar New Year", + "2047-04-05": "Ching Ming Festival", + "2047-04-12": "Good Friday", + "2047-04-13": "The day following Good Friday", + "2047-04-15": "Easter Monday", + "2047-05-01": "Labour Day", + "2047-05-02": "The Birthday of the Buddha", + "2047-05-29": "Tuen Ng Festival", + "2047-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2047-10-01": "National Day", + "2047-10-05": "The day following the Chinese Mid-Autumn Festival", + "2047-10-28": "The day following Chung Yeung Festival", + "2047-12-25": "Christmas Day", + "2047-12-26": "The first weekday after Christmas Day", + "2048-01-01": "The first day of January", + "2048-02-14": "Lunar New Year's Day", + "2048-02-15": "The second day of Lunar New Year", + "2048-02-17": "The fourth day of Lunar New Year", + "2048-04-03": "Good Friday", + "2048-04-04": "Ching Ming Festival; The day following Good Friday", + "2048-04-06": "Easter Monday", + "2048-05-01": "Labour Day", + "2048-05-20": "The Birthday of the Buddha", + "2048-06-15": "Tuen Ng Festival", + "2048-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2048-09-23": "The day following the Chinese Mid-Autumn Festival", + "2048-10-01": "National Day", + "2048-10-16": "Chung Yeung Festival", + "2048-12-25": "Christmas Day", + "2048-12-26": "The first weekday after Christmas Day", + "2049-01-01": "The first day of January", + "2049-02-02": "Lunar New Year's Day", + "2049-02-03": "The second day of Lunar New Year", + "2049-02-04": "The third day of Lunar New Year", + "2049-04-05": "The day following Ching Ming Festival", + "2049-04-16": "Good Friday", + "2049-04-17": "The day following Good Friday", + "2049-04-19": "Easter Monday", + "2049-05-01": "Labour Day", + "2049-05-10": "The day following The Birthday of the Buddha", + "2049-06-04": "Tuen Ng Festival", + "2049-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2049-09-13": "The second day of the Chinese Mid-Autumn Festival (Monday)", + "2049-10-01": "National Day", + "2049-10-05": "Chung Yeung Festival", + "2049-12-25": "Christmas Day", + "2049-12-27": "The first weekday after Christmas Day", + "2050-01-01": "The first day of January", + "2050-01-24": "The second day of Lunar New Year", + "2050-01-25": "The third day of Lunar New Year", + "2050-01-26": "The fourth day of Lunar New Year", + "2050-04-05": "Ching Ming Festival", + "2050-04-08": "Good Friday", + "2050-04-09": "The day following Good Friday", + "2050-04-11": "Easter Monday", + "2050-05-02": "The day following Labour Day", + "2050-05-28": "The Birthday of the Buddha", + "2050-06-23": "Tuen Ng Festival", + "2050-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2050-10-01": "The day following the Chinese Mid-Autumn Festival", + "2050-10-03": "The day following National Day", + "2050-10-24": "Chung Yeung Festival", + "2050-12-26": "The first weekday after Christmas Day", + "2050-12-27": "The second weekday after Christmas Day" +} diff --git a/snapshots/countries/HN.json b/snapshots/countries/HN.json new file mode 100644 index 000000000..a96feaf24 --- /dev/null +++ b/snapshots/countries/HN.json @@ -0,0 +1,1102 @@ +{ + "1950-01-01": "New Year's Day", + "1950-04-06": "Maundy Thursday", + "1950-04-07": "Good Friday", + "1950-04-08": "Holy Saturday", + "1950-04-14": "Panamerican Day", + "1950-05-01": "Labor Day", + "1950-09-15": "Independence Day", + "1950-10-03": "Morazan's Day", + "1950-10-12": "Columbus Day", + "1950-10-21": "Army Day", + "1950-12-25": "Christmas", + "1951-01-01": "New Year's Day", + "1951-03-22": "Maundy Thursday", + "1951-03-23": "Good Friday", + "1951-03-24": "Holy Saturday", + "1951-04-14": "Panamerican Day", + "1951-05-01": "Labor Day", + "1951-09-15": "Independence Day", + "1951-10-03": "Morazan's Day", + "1951-10-12": "Columbus Day", + "1951-10-21": "Army Day", + "1951-12-25": "Christmas", + "1952-01-01": "New Year's Day", + "1952-04-10": "Maundy Thursday", + "1952-04-11": "Good Friday", + "1952-04-12": "Holy Saturday", + "1952-04-14": "Panamerican Day", + "1952-05-01": "Labor Day", + "1952-09-15": "Independence Day", + "1952-10-03": "Morazan's Day", + "1952-10-12": "Columbus Day", + "1952-10-21": "Army Day", + "1952-12-25": "Christmas", + "1953-01-01": "New Year's Day", + "1953-04-02": "Maundy Thursday", + "1953-04-03": "Good Friday", + "1953-04-04": "Holy Saturday", + "1953-04-14": "Panamerican Day", + "1953-05-01": "Labor Day", + "1953-09-15": "Independence Day", + "1953-10-03": "Morazan's Day", + "1953-10-12": "Columbus Day", + "1953-10-21": "Army Day", + "1953-12-25": "Christmas", + "1954-01-01": "New Year's Day", + "1954-04-14": "Panamerican Day", + "1954-04-15": "Maundy Thursday", + "1954-04-16": "Good Friday", + "1954-04-17": "Holy Saturday", + "1954-05-01": "Labor Day", + "1954-09-15": "Independence Day", + "1954-10-03": "Morazan's Day", + "1954-10-12": "Columbus Day", + "1954-10-21": "Army Day", + "1954-12-25": "Christmas", + "1955-01-01": "New Year's Day", + "1955-04-07": "Maundy Thursday", + "1955-04-08": "Good Friday", + "1955-04-09": "Holy Saturday", + "1955-04-14": "Panamerican Day", + "1955-05-01": "Labor Day", + "1955-09-15": "Independence Day", + "1955-10-03": "Morazan's Day", + "1955-10-12": "Columbus Day", + "1955-10-21": "Army Day", + "1955-12-25": "Christmas", + "1956-01-01": "New Year's Day", + "1956-03-29": "Maundy Thursday", + "1956-03-30": "Good Friday", + "1956-03-31": "Holy Saturday", + "1956-04-14": "Panamerican Day", + "1956-05-01": "Labor Day", + "1956-09-15": "Independence Day", + "1956-10-03": "Morazan's Day", + "1956-10-12": "Columbus Day", + "1956-10-21": "Army Day", + "1956-12-25": "Christmas", + "1957-01-01": "New Year's Day", + "1957-04-14": "Panamerican Day", + "1957-04-18": "Maundy Thursday", + "1957-04-19": "Good Friday", + "1957-04-20": "Holy Saturday", + "1957-05-01": "Labor Day", + "1957-09-15": "Independence Day", + "1957-10-03": "Morazan's Day", + "1957-10-12": "Columbus Day", + "1957-10-21": "Army Day", + "1957-12-25": "Christmas", + "1958-01-01": "New Year's Day", + "1958-04-03": "Maundy Thursday", + "1958-04-04": "Good Friday", + "1958-04-05": "Holy Saturday", + "1958-04-14": "Panamerican Day", + "1958-05-01": "Labor Day", + "1958-09-15": "Independence Day", + "1958-10-03": "Morazan's Day", + "1958-10-12": "Columbus Day", + "1958-10-21": "Army Day", + "1958-12-25": "Christmas", + "1959-01-01": "New Year's Day", + "1959-03-26": "Maundy Thursday", + "1959-03-27": "Good Friday", + "1959-03-28": "Holy Saturday", + "1959-04-14": "Panamerican Day", + "1959-05-01": "Labor Day", + "1959-09-15": "Independence Day", + "1959-10-03": "Morazan's Day", + "1959-10-12": "Columbus Day", + "1959-10-21": "Army Day", + "1959-12-25": "Christmas", + "1960-01-01": "New Year's Day", + "1960-04-14": "Maundy Thursday; Panamerican Day", + "1960-04-15": "Good Friday", + "1960-04-16": "Holy Saturday", + "1960-05-01": "Labor Day", + "1960-09-15": "Independence Day", + "1960-10-03": "Morazan's Day", + "1960-10-12": "Columbus Day", + "1960-10-21": "Army Day", + "1960-12-25": "Christmas", + "1961-01-01": "New Year's Day", + "1961-03-30": "Maundy Thursday", + "1961-03-31": "Good Friday", + "1961-04-01": "Holy Saturday", + "1961-04-14": "Panamerican Day", + "1961-05-01": "Labor Day", + "1961-09-15": "Independence Day", + "1961-10-03": "Morazan's Day", + "1961-10-12": "Columbus Day", + "1961-10-21": "Army Day", + "1961-12-25": "Christmas", + "1962-01-01": "New Year's Day", + "1962-04-14": "Panamerican Day", + "1962-04-19": "Maundy Thursday", + "1962-04-20": "Good Friday", + "1962-04-21": "Holy Saturday", + "1962-05-01": "Labor Day", + "1962-09-15": "Independence Day", + "1962-10-03": "Morazan's Day", + "1962-10-12": "Columbus Day", + "1962-10-21": "Army Day", + "1962-12-25": "Christmas", + "1963-01-01": "New Year's Day", + "1963-04-11": "Maundy Thursday", + "1963-04-12": "Good Friday", + "1963-04-13": "Holy Saturday", + "1963-04-14": "Panamerican Day", + "1963-05-01": "Labor Day", + "1963-09-15": "Independence Day", + "1963-10-03": "Morazan's Day", + "1963-10-12": "Columbus Day", + "1963-10-21": "Army Day", + "1963-12-25": "Christmas", + "1964-01-01": "New Year's Day", + "1964-03-26": "Maundy Thursday", + "1964-03-27": "Good Friday", + "1964-03-28": "Holy Saturday", + "1964-04-14": "Panamerican Day", + "1964-05-01": "Labor Day", + "1964-09-15": "Independence Day", + "1964-10-03": "Morazan's Day", + "1964-10-12": "Columbus Day", + "1964-10-21": "Army Day", + "1964-12-25": "Christmas", + "1965-01-01": "New Year's Day", + "1965-04-14": "Panamerican Day", + "1965-04-15": "Maundy Thursday", + "1965-04-16": "Good Friday", + "1965-04-17": "Holy Saturday", + "1965-05-01": "Labor Day", + "1965-09-15": "Independence Day", + "1965-10-03": "Morazan's Day", + "1965-10-12": "Columbus Day", + "1965-10-21": "Army Day", + "1965-12-25": "Christmas", + "1966-01-01": "New Year's Day", + "1966-04-07": "Maundy Thursday", + "1966-04-08": "Good Friday", + "1966-04-09": "Holy Saturday", + "1966-04-14": "Panamerican Day", + "1966-05-01": "Labor Day", + "1966-09-15": "Independence Day", + "1966-10-03": "Morazan's Day", + "1966-10-12": "Columbus Day", + "1966-10-21": "Army Day", + "1966-12-25": "Christmas", + "1967-01-01": "New Year's Day", + "1967-03-23": "Maundy Thursday", + "1967-03-24": "Good Friday", + "1967-03-25": "Holy Saturday", + "1967-04-14": "Panamerican Day", + "1967-05-01": "Labor Day", + "1967-09-15": "Independence Day", + "1967-10-03": "Morazan's Day", + "1967-10-12": "Columbus Day", + "1967-10-21": "Army Day", + "1967-12-25": "Christmas", + "1968-01-01": "New Year's Day", + "1968-04-11": "Maundy Thursday", + "1968-04-12": "Good Friday", + "1968-04-13": "Holy Saturday", + "1968-04-14": "Panamerican Day", + "1968-05-01": "Labor Day", + "1968-09-15": "Independence Day", + "1968-10-03": "Morazan's Day", + "1968-10-12": "Columbus Day", + "1968-10-21": "Army Day", + "1968-12-25": "Christmas", + "1969-01-01": "New Year's Day", + "1969-04-03": "Maundy Thursday", + "1969-04-04": "Good Friday", + "1969-04-05": "Holy Saturday", + "1969-04-14": "Panamerican Day", + "1969-05-01": "Labor Day", + "1969-09-15": "Independence Day", + "1969-10-03": "Morazan's Day", + "1969-10-12": "Columbus Day", + "1969-10-21": "Army Day", + "1969-12-25": "Christmas", + "1970-01-01": "New Year's Day", + "1970-03-26": "Maundy Thursday", + "1970-03-27": "Good Friday", + "1970-03-28": "Holy Saturday", + "1970-04-14": "Panamerican Day", + "1970-05-01": "Labor Day", + "1970-09-15": "Independence Day", + "1970-10-03": "Morazan's Day", + "1970-10-12": "Columbus Day", + "1970-10-21": "Army Day", + "1970-12-25": "Christmas", + "1971-01-01": "New Year's Day", + "1971-04-08": "Maundy Thursday", + "1971-04-09": "Good Friday", + "1971-04-10": "Holy Saturday", + "1971-04-14": "Panamerican Day", + "1971-05-01": "Labor Day", + "1971-09-15": "Independence Day", + "1971-10-03": "Morazan's Day", + "1971-10-12": "Columbus Day", + "1971-10-21": "Army Day", + "1971-12-25": "Christmas", + "1972-01-01": "New Year's Day", + "1972-03-30": "Maundy Thursday", + "1972-03-31": "Good Friday", + "1972-04-01": "Holy Saturday", + "1972-04-14": "Panamerican Day", + "1972-05-01": "Labor Day", + "1972-09-15": "Independence Day", + "1972-10-03": "Morazan's Day", + "1972-10-12": "Columbus Day", + "1972-10-21": "Army Day", + "1972-12-25": "Christmas", + "1973-01-01": "New Year's Day", + "1973-04-14": "Panamerican Day", + "1973-04-19": "Maundy Thursday", + "1973-04-20": "Good Friday", + "1973-04-21": "Holy Saturday", + "1973-05-01": "Labor Day", + "1973-09-15": "Independence Day", + "1973-10-03": "Morazan's Day", + "1973-10-12": "Columbus Day", + "1973-10-21": "Army Day", + "1973-12-25": "Christmas", + "1974-01-01": "New Year's Day", + "1974-04-11": "Maundy Thursday", + "1974-04-12": "Good Friday", + "1974-04-13": "Holy Saturday", + "1974-04-14": "Panamerican Day", + "1974-05-01": "Labor Day", + "1974-09-15": "Independence Day", + "1974-10-03": "Morazan's Day", + "1974-10-12": "Columbus Day", + "1974-10-21": "Army Day", + "1974-12-25": "Christmas", + "1975-01-01": "New Year's Day", + "1975-03-27": "Maundy Thursday", + "1975-03-28": "Good Friday", + "1975-03-29": "Holy Saturday", + "1975-04-14": "Panamerican Day", + "1975-05-01": "Labor Day", + "1975-09-15": "Independence Day", + "1975-10-03": "Morazan's Day", + "1975-10-12": "Columbus Day", + "1975-10-21": "Army Day", + "1975-12-25": "Christmas", + "1976-01-01": "New Year's Day", + "1976-04-14": "Panamerican Day", + "1976-04-15": "Maundy Thursday", + "1976-04-16": "Good Friday", + "1976-04-17": "Holy Saturday", + "1976-05-01": "Labor Day", + "1976-09-15": "Independence Day", + "1976-10-03": "Morazan's Day", + "1976-10-12": "Columbus Day", + "1976-10-21": "Army Day", + "1976-12-25": "Christmas", + "1977-01-01": "New Year's Day", + "1977-04-07": "Maundy Thursday", + "1977-04-08": "Good Friday", + "1977-04-09": "Holy Saturday", + "1977-04-14": "Panamerican Day", + "1977-05-01": "Labor Day", + "1977-09-15": "Independence Day", + "1977-10-03": "Morazan's Day", + "1977-10-12": "Columbus Day", + "1977-10-21": "Army Day", + "1977-12-25": "Christmas", + "1978-01-01": "New Year's Day", + "1978-03-23": "Maundy Thursday", + "1978-03-24": "Good Friday", + "1978-03-25": "Holy Saturday", + "1978-04-14": "Panamerican Day", + "1978-05-01": "Labor Day", + "1978-09-15": "Independence Day", + "1978-10-03": "Morazan's Day", + "1978-10-12": "Columbus Day", + "1978-10-21": "Army Day", + "1978-12-25": "Christmas", + "1979-01-01": "New Year's Day", + "1979-04-12": "Maundy Thursday", + "1979-04-13": "Good Friday", + "1979-04-14": "Holy Saturday; Panamerican Day", + "1979-05-01": "Labor Day", + "1979-09-15": "Independence Day", + "1979-10-03": "Morazan's Day", + "1979-10-12": "Columbus Day", + "1979-10-21": "Army Day", + "1979-12-25": "Christmas", + "1980-01-01": "New Year's Day", + "1980-04-03": "Maundy Thursday", + "1980-04-04": "Good Friday", + "1980-04-05": "Holy Saturday", + "1980-04-14": "Panamerican Day", + "1980-05-01": "Labor Day", + "1980-09-15": "Independence Day", + "1980-10-03": "Morazan's Day", + "1980-10-12": "Columbus Day", + "1980-10-21": "Army Day", + "1980-12-25": "Christmas", + "1981-01-01": "New Year's Day", + "1981-04-14": "Panamerican Day", + "1981-04-16": "Maundy Thursday", + "1981-04-17": "Good Friday", + "1981-04-18": "Holy Saturday", + "1981-05-01": "Labor Day", + "1981-09-15": "Independence Day", + "1981-10-03": "Morazan's Day", + "1981-10-12": "Columbus Day", + "1981-10-21": "Army Day", + "1981-12-25": "Christmas", + "1982-01-01": "New Year's Day", + "1982-04-08": "Maundy Thursday", + "1982-04-09": "Good Friday", + "1982-04-10": "Holy Saturday", + "1982-04-14": "Panamerican Day", + "1982-05-01": "Labor Day", + "1982-09-15": "Independence Day", + "1982-10-03": "Morazan's Day", + "1982-10-12": "Columbus Day", + "1982-10-21": "Army Day", + "1982-12-25": "Christmas", + "1983-01-01": "New Year's Day", + "1983-03-31": "Maundy Thursday", + "1983-04-01": "Good Friday", + "1983-04-02": "Holy Saturday", + "1983-04-14": "Panamerican Day", + "1983-05-01": "Labor Day", + "1983-09-15": "Independence Day", + "1983-10-03": "Morazan's Day", + "1983-10-12": "Columbus Day", + "1983-10-21": "Army Day", + "1983-12-25": "Christmas", + "1984-01-01": "New Year's Day", + "1984-04-14": "Panamerican Day", + "1984-04-19": "Maundy Thursday", + "1984-04-20": "Good Friday", + "1984-04-21": "Holy Saturday", + "1984-05-01": "Labor Day", + "1984-09-15": "Independence Day", + "1984-10-03": "Morazan's Day", + "1984-10-12": "Columbus Day", + "1984-10-21": "Army Day", + "1984-12-25": "Christmas", + "1985-01-01": "New Year's Day", + "1985-04-04": "Maundy Thursday", + "1985-04-05": "Good Friday", + "1985-04-06": "Holy Saturday", + "1985-04-14": "Panamerican Day", + "1985-05-01": "Labor Day", + "1985-09-15": "Independence Day", + "1985-10-03": "Morazan's Day", + "1985-10-12": "Columbus Day", + "1985-10-21": "Army Day", + "1985-12-25": "Christmas", + "1986-01-01": "New Year's Day", + "1986-03-27": "Maundy Thursday", + "1986-03-28": "Good Friday", + "1986-03-29": "Holy Saturday", + "1986-04-14": "Panamerican Day", + "1986-05-01": "Labor Day", + "1986-09-15": "Independence Day", + "1986-10-03": "Morazan's Day", + "1986-10-12": "Columbus Day", + "1986-10-21": "Army Day", + "1986-12-25": "Christmas", + "1987-01-01": "New Year's Day", + "1987-04-14": "Panamerican Day", + "1987-04-16": "Maundy Thursday", + "1987-04-17": "Good Friday", + "1987-04-18": "Holy Saturday", + "1987-05-01": "Labor Day", + "1987-09-15": "Independence Day", + "1987-10-03": "Morazan's Day", + "1987-10-12": "Columbus Day", + "1987-10-21": "Army Day", + "1987-12-25": "Christmas", + "1988-01-01": "New Year's Day", + "1988-03-31": "Maundy Thursday", + "1988-04-01": "Good Friday", + "1988-04-02": "Holy Saturday", + "1988-04-14": "Panamerican Day", + "1988-05-01": "Labor Day", + "1988-09-15": "Independence Day", + "1988-10-03": "Morazan's Day", + "1988-10-12": "Columbus Day", + "1988-10-21": "Army Day", + "1988-12-25": "Christmas", + "1989-01-01": "New Year's Day", + "1989-03-23": "Maundy Thursday", + "1989-03-24": "Good Friday", + "1989-03-25": "Holy Saturday", + "1989-04-14": "Panamerican Day", + "1989-05-01": "Labor Day", + "1989-09-15": "Independence Day", + "1989-10-03": "Morazan's Day", + "1989-10-12": "Columbus Day", + "1989-10-21": "Army Day", + "1989-12-25": "Christmas", + "1990-01-01": "New Year's Day", + "1990-04-12": "Maundy Thursday", + "1990-04-13": "Good Friday", + "1990-04-14": "Holy Saturday; Panamerican Day", + "1990-05-01": "Labor Day", + "1990-09-15": "Independence Day", + "1990-10-03": "Morazan's Day", + "1990-10-12": "Columbus Day", + "1990-10-21": "Army Day", + "1990-12-25": "Christmas", + "1991-01-01": "New Year's Day", + "1991-03-28": "Maundy Thursday", + "1991-03-29": "Good Friday", + "1991-03-30": "Holy Saturday", + "1991-04-14": "Panamerican Day", + "1991-05-01": "Labor Day", + "1991-09-15": "Independence Day", + "1991-10-03": "Morazan's Day", + "1991-10-12": "Columbus Day", + "1991-10-21": "Army Day", + "1991-12-25": "Christmas", + "1992-01-01": "New Year's Day", + "1992-04-14": "Panamerican Day", + "1992-04-16": "Maundy Thursday", + "1992-04-17": "Good Friday", + "1992-04-18": "Holy Saturday", + "1992-05-01": "Labor Day", + "1992-09-15": "Independence Day", + "1992-10-03": "Morazan's Day", + "1992-10-12": "Columbus Day", + "1992-10-21": "Army Day", + "1992-12-25": "Christmas", + "1993-01-01": "New Year's Day", + "1993-04-08": "Maundy Thursday", + "1993-04-09": "Good Friday", + "1993-04-10": "Holy Saturday", + "1993-04-14": "Panamerican Day", + "1993-05-01": "Labor Day", + "1993-09-15": "Independence Day", + "1993-10-03": "Morazan's Day", + "1993-10-12": "Columbus Day", + "1993-10-21": "Army Day", + "1993-12-25": "Christmas", + "1994-01-01": "New Year's Day", + "1994-03-31": "Maundy Thursday", + "1994-04-01": "Good Friday", + "1994-04-02": "Holy Saturday", + "1994-04-14": "Panamerican Day", + "1994-05-01": "Labor Day", + "1994-09-15": "Independence Day", + "1994-10-03": "Morazan's Day", + "1994-10-12": "Columbus Day", + "1994-10-21": "Army Day", + "1994-12-25": "Christmas", + "1995-01-01": "New Year's Day", + "1995-04-13": "Maundy Thursday", + "1995-04-14": "Good Friday; Panamerican Day", + "1995-04-15": "Holy Saturday", + "1995-05-01": "Labor Day", + "1995-09-15": "Independence Day", + "1995-10-03": "Morazan's Day", + "1995-10-12": "Columbus Day", + "1995-10-21": "Army Day", + "1995-12-25": "Christmas", + "1996-01-01": "New Year's Day", + "1996-04-04": "Maundy Thursday", + "1996-04-05": "Good Friday", + "1996-04-06": "Holy Saturday", + "1996-04-14": "Panamerican Day", + "1996-05-01": "Labor Day", + "1996-09-15": "Independence Day", + "1996-10-03": "Morazan's Day", + "1996-10-12": "Columbus Day", + "1996-10-21": "Army Day", + "1996-12-25": "Christmas", + "1997-01-01": "New Year's Day", + "1997-03-27": "Maundy Thursday", + "1997-03-28": "Good Friday", + "1997-03-29": "Holy Saturday", + "1997-04-14": "Panamerican Day", + "1997-05-01": "Labor Day", + "1997-09-15": "Independence Day", + "1997-10-03": "Morazan's Day", + "1997-10-12": "Columbus Day", + "1997-10-21": "Army Day", + "1997-12-25": "Christmas", + "1998-01-01": "New Year's Day", + "1998-04-09": "Maundy Thursday", + "1998-04-10": "Good Friday", + "1998-04-11": "Holy Saturday", + "1998-04-14": "Panamerican Day", + "1998-05-01": "Labor Day", + "1998-09-15": "Independence Day", + "1998-10-03": "Morazan's Day", + "1998-10-12": "Columbus Day", + "1998-10-21": "Army Day", + "1998-12-25": "Christmas", + "1999-01-01": "New Year's Day", + "1999-04-01": "Maundy Thursday", + "1999-04-02": "Good Friday", + "1999-04-03": "Holy Saturday", + "1999-04-14": "Panamerican Day", + "1999-05-01": "Labor Day", + "1999-09-15": "Independence Day", + "1999-10-03": "Morazan's Day", + "1999-10-12": "Columbus Day", + "1999-10-21": "Army Day", + "1999-12-25": "Christmas", + "2000-01-01": "New Year's Day", + "2000-04-14": "Panamerican Day", + "2000-04-20": "Maundy Thursday", + "2000-04-21": "Good Friday", + "2000-04-22": "Holy Saturday", + "2000-05-01": "Labor Day", + "2000-09-15": "Independence Day", + "2000-10-03": "Morazan's Day", + "2000-10-12": "Columbus Day", + "2000-10-21": "Army Day", + "2000-12-25": "Christmas", + "2001-01-01": "New Year's Day", + "2001-04-12": "Maundy Thursday", + "2001-04-13": "Good Friday", + "2001-04-14": "Holy Saturday; Panamerican Day", + "2001-05-01": "Labor Day", + "2001-09-15": "Independence Day", + "2001-10-03": "Morazan's Day", + "2001-10-12": "Columbus Day", + "2001-10-21": "Army Day", + "2001-12-25": "Christmas", + "2002-01-01": "New Year's Day", + "2002-03-28": "Maundy Thursday", + "2002-03-29": "Good Friday", + "2002-03-30": "Holy Saturday", + "2002-04-14": "Panamerican Day", + "2002-05-01": "Labor Day", + "2002-09-15": "Independence Day", + "2002-10-03": "Morazan's Day", + "2002-10-12": "Columbus Day", + "2002-10-21": "Army Day", + "2002-12-25": "Christmas", + "2003-01-01": "New Year's Day", + "2003-04-14": "Panamerican Day", + "2003-04-17": "Maundy Thursday", + "2003-04-18": "Good Friday", + "2003-04-19": "Holy Saturday", + "2003-05-01": "Labor Day", + "2003-09-15": "Independence Day", + "2003-10-03": "Morazan's Day", + "2003-10-12": "Columbus Day", + "2003-10-21": "Army Day", + "2003-12-25": "Christmas", + "2004-01-01": "New Year's Day", + "2004-04-08": "Maundy Thursday", + "2004-04-09": "Good Friday", + "2004-04-10": "Holy Saturday", + "2004-04-14": "Panamerican Day", + "2004-05-01": "Labor Day", + "2004-09-15": "Independence Day", + "2004-10-03": "Morazan's Day", + "2004-10-12": "Columbus Day", + "2004-10-21": "Army Day", + "2004-12-25": "Christmas", + "2005-01-01": "New Year's Day", + "2005-03-24": "Maundy Thursday", + "2005-03-25": "Good Friday", + "2005-03-26": "Holy Saturday", + "2005-04-14": "Panamerican Day", + "2005-05-01": "Labor Day", + "2005-09-15": "Independence Day", + "2005-10-03": "Morazan's Day", + "2005-10-12": "Columbus Day", + "2005-10-21": "Army Day", + "2005-12-25": "Christmas", + "2006-01-01": "New Year's Day", + "2006-04-13": "Maundy Thursday", + "2006-04-14": "Good Friday; Panamerican Day", + "2006-04-15": "Holy Saturday", + "2006-05-01": "Labor Day", + "2006-09-15": "Independence Day", + "2006-10-03": "Morazan's Day", + "2006-10-12": "Columbus Day", + "2006-10-21": "Army Day", + "2006-12-25": "Christmas", + "2007-01-01": "New Year's Day", + "2007-04-05": "Maundy Thursday", + "2007-04-06": "Good Friday", + "2007-04-07": "Holy Saturday", + "2007-04-14": "Panamerican Day", + "2007-05-01": "Labor Day", + "2007-09-15": "Independence Day", + "2007-10-03": "Morazan's Day", + "2007-10-12": "Columbus Day", + "2007-10-21": "Army Day", + "2007-12-25": "Christmas", + "2008-01-01": "New Year's Day", + "2008-03-20": "Maundy Thursday", + "2008-03-21": "Good Friday", + "2008-03-22": "Holy Saturday", + "2008-04-14": "Panamerican Day", + "2008-05-01": "Labor Day", + "2008-09-15": "Independence Day", + "2008-10-03": "Morazan's Day", + "2008-10-12": "Columbus Day", + "2008-10-21": "Army Day", + "2008-12-25": "Christmas", + "2009-01-01": "New Year's Day", + "2009-04-09": "Maundy Thursday", + "2009-04-10": "Good Friday", + "2009-04-11": "Holy Saturday", + "2009-04-14": "Panamerican Day", + "2009-05-01": "Labor Day", + "2009-09-15": "Independence Day", + "2009-10-03": "Morazan's Day", + "2009-10-12": "Columbus Day", + "2009-10-21": "Army Day", + "2009-12-25": "Christmas", + "2010-01-01": "New Year's Day", + "2010-04-01": "Maundy Thursday", + "2010-04-02": "Good Friday", + "2010-04-03": "Holy Saturday", + "2010-04-14": "Panamerican Day", + "2010-05-01": "Labor Day", + "2010-09-15": "Independence Day", + "2010-10-03": "Morazan's Day", + "2010-10-12": "Columbus Day", + "2010-10-21": "Army Day", + "2010-12-25": "Christmas", + "2011-01-01": "New Year's Day", + "2011-04-14": "Panamerican Day", + "2011-04-21": "Maundy Thursday", + "2011-04-22": "Good Friday", + "2011-04-23": "Holy Saturday", + "2011-05-01": "Labor Day", + "2011-09-15": "Independence Day", + "2011-10-03": "Morazan's Day", + "2011-10-12": "Columbus Day", + "2011-10-21": "Army Day", + "2011-12-25": "Christmas", + "2012-01-01": "New Year's Day", + "2012-04-05": "Maundy Thursday", + "2012-04-06": "Good Friday", + "2012-04-07": "Holy Saturday", + "2012-04-14": "Panamerican Day", + "2012-05-01": "Labor Day", + "2012-09-15": "Independence Day", + "2012-10-03": "Morazan's Day", + "2012-10-12": "Columbus Day", + "2012-10-21": "Army Day", + "2012-12-25": "Christmas", + "2013-01-01": "New Year's Day", + "2013-03-28": "Maundy Thursday", + "2013-03-29": "Good Friday", + "2013-03-30": "Holy Saturday", + "2013-04-14": "Panamerican Day", + "2013-05-01": "Labor Day", + "2013-09-15": "Independence Day", + "2013-10-03": "Morazan's Day", + "2013-10-12": "Columbus Day", + "2013-10-21": "Army Day", + "2013-12-25": "Christmas", + "2014-01-01": "New Year's Day", + "2014-04-14": "Panamerican Day", + "2014-04-17": "Maundy Thursday", + "2014-04-18": "Good Friday", + "2014-04-19": "Holy Saturday", + "2014-05-01": "Labor Day", + "2014-09-15": "Independence Day", + "2014-10-03": "Morazan's Day", + "2014-10-12": "Columbus Day", + "2014-10-21": "Army Day", + "2014-12-25": "Christmas", + "2015-01-01": "New Year's Day", + "2015-04-02": "Maundy Thursday", + "2015-04-03": "Good Friday", + "2015-04-04": "Holy Saturday", + "2015-04-14": "Panamerican Day", + "2015-05-01": "Labor Day", + "2015-09-15": "Independence Day", + "2015-10-07": "Morazan Weekend", + "2015-10-08": "Morazan Weekend", + "2015-10-09": "Morazan Weekend", + "2015-12-25": "Christmas", + "2016-01-01": "New Year's Day", + "2016-03-24": "Maundy Thursday", + "2016-03-25": "Good Friday", + "2016-03-26": "Holy Saturday", + "2016-04-14": "Panamerican Day", + "2016-05-01": "Labor Day", + "2016-09-15": "Independence Day", + "2016-10-05": "Morazan Weekend", + "2016-10-06": "Morazan Weekend", + "2016-10-07": "Morazan Weekend", + "2016-12-25": "Christmas", + "2017-01-01": "New Year's Day", + "2017-04-13": "Maundy Thursday", + "2017-04-14": "Good Friday; Panamerican Day", + "2017-04-15": "Holy Saturday", + "2017-05-01": "Labor Day", + "2017-09-15": "Independence Day", + "2017-10-04": "Morazan Weekend", + "2017-10-05": "Morazan Weekend", + "2017-10-06": "Morazan Weekend", + "2017-12-25": "Christmas", + "2018-01-01": "New Year's Day", + "2018-03-29": "Maundy Thursday", + "2018-03-30": "Good Friday", + "2018-03-31": "Holy Saturday", + "2018-04-14": "Panamerican Day", + "2018-05-01": "Labor Day", + "2018-09-15": "Independence Day", + "2018-10-03": "Morazan Weekend", + "2018-10-04": "Morazan Weekend", + "2018-10-05": "Morazan Weekend", + "2018-12-25": "Christmas", + "2019-01-01": "New Year's Day", + "2019-04-14": "Panamerican Day", + "2019-04-18": "Maundy Thursday", + "2019-04-19": "Good Friday", + "2019-04-20": "Holy Saturday", + "2019-05-01": "Labor Day", + "2019-09-15": "Independence Day", + "2019-10-02": "Morazan Weekend", + "2019-10-03": "Morazan Weekend", + "2019-10-04": "Morazan Weekend", + "2019-12-25": "Christmas", + "2020-01-01": "New Year's Day", + "2020-04-09": "Maundy Thursday", + "2020-04-10": "Good Friday", + "2020-04-11": "Holy Saturday", + "2020-04-14": "Panamerican Day", + "2020-05-01": "Labor Day", + "2020-09-15": "Independence Day", + "2020-10-07": "Morazan Weekend", + "2020-10-08": "Morazan Weekend", + "2020-10-09": "Morazan Weekend", + "2020-12-25": "Christmas", + "2021-01-01": "New Year's Day", + "2021-04-01": "Maundy Thursday", + "2021-04-02": "Good Friday", + "2021-04-03": "Holy Saturday", + "2021-04-14": "Panamerican Day", + "2021-05-01": "Labor Day", + "2021-09-15": "Independence Day", + "2021-10-06": "Morazan Weekend", + "2021-10-07": "Morazan Weekend", + "2021-10-08": "Morazan Weekend", + "2021-12-25": "Christmas", + "2022-01-01": "New Year's Day", + "2022-04-14": "Maundy Thursday; Panamerican Day", + "2022-04-15": "Good Friday", + "2022-04-16": "Holy Saturday", + "2022-05-01": "Labor Day", + "2022-09-15": "Independence Day", + "2022-10-05": "Morazan Weekend", + "2022-10-06": "Morazan Weekend", + "2022-10-07": "Morazan Weekend", + "2022-12-25": "Christmas", + "2023-01-01": "New Year's Day", + "2023-04-06": "Maundy Thursday", + "2023-04-07": "Good Friday", + "2023-04-08": "Holy Saturday", + "2023-04-14": "Panamerican Day", + "2023-05-01": "Labor Day", + "2023-09-15": "Independence Day", + "2023-10-04": "Morazan Weekend", + "2023-10-05": "Morazan Weekend", + "2023-10-06": "Morazan Weekend", + "2023-12-25": "Christmas", + "2024-01-01": "New Year's Day", + "2024-03-28": "Maundy Thursday", + "2024-03-29": "Good Friday", + "2024-03-30": "Holy Saturday", + "2024-04-14": "Panamerican Day", + "2024-05-01": "Labor Day", + "2024-09-15": "Independence Day", + "2024-10-02": "Morazan Weekend", + "2024-10-03": "Morazan Weekend", + "2024-10-04": "Morazan Weekend", + "2024-12-25": "Christmas", + "2025-01-01": "New Year's Day", + "2025-04-14": "Panamerican Day", + "2025-04-17": "Maundy Thursday", + "2025-04-18": "Good Friday", + "2025-04-19": "Holy Saturday", + "2025-05-01": "Labor Day", + "2025-09-15": "Independence Day", + "2025-10-01": "Morazan Weekend", + "2025-10-02": "Morazan Weekend", + "2025-10-03": "Morazan Weekend", + "2025-12-25": "Christmas", + "2026-01-01": "New Year's Day", + "2026-04-02": "Maundy Thursday", + "2026-04-03": "Good Friday", + "2026-04-04": "Holy Saturday", + "2026-04-14": "Panamerican Day", + "2026-05-01": "Labor Day", + "2026-09-15": "Independence Day", + "2026-10-07": "Morazan Weekend", + "2026-10-08": "Morazan Weekend", + "2026-10-09": "Morazan Weekend", + "2026-12-25": "Christmas", + "2027-01-01": "New Year's Day", + "2027-03-25": "Maundy Thursday", + "2027-03-26": "Good Friday", + "2027-03-27": "Holy Saturday", + "2027-04-14": "Panamerican Day", + "2027-05-01": "Labor Day", + "2027-09-15": "Independence Day", + "2027-10-06": "Morazan Weekend", + "2027-10-07": "Morazan Weekend", + "2027-10-08": "Morazan Weekend", + "2027-12-25": "Christmas", + "2028-01-01": "New Year's Day", + "2028-04-13": "Maundy Thursday", + "2028-04-14": "Good Friday; Panamerican Day", + "2028-04-15": "Holy Saturday", + "2028-05-01": "Labor Day", + "2028-09-15": "Independence Day", + "2028-10-04": "Morazan Weekend", + "2028-10-05": "Morazan Weekend", + "2028-10-06": "Morazan Weekend", + "2028-12-25": "Christmas", + "2029-01-01": "New Year's Day", + "2029-03-29": "Maundy Thursday", + "2029-03-30": "Good Friday", + "2029-03-31": "Holy Saturday", + "2029-04-14": "Panamerican Day", + "2029-05-01": "Labor Day", + "2029-09-15": "Independence Day", + "2029-10-03": "Morazan Weekend", + "2029-10-04": "Morazan Weekend", + "2029-10-05": "Morazan Weekend", + "2029-12-25": "Christmas", + "2030-01-01": "New Year's Day", + "2030-04-14": "Panamerican Day", + "2030-04-18": "Maundy Thursday", + "2030-04-19": "Good Friday", + "2030-04-20": "Holy Saturday", + "2030-05-01": "Labor Day", + "2030-09-15": "Independence Day", + "2030-10-02": "Morazan Weekend", + "2030-10-03": "Morazan Weekend", + "2030-10-04": "Morazan Weekend", + "2030-12-25": "Christmas", + "2031-01-01": "New Year's Day", + "2031-04-10": "Maundy Thursday", + "2031-04-11": "Good Friday", + "2031-04-12": "Holy Saturday", + "2031-04-14": "Panamerican Day", + "2031-05-01": "Labor Day", + "2031-09-15": "Independence Day", + "2031-10-01": "Morazan Weekend", + "2031-10-02": "Morazan Weekend", + "2031-10-03": "Morazan Weekend", + "2031-12-25": "Christmas", + "2032-01-01": "New Year's Day", + "2032-03-25": "Maundy Thursday", + "2032-03-26": "Good Friday", + "2032-03-27": "Holy Saturday", + "2032-04-14": "Panamerican Day", + "2032-05-01": "Labor Day", + "2032-09-15": "Independence Day", + "2032-10-06": "Morazan Weekend", + "2032-10-07": "Morazan Weekend", + "2032-10-08": "Morazan Weekend", + "2032-12-25": "Christmas", + "2033-01-01": "New Year's Day", + "2033-04-14": "Maundy Thursday; Panamerican Day", + "2033-04-15": "Good Friday", + "2033-04-16": "Holy Saturday", + "2033-05-01": "Labor Day", + "2033-09-15": "Independence Day", + "2033-10-05": "Morazan Weekend", + "2033-10-06": "Morazan Weekend", + "2033-10-07": "Morazan Weekend", + "2033-12-25": "Christmas", + "2034-01-01": "New Year's Day", + "2034-04-06": "Maundy Thursday", + "2034-04-07": "Good Friday", + "2034-04-08": "Holy Saturday", + "2034-04-14": "Panamerican Day", + "2034-05-01": "Labor Day", + "2034-09-15": "Independence Day", + "2034-10-04": "Morazan Weekend", + "2034-10-05": "Morazan Weekend", + "2034-10-06": "Morazan Weekend", + "2034-12-25": "Christmas", + "2035-01-01": "New Year's Day", + "2035-03-22": "Maundy Thursday", + "2035-03-23": "Good Friday", + "2035-03-24": "Holy Saturday", + "2035-04-14": "Panamerican Day", + "2035-05-01": "Labor Day", + "2035-09-15": "Independence Day", + "2035-10-03": "Morazan Weekend", + "2035-10-04": "Morazan Weekend", + "2035-10-05": "Morazan Weekend", + "2035-12-25": "Christmas", + "2036-01-01": "New Year's Day", + "2036-04-10": "Maundy Thursday", + "2036-04-11": "Good Friday", + "2036-04-12": "Holy Saturday", + "2036-04-14": "Panamerican Day", + "2036-05-01": "Labor Day", + "2036-09-15": "Independence Day", + "2036-10-01": "Morazan Weekend", + "2036-10-02": "Morazan Weekend", + "2036-10-03": "Morazan Weekend", + "2036-12-25": "Christmas", + "2037-01-01": "New Year's Day", + "2037-04-02": "Maundy Thursday", + "2037-04-03": "Good Friday", + "2037-04-04": "Holy Saturday", + "2037-04-14": "Panamerican Day", + "2037-05-01": "Labor Day", + "2037-09-15": "Independence Day", + "2037-10-07": "Morazan Weekend", + "2037-10-08": "Morazan Weekend", + "2037-10-09": "Morazan Weekend", + "2037-12-25": "Christmas", + "2038-01-01": "New Year's Day", + "2038-04-14": "Panamerican Day", + "2038-04-22": "Maundy Thursday", + "2038-04-23": "Good Friday", + "2038-04-24": "Holy Saturday", + "2038-05-01": "Labor Day", + "2038-09-15": "Independence Day", + "2038-10-06": "Morazan Weekend", + "2038-10-07": "Morazan Weekend", + "2038-10-08": "Morazan Weekend", + "2038-12-25": "Christmas", + "2039-01-01": "New Year's Day", + "2039-04-07": "Maundy Thursday", + "2039-04-08": "Good Friday", + "2039-04-09": "Holy Saturday", + "2039-04-14": "Panamerican Day", + "2039-05-01": "Labor Day", + "2039-09-15": "Independence Day", + "2039-10-05": "Morazan Weekend", + "2039-10-06": "Morazan Weekend", + "2039-10-07": "Morazan Weekend", + "2039-12-25": "Christmas", + "2040-01-01": "New Year's Day", + "2040-03-29": "Maundy Thursday", + "2040-03-30": "Good Friday", + "2040-03-31": "Holy Saturday", + "2040-04-14": "Panamerican Day", + "2040-05-01": "Labor Day", + "2040-09-15": "Independence Day", + "2040-10-03": "Morazan Weekend", + "2040-10-04": "Morazan Weekend", + "2040-10-05": "Morazan Weekend", + "2040-12-25": "Christmas", + "2041-01-01": "New Year's Day", + "2041-04-14": "Panamerican Day", + "2041-04-18": "Maundy Thursday", + "2041-04-19": "Good Friday", + "2041-04-20": "Holy Saturday", + "2041-05-01": "Labor Day", + "2041-09-15": "Independence Day", + "2041-10-02": "Morazan Weekend", + "2041-10-03": "Morazan Weekend", + "2041-10-04": "Morazan Weekend", + "2041-12-25": "Christmas", + "2042-01-01": "New Year's Day", + "2042-04-03": "Maundy Thursday", + "2042-04-04": "Good Friday", + "2042-04-05": "Holy Saturday", + "2042-04-14": "Panamerican Day", + "2042-05-01": "Labor Day", + "2042-09-15": "Independence Day", + "2042-10-01": "Morazan Weekend", + "2042-10-02": "Morazan Weekend", + "2042-10-03": "Morazan Weekend", + "2042-12-25": "Christmas", + "2043-01-01": "New Year's Day", + "2043-03-26": "Maundy Thursday", + "2043-03-27": "Good Friday", + "2043-03-28": "Holy Saturday", + "2043-04-14": "Panamerican Day", + "2043-05-01": "Labor Day", + "2043-09-15": "Independence Day", + "2043-10-07": "Morazan Weekend", + "2043-10-08": "Morazan Weekend", + "2043-10-09": "Morazan Weekend", + "2043-12-25": "Christmas", + "2044-01-01": "New Year's Day", + "2044-04-14": "Maundy Thursday; Panamerican Day", + "2044-04-15": "Good Friday", + "2044-04-16": "Holy Saturday", + "2044-05-01": "Labor Day", + "2044-09-15": "Independence Day", + "2044-10-05": "Morazan Weekend", + "2044-10-06": "Morazan Weekend", + "2044-10-07": "Morazan Weekend", + "2044-12-25": "Christmas", + "2045-01-01": "New Year's Day", + "2045-04-06": "Maundy Thursday", + "2045-04-07": "Good Friday", + "2045-04-08": "Holy Saturday", + "2045-04-14": "Panamerican Day", + "2045-05-01": "Labor Day", + "2045-09-15": "Independence Day", + "2045-10-04": "Morazan Weekend", + "2045-10-05": "Morazan Weekend", + "2045-10-06": "Morazan Weekend", + "2045-12-25": "Christmas", + "2046-01-01": "New Year's Day", + "2046-03-22": "Maundy Thursday", + "2046-03-23": "Good Friday", + "2046-03-24": "Holy Saturday", + "2046-04-14": "Panamerican Day", + "2046-05-01": "Labor Day", + "2046-09-15": "Independence Day", + "2046-10-03": "Morazan Weekend", + "2046-10-04": "Morazan Weekend", + "2046-10-05": "Morazan Weekend", + "2046-12-25": "Christmas", + "2047-01-01": "New Year's Day", + "2047-04-11": "Maundy Thursday", + "2047-04-12": "Good Friday", + "2047-04-13": "Holy Saturday", + "2047-04-14": "Panamerican Day", + "2047-05-01": "Labor Day", + "2047-09-15": "Independence Day", + "2047-10-02": "Morazan Weekend", + "2047-10-03": "Morazan Weekend", + "2047-10-04": "Morazan Weekend", + "2047-12-25": "Christmas", + "2048-01-01": "New Year's Day", + "2048-04-02": "Maundy Thursday", + "2048-04-03": "Good Friday", + "2048-04-04": "Holy Saturday", + "2048-04-14": "Panamerican Day", + "2048-05-01": "Labor Day", + "2048-09-15": "Independence Day", + "2048-10-07": "Morazan Weekend", + "2048-10-08": "Morazan Weekend", + "2048-10-09": "Morazan Weekend", + "2048-12-25": "Christmas", + "2049-01-01": "New Year's Day", + "2049-04-14": "Panamerican Day", + "2049-04-15": "Maundy Thursday", + "2049-04-16": "Good Friday", + "2049-04-17": "Holy Saturday", + "2049-05-01": "Labor Day", + "2049-09-15": "Independence Day", + "2049-10-06": "Morazan Weekend", + "2049-10-07": "Morazan Weekend", + "2049-10-08": "Morazan Weekend", + "2049-12-25": "Christmas", + "2050-01-01": "New Year's Day", + "2050-04-07": "Maundy Thursday", + "2050-04-08": "Good Friday", + "2050-04-09": "Holy Saturday", + "2050-04-14": "Panamerican Day", + "2050-05-01": "Labor Day", + "2050-09-15": "Independence Day", + "2050-10-05": "Morazan Weekend", + "2050-10-06": "Morazan Weekend", + "2050-10-07": "Morazan Weekend", + "2050-12-25": "Christmas" +} diff --git a/snapshots/countries/HR.json b/snapshots/countries/HR.json new file mode 100644 index 000000000..c10a206d4 --- /dev/null +++ b/snapshots/countries/HR.json @@ -0,0 +1,1205 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-06": "Epiphany", + "1950-04-10": "Easter Monday", + "1950-05-01": "International Workers' Day", + "1950-06-22": "Anti-Fascist Struggle Day", + "1950-08-05": "Victory and Homeland Thanksgiving Day", + "1950-08-15": "Assumption of Mary", + "1950-11-01": "All Saints' Day", + "1950-12-25": "Christmas Day", + "1950-12-26": "St. Stephen's Day", + "1951-01-01": "New Year's Day", + "1951-01-06": "Epiphany", + "1951-03-26": "Easter Monday", + "1951-05-01": "International Workers' Day", + "1951-06-22": "Anti-Fascist Struggle Day", + "1951-08-05": "Victory and Homeland Thanksgiving Day", + "1951-08-15": "Assumption of Mary", + "1951-11-01": "All Saints' Day", + "1951-12-25": "Christmas Day", + "1951-12-26": "St. Stephen's Day", + "1952-01-01": "New Year's Day", + "1952-01-06": "Epiphany", + "1952-04-14": "Easter Monday", + "1952-05-01": "International Workers' Day", + "1952-06-22": "Anti-Fascist Struggle Day", + "1952-08-05": "Victory and Homeland Thanksgiving Day", + "1952-08-15": "Assumption of Mary", + "1952-11-01": "All Saints' Day", + "1952-12-25": "Christmas Day", + "1952-12-26": "St. Stephen's Day", + "1953-01-01": "New Year's Day", + "1953-01-06": "Epiphany", + "1953-04-06": "Easter Monday", + "1953-05-01": "International Workers' Day", + "1953-06-22": "Anti-Fascist Struggle Day", + "1953-08-05": "Victory and Homeland Thanksgiving Day", + "1953-08-15": "Assumption of Mary", + "1953-11-01": "All Saints' Day", + "1953-12-25": "Christmas Day", + "1953-12-26": "St. Stephen's Day", + "1954-01-01": "New Year's Day", + "1954-01-06": "Epiphany", + "1954-04-19": "Easter Monday", + "1954-05-01": "International Workers' Day", + "1954-06-22": "Anti-Fascist Struggle Day", + "1954-08-05": "Victory and Homeland Thanksgiving Day", + "1954-08-15": "Assumption of Mary", + "1954-11-01": "All Saints' Day", + "1954-12-25": "Christmas Day", + "1954-12-26": "St. Stephen's Day", + "1955-01-01": "New Year's Day", + "1955-01-06": "Epiphany", + "1955-04-11": "Easter Monday", + "1955-05-01": "International Workers' Day", + "1955-06-22": "Anti-Fascist Struggle Day", + "1955-08-05": "Victory and Homeland Thanksgiving Day", + "1955-08-15": "Assumption of Mary", + "1955-11-01": "All Saints' Day", + "1955-12-25": "Christmas Day", + "1955-12-26": "St. Stephen's Day", + "1956-01-01": "New Year's Day", + "1956-01-06": "Epiphany", + "1956-04-02": "Easter Monday", + "1956-05-01": "International Workers' Day", + "1956-06-22": "Anti-Fascist Struggle Day", + "1956-08-05": "Victory and Homeland Thanksgiving Day", + "1956-08-15": "Assumption of Mary", + "1956-11-01": "All Saints' Day", + "1956-12-25": "Christmas Day", + "1956-12-26": "St. Stephen's Day", + "1957-01-01": "New Year's Day", + "1957-01-06": "Epiphany", + "1957-04-22": "Easter Monday", + "1957-05-01": "International Workers' Day", + "1957-06-22": "Anti-Fascist Struggle Day", + "1957-08-05": "Victory and Homeland Thanksgiving Day", + "1957-08-15": "Assumption of Mary", + "1957-11-01": "All Saints' Day", + "1957-12-25": "Christmas Day", + "1957-12-26": "St. Stephen's Day", + "1958-01-01": "New Year's Day", + "1958-01-06": "Epiphany", + "1958-04-07": "Easter Monday", + "1958-05-01": "International Workers' Day", + "1958-06-22": "Anti-Fascist Struggle Day", + "1958-08-05": "Victory and Homeland Thanksgiving Day", + "1958-08-15": "Assumption of Mary", + "1958-11-01": "All Saints' Day", + "1958-12-25": "Christmas Day", + "1958-12-26": "St. Stephen's Day", + "1959-01-01": "New Year's Day", + "1959-01-06": "Epiphany", + "1959-03-30": "Easter Monday", + "1959-05-01": "International Workers' Day", + "1959-06-22": "Anti-Fascist Struggle Day", + "1959-08-05": "Victory and Homeland Thanksgiving Day", + "1959-08-15": "Assumption of Mary", + "1959-11-01": "All Saints' Day", + "1959-12-25": "Christmas Day", + "1959-12-26": "St. Stephen's Day", + "1960-01-01": "New Year's Day", + "1960-01-06": "Epiphany", + "1960-04-18": "Easter Monday", + "1960-05-01": "International Workers' Day", + "1960-06-22": "Anti-Fascist Struggle Day", + "1960-08-05": "Victory and Homeland Thanksgiving Day", + "1960-08-15": "Assumption of Mary", + "1960-11-01": "All Saints' Day", + "1960-12-25": "Christmas Day", + "1960-12-26": "St. Stephen's Day", + "1961-01-01": "New Year's Day", + "1961-01-06": "Epiphany", + "1961-04-03": "Easter Monday", + "1961-05-01": "International Workers' Day", + "1961-06-22": "Anti-Fascist Struggle Day", + "1961-08-05": "Victory and Homeland Thanksgiving Day", + "1961-08-15": "Assumption of Mary", + "1961-11-01": "All Saints' Day", + "1961-12-25": "Christmas Day", + "1961-12-26": "St. Stephen's Day", + "1962-01-01": "New Year's Day", + "1962-01-06": "Epiphany", + "1962-04-23": "Easter Monday", + "1962-05-01": "International Workers' Day", + "1962-06-22": "Anti-Fascist Struggle Day", + "1962-08-05": "Victory and Homeland Thanksgiving Day", + "1962-08-15": "Assumption of Mary", + "1962-11-01": "All Saints' Day", + "1962-12-25": "Christmas Day", + "1962-12-26": "St. Stephen's Day", + "1963-01-01": "New Year's Day", + "1963-01-06": "Epiphany", + "1963-04-15": "Easter Monday", + "1963-05-01": "International Workers' Day", + "1963-06-22": "Anti-Fascist Struggle Day", + "1963-08-05": "Victory and Homeland Thanksgiving Day", + "1963-08-15": "Assumption of Mary", + "1963-11-01": "All Saints' Day", + "1963-12-25": "Christmas Day", + "1963-12-26": "St. Stephen's Day", + "1964-01-01": "New Year's Day", + "1964-01-06": "Epiphany", + "1964-03-30": "Easter Monday", + "1964-05-01": "International Workers' Day", + "1964-06-22": "Anti-Fascist Struggle Day", + "1964-08-05": "Victory and Homeland Thanksgiving Day", + "1964-08-15": "Assumption of Mary", + "1964-11-01": "All Saints' Day", + "1964-12-25": "Christmas Day", + "1964-12-26": "St. Stephen's Day", + "1965-01-01": "New Year's Day", + "1965-01-06": "Epiphany", + "1965-04-19": "Easter Monday", + "1965-05-01": "International Workers' Day", + "1965-06-22": "Anti-Fascist Struggle Day", + "1965-08-05": "Victory and Homeland Thanksgiving Day", + "1965-08-15": "Assumption of Mary", + "1965-11-01": "All Saints' Day", + "1965-12-25": "Christmas Day", + "1965-12-26": "St. Stephen's Day", + "1966-01-01": "New Year's Day", + "1966-01-06": "Epiphany", + "1966-04-11": "Easter Monday", + "1966-05-01": "International Workers' Day", + "1966-06-22": "Anti-Fascist Struggle Day", + "1966-08-05": "Victory and Homeland Thanksgiving Day", + "1966-08-15": "Assumption of Mary", + "1966-11-01": "All Saints' Day", + "1966-12-25": "Christmas Day", + "1966-12-26": "St. Stephen's Day", + "1967-01-01": "New Year's Day", + "1967-01-06": "Epiphany", + "1967-03-27": "Easter Monday", + "1967-05-01": "International Workers' Day", + "1967-06-22": "Anti-Fascist Struggle Day", + "1967-08-05": "Victory and Homeland Thanksgiving Day", + "1967-08-15": "Assumption of Mary", + "1967-11-01": "All Saints' Day", + "1967-12-25": "Christmas Day", + "1967-12-26": "St. Stephen's Day", + "1968-01-01": "New Year's Day", + "1968-01-06": "Epiphany", + "1968-04-15": "Easter Monday", + "1968-05-01": "International Workers' Day", + "1968-06-22": "Anti-Fascist Struggle Day", + "1968-08-05": "Victory and Homeland Thanksgiving Day", + "1968-08-15": "Assumption of Mary", + "1968-11-01": "All Saints' Day", + "1968-12-25": "Christmas Day", + "1968-12-26": "St. Stephen's Day", + "1969-01-01": "New Year's Day", + "1969-01-06": "Epiphany", + "1969-04-07": "Easter Monday", + "1969-05-01": "International Workers' Day", + "1969-06-22": "Anti-Fascist Struggle Day", + "1969-08-05": "Victory and Homeland Thanksgiving Day", + "1969-08-15": "Assumption of Mary", + "1969-11-01": "All Saints' Day", + "1969-12-25": "Christmas Day", + "1969-12-26": "St. Stephen's Day", + "1970-01-01": "New Year's Day", + "1970-01-06": "Epiphany", + "1970-03-30": "Easter Monday", + "1970-05-01": "International Workers' Day", + "1970-06-22": "Anti-Fascist Struggle Day", + "1970-08-05": "Victory and Homeland Thanksgiving Day", + "1970-08-15": "Assumption of Mary", + "1970-11-01": "All Saints' Day", + "1970-12-25": "Christmas Day", + "1970-12-26": "St. Stephen's Day", + "1971-01-01": "New Year's Day", + "1971-01-06": "Epiphany", + "1971-04-12": "Easter Monday", + "1971-05-01": "International Workers' Day", + "1971-06-22": "Anti-Fascist Struggle Day", + "1971-08-05": "Victory and Homeland Thanksgiving Day", + "1971-08-15": "Assumption of Mary", + "1971-11-01": "All Saints' Day", + "1971-12-25": "Christmas Day", + "1971-12-26": "St. Stephen's Day", + "1972-01-01": "New Year's Day", + "1972-01-06": "Epiphany", + "1972-04-03": "Easter Monday", + "1972-05-01": "International Workers' Day", + "1972-06-22": "Anti-Fascist Struggle Day", + "1972-08-05": "Victory and Homeland Thanksgiving Day", + "1972-08-15": "Assumption of Mary", + "1972-11-01": "All Saints' Day", + "1972-12-25": "Christmas Day", + "1972-12-26": "St. Stephen's Day", + "1973-01-01": "New Year's Day", + "1973-01-06": "Epiphany", + "1973-04-23": "Easter Monday", + "1973-05-01": "International Workers' Day", + "1973-06-22": "Anti-Fascist Struggle Day", + "1973-08-05": "Victory and Homeland Thanksgiving Day", + "1973-08-15": "Assumption of Mary", + "1973-11-01": "All Saints' Day", + "1973-12-25": "Christmas Day", + "1973-12-26": "St. Stephen's Day", + "1974-01-01": "New Year's Day", + "1974-01-06": "Epiphany", + "1974-04-15": "Easter Monday", + "1974-05-01": "International Workers' Day", + "1974-06-22": "Anti-Fascist Struggle Day", + "1974-08-05": "Victory and Homeland Thanksgiving Day", + "1974-08-15": "Assumption of Mary", + "1974-11-01": "All Saints' Day", + "1974-12-25": "Christmas Day", + "1974-12-26": "St. Stephen's Day", + "1975-01-01": "New Year's Day", + "1975-01-06": "Epiphany", + "1975-03-31": "Easter Monday", + "1975-05-01": "International Workers' Day", + "1975-06-22": "Anti-Fascist Struggle Day", + "1975-08-05": "Victory and Homeland Thanksgiving Day", + "1975-08-15": "Assumption of Mary", + "1975-11-01": "All Saints' Day", + "1975-12-25": "Christmas Day", + "1975-12-26": "St. Stephen's Day", + "1976-01-01": "New Year's Day", + "1976-01-06": "Epiphany", + "1976-04-19": "Easter Monday", + "1976-05-01": "International Workers' Day", + "1976-06-22": "Anti-Fascist Struggle Day", + "1976-08-05": "Victory and Homeland Thanksgiving Day", + "1976-08-15": "Assumption of Mary", + "1976-11-01": "All Saints' Day", + "1976-12-25": "Christmas Day", + "1976-12-26": "St. Stephen's Day", + "1977-01-01": "New Year's Day", + "1977-01-06": "Epiphany", + "1977-04-11": "Easter Monday", + "1977-05-01": "International Workers' Day", + "1977-06-22": "Anti-Fascist Struggle Day", + "1977-08-05": "Victory and Homeland Thanksgiving Day", + "1977-08-15": "Assumption of Mary", + "1977-11-01": "All Saints' Day", + "1977-12-25": "Christmas Day", + "1977-12-26": "St. Stephen's Day", + "1978-01-01": "New Year's Day", + "1978-01-06": "Epiphany", + "1978-03-27": "Easter Monday", + "1978-05-01": "International Workers' Day", + "1978-06-22": "Anti-Fascist Struggle Day", + "1978-08-05": "Victory and Homeland Thanksgiving Day", + "1978-08-15": "Assumption of Mary", + "1978-11-01": "All Saints' Day", + "1978-12-25": "Christmas Day", + "1978-12-26": "St. Stephen's Day", + "1979-01-01": "New Year's Day", + "1979-01-06": "Epiphany", + "1979-04-16": "Easter Monday", + "1979-05-01": "International Workers' Day", + "1979-06-22": "Anti-Fascist Struggle Day", + "1979-08-05": "Victory and Homeland Thanksgiving Day", + "1979-08-15": "Assumption of Mary", + "1979-11-01": "All Saints' Day", + "1979-12-25": "Christmas Day", + "1979-12-26": "St. Stephen's Day", + "1980-01-01": "New Year's Day", + "1980-01-06": "Epiphany", + "1980-04-07": "Easter Monday", + "1980-05-01": "International Workers' Day", + "1980-06-22": "Anti-Fascist Struggle Day", + "1980-08-05": "Victory and Homeland Thanksgiving Day", + "1980-08-15": "Assumption of Mary", + "1980-11-01": "All Saints' Day", + "1980-12-25": "Christmas Day", + "1980-12-26": "St. Stephen's Day", + "1981-01-01": "New Year's Day", + "1981-01-06": "Epiphany", + "1981-04-20": "Easter Monday", + "1981-05-01": "International Workers' Day", + "1981-06-22": "Anti-Fascist Struggle Day", + "1981-08-05": "Victory and Homeland Thanksgiving Day", + "1981-08-15": "Assumption of Mary", + "1981-11-01": "All Saints' Day", + "1981-12-25": "Christmas Day", + "1981-12-26": "St. Stephen's Day", + "1982-01-01": "New Year's Day", + "1982-01-06": "Epiphany", + "1982-04-12": "Easter Monday", + "1982-05-01": "International Workers' Day", + "1982-06-22": "Anti-Fascist Struggle Day", + "1982-08-05": "Victory and Homeland Thanksgiving Day", + "1982-08-15": "Assumption of Mary", + "1982-11-01": "All Saints' Day", + "1982-12-25": "Christmas Day", + "1982-12-26": "St. Stephen's Day", + "1983-01-01": "New Year's Day", + "1983-01-06": "Epiphany", + "1983-04-04": "Easter Monday", + "1983-05-01": "International Workers' Day", + "1983-06-22": "Anti-Fascist Struggle Day", + "1983-08-05": "Victory and Homeland Thanksgiving Day", + "1983-08-15": "Assumption of Mary", + "1983-11-01": "All Saints' Day", + "1983-12-25": "Christmas Day", + "1983-12-26": "St. Stephen's Day", + "1984-01-01": "New Year's Day", + "1984-01-06": "Epiphany", + "1984-04-23": "Easter Monday", + "1984-05-01": "International Workers' Day", + "1984-06-22": "Anti-Fascist Struggle Day", + "1984-08-05": "Victory and Homeland Thanksgiving Day", + "1984-08-15": "Assumption of Mary", + "1984-11-01": "All Saints' Day", + "1984-12-25": "Christmas Day", + "1984-12-26": "St. Stephen's Day", + "1985-01-01": "New Year's Day", + "1985-01-06": "Epiphany", + "1985-04-08": "Easter Monday", + "1985-05-01": "International Workers' Day", + "1985-06-22": "Anti-Fascist Struggle Day", + "1985-08-05": "Victory and Homeland Thanksgiving Day", + "1985-08-15": "Assumption of Mary", + "1985-11-01": "All Saints' Day", + "1985-12-25": "Christmas Day", + "1985-12-26": "St. Stephen's Day", + "1986-01-01": "New Year's Day", + "1986-01-06": "Epiphany", + "1986-03-31": "Easter Monday", + "1986-05-01": "International Workers' Day", + "1986-06-22": "Anti-Fascist Struggle Day", + "1986-08-05": "Victory and Homeland Thanksgiving Day", + "1986-08-15": "Assumption of Mary", + "1986-11-01": "All Saints' Day", + "1986-12-25": "Christmas Day", + "1986-12-26": "St. Stephen's Day", + "1987-01-01": "New Year's Day", + "1987-01-06": "Epiphany", + "1987-04-20": "Easter Monday", + "1987-05-01": "International Workers' Day", + "1987-06-22": "Anti-Fascist Struggle Day", + "1987-08-05": "Victory and Homeland Thanksgiving Day", + "1987-08-15": "Assumption of Mary", + "1987-11-01": "All Saints' Day", + "1987-12-25": "Christmas Day", + "1987-12-26": "St. Stephen's Day", + "1988-01-01": "New Year's Day", + "1988-01-06": "Epiphany", + "1988-04-04": "Easter Monday", + "1988-05-01": "International Workers' Day", + "1988-06-22": "Anti-Fascist Struggle Day", + "1988-08-05": "Victory and Homeland Thanksgiving Day", + "1988-08-15": "Assumption of Mary", + "1988-11-01": "All Saints' Day", + "1988-12-25": "Christmas Day", + "1988-12-26": "St. Stephen's Day", + "1989-01-01": "New Year's Day", + "1989-01-06": "Epiphany", + "1989-03-27": "Easter Monday", + "1989-05-01": "International Workers' Day", + "1989-06-22": "Anti-Fascist Struggle Day", + "1989-08-05": "Victory and Homeland Thanksgiving Day", + "1989-08-15": "Assumption of Mary", + "1989-11-01": "All Saints' Day", + "1989-12-25": "Christmas Day", + "1989-12-26": "St. Stephen's Day", + "1990-01-01": "New Year's Day", + "1990-01-06": "Epiphany", + "1990-04-16": "Easter Monday", + "1990-05-01": "International Workers' Day", + "1990-06-22": "Anti-Fascist Struggle Day", + "1990-08-05": "Victory and Homeland Thanksgiving Day", + "1990-08-15": "Assumption of Mary", + "1990-11-01": "All Saints' Day", + "1990-12-25": "Christmas Day", + "1990-12-26": "St. Stephen's Day", + "1991-01-01": "New Year's Day", + "1991-01-06": "Epiphany", + "1991-04-01": "Easter Monday", + "1991-05-01": "International Workers' Day", + "1991-06-22": "Anti-Fascist Struggle Day", + "1991-08-05": "Victory and Homeland Thanksgiving Day", + "1991-08-15": "Assumption of Mary", + "1991-11-01": "All Saints' Day", + "1991-12-25": "Christmas Day", + "1991-12-26": "St. Stephen's Day", + "1992-01-01": "New Year's Day", + "1992-01-06": "Epiphany", + "1992-04-20": "Easter Monday", + "1992-05-01": "International Workers' Day", + "1992-06-22": "Anti-Fascist Struggle Day", + "1992-08-05": "Victory and Homeland Thanksgiving Day", + "1992-08-15": "Assumption of Mary", + "1992-11-01": "All Saints' Day", + "1992-12-25": "Christmas Day", + "1992-12-26": "St. Stephen's Day", + "1993-01-01": "New Year's Day", + "1993-01-06": "Epiphany", + "1993-04-12": "Easter Monday", + "1993-05-01": "International Workers' Day", + "1993-06-22": "Anti-Fascist Struggle Day", + "1993-08-05": "Victory and Homeland Thanksgiving Day", + "1993-08-15": "Assumption of Mary", + "1993-11-01": "All Saints' Day", + "1993-12-25": "Christmas Day", + "1993-12-26": "St. Stephen's Day", + "1994-01-01": "New Year's Day", + "1994-01-06": "Epiphany", + "1994-04-04": "Easter Monday", + "1994-05-01": "International Workers' Day", + "1994-06-22": "Anti-Fascist Struggle Day", + "1994-08-05": "Victory and Homeland Thanksgiving Day", + "1994-08-15": "Assumption of Mary", + "1994-11-01": "All Saints' Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "St. Stephen's Day", + "1995-01-01": "New Year's Day", + "1995-01-06": "Epiphany", + "1995-04-17": "Easter Monday", + "1995-05-01": "International Workers' Day", + "1995-06-22": "Anti-Fascist Struggle Day", + "1995-08-05": "Victory and Homeland Thanksgiving Day", + "1995-08-15": "Assumption of Mary", + "1995-11-01": "All Saints' Day", + "1995-12-25": "Christmas Day", + "1995-12-26": "St. Stephen's Day", + "1996-01-01": "New Year's Day", + "1996-01-06": "Epiphany", + "1996-04-08": "Easter Monday", + "1996-05-01": "International Workers' Day", + "1996-05-30": "Statehood Day", + "1996-06-22": "Anti-Fascist Struggle Day", + "1996-08-05": "Victory and Homeland Thanksgiving Day", + "1996-08-15": "Assumption of Mary", + "1996-11-01": "All Saints' Day", + "1996-12-25": "Christmas Day", + "1996-12-26": "St. Stephen's Day", + "1997-01-01": "New Year's Day", + "1997-01-06": "Epiphany", + "1997-03-31": "Easter Monday", + "1997-05-01": "International Workers' Day", + "1997-05-30": "Statehood Day", + "1997-06-22": "Anti-Fascist Struggle Day", + "1997-08-05": "Victory and Homeland Thanksgiving Day", + "1997-08-15": "Assumption of Mary", + "1997-11-01": "All Saints' Day", + "1997-12-25": "Christmas Day", + "1997-12-26": "St. Stephen's Day", + "1998-01-01": "New Year's Day", + "1998-01-06": "Epiphany", + "1998-04-13": "Easter Monday", + "1998-05-01": "International Workers' Day", + "1998-05-30": "Statehood Day", + "1998-06-22": "Anti-Fascist Struggle Day", + "1998-08-05": "Victory and Homeland Thanksgiving Day", + "1998-08-15": "Assumption of Mary", + "1998-11-01": "All Saints' Day", + "1998-12-25": "Christmas Day", + "1998-12-26": "St. Stephen's Day", + "1999-01-01": "New Year's Day", + "1999-01-06": "Epiphany", + "1999-04-05": "Easter Monday", + "1999-05-01": "International Workers' Day", + "1999-05-30": "Statehood Day", + "1999-06-22": "Anti-Fascist Struggle Day", + "1999-08-05": "Victory and Homeland Thanksgiving Day", + "1999-08-15": "Assumption of Mary", + "1999-11-01": "All Saints' Day", + "1999-12-25": "Christmas Day", + "1999-12-26": "St. Stephen's Day", + "2000-01-01": "New Year's Day", + "2000-01-06": "Epiphany", + "2000-04-24": "Easter Monday", + "2000-05-01": "International Workers' Day", + "2000-05-30": "Statehood Day", + "2000-06-22": "Anti-Fascist Struggle Day", + "2000-08-05": "Victory and Homeland Thanksgiving Day", + "2000-08-15": "Assumption of Mary", + "2000-11-01": "All Saints' Day", + "2000-12-25": "Christmas Day", + "2000-12-26": "St. Stephen's Day", + "2001-01-01": "New Year's Day", + "2001-01-06": "Epiphany", + "2001-04-16": "Easter Monday", + "2001-05-01": "International Workers' Day", + "2001-05-30": "Statehood Day", + "2001-06-22": "Anti-Fascist Struggle Day", + "2001-08-05": "Victory and Homeland Thanksgiving Day", + "2001-08-15": "Assumption of Mary", + "2001-11-01": "All Saints' Day", + "2001-12-25": "Christmas Day", + "2001-12-26": "St. Stephen's Day", + "2002-01-01": "New Year's Day", + "2002-04-01": "Easter Monday", + "2002-05-01": "International Workers' Day", + "2002-05-30": "Corpus Christi", + "2002-06-22": "Anti-Fascist Struggle Day", + "2002-06-25": "Statehood Day", + "2002-08-05": "Victory and Homeland Thanksgiving Day", + "2002-08-15": "Assumption of Mary", + "2002-10-08": "Independence Day", + "2002-11-01": "All Saints' Day", + "2002-12-25": "Christmas Day", + "2002-12-26": "St. Stephen's Day", + "2003-01-01": "New Year's Day", + "2003-01-06": "Epiphany", + "2003-04-21": "Easter Monday", + "2003-05-01": "International Workers' Day", + "2003-06-19": "Corpus Christi", + "2003-06-22": "Anti-Fascist Struggle Day", + "2003-06-25": "Statehood Day", + "2003-08-05": "Victory and Homeland Thanksgiving Day", + "2003-08-15": "Assumption of Mary", + "2003-10-08": "Independence Day", + "2003-11-01": "All Saints' Day", + "2003-12-25": "Christmas Day", + "2003-12-26": "St. Stephen's Day", + "2004-01-01": "New Year's Day", + "2004-01-06": "Epiphany", + "2004-04-12": "Easter Monday", + "2004-05-01": "International Workers' Day", + "2004-06-10": "Corpus Christi", + "2004-06-22": "Anti-Fascist Struggle Day", + "2004-06-25": "Statehood Day", + "2004-08-05": "Victory and Homeland Thanksgiving Day", + "2004-08-15": "Assumption of Mary", + "2004-10-08": "Independence Day", + "2004-11-01": "All Saints' Day", + "2004-12-25": "Christmas Day", + "2004-12-26": "St. Stephen's Day", + "2005-01-01": "New Year's Day", + "2005-01-06": "Epiphany", + "2005-03-28": "Easter Monday", + "2005-05-01": "International Workers' Day", + "2005-05-26": "Corpus Christi", + "2005-06-22": "Anti-Fascist Struggle Day", + "2005-06-25": "Statehood Day", + "2005-08-05": "Victory and Homeland Thanksgiving Day", + "2005-08-15": "Assumption of Mary", + "2005-10-08": "Independence Day", + "2005-11-01": "All Saints' Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "St. Stephen's Day", + "2006-01-01": "New Year's Day", + "2006-01-06": "Epiphany", + "2006-04-17": "Easter Monday", + "2006-05-01": "International Workers' Day", + "2006-06-15": "Corpus Christi", + "2006-06-22": "Anti-Fascist Struggle Day", + "2006-06-25": "Statehood Day", + "2006-08-05": "Victory and Homeland Thanksgiving Day", + "2006-08-15": "Assumption of Mary", + "2006-10-08": "Independence Day", + "2006-11-01": "All Saints' Day", + "2006-12-25": "Christmas Day", + "2006-12-26": "St. Stephen's Day", + "2007-01-01": "New Year's Day", + "2007-01-06": "Epiphany", + "2007-04-09": "Easter Monday", + "2007-05-01": "International Workers' Day", + "2007-06-07": "Corpus Christi", + "2007-06-22": "Anti-Fascist Struggle Day", + "2007-06-25": "Statehood Day", + "2007-08-05": "Victory and Homeland Thanksgiving Day", + "2007-08-15": "Assumption of Mary", + "2007-10-08": "Independence Day", + "2007-11-01": "All Saints' Day", + "2007-12-25": "Christmas Day", + "2007-12-26": "St. Stephen's Day", + "2008-01-01": "New Year's Day", + "2008-01-06": "Epiphany", + "2008-03-24": "Easter Monday", + "2008-05-01": "International Workers' Day", + "2008-05-22": "Corpus Christi", + "2008-06-22": "Anti-Fascist Struggle Day", + "2008-06-25": "Statehood Day", + "2008-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2008-08-15": "Assumption of Mary", + "2008-10-08": "Independence Day", + "2008-11-01": "All Saints' Day", + "2008-12-25": "Christmas Day", + "2008-12-26": "St. Stephen's Day", + "2009-01-01": "New Year's Day", + "2009-01-06": "Epiphany", + "2009-04-12": "Easter", + "2009-04-13": "Easter Monday", + "2009-05-01": "International Workers' Day", + "2009-06-11": "Corpus Christi", + "2009-06-22": "Anti-Fascist Struggle Day", + "2009-06-25": "Statehood Day", + "2009-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2009-08-15": "Assumption of Mary", + "2009-10-08": "Independence Day", + "2009-11-01": "All Saints' Day", + "2009-12-25": "Christmas Day", + "2009-12-26": "St. Stephen's Day", + "2010-01-01": "New Year's Day", + "2010-01-06": "Epiphany", + "2010-04-04": "Easter", + "2010-04-05": "Easter Monday", + "2010-05-01": "International Workers' Day", + "2010-06-03": "Corpus Christi", + "2010-06-22": "Anti-Fascist Struggle Day", + "2010-06-25": "Statehood Day", + "2010-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2010-08-15": "Assumption of Mary", + "2010-10-08": "Independence Day", + "2010-11-01": "All Saints' Day", + "2010-12-25": "Christmas Day", + "2010-12-26": "St. Stephen's Day", + "2011-01-01": "New Year's Day", + "2011-01-06": "Epiphany", + "2011-04-24": "Easter", + "2011-04-25": "Easter Monday", + "2011-05-01": "International Workers' Day", + "2011-06-22": "Anti-Fascist Struggle Day", + "2011-06-23": "Corpus Christi", + "2011-06-25": "Statehood Day", + "2011-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2011-08-15": "Assumption of Mary", + "2011-10-08": "Independence Day", + "2011-11-01": "All Saints' Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "St. Stephen's Day", + "2012-01-01": "New Year's Day", + "2012-01-06": "Epiphany", + "2012-04-08": "Easter", + "2012-04-09": "Easter Monday", + "2012-05-01": "International Workers' Day", + "2012-06-07": "Corpus Christi", + "2012-06-22": "Anti-Fascist Struggle Day", + "2012-06-25": "Statehood Day", + "2012-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2012-08-15": "Assumption of Mary", + "2012-10-08": "Independence Day", + "2012-11-01": "All Saints' Day", + "2012-12-25": "Christmas Day", + "2012-12-26": "St. Stephen's Day", + "2013-01-01": "New Year's Day", + "2013-01-06": "Epiphany", + "2013-03-31": "Easter", + "2013-04-01": "Easter Monday", + "2013-05-01": "International Workers' Day", + "2013-05-30": "Corpus Christi", + "2013-06-22": "Anti-Fascist Struggle Day", + "2013-06-25": "Statehood Day", + "2013-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2013-08-15": "Assumption of Mary", + "2013-10-08": "Independence Day", + "2013-11-01": "All Saints' Day", + "2013-12-25": "Christmas Day", + "2013-12-26": "St. Stephen's Day", + "2014-01-01": "New Year's Day", + "2014-01-06": "Epiphany", + "2014-04-20": "Easter", + "2014-04-21": "Easter Monday", + "2014-05-01": "International Workers' Day", + "2014-06-19": "Corpus Christi", + "2014-06-22": "Anti-Fascist Struggle Day", + "2014-06-25": "Statehood Day", + "2014-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2014-08-15": "Assumption of Mary", + "2014-10-08": "Independence Day", + "2014-11-01": "All Saints' Day", + "2014-12-25": "Christmas Day", + "2014-12-26": "St. Stephen's Day", + "2015-01-01": "New Year's Day", + "2015-01-06": "Epiphany", + "2015-04-05": "Easter", + "2015-04-06": "Easter Monday", + "2015-05-01": "International Workers' Day", + "2015-06-04": "Corpus Christi", + "2015-06-22": "Anti-Fascist Struggle Day", + "2015-06-25": "Statehood Day", + "2015-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2015-08-15": "Assumption of Mary", + "2015-10-08": "Independence Day", + "2015-11-01": "All Saints' Day", + "2015-12-25": "Christmas Day", + "2015-12-26": "St. Stephen's Day", + "2016-01-01": "New Year's Day", + "2016-01-06": "Epiphany", + "2016-03-27": "Easter", + "2016-03-28": "Easter Monday", + "2016-05-01": "International Workers' Day", + "2016-05-26": "Corpus Christi", + "2016-06-22": "Anti-Fascist Struggle Day", + "2016-06-25": "Statehood Day", + "2016-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2016-08-15": "Assumption of Mary", + "2016-10-08": "Independence Day", + "2016-11-01": "All Saints' Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "St. Stephen's Day", + "2017-01-01": "New Year's Day", + "2017-01-06": "Epiphany", + "2017-04-16": "Easter", + "2017-04-17": "Easter Monday", + "2017-05-01": "International Workers' Day", + "2017-06-15": "Corpus Christi", + "2017-06-22": "Anti-Fascist Struggle Day", + "2017-06-25": "Statehood Day", + "2017-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2017-08-15": "Assumption of Mary", + "2017-10-08": "Independence Day", + "2017-11-01": "All Saints' Day", + "2017-12-25": "Christmas Day", + "2017-12-26": "St. Stephen's Day", + "2018-01-01": "New Year's Day", + "2018-01-06": "Epiphany", + "2018-04-01": "Easter", + "2018-04-02": "Easter Monday", + "2018-05-01": "International Workers' Day", + "2018-05-31": "Corpus Christi", + "2018-06-22": "Anti-Fascist Struggle Day", + "2018-06-25": "Statehood Day", + "2018-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2018-08-15": "Assumption of Mary", + "2018-10-08": "Independence Day", + "2018-11-01": "All Saints' Day", + "2018-12-25": "Christmas Day", + "2018-12-26": "St. Stephen's Day", + "2019-01-01": "New Year's Day", + "2019-01-06": "Epiphany", + "2019-04-21": "Easter", + "2019-04-22": "Easter Monday", + "2019-05-01": "International Workers' Day", + "2019-06-20": "Corpus Christi", + "2019-06-22": "Anti-Fascist Struggle Day", + "2019-06-25": "Statehood Day", + "2019-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2019-08-15": "Assumption of Mary", + "2019-10-08": "Independence Day", + "2019-11-01": "All Saints' Day", + "2019-12-25": "Christmas Day", + "2019-12-26": "St. Stephen's Day", + "2020-01-01": "New Year's Day", + "2020-01-06": "Epiphany", + "2020-04-12": "Easter", + "2020-04-13": "Easter Monday", + "2020-05-01": "International Workers' Day", + "2020-05-30": "Statehood Day", + "2020-06-11": "Corpus Christi", + "2020-06-22": "Anti-Fascist Struggle Day", + "2020-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2020-08-15": "Assumption of Mary", + "2020-11-01": "All Saints' Day", + "2020-11-18": "Memorial Day", + "2020-12-25": "Christmas Day", + "2020-12-26": "St. Stephen's Day", + "2021-01-01": "New Year's Day", + "2021-01-06": "Epiphany", + "2021-04-04": "Easter", + "2021-04-05": "Easter Monday", + "2021-05-01": "International Workers' Day", + "2021-05-30": "Statehood Day", + "2021-06-03": "Corpus Christi", + "2021-06-22": "Anti-Fascist Struggle Day", + "2021-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2021-08-15": "Assumption of Mary", + "2021-11-01": "All Saints' Day", + "2021-11-18": "Memorial Day", + "2021-12-25": "Christmas Day", + "2021-12-26": "St. Stephen's Day", + "2022-01-01": "New Year's Day", + "2022-01-06": "Epiphany", + "2022-04-17": "Easter", + "2022-04-18": "Easter Monday", + "2022-05-01": "International Workers' Day", + "2022-05-30": "Statehood Day", + "2022-06-16": "Corpus Christi", + "2022-06-22": "Anti-Fascist Struggle Day", + "2022-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2022-08-15": "Assumption of Mary", + "2022-11-01": "All Saints' Day", + "2022-11-18": "Memorial Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "St. Stephen's Day", + "2023-01-01": "New Year's Day", + "2023-01-06": "Epiphany", + "2023-04-09": "Easter", + "2023-04-10": "Easter Monday", + "2023-05-01": "International Workers' Day", + "2023-05-30": "Statehood Day", + "2023-06-08": "Corpus Christi", + "2023-06-22": "Anti-Fascist Struggle Day", + "2023-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2023-08-15": "Assumption of Mary", + "2023-11-01": "All Saints' Day", + "2023-11-18": "Memorial Day", + "2023-12-25": "Christmas Day", + "2023-12-26": "St. Stephen's Day", + "2024-01-01": "New Year's Day", + "2024-01-06": "Epiphany", + "2024-03-31": "Easter", + "2024-04-01": "Easter Monday", + "2024-05-01": "International Workers' Day", + "2024-05-30": "Corpus Christi; Statehood Day", + "2024-06-22": "Anti-Fascist Struggle Day", + "2024-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2024-08-15": "Assumption of Mary", + "2024-11-01": "All Saints' Day", + "2024-11-18": "Memorial Day", + "2024-12-25": "Christmas Day", + "2024-12-26": "St. Stephen's Day", + "2025-01-01": "New Year's Day", + "2025-01-06": "Epiphany", + "2025-04-20": "Easter", + "2025-04-21": "Easter Monday", + "2025-05-01": "International Workers' Day", + "2025-05-30": "Statehood Day", + "2025-06-19": "Corpus Christi", + "2025-06-22": "Anti-Fascist Struggle Day", + "2025-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2025-08-15": "Assumption of Mary", + "2025-11-01": "All Saints' Day", + "2025-11-18": "Memorial Day", + "2025-12-25": "Christmas Day", + "2025-12-26": "St. Stephen's Day", + "2026-01-01": "New Year's Day", + "2026-01-06": "Epiphany", + "2026-04-05": "Easter", + "2026-04-06": "Easter Monday", + "2026-05-01": "International Workers' Day", + "2026-05-30": "Statehood Day", + "2026-06-04": "Corpus Christi", + "2026-06-22": "Anti-Fascist Struggle Day", + "2026-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2026-08-15": "Assumption of Mary", + "2026-11-01": "All Saints' Day", + "2026-11-18": "Memorial Day", + "2026-12-25": "Christmas Day", + "2026-12-26": "St. Stephen's Day", + "2027-01-01": "New Year's Day", + "2027-01-06": "Epiphany", + "2027-03-28": "Easter", + "2027-03-29": "Easter Monday", + "2027-05-01": "International Workers' Day", + "2027-05-27": "Corpus Christi", + "2027-05-30": "Statehood Day", + "2027-06-22": "Anti-Fascist Struggle Day", + "2027-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2027-08-15": "Assumption of Mary", + "2027-11-01": "All Saints' Day", + "2027-11-18": "Memorial Day", + "2027-12-25": "Christmas Day", + "2027-12-26": "St. Stephen's Day", + "2028-01-01": "New Year's Day", + "2028-01-06": "Epiphany", + "2028-04-16": "Easter", + "2028-04-17": "Easter Monday", + "2028-05-01": "International Workers' Day", + "2028-05-30": "Statehood Day", + "2028-06-15": "Corpus Christi", + "2028-06-22": "Anti-Fascist Struggle Day", + "2028-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2028-08-15": "Assumption of Mary", + "2028-11-01": "All Saints' Day", + "2028-11-18": "Memorial Day", + "2028-12-25": "Christmas Day", + "2028-12-26": "St. Stephen's Day", + "2029-01-01": "New Year's Day", + "2029-01-06": "Epiphany", + "2029-04-01": "Easter", + "2029-04-02": "Easter Monday", + "2029-05-01": "International Workers' Day", + "2029-05-30": "Statehood Day", + "2029-05-31": "Corpus Christi", + "2029-06-22": "Anti-Fascist Struggle Day", + "2029-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2029-08-15": "Assumption of Mary", + "2029-11-01": "All Saints' Day", + "2029-11-18": "Memorial Day", + "2029-12-25": "Christmas Day", + "2029-12-26": "St. Stephen's Day", + "2030-01-01": "New Year's Day", + "2030-01-06": "Epiphany", + "2030-04-21": "Easter", + "2030-04-22": "Easter Monday", + "2030-05-01": "International Workers' Day", + "2030-05-30": "Statehood Day", + "2030-06-20": "Corpus Christi", + "2030-06-22": "Anti-Fascist Struggle Day", + "2030-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2030-08-15": "Assumption of Mary", + "2030-11-01": "All Saints' Day", + "2030-11-18": "Memorial Day", + "2030-12-25": "Christmas Day", + "2030-12-26": "St. Stephen's Day", + "2031-01-01": "New Year's Day", + "2031-01-06": "Epiphany", + "2031-04-13": "Easter", + "2031-04-14": "Easter Monday", + "2031-05-01": "International Workers' Day", + "2031-05-30": "Statehood Day", + "2031-06-12": "Corpus Christi", + "2031-06-22": "Anti-Fascist Struggle Day", + "2031-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2031-08-15": "Assumption of Mary", + "2031-11-01": "All Saints' Day", + "2031-11-18": "Memorial Day", + "2031-12-25": "Christmas Day", + "2031-12-26": "St. Stephen's Day", + "2032-01-01": "New Year's Day", + "2032-01-06": "Epiphany", + "2032-03-28": "Easter", + "2032-03-29": "Easter Monday", + "2032-05-01": "International Workers' Day", + "2032-05-27": "Corpus Christi", + "2032-05-30": "Statehood Day", + "2032-06-22": "Anti-Fascist Struggle Day", + "2032-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2032-08-15": "Assumption of Mary", + "2032-11-01": "All Saints' Day", + "2032-11-18": "Memorial Day", + "2032-12-25": "Christmas Day", + "2032-12-26": "St. Stephen's Day", + "2033-01-01": "New Year's Day", + "2033-01-06": "Epiphany", + "2033-04-17": "Easter", + "2033-04-18": "Easter Monday", + "2033-05-01": "International Workers' Day", + "2033-05-30": "Statehood Day", + "2033-06-16": "Corpus Christi", + "2033-06-22": "Anti-Fascist Struggle Day", + "2033-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2033-08-15": "Assumption of Mary", + "2033-11-01": "All Saints' Day", + "2033-11-18": "Memorial Day", + "2033-12-25": "Christmas Day", + "2033-12-26": "St. Stephen's Day", + "2034-01-01": "New Year's Day", + "2034-01-06": "Epiphany", + "2034-04-09": "Easter", + "2034-04-10": "Easter Monday", + "2034-05-01": "International Workers' Day", + "2034-05-30": "Statehood Day", + "2034-06-08": "Corpus Christi", + "2034-06-22": "Anti-Fascist Struggle Day", + "2034-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2034-08-15": "Assumption of Mary", + "2034-11-01": "All Saints' Day", + "2034-11-18": "Memorial Day", + "2034-12-25": "Christmas Day", + "2034-12-26": "St. Stephen's Day", + "2035-01-01": "New Year's Day", + "2035-01-06": "Epiphany", + "2035-03-25": "Easter", + "2035-03-26": "Easter Monday", + "2035-05-01": "International Workers' Day", + "2035-05-24": "Corpus Christi", + "2035-05-30": "Statehood Day", + "2035-06-22": "Anti-Fascist Struggle Day", + "2035-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2035-08-15": "Assumption of Mary", + "2035-11-01": "All Saints' Day", + "2035-11-18": "Memorial Day", + "2035-12-25": "Christmas Day", + "2035-12-26": "St. Stephen's Day", + "2036-01-01": "New Year's Day", + "2036-01-06": "Epiphany", + "2036-04-13": "Easter", + "2036-04-14": "Easter Monday", + "2036-05-01": "International Workers' Day", + "2036-05-30": "Statehood Day", + "2036-06-12": "Corpus Christi", + "2036-06-22": "Anti-Fascist Struggle Day", + "2036-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2036-08-15": "Assumption of Mary", + "2036-11-01": "All Saints' Day", + "2036-11-18": "Memorial Day", + "2036-12-25": "Christmas Day", + "2036-12-26": "St. Stephen's Day", + "2037-01-01": "New Year's Day", + "2037-01-06": "Epiphany", + "2037-04-05": "Easter", + "2037-04-06": "Easter Monday", + "2037-05-01": "International Workers' Day", + "2037-05-30": "Statehood Day", + "2037-06-04": "Corpus Christi", + "2037-06-22": "Anti-Fascist Struggle Day", + "2037-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2037-08-15": "Assumption of Mary", + "2037-11-01": "All Saints' Day", + "2037-11-18": "Memorial Day", + "2037-12-25": "Christmas Day", + "2037-12-26": "St. Stephen's Day", + "2038-01-01": "New Year's Day", + "2038-01-06": "Epiphany", + "2038-04-25": "Easter", + "2038-04-26": "Easter Monday", + "2038-05-01": "International Workers' Day", + "2038-05-30": "Statehood Day", + "2038-06-22": "Anti-Fascist Struggle Day", + "2038-06-24": "Corpus Christi", + "2038-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2038-08-15": "Assumption of Mary", + "2038-11-01": "All Saints' Day", + "2038-11-18": "Memorial Day", + "2038-12-25": "Christmas Day", + "2038-12-26": "St. Stephen's Day", + "2039-01-01": "New Year's Day", + "2039-01-06": "Epiphany", + "2039-04-10": "Easter", + "2039-04-11": "Easter Monday", + "2039-05-01": "International Workers' Day", + "2039-05-30": "Statehood Day", + "2039-06-09": "Corpus Christi", + "2039-06-22": "Anti-Fascist Struggle Day", + "2039-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2039-08-15": "Assumption of Mary", + "2039-11-01": "All Saints' Day", + "2039-11-18": "Memorial Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "St. Stephen's Day", + "2040-01-01": "New Year's Day", + "2040-01-06": "Epiphany", + "2040-04-01": "Easter", + "2040-04-02": "Easter Monday", + "2040-05-01": "International Workers' Day", + "2040-05-30": "Statehood Day", + "2040-05-31": "Corpus Christi", + "2040-06-22": "Anti-Fascist Struggle Day", + "2040-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2040-08-15": "Assumption of Mary", + "2040-11-01": "All Saints' Day", + "2040-11-18": "Memorial Day", + "2040-12-25": "Christmas Day", + "2040-12-26": "St. Stephen's Day", + "2041-01-01": "New Year's Day", + "2041-01-06": "Epiphany", + "2041-04-21": "Easter", + "2041-04-22": "Easter Monday", + "2041-05-01": "International Workers' Day", + "2041-05-30": "Statehood Day", + "2041-06-20": "Corpus Christi", + "2041-06-22": "Anti-Fascist Struggle Day", + "2041-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2041-08-15": "Assumption of Mary", + "2041-11-01": "All Saints' Day", + "2041-11-18": "Memorial Day", + "2041-12-25": "Christmas Day", + "2041-12-26": "St. Stephen's Day", + "2042-01-01": "New Year's Day", + "2042-01-06": "Epiphany", + "2042-04-06": "Easter", + "2042-04-07": "Easter Monday", + "2042-05-01": "International Workers' Day", + "2042-05-30": "Statehood Day", + "2042-06-05": "Corpus Christi", + "2042-06-22": "Anti-Fascist Struggle Day", + "2042-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2042-08-15": "Assumption of Mary", + "2042-11-01": "All Saints' Day", + "2042-11-18": "Memorial Day", + "2042-12-25": "Christmas Day", + "2042-12-26": "St. Stephen's Day", + "2043-01-01": "New Year's Day", + "2043-01-06": "Epiphany", + "2043-03-29": "Easter", + "2043-03-30": "Easter Monday", + "2043-05-01": "International Workers' Day", + "2043-05-28": "Corpus Christi", + "2043-05-30": "Statehood Day", + "2043-06-22": "Anti-Fascist Struggle Day", + "2043-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2043-08-15": "Assumption of Mary", + "2043-11-01": "All Saints' Day", + "2043-11-18": "Memorial Day", + "2043-12-25": "Christmas Day", + "2043-12-26": "St. Stephen's Day", + "2044-01-01": "New Year's Day", + "2044-01-06": "Epiphany", + "2044-04-17": "Easter", + "2044-04-18": "Easter Monday", + "2044-05-01": "International Workers' Day", + "2044-05-30": "Statehood Day", + "2044-06-16": "Corpus Christi", + "2044-06-22": "Anti-Fascist Struggle Day", + "2044-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2044-08-15": "Assumption of Mary", + "2044-11-01": "All Saints' Day", + "2044-11-18": "Memorial Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "St. Stephen's Day", + "2045-01-01": "New Year's Day", + "2045-01-06": "Epiphany", + "2045-04-09": "Easter", + "2045-04-10": "Easter Monday", + "2045-05-01": "International Workers' Day", + "2045-05-30": "Statehood Day", + "2045-06-08": "Corpus Christi", + "2045-06-22": "Anti-Fascist Struggle Day", + "2045-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2045-08-15": "Assumption of Mary", + "2045-11-01": "All Saints' Day", + "2045-11-18": "Memorial Day", + "2045-12-25": "Christmas Day", + "2045-12-26": "St. Stephen's Day", + "2046-01-01": "New Year's Day", + "2046-01-06": "Epiphany", + "2046-03-25": "Easter", + "2046-03-26": "Easter Monday", + "2046-05-01": "International Workers' Day", + "2046-05-24": "Corpus Christi", + "2046-05-30": "Statehood Day", + "2046-06-22": "Anti-Fascist Struggle Day", + "2046-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2046-08-15": "Assumption of Mary", + "2046-11-01": "All Saints' Day", + "2046-11-18": "Memorial Day", + "2046-12-25": "Christmas Day", + "2046-12-26": "St. Stephen's Day", + "2047-01-01": "New Year's Day", + "2047-01-06": "Epiphany", + "2047-04-14": "Easter", + "2047-04-15": "Easter Monday", + "2047-05-01": "International Workers' Day", + "2047-05-30": "Statehood Day", + "2047-06-13": "Corpus Christi", + "2047-06-22": "Anti-Fascist Struggle Day", + "2047-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2047-08-15": "Assumption of Mary", + "2047-11-01": "All Saints' Day", + "2047-11-18": "Memorial Day", + "2047-12-25": "Christmas Day", + "2047-12-26": "St. Stephen's Day", + "2048-01-01": "New Year's Day", + "2048-01-06": "Epiphany", + "2048-04-05": "Easter", + "2048-04-06": "Easter Monday", + "2048-05-01": "International Workers' Day", + "2048-05-30": "Statehood Day", + "2048-06-04": "Corpus Christi", + "2048-06-22": "Anti-Fascist Struggle Day", + "2048-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2048-08-15": "Assumption of Mary", + "2048-11-01": "All Saints' Day", + "2048-11-18": "Memorial Day", + "2048-12-25": "Christmas Day", + "2048-12-26": "St. Stephen's Day", + "2049-01-01": "New Year's Day", + "2049-01-06": "Epiphany", + "2049-04-18": "Easter", + "2049-04-19": "Easter Monday", + "2049-05-01": "International Workers' Day", + "2049-05-30": "Statehood Day", + "2049-06-17": "Corpus Christi", + "2049-06-22": "Anti-Fascist Struggle Day", + "2049-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2049-08-15": "Assumption of Mary", + "2049-11-01": "All Saints' Day", + "2049-11-18": "Memorial Day", + "2049-12-25": "Christmas Day", + "2049-12-26": "St. Stephen's Day", + "2050-01-01": "New Year's Day", + "2050-01-06": "Epiphany", + "2050-04-10": "Easter", + "2050-04-11": "Easter Monday", + "2050-05-01": "International Workers' Day", + "2050-05-30": "Statehood Day", + "2050-06-09": "Corpus Christi", + "2050-06-22": "Anti-Fascist Struggle Day", + "2050-08-05": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "2050-08-15": "Assumption of Mary", + "2050-11-01": "All Saints' Day", + "2050-11-18": "Memorial Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "St. Stephen's Day" +} diff --git a/snapshots/countries/HU.json b/snapshots/countries/HU.json new file mode 100644 index 000000000..7469d54a3 --- /dev/null +++ b/snapshots/countries/HU.json @@ -0,0 +1,1275 @@ +{ + "1950-01-01": "New Year's Day", + "1950-03-15": "National Day", + "1950-03-21": "Proclamation of Soviet Republic Day", + "1950-04-04": "Liberation Day", + "1950-04-09": "Easter", + "1950-04-10": "Easter Monday", + "1950-05-01": "Labor Day", + "1950-05-02": "Labor Day", + "1950-05-28": "Whit Sunday", + "1950-05-29": "Whit Monday", + "1950-08-20": "Bread Day", + "1950-11-07": "Great October Socialist Revolution Day", + "1950-12-25": "Christmas Day", + "1950-12-26": "Second Day of Christmas", + "1951-01-01": "New Year's Day", + "1951-03-21": "Proclamation of Soviet Republic Day", + "1951-03-25": "Easter", + "1951-03-26": "Easter Monday", + "1951-04-04": "Liberation Day", + "1951-05-01": "Labor Day", + "1951-05-02": "Labor Day", + "1951-05-13": "Whit Sunday", + "1951-05-14": "Whit Monday", + "1951-08-20": "Bread Day", + "1951-11-07": "Great October Socialist Revolution Day", + "1951-12-25": "Christmas Day", + "1951-12-26": "Second Day of Christmas", + "1952-01-01": "New Year's Day", + "1952-03-21": "Proclamation of Soviet Republic Day", + "1952-04-04": "Liberation Day", + "1952-04-13": "Easter", + "1952-04-14": "Easter Monday", + "1952-05-01": "Labor Day", + "1952-05-02": "Labor Day", + "1952-06-01": "Whit Sunday", + "1952-06-02": "Whit Monday", + "1952-08-20": "Bread Day", + "1952-11-07": "Great October Socialist Revolution Day", + "1952-12-25": "Christmas Day", + "1952-12-26": "Second Day of Christmas", + "1953-01-01": "New Year's Day", + "1953-03-21": "Proclamation of Soviet Republic Day", + "1953-04-04": "Liberation Day", + "1953-04-05": "Easter", + "1953-04-06": "Easter Monday", + "1953-05-01": "Labor Day", + "1953-05-02": "Labor Day", + "1953-05-24": "Whit Sunday", + "1953-08-20": "Bread Day", + "1953-11-07": "Great October Socialist Revolution Day", + "1953-12-25": "Christmas Day", + "1953-12-26": "Second Day of Christmas", + "1954-01-01": "New Year's Day", + "1954-03-21": "Proclamation of Soviet Republic Day", + "1954-04-04": "Liberation Day", + "1954-04-18": "Easter", + "1954-04-19": "Easter Monday", + "1954-05-01": "Labor Day", + "1954-06-06": "Whit Sunday", + "1954-08-20": "Bread Day", + "1954-11-07": "Great October Socialist Revolution Day", + "1954-12-25": "Christmas Day", + "1954-12-26": "Second Day of Christmas", + "1955-01-01": "New Year's Day", + "1955-03-21": "Proclamation of Soviet Republic Day", + "1955-04-04": "Liberation Day", + "1955-04-10": "Easter", + "1955-05-01": "Labor Day", + "1955-05-29": "Whit Sunday", + "1955-08-20": "Bread Day", + "1955-11-07": "Great October Socialist Revolution Day", + "1955-12-25": "Christmas Day", + "1956-01-01": "New Year's Day", + "1956-03-21": "Proclamation of Soviet Republic Day", + "1956-04-01": "Easter", + "1956-04-02": "Easter Monday", + "1956-04-04": "Liberation Day", + "1956-05-01": "Labor Day", + "1956-05-20": "Whit Sunday", + "1956-08-20": "Bread Day", + "1956-12-25": "Christmas Day", + "1956-12-26": "Second Day of Christmas", + "1957-01-01": "New Year's Day", + "1957-03-21": "Proclamation of Soviet Republic Day", + "1957-04-04": "Liberation Day", + "1957-04-21": "Easter", + "1957-04-22": "Easter Monday", + "1957-05-01": "Labor Day", + "1957-06-09": "Whit Sunday", + "1957-08-20": "Bread Day", + "1957-11-07": "Great October Socialist Revolution Day", + "1957-12-25": "Christmas Day", + "1957-12-26": "Second Day of Christmas", + "1958-01-01": "New Year's Day", + "1958-03-21": "Proclamation of Soviet Republic Day", + "1958-04-04": "Liberation Day", + "1958-04-06": "Easter", + "1958-04-07": "Easter Monday", + "1958-05-01": "Labor Day", + "1958-05-25": "Whit Sunday", + "1958-08-20": "Bread Day", + "1958-11-07": "Great October Socialist Revolution Day", + "1958-12-25": "Christmas Day", + "1958-12-26": "Second Day of Christmas", + "1959-01-01": "New Year's Day", + "1959-03-21": "Proclamation of Soviet Republic Day", + "1959-03-29": "Easter", + "1959-03-30": "Easter Monday", + "1959-04-04": "Liberation Day", + "1959-05-01": "Labor Day", + "1959-05-17": "Whit Sunday", + "1959-08-20": "Bread Day", + "1959-11-07": "Great October Socialist Revolution Day", + "1959-12-25": "Christmas Day", + "1959-12-26": "Second Day of Christmas", + "1960-01-01": "New Year's Day", + "1960-03-21": "Proclamation of Soviet Republic Day", + "1960-04-04": "Liberation Day", + "1960-04-17": "Easter", + "1960-04-18": "Easter Monday", + "1960-05-01": "Labor Day", + "1960-06-05": "Whit Sunday", + "1960-08-20": "Bread Day", + "1960-11-07": "Great October Socialist Revolution Day", + "1960-12-25": "Christmas Day", + "1960-12-26": "Second Day of Christmas", + "1961-01-01": "New Year's Day", + "1961-03-21": "Proclamation of Soviet Republic Day", + "1961-04-02": "Easter", + "1961-04-03": "Easter Monday", + "1961-04-04": "Liberation Day", + "1961-05-01": "Labor Day", + "1961-05-21": "Whit Sunday", + "1961-08-20": "Bread Day", + "1961-11-07": "Great October Socialist Revolution Day", + "1961-12-25": "Christmas Day", + "1961-12-26": "Second Day of Christmas", + "1962-01-01": "New Year's Day", + "1962-03-21": "Proclamation of Soviet Republic Day", + "1962-04-04": "Liberation Day", + "1962-04-22": "Easter", + "1962-04-23": "Easter Monday", + "1962-05-01": "Labor Day", + "1962-06-10": "Whit Sunday", + "1962-08-20": "Bread Day", + "1962-11-07": "Great October Socialist Revolution Day", + "1962-12-25": "Christmas Day", + "1962-12-26": "Second Day of Christmas", + "1963-01-01": "New Year's Day", + "1963-03-21": "Proclamation of Soviet Republic Day", + "1963-04-04": "Liberation Day", + "1963-04-14": "Easter", + "1963-04-15": "Easter Monday", + "1963-05-01": "Labor Day", + "1963-06-02": "Whit Sunday", + "1963-08-20": "Bread Day", + "1963-11-07": "Great October Socialist Revolution Day", + "1963-12-25": "Christmas Day", + "1963-12-26": "Second Day of Christmas", + "1964-01-01": "New Year's Day", + "1964-03-21": "Proclamation of Soviet Republic Day", + "1964-03-29": "Easter", + "1964-03-30": "Easter Monday", + "1964-04-04": "Liberation Day", + "1964-05-01": "Labor Day", + "1964-05-17": "Whit Sunday", + "1964-08-20": "Bread Day", + "1964-11-07": "Great October Socialist Revolution Day", + "1964-12-25": "Christmas Day", + "1964-12-26": "Second Day of Christmas", + "1965-01-01": "New Year's Day", + "1965-03-21": "Proclamation of Soviet Republic Day", + "1965-04-04": "Liberation Day", + "1965-04-18": "Easter", + "1965-04-19": "Easter Monday", + "1965-05-01": "Labor Day", + "1965-06-06": "Whit Sunday", + "1965-08-20": "Bread Day", + "1965-11-07": "Great October Socialist Revolution Day", + "1965-12-25": "Christmas Day", + "1965-12-26": "Second Day of Christmas", + "1966-01-01": "New Year's Day", + "1966-03-21": "Proclamation of Soviet Republic Day", + "1966-04-04": "Liberation Day", + "1966-04-10": "Easter", + "1966-04-11": "Easter Monday", + "1966-05-01": "Labor Day", + "1966-05-29": "Whit Sunday", + "1966-08-20": "Bread Day", + "1966-11-07": "Great October Socialist Revolution Day", + "1966-12-25": "Christmas Day", + "1966-12-26": "Second Day of Christmas", + "1967-01-01": "New Year's Day", + "1967-03-21": "Proclamation of Soviet Republic Day", + "1967-03-26": "Easter", + "1967-03-27": "Easter Monday", + "1967-04-04": "Liberation Day", + "1967-05-01": "Labor Day", + "1967-05-14": "Whit Sunday", + "1967-08-20": "Bread Day", + "1967-11-07": "Great October Socialist Revolution Day", + "1967-12-25": "Christmas Day", + "1967-12-26": "Second Day of Christmas", + "1968-01-01": "New Year's Day", + "1968-03-21": "Proclamation of Soviet Republic Day", + "1968-04-04": "Liberation Day", + "1968-04-14": "Easter", + "1968-04-15": "Easter Monday", + "1968-05-01": "Labor Day", + "1968-06-02": "Whit Sunday", + "1968-08-20": "Bread Day", + "1968-11-07": "Great October Socialist Revolution Day", + "1968-12-25": "Christmas Day", + "1968-12-26": "Second Day of Christmas", + "1969-01-01": "New Year's Day", + "1969-03-21": "Proclamation of Soviet Republic Day", + "1969-04-04": "Liberation Day", + "1969-04-06": "Easter", + "1969-04-07": "Easter Monday", + "1969-05-01": "Labor Day", + "1969-05-25": "Whit Sunday", + "1969-08-20": "Bread Day", + "1969-11-07": "Great October Socialist Revolution Day", + "1969-12-25": "Christmas Day", + "1969-12-26": "Second Day of Christmas", + "1970-01-01": "New Year's Day", + "1970-03-21": "Proclamation of Soviet Republic Day", + "1970-03-29": "Easter", + "1970-03-30": "Easter Monday", + "1970-04-04": "Liberation Day", + "1970-05-01": "Labor Day", + "1970-05-17": "Whit Sunday", + "1970-08-20": "Bread Day", + "1970-11-07": "Great October Socialist Revolution Day", + "1970-12-25": "Christmas Day", + "1970-12-26": "Second Day of Christmas", + "1971-01-01": "New Year's Day", + "1971-03-21": "Proclamation of Soviet Republic Day", + "1971-04-04": "Liberation Day", + "1971-04-11": "Easter", + "1971-04-12": "Easter Monday", + "1971-05-01": "Labor Day", + "1971-05-30": "Whit Sunday", + "1971-08-20": "Bread Day", + "1971-11-07": "Great October Socialist Revolution Day", + "1971-12-25": "Christmas Day", + "1971-12-26": "Second Day of Christmas", + "1972-01-01": "New Year's Day", + "1972-03-21": "Proclamation of Soviet Republic Day", + "1972-04-02": "Easter", + "1972-04-03": "Easter Monday", + "1972-04-04": "Liberation Day", + "1972-05-01": "Labor Day", + "1972-05-21": "Whit Sunday", + "1972-08-20": "Bread Day", + "1972-11-07": "Great October Socialist Revolution Day", + "1972-12-25": "Christmas Day", + "1972-12-26": "Second Day of Christmas", + "1973-01-01": "New Year's Day", + "1973-03-21": "Proclamation of Soviet Republic Day", + "1973-04-04": "Liberation Day", + "1973-04-22": "Easter", + "1973-04-23": "Easter Monday", + "1973-05-01": "Labor Day", + "1973-06-10": "Whit Sunday", + "1973-08-20": "Bread Day", + "1973-11-07": "Great October Socialist Revolution Day", + "1973-12-25": "Christmas Day", + "1973-12-26": "Second Day of Christmas", + "1974-01-01": "New Year's Day", + "1974-03-21": "Proclamation of Soviet Republic Day", + "1974-04-04": "Liberation Day", + "1974-04-14": "Easter", + "1974-04-15": "Easter Monday", + "1974-05-01": "Labor Day", + "1974-06-02": "Whit Sunday", + "1974-08-20": "Bread Day", + "1974-11-07": "Great October Socialist Revolution Day", + "1974-12-25": "Christmas Day", + "1974-12-26": "Second Day of Christmas", + "1975-01-01": "New Year's Day", + "1975-03-21": "Proclamation of Soviet Republic Day", + "1975-03-30": "Easter", + "1975-03-31": "Easter Monday", + "1975-04-04": "Liberation Day", + "1975-05-01": "Labor Day", + "1975-05-18": "Whit Sunday", + "1975-08-20": "Bread Day", + "1975-11-07": "Great October Socialist Revolution Day", + "1975-12-25": "Christmas Day", + "1975-12-26": "Second Day of Christmas", + "1976-01-01": "New Year's Day", + "1976-03-21": "Proclamation of Soviet Republic Day", + "1976-04-04": "Liberation Day", + "1976-04-18": "Easter", + "1976-04-19": "Easter Monday", + "1976-05-01": "Labor Day", + "1976-06-06": "Whit Sunday", + "1976-08-20": "Bread Day", + "1976-11-07": "Great October Socialist Revolution Day", + "1976-12-25": "Christmas Day", + "1976-12-26": "Second Day of Christmas", + "1977-01-01": "New Year's Day", + "1977-03-21": "Proclamation of Soviet Republic Day", + "1977-04-04": "Liberation Day", + "1977-04-10": "Easter", + "1977-04-11": "Easter Monday", + "1977-05-01": "Labor Day", + "1977-05-29": "Whit Sunday", + "1977-08-20": "Bread Day", + "1977-11-07": "Great October Socialist Revolution Day", + "1977-12-25": "Christmas Day", + "1977-12-26": "Second Day of Christmas", + "1978-01-01": "New Year's Day", + "1978-03-21": "Proclamation of Soviet Republic Day", + "1978-03-26": "Easter", + "1978-03-27": "Easter Monday", + "1978-04-04": "Liberation Day", + "1978-05-01": "Labor Day", + "1978-05-14": "Whit Sunday", + "1978-08-20": "Bread Day", + "1978-11-07": "Great October Socialist Revolution Day", + "1978-12-25": "Christmas Day", + "1978-12-26": "Second Day of Christmas", + "1979-01-01": "New Year's Day", + "1979-03-21": "Proclamation of Soviet Republic Day", + "1979-04-04": "Liberation Day", + "1979-04-15": "Easter", + "1979-04-16": "Easter Monday", + "1979-05-01": "Labor Day", + "1979-06-03": "Whit Sunday", + "1979-08-20": "Bread Day", + "1979-11-07": "Great October Socialist Revolution Day", + "1979-12-25": "Christmas Day", + "1979-12-26": "Second Day of Christmas", + "1980-01-01": "New Year's Day", + "1980-03-21": "Proclamation of Soviet Republic Day", + "1980-04-04": "Liberation Day", + "1980-04-06": "Easter", + "1980-04-07": "Easter Monday", + "1980-05-01": "Labor Day", + "1980-05-25": "Whit Sunday", + "1980-08-20": "Bread Day", + "1980-11-07": "Great October Socialist Revolution Day", + "1980-12-25": "Christmas Day", + "1980-12-26": "Second Day of Christmas", + "1981-01-01": "New Year's Day", + "1981-03-21": "Proclamation of Soviet Republic Day", + "1981-04-04": "Liberation Day", + "1981-04-19": "Easter", + "1981-04-20": "Easter Monday", + "1981-05-01": "Labor Day", + "1981-06-07": "Whit Sunday", + "1981-08-20": "Bread Day", + "1981-11-07": "Great October Socialist Revolution Day", + "1981-12-25": "Christmas Day", + "1981-12-26": "Second Day of Christmas", + "1982-01-01": "New Year's Day", + "1982-03-21": "Proclamation of Soviet Republic Day", + "1982-04-04": "Liberation Day", + "1982-04-11": "Easter", + "1982-04-12": "Easter Monday", + "1982-05-01": "Labor Day", + "1982-05-30": "Whit Sunday", + "1982-08-20": "Bread Day", + "1982-11-07": "Great October Socialist Revolution Day", + "1982-12-25": "Christmas Day", + "1982-12-26": "Second Day of Christmas", + "1983-01-01": "New Year's Day", + "1983-03-21": "Proclamation of Soviet Republic Day", + "1983-04-03": "Easter", + "1983-04-04": "Easter Monday; Liberation Day", + "1983-05-01": "Labor Day", + "1983-05-22": "Whit Sunday", + "1983-08-20": "Bread Day", + "1983-11-07": "Great October Socialist Revolution Day", + "1983-12-25": "Christmas Day", + "1983-12-26": "Second Day of Christmas", + "1984-01-01": "New Year's Day", + "1984-03-21": "Proclamation of Soviet Republic Day", + "1984-04-04": "Liberation Day", + "1984-04-22": "Easter", + "1984-04-23": "Easter Monday", + "1984-05-01": "Labor Day", + "1984-06-10": "Whit Sunday", + "1984-08-20": "Bread Day", + "1984-11-07": "Great October Socialist Revolution Day", + "1984-12-25": "Christmas Day", + "1984-12-26": "Second Day of Christmas", + "1985-01-01": "New Year's Day", + "1985-03-21": "Proclamation of Soviet Republic Day", + "1985-04-04": "Liberation Day", + "1985-04-07": "Easter", + "1985-04-08": "Easter Monday", + "1985-05-01": "Labor Day", + "1985-05-26": "Whit Sunday", + "1985-08-20": "Bread Day", + "1985-11-07": "Great October Socialist Revolution Day", + "1985-12-25": "Christmas Day", + "1985-12-26": "Second Day of Christmas", + "1986-01-01": "New Year's Day", + "1986-03-21": "Proclamation of Soviet Republic Day", + "1986-03-30": "Easter", + "1986-03-31": "Easter Monday", + "1986-04-04": "Liberation Day", + "1986-05-01": "Labor Day", + "1986-05-18": "Whit Sunday", + "1986-08-20": "Bread Day", + "1986-11-07": "Great October Socialist Revolution Day", + "1986-12-25": "Christmas Day", + "1986-12-26": "Second Day of Christmas", + "1987-01-01": "New Year's Day", + "1987-03-21": "Proclamation of Soviet Republic Day", + "1987-04-04": "Liberation Day", + "1987-04-19": "Easter", + "1987-04-20": "Easter Monday", + "1987-05-01": "Labor Day", + "1987-06-07": "Whit Sunday", + "1987-08-20": "Bread Day", + "1987-11-07": "Great October Socialist Revolution Day", + "1987-12-25": "Christmas Day", + "1987-12-26": "Second Day of Christmas", + "1988-01-01": "New Year's Day", + "1988-03-21": "Proclamation of Soviet Republic Day", + "1988-04-03": "Easter", + "1988-04-04": "Easter Monday; Liberation Day", + "1988-05-01": "Labor Day", + "1988-05-22": "Whit Sunday", + "1988-08-20": "Bread Day", + "1988-11-07": "Great October Socialist Revolution Day", + "1988-12-25": "Christmas Day", + "1988-12-26": "Second Day of Christmas", + "1989-01-01": "New Year's Day", + "1989-03-15": "National Day", + "1989-03-21": "Proclamation of Soviet Republic Day", + "1989-03-26": "Easter", + "1989-03-27": "Easter Monday", + "1989-04-04": "Liberation Day", + "1989-05-01": "Labor Day", + "1989-05-14": "Whit Sunday", + "1989-08-20": "Bread Day", + "1989-12-25": "Christmas Day", + "1989-12-26": "Second Day of Christmas", + "1990-01-01": "New Year's Day", + "1990-03-15": "National Day", + "1990-04-15": "Easter", + "1990-04-16": "Easter Monday", + "1990-05-01": "Labor Day", + "1990-06-03": "Whit Sunday", + "1990-08-20": "State Foundation Day", + "1990-12-25": "Christmas Day", + "1990-12-26": "Second Day of Christmas", + "1991-01-01": "New Year's Day", + "1991-03-15": "National Day", + "1991-03-31": "Easter", + "1991-04-01": "Easter Monday", + "1991-05-01": "Labor Day", + "1991-05-19": "Whit Sunday", + "1991-08-20": "State Foundation Day", + "1991-10-23": "National Day", + "1991-12-25": "Christmas Day", + "1991-12-26": "Second Day of Christmas", + "1992-01-01": "New Year's Day", + "1992-03-15": "National Day", + "1992-04-19": "Easter", + "1992-04-20": "Easter Monday", + "1992-05-01": "Labor Day", + "1992-06-07": "Whit Sunday", + "1992-06-08": "Whit Monday", + "1992-08-20": "State Foundation Day", + "1992-10-23": "National Day", + "1992-12-25": "Christmas Day", + "1992-12-26": "Second Day of Christmas", + "1993-01-01": "New Year's Day", + "1993-03-15": "National Day", + "1993-04-11": "Easter", + "1993-04-12": "Easter Monday", + "1993-05-01": "Labor Day", + "1993-05-30": "Whit Sunday", + "1993-05-31": "Whit Monday", + "1993-08-20": "State Foundation Day", + "1993-10-23": "National Day", + "1993-12-25": "Christmas Day", + "1993-12-26": "Second Day of Christmas", + "1994-01-01": "New Year's Day", + "1994-03-15": "National Day", + "1994-04-03": "Easter", + "1994-04-04": "Easter Monday", + "1994-05-01": "Labor Day", + "1994-05-22": "Whit Sunday", + "1994-05-23": "Whit Monday", + "1994-08-20": "State Foundation Day", + "1994-10-23": "National Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Second Day of Christmas", + "1995-01-01": "New Year's Day", + "1995-03-15": "National Day", + "1995-04-16": "Easter", + "1995-04-17": "Easter Monday", + "1995-05-01": "Labor Day", + "1995-06-04": "Whit Sunday", + "1995-06-05": "Whit Monday", + "1995-08-20": "State Foundation Day", + "1995-10-23": "National Day", + "1995-12-25": "Christmas Day", + "1995-12-26": "Second Day of Christmas", + "1996-01-01": "New Year's Day", + "1996-03-15": "National Day", + "1996-04-07": "Easter", + "1996-04-08": "Easter Monday", + "1996-05-01": "Labor Day", + "1996-05-26": "Whit Sunday", + "1996-05-27": "Whit Monday", + "1996-08-20": "State Foundation Day", + "1996-10-23": "National Day", + "1996-12-25": "Christmas Day", + "1996-12-26": "Second Day of Christmas", + "1997-01-01": "New Year's Day", + "1997-03-15": "National Day", + "1997-03-30": "Easter", + "1997-03-31": "Easter Monday", + "1997-05-01": "Labor Day", + "1997-05-18": "Whit Sunday", + "1997-05-19": "Whit Monday", + "1997-08-20": "State Foundation Day", + "1997-10-23": "National Day", + "1997-12-25": "Christmas Day", + "1997-12-26": "Second Day of Christmas", + "1998-01-01": "New Year's Day", + "1998-03-15": "National Day", + "1998-04-12": "Easter", + "1998-04-13": "Easter Monday", + "1998-05-01": "Labor Day", + "1998-05-31": "Whit Sunday", + "1998-06-01": "Whit Monday", + "1998-08-20": "State Foundation Day", + "1998-10-23": "National Day", + "1998-12-25": "Christmas Day", + "1998-12-26": "Second Day of Christmas", + "1999-01-01": "New Year's Day", + "1999-03-15": "National Day", + "1999-04-04": "Easter", + "1999-04-05": "Easter Monday", + "1999-05-01": "Labor Day", + "1999-05-23": "Whit Sunday", + "1999-05-24": "Whit Monday", + "1999-08-20": "State Foundation Day", + "1999-10-23": "National Day", + "1999-11-01": "All Saints' Day", + "1999-12-25": "Christmas Day", + "1999-12-26": "Second Day of Christmas", + "2000-01-01": "New Year's Day", + "2000-03-15": "National Day", + "2000-04-23": "Easter", + "2000-04-24": "Easter Monday", + "2000-05-01": "Labor Day", + "2000-06-11": "Whit Sunday", + "2000-06-12": "Whit Monday", + "2000-08-20": "State Foundation Day", + "2000-10-23": "National Day", + "2000-11-01": "All Saints' Day", + "2000-12-25": "Christmas Day", + "2000-12-26": "Second Day of Christmas", + "2001-01-01": "New Year's Day", + "2001-03-15": "National Day", + "2001-04-15": "Easter", + "2001-04-16": "Easter Monday", + "2001-05-01": "Labor Day", + "2001-06-03": "Whit Sunday", + "2001-06-04": "Whit Monday", + "2001-08-20": "State Foundation Day", + "2001-10-23": "National Day", + "2001-11-01": "All Saints' Day", + "2001-12-25": "Christmas Day", + "2001-12-26": "Second Day of Christmas", + "2002-01-01": "New Year's Day", + "2002-03-15": "National Day", + "2002-03-31": "Easter", + "2002-04-01": "Easter Monday", + "2002-05-01": "Labor Day", + "2002-05-19": "Whit Sunday", + "2002-05-20": "Whit Monday", + "2002-08-20": "State Foundation Day", + "2002-10-23": "National Day", + "2002-11-01": "All Saints' Day", + "2002-12-25": "Christmas Day", + "2002-12-26": "Second Day of Christmas", + "2003-01-01": "New Year's Day", + "2003-03-15": "National Day", + "2003-04-20": "Easter", + "2003-04-21": "Easter Monday", + "2003-05-01": "Labor Day", + "2003-06-08": "Whit Sunday", + "2003-06-09": "Whit Monday", + "2003-08-20": "State Foundation Day", + "2003-10-23": "National Day", + "2003-11-01": "All Saints' Day", + "2003-12-25": "Christmas Day", + "2003-12-26": "Second Day of Christmas", + "2004-01-01": "New Year's Day", + "2004-03-15": "National Day", + "2004-04-11": "Easter", + "2004-04-12": "Easter Monday", + "2004-05-01": "Labor Day", + "2004-05-30": "Whit Sunday", + "2004-05-31": "Whit Monday", + "2004-08-20": "State Foundation Day", + "2004-10-23": "National Day", + "2004-11-01": "All Saints' Day", + "2004-12-25": "Christmas Day", + "2004-12-26": "Second Day of Christmas", + "2005-01-01": "New Year's Day", + "2005-03-15": "National Day", + "2005-03-27": "Easter", + "2005-03-28": "Easter Monday", + "2005-05-01": "Labor Day", + "2005-05-15": "Whit Sunday", + "2005-05-16": "Whit Monday", + "2005-08-20": "State Foundation Day", + "2005-10-23": "National Day", + "2005-11-01": "All Saints' Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "Second Day of Christmas", + "2006-01-01": "New Year's Day", + "2006-03-15": "National Day", + "2006-04-16": "Easter", + "2006-04-17": "Easter Monday", + "2006-05-01": "Labor Day", + "2006-06-04": "Whit Sunday", + "2006-06-05": "Whit Monday", + "2006-08-20": "State Foundation Day", + "2006-10-23": "National Day", + "2006-11-01": "All Saints' Day", + "2006-12-25": "Christmas Day", + "2006-12-26": "Second Day of Christmas", + "2007-01-01": "New Year's Day", + "2007-03-15": "National Day", + "2007-04-08": "Easter", + "2007-04-09": "Easter Monday", + "2007-05-01": "Labor Day", + "2007-05-27": "Whit Sunday", + "2007-05-28": "Whit Monday", + "2007-08-20": "State Foundation Day", + "2007-10-23": "National Day", + "2007-11-01": "All Saints' Day", + "2007-12-25": "Christmas Day", + "2007-12-26": "Second Day of Christmas", + "2008-01-01": "New Year's Day", + "2008-03-15": "National Day", + "2008-03-23": "Easter", + "2008-03-24": "Easter Monday", + "2008-05-01": "Labor Day", + "2008-05-11": "Whit Sunday", + "2008-05-12": "Whit Monday", + "2008-08-20": "State Foundation Day", + "2008-10-23": "National Day", + "2008-11-01": "All Saints' Day", + "2008-12-25": "Christmas Day", + "2008-12-26": "Second Day of Christmas", + "2009-01-01": "New Year's Day", + "2009-03-15": "National Day", + "2009-04-12": "Easter", + "2009-04-13": "Easter Monday", + "2009-05-01": "Labor Day", + "2009-05-31": "Whit Sunday", + "2009-06-01": "Whit Monday", + "2009-08-20": "State Foundation Day", + "2009-10-23": "National Day", + "2009-11-01": "All Saints' Day", + "2009-12-25": "Christmas Day", + "2009-12-26": "Second Day of Christmas", + "2010-01-01": "New Year's Day", + "2010-03-15": "National Day", + "2010-04-04": "Easter", + "2010-04-05": "Easter Monday", + "2010-05-01": "Labor Day", + "2010-05-23": "Whit Sunday", + "2010-05-24": "Whit Monday", + "2010-08-20": "State Foundation Day", + "2010-10-23": "National Day", + "2010-11-01": "All Saints' Day", + "2010-12-25": "Christmas Day", + "2010-12-26": "Second Day of Christmas", + "2011-01-01": "New Year's Day", + "2011-03-14": "Day off before National Day", + "2011-03-15": "National Day", + "2011-04-24": "Easter", + "2011-04-25": "Easter Monday", + "2011-05-01": "Labor Day", + "2011-06-12": "Whit Sunday", + "2011-06-13": "Whit Monday", + "2011-08-20": "State Foundation Day", + "2011-10-23": "National Day", + "2011-10-31": "Day off before All Saints' Day", + "2011-11-01": "All Saints' Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "Second Day of Christmas", + "2012-01-01": "New Year's Day", + "2012-03-15": "National Day", + "2012-03-16": "Day off after National Day", + "2012-04-08": "Easter", + "2012-04-09": "Easter Monday", + "2012-04-30": "Day off before Labor Day", + "2012-05-01": "Labor Day", + "2012-05-27": "Whit Sunday", + "2012-05-28": "Whit Monday", + "2012-08-20": "State Foundation Day", + "2012-10-22": "Day off before National Day", + "2012-10-23": "National Day", + "2012-11-01": "All Saints' Day", + "2012-11-02": "Day off after All Saints' Day", + "2012-12-25": "Christmas Day", + "2012-12-26": "Second Day of Christmas", + "2013-01-01": "New Year's Day", + "2013-03-15": "National Day", + "2013-03-31": "Easter", + "2013-04-01": "Easter Monday", + "2013-05-01": "Labor Day", + "2013-05-19": "Whit Sunday", + "2013-05-20": "Whit Monday", + "2013-08-19": "Day off before State Foundation Day", + "2013-08-20": "State Foundation Day", + "2013-10-23": "National Day", + "2013-11-01": "All Saints' Day", + "2013-12-25": "Christmas Day", + "2013-12-26": "Second Day of Christmas", + "2013-12-27": "Day off after Second Day of Christmas", + "2014-01-01": "New Year's Day", + "2014-03-15": "National Day", + "2014-04-20": "Easter", + "2014-04-21": "Easter Monday", + "2014-05-01": "Labor Day", + "2014-05-02": "Day off after Labor Day", + "2014-06-08": "Whit Sunday", + "2014-06-09": "Whit Monday", + "2014-08-20": "State Foundation Day", + "2014-10-23": "National Day", + "2014-10-24": "Day off after National Day", + "2014-11-01": "All Saints' Day", + "2014-12-25": "Christmas Day", + "2014-12-26": "Second Day of Christmas", + "2015-01-01": "New Year's Day", + "2015-01-02": "Day off after New Year's Day", + "2015-03-15": "National Day", + "2015-04-05": "Easter", + "2015-04-06": "Easter Monday", + "2015-05-01": "Labor Day", + "2015-05-24": "Whit Sunday", + "2015-05-25": "Whit Monday", + "2015-08-20": "State Foundation Day", + "2015-08-21": "Day off after State Foundation Day", + "2015-10-23": "National Day", + "2015-11-01": "All Saints' Day", + "2015-12-25": "Christmas Day", + "2015-12-26": "Second Day of Christmas", + "2016-01-01": "New Year's Day", + "2016-03-14": "Day off before National Day", + "2016-03-15": "National Day", + "2016-03-27": "Easter", + "2016-03-28": "Easter Monday", + "2016-05-01": "Labor Day", + "2016-05-15": "Whit Sunday", + "2016-05-16": "Whit Monday", + "2016-08-20": "State Foundation Day", + "2016-10-23": "National Day", + "2016-10-31": "Day off before All Saints' Day", + "2016-11-01": "All Saints' Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "Second Day of Christmas", + "2017-01-01": "New Year's Day", + "2017-03-15": "National Day", + "2017-04-14": "Good Friday", + "2017-04-16": "Easter", + "2017-04-17": "Easter Monday", + "2017-05-01": "Labor Day", + "2017-06-04": "Whit Sunday", + "2017-06-05": "Whit Monday", + "2017-08-20": "State Foundation Day", + "2017-10-23": "National Day", + "2017-11-01": "All Saints' Day", + "2017-12-25": "Christmas Day", + "2017-12-26": "Second Day of Christmas", + "2018-01-01": "New Year's Day", + "2018-03-15": "National Day", + "2018-03-16": "Day off after National Day", + "2018-03-30": "Good Friday", + "2018-04-01": "Easter", + "2018-04-02": "Easter Monday", + "2018-04-30": "Day off before Labor Day", + "2018-05-01": "Labor Day", + "2018-05-20": "Whit Sunday", + "2018-05-21": "Whit Monday", + "2018-08-20": "State Foundation Day", + "2018-10-22": "Day off before National Day", + "2018-10-23": "National Day", + "2018-11-01": "All Saints' Day", + "2018-11-02": "Day off after All Saints' Day", + "2018-12-25": "Christmas Day", + "2018-12-26": "Second Day of Christmas", + "2018-12-31": "Day off before New Year's Day", + "2019-01-01": "New Year's Day", + "2019-03-15": "National Day", + "2019-04-19": "Good Friday", + "2019-04-21": "Easter", + "2019-04-22": "Easter Monday", + "2019-05-01": "Labor Day", + "2019-06-09": "Whit Sunday", + "2019-06-10": "Whit Monday", + "2019-08-19": "Day off before State Foundation Day", + "2019-08-20": "State Foundation Day", + "2019-10-23": "National Day", + "2019-11-01": "All Saints' Day", + "2019-12-25": "Christmas Day", + "2019-12-26": "Second Day of Christmas", + "2019-12-27": "Day off after Second Day of Christmas", + "2020-01-01": "New Year's Day", + "2020-03-15": "National Day", + "2020-04-10": "Good Friday", + "2020-04-12": "Easter", + "2020-04-13": "Easter Monday", + "2020-05-01": "Labor Day", + "2020-05-31": "Whit Sunday", + "2020-06-01": "Whit Monday", + "2020-08-20": "State Foundation Day", + "2020-08-21": "Day off after State Foundation Day", + "2020-10-23": "National Day", + "2020-11-01": "All Saints' Day", + "2020-12-25": "Christmas Day", + "2020-12-26": "Second Day of Christmas", + "2021-01-01": "New Year's Day", + "2021-03-15": "National Day", + "2021-04-02": "Good Friday", + "2021-04-04": "Easter", + "2021-04-05": "Easter Monday", + "2021-05-01": "Labor Day", + "2021-05-23": "Whit Sunday", + "2021-05-24": "Whit Monday", + "2021-08-20": "State Foundation Day", + "2021-10-23": "National Day", + "2021-11-01": "All Saints' Day", + "2021-12-25": "Christmas Day", + "2021-12-26": "Second Day of Christmas", + "2022-01-01": "New Year's Day", + "2022-03-14": "Day off before National Day", + "2022-03-15": "National Day", + "2022-04-15": "Good Friday", + "2022-04-17": "Easter", + "2022-04-18": "Easter Monday", + "2022-05-01": "Labor Day", + "2022-06-05": "Whit Sunday", + "2022-06-06": "Whit Monday", + "2022-08-20": "State Foundation Day", + "2022-10-23": "National Day", + "2022-10-31": "Day off before All Saints' Day", + "2022-11-01": "All Saints' Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "Second Day of Christmas", + "2023-01-01": "New Year's Day", + "2023-03-15": "National Day", + "2023-04-07": "Good Friday", + "2023-04-09": "Easter", + "2023-04-10": "Easter Monday", + "2023-05-01": "Labor Day", + "2023-05-28": "Whit Sunday", + "2023-05-29": "Whit Monday", + "2023-08-20": "State Foundation Day", + "2023-10-23": "National Day", + "2023-11-01": "All Saints' Day", + "2023-12-25": "Christmas Day", + "2023-12-26": "Second Day of Christmas", + "2024-01-01": "New Year's Day", + "2024-03-15": "National Day", + "2024-03-29": "Good Friday", + "2024-03-31": "Easter", + "2024-04-01": "Easter Monday", + "2024-05-01": "Labor Day", + "2024-05-19": "Whit Sunday", + "2024-05-20": "Whit Monday", + "2024-08-19": "Day off before State Foundation Day", + "2024-08-20": "State Foundation Day", + "2024-10-23": "National Day", + "2024-11-01": "All Saints' Day", + "2024-12-25": "Christmas Day", + "2024-12-26": "Second Day of Christmas", + "2024-12-27": "Day off after Second Day of Christmas", + "2025-01-01": "New Year's Day", + "2025-03-15": "National Day", + "2025-04-18": "Good Friday", + "2025-04-20": "Easter", + "2025-04-21": "Easter Monday", + "2025-05-01": "Labor Day", + "2025-05-02": "Day off after Labor Day", + "2025-06-08": "Whit Sunday", + "2025-06-09": "Whit Monday", + "2025-08-20": "State Foundation Day", + "2025-10-23": "National Day", + "2025-10-24": "Day off after National Day", + "2025-11-01": "All Saints' Day", + "2025-12-25": "Christmas Day", + "2025-12-26": "Second Day of Christmas", + "2026-01-01": "New Year's Day", + "2026-01-02": "Day off after New Year's Day", + "2026-03-15": "National Day", + "2026-04-03": "Good Friday", + "2026-04-05": "Easter", + "2026-04-06": "Easter Monday", + "2026-05-01": "Labor Day", + "2026-05-24": "Whit Sunday", + "2026-05-25": "Whit Monday", + "2026-08-20": "State Foundation Day", + "2026-08-21": "Day off after State Foundation Day", + "2026-10-23": "National Day", + "2026-11-01": "All Saints' Day", + "2026-12-25": "Christmas Day", + "2026-12-26": "Second Day of Christmas", + "2027-01-01": "New Year's Day", + "2027-03-15": "National Day", + "2027-03-26": "Good Friday", + "2027-03-28": "Easter", + "2027-03-29": "Easter Monday", + "2027-05-01": "Labor Day", + "2027-05-16": "Whit Sunday", + "2027-05-17": "Whit Monday", + "2027-08-20": "State Foundation Day", + "2027-10-23": "National Day", + "2027-11-01": "All Saints' Day", + "2027-12-25": "Christmas Day", + "2027-12-26": "Second Day of Christmas", + "2028-01-01": "New Year's Day", + "2028-03-15": "National Day", + "2028-04-14": "Good Friday", + "2028-04-16": "Easter", + "2028-04-17": "Easter Monday", + "2028-05-01": "Labor Day", + "2028-06-04": "Whit Sunday", + "2028-06-05": "Whit Monday", + "2028-08-20": "State Foundation Day", + "2028-10-23": "National Day", + "2028-11-01": "All Saints' Day", + "2028-12-25": "Christmas Day", + "2028-12-26": "Second Day of Christmas", + "2029-01-01": "New Year's Day", + "2029-03-15": "National Day", + "2029-03-16": "Day off after National Day", + "2029-03-30": "Good Friday", + "2029-04-01": "Easter", + "2029-04-02": "Easter Monday", + "2029-04-30": "Day off before Labor Day", + "2029-05-01": "Labor Day", + "2029-05-20": "Whit Sunday", + "2029-05-21": "Whit Monday", + "2029-08-20": "State Foundation Day", + "2029-10-22": "Day off before National Day", + "2029-10-23": "National Day", + "2029-11-01": "All Saints' Day", + "2029-11-02": "Day off after All Saints' Day", + "2029-12-25": "Christmas Day", + "2029-12-26": "Second Day of Christmas", + "2029-12-31": "Day off before New Year's Day", + "2030-01-01": "New Year's Day", + "2030-03-15": "National Day", + "2030-04-19": "Good Friday", + "2030-04-21": "Easter", + "2030-04-22": "Easter Monday", + "2030-05-01": "Labor Day", + "2030-06-09": "Whit Sunday", + "2030-06-10": "Whit Monday", + "2030-08-19": "Day off before State Foundation Day", + "2030-08-20": "State Foundation Day", + "2030-10-23": "National Day", + "2030-11-01": "All Saints' Day", + "2030-12-25": "Christmas Day", + "2030-12-26": "Second Day of Christmas", + "2030-12-27": "Day off after Second Day of Christmas", + "2031-01-01": "New Year's Day", + "2031-03-15": "National Day", + "2031-04-11": "Good Friday", + "2031-04-13": "Easter", + "2031-04-14": "Easter Monday", + "2031-05-01": "Labor Day", + "2031-05-02": "Day off after Labor Day", + "2031-06-01": "Whit Sunday", + "2031-06-02": "Whit Monday", + "2031-08-20": "State Foundation Day", + "2031-10-23": "National Day", + "2031-10-24": "Day off after National Day", + "2031-11-01": "All Saints' Day", + "2031-12-25": "Christmas Day", + "2031-12-26": "Second Day of Christmas", + "2032-01-01": "New Year's Day", + "2032-01-02": "Day off after New Year's Day", + "2032-03-15": "National Day", + "2032-03-26": "Good Friday", + "2032-03-28": "Easter", + "2032-03-29": "Easter Monday", + "2032-05-01": "Labor Day", + "2032-05-16": "Whit Sunday", + "2032-05-17": "Whit Monday", + "2032-08-20": "State Foundation Day", + "2032-10-23": "National Day", + "2032-11-01": "All Saints' Day", + "2032-12-25": "Christmas Day", + "2032-12-26": "Second Day of Christmas", + "2033-01-01": "New Year's Day", + "2033-03-14": "Day off before National Day", + "2033-03-15": "National Day", + "2033-04-15": "Good Friday", + "2033-04-17": "Easter", + "2033-04-18": "Easter Monday", + "2033-05-01": "Labor Day", + "2033-06-05": "Whit Sunday", + "2033-06-06": "Whit Monday", + "2033-08-20": "State Foundation Day", + "2033-10-23": "National Day", + "2033-10-31": "Day off before All Saints' Day", + "2033-11-01": "All Saints' Day", + "2033-12-25": "Christmas Day", + "2033-12-26": "Second Day of Christmas", + "2034-01-01": "New Year's Day", + "2034-03-15": "National Day", + "2034-04-07": "Good Friday", + "2034-04-09": "Easter", + "2034-04-10": "Easter Monday", + "2034-05-01": "Labor Day", + "2034-05-28": "Whit Sunday", + "2034-05-29": "Whit Monday", + "2034-08-20": "State Foundation Day", + "2034-10-23": "National Day", + "2034-11-01": "All Saints' Day", + "2034-12-25": "Christmas Day", + "2034-12-26": "Second Day of Christmas", + "2035-01-01": "New Year's Day", + "2035-03-15": "National Day", + "2035-03-16": "Day off after National Day", + "2035-03-23": "Good Friday", + "2035-03-25": "Easter", + "2035-03-26": "Easter Monday", + "2035-04-30": "Day off before Labor Day", + "2035-05-01": "Labor Day", + "2035-05-13": "Whit Sunday", + "2035-05-14": "Whit Monday", + "2035-08-20": "State Foundation Day", + "2035-10-22": "Day off before National Day", + "2035-10-23": "National Day", + "2035-11-01": "All Saints' Day", + "2035-11-02": "Day off after All Saints' Day", + "2035-12-25": "Christmas Day", + "2035-12-26": "Second Day of Christmas", + "2035-12-31": "Day off before New Year's Day", + "2036-01-01": "New Year's Day", + "2036-03-15": "National Day", + "2036-04-11": "Good Friday", + "2036-04-13": "Easter", + "2036-04-14": "Easter Monday", + "2036-05-01": "Labor Day", + "2036-05-02": "Day off after Labor Day", + "2036-06-01": "Whit Sunday", + "2036-06-02": "Whit Monday", + "2036-08-20": "State Foundation Day", + "2036-10-23": "National Day", + "2036-10-24": "Day off after National Day", + "2036-11-01": "All Saints' Day", + "2036-12-25": "Christmas Day", + "2036-12-26": "Second Day of Christmas", + "2037-01-01": "New Year's Day", + "2037-01-02": "Day off after New Year's Day", + "2037-03-15": "National Day", + "2037-04-03": "Good Friday", + "2037-04-05": "Easter", + "2037-04-06": "Easter Monday", + "2037-05-01": "Labor Day", + "2037-05-24": "Whit Sunday", + "2037-05-25": "Whit Monday", + "2037-08-20": "State Foundation Day", + "2037-08-21": "Day off after State Foundation Day", + "2037-10-23": "National Day", + "2037-11-01": "All Saints' Day", + "2037-12-25": "Christmas Day", + "2037-12-26": "Second Day of Christmas", + "2038-01-01": "New Year's Day", + "2038-03-15": "National Day", + "2038-04-23": "Good Friday", + "2038-04-25": "Easter", + "2038-04-26": "Easter Monday", + "2038-05-01": "Labor Day", + "2038-06-13": "Whit Sunday", + "2038-06-14": "Whit Monday", + "2038-08-20": "State Foundation Day", + "2038-10-23": "National Day", + "2038-11-01": "All Saints' Day", + "2038-12-25": "Christmas Day", + "2038-12-26": "Second Day of Christmas", + "2039-01-01": "New Year's Day", + "2039-03-14": "Day off before National Day", + "2039-03-15": "National Day", + "2039-04-08": "Good Friday", + "2039-04-10": "Easter", + "2039-04-11": "Easter Monday", + "2039-05-01": "Labor Day", + "2039-05-29": "Whit Sunday", + "2039-05-30": "Whit Monday", + "2039-08-20": "State Foundation Day", + "2039-10-23": "National Day", + "2039-10-31": "Day off before All Saints' Day", + "2039-11-01": "All Saints' Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Second Day of Christmas", + "2040-01-01": "New Year's Day", + "2040-03-15": "National Day", + "2040-03-16": "Day off after National Day", + "2040-03-30": "Good Friday", + "2040-04-01": "Easter", + "2040-04-02": "Easter Monday", + "2040-04-30": "Day off before Labor Day", + "2040-05-01": "Labor Day", + "2040-05-20": "Whit Sunday", + "2040-05-21": "Whit Monday", + "2040-08-20": "State Foundation Day", + "2040-10-22": "Day off before National Day", + "2040-10-23": "National Day", + "2040-11-01": "All Saints' Day", + "2040-11-02": "Day off after All Saints' Day", + "2040-12-25": "Christmas Day", + "2040-12-26": "Second Day of Christmas", + "2040-12-31": "Day off before New Year's Day", + "2041-01-01": "New Year's Day", + "2041-03-15": "National Day", + "2041-04-19": "Good Friday", + "2041-04-21": "Easter", + "2041-04-22": "Easter Monday", + "2041-05-01": "Labor Day", + "2041-06-09": "Whit Sunday", + "2041-06-10": "Whit Monday", + "2041-08-19": "Day off before State Foundation Day", + "2041-08-20": "State Foundation Day", + "2041-10-23": "National Day", + "2041-11-01": "All Saints' Day", + "2041-12-25": "Christmas Day", + "2041-12-26": "Second Day of Christmas", + "2041-12-27": "Day off after Second Day of Christmas", + "2042-01-01": "New Year's Day", + "2042-03-15": "National Day", + "2042-04-04": "Good Friday", + "2042-04-06": "Easter", + "2042-04-07": "Easter Monday", + "2042-05-01": "Labor Day", + "2042-05-02": "Day off after Labor Day", + "2042-05-25": "Whit Sunday", + "2042-05-26": "Whit Monday", + "2042-08-20": "State Foundation Day", + "2042-10-23": "National Day", + "2042-10-24": "Day off after National Day", + "2042-11-01": "All Saints' Day", + "2042-12-25": "Christmas Day", + "2042-12-26": "Second Day of Christmas", + "2043-01-01": "New Year's Day", + "2043-01-02": "Day off after New Year's Day", + "2043-03-15": "National Day", + "2043-03-27": "Good Friday", + "2043-03-29": "Easter", + "2043-03-30": "Easter Monday", + "2043-05-01": "Labor Day", + "2043-05-17": "Whit Sunday", + "2043-05-18": "Whit Monday", + "2043-08-20": "State Foundation Day", + "2043-08-21": "Day off after State Foundation Day", + "2043-10-23": "National Day", + "2043-11-01": "All Saints' Day", + "2043-12-25": "Christmas Day", + "2043-12-26": "Second Day of Christmas", + "2044-01-01": "New Year's Day", + "2044-03-14": "Day off before National Day", + "2044-03-15": "National Day", + "2044-04-15": "Good Friday", + "2044-04-17": "Easter", + "2044-04-18": "Easter Monday", + "2044-05-01": "Labor Day", + "2044-06-05": "Whit Sunday", + "2044-06-06": "Whit Monday", + "2044-08-20": "State Foundation Day", + "2044-10-23": "National Day", + "2044-10-31": "Day off before All Saints' Day", + "2044-11-01": "All Saints' Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "Second Day of Christmas", + "2045-01-01": "New Year's Day", + "2045-03-15": "National Day", + "2045-04-07": "Good Friday", + "2045-04-09": "Easter", + "2045-04-10": "Easter Monday", + "2045-05-01": "Labor Day", + "2045-05-28": "Whit Sunday", + "2045-05-29": "Whit Monday", + "2045-08-20": "State Foundation Day", + "2045-10-23": "National Day", + "2045-11-01": "All Saints' Day", + "2045-12-25": "Christmas Day", + "2045-12-26": "Second Day of Christmas", + "2046-01-01": "New Year's Day", + "2046-03-15": "National Day", + "2046-03-16": "Day off after National Day", + "2046-03-23": "Good Friday", + "2046-03-25": "Easter", + "2046-03-26": "Easter Monday", + "2046-04-30": "Day off before Labor Day", + "2046-05-01": "Labor Day", + "2046-05-13": "Whit Sunday", + "2046-05-14": "Whit Monday", + "2046-08-20": "State Foundation Day", + "2046-10-22": "Day off before National Day", + "2046-10-23": "National Day", + "2046-11-01": "All Saints' Day", + "2046-11-02": "Day off after All Saints' Day", + "2046-12-25": "Christmas Day", + "2046-12-26": "Second Day of Christmas", + "2046-12-31": "Day off before New Year's Day", + "2047-01-01": "New Year's Day", + "2047-03-15": "National Day", + "2047-04-12": "Good Friday", + "2047-04-14": "Easter", + "2047-04-15": "Easter Monday", + "2047-05-01": "Labor Day", + "2047-06-02": "Whit Sunday", + "2047-06-03": "Whit Monday", + "2047-08-19": "Day off before State Foundation Day", + "2047-08-20": "State Foundation Day", + "2047-10-23": "National Day", + "2047-11-01": "All Saints' Day", + "2047-12-25": "Christmas Day", + "2047-12-26": "Second Day of Christmas", + "2047-12-27": "Day off after Second Day of Christmas", + "2048-01-01": "New Year's Day", + "2048-03-15": "National Day", + "2048-04-03": "Good Friday", + "2048-04-05": "Easter", + "2048-04-06": "Easter Monday", + "2048-05-01": "Labor Day", + "2048-05-24": "Whit Sunday", + "2048-05-25": "Whit Monday", + "2048-08-20": "State Foundation Day", + "2048-08-21": "Day off after State Foundation Day", + "2048-10-23": "National Day", + "2048-11-01": "All Saints' Day", + "2048-12-25": "Christmas Day", + "2048-12-26": "Second Day of Christmas", + "2049-01-01": "New Year's Day", + "2049-03-15": "National Day", + "2049-04-16": "Good Friday", + "2049-04-18": "Easter", + "2049-04-19": "Easter Monday", + "2049-05-01": "Labor Day", + "2049-06-06": "Whit Sunday", + "2049-06-07": "Whit Monday", + "2049-08-20": "State Foundation Day", + "2049-10-23": "National Day", + "2049-11-01": "All Saints' Day", + "2049-12-25": "Christmas Day", + "2049-12-26": "Second Day of Christmas", + "2050-01-01": "New Year's Day", + "2050-03-14": "Day off before National Day", + "2050-03-15": "National Day", + "2050-04-08": "Good Friday", + "2050-04-10": "Easter", + "2050-04-11": "Easter Monday", + "2050-05-01": "Labor Day", + "2050-05-29": "Whit Sunday", + "2050-05-30": "Whit Monday", + "2050-08-20": "State Foundation Day", + "2050-10-23": "National Day", + "2050-10-31": "Day off before All Saints' Day", + "2050-11-01": "All Saints' Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "Second Day of Christmas" +} diff --git a/snapshots/countries/ID.json b/snapshots/countries/ID.json new file mode 100644 index 000000000..6ea230135 --- /dev/null +++ b/snapshots/countries/ID.json @@ -0,0 +1,1360 @@ +{ + "1950-01-01": "New Year's Day", + "1950-02-17": "Lunar New Year* (*estimated)", + "1950-08-17": "Independence Day", + "1950-10-05": "Armed Forces Day", + "1950-11-10": "Heroes' Day", + "1951-01-01": "New Year's Day", + "1951-02-06": "Lunar New Year* (*estimated)", + "1951-08-17": "Independence Day", + "1951-10-05": "Armed Forces Day", + "1951-11-10": "Heroes' Day", + "1952-01-01": "New Year's Day", + "1952-01-27": "Lunar New Year* (*estimated)", + "1952-08-17": "Independence Day", + "1952-10-05": "Armed Forces Day", + "1952-11-10": "Heroes' Day", + "1953-01-01": "New Year's Day", + "1953-02-14": "Lunar New Year* (*estimated)", + "1953-04-03": "Good Friday", + "1953-04-06": "Easter Monday", + "1953-04-12": "The Prophet's Ascension* (*estimated)", + "1953-05-01": "International Labor Day", + "1953-05-14": "Ascension Day", + "1953-05-25": "Whit Monday", + "1953-05-30": "Nuzul Al Quran* (*estimated)", + "1953-06-13": "Eid al-Fitr* (*estimated)", + "1953-06-14": "Eid al-Fitr Second Day* (*estimated)", + "1953-08-17": "Independence Day", + "1953-08-20": "Eid al-Adha* (*estimated)", + "1953-09-10": "Islamic New Year* (*estimated)", + "1953-11-19": "The Prophet's Birthday* (*estimated)", + "1953-12-25": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-02-03": "Lunar New Year* (*estimated)", + "1954-04-01": "The Prophet's Ascension* (*estimated)", + "1954-04-16": "Good Friday", + "1954-04-19": "Easter Monday", + "1954-05-01": "International Labor Day", + "1954-05-20": "Nuzul Al Quran* (*estimated)", + "1954-05-27": "Ascension Day", + "1954-06-02": "Eid al-Fitr* (*estimated)", + "1954-06-03": "Eid al-Fitr Second Day* (*estimated)", + "1954-06-07": "Whit Monday", + "1954-08-09": "Eid al-Adha* (*estimated)", + "1954-08-17": "Independence Day", + "1954-08-30": "Islamic New Year* (*estimated)", + "1954-11-08": "The Prophet's Birthday* (*estimated)", + "1954-12-25": "Christmas Day", + "1955-01-01": "New Year's Day", + "1955-01-24": "Lunar New Year* (*estimated)", + "1955-03-21": "The Prophet's Ascension* (*estimated)", + "1955-04-08": "Good Friday", + "1955-04-11": "Easter Monday", + "1955-05-01": "International Labor Day", + "1955-05-10": "Nuzul Al Quran* (*estimated)", + "1955-05-19": "Ascension Day", + "1955-05-23": "Eid al-Fitr* (*estimated)", + "1955-05-24": "Eid al-Fitr Second Day* (*estimated)", + "1955-05-30": "Whit Monday", + "1955-07-30": "Eid al-Adha* (*estimated)", + "1955-08-17": "Independence Day", + "1955-08-20": "Islamic New Year* (*estimated)", + "1955-10-29": "The Prophet's Birthday* (*estimated)", + "1955-12-25": "Christmas Day", + "1956-01-01": "New Year's Day", + "1956-02-12": "Lunar New Year* (*estimated)", + "1956-03-10": "The Prophet's Ascension* (*estimated)", + "1956-03-30": "Good Friday", + "1956-04-02": "Easter Monday", + "1956-04-28": "Nuzul Al Quran* (*estimated)", + "1956-05-01": "International Labor Day", + "1956-05-10": "Ascension Day", + "1956-05-11": "Eid al-Fitr* (*estimated)", + "1956-05-12": "Eid al-Fitr Second Day* (*estimated)", + "1956-05-21": "Whit Monday", + "1956-07-19": "Eid al-Adha* (*estimated)", + "1956-08-08": "Islamic New Year* (*estimated)", + "1956-08-17": "Independence Day", + "1956-10-17": "The Prophet's Birthday* (*estimated)", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-01-31": "Lunar New Year* (*estimated)", + "1957-02-27": "The Prophet's Ascension* (*estimated)", + "1957-04-17": "Nuzul Al Quran* (*estimated)", + "1957-04-19": "Good Friday", + "1957-04-22": "Easter Monday", + "1957-05-01": "Eid al-Fitr* (*estimated); International Labor Day", + "1957-05-02": "Eid al-Fitr Second Day* (*estimated)", + "1957-05-30": "Ascension Day", + "1957-06-10": "Whit Monday", + "1957-07-08": "Eid al-Adha* (*estimated)", + "1957-07-28": "Islamic New Year* (*estimated)", + "1957-08-17": "Independence Day", + "1957-10-06": "The Prophet's Birthday* (*estimated)", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-02-16": "The Prophet's Ascension* (*estimated)", + "1958-02-18": "Lunar New Year* (*estimated)", + "1958-04-04": "Good Friday", + "1958-04-06": "Nuzul Al Quran* (*estimated)", + "1958-04-07": "Easter Monday", + "1958-04-20": "Eid al-Fitr* (*estimated)", + "1958-04-21": "Eid al-Fitr Second Day* (*estimated)", + "1958-05-01": "International Labor Day", + "1958-05-15": "Ascension Day", + "1958-05-26": "Whit Monday", + "1958-06-27": "Eid al-Adha* (*estimated)", + "1958-07-18": "Islamic New Year* (*estimated)", + "1958-08-17": "Independence Day", + "1958-09-26": "The Prophet's Birthday* (*estimated)", + "1958-12-25": "Christmas Day", + "1959-01-01": "New Year's Day", + "1959-02-06": "The Prophet's Ascension* (*estimated)", + "1959-02-08": "Lunar New Year* (*estimated)", + "1959-03-27": "Good Friday; Nuzul Al Quran* (*estimated)", + "1959-03-30": "Easter Monday", + "1959-04-10": "Eid al-Fitr* (*estimated)", + "1959-04-11": "Eid al-Fitr Second Day* (*estimated)", + "1959-05-01": "International Labor Day", + "1959-05-07": "Ascension Day", + "1959-05-18": "Whit Monday", + "1959-06-17": "Eid al-Adha* (*estimated)", + "1959-07-07": "Islamic New Year* (*estimated)", + "1959-08-17": "Independence Day", + "1959-09-15": "The Prophet's Birthday* (*estimated)", + "1959-12-25": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-01-26": "The Prophet's Ascension* (*estimated)", + "1960-01-28": "Lunar New Year* (*estimated)", + "1960-03-15": "Nuzul Al Quran* (*estimated)", + "1960-03-28": "Eid al-Fitr* (*estimated)", + "1960-03-29": "Eid al-Fitr Second Day* (*estimated)", + "1960-04-15": "Good Friday", + "1960-04-18": "Easter Monday", + "1960-05-01": "International Labor Day", + "1960-05-26": "Ascension Day", + "1960-06-04": "Eid al-Adha* (*estimated)", + "1960-06-06": "Whit Monday", + "1960-06-25": "Islamic New Year* (*estimated)", + "1960-08-17": "Independence Day", + "1960-09-03": "The Prophet's Birthday* (*estimated)", + "1960-12-25": "Christmas Day", + "1961-01-01": "New Year's Day", + "1961-01-14": "The Prophet's Ascension* (*estimated)", + "1961-02-15": "Lunar New Year* (*estimated)", + "1961-03-04": "Nuzul Al Quran* (*estimated)", + "1961-03-18": "Eid al-Fitr* (*estimated)", + "1961-03-19": "Eid al-Fitr Second Day* (*estimated)", + "1961-03-31": "Good Friday", + "1961-04-03": "Easter Monday", + "1961-05-01": "International Labor Day", + "1961-05-11": "Ascension Day", + "1961-05-22": "Whit Monday", + "1961-05-25": "Eid al-Adha* (*estimated)", + "1961-06-14": "Islamic New Year* (*estimated)", + "1961-08-17": "Independence Day", + "1961-08-23": "The Prophet's Birthday* (*estimated)", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-01-04": "The Prophet's Ascension* (*estimated)", + "1962-02-05": "Lunar New Year* (*estimated)", + "1962-02-21": "Nuzul Al Quran* (*estimated)", + "1962-03-07": "Eid al-Fitr* (*estimated)", + "1962-03-08": "Eid al-Fitr Second Day* (*estimated)", + "1962-04-20": "Good Friday", + "1962-04-23": "Easter Monday", + "1962-05-01": "International Labor Day", + "1962-05-14": "Eid al-Adha* (*estimated)", + "1962-05-31": "Ascension Day", + "1962-06-03": "Islamic New Year* (*estimated)", + "1962-06-11": "Whit Monday", + "1962-08-12": "The Prophet's Birthday* (*estimated)", + "1962-08-17": "Independence Day", + "1962-12-24": "The Prophet's Ascension* (*estimated)", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-01-25": "Lunar New Year* (*estimated)", + "1963-02-24": "Eid al-Fitr* (*estimated)", + "1963-02-25": "Eid al-Fitr Second Day* (*estimated)", + "1963-05-01": "International Labor Day", + "1963-05-03": "Eid al-Adha* (*estimated)", + "1963-08-17": "Independence Day", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-02-13": "Lunar New Year* (*estimated)", + "1964-02-14": "Eid al-Fitr* (*estimated)", + "1964-02-15": "Eid al-Fitr Second Day* (*estimated)", + "1964-04-22": "Eid al-Adha* (*estimated)", + "1964-05-01": "International Labor Day", + "1964-08-17": "Independence Day", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-02-02": "Eid al-Fitr* (*estimated); Lunar New Year* (*estimated)", + "1965-02-03": "Eid al-Fitr Second Day* (*estimated)", + "1965-04-11": "Eid al-Adha* (*estimated)", + "1965-05-01": "International Labor Day", + "1965-08-17": "Independence Day", + "1965-12-25": "Christmas Day", + "1966-01-01": "New Year's Day", + "1966-01-21": "Lunar New Year* (*estimated)", + "1966-01-22": "Eid al-Fitr* (*estimated)", + "1966-01-23": "Eid al-Fitr Second Day* (*estimated)", + "1966-04-01": "Eid al-Adha* (*estimated)", + "1966-05-01": "International Labor Day", + "1966-08-17": "Independence Day", + "1966-12-25": "Christmas Day", + "1967-01-01": "New Year's Day", + "1967-01-12": "Eid al-Fitr* (*estimated)", + "1967-01-13": "Eid al-Fitr Second Day* (*estimated)", + "1967-02-09": "Lunar New Year* (*estimated)", + "1967-03-21": "Eid al-Adha* (*estimated)", + "1967-05-01": "International Labor Day", + "1967-08-17": "Independence Day", + "1967-12-25": "Christmas Day", + "1968-01-01": "Eid al-Fitr* (*estimated); New Year's Day", + "1968-01-02": "Eid al-Fitr Second Day* (*estimated)", + "1968-03-09": "Eid al-Adha* (*estimated)", + "1968-03-30": "Islamic New Year* (*estimated)", + "1968-05-01": "International Labor Day", + "1968-05-23": "Ascension Day", + "1968-06-08": "The Prophet's Birthday* (*estimated)", + "1968-08-15": "Assumption Of Mary", + "1968-08-17": "Independence Day", + "1968-10-19": "The Prophet's Ascension* (*estimated)", + "1968-12-21": "Eid al-Fitr* (*estimated)", + "1968-12-22": "Eid al-Fitr Second Day* (*estimated)", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-02-27": "Eid al-Adha* (*estimated)", + "1969-03-19": "Islamic New Year* (*estimated)", + "1969-05-15": "Ascension Day", + "1969-05-28": "The Prophet's Birthday* (*estimated)", + "1969-08-15": "Assumption Of Mary", + "1969-08-17": "Independence Day", + "1969-10-08": "The Prophet's Ascension* (*estimated)", + "1969-12-10": "Eid al-Fitr* (*estimated)", + "1969-12-11": "Eid al-Fitr Second Day* (*estimated)", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-02-16": "Eid al-Adha* (*estimated)", + "1970-03-09": "Islamic New Year* (*estimated)", + "1970-05-07": "Ascension Day", + "1970-05-18": "The Prophet's Birthday* (*estimated)", + "1970-08-15": "Assumption Of Mary", + "1970-08-17": "Independence Day", + "1970-09-28": "The Prophet's Ascension* (*estimated)", + "1970-11-30": "Eid al-Fitr* (*estimated)", + "1970-12-01": "Eid al-Fitr Second Day* (*estimated)", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-02-06": "Eid al-Adha* (*estimated)", + "1971-02-26": "Islamic New Year* (*estimated)", + "1971-04-09": "Good Friday", + "1971-05-07": "The Prophet's Birthday* (*estimated)", + "1971-05-20": "Ascension Day", + "1971-08-17": "Independence Day", + "1971-09-17": "The Prophet's Ascension* (*estimated)", + "1971-11-19": "Eid al-Fitr* (*estimated)", + "1971-11-20": "Eid al-Fitr Second Day* (*estimated)", + "1971-12-25": "Christmas Day", + "1972-01-01": "New Year's Day", + "1972-01-26": "Eid al-Adha* (*estimated)", + "1972-02-16": "Islamic New Year* (*estimated)", + "1972-03-31": "Good Friday", + "1972-04-25": "The Prophet's Birthday* (*estimated)", + "1972-05-11": "Ascension Day", + "1972-08-17": "Independence Day", + "1972-09-05": "The Prophet's Ascension* (*estimated)", + "1972-11-07": "Eid al-Fitr* (*estimated)", + "1972-11-08": "Eid al-Fitr Second Day* (*estimated)", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-01-14": "Eid al-Adha* (*estimated)", + "1973-02-04": "Islamic New Year* (*estimated)", + "1973-04-15": "The Prophet's Birthday* (*estimated)", + "1973-04-20": "Good Friday", + "1973-05-31": "Ascension Day", + "1973-08-17": "Independence Day", + "1973-08-25": "The Prophet's Ascension* (*estimated)", + "1973-10-27": "Eid al-Fitr* (*estimated)", + "1973-10-28": "Eid al-Fitr Second Day* (*estimated)", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-01-03": "Eid al-Adha* (*estimated)", + "1974-01-24": "Islamic New Year* (*estimated)", + "1974-04-04": "The Prophet's Birthday* (*estimated)", + "1974-04-12": "Good Friday", + "1974-05-23": "Ascension Day", + "1974-08-15": "The Prophet's Ascension* (*estimated)", + "1974-08-17": "Independence Day", + "1974-10-16": "Eid al-Fitr* (*estimated)", + "1974-10-17": "Eid al-Fitr Second Day* (*estimated)", + "1974-12-24": "Eid al-Adha* (*estimated)", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-01-13": "Islamic New Year* (*estimated)", + "1975-03-24": "The Prophet's Birthday* (*estimated)", + "1975-03-28": "Good Friday", + "1975-05-08": "Ascension Day", + "1975-08-05": "The Prophet's Ascension* (*estimated)", + "1975-08-17": "Independence Day", + "1975-10-06": "Eid al-Fitr* (*estimated)", + "1975-10-07": "Eid al-Fitr Second Day* (*estimated)", + "1975-12-13": "Eid al-Adha* (*estimated)", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-01-02": "Islamic New Year* (*estimated)", + "1976-03-12": "The Prophet's Birthday* (*estimated)", + "1976-04-16": "Good Friday", + "1976-05-27": "Ascension Day", + "1976-07-24": "The Prophet's Ascension* (*estimated)", + "1976-08-17": "Independence Day", + "1976-09-24": "Eid al-Fitr* (*estimated)", + "1976-09-25": "Eid al-Fitr Second Day* (*estimated)", + "1976-12-01": "Eid al-Adha* (*estimated)", + "1976-12-22": "Islamic New Year* (*estimated)", + "1976-12-25": "Christmas Day", + "1977-01-01": "New Year's Day", + "1977-03-02": "The Prophet's Birthday* (*estimated)", + "1977-04-08": "Good Friday", + "1977-05-19": "Ascension Day", + "1977-07-13": "The Prophet's Ascension* (*estimated)", + "1977-08-17": "Independence Day", + "1977-09-14": "Eid al-Fitr* (*estimated)", + "1977-09-15": "Eid al-Fitr Second Day* (*estimated)", + "1977-11-21": "Eid al-Adha* (*estimated)", + "1977-12-11": "Islamic New Year* (*estimated)", + "1977-12-25": "Christmas Day", + "1978-01-01": "New Year's Day", + "1978-02-19": "The Prophet's Birthday* (*estimated)", + "1978-03-24": "Good Friday", + "1978-05-04": "Ascension Day", + "1978-07-02": "The Prophet's Ascension* (*estimated)", + "1978-08-17": "Independence Day", + "1978-09-03": "Eid al-Fitr* (*estimated)", + "1978-09-04": "Eid al-Fitr Second Day* (*estimated)", + "1978-11-10": "Eid al-Adha* (*estimated)", + "1978-12-01": "Islamic New Year* (*estimated)", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-02-09": "The Prophet's Birthday* (*estimated)", + "1979-04-13": "Good Friday", + "1979-05-24": "Ascension Day", + "1979-06-22": "The Prophet's Ascension* (*estimated)", + "1979-08-17": "Independence Day", + "1979-08-23": "Eid al-Fitr* (*estimated)", + "1979-08-24": "Eid al-Fitr Second Day* (*estimated)", + "1979-10-31": "Eid al-Adha* (*estimated)", + "1979-11-20": "Islamic New Year* (*estimated)", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-01-30": "The Prophet's Birthday* (*estimated)", + "1980-04-04": "Good Friday", + "1980-05-15": "Ascension Day", + "1980-06-10": "The Prophet's Ascension* (*estimated)", + "1980-08-12": "Eid al-Fitr* (*estimated)", + "1980-08-13": "Eid al-Fitr Second Day* (*estimated)", + "1980-08-17": "Independence Day", + "1980-10-19": "Eid al-Adha* (*estimated)", + "1980-11-09": "Islamic New Year* (*estimated)", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-01-18": "The Prophet's Birthday* (*estimated)", + "1981-04-17": "Good Friday", + "1981-05-28": "Ascension Day", + "1981-05-31": "The Prophet's Ascension* (*estimated)", + "1981-08-01": "Eid al-Fitr* (*estimated)", + "1981-08-02": "Eid al-Fitr Second Day* (*estimated)", + "1981-08-17": "Independence Day", + "1981-10-08": "Eid al-Adha* (*estimated)", + "1981-10-28": "Islamic New Year* (*estimated)", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-01-07": "The Prophet's Birthday* (*estimated)", + "1982-04-09": "Good Friday", + "1982-05-20": "Ascension Day; The Prophet's Ascension* (*estimated)", + "1982-07-21": "Eid al-Fitr* (*estimated)", + "1982-07-22": "Eid al-Fitr Second Day* (*estimated)", + "1982-08-17": "Independence Day", + "1982-09-27": "Eid al-Adha* (*estimated)", + "1982-10-18": "Islamic New Year* (*estimated)", + "1982-12-25": "Christmas Day", + "1982-12-27": "The Prophet's Birthday* (*estimated)", + "1983-01-01": "New Year's Day", + "1983-04-01": "Good Friday", + "1983-05-10": "The Prophet's Ascension* (*estimated)", + "1983-05-12": "Ascension Day", + "1983-05-27": "Buddha's Birthday* (*estimated)", + "1983-07-11": "Eid al-Fitr* (*estimated)", + "1983-07-12": "Eid al-Fitr Second Day* (*estimated)", + "1983-08-17": "Independence Day", + "1983-09-17": "Eid al-Adha* (*estimated)", + "1983-10-07": "Islamic New Year* (*estimated)", + "1983-12-16": "The Prophet's Birthday* (*estimated)", + "1983-12-25": "Christmas Day", + "1984-01-01": "New Year's Day", + "1984-04-20": "Good Friday", + "1984-04-28": "The Prophet's Ascension* (*estimated)", + "1984-05-15": "Buddha's Birthday* (*estimated)", + "1984-05-31": "Ascension Day", + "1984-06-30": "Eid al-Fitr* (*estimated)", + "1984-07-01": "Eid al-Fitr Second Day* (*estimated)", + "1984-08-17": "Independence Day", + "1984-09-05": "Eid al-Adha* (*estimated)", + "1984-09-26": "Islamic New Year* (*estimated)", + "1984-12-04": "The Prophet's Birthday* (*estimated)", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-04-05": "Good Friday", + "1985-04-17": "The Prophet's Ascension* (*estimated)", + "1985-05-16": "Ascension Day", + "1985-06-03": "Buddha's Birthday* (*estimated)", + "1985-06-19": "Eid al-Fitr* (*estimated)", + "1985-06-20": "Eid al-Fitr Second Day* (*estimated)", + "1985-08-17": "Independence Day", + "1985-08-26": "Eid al-Adha* (*estimated)", + "1985-09-15": "Islamic New Year* (*estimated)", + "1985-11-24": "The Prophet's Birthday* (*estimated)", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-03-28": "Good Friday", + "1986-04-06": "The Prophet's Ascension* (*estimated)", + "1986-05-08": "Ascension Day", + "1986-05-23": "Buddha's Birthday* (*estimated)", + "1986-06-08": "Eid al-Fitr* (*estimated)", + "1986-06-09": "Eid al-Fitr Second Day* (*estimated)", + "1986-08-15": "Eid al-Adha* (*estimated)", + "1986-08-17": "Independence Day", + "1986-09-05": "Islamic New Year* (*estimated)", + "1986-11-14": "The Prophet's Birthday* (*estimated)", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-03-27": "The Prophet's Ascension* (*estimated)", + "1987-04-17": "Good Friday", + "1987-05-12": "Buddha's Birthday* (*estimated)", + "1987-05-28": "Ascension Day; Eid al-Fitr* (*estimated)", + "1987-05-29": "Eid al-Fitr Second Day* (*estimated)", + "1987-08-04": "Eid al-Adha* (*estimated)", + "1987-08-17": "Independence Day", + "1987-08-25": "Islamic New Year* (*estimated)", + "1987-11-03": "The Prophet's Birthday* (*estimated)", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-03-15": "The Prophet's Ascension* (*estimated)", + "1988-04-01": "Good Friday", + "1988-05-12": "Ascension Day", + "1988-05-16": "Eid al-Fitr* (*estimated)", + "1988-05-17": "Eid al-Fitr Second Day* (*estimated)", + "1988-05-30": "Buddha's Birthday* (*estimated)", + "1988-07-23": "Eid al-Adha* (*estimated)", + "1988-08-13": "Islamic New Year* (*estimated)", + "1988-08-17": "Independence Day", + "1988-10-22": "The Prophet's Birthday* (*estimated)", + "1988-12-25": "Christmas Day", + "1989-01-01": "New Year's Day", + "1989-03-05": "The Prophet's Ascension* (*estimated)", + "1989-03-24": "Good Friday", + "1989-05-04": "Ascension Day", + "1989-05-06": "Eid al-Fitr* (*estimated)", + "1989-05-07": "Eid al-Fitr Second Day* (*estimated)", + "1989-05-19": "Buddha's Birthday* (*estimated)", + "1989-07-13": "Eid al-Adha* (*estimated)", + "1989-08-02": "Islamic New Year* (*estimated)", + "1989-08-17": "Independence Day", + "1989-10-11": "The Prophet's Birthday* (*estimated)", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-02-22": "The Prophet's Ascension* (*estimated)", + "1990-04-13": "Good Friday", + "1990-04-26": "Eid al-Fitr* (*estimated)", + "1990-04-27": "Eid al-Fitr Second Day* (*estimated)", + "1990-05-09": "Buddha's Birthday* (*estimated)", + "1990-05-24": "Ascension Day", + "1990-07-02": "Eid al-Adha* (*estimated)", + "1990-07-23": "Islamic New Year* (*estimated)", + "1990-08-17": "Independence Day", + "1990-10-01": "The Prophet's Birthday* (*estimated)", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-02-11": "The Prophet's Ascension* (*estimated)", + "1991-03-29": "Good Friday", + "1991-04-15": "Eid al-Fitr* (*estimated)", + "1991-04-16": "Eid al-Fitr Second Day* (*estimated)", + "1991-05-09": "Ascension Day", + "1991-05-28": "Buddha's Birthday* (*estimated)", + "1991-06-22": "Eid al-Adha* (*estimated)", + "1991-07-12": "Islamic New Year* (*estimated)", + "1991-08-17": "Independence Day", + "1991-09-20": "The Prophet's Birthday* (*estimated)", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-01-31": "The Prophet's Ascension* (*estimated)", + "1992-04-04": "Eid al-Fitr* (*estimated)", + "1992-04-05": "Eid al-Fitr Second Day* (*estimated)", + "1992-04-17": "Good Friday", + "1992-05-17": "Buddha's Birthday* (*estimated)", + "1992-05-28": "Ascension Day", + "1992-06-11": "Eid al-Adha* (*estimated)", + "1992-07-01": "Islamic New Year* (*estimated)", + "1992-08-17": "Independence Day", + "1992-09-09": "The Prophet's Birthday* (*estimated)", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-01-20": "The Prophet's Ascension* (*estimated)", + "1993-03-24": "Eid al-Fitr* (*estimated)", + "1993-03-25": "Eid al-Fitr Second Day* (*estimated)", + "1993-04-09": "Good Friday", + "1993-05-20": "Ascension Day", + "1993-05-31": "Eid al-Adha* (*estimated)", + "1993-06-04": "Buddha's Birthday* (*estimated)", + "1993-06-21": "Islamic New Year* (*estimated)", + "1993-08-17": "Independence Day", + "1993-08-29": "The Prophet's Birthday* (*estimated)", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-01-09": "The Prophet's Ascension* (*estimated)", + "1994-03-13": "Eid al-Fitr* (*estimated)", + "1994-03-14": "Eid al-Fitr Second Day* (*estimated)", + "1994-04-01": "Good Friday", + "1994-05-12": "Ascension Day", + "1994-05-20": "Eid al-Adha* (*estimated)", + "1994-05-25": "Buddha's Birthday* (*estimated)", + "1994-06-10": "Islamic New Year* (*estimated)", + "1994-08-17": "Independence Day", + "1994-08-19": "The Prophet's Birthday* (*estimated)", + "1994-12-25": "Christmas Day", + "1994-12-29": "The Prophet's Ascension* (*estimated)", + "1995-01-01": "New Year's Day", + "1995-03-02": "Eid al-Fitr* (*estimated)", + "1995-03-03": "Eid al-Fitr Second Day* (*estimated)", + "1995-04-14": "Good Friday", + "1995-05-09": "Eid al-Adha* (*estimated)", + "1995-05-14": "Buddha's Birthday* (*estimated)", + "1995-05-25": "Ascension Day", + "1995-05-30": "Islamic New Year* (*estimated)", + "1995-08-08": "The Prophet's Birthday* (*estimated)", + "1995-08-17": "Independence Day", + "1995-12-19": "The Prophet's Ascension* (*estimated)", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-02-19": "Eid al-Fitr* (*estimated)", + "1996-02-20": "Eid al-Fitr Second Day* (*estimated)", + "1996-04-05": "Good Friday", + "1996-04-27": "Eid al-Adha* (*estimated)", + "1996-05-16": "Ascension Day", + "1996-05-18": "Islamic New Year* (*estimated)", + "1996-05-31": "Buddha's Birthday* (*estimated)", + "1996-07-27": "The Prophet's Birthday* (*estimated)", + "1996-08-17": "Independence Day", + "1996-12-08": "The Prophet's Ascension* (*estimated)", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-02-08": "Eid al-Fitr* (*estimated)", + "1997-02-09": "Eid al-Fitr Second Day* (*estimated)", + "1997-03-28": "Good Friday", + "1997-04-17": "Eid al-Adha* (*estimated)", + "1997-05-07": "Islamic New Year* (*estimated)", + "1997-05-08": "Ascension Day", + "1997-05-21": "Buddha's Birthday* (*estimated)", + "1997-07-16": "The Prophet's Birthday* (*estimated)", + "1997-08-17": "Independence Day", + "1997-11-27": "The Prophet's Ascension* (*estimated)", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-01-29": "Eid al-Fitr* (*estimated)", + "1998-01-30": "Eid al-Fitr Second Day* (*estimated)", + "1998-04-07": "Eid al-Adha* (*estimated)", + "1998-04-10": "Good Friday", + "1998-04-27": "Islamic New Year* (*estimated)", + "1998-05-10": "Buddha's Birthday* (*estimated)", + "1998-05-21": "Ascension Day", + "1998-07-06": "The Prophet's Birthday* (*estimated)", + "1998-08-17": "Independence Day", + "1998-11-16": "The Prophet's Ascension* (*estimated)", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-01-18": "Eid al-Fitr* (*estimated)", + "1999-01-19": "Eid al-Fitr Second Day* (*estimated)", + "1999-03-27": "Eid al-Adha* (*estimated)", + "1999-04-02": "Good Friday", + "1999-04-17": "Islamic New Year* (*estimated)", + "1999-05-13": "Ascension Day", + "1999-05-29": "Buddha's Birthday* (*estimated)", + "1999-06-26": "The Prophet's Birthday* (*estimated)", + "1999-08-17": "Independence Day", + "1999-11-05": "The Prophet's Ascension* (*estimated)", + "1999-12-25": "Christmas Day", + "2000-01-01": "New Year's Day", + "2000-01-08": "Eid al-Fitr* (*estimated)", + "2000-01-09": "Eid al-Fitr Second Day* (*estimated)", + "2000-03-16": "Eid al-Adha* (*estimated)", + "2000-04-06": "Islamic New Year* (*estimated)", + "2000-04-21": "Good Friday", + "2000-05-18": "Buddha's Birthday* (*estimated)", + "2000-06-01": "Ascension Day", + "2000-06-14": "The Prophet's Birthday* (*estimated)", + "2000-08-17": "Independence Day", + "2000-10-24": "The Prophet's Ascension* (*estimated)", + "2000-12-25": "Christmas Day", + "2000-12-27": "Eid al-Fitr* (*estimated)", + "2000-12-28": "Eid al-Fitr Second Day* (*estimated)", + "2001-01-01": "New Year's Day", + "2001-03-06": "Eid al-Adha", + "2001-03-26": "Islamic New Year", + "2001-04-13": "Good Friday", + "2001-05-07": "Buddha's Birthday* (*estimated)", + "2001-05-24": "Ascension Day", + "2001-06-04": "The Prophet's Birthday* (*estimated)", + "2001-08-17": "Independence Day", + "2001-10-15": "The Prophet's Ascension", + "2001-12-16": "Eid al-Fitr", + "2001-12-17": "Eid al-Fitr Second Day", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-02-23": "Eid al-Adha", + "2002-03-15": "Islamic New Year", + "2002-03-29": "Good Friday", + "2002-05-09": "Ascension Day", + "2002-05-24": "The Prophet's Birthday* (*estimated)", + "2002-05-26": "Buddha's Birthday* (*estimated)", + "2002-08-17": "Independence Day", + "2002-10-04": "The Prophet's Ascension", + "2002-12-06": "Eid al-Fitr", + "2002-12-07": "Eid al-Fitr Second Day", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-02-01": "Lunar New Year", + "2003-02-12": "Eid al-Adha", + "2003-03-05": "Islamic New Year", + "2003-04-18": "Good Friday", + "2003-05-13": "The Prophet's Birthday* (*estimated)", + "2003-05-15": "Buddha's Birthday* (*estimated)", + "2003-05-29": "Ascension Day", + "2003-08-17": "Independence Day", + "2003-09-24": "The Prophet's Ascension", + "2003-11-25": "Eid al-Fitr", + "2003-11-26": "Eid al-Fitr Second Day", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-01-22": "Lunar New Year", + "2004-02-02": "Eid al-Adha", + "2004-02-22": "Islamic New Year", + "2004-04-09": "Good Friday", + "2004-05-01": "The Prophet's Birthday* (*estimated)", + "2004-05-20": "Ascension Day", + "2004-06-02": "Buddha's Birthday* (*estimated)", + "2004-08-17": "Independence Day", + "2004-09-12": "The Prophet's Ascension", + "2004-11-14": "Eid al-Fitr", + "2004-11-15": "Eid al-Fitr Second Day", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-01-21": "Eid al-Adha", + "2005-02-09": "Lunar New Year", + "2005-02-10": "Islamic New Year", + "2005-03-25": "Good Friday", + "2005-04-21": "The Prophet's Birthday* (*estimated)", + "2005-05-05": "Ascension Day", + "2005-05-22": "Buddha's Birthday* (*estimated)", + "2005-08-17": "Independence Day", + "2005-09-01": "The Prophet's Ascension", + "2005-11-03": "Eid al-Fitr", + "2005-11-04": "Eid al-Fitr Second Day", + "2005-12-25": "Christmas Day", + "2006-01-01": "New Year's Day", + "2006-01-10": "Eid al-Adha", + "2006-01-30": "Lunar New Year", + "2006-01-31": "Islamic New Year", + "2006-04-10": "The Prophet's Birthday", + "2006-04-14": "Good Friday", + "2006-05-12": "Buddha's Birthday* (*estimated)", + "2006-05-25": "Ascension Day", + "2006-08-17": "Independence Day", + "2006-08-22": "The Prophet's Ascension", + "2006-10-24": "Eid al-Fitr", + "2006-10-25": "Eid al-Fitr Second Day", + "2006-12-25": "Christmas Day", + "2006-12-31": "Eid al-Adha", + "2007-01-01": "New Year's Day", + "2007-01-20": "Islamic New Year", + "2007-02-19": "Lunar New Year", + "2007-03-31": "The Prophet's Birthday", + "2007-04-06": "Good Friday", + "2007-05-17": "Ascension Day", + "2007-06-01": "Buddha's Birthday", + "2007-08-11": "The Prophet's Ascension", + "2007-08-17": "Independence Day", + "2007-10-13": "Eid al-Fitr", + "2007-10-14": "Eid al-Fitr Second Day", + "2007-12-20": "Eid al-Adha", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-01-10": "Islamic New Year", + "2008-02-07": "Lunar New Year", + "2008-03-20": "The Prophet's Birthday", + "2008-03-21": "Good Friday", + "2008-05-01": "Ascension Day", + "2008-05-20": "Buddha's Birthday", + "2008-07-31": "The Prophet's Ascension", + "2008-08-17": "Independence Day", + "2008-10-01": "Eid al-Fitr", + "2008-10-02": "Eid al-Fitr Second Day", + "2008-12-08": "Eid al-Adha", + "2008-12-25": "Christmas Day", + "2008-12-29": "Islamic New Year", + "2009-01-01": "New Year's Day", + "2009-01-26": "Lunar New Year", + "2009-03-09": "The Prophet's Birthday", + "2009-03-26": "Day of Silence", + "2009-04-10": "Good Friday", + "2009-05-09": "Buddha's Birthday", + "2009-05-21": "Ascension Day", + "2009-07-20": "The Prophet's Ascension", + "2009-08-17": "Independence Day", + "2009-09-20": "Eid al-Fitr", + "2009-09-21": "Eid al-Fitr Second Day", + "2009-11-27": "Eid al-Adha", + "2009-12-18": "Islamic New Year", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-02-15": "Lunar New Year", + "2010-02-26": "The Prophet's Birthday", + "2010-03-16": "Day of Silence", + "2010-04-02": "Good Friday", + "2010-05-13": "Ascension Day", + "2010-05-28": "Buddha's Birthday", + "2010-07-09": "The Prophet's Ascension", + "2010-08-17": "Independence Day", + "2010-09-10": "Eid al-Fitr", + "2010-09-11": "Eid al-Fitr Second Day", + "2010-11-17": "Eid al-Adha", + "2010-12-07": "Islamic New Year", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-02-03": "Lunar New Year", + "2011-02-15": "The Prophet's Birthday", + "2011-03-05": "Day of Silence", + "2011-04-22": "Good Friday", + "2011-05-17": "Buddha's Birthday", + "2011-06-02": "Ascension Day", + "2011-06-29": "The Prophet's Ascension", + "2011-08-17": "Independence Day", + "2011-08-30": "Eid al-Fitr", + "2011-08-31": "Eid al-Fitr Second Day", + "2011-11-06": "Eid al-Adha", + "2011-11-27": "Islamic New Year", + "2011-12-25": "Christmas Day", + "2012-01-01": "New Year's Day", + "2012-01-23": "Lunar New Year", + "2012-02-05": "The Prophet's Birthday", + "2012-03-23": "Day of Silence", + "2012-04-06": "Good Friday", + "2012-05-06": "Buddha's Birthday", + "2012-05-17": "Ascension Day", + "2012-06-17": "The Prophet's Ascension", + "2012-08-17": "Independence Day", + "2012-08-19": "Eid al-Fitr", + "2012-08-20": "Eid al-Fitr Second Day", + "2012-10-26": "Eid al-Adha", + "2012-11-15": "Islamic New Year", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-01-24": "The Prophet's Birthday", + "2013-02-11": "Lunar New Year", + "2013-03-12": "Day of Silence", + "2013-03-29": "Good Friday", + "2013-05-09": "Ascension Day", + "2013-05-25": "Buddha's Birthday", + "2013-06-06": "The Prophet's Ascension", + "2013-08-08": "Eid al-Fitr", + "2013-08-09": "Eid al-Fitr Second Day", + "2013-08-17": "Independence Day", + "2013-10-15": "Eid al-Adha", + "2013-11-05": "Islamic New Year", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-14": "The Prophet's Birthday", + "2014-01-31": "Lunar New Year", + "2014-03-31": "Day of Silence", + "2014-04-18": "Good Friday", + "2014-05-01": "International Labor Day", + "2014-05-15": "Buddha's Birthday", + "2014-05-27": "The Prophet's Ascension", + "2014-05-29": "Ascension Day", + "2014-07-28": "Eid al-Fitr", + "2014-07-29": "Eid al-Fitr Second Day", + "2014-08-17": "Independence Day", + "2014-10-05": "Eid al-Adha", + "2014-10-25": "Islamic New Year", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-01-03": "The Prophet's Birthday", + "2015-02-19": "Lunar New Year", + "2015-03-21": "Day of Silence", + "2015-04-03": "Good Friday", + "2015-05-01": "International Labor Day", + "2015-05-14": "Ascension Day", + "2015-05-16": "The Prophet's Ascension", + "2015-06-02": "Buddha's Birthday", + "2015-07-17": "Eid al-Fitr", + "2015-07-18": "Eid al-Fitr Second Day", + "2015-08-17": "Independence Day", + "2015-09-24": "Eid al-Adha", + "2015-10-14": "Islamic New Year", + "2015-12-24": "The Prophet's Birthday", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-02-08": "Lunar New Year", + "2016-03-09": "Day of Silence", + "2016-03-25": "Good Friday", + "2016-05-01": "International Labor Day", + "2016-05-05": "Ascension Day", + "2016-05-06": "The Prophet's Ascension", + "2016-05-22": "Buddha's Birthday", + "2016-06-01": "Pancasila Day", + "2016-07-06": "Eid al-Fitr", + "2016-07-07": "Eid al-Fitr Second Day", + "2016-08-17": "Independence Day", + "2016-09-12": "Eid al-Adha", + "2016-10-02": "Islamic New Year", + "2016-12-12": "The Prophet's Birthday", + "2016-12-25": "Christmas Day", + "2017-01-01": "New Year's Day", + "2017-01-28": "Lunar New Year", + "2017-03-28": "Day of Silence", + "2017-04-14": "Good Friday", + "2017-04-24": "The Prophet's Ascension", + "2017-05-01": "International Labor Day", + "2017-05-11": "Buddha's Birthday", + "2017-05-25": "Ascension Day", + "2017-06-01": "Pancasila Day", + "2017-06-25": "Eid al-Fitr", + "2017-06-26": "Eid al-Fitr Second Day", + "2017-08-17": "Independence Day", + "2017-09-01": "Eid al-Adha", + "2017-09-21": "Islamic New Year", + "2017-12-01": "The Prophet's Birthday", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-02-16": "Lunar New Year", + "2018-03-17": "Day of Silence", + "2018-03-30": "Good Friday", + "2018-04-14": "The Prophet's Ascension", + "2018-05-01": "International Labor Day", + "2018-05-10": "Ascension Day", + "2018-05-29": "Buddha's Birthday", + "2018-06-01": "Pancasila Day", + "2018-06-15": "Eid al-Fitr", + "2018-06-16": "Eid al-Fitr Second Day", + "2018-06-27": "Election Day", + "2018-08-17": "Independence Day", + "2018-08-22": "Eid al-Adha", + "2018-09-11": "Islamic New Year", + "2018-11-20": "The Prophet's Birthday", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-02-05": "Lunar New Year", + "2019-03-07": "Day of Silence", + "2019-04-03": "The Prophet's Ascension", + "2019-04-17": "Election Day", + "2019-04-19": "Good Friday", + "2019-05-01": "International Labor Day", + "2019-05-19": "Buddha's Birthday", + "2019-05-30": "Ascension Day", + "2019-06-01": "Pancasila Day", + "2019-06-05": "Eid al-Fitr", + "2019-06-06": "Eid al-Fitr Second Day", + "2019-08-11": "Eid al-Adha", + "2019-08-17": "Independence Day", + "2019-09-01": "Islamic New Year", + "2019-11-09": "The Prophet's Birthday", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-01-25": "Lunar New Year", + "2020-03-22": "The Prophet's Ascension", + "2020-03-25": "Day of Silence", + "2020-04-10": "Good Friday", + "2020-05-01": "International Labor Day", + "2020-05-07": "Buddha's Birthday", + "2020-05-21": "Ascension Day", + "2020-05-24": "Eid al-Fitr", + "2020-05-25": "Eid al-Fitr Second Day", + "2020-06-01": "Pancasila Day", + "2020-07-31": "Eid al-Adha", + "2020-08-17": "Independence Day", + "2020-08-20": "Islamic New Year", + "2020-10-29": "The Prophet's Birthday", + "2020-12-09": "Election Day", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-02-12": "Lunar New Year", + "2021-03-11": "The Prophet's Ascension", + "2021-03-14": "Day of Silence", + "2021-04-02": "Good Friday", + "2021-05-01": "International Labor Day", + "2021-05-13": "Ascension Day; Eid al-Fitr", + "2021-05-14": "Eid al-Fitr Second Day", + "2021-05-26": "Buddha's Birthday", + "2021-06-01": "Pancasila Day", + "2021-07-20": "Eid al-Adha", + "2021-08-11": "Islamic New Year", + "2021-08-17": "Independence Day", + "2021-10-19": "The Prophet's Birthday", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-02-01": "Lunar New Year", + "2022-02-28": "The Prophet's Ascension", + "2022-03-03": "Day of Silence", + "2022-04-15": "Good Friday", + "2022-04-29": "Eid al-Fitr Joint Holiday", + "2022-05-01": "International Labor Day", + "2022-05-02": "Eid al-Fitr", + "2022-05-03": "Eid al-Fitr Second Day", + "2022-05-04": "Eid al-Fitr Joint Holiday", + "2022-05-05": "Eid al-Fitr Joint Holiday", + "2022-05-06": "Eid al-Fitr Joint Holiday", + "2022-05-16": "Buddha's Birthday", + "2022-05-26": "Ascension Day", + "2022-06-01": "Pancasila Day", + "2022-07-10": "Eid al-Adha", + "2022-07-30": "Islamic New Year", + "2022-08-17": "Independence Day", + "2022-10-08": "The Prophet's Birthday", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Joint Holiday", + "2023-01-01": "New Year's Day", + "2023-01-22": "Lunar New Year", + "2023-01-23": "Lunar New Year Joint Holiday", + "2023-02-18": "The Prophet's Ascension", + "2023-03-22": "Day of Silence", + "2023-03-23": "Day of Silence Joint Holiday", + "2023-04-07": "Good Friday", + "2023-04-19": "Eid al-Fitr Joint Holiday", + "2023-04-20": "Eid al-Fitr Joint Holiday", + "2023-04-21": "Eid al-Fitr Joint Holiday", + "2023-04-22": "Eid al-Fitr", + "2023-04-23": "Eid al-Fitr Second Day", + "2023-04-24": "Eid al-Fitr Joint Holiday", + "2023-04-25": "Eid al-Fitr Joint Holiday", + "2023-05-01": "International Labor Day", + "2023-05-18": "Ascension Day", + "2023-06-01": "Pancasila Day", + "2023-06-04": "Buddha's Birthday", + "2023-06-29": "Eid al-Adha", + "2023-07-19": "Islamic New Year", + "2023-08-17": "Independence Day", + "2023-09-27": "The Prophet's Birthday* (*estimated)", + "2023-12-25": "Christmas Day", + "2023-12-26": "Christmas Joint Holiday", + "2024-01-01": "New Year's Day", + "2024-02-08": "The Prophet's Ascension* (*estimated)", + "2024-02-10": "Lunar New Year* (*estimated)", + "2024-03-11": "Day of Silence", + "2024-03-29": "Good Friday", + "2024-04-10": "Eid al-Fitr* (*estimated)", + "2024-04-11": "Eid al-Fitr Second Day* (*estimated)", + "2024-05-01": "International Labor Day", + "2024-05-09": "Ascension Day", + "2024-05-22": "Buddha's Birthday* (*estimated)", + "2024-06-01": "Pancasila Day", + "2024-06-16": "Eid al-Adha* (*estimated)", + "2024-07-07": "Islamic New Year* (*estimated)", + "2024-08-17": "Independence Day", + "2024-09-15": "The Prophet's Birthday* (*estimated)", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-01-27": "The Prophet's Ascension* (*estimated)", + "2025-01-29": "Lunar New Year* (*estimated)", + "2025-03-29": "Day of Silence", + "2025-03-30": "Eid al-Fitr* (*estimated)", + "2025-03-31": "Eid al-Fitr Second Day* (*estimated)", + "2025-04-18": "Good Friday", + "2025-05-01": "International Labor Day", + "2025-05-11": "Buddha's Birthday* (*estimated)", + "2025-05-29": "Ascension Day", + "2025-06-01": "Pancasila Day", + "2025-06-06": "Eid al-Adha* (*estimated)", + "2025-06-26": "Islamic New Year* (*estimated)", + "2025-08-17": "Independence Day", + "2025-09-04": "The Prophet's Birthday* (*estimated)", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-01-16": "The Prophet's Ascension* (*estimated)", + "2026-02-17": "Lunar New Year* (*estimated)", + "2026-03-19": "Day of Silence", + "2026-03-20": "Eid al-Fitr* (*estimated)", + "2026-03-21": "Eid al-Fitr Second Day* (*estimated)", + "2026-04-03": "Good Friday", + "2026-05-01": "International Labor Day", + "2026-05-14": "Ascension Day", + "2026-05-27": "Eid al-Adha* (*estimated)", + "2026-05-31": "Buddha's Birthday* (*estimated)", + "2026-06-01": "Pancasila Day", + "2026-06-16": "Islamic New Year* (*estimated)", + "2026-08-17": "Independence Day", + "2026-08-25": "The Prophet's Birthday* (*estimated)", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-01-05": "The Prophet's Ascension* (*estimated)", + "2027-02-06": "Lunar New Year* (*estimated)", + "2027-03-09": "Eid al-Fitr* (*estimated)", + "2027-03-10": "Eid al-Fitr Second Day* (*estimated)", + "2027-03-26": "Good Friday", + "2027-05-01": "International Labor Day", + "2027-05-06": "Ascension Day", + "2027-05-16": "Eid al-Adha* (*estimated)", + "2027-05-20": "Buddha's Birthday* (*estimated)", + "2027-06-01": "Pancasila Day", + "2027-06-06": "Islamic New Year* (*estimated)", + "2027-08-14": "The Prophet's Birthday* (*estimated)", + "2027-08-17": "Independence Day", + "2027-12-25": "Christmas Day; The Prophet's Ascension* (*estimated)", + "2028-01-01": "New Year's Day", + "2028-01-26": "Lunar New Year* (*estimated)", + "2028-02-26": "Eid al-Fitr* (*estimated)", + "2028-02-27": "Eid al-Fitr Second Day* (*estimated)", + "2028-04-14": "Good Friday", + "2028-05-01": "International Labor Day", + "2028-05-05": "Eid al-Adha* (*estimated)", + "2028-05-09": "Buddha's Birthday* (*estimated)", + "2028-05-25": "Ascension Day; Islamic New Year* (*estimated)", + "2028-06-01": "Pancasila Day", + "2028-08-03": "The Prophet's Birthday* (*estimated)", + "2028-08-17": "Independence Day", + "2028-12-14": "The Prophet's Ascension* (*estimated)", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-02-13": "Lunar New Year* (*estimated)", + "2029-02-14": "Eid al-Fitr* (*estimated)", + "2029-02-15": "Eid al-Fitr Second Day* (*estimated)", + "2029-03-30": "Good Friday", + "2029-04-24": "Eid al-Adha* (*estimated)", + "2029-05-01": "International Labor Day", + "2029-05-10": "Ascension Day", + "2029-05-14": "Islamic New Year* (*estimated)", + "2029-05-27": "Buddha's Birthday* (*estimated)", + "2029-06-01": "Pancasila Day", + "2029-07-24": "The Prophet's Birthday* (*estimated)", + "2029-08-17": "Independence Day", + "2029-12-03": "The Prophet's Ascension* (*estimated)", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-02-03": "Lunar New Year* (*estimated)", + "2030-02-04": "Eid al-Fitr* (*estimated)", + "2030-02-05": "Eid al-Fitr Second Day* (*estimated)", + "2030-04-13": "Eid al-Adha* (*estimated)", + "2030-04-19": "Good Friday", + "2030-05-01": "International Labor Day", + "2030-05-03": "Islamic New Year* (*estimated)", + "2030-05-16": "Buddha's Birthday* (*estimated)", + "2030-05-30": "Ascension Day", + "2030-06-01": "Pancasila Day", + "2030-07-13": "The Prophet's Birthday* (*estimated)", + "2030-08-17": "Independence Day", + "2030-11-23": "The Prophet's Ascension* (*estimated)", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-01-23": "Lunar New Year* (*estimated)", + "2031-01-24": "Eid al-Fitr* (*estimated)", + "2031-01-25": "Eid al-Fitr Second Day* (*estimated)", + "2031-04-02": "Eid al-Adha* (*estimated)", + "2031-04-11": "Good Friday", + "2031-04-23": "Islamic New Year* (*estimated)", + "2031-05-01": "International Labor Day", + "2031-05-22": "Ascension Day", + "2031-06-01": "Pancasila Day", + "2031-06-04": "Buddha's Birthday* (*estimated)", + "2031-07-02": "The Prophet's Birthday* (*estimated)", + "2031-08-17": "Independence Day", + "2031-11-12": "The Prophet's Ascension* (*estimated)", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-01-14": "Eid al-Fitr* (*estimated)", + "2032-01-15": "Eid al-Fitr Second Day* (*estimated)", + "2032-02-11": "Lunar New Year* (*estimated)", + "2032-03-22": "Eid al-Adha* (*estimated)", + "2032-03-26": "Good Friday", + "2032-04-11": "Islamic New Year* (*estimated)", + "2032-05-01": "International Labor Day", + "2032-05-06": "Ascension Day", + "2032-05-23": "Buddha's Birthday* (*estimated)", + "2032-06-01": "Pancasila Day", + "2032-06-20": "The Prophet's Birthday* (*estimated)", + "2032-08-17": "Independence Day", + "2032-11-01": "The Prophet's Ascension* (*estimated)", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "Eid al-Fitr* (*estimated)", + "2033-01-03": "Eid al-Fitr Second Day* (*estimated)", + "2033-01-31": "Lunar New Year* (*estimated)", + "2033-03-11": "Eid al-Adha* (*estimated)", + "2033-04-01": "Islamic New Year* (*estimated)", + "2033-04-15": "Good Friday", + "2033-05-01": "International Labor Day", + "2033-05-13": "Buddha's Birthday* (*estimated)", + "2033-05-26": "Ascension Day", + "2033-06-01": "Pancasila Day", + "2033-06-09": "The Prophet's Birthday* (*estimated)", + "2033-08-17": "Independence Day", + "2033-10-21": "The Prophet's Ascension* (*estimated)", + "2033-12-23": "Eid al-Fitr* (*estimated)", + "2033-12-24": "Eid al-Fitr Second Day* (*estimated)", + "2033-12-25": "Christmas Day", + "2034-01-01": "New Year's Day", + "2034-02-19": "Lunar New Year* (*estimated)", + "2034-03-01": "Eid al-Adha* (*estimated)", + "2034-03-21": "Islamic New Year* (*estimated)", + "2034-04-07": "Good Friday", + "2034-05-01": "International Labor Day", + "2034-05-18": "Ascension Day", + "2034-05-30": "The Prophet's Birthday* (*estimated)", + "2034-06-01": "Buddha's Birthday* (*estimated); Pancasila Day", + "2034-08-17": "Independence Day", + "2034-10-10": "The Prophet's Ascension* (*estimated)", + "2034-12-12": "Eid al-Fitr* (*estimated)", + "2034-12-13": "Eid al-Fitr Second Day* (*estimated)", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-02-08": "Lunar New Year* (*estimated)", + "2035-02-18": "Eid al-Adha* (*estimated)", + "2035-03-11": "Islamic New Year* (*estimated)", + "2035-03-23": "Good Friday", + "2035-05-01": "International Labor Day", + "2035-05-03": "Ascension Day", + "2035-05-20": "The Prophet's Birthday* (*estimated)", + "2035-05-22": "Buddha's Birthday* (*estimated)", + "2035-06-01": "Pancasila Day", + "2035-08-17": "Independence Day", + "2035-09-29": "The Prophet's Ascension* (*estimated)", + "2035-12-01": "Eid al-Fitr* (*estimated)", + "2035-12-02": "Eid al-Fitr Second Day* (*estimated)", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-01-28": "Lunar New Year* (*estimated)", + "2036-02-07": "Eid al-Adha* (*estimated)", + "2036-02-28": "Islamic New Year* (*estimated)", + "2036-04-11": "Good Friday", + "2036-05-01": "International Labor Day", + "2036-05-08": "The Prophet's Birthday* (*estimated)", + "2036-05-10": "Buddha's Birthday* (*estimated)", + "2036-05-22": "Ascension Day", + "2036-06-01": "Pancasila Day", + "2036-08-17": "Independence Day", + "2036-09-18": "The Prophet's Ascension* (*estimated)", + "2036-11-19": "Eid al-Fitr* (*estimated)", + "2036-11-20": "Eid al-Fitr Second Day* (*estimated)", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-26": "Eid al-Adha* (*estimated)", + "2037-02-15": "Lunar New Year* (*estimated)", + "2037-02-16": "Islamic New Year* (*estimated)", + "2037-04-03": "Good Friday", + "2037-04-28": "The Prophet's Birthday* (*estimated)", + "2037-05-01": "International Labor Day", + "2037-05-14": "Ascension Day", + "2037-05-29": "Buddha's Birthday* (*estimated)", + "2037-06-01": "Pancasila Day", + "2037-08-17": "Independence Day", + "2037-09-07": "The Prophet's Ascension* (*estimated)", + "2037-11-08": "Eid al-Fitr* (*estimated)", + "2037-11-09": "Eid al-Fitr Second Day* (*estimated)", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-01-16": "Eid al-Adha* (*estimated)", + "2038-02-04": "Lunar New Year* (*estimated)", + "2038-02-05": "Islamic New Year* (*estimated)", + "2038-04-17": "The Prophet's Birthday* (*estimated)", + "2038-04-23": "Good Friday", + "2038-05-01": "International Labor Day", + "2038-05-18": "Buddha's Birthday* (*estimated)", + "2038-06-01": "Pancasila Day", + "2038-06-03": "Ascension Day", + "2038-08-17": "Independence Day", + "2038-08-28": "The Prophet's Ascension* (*estimated)", + "2038-10-29": "Eid al-Fitr* (*estimated)", + "2038-10-30": "Eid al-Fitr Second Day* (*estimated)", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-01-05": "Eid al-Adha* (*estimated)", + "2039-01-24": "Lunar New Year* (*estimated)", + "2039-01-26": "Islamic New Year* (*estimated)", + "2039-04-06": "The Prophet's Birthday* (*estimated)", + "2039-04-08": "Good Friday", + "2039-05-01": "International Labor Day", + "2039-05-07": "Buddha's Birthday* (*estimated)", + "2039-05-19": "Ascension Day", + "2039-06-01": "Pancasila Day", + "2039-08-17": "Independence Day; The Prophet's Ascension* (*estimated)", + "2039-10-19": "Eid al-Fitr* (*estimated)", + "2039-10-20": "Eid al-Fitr Second Day* (*estimated)", + "2039-12-25": "Christmas Day", + "2039-12-26": "Eid al-Adha* (*estimated)", + "2040-01-01": "New Year's Day", + "2040-01-15": "Islamic New Year* (*estimated)", + "2040-02-12": "Lunar New Year* (*estimated)", + "2040-03-25": "The Prophet's Birthday* (*estimated)", + "2040-03-30": "Good Friday", + "2040-05-01": "International Labor Day", + "2040-05-10": "Ascension Day", + "2040-05-25": "Buddha's Birthday* (*estimated)", + "2040-06-01": "Pancasila Day", + "2040-08-05": "The Prophet's Ascension* (*estimated)", + "2040-08-17": "Independence Day", + "2040-10-07": "Eid al-Fitr* (*estimated)", + "2040-10-08": "Eid al-Fitr Second Day* (*estimated)", + "2040-12-14": "Eid al-Adha* (*estimated)", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-01-04": "Islamic New Year* (*estimated)", + "2041-02-01": "Lunar New Year* (*estimated)", + "2041-03-15": "The Prophet's Birthday* (*estimated)", + "2041-04-19": "Good Friday", + "2041-05-01": "International Labor Day", + "2041-05-14": "Buddha's Birthday* (*estimated)", + "2041-05-30": "Ascension Day", + "2041-06-01": "Pancasila Day", + "2041-07-25": "The Prophet's Ascension* (*estimated)", + "2041-08-17": "Independence Day", + "2041-09-26": "Eid al-Fitr* (*estimated)", + "2041-09-27": "Eid al-Fitr Second Day* (*estimated)", + "2041-12-04": "Eid al-Adha* (*estimated)", + "2041-12-24": "Islamic New Year* (*estimated)", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-01-22": "Lunar New Year* (*estimated)", + "2042-03-04": "The Prophet's Birthday* (*estimated)", + "2042-04-04": "Good Friday", + "2042-05-01": "International Labor Day", + "2042-05-15": "Ascension Day", + "2042-06-01": "Pancasila Day", + "2042-06-02": "Buddha's Birthday* (*estimated)", + "2042-07-15": "The Prophet's Ascension* (*estimated)", + "2042-08-17": "Independence Day", + "2042-09-15": "Eid al-Fitr* (*estimated)", + "2042-09-16": "Eid al-Fitr Second Day* (*estimated)", + "2042-11-23": "Eid al-Adha* (*estimated)", + "2042-12-14": "Islamic New Year* (*estimated)", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-02-10": "Lunar New Year* (*estimated)", + "2043-02-22": "The Prophet's Birthday* (*estimated)", + "2043-03-27": "Good Friday", + "2043-05-01": "International Labor Day", + "2043-05-07": "Ascension Day", + "2043-05-23": "Buddha's Birthday* (*estimated)", + "2043-06-01": "Pancasila Day", + "2043-07-04": "The Prophet's Ascension* (*estimated)", + "2043-08-17": "Independence Day", + "2043-09-04": "Eid al-Fitr* (*estimated)", + "2043-09-05": "Eid al-Fitr Second Day* (*estimated)", + "2043-11-12": "Eid al-Adha* (*estimated)", + "2043-12-03": "Islamic New Year* (*estimated)", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-01-30": "Lunar New Year* (*estimated)", + "2044-02-11": "The Prophet's Birthday* (*estimated)", + "2044-04-15": "Good Friday", + "2044-05-01": "International Labor Day", + "2044-05-12": "Buddha's Birthday* (*estimated)", + "2044-05-26": "Ascension Day", + "2044-06-01": "Pancasila Day", + "2044-06-23": "The Prophet's Ascension* (*estimated)", + "2044-08-17": "Independence Day", + "2044-08-24": "Eid al-Fitr* (*estimated)", + "2044-08-25": "Eid al-Fitr Second Day* (*estimated)", + "2044-10-31": "Eid al-Adha* (*estimated)", + "2044-11-21": "Islamic New Year* (*estimated)", + "2044-12-25": "Christmas Day", + "2045-01-01": "New Year's Day", + "2045-01-30": "The Prophet's Birthday* (*estimated)", + "2045-02-17": "Lunar New Year* (*estimated)", + "2045-04-07": "Good Friday", + "2045-05-01": "International Labor Day", + "2045-05-18": "Ascension Day", + "2045-05-31": "Buddha's Birthday* (*estimated)", + "2045-06-01": "Pancasila Day", + "2045-06-13": "The Prophet's Ascension* (*estimated)", + "2045-08-14": "Eid al-Fitr* (*estimated)", + "2045-08-15": "Eid al-Fitr Second Day* (*estimated)", + "2045-08-17": "Independence Day", + "2045-10-21": "Eid al-Adha* (*estimated)", + "2045-11-10": "Islamic New Year* (*estimated)", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-01-19": "The Prophet's Birthday* (*estimated)", + "2046-02-06": "Lunar New Year* (*estimated)", + "2046-03-23": "Good Friday", + "2046-05-01": "International Labor Day", + "2046-05-03": "Ascension Day", + "2046-05-20": "Buddha's Birthday* (*estimated)", + "2046-06-01": "Pancasila Day", + "2046-06-02": "The Prophet's Ascension* (*estimated)", + "2046-08-03": "Eid al-Fitr* (*estimated)", + "2046-08-04": "Eid al-Fitr Second Day* (*estimated)", + "2046-08-17": "Independence Day", + "2046-10-10": "Eid al-Adha* (*estimated)", + "2046-10-31": "Islamic New Year* (*estimated)", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-08": "The Prophet's Birthday* (*estimated)", + "2047-01-26": "Lunar New Year* (*estimated)", + "2047-04-12": "Good Friday", + "2047-05-01": "International Labor Day", + "2047-05-09": "Buddha's Birthday* (*estimated)", + "2047-05-22": "The Prophet's Ascension* (*estimated)", + "2047-05-23": "Ascension Day", + "2047-06-01": "Pancasila Day", + "2047-07-24": "Eid al-Fitr* (*estimated)", + "2047-07-25": "Eid al-Fitr Second Day* (*estimated)", + "2047-08-17": "Independence Day", + "2047-09-30": "Eid al-Adha* (*estimated)", + "2047-10-20": "Islamic New Year* (*estimated)", + "2047-12-25": "Christmas Day", + "2047-12-29": "The Prophet's Birthday* (*estimated)", + "2048-01-01": "New Year's Day", + "2048-02-14": "Lunar New Year* (*estimated)", + "2048-04-03": "Good Friday", + "2048-05-01": "International Labor Day", + "2048-05-10": "The Prophet's Ascension* (*estimated)", + "2048-05-14": "Ascension Day", + "2048-05-27": "Buddha's Birthday* (*estimated)", + "2048-06-01": "Pancasila Day", + "2048-07-12": "Eid al-Fitr* (*estimated)", + "2048-07-13": "Eid al-Fitr Second Day* (*estimated)", + "2048-08-17": "Independence Day", + "2048-09-19": "Eid al-Adha* (*estimated)", + "2048-10-09": "Islamic New Year* (*estimated)", + "2048-12-18": "The Prophet's Birthday* (*estimated)", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-02-02": "Lunar New Year* (*estimated)", + "2049-04-16": "Good Friday", + "2049-04-29": "The Prophet's Ascension* (*estimated)", + "2049-05-01": "International Labor Day", + "2049-05-16": "Buddha's Birthday* (*estimated)", + "2049-05-27": "Ascension Day", + "2049-06-01": "Pancasila Day", + "2049-07-01": "Eid al-Fitr* (*estimated)", + "2049-07-02": "Eid al-Fitr Second Day* (*estimated)", + "2049-08-17": "Independence Day", + "2049-09-08": "Eid al-Adha* (*estimated)", + "2049-09-28": "Islamic New Year* (*estimated)", + "2049-12-07": "The Prophet's Birthday* (*estimated)", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-01-23": "Lunar New Year* (*estimated)", + "2050-04-08": "Good Friday", + "2050-04-19": "The Prophet's Ascension* (*estimated)", + "2050-05-01": "International Labor Day", + "2050-05-19": "Ascension Day", + "2050-06-01": "Pancasila Day", + "2050-06-04": "Buddha's Birthday* (*estimated)", + "2050-06-20": "Eid al-Fitr* (*estimated)", + "2050-06-21": "Eid al-Fitr Second Day* (*estimated)", + "2050-08-17": "Independence Day", + "2050-08-28": "Eid al-Adha* (*estimated)", + "2050-09-17": "Islamic New Year* (*estimated)", + "2050-11-26": "The Prophet's Birthday* (*estimated)", + "2050-12-25": "Christmas Day" +} diff --git a/snapshots/countries/IE.json b/snapshots/countries/IE.json new file mode 100644 index 000000000..4289eb01c --- /dev/null +++ b/snapshots/countries/IE.json @@ -0,0 +1,984 @@ +{ + "1950-01-01": "New Year's Day", + "1950-03-17": "St. Patrick's Day", + "1950-04-10": "Easter Monday", + "1950-06-05": "June Bank Holiday", + "1950-08-07": "August Bank Holiday", + "1950-10-30": "October Bank Holiday", + "1950-12-25": "Christmas Day", + "1950-12-26": "St. Stephen's Day", + "1951-01-01": "New Year's Day", + "1951-03-17": "St. Patrick's Day", + "1951-03-19": "St. Patrick's Day (Observed)", + "1951-03-26": "Easter Monday", + "1951-06-04": "June Bank Holiday", + "1951-08-06": "August Bank Holiday", + "1951-10-29": "October Bank Holiday", + "1951-12-25": "Christmas Day", + "1951-12-26": "St. Stephen's Day", + "1952-01-01": "New Year's Day", + "1952-03-17": "St. Patrick's Day", + "1952-04-14": "Easter Monday", + "1952-06-02": "June Bank Holiday", + "1952-08-04": "August Bank Holiday", + "1952-10-27": "October Bank Holiday", + "1952-12-25": "Christmas Day", + "1952-12-26": "St. Stephen's Day", + "1953-01-01": "New Year's Day", + "1953-03-17": "St. Patrick's Day", + "1953-04-06": "Easter Monday", + "1953-06-01": "June Bank Holiday", + "1953-08-03": "August Bank Holiday", + "1953-10-26": "October Bank Holiday", + "1953-12-25": "Christmas Day", + "1953-12-26": "St. Stephen's Day", + "1953-12-28": "St. Stephen's Day (Observed)", + "1954-01-01": "New Year's Day", + "1954-03-17": "St. Patrick's Day", + "1954-04-19": "Easter Monday", + "1954-06-07": "June Bank Holiday", + "1954-08-02": "August Bank Holiday", + "1954-10-25": "October Bank Holiday", + "1954-12-25": "Christmas Day", + "1954-12-26": "St. Stephen's Day", + "1954-12-27": "Christmas Day (Observed)", + "1954-12-28": "St. Stephen's Day (Observed)", + "1955-01-01": "New Year's Day", + "1955-03-17": "St. Patrick's Day", + "1955-04-11": "Easter Monday", + "1955-06-06": "June Bank Holiday", + "1955-08-01": "August Bank Holiday", + "1955-10-31": "October Bank Holiday", + "1955-12-25": "Christmas Day", + "1955-12-26": "Christmas Day (Observed); St. Stephen's Day", + "1956-01-01": "New Year's Day", + "1956-03-17": "St. Patrick's Day", + "1956-03-19": "St. Patrick's Day (Observed)", + "1956-04-02": "Easter Monday", + "1956-06-04": "June Bank Holiday", + "1956-08-06": "August Bank Holiday", + "1956-10-29": "October Bank Holiday", + "1956-12-25": "Christmas Day", + "1956-12-26": "St. Stephen's Day", + "1957-01-01": "New Year's Day", + "1957-03-17": "St. Patrick's Day", + "1957-03-18": "St. Patrick's Day (Observed)", + "1957-04-22": "Easter Monday", + "1957-06-03": "June Bank Holiday", + "1957-08-05": "August Bank Holiday", + "1957-10-28": "October Bank Holiday", + "1957-12-25": "Christmas Day", + "1957-12-26": "St. Stephen's Day", + "1958-01-01": "New Year's Day", + "1958-03-17": "St. Patrick's Day", + "1958-04-07": "Easter Monday", + "1958-06-02": "June Bank Holiday", + "1958-08-04": "August Bank Holiday", + "1958-10-27": "October Bank Holiday", + "1958-12-25": "Christmas Day", + "1958-12-26": "St. Stephen's Day", + "1959-01-01": "New Year's Day", + "1959-03-17": "St. Patrick's Day", + "1959-03-30": "Easter Monday", + "1959-06-01": "June Bank Holiday", + "1959-08-03": "August Bank Holiday", + "1959-10-26": "October Bank Holiday", + "1959-12-25": "Christmas Day", + "1959-12-26": "St. Stephen's Day", + "1959-12-28": "St. Stephen's Day (Observed)", + "1960-01-01": "New Year's Day", + "1960-03-17": "St. Patrick's Day", + "1960-04-18": "Easter Monday", + "1960-06-06": "June Bank Holiday", + "1960-08-01": "August Bank Holiday", + "1960-10-31": "October Bank Holiday", + "1960-12-25": "Christmas Day", + "1960-12-26": "Christmas Day (Observed); St. Stephen's Day", + "1961-01-01": "New Year's Day", + "1961-03-17": "St. Patrick's Day", + "1961-04-03": "Easter Monday", + "1961-06-05": "June Bank Holiday", + "1961-08-07": "August Bank Holiday", + "1961-10-30": "October Bank Holiday", + "1961-12-25": "Christmas Day", + "1961-12-26": "St. Stephen's Day", + "1962-01-01": "New Year's Day", + "1962-03-17": "St. Patrick's Day", + "1962-03-19": "St. Patrick's Day (Observed)", + "1962-04-23": "Easter Monday", + "1962-06-04": "June Bank Holiday", + "1962-08-06": "August Bank Holiday", + "1962-10-29": "October Bank Holiday", + "1962-12-25": "Christmas Day", + "1962-12-26": "St. Stephen's Day", + "1963-01-01": "New Year's Day", + "1963-03-17": "St. Patrick's Day", + "1963-03-18": "St. Patrick's Day (Observed)", + "1963-04-15": "Easter Monday", + "1963-06-03": "June Bank Holiday", + "1963-08-05": "August Bank Holiday", + "1963-10-28": "October Bank Holiday", + "1963-12-25": "Christmas Day", + "1963-12-26": "St. Stephen's Day", + "1964-01-01": "New Year's Day", + "1964-03-17": "St. Patrick's Day", + "1964-03-30": "Easter Monday", + "1964-06-01": "June Bank Holiday", + "1964-08-03": "August Bank Holiday", + "1964-10-26": "October Bank Holiday", + "1964-12-25": "Christmas Day", + "1964-12-26": "St. Stephen's Day", + "1964-12-28": "St. Stephen's Day (Observed)", + "1965-01-01": "New Year's Day", + "1965-03-17": "St. Patrick's Day", + "1965-04-19": "Easter Monday", + "1965-06-07": "June Bank Holiday", + "1965-08-02": "August Bank Holiday", + "1965-10-25": "October Bank Holiday", + "1965-12-25": "Christmas Day", + "1965-12-26": "St. Stephen's Day", + "1965-12-27": "Christmas Day (Observed)", + "1965-12-28": "St. Stephen's Day (Observed)", + "1966-01-01": "New Year's Day", + "1966-03-17": "St. Patrick's Day", + "1966-04-11": "Easter Monday", + "1966-06-06": "June Bank Holiday", + "1966-08-01": "August Bank Holiday", + "1966-10-31": "October Bank Holiday", + "1966-12-25": "Christmas Day", + "1966-12-26": "Christmas Day (Observed); St. Stephen's Day", + "1967-01-01": "New Year's Day", + "1967-03-17": "St. Patrick's Day", + "1967-03-27": "Easter Monday", + "1967-06-05": "June Bank Holiday", + "1967-08-07": "August Bank Holiday", + "1967-10-30": "October Bank Holiday", + "1967-12-25": "Christmas Day", + "1967-12-26": "St. Stephen's Day", + "1968-01-01": "New Year's Day", + "1968-03-17": "St. Patrick's Day", + "1968-03-18": "St. Patrick's Day (Observed)", + "1968-04-15": "Easter Monday", + "1968-06-03": "June Bank Holiday", + "1968-08-05": "August Bank Holiday", + "1968-10-28": "October Bank Holiday", + "1968-12-25": "Christmas Day", + "1968-12-26": "St. Stephen's Day", + "1969-01-01": "New Year's Day", + "1969-03-17": "St. Patrick's Day", + "1969-04-07": "Easter Monday", + "1969-06-02": "June Bank Holiday", + "1969-08-04": "August Bank Holiday", + "1969-10-27": "October Bank Holiday", + "1969-12-25": "Christmas Day", + "1969-12-26": "St. Stephen's Day", + "1970-01-01": "New Year's Day", + "1970-03-17": "St. Patrick's Day", + "1970-03-30": "Easter Monday", + "1970-06-01": "June Bank Holiday", + "1970-08-03": "August Bank Holiday", + "1970-10-26": "October Bank Holiday", + "1970-12-25": "Christmas Day", + "1970-12-26": "St. Stephen's Day", + "1970-12-28": "St. Stephen's Day (Observed)", + "1971-01-01": "New Year's Day", + "1971-03-17": "St. Patrick's Day", + "1971-04-12": "Easter Monday", + "1971-06-07": "June Bank Holiday", + "1971-08-02": "August Bank Holiday", + "1971-10-25": "October Bank Holiday", + "1971-12-25": "Christmas Day", + "1971-12-26": "St. Stephen's Day", + "1971-12-27": "Christmas Day (Observed)", + "1971-12-28": "St. Stephen's Day (Observed)", + "1972-01-01": "New Year's Day", + "1972-03-17": "St. Patrick's Day", + "1972-04-03": "Easter Monday", + "1972-06-05": "June Bank Holiday", + "1972-08-07": "August Bank Holiday", + "1972-10-30": "October Bank Holiday", + "1972-12-25": "Christmas Day", + "1972-12-26": "St. Stephen's Day", + "1973-01-01": "New Year's Day", + "1973-03-17": "St. Patrick's Day", + "1973-03-19": "St. Patrick's Day (Observed)", + "1973-04-23": "Easter Monday", + "1973-06-04": "June Bank Holiday", + "1973-08-06": "August Bank Holiday", + "1973-10-29": "October Bank Holiday", + "1973-12-25": "Christmas Day", + "1973-12-26": "St. Stephen's Day", + "1974-01-01": "New Year's Day", + "1974-03-17": "St. Patrick's Day", + "1974-03-18": "St. Patrick's Day (Observed)", + "1974-04-15": "Easter Monday", + "1974-06-03": "June Bank Holiday", + "1974-08-05": "August Bank Holiday", + "1974-10-28": "October Bank Holiday", + "1974-12-25": "Christmas Day", + "1974-12-26": "St. Stephen's Day", + "1975-01-01": "New Year's Day", + "1975-03-17": "St. Patrick's Day", + "1975-03-31": "Easter Monday", + "1975-06-02": "June Bank Holiday", + "1975-08-04": "August Bank Holiday", + "1975-10-27": "October Bank Holiday", + "1975-12-25": "Christmas Day", + "1975-12-26": "St. Stephen's Day", + "1976-01-01": "New Year's Day", + "1976-03-17": "St. Patrick's Day", + "1976-04-19": "Easter Monday", + "1976-06-07": "June Bank Holiday", + "1976-08-02": "August Bank Holiday", + "1976-10-25": "October Bank Holiday", + "1976-12-25": "Christmas Day", + "1976-12-26": "St. Stephen's Day", + "1976-12-27": "Christmas Day (Observed)", + "1976-12-28": "St. Stephen's Day (Observed)", + "1977-01-01": "New Year's Day", + "1977-03-17": "St. Patrick's Day", + "1977-04-11": "Easter Monday", + "1977-06-06": "June Bank Holiday", + "1977-08-01": "August Bank Holiday", + "1977-10-31": "October Bank Holiday", + "1977-12-25": "Christmas Day", + "1977-12-26": "Christmas Day (Observed); St. Stephen's Day", + "1978-01-01": "New Year's Day", + "1978-03-17": "St. Patrick's Day", + "1978-03-27": "Easter Monday", + "1978-05-01": "May Day", + "1978-06-05": "June Bank Holiday", + "1978-08-07": "August Bank Holiday", + "1978-10-30": "October Bank Holiday", + "1978-12-25": "Christmas Day", + "1978-12-26": "St. Stephen's Day", + "1979-01-01": "New Year's Day", + "1979-03-17": "St. Patrick's Day", + "1979-03-19": "St. Patrick's Day (Observed)", + "1979-04-16": "Easter Monday", + "1979-05-07": "May Day", + "1979-06-04": "June Bank Holiday", + "1979-08-06": "August Bank Holiday", + "1979-10-29": "October Bank Holiday", + "1979-12-25": "Christmas Day", + "1979-12-26": "St. Stephen's Day", + "1980-01-01": "New Year's Day", + "1980-03-17": "St. Patrick's Day", + "1980-04-07": "Easter Monday", + "1980-05-05": "May Day", + "1980-06-02": "June Bank Holiday", + "1980-08-04": "August Bank Holiday", + "1980-10-27": "October Bank Holiday", + "1980-12-25": "Christmas Day", + "1980-12-26": "St. Stephen's Day", + "1981-01-01": "New Year's Day", + "1981-03-17": "St. Patrick's Day", + "1981-04-20": "Easter Monday", + "1981-05-04": "May Day", + "1981-06-01": "June Bank Holiday", + "1981-08-03": "August Bank Holiday", + "1981-10-26": "October Bank Holiday", + "1981-12-25": "Christmas Day", + "1981-12-26": "St. Stephen's Day", + "1981-12-28": "St. Stephen's Day (Observed)", + "1982-01-01": "New Year's Day", + "1982-03-17": "St. Patrick's Day", + "1982-04-12": "Easter Monday", + "1982-05-03": "May Day", + "1982-06-07": "June Bank Holiday", + "1982-08-02": "August Bank Holiday", + "1982-10-25": "October Bank Holiday", + "1982-12-25": "Christmas Day", + "1982-12-26": "St. Stephen's Day", + "1982-12-27": "Christmas Day (Observed)", + "1982-12-28": "St. Stephen's Day (Observed)", + "1983-01-01": "New Year's Day", + "1983-03-17": "St. Patrick's Day", + "1983-04-04": "Easter Monday", + "1983-05-02": "May Day", + "1983-06-06": "June Bank Holiday", + "1983-08-01": "August Bank Holiday", + "1983-10-31": "October Bank Holiday", + "1983-12-25": "Christmas Day", + "1983-12-26": "Christmas Day (Observed); St. Stephen's Day", + "1984-01-01": "New Year's Day", + "1984-03-17": "St. Patrick's Day", + "1984-03-19": "St. Patrick's Day (Observed)", + "1984-04-23": "Easter Monday", + "1984-05-07": "May Day", + "1984-06-04": "June Bank Holiday", + "1984-08-06": "August Bank Holiday", + "1984-10-29": "October Bank Holiday", + "1984-12-25": "Christmas Day", + "1984-12-26": "St. Stephen's Day", + "1985-01-01": "New Year's Day", + "1985-03-17": "St. Patrick's Day", + "1985-03-18": "St. Patrick's Day (Observed)", + "1985-04-08": "Easter Monday", + "1985-05-06": "May Day", + "1985-06-03": "June Bank Holiday", + "1985-08-05": "August Bank Holiday", + "1985-10-28": "October Bank Holiday", + "1985-12-25": "Christmas Day", + "1985-12-26": "St. Stephen's Day", + "1986-01-01": "New Year's Day", + "1986-03-17": "St. Patrick's Day", + "1986-03-31": "Easter Monday", + "1986-05-05": "May Day", + "1986-06-02": "June Bank Holiday", + "1986-08-04": "August Bank Holiday", + "1986-10-27": "October Bank Holiday", + "1986-12-25": "Christmas Day", + "1986-12-26": "St. Stephen's Day", + "1987-01-01": "New Year's Day", + "1987-03-17": "St. Patrick's Day", + "1987-04-20": "Easter Monday", + "1987-05-04": "May Day", + "1987-06-01": "June Bank Holiday", + "1987-08-03": "August Bank Holiday", + "1987-10-26": "October Bank Holiday", + "1987-12-25": "Christmas Day", + "1987-12-26": "St. Stephen's Day", + "1987-12-28": "St. Stephen's Day (Observed)", + "1988-01-01": "New Year's Day", + "1988-03-17": "St. Patrick's Day", + "1988-04-04": "Easter Monday", + "1988-05-02": "May Day", + "1988-06-06": "June Bank Holiday", + "1988-08-01": "August Bank Holiday", + "1988-10-31": "October Bank Holiday", + "1988-12-25": "Christmas Day", + "1988-12-26": "Christmas Day (Observed); St. Stephen's Day", + "1989-01-01": "New Year's Day", + "1989-03-17": "St. Patrick's Day", + "1989-03-27": "Easter Monday", + "1989-05-01": "May Day", + "1989-06-05": "June Bank Holiday", + "1989-08-07": "August Bank Holiday", + "1989-10-30": "October Bank Holiday", + "1989-12-25": "Christmas Day", + "1989-12-26": "St. Stephen's Day", + "1990-01-01": "New Year's Day", + "1990-03-17": "St. Patrick's Day", + "1990-03-19": "St. Patrick's Day (Observed)", + "1990-04-16": "Easter Monday", + "1990-05-07": "May Day", + "1990-06-04": "June Bank Holiday", + "1990-08-06": "August Bank Holiday", + "1990-10-29": "October Bank Holiday", + "1990-12-25": "Christmas Day", + "1990-12-26": "St. Stephen's Day", + "1991-01-01": "New Year's Day", + "1991-03-17": "St. Patrick's Day", + "1991-03-18": "St. Patrick's Day (Observed)", + "1991-04-01": "Easter Monday", + "1991-05-06": "May Day", + "1991-06-03": "June Bank Holiday", + "1991-08-05": "August Bank Holiday", + "1991-10-28": "October Bank Holiday", + "1991-12-25": "Christmas Day", + "1991-12-26": "St. Stephen's Day", + "1992-01-01": "New Year's Day", + "1992-03-17": "St. Patrick's Day", + "1992-04-20": "Easter Monday", + "1992-05-04": "May Day", + "1992-06-01": "June Bank Holiday", + "1992-08-03": "August Bank Holiday", + "1992-10-26": "October Bank Holiday", + "1992-12-25": "Christmas Day", + "1992-12-26": "St. Stephen's Day", + "1992-12-28": "St. Stephen's Day (Observed)", + "1993-01-01": "New Year's Day", + "1993-03-17": "St. Patrick's Day", + "1993-04-12": "Easter Monday", + "1993-05-03": "May Day", + "1993-06-07": "June Bank Holiday", + "1993-08-02": "August Bank Holiday", + "1993-10-25": "October Bank Holiday", + "1993-12-25": "Christmas Day", + "1993-12-26": "St. Stephen's Day", + "1993-12-27": "Christmas Day (Observed)", + "1993-12-28": "St. Stephen's Day (Observed)", + "1994-01-01": "New Year's Day", + "1994-03-17": "St. Patrick's Day", + "1994-04-04": "Easter Monday", + "1994-05-02": "May Day", + "1994-06-06": "June Bank Holiday", + "1994-08-01": "August Bank Holiday", + "1994-10-31": "October Bank Holiday", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day (Observed); St. Stephen's Day", + "1995-01-01": "New Year's Day", + "1995-03-17": "St. Patrick's Day", + "1995-04-17": "Easter Monday", + "1995-05-08": "May Day", + "1995-06-05": "June Bank Holiday", + "1995-08-07": "August Bank Holiday", + "1995-10-30": "October Bank Holiday", + "1995-12-25": "Christmas Day", + "1995-12-26": "St. Stephen's Day", + "1996-01-01": "New Year's Day", + "1996-03-17": "St. Patrick's Day", + "1996-03-18": "St. Patrick's Day (Observed)", + "1996-04-08": "Easter Monday", + "1996-05-06": "May Day", + "1996-06-03": "June Bank Holiday", + "1996-08-05": "August Bank Holiday", + "1996-10-28": "October Bank Holiday", + "1996-12-25": "Christmas Day", + "1996-12-26": "St. Stephen's Day", + "1997-01-01": "New Year's Day", + "1997-03-17": "St. Patrick's Day", + "1997-03-31": "Easter Monday", + "1997-05-05": "May Day", + "1997-06-02": "June Bank Holiday", + "1997-08-04": "August Bank Holiday", + "1997-10-27": "October Bank Holiday", + "1997-12-25": "Christmas Day", + "1997-12-26": "St. Stephen's Day", + "1998-01-01": "New Year's Day", + "1998-03-17": "St. Patrick's Day", + "1998-04-13": "Easter Monday", + "1998-05-04": "May Day", + "1998-06-01": "June Bank Holiday", + "1998-08-03": "August Bank Holiday", + "1998-10-26": "October Bank Holiday", + "1998-12-25": "Christmas Day", + "1998-12-26": "St. Stephen's Day", + "1998-12-28": "St. Stephen's Day (Observed)", + "1999-01-01": "New Year's Day", + "1999-03-17": "St. Patrick's Day", + "1999-04-05": "Easter Monday", + "1999-05-03": "May Day", + "1999-06-07": "June Bank Holiday", + "1999-08-02": "August Bank Holiday", + "1999-10-25": "October Bank Holiday", + "1999-12-25": "Christmas Day", + "1999-12-26": "St. Stephen's Day", + "1999-12-27": "Christmas Day (Observed)", + "1999-12-28": "St. Stephen's Day (Observed)", + "2000-01-01": "New Year's Day", + "2000-03-17": "St. Patrick's Day", + "2000-04-24": "Easter Monday", + "2000-05-01": "May Day", + "2000-06-05": "June Bank Holiday", + "2000-08-07": "August Bank Holiday", + "2000-10-30": "October Bank Holiday", + "2000-12-25": "Christmas Day", + "2000-12-26": "St. Stephen's Day", + "2001-01-01": "New Year's Day", + "2001-03-17": "St. Patrick's Day", + "2001-03-19": "St. Patrick's Day (Observed)", + "2001-04-16": "Easter Monday", + "2001-05-07": "May Day", + "2001-06-04": "June Bank Holiday", + "2001-08-06": "August Bank Holiday", + "2001-10-29": "October Bank Holiday", + "2001-12-25": "Christmas Day", + "2001-12-26": "St. Stephen's Day", + "2002-01-01": "New Year's Day", + "2002-03-17": "St. Patrick's Day", + "2002-03-18": "St. Patrick's Day (Observed)", + "2002-04-01": "Easter Monday", + "2002-05-06": "May Day", + "2002-06-03": "June Bank Holiday", + "2002-08-05": "August Bank Holiday", + "2002-10-28": "October Bank Holiday", + "2002-12-25": "Christmas Day", + "2002-12-26": "St. Stephen's Day", + "2003-01-01": "New Year's Day", + "2003-03-17": "St. Patrick's Day", + "2003-04-21": "Easter Monday", + "2003-05-05": "May Day", + "2003-06-02": "June Bank Holiday", + "2003-08-04": "August Bank Holiday", + "2003-10-27": "October Bank Holiday", + "2003-12-25": "Christmas Day", + "2003-12-26": "St. Stephen's Day", + "2004-01-01": "New Year's Day", + "2004-03-17": "St. Patrick's Day", + "2004-04-12": "Easter Monday", + "2004-05-03": "May Day", + "2004-06-07": "June Bank Holiday", + "2004-08-02": "August Bank Holiday", + "2004-10-25": "October Bank Holiday", + "2004-12-25": "Christmas Day", + "2004-12-26": "St. Stephen's Day", + "2004-12-27": "Christmas Day (Observed)", + "2004-12-28": "St. Stephen's Day (Observed)", + "2005-01-01": "New Year's Day", + "2005-03-17": "St. Patrick's Day", + "2005-03-28": "Easter Monday", + "2005-05-02": "May Day", + "2005-06-06": "June Bank Holiday", + "2005-08-01": "August Bank Holiday", + "2005-10-31": "October Bank Holiday", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day (Observed); St. Stephen's Day", + "2006-01-01": "New Year's Day", + "2006-03-17": "St. Patrick's Day", + "2006-04-17": "Easter Monday", + "2006-05-01": "May Day", + "2006-06-05": "June Bank Holiday", + "2006-08-07": "August Bank Holiday", + "2006-10-30": "October Bank Holiday", + "2006-12-25": "Christmas Day", + "2006-12-26": "St. Stephen's Day", + "2007-01-01": "New Year's Day", + "2007-03-17": "St. Patrick's Day", + "2007-03-19": "St. Patrick's Day (Observed)", + "2007-04-09": "Easter Monday", + "2007-05-07": "May Day", + "2007-06-04": "June Bank Holiday", + "2007-08-06": "August Bank Holiday", + "2007-10-29": "October Bank Holiday", + "2007-12-25": "Christmas Day", + "2007-12-26": "St. Stephen's Day", + "2008-01-01": "New Year's Day", + "2008-03-17": "St. Patrick's Day", + "2008-03-24": "Easter Monday", + "2008-05-05": "May Day", + "2008-06-02": "June Bank Holiday", + "2008-08-04": "August Bank Holiday", + "2008-10-27": "October Bank Holiday", + "2008-12-25": "Christmas Day", + "2008-12-26": "St. Stephen's Day", + "2009-01-01": "New Year's Day", + "2009-03-17": "St. Patrick's Day", + "2009-04-13": "Easter Monday", + "2009-05-04": "May Day", + "2009-06-01": "June Bank Holiday", + "2009-08-03": "August Bank Holiday", + "2009-10-26": "October Bank Holiday", + "2009-12-25": "Christmas Day", + "2009-12-26": "St. Stephen's Day", + "2009-12-28": "St. Stephen's Day (Observed)", + "2010-01-01": "New Year's Day", + "2010-03-17": "St. Patrick's Day", + "2010-04-05": "Easter Monday", + "2010-05-03": "May Day", + "2010-06-07": "June Bank Holiday", + "2010-08-02": "August Bank Holiday", + "2010-10-25": "October Bank Holiday", + "2010-12-25": "Christmas Day", + "2010-12-26": "St. Stephen's Day", + "2010-12-27": "Christmas Day (Observed)", + "2010-12-28": "St. Stephen's Day (Observed)", + "2011-01-01": "New Year's Day", + "2011-03-17": "St. Patrick's Day", + "2011-04-25": "Easter Monday", + "2011-05-02": "May Day", + "2011-06-06": "June Bank Holiday", + "2011-08-01": "August Bank Holiday", + "2011-10-31": "October Bank Holiday", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day (Observed); St. Stephen's Day", + "2012-01-01": "New Year's Day", + "2012-03-17": "St. Patrick's Day", + "2012-03-19": "St. Patrick's Day (Observed)", + "2012-04-09": "Easter Monday", + "2012-05-07": "May Day", + "2012-06-04": "June Bank Holiday", + "2012-08-06": "August Bank Holiday", + "2012-10-29": "October Bank Holiday", + "2012-12-25": "Christmas Day", + "2012-12-26": "St. Stephen's Day", + "2013-01-01": "New Year's Day", + "2013-03-17": "St. Patrick's Day", + "2013-03-18": "St. Patrick's Day (Observed)", + "2013-04-01": "Easter Monday", + "2013-05-06": "May Day", + "2013-06-03": "June Bank Holiday", + "2013-08-05": "August Bank Holiday", + "2013-10-28": "October Bank Holiday", + "2013-12-25": "Christmas Day", + "2013-12-26": "St. Stephen's Day", + "2014-01-01": "New Year's Day", + "2014-03-17": "St. Patrick's Day", + "2014-04-21": "Easter Monday", + "2014-05-05": "May Day", + "2014-06-02": "June Bank Holiday", + "2014-08-04": "August Bank Holiday", + "2014-10-27": "October Bank Holiday", + "2014-12-25": "Christmas Day", + "2014-12-26": "St. Stephen's Day", + "2015-01-01": "New Year's Day", + "2015-03-17": "St. Patrick's Day", + "2015-04-06": "Easter Monday", + "2015-05-04": "May Day", + "2015-06-01": "June Bank Holiday", + "2015-08-03": "August Bank Holiday", + "2015-10-26": "October Bank Holiday", + "2015-12-25": "Christmas Day", + "2015-12-26": "St. Stephen's Day", + "2015-12-28": "St. Stephen's Day (Observed)", + "2016-01-01": "New Year's Day", + "2016-03-17": "St. Patrick's Day", + "2016-03-28": "Easter Monday", + "2016-05-02": "May Day", + "2016-06-06": "June Bank Holiday", + "2016-08-01": "August Bank Holiday", + "2016-10-31": "October Bank Holiday", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day (Observed); St. Stephen's Day", + "2017-01-01": "New Year's Day", + "2017-03-17": "St. Patrick's Day", + "2017-04-17": "Easter Monday", + "2017-05-01": "May Day", + "2017-06-05": "June Bank Holiday", + "2017-08-07": "August Bank Holiday", + "2017-10-30": "October Bank Holiday", + "2017-12-25": "Christmas Day", + "2017-12-26": "St. Stephen's Day", + "2018-01-01": "New Year's Day", + "2018-03-17": "St. Patrick's Day", + "2018-03-19": "St. Patrick's Day (Observed)", + "2018-04-02": "Easter Monday", + "2018-05-07": "May Day", + "2018-06-04": "June Bank Holiday", + "2018-08-06": "August Bank Holiday", + "2018-10-29": "October Bank Holiday", + "2018-12-25": "Christmas Day", + "2018-12-26": "St. Stephen's Day", + "2019-01-01": "New Year's Day", + "2019-03-17": "St. Patrick's Day", + "2019-03-18": "St. Patrick's Day (Observed)", + "2019-04-22": "Easter Monday", + "2019-05-06": "May Day", + "2019-06-03": "June Bank Holiday", + "2019-08-05": "August Bank Holiday", + "2019-10-28": "October Bank Holiday", + "2019-12-25": "Christmas Day", + "2019-12-26": "St. Stephen's Day", + "2020-01-01": "New Year's Day", + "2020-03-17": "St. Patrick's Day", + "2020-04-13": "Easter Monday", + "2020-05-04": "May Day", + "2020-06-01": "June Bank Holiday", + "2020-08-03": "August Bank Holiday", + "2020-10-26": "October Bank Holiday", + "2020-12-25": "Christmas Day", + "2020-12-26": "St. Stephen's Day", + "2020-12-28": "St. Stephen's Day (Observed)", + "2021-01-01": "New Year's Day", + "2021-03-17": "St. Patrick's Day", + "2021-04-05": "Easter Monday", + "2021-05-03": "May Day", + "2021-06-07": "June Bank Holiday", + "2021-08-02": "August Bank Holiday", + "2021-10-25": "October Bank Holiday", + "2021-12-25": "Christmas Day", + "2021-12-26": "St. Stephen's Day", + "2021-12-27": "Christmas Day (Observed)", + "2021-12-28": "St. Stephen's Day (Observed)", + "2022-01-01": "New Year's Day", + "2022-03-17": "St. Patrick's Day", + "2022-03-18": "Day of Remembrance and Recognition", + "2022-04-18": "Easter Monday", + "2022-05-02": "May Day", + "2022-06-06": "June Bank Holiday", + "2022-08-01": "August Bank Holiday", + "2022-10-31": "October Bank Holiday", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day (Observed); St. Stephen's Day", + "2023-01-01": "New Year's Day", + "2023-02-06": "St. Brigid's Day", + "2023-03-17": "St. Patrick's Day", + "2023-04-10": "Easter Monday", + "2023-05-01": "May Day", + "2023-06-05": "June Bank Holiday", + "2023-08-07": "August Bank Holiday", + "2023-10-30": "October Bank Holiday", + "2023-12-25": "Christmas Day", + "2023-12-26": "St. Stephen's Day", + "2024-01-01": "New Year's Day", + "2024-02-05": "St. Brigid's Day", + "2024-03-17": "St. Patrick's Day", + "2024-03-18": "St. Patrick's Day (Observed)", + "2024-04-01": "Easter Monday", + "2024-05-06": "May Day", + "2024-06-03": "June Bank Holiday", + "2024-08-05": "August Bank Holiday", + "2024-10-28": "October Bank Holiday", + "2024-12-25": "Christmas Day", + "2024-12-26": "St. Stephen's Day", + "2025-01-01": "New Year's Day", + "2025-02-03": "St. Brigid's Day", + "2025-03-17": "St. Patrick's Day", + "2025-04-21": "Easter Monday", + "2025-05-05": "May Day", + "2025-06-02": "June Bank Holiday", + "2025-08-04": "August Bank Holiday", + "2025-10-27": "October Bank Holiday", + "2025-12-25": "Christmas Day", + "2025-12-26": "St. Stephen's Day", + "2026-01-01": "New Year's Day", + "2026-02-02": "St. Brigid's Day", + "2026-03-17": "St. Patrick's Day", + "2026-04-06": "Easter Monday", + "2026-05-04": "May Day", + "2026-06-01": "June Bank Holiday", + "2026-08-03": "August Bank Holiday", + "2026-10-26": "October Bank Holiday", + "2026-12-25": "Christmas Day", + "2026-12-26": "St. Stephen's Day", + "2026-12-28": "St. Stephen's Day (Observed)", + "2027-01-01": "New Year's Day", + "2027-02-01": "St. Brigid's Day", + "2027-03-17": "St. Patrick's Day", + "2027-03-29": "Easter Monday", + "2027-05-03": "May Day", + "2027-06-07": "June Bank Holiday", + "2027-08-02": "August Bank Holiday", + "2027-10-25": "October Bank Holiday", + "2027-12-25": "Christmas Day", + "2027-12-26": "St. Stephen's Day", + "2027-12-27": "Christmas Day (Observed)", + "2027-12-28": "St. Stephen's Day (Observed)", + "2028-01-01": "New Year's Day", + "2028-02-07": "St. Brigid's Day", + "2028-03-17": "St. Patrick's Day", + "2028-04-17": "Easter Monday", + "2028-05-01": "May Day", + "2028-06-05": "June Bank Holiday", + "2028-08-07": "August Bank Holiday", + "2028-10-30": "October Bank Holiday", + "2028-12-25": "Christmas Day", + "2028-12-26": "St. Stephen's Day", + "2029-01-01": "New Year's Day", + "2029-02-05": "St. Brigid's Day", + "2029-03-17": "St. Patrick's Day", + "2029-03-19": "St. Patrick's Day (Observed)", + "2029-04-02": "Easter Monday", + "2029-05-07": "May Day", + "2029-06-04": "June Bank Holiday", + "2029-08-06": "August Bank Holiday", + "2029-10-29": "October Bank Holiday", + "2029-12-25": "Christmas Day", + "2029-12-26": "St. Stephen's Day", + "2030-01-01": "New Year's Day", + "2030-02-01": "St. Brigid's Day", + "2030-03-17": "St. Patrick's Day", + "2030-03-18": "St. Patrick's Day (Observed)", + "2030-04-22": "Easter Monday", + "2030-05-06": "May Day", + "2030-06-03": "June Bank Holiday", + "2030-08-05": "August Bank Holiday", + "2030-10-28": "October Bank Holiday", + "2030-12-25": "Christmas Day", + "2030-12-26": "St. Stephen's Day", + "2031-01-01": "New Year's Day", + "2031-02-03": "St. Brigid's Day", + "2031-03-17": "St. Patrick's Day", + "2031-04-14": "Easter Monday", + "2031-05-05": "May Day", + "2031-06-02": "June Bank Holiday", + "2031-08-04": "August Bank Holiday", + "2031-10-27": "October Bank Holiday", + "2031-12-25": "Christmas Day", + "2031-12-26": "St. Stephen's Day", + "2032-01-01": "New Year's Day", + "2032-02-02": "St. Brigid's Day", + "2032-03-17": "St. Patrick's Day", + "2032-03-29": "Easter Monday", + "2032-05-03": "May Day", + "2032-06-07": "June Bank Holiday", + "2032-08-02": "August Bank Holiday", + "2032-10-25": "October Bank Holiday", + "2032-12-25": "Christmas Day", + "2032-12-26": "St. Stephen's Day", + "2032-12-27": "Christmas Day (Observed)", + "2032-12-28": "St. Stephen's Day (Observed)", + "2033-01-01": "New Year's Day", + "2033-02-07": "St. Brigid's Day", + "2033-03-17": "St. Patrick's Day", + "2033-04-18": "Easter Monday", + "2033-05-02": "May Day", + "2033-06-06": "June Bank Holiday", + "2033-08-01": "August Bank Holiday", + "2033-10-31": "October Bank Holiday", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day (Observed); St. Stephen's Day", + "2034-01-01": "New Year's Day", + "2034-02-06": "St. Brigid's Day", + "2034-03-17": "St. Patrick's Day", + "2034-04-10": "Easter Monday", + "2034-05-01": "May Day", + "2034-06-05": "June Bank Holiday", + "2034-08-07": "August Bank Holiday", + "2034-10-30": "October Bank Holiday", + "2034-12-25": "Christmas Day", + "2034-12-26": "St. Stephen's Day", + "2035-01-01": "New Year's Day", + "2035-02-05": "St. Brigid's Day", + "2035-03-17": "St. Patrick's Day", + "2035-03-19": "St. Patrick's Day (Observed)", + "2035-03-26": "Easter Monday", + "2035-05-07": "May Day", + "2035-06-04": "June Bank Holiday", + "2035-08-06": "August Bank Holiday", + "2035-10-29": "October Bank Holiday", + "2035-12-25": "Christmas Day", + "2035-12-26": "St. Stephen's Day", + "2036-01-01": "New Year's Day", + "2036-02-01": "St. Brigid's Day", + "2036-03-17": "St. Patrick's Day", + "2036-04-14": "Easter Monday", + "2036-05-05": "May Day", + "2036-06-02": "June Bank Holiday", + "2036-08-04": "August Bank Holiday", + "2036-10-27": "October Bank Holiday", + "2036-12-25": "Christmas Day", + "2036-12-26": "St. Stephen's Day", + "2037-01-01": "New Year's Day", + "2037-02-02": "St. Brigid's Day", + "2037-03-17": "St. Patrick's Day", + "2037-04-06": "Easter Monday", + "2037-05-04": "May Day", + "2037-06-01": "June Bank Holiday", + "2037-08-03": "August Bank Holiday", + "2037-10-26": "October Bank Holiday", + "2037-12-25": "Christmas Day", + "2037-12-26": "St. Stephen's Day", + "2037-12-28": "St. Stephen's Day (Observed)", + "2038-01-01": "New Year's Day", + "2038-02-01": "St. Brigid's Day", + "2038-03-17": "St. Patrick's Day", + "2038-04-26": "Easter Monday", + "2038-05-03": "May Day", + "2038-06-07": "June Bank Holiday", + "2038-08-02": "August Bank Holiday", + "2038-10-25": "October Bank Holiday", + "2038-12-25": "Christmas Day", + "2038-12-26": "St. Stephen's Day", + "2038-12-27": "Christmas Day (Observed)", + "2038-12-28": "St. Stephen's Day (Observed)", + "2039-01-01": "New Year's Day", + "2039-02-07": "St. Brigid's Day", + "2039-03-17": "St. Patrick's Day", + "2039-04-11": "Easter Monday", + "2039-05-02": "May Day", + "2039-06-06": "June Bank Holiday", + "2039-08-01": "August Bank Holiday", + "2039-10-31": "October Bank Holiday", + "2039-12-25": "Christmas Day", + "2039-12-26": "Christmas Day (Observed); St. Stephen's Day", + "2040-01-01": "New Year's Day", + "2040-02-06": "St. Brigid's Day", + "2040-03-17": "St. Patrick's Day", + "2040-03-19": "St. Patrick's Day (Observed)", + "2040-04-02": "Easter Monday", + "2040-05-07": "May Day", + "2040-06-04": "June Bank Holiday", + "2040-08-06": "August Bank Holiday", + "2040-10-29": "October Bank Holiday", + "2040-12-25": "Christmas Day", + "2040-12-26": "St. Stephen's Day", + "2041-01-01": "New Year's Day", + "2041-02-01": "St. Brigid's Day", + "2041-03-17": "St. Patrick's Day", + "2041-03-18": "St. Patrick's Day (Observed)", + "2041-04-22": "Easter Monday", + "2041-05-06": "May Day", + "2041-06-03": "June Bank Holiday", + "2041-08-05": "August Bank Holiday", + "2041-10-28": "October Bank Holiday", + "2041-12-25": "Christmas Day", + "2041-12-26": "St. Stephen's Day", + "2042-01-01": "New Year's Day", + "2042-02-03": "St. Brigid's Day", + "2042-03-17": "St. Patrick's Day", + "2042-04-07": "Easter Monday", + "2042-05-05": "May Day", + "2042-06-02": "June Bank Holiday", + "2042-08-04": "August Bank Holiday", + "2042-10-27": "October Bank Holiday", + "2042-12-25": "Christmas Day", + "2042-12-26": "St. Stephen's Day", + "2043-01-01": "New Year's Day", + "2043-02-02": "St. Brigid's Day", + "2043-03-17": "St. Patrick's Day", + "2043-03-30": "Easter Monday", + "2043-05-04": "May Day", + "2043-06-01": "June Bank Holiday", + "2043-08-03": "August Bank Holiday", + "2043-10-26": "October Bank Holiday", + "2043-12-25": "Christmas Day", + "2043-12-26": "St. Stephen's Day", + "2043-12-28": "St. Stephen's Day (Observed)", + "2044-01-01": "New Year's Day", + "2044-02-01": "St. Brigid's Day", + "2044-03-17": "St. Patrick's Day", + "2044-04-18": "Easter Monday", + "2044-05-02": "May Day", + "2044-06-06": "June Bank Holiday", + "2044-08-01": "August Bank Holiday", + "2044-10-31": "October Bank Holiday", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day (Observed); St. Stephen's Day", + "2045-01-01": "New Year's Day", + "2045-02-06": "St. Brigid's Day", + "2045-03-17": "St. Patrick's Day", + "2045-04-10": "Easter Monday", + "2045-05-01": "May Day", + "2045-06-05": "June Bank Holiday", + "2045-08-07": "August Bank Holiday", + "2045-10-30": "October Bank Holiday", + "2045-12-25": "Christmas Day", + "2045-12-26": "St. Stephen's Day", + "2046-01-01": "New Year's Day", + "2046-02-05": "St. Brigid's Day", + "2046-03-17": "St. Patrick's Day", + "2046-03-19": "St. Patrick's Day (Observed)", + "2046-03-26": "Easter Monday", + "2046-05-07": "May Day", + "2046-06-04": "June Bank Holiday", + "2046-08-06": "August Bank Holiday", + "2046-10-29": "October Bank Holiday", + "2046-12-25": "Christmas Day", + "2046-12-26": "St. Stephen's Day", + "2047-01-01": "New Year's Day", + "2047-02-01": "St. Brigid's Day", + "2047-03-17": "St. Patrick's Day", + "2047-03-18": "St. Patrick's Day (Observed)", + "2047-04-15": "Easter Monday", + "2047-05-06": "May Day", + "2047-06-03": "June Bank Holiday", + "2047-08-05": "August Bank Holiday", + "2047-10-28": "October Bank Holiday", + "2047-12-25": "Christmas Day", + "2047-12-26": "St. Stephen's Day", + "2048-01-01": "New Year's Day", + "2048-02-03": "St. Brigid's Day", + "2048-03-17": "St. Patrick's Day", + "2048-04-06": "Easter Monday", + "2048-05-04": "May Day", + "2048-06-01": "June Bank Holiday", + "2048-08-03": "August Bank Holiday", + "2048-10-26": "October Bank Holiday", + "2048-12-25": "Christmas Day", + "2048-12-26": "St. Stephen's Day", + "2048-12-28": "St. Stephen's Day (Observed)", + "2049-01-01": "New Year's Day", + "2049-02-01": "St. Brigid's Day", + "2049-03-17": "St. Patrick's Day", + "2049-04-19": "Easter Monday", + "2049-05-03": "May Day", + "2049-06-07": "June Bank Holiday", + "2049-08-02": "August Bank Holiday", + "2049-10-25": "October Bank Holiday", + "2049-12-25": "Christmas Day", + "2049-12-26": "St. Stephen's Day", + "2049-12-27": "Christmas Day (Observed)", + "2049-12-28": "St. Stephen's Day (Observed)", + "2050-01-01": "New Year's Day", + "2050-02-07": "St. Brigid's Day", + "2050-03-17": "St. Patrick's Day", + "2050-04-11": "Easter Monday", + "2050-05-02": "May Day", + "2050-06-06": "June Bank Holiday", + "2050-08-01": "August Bank Holiday", + "2050-10-31": "October Bank Holiday", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day (Observed); St. Stephen's Day" +} diff --git a/snapshots/countries/IL.json b/snapshots/countries/IL.json new file mode 100644 index 000000000..fc8a38428 --- /dev/null +++ b/snapshots/countries/IL.json @@ -0,0 +1,3840 @@ +{ + "1950-03-02": "Purim - Eve", + "1950-03-03": "Purim", + "1950-03-04": "Shushan Purim", + "1950-04-01": "Passover I - Eve", + "1950-04-02": "Passover I", + "1950-04-03": "Passover - Chol HaMoed", + "1950-04-04": "Passover - Chol HaMoed", + "1950-04-05": "Passover - Chol HaMoed", + "1950-04-06": "Passover - Chol HaMoed", + "1950-04-07": "Passover VII - Eve", + "1950-04-08": "Passover VII", + "1950-04-19": "Memorial Day (Observed)", + "1950-04-20": "Independence Day (Observed)", + "1950-05-05": "Lag B'Omer", + "1950-05-21": "Shavuot - Eve", + "1950-05-22": "Shavuot", + "1950-09-11": "Rosh Hashanah - Eve", + "1950-09-12": "Rosh Hashanah", + "1950-09-13": "Rosh Hashanah", + "1950-09-20": "Yom Kippur - Eve", + "1950-09-21": "Yom Kippur", + "1950-09-25": "Sukkot I - Eve", + "1950-09-26": "Sukkot I", + "1950-09-27": "Sukkot - Chol HaMoed", + "1950-09-28": "Sukkot - Chol HaMoed", + "1950-09-29": "Sukkot - Chol HaMoed", + "1950-09-30": "Sukkot - Chol HaMoed", + "1950-10-01": "Sukkot - Chol HaMoed", + "1950-10-02": "Sukkot VII - Eve", + "1950-10-03": "Sukkot VII", + "1950-12-04": "Hanukkah", + "1950-12-05": "Hanukkah", + "1950-12-06": "Hanukkah", + "1950-12-07": "Hanukkah", + "1950-12-08": "Hanukkah", + "1950-12-09": "Hanukkah", + "1950-12-10": "Hanukkah", + "1950-12-11": "Hanukkah", + "1951-03-21": "Purim - Eve", + "1951-03-22": "Purim", + "1951-03-23": "Shushan Purim", + "1951-04-20": "Passover I - Eve", + "1951-04-21": "Passover I", + "1951-04-22": "Passover - Chol HaMoed", + "1951-04-23": "Passover - Chol HaMoed", + "1951-04-24": "Passover - Chol HaMoed", + "1951-04-25": "Passover - Chol HaMoed", + "1951-04-26": "Passover VII - Eve", + "1951-04-27": "Passover VII", + "1951-05-09": "Memorial Day (Observed)", + "1951-05-10": "Independence Day (Observed)", + "1951-05-24": "Lag B'Omer", + "1951-06-09": "Shavuot - Eve", + "1951-06-10": "Shavuot", + "1951-09-30": "Rosh Hashanah - Eve", + "1951-10-01": "Rosh Hashanah", + "1951-10-02": "Rosh Hashanah", + "1951-10-09": "Yom Kippur - Eve", + "1951-10-10": "Yom Kippur", + "1951-10-14": "Sukkot I - Eve", + "1951-10-15": "Sukkot I", + "1951-10-16": "Sukkot - Chol HaMoed", + "1951-10-17": "Sukkot - Chol HaMoed", + "1951-10-18": "Sukkot - Chol HaMoed", + "1951-10-19": "Sukkot - Chol HaMoed", + "1951-10-20": "Sukkot - Chol HaMoed", + "1951-10-21": "Sukkot VII - Eve", + "1951-10-22": "Sukkot VII", + "1951-12-24": "Hanukkah", + "1951-12-25": "Hanukkah", + "1951-12-26": "Hanukkah", + "1951-12-27": "Hanukkah", + "1951-12-28": "Hanukkah", + "1951-12-29": "Hanukkah", + "1951-12-30": "Hanukkah", + "1951-12-31": "Hanukkah", + "1952-03-10": "Purim - Eve", + "1952-03-11": "Purim", + "1952-03-12": "Shushan Purim", + "1952-04-09": "Passover I - Eve", + "1952-04-10": "Passover I", + "1952-04-11": "Passover - Chol HaMoed", + "1952-04-12": "Passover - Chol HaMoed", + "1952-04-13": "Passover - Chol HaMoed", + "1952-04-14": "Passover - Chol HaMoed", + "1952-04-15": "Passover VII - Eve", + "1952-04-16": "Passover VII", + "1952-04-29": "Memorial Day", + "1952-04-30": "Independence Day", + "1952-05-13": "Lag B'Omer", + "1952-05-29": "Shavuot - Eve", + "1952-05-30": "Shavuot", + "1952-09-19": "Rosh Hashanah - Eve", + "1952-09-20": "Rosh Hashanah", + "1952-09-21": "Rosh Hashanah", + "1952-09-28": "Yom Kippur - Eve", + "1952-09-29": "Yom Kippur", + "1952-10-03": "Sukkot I - Eve", + "1952-10-04": "Sukkot I", + "1952-10-05": "Sukkot - Chol HaMoed", + "1952-10-06": "Sukkot - Chol HaMoed", + "1952-10-07": "Sukkot - Chol HaMoed", + "1952-10-08": "Sukkot - Chol HaMoed", + "1952-10-09": "Sukkot - Chol HaMoed", + "1952-10-10": "Sukkot VII - Eve", + "1952-10-11": "Sukkot VII", + "1952-12-13": "Hanukkah", + "1952-12-14": "Hanukkah", + "1952-12-15": "Hanukkah", + "1952-12-16": "Hanukkah", + "1952-12-17": "Hanukkah", + "1952-12-18": "Hanukkah", + "1952-12-19": "Hanukkah", + "1952-12-20": "Hanukkah", + "1953-02-28": "Purim - Eve", + "1953-03-01": "Purim", + "1953-03-02": "Shushan Purim", + "1953-03-30": "Passover I - Eve", + "1953-03-31": "Passover I", + "1953-04-01": "Passover - Chol HaMoed", + "1953-04-02": "Passover - Chol HaMoed", + "1953-04-03": "Passover - Chol HaMoed", + "1953-04-04": "Passover - Chol HaMoed", + "1953-04-05": "Passover VII - Eve", + "1953-04-06": "Passover VII", + "1953-04-19": "Memorial Day", + "1953-04-20": "Independence Day", + "1953-05-03": "Lag B'Omer", + "1953-05-19": "Shavuot - Eve", + "1953-05-20": "Shavuot", + "1953-09-09": "Rosh Hashanah - Eve", + "1953-09-10": "Rosh Hashanah", + "1953-09-11": "Rosh Hashanah", + "1953-09-18": "Yom Kippur - Eve", + "1953-09-19": "Yom Kippur", + "1953-09-23": "Sukkot I - Eve", + "1953-09-24": "Sukkot I", + "1953-09-25": "Sukkot - Chol HaMoed", + "1953-09-26": "Sukkot - Chol HaMoed", + "1953-09-27": "Sukkot - Chol HaMoed", + "1953-09-28": "Sukkot - Chol HaMoed", + "1953-09-29": "Sukkot - Chol HaMoed", + "1953-09-30": "Sukkot VII - Eve", + "1953-10-01": "Sukkot VII", + "1953-12-02": "Hanukkah", + "1953-12-03": "Hanukkah", + "1953-12-04": "Hanukkah", + "1953-12-05": "Hanukkah", + "1953-12-06": "Hanukkah", + "1953-12-07": "Hanukkah", + "1953-12-08": "Hanukkah", + "1953-12-09": "Hanukkah", + "1954-03-18": "Purim - Eve", + "1954-03-19": "Purim", + "1954-03-20": "Shushan Purim", + "1954-04-17": "Passover I - Eve", + "1954-04-18": "Passover I", + "1954-04-19": "Passover - Chol HaMoed", + "1954-04-20": "Passover - Chol HaMoed", + "1954-04-21": "Passover - Chol HaMoed", + "1954-04-22": "Passover - Chol HaMoed", + "1954-04-23": "Passover VII - Eve", + "1954-04-24": "Passover VII", + "1954-05-05": "Memorial Day (Observed)", + "1954-05-06": "Independence Day (Observed)", + "1954-05-21": "Lag B'Omer", + "1954-06-06": "Shavuot - Eve", + "1954-06-07": "Shavuot", + "1954-09-27": "Rosh Hashanah - Eve", + "1954-09-28": "Rosh Hashanah", + "1954-09-29": "Rosh Hashanah", + "1954-10-06": "Yom Kippur - Eve", + "1954-10-07": "Yom Kippur", + "1954-10-11": "Sukkot I - Eve", + "1954-10-12": "Sukkot I", + "1954-10-13": "Sukkot - Chol HaMoed", + "1954-10-14": "Sukkot - Chol HaMoed", + "1954-10-15": "Sukkot - Chol HaMoed", + "1954-10-16": "Sukkot - Chol HaMoed", + "1954-10-17": "Sukkot - Chol HaMoed", + "1954-10-18": "Sukkot VII - Eve", + "1954-10-19": "Sukkot VII", + "1954-12-20": "Hanukkah", + "1954-12-21": "Hanukkah", + "1954-12-22": "Hanukkah", + "1954-12-23": "Hanukkah", + "1954-12-24": "Hanukkah", + "1954-12-25": "Hanukkah", + "1954-12-26": "Hanukkah", + "1954-12-27": "Hanukkah", + "1955-03-07": "Purim - Eve", + "1955-03-08": "Purim", + "1955-03-09": "Shushan Purim", + "1955-04-06": "Passover I - Eve", + "1955-04-07": "Passover I", + "1955-04-08": "Passover - Chol HaMoed", + "1955-04-09": "Passover - Chol HaMoed", + "1955-04-10": "Passover - Chol HaMoed", + "1955-04-11": "Passover - Chol HaMoed", + "1955-04-12": "Passover VII - Eve", + "1955-04-13": "Passover VII", + "1955-04-26": "Memorial Day", + "1955-04-27": "Independence Day", + "1955-05-10": "Lag B'Omer", + "1955-05-26": "Shavuot - Eve", + "1955-05-27": "Shavuot", + "1955-09-16": "Rosh Hashanah - Eve", + "1955-09-17": "Rosh Hashanah", + "1955-09-18": "Rosh Hashanah", + "1955-09-25": "Yom Kippur - Eve", + "1955-09-26": "Yom Kippur", + "1955-09-30": "Sukkot I - Eve", + "1955-10-01": "Sukkot I", + "1955-10-02": "Sukkot - Chol HaMoed", + "1955-10-03": "Sukkot - Chol HaMoed", + "1955-10-04": "Sukkot - Chol HaMoed", + "1955-10-05": "Sukkot - Chol HaMoed", + "1955-10-06": "Sukkot - Chol HaMoed", + "1955-10-07": "Sukkot VII - Eve", + "1955-10-08": "Sukkot VII", + "1955-12-10": "Hanukkah", + "1955-12-11": "Hanukkah", + "1955-12-12": "Hanukkah", + "1955-12-13": "Hanukkah", + "1955-12-14": "Hanukkah", + "1955-12-15": "Hanukkah", + "1955-12-16": "Hanukkah", + "1955-12-17": "Hanukkah", + "1956-02-25": "Purim - Eve", + "1956-02-26": "Purim", + "1956-02-27": "Shushan Purim", + "1956-03-26": "Passover I - Eve", + "1956-03-27": "Passover I", + "1956-03-28": "Passover - Chol HaMoed", + "1956-03-29": "Passover - Chol HaMoed", + "1956-03-30": "Passover - Chol HaMoed", + "1956-03-31": "Passover - Chol HaMoed", + "1956-04-01": "Passover VII - Eve", + "1956-04-02": "Passover VII", + "1956-04-15": "Memorial Day", + "1956-04-16": "Independence Day", + "1956-04-29": "Lag B'Omer", + "1956-05-15": "Shavuot - Eve", + "1956-05-16": "Shavuot", + "1956-09-05": "Rosh Hashanah - Eve", + "1956-09-06": "Rosh Hashanah", + "1956-09-07": "Rosh Hashanah", + "1956-09-14": "Yom Kippur - Eve", + "1956-09-15": "Yom Kippur", + "1956-09-19": "Sukkot I - Eve", + "1956-09-20": "Sukkot I", + "1956-09-21": "Sukkot - Chol HaMoed", + "1956-09-22": "Sukkot - Chol HaMoed", + "1956-09-23": "Sukkot - Chol HaMoed", + "1956-09-24": "Sukkot - Chol HaMoed", + "1956-09-25": "Sukkot - Chol HaMoed", + "1956-09-26": "Sukkot VII - Eve", + "1956-09-27": "Sukkot VII", + "1956-11-29": "Hanukkah", + "1956-11-30": "Hanukkah", + "1956-12-01": "Hanukkah", + "1956-12-02": "Hanukkah", + "1956-12-03": "Hanukkah", + "1956-12-04": "Hanukkah", + "1956-12-05": "Hanukkah", + "1956-12-06": "Hanukkah", + "1957-03-16": "Purim - Eve", + "1957-03-17": "Purim", + "1957-03-18": "Shushan Purim", + "1957-04-15": "Passover I - Eve", + "1957-04-16": "Passover I", + "1957-04-17": "Passover - Chol HaMoed", + "1957-04-18": "Passover - Chol HaMoed", + "1957-04-19": "Passover - Chol HaMoed", + "1957-04-20": "Passover - Chol HaMoed", + "1957-04-21": "Passover VII - Eve", + "1957-04-22": "Passover VII", + "1957-05-05": "Memorial Day", + "1957-05-06": "Independence Day", + "1957-05-19": "Lag B'Omer", + "1957-06-04": "Shavuot - Eve", + "1957-06-05": "Shavuot", + "1957-09-25": "Rosh Hashanah - Eve", + "1957-09-26": "Rosh Hashanah", + "1957-09-27": "Rosh Hashanah", + "1957-10-04": "Yom Kippur - Eve", + "1957-10-05": "Yom Kippur", + "1957-10-09": "Sukkot I - Eve", + "1957-10-10": "Sukkot I", + "1957-10-11": "Sukkot - Chol HaMoed", + "1957-10-12": "Sukkot - Chol HaMoed", + "1957-10-13": "Sukkot - Chol HaMoed", + "1957-10-14": "Sukkot - Chol HaMoed", + "1957-10-15": "Sukkot - Chol HaMoed", + "1957-10-16": "Sukkot VII - Eve", + "1957-10-17": "Sukkot VII", + "1957-12-18": "Hanukkah", + "1957-12-19": "Hanukkah", + "1957-12-20": "Hanukkah", + "1957-12-21": "Hanukkah", + "1957-12-22": "Hanukkah", + "1957-12-23": "Hanukkah", + "1957-12-24": "Hanukkah", + "1957-12-25": "Hanukkah", + "1958-03-05": "Purim - Eve", + "1958-03-06": "Purim", + "1958-03-07": "Shushan Purim", + "1958-04-04": "Passover I - Eve", + "1958-04-05": "Passover I", + "1958-04-06": "Passover - Chol HaMoed", + "1958-04-07": "Passover - Chol HaMoed", + "1958-04-08": "Passover - Chol HaMoed", + "1958-04-09": "Passover - Chol HaMoed", + "1958-04-10": "Passover VII - Eve", + "1958-04-11": "Passover VII", + "1958-04-23": "Memorial Day (Observed)", + "1958-04-24": "Independence Day (Observed)", + "1958-05-08": "Lag B'Omer", + "1958-05-24": "Shavuot - Eve", + "1958-05-25": "Shavuot", + "1958-09-14": "Rosh Hashanah - Eve", + "1958-09-15": "Rosh Hashanah", + "1958-09-16": "Rosh Hashanah", + "1958-09-23": "Yom Kippur - Eve", + "1958-09-24": "Yom Kippur", + "1958-09-28": "Sukkot I - Eve", + "1958-09-29": "Sukkot I", + "1958-09-30": "Sukkot - Chol HaMoed", + "1958-10-01": "Sukkot - Chol HaMoed", + "1958-10-02": "Sukkot - Chol HaMoed", + "1958-10-03": "Sukkot - Chol HaMoed", + "1958-10-04": "Sukkot - Chol HaMoed", + "1958-10-05": "Sukkot VII - Eve", + "1958-10-06": "Sukkot VII", + "1958-12-07": "Hanukkah", + "1958-12-08": "Hanukkah", + "1958-12-09": "Hanukkah", + "1958-12-10": "Hanukkah", + "1958-12-11": "Hanukkah", + "1958-12-12": "Hanukkah", + "1958-12-13": "Hanukkah", + "1958-12-14": "Hanukkah", + "1959-03-23": "Purim - Eve", + "1959-03-24": "Purim", + "1959-03-25": "Shushan Purim", + "1959-04-22": "Passover I - Eve", + "1959-04-23": "Passover I", + "1959-04-24": "Passover - Chol HaMoed", + "1959-04-25": "Passover - Chol HaMoed", + "1959-04-26": "Passover - Chol HaMoed", + "1959-04-27": "Passover - Chol HaMoed", + "1959-04-28": "Passover VII - Eve", + "1959-04-29": "Passover VII", + "1959-05-12": "Memorial Day", + "1959-05-13": "Independence Day", + "1959-05-26": "Lag B'Omer", + "1959-06-11": "Shavuot - Eve", + "1959-06-12": "Shavuot", + "1959-10-02": "Rosh Hashanah - Eve", + "1959-10-03": "Rosh Hashanah", + "1959-10-04": "Rosh Hashanah", + "1959-10-11": "Yom Kippur - Eve", + "1959-10-12": "Yom Kippur", + "1959-10-16": "Sukkot I - Eve", + "1959-10-17": "Sukkot I", + "1959-10-18": "Sukkot - Chol HaMoed", + "1959-10-19": "Sukkot - Chol HaMoed", + "1959-10-20": "Sukkot - Chol HaMoed", + "1959-10-21": "Sukkot - Chol HaMoed", + "1959-10-22": "Sukkot - Chol HaMoed", + "1959-10-23": "Sukkot VII - Eve", + "1959-10-24": "Sukkot VII", + "1959-12-26": "Hanukkah", + "1959-12-27": "Hanukkah", + "1959-12-28": "Hanukkah", + "1959-12-29": "Hanukkah", + "1959-12-30": "Hanukkah", + "1959-12-31": "Hanukkah", + "1960-01-01": "Hanukkah", + "1960-01-02": "Hanukkah", + "1960-03-12": "Purim - Eve", + "1960-03-13": "Purim", + "1960-03-14": "Shushan Purim", + "1960-04-11": "Passover I - Eve", + "1960-04-12": "Passover I", + "1960-04-13": "Passover - Chol HaMoed", + "1960-04-14": "Passover - Chol HaMoed", + "1960-04-15": "Passover - Chol HaMoed", + "1960-04-16": "Passover - Chol HaMoed", + "1960-04-17": "Passover VII - Eve", + "1960-04-18": "Passover VII", + "1960-05-01": "Memorial Day", + "1960-05-02": "Independence Day", + "1960-05-15": "Lag B'Omer", + "1960-05-31": "Shavuot - Eve", + "1960-06-01": "Shavuot", + "1960-09-21": "Rosh Hashanah - Eve", + "1960-09-22": "Rosh Hashanah", + "1960-09-23": "Rosh Hashanah", + "1960-09-30": "Yom Kippur - Eve", + "1960-10-01": "Yom Kippur", + "1960-10-05": "Sukkot I - Eve", + "1960-10-06": "Sukkot I", + "1960-10-07": "Sukkot - Chol HaMoed", + "1960-10-08": "Sukkot - Chol HaMoed", + "1960-10-09": "Sukkot - Chol HaMoed", + "1960-10-10": "Sukkot - Chol HaMoed", + "1960-10-11": "Sukkot - Chol HaMoed", + "1960-10-12": "Sukkot VII - Eve", + "1960-10-13": "Sukkot VII", + "1960-12-14": "Hanukkah", + "1960-12-15": "Hanukkah", + "1960-12-16": "Hanukkah", + "1960-12-17": "Hanukkah", + "1960-12-18": "Hanukkah", + "1960-12-19": "Hanukkah", + "1960-12-20": "Hanukkah", + "1960-12-21": "Hanukkah", + "1961-03-01": "Purim - Eve", + "1961-03-02": "Purim", + "1961-03-03": "Shushan Purim", + "1961-03-31": "Passover I - Eve", + "1961-04-01": "Passover I", + "1961-04-02": "Passover - Chol HaMoed", + "1961-04-03": "Passover - Chol HaMoed", + "1961-04-04": "Passover - Chol HaMoed", + "1961-04-05": "Passover - Chol HaMoed", + "1961-04-06": "Passover VII - Eve", + "1961-04-07": "Passover VII", + "1961-04-19": "Memorial Day (Observed)", + "1961-04-20": "Independence Day (Observed)", + "1961-05-04": "Lag B'Omer", + "1961-05-20": "Shavuot - Eve", + "1961-05-21": "Shavuot", + "1961-09-10": "Rosh Hashanah - Eve", + "1961-09-11": "Rosh Hashanah", + "1961-09-12": "Rosh Hashanah", + "1961-09-19": "Yom Kippur - Eve", + "1961-09-20": "Yom Kippur", + "1961-09-24": "Sukkot I - Eve", + "1961-09-25": "Sukkot I", + "1961-09-26": "Sukkot - Chol HaMoed", + "1961-09-27": "Sukkot - Chol HaMoed", + "1961-09-28": "Sukkot - Chol HaMoed", + "1961-09-29": "Sukkot - Chol HaMoed", + "1961-09-30": "Sukkot - Chol HaMoed", + "1961-10-01": "Sukkot VII - Eve", + "1961-10-02": "Sukkot VII", + "1961-12-03": "Hanukkah", + "1961-12-04": "Hanukkah", + "1961-12-05": "Hanukkah", + "1961-12-06": "Hanukkah", + "1961-12-07": "Hanukkah", + "1961-12-08": "Hanukkah", + "1961-12-09": "Hanukkah", + "1961-12-10": "Hanukkah", + "1962-03-19": "Purim - Eve", + "1962-03-20": "Purim", + "1962-03-21": "Shushan Purim", + "1962-04-18": "Passover I - Eve", + "1962-04-19": "Passover I", + "1962-04-20": "Passover - Chol HaMoed", + "1962-04-21": "Passover - Chol HaMoed", + "1962-04-22": "Passover - Chol HaMoed", + "1962-04-23": "Passover - Chol HaMoed", + "1962-04-24": "Passover VII - Eve", + "1962-04-25": "Passover VII", + "1962-05-08": "Memorial Day", + "1962-05-09": "Independence Day", + "1962-05-22": "Lag B'Omer", + "1962-06-07": "Shavuot - Eve", + "1962-06-08": "Shavuot", + "1962-09-28": "Rosh Hashanah - Eve", + "1962-09-29": "Rosh Hashanah", + "1962-09-30": "Rosh Hashanah", + "1962-10-07": "Yom Kippur - Eve", + "1962-10-08": "Yom Kippur", + "1962-10-12": "Sukkot I - Eve", + "1962-10-13": "Sukkot I", + "1962-10-14": "Sukkot - Chol HaMoed", + "1962-10-15": "Sukkot - Chol HaMoed", + "1962-10-16": "Sukkot - Chol HaMoed", + "1962-10-17": "Sukkot - Chol HaMoed", + "1962-10-18": "Sukkot - Chol HaMoed", + "1962-10-19": "Sukkot VII - Eve", + "1962-10-20": "Sukkot VII", + "1962-12-22": "Hanukkah", + "1962-12-23": "Hanukkah", + "1962-12-24": "Hanukkah", + "1962-12-25": "Hanukkah", + "1962-12-26": "Hanukkah", + "1962-12-27": "Hanukkah", + "1962-12-28": "Hanukkah", + "1962-12-29": "Hanukkah", + "1963-03-09": "Purim - Eve", + "1963-03-10": "Purim", + "1963-03-11": "Shushan Purim", + "1963-04-08": "Passover I - Eve", + "1963-04-09": "Passover I", + "1963-04-10": "Passover - Chol HaMoed", + "1963-04-11": "Passover - Chol HaMoed", + "1963-04-12": "Passover - Chol HaMoed", + "1963-04-13": "Passover - Chol HaMoed", + "1963-04-14": "Passover VII - Eve", + "1963-04-15": "Passover VII", + "1963-04-28": "Memorial Day", + "1963-04-29": "Independence Day", + "1963-05-12": "Lag B'Omer", + "1963-05-28": "Shavuot - Eve", + "1963-05-29": "Shavuot", + "1963-09-18": "Rosh Hashanah - Eve", + "1963-09-19": "Rosh Hashanah", + "1963-09-20": "Rosh Hashanah", + "1963-09-27": "Yom Kippur - Eve", + "1963-09-28": "Yom Kippur", + "1963-10-02": "Sukkot I - Eve", + "1963-10-03": "Sukkot I", + "1963-10-04": "Sukkot - Chol HaMoed", + "1963-10-05": "Sukkot - Chol HaMoed", + "1963-10-06": "Sukkot - Chol HaMoed", + "1963-10-07": "Sukkot - Chol HaMoed", + "1963-10-08": "Sukkot - Chol HaMoed", + "1963-10-09": "Sukkot VII - Eve", + "1963-10-10": "Sukkot VII", + "1963-12-11": "Hanukkah", + "1963-12-12": "Hanukkah", + "1963-12-13": "Hanukkah", + "1963-12-14": "Hanukkah", + "1963-12-15": "Hanukkah", + "1963-12-16": "Hanukkah", + "1963-12-17": "Hanukkah", + "1963-12-18": "Hanukkah", + "1964-02-26": "Purim - Eve", + "1964-02-27": "Purim", + "1964-02-28": "Shushan Purim", + "1964-03-27": "Passover I - Eve", + "1964-03-28": "Passover I", + "1964-03-29": "Passover - Chol HaMoed", + "1964-03-30": "Passover - Chol HaMoed", + "1964-03-31": "Passover - Chol HaMoed", + "1964-04-01": "Passover - Chol HaMoed", + "1964-04-02": "Passover VII - Eve", + "1964-04-03": "Passover VII", + "1964-04-15": "Memorial Day (Observed)", + "1964-04-16": "Independence Day (Observed)", + "1964-04-30": "Lag B'Omer", + "1964-05-16": "Shavuot - Eve", + "1964-05-17": "Shavuot", + "1964-09-06": "Rosh Hashanah - Eve", + "1964-09-07": "Rosh Hashanah", + "1964-09-08": "Rosh Hashanah", + "1964-09-15": "Yom Kippur - Eve", + "1964-09-16": "Yom Kippur", + "1964-09-20": "Sukkot I - Eve", + "1964-09-21": "Sukkot I", + "1964-09-22": "Sukkot - Chol HaMoed", + "1964-09-23": "Sukkot - Chol HaMoed", + "1964-09-24": "Sukkot - Chol HaMoed", + "1964-09-25": "Sukkot - Chol HaMoed", + "1964-09-26": "Sukkot - Chol HaMoed", + "1964-09-27": "Sukkot VII - Eve", + "1964-09-28": "Sukkot VII", + "1964-11-30": "Hanukkah", + "1964-12-01": "Hanukkah", + "1964-12-02": "Hanukkah", + "1964-12-03": "Hanukkah", + "1964-12-04": "Hanukkah", + "1964-12-05": "Hanukkah", + "1964-12-06": "Hanukkah", + "1964-12-07": "Hanukkah", + "1965-03-17": "Purim - Eve", + "1965-03-18": "Purim", + "1965-03-19": "Shushan Purim", + "1965-04-16": "Passover I - Eve", + "1965-04-17": "Passover I", + "1965-04-18": "Passover - Chol HaMoed", + "1965-04-19": "Passover - Chol HaMoed", + "1965-04-20": "Passover - Chol HaMoed", + "1965-04-21": "Passover - Chol HaMoed", + "1965-04-22": "Passover VII - Eve", + "1965-04-23": "Passover VII", + "1965-05-05": "Memorial Day (Observed)", + "1965-05-06": "Independence Day (Observed)", + "1965-05-20": "Lag B'Omer", + "1965-06-05": "Shavuot - Eve", + "1965-06-06": "Shavuot", + "1965-09-26": "Rosh Hashanah - Eve", + "1965-09-27": "Rosh Hashanah", + "1965-09-28": "Rosh Hashanah", + "1965-10-05": "Yom Kippur - Eve", + "1965-10-06": "Yom Kippur", + "1965-10-10": "Sukkot I - Eve", + "1965-10-11": "Sukkot I", + "1965-10-12": "Sukkot - Chol HaMoed", + "1965-10-13": "Sukkot - Chol HaMoed", + "1965-10-14": "Sukkot - Chol HaMoed", + "1965-10-15": "Sukkot - Chol HaMoed", + "1965-10-16": "Sukkot - Chol HaMoed", + "1965-10-17": "Sukkot VII - Eve", + "1965-10-18": "Sukkot VII", + "1965-12-19": "Hanukkah", + "1965-12-20": "Hanukkah", + "1965-12-21": "Hanukkah", + "1965-12-22": "Hanukkah", + "1965-12-23": "Hanukkah", + "1965-12-24": "Hanukkah", + "1965-12-25": "Hanukkah", + "1965-12-26": "Hanukkah", + "1966-03-05": "Purim - Eve", + "1966-03-06": "Purim", + "1966-03-07": "Shushan Purim", + "1966-04-04": "Passover I - Eve", + "1966-04-05": "Passover I", + "1966-04-06": "Passover - Chol HaMoed", + "1966-04-07": "Passover - Chol HaMoed", + "1966-04-08": "Passover - Chol HaMoed", + "1966-04-09": "Passover - Chol HaMoed", + "1966-04-10": "Passover VII - Eve", + "1966-04-11": "Passover VII", + "1966-04-24": "Memorial Day", + "1966-04-25": "Independence Day", + "1966-05-08": "Lag B'Omer", + "1966-05-24": "Shavuot - Eve", + "1966-05-25": "Shavuot", + "1966-09-14": "Rosh Hashanah - Eve", + "1966-09-15": "Rosh Hashanah", + "1966-09-16": "Rosh Hashanah", + "1966-09-23": "Yom Kippur - Eve", + "1966-09-24": "Yom Kippur", + "1966-09-28": "Sukkot I - Eve", + "1966-09-29": "Sukkot I", + "1966-09-30": "Sukkot - Chol HaMoed", + "1966-10-01": "Sukkot - Chol HaMoed", + "1966-10-02": "Sukkot - Chol HaMoed", + "1966-10-03": "Sukkot - Chol HaMoed", + "1966-10-04": "Sukkot - Chol HaMoed", + "1966-10-05": "Sukkot VII - Eve", + "1966-10-06": "Sukkot VII", + "1966-12-08": "Hanukkah", + "1966-12-09": "Hanukkah", + "1966-12-10": "Hanukkah", + "1966-12-11": "Hanukkah", + "1966-12-12": "Hanukkah", + "1966-12-13": "Hanukkah", + "1966-12-14": "Hanukkah", + "1966-12-15": "Hanukkah", + "1967-03-25": "Purim - Eve", + "1967-03-26": "Purim", + "1967-03-27": "Shushan Purim", + "1967-04-24": "Passover I - Eve", + "1967-04-25": "Passover I", + "1967-04-26": "Passover - Chol HaMoed", + "1967-04-27": "Passover - Chol HaMoed", + "1967-04-28": "Passover - Chol HaMoed", + "1967-04-29": "Passover - Chol HaMoed", + "1967-04-30": "Passover VII - Eve", + "1967-05-01": "Passover VII", + "1967-05-14": "Memorial Day", + "1967-05-15": "Independence Day", + "1967-05-28": "Lag B'Omer", + "1967-06-13": "Shavuot - Eve", + "1967-06-14": "Shavuot", + "1967-10-04": "Rosh Hashanah - Eve", + "1967-10-05": "Rosh Hashanah", + "1967-10-06": "Rosh Hashanah", + "1967-10-13": "Yom Kippur - Eve", + "1967-10-14": "Yom Kippur", + "1967-10-18": "Sukkot I - Eve", + "1967-10-19": "Sukkot I", + "1967-10-20": "Sukkot - Chol HaMoed", + "1967-10-21": "Sukkot - Chol HaMoed", + "1967-10-22": "Sukkot - Chol HaMoed", + "1967-10-23": "Sukkot - Chol HaMoed", + "1967-10-24": "Sukkot - Chol HaMoed", + "1967-10-25": "Sukkot VII - Eve", + "1967-10-26": "Sukkot VII", + "1967-12-27": "Hanukkah", + "1967-12-28": "Hanukkah", + "1967-12-29": "Hanukkah", + "1967-12-30": "Hanukkah", + "1967-12-31": "Hanukkah", + "1968-01-01": "Hanukkah", + "1968-01-02": "Hanukkah", + "1968-01-03": "Hanukkah", + "1968-03-13": "Purim - Eve", + "1968-03-14": "Purim", + "1968-03-15": "Shushan Purim", + "1968-04-12": "Passover I - Eve", + "1968-04-13": "Passover I", + "1968-04-14": "Passover - Chol HaMoed", + "1968-04-15": "Passover - Chol HaMoed", + "1968-04-16": "Passover - Chol HaMoed", + "1968-04-17": "Passover - Chol HaMoed", + "1968-04-18": "Passover VII - Eve", + "1968-04-19": "Passover VII", + "1968-05-01": "Memorial Day (Observed)", + "1968-05-02": "Independence Day (Observed)", + "1968-05-16": "Lag B'Omer", + "1968-06-01": "Shavuot - Eve", + "1968-06-02": "Shavuot", + "1968-09-22": "Rosh Hashanah - Eve", + "1968-09-23": "Rosh Hashanah", + "1968-09-24": "Rosh Hashanah", + "1968-10-01": "Yom Kippur - Eve", + "1968-10-02": "Yom Kippur", + "1968-10-06": "Sukkot I - Eve", + "1968-10-07": "Sukkot I", + "1968-10-08": "Sukkot - Chol HaMoed", + "1968-10-09": "Sukkot - Chol HaMoed", + "1968-10-10": "Sukkot - Chol HaMoed", + "1968-10-11": "Sukkot - Chol HaMoed", + "1968-10-12": "Sukkot - Chol HaMoed", + "1968-10-13": "Sukkot VII - Eve", + "1968-10-14": "Sukkot VII", + "1968-12-16": "Hanukkah", + "1968-12-17": "Hanukkah", + "1968-12-18": "Hanukkah", + "1968-12-19": "Hanukkah", + "1968-12-20": "Hanukkah", + "1968-12-21": "Hanukkah", + "1968-12-22": "Hanukkah", + "1968-12-23": "Hanukkah", + "1969-03-03": "Purim - Eve", + "1969-03-04": "Purim", + "1969-03-05": "Shushan Purim", + "1969-04-02": "Passover I - Eve", + "1969-04-03": "Passover I", + "1969-04-04": "Passover - Chol HaMoed", + "1969-04-05": "Passover - Chol HaMoed", + "1969-04-06": "Passover - Chol HaMoed", + "1969-04-07": "Passover - Chol HaMoed", + "1969-04-08": "Passover VII - Eve", + "1969-04-09": "Passover VII", + "1969-04-22": "Memorial Day", + "1969-04-23": "Independence Day", + "1969-05-06": "Lag B'Omer", + "1969-05-22": "Shavuot - Eve", + "1969-05-23": "Shavuot", + "1969-09-12": "Rosh Hashanah - Eve", + "1969-09-13": "Rosh Hashanah", + "1969-09-14": "Rosh Hashanah", + "1969-09-21": "Yom Kippur - Eve", + "1969-09-22": "Yom Kippur", + "1969-09-26": "Sukkot I - Eve", + "1969-09-27": "Sukkot I", + "1969-09-28": "Sukkot - Chol HaMoed", + "1969-09-29": "Sukkot - Chol HaMoed", + "1969-09-30": "Sukkot - Chol HaMoed", + "1969-10-01": "Sukkot - Chol HaMoed", + "1969-10-02": "Sukkot - Chol HaMoed", + "1969-10-03": "Sukkot VII - Eve", + "1969-10-04": "Sukkot VII", + "1969-12-05": "Hanukkah", + "1969-12-06": "Hanukkah", + "1969-12-07": "Hanukkah", + "1969-12-08": "Hanukkah", + "1969-12-09": "Hanukkah", + "1969-12-10": "Hanukkah", + "1969-12-11": "Hanukkah", + "1969-12-12": "Hanukkah", + "1970-03-21": "Purim - Eve", + "1970-03-22": "Purim", + "1970-03-23": "Shushan Purim", + "1970-04-20": "Passover I - Eve", + "1970-04-21": "Passover I", + "1970-04-22": "Passover - Chol HaMoed", + "1970-04-23": "Passover - Chol HaMoed", + "1970-04-24": "Passover - Chol HaMoed", + "1970-04-25": "Passover - Chol HaMoed", + "1970-04-26": "Passover VII - Eve", + "1970-04-27": "Passover VII", + "1970-05-10": "Memorial Day", + "1970-05-11": "Independence Day", + "1970-05-24": "Lag B'Omer", + "1970-06-09": "Shavuot - Eve", + "1970-06-10": "Shavuot", + "1970-09-30": "Rosh Hashanah - Eve", + "1970-10-01": "Rosh Hashanah", + "1970-10-02": "Rosh Hashanah", + "1970-10-09": "Yom Kippur - Eve", + "1970-10-10": "Yom Kippur", + "1970-10-14": "Sukkot I - Eve", + "1970-10-15": "Sukkot I", + "1970-10-16": "Sukkot - Chol HaMoed", + "1970-10-17": "Sukkot - Chol HaMoed", + "1970-10-18": "Sukkot - Chol HaMoed", + "1970-10-19": "Sukkot - Chol HaMoed", + "1970-10-20": "Sukkot - Chol HaMoed", + "1970-10-21": "Sukkot VII - Eve", + "1970-10-22": "Sukkot VII", + "1970-12-23": "Hanukkah", + "1970-12-24": "Hanukkah", + "1970-12-25": "Hanukkah", + "1970-12-26": "Hanukkah", + "1970-12-27": "Hanukkah", + "1970-12-28": "Hanukkah", + "1970-12-29": "Hanukkah", + "1970-12-30": "Hanukkah", + "1971-03-10": "Purim - Eve", + "1971-03-11": "Purim", + "1971-03-12": "Shushan Purim", + "1971-04-09": "Passover I - Eve", + "1971-04-10": "Passover I", + "1971-04-11": "Passover - Chol HaMoed", + "1971-04-12": "Passover - Chol HaMoed", + "1971-04-13": "Passover - Chol HaMoed", + "1971-04-14": "Passover - Chol HaMoed", + "1971-04-15": "Passover VII - Eve", + "1971-04-16": "Passover VII", + "1971-04-28": "Memorial Day (Observed)", + "1971-04-29": "Independence Day (Observed)", + "1971-05-13": "Lag B'Omer", + "1971-05-29": "Shavuot - Eve", + "1971-05-30": "Shavuot", + "1971-09-19": "Rosh Hashanah - Eve", + "1971-09-20": "Rosh Hashanah", + "1971-09-21": "Rosh Hashanah", + "1971-09-28": "Yom Kippur - Eve", + "1971-09-29": "Yom Kippur", + "1971-10-03": "Sukkot I - Eve", + "1971-10-04": "Sukkot I", + "1971-10-05": "Sukkot - Chol HaMoed", + "1971-10-06": "Sukkot - Chol HaMoed", + "1971-10-07": "Sukkot - Chol HaMoed", + "1971-10-08": "Sukkot - Chol HaMoed", + "1971-10-09": "Sukkot - Chol HaMoed", + "1971-10-10": "Sukkot VII - Eve", + "1971-10-11": "Sukkot VII", + "1971-12-13": "Hanukkah", + "1971-12-14": "Hanukkah", + "1971-12-15": "Hanukkah", + "1971-12-16": "Hanukkah", + "1971-12-17": "Hanukkah", + "1971-12-18": "Hanukkah", + "1971-12-19": "Hanukkah", + "1971-12-20": "Hanukkah", + "1972-02-28": "Purim - Eve", + "1972-02-29": "Purim", + "1972-03-01": "Shushan Purim", + "1972-03-29": "Passover I - Eve", + "1972-03-30": "Passover I", + "1972-03-31": "Passover - Chol HaMoed", + "1972-04-01": "Passover - Chol HaMoed", + "1972-04-02": "Passover - Chol HaMoed", + "1972-04-03": "Passover - Chol HaMoed", + "1972-04-04": "Passover VII - Eve", + "1972-04-05": "Passover VII", + "1972-04-18": "Memorial Day", + "1972-04-19": "Independence Day", + "1972-05-02": "Lag B'Omer", + "1972-05-18": "Shavuot - Eve", + "1972-05-19": "Shavuot", + "1972-09-08": "Rosh Hashanah - Eve", + "1972-09-09": "Rosh Hashanah", + "1972-09-10": "Rosh Hashanah", + "1972-09-17": "Yom Kippur - Eve", + "1972-09-18": "Yom Kippur", + "1972-09-22": "Sukkot I - Eve", + "1972-09-23": "Sukkot I", + "1972-09-24": "Sukkot - Chol HaMoed", + "1972-09-25": "Sukkot - Chol HaMoed", + "1972-09-26": "Sukkot - Chol HaMoed", + "1972-09-27": "Sukkot - Chol HaMoed", + "1972-09-28": "Sukkot - Chol HaMoed", + "1972-09-29": "Sukkot VII - Eve", + "1972-09-30": "Sukkot VII", + "1972-12-01": "Hanukkah", + "1972-12-02": "Hanukkah", + "1972-12-03": "Hanukkah", + "1972-12-04": "Hanukkah", + "1972-12-05": "Hanukkah", + "1972-12-06": "Hanukkah", + "1972-12-07": "Hanukkah", + "1972-12-08": "Hanukkah", + "1973-03-17": "Purim - Eve", + "1973-03-18": "Purim", + "1973-03-19": "Shushan Purim", + "1973-04-16": "Passover I - Eve", + "1973-04-17": "Passover I", + "1973-04-18": "Passover - Chol HaMoed", + "1973-04-19": "Passover - Chol HaMoed", + "1973-04-20": "Passover - Chol HaMoed", + "1973-04-21": "Passover - Chol HaMoed", + "1973-04-22": "Passover VII - Eve", + "1973-04-23": "Passover VII", + "1973-05-06": "Memorial Day", + "1973-05-07": "Independence Day", + "1973-05-20": "Lag B'Omer", + "1973-06-05": "Shavuot - Eve", + "1973-06-06": "Shavuot", + "1973-09-26": "Rosh Hashanah - Eve", + "1973-09-27": "Rosh Hashanah", + "1973-09-28": "Rosh Hashanah", + "1973-10-05": "Yom Kippur - Eve", + "1973-10-06": "Yom Kippur", + "1973-10-10": "Sukkot I - Eve", + "1973-10-11": "Sukkot I", + "1973-10-12": "Sukkot - Chol HaMoed", + "1973-10-13": "Sukkot - Chol HaMoed", + "1973-10-14": "Sukkot - Chol HaMoed", + "1973-10-15": "Sukkot - Chol HaMoed", + "1973-10-16": "Sukkot - Chol HaMoed", + "1973-10-17": "Sukkot VII - Eve", + "1973-10-18": "Sukkot VII", + "1973-12-20": "Hanukkah", + "1973-12-21": "Hanukkah", + "1973-12-22": "Hanukkah", + "1973-12-23": "Hanukkah", + "1973-12-24": "Hanukkah", + "1973-12-25": "Hanukkah", + "1973-12-26": "Hanukkah", + "1973-12-27": "Hanukkah", + "1974-03-07": "Purim - Eve", + "1974-03-08": "Purim", + "1974-03-09": "Shushan Purim", + "1974-04-06": "Passover I - Eve", + "1974-04-07": "Passover I", + "1974-04-08": "Passover - Chol HaMoed", + "1974-04-09": "Passover - Chol HaMoed", + "1974-04-10": "Passover - Chol HaMoed", + "1974-04-11": "Passover - Chol HaMoed", + "1974-04-12": "Passover VII - Eve", + "1974-04-13": "Passover VII", + "1974-04-24": "Memorial Day (Observed)", + "1974-04-25": "Independence Day (Observed)", + "1974-05-10": "Lag B'Omer", + "1974-05-26": "Shavuot - Eve", + "1974-05-27": "Shavuot", + "1974-09-16": "Rosh Hashanah - Eve", + "1974-09-17": "Rosh Hashanah", + "1974-09-18": "Rosh Hashanah", + "1974-09-25": "Yom Kippur - Eve", + "1974-09-26": "Yom Kippur", + "1974-09-30": "Sukkot I - Eve", + "1974-10-01": "Sukkot I", + "1974-10-02": "Sukkot - Chol HaMoed", + "1974-10-03": "Sukkot - Chol HaMoed", + "1974-10-04": "Sukkot - Chol HaMoed", + "1974-10-05": "Sukkot - Chol HaMoed", + "1974-10-06": "Sukkot - Chol HaMoed", + "1974-10-07": "Sukkot VII - Eve", + "1974-10-08": "Sukkot VII", + "1974-12-09": "Hanukkah", + "1974-12-10": "Hanukkah", + "1974-12-11": "Hanukkah", + "1974-12-12": "Hanukkah", + "1974-12-13": "Hanukkah", + "1974-12-14": "Hanukkah", + "1974-12-15": "Hanukkah", + "1974-12-16": "Hanukkah", + "1975-02-24": "Purim - Eve", + "1975-02-25": "Purim", + "1975-02-26": "Shushan Purim", + "1975-03-26": "Passover I - Eve", + "1975-03-27": "Passover I", + "1975-03-28": "Passover - Chol HaMoed", + "1975-03-29": "Passover - Chol HaMoed", + "1975-03-30": "Passover - Chol HaMoed", + "1975-03-31": "Passover - Chol HaMoed", + "1975-04-01": "Passover VII - Eve", + "1975-04-02": "Passover VII", + "1975-04-15": "Memorial Day", + "1975-04-16": "Independence Day", + "1975-04-29": "Lag B'Omer", + "1975-05-15": "Shavuot - Eve", + "1975-05-16": "Shavuot", + "1975-09-05": "Rosh Hashanah - Eve", + "1975-09-06": "Rosh Hashanah", + "1975-09-07": "Rosh Hashanah", + "1975-09-14": "Yom Kippur - Eve", + "1975-09-15": "Yom Kippur", + "1975-09-19": "Sukkot I - Eve", + "1975-09-20": "Sukkot I", + "1975-09-21": "Sukkot - Chol HaMoed", + "1975-09-22": "Sukkot - Chol HaMoed", + "1975-09-23": "Sukkot - Chol HaMoed", + "1975-09-24": "Sukkot - Chol HaMoed", + "1975-09-25": "Sukkot - Chol HaMoed", + "1975-09-26": "Sukkot VII - Eve", + "1975-09-27": "Sukkot VII", + "1975-11-29": "Hanukkah", + "1975-11-30": "Hanukkah", + "1975-12-01": "Hanukkah", + "1975-12-02": "Hanukkah", + "1975-12-03": "Hanukkah", + "1975-12-04": "Hanukkah", + "1975-12-05": "Hanukkah", + "1975-12-06": "Hanukkah", + "1976-03-15": "Purim - Eve", + "1976-03-16": "Purim", + "1976-03-17": "Shushan Purim", + "1976-04-14": "Passover I - Eve", + "1976-04-15": "Passover I", + "1976-04-16": "Passover - Chol HaMoed", + "1976-04-17": "Passover - Chol HaMoed", + "1976-04-18": "Passover - Chol HaMoed", + "1976-04-19": "Passover - Chol HaMoed", + "1976-04-20": "Passover VII - Eve", + "1976-04-21": "Passover VII", + "1976-05-04": "Memorial Day", + "1976-05-05": "Independence Day", + "1976-05-18": "Lag B'Omer", + "1976-06-03": "Shavuot - Eve", + "1976-06-04": "Shavuot", + "1976-09-24": "Rosh Hashanah - Eve", + "1976-09-25": "Rosh Hashanah", + "1976-09-26": "Rosh Hashanah", + "1976-10-03": "Yom Kippur - Eve", + "1976-10-04": "Yom Kippur", + "1976-10-08": "Sukkot I - Eve", + "1976-10-09": "Sukkot I", + "1976-10-10": "Sukkot - Chol HaMoed", + "1976-10-11": "Sukkot - Chol HaMoed", + "1976-10-12": "Sukkot - Chol HaMoed", + "1976-10-13": "Sukkot - Chol HaMoed", + "1976-10-14": "Sukkot - Chol HaMoed", + "1976-10-15": "Sukkot VII - Eve", + "1976-10-16": "Sukkot VII", + "1976-12-17": "Hanukkah", + "1976-12-18": "Hanukkah", + "1976-12-19": "Hanukkah", + "1976-12-20": "Hanukkah", + "1976-12-21": "Hanukkah", + "1976-12-22": "Hanukkah", + "1976-12-23": "Hanukkah", + "1976-12-24": "Hanukkah", + "1977-03-03": "Purim - Eve", + "1977-03-04": "Purim", + "1977-03-05": "Shushan Purim", + "1977-04-02": "Passover I - Eve", + "1977-04-03": "Passover I", + "1977-04-04": "Passover - Chol HaMoed", + "1977-04-05": "Passover - Chol HaMoed", + "1977-04-06": "Passover - Chol HaMoed", + "1977-04-07": "Passover - Chol HaMoed", + "1977-04-08": "Passover VII - Eve", + "1977-04-09": "Passover VII", + "1977-04-20": "Memorial Day (Observed)", + "1977-04-21": "Independence Day (Observed)", + "1977-05-06": "Lag B'Omer", + "1977-05-22": "Shavuot - Eve", + "1977-05-23": "Shavuot", + "1977-09-12": "Rosh Hashanah - Eve", + "1977-09-13": "Rosh Hashanah", + "1977-09-14": "Rosh Hashanah", + "1977-09-21": "Yom Kippur - Eve", + "1977-09-22": "Yom Kippur", + "1977-09-26": "Sukkot I - Eve", + "1977-09-27": "Sukkot I", + "1977-09-28": "Sukkot - Chol HaMoed", + "1977-09-29": "Sukkot - Chol HaMoed", + "1977-09-30": "Sukkot - Chol HaMoed", + "1977-10-01": "Sukkot - Chol HaMoed", + "1977-10-02": "Sukkot - Chol HaMoed", + "1977-10-03": "Sukkot VII - Eve", + "1977-10-04": "Sukkot VII", + "1977-12-05": "Hanukkah", + "1977-12-06": "Hanukkah", + "1977-12-07": "Hanukkah", + "1977-12-08": "Hanukkah", + "1977-12-09": "Hanukkah", + "1977-12-10": "Hanukkah", + "1977-12-11": "Hanukkah", + "1977-12-12": "Hanukkah", + "1978-03-22": "Purim - Eve", + "1978-03-23": "Purim", + "1978-03-24": "Shushan Purim", + "1978-04-21": "Passover I - Eve", + "1978-04-22": "Passover I", + "1978-04-23": "Passover - Chol HaMoed", + "1978-04-24": "Passover - Chol HaMoed", + "1978-04-25": "Passover - Chol HaMoed", + "1978-04-26": "Passover - Chol HaMoed", + "1978-04-27": "Passover VII - Eve", + "1978-04-28": "Passover VII", + "1978-05-10": "Memorial Day (Observed)", + "1978-05-11": "Independence Day (Observed)", + "1978-05-25": "Lag B'Omer", + "1978-06-10": "Shavuot - Eve", + "1978-06-11": "Shavuot", + "1978-10-01": "Rosh Hashanah - Eve", + "1978-10-02": "Rosh Hashanah", + "1978-10-03": "Rosh Hashanah", + "1978-10-10": "Yom Kippur - Eve", + "1978-10-11": "Yom Kippur", + "1978-10-15": "Sukkot I - Eve", + "1978-10-16": "Sukkot I", + "1978-10-17": "Sukkot - Chol HaMoed", + "1978-10-18": "Sukkot - Chol HaMoed", + "1978-10-19": "Sukkot - Chol HaMoed", + "1978-10-20": "Sukkot - Chol HaMoed", + "1978-10-21": "Sukkot - Chol HaMoed", + "1978-10-22": "Sukkot VII - Eve", + "1978-10-23": "Sukkot VII", + "1978-12-25": "Hanukkah", + "1978-12-26": "Hanukkah", + "1978-12-27": "Hanukkah", + "1978-12-28": "Hanukkah", + "1978-12-29": "Hanukkah", + "1978-12-30": "Hanukkah", + "1978-12-31": "Hanukkah", + "1979-01-01": "Hanukkah", + "1979-03-12": "Purim - Eve", + "1979-03-13": "Purim", + "1979-03-14": "Shushan Purim", + "1979-04-11": "Passover I - Eve", + "1979-04-12": "Passover I", + "1979-04-13": "Passover - Chol HaMoed", + "1979-04-14": "Passover - Chol HaMoed", + "1979-04-15": "Passover - Chol HaMoed", + "1979-04-16": "Passover - Chol HaMoed", + "1979-04-17": "Passover VII - Eve", + "1979-04-18": "Passover VII", + "1979-05-01": "Memorial Day", + "1979-05-02": "Independence Day", + "1979-05-15": "Lag B'Omer", + "1979-05-31": "Shavuot - Eve", + "1979-06-01": "Shavuot", + "1979-09-21": "Rosh Hashanah - Eve", + "1979-09-22": "Rosh Hashanah", + "1979-09-23": "Rosh Hashanah", + "1979-09-30": "Yom Kippur - Eve", + "1979-10-01": "Yom Kippur", + "1979-10-05": "Sukkot I - Eve", + "1979-10-06": "Sukkot I", + "1979-10-07": "Sukkot - Chol HaMoed", + "1979-10-08": "Sukkot - Chol HaMoed", + "1979-10-09": "Sukkot - Chol HaMoed", + "1979-10-10": "Sukkot - Chol HaMoed", + "1979-10-11": "Sukkot - Chol HaMoed", + "1979-10-12": "Sukkot VII - Eve", + "1979-10-13": "Sukkot VII", + "1979-12-15": "Hanukkah", + "1979-12-16": "Hanukkah", + "1979-12-17": "Hanukkah", + "1979-12-18": "Hanukkah", + "1979-12-19": "Hanukkah", + "1979-12-20": "Hanukkah", + "1979-12-21": "Hanukkah", + "1979-12-22": "Hanukkah", + "1980-03-01": "Purim - Eve", + "1980-03-02": "Purim", + "1980-03-03": "Shushan Purim", + "1980-03-31": "Passover I - Eve", + "1980-04-01": "Passover I", + "1980-04-02": "Passover - Chol HaMoed", + "1980-04-03": "Passover - Chol HaMoed", + "1980-04-04": "Passover - Chol HaMoed", + "1980-04-05": "Passover - Chol HaMoed", + "1980-04-06": "Passover VII - Eve", + "1980-04-07": "Passover VII", + "1980-04-20": "Memorial Day", + "1980-04-21": "Independence Day", + "1980-05-04": "Lag B'Omer", + "1980-05-20": "Shavuot - Eve", + "1980-05-21": "Shavuot", + "1980-09-10": "Rosh Hashanah - Eve", + "1980-09-11": "Rosh Hashanah", + "1980-09-12": "Rosh Hashanah", + "1980-09-19": "Yom Kippur - Eve", + "1980-09-20": "Yom Kippur", + "1980-09-24": "Sukkot I - Eve", + "1980-09-25": "Sukkot I", + "1980-09-26": "Sukkot - Chol HaMoed", + "1980-09-27": "Sukkot - Chol HaMoed", + "1980-09-28": "Sukkot - Chol HaMoed", + "1980-09-29": "Sukkot - Chol HaMoed", + "1980-09-30": "Sukkot - Chol HaMoed", + "1980-10-01": "Sukkot VII - Eve", + "1980-10-02": "Sukkot VII", + "1980-12-03": "Hanukkah", + "1980-12-04": "Hanukkah", + "1980-12-05": "Hanukkah", + "1980-12-06": "Hanukkah", + "1980-12-07": "Hanukkah", + "1980-12-08": "Hanukkah", + "1980-12-09": "Hanukkah", + "1980-12-10": "Hanukkah", + "1981-03-19": "Purim - Eve", + "1981-03-20": "Purim", + "1981-03-21": "Shushan Purim", + "1981-04-18": "Passover I - Eve", + "1981-04-19": "Passover I", + "1981-04-20": "Passover - Chol HaMoed", + "1981-04-21": "Passover - Chol HaMoed", + "1981-04-22": "Passover - Chol HaMoed", + "1981-04-23": "Passover - Chol HaMoed", + "1981-04-24": "Passover VII - Eve", + "1981-04-25": "Passover VII", + "1981-05-06": "Memorial Day (Observed)", + "1981-05-07": "Independence Day (Observed)", + "1981-05-22": "Lag B'Omer", + "1981-06-07": "Shavuot - Eve", + "1981-06-08": "Shavuot", + "1981-09-28": "Rosh Hashanah - Eve", + "1981-09-29": "Rosh Hashanah", + "1981-09-30": "Rosh Hashanah", + "1981-10-07": "Yom Kippur - Eve", + "1981-10-08": "Yom Kippur", + "1981-10-12": "Sukkot I - Eve", + "1981-10-13": "Sukkot I", + "1981-10-14": "Sukkot - Chol HaMoed", + "1981-10-15": "Sukkot - Chol HaMoed", + "1981-10-16": "Sukkot - Chol HaMoed", + "1981-10-17": "Sukkot - Chol HaMoed", + "1981-10-18": "Sukkot - Chol HaMoed", + "1981-10-19": "Sukkot VII - Eve", + "1981-10-20": "Sukkot VII", + "1981-12-21": "Hanukkah", + "1981-12-22": "Hanukkah", + "1981-12-23": "Hanukkah", + "1981-12-24": "Hanukkah", + "1981-12-25": "Hanukkah", + "1981-12-26": "Hanukkah", + "1981-12-27": "Hanukkah", + "1981-12-28": "Hanukkah", + "1982-03-08": "Purim - Eve", + "1982-03-09": "Purim", + "1982-03-10": "Shushan Purim", + "1982-04-07": "Passover I - Eve", + "1982-04-08": "Passover I", + "1982-04-09": "Passover - Chol HaMoed", + "1982-04-10": "Passover - Chol HaMoed", + "1982-04-11": "Passover - Chol HaMoed", + "1982-04-12": "Passover - Chol HaMoed", + "1982-04-13": "Passover VII - Eve", + "1982-04-14": "Passover VII", + "1982-04-27": "Memorial Day", + "1982-04-28": "Independence Day", + "1982-05-11": "Lag B'Omer", + "1982-05-27": "Shavuot - Eve", + "1982-05-28": "Shavuot", + "1982-09-17": "Rosh Hashanah - Eve", + "1982-09-18": "Rosh Hashanah", + "1982-09-19": "Rosh Hashanah", + "1982-09-26": "Yom Kippur - Eve", + "1982-09-27": "Yom Kippur", + "1982-10-01": "Sukkot I - Eve", + "1982-10-02": "Sukkot I", + "1982-10-03": "Sukkot - Chol HaMoed", + "1982-10-04": "Sukkot - Chol HaMoed", + "1982-10-05": "Sukkot - Chol HaMoed", + "1982-10-06": "Sukkot - Chol HaMoed", + "1982-10-07": "Sukkot - Chol HaMoed", + "1982-10-08": "Sukkot VII - Eve", + "1982-10-09": "Sukkot VII", + "1982-12-11": "Hanukkah", + "1982-12-12": "Hanukkah", + "1982-12-13": "Hanukkah", + "1982-12-14": "Hanukkah", + "1982-12-15": "Hanukkah", + "1982-12-16": "Hanukkah", + "1982-12-17": "Hanukkah", + "1982-12-18": "Hanukkah", + "1983-02-26": "Purim - Eve", + "1983-02-27": "Purim", + "1983-02-28": "Shushan Purim", + "1983-03-28": "Passover I - Eve", + "1983-03-29": "Passover I", + "1983-03-30": "Passover - Chol HaMoed", + "1983-03-31": "Passover - Chol HaMoed", + "1983-04-01": "Passover - Chol HaMoed", + "1983-04-02": "Passover - Chol HaMoed", + "1983-04-03": "Passover VII - Eve", + "1983-04-04": "Passover VII", + "1983-04-17": "Memorial Day", + "1983-04-18": "Independence Day", + "1983-05-01": "Lag B'Omer", + "1983-05-17": "Shavuot - Eve", + "1983-05-18": "Shavuot", + "1983-09-07": "Rosh Hashanah - Eve", + "1983-09-08": "Rosh Hashanah", + "1983-09-09": "Rosh Hashanah", + "1983-09-16": "Yom Kippur - Eve", + "1983-09-17": "Yom Kippur", + "1983-09-21": "Sukkot I - Eve", + "1983-09-22": "Sukkot I", + "1983-09-23": "Sukkot - Chol HaMoed", + "1983-09-24": "Sukkot - Chol HaMoed", + "1983-09-25": "Sukkot - Chol HaMoed", + "1983-09-26": "Sukkot - Chol HaMoed", + "1983-09-27": "Sukkot - Chol HaMoed", + "1983-09-28": "Sukkot VII - Eve", + "1983-09-29": "Sukkot VII", + "1983-12-01": "Hanukkah", + "1983-12-02": "Hanukkah", + "1983-12-03": "Hanukkah", + "1983-12-04": "Hanukkah", + "1983-12-05": "Hanukkah", + "1983-12-06": "Hanukkah", + "1983-12-07": "Hanukkah", + "1983-12-08": "Hanukkah", + "1984-03-17": "Purim - Eve", + "1984-03-18": "Purim", + "1984-03-19": "Shushan Purim", + "1984-04-16": "Passover I - Eve", + "1984-04-17": "Passover I", + "1984-04-18": "Passover - Chol HaMoed", + "1984-04-19": "Passover - Chol HaMoed", + "1984-04-20": "Passover - Chol HaMoed", + "1984-04-21": "Passover - Chol HaMoed", + "1984-04-22": "Passover VII - Eve", + "1984-04-23": "Passover VII", + "1984-05-06": "Memorial Day", + "1984-05-07": "Independence Day", + "1984-05-20": "Lag B'Omer", + "1984-06-05": "Shavuot - Eve", + "1984-06-06": "Shavuot", + "1984-09-26": "Rosh Hashanah - Eve", + "1984-09-27": "Rosh Hashanah", + "1984-09-28": "Rosh Hashanah", + "1984-10-05": "Yom Kippur - Eve", + "1984-10-06": "Yom Kippur", + "1984-10-10": "Sukkot I - Eve", + "1984-10-11": "Sukkot I", + "1984-10-12": "Sukkot - Chol HaMoed", + "1984-10-13": "Sukkot - Chol HaMoed", + "1984-10-14": "Sukkot - Chol HaMoed", + "1984-10-15": "Sukkot - Chol HaMoed", + "1984-10-16": "Sukkot - Chol HaMoed", + "1984-10-17": "Sukkot VII - Eve", + "1984-10-18": "Sukkot VII", + "1984-12-19": "Hanukkah", + "1984-12-20": "Hanukkah", + "1984-12-21": "Hanukkah", + "1984-12-22": "Hanukkah", + "1984-12-23": "Hanukkah", + "1984-12-24": "Hanukkah", + "1984-12-25": "Hanukkah", + "1984-12-26": "Hanukkah", + "1985-03-06": "Purim - Eve", + "1985-03-07": "Purim", + "1985-03-08": "Shushan Purim", + "1985-04-05": "Passover I - Eve", + "1985-04-06": "Passover I", + "1985-04-07": "Passover - Chol HaMoed", + "1985-04-08": "Passover - Chol HaMoed", + "1985-04-09": "Passover - Chol HaMoed", + "1985-04-10": "Passover - Chol HaMoed", + "1985-04-11": "Passover VII - Eve", + "1985-04-12": "Passover VII", + "1985-04-24": "Memorial Day (Observed)", + "1985-04-25": "Independence Day (Observed)", + "1985-05-09": "Lag B'Omer", + "1985-05-25": "Shavuot - Eve", + "1985-05-26": "Shavuot", + "1985-09-15": "Rosh Hashanah - Eve", + "1985-09-16": "Rosh Hashanah", + "1985-09-17": "Rosh Hashanah", + "1985-09-24": "Yom Kippur - Eve", + "1985-09-25": "Yom Kippur", + "1985-09-29": "Sukkot I - Eve", + "1985-09-30": "Sukkot I", + "1985-10-01": "Sukkot - Chol HaMoed", + "1985-10-02": "Sukkot - Chol HaMoed", + "1985-10-03": "Sukkot - Chol HaMoed", + "1985-10-04": "Sukkot - Chol HaMoed", + "1985-10-05": "Sukkot - Chol HaMoed", + "1985-10-06": "Sukkot VII - Eve", + "1985-10-07": "Sukkot VII", + "1985-12-08": "Hanukkah", + "1985-12-09": "Hanukkah", + "1985-12-10": "Hanukkah", + "1985-12-11": "Hanukkah", + "1985-12-12": "Hanukkah", + "1985-12-13": "Hanukkah", + "1985-12-14": "Hanukkah", + "1985-12-15": "Hanukkah", + "1986-03-24": "Purim - Eve", + "1986-03-25": "Purim", + "1986-03-26": "Shushan Purim", + "1986-04-23": "Passover I - Eve", + "1986-04-24": "Passover I", + "1986-04-25": "Passover - Chol HaMoed", + "1986-04-26": "Passover - Chol HaMoed", + "1986-04-27": "Passover - Chol HaMoed", + "1986-04-28": "Passover - Chol HaMoed", + "1986-04-29": "Passover VII - Eve", + "1986-04-30": "Passover VII", + "1986-05-13": "Memorial Day", + "1986-05-14": "Independence Day", + "1986-05-27": "Lag B'Omer", + "1986-06-12": "Shavuot - Eve", + "1986-06-13": "Shavuot", + "1986-10-03": "Rosh Hashanah - Eve", + "1986-10-04": "Rosh Hashanah", + "1986-10-05": "Rosh Hashanah", + "1986-10-12": "Yom Kippur - Eve", + "1986-10-13": "Yom Kippur", + "1986-10-17": "Sukkot I - Eve", + "1986-10-18": "Sukkot I", + "1986-10-19": "Sukkot - Chol HaMoed", + "1986-10-20": "Sukkot - Chol HaMoed", + "1986-10-21": "Sukkot - Chol HaMoed", + "1986-10-22": "Sukkot - Chol HaMoed", + "1986-10-23": "Sukkot - Chol HaMoed", + "1986-10-24": "Sukkot VII - Eve", + "1986-10-25": "Sukkot VII", + "1986-12-27": "Hanukkah", + "1986-12-28": "Hanukkah", + "1986-12-29": "Hanukkah", + "1986-12-30": "Hanukkah", + "1986-12-31": "Hanukkah", + "1987-01-01": "Hanukkah", + "1987-01-02": "Hanukkah", + "1987-01-03": "Hanukkah", + "1987-03-14": "Purim - Eve", + "1987-03-15": "Purim", + "1987-03-16": "Shushan Purim", + "1987-04-13": "Passover I - Eve", + "1987-04-14": "Passover I", + "1987-04-15": "Passover - Chol HaMoed", + "1987-04-16": "Passover - Chol HaMoed", + "1987-04-17": "Passover - Chol HaMoed", + "1987-04-18": "Passover - Chol HaMoed", + "1987-04-19": "Passover VII - Eve", + "1987-04-20": "Passover VII", + "1987-05-03": "Memorial Day", + "1987-05-04": "Independence Day", + "1987-05-17": "Lag B'Omer", + "1987-06-02": "Shavuot - Eve", + "1987-06-03": "Shavuot", + "1987-09-23": "Rosh Hashanah - Eve", + "1987-09-24": "Rosh Hashanah", + "1987-09-25": "Rosh Hashanah", + "1987-10-02": "Yom Kippur - Eve", + "1987-10-03": "Yom Kippur", + "1987-10-07": "Sukkot I - Eve", + "1987-10-08": "Sukkot I", + "1987-10-09": "Sukkot - Chol HaMoed", + "1987-10-10": "Sukkot - Chol HaMoed", + "1987-10-11": "Sukkot - Chol HaMoed", + "1987-10-12": "Sukkot - Chol HaMoed", + "1987-10-13": "Sukkot - Chol HaMoed", + "1987-10-14": "Sukkot VII - Eve", + "1987-10-15": "Sukkot VII", + "1987-12-16": "Hanukkah", + "1987-12-17": "Hanukkah", + "1987-12-18": "Hanukkah", + "1987-12-19": "Hanukkah", + "1987-12-20": "Hanukkah", + "1987-12-21": "Hanukkah", + "1987-12-22": "Hanukkah", + "1987-12-23": "Hanukkah", + "1988-03-02": "Purim - Eve", + "1988-03-03": "Purim", + "1988-03-04": "Shushan Purim", + "1988-04-01": "Passover I - Eve", + "1988-04-02": "Passover I", + "1988-04-03": "Passover - Chol HaMoed", + "1988-04-04": "Passover - Chol HaMoed", + "1988-04-05": "Passover - Chol HaMoed", + "1988-04-06": "Passover - Chol HaMoed", + "1988-04-07": "Passover VII - Eve", + "1988-04-08": "Passover VII", + "1988-04-20": "Memorial Day (Observed)", + "1988-04-21": "Independence Day (Observed)", + "1988-05-05": "Lag B'Omer", + "1988-05-21": "Shavuot - Eve", + "1988-05-22": "Shavuot", + "1988-09-11": "Rosh Hashanah - Eve", + "1988-09-12": "Rosh Hashanah", + "1988-09-13": "Rosh Hashanah", + "1988-09-20": "Yom Kippur - Eve", + "1988-09-21": "Yom Kippur", + "1988-09-25": "Sukkot I - Eve", + "1988-09-26": "Sukkot I", + "1988-09-27": "Sukkot - Chol HaMoed", + "1988-09-28": "Sukkot - Chol HaMoed", + "1988-09-29": "Sukkot - Chol HaMoed", + "1988-09-30": "Sukkot - Chol HaMoed", + "1988-10-01": "Sukkot - Chol HaMoed", + "1988-10-02": "Sukkot VII - Eve", + "1988-10-03": "Sukkot VII", + "1988-12-04": "Hanukkah", + "1988-12-05": "Hanukkah", + "1988-12-06": "Hanukkah", + "1988-12-07": "Hanukkah", + "1988-12-08": "Hanukkah", + "1988-12-09": "Hanukkah", + "1988-12-10": "Hanukkah", + "1988-12-11": "Hanukkah", + "1989-03-20": "Purim - Eve", + "1989-03-21": "Purim", + "1989-03-22": "Shushan Purim", + "1989-04-19": "Passover I - Eve", + "1989-04-20": "Passover I", + "1989-04-21": "Passover - Chol HaMoed", + "1989-04-22": "Passover - Chol HaMoed", + "1989-04-23": "Passover - Chol HaMoed", + "1989-04-24": "Passover - Chol HaMoed", + "1989-04-25": "Passover VII - Eve", + "1989-04-26": "Passover VII", + "1989-05-09": "Memorial Day", + "1989-05-10": "Independence Day", + "1989-05-23": "Lag B'Omer", + "1989-06-08": "Shavuot - Eve", + "1989-06-09": "Shavuot", + "1989-09-29": "Rosh Hashanah - Eve", + "1989-09-30": "Rosh Hashanah", + "1989-10-01": "Rosh Hashanah", + "1989-10-08": "Yom Kippur - Eve", + "1989-10-09": "Yom Kippur", + "1989-10-13": "Sukkot I - Eve", + "1989-10-14": "Sukkot I", + "1989-10-15": "Sukkot - Chol HaMoed", + "1989-10-16": "Sukkot - Chol HaMoed", + "1989-10-17": "Sukkot - Chol HaMoed", + "1989-10-18": "Sukkot - Chol HaMoed", + "1989-10-19": "Sukkot - Chol HaMoed", + "1989-10-20": "Sukkot VII - Eve", + "1989-10-21": "Sukkot VII", + "1989-12-23": "Hanukkah", + "1989-12-24": "Hanukkah", + "1989-12-25": "Hanukkah", + "1989-12-26": "Hanukkah", + "1989-12-27": "Hanukkah", + "1989-12-28": "Hanukkah", + "1989-12-29": "Hanukkah", + "1989-12-30": "Hanukkah", + "1990-03-10": "Purim - Eve", + "1990-03-11": "Purim", + "1990-03-12": "Shushan Purim", + "1990-04-09": "Passover I - Eve", + "1990-04-10": "Passover I", + "1990-04-11": "Passover - Chol HaMoed", + "1990-04-12": "Passover - Chol HaMoed", + "1990-04-13": "Passover - Chol HaMoed", + "1990-04-14": "Passover - Chol HaMoed", + "1990-04-15": "Passover VII - Eve", + "1990-04-16": "Passover VII", + "1990-04-29": "Memorial Day", + "1990-04-30": "Independence Day", + "1990-05-13": "Lag B'Omer", + "1990-05-29": "Shavuot - Eve", + "1990-05-30": "Shavuot", + "1990-09-19": "Rosh Hashanah - Eve", + "1990-09-20": "Rosh Hashanah", + "1990-09-21": "Rosh Hashanah", + "1990-09-28": "Yom Kippur - Eve", + "1990-09-29": "Yom Kippur", + "1990-10-03": "Sukkot I - Eve", + "1990-10-04": "Sukkot I", + "1990-10-05": "Sukkot - Chol HaMoed", + "1990-10-06": "Sukkot - Chol HaMoed", + "1990-10-07": "Sukkot - Chol HaMoed", + "1990-10-08": "Sukkot - Chol HaMoed", + "1990-10-09": "Sukkot - Chol HaMoed", + "1990-10-10": "Sukkot VII - Eve", + "1990-10-11": "Sukkot VII", + "1990-12-12": "Hanukkah", + "1990-12-13": "Hanukkah", + "1990-12-14": "Hanukkah", + "1990-12-15": "Hanukkah", + "1990-12-16": "Hanukkah", + "1990-12-17": "Hanukkah", + "1990-12-18": "Hanukkah", + "1990-12-19": "Hanukkah", + "1991-02-27": "Purim - Eve", + "1991-02-28": "Purim", + "1991-03-01": "Shushan Purim", + "1991-03-29": "Passover I - Eve", + "1991-03-30": "Passover I", + "1991-03-31": "Passover - Chol HaMoed", + "1991-04-01": "Passover - Chol HaMoed", + "1991-04-02": "Passover - Chol HaMoed", + "1991-04-03": "Passover - Chol HaMoed", + "1991-04-04": "Passover VII - Eve", + "1991-04-05": "Passover VII", + "1991-04-17": "Memorial Day (Observed)", + "1991-04-18": "Independence Day (Observed)", + "1991-05-02": "Lag B'Omer", + "1991-05-18": "Shavuot - Eve", + "1991-05-19": "Shavuot", + "1991-09-08": "Rosh Hashanah - Eve", + "1991-09-09": "Rosh Hashanah", + "1991-09-10": "Rosh Hashanah", + "1991-09-17": "Yom Kippur - Eve", + "1991-09-18": "Yom Kippur", + "1991-09-22": "Sukkot I - Eve", + "1991-09-23": "Sukkot I", + "1991-09-24": "Sukkot - Chol HaMoed", + "1991-09-25": "Sukkot - Chol HaMoed", + "1991-09-26": "Sukkot - Chol HaMoed", + "1991-09-27": "Sukkot - Chol HaMoed", + "1991-09-28": "Sukkot - Chol HaMoed", + "1991-09-29": "Sukkot VII - Eve", + "1991-09-30": "Sukkot VII", + "1991-12-02": "Hanukkah", + "1991-12-03": "Hanukkah", + "1991-12-04": "Hanukkah", + "1991-12-05": "Hanukkah", + "1991-12-06": "Hanukkah", + "1991-12-07": "Hanukkah", + "1991-12-08": "Hanukkah", + "1991-12-09": "Hanukkah", + "1992-03-18": "Purim - Eve", + "1992-03-19": "Purim", + "1992-03-20": "Shushan Purim", + "1992-04-17": "Passover I - Eve", + "1992-04-18": "Passover I", + "1992-04-19": "Passover - Chol HaMoed", + "1992-04-20": "Passover - Chol HaMoed", + "1992-04-21": "Passover - Chol HaMoed", + "1992-04-22": "Passover - Chol HaMoed", + "1992-04-23": "Passover VII - Eve", + "1992-04-24": "Passover VII", + "1992-05-06": "Memorial Day (Observed)", + "1992-05-07": "Independence Day (Observed)", + "1992-05-21": "Lag B'Omer", + "1992-06-06": "Shavuot - Eve", + "1992-06-07": "Shavuot", + "1992-09-27": "Rosh Hashanah - Eve", + "1992-09-28": "Rosh Hashanah", + "1992-09-29": "Rosh Hashanah", + "1992-10-06": "Yom Kippur - Eve", + "1992-10-07": "Yom Kippur", + "1992-10-11": "Sukkot I - Eve", + "1992-10-12": "Sukkot I", + "1992-10-13": "Sukkot - Chol HaMoed", + "1992-10-14": "Sukkot - Chol HaMoed", + "1992-10-15": "Sukkot - Chol HaMoed", + "1992-10-16": "Sukkot - Chol HaMoed", + "1992-10-17": "Sukkot - Chol HaMoed", + "1992-10-18": "Sukkot VII - Eve", + "1992-10-19": "Sukkot VII", + "1992-12-20": "Hanukkah", + "1992-12-21": "Hanukkah", + "1992-12-22": "Hanukkah", + "1992-12-23": "Hanukkah", + "1992-12-24": "Hanukkah", + "1992-12-25": "Hanukkah", + "1992-12-26": "Hanukkah", + "1992-12-27": "Hanukkah", + "1993-03-06": "Purim - Eve", + "1993-03-07": "Purim", + "1993-03-08": "Shushan Purim", + "1993-04-05": "Passover I - Eve", + "1993-04-06": "Passover I", + "1993-04-07": "Passover - Chol HaMoed", + "1993-04-08": "Passover - Chol HaMoed", + "1993-04-09": "Passover - Chol HaMoed", + "1993-04-10": "Passover - Chol HaMoed", + "1993-04-11": "Passover VII - Eve", + "1993-04-12": "Passover VII", + "1993-04-25": "Memorial Day", + "1993-04-26": "Independence Day", + "1993-05-09": "Lag B'Omer", + "1993-05-25": "Shavuot - Eve", + "1993-05-26": "Shavuot", + "1993-09-15": "Rosh Hashanah - Eve", + "1993-09-16": "Rosh Hashanah", + "1993-09-17": "Rosh Hashanah", + "1993-09-24": "Yom Kippur - Eve", + "1993-09-25": "Yom Kippur", + "1993-09-29": "Sukkot I - Eve", + "1993-09-30": "Sukkot I", + "1993-10-01": "Sukkot - Chol HaMoed", + "1993-10-02": "Sukkot - Chol HaMoed", + "1993-10-03": "Sukkot - Chol HaMoed", + "1993-10-04": "Sukkot - Chol HaMoed", + "1993-10-05": "Sukkot - Chol HaMoed", + "1993-10-06": "Sukkot VII - Eve", + "1993-10-07": "Sukkot VII", + "1993-12-09": "Hanukkah", + "1993-12-10": "Hanukkah", + "1993-12-11": "Hanukkah", + "1993-12-12": "Hanukkah", + "1993-12-13": "Hanukkah", + "1993-12-14": "Hanukkah", + "1993-12-15": "Hanukkah", + "1993-12-16": "Hanukkah", + "1994-02-24": "Purim - Eve", + "1994-02-25": "Purim", + "1994-02-26": "Shushan Purim", + "1994-03-26": "Passover I - Eve", + "1994-03-27": "Passover I", + "1994-03-28": "Passover - Chol HaMoed", + "1994-03-29": "Passover - Chol HaMoed", + "1994-03-30": "Passover - Chol HaMoed", + "1994-03-31": "Passover - Chol HaMoed", + "1994-04-01": "Passover VII - Eve", + "1994-04-02": "Passover VII", + "1994-04-13": "Memorial Day (Observed)", + "1994-04-14": "Independence Day (Observed)", + "1994-04-29": "Lag B'Omer", + "1994-05-15": "Shavuot - Eve", + "1994-05-16": "Shavuot", + "1994-09-05": "Rosh Hashanah - Eve", + "1994-09-06": "Rosh Hashanah", + "1994-09-07": "Rosh Hashanah", + "1994-09-14": "Yom Kippur - Eve", + "1994-09-15": "Yom Kippur", + "1994-09-19": "Sukkot I - Eve", + "1994-09-20": "Sukkot I", + "1994-09-21": "Sukkot - Chol HaMoed", + "1994-09-22": "Sukkot - Chol HaMoed", + "1994-09-23": "Sukkot - Chol HaMoed", + "1994-09-24": "Sukkot - Chol HaMoed", + "1994-09-25": "Sukkot - Chol HaMoed", + "1994-09-26": "Sukkot VII - Eve", + "1994-09-27": "Sukkot VII", + "1994-11-28": "Hanukkah", + "1994-11-29": "Hanukkah", + "1994-11-30": "Hanukkah", + "1994-12-01": "Hanukkah", + "1994-12-02": "Hanukkah", + "1994-12-03": "Hanukkah", + "1994-12-04": "Hanukkah", + "1994-12-05": "Hanukkah", + "1995-03-15": "Purim - Eve", + "1995-03-16": "Purim", + "1995-03-17": "Shushan Purim", + "1995-04-14": "Passover I - Eve", + "1995-04-15": "Passover I", + "1995-04-16": "Passover - Chol HaMoed", + "1995-04-17": "Passover - Chol HaMoed", + "1995-04-18": "Passover - Chol HaMoed", + "1995-04-19": "Passover - Chol HaMoed", + "1995-04-20": "Passover VII - Eve", + "1995-04-21": "Passover VII", + "1995-05-03": "Memorial Day (Observed)", + "1995-05-04": "Independence Day (Observed)", + "1995-05-18": "Lag B'Omer", + "1995-06-03": "Shavuot - Eve", + "1995-06-04": "Shavuot", + "1995-09-24": "Rosh Hashanah - Eve", + "1995-09-25": "Rosh Hashanah", + "1995-09-26": "Rosh Hashanah", + "1995-10-03": "Yom Kippur - Eve", + "1995-10-04": "Yom Kippur", + "1995-10-08": "Sukkot I - Eve", + "1995-10-09": "Sukkot I", + "1995-10-10": "Sukkot - Chol HaMoed", + "1995-10-11": "Sukkot - Chol HaMoed", + "1995-10-12": "Sukkot - Chol HaMoed", + "1995-10-13": "Sukkot - Chol HaMoed", + "1995-10-14": "Sukkot - Chol HaMoed", + "1995-10-15": "Sukkot VII - Eve", + "1995-10-16": "Sukkot VII", + "1995-12-18": "Hanukkah", + "1995-12-19": "Hanukkah", + "1995-12-20": "Hanukkah", + "1995-12-21": "Hanukkah", + "1995-12-22": "Hanukkah", + "1995-12-23": "Hanukkah", + "1995-12-24": "Hanukkah", + "1995-12-25": "Hanukkah", + "1996-03-04": "Purim - Eve", + "1996-03-05": "Purim", + "1996-03-06": "Shushan Purim", + "1996-04-03": "Passover I - Eve", + "1996-04-04": "Passover I", + "1996-04-05": "Passover - Chol HaMoed", + "1996-04-06": "Passover - Chol HaMoed", + "1996-04-07": "Passover - Chol HaMoed", + "1996-04-08": "Passover - Chol HaMoed", + "1996-04-09": "Passover VII - Eve", + "1996-04-10": "Passover VII", + "1996-04-23": "Memorial Day", + "1996-04-24": "Independence Day", + "1996-05-07": "Lag B'Omer", + "1996-05-23": "Shavuot - Eve", + "1996-05-24": "Shavuot", + "1996-09-13": "Rosh Hashanah - Eve", + "1996-09-14": "Rosh Hashanah", + "1996-09-15": "Rosh Hashanah", + "1996-09-22": "Yom Kippur - Eve", + "1996-09-23": "Yom Kippur", + "1996-09-27": "Sukkot I - Eve", + "1996-09-28": "Sukkot I", + "1996-09-29": "Sukkot - Chol HaMoed", + "1996-09-30": "Sukkot - Chol HaMoed", + "1996-10-01": "Sukkot - Chol HaMoed", + "1996-10-02": "Sukkot - Chol HaMoed", + "1996-10-03": "Sukkot - Chol HaMoed", + "1996-10-04": "Sukkot VII - Eve", + "1996-10-05": "Sukkot VII", + "1996-12-06": "Hanukkah", + "1996-12-07": "Hanukkah", + "1996-12-08": "Hanukkah", + "1996-12-09": "Hanukkah", + "1996-12-10": "Hanukkah", + "1996-12-11": "Hanukkah", + "1996-12-12": "Hanukkah", + "1996-12-13": "Hanukkah", + "1997-03-22": "Purim - Eve", + "1997-03-23": "Purim", + "1997-03-24": "Shushan Purim", + "1997-04-21": "Passover I - Eve", + "1997-04-22": "Passover I", + "1997-04-23": "Passover - Chol HaMoed", + "1997-04-24": "Passover - Chol HaMoed", + "1997-04-25": "Passover - Chol HaMoed", + "1997-04-26": "Passover - Chol HaMoed", + "1997-04-27": "Passover VII - Eve", + "1997-04-28": "Passover VII", + "1997-05-11": "Memorial Day", + "1997-05-12": "Independence Day", + "1997-05-25": "Lag B'Omer", + "1997-06-10": "Shavuot - Eve", + "1997-06-11": "Shavuot", + "1997-10-01": "Rosh Hashanah - Eve", + "1997-10-02": "Rosh Hashanah", + "1997-10-03": "Rosh Hashanah", + "1997-10-10": "Yom Kippur - Eve", + "1997-10-11": "Yom Kippur", + "1997-10-15": "Sukkot I - Eve", + "1997-10-16": "Sukkot I", + "1997-10-17": "Sukkot - Chol HaMoed", + "1997-10-18": "Sukkot - Chol HaMoed", + "1997-10-19": "Sukkot - Chol HaMoed", + "1997-10-20": "Sukkot - Chol HaMoed", + "1997-10-21": "Sukkot - Chol HaMoed", + "1997-10-22": "Sukkot VII - Eve", + "1997-10-23": "Sukkot VII", + "1997-12-24": "Hanukkah", + "1997-12-25": "Hanukkah", + "1997-12-26": "Hanukkah", + "1997-12-27": "Hanukkah", + "1997-12-28": "Hanukkah", + "1997-12-29": "Hanukkah", + "1997-12-30": "Hanukkah", + "1997-12-31": "Hanukkah", + "1998-03-11": "Purim - Eve", + "1998-03-12": "Purim", + "1998-03-13": "Shushan Purim", + "1998-04-10": "Passover I - Eve", + "1998-04-11": "Passover I", + "1998-04-12": "Passover - Chol HaMoed", + "1998-04-13": "Passover - Chol HaMoed", + "1998-04-14": "Passover - Chol HaMoed", + "1998-04-15": "Passover - Chol HaMoed", + "1998-04-16": "Passover VII - Eve", + "1998-04-17": "Passover VII", + "1998-04-29": "Memorial Day (Observed)", + "1998-04-30": "Independence Day (Observed)", + "1998-05-14": "Lag B'Omer", + "1998-05-30": "Shavuot - Eve", + "1998-05-31": "Shavuot", + "1998-09-20": "Rosh Hashanah - Eve", + "1998-09-21": "Rosh Hashanah", + "1998-09-22": "Rosh Hashanah", + "1998-09-29": "Yom Kippur - Eve", + "1998-09-30": "Yom Kippur", + "1998-10-04": "Sukkot I - Eve", + "1998-10-05": "Sukkot I", + "1998-10-06": "Sukkot - Chol HaMoed", + "1998-10-07": "Sukkot - Chol HaMoed", + "1998-10-08": "Sukkot - Chol HaMoed", + "1998-10-09": "Sukkot - Chol HaMoed", + "1998-10-10": "Sukkot - Chol HaMoed", + "1998-10-11": "Sukkot VII - Eve", + "1998-10-12": "Sukkot VII", + "1998-12-14": "Hanukkah", + "1998-12-15": "Hanukkah", + "1998-12-16": "Hanukkah", + "1998-12-17": "Hanukkah", + "1998-12-18": "Hanukkah", + "1998-12-19": "Hanukkah", + "1998-12-20": "Hanukkah", + "1998-12-21": "Hanukkah", + "1999-03-01": "Purim - Eve", + "1999-03-02": "Purim", + "1999-03-03": "Shushan Purim", + "1999-03-31": "Passover I - Eve", + "1999-04-01": "Passover I", + "1999-04-02": "Passover - Chol HaMoed", + "1999-04-03": "Passover - Chol HaMoed", + "1999-04-04": "Passover - Chol HaMoed", + "1999-04-05": "Passover - Chol HaMoed", + "1999-04-06": "Passover VII - Eve", + "1999-04-07": "Passover VII", + "1999-04-20": "Memorial Day", + "1999-04-21": "Independence Day", + "1999-05-04": "Lag B'Omer", + "1999-05-20": "Shavuot - Eve", + "1999-05-21": "Shavuot", + "1999-09-10": "Rosh Hashanah - Eve", + "1999-09-11": "Rosh Hashanah", + "1999-09-12": "Rosh Hashanah", + "1999-09-19": "Yom Kippur - Eve", + "1999-09-20": "Yom Kippur", + "1999-09-24": "Sukkot I - Eve", + "1999-09-25": "Sukkot I", + "1999-09-26": "Sukkot - Chol HaMoed", + "1999-09-27": "Sukkot - Chol HaMoed", + "1999-09-28": "Sukkot - Chol HaMoed", + "1999-09-29": "Sukkot - Chol HaMoed", + "1999-09-30": "Sukkot - Chol HaMoed", + "1999-10-01": "Sukkot VII - Eve", + "1999-10-02": "Sukkot VII", + "1999-12-04": "Hanukkah", + "1999-12-05": "Hanukkah", + "1999-12-06": "Hanukkah", + "1999-12-07": "Hanukkah", + "1999-12-08": "Hanukkah", + "1999-12-09": "Hanukkah", + "1999-12-10": "Hanukkah", + "1999-12-11": "Hanukkah", + "2000-03-20": "Purim - Eve", + "2000-03-21": "Purim", + "2000-03-22": "Shushan Purim", + "2000-04-19": "Passover I - Eve", + "2000-04-20": "Passover I", + "2000-04-21": "Passover - Chol HaMoed", + "2000-04-22": "Passover - Chol HaMoed", + "2000-04-23": "Passover - Chol HaMoed", + "2000-04-24": "Passover - Chol HaMoed", + "2000-04-25": "Passover VII - Eve", + "2000-04-26": "Passover VII", + "2000-05-09": "Memorial Day", + "2000-05-10": "Independence Day", + "2000-05-23": "Lag B'Omer", + "2000-06-08": "Shavuot - Eve", + "2000-06-09": "Shavuot", + "2000-09-29": "Rosh Hashanah - Eve", + "2000-09-30": "Rosh Hashanah", + "2000-10-01": "Rosh Hashanah", + "2000-10-08": "Yom Kippur - Eve", + "2000-10-09": "Yom Kippur", + "2000-10-13": "Sukkot I - Eve", + "2000-10-14": "Sukkot I", + "2000-10-15": "Sukkot - Chol HaMoed", + "2000-10-16": "Sukkot - Chol HaMoed", + "2000-10-17": "Sukkot - Chol HaMoed", + "2000-10-18": "Sukkot - Chol HaMoed", + "2000-10-19": "Sukkot - Chol HaMoed", + "2000-10-20": "Sukkot VII - Eve", + "2000-10-21": "Sukkot VII", + "2000-12-22": "Hanukkah", + "2000-12-23": "Hanukkah", + "2000-12-24": "Hanukkah", + "2000-12-25": "Hanukkah", + "2000-12-26": "Hanukkah", + "2000-12-27": "Hanukkah", + "2000-12-28": "Hanukkah", + "2000-12-29": "Hanukkah", + "2001-03-08": "Purim - Eve", + "2001-03-09": "Purim", + "2001-03-10": "Shushan Purim", + "2001-04-07": "Passover I - Eve", + "2001-04-08": "Passover I", + "2001-04-09": "Passover - Chol HaMoed", + "2001-04-10": "Passover - Chol HaMoed", + "2001-04-11": "Passover - Chol HaMoed", + "2001-04-12": "Passover - Chol HaMoed", + "2001-04-13": "Passover VII - Eve", + "2001-04-14": "Passover VII", + "2001-04-25": "Memorial Day (Observed)", + "2001-04-26": "Independence Day (Observed)", + "2001-05-11": "Lag B'Omer", + "2001-05-27": "Shavuot - Eve", + "2001-05-28": "Shavuot", + "2001-09-17": "Rosh Hashanah - Eve", + "2001-09-18": "Rosh Hashanah", + "2001-09-19": "Rosh Hashanah", + "2001-09-26": "Yom Kippur - Eve", + "2001-09-27": "Yom Kippur", + "2001-10-01": "Sukkot I - Eve", + "2001-10-02": "Sukkot I", + "2001-10-03": "Sukkot - Chol HaMoed", + "2001-10-04": "Sukkot - Chol HaMoed", + "2001-10-05": "Sukkot - Chol HaMoed", + "2001-10-06": "Sukkot - Chol HaMoed", + "2001-10-07": "Sukkot - Chol HaMoed", + "2001-10-08": "Sukkot VII - Eve", + "2001-10-09": "Sukkot VII", + "2001-12-10": "Hanukkah", + "2001-12-11": "Hanukkah", + "2001-12-12": "Hanukkah", + "2001-12-13": "Hanukkah", + "2001-12-14": "Hanukkah", + "2001-12-15": "Hanukkah", + "2001-12-16": "Hanukkah", + "2001-12-17": "Hanukkah", + "2002-02-25": "Purim - Eve", + "2002-02-26": "Purim", + "2002-02-27": "Shushan Purim", + "2002-03-27": "Passover I - Eve", + "2002-03-28": "Passover I", + "2002-03-29": "Passover - Chol HaMoed", + "2002-03-30": "Passover - Chol HaMoed", + "2002-03-31": "Passover - Chol HaMoed", + "2002-04-01": "Passover - Chol HaMoed", + "2002-04-02": "Passover VII - Eve", + "2002-04-03": "Passover VII", + "2002-04-16": "Memorial Day", + "2002-04-17": "Independence Day", + "2002-04-30": "Lag B'Omer", + "2002-05-16": "Shavuot - Eve", + "2002-05-17": "Shavuot", + "2002-09-06": "Rosh Hashanah - Eve", + "2002-09-07": "Rosh Hashanah", + "2002-09-08": "Rosh Hashanah", + "2002-09-15": "Yom Kippur - Eve", + "2002-09-16": "Yom Kippur", + "2002-09-20": "Sukkot I - Eve", + "2002-09-21": "Sukkot I", + "2002-09-22": "Sukkot - Chol HaMoed", + "2002-09-23": "Sukkot - Chol HaMoed", + "2002-09-24": "Sukkot - Chol HaMoed", + "2002-09-25": "Sukkot - Chol HaMoed", + "2002-09-26": "Sukkot - Chol HaMoed", + "2002-09-27": "Sukkot VII - Eve", + "2002-09-28": "Sukkot VII", + "2002-11-30": "Hanukkah", + "2002-12-01": "Hanukkah", + "2002-12-02": "Hanukkah", + "2002-12-03": "Hanukkah", + "2002-12-04": "Hanukkah", + "2002-12-05": "Hanukkah", + "2002-12-06": "Hanukkah", + "2002-12-07": "Hanukkah", + "2003-03-17": "Purim - Eve", + "2003-03-18": "Purim", + "2003-03-19": "Shushan Purim", + "2003-04-16": "Passover I - Eve", + "2003-04-17": "Passover I", + "2003-04-18": "Passover - Chol HaMoed", + "2003-04-19": "Passover - Chol HaMoed", + "2003-04-20": "Passover - Chol HaMoed", + "2003-04-21": "Passover - Chol HaMoed", + "2003-04-22": "Passover VII - Eve", + "2003-04-23": "Passover VII", + "2003-05-06": "Memorial Day", + "2003-05-07": "Independence Day", + "2003-05-20": "Lag B'Omer", + "2003-06-05": "Shavuot - Eve", + "2003-06-06": "Shavuot", + "2003-09-26": "Rosh Hashanah - Eve", + "2003-09-27": "Rosh Hashanah", + "2003-09-28": "Rosh Hashanah", + "2003-10-05": "Yom Kippur - Eve", + "2003-10-06": "Yom Kippur", + "2003-10-10": "Sukkot I - Eve", + "2003-10-11": "Sukkot I", + "2003-10-12": "Sukkot - Chol HaMoed", + "2003-10-13": "Sukkot - Chol HaMoed", + "2003-10-14": "Sukkot - Chol HaMoed", + "2003-10-15": "Sukkot - Chol HaMoed", + "2003-10-16": "Sukkot - Chol HaMoed", + "2003-10-17": "Sukkot VII - Eve", + "2003-10-18": "Sukkot VII", + "2003-12-20": "Hanukkah", + "2003-12-21": "Hanukkah", + "2003-12-22": "Hanukkah", + "2003-12-23": "Hanukkah", + "2003-12-24": "Hanukkah", + "2003-12-25": "Hanukkah", + "2003-12-26": "Hanukkah", + "2003-12-27": "Hanukkah", + "2004-03-06": "Purim - Eve", + "2004-03-07": "Purim", + "2004-03-08": "Shushan Purim", + "2004-04-05": "Passover I - Eve", + "2004-04-06": "Passover I", + "2004-04-07": "Passover - Chol HaMoed", + "2004-04-08": "Passover - Chol HaMoed", + "2004-04-09": "Passover - Chol HaMoed", + "2004-04-10": "Passover - Chol HaMoed", + "2004-04-11": "Passover VII - Eve", + "2004-04-12": "Passover VII", + "2004-04-26": "Memorial Day (Observed)", + "2004-04-27": "Independence Day (Observed)", + "2004-05-09": "Lag B'Omer", + "2004-05-25": "Shavuot - Eve", + "2004-05-26": "Shavuot", + "2004-09-15": "Rosh Hashanah - Eve", + "2004-09-16": "Rosh Hashanah", + "2004-09-17": "Rosh Hashanah", + "2004-09-24": "Yom Kippur - Eve", + "2004-09-25": "Yom Kippur", + "2004-09-29": "Sukkot I - Eve", + "2004-09-30": "Sukkot I", + "2004-10-01": "Sukkot - Chol HaMoed", + "2004-10-02": "Sukkot - Chol HaMoed", + "2004-10-03": "Sukkot - Chol HaMoed", + "2004-10-04": "Sukkot - Chol HaMoed", + "2004-10-05": "Sukkot - Chol HaMoed", + "2004-10-06": "Sukkot VII - Eve", + "2004-10-07": "Sukkot VII", + "2004-12-08": "Hanukkah", + "2004-12-09": "Hanukkah", + "2004-12-10": "Hanukkah", + "2004-12-11": "Hanukkah", + "2004-12-12": "Hanukkah", + "2004-12-13": "Hanukkah", + "2004-12-14": "Hanukkah", + "2004-12-15": "Hanukkah", + "2005-03-24": "Purim - Eve", + "2005-03-25": "Purim", + "2005-03-26": "Shushan Purim", + "2005-04-23": "Passover I - Eve", + "2005-04-24": "Passover I", + "2005-04-25": "Passover - Chol HaMoed", + "2005-04-26": "Passover - Chol HaMoed", + "2005-04-27": "Passover - Chol HaMoed", + "2005-04-28": "Passover - Chol HaMoed", + "2005-04-29": "Passover VII - Eve", + "2005-04-30": "Passover VII", + "2005-05-11": "Memorial Day (Observed)", + "2005-05-12": "Independence Day (Observed)", + "2005-05-27": "Lag B'Omer", + "2005-06-12": "Shavuot - Eve", + "2005-06-13": "Shavuot", + "2005-10-03": "Rosh Hashanah - Eve", + "2005-10-04": "Rosh Hashanah", + "2005-10-05": "Rosh Hashanah", + "2005-10-12": "Yom Kippur - Eve", + "2005-10-13": "Yom Kippur", + "2005-10-17": "Sukkot I - Eve", + "2005-10-18": "Sukkot I", + "2005-10-19": "Sukkot - Chol HaMoed", + "2005-10-20": "Sukkot - Chol HaMoed", + "2005-10-21": "Sukkot - Chol HaMoed", + "2005-10-22": "Sukkot - Chol HaMoed", + "2005-10-23": "Sukkot - Chol HaMoed", + "2005-10-24": "Sukkot VII - Eve", + "2005-10-25": "Sukkot VII", + "2005-12-26": "Hanukkah", + "2005-12-27": "Hanukkah", + "2005-12-28": "Hanukkah", + "2005-12-29": "Hanukkah", + "2005-12-30": "Hanukkah", + "2005-12-31": "Hanukkah", + "2006-01-01": "Hanukkah", + "2006-01-02": "Hanukkah", + "2006-03-13": "Purim - Eve", + "2006-03-14": "Purim", + "2006-03-15": "Shushan Purim", + "2006-04-12": "Passover I - Eve", + "2006-04-13": "Passover I", + "2006-04-14": "Passover - Chol HaMoed", + "2006-04-15": "Passover - Chol HaMoed", + "2006-04-16": "Passover - Chol HaMoed", + "2006-04-17": "Passover - Chol HaMoed", + "2006-04-18": "Passover VII - Eve", + "2006-04-19": "Passover VII", + "2006-05-02": "Memorial Day", + "2006-05-03": "Independence Day", + "2006-05-16": "Lag B'Omer", + "2006-06-01": "Shavuot - Eve", + "2006-06-02": "Shavuot", + "2006-09-22": "Rosh Hashanah - Eve", + "2006-09-23": "Rosh Hashanah", + "2006-09-24": "Rosh Hashanah", + "2006-10-01": "Yom Kippur - Eve", + "2006-10-02": "Yom Kippur", + "2006-10-06": "Sukkot I - Eve", + "2006-10-07": "Sukkot I", + "2006-10-08": "Sukkot - Chol HaMoed", + "2006-10-09": "Sukkot - Chol HaMoed", + "2006-10-10": "Sukkot - Chol HaMoed", + "2006-10-11": "Sukkot - Chol HaMoed", + "2006-10-12": "Sukkot - Chol HaMoed", + "2006-10-13": "Sukkot VII - Eve", + "2006-10-14": "Sukkot VII", + "2006-12-16": "Hanukkah", + "2006-12-17": "Hanukkah", + "2006-12-18": "Hanukkah", + "2006-12-19": "Hanukkah", + "2006-12-20": "Hanukkah", + "2006-12-21": "Hanukkah", + "2006-12-22": "Hanukkah", + "2006-12-23": "Hanukkah", + "2007-03-03": "Purim - Eve", + "2007-03-04": "Purim", + "2007-03-05": "Shushan Purim", + "2007-04-02": "Passover I - Eve", + "2007-04-03": "Passover I", + "2007-04-04": "Passover - Chol HaMoed", + "2007-04-05": "Passover - Chol HaMoed", + "2007-04-06": "Passover - Chol HaMoed", + "2007-04-07": "Passover - Chol HaMoed", + "2007-04-08": "Passover VII - Eve", + "2007-04-09": "Passover VII", + "2007-04-23": "Memorial Day (Observed)", + "2007-04-24": "Independence Day (Observed)", + "2007-05-06": "Lag B'Omer", + "2007-05-22": "Shavuot - Eve", + "2007-05-23": "Shavuot", + "2007-09-12": "Rosh Hashanah - Eve", + "2007-09-13": "Rosh Hashanah", + "2007-09-14": "Rosh Hashanah", + "2007-09-21": "Yom Kippur - Eve", + "2007-09-22": "Yom Kippur", + "2007-09-26": "Sukkot I - Eve", + "2007-09-27": "Sukkot I", + "2007-09-28": "Sukkot - Chol HaMoed", + "2007-09-29": "Sukkot - Chol HaMoed", + "2007-09-30": "Sukkot - Chol HaMoed", + "2007-10-01": "Sukkot - Chol HaMoed", + "2007-10-02": "Sukkot - Chol HaMoed", + "2007-10-03": "Sukkot VII - Eve", + "2007-10-04": "Sukkot VII", + "2007-12-05": "Hanukkah", + "2007-12-06": "Hanukkah", + "2007-12-07": "Hanukkah", + "2007-12-08": "Hanukkah", + "2007-12-09": "Hanukkah", + "2007-12-10": "Hanukkah", + "2007-12-11": "Hanukkah", + "2007-12-12": "Hanukkah", + "2008-03-20": "Purim - Eve", + "2008-03-21": "Purim", + "2008-03-22": "Shushan Purim", + "2008-04-19": "Passover I - Eve", + "2008-04-20": "Passover I", + "2008-04-21": "Passover - Chol HaMoed", + "2008-04-22": "Passover - Chol HaMoed", + "2008-04-23": "Passover - Chol HaMoed", + "2008-04-24": "Passover - Chol HaMoed", + "2008-04-25": "Passover VII - Eve", + "2008-04-26": "Passover VII", + "2008-05-07": "Memorial Day (Observed)", + "2008-05-08": "Independence Day (Observed)", + "2008-05-23": "Lag B'Omer", + "2008-06-08": "Shavuot - Eve", + "2008-06-09": "Shavuot", + "2008-09-29": "Rosh Hashanah - Eve", + "2008-09-30": "Rosh Hashanah", + "2008-10-01": "Rosh Hashanah", + "2008-10-08": "Yom Kippur - Eve", + "2008-10-09": "Yom Kippur", + "2008-10-13": "Sukkot I - Eve", + "2008-10-14": "Sukkot I", + "2008-10-15": "Sukkot - Chol HaMoed", + "2008-10-16": "Sukkot - Chol HaMoed", + "2008-10-17": "Sukkot - Chol HaMoed", + "2008-10-18": "Sukkot - Chol HaMoed", + "2008-10-19": "Sukkot - Chol HaMoed", + "2008-10-20": "Sukkot VII - Eve", + "2008-10-21": "Sukkot VII", + "2008-12-22": "Hanukkah", + "2008-12-23": "Hanukkah", + "2008-12-24": "Hanukkah", + "2008-12-25": "Hanukkah", + "2008-12-26": "Hanukkah", + "2008-12-27": "Hanukkah", + "2008-12-28": "Hanukkah", + "2008-12-29": "Hanukkah", + "2009-03-09": "Purim - Eve", + "2009-03-10": "Purim", + "2009-03-11": "Shushan Purim", + "2009-04-08": "Passover I - Eve", + "2009-04-09": "Passover I", + "2009-04-10": "Passover - Chol HaMoed", + "2009-04-11": "Passover - Chol HaMoed", + "2009-04-12": "Passover - Chol HaMoed", + "2009-04-13": "Passover - Chol HaMoed", + "2009-04-14": "Passover VII - Eve", + "2009-04-15": "Passover VII", + "2009-04-28": "Memorial Day", + "2009-04-29": "Independence Day", + "2009-05-12": "Lag B'Omer", + "2009-05-28": "Shavuot - Eve", + "2009-05-29": "Shavuot", + "2009-09-18": "Rosh Hashanah - Eve", + "2009-09-19": "Rosh Hashanah", + "2009-09-20": "Rosh Hashanah", + "2009-09-27": "Yom Kippur - Eve", + "2009-09-28": "Yom Kippur", + "2009-10-02": "Sukkot I - Eve", + "2009-10-03": "Sukkot I", + "2009-10-04": "Sukkot - Chol HaMoed", + "2009-10-05": "Sukkot - Chol HaMoed", + "2009-10-06": "Sukkot - Chol HaMoed", + "2009-10-07": "Sukkot - Chol HaMoed", + "2009-10-08": "Sukkot - Chol HaMoed", + "2009-10-09": "Sukkot VII - Eve", + "2009-10-10": "Sukkot VII", + "2009-12-12": "Hanukkah", + "2009-12-13": "Hanukkah", + "2009-12-14": "Hanukkah", + "2009-12-15": "Hanukkah", + "2009-12-16": "Hanukkah", + "2009-12-17": "Hanukkah", + "2009-12-18": "Hanukkah", + "2009-12-19": "Hanukkah", + "2010-02-27": "Purim - Eve", + "2010-02-28": "Purim", + "2010-03-01": "Shushan Purim", + "2010-03-29": "Passover I - Eve", + "2010-03-30": "Passover I", + "2010-03-31": "Passover - Chol HaMoed", + "2010-04-01": "Passover - Chol HaMoed", + "2010-04-02": "Passover - Chol HaMoed", + "2010-04-03": "Passover - Chol HaMoed", + "2010-04-04": "Passover VII - Eve", + "2010-04-05": "Passover VII", + "2010-04-19": "Memorial Day (Observed)", + "2010-04-20": "Independence Day (Observed)", + "2010-05-02": "Lag B'Omer", + "2010-05-18": "Shavuot - Eve", + "2010-05-19": "Shavuot", + "2010-09-08": "Rosh Hashanah - Eve", + "2010-09-09": "Rosh Hashanah", + "2010-09-10": "Rosh Hashanah", + "2010-09-17": "Yom Kippur - Eve", + "2010-09-18": "Yom Kippur", + "2010-09-22": "Sukkot I - Eve", + "2010-09-23": "Sukkot I", + "2010-09-24": "Sukkot - Chol HaMoed", + "2010-09-25": "Sukkot - Chol HaMoed", + "2010-09-26": "Sukkot - Chol HaMoed", + "2010-09-27": "Sukkot - Chol HaMoed", + "2010-09-28": "Sukkot - Chol HaMoed", + "2010-09-29": "Sukkot VII - Eve", + "2010-09-30": "Sukkot VII", + "2010-12-02": "Hanukkah", + "2010-12-03": "Hanukkah", + "2010-12-04": "Hanukkah", + "2010-12-05": "Hanukkah", + "2010-12-06": "Hanukkah", + "2010-12-07": "Hanukkah", + "2010-12-08": "Hanukkah", + "2010-12-09": "Hanukkah", + "2011-03-19": "Purim - Eve", + "2011-03-20": "Purim", + "2011-03-21": "Shushan Purim", + "2011-04-18": "Passover I - Eve", + "2011-04-19": "Passover I", + "2011-04-20": "Passover - Chol HaMoed", + "2011-04-21": "Passover - Chol HaMoed", + "2011-04-22": "Passover - Chol HaMoed", + "2011-04-23": "Passover - Chol HaMoed", + "2011-04-24": "Passover VII - Eve", + "2011-04-25": "Passover VII", + "2011-05-09": "Memorial Day (Observed)", + "2011-05-10": "Independence Day (Observed)", + "2011-05-22": "Lag B'Omer", + "2011-06-07": "Shavuot - Eve", + "2011-06-08": "Shavuot", + "2011-09-28": "Rosh Hashanah - Eve", + "2011-09-29": "Rosh Hashanah", + "2011-09-30": "Rosh Hashanah", + "2011-10-07": "Yom Kippur - Eve", + "2011-10-08": "Yom Kippur", + "2011-10-12": "Sukkot I - Eve", + "2011-10-13": "Sukkot I", + "2011-10-14": "Sukkot - Chol HaMoed", + "2011-10-15": "Sukkot - Chol HaMoed", + "2011-10-16": "Sukkot - Chol HaMoed", + "2011-10-17": "Sukkot - Chol HaMoed", + "2011-10-18": "Sukkot - Chol HaMoed", + "2011-10-19": "Sukkot VII - Eve", + "2011-10-20": "Sukkot VII", + "2011-12-21": "Hanukkah", + "2011-12-22": "Hanukkah", + "2011-12-23": "Hanukkah", + "2011-12-24": "Hanukkah", + "2011-12-25": "Hanukkah", + "2011-12-26": "Hanukkah", + "2011-12-27": "Hanukkah", + "2011-12-28": "Hanukkah", + "2012-03-07": "Purim - Eve", + "2012-03-08": "Purim", + "2012-03-09": "Shushan Purim", + "2012-04-06": "Passover I - Eve", + "2012-04-07": "Passover I", + "2012-04-08": "Passover - Chol HaMoed", + "2012-04-09": "Passover - Chol HaMoed", + "2012-04-10": "Passover - Chol HaMoed", + "2012-04-11": "Passover - Chol HaMoed", + "2012-04-12": "Passover VII - Eve", + "2012-04-13": "Passover VII", + "2012-04-25": "Memorial Day (Observed)", + "2012-04-26": "Independence Day (Observed)", + "2012-05-10": "Lag B'Omer", + "2012-05-26": "Shavuot - Eve", + "2012-05-27": "Shavuot", + "2012-09-16": "Rosh Hashanah - Eve", + "2012-09-17": "Rosh Hashanah", + "2012-09-18": "Rosh Hashanah", + "2012-09-25": "Yom Kippur - Eve", + "2012-09-26": "Yom Kippur", + "2012-09-30": "Sukkot I - Eve", + "2012-10-01": "Sukkot I", + "2012-10-02": "Sukkot - Chol HaMoed", + "2012-10-03": "Sukkot - Chol HaMoed", + "2012-10-04": "Sukkot - Chol HaMoed", + "2012-10-05": "Sukkot - Chol HaMoed", + "2012-10-06": "Sukkot - Chol HaMoed", + "2012-10-07": "Sukkot VII - Eve", + "2012-10-08": "Sukkot VII", + "2012-12-09": "Hanukkah", + "2012-12-10": "Hanukkah", + "2012-12-11": "Hanukkah", + "2012-12-12": "Hanukkah", + "2012-12-13": "Hanukkah", + "2012-12-14": "Hanukkah", + "2012-12-15": "Hanukkah", + "2012-12-16": "Hanukkah", + "2013-02-23": "Purim - Eve", + "2013-02-24": "Purim", + "2013-02-25": "Shushan Purim", + "2013-03-25": "Passover I - Eve", + "2013-03-26": "Passover I", + "2013-03-27": "Passover - Chol HaMoed", + "2013-03-28": "Passover - Chol HaMoed", + "2013-03-29": "Passover - Chol HaMoed", + "2013-03-30": "Passover - Chol HaMoed", + "2013-03-31": "Passover VII - Eve", + "2013-04-01": "Passover VII", + "2013-04-15": "Memorial Day (Observed)", + "2013-04-16": "Independence Day (Observed)", + "2013-04-28": "Lag B'Omer", + "2013-05-14": "Shavuot - Eve", + "2013-05-15": "Shavuot", + "2013-09-04": "Rosh Hashanah - Eve", + "2013-09-05": "Rosh Hashanah", + "2013-09-06": "Rosh Hashanah", + "2013-09-13": "Yom Kippur - Eve", + "2013-09-14": "Yom Kippur", + "2013-09-18": "Sukkot I - Eve", + "2013-09-19": "Sukkot I", + "2013-09-20": "Sukkot - Chol HaMoed", + "2013-09-21": "Sukkot - Chol HaMoed", + "2013-09-22": "Sukkot - Chol HaMoed", + "2013-09-23": "Sukkot - Chol HaMoed", + "2013-09-24": "Sukkot - Chol HaMoed", + "2013-09-25": "Sukkot VII - Eve", + "2013-09-26": "Sukkot VII", + "2013-11-28": "Hanukkah", + "2013-11-29": "Hanukkah", + "2013-11-30": "Hanukkah", + "2013-12-01": "Hanukkah", + "2013-12-02": "Hanukkah", + "2013-12-03": "Hanukkah", + "2013-12-04": "Hanukkah", + "2013-12-05": "Hanukkah", + "2014-03-15": "Purim - Eve", + "2014-03-16": "Purim", + "2014-03-17": "Shushan Purim", + "2014-04-14": "Passover I - Eve", + "2014-04-15": "Passover I", + "2014-04-16": "Passover - Chol HaMoed", + "2014-04-17": "Passover - Chol HaMoed", + "2014-04-18": "Passover - Chol HaMoed", + "2014-04-19": "Passover - Chol HaMoed", + "2014-04-20": "Passover VII - Eve", + "2014-04-21": "Passover VII", + "2014-05-05": "Memorial Day (Observed)", + "2014-05-06": "Independence Day (Observed)", + "2014-05-18": "Lag B'Omer", + "2014-06-03": "Shavuot - Eve", + "2014-06-04": "Shavuot", + "2014-09-24": "Rosh Hashanah - Eve", + "2014-09-25": "Rosh Hashanah", + "2014-09-26": "Rosh Hashanah", + "2014-10-03": "Yom Kippur - Eve", + "2014-10-04": "Yom Kippur", + "2014-10-08": "Sukkot I - Eve", + "2014-10-09": "Sukkot I", + "2014-10-10": "Sukkot - Chol HaMoed", + "2014-10-11": "Sukkot - Chol HaMoed", + "2014-10-12": "Sukkot - Chol HaMoed", + "2014-10-13": "Sukkot - Chol HaMoed", + "2014-10-14": "Sukkot - Chol HaMoed", + "2014-10-15": "Sukkot VII - Eve", + "2014-10-16": "Sukkot VII", + "2014-12-17": "Hanukkah", + "2014-12-18": "Hanukkah", + "2014-12-19": "Hanukkah", + "2014-12-20": "Hanukkah", + "2014-12-21": "Hanukkah", + "2014-12-22": "Hanukkah", + "2014-12-23": "Hanukkah", + "2014-12-24": "Hanukkah", + "2015-03-04": "Purim - Eve", + "2015-03-05": "Purim", + "2015-03-06": "Shushan Purim", + "2015-04-03": "Passover I - Eve", + "2015-04-04": "Passover I", + "2015-04-05": "Passover - Chol HaMoed", + "2015-04-06": "Passover - Chol HaMoed", + "2015-04-07": "Passover - Chol HaMoed", + "2015-04-08": "Passover - Chol HaMoed", + "2015-04-09": "Passover VII - Eve", + "2015-04-10": "Passover VII", + "2015-04-22": "Memorial Day (Observed)", + "2015-04-23": "Independence Day (Observed)", + "2015-05-07": "Lag B'Omer", + "2015-05-23": "Shavuot - Eve", + "2015-05-24": "Shavuot", + "2015-09-13": "Rosh Hashanah - Eve", + "2015-09-14": "Rosh Hashanah", + "2015-09-15": "Rosh Hashanah", + "2015-09-22": "Yom Kippur - Eve", + "2015-09-23": "Yom Kippur", + "2015-09-27": "Sukkot I - Eve", + "2015-09-28": "Sukkot I", + "2015-09-29": "Sukkot - Chol HaMoed", + "2015-09-30": "Sukkot - Chol HaMoed", + "2015-10-01": "Sukkot - Chol HaMoed", + "2015-10-02": "Sukkot - Chol HaMoed", + "2015-10-03": "Sukkot - Chol HaMoed", + "2015-10-04": "Sukkot VII - Eve", + "2015-10-05": "Sukkot VII", + "2015-12-07": "Hanukkah", + "2015-12-08": "Hanukkah", + "2015-12-09": "Hanukkah", + "2015-12-10": "Hanukkah", + "2015-12-11": "Hanukkah", + "2015-12-12": "Hanukkah", + "2015-12-13": "Hanukkah", + "2015-12-14": "Hanukkah", + "2016-03-23": "Purim - Eve", + "2016-03-24": "Purim", + "2016-03-25": "Shushan Purim", + "2016-04-22": "Passover I - Eve", + "2016-04-23": "Passover I", + "2016-04-24": "Passover - Chol HaMoed", + "2016-04-25": "Passover - Chol HaMoed", + "2016-04-26": "Passover - Chol HaMoed", + "2016-04-27": "Passover - Chol HaMoed", + "2016-04-28": "Passover VII - Eve", + "2016-04-29": "Passover VII", + "2016-05-11": "Memorial Day (Observed)", + "2016-05-12": "Independence Day (Observed)", + "2016-05-26": "Lag B'Omer", + "2016-06-11": "Shavuot - Eve", + "2016-06-12": "Shavuot", + "2016-10-02": "Rosh Hashanah - Eve", + "2016-10-03": "Rosh Hashanah", + "2016-10-04": "Rosh Hashanah", + "2016-10-11": "Yom Kippur - Eve", + "2016-10-12": "Yom Kippur", + "2016-10-16": "Sukkot I - Eve", + "2016-10-17": "Sukkot I", + "2016-10-18": "Sukkot - Chol HaMoed", + "2016-10-19": "Sukkot - Chol HaMoed", + "2016-10-20": "Sukkot - Chol HaMoed", + "2016-10-21": "Sukkot - Chol HaMoed", + "2016-10-22": "Sukkot - Chol HaMoed", + "2016-10-23": "Sukkot VII - Eve", + "2016-10-24": "Sukkot VII", + "2016-12-25": "Hanukkah", + "2016-12-26": "Hanukkah", + "2016-12-27": "Hanukkah", + "2016-12-28": "Hanukkah", + "2016-12-29": "Hanukkah", + "2016-12-30": "Hanukkah", + "2016-12-31": "Hanukkah", + "2017-01-01": "Hanukkah", + "2017-03-11": "Purim - Eve", + "2017-03-12": "Purim", + "2017-03-13": "Shushan Purim", + "2017-04-10": "Passover I - Eve", + "2017-04-11": "Passover I", + "2017-04-12": "Passover - Chol HaMoed", + "2017-04-13": "Passover - Chol HaMoed", + "2017-04-14": "Passover - Chol HaMoed", + "2017-04-15": "Passover - Chol HaMoed", + "2017-04-16": "Passover VII - Eve", + "2017-04-17": "Passover VII", + "2017-05-01": "Memorial Day (Observed)", + "2017-05-02": "Independence Day (Observed)", + "2017-05-14": "Lag B'Omer", + "2017-05-30": "Shavuot - Eve", + "2017-05-31": "Shavuot", + "2017-09-20": "Rosh Hashanah - Eve", + "2017-09-21": "Rosh Hashanah", + "2017-09-22": "Rosh Hashanah", + "2017-09-29": "Yom Kippur - Eve", + "2017-09-30": "Yom Kippur", + "2017-10-04": "Sukkot I - Eve", + "2017-10-05": "Sukkot I", + "2017-10-06": "Sukkot - Chol HaMoed", + "2017-10-07": "Sukkot - Chol HaMoed", + "2017-10-08": "Sukkot - Chol HaMoed", + "2017-10-09": "Sukkot - Chol HaMoed", + "2017-10-10": "Sukkot - Chol HaMoed", + "2017-10-11": "Sukkot VII - Eve", + "2017-10-12": "Sukkot VII", + "2017-12-13": "Hanukkah", + "2017-12-14": "Hanukkah", + "2017-12-15": "Hanukkah", + "2017-12-16": "Hanukkah", + "2017-12-17": "Hanukkah", + "2017-12-18": "Hanukkah", + "2017-12-19": "Hanukkah", + "2017-12-20": "Hanukkah", + "2018-02-28": "Purim - Eve", + "2018-03-01": "Purim", + "2018-03-02": "Shushan Purim", + "2018-03-30": "Passover I - Eve", + "2018-03-31": "Passover I", + "2018-04-01": "Passover - Chol HaMoed", + "2018-04-02": "Passover - Chol HaMoed", + "2018-04-03": "Passover - Chol HaMoed", + "2018-04-04": "Passover - Chol HaMoed", + "2018-04-05": "Passover VII - Eve", + "2018-04-06": "Passover VII", + "2018-04-18": "Memorial Day (Observed)", + "2018-04-19": "Independence Day (Observed)", + "2018-05-03": "Lag B'Omer", + "2018-05-19": "Shavuot - Eve", + "2018-05-20": "Shavuot", + "2018-09-09": "Rosh Hashanah - Eve", + "2018-09-10": "Rosh Hashanah", + "2018-09-11": "Rosh Hashanah", + "2018-09-18": "Yom Kippur - Eve", + "2018-09-19": "Yom Kippur", + "2018-09-23": "Sukkot I - Eve", + "2018-09-24": "Sukkot I", + "2018-09-25": "Sukkot - Chol HaMoed", + "2018-09-26": "Sukkot - Chol HaMoed", + "2018-09-27": "Sukkot - Chol HaMoed", + "2018-09-28": "Sukkot - Chol HaMoed", + "2018-09-29": "Sukkot - Chol HaMoed", + "2018-09-30": "Sukkot VII - Eve", + "2018-10-01": "Sukkot VII", + "2018-12-03": "Hanukkah", + "2018-12-04": "Hanukkah", + "2018-12-05": "Hanukkah", + "2018-12-06": "Hanukkah", + "2018-12-07": "Hanukkah", + "2018-12-08": "Hanukkah", + "2018-12-09": "Hanukkah", + "2018-12-10": "Hanukkah", + "2019-03-20": "Purim - Eve", + "2019-03-21": "Purim", + "2019-03-22": "Shushan Purim", + "2019-04-19": "Passover I - Eve", + "2019-04-20": "Passover I", + "2019-04-21": "Passover - Chol HaMoed", + "2019-04-22": "Passover - Chol HaMoed", + "2019-04-23": "Passover - Chol HaMoed", + "2019-04-24": "Passover - Chol HaMoed", + "2019-04-25": "Passover VII - Eve", + "2019-04-26": "Passover VII", + "2019-05-08": "Memorial Day (Observed)", + "2019-05-09": "Independence Day (Observed)", + "2019-05-23": "Lag B'Omer", + "2019-06-08": "Shavuot - Eve", + "2019-06-09": "Shavuot", + "2019-09-29": "Rosh Hashanah - Eve", + "2019-09-30": "Rosh Hashanah", + "2019-10-01": "Rosh Hashanah", + "2019-10-08": "Yom Kippur - Eve", + "2019-10-09": "Yom Kippur", + "2019-10-13": "Sukkot I - Eve", + "2019-10-14": "Sukkot I", + "2019-10-15": "Sukkot - Chol HaMoed", + "2019-10-16": "Sukkot - Chol HaMoed", + "2019-10-17": "Sukkot - Chol HaMoed", + "2019-10-18": "Sukkot - Chol HaMoed", + "2019-10-19": "Sukkot - Chol HaMoed", + "2019-10-20": "Sukkot VII - Eve", + "2019-10-21": "Sukkot VII", + "2019-12-23": "Hanukkah", + "2019-12-24": "Hanukkah", + "2019-12-25": "Hanukkah", + "2019-12-26": "Hanukkah", + "2019-12-27": "Hanukkah", + "2019-12-28": "Hanukkah", + "2019-12-29": "Hanukkah", + "2019-12-30": "Hanukkah", + "2020-03-09": "Purim - Eve", + "2020-03-10": "Purim", + "2020-03-11": "Shushan Purim", + "2020-04-08": "Passover I - Eve", + "2020-04-09": "Passover I", + "2020-04-10": "Passover - Chol HaMoed", + "2020-04-11": "Passover - Chol HaMoed", + "2020-04-12": "Passover - Chol HaMoed", + "2020-04-13": "Passover - Chol HaMoed", + "2020-04-14": "Passover VII - Eve", + "2020-04-15": "Passover VII", + "2020-04-28": "Memorial Day", + "2020-04-29": "Independence Day", + "2020-05-12": "Lag B'Omer", + "2020-05-28": "Shavuot - Eve", + "2020-05-29": "Shavuot", + "2020-09-18": "Rosh Hashanah - Eve", + "2020-09-19": "Rosh Hashanah", + "2020-09-20": "Rosh Hashanah", + "2020-09-27": "Yom Kippur - Eve", + "2020-09-28": "Yom Kippur", + "2020-10-02": "Sukkot I - Eve", + "2020-10-03": "Sukkot I", + "2020-10-04": "Sukkot - Chol HaMoed", + "2020-10-05": "Sukkot - Chol HaMoed", + "2020-10-06": "Sukkot - Chol HaMoed", + "2020-10-07": "Sukkot - Chol HaMoed", + "2020-10-08": "Sukkot - Chol HaMoed", + "2020-10-09": "Sukkot VII - Eve", + "2020-10-10": "Sukkot VII", + "2020-12-11": "Hanukkah", + "2020-12-12": "Hanukkah", + "2020-12-13": "Hanukkah", + "2020-12-14": "Hanukkah", + "2020-12-15": "Hanukkah", + "2020-12-16": "Hanukkah", + "2020-12-17": "Hanukkah", + "2020-12-18": "Hanukkah", + "2021-02-25": "Purim - Eve", + "2021-02-26": "Purim", + "2021-02-27": "Shushan Purim", + "2021-03-27": "Passover I - Eve", + "2021-03-28": "Passover I", + "2021-03-29": "Passover - Chol HaMoed", + "2021-03-30": "Passover - Chol HaMoed", + "2021-03-31": "Passover - Chol HaMoed", + "2021-04-01": "Passover - Chol HaMoed", + "2021-04-02": "Passover VII - Eve", + "2021-04-03": "Passover VII", + "2021-04-14": "Memorial Day (Observed)", + "2021-04-15": "Independence Day (Observed)", + "2021-04-30": "Lag B'Omer", + "2021-05-16": "Shavuot - Eve", + "2021-05-17": "Shavuot", + "2021-09-06": "Rosh Hashanah - Eve", + "2021-09-07": "Rosh Hashanah", + "2021-09-08": "Rosh Hashanah", + "2021-09-15": "Yom Kippur - Eve", + "2021-09-16": "Yom Kippur", + "2021-09-20": "Sukkot I - Eve", + "2021-09-21": "Sukkot I", + "2021-09-22": "Sukkot - Chol HaMoed", + "2021-09-23": "Sukkot - Chol HaMoed", + "2021-09-24": "Sukkot - Chol HaMoed", + "2021-09-25": "Sukkot - Chol HaMoed", + "2021-09-26": "Sukkot - Chol HaMoed", + "2021-09-27": "Sukkot VII - Eve", + "2021-09-28": "Sukkot VII", + "2021-11-29": "Hanukkah", + "2021-11-30": "Hanukkah", + "2021-12-01": "Hanukkah", + "2021-12-02": "Hanukkah", + "2021-12-03": "Hanukkah", + "2021-12-04": "Hanukkah", + "2021-12-05": "Hanukkah", + "2021-12-06": "Hanukkah", + "2022-03-16": "Purim - Eve", + "2022-03-17": "Purim", + "2022-03-18": "Shushan Purim", + "2022-04-15": "Passover I - Eve", + "2022-04-16": "Passover I", + "2022-04-17": "Passover - Chol HaMoed", + "2022-04-18": "Passover - Chol HaMoed", + "2022-04-19": "Passover - Chol HaMoed", + "2022-04-20": "Passover - Chol HaMoed", + "2022-04-21": "Passover VII - Eve", + "2022-04-22": "Passover VII", + "2022-05-04": "Memorial Day (Observed)", + "2022-05-05": "Independence Day (Observed)", + "2022-05-19": "Lag B'Omer", + "2022-06-04": "Shavuot - Eve", + "2022-06-05": "Shavuot", + "2022-09-25": "Rosh Hashanah - Eve", + "2022-09-26": "Rosh Hashanah", + "2022-09-27": "Rosh Hashanah", + "2022-10-04": "Yom Kippur - Eve", + "2022-10-05": "Yom Kippur", + "2022-10-09": "Sukkot I - Eve", + "2022-10-10": "Sukkot I", + "2022-10-11": "Sukkot - Chol HaMoed", + "2022-10-12": "Sukkot - Chol HaMoed", + "2022-10-13": "Sukkot - Chol HaMoed", + "2022-10-14": "Sukkot - Chol HaMoed", + "2022-10-15": "Sukkot - Chol HaMoed", + "2022-10-16": "Sukkot VII - Eve", + "2022-10-17": "Sukkot VII", + "2022-12-19": "Hanukkah", + "2022-12-20": "Hanukkah", + "2022-12-21": "Hanukkah", + "2022-12-22": "Hanukkah", + "2022-12-23": "Hanukkah", + "2022-12-24": "Hanukkah", + "2022-12-25": "Hanukkah", + "2022-12-26": "Hanukkah", + "2023-03-06": "Purim - Eve", + "2023-03-07": "Purim", + "2023-03-08": "Shushan Purim", + "2023-04-05": "Passover I - Eve", + "2023-04-06": "Passover I", + "2023-04-07": "Passover - Chol HaMoed", + "2023-04-08": "Passover - Chol HaMoed", + "2023-04-09": "Passover - Chol HaMoed", + "2023-04-10": "Passover - Chol HaMoed", + "2023-04-11": "Passover VII - Eve", + "2023-04-12": "Passover VII", + "2023-04-25": "Memorial Day", + "2023-04-26": "Independence Day", + "2023-05-09": "Lag B'Omer", + "2023-05-25": "Shavuot - Eve", + "2023-05-26": "Shavuot", + "2023-09-15": "Rosh Hashanah - Eve", + "2023-09-16": "Rosh Hashanah", + "2023-09-17": "Rosh Hashanah", + "2023-09-24": "Yom Kippur - Eve", + "2023-09-25": "Yom Kippur", + "2023-09-29": "Sukkot I - Eve", + "2023-09-30": "Sukkot I", + "2023-10-01": "Sukkot - Chol HaMoed", + "2023-10-02": "Sukkot - Chol HaMoed", + "2023-10-03": "Sukkot - Chol HaMoed", + "2023-10-04": "Sukkot - Chol HaMoed", + "2023-10-05": "Sukkot - Chol HaMoed", + "2023-10-06": "Sukkot VII - Eve", + "2023-10-07": "Sukkot VII", + "2023-12-08": "Hanukkah", + "2023-12-09": "Hanukkah", + "2023-12-10": "Hanukkah", + "2023-12-11": "Hanukkah", + "2023-12-12": "Hanukkah", + "2023-12-13": "Hanukkah", + "2023-12-14": "Hanukkah", + "2023-12-15": "Hanukkah", + "2024-03-23": "Purim - Eve", + "2024-03-24": "Purim", + "2024-03-25": "Shushan Purim", + "2024-04-22": "Passover I - Eve", + "2024-04-23": "Passover I", + "2024-04-24": "Passover - Chol HaMoed", + "2024-04-25": "Passover - Chol HaMoed", + "2024-04-26": "Passover - Chol HaMoed", + "2024-04-27": "Passover - Chol HaMoed", + "2024-04-28": "Passover VII - Eve", + "2024-04-29": "Passover VII", + "2024-05-13": "Memorial Day (Observed)", + "2024-05-14": "Independence Day (Observed)", + "2024-05-26": "Lag B'Omer", + "2024-06-11": "Shavuot - Eve", + "2024-06-12": "Shavuot", + "2024-10-02": "Rosh Hashanah - Eve", + "2024-10-03": "Rosh Hashanah", + "2024-10-04": "Rosh Hashanah", + "2024-10-11": "Yom Kippur - Eve", + "2024-10-12": "Yom Kippur", + "2024-10-16": "Sukkot I - Eve", + "2024-10-17": "Sukkot I", + "2024-10-18": "Sukkot - Chol HaMoed", + "2024-10-19": "Sukkot - Chol HaMoed", + "2024-10-20": "Sukkot - Chol HaMoed", + "2024-10-21": "Sukkot - Chol HaMoed", + "2024-10-22": "Sukkot - Chol HaMoed", + "2024-10-23": "Sukkot VII - Eve", + "2024-10-24": "Sukkot VII", + "2024-12-26": "Hanukkah", + "2024-12-27": "Hanukkah", + "2024-12-28": "Hanukkah", + "2024-12-29": "Hanukkah", + "2024-12-30": "Hanukkah", + "2024-12-31": "Hanukkah", + "2025-01-01": "Hanukkah", + "2025-01-02": "Hanukkah", + "2025-03-13": "Purim - Eve", + "2025-03-14": "Purim", + "2025-03-15": "Shushan Purim", + "2025-04-12": "Passover I - Eve", + "2025-04-13": "Passover I", + "2025-04-14": "Passover - Chol HaMoed", + "2025-04-15": "Passover - Chol HaMoed", + "2025-04-16": "Passover - Chol HaMoed", + "2025-04-17": "Passover - Chol HaMoed", + "2025-04-18": "Passover VII - Eve", + "2025-04-19": "Passover VII", + "2025-04-30": "Memorial Day (Observed)", + "2025-05-01": "Independence Day (Observed)", + "2025-05-16": "Lag B'Omer", + "2025-06-01": "Shavuot - Eve", + "2025-06-02": "Shavuot", + "2025-09-22": "Rosh Hashanah - Eve", + "2025-09-23": "Rosh Hashanah", + "2025-09-24": "Rosh Hashanah", + "2025-10-01": "Yom Kippur - Eve", + "2025-10-02": "Yom Kippur", + "2025-10-06": "Sukkot I - Eve", + "2025-10-07": "Sukkot I", + "2025-10-08": "Sukkot - Chol HaMoed", + "2025-10-09": "Sukkot - Chol HaMoed", + "2025-10-10": "Sukkot - Chol HaMoed", + "2025-10-11": "Sukkot - Chol HaMoed", + "2025-10-12": "Sukkot - Chol HaMoed", + "2025-10-13": "Sukkot VII - Eve", + "2025-10-14": "Sukkot VII", + "2025-12-15": "Hanukkah", + "2025-12-16": "Hanukkah", + "2025-12-17": "Hanukkah", + "2025-12-18": "Hanukkah", + "2025-12-19": "Hanukkah", + "2025-12-20": "Hanukkah", + "2025-12-21": "Hanukkah", + "2025-12-22": "Hanukkah", + "2026-03-02": "Purim - Eve", + "2026-03-03": "Purim", + "2026-03-04": "Shushan Purim", + "2026-04-01": "Passover I - Eve", + "2026-04-02": "Passover I", + "2026-04-03": "Passover - Chol HaMoed", + "2026-04-04": "Passover - Chol HaMoed", + "2026-04-05": "Passover - Chol HaMoed", + "2026-04-06": "Passover - Chol HaMoed", + "2026-04-07": "Passover VII - Eve", + "2026-04-08": "Passover VII", + "2026-04-21": "Memorial Day", + "2026-04-22": "Independence Day", + "2026-05-05": "Lag B'Omer", + "2026-05-21": "Shavuot - Eve", + "2026-05-22": "Shavuot", + "2026-09-11": "Rosh Hashanah - Eve", + "2026-09-12": "Rosh Hashanah", + "2026-09-13": "Rosh Hashanah", + "2026-09-20": "Yom Kippur - Eve", + "2026-09-21": "Yom Kippur", + "2026-09-25": "Sukkot I - Eve", + "2026-09-26": "Sukkot I", + "2026-09-27": "Sukkot - Chol HaMoed", + "2026-09-28": "Sukkot - Chol HaMoed", + "2026-09-29": "Sukkot - Chol HaMoed", + "2026-09-30": "Sukkot - Chol HaMoed", + "2026-10-01": "Sukkot - Chol HaMoed", + "2026-10-02": "Sukkot VII - Eve", + "2026-10-03": "Sukkot VII", + "2026-12-05": "Hanukkah", + "2026-12-06": "Hanukkah", + "2026-12-07": "Hanukkah", + "2026-12-08": "Hanukkah", + "2026-12-09": "Hanukkah", + "2026-12-10": "Hanukkah", + "2026-12-11": "Hanukkah", + "2026-12-12": "Hanukkah", + "2027-03-22": "Purim - Eve", + "2027-03-23": "Purim", + "2027-03-24": "Shushan Purim", + "2027-04-21": "Passover I - Eve", + "2027-04-22": "Passover I", + "2027-04-23": "Passover - Chol HaMoed", + "2027-04-24": "Passover - Chol HaMoed", + "2027-04-25": "Passover - Chol HaMoed", + "2027-04-26": "Passover - Chol HaMoed", + "2027-04-27": "Passover VII - Eve", + "2027-04-28": "Passover VII", + "2027-05-11": "Memorial Day", + "2027-05-12": "Independence Day", + "2027-05-25": "Lag B'Omer", + "2027-06-10": "Shavuot - Eve", + "2027-06-11": "Shavuot", + "2027-10-01": "Rosh Hashanah - Eve", + "2027-10-02": "Rosh Hashanah", + "2027-10-03": "Rosh Hashanah", + "2027-10-10": "Yom Kippur - Eve", + "2027-10-11": "Yom Kippur", + "2027-10-15": "Sukkot I - Eve", + "2027-10-16": "Sukkot I", + "2027-10-17": "Sukkot - Chol HaMoed", + "2027-10-18": "Sukkot - Chol HaMoed", + "2027-10-19": "Sukkot - Chol HaMoed", + "2027-10-20": "Sukkot - Chol HaMoed", + "2027-10-21": "Sukkot - Chol HaMoed", + "2027-10-22": "Sukkot VII - Eve", + "2027-10-23": "Sukkot VII", + "2027-12-25": "Hanukkah", + "2027-12-26": "Hanukkah", + "2027-12-27": "Hanukkah", + "2027-12-28": "Hanukkah", + "2027-12-29": "Hanukkah", + "2027-12-30": "Hanukkah", + "2027-12-31": "Hanukkah", + "2028-01-01": "Hanukkah", + "2028-03-11": "Purim - Eve", + "2028-03-12": "Purim", + "2028-03-13": "Shushan Purim", + "2028-04-10": "Passover I - Eve", + "2028-04-11": "Passover I", + "2028-04-12": "Passover - Chol HaMoed", + "2028-04-13": "Passover - Chol HaMoed", + "2028-04-14": "Passover - Chol HaMoed", + "2028-04-15": "Passover - Chol HaMoed", + "2028-04-16": "Passover VII - Eve", + "2028-04-17": "Passover VII", + "2028-05-01": "Memorial Day (Observed)", + "2028-05-02": "Independence Day (Observed)", + "2028-05-14": "Lag B'Omer", + "2028-05-30": "Shavuot - Eve", + "2028-05-31": "Shavuot", + "2028-09-20": "Rosh Hashanah - Eve", + "2028-09-21": "Rosh Hashanah", + "2028-09-22": "Rosh Hashanah", + "2028-09-29": "Yom Kippur - Eve", + "2028-09-30": "Yom Kippur", + "2028-10-04": "Sukkot I - Eve", + "2028-10-05": "Sukkot I", + "2028-10-06": "Sukkot - Chol HaMoed", + "2028-10-07": "Sukkot - Chol HaMoed", + "2028-10-08": "Sukkot - Chol HaMoed", + "2028-10-09": "Sukkot - Chol HaMoed", + "2028-10-10": "Sukkot - Chol HaMoed", + "2028-10-11": "Sukkot VII - Eve", + "2028-10-12": "Sukkot VII", + "2028-12-13": "Hanukkah", + "2028-12-14": "Hanukkah", + "2028-12-15": "Hanukkah", + "2028-12-16": "Hanukkah", + "2028-12-17": "Hanukkah", + "2028-12-18": "Hanukkah", + "2028-12-19": "Hanukkah", + "2028-12-20": "Hanukkah", + "2029-02-28": "Purim - Eve", + "2029-03-01": "Purim", + "2029-03-02": "Shushan Purim", + "2029-03-30": "Passover I - Eve", + "2029-03-31": "Passover I", + "2029-04-01": "Passover - Chol HaMoed", + "2029-04-02": "Passover - Chol HaMoed", + "2029-04-03": "Passover - Chol HaMoed", + "2029-04-04": "Passover - Chol HaMoed", + "2029-04-05": "Passover VII - Eve", + "2029-04-06": "Passover VII", + "2029-04-18": "Memorial Day (Observed)", + "2029-04-19": "Independence Day (Observed)", + "2029-05-03": "Lag B'Omer", + "2029-05-19": "Shavuot - Eve", + "2029-05-20": "Shavuot", + "2029-09-09": "Rosh Hashanah - Eve", + "2029-09-10": "Rosh Hashanah", + "2029-09-11": "Rosh Hashanah", + "2029-09-18": "Yom Kippur - Eve", + "2029-09-19": "Yom Kippur", + "2029-09-23": "Sukkot I - Eve", + "2029-09-24": "Sukkot I", + "2029-09-25": "Sukkot - Chol HaMoed", + "2029-09-26": "Sukkot - Chol HaMoed", + "2029-09-27": "Sukkot - Chol HaMoed", + "2029-09-28": "Sukkot - Chol HaMoed", + "2029-09-29": "Sukkot - Chol HaMoed", + "2029-09-30": "Sukkot VII - Eve", + "2029-10-01": "Sukkot VII", + "2029-12-02": "Hanukkah", + "2029-12-03": "Hanukkah", + "2029-12-04": "Hanukkah", + "2029-12-05": "Hanukkah", + "2029-12-06": "Hanukkah", + "2029-12-07": "Hanukkah", + "2029-12-08": "Hanukkah", + "2029-12-09": "Hanukkah", + "2030-03-18": "Purim - Eve", + "2030-03-19": "Purim", + "2030-03-20": "Shushan Purim", + "2030-04-17": "Passover I - Eve", + "2030-04-18": "Passover I", + "2030-04-19": "Passover - Chol HaMoed", + "2030-04-20": "Passover - Chol HaMoed", + "2030-04-21": "Passover - Chol HaMoed", + "2030-04-22": "Passover - Chol HaMoed", + "2030-04-23": "Passover VII - Eve", + "2030-04-24": "Passover VII", + "2030-05-07": "Memorial Day", + "2030-05-08": "Independence Day", + "2030-05-21": "Lag B'Omer", + "2030-06-06": "Shavuot - Eve", + "2030-06-07": "Shavuot", + "2030-09-27": "Rosh Hashanah - Eve", + "2030-09-28": "Rosh Hashanah", + "2030-09-29": "Rosh Hashanah", + "2030-10-06": "Yom Kippur - Eve", + "2030-10-07": "Yom Kippur", + "2030-10-11": "Sukkot I - Eve", + "2030-10-12": "Sukkot I", + "2030-10-13": "Sukkot - Chol HaMoed", + "2030-10-14": "Sukkot - Chol HaMoed", + "2030-10-15": "Sukkot - Chol HaMoed", + "2030-10-16": "Sukkot - Chol HaMoed", + "2030-10-17": "Sukkot - Chol HaMoed", + "2030-10-18": "Sukkot VII - Eve", + "2030-10-19": "Sukkot VII", + "2030-12-21": "Hanukkah", + "2030-12-22": "Hanukkah", + "2030-12-23": "Hanukkah", + "2030-12-24": "Hanukkah", + "2030-12-25": "Hanukkah", + "2030-12-26": "Hanukkah", + "2030-12-27": "Hanukkah", + "2030-12-28": "Hanukkah", + "2031-03-08": "Purim - Eve", + "2031-03-09": "Purim", + "2031-03-10": "Shushan Purim", + "2031-04-07": "Passover I - Eve", + "2031-04-08": "Passover I", + "2031-04-09": "Passover - Chol HaMoed", + "2031-04-10": "Passover - Chol HaMoed", + "2031-04-11": "Passover - Chol HaMoed", + "2031-04-12": "Passover - Chol HaMoed", + "2031-04-13": "Passover VII - Eve", + "2031-04-14": "Passover VII", + "2031-04-28": "Memorial Day (Observed)", + "2031-04-29": "Independence Day (Observed)", + "2031-05-11": "Lag B'Omer", + "2031-05-27": "Shavuot - Eve", + "2031-05-28": "Shavuot", + "2031-09-17": "Rosh Hashanah - Eve", + "2031-09-18": "Rosh Hashanah", + "2031-09-19": "Rosh Hashanah", + "2031-09-26": "Yom Kippur - Eve", + "2031-09-27": "Yom Kippur", + "2031-10-01": "Sukkot I - Eve", + "2031-10-02": "Sukkot I", + "2031-10-03": "Sukkot - Chol HaMoed", + "2031-10-04": "Sukkot - Chol HaMoed", + "2031-10-05": "Sukkot - Chol HaMoed", + "2031-10-06": "Sukkot - Chol HaMoed", + "2031-10-07": "Sukkot - Chol HaMoed", + "2031-10-08": "Sukkot VII - Eve", + "2031-10-09": "Sukkot VII", + "2031-12-10": "Hanukkah", + "2031-12-11": "Hanukkah", + "2031-12-12": "Hanukkah", + "2031-12-13": "Hanukkah", + "2031-12-14": "Hanukkah", + "2031-12-15": "Hanukkah", + "2031-12-16": "Hanukkah", + "2031-12-17": "Hanukkah", + "2032-02-25": "Purim - Eve", + "2032-02-26": "Purim", + "2032-02-27": "Shushan Purim", + "2032-03-26": "Passover I - Eve", + "2032-03-27": "Passover I", + "2032-03-28": "Passover - Chol HaMoed", + "2032-03-29": "Passover - Chol HaMoed", + "2032-03-30": "Passover - Chol HaMoed", + "2032-03-31": "Passover - Chol HaMoed", + "2032-04-01": "Passover VII - Eve", + "2032-04-02": "Passover VII", + "2032-04-14": "Memorial Day (Observed)", + "2032-04-15": "Independence Day (Observed)", + "2032-04-29": "Lag B'Omer", + "2032-05-15": "Shavuot - Eve", + "2032-05-16": "Shavuot", + "2032-09-05": "Rosh Hashanah - Eve", + "2032-09-06": "Rosh Hashanah", + "2032-09-07": "Rosh Hashanah", + "2032-09-14": "Yom Kippur - Eve", + "2032-09-15": "Yom Kippur", + "2032-09-19": "Sukkot I - Eve", + "2032-09-20": "Sukkot I", + "2032-09-21": "Sukkot - Chol HaMoed", + "2032-09-22": "Sukkot - Chol HaMoed", + "2032-09-23": "Sukkot - Chol HaMoed", + "2032-09-24": "Sukkot - Chol HaMoed", + "2032-09-25": "Sukkot - Chol HaMoed", + "2032-09-26": "Sukkot VII - Eve", + "2032-09-27": "Sukkot VII", + "2032-11-28": "Hanukkah", + "2032-11-29": "Hanukkah", + "2032-11-30": "Hanukkah", + "2032-12-01": "Hanukkah", + "2032-12-02": "Hanukkah", + "2032-12-03": "Hanukkah", + "2032-12-04": "Hanukkah", + "2032-12-05": "Hanukkah", + "2033-03-14": "Purim - Eve", + "2033-03-15": "Purim", + "2033-03-16": "Shushan Purim", + "2033-04-13": "Passover I - Eve", + "2033-04-14": "Passover I", + "2033-04-15": "Passover - Chol HaMoed", + "2033-04-16": "Passover - Chol HaMoed", + "2033-04-17": "Passover - Chol HaMoed", + "2033-04-18": "Passover - Chol HaMoed", + "2033-04-19": "Passover VII - Eve", + "2033-04-20": "Passover VII", + "2033-05-03": "Memorial Day", + "2033-05-04": "Independence Day", + "2033-05-17": "Lag B'Omer", + "2033-06-02": "Shavuot - Eve", + "2033-06-03": "Shavuot", + "2033-09-23": "Rosh Hashanah - Eve", + "2033-09-24": "Rosh Hashanah", + "2033-09-25": "Rosh Hashanah", + "2033-10-02": "Yom Kippur - Eve", + "2033-10-03": "Yom Kippur", + "2033-10-07": "Sukkot I - Eve", + "2033-10-08": "Sukkot I", + "2033-10-09": "Sukkot - Chol HaMoed", + "2033-10-10": "Sukkot - Chol HaMoed", + "2033-10-11": "Sukkot - Chol HaMoed", + "2033-10-12": "Sukkot - Chol HaMoed", + "2033-10-13": "Sukkot - Chol HaMoed", + "2033-10-14": "Sukkot VII - Eve", + "2033-10-15": "Sukkot VII", + "2033-12-17": "Hanukkah", + "2033-12-18": "Hanukkah", + "2033-12-19": "Hanukkah", + "2033-12-20": "Hanukkah", + "2033-12-21": "Hanukkah", + "2033-12-22": "Hanukkah", + "2033-12-23": "Hanukkah", + "2033-12-24": "Hanukkah", + "2034-03-04": "Purim - Eve", + "2034-03-05": "Purim", + "2034-03-06": "Shushan Purim", + "2034-04-03": "Passover I - Eve", + "2034-04-04": "Passover I", + "2034-04-05": "Passover - Chol HaMoed", + "2034-04-06": "Passover - Chol HaMoed", + "2034-04-07": "Passover - Chol HaMoed", + "2034-04-08": "Passover - Chol HaMoed", + "2034-04-09": "Passover VII - Eve", + "2034-04-10": "Passover VII", + "2034-04-24": "Memorial Day (Observed)", + "2034-04-25": "Independence Day (Observed)", + "2034-05-07": "Lag B'Omer", + "2034-05-23": "Shavuot - Eve", + "2034-05-24": "Shavuot", + "2034-09-13": "Rosh Hashanah - Eve", + "2034-09-14": "Rosh Hashanah", + "2034-09-15": "Rosh Hashanah", + "2034-09-22": "Yom Kippur - Eve", + "2034-09-23": "Yom Kippur", + "2034-09-27": "Sukkot I - Eve", + "2034-09-28": "Sukkot I", + "2034-09-29": "Sukkot - Chol HaMoed", + "2034-09-30": "Sukkot - Chol HaMoed", + "2034-10-01": "Sukkot - Chol HaMoed", + "2034-10-02": "Sukkot - Chol HaMoed", + "2034-10-03": "Sukkot - Chol HaMoed", + "2034-10-04": "Sukkot VII - Eve", + "2034-10-05": "Sukkot VII", + "2034-12-07": "Hanukkah", + "2034-12-08": "Hanukkah", + "2034-12-09": "Hanukkah", + "2034-12-10": "Hanukkah", + "2034-12-11": "Hanukkah", + "2034-12-12": "Hanukkah", + "2034-12-13": "Hanukkah", + "2034-12-14": "Hanukkah", + "2035-03-24": "Purim - Eve", + "2035-03-25": "Purim", + "2035-03-26": "Shushan Purim", + "2035-04-23": "Passover I - Eve", + "2035-04-24": "Passover I", + "2035-04-25": "Passover - Chol HaMoed", + "2035-04-26": "Passover - Chol HaMoed", + "2035-04-27": "Passover - Chol HaMoed", + "2035-04-28": "Passover - Chol HaMoed", + "2035-04-29": "Passover VII - Eve", + "2035-04-30": "Passover VII", + "2035-05-14": "Memorial Day (Observed)", + "2035-05-15": "Independence Day (Observed)", + "2035-05-27": "Lag B'Omer", + "2035-06-12": "Shavuot - Eve", + "2035-06-13": "Shavuot", + "2035-10-03": "Rosh Hashanah - Eve", + "2035-10-04": "Rosh Hashanah", + "2035-10-05": "Rosh Hashanah", + "2035-10-12": "Yom Kippur - Eve", + "2035-10-13": "Yom Kippur", + "2035-10-17": "Sukkot I - Eve", + "2035-10-18": "Sukkot I", + "2035-10-19": "Sukkot - Chol HaMoed", + "2035-10-20": "Sukkot - Chol HaMoed", + "2035-10-21": "Sukkot - Chol HaMoed", + "2035-10-22": "Sukkot - Chol HaMoed", + "2035-10-23": "Sukkot - Chol HaMoed", + "2035-10-24": "Sukkot VII - Eve", + "2035-10-25": "Sukkot VII", + "2035-12-26": "Hanukkah", + "2035-12-27": "Hanukkah", + "2035-12-28": "Hanukkah", + "2035-12-29": "Hanukkah", + "2035-12-30": "Hanukkah", + "2035-12-31": "Hanukkah", + "2036-01-01": "Hanukkah", + "2036-01-02": "Hanukkah", + "2036-03-12": "Purim - Eve", + "2036-03-13": "Purim", + "2036-03-14": "Shushan Purim", + "2036-04-11": "Passover I - Eve", + "2036-04-12": "Passover I", + "2036-04-13": "Passover - Chol HaMoed", + "2036-04-14": "Passover - Chol HaMoed", + "2036-04-15": "Passover - Chol HaMoed", + "2036-04-16": "Passover - Chol HaMoed", + "2036-04-17": "Passover VII - Eve", + "2036-04-18": "Passover VII", + "2036-04-30": "Memorial Day (Observed)", + "2036-05-01": "Independence Day (Observed)", + "2036-05-15": "Lag B'Omer", + "2036-05-31": "Shavuot - Eve", + "2036-06-01": "Shavuot", + "2036-09-21": "Rosh Hashanah - Eve", + "2036-09-22": "Rosh Hashanah", + "2036-09-23": "Rosh Hashanah", + "2036-09-30": "Yom Kippur - Eve", + "2036-10-01": "Yom Kippur", + "2036-10-05": "Sukkot I - Eve", + "2036-10-06": "Sukkot I", + "2036-10-07": "Sukkot - Chol HaMoed", + "2036-10-08": "Sukkot - Chol HaMoed", + "2036-10-09": "Sukkot - Chol HaMoed", + "2036-10-10": "Sukkot - Chol HaMoed", + "2036-10-11": "Sukkot - Chol HaMoed", + "2036-10-12": "Sukkot VII - Eve", + "2036-10-13": "Sukkot VII", + "2036-12-14": "Hanukkah", + "2036-12-15": "Hanukkah", + "2036-12-16": "Hanukkah", + "2036-12-17": "Hanukkah", + "2036-12-18": "Hanukkah", + "2036-12-19": "Hanukkah", + "2036-12-20": "Hanukkah", + "2036-12-21": "Hanukkah", + "2037-02-28": "Purim - Eve", + "2037-03-01": "Purim", + "2037-03-02": "Shushan Purim", + "2037-03-30": "Passover I - Eve", + "2037-03-31": "Passover I", + "2037-04-01": "Passover - Chol HaMoed", + "2037-04-02": "Passover - Chol HaMoed", + "2037-04-03": "Passover - Chol HaMoed", + "2037-04-04": "Passover - Chol HaMoed", + "2037-04-05": "Passover VII - Eve", + "2037-04-06": "Passover VII", + "2037-04-20": "Memorial Day (Observed)", + "2037-04-21": "Independence Day (Observed)", + "2037-05-03": "Lag B'Omer", + "2037-05-19": "Shavuot - Eve", + "2037-05-20": "Shavuot", + "2037-09-09": "Rosh Hashanah - Eve", + "2037-09-10": "Rosh Hashanah", + "2037-09-11": "Rosh Hashanah", + "2037-09-18": "Yom Kippur - Eve", + "2037-09-19": "Yom Kippur", + "2037-09-23": "Sukkot I - Eve", + "2037-09-24": "Sukkot I", + "2037-09-25": "Sukkot - Chol HaMoed", + "2037-09-26": "Sukkot - Chol HaMoed", + "2037-09-27": "Sukkot - Chol HaMoed", + "2037-09-28": "Sukkot - Chol HaMoed", + "2037-09-29": "Sukkot - Chol HaMoed", + "2037-09-30": "Sukkot VII - Eve", + "2037-10-01": "Sukkot VII", + "2037-12-03": "Hanukkah", + "2037-12-04": "Hanukkah", + "2037-12-05": "Hanukkah", + "2037-12-06": "Hanukkah", + "2037-12-07": "Hanukkah", + "2037-12-08": "Hanukkah", + "2037-12-09": "Hanukkah", + "2037-12-10": "Hanukkah", + "2038-03-20": "Purim - Eve", + "2038-03-21": "Purim", + "2038-03-22": "Shushan Purim", + "2038-04-19": "Passover I - Eve", + "2038-04-20": "Passover I", + "2038-04-21": "Passover - Chol HaMoed", + "2038-04-22": "Passover - Chol HaMoed", + "2038-04-23": "Passover - Chol HaMoed", + "2038-04-24": "Passover - Chol HaMoed", + "2038-04-25": "Passover VII - Eve", + "2038-04-26": "Passover VII", + "2038-05-10": "Memorial Day (Observed)", + "2038-05-11": "Independence Day (Observed)", + "2038-05-23": "Lag B'Omer", + "2038-06-08": "Shavuot - Eve", + "2038-06-09": "Shavuot", + "2038-09-29": "Rosh Hashanah - Eve", + "2038-09-30": "Rosh Hashanah", + "2038-10-01": "Rosh Hashanah", + "2038-10-08": "Yom Kippur - Eve", + "2038-10-09": "Yom Kippur", + "2038-10-13": "Sukkot I - Eve", + "2038-10-14": "Sukkot I", + "2038-10-15": "Sukkot - Chol HaMoed", + "2038-10-16": "Sukkot - Chol HaMoed", + "2038-10-17": "Sukkot - Chol HaMoed", + "2038-10-18": "Sukkot - Chol HaMoed", + "2038-10-19": "Sukkot - Chol HaMoed", + "2038-10-20": "Sukkot VII - Eve", + "2038-10-21": "Sukkot VII", + "2038-12-22": "Hanukkah", + "2038-12-23": "Hanukkah", + "2038-12-24": "Hanukkah", + "2038-12-25": "Hanukkah", + "2038-12-26": "Hanukkah", + "2038-12-27": "Hanukkah", + "2038-12-28": "Hanukkah", + "2038-12-29": "Hanukkah", + "2039-03-09": "Purim - Eve", + "2039-03-10": "Purim", + "2039-03-11": "Shushan Purim", + "2039-04-08": "Passover I - Eve", + "2039-04-09": "Passover I", + "2039-04-10": "Passover - Chol HaMoed", + "2039-04-11": "Passover - Chol HaMoed", + "2039-04-12": "Passover - Chol HaMoed", + "2039-04-13": "Passover - Chol HaMoed", + "2039-04-14": "Passover VII - Eve", + "2039-04-15": "Passover VII", + "2039-04-27": "Memorial Day (Observed)", + "2039-04-28": "Independence Day (Observed)", + "2039-05-12": "Lag B'Omer", + "2039-05-28": "Shavuot - Eve", + "2039-05-29": "Shavuot", + "2039-09-18": "Rosh Hashanah - Eve", + "2039-09-19": "Rosh Hashanah", + "2039-09-20": "Rosh Hashanah", + "2039-09-27": "Yom Kippur - Eve", + "2039-09-28": "Yom Kippur", + "2039-10-02": "Sukkot I - Eve", + "2039-10-03": "Sukkot I", + "2039-10-04": "Sukkot - Chol HaMoed", + "2039-10-05": "Sukkot - Chol HaMoed", + "2039-10-06": "Sukkot - Chol HaMoed", + "2039-10-07": "Sukkot - Chol HaMoed", + "2039-10-08": "Sukkot - Chol HaMoed", + "2039-10-09": "Sukkot VII - Eve", + "2039-10-10": "Sukkot VII", + "2039-12-12": "Hanukkah", + "2039-12-13": "Hanukkah", + "2039-12-14": "Hanukkah", + "2039-12-15": "Hanukkah", + "2039-12-16": "Hanukkah", + "2039-12-17": "Hanukkah", + "2039-12-18": "Hanukkah", + "2039-12-19": "Hanukkah", + "2040-02-27": "Purim - Eve", + "2040-02-28": "Purim", + "2040-02-29": "Shushan Purim", + "2040-03-28": "Passover I - Eve", + "2040-03-29": "Passover I", + "2040-03-30": "Passover - Chol HaMoed", + "2040-03-31": "Passover - Chol HaMoed", + "2040-04-01": "Passover - Chol HaMoed", + "2040-04-02": "Passover - Chol HaMoed", + "2040-04-03": "Passover VII - Eve", + "2040-04-04": "Passover VII", + "2040-04-17": "Memorial Day", + "2040-04-18": "Independence Day", + "2040-05-01": "Lag B'Omer", + "2040-05-17": "Shavuot - Eve", + "2040-05-18": "Shavuot", + "2040-09-07": "Rosh Hashanah - Eve", + "2040-09-08": "Rosh Hashanah", + "2040-09-09": "Rosh Hashanah", + "2040-09-16": "Yom Kippur - Eve", + "2040-09-17": "Yom Kippur", + "2040-09-21": "Sukkot I - Eve", + "2040-09-22": "Sukkot I", + "2040-09-23": "Sukkot - Chol HaMoed", + "2040-09-24": "Sukkot - Chol HaMoed", + "2040-09-25": "Sukkot - Chol HaMoed", + "2040-09-26": "Sukkot - Chol HaMoed", + "2040-09-27": "Sukkot - Chol HaMoed", + "2040-09-28": "Sukkot VII - Eve", + "2040-09-29": "Sukkot VII", + "2040-11-30": "Hanukkah", + "2040-12-01": "Hanukkah", + "2040-12-02": "Hanukkah", + "2040-12-03": "Hanukkah", + "2040-12-04": "Hanukkah", + "2040-12-05": "Hanukkah", + "2040-12-06": "Hanukkah", + "2040-12-07": "Hanukkah", + "2041-03-16": "Purim - Eve", + "2041-03-17": "Purim", + "2041-03-18": "Shushan Purim", + "2041-04-15": "Passover I - Eve", + "2041-04-16": "Passover I", + "2041-04-17": "Passover - Chol HaMoed", + "2041-04-18": "Passover - Chol HaMoed", + "2041-04-19": "Passover - Chol HaMoed", + "2041-04-20": "Passover - Chol HaMoed", + "2041-04-21": "Passover VII - Eve", + "2041-04-22": "Passover VII", + "2041-05-06": "Memorial Day (Observed)", + "2041-05-07": "Independence Day (Observed)", + "2041-05-19": "Lag B'Omer", + "2041-06-04": "Shavuot - Eve", + "2041-06-05": "Shavuot", + "2041-09-25": "Rosh Hashanah - Eve", + "2041-09-26": "Rosh Hashanah", + "2041-09-27": "Rosh Hashanah", + "2041-10-04": "Yom Kippur - Eve", + "2041-10-05": "Yom Kippur", + "2041-10-09": "Sukkot I - Eve", + "2041-10-10": "Sukkot I", + "2041-10-11": "Sukkot - Chol HaMoed", + "2041-10-12": "Sukkot - Chol HaMoed", + "2041-10-13": "Sukkot - Chol HaMoed", + "2041-10-14": "Sukkot - Chol HaMoed", + "2041-10-15": "Sukkot - Chol HaMoed", + "2041-10-16": "Sukkot VII - Eve", + "2041-10-17": "Sukkot VII", + "2041-12-18": "Hanukkah", + "2041-12-19": "Hanukkah", + "2041-12-20": "Hanukkah", + "2041-12-21": "Hanukkah", + "2041-12-22": "Hanukkah", + "2041-12-23": "Hanukkah", + "2041-12-24": "Hanukkah", + "2041-12-25": "Hanukkah", + "2042-03-05": "Purim - Eve", + "2042-03-06": "Purim", + "2042-03-07": "Shushan Purim", + "2042-04-04": "Passover I - Eve", + "2042-04-05": "Passover I", + "2042-04-06": "Passover - Chol HaMoed", + "2042-04-07": "Passover - Chol HaMoed", + "2042-04-08": "Passover - Chol HaMoed", + "2042-04-09": "Passover - Chol HaMoed", + "2042-04-10": "Passover VII - Eve", + "2042-04-11": "Passover VII", + "2042-04-23": "Memorial Day (Observed)", + "2042-04-24": "Independence Day (Observed)", + "2042-05-08": "Lag B'Omer", + "2042-05-24": "Shavuot - Eve", + "2042-05-25": "Shavuot", + "2042-09-14": "Rosh Hashanah - Eve", + "2042-09-15": "Rosh Hashanah", + "2042-09-16": "Rosh Hashanah", + "2042-09-23": "Yom Kippur - Eve", + "2042-09-24": "Yom Kippur", + "2042-09-28": "Sukkot I - Eve", + "2042-09-29": "Sukkot I", + "2042-09-30": "Sukkot - Chol HaMoed", + "2042-10-01": "Sukkot - Chol HaMoed", + "2042-10-02": "Sukkot - Chol HaMoed", + "2042-10-03": "Sukkot - Chol HaMoed", + "2042-10-04": "Sukkot - Chol HaMoed", + "2042-10-05": "Sukkot VII - Eve", + "2042-10-06": "Sukkot VII", + "2042-12-08": "Hanukkah", + "2042-12-09": "Hanukkah", + "2042-12-10": "Hanukkah", + "2042-12-11": "Hanukkah", + "2042-12-12": "Hanukkah", + "2042-12-13": "Hanukkah", + "2042-12-14": "Hanukkah", + "2042-12-15": "Hanukkah", + "2043-03-25": "Purim - Eve", + "2043-03-26": "Purim", + "2043-03-27": "Shushan Purim", + "2043-04-24": "Passover I - Eve", + "2043-04-25": "Passover I", + "2043-04-26": "Passover - Chol HaMoed", + "2043-04-27": "Passover - Chol HaMoed", + "2043-04-28": "Passover - Chol HaMoed", + "2043-04-29": "Passover - Chol HaMoed", + "2043-04-30": "Passover VII - Eve", + "2043-05-01": "Passover VII", + "2043-05-13": "Memorial Day (Observed)", + "2043-05-14": "Independence Day (Observed)", + "2043-05-28": "Lag B'Omer", + "2043-06-13": "Shavuot - Eve", + "2043-06-14": "Shavuot", + "2043-10-04": "Rosh Hashanah - Eve", + "2043-10-05": "Rosh Hashanah", + "2043-10-06": "Rosh Hashanah", + "2043-10-13": "Yom Kippur - Eve", + "2043-10-14": "Yom Kippur", + "2043-10-18": "Sukkot I - Eve", + "2043-10-19": "Sukkot I", + "2043-10-20": "Sukkot - Chol HaMoed", + "2043-10-21": "Sukkot - Chol HaMoed", + "2043-10-22": "Sukkot - Chol HaMoed", + "2043-10-23": "Sukkot - Chol HaMoed", + "2043-10-24": "Sukkot - Chol HaMoed", + "2043-10-25": "Sukkot VII - Eve", + "2043-10-26": "Sukkot VII", + "2043-12-27": "Hanukkah", + "2043-12-28": "Hanukkah", + "2043-12-29": "Hanukkah", + "2043-12-30": "Hanukkah", + "2043-12-31": "Hanukkah", + "2044-01-01": "Hanukkah", + "2044-01-02": "Hanukkah", + "2044-01-03": "Hanukkah", + "2044-03-12": "Purim - Eve", + "2044-03-13": "Purim", + "2044-03-14": "Shushan Purim", + "2044-04-11": "Passover I - Eve", + "2044-04-12": "Passover I", + "2044-04-13": "Passover - Chol HaMoed", + "2044-04-14": "Passover - Chol HaMoed", + "2044-04-15": "Passover - Chol HaMoed", + "2044-04-16": "Passover - Chol HaMoed", + "2044-04-17": "Passover VII - Eve", + "2044-04-18": "Passover VII", + "2044-05-02": "Memorial Day (Observed)", + "2044-05-03": "Independence Day (Observed)", + "2044-05-15": "Lag B'Omer", + "2044-05-31": "Shavuot - Eve", + "2044-06-01": "Shavuot", + "2044-09-21": "Rosh Hashanah - Eve", + "2044-09-22": "Rosh Hashanah", + "2044-09-23": "Rosh Hashanah", + "2044-09-30": "Yom Kippur - Eve", + "2044-10-01": "Yom Kippur", + "2044-10-05": "Sukkot I - Eve", + "2044-10-06": "Sukkot I", + "2044-10-07": "Sukkot - Chol HaMoed", + "2044-10-08": "Sukkot - Chol HaMoed", + "2044-10-09": "Sukkot - Chol HaMoed", + "2044-10-10": "Sukkot - Chol HaMoed", + "2044-10-11": "Sukkot - Chol HaMoed", + "2044-10-12": "Sukkot VII - Eve", + "2044-10-13": "Sukkot VII", + "2044-12-15": "Hanukkah", + "2044-12-16": "Hanukkah", + "2044-12-17": "Hanukkah", + "2044-12-18": "Hanukkah", + "2044-12-19": "Hanukkah", + "2044-12-20": "Hanukkah", + "2044-12-21": "Hanukkah", + "2044-12-22": "Hanukkah", + "2045-03-02": "Purim - Eve", + "2045-03-03": "Purim", + "2045-03-04": "Shushan Purim", + "2045-04-01": "Passover I - Eve", + "2045-04-02": "Passover I", + "2045-04-03": "Passover - Chol HaMoed", + "2045-04-04": "Passover - Chol HaMoed", + "2045-04-05": "Passover - Chol HaMoed", + "2045-04-06": "Passover - Chol HaMoed", + "2045-04-07": "Passover VII - Eve", + "2045-04-08": "Passover VII", + "2045-04-19": "Memorial Day (Observed)", + "2045-04-20": "Independence Day (Observed)", + "2045-05-05": "Lag B'Omer", + "2045-05-21": "Shavuot - Eve", + "2045-05-22": "Shavuot", + "2045-09-11": "Rosh Hashanah - Eve", + "2045-09-12": "Rosh Hashanah", + "2045-09-13": "Rosh Hashanah", + "2045-09-20": "Yom Kippur - Eve", + "2045-09-21": "Yom Kippur", + "2045-09-25": "Sukkot I - Eve", + "2045-09-26": "Sukkot I", + "2045-09-27": "Sukkot - Chol HaMoed", + "2045-09-28": "Sukkot - Chol HaMoed", + "2045-09-29": "Sukkot - Chol HaMoed", + "2045-09-30": "Sukkot - Chol HaMoed", + "2045-10-01": "Sukkot - Chol HaMoed", + "2045-10-02": "Sukkot VII - Eve", + "2045-10-03": "Sukkot VII", + "2045-12-04": "Hanukkah", + "2045-12-05": "Hanukkah", + "2045-12-06": "Hanukkah", + "2045-12-07": "Hanukkah", + "2045-12-08": "Hanukkah", + "2045-12-09": "Hanukkah", + "2045-12-10": "Hanukkah", + "2045-12-11": "Hanukkah", + "2046-03-21": "Purim - Eve", + "2046-03-22": "Purim", + "2046-03-23": "Shushan Purim", + "2046-04-20": "Passover I - Eve", + "2046-04-21": "Passover I", + "2046-04-22": "Passover - Chol HaMoed", + "2046-04-23": "Passover - Chol HaMoed", + "2046-04-24": "Passover - Chol HaMoed", + "2046-04-25": "Passover - Chol HaMoed", + "2046-04-26": "Passover VII - Eve", + "2046-04-27": "Passover VII", + "2046-05-09": "Memorial Day (Observed)", + "2046-05-10": "Independence Day (Observed)", + "2046-05-24": "Lag B'Omer", + "2046-06-09": "Shavuot - Eve", + "2046-06-10": "Shavuot", + "2046-09-30": "Rosh Hashanah - Eve", + "2046-10-01": "Rosh Hashanah", + "2046-10-02": "Rosh Hashanah", + "2046-10-09": "Yom Kippur - Eve", + "2046-10-10": "Yom Kippur", + "2046-10-14": "Sukkot I - Eve", + "2046-10-15": "Sukkot I", + "2046-10-16": "Sukkot - Chol HaMoed", + "2046-10-17": "Sukkot - Chol HaMoed", + "2046-10-18": "Sukkot - Chol HaMoed", + "2046-10-19": "Sukkot - Chol HaMoed", + "2046-10-20": "Sukkot - Chol HaMoed", + "2046-10-21": "Sukkot VII - Eve", + "2046-10-22": "Sukkot VII", + "2046-12-24": "Hanukkah", + "2046-12-25": "Hanukkah", + "2046-12-26": "Hanukkah", + "2046-12-27": "Hanukkah", + "2046-12-28": "Hanukkah", + "2046-12-29": "Hanukkah", + "2046-12-30": "Hanukkah", + "2046-12-31": "Hanukkah", + "2047-03-11": "Purim - Eve", + "2047-03-12": "Purim", + "2047-03-13": "Shushan Purim", + "2047-04-10": "Passover I - Eve", + "2047-04-11": "Passover I", + "2047-04-12": "Passover - Chol HaMoed", + "2047-04-13": "Passover - Chol HaMoed", + "2047-04-14": "Passover - Chol HaMoed", + "2047-04-15": "Passover - Chol HaMoed", + "2047-04-16": "Passover VII - Eve", + "2047-04-17": "Passover VII", + "2047-04-30": "Memorial Day", + "2047-05-01": "Independence Day", + "2047-05-14": "Lag B'Omer", + "2047-05-30": "Shavuot - Eve", + "2047-05-31": "Shavuot", + "2047-09-20": "Rosh Hashanah - Eve", + "2047-09-21": "Rosh Hashanah", + "2047-09-22": "Rosh Hashanah", + "2047-09-29": "Yom Kippur - Eve", + "2047-09-30": "Yom Kippur", + "2047-10-04": "Sukkot I - Eve", + "2047-10-05": "Sukkot I", + "2047-10-06": "Sukkot - Chol HaMoed", + "2047-10-07": "Sukkot - Chol HaMoed", + "2047-10-08": "Sukkot - Chol HaMoed", + "2047-10-09": "Sukkot - Chol HaMoed", + "2047-10-10": "Sukkot - Chol HaMoed", + "2047-10-11": "Sukkot VII - Eve", + "2047-10-12": "Sukkot VII", + "2047-12-13": "Hanukkah", + "2047-12-14": "Hanukkah", + "2047-12-15": "Hanukkah", + "2047-12-16": "Hanukkah", + "2047-12-17": "Hanukkah", + "2047-12-18": "Hanukkah", + "2047-12-19": "Hanukkah", + "2047-12-20": "Hanukkah", + "2048-02-27": "Purim - Eve", + "2048-02-28": "Purim", + "2048-02-29": "Shushan Purim", + "2048-03-28": "Passover I - Eve", + "2048-03-29": "Passover I", + "2048-03-30": "Passover - Chol HaMoed", + "2048-03-31": "Passover - Chol HaMoed", + "2048-04-01": "Passover - Chol HaMoed", + "2048-04-02": "Passover - Chol HaMoed", + "2048-04-03": "Passover VII - Eve", + "2048-04-04": "Passover VII", + "2048-04-15": "Memorial Day (Observed)", + "2048-04-16": "Independence Day (Observed)", + "2048-05-01": "Lag B'Omer", + "2048-05-17": "Shavuot - Eve", + "2048-05-18": "Shavuot", + "2048-09-07": "Rosh Hashanah - Eve", + "2048-09-08": "Rosh Hashanah", + "2048-09-09": "Rosh Hashanah", + "2048-09-16": "Yom Kippur - Eve", + "2048-09-17": "Yom Kippur", + "2048-09-21": "Sukkot I - Eve", + "2048-09-22": "Sukkot I", + "2048-09-23": "Sukkot - Chol HaMoed", + "2048-09-24": "Sukkot - Chol HaMoed", + "2048-09-25": "Sukkot - Chol HaMoed", + "2048-09-26": "Sukkot - Chol HaMoed", + "2048-09-27": "Sukkot - Chol HaMoed", + "2048-09-28": "Sukkot VII - Eve", + "2048-09-29": "Sukkot VII", + "2048-11-30": "Hanukkah", + "2048-12-01": "Hanukkah", + "2048-12-02": "Hanukkah", + "2048-12-03": "Hanukkah", + "2048-12-04": "Hanukkah", + "2048-12-05": "Hanukkah", + "2048-12-06": "Hanukkah", + "2048-12-07": "Hanukkah", + "2049-03-17": "Purim - Eve", + "2049-03-18": "Purim", + "2049-03-19": "Shushan Purim", + "2049-04-16": "Passover I - Eve", + "2049-04-17": "Passover I", + "2049-04-18": "Passover - Chol HaMoed", + "2049-04-19": "Passover - Chol HaMoed", + "2049-04-20": "Passover - Chol HaMoed", + "2049-04-21": "Passover - Chol HaMoed", + "2049-04-22": "Passover VII - Eve", + "2049-04-23": "Passover VII", + "2049-05-05": "Memorial Day (Observed)", + "2049-05-06": "Independence Day (Observed)", + "2049-05-20": "Lag B'Omer", + "2049-06-05": "Shavuot - Eve", + "2049-06-06": "Shavuot", + "2049-09-26": "Rosh Hashanah - Eve", + "2049-09-27": "Rosh Hashanah", + "2049-09-28": "Rosh Hashanah", + "2049-10-05": "Yom Kippur - Eve", + "2049-10-06": "Yom Kippur", + "2049-10-10": "Sukkot I - Eve", + "2049-10-11": "Sukkot I", + "2049-10-12": "Sukkot - Chol HaMoed", + "2049-10-13": "Sukkot - Chol HaMoed", + "2049-10-14": "Sukkot - Chol HaMoed", + "2049-10-15": "Sukkot - Chol HaMoed", + "2049-10-16": "Sukkot - Chol HaMoed", + "2049-10-17": "Sukkot VII - Eve", + "2049-10-18": "Sukkot VII", + "2049-12-20": "Hanukkah", + "2049-12-21": "Hanukkah", + "2049-12-22": "Hanukkah", + "2049-12-23": "Hanukkah", + "2049-12-24": "Hanukkah", + "2049-12-25": "Hanukkah", + "2049-12-26": "Hanukkah", + "2049-12-27": "Hanukkah", + "2050-03-07": "Purim - Eve", + "2050-03-08": "Purim", + "2050-03-09": "Shushan Purim", + "2050-04-06": "Passover I - Eve", + "2050-04-07": "Passover I", + "2050-04-08": "Passover - Chol HaMoed", + "2050-04-09": "Passover - Chol HaMoed", + "2050-04-10": "Passover - Chol HaMoed", + "2050-04-11": "Passover - Chol HaMoed", + "2050-04-12": "Passover VII - Eve", + "2050-04-13": "Passover VII", + "2050-04-26": "Memorial Day", + "2050-04-27": "Independence Day", + "2050-05-10": "Lag B'Omer", + "2050-05-26": "Shavuot - Eve", + "2050-05-27": "Shavuot", + "2050-09-16": "Rosh Hashanah - Eve", + "2050-09-17": "Rosh Hashanah", + "2050-09-18": "Rosh Hashanah", + "2050-09-25": "Yom Kippur - Eve", + "2050-09-26": "Yom Kippur", + "2050-09-30": "Sukkot I - Eve", + "2050-10-01": "Sukkot I", + "2050-10-02": "Sukkot - Chol HaMoed", + "2050-10-03": "Sukkot - Chol HaMoed", + "2050-10-04": "Sukkot - Chol HaMoed", + "2050-10-05": "Sukkot - Chol HaMoed", + "2050-10-06": "Sukkot - Chol HaMoed", + "2050-10-07": "Sukkot VII - Eve", + "2050-10-08": "Sukkot VII", + "2050-12-10": "Hanukkah", + "2050-12-11": "Hanukkah", + "2050-12-12": "Hanukkah", + "2050-12-13": "Hanukkah", + "2050-12-14": "Hanukkah", + "2050-12-15": "Hanukkah", + "2050-12-16": "Hanukkah", + "2050-12-17": "Hanukkah" +} diff --git a/snapshots/countries/IM.json b/snapshots/countries/IM.json new file mode 100644 index 000000000..28a509161 --- /dev/null +++ b/snapshots/countries/IM.json @@ -0,0 +1,1005 @@ +{ + "1950-04-07": "Good Friday", + "1950-04-10": "Easter Monday", + "1950-06-02": "TT Bank Holiday", + "1950-07-05": "Tynwald Day", + "1950-12-25": "Christmas Day", + "1950-12-26": "Boxing Day", + "1951-03-23": "Good Friday", + "1951-03-26": "Easter Monday", + "1951-06-01": "TT Bank Holiday", + "1951-07-05": "Tynwald Day", + "1951-12-25": "Christmas Day", + "1951-12-26": "Boxing Day", + "1952-04-11": "Good Friday", + "1952-04-14": "Easter Monday", + "1952-06-06": "TT Bank Holiday", + "1952-07-05": "Tynwald Day", + "1952-12-25": "Christmas Day", + "1952-12-26": "Boxing Day", + "1953-04-03": "Good Friday", + "1953-04-06": "Easter Monday", + "1953-06-05": "TT Bank Holiday", + "1953-07-05": "Tynwald Day", + "1953-12-25": "Christmas Day", + "1953-12-26": "Boxing Day", + "1953-12-28": "Boxing Day (Observed)", + "1954-04-16": "Good Friday", + "1954-04-19": "Easter Monday", + "1954-06-04": "TT Bank Holiday", + "1954-07-05": "Tynwald Day", + "1954-12-25": "Christmas Day", + "1954-12-26": "Boxing Day", + "1954-12-27": "Christmas Day (Observed)", + "1954-12-28": "Boxing Day (Observed)", + "1955-04-08": "Good Friday", + "1955-04-11": "Easter Monday", + "1955-06-03": "TT Bank Holiday", + "1955-07-05": "Tynwald Day", + "1955-12-25": "Christmas Day", + "1955-12-26": "Boxing Day", + "1955-12-27": "Christmas Day (Observed)", + "1956-03-30": "Good Friday", + "1956-04-02": "Easter Monday", + "1956-06-01": "TT Bank Holiday", + "1956-07-05": "Tynwald Day", + "1956-12-25": "Christmas Day", + "1956-12-26": "Boxing Day", + "1957-04-19": "Good Friday", + "1957-04-22": "Easter Monday", + "1957-06-07": "TT Bank Holiday", + "1957-07-05": "Tynwald Day", + "1957-12-25": "Christmas Day", + "1957-12-26": "Boxing Day", + "1958-04-04": "Good Friday", + "1958-04-07": "Easter Monday", + "1958-06-06": "TT Bank Holiday", + "1958-07-05": "Tynwald Day", + "1958-12-25": "Christmas Day", + "1958-12-26": "Boxing Day", + "1959-03-27": "Good Friday", + "1959-03-30": "Easter Monday", + "1959-06-05": "TT Bank Holiday", + "1959-07-05": "Tynwald Day", + "1959-12-25": "Christmas Day", + "1959-12-26": "Boxing Day", + "1959-12-28": "Boxing Day (Observed)", + "1960-04-15": "Good Friday", + "1960-04-18": "Easter Monday", + "1960-06-03": "TT Bank Holiday", + "1960-07-05": "Tynwald Day", + "1960-12-25": "Christmas Day", + "1960-12-26": "Boxing Day", + "1960-12-27": "Christmas Day (Observed)", + "1961-03-31": "Good Friday", + "1961-04-03": "Easter Monday", + "1961-06-02": "TT Bank Holiday", + "1961-07-05": "Tynwald Day", + "1961-12-25": "Christmas Day", + "1961-12-26": "Boxing Day", + "1962-04-20": "Good Friday", + "1962-04-23": "Easter Monday", + "1962-06-01": "TT Bank Holiday", + "1962-07-05": "Tynwald Day", + "1962-12-25": "Christmas Day", + "1962-12-26": "Boxing Day", + "1963-04-12": "Good Friday", + "1963-04-15": "Easter Monday", + "1963-06-07": "TT Bank Holiday", + "1963-07-05": "Tynwald Day", + "1963-12-25": "Christmas Day", + "1963-12-26": "Boxing Day", + "1964-03-27": "Good Friday", + "1964-03-30": "Easter Monday", + "1964-06-05": "TT Bank Holiday", + "1964-07-05": "Tynwald Day", + "1964-12-25": "Christmas Day", + "1964-12-26": "Boxing Day", + "1964-12-28": "Boxing Day (Observed)", + "1965-04-16": "Good Friday", + "1965-04-19": "Easter Monday", + "1965-06-04": "TT Bank Holiday", + "1965-07-05": "Tynwald Day", + "1965-12-25": "Christmas Day", + "1965-12-26": "Boxing Day", + "1965-12-27": "Christmas Day (Observed)", + "1965-12-28": "Boxing Day (Observed)", + "1966-04-08": "Good Friday", + "1966-04-11": "Easter Monday", + "1966-06-03": "TT Bank Holiday", + "1966-07-05": "Tynwald Day", + "1966-12-25": "Christmas Day", + "1966-12-26": "Boxing Day", + "1966-12-27": "Christmas Day (Observed)", + "1967-03-24": "Good Friday", + "1967-03-27": "Easter Monday", + "1967-06-02": "TT Bank Holiday", + "1967-07-05": "Tynwald Day", + "1967-12-25": "Christmas Day", + "1967-12-26": "Boxing Day", + "1968-04-12": "Good Friday", + "1968-04-15": "Easter Monday", + "1968-06-07": "TT Bank Holiday", + "1968-07-05": "Tynwald Day", + "1968-12-25": "Christmas Day", + "1968-12-26": "Boxing Day", + "1969-04-04": "Good Friday", + "1969-04-07": "Easter Monday", + "1969-06-06": "TT Bank Holiday", + "1969-07-05": "Tynwald Day", + "1969-12-25": "Christmas Day", + "1969-12-26": "Boxing Day", + "1970-03-27": "Good Friday", + "1970-03-30": "Easter Monday", + "1970-06-05": "TT Bank Holiday", + "1970-07-05": "Tynwald Day", + "1970-12-25": "Christmas Day", + "1970-12-26": "Boxing Day", + "1970-12-28": "Boxing Day (Observed)", + "1971-04-09": "Good Friday", + "1971-04-12": "Easter Monday", + "1971-05-31": "Spring Bank Holiday", + "1971-06-04": "TT Bank Holiday", + "1971-07-05": "Tynwald Day", + "1971-08-30": "Late Summer Bank Holiday", + "1971-12-25": "Christmas Day", + "1971-12-26": "Boxing Day", + "1971-12-27": "Christmas Day (Observed)", + "1971-12-28": "Boxing Day (Observed)", + "1972-03-31": "Good Friday", + "1972-04-03": "Easter Monday", + "1972-05-29": "Spring Bank Holiday", + "1972-06-02": "TT Bank Holiday", + "1972-07-05": "Tynwald Day", + "1972-08-28": "Late Summer Bank Holiday", + "1972-12-25": "Christmas Day", + "1972-12-26": "Boxing Day", + "1973-04-20": "Good Friday", + "1973-04-23": "Easter Monday", + "1973-05-28": "Spring Bank Holiday", + "1973-06-01": "TT Bank Holiday", + "1973-07-05": "Tynwald Day", + "1973-08-27": "Late Summer Bank Holiday", + "1973-12-25": "Christmas Day", + "1973-12-26": "Boxing Day", + "1974-04-12": "Good Friday", + "1974-04-15": "Easter Monday", + "1974-05-27": "Spring Bank Holiday", + "1974-06-07": "TT Bank Holiday", + "1974-07-05": "Tynwald Day", + "1974-08-26": "Late Summer Bank Holiday", + "1974-12-25": "Christmas Day", + "1974-12-26": "Boxing Day", + "1975-01-01": "New Year's Day", + "1975-03-28": "Good Friday", + "1975-03-31": "Easter Monday", + "1975-05-26": "Spring Bank Holiday", + "1975-06-06": "TT Bank Holiday", + "1975-07-05": "Tynwald Day", + "1975-08-25": "Late Summer Bank Holiday", + "1975-12-25": "Christmas Day", + "1975-12-26": "Boxing Day", + "1976-01-01": "New Year's Day", + "1976-04-16": "Good Friday", + "1976-04-19": "Easter Monday", + "1976-05-31": "Spring Bank Holiday", + "1976-06-04": "TT Bank Holiday", + "1976-07-05": "Tynwald Day", + "1976-08-30": "Late Summer Bank Holiday", + "1976-12-25": "Christmas Day", + "1976-12-26": "Boxing Day", + "1976-12-27": "Christmas Day (Observed)", + "1976-12-28": "Boxing Day (Observed)", + "1977-01-01": "New Year's Day", + "1977-01-03": "New Year's Day (Observed)", + "1977-04-08": "Good Friday", + "1977-04-11": "Easter Monday", + "1977-05-30": "Spring Bank Holiday", + "1977-06-03": "TT Bank Holiday", + "1977-06-07": "Silver Jubilee of Elizabeth II", + "1977-07-05": "Tynwald Day", + "1977-08-29": "Late Summer Bank Holiday", + "1977-12-25": "Christmas Day", + "1977-12-26": "Boxing Day", + "1977-12-27": "Christmas Day (Observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day (Observed)", + "1978-03-24": "Good Friday", + "1978-03-27": "Easter Monday", + "1978-05-01": "May Day", + "1978-05-29": "Spring Bank Holiday", + "1978-06-02": "TT Bank Holiday", + "1978-07-05": "Tynwald Day", + "1978-08-28": "Late Summer Bank Holiday", + "1978-12-25": "Christmas Day", + "1978-12-26": "Boxing Day", + "1979-01-01": "New Year's Day", + "1979-04-13": "Good Friday", + "1979-04-16": "Easter Monday", + "1979-05-07": "May Day", + "1979-05-28": "Spring Bank Holiday", + "1979-06-01": "TT Bank Holiday", + "1979-07-05": "Tynwald Day", + "1979-08-27": "Late Summer Bank Holiday", + "1979-12-25": "Christmas Day", + "1979-12-26": "Boxing Day", + "1980-01-01": "New Year's Day", + "1980-04-04": "Good Friday", + "1980-04-07": "Easter Monday", + "1980-05-05": "May Day", + "1980-05-26": "Spring Bank Holiday", + "1980-06-06": "TT Bank Holiday", + "1980-07-05": "Tynwald Day", + "1980-08-25": "Late Summer Bank Holiday", + "1980-12-25": "Christmas Day", + "1980-12-26": "Boxing Day", + "1981-01-01": "New Year's Day", + "1981-04-17": "Good Friday", + "1981-04-20": "Easter Monday", + "1981-05-04": "May Day", + "1981-05-25": "Spring Bank Holiday", + "1981-06-05": "TT Bank Holiday", + "1981-07-05": "Tynwald Day", + "1981-07-29": "Wedding of Charles and Diana", + "1981-08-31": "Late Summer Bank Holiday", + "1981-12-25": "Christmas Day", + "1981-12-26": "Boxing Day", + "1981-12-28": "Boxing Day (Observed)", + "1982-01-01": "New Year's Day", + "1982-04-09": "Good Friday", + "1982-04-12": "Easter Monday", + "1982-05-03": "May Day", + "1982-05-31": "Spring Bank Holiday", + "1982-06-04": "TT Bank Holiday", + "1982-07-05": "Tynwald Day", + "1982-08-30": "Late Summer Bank Holiday", + "1982-12-25": "Christmas Day", + "1982-12-26": "Boxing Day", + "1982-12-27": "Christmas Day (Observed)", + "1982-12-28": "Boxing Day (Observed)", + "1983-01-01": "New Year's Day", + "1983-01-03": "New Year's Day (Observed)", + "1983-04-01": "Good Friday", + "1983-04-04": "Easter Monday", + "1983-05-02": "May Day", + "1983-05-30": "Spring Bank Holiday", + "1983-06-03": "TT Bank Holiday", + "1983-07-05": "Tynwald Day", + "1983-08-29": "Late Summer Bank Holiday", + "1983-12-25": "Christmas Day", + "1983-12-26": "Boxing Day", + "1983-12-27": "Christmas Day (Observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (Observed)", + "1984-04-20": "Good Friday", + "1984-04-23": "Easter Monday", + "1984-05-07": "May Day", + "1984-05-28": "Spring Bank Holiday", + "1984-06-01": "TT Bank Holiday", + "1984-07-05": "Tynwald Day", + "1984-08-27": "Late Summer Bank Holiday", + "1984-12-25": "Christmas Day", + "1984-12-26": "Boxing Day", + "1985-01-01": "New Year's Day", + "1985-04-05": "Good Friday", + "1985-04-08": "Easter Monday", + "1985-05-06": "May Day", + "1985-05-27": "Spring Bank Holiday", + "1985-06-07": "TT Bank Holiday", + "1985-07-05": "Tynwald Day", + "1985-08-26": "Late Summer Bank Holiday", + "1985-12-25": "Christmas Day", + "1985-12-26": "Boxing Day", + "1986-01-01": "New Year's Day", + "1986-03-28": "Good Friday", + "1986-03-31": "Easter Monday", + "1986-05-05": "May Day", + "1986-05-26": "Spring Bank Holiday", + "1986-06-06": "TT Bank Holiday", + "1986-07-05": "Tynwald Day", + "1986-08-25": "Late Summer Bank Holiday", + "1986-12-25": "Christmas Day", + "1986-12-26": "Boxing Day", + "1987-01-01": "New Year's Day", + "1987-04-17": "Good Friday", + "1987-04-20": "Easter Monday", + "1987-05-04": "May Day", + "1987-05-25": "Spring Bank Holiday", + "1987-06-05": "TT Bank Holiday", + "1987-07-05": "Tynwald Day", + "1987-08-31": "Late Summer Bank Holiday", + "1987-12-25": "Christmas Day", + "1987-12-26": "Boxing Day", + "1987-12-28": "Boxing Day (Observed)", + "1988-01-01": "New Year's Day", + "1988-04-01": "Good Friday", + "1988-04-04": "Easter Monday", + "1988-05-02": "May Day", + "1988-05-30": "Spring Bank Holiday", + "1988-06-03": "TT Bank Holiday", + "1988-07-05": "Tynwald Day", + "1988-08-29": "Late Summer Bank Holiday", + "1988-12-25": "Christmas Day", + "1988-12-26": "Boxing Day", + "1988-12-27": "Christmas Day (Observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (Observed)", + "1989-03-24": "Good Friday", + "1989-03-27": "Easter Monday", + "1989-05-01": "May Day", + "1989-05-29": "Spring Bank Holiday", + "1989-06-02": "TT Bank Holiday", + "1989-07-05": "Tynwald Day", + "1989-08-28": "Late Summer Bank Holiday", + "1989-12-25": "Christmas Day", + "1989-12-26": "Boxing Day", + "1990-01-01": "New Year's Day", + "1990-04-13": "Good Friday", + "1990-04-16": "Easter Monday", + "1990-05-07": "May Day", + "1990-05-28": "Spring Bank Holiday", + "1990-06-01": "TT Bank Holiday", + "1990-07-05": "Tynwald Day", + "1990-08-27": "Late Summer Bank Holiday", + "1990-12-25": "Christmas Day", + "1990-12-26": "Boxing Day", + "1991-01-01": "New Year's Day", + "1991-03-29": "Good Friday", + "1991-04-01": "Easter Monday", + "1991-05-06": "May Day", + "1991-05-27": "Spring Bank Holiday", + "1991-06-07": "TT Bank Holiday", + "1991-07-05": "Tynwald Day", + "1991-08-26": "Late Summer Bank Holiday", + "1991-12-25": "Christmas Day", + "1991-12-26": "Boxing Day", + "1992-01-01": "New Year's Day", + "1992-04-17": "Good Friday", + "1992-04-20": "Easter Monday", + "1992-05-04": "May Day", + "1992-05-25": "Spring Bank Holiday", + "1992-06-05": "TT Bank Holiday", + "1992-07-06": "Tynwald Day", + "1992-08-31": "Late Summer Bank Holiday", + "1992-12-25": "Christmas Day", + "1992-12-26": "Boxing Day", + "1992-12-28": "Boxing Day (Observed)", + "1993-01-01": "New Year's Day", + "1993-04-09": "Good Friday", + "1993-04-12": "Easter Monday", + "1993-05-03": "May Day", + "1993-05-31": "Spring Bank Holiday", + "1993-06-04": "TT Bank Holiday", + "1993-07-05": "Tynwald Day", + "1993-08-30": "Late Summer Bank Holiday", + "1993-12-25": "Christmas Day", + "1993-12-26": "Boxing Day", + "1993-12-27": "Christmas Day (Observed)", + "1993-12-28": "Boxing Day (Observed)", + "1994-01-01": "New Year's Day", + "1994-01-03": "New Year's Day (Observed)", + "1994-04-01": "Good Friday", + "1994-04-04": "Easter Monday", + "1994-05-02": "May Day", + "1994-05-30": "Spring Bank Holiday", + "1994-06-03": "TT Bank Holiday", + "1994-07-05": "Tynwald Day", + "1994-08-29": "Late Summer Bank Holiday", + "1994-12-25": "Christmas Day", + "1994-12-26": "Boxing Day", + "1994-12-27": "Christmas Day (Observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (Observed)", + "1995-04-14": "Good Friday", + "1995-04-17": "Easter Monday", + "1995-05-08": "May Day", + "1995-05-29": "Spring Bank Holiday", + "1995-06-02": "TT Bank Holiday", + "1995-07-05": "Tynwald Day", + "1995-08-28": "Late Summer Bank Holiday", + "1995-12-25": "Christmas Day", + "1995-12-26": "Boxing Day", + "1996-01-01": "New Year's Day", + "1996-04-05": "Good Friday", + "1996-04-08": "Easter Monday", + "1996-05-06": "May Day", + "1996-05-27": "Spring Bank Holiday", + "1996-06-07": "TT Bank Holiday", + "1996-07-05": "Tynwald Day", + "1996-08-26": "Late Summer Bank Holiday", + "1996-12-25": "Christmas Day", + "1996-12-26": "Boxing Day", + "1997-01-01": "New Year's Day", + "1997-03-28": "Good Friday", + "1997-03-31": "Easter Monday", + "1997-05-05": "May Day", + "1997-05-26": "Spring Bank Holiday", + "1997-06-06": "TT Bank Holiday", + "1997-07-07": "Tynwald Day", + "1997-08-25": "Late Summer Bank Holiday", + "1997-12-25": "Christmas Day", + "1997-12-26": "Boxing Day", + "1998-01-01": "New Year's Day", + "1998-04-10": "Good Friday", + "1998-04-13": "Easter Monday", + "1998-05-04": "May Day", + "1998-05-25": "Spring Bank Holiday", + "1998-06-05": "TT Bank Holiday", + "1998-07-06": "Tynwald Day", + "1998-08-31": "Late Summer Bank Holiday", + "1998-12-25": "Christmas Day", + "1998-12-26": "Boxing Day", + "1998-12-28": "Boxing Day (Observed)", + "1999-01-01": "New Year's Day", + "1999-04-02": "Good Friday", + "1999-04-05": "Easter Monday", + "1999-05-03": "May Day", + "1999-05-31": "Spring Bank Holiday", + "1999-06-04": "TT Bank Holiday", + "1999-07-05": "Tynwald Day", + "1999-08-30": "Late Summer Bank Holiday", + "1999-12-25": "Christmas Day", + "1999-12-26": "Boxing Day", + "1999-12-27": "Christmas Day (Observed)", + "1999-12-28": "Boxing Day (Observed)", + "1999-12-31": "Millennium Celebrations", + "2000-01-01": "New Year's Day", + "2000-01-03": "New Year's Day (Observed)", + "2000-04-21": "Good Friday", + "2000-04-24": "Easter Monday", + "2000-05-01": "May Day", + "2000-05-29": "Spring Bank Holiday", + "2000-06-02": "TT Bank Holiday", + "2000-07-05": "Tynwald Day", + "2000-08-28": "Late Summer Bank Holiday", + "2000-12-25": "Christmas Day", + "2000-12-26": "Boxing Day", + "2001-01-01": "New Year's Day", + "2001-04-13": "Good Friday", + "2001-04-16": "Easter Monday", + "2001-05-07": "May Day", + "2001-05-28": "Spring Bank Holiday", + "2001-06-01": "TT Bank Holiday", + "2001-07-05": "Tynwald Day", + "2001-08-27": "Late Summer Bank Holiday", + "2001-12-25": "Christmas Day", + "2001-12-26": "Boxing Day", + "2002-01-01": "New Year's Day", + "2002-03-29": "Good Friday", + "2002-04-01": "Easter Monday", + "2002-05-06": "May Day", + "2002-06-03": "Golden Jubilee of Elizabeth II", + "2002-06-04": "Spring Bank Holiday", + "2002-06-07": "TT Bank Holiday", + "2002-07-05": "Tynwald Day", + "2002-08-26": "Late Summer Bank Holiday", + "2002-12-25": "Christmas Day", + "2002-12-26": "Boxing Day", + "2003-01-01": "New Year's Day", + "2003-04-18": "Good Friday", + "2003-04-21": "Easter Monday", + "2003-05-05": "May Day", + "2003-05-26": "Spring Bank Holiday", + "2003-06-06": "TT Bank Holiday", + "2003-07-07": "Tynwald Day", + "2003-08-25": "Late Summer Bank Holiday", + "2003-12-25": "Christmas Day", + "2003-12-26": "Boxing Day", + "2004-01-01": "New Year's Day", + "2004-04-09": "Good Friday", + "2004-04-12": "Easter Monday", + "2004-05-03": "May Day", + "2004-05-31": "Spring Bank Holiday", + "2004-06-04": "TT Bank Holiday", + "2004-07-05": "Tynwald Day", + "2004-08-30": "Late Summer Bank Holiday", + "2004-12-25": "Christmas Day", + "2004-12-26": "Boxing Day", + "2004-12-27": "Christmas Day (Observed)", + "2004-12-28": "Boxing Day (Observed)", + "2005-01-01": "New Year's Day", + "2005-01-03": "New Year's Day (Observed)", + "2005-03-25": "Good Friday", + "2005-03-28": "Easter Monday", + "2005-05-02": "May Day", + "2005-05-30": "Spring Bank Holiday", + "2005-06-03": "TT Bank Holiday", + "2005-07-05": "Tynwald Day", + "2005-08-29": "Late Summer Bank Holiday", + "2005-12-25": "Christmas Day", + "2005-12-26": "Boxing Day", + "2005-12-27": "Christmas Day (Observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (Observed)", + "2006-04-14": "Good Friday", + "2006-04-17": "Easter Monday", + "2006-05-01": "May Day", + "2006-05-29": "Spring Bank Holiday", + "2006-06-02": "TT Bank Holiday", + "2006-07-05": "Tynwald Day", + "2006-08-28": "Late Summer Bank Holiday", + "2006-12-25": "Christmas Day", + "2006-12-26": "Boxing Day", + "2007-01-01": "New Year's Day", + "2007-04-06": "Good Friday", + "2007-04-09": "Easter Monday", + "2007-05-07": "May Day", + "2007-05-28": "Spring Bank Holiday", + "2007-06-01": "TT Bank Holiday", + "2007-07-05": "Tynwald Day", + "2007-08-27": "Late Summer Bank Holiday", + "2007-12-25": "Christmas Day", + "2007-12-26": "Boxing Day", + "2008-01-01": "New Year's Day", + "2008-03-21": "Good Friday", + "2008-03-24": "Easter Monday", + "2008-05-05": "May Day", + "2008-05-26": "Spring Bank Holiday", + "2008-06-06": "TT Bank Holiday", + "2008-07-07": "Tynwald Day", + "2008-08-25": "Late Summer Bank Holiday", + "2008-12-25": "Christmas Day", + "2008-12-26": "Boxing Day", + "2009-01-01": "New Year's Day", + "2009-04-10": "Good Friday", + "2009-04-13": "Easter Monday", + "2009-05-04": "May Day", + "2009-05-25": "Spring Bank Holiday", + "2009-06-05": "TT Bank Holiday", + "2009-07-06": "Tynwald Day", + "2009-08-31": "Late Summer Bank Holiday", + "2009-12-25": "Christmas Day", + "2009-12-26": "Boxing Day", + "2009-12-28": "Boxing Day (Observed)", + "2010-01-01": "New Year's Day", + "2010-04-02": "Good Friday", + "2010-04-05": "Easter Monday", + "2010-05-03": "May Day", + "2010-05-31": "Spring Bank Holiday", + "2010-06-04": "TT Bank Holiday", + "2010-07-05": "Tynwald Day", + "2010-08-30": "Late Summer Bank Holiday", + "2010-12-25": "Christmas Day", + "2010-12-26": "Boxing Day", + "2010-12-27": "Christmas Day (Observed)", + "2010-12-28": "Boxing Day (Observed)", + "2011-01-01": "New Year's Day", + "2011-01-03": "New Year's Day (Observed)", + "2011-04-22": "Good Friday", + "2011-04-25": "Easter Monday", + "2011-04-29": "Wedding of William and Catherine", + "2011-05-02": "May Day", + "2011-05-30": "Spring Bank Holiday", + "2011-06-03": "TT Bank Holiday", + "2011-07-05": "Tynwald Day", + "2011-08-29": "Late Summer Bank Holiday", + "2011-12-25": "Christmas Day", + "2011-12-26": "Boxing Day", + "2011-12-27": "Christmas Day (Observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (Observed)", + "2012-04-06": "Good Friday", + "2012-04-09": "Easter Monday", + "2012-05-07": "May Day", + "2012-06-01": "TT Bank Holiday", + "2012-06-04": "Spring Bank Holiday", + "2012-06-05": "Diamond Jubilee of Elizabeth II", + "2012-07-05": "Tynwald Day", + "2012-08-27": "Late Summer Bank Holiday", + "2012-12-25": "Christmas Day", + "2012-12-26": "Boxing Day", + "2013-01-01": "New Year's Day", + "2013-03-29": "Good Friday", + "2013-04-01": "Easter Monday", + "2013-05-06": "May Day", + "2013-05-27": "Spring Bank Holiday", + "2013-06-07": "TT Bank Holiday", + "2013-07-05": "Tynwald Day", + "2013-08-26": "Late Summer Bank Holiday", + "2013-12-25": "Christmas Day", + "2013-12-26": "Boxing Day", + "2014-01-01": "New Year's Day", + "2014-04-18": "Good Friday", + "2014-04-21": "Easter Monday", + "2014-05-05": "May Day", + "2014-05-26": "Spring Bank Holiday", + "2014-06-06": "TT Bank Holiday", + "2014-07-07": "Tynwald Day", + "2014-08-25": "Late Summer Bank Holiday", + "2014-12-25": "Christmas Day", + "2014-12-26": "Boxing Day", + "2015-01-01": "New Year's Day", + "2015-04-03": "Good Friday", + "2015-04-06": "Easter Monday", + "2015-05-04": "May Day", + "2015-05-25": "Spring Bank Holiday", + "2015-06-05": "TT Bank Holiday", + "2015-07-06": "Tynwald Day", + "2015-08-31": "Late Summer Bank Holiday", + "2015-12-25": "Christmas Day", + "2015-12-26": "Boxing Day", + "2015-12-28": "Boxing Day (Observed)", + "2016-01-01": "New Year's Day", + "2016-03-25": "Good Friday", + "2016-03-28": "Easter Monday", + "2016-05-02": "May Day", + "2016-05-30": "Spring Bank Holiday", + "2016-06-03": "TT Bank Holiday", + "2016-07-05": "Tynwald Day", + "2016-08-29": "Late Summer Bank Holiday", + "2016-12-25": "Christmas Day", + "2016-12-26": "Boxing Day", + "2016-12-27": "Christmas Day (Observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (Observed)", + "2017-04-14": "Good Friday", + "2017-04-17": "Easter Monday", + "2017-05-01": "May Day", + "2017-05-29": "Spring Bank Holiday", + "2017-06-02": "TT Bank Holiday", + "2017-07-05": "Tynwald Day", + "2017-08-28": "Late Summer Bank Holiday", + "2017-12-25": "Christmas Day", + "2017-12-26": "Boxing Day", + "2018-01-01": "New Year's Day", + "2018-03-30": "Good Friday", + "2018-04-02": "Easter Monday", + "2018-05-07": "May Day", + "2018-05-28": "Spring Bank Holiday", + "2018-06-01": "TT Bank Holiday", + "2018-07-05": "Tynwald Day", + "2018-08-27": "Late Summer Bank Holiday", + "2018-12-25": "Christmas Day", + "2018-12-26": "Boxing Day", + "2019-01-01": "New Year's Day", + "2019-04-19": "Good Friday", + "2019-04-22": "Easter Monday", + "2019-05-06": "May Day", + "2019-05-27": "Spring Bank Holiday", + "2019-06-07": "TT Bank Holiday", + "2019-07-05": "Tynwald Day", + "2019-08-26": "Late Summer Bank Holiday", + "2019-12-25": "Christmas Day", + "2019-12-26": "Boxing Day", + "2020-01-01": "New Year's Day", + "2020-04-10": "Good Friday", + "2020-04-13": "Easter Monday", + "2020-05-08": "May Day", + "2020-05-25": "Spring Bank Holiday", + "2020-06-05": "TT Bank Holiday", + "2020-07-06": "Tynwald Day", + "2020-08-31": "Late Summer Bank Holiday", + "2020-12-25": "Christmas Day", + "2020-12-26": "Boxing Day", + "2020-12-28": "Boxing Day (Observed)", + "2021-01-01": "New Year's Day", + "2021-04-02": "Good Friday", + "2021-04-05": "Easter Monday", + "2021-05-03": "May Day", + "2021-05-31": "Spring Bank Holiday", + "2021-06-04": "TT Bank Holiday", + "2021-07-05": "Tynwald Day", + "2021-08-30": "Late Summer Bank Holiday", + "2021-12-25": "Christmas Day", + "2021-12-26": "Boxing Day", + "2021-12-27": "Christmas Day (Observed)", + "2021-12-28": "Boxing Day (Observed)", + "2022-01-01": "New Year's Day", + "2022-01-03": "New Year's Day (Observed)", + "2022-04-15": "Good Friday", + "2022-04-18": "Easter Monday", + "2022-05-02": "May Day", + "2022-06-02": "Spring Bank Holiday", + "2022-06-03": "Platinum Jubilee of Elizabeth II; TT Bank Holiday", + "2022-07-05": "Tynwald Day", + "2022-08-29": "Late Summer Bank Holiday", + "2022-09-19": "State Funeral of Queen Elizabeth II", + "2022-12-25": "Christmas Day", + "2022-12-26": "Boxing Day", + "2022-12-27": "Christmas Day (Observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (Observed)", + "2023-04-07": "Good Friday", + "2023-04-10": "Easter Monday", + "2023-05-01": "May Day", + "2023-05-08": "Coronation of Charles III", + "2023-05-29": "Spring Bank Holiday", + "2023-06-02": "TT Bank Holiday", + "2023-07-05": "Tynwald Day", + "2023-08-28": "Late Summer Bank Holiday", + "2023-12-25": "Christmas Day", + "2023-12-26": "Boxing Day", + "2024-01-01": "New Year's Day", + "2024-03-29": "Good Friday", + "2024-04-01": "Easter Monday", + "2024-05-06": "May Day", + "2024-05-27": "Spring Bank Holiday", + "2024-06-07": "TT Bank Holiday", + "2024-07-05": "Tynwald Day", + "2024-08-26": "Late Summer Bank Holiday", + "2024-12-25": "Christmas Day", + "2024-12-26": "Boxing Day", + "2025-01-01": "New Year's Day", + "2025-04-18": "Good Friday", + "2025-04-21": "Easter Monday", + "2025-05-05": "May Day", + "2025-05-26": "Spring Bank Holiday", + "2025-06-06": "TT Bank Holiday", + "2025-07-07": "Tynwald Day", + "2025-08-25": "Late Summer Bank Holiday", + "2025-12-25": "Christmas Day", + "2025-12-26": "Boxing Day", + "2026-01-01": "New Year's Day", + "2026-04-03": "Good Friday", + "2026-04-06": "Easter Monday", + "2026-05-04": "May Day", + "2026-05-25": "Spring Bank Holiday", + "2026-06-05": "TT Bank Holiday", + "2026-07-06": "Tynwald Day", + "2026-08-31": "Late Summer Bank Holiday", + "2026-12-25": "Christmas Day", + "2026-12-26": "Boxing Day", + "2026-12-28": "Boxing Day (Observed)", + "2027-01-01": "New Year's Day", + "2027-03-26": "Good Friday", + "2027-03-29": "Easter Monday", + "2027-05-03": "May Day", + "2027-05-31": "Spring Bank Holiday", + "2027-06-04": "TT Bank Holiday", + "2027-07-05": "Tynwald Day", + "2027-08-30": "Late Summer Bank Holiday", + "2027-12-25": "Christmas Day", + "2027-12-26": "Boxing Day", + "2027-12-27": "Christmas Day (Observed)", + "2027-12-28": "Boxing Day (Observed)", + "2028-01-01": "New Year's Day", + "2028-01-03": "New Year's Day (Observed)", + "2028-04-14": "Good Friday", + "2028-04-17": "Easter Monday", + "2028-05-01": "May Day", + "2028-05-29": "Spring Bank Holiday", + "2028-06-02": "TT Bank Holiday", + "2028-07-05": "Tynwald Day", + "2028-08-28": "Late Summer Bank Holiday", + "2028-12-25": "Christmas Day", + "2028-12-26": "Boxing Day", + "2029-01-01": "New Year's Day", + "2029-03-30": "Good Friday", + "2029-04-02": "Easter Monday", + "2029-05-07": "May Day", + "2029-05-28": "Spring Bank Holiday", + "2029-06-01": "TT Bank Holiday", + "2029-07-05": "Tynwald Day", + "2029-08-27": "Late Summer Bank Holiday", + "2029-12-25": "Christmas Day", + "2029-12-26": "Boxing Day", + "2030-01-01": "New Year's Day", + "2030-04-19": "Good Friday", + "2030-04-22": "Easter Monday", + "2030-05-06": "May Day", + "2030-05-27": "Spring Bank Holiday", + "2030-06-07": "TT Bank Holiday", + "2030-07-05": "Tynwald Day", + "2030-08-26": "Late Summer Bank Holiday", + "2030-12-25": "Christmas Day", + "2030-12-26": "Boxing Day", + "2031-01-01": "New Year's Day", + "2031-04-11": "Good Friday", + "2031-04-14": "Easter Monday", + "2031-05-05": "May Day", + "2031-05-26": "Spring Bank Holiday", + "2031-06-06": "TT Bank Holiday", + "2031-07-07": "Tynwald Day", + "2031-08-25": "Late Summer Bank Holiday", + "2031-12-25": "Christmas Day", + "2031-12-26": "Boxing Day", + "2032-01-01": "New Year's Day", + "2032-03-26": "Good Friday", + "2032-03-29": "Easter Monday", + "2032-05-03": "May Day", + "2032-05-31": "Spring Bank Holiday", + "2032-06-04": "TT Bank Holiday", + "2032-07-05": "Tynwald Day", + "2032-08-30": "Late Summer Bank Holiday", + "2032-12-25": "Christmas Day", + "2032-12-26": "Boxing Day", + "2032-12-27": "Christmas Day (Observed)", + "2032-12-28": "Boxing Day (Observed)", + "2033-01-01": "New Year's Day", + "2033-01-03": "New Year's Day (Observed)", + "2033-04-15": "Good Friday", + "2033-04-18": "Easter Monday", + "2033-05-02": "May Day", + "2033-05-30": "Spring Bank Holiday", + "2033-06-03": "TT Bank Holiday", + "2033-07-05": "Tynwald Day", + "2033-08-29": "Late Summer Bank Holiday", + "2033-12-25": "Christmas Day", + "2033-12-26": "Boxing Day", + "2033-12-27": "Christmas Day (Observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-04-07": "Good Friday", + "2034-04-10": "Easter Monday", + "2034-05-01": "May Day", + "2034-05-29": "Spring Bank Holiday", + "2034-06-02": "TT Bank Holiday", + "2034-07-05": "Tynwald Day", + "2034-08-28": "Late Summer Bank Holiday", + "2034-12-25": "Christmas Day", + "2034-12-26": "Boxing Day", + "2035-01-01": "New Year's Day", + "2035-03-23": "Good Friday", + "2035-03-26": "Easter Monday", + "2035-05-07": "May Day", + "2035-05-28": "Spring Bank Holiday", + "2035-06-01": "TT Bank Holiday", + "2035-07-05": "Tynwald Day", + "2035-08-27": "Late Summer Bank Holiday", + "2035-12-25": "Christmas Day", + "2035-12-26": "Boxing Day", + "2036-01-01": "New Year's Day", + "2036-04-11": "Good Friday", + "2036-04-14": "Easter Monday", + "2036-05-05": "May Day", + "2036-05-26": "Spring Bank Holiday", + "2036-06-06": "TT Bank Holiday", + "2036-07-07": "Tynwald Day", + "2036-08-25": "Late Summer Bank Holiday", + "2036-12-25": "Christmas Day", + "2036-12-26": "Boxing Day", + "2037-01-01": "New Year's Day", + "2037-04-03": "Good Friday", + "2037-04-06": "Easter Monday", + "2037-05-04": "May Day", + "2037-05-25": "Spring Bank Holiday", + "2037-06-05": "TT Bank Holiday", + "2037-07-06": "Tynwald Day", + "2037-08-31": "Late Summer Bank Holiday", + "2037-12-25": "Christmas Day", + "2037-12-26": "Boxing Day", + "2037-12-28": "Boxing Day (Observed)", + "2038-01-01": "New Year's Day", + "2038-04-23": "Good Friday", + "2038-04-26": "Easter Monday", + "2038-05-03": "May Day", + "2038-05-31": "Spring Bank Holiday", + "2038-06-04": "TT Bank Holiday", + "2038-07-05": "Tynwald Day", + "2038-08-30": "Late Summer Bank Holiday", + "2038-12-25": "Christmas Day", + "2038-12-26": "Boxing Day", + "2038-12-27": "Christmas Day (Observed)", + "2038-12-28": "Boxing Day (Observed)", + "2039-01-01": "New Year's Day", + "2039-01-03": "New Year's Day (Observed)", + "2039-04-08": "Good Friday", + "2039-04-11": "Easter Monday", + "2039-05-02": "May Day", + "2039-05-30": "Spring Bank Holiday", + "2039-06-03": "TT Bank Holiday", + "2039-07-05": "Tynwald Day", + "2039-08-29": "Late Summer Bank Holiday", + "2039-12-25": "Christmas Day", + "2039-12-26": "Boxing Day", + "2039-12-27": "Christmas Day (Observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (Observed)", + "2040-03-30": "Good Friday", + "2040-04-02": "Easter Monday", + "2040-05-07": "May Day", + "2040-05-28": "Spring Bank Holiday", + "2040-06-01": "TT Bank Holiday", + "2040-07-05": "Tynwald Day", + "2040-08-27": "Late Summer Bank Holiday", + "2040-12-25": "Christmas Day", + "2040-12-26": "Boxing Day", + "2041-01-01": "New Year's Day", + "2041-04-19": "Good Friday", + "2041-04-22": "Easter Monday", + "2041-05-06": "May Day", + "2041-05-27": "Spring Bank Holiday", + "2041-06-07": "TT Bank Holiday", + "2041-07-05": "Tynwald Day", + "2041-08-26": "Late Summer Bank Holiday", + "2041-12-25": "Christmas Day", + "2041-12-26": "Boxing Day", + "2042-01-01": "New Year's Day", + "2042-04-04": "Good Friday", + "2042-04-07": "Easter Monday", + "2042-05-05": "May Day", + "2042-05-26": "Spring Bank Holiday", + "2042-06-06": "TT Bank Holiday", + "2042-07-07": "Tynwald Day", + "2042-08-25": "Late Summer Bank Holiday", + "2042-12-25": "Christmas Day", + "2042-12-26": "Boxing Day", + "2043-01-01": "New Year's Day", + "2043-03-27": "Good Friday", + "2043-03-30": "Easter Monday", + "2043-05-04": "May Day", + "2043-05-25": "Spring Bank Holiday", + "2043-06-05": "TT Bank Holiday", + "2043-07-06": "Tynwald Day", + "2043-08-31": "Late Summer Bank Holiday", + "2043-12-25": "Christmas Day", + "2043-12-26": "Boxing Day", + "2043-12-28": "Boxing Day (Observed)", + "2044-01-01": "New Year's Day", + "2044-04-15": "Good Friday", + "2044-04-18": "Easter Monday", + "2044-05-02": "May Day", + "2044-05-30": "Spring Bank Holiday", + "2044-06-03": "TT Bank Holiday", + "2044-07-05": "Tynwald Day", + "2044-08-29": "Late Summer Bank Holiday", + "2044-12-25": "Christmas Day", + "2044-12-26": "Boxing Day", + "2044-12-27": "Christmas Day (Observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (Observed)", + "2045-04-07": "Good Friday", + "2045-04-10": "Easter Monday", + "2045-05-01": "May Day", + "2045-05-29": "Spring Bank Holiday", + "2045-06-02": "TT Bank Holiday", + "2045-07-05": "Tynwald Day", + "2045-08-28": "Late Summer Bank Holiday", + "2045-12-25": "Christmas Day", + "2045-12-26": "Boxing Day", + "2046-01-01": "New Year's Day", + "2046-03-23": "Good Friday", + "2046-03-26": "Easter Monday", + "2046-05-07": "May Day", + "2046-05-28": "Spring Bank Holiday", + "2046-06-01": "TT Bank Holiday", + "2046-07-05": "Tynwald Day", + "2046-08-27": "Late Summer Bank Holiday", + "2046-12-25": "Christmas Day", + "2046-12-26": "Boxing Day", + "2047-01-01": "New Year's Day", + "2047-04-12": "Good Friday", + "2047-04-15": "Easter Monday", + "2047-05-06": "May Day", + "2047-05-27": "Spring Bank Holiday", + "2047-06-07": "TT Bank Holiday", + "2047-07-05": "Tynwald Day", + "2047-08-26": "Late Summer Bank Holiday", + "2047-12-25": "Christmas Day", + "2047-12-26": "Boxing Day", + "2048-01-01": "New Year's Day", + "2048-04-03": "Good Friday", + "2048-04-06": "Easter Monday", + "2048-05-04": "May Day", + "2048-05-25": "Spring Bank Holiday", + "2048-06-05": "TT Bank Holiday", + "2048-07-06": "Tynwald Day", + "2048-08-31": "Late Summer Bank Holiday", + "2048-12-25": "Christmas Day", + "2048-12-26": "Boxing Day", + "2048-12-28": "Boxing Day (Observed)", + "2049-01-01": "New Year's Day", + "2049-04-16": "Good Friday", + "2049-04-19": "Easter Monday", + "2049-05-03": "May Day", + "2049-05-31": "Spring Bank Holiday", + "2049-06-04": "TT Bank Holiday", + "2049-07-05": "Tynwald Day", + "2049-08-30": "Late Summer Bank Holiday", + "2049-12-25": "Christmas Day", + "2049-12-26": "Boxing Day", + "2049-12-27": "Christmas Day (Observed)", + "2049-12-28": "Boxing Day (Observed)", + "2050-01-01": "New Year's Day", + "2050-01-03": "New Year's Day (Observed)", + "2050-04-08": "Good Friday", + "2050-04-11": "Easter Monday", + "2050-05-02": "May Day", + "2050-05-30": "Spring Bank Holiday", + "2050-06-03": "TT Bank Holiday", + "2050-07-05": "Tynwald Day", + "2050-08-29": "Late Summer Bank Holiday", + "2050-12-25": "Christmas Day", + "2050-12-26": "Boxing Day", + "2050-12-27": "Christmas Day (Observed)" +} diff --git a/snapshots/countries/IN.json b/snapshots/countries/IN.json new file mode 100644 index 000000000..f59e2ffef --- /dev/null +++ b/snapshots/countries/IN.json @@ -0,0 +1,2908 @@ +{ + "1950-01-01": "Mawlid* (*estimated)", + "1950-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1950-01-26": "Republic Day", + "1950-03-22": "Bihar Day", + "1950-03-30": "Rajasthan Day", + "1950-04-01": "Odisha Day (Utkala Dibasa)", + "1950-04-02": "Palm Sunday", + "1950-04-06": "Eid al-Fitr", + "1950-04-07": "Good Friday", + "1950-04-09": "Easter Sunday", + "1950-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1950-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1950-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1950-05-09": "Rabindra Jayanti", + "1950-05-16": "Annexation Day", + "1950-05-28": "Feast of Pentecost", + "1950-06-15": "Maharana Pratap Jayanti", + "1950-07-16": "Eid ul-Fitr* (*estimated)", + "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-08-15": "Independence Day", + "1950-09-23": "Eid al-Adha* (*estimated)", + "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-10-02": "Gandhi Jayanti", + "1950-10-06": "Bathukamma Festival", + "1950-10-15": "Dussehra", + "1950-10-22": "Day of Ashura* (*estimated)", + "1950-10-31": "Sardar Patel Jayanti", + "1950-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1950-12-22": "Mawlid* (*estimated)", + "1950-12-25": "Christmas Day", + "1951-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1951-01-26": "Republic Day", + "1951-03-18": "Palm Sunday", + "1951-03-22": "Bihar Day", + "1951-03-23": "Good Friday", + "1951-03-25": "Easter Sunday", + "1951-03-30": "Rajasthan Day", + "1951-04-01": "Odisha Day (Utkala Dibasa)", + "1951-04-06": "Eid al-Fitr", + "1951-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1951-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1951-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1951-05-09": "Rabindra Jayanti", + "1951-05-13": "Feast of Pentecost", + "1951-05-16": "Annexation Day", + "1951-06-15": "Maharana Pratap Jayanti", + "1951-07-06": "Eid ul-Fitr* (*estimated)", + "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-08-15": "Independence Day", + "1951-09-12": "Eid al-Adha* (*estimated)", + "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-10-02": "Gandhi Jayanti", + "1951-10-06": "Bathukamma Festival", + "1951-10-11": "Day of Ashura* (*estimated)", + "1951-10-15": "Dussehra", + "1951-10-31": "Sardar Patel Jayanti", + "1951-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1951-12-11": "Mawlid* (*estimated)", + "1951-12-25": "Christmas Day", + "1952-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1952-01-26": "Republic Day", + "1952-03-22": "Bihar Day", + "1952-03-30": "Rajasthan Day", + "1952-04-01": "Odisha Day (Utkala Dibasa)", + "1952-04-06": "Eid al-Fitr; Palm Sunday", + "1952-04-11": "Good Friday", + "1952-04-13": "Easter Sunday", + "1952-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1952-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1952-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1952-05-09": "Rabindra Jayanti", + "1952-05-16": "Annexation Day", + "1952-06-01": "Feast of Pentecost", + "1952-06-15": "Maharana Pratap Jayanti", + "1952-06-23": "Eid ul-Fitr* (*estimated)", + "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-08-15": "Independence Day", + "1952-08-31": "Eid al-Adha* (*estimated)", + "1952-09-01": "Eid al-Adha* (*estimated)", + "1952-09-30": "Day of Ashura* (*estimated)", + "1952-10-02": "Gandhi Jayanti", + "1952-10-06": "Bathukamma Festival", + "1952-10-15": "Dussehra", + "1952-10-31": "Sardar Patel Jayanti", + "1952-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1952-11-30": "Mawlid* (*estimated)", + "1952-12-25": "Christmas Day", + "1953-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1953-01-26": "Republic Day", + "1953-03-22": "Bihar Day", + "1953-03-29": "Palm Sunday", + "1953-03-30": "Rajasthan Day", + "1953-04-01": "Odisha Day (Utkala Dibasa)", + "1953-04-03": "Good Friday", + "1953-04-05": "Easter Sunday", + "1953-04-06": "Eid al-Fitr", + "1953-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1953-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1953-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1953-05-09": "Rabindra Jayanti", + "1953-05-16": "Annexation Day", + "1953-05-24": "Feast of Pentecost", + "1953-06-13": "Eid ul-Fitr* (*estimated)", + "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-15": "Maharana Pratap Jayanti", + "1953-08-15": "Independence Day", + "1953-08-20": "Eid al-Adha* (*estimated)", + "1953-08-21": "Eid al-Adha* (*estimated)", + "1953-09-19": "Day of Ashura* (*estimated)", + "1953-10-02": "Gandhi Jayanti", + "1953-10-06": "Bathukamma Festival", + "1953-10-15": "Dussehra", + "1953-10-31": "Sardar Patel Jayanti", + "1953-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1953-11-19": "Mawlid* (*estimated)", + "1953-12-25": "Christmas Day", + "1954-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1954-01-26": "Republic Day", + "1954-03-22": "Bihar Day", + "1954-03-30": "Rajasthan Day", + "1954-04-01": "Odisha Day (Utkala Dibasa)", + "1954-04-06": "Eid al-Fitr", + "1954-04-11": "Palm Sunday", + "1954-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1954-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1954-04-16": "Good Friday", + "1954-04-18": "Easter Sunday", + "1954-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1954-05-09": "Rabindra Jayanti", + "1954-05-16": "Annexation Day", + "1954-06-02": "Eid ul-Fitr* (*estimated)", + "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-06": "Feast of Pentecost", + "1954-06-15": "Maharana Pratap Jayanti", + "1954-08-09": "Eid al-Adha* (*estimated)", + "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-15": "Independence Day", + "1954-09-08": "Day of Ashura* (*estimated)", + "1954-10-02": "Gandhi Jayanti", + "1954-10-06": "Bathukamma Festival", + "1954-10-15": "Dussehra", + "1954-10-31": "Sardar Patel Jayanti", + "1954-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1954-11-08": "Mawlid* (*estimated)", + "1954-12-25": "Christmas Day", + "1955-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1955-01-26": "Republic Day", + "1955-03-22": "Bihar Day", + "1955-03-30": "Rajasthan Day", + "1955-04-01": "Odisha Day (Utkala Dibasa)", + "1955-04-03": "Palm Sunday", + "1955-04-06": "Eid al-Fitr", + "1955-04-08": "Good Friday", + "1955-04-10": "Easter Sunday", + "1955-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1955-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1955-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1955-05-09": "Rabindra Jayanti", + "1955-05-16": "Annexation Day", + "1955-05-23": "Eid ul-Fitr* (*estimated)", + "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-29": "Feast of Pentecost", + "1955-06-15": "Maharana Pratap Jayanti", + "1955-07-30": "Eid al-Adha* (*estimated)", + "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-08-15": "Independence Day", + "1955-08-29": "Day of Ashura* (*estimated)", + "1955-10-02": "Gandhi Jayanti", + "1955-10-06": "Bathukamma Festival", + "1955-10-15": "Dussehra", + "1955-10-29": "Mawlid* (*estimated)", + "1955-10-31": "Sardar Patel Jayanti", + "1955-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1955-12-25": "Christmas Day", + "1956-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1956-01-26": "Republic Day", + "1956-03-22": "Bihar Day", + "1956-03-25": "Palm Sunday", + "1956-03-30": "Good Friday; Rajasthan Day", + "1956-04-01": "Easter Sunday; Odisha Day (Utkala Dibasa)", + "1956-04-06": "Eid al-Fitr", + "1956-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1956-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1956-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1956-05-09": "Rabindra Jayanti", + "1956-05-11": "Eid ul-Fitr* (*estimated)", + "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-16": "Annexation Day", + "1956-05-20": "Feast of Pentecost", + "1956-06-15": "Maharana Pratap Jayanti", + "1956-07-19": "Eid al-Adha* (*estimated)", + "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-08-15": "Independence Day", + "1956-08-17": "Day of Ashura* (*estimated)", + "1956-10-02": "Gandhi Jayanti", + "1956-10-06": "Bathukamma Festival", + "1956-10-15": "Dussehra", + "1956-10-17": "Mawlid* (*estimated)", + "1956-10-31": "Sardar Patel Jayanti", + "1956-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1956-12-25": "Christmas Day", + "1957-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1957-01-26": "Republic Day", + "1957-03-22": "Bihar Day", + "1957-03-30": "Rajasthan Day", + "1957-04-01": "Odisha Day (Utkala Dibasa)", + "1957-04-06": "Eid al-Fitr", + "1957-04-14": "Dr. B. R. Ambedkar's Jayanti; Palm Sunday; Pohela Boishakh; Puthandu (Tamil New Year)", + "1957-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1957-04-19": "Good Friday", + "1957-04-21": "Easter Sunday", + "1957-05-01": "Eid ul-Fitr* (*estimated); Gujarat Day; Labour Day; Maharashtra Day", + "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-09": "Rabindra Jayanti", + "1957-05-16": "Annexation Day", + "1957-06-09": "Feast of Pentecost", + "1957-06-15": "Maharana Pratap Jayanti", + "1957-07-08": "Eid al-Adha* (*estimated)", + "1957-07-09": "Eid al-Adha* (*estimated)", + "1957-08-06": "Day of Ashura* (*estimated)", + "1957-08-15": "Independence Day", + "1957-10-02": "Gandhi Jayanti", + "1957-10-06": "Bathukamma Festival; Mawlid* (*estimated)", + "1957-10-15": "Dussehra", + "1957-10-31": "Sardar Patel Jayanti", + "1957-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1957-12-25": "Christmas Day", + "1958-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1958-01-26": "Republic Day", + "1958-03-22": "Bihar Day", + "1958-03-30": "Palm Sunday; Rajasthan Day", + "1958-04-01": "Odisha Day (Utkala Dibasa)", + "1958-04-04": "Good Friday", + "1958-04-06": "Easter Sunday; Eid al-Fitr", + "1958-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1958-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1958-04-20": "Eid ul-Fitr* (*estimated)", + "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1958-05-09": "Rabindra Jayanti", + "1958-05-16": "Annexation Day", + "1958-05-25": "Feast of Pentecost", + "1958-06-15": "Maharana Pratap Jayanti", + "1958-06-27": "Eid al-Adha* (*estimated)", + "1958-06-28": "Eid al-Adha* (*estimated)", + "1958-07-27": "Day of Ashura* (*estimated)", + "1958-08-15": "Independence Day", + "1958-09-26": "Mawlid* (*estimated)", + "1958-10-02": "Gandhi Jayanti", + "1958-10-06": "Bathukamma Festival", + "1958-10-15": "Dussehra", + "1958-10-31": "Sardar Patel Jayanti", + "1958-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1958-12-25": "Christmas Day", + "1959-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1959-01-26": "Republic Day", + "1959-03-22": "Bihar Day; Palm Sunday", + "1959-03-27": "Good Friday", + "1959-03-29": "Easter Sunday", + "1959-03-30": "Rajasthan Day", + "1959-04-01": "Odisha Day (Utkala Dibasa)", + "1959-04-06": "Eid al-Fitr", + "1959-04-10": "Eid ul-Fitr* (*estimated)", + "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1959-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1959-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1959-05-09": "Rabindra Jayanti", + "1959-05-16": "Annexation Day", + "1959-05-17": "Feast of Pentecost", + "1959-06-15": "Maharana Pratap Jayanti", + "1959-06-17": "Eid al-Adha* (*estimated)", + "1959-06-18": "Eid al-Adha* (*estimated)", + "1959-07-16": "Day of Ashura* (*estimated)", + "1959-08-15": "Independence Day", + "1959-09-15": "Mawlid* (*estimated)", + "1959-10-02": "Gandhi Jayanti", + "1959-10-06": "Bathukamma Festival", + "1959-10-15": "Dussehra", + "1959-10-31": "Sardar Patel Jayanti", + "1959-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1959-12-25": "Christmas Day", + "1960-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1960-01-26": "Republic Day", + "1960-03-22": "Bihar Day", + "1960-03-28": "Eid ul-Fitr* (*estimated)", + "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-30": "Rajasthan Day", + "1960-04-01": "Odisha Day (Utkala Dibasa)", + "1960-04-06": "Eid al-Fitr", + "1960-04-10": "Palm Sunday", + "1960-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1960-04-15": "Bihu (Assamese New Year); Good Friday; Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1960-04-17": "Easter Sunday", + "1960-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1960-05-09": "Rabindra Jayanti", + "1960-05-16": "Annexation Day", + "1960-06-04": "Eid al-Adha* (*estimated)", + "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", + "1960-06-15": "Maharana Pratap Jayanti", + "1960-07-04": "Day of Ashura* (*estimated)", + "1960-08-15": "Independence Day", + "1960-09-03": "Mawlid* (*estimated)", + "1960-10-02": "Gandhi Jayanti", + "1960-10-06": "Bathukamma Festival", + "1960-10-15": "Dussehra", + "1960-10-31": "Sardar Patel Jayanti", + "1960-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1960-12-25": "Christmas Day", + "1961-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1961-01-26": "Republic Day", + "1961-03-18": "Eid ul-Fitr* (*estimated)", + "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-22": "Bihar Day", + "1961-03-26": "Palm Sunday", + "1961-03-30": "Rajasthan Day", + "1961-03-31": "Good Friday", + "1961-04-01": "Odisha Day (Utkala Dibasa)", + "1961-04-02": "Easter Sunday", + "1961-04-06": "Eid al-Fitr", + "1961-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1961-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1961-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1961-05-09": "Rabindra Jayanti", + "1961-05-16": "Annexation Day", + "1961-05-21": "Feast of Pentecost", + "1961-05-25": "Eid al-Adha* (*estimated)", + "1961-05-26": "Eid al-Adha* (*estimated)", + "1961-06-15": "Maharana Pratap Jayanti", + "1961-06-23": "Day of Ashura* (*estimated)", + "1961-08-15": "Independence Day", + "1961-08-23": "Mawlid* (*estimated)", + "1961-10-02": "Gandhi Jayanti", + "1961-10-06": "Bathukamma Festival", + "1961-10-15": "Dussehra", + "1961-10-31": "Sardar Patel Jayanti", + "1961-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1961-12-25": "Christmas Day", + "1962-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1962-01-26": "Republic Day", + "1962-03-07": "Eid ul-Fitr* (*estimated)", + "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-22": "Bihar Day", + "1962-03-30": "Rajasthan Day", + "1962-04-01": "Odisha Day (Utkala Dibasa)", + "1962-04-06": "Eid al-Fitr", + "1962-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1962-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Palm Sunday; Pohela Boishakh; Puthandu (Tamil New Year)", + "1962-04-20": "Good Friday", + "1962-04-22": "Easter Sunday", + "1962-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1962-05-09": "Rabindra Jayanti", + "1962-05-14": "Eid al-Adha* (*estimated)", + "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-16": "Annexation Day", + "1962-06-10": "Feast of Pentecost", + "1962-06-12": "Day of Ashura* (*estimated)", + "1962-06-15": "Maharana Pratap Jayanti", + "1962-08-12": "Mawlid* (*estimated)", + "1962-08-15": "Independence Day", + "1962-10-02": "Gandhi Jayanti", + "1962-10-06": "Bathukamma Festival", + "1962-10-15": "Dussehra", + "1962-10-31": "Sardar Patel Jayanti", + "1962-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1962-12-25": "Christmas Day", + "1963-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1963-01-26": "Republic Day", + "1963-02-24": "Eid ul-Fitr* (*estimated)", + "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-03-22": "Bihar Day", + "1963-03-30": "Rajasthan Day", + "1963-04-01": "Odisha Day (Utkala Dibasa)", + "1963-04-06": "Eid al-Fitr", + "1963-04-07": "Palm Sunday", + "1963-04-12": "Good Friday", + "1963-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday; Pohela Boishakh; Puthandu (Tamil New Year)", + "1963-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1963-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1963-05-03": "Eid al-Adha* (*estimated)", + "1963-05-04": "Eid al-Adha* (*estimated)", + "1963-05-09": "Rabindra Jayanti", + "1963-05-16": "Annexation Day", + "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", + "1963-06-15": "Maharana Pratap Jayanti", + "1963-08-02": "Mawlid* (*estimated)", + "1963-08-15": "Independence Day", + "1963-10-02": "Gandhi Jayanti", + "1963-10-06": "Bathukamma Festival", + "1963-10-15": "Dussehra", + "1963-10-31": "Sardar Patel Jayanti", + "1963-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1963-12-25": "Christmas Day", + "1964-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1964-01-26": "Republic Day", + "1964-02-14": "Eid ul-Fitr* (*estimated)", + "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-03-22": "Bihar Day; Palm Sunday", + "1964-03-27": "Good Friday", + "1964-03-29": "Easter Sunday", + "1964-03-30": "Rajasthan Day", + "1964-04-01": "Odisha Day (Utkala Dibasa)", + "1964-04-06": "Eid al-Fitr", + "1964-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1964-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1964-04-22": "Eid al-Adha* (*estimated)", + "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1964-05-09": "Rabindra Jayanti", + "1964-05-16": "Annexation Day", + "1964-05-17": "Feast of Pentecost", + "1964-05-21": "Day of Ashura* (*estimated)", + "1964-06-15": "Maharana Pratap Jayanti", + "1964-07-21": "Mawlid* (*estimated)", + "1964-08-15": "Independence Day", + "1964-10-02": "Gandhi Jayanti", + "1964-10-06": "Bathukamma Festival", + "1964-10-15": "Dussehra", + "1964-10-31": "Sardar Patel Jayanti", + "1964-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1964-12-25": "Christmas Day", + "1965-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1965-01-26": "Republic Day", + "1965-02-02": "Eid ul-Fitr* (*estimated)", + "1965-02-03": "Eid ul-Fitr* (*estimated)", + "1965-03-22": "Bihar Day", + "1965-03-30": "Rajasthan Day", + "1965-04-01": "Odisha Day (Utkala Dibasa)", + "1965-04-06": "Eid al-Fitr", + "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1965-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1965-04-16": "Good Friday", + "1965-04-18": "Easter Sunday", + "1965-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1965-05-09": "Rabindra Jayanti", + "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-16": "Annexation Day", + "1965-06-06": "Feast of Pentecost", + "1965-06-15": "Maharana Pratap Jayanti", + "1965-07-10": "Mawlid* (*estimated)", + "1965-08-15": "Independence Day", + "1965-10-02": "Gandhi Jayanti", + "1965-10-06": "Bathukamma Festival", + "1965-10-15": "Dussehra", + "1965-10-31": "Sardar Patel Jayanti", + "1965-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1965-12-25": "Christmas Day", + "1966-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1966-01-22": "Eid ul-Fitr* (*estimated)", + "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-26": "Republic Day", + "1966-03-22": "Bihar Day", + "1966-03-30": "Rajasthan Day", + "1966-04-01": "Eid al-Adha* (*estimated); Odisha Day (Utkala Dibasa)", + "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-03": "Palm Sunday", + "1966-04-06": "Eid al-Fitr", + "1966-04-08": "Good Friday", + "1966-04-10": "Easter Sunday", + "1966-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1966-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1966-04-30": "Day of Ashura* (*estimated)", + "1966-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1966-05-09": "Rabindra Jayanti", + "1966-05-16": "Annexation Day", + "1966-05-29": "Feast of Pentecost", + "1966-06-15": "Maharana Pratap Jayanti", + "1966-07-01": "Mawlid* (*estimated)", + "1966-08-15": "Independence Day", + "1966-10-02": "Gandhi Jayanti", + "1966-10-06": "Bathukamma Festival", + "1966-10-15": "Dussehra", + "1966-10-31": "Sardar Patel Jayanti", + "1966-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1966-12-25": "Christmas Day", + "1967-01-12": "Eid ul-Fitr* (*estimated)", + "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1967-01-26": "Republic Day", + "1967-03-19": "Palm Sunday", + "1967-03-21": "Eid al-Adha* (*estimated)", + "1967-03-22": "Bihar Day; Eid al-Adha* (*estimated)", + "1967-03-24": "Good Friday", + "1967-03-26": "Easter Sunday", + "1967-03-30": "Rajasthan Day", + "1967-04-01": "Odisha Day (Utkala Dibasa)", + "1967-04-06": "Eid al-Fitr", + "1967-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1967-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1967-04-20": "Day of Ashura* (*estimated)", + "1967-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1967-05-09": "Rabindra Jayanti", + "1967-05-14": "Feast of Pentecost", + "1967-05-16": "Annexation Day", + "1967-06-15": "Maharana Pratap Jayanti", + "1967-06-19": "Mawlid* (*estimated)", + "1967-08-15": "Independence Day", + "1967-10-02": "Gandhi Jayanti", + "1967-10-06": "Bathukamma Festival", + "1967-10-15": "Dussehra", + "1967-10-31": "Sardar Patel Jayanti", + "1967-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1967-12-25": "Christmas Day", + "1968-01-01": "Eid ul-Fitr* (*estimated)", + "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1968-01-26": "Republic Day", + "1968-03-09": "Eid al-Adha* (*estimated)", + "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-22": "Bihar Day", + "1968-03-30": "Rajasthan Day", + "1968-04-01": "Odisha Day (Utkala Dibasa)", + "1968-04-06": "Eid al-Fitr", + "1968-04-07": "Palm Sunday", + "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-12": "Good Friday", + "1968-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday; Pohela Boishakh; Puthandu (Tamil New Year)", + "1968-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1968-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1968-05-09": "Rabindra Jayanti", + "1968-05-16": "Annexation Day", + "1968-06-02": "Feast of Pentecost", + "1968-06-08": "Mawlid* (*estimated)", + "1968-06-15": "Maharana Pratap Jayanti", + "1968-08-15": "Independence Day", + "1968-10-02": "Gandhi Jayanti", + "1968-10-06": "Bathukamma Festival", + "1968-10-15": "Dussehra", + "1968-10-31": "Sardar Patel Jayanti", + "1968-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1968-12-21": "Eid ul-Fitr* (*estimated)", + "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-25": "Christmas Day", + "1969-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1969-01-26": "Republic Day", + "1969-02-27": "Eid al-Adha* (*estimated)", + "1969-02-28": "Eid al-Adha* (*estimated)", + "1969-03-22": "Bihar Day", + "1969-03-28": "Day of Ashura* (*estimated)", + "1969-03-30": "Palm Sunday; Rajasthan Day", + "1969-04-01": "Odisha Day (Utkala Dibasa)", + "1969-04-04": "Good Friday", + "1969-04-06": "Easter Sunday; Eid al-Fitr", + "1969-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1969-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1969-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1969-05-09": "Rabindra Jayanti", + "1969-05-16": "Annexation Day", + "1969-05-25": "Feast of Pentecost", + "1969-05-28": "Mawlid* (*estimated)", + "1969-06-15": "Maharana Pratap Jayanti", + "1969-08-15": "Independence Day", + "1969-10-02": "Gandhi Jayanti", + "1969-10-06": "Bathukamma Festival", + "1969-10-15": "Dussehra", + "1969-10-31": "Sardar Patel Jayanti", + "1969-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1969-12-10": "Eid ul-Fitr* (*estimated)", + "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-25": "Christmas Day", + "1970-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1970-01-26": "Republic Day", + "1970-02-16": "Eid al-Adha* (*estimated)", + "1970-02-17": "Eid al-Adha* (*estimated)", + "1970-03-18": "Day of Ashura* (*estimated)", + "1970-03-22": "Bihar Day; Palm Sunday", + "1970-03-27": "Good Friday", + "1970-03-29": "Easter Sunday", + "1970-03-30": "Rajasthan Day", + "1970-04-01": "Odisha Day (Utkala Dibasa)", + "1970-04-06": "Eid al-Fitr", + "1970-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1970-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1970-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1970-05-09": "Rabindra Jayanti", + "1970-05-16": "Annexation Day", + "1970-05-17": "Feast of Pentecost", + "1970-05-18": "Mawlid* (*estimated)", + "1970-06-15": "Maharana Pratap Jayanti", + "1970-08-15": "Independence Day", + "1970-10-02": "Gandhi Jayanti", + "1970-10-06": "Bathukamma Festival", + "1970-10-15": "Dussehra", + "1970-10-31": "Sardar Patel Jayanti", + "1970-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1970-11-30": "Eid ul-Fitr* (*estimated)", + "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-12-25": "Christmas Day", + "1971-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1971-01-26": "Republic Day", + "1971-02-06": "Eid al-Adha* (*estimated)", + "1971-02-07": "Eid al-Adha* (*estimated)", + "1971-03-07": "Day of Ashura* (*estimated)", + "1971-03-22": "Bihar Day", + "1971-03-30": "Rajasthan Day", + "1971-04-01": "Odisha Day (Utkala Dibasa)", + "1971-04-04": "Palm Sunday", + "1971-04-06": "Eid al-Fitr", + "1971-04-09": "Good Friday", + "1971-04-11": "Easter Sunday", + "1971-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1971-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1971-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1971-05-07": "Mawlid* (*estimated)", + "1971-05-09": "Rabindra Jayanti", + "1971-05-16": "Annexation Day", + "1971-05-30": "Feast of Pentecost", + "1971-06-15": "Maharana Pratap Jayanti", + "1971-08-15": "Independence Day", + "1971-10-02": "Gandhi Jayanti", + "1971-10-06": "Bathukamma Festival", + "1971-10-15": "Dussehra", + "1971-10-31": "Sardar Patel Jayanti", + "1971-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1971-11-19": "Eid ul-Fitr* (*estimated)", + "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-12-25": "Christmas Day", + "1972-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", + "1972-01-27": "Eid al-Adha* (*estimated)", + "1972-02-25": "Day of Ashura* (*estimated)", + "1972-03-22": "Bihar Day", + "1972-03-26": "Palm Sunday", + "1972-03-30": "Rajasthan Day", + "1972-03-31": "Good Friday", + "1972-04-01": "Odisha Day (Utkala Dibasa)", + "1972-04-02": "Easter Sunday", + "1972-04-06": "Eid al-Fitr", + "1972-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1972-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1972-04-25": "Mawlid* (*estimated)", + "1972-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1972-05-09": "Rabindra Jayanti", + "1972-05-16": "Annexation Day", + "1972-05-21": "Feast of Pentecost", + "1972-06-15": "Maharana Pratap Jayanti", + "1972-08-15": "Independence Day", + "1972-10-02": "Gandhi Jayanti", + "1972-10-06": "Bathukamma Festival", + "1972-10-15": "Dussehra", + "1972-10-31": "Sardar Patel Jayanti", + "1972-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1972-11-07": "Eid ul-Fitr* (*estimated)", + "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-12-25": "Christmas Day", + "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal; Uttarayan", + "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-26": "Republic Day", + "1973-02-13": "Day of Ashura* (*estimated)", + "1973-03-22": "Bihar Day", + "1973-03-30": "Rajasthan Day", + "1973-04-01": "Odisha Day (Utkala Dibasa)", + "1973-04-06": "Eid al-Fitr", + "1973-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1973-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Mawlid* (*estimated); Palm Sunday; Pohela Boishakh; Puthandu (Tamil New Year)", + "1973-04-20": "Good Friday", + "1973-04-22": "Easter Sunday", + "1973-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1973-05-09": "Rabindra Jayanti", + "1973-05-16": "Annexation Day", + "1973-06-10": "Feast of Pentecost", + "1973-06-15": "Maharana Pratap Jayanti", + "1973-08-15": "Independence Day", + "1973-10-02": "Gandhi Jayanti", + "1973-10-06": "Bathukamma Festival", + "1973-10-15": "Dussehra", + "1973-10-27": "Eid ul-Fitr* (*estimated)", + "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-31": "Sardar Patel Jayanti", + "1973-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1973-12-25": "Christmas Day", + "1974-01-03": "Eid al-Adha* (*estimated)", + "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1974-01-26": "Republic Day", + "1974-02-02": "Day of Ashura* (*estimated)", + "1974-03-22": "Bihar Day", + "1974-03-30": "Rajasthan Day", + "1974-04-01": "Odisha Day (Utkala Dibasa)", + "1974-04-04": "Mawlid* (*estimated)", + "1974-04-06": "Eid al-Fitr", + "1974-04-07": "Palm Sunday", + "1974-04-12": "Good Friday", + "1974-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday; Pohela Boishakh; Puthandu (Tamil New Year)", + "1974-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1974-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1974-05-09": "Rabindra Jayanti", + "1974-05-16": "Annexation Day", + "1974-06-02": "Feast of Pentecost", + "1974-06-15": "Maharana Pratap Jayanti", + "1974-08-15": "Independence Day", + "1974-10-02": "Gandhi Jayanti", + "1974-10-06": "Bathukamma Festival", + "1974-10-15": "Dussehra", + "1974-10-16": "Eid ul-Fitr* (*estimated)", + "1974-10-17": "Eid ul-Fitr* (*estimated)", + "1974-10-31": "Sardar Patel Jayanti", + "1974-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1974-12-24": "Eid al-Adha* (*estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1975-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-26": "Republic Day", + "1975-03-22": "Bihar Day", + "1975-03-23": "Palm Sunday", + "1975-03-24": "Mawlid* (*estimated)", + "1975-03-28": "Good Friday", + "1975-03-30": "Easter Sunday; Rajasthan Day", + "1975-04-01": "Odisha Day (Utkala Dibasa)", + "1975-04-06": "Eid al-Fitr", + "1975-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1975-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1975-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1975-05-09": "Rabindra Jayanti", + "1975-05-16": "Annexation Day", + "1975-05-18": "Feast of Pentecost", + "1975-06-15": "Maharana Pratap Jayanti", + "1975-08-15": "Independence Day", + "1975-10-02": "Gandhi Jayanti", + "1975-10-06": "Bathukamma Festival; Eid ul-Fitr* (*estimated)", + "1975-10-07": "Eid ul-Fitr* (*estimated)", + "1975-10-15": "Dussehra", + "1975-10-31": "Sardar Patel Jayanti", + "1975-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1975-12-13": "Eid al-Adha* (*estimated)", + "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-12-25": "Christmas Day", + "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1976-01-26": "Republic Day", + "1976-03-12": "Mawlid* (*estimated)", + "1976-03-22": "Bihar Day", + "1976-03-30": "Rajasthan Day", + "1976-04-01": "Odisha Day (Utkala Dibasa)", + "1976-04-06": "Eid al-Fitr", + "1976-04-11": "Palm Sunday", + "1976-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1976-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1976-04-16": "Good Friday", + "1976-04-18": "Easter Sunday", + "1976-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1976-05-09": "Rabindra Jayanti", + "1976-05-16": "Annexation Day", + "1976-06-06": "Feast of Pentecost", + "1976-06-15": "Maharana Pratap Jayanti", + "1976-08-15": "Independence Day", + "1976-09-24": "Eid ul-Fitr* (*estimated)", + "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-10-02": "Gandhi Jayanti", + "1976-10-06": "Bathukamma Festival", + "1976-10-15": "Dussehra", + "1976-10-31": "Sardar Patel Jayanti", + "1976-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1976-12-01": "Eid al-Adha* (*estimated)", + "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-25": "Christmas Day", + "1976-12-31": "Day of Ashura* (*estimated)", + "1977-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1977-01-26": "Republic Day", + "1977-03-02": "Mawlid* (*estimated)", + "1977-03-22": "Bihar Day", + "1977-03-30": "Rajasthan Day", + "1977-04-01": "Odisha Day (Utkala Dibasa)", + "1977-04-03": "Palm Sunday", + "1977-04-06": "Eid al-Fitr", + "1977-04-08": "Good Friday", + "1977-04-10": "Easter Sunday", + "1977-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1977-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1977-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1977-05-09": "Rabindra Jayanti", + "1977-05-16": "Annexation Day", + "1977-05-29": "Feast of Pentecost", + "1977-06-15": "Maharana Pratap Jayanti", + "1977-08-15": "Independence Day", + "1977-09-14": "Eid ul-Fitr* (*estimated)", + "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-10-02": "Gandhi Jayanti", + "1977-10-06": "Bathukamma Festival", + "1977-10-15": "Dussehra", + "1977-10-31": "Sardar Patel Jayanti", + "1977-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1977-11-21": "Eid al-Adha* (*estimated)", + "1977-11-22": "Eid al-Adha* (*estimated)", + "1977-12-20": "Day of Ashura* (*estimated)", + "1977-12-25": "Christmas Day", + "1978-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1978-01-26": "Republic Day", + "1978-02-19": "Mawlid* (*estimated)", + "1978-03-19": "Palm Sunday", + "1978-03-22": "Bihar Day", + "1978-03-24": "Good Friday", + "1978-03-26": "Easter Sunday", + "1978-03-30": "Rajasthan Day", + "1978-04-01": "Odisha Day (Utkala Dibasa)", + "1978-04-06": "Eid al-Fitr", + "1978-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1978-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1978-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1978-05-09": "Rabindra Jayanti", + "1978-05-14": "Feast of Pentecost", + "1978-05-16": "Annexation Day", + "1978-06-15": "Maharana Pratap Jayanti", + "1978-08-15": "Independence Day", + "1978-09-03": "Eid ul-Fitr* (*estimated)", + "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-10-02": "Gandhi Jayanti", + "1978-10-06": "Bathukamma Festival", + "1978-10-15": "Dussehra", + "1978-10-31": "Sardar Patel Jayanti", + "1978-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1978-11-10": "Eid al-Adha* (*estimated)", + "1978-11-11": "Eid al-Adha* (*estimated)", + "1978-12-10": "Day of Ashura* (*estimated)", + "1978-12-25": "Christmas Day", + "1979-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1979-01-26": "Republic Day", + "1979-02-09": "Mawlid* (*estimated)", + "1979-03-22": "Bihar Day", + "1979-03-30": "Rajasthan Day", + "1979-04-01": "Odisha Day (Utkala Dibasa)", + "1979-04-06": "Eid al-Fitr", + "1979-04-08": "Palm Sunday", + "1979-04-13": "Good Friday", + "1979-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1979-04-15": "Bihu (Assamese New Year); Easter Sunday; Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1979-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1979-05-09": "Rabindra Jayanti", + "1979-05-16": "Annexation Day", + "1979-06-03": "Feast of Pentecost", + "1979-06-15": "Maharana Pratap Jayanti", + "1979-08-15": "Independence Day", + "1979-08-23": "Eid ul-Fitr* (*estimated)", + "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-10-02": "Gandhi Jayanti", + "1979-10-06": "Bathukamma Festival", + "1979-10-15": "Dussehra", + "1979-10-31": "Eid al-Adha* (*estimated); Sardar Patel Jayanti", + "1979-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Eid al-Adha* (*estimated); Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1979-11-29": "Day of Ashura* (*estimated)", + "1979-12-25": "Christmas Day", + "1980-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1980-01-26": "Republic Day", + "1980-01-30": "Mawlid* (*estimated)", + "1980-03-22": "Bihar Day", + "1980-03-30": "Palm Sunday; Rajasthan Day", + "1980-04-01": "Odisha Day (Utkala Dibasa)", + "1980-04-04": "Good Friday", + "1980-04-06": "Easter Sunday; Eid al-Fitr", + "1980-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1980-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1980-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1980-05-09": "Rabindra Jayanti", + "1980-05-16": "Annexation Day", + "1980-05-25": "Feast of Pentecost", + "1980-06-15": "Maharana Pratap Jayanti", + "1980-08-12": "Eid ul-Fitr* (*estimated)", + "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-15": "Independence Day", + "1980-10-02": "Gandhi Jayanti", + "1980-10-06": "Bathukamma Festival", + "1980-10-15": "Dussehra", + "1980-10-19": "Eid al-Adha* (*estimated)", + "1980-10-20": "Eid al-Adha* (*estimated)", + "1980-10-31": "Sardar Patel Jayanti", + "1980-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1980-11-18": "Day of Ashura* (*estimated)", + "1980-12-25": "Christmas Day", + "1981-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1981-01-18": "Mawlid* (*estimated)", + "1981-01-26": "Republic Day", + "1981-03-22": "Bihar Day", + "1981-03-30": "Rajasthan Day", + "1981-04-01": "Odisha Day (Utkala Dibasa)", + "1981-04-06": "Eid al-Fitr", + "1981-04-12": "Palm Sunday", + "1981-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1981-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1981-04-17": "Good Friday", + "1981-04-19": "Easter Sunday", + "1981-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1981-05-09": "Rabindra Jayanti", + "1981-05-16": "Annexation Day", + "1981-06-07": "Feast of Pentecost", + "1981-06-15": "Maharana Pratap Jayanti", + "1981-08-01": "Eid ul-Fitr* (*estimated)", + "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-15": "Independence Day", + "1981-10-02": "Gandhi Jayanti", + "1981-10-06": "Bathukamma Festival", + "1981-10-08": "Eid al-Adha* (*estimated)", + "1981-10-09": "Eid al-Adha* (*estimated)", + "1981-10-15": "Dussehra", + "1981-10-31": "Sardar Patel Jayanti", + "1981-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1981-11-06": "Day of Ashura* (*estimated)", + "1981-12-25": "Christmas Day", + "1982-01-07": "Mawlid* (*estimated)", + "1982-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1982-01-26": "Republic Day", + "1982-03-22": "Bihar Day", + "1982-03-30": "Rajasthan Day", + "1982-04-01": "Odisha Day (Utkala Dibasa)", + "1982-04-04": "Palm Sunday", + "1982-04-06": "Eid al-Fitr", + "1982-04-09": "Good Friday", + "1982-04-11": "Easter Sunday", + "1982-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1982-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1982-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1982-05-09": "Rabindra Jayanti", + "1982-05-16": "Annexation Day", + "1982-05-30": "Feast of Pentecost", + "1982-06-15": "Maharana Pratap Jayanti", + "1982-07-21": "Eid ul-Fitr* (*estimated)", + "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-08-15": "Independence Day", + "1982-09-27": "Eid al-Adha* (*estimated)", + "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-10-02": "Gandhi Jayanti", + "1982-10-06": "Bathukamma Festival", + "1982-10-15": "Dussehra", + "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-31": "Sardar Patel Jayanti", + "1982-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1982-12-25": "Christmas Day", + "1982-12-27": "Mawlid* (*estimated)", + "1983-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1983-01-26": "Republic Day", + "1983-03-22": "Bihar Day", + "1983-03-27": "Palm Sunday", + "1983-03-30": "Rajasthan Day", + "1983-04-01": "Good Friday; Odisha Day (Utkala Dibasa)", + "1983-04-03": "Easter Sunday", + "1983-04-06": "Eid al-Fitr", + "1983-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1983-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1983-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1983-05-09": "Rabindra Jayanti", + "1983-05-16": "Annexation Day", + "1983-05-22": "Feast of Pentecost", + "1983-06-15": "Maharana Pratap Jayanti", + "1983-07-11": "Eid ul-Fitr* (*estimated)", + "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-08-15": "Independence Day", + "1983-09-17": "Eid al-Adha* (*estimated)", + "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-10-02": "Gandhi Jayanti", + "1983-10-06": "Bathukamma Festival", + "1983-10-15": "Dussehra", + "1983-10-16": "Day of Ashura* (*estimated)", + "1983-10-31": "Sardar Patel Jayanti", + "1983-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1983-12-16": "Mawlid* (*estimated)", + "1983-12-25": "Christmas Day", + "1984-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1984-01-26": "Republic Day", + "1984-03-22": "Bihar Day", + "1984-03-30": "Rajasthan Day", + "1984-04-01": "Odisha Day (Utkala Dibasa)", + "1984-04-06": "Eid al-Fitr", + "1984-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1984-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Palm Sunday; Pohela Boishakh; Puthandu (Tamil New Year)", + "1984-04-20": "Good Friday", + "1984-04-22": "Easter Sunday", + "1984-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1984-05-09": "Rabindra Jayanti", + "1984-05-16": "Annexation Day", + "1984-06-10": "Feast of Pentecost", + "1984-06-15": "Maharana Pratap Jayanti", + "1984-06-30": "Eid ul-Fitr* (*estimated)", + "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-08-15": "Independence Day", + "1984-09-05": "Eid al-Adha* (*estimated)", + "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-10-02": "Gandhi Jayanti", + "1984-10-05": "Day of Ashura* (*estimated)", + "1984-10-06": "Bathukamma Festival", + "1984-10-15": "Dussehra", + "1984-10-31": "Sardar Patel Jayanti", + "1984-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1984-12-04": "Mawlid* (*estimated)", + "1984-12-25": "Christmas Day", + "1985-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1985-01-26": "Republic Day", + "1985-03-22": "Bihar Day", + "1985-03-30": "Rajasthan Day", + "1985-03-31": "Palm Sunday", + "1985-04-01": "Odisha Day (Utkala Dibasa)", + "1985-04-05": "Good Friday", + "1985-04-06": "Eid al-Fitr", + "1985-04-07": "Easter Sunday", + "1985-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1985-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1985-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1985-05-09": "Rabindra Jayanti", + "1985-05-16": "Annexation Day", + "1985-05-26": "Feast of Pentecost", + "1985-06-15": "Maharana Pratap Jayanti", + "1985-06-19": "Eid ul-Fitr* (*estimated)", + "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-08-15": "Independence Day", + "1985-08-26": "Eid al-Adha* (*estimated)", + "1985-08-27": "Eid al-Adha* (*estimated)", + "1985-09-24": "Day of Ashura* (*estimated)", + "1985-10-02": "Gandhi Jayanti", + "1985-10-06": "Bathukamma Festival", + "1985-10-15": "Dussehra", + "1985-10-31": "Sardar Patel Jayanti", + "1985-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1985-11-24": "Mawlid* (*estimated)", + "1985-12-25": "Christmas Day", + "1986-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1986-01-26": "Republic Day", + "1986-03-22": "Bihar Day", + "1986-03-23": "Palm Sunday", + "1986-03-28": "Good Friday", + "1986-03-30": "Easter Sunday; Rajasthan Day", + "1986-04-01": "Odisha Day (Utkala Dibasa)", + "1986-04-06": "Eid al-Fitr", + "1986-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1986-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1986-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1986-05-09": "Rabindra Jayanti", + "1986-05-16": "Annexation Day", + "1986-05-18": "Feast of Pentecost", + "1986-06-08": "Eid ul-Fitr* (*estimated)", + "1986-06-09": "Eid ul-Fitr* (*estimated)", + "1986-06-15": "Maharana Pratap Jayanti", + "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", + "1986-08-16": "Eid al-Adha* (*estimated)", + "1986-09-14": "Day of Ashura* (*estimated)", + "1986-10-02": "Gandhi Jayanti", + "1986-10-06": "Bathukamma Festival", + "1986-10-15": "Dussehra", + "1986-10-31": "Sardar Patel Jayanti", + "1986-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1986-11-14": "Mawlid* (*estimated)", + "1986-12-25": "Christmas Day", + "1987-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1987-01-26": "Republic Day", + "1987-03-22": "Bihar Day", + "1987-03-30": "Rajasthan Day", + "1987-04-01": "Odisha Day (Utkala Dibasa)", + "1987-04-06": "Eid al-Fitr", + "1987-04-12": "Palm Sunday", + "1987-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1987-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1987-04-17": "Good Friday", + "1987-04-19": "Easter Sunday", + "1987-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1987-05-09": "Rabindra Jayanti", + "1987-05-16": "Annexation Day", + "1987-05-28": "Eid ul-Fitr* (*estimated)", + "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-06-07": "Feast of Pentecost", + "1987-06-15": "Maharana Pratap Jayanti", + "1987-08-04": "Eid al-Adha* (*estimated)", + "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-15": "Independence Day", + "1987-09-03": "Day of Ashura* (*estimated)", + "1987-10-02": "Gandhi Jayanti", + "1987-10-06": "Bathukamma Festival", + "1987-10-15": "Dussehra", + "1987-10-31": "Sardar Patel Jayanti", + "1987-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1987-11-03": "Mawlid* (*estimated)", + "1987-12-25": "Christmas Day", + "1988-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1988-01-26": "Republic Day", + "1988-03-22": "Bihar Day", + "1988-03-27": "Palm Sunday", + "1988-03-30": "Rajasthan Day", + "1988-04-01": "Good Friday; Odisha Day (Utkala Dibasa)", + "1988-04-03": "Easter Sunday", + "1988-04-06": "Eid al-Fitr", + "1988-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1988-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1988-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1988-05-09": "Rabindra Jayanti", + "1988-05-16": "Annexation Day; Eid ul-Fitr* (*estimated)", + "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-22": "Feast of Pentecost", + "1988-06-15": "Maharana Pratap Jayanti", + "1988-07-23": "Eid al-Adha* (*estimated)", + "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-08-15": "Independence Day", + "1988-08-22": "Day of Ashura* (*estimated)", + "1988-10-02": "Gandhi Jayanti", + "1988-10-06": "Bathukamma Festival", + "1988-10-15": "Dussehra", + "1988-10-22": "Mawlid* (*estimated)", + "1988-10-31": "Sardar Patel Jayanti", + "1988-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1988-12-25": "Christmas Day", + "1989-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1989-01-26": "Republic Day", + "1989-03-19": "Palm Sunday", + "1989-03-22": "Bihar Day", + "1989-03-24": "Good Friday", + "1989-03-26": "Easter Sunday", + "1989-03-30": "Rajasthan Day", + "1989-04-01": "Odisha Day (Utkala Dibasa)", + "1989-04-06": "Eid al-Fitr", + "1989-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1989-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1989-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1989-05-06": "Eid ul-Fitr* (*estimated)", + "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-09": "Rabindra Jayanti", + "1989-05-14": "Feast of Pentecost", + "1989-05-16": "Annexation Day", + "1989-06-15": "Maharana Pratap Jayanti", + "1989-07-13": "Eid al-Adha* (*estimated)", + "1989-07-14": "Eid al-Adha* (*estimated)", + "1989-08-11": "Day of Ashura* (*estimated)", + "1989-08-15": "Independence Day", + "1989-10-02": "Gandhi Jayanti", + "1989-10-06": "Bathukamma Festival", + "1989-10-11": "Mawlid* (*estimated)", + "1989-10-15": "Dussehra", + "1989-10-31": "Sardar Patel Jayanti", + "1989-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1989-12-25": "Christmas Day", + "1990-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1990-01-26": "Republic Day", + "1990-03-22": "Bihar Day", + "1990-03-30": "Rajasthan Day", + "1990-04-01": "Odisha Day (Utkala Dibasa)", + "1990-04-06": "Eid al-Fitr", + "1990-04-08": "Palm Sunday", + "1990-04-13": "Good Friday", + "1990-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1990-04-15": "Bihu (Assamese New Year); Easter Sunday; Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1990-04-26": "Eid ul-Fitr* (*estimated)", + "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1990-05-09": "Rabindra Jayanti", + "1990-05-16": "Annexation Day", + "1990-06-03": "Feast of Pentecost", + "1990-06-15": "Maharana Pratap Jayanti", + "1990-07-02": "Eid al-Adha* (*estimated)", + "1990-07-03": "Eid al-Adha* (*estimated)", + "1990-08-01": "Day of Ashura* (*estimated)", + "1990-08-15": "Independence Day", + "1990-10-01": "Mawlid* (*estimated)", + "1990-10-02": "Gandhi Jayanti", + "1990-10-06": "Bathukamma Festival", + "1990-10-15": "Dussehra", + "1990-10-31": "Sardar Patel Jayanti", + "1990-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1990-12-25": "Christmas Day", + "1991-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1991-01-26": "Republic Day", + "1991-03-22": "Bihar Day", + "1991-03-24": "Palm Sunday", + "1991-03-29": "Good Friday", + "1991-03-30": "Rajasthan Day", + "1991-03-31": "Easter Sunday", + "1991-04-01": "Odisha Day (Utkala Dibasa)", + "1991-04-06": "Eid al-Fitr", + "1991-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1991-04-15": "Bihu (Assamese New Year); Eid ul-Fitr* (*estimated); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1991-05-09": "Rabindra Jayanti", + "1991-05-16": "Annexation Day", + "1991-05-19": "Feast of Pentecost", + "1991-06-15": "Maharana Pratap Jayanti", + "1991-06-22": "Eid al-Adha* (*estimated)", + "1991-06-23": "Eid al-Adha* (*estimated)", + "1991-07-21": "Day of Ashura* (*estimated)", + "1991-08-15": "Independence Day", + "1991-09-20": "Mawlid* (*estimated)", + "1991-10-02": "Gandhi Jayanti", + "1991-10-06": "Bathukamma Festival", + "1991-10-15": "Dussehra", + "1991-10-31": "Sardar Patel Jayanti", + "1991-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1991-12-25": "Christmas Day", + "1992-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1992-01-26": "Republic Day", + "1992-03-22": "Bihar Day", + "1992-03-30": "Rajasthan Day", + "1992-04-01": "Odisha Day (Utkala Dibasa)", + "1992-04-04": "Eid ul-Fitr* (*estimated)", + "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-06": "Eid al-Fitr", + "1992-04-12": "Palm Sunday", + "1992-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1992-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1992-04-17": "Good Friday", + "1992-04-19": "Easter Sunday", + "1992-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1992-05-09": "Rabindra Jayanti", + "1992-05-16": "Annexation Day", + "1992-06-07": "Feast of Pentecost", + "1992-06-11": "Eid al-Adha* (*estimated)", + "1992-06-12": "Eid al-Adha* (*estimated)", + "1992-06-15": "Maharana Pratap Jayanti", + "1992-07-10": "Day of Ashura* (*estimated)", + "1992-08-15": "Independence Day", + "1992-09-09": "Mawlid* (*estimated)", + "1992-10-02": "Gandhi Jayanti", + "1992-10-06": "Bathukamma Festival", + "1992-10-15": "Dussehra", + "1992-10-31": "Sardar Patel Jayanti", + "1992-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1992-12-25": "Christmas Day", + "1993-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1993-01-26": "Republic Day", + "1993-03-22": "Bihar Day", + "1993-03-24": "Eid ul-Fitr* (*estimated)", + "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-30": "Rajasthan Day", + "1993-04-01": "Odisha Day (Utkala Dibasa)", + "1993-04-04": "Palm Sunday", + "1993-04-06": "Eid al-Fitr", + "1993-04-09": "Good Friday", + "1993-04-11": "Easter Sunday", + "1993-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1993-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1993-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1993-05-09": "Rabindra Jayanti", + "1993-05-16": "Annexation Day", + "1993-05-30": "Feast of Pentecost", + "1993-05-31": "Eid al-Adha* (*estimated)", + "1993-06-01": "Eid al-Adha* (*estimated)", + "1993-06-15": "Maharana Pratap Jayanti", + "1993-06-30": "Day of Ashura* (*estimated)", + "1993-08-15": "Independence Day", + "1993-08-29": "Mawlid* (*estimated)", + "1993-10-02": "Gandhi Jayanti", + "1993-10-06": "Bathukamma Festival", + "1993-10-15": "Dussehra", + "1993-10-31": "Sardar Patel Jayanti", + "1993-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1993-12-25": "Christmas Day", + "1994-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1994-01-26": "Republic Day", + "1994-03-13": "Eid ul-Fitr* (*estimated)", + "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-22": "Bihar Day", + "1994-03-27": "Palm Sunday", + "1994-03-30": "Rajasthan Day", + "1994-04-01": "Good Friday; Odisha Day (Utkala Dibasa)", + "1994-04-03": "Easter Sunday", + "1994-04-06": "Eid al-Fitr", + "1994-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1994-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1994-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1994-05-09": "Rabindra Jayanti", + "1994-05-16": "Annexation Day", + "1994-05-20": "Eid al-Adha* (*estimated)", + "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-22": "Feast of Pentecost", + "1994-06-15": "Maharana Pratap Jayanti", + "1994-06-19": "Day of Ashura* (*estimated)", + "1994-08-15": "Independence Day", + "1994-08-19": "Mawlid* (*estimated)", + "1994-10-02": "Gandhi Jayanti", + "1994-10-06": "Bathukamma Festival", + "1994-10-15": "Dussehra", + "1994-10-31": "Sardar Patel Jayanti", + "1994-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1994-12-25": "Christmas Day", + "1995-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1995-01-26": "Republic Day", + "1995-03-02": "Eid ul-Fitr* (*estimated)", + "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-22": "Bihar Day", + "1995-03-30": "Rajasthan Day", + "1995-04-01": "Odisha Day (Utkala Dibasa)", + "1995-04-06": "Eid al-Fitr", + "1995-04-09": "Palm Sunday", + "1995-04-14": "Dr. B. R. Ambedkar's Jayanti; Good Friday; Pohela Boishakh; Puthandu (Tamil New Year)", + "1995-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1995-04-16": "Easter Sunday", + "1995-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1995-05-09": "Eid al-Adha* (*estimated); Rabindra Jayanti", + "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-16": "Annexation Day", + "1995-06-04": "Feast of Pentecost", + "1995-06-08": "Day of Ashura* (*estimated)", + "1995-06-15": "Maharana Pratap Jayanti", + "1995-08-08": "Mawlid* (*estimated)", + "1995-08-15": "Independence Day", + "1995-10-02": "Gandhi Jayanti", + "1995-10-06": "Bathukamma Festival", + "1995-10-15": "Dussehra", + "1995-10-31": "Sardar Patel Jayanti", + "1995-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1995-12-25": "Christmas Day", + "1996-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1996-01-26": "Republic Day", + "1996-02-19": "Eid ul-Fitr* (*estimated)", + "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-03-22": "Bihar Day", + "1996-03-30": "Rajasthan Day", + "1996-03-31": "Palm Sunday", + "1996-04-01": "Odisha Day (Utkala Dibasa)", + "1996-04-05": "Good Friday", + "1996-04-06": "Eid al-Fitr", + "1996-04-07": "Easter Sunday", + "1996-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1996-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1996-04-27": "Eid al-Adha* (*estimated)", + "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1996-05-09": "Rabindra Jayanti", + "1996-05-16": "Annexation Day", + "1996-05-26": "Feast of Pentecost", + "1996-05-27": "Day of Ashura* (*estimated)", + "1996-06-15": "Maharana Pratap Jayanti", + "1996-07-27": "Mawlid* (*estimated)", + "1996-08-15": "Independence Day", + "1996-10-02": "Gandhi Jayanti", + "1996-10-06": "Bathukamma Festival", + "1996-10-15": "Dussehra", + "1996-10-31": "Sardar Patel Jayanti", + "1996-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1996-12-25": "Christmas Day", + "1997-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1997-01-26": "Republic Day", + "1997-02-08": "Eid ul-Fitr* (*estimated)", + "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-03-22": "Bihar Day", + "1997-03-23": "Palm Sunday", + "1997-03-28": "Good Friday", + "1997-03-30": "Easter Sunday; Rajasthan Day", + "1997-04-01": "Odisha Day (Utkala Dibasa)", + "1997-04-06": "Eid al-Fitr", + "1997-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1997-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1997-04-17": "Eid al-Adha* (*estimated)", + "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1997-05-09": "Rabindra Jayanti", + "1997-05-16": "Annexation Day; Day of Ashura* (*estimated)", + "1997-05-18": "Feast of Pentecost", + "1997-06-15": "Maharana Pratap Jayanti", + "1997-07-16": "Mawlid* (*estimated)", + "1997-08-15": "Independence Day", + "1997-10-02": "Gandhi Jayanti", + "1997-10-06": "Bathukamma Festival", + "1997-10-15": "Dussehra", + "1997-10-31": "Sardar Patel Jayanti", + "1997-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1997-12-25": "Christmas Day", + "1998-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1998-01-26": "Republic Day", + "1998-01-29": "Eid ul-Fitr* (*estimated)", + "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-03-22": "Bihar Day", + "1998-03-30": "Rajasthan Day", + "1998-04-01": "Odisha Day (Utkala Dibasa)", + "1998-04-05": "Palm Sunday", + "1998-04-06": "Eid al-Fitr", + "1998-04-07": "Eid al-Adha* (*estimated)", + "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-10": "Good Friday", + "1998-04-12": "Easter Sunday", + "1998-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1998-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1998-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-09": "Rabindra Jayanti", + "1998-05-16": "Annexation Day", + "1998-05-31": "Feast of Pentecost", + "1998-06-15": "Maharana Pratap Jayanti", + "1998-07-06": "Mawlid* (*estimated)", + "1998-08-15": "Independence Day", + "1998-10-02": "Gandhi Jayanti", + "1998-10-06": "Bathukamma Festival", + "1998-10-15": "Dussehra", + "1998-10-31": "Sardar Patel Jayanti", + "1998-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1998-12-25": "Christmas Day", + "1999-01-14": "Makar Sankranti / Pongal; Uttarayan", + "1999-01-18": "Eid ul-Fitr* (*estimated)", + "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-26": "Republic Day", + "1999-03-22": "Bihar Day", + "1999-03-27": "Eid al-Adha* (*estimated)", + "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-30": "Rajasthan Day", + "1999-04-01": "Odisha Day (Utkala Dibasa)", + "1999-04-02": "Good Friday", + "1999-04-04": "Easter Sunday", + "1999-04-06": "Eid al-Fitr", + "1999-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1999-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "1999-04-26": "Day of Ashura* (*estimated)", + "1999-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "1999-05-09": "Rabindra Jayanti", + "1999-05-16": "Annexation Day", + "1999-05-23": "Feast of Pentecost", + "1999-06-15": "Maharana Pratap Jayanti", + "1999-06-26": "Mawlid* (*estimated)", + "1999-08-15": "Independence Day", + "1999-10-02": "Gandhi Jayanti", + "1999-10-06": "Bathukamma Festival", + "1999-10-15": "Dussehra", + "1999-10-31": "Sardar Patel Jayanti", + "1999-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "1999-12-25": "Christmas Day", + "2000-01-08": "Eid ul-Fitr* (*estimated)", + "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2000-01-26": "Republic Day", + "2000-03-16": "Eid al-Adha* (*estimated)", + "2000-03-17": "Eid al-Adha* (*estimated)", + "2000-03-22": "Bihar Day", + "2000-03-30": "Rajasthan Day", + "2000-04-01": "Odisha Day (Utkala Dibasa)", + "2000-04-06": "Eid al-Fitr", + "2000-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2000-04-15": "Bihu (Assamese New Year); Day of Ashura* (*estimated); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2000-04-16": "Palm Sunday", + "2000-04-21": "Good Friday", + "2000-04-23": "Easter Sunday", + "2000-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2000-05-09": "Rabindra Jayanti", + "2000-05-16": "Annexation Day", + "2000-06-11": "Feast of Pentecost", + "2000-06-14": "Mawlid* (*estimated)", + "2000-06-15": "Maharana Pratap Jayanti", + "2000-08-15": "Independence Day", + "2000-10-02": "Gandhi Jayanti", + "2000-10-06": "Bathukamma Festival", + "2000-10-15": "Dussehra", + "2000-10-31": "Sardar Patel Jayanti", + "2000-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2000-12-25": "Christmas Day", + "2000-12-27": "Eid ul-Fitr* (*estimated)", + "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2001-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2001-01-26": "Republic Day", + "2001-03-05": "Eid al-Adha* (*estimated)", + "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-10": "Holi", + "2001-03-22": "Bihar Day", + "2001-03-30": "Rajasthan Day", + "2001-04-01": "Odisha Day (Utkala Dibasa)", + "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-06": "Eid al-Fitr", + "2001-04-08": "Palm Sunday", + "2001-04-13": "Good Friday", + "2001-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2001-04-15": "Bihu (Assamese New Year); Easter Sunday; Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2001-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2001-05-09": "Rabindra Jayanti", + "2001-05-16": "Annexation Day", + "2001-06-03": "Feast of Pentecost", + "2001-06-04": "Mawlid* (*estimated)", + "2001-06-15": "Maharana Pratap Jayanti", + "2001-08-15": "Independence Day", + "2001-10-02": "Gandhi Jayanti", + "2001-10-06": "Bathukamma Festival", + "2001-10-15": "Dussehra", + "2001-10-31": "Sardar Patel Jayanti", + "2001-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2001-11-14": "Diwali", + "2001-12-16": "Eid ul-Fitr* (*estimated)", + "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-25": "Christmas Day", + "2002-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2002-01-26": "Republic Day", + "2002-02-22": "Eid al-Adha* (*estimated)", + "2002-02-23": "Eid al-Adha* (*estimated)", + "2002-03-22": "Bihar Day", + "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-03-29": "Good Friday; Holi", + "2002-03-30": "Rajasthan Day", + "2002-03-31": "Easter Sunday", + "2002-04-01": "Odisha Day (Utkala Dibasa)", + "2002-04-06": "Eid al-Fitr", + "2002-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2002-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2002-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2002-05-09": "Rabindra Jayanti", + "2002-05-16": "Annexation Day", + "2002-05-19": "Feast of Pentecost", + "2002-05-24": "Mawlid* (*estimated)", + "2002-06-15": "Maharana Pratap Jayanti", + "2002-08-15": "Independence Day", + "2002-10-02": "Gandhi Jayanti", + "2002-10-06": "Bathukamma Festival", + "2002-10-15": "Dussehra", + "2002-10-31": "Sardar Patel Jayanti", + "2002-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2002-11-04": "Diwali", + "2002-12-05": "Eid ul-Fitr* (*estimated)", + "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-25": "Christmas Day", + "2003-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2003-01-26": "Republic Day", + "2003-02-11": "Eid al-Adha* (*estimated)", + "2003-02-12": "Eid al-Adha* (*estimated)", + "2003-03-13": "Day of Ashura* (*estimated)", + "2003-03-18": "Holi", + "2003-03-22": "Bihar Day", + "2003-03-30": "Rajasthan Day", + "2003-04-01": "Odisha Day (Utkala Dibasa)", + "2003-04-06": "Eid al-Fitr", + "2003-04-13": "Palm Sunday", + "2003-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2003-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2003-04-18": "Good Friday", + "2003-04-20": "Easter Sunday", + "2003-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2003-05-09": "Rabindra Jayanti", + "2003-05-13": "Mawlid* (*estimated)", + "2003-05-16": "Annexation Day", + "2003-06-08": "Feast of Pentecost", + "2003-06-15": "Maharana Pratap Jayanti", + "2003-08-15": "Independence Day", + "2003-10-02": "Gandhi Jayanti", + "2003-10-06": "Bathukamma Festival", + "2003-10-15": "Dussehra", + "2003-10-25": "Diwali", + "2003-10-31": "Sardar Patel Jayanti", + "2003-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2003-11-25": "Eid ul-Fitr* (*estimated)", + "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-12-25": "Christmas Day", + "2004-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2004-01-26": "Republic Day", + "2004-02-01": "Eid al-Adha* (*estimated)", + "2004-02-02": "Eid al-Adha* (*estimated)", + "2004-03-01": "Day of Ashura* (*estimated)", + "2004-03-07": "Holi", + "2004-03-22": "Bihar Day", + "2004-03-30": "Rajasthan Day", + "2004-04-01": "Odisha Day (Utkala Dibasa)", + "2004-04-04": "Palm Sunday", + "2004-04-06": "Eid al-Fitr", + "2004-04-09": "Good Friday", + "2004-04-11": "Easter Sunday", + "2004-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2004-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2004-05-01": "Gujarat Day; Labour Day; Maharashtra Day; Mawlid* (*estimated)", + "2004-05-09": "Rabindra Jayanti", + "2004-05-16": "Annexation Day", + "2004-05-30": "Feast of Pentecost", + "2004-06-15": "Maharana Pratap Jayanti", + "2004-08-15": "Independence Day", + "2004-10-02": "Gandhi Jayanti", + "2004-10-06": "Bathukamma Festival", + "2004-10-15": "Dussehra", + "2004-10-31": "Sardar Patel Jayanti", + "2004-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2004-11-12": "Diwali", + "2004-11-14": "Eid ul-Fitr* (*estimated)", + "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-12-25": "Christmas Day", + "2005-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2005-01-21": "Eid al-Adha* (*estimated)", + "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-26": "Republic Day", + "2005-02-19": "Day of Ashura* (*estimated)", + "2005-03-20": "Palm Sunday", + "2005-03-22": "Bihar Day", + "2005-03-25": "Good Friday", + "2005-03-26": "Holi", + "2005-03-27": "Easter Sunday", + "2005-03-30": "Rajasthan Day", + "2005-04-01": "Odisha Day (Utkala Dibasa)", + "2005-04-06": "Eid al-Fitr", + "2005-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2005-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2005-04-21": "Mawlid* (*estimated)", + "2005-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2005-05-09": "Rabindra Jayanti", + "2005-05-15": "Feast of Pentecost", + "2005-05-16": "Annexation Day", + "2005-06-15": "Maharana Pratap Jayanti", + "2005-08-15": "Independence Day", + "2005-10-02": "Gandhi Jayanti", + "2005-10-06": "Bathukamma Festival", + "2005-10-15": "Dussehra", + "2005-10-31": "Sardar Patel Jayanti", + "2005-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Diwali; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2005-11-03": "Eid ul-Fitr* (*estimated)", + "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-12-25": "Christmas Day", + "2006-01-10": "Eid al-Adha* (*estimated)", + "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2006-01-26": "Republic Day", + "2006-02-09": "Day of Ashura* (*estimated)", + "2006-03-15": "Holi", + "2006-03-22": "Bihar Day", + "2006-03-30": "Rajasthan Day", + "2006-04-01": "Odisha Day (Utkala Dibasa)", + "2006-04-06": "Eid al-Fitr", + "2006-04-09": "Palm Sunday", + "2006-04-10": "Mawlid* (*estimated)", + "2006-04-14": "Dr. B. R. Ambedkar's Jayanti; Good Friday; Pohela Boishakh; Puthandu (Tamil New Year)", + "2006-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2006-04-16": "Easter Sunday", + "2006-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2006-05-09": "Rabindra Jayanti", + "2006-05-16": "Annexation Day", + "2006-06-04": "Feast of Pentecost", + "2006-06-15": "Maharana Pratap Jayanti", + "2006-08-15": "Independence Day", + "2006-10-02": "Gandhi Jayanti", + "2006-10-06": "Bathukamma Festival", + "2006-10-15": "Dussehra", + "2006-10-21": "Diwali", + "2006-10-23": "Eid ul-Fitr* (*estimated)", + "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-31": "Sardar Patel Jayanti", + "2006-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2006-12-25": "Christmas Day", + "2006-12-31": "Eid al-Adha* (*estimated)", + "2007-01-01": "Eid al-Adha* (*estimated)", + "2007-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2007-01-26": "Republic Day", + "2007-01-29": "Day of Ashura* (*estimated)", + "2007-03-04": "Holi", + "2007-03-22": "Bihar Day", + "2007-03-30": "Rajasthan Day", + "2007-03-31": "Mawlid* (*estimated)", + "2007-04-01": "Odisha Day (Utkala Dibasa); Palm Sunday", + "2007-04-06": "Eid al-Fitr; Good Friday", + "2007-04-08": "Easter Sunday", + "2007-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2007-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2007-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2007-05-09": "Rabindra Jayanti", + "2007-05-16": "Annexation Day", + "2007-05-27": "Feast of Pentecost", + "2007-06-15": "Maharana Pratap Jayanti", + "2007-08-15": "Independence Day", + "2007-10-02": "Gandhi Jayanti", + "2007-10-06": "Bathukamma Festival", + "2007-10-13": "Eid ul-Fitr* (*estimated)", + "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-15": "Dussehra", + "2007-10-31": "Sardar Patel Jayanti", + "2007-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2007-11-09": "Diwali", + "2007-12-20": "Eid al-Adha* (*estimated)", + "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-25": "Christmas Day", + "2008-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-26": "Republic Day", + "2008-03-16": "Palm Sunday", + "2008-03-20": "Mawlid* (*estimated)", + "2008-03-21": "Good Friday", + "2008-03-22": "Bihar Day; Holi", + "2008-03-23": "Easter Sunday", + "2008-03-30": "Rajasthan Day", + "2008-04-01": "Odisha Day (Utkala Dibasa)", + "2008-04-06": "Eid al-Fitr", + "2008-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2008-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2008-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2008-05-09": "Rabindra Jayanti", + "2008-05-11": "Feast of Pentecost", + "2008-05-16": "Annexation Day", + "2008-06-15": "Maharana Pratap Jayanti", + "2008-08-15": "Independence Day", + "2008-10-01": "Eid ul-Fitr* (*estimated)", + "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-06": "Bathukamma Festival", + "2008-10-15": "Dussehra", + "2008-10-28": "Diwali", + "2008-10-31": "Sardar Patel Jayanti", + "2008-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2008-12-08": "Eid al-Adha* (*estimated)", + "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-25": "Christmas Day", + "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2009-01-26": "Republic Day", + "2009-03-09": "Mawlid* (*estimated)", + "2009-03-11": "Holi", + "2009-03-22": "Bihar Day", + "2009-03-30": "Rajasthan Day", + "2009-04-01": "Odisha Day (Utkala Dibasa)", + "2009-04-05": "Palm Sunday", + "2009-04-06": "Eid al-Fitr", + "2009-04-10": "Good Friday", + "2009-04-12": "Easter Sunday", + "2009-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2009-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2009-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2009-05-09": "Rabindra Jayanti", + "2009-05-16": "Annexation Day", + "2009-05-31": "Feast of Pentecost", + "2009-06-15": "Maharana Pratap Jayanti", + "2009-08-15": "Independence Day", + "2009-09-20": "Eid ul-Fitr* (*estimated)", + "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-10-02": "Gandhi Jayanti", + "2009-10-06": "Bathukamma Festival", + "2009-10-15": "Dussehra", + "2009-10-17": "Diwali", + "2009-10-31": "Sardar Patel Jayanti", + "2009-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2009-11-27": "Eid al-Adha* (*estimated)", + "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-12-25": "Christmas Day", + "2009-12-27": "Day of Ashura* (*estimated)", + "2010-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2010-01-26": "Republic Day", + "2010-02-26": "Mawlid* (*estimated)", + "2010-03-01": "Holi", + "2010-03-22": "Bihar Day", + "2010-03-28": "Palm Sunday", + "2010-03-30": "Rajasthan Day", + "2010-04-01": "Odisha Day (Utkala Dibasa)", + "2010-04-02": "Good Friday", + "2010-04-04": "Easter Sunday", + "2010-04-06": "Eid al-Fitr", + "2010-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2010-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2010-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2010-05-09": "Rabindra Jayanti", + "2010-05-16": "Annexation Day", + "2010-05-23": "Feast of Pentecost", + "2010-06-15": "Maharana Pratap Jayanti", + "2010-08-15": "Independence Day", + "2010-09-10": "Eid ul-Fitr* (*estimated)", + "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-10-02": "Gandhi Jayanti", + "2010-10-06": "Bathukamma Festival", + "2010-10-15": "Dussehra", + "2010-10-31": "Sardar Patel Jayanti", + "2010-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2010-11-05": "Diwali", + "2010-11-16": "Eid al-Adha* (*estimated)", + "2010-11-17": "Eid al-Adha* (*estimated)", + "2010-12-16": "Day of Ashura* (*estimated)", + "2010-12-25": "Christmas Day", + "2011-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2011-01-26": "Republic Day", + "2011-02-15": "Mawlid* (*estimated)", + "2011-03-20": "Holi", + "2011-03-22": "Bihar Day", + "2011-03-30": "Rajasthan Day", + "2011-04-01": "Odisha Day (Utkala Dibasa)", + "2011-04-06": "Eid al-Fitr", + "2011-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2011-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2011-04-17": "Palm Sunday", + "2011-04-22": "Good Friday", + "2011-04-24": "Easter Sunday", + "2011-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2011-05-09": "Rabindra Jayanti", + "2011-05-16": "Annexation Day", + "2011-06-12": "Feast of Pentecost", + "2011-06-15": "Maharana Pratap Jayanti", + "2011-08-15": "Independence Day", + "2011-08-30": "Eid ul-Fitr* (*estimated)", + "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-10-02": "Gandhi Jayanti", + "2011-10-06": "Bathukamma Festival", + "2011-10-15": "Dussehra", + "2011-10-26": "Diwali", + "2011-10-31": "Sardar Patel Jayanti", + "2011-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2011-11-06": "Eid al-Adha* (*estimated)", + "2011-11-07": "Eid al-Adha* (*estimated)", + "2011-12-05": "Day of Ashura* (*estimated)", + "2011-12-25": "Christmas Day", + "2012-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2012-01-26": "Republic Day", + "2012-02-04": "Mawlid* (*estimated)", + "2012-03-08": "Holi", + "2012-03-22": "Bihar Day", + "2012-03-30": "Rajasthan Day", + "2012-04-01": "Odisha Day (Utkala Dibasa); Palm Sunday", + "2012-04-06": "Eid al-Fitr; Good Friday", + "2012-04-08": "Easter Sunday", + "2012-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2012-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2012-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2012-05-09": "Rabindra Jayanti", + "2012-05-16": "Annexation Day", + "2012-05-27": "Feast of Pentecost", + "2012-06-15": "Maharana Pratap Jayanti", + "2012-08-15": "Independence Day", + "2012-08-19": "Eid ul-Fitr* (*estimated)", + "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-10-02": "Gandhi Jayanti", + "2012-10-06": "Bathukamma Festival", + "2012-10-15": "Dussehra", + "2012-10-26": "Eid al-Adha* (*estimated)", + "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-31": "Sardar Patel Jayanti", + "2012-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2012-11-13": "Diwali", + "2012-11-24": "Day of Ashura* (*estimated)", + "2012-12-25": "Christmas Day", + "2013-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2013-01-24": "Mawlid* (*estimated)", + "2013-01-26": "Republic Day", + "2013-03-22": "Bihar Day", + "2013-03-24": "Palm Sunday", + "2013-03-27": "Holi", + "2013-03-29": "Good Friday", + "2013-03-30": "Rajasthan Day", + "2013-03-31": "Easter Sunday", + "2013-04-01": "Odisha Day (Utkala Dibasa)", + "2013-04-06": "Eid al-Fitr", + "2013-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2013-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2013-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2013-05-09": "Rabindra Jayanti", + "2013-05-16": "Annexation Day", + "2013-05-19": "Feast of Pentecost", + "2013-06-15": "Maharana Pratap Jayanti", + "2013-08-08": "Eid ul-Fitr* (*estimated)", + "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-15": "Independence Day", + "2013-10-02": "Gandhi Jayanti", + "2013-10-06": "Bathukamma Festival", + "2013-10-15": "Dussehra; Eid al-Adha* (*estimated)", + "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-31": "Sardar Patel Jayanti", + "2013-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2013-11-03": "Diwali", + "2013-11-13": "Day of Ashura* (*estimated)", + "2013-12-25": "Christmas Day", + "2014-01-13": "Mawlid* (*estimated)", + "2014-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2014-01-26": "Republic Day", + "2014-03-17": "Holi", + "2014-03-22": "Bihar Day", + "2014-03-30": "Rajasthan Day", + "2014-04-01": "Odisha Day (Utkala Dibasa)", + "2014-04-06": "Eid al-Fitr", + "2014-04-13": "Palm Sunday", + "2014-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2014-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2014-04-18": "Good Friday", + "2014-04-20": "Easter Sunday", + "2014-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2014-05-09": "Rabindra Jayanti", + "2014-05-16": "Annexation Day", + "2014-06-08": "Feast of Pentecost", + "2014-06-15": "Maharana Pratap Jayanti", + "2014-07-28": "Eid ul-Fitr* (*estimated)", + "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-08-15": "Independence Day", + "2014-10-02": "Gandhi Jayanti", + "2014-10-04": "Eid al-Adha* (*estimated)", + "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-06": "Bathukamma Festival", + "2014-10-15": "Dussehra", + "2014-10-23": "Diwali", + "2014-10-31": "Sardar Patel Jayanti", + "2014-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2014-11-03": "Day of Ashura* (*estimated)", + "2014-12-25": "Christmas Day", + "2015-01-03": "Mawlid* (*estimated)", + "2015-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2015-01-26": "Republic Day", + "2015-03-06": "Holi", + "2015-03-22": "Bihar Day", + "2015-03-29": "Palm Sunday", + "2015-03-30": "Rajasthan Day", + "2015-04-01": "Odisha Day (Utkala Dibasa)", + "2015-04-03": "Good Friday", + "2015-04-05": "Easter Sunday", + "2015-04-06": "Eid al-Fitr", + "2015-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2015-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2015-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2015-05-09": "Rabindra Jayanti", + "2015-05-16": "Annexation Day", + "2015-05-24": "Feast of Pentecost", + "2015-06-15": "Maharana Pratap Jayanti", + "2015-07-17": "Eid ul-Fitr* (*estimated)", + "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-08-15": "Independence Day", + "2015-09-23": "Eid al-Adha* (*estimated)", + "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-10-02": "Gandhi Jayanti", + "2015-10-06": "Bathukamma Festival", + "2015-10-15": "Dussehra", + "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-31": "Sardar Patel Jayanti", + "2015-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2015-11-11": "Diwali", + "2015-12-23": "Mawlid* (*estimated)", + "2015-12-25": "Christmas Day", + "2016-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2016-01-26": "Republic Day", + "2016-03-20": "Palm Sunday", + "2016-03-22": "Bihar Day", + "2016-03-24": "Holi", + "2016-03-25": "Good Friday", + "2016-03-27": "Easter Sunday", + "2016-03-30": "Rajasthan Day", + "2016-04-01": "Odisha Day (Utkala Dibasa)", + "2016-04-06": "Eid al-Fitr", + "2016-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2016-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2016-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2016-05-09": "Rabindra Jayanti", + "2016-05-15": "Feast of Pentecost", + "2016-05-16": "Annexation Day", + "2016-06-15": "Maharana Pratap Jayanti", + "2016-07-06": "Eid ul-Fitr* (*estimated)", + "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-08-15": "Independence Day", + "2016-09-11": "Eid al-Adha* (*estimated)", + "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-10-02": "Gandhi Jayanti", + "2016-10-06": "Bathukamma Festival", + "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-15": "Dussehra", + "2016-10-30": "Diwali", + "2016-10-31": "Sardar Patel Jayanti", + "2016-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2016-12-11": "Mawlid* (*estimated)", + "2016-12-25": "Christmas Day", + "2017-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2017-01-26": "Republic Day", + "2017-03-13": "Holi", + "2017-03-22": "Bihar Day", + "2017-03-30": "Rajasthan Day", + "2017-04-01": "Odisha Day (Utkala Dibasa)", + "2017-04-06": "Eid al-Fitr", + "2017-04-09": "Palm Sunday", + "2017-04-14": "Dr. B. R. Ambedkar's Jayanti; Good Friday; Pohela Boishakh; Puthandu (Tamil New Year)", + "2017-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2017-04-16": "Easter Sunday", + "2017-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2017-05-09": "Rabindra Jayanti", + "2017-05-16": "Annexation Day", + "2017-06-04": "Feast of Pentecost", + "2017-06-15": "Maharana Pratap Jayanti", + "2017-06-25": "Eid ul-Fitr* (*estimated)", + "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-08-15": "Independence Day", + "2017-09-01": "Eid al-Adha* (*estimated)", + "2017-09-02": "Eid al-Adha* (*estimated)", + "2017-09-30": "Day of Ashura* (*estimated)", + "2017-10-02": "Gandhi Jayanti", + "2017-10-06": "Bathukamma Festival", + "2017-10-15": "Dussehra", + "2017-10-19": "Diwali", + "2017-10-31": "Sardar Patel Jayanti", + "2017-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2017-11-30": "Mawlid* (*estimated)", + "2017-12-25": "Christmas Day", + "2018-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2018-01-26": "Republic Day", + "2018-03-02": "Holi", + "2018-03-22": "Bihar Day", + "2018-03-25": "Palm Sunday", + "2018-03-30": "Good Friday; Rajasthan Day", + "2018-04-01": "Easter Sunday; Odisha Day (Utkala Dibasa)", + "2018-04-06": "Eid al-Fitr", + "2018-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2018-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2018-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2018-05-09": "Rabindra Jayanti", + "2018-05-16": "Annexation Day", + "2018-05-20": "Feast of Pentecost", + "2018-06-15": "Eid ul-Fitr* (*estimated); Maharana Pratap Jayanti", + "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-08-15": "Independence Day", + "2018-08-21": "Eid al-Adha* (*estimated)", + "2018-08-22": "Eid al-Adha* (*estimated)", + "2018-09-20": "Day of Ashura* (*estimated)", + "2018-10-02": "Gandhi Jayanti", + "2018-10-06": "Bathukamma Festival", + "2018-10-15": "Dussehra", + "2018-10-31": "Sardar Patel Jayanti", + "2018-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2018-11-07": "Diwali", + "2018-11-20": "Mawlid* (*estimated)", + "2018-12-25": "Christmas Day", + "2019-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2019-01-26": "Republic Day", + "2019-03-21": "Holi", + "2019-03-22": "Bihar Day", + "2019-03-30": "Rajasthan Day", + "2019-04-01": "Odisha Day (Utkala Dibasa)", + "2019-04-06": "Eid al-Fitr", + "2019-04-14": "Dr. B. R. Ambedkar's Jayanti; Palm Sunday; Pohela Boishakh; Puthandu (Tamil New Year)", + "2019-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2019-04-19": "Good Friday", + "2019-04-21": "Easter Sunday", + "2019-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2019-05-09": "Rabindra Jayanti", + "2019-05-16": "Annexation Day", + "2019-06-04": "Eid ul-Fitr* (*estimated)", + "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-09": "Feast of Pentecost", + "2019-06-15": "Maharana Pratap Jayanti", + "2019-08-11": "Eid al-Adha* (*estimated)", + "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-15": "Independence Day", + "2019-09-09": "Day of Ashura* (*estimated)", + "2019-10-02": "Gandhi Jayanti", + "2019-10-06": "Bathukamma Festival", + "2019-10-15": "Dussehra", + "2019-10-27": "Diwali", + "2019-10-31": "Sardar Patel Jayanti", + "2019-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2019-11-09": "Mawlid* (*estimated)", + "2019-12-25": "Christmas Day", + "2020-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2020-01-26": "Republic Day", + "2020-03-10": "Holi", + "2020-03-22": "Bihar Day", + "2020-03-30": "Rajasthan Day", + "2020-04-01": "Odisha Day (Utkala Dibasa)", + "2020-04-05": "Palm Sunday", + "2020-04-06": "Eid al-Fitr", + "2020-04-10": "Good Friday", + "2020-04-12": "Easter Sunday", + "2020-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2020-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2020-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2020-05-09": "Rabindra Jayanti", + "2020-05-16": "Annexation Day", + "2020-05-24": "Eid ul-Fitr* (*estimated)", + "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-31": "Feast of Pentecost", + "2020-06-15": "Maharana Pratap Jayanti", + "2020-07-31": "Eid al-Adha* (*estimated)", + "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-08-15": "Independence Day", + "2020-08-29": "Day of Ashura* (*estimated)", + "2020-10-02": "Gandhi Jayanti", + "2020-10-06": "Bathukamma Festival", + "2020-10-15": "Dussehra", + "2020-10-29": "Mawlid* (*estimated)", + "2020-10-31": "Sardar Patel Jayanti", + "2020-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2020-11-14": "Diwali", + "2020-12-25": "Christmas Day", + "2021-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2021-01-26": "Republic Day", + "2021-03-22": "Bihar Day", + "2021-03-28": "Palm Sunday", + "2021-03-29": "Holi", + "2021-03-30": "Rajasthan Day", + "2021-04-01": "Odisha Day (Utkala Dibasa)", + "2021-04-02": "Good Friday", + "2021-04-04": "Easter Sunday", + "2021-04-06": "Eid al-Fitr", + "2021-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2021-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2021-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2021-05-09": "Rabindra Jayanti", + "2021-05-13": "Eid ul-Fitr* (*estimated)", + "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-16": "Annexation Day", + "2021-05-23": "Feast of Pentecost", + "2021-06-15": "Maharana Pratap Jayanti", + "2021-07-20": "Eid al-Adha* (*estimated)", + "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-08-15": "Independence Day", + "2021-08-18": "Day of Ashura* (*estimated)", + "2021-10-02": "Gandhi Jayanti", + "2021-10-06": "Bathukamma Festival", + "2021-10-15": "Dussehra", + "2021-10-18": "Mawlid* (*estimated)", + "2021-10-31": "Sardar Patel Jayanti", + "2021-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2021-11-04": "Diwali", + "2021-12-25": "Christmas Day", + "2022-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2022-01-26": "Republic Day", + "2022-03-18": "Holi", + "2022-03-22": "Bihar Day", + "2022-03-30": "Rajasthan Day", + "2022-04-01": "Odisha Day (Utkala Dibasa)", + "2022-04-06": "Eid al-Fitr", + "2022-04-10": "Palm Sunday", + "2022-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2022-04-15": "Bihu (Assamese New Year); Good Friday; Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2022-04-17": "Easter Sunday", + "2022-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2022-05-02": "Eid ul-Fitr* (*estimated)", + "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-09": "Rabindra Jayanti", + "2022-05-16": "Annexation Day", + "2022-06-05": "Feast of Pentecost", + "2022-06-15": "Maharana Pratap Jayanti", + "2022-07-09": "Eid al-Adha* (*estimated)", + "2022-07-10": "Eid al-Adha* (*estimated)", + "2022-08-08": "Day of Ashura* (*estimated)", + "2022-08-15": "Independence Day", + "2022-10-02": "Gandhi Jayanti", + "2022-10-06": "Bathukamma Festival", + "2022-10-08": "Mawlid* (*estimated)", + "2022-10-15": "Dussehra", + "2022-10-24": "Diwali", + "2022-10-31": "Sardar Patel Jayanti", + "2022-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2022-12-25": "Christmas Day", + "2023-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2023-01-26": "Republic Day", + "2023-03-08": "Holi", + "2023-03-22": "Bihar Day", + "2023-03-30": "Rajasthan Day", + "2023-04-01": "Odisha Day (Utkala Dibasa)", + "2023-04-02": "Palm Sunday", + "2023-04-06": "Eid al-Fitr", + "2023-04-07": "Good Friday", + "2023-04-09": "Easter Sunday", + "2023-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2023-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2023-04-21": "Eid ul-Fitr* (*estimated)", + "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2023-05-09": "Rabindra Jayanti", + "2023-05-16": "Annexation Day", + "2023-05-28": "Feast of Pentecost", + "2023-06-15": "Maharana Pratap Jayanti", + "2023-06-28": "Eid al-Adha* (*estimated)", + "2023-06-29": "Eid al-Adha* (*estimated)", + "2023-07-28": "Day of Ashura* (*estimated)", + "2023-08-15": "Independence Day", + "2023-09-27": "Mawlid* (*estimated)", + "2023-10-02": "Gandhi Jayanti", + "2023-10-06": "Bathukamma Festival", + "2023-10-15": "Dussehra", + "2023-10-31": "Sardar Patel Jayanti", + "2023-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2023-11-12": "Diwali", + "2023-12-25": "Christmas Day", + "2024-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2024-01-26": "Republic Day", + "2024-03-22": "Bihar Day", + "2024-03-24": "Palm Sunday", + "2024-03-25": "Holi", + "2024-03-29": "Good Friday", + "2024-03-30": "Rajasthan Day", + "2024-03-31": "Easter Sunday", + "2024-04-01": "Odisha Day (Utkala Dibasa)", + "2024-04-06": "Eid al-Fitr", + "2024-04-10": "Eid ul-Fitr* (*estimated)", + "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2024-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2024-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2024-05-09": "Rabindra Jayanti", + "2024-05-16": "Annexation Day", + "2024-05-19": "Feast of Pentecost", + "2024-06-15": "Maharana Pratap Jayanti", + "2024-06-16": "Eid al-Adha* (*estimated)", + "2024-06-17": "Eid al-Adha* (*estimated)", + "2024-07-16": "Day of Ashura* (*estimated)", + "2024-08-15": "Independence Day", + "2024-09-15": "Mawlid* (*estimated)", + "2024-10-02": "Gandhi Jayanti", + "2024-10-06": "Bathukamma Festival", + "2024-10-15": "Dussehra", + "2024-10-31": "Sardar Patel Jayanti", + "2024-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Diwali; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2024-12-25": "Christmas Day", + "2025-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2025-01-26": "Republic Day", + "2025-03-14": "Holi", + "2025-03-22": "Bihar Day", + "2025-03-30": "Eid ul-Fitr* (*estimated); Rajasthan Day", + "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-04-01": "Odisha Day (Utkala Dibasa)", + "2025-04-06": "Eid al-Fitr", + "2025-04-13": "Palm Sunday", + "2025-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2025-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2025-04-18": "Good Friday", + "2025-04-20": "Easter Sunday", + "2025-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2025-05-09": "Rabindra Jayanti", + "2025-05-16": "Annexation Day", + "2025-06-06": "Eid al-Adha* (*estimated)", + "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-08": "Feast of Pentecost", + "2025-06-15": "Maharana Pratap Jayanti", + "2025-07-05": "Day of Ashura* (*estimated)", + "2025-08-15": "Independence Day", + "2025-09-04": "Mawlid* (*estimated)", + "2025-10-02": "Gandhi Jayanti", + "2025-10-06": "Bathukamma Festival", + "2025-10-15": "Dussehra", + "2025-10-20": "Diwali", + "2025-10-31": "Sardar Patel Jayanti", + "2025-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2025-12-25": "Christmas Day", + "2026-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2026-01-26": "Republic Day", + "2026-03-04": "Holi", + "2026-03-20": "Eid ul-Fitr* (*estimated)", + "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-22": "Bihar Day", + "2026-03-29": "Palm Sunday", + "2026-03-30": "Rajasthan Day", + "2026-04-01": "Odisha Day (Utkala Dibasa)", + "2026-04-03": "Good Friday", + "2026-04-05": "Easter Sunday", + "2026-04-06": "Eid al-Fitr", + "2026-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2026-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2026-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2026-05-09": "Rabindra Jayanti", + "2026-05-16": "Annexation Day", + "2026-05-24": "Feast of Pentecost", + "2026-05-27": "Eid al-Adha* (*estimated)", + "2026-05-28": "Eid al-Adha* (*estimated)", + "2026-06-15": "Maharana Pratap Jayanti", + "2026-06-25": "Day of Ashura* (*estimated)", + "2026-08-15": "Independence Day", + "2026-08-25": "Mawlid* (*estimated)", + "2026-10-02": "Gandhi Jayanti", + "2026-10-06": "Bathukamma Festival", + "2026-10-15": "Dussehra", + "2026-10-31": "Sardar Patel Jayanti", + "2026-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2026-11-08": "Diwali", + "2026-12-25": "Christmas Day", + "2027-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2027-01-26": "Republic Day", + "2027-03-09": "Eid ul-Fitr* (*estimated)", + "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-21": "Palm Sunday", + "2027-03-22": "Bihar Day; Holi", + "2027-03-26": "Good Friday", + "2027-03-28": "Easter Sunday", + "2027-03-30": "Rajasthan Day", + "2027-04-01": "Odisha Day (Utkala Dibasa)", + "2027-04-06": "Eid al-Fitr", + "2027-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2027-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2027-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2027-05-09": "Rabindra Jayanti", + "2027-05-16": "Annexation Day; Eid al-Adha* (*estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha* (*estimated)", + "2027-06-15": "Day of Ashura* (*estimated); Maharana Pratap Jayanti", + "2027-08-14": "Mawlid* (*estimated)", + "2027-08-15": "Independence Day", + "2027-10-02": "Gandhi Jayanti", + "2027-10-06": "Bathukamma Festival", + "2027-10-15": "Dussehra", + "2027-10-29": "Diwali", + "2027-10-31": "Sardar Patel Jayanti", + "2027-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2027-12-25": "Christmas Day", + "2028-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2028-01-26": "Republic Day", + "2028-02-26": "Eid ul-Fitr* (*estimated)", + "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-03-11": "Holi", + "2028-03-22": "Bihar Day", + "2028-03-30": "Rajasthan Day", + "2028-04-01": "Odisha Day (Utkala Dibasa)", + "2028-04-06": "Eid al-Fitr", + "2028-04-09": "Palm Sunday", + "2028-04-14": "Dr. B. R. Ambedkar's Jayanti; Good Friday; Pohela Boishakh; Puthandu (Tamil New Year)", + "2028-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2028-04-16": "Easter Sunday", + "2028-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2028-05-05": "Eid al-Adha* (*estimated)", + "2028-05-06": "Eid al-Adha* (*estimated)", + "2028-05-09": "Rabindra Jayanti", + "2028-05-16": "Annexation Day", + "2028-06-03": "Day of Ashura* (*estimated)", + "2028-06-04": "Feast of Pentecost", + "2028-06-15": "Maharana Pratap Jayanti", + "2028-08-03": "Mawlid* (*estimated)", + "2028-08-15": "Independence Day", + "2028-10-02": "Gandhi Jayanti", + "2028-10-06": "Bathukamma Festival", + "2028-10-15": "Dussehra", + "2028-10-17": "Diwali", + "2028-10-31": "Sardar Patel Jayanti", + "2028-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2028-12-25": "Christmas Day", + "2029-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2029-01-26": "Republic Day", + "2029-02-14": "Eid ul-Fitr* (*estimated)", + "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-03-01": "Holi", + "2029-03-22": "Bihar Day", + "2029-03-25": "Palm Sunday", + "2029-03-30": "Good Friday; Rajasthan Day", + "2029-04-01": "Easter Sunday; Odisha Day (Utkala Dibasa)", + "2029-04-06": "Eid al-Fitr", + "2029-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2029-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2029-04-24": "Eid al-Adha* (*estimated)", + "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2029-05-09": "Rabindra Jayanti", + "2029-05-16": "Annexation Day", + "2029-05-20": "Feast of Pentecost", + "2029-05-23": "Day of Ashura* (*estimated)", + "2029-06-15": "Maharana Pratap Jayanti", + "2029-07-24": "Mawlid* (*estimated)", + "2029-08-15": "Independence Day", + "2029-10-02": "Gandhi Jayanti", + "2029-10-06": "Bathukamma Festival", + "2029-10-15": "Dussehra", + "2029-10-31": "Sardar Patel Jayanti", + "2029-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2029-11-05": "Diwali", + "2029-12-25": "Christmas Day", + "2030-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2030-01-26": "Republic Day", + "2030-02-04": "Eid ul-Fitr* (*estimated)", + "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-03-20": "Holi", + "2030-03-22": "Bihar Day", + "2030-03-30": "Rajasthan Day", + "2030-04-01": "Odisha Day (Utkala Dibasa)", + "2030-04-06": "Eid al-Fitr", + "2030-04-13": "Eid al-Adha* (*estimated)", + "2030-04-14": "Dr. B. R. Ambedkar's Jayanti; Eid al-Adha* (*estimated); Palm Sunday; Pohela Boishakh; Puthandu (Tamil New Year)", + "2030-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2030-04-19": "Good Friday", + "2030-04-21": "Easter Sunday", + "2030-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2030-05-09": "Rabindra Jayanti", + "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-16": "Annexation Day", + "2030-06-09": "Feast of Pentecost", + "2030-06-15": "Maharana Pratap Jayanti", + "2030-07-13": "Mawlid* (*estimated)", + "2030-08-15": "Independence Day", + "2030-10-02": "Gandhi Jayanti", + "2030-10-06": "Bathukamma Festival", + "2030-10-15": "Dussehra", + "2030-10-26": "Diwali", + "2030-10-31": "Sardar Patel Jayanti", + "2030-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2030-12-25": "Christmas Day", + "2031-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2031-01-24": "Eid ul-Fitr* (*estimated)", + "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-26": "Republic Day", + "2031-03-22": "Bihar Day", + "2031-03-30": "Rajasthan Day", + "2031-04-01": "Odisha Day (Utkala Dibasa)", + "2031-04-02": "Eid al-Adha* (*estimated)", + "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-06": "Eid al-Fitr; Palm Sunday", + "2031-04-11": "Good Friday", + "2031-04-13": "Easter Sunday", + "2031-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2031-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2031-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-09": "Rabindra Jayanti", + "2031-05-16": "Annexation Day", + "2031-06-01": "Feast of Pentecost", + "2031-06-15": "Maharana Pratap Jayanti", + "2031-07-02": "Mawlid* (*estimated)", + "2031-08-15": "Independence Day", + "2031-10-02": "Gandhi Jayanti", + "2031-10-06": "Bathukamma Festival", + "2031-10-15": "Dussehra", + "2031-10-31": "Sardar Patel Jayanti", + "2031-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2031-12-25": "Christmas Day", + "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal; Uttarayan", + "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-26": "Republic Day", + "2032-03-21": "Palm Sunday", + "2032-03-22": "Bihar Day; Eid al-Adha* (*estimated)", + "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-26": "Good Friday", + "2032-03-28": "Easter Sunday", + "2032-03-30": "Rajasthan Day", + "2032-04-01": "Odisha Day (Utkala Dibasa)", + "2032-04-06": "Eid al-Fitr", + "2032-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2032-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2032-04-20": "Day of Ashura* (*estimated)", + "2032-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2032-05-09": "Rabindra Jayanti", + "2032-05-16": "Annexation Day; Feast of Pentecost", + "2032-06-15": "Maharana Pratap Jayanti", + "2032-06-20": "Mawlid* (*estimated)", + "2032-08-15": "Independence Day", + "2032-10-02": "Gandhi Jayanti", + "2032-10-06": "Bathukamma Festival", + "2032-10-15": "Dussehra", + "2032-10-31": "Sardar Patel Jayanti", + "2032-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2032-12-25": "Christmas Day", + "2033-01-02": "Eid ul-Fitr* (*estimated)", + "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2033-01-26": "Republic Day", + "2033-03-11": "Eid al-Adha* (*estimated)", + "2033-03-12": "Eid al-Adha* (*estimated)", + "2033-03-22": "Bihar Day", + "2033-03-30": "Rajasthan Day", + "2033-04-01": "Odisha Day (Utkala Dibasa)", + "2033-04-06": "Eid al-Fitr", + "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2033-04-15": "Bihu (Assamese New Year); Good Friday; Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2033-04-17": "Easter Sunday", + "2033-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2033-05-09": "Rabindra Jayanti", + "2033-05-16": "Annexation Day", + "2033-06-05": "Feast of Pentecost", + "2033-06-09": "Mawlid* (*estimated)", + "2033-06-15": "Maharana Pratap Jayanti", + "2033-08-15": "Independence Day", + "2033-10-02": "Gandhi Jayanti", + "2033-10-06": "Bathukamma Festival", + "2033-10-15": "Dussehra", + "2033-10-31": "Sardar Patel Jayanti", + "2033-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2033-12-23": "Eid ul-Fitr* (*estimated)", + "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-25": "Christmas Day", + "2034-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2034-01-26": "Republic Day", + "2034-03-01": "Eid al-Adha* (*estimated)", + "2034-03-02": "Eid al-Adha* (*estimated)", + "2034-03-22": "Bihar Day", + "2034-03-30": "Day of Ashura* (*estimated); Rajasthan Day", + "2034-04-01": "Odisha Day (Utkala Dibasa)", + "2034-04-02": "Palm Sunday", + "2034-04-06": "Eid al-Fitr", + "2034-04-07": "Good Friday", + "2034-04-09": "Easter Sunday", + "2034-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2034-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2034-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2034-05-09": "Rabindra Jayanti", + "2034-05-16": "Annexation Day", + "2034-05-28": "Feast of Pentecost", + "2034-05-30": "Mawlid* (*estimated)", + "2034-06-15": "Maharana Pratap Jayanti", + "2034-08-15": "Independence Day", + "2034-10-02": "Gandhi Jayanti", + "2034-10-06": "Bathukamma Festival", + "2034-10-15": "Dussehra", + "2034-10-31": "Sardar Patel Jayanti", + "2034-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2034-12-12": "Eid ul-Fitr* (*estimated)", + "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-25": "Christmas Day", + "2035-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2035-01-26": "Republic Day", + "2035-02-18": "Eid al-Adha* (*estimated)", + "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-03-18": "Palm Sunday", + "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-22": "Bihar Day", + "2035-03-23": "Good Friday", + "2035-03-25": "Easter Sunday", + "2035-03-30": "Rajasthan Day", + "2035-04-01": "Odisha Day (Utkala Dibasa)", + "2035-04-06": "Eid al-Fitr", + "2035-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2035-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2035-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2035-05-09": "Rabindra Jayanti", + "2035-05-13": "Feast of Pentecost", + "2035-05-16": "Annexation Day", + "2035-05-20": "Mawlid* (*estimated)", + "2035-06-15": "Maharana Pratap Jayanti", + "2035-08-15": "Independence Day", + "2035-10-02": "Gandhi Jayanti", + "2035-10-06": "Bathukamma Festival", + "2035-10-15": "Dussehra", + "2035-10-31": "Sardar Patel Jayanti", + "2035-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2035-12-01": "Eid ul-Fitr* (*estimated)", + "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-25": "Christmas Day", + "2036-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2036-01-26": "Republic Day", + "2036-02-07": "Eid al-Adha* (*estimated)", + "2036-02-08": "Eid al-Adha* (*estimated)", + "2036-03-08": "Day of Ashura* (*estimated)", + "2036-03-22": "Bihar Day", + "2036-03-30": "Rajasthan Day", + "2036-04-01": "Odisha Day (Utkala Dibasa)", + "2036-04-06": "Eid al-Fitr; Palm Sunday", + "2036-04-11": "Good Friday", + "2036-04-13": "Easter Sunday", + "2036-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2036-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2036-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2036-05-08": "Mawlid* (*estimated)", + "2036-05-09": "Rabindra Jayanti", + "2036-05-16": "Annexation Day", + "2036-06-01": "Feast of Pentecost", + "2036-06-15": "Maharana Pratap Jayanti", + "2036-08-15": "Independence Day", + "2036-10-02": "Gandhi Jayanti", + "2036-10-06": "Bathukamma Festival", + "2036-10-15": "Dussehra", + "2036-10-31": "Sardar Patel Jayanti", + "2036-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2036-11-19": "Eid ul-Fitr* (*estimated)", + "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-12-25": "Christmas Day", + "2037-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", + "2037-01-27": "Eid al-Adha* (*estimated)", + "2037-02-25": "Day of Ashura* (*estimated)", + "2037-03-22": "Bihar Day", + "2037-03-29": "Palm Sunday", + "2037-03-30": "Rajasthan Day", + "2037-04-01": "Odisha Day (Utkala Dibasa)", + "2037-04-03": "Good Friday", + "2037-04-05": "Easter Sunday", + "2037-04-06": "Eid al-Fitr", + "2037-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2037-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2037-04-28": "Mawlid* (*estimated)", + "2037-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2037-05-09": "Rabindra Jayanti", + "2037-05-16": "Annexation Day", + "2037-05-24": "Feast of Pentecost", + "2037-06-15": "Maharana Pratap Jayanti", + "2037-08-15": "Independence Day", + "2037-10-02": "Gandhi Jayanti", + "2037-10-06": "Bathukamma Festival", + "2037-10-15": "Dussehra", + "2037-10-31": "Sardar Patel Jayanti", + "2037-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2037-11-08": "Eid ul-Fitr* (*estimated)", + "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-12-25": "Christmas Day", + "2038-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2038-01-16": "Eid al-Adha* (*estimated)", + "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-26": "Republic Day", + "2038-02-14": "Day of Ashura* (*estimated)", + "2038-03-22": "Bihar Day", + "2038-03-30": "Rajasthan Day", + "2038-04-01": "Odisha Day (Utkala Dibasa)", + "2038-04-06": "Eid al-Fitr", + "2038-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2038-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2038-04-17": "Mawlid* (*estimated)", + "2038-04-18": "Palm Sunday", + "2038-04-23": "Good Friday", + "2038-04-25": "Easter Sunday", + "2038-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2038-05-09": "Rabindra Jayanti", + "2038-05-16": "Annexation Day", + "2038-06-13": "Feast of Pentecost", + "2038-06-15": "Maharana Pratap Jayanti", + "2038-08-15": "Independence Day", + "2038-10-02": "Gandhi Jayanti", + "2038-10-06": "Bathukamma Festival", + "2038-10-15": "Dussehra", + "2038-10-29": "Eid ul-Fitr* (*estimated)", + "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-31": "Sardar Patel Jayanti", + "2038-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2038-12-25": "Christmas Day", + "2039-01-05": "Eid al-Adha* (*estimated)", + "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2039-01-26": "Republic Day", + "2039-02-04": "Day of Ashura* (*estimated)", + "2039-03-22": "Bihar Day", + "2039-03-30": "Rajasthan Day", + "2039-04-01": "Odisha Day (Utkala Dibasa)", + "2039-04-03": "Palm Sunday", + "2039-04-06": "Eid al-Fitr; Mawlid* (*estimated)", + "2039-04-08": "Good Friday", + "2039-04-10": "Easter Sunday", + "2039-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2039-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2039-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2039-05-09": "Rabindra Jayanti", + "2039-05-16": "Annexation Day", + "2039-05-29": "Feast of Pentecost", + "2039-06-15": "Maharana Pratap Jayanti", + "2039-08-15": "Independence Day", + "2039-10-02": "Gandhi Jayanti", + "2039-10-06": "Bathukamma Festival", + "2039-10-15": "Dussehra", + "2039-10-19": "Eid ul-Fitr* (*estimated)", + "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-31": "Sardar Patel Jayanti", + "2039-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Eid al-Adha* (*estimated)", + "2039-12-27": "Eid al-Adha* (*estimated)", + "2040-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-26": "Republic Day", + "2040-03-22": "Bihar Day", + "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-30": "Good Friday; Rajasthan Day", + "2040-04-01": "Easter Sunday; Odisha Day (Utkala Dibasa)", + "2040-04-06": "Eid al-Fitr", + "2040-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2040-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2040-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2040-05-09": "Rabindra Jayanti", + "2040-05-16": "Annexation Day", + "2040-05-20": "Feast of Pentecost", + "2040-06-15": "Maharana Pratap Jayanti", + "2040-08-15": "Independence Day", + "2040-10-02": "Gandhi Jayanti", + "2040-10-06": "Bathukamma Festival", + "2040-10-07": "Eid ul-Fitr* (*estimated)", + "2040-10-08": "Eid ul-Fitr* (*estimated)", + "2040-10-15": "Dussehra", + "2040-10-31": "Sardar Patel Jayanti", + "2040-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2040-12-14": "Eid al-Adha* (*estimated)", + "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-12-25": "Christmas Day", + "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2041-01-26": "Republic Day", + "2041-03-15": "Mawlid* (*estimated)", + "2041-03-22": "Bihar Day", + "2041-03-30": "Rajasthan Day", + "2041-04-01": "Odisha Day (Utkala Dibasa)", + "2041-04-06": "Eid al-Fitr", + "2041-04-14": "Dr. B. R. Ambedkar's Jayanti; Palm Sunday; Pohela Boishakh; Puthandu (Tamil New Year)", + "2041-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2041-04-19": "Good Friday", + "2041-04-21": "Easter Sunday", + "2041-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2041-05-09": "Rabindra Jayanti", + "2041-05-16": "Annexation Day", + "2041-06-09": "Feast of Pentecost", + "2041-06-15": "Maharana Pratap Jayanti", + "2041-08-15": "Independence Day", + "2041-09-26": "Eid ul-Fitr* (*estimated)", + "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-10-02": "Gandhi Jayanti", + "2041-10-06": "Bathukamma Festival", + "2041-10-15": "Dussehra", + "2041-10-31": "Sardar Patel Jayanti", + "2041-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2041-12-04": "Eid al-Adha* (*estimated)", + "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-25": "Christmas Day", + "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2042-01-26": "Republic Day", + "2042-03-04": "Mawlid* (*estimated)", + "2042-03-22": "Bihar Day", + "2042-03-30": "Palm Sunday; Rajasthan Day", + "2042-04-01": "Odisha Day (Utkala Dibasa)", + "2042-04-04": "Good Friday", + "2042-04-06": "Easter Sunday; Eid al-Fitr", + "2042-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2042-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2042-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2042-05-09": "Rabindra Jayanti", + "2042-05-16": "Annexation Day", + "2042-05-25": "Feast of Pentecost", + "2042-06-15": "Maharana Pratap Jayanti", + "2042-08-15": "Independence Day", + "2042-09-15": "Eid ul-Fitr* (*estimated)", + "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-10-02": "Gandhi Jayanti", + "2042-10-06": "Bathukamma Festival", + "2042-10-15": "Dussehra", + "2042-10-31": "Sardar Patel Jayanti", + "2042-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2042-11-23": "Eid al-Adha* (*estimated)", + "2042-11-24": "Eid al-Adha* (*estimated)", + "2042-12-23": "Day of Ashura* (*estimated)", + "2042-12-25": "Christmas Day", + "2043-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2043-01-26": "Republic Day", + "2043-02-22": "Mawlid* (*estimated)", + "2043-03-22": "Bihar Day; Palm Sunday", + "2043-03-27": "Good Friday", + "2043-03-29": "Easter Sunday", + "2043-03-30": "Rajasthan Day", + "2043-04-01": "Odisha Day (Utkala Dibasa)", + "2043-04-06": "Eid al-Fitr", + "2043-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2043-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2043-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2043-05-09": "Rabindra Jayanti", + "2043-05-16": "Annexation Day", + "2043-05-17": "Feast of Pentecost", + "2043-06-15": "Maharana Pratap Jayanti", + "2043-08-15": "Independence Day", + "2043-09-04": "Eid ul-Fitr* (*estimated)", + "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-10-02": "Gandhi Jayanti", + "2043-10-06": "Bathukamma Festival", + "2043-10-15": "Dussehra", + "2043-10-31": "Sardar Patel Jayanti", + "2043-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2043-11-12": "Eid al-Adha* (*estimated)", + "2043-11-13": "Eid al-Adha* (*estimated)", + "2043-12-12": "Day of Ashura* (*estimated)", + "2043-12-25": "Christmas Day", + "2044-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2044-01-26": "Republic Day", + "2044-02-11": "Mawlid* (*estimated)", + "2044-03-22": "Bihar Day", + "2044-03-30": "Rajasthan Day", + "2044-04-01": "Odisha Day (Utkala Dibasa)", + "2044-04-06": "Eid al-Fitr", + "2044-04-10": "Palm Sunday", + "2044-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2044-04-15": "Bihu (Assamese New Year); Good Friday; Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2044-04-17": "Easter Sunday", + "2044-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2044-05-09": "Rabindra Jayanti", + "2044-05-16": "Annexation Day", + "2044-06-05": "Feast of Pentecost", + "2044-06-15": "Maharana Pratap Jayanti", + "2044-08-15": "Independence Day", + "2044-08-24": "Eid ul-Fitr* (*estimated)", + "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-10-02": "Gandhi Jayanti", + "2044-10-06": "Bathukamma Festival", + "2044-10-15": "Dussehra", + "2044-10-31": "Eid al-Adha* (*estimated); Sardar Patel Jayanti", + "2044-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Eid al-Adha* (*estimated); Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2044-11-30": "Day of Ashura* (*estimated)", + "2044-12-25": "Christmas Day", + "2045-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2045-01-26": "Republic Day", + "2045-01-30": "Mawlid* (*estimated)", + "2045-03-22": "Bihar Day", + "2045-03-30": "Rajasthan Day", + "2045-04-01": "Odisha Day (Utkala Dibasa)", + "2045-04-02": "Palm Sunday", + "2045-04-06": "Eid al-Fitr", + "2045-04-07": "Good Friday", + "2045-04-09": "Easter Sunday", + "2045-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2045-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2045-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2045-05-09": "Rabindra Jayanti", + "2045-05-16": "Annexation Day", + "2045-05-28": "Feast of Pentecost", + "2045-06-15": "Maharana Pratap Jayanti", + "2045-08-14": "Eid ul-Fitr* (*estimated)", + "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-10-02": "Gandhi Jayanti", + "2045-10-06": "Bathukamma Festival", + "2045-10-15": "Dussehra", + "2045-10-21": "Eid al-Adha* (*estimated)", + "2045-10-22": "Eid al-Adha* (*estimated)", + "2045-10-31": "Sardar Patel Jayanti", + "2045-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2045-11-19": "Day of Ashura* (*estimated)", + "2045-12-25": "Christmas Day", + "2046-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2046-01-19": "Mawlid* (*estimated)", + "2046-01-26": "Republic Day", + "2046-03-18": "Palm Sunday", + "2046-03-22": "Bihar Day", + "2046-03-23": "Good Friday", + "2046-03-25": "Easter Sunday", + "2046-03-30": "Rajasthan Day", + "2046-04-01": "Odisha Day (Utkala Dibasa)", + "2046-04-06": "Eid al-Fitr", + "2046-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2046-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2046-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2046-05-09": "Rabindra Jayanti", + "2046-05-13": "Feast of Pentecost", + "2046-05-16": "Annexation Day", + "2046-06-15": "Maharana Pratap Jayanti", + "2046-08-03": "Eid ul-Fitr* (*estimated)", + "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-15": "Independence Day", + "2046-10-02": "Gandhi Jayanti", + "2046-10-06": "Bathukamma Festival", + "2046-10-10": "Eid al-Adha* (*estimated)", + "2046-10-11": "Eid al-Adha* (*estimated)", + "2046-10-15": "Dussehra", + "2046-10-31": "Sardar Patel Jayanti", + "2046-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2046-11-09": "Day of Ashura* (*estimated)", + "2046-12-25": "Christmas Day", + "2047-01-08": "Mawlid* (*estimated)", + "2047-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2047-01-26": "Republic Day", + "2047-03-22": "Bihar Day", + "2047-03-30": "Rajasthan Day", + "2047-04-01": "Odisha Day (Utkala Dibasa)", + "2047-04-06": "Eid al-Fitr", + "2047-04-07": "Palm Sunday", + "2047-04-12": "Good Friday", + "2047-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday; Pohela Boishakh; Puthandu (Tamil New Year)", + "2047-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2047-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2047-05-09": "Rabindra Jayanti", + "2047-05-16": "Annexation Day", + "2047-06-02": "Feast of Pentecost", + "2047-06-15": "Maharana Pratap Jayanti", + "2047-07-24": "Eid ul-Fitr* (*estimated)", + "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-08-15": "Independence Day", + "2047-09-30": "Eid al-Adha* (*estimated)", + "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-10-02": "Gandhi Jayanti", + "2047-10-06": "Bathukamma Festival", + "2047-10-15": "Dussehra", + "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-31": "Sardar Patel Jayanti", + "2047-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2047-12-25": "Christmas Day", + "2047-12-29": "Mawlid* (*estimated)", + "2048-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2048-01-26": "Republic Day", + "2048-03-22": "Bihar Day", + "2048-03-29": "Palm Sunday", + "2048-03-30": "Rajasthan Day", + "2048-04-01": "Odisha Day (Utkala Dibasa)", + "2048-04-03": "Good Friday", + "2048-04-05": "Easter Sunday", + "2048-04-06": "Eid al-Fitr", + "2048-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2048-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2048-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2048-05-09": "Rabindra Jayanti", + "2048-05-16": "Annexation Day", + "2048-05-24": "Feast of Pentecost", + "2048-06-15": "Maharana Pratap Jayanti", + "2048-07-12": "Eid ul-Fitr* (*estimated)", + "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-08-15": "Independence Day", + "2048-09-19": "Eid al-Adha* (*estimated)", + "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-10-02": "Gandhi Jayanti", + "2048-10-06": "Bathukamma Festival", + "2048-10-15": "Dussehra", + "2048-10-18": "Day of Ashura* (*estimated)", + "2048-10-31": "Sardar Patel Jayanti", + "2048-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2048-12-18": "Mawlid* (*estimated)", + "2048-12-25": "Christmas Day", + "2049-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2049-01-26": "Republic Day", + "2049-03-22": "Bihar Day", + "2049-03-30": "Rajasthan Day", + "2049-04-01": "Odisha Day (Utkala Dibasa)", + "2049-04-06": "Eid al-Fitr", + "2049-04-11": "Palm Sunday", + "2049-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2049-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2049-04-16": "Good Friday", + "2049-04-18": "Easter Sunday", + "2049-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2049-05-09": "Rabindra Jayanti", + "2049-05-16": "Annexation Day", + "2049-06-06": "Feast of Pentecost", + "2049-06-15": "Maharana Pratap Jayanti", + "2049-07-01": "Eid ul-Fitr* (*estimated)", + "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-08-15": "Independence Day", + "2049-09-08": "Eid al-Adha* (*estimated)", + "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-10-02": "Gandhi Jayanti", + "2049-10-06": "Bathukamma Festival", + "2049-10-07": "Day of Ashura* (*estimated)", + "2049-10-15": "Dussehra", + "2049-10-31": "Sardar Patel Jayanti", + "2049-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2049-12-07": "Mawlid* (*estimated)", + "2049-12-25": "Christmas Day", + "2050-01-14": "Makar Sankranti / Pongal; Uttarayan", + "2050-01-26": "Republic Day", + "2050-03-22": "Bihar Day", + "2050-03-30": "Rajasthan Day", + "2050-04-01": "Odisha Day (Utkala Dibasa)", + "2050-04-03": "Palm Sunday", + "2050-04-06": "Eid al-Fitr", + "2050-04-08": "Good Friday", + "2050-04-10": "Easter Sunday", + "2050-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2050-04-15": "Bihu (Assamese New Year); Maha Vishuva Sankranti / Pana Sankranti; Pohela Boishakh; Puthandu (Tamil New Year)", + "2050-05-01": "Gujarat Day; Labour Day; Maharashtra Day", + "2050-05-09": "Rabindra Jayanti", + "2050-05-16": "Annexation Day", + "2050-05-29": "Feast of Pentecost", + "2050-06-15": "Maharana Pratap Jayanti", + "2050-06-20": "Eid ul-Fitr* (*estimated)", + "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-08-15": "Independence Day", + "2050-08-28": "Eid al-Adha* (*estimated)", + "2050-08-29": "Eid al-Adha* (*estimated)", + "2050-09-26": "Day of Ashura* (*estimated)", + "2050-10-02": "Gandhi Jayanti", + "2050-10-06": "Bathukamma Festival", + "2050-10-15": "Dussehra", + "2050-10-31": "Sardar Patel Jayanti", + "2050-11-01": "Andhra Pradesh Foundation Day; Chhattisgarh Foundation Day; Haryana Foundation Day; Karnataka Rajyotsava; Kerala Foundation Day; Madhya Pradesh Foundation Day", + "2050-11-26": "Mawlid* (*estimated)", + "2050-12-25": "Christmas Day" +} diff --git a/snapshots/countries/IR.json b/snapshots/countries/IR.json new file mode 100644 index 000000000..d556465c1 --- /dev/null +++ b/snapshots/countries/IR.json @@ -0,0 +1,1922 @@ +{ + "1980-01-08": "Arbaeen* (*estimated)", + "1980-01-16": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "1980-01-18": "Martyrdom of Ali al-Rida* (*estimated)", + "1980-01-26": "Martyrdom of Hasan al-Askari* (*estimated)", + "1980-02-04": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "1980-02-11": "Islamic Revolution Day", + "1980-03-19": "Iranian Oil Industry Nationalization Day", + "1980-03-21": "Persian New Year", + "1980-03-22": "Persian New Year", + "1980-03-23": "Persian New Year", + "1980-03-24": "Persian New Year", + "1980-04-01": "Islamic Republic Day", + "1980-04-02": "Nature's Day", + "1980-04-18": "Martyrdom of Fatima* (*estimated)", + "1980-05-27": "Birthday of Ali* (*estimated)", + "1980-06-04": "Death of Khomeini", + "1980-06-05": "Khordad National Uprising", + "1980-06-10": "Ascension of Muhammad* (*estimated)", + "1980-06-28": "Birthday of Mahdi* (*estimated)", + "1980-08-02": "Martyrdom of Ali* (*estimated)", + "1980-08-12": "Eid al-Fitr* (*estimated)", + "1980-08-13": "Eid al-Fitr* (*estimated)", + "1980-09-05": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "1980-10-19": "Eid al-Adha* (*estimated)", + "1980-10-27": "Eid al-Ghadeer* (*estimated)", + "1980-11-17": "Tasua* (*estimated)", + "1980-11-18": "Ashura* (*estimated)", + "1980-12-27": "Arbaeen* (*estimated)", + "1981-01-04": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "1981-01-06": "Martyrdom of Ali al-Rida* (*estimated)", + "1981-01-14": "Martyrdom of Hasan al-Askari* (*estimated)", + "1981-01-23": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "1981-02-11": "Islamic Revolution Day", + "1981-03-20": "Iranian Oil Industry Nationalization Day", + "1981-03-21": "Persian New Year", + "1981-03-22": "Persian New Year", + "1981-03-23": "Persian New Year", + "1981-03-24": "Persian New Year", + "1981-04-01": "Islamic Republic Day", + "1981-04-02": "Nature's Day", + "1981-04-07": "Martyrdom of Fatima* (*estimated)", + "1981-05-17": "Birthday of Ali* (*estimated)", + "1981-05-31": "Ascension of Muhammad* (*estimated)", + "1981-06-04": "Death of Khomeini", + "1981-06-05": "Khordad National Uprising", + "1981-06-17": "Birthday of Mahdi* (*estimated)", + "1981-07-22": "Martyrdom of Ali* (*estimated)", + "1981-08-01": "Eid al-Fitr* (*estimated)", + "1981-08-02": "Eid al-Fitr* (*estimated)", + "1981-08-25": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "1981-10-08": "Eid al-Adha* (*estimated)", + "1981-10-16": "Eid al-Ghadeer* (*estimated)", + "1981-11-05": "Tasua* (*estimated)", + "1981-11-06": "Ashura* (*estimated)", + "1981-12-16": "Arbaeen* (*estimated)", + "1981-12-24": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "1981-12-26": "Martyrdom of Ali al-Rida* (*estimated)", + "1982-01-03": "Martyrdom of Hasan al-Askari* (*estimated)", + "1982-01-12": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "1982-02-11": "Islamic Revolution Day", + "1982-03-20": "Iranian Oil Industry Nationalization Day", + "1982-03-21": "Persian New Year", + "1982-03-22": "Persian New Year", + "1982-03-23": "Persian New Year", + "1982-03-24": "Persian New Year", + "1982-03-28": "Martyrdom of Fatima* (*estimated)", + "1982-04-01": "Islamic Republic Day", + "1982-04-02": "Nature's Day", + "1982-05-06": "Birthday of Ali* (*estimated)", + "1982-05-20": "Ascension of Muhammad* (*estimated)", + "1982-06-04": "Death of Khomeini", + "1982-06-05": "Khordad National Uprising", + "1982-06-07": "Birthday of Mahdi* (*estimated)", + "1982-07-12": "Martyrdom of Ali* (*estimated)", + "1982-07-21": "Eid al-Fitr* (*estimated)", + "1982-07-22": "Eid al-Fitr* (*estimated)", + "1982-08-14": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "1982-09-27": "Eid al-Adha* (*estimated)", + "1982-10-05": "Eid al-Ghadeer* (*estimated)", + "1982-10-26": "Tasua* (*estimated)", + "1982-10-27": "Ashura* (*estimated)", + "1982-12-05": "Arbaeen* (*estimated)", + "1982-12-13": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "1982-12-15": "Martyrdom of Ali al-Rida* (*estimated)", + "1982-12-23": "Martyrdom of Hasan al-Askari* (*estimated)", + "1983-01-01": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "1983-02-11": "Islamic Revolution Day", + "1983-03-17": "Martyrdom of Fatima* (*estimated)", + "1983-03-20": "Iranian Oil Industry Nationalization Day", + "1983-03-21": "Persian New Year", + "1983-03-22": "Persian New Year", + "1983-03-23": "Persian New Year", + "1983-03-24": "Persian New Year", + "1983-04-01": "Islamic Republic Day", + "1983-04-02": "Nature's Day", + "1983-04-26": "Birthday of Ali* (*estimated)", + "1983-05-10": "Ascension of Muhammad* (*estimated)", + "1983-05-27": "Birthday of Mahdi* (*estimated)", + "1983-06-04": "Death of Khomeini", + "1983-06-05": "Khordad National Uprising", + "1983-07-02": "Martyrdom of Ali* (*estimated)", + "1983-07-11": "Eid al-Fitr* (*estimated)", + "1983-07-12": "Eid al-Fitr* (*estimated)", + "1983-08-04": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "1983-09-17": "Eid al-Adha* (*estimated)", + "1983-09-25": "Eid al-Ghadeer* (*estimated)", + "1983-10-15": "Tasua* (*estimated)", + "1983-10-16": "Ashura* (*estimated)", + "1983-11-24": "Arbaeen* (*estimated)", + "1983-12-02": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "1983-12-04": "Martyrdom of Ali al-Rida* (*estimated)", + "1983-12-12": "Martyrdom of Hasan al-Askari* (*estimated)", + "1983-12-21": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "1984-02-11": "Islamic Revolution Day", + "1984-03-05": "Martyrdom of Fatima* (*estimated)", + "1984-03-19": "Iranian Oil Industry Nationalization Day", + "1984-03-21": "Persian New Year", + "1984-03-22": "Persian New Year", + "1984-03-23": "Persian New Year", + "1984-03-24": "Persian New Year", + "1984-04-01": "Islamic Republic Day", + "1984-04-02": "Nature's Day", + "1984-04-14": "Birthday of Ali* (*estimated)", + "1984-04-28": "Ascension of Muhammad* (*estimated)", + "1984-05-16": "Birthday of Mahdi* (*estimated)", + "1984-06-04": "Death of Khomeini", + "1984-06-05": "Khordad National Uprising", + "1984-06-20": "Martyrdom of Ali* (*estimated)", + "1984-06-30": "Eid al-Fitr* (*estimated)", + "1984-07-01": "Eid al-Fitr* (*estimated)", + "1984-07-24": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "1984-09-05": "Eid al-Adha* (*estimated)", + "1984-09-13": "Eid al-Ghadeer* (*estimated)", + "1984-10-04": "Tasua* (*estimated)", + "1984-10-05": "Ashura* (*estimated)", + "1984-11-13": "Arbaeen* (*estimated)", + "1984-11-21": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "1984-11-22": "Martyrdom of Ali al-Rida* (*estimated)", + "1984-11-30": "Martyrdom of Hasan al-Askari* (*estimated)", + "1984-12-09": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "1985-02-11": "Islamic Revolution Day", + "1985-02-22": "Martyrdom of Fatima* (*estimated)", + "1985-03-20": "Iranian Oil Industry Nationalization Day", + "1985-03-21": "Persian New Year", + "1985-03-22": "Persian New Year", + "1985-03-23": "Persian New Year", + "1985-03-24": "Persian New Year", + "1985-04-01": "Islamic Republic Day", + "1985-04-02": "Nature's Day", + "1985-04-03": "Birthday of Ali* (*estimated)", + "1985-04-17": "Ascension of Muhammad* (*estimated)", + "1985-05-05": "Birthday of Mahdi* (*estimated)", + "1985-06-04": "Death of Khomeini", + "1985-06-05": "Khordad National Uprising", + "1985-06-09": "Martyrdom of Ali* (*estimated)", + "1985-06-19": "Eid al-Fitr* (*estimated)", + "1985-06-20": "Eid al-Fitr* (*estimated)", + "1985-07-13": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "1985-08-26": "Eid al-Adha* (*estimated)", + "1985-09-03": "Eid al-Ghadeer* (*estimated)", + "1985-09-23": "Tasua* (*estimated)", + "1985-09-24": "Ashura* (*estimated)", + "1985-11-03": "Arbaeen* (*estimated)", + "1985-11-11": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "1985-11-12": "Martyrdom of Ali al-Rida* (*estimated)", + "1985-11-20": "Martyrdom of Hasan al-Askari* (*estimated)", + "1985-11-29": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "1986-02-11": "Islamic Revolution Day", + "1986-02-12": "Martyrdom of Fatima* (*estimated)", + "1986-03-20": "Iranian Oil Industry Nationalization Day", + "1986-03-21": "Persian New Year", + "1986-03-22": "Persian New Year", + "1986-03-23": "Birthday of Ali* (*estimated); Persian New Year", + "1986-03-24": "Persian New Year", + "1986-04-01": "Islamic Republic Day", + "1986-04-02": "Nature's Day", + "1986-04-06": "Ascension of Muhammad* (*estimated)", + "1986-04-24": "Birthday of Mahdi* (*estimated)", + "1986-05-29": "Martyrdom of Ali* (*estimated)", + "1986-06-04": "Death of Khomeini", + "1986-06-05": "Khordad National Uprising", + "1986-06-08": "Eid al-Fitr* (*estimated)", + "1986-06-09": "Eid al-Fitr* (*estimated)", + "1986-07-02": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "1986-08-15": "Eid al-Adha* (*estimated)", + "1986-08-23": "Eid al-Ghadeer* (*estimated)", + "1986-09-13": "Tasua* (*estimated)", + "1986-09-14": "Ashura* (*estimated)", + "1986-10-23": "Arbaeen* (*estimated)", + "1986-10-31": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "1986-11-02": "Martyrdom of Ali al-Rida* (*estimated)", + "1986-11-10": "Martyrdom of Hasan al-Askari* (*estimated)", + "1986-11-19": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "1987-02-01": "Martyrdom of Fatima* (*estimated)", + "1987-02-11": "Islamic Revolution Day", + "1987-03-13": "Birthday of Ali* (*estimated)", + "1987-03-20": "Iranian Oil Industry Nationalization Day", + "1987-03-21": "Persian New Year", + "1987-03-22": "Persian New Year", + "1987-03-23": "Persian New Year", + "1987-03-24": "Persian New Year", + "1987-03-27": "Ascension of Muhammad* (*estimated)", + "1987-04-01": "Islamic Republic Day", + "1987-04-02": "Nature's Day", + "1987-04-13": "Birthday of Mahdi* (*estimated)", + "1987-05-19": "Martyrdom of Ali* (*estimated)", + "1987-05-28": "Eid al-Fitr* (*estimated)", + "1987-05-29": "Eid al-Fitr* (*estimated)", + "1987-06-04": "Death of Khomeini", + "1987-06-05": "Khordad National Uprising", + "1987-06-21": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "1987-08-04": "Eid al-Adha* (*estimated)", + "1987-08-12": "Eid al-Ghadeer* (*estimated)", + "1987-09-02": "Tasua* (*estimated)", + "1987-09-03": "Ashura* (*estimated)", + "1987-10-13": "Arbaeen* (*estimated)", + "1987-10-21": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "1987-10-22": "Martyrdom of Ali al-Rida* (*estimated)", + "1987-10-30": "Martyrdom of Hasan al-Askari* (*estimated)", + "1987-11-08": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "1988-01-22": "Martyrdom of Fatima* (*estimated)", + "1988-02-11": "Islamic Revolution Day", + "1988-03-01": "Birthday of Ali* (*estimated)", + "1988-03-15": "Ascension of Muhammad* (*estimated)", + "1988-03-19": "Iranian Oil Industry Nationalization Day", + "1988-03-21": "Persian New Year", + "1988-03-22": "Persian New Year", + "1988-03-23": "Persian New Year", + "1988-03-24": "Persian New Year", + "1988-04-01": "Islamic Republic Day", + "1988-04-02": "Birthday of Mahdi* (*estimated); Nature's Day", + "1988-05-07": "Martyrdom of Ali* (*estimated)", + "1988-05-16": "Eid al-Fitr* (*estimated)", + "1988-05-17": "Eid al-Fitr* (*estimated)", + "1988-06-04": "Death of Khomeini", + "1988-06-05": "Khordad National Uprising", + "1988-06-09": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "1988-07-23": "Eid al-Adha* (*estimated)", + "1988-07-31": "Eid al-Ghadeer* (*estimated)", + "1988-08-21": "Tasua* (*estimated)", + "1988-08-22": "Ashura* (*estimated)", + "1988-10-01": "Arbaeen* (*estimated)", + "1988-10-09": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "1988-10-10": "Martyrdom of Ali al-Rida* (*estimated)", + "1988-10-18": "Martyrdom of Hasan al-Askari* (*estimated)", + "1988-10-27": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "1989-01-10": "Martyrdom of Fatima* (*estimated)", + "1989-02-11": "Islamic Revolution Day", + "1989-02-19": "Birthday of Ali* (*estimated)", + "1989-03-05": "Ascension of Muhammad* (*estimated)", + "1989-03-20": "Iranian Oil Industry Nationalization Day", + "1989-03-21": "Persian New Year", + "1989-03-22": "Birthday of Mahdi* (*estimated); Persian New Year", + "1989-03-23": "Persian New Year", + "1989-03-24": "Persian New Year", + "1989-04-01": "Islamic Republic Day", + "1989-04-02": "Nature's Day", + "1989-04-27": "Martyrdom of Ali* (*estimated)", + "1989-05-06": "Eid al-Fitr* (*estimated)", + "1989-05-07": "Eid al-Fitr* (*estimated)", + "1989-05-30": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "1989-06-04": "Death of Khomeini", + "1989-06-05": "Khordad National Uprising", + "1989-07-13": "Eid al-Adha* (*estimated)", + "1989-07-21": "Eid al-Ghadeer* (*estimated)", + "1989-08-10": "Tasua* (*estimated)", + "1989-08-11": "Ashura* (*estimated)", + "1989-09-20": "Arbaeen* (*estimated)", + "1989-09-28": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "1989-09-29": "Martyrdom of Ali al-Rida* (*estimated)", + "1989-10-07": "Martyrdom of Hasan al-Askari* (*estimated)", + "1989-10-16": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "1989-12-31": "Martyrdom of Fatima* (*estimated)", + "1990-02-08": "Birthday of Ali* (*estimated)", + "1990-02-11": "Islamic Revolution Day", + "1990-02-22": "Ascension of Muhammad* (*estimated)", + "1990-03-12": "Birthday of Mahdi* (*estimated)", + "1990-03-20": "Iranian Oil Industry Nationalization Day", + "1990-03-21": "Persian New Year", + "1990-03-22": "Persian New Year", + "1990-03-23": "Persian New Year", + "1990-03-24": "Persian New Year", + "1990-04-01": "Islamic Republic Day", + "1990-04-02": "Nature's Day", + "1990-04-16": "Martyrdom of Ali* (*estimated)", + "1990-04-26": "Eid al-Fitr* (*estimated)", + "1990-04-27": "Eid al-Fitr* (*estimated)", + "1990-05-20": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "1990-06-04": "Death of Khomeini", + "1990-06-05": "Khordad National Uprising", + "1990-07-02": "Eid al-Adha* (*estimated)", + "1990-07-10": "Eid al-Ghadeer* (*estimated)", + "1990-07-31": "Tasua* (*estimated)", + "1990-08-01": "Ashura* (*estimated)", + "1990-09-09": "Arbaeen* (*estimated)", + "1990-09-17": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "1990-09-19": "Martyrdom of Ali al-Rida* (*estimated)", + "1990-09-27": "Martyrdom of Hasan al-Askari* (*estimated)", + "1990-10-06": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "1990-12-20": "Martyrdom of Fatima* (*estimated)", + "1991-01-28": "Birthday of Ali* (*estimated)", + "1991-02-11": "Ascension of Muhammad* (*estimated); Islamic Revolution Day", + "1991-03-01": "Birthday of Mahdi* (*estimated)", + "1991-03-20": "Iranian Oil Industry Nationalization Day", + "1991-03-21": "Persian New Year", + "1991-03-22": "Persian New Year", + "1991-03-23": "Persian New Year", + "1991-03-24": "Persian New Year", + "1991-04-01": "Islamic Republic Day", + "1991-04-02": "Nature's Day", + "1991-04-06": "Martyrdom of Ali* (*estimated)", + "1991-04-15": "Eid al-Fitr* (*estimated)", + "1991-04-16": "Eid al-Fitr* (*estimated)", + "1991-05-09": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "1991-06-04": "Death of Khomeini", + "1991-06-05": "Khordad National Uprising", + "1991-06-22": "Eid al-Adha* (*estimated)", + "1991-06-30": "Eid al-Ghadeer* (*estimated)", + "1991-07-20": "Tasua* (*estimated)", + "1991-07-21": "Ashura* (*estimated)", + "1991-08-30": "Arbaeen* (*estimated)", + "1991-09-07": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "1991-09-08": "Martyrdom of Ali al-Rida* (*estimated)", + "1991-09-16": "Martyrdom of Hasan al-Askari* (*estimated)", + "1991-09-25": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "1991-12-09": "Martyrdom of Fatima* (*estimated)", + "1992-01-17": "Birthday of Ali* (*estimated)", + "1992-01-31": "Ascension of Muhammad* (*estimated)", + "1992-02-11": "Islamic Revolution Day", + "1992-02-18": "Birthday of Mahdi* (*estimated)", + "1992-03-19": "Iranian Oil Industry Nationalization Day", + "1992-03-21": "Persian New Year", + "1992-03-22": "Persian New Year", + "1992-03-23": "Persian New Year", + "1992-03-24": "Persian New Year", + "1992-03-25": "Martyrdom of Ali* (*estimated)", + "1992-04-01": "Islamic Republic Day", + "1992-04-02": "Nature's Day", + "1992-04-04": "Eid al-Fitr* (*estimated)", + "1992-04-05": "Eid al-Fitr* (*estimated)", + "1992-04-28": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "1992-06-04": "Death of Khomeini", + "1992-06-05": "Khordad National Uprising", + "1992-06-11": "Eid al-Adha* (*estimated)", + "1992-06-19": "Eid al-Ghadeer* (*estimated)", + "1992-07-09": "Tasua* (*estimated)", + "1992-07-10": "Ashura* (*estimated)", + "1992-08-18": "Arbaeen* (*estimated)", + "1992-08-26": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "1992-08-28": "Martyrdom of Ali al-Rida* (*estimated)", + "1992-09-05": "Martyrdom of Hasan al-Askari* (*estimated)", + "1992-09-14": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "1992-11-27": "Martyrdom of Fatima* (*estimated)", + "1993-01-06": "Birthday of Ali* (*estimated)", + "1993-01-20": "Ascension of Muhammad* (*estimated)", + "1993-02-06": "Birthday of Mahdi* (*estimated)", + "1993-02-11": "Islamic Revolution Day", + "1993-03-14": "Martyrdom of Ali* (*estimated)", + "1993-03-20": "Iranian Oil Industry Nationalization Day", + "1993-03-21": "Persian New Year", + "1993-03-22": "Persian New Year", + "1993-03-23": "Persian New Year", + "1993-03-24": "Eid al-Fitr* (*estimated); Persian New Year", + "1993-03-25": "Eid al-Fitr* (*estimated)", + "1993-04-01": "Islamic Republic Day", + "1993-04-02": "Nature's Day", + "1993-04-17": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "1993-05-31": "Eid al-Adha* (*estimated)", + "1993-06-04": "Death of Khomeini", + "1993-06-05": "Khordad National Uprising", + "1993-06-08": "Eid al-Ghadeer* (*estimated)", + "1993-06-29": "Tasua* (*estimated)", + "1993-06-30": "Ashura* (*estimated)", + "1993-08-08": "Arbaeen* (*estimated)", + "1993-08-16": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "1993-08-17": "Martyrdom of Ali al-Rida* (*estimated)", + "1993-08-25": "Martyrdom of Hasan al-Askari* (*estimated)", + "1993-09-03": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "1993-11-16": "Martyrdom of Fatima* (*estimated)", + "1993-12-26": "Birthday of Ali* (*estimated)", + "1994-01-09": "Ascension of Muhammad* (*estimated)", + "1994-01-26": "Birthday of Mahdi* (*estimated)", + "1994-02-11": "Islamic Revolution Day", + "1994-03-03": "Martyrdom of Ali* (*estimated)", + "1994-03-13": "Eid al-Fitr* (*estimated)", + "1994-03-14": "Eid al-Fitr* (*estimated)", + "1994-03-20": "Iranian Oil Industry Nationalization Day", + "1994-03-21": "Persian New Year", + "1994-03-22": "Persian New Year", + "1994-03-23": "Persian New Year", + "1994-03-24": "Persian New Year", + "1994-04-01": "Islamic Republic Day", + "1994-04-02": "Nature's Day", + "1994-04-06": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "1994-05-20": "Eid al-Adha* (*estimated)", + "1994-05-28": "Eid al-Ghadeer* (*estimated)", + "1994-06-04": "Death of Khomeini", + "1994-06-05": "Khordad National Uprising", + "1994-06-18": "Tasua* (*estimated)", + "1994-06-19": "Ashura* (*estimated)", + "1994-07-28": "Arbaeen* (*estimated)", + "1994-08-05": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "1994-08-07": "Martyrdom of Ali al-Rida* (*estimated)", + "1994-08-15": "Martyrdom of Hasan al-Askari* (*estimated)", + "1994-08-24": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "1994-11-06": "Martyrdom of Fatima* (*estimated)", + "1994-12-15": "Birthday of Ali* (*estimated)", + "1994-12-29": "Ascension of Muhammad* (*estimated)", + "1995-01-16": "Birthday of Mahdi* (*estimated)", + "1995-02-11": "Islamic Revolution Day", + "1995-02-20": "Martyrdom of Ali* (*estimated)", + "1995-03-02": "Eid al-Fitr* (*estimated)", + "1995-03-03": "Eid al-Fitr* (*estimated)", + "1995-03-20": "Iranian Oil Industry Nationalization Day", + "1995-03-21": "Persian New Year", + "1995-03-22": "Persian New Year", + "1995-03-23": "Persian New Year", + "1995-03-24": "Persian New Year", + "1995-03-26": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "1995-04-01": "Islamic Republic Day", + "1995-04-02": "Nature's Day", + "1995-05-09": "Eid al-Adha* (*estimated)", + "1995-05-17": "Eid al-Ghadeer* (*estimated)", + "1995-06-04": "Death of Khomeini", + "1995-06-05": "Khordad National Uprising", + "1995-06-07": "Tasua* (*estimated)", + "1995-06-08": "Ashura* (*estimated)", + "1995-07-18": "Arbaeen* (*estimated)", + "1995-07-26": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "1995-07-27": "Martyrdom of Ali al-Rida* (*estimated)", + "1995-08-04": "Martyrdom of Hasan al-Askari* (*estimated)", + "1995-08-13": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "1995-10-27": "Martyrdom of Fatima* (*estimated)", + "1995-12-05": "Birthday of Ali* (*estimated)", + "1995-12-19": "Ascension of Muhammad* (*estimated)", + "1996-01-06": "Birthday of Mahdi* (*estimated)", + "1996-02-10": "Martyrdom of Ali* (*estimated)", + "1996-02-11": "Islamic Revolution Day", + "1996-02-19": "Eid al-Fitr* (*estimated)", + "1996-02-20": "Eid al-Fitr* (*estimated)", + "1996-03-14": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "1996-03-19": "Iranian Oil Industry Nationalization Day", + "1996-03-20": "Persian New Year", + "1996-03-21": "Persian New Year", + "1996-03-22": "Persian New Year", + "1996-03-23": "Persian New Year", + "1996-03-31": "Islamic Republic Day", + "1996-04-01": "Nature's Day", + "1996-04-27": "Eid al-Adha* (*estimated)", + "1996-05-05": "Eid al-Ghadeer* (*estimated)", + "1996-05-26": "Tasua* (*estimated)", + "1996-05-27": "Ashura* (*estimated)", + "1996-06-03": "Death of Khomeini", + "1996-06-04": "Khordad National Uprising", + "1996-07-06": "Arbaeen* (*estimated)", + "1996-07-14": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "1996-07-15": "Martyrdom of Ali al-Rida* (*estimated)", + "1996-07-23": "Martyrdom of Hasan al-Askari* (*estimated)", + "1996-08-01": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "1996-10-15": "Martyrdom of Fatima* (*estimated)", + "1996-11-24": "Birthday of Ali* (*estimated)", + "1996-12-08": "Ascension of Muhammad* (*estimated)", + "1996-12-25": "Birthday of Mahdi* (*estimated)", + "1997-01-30": "Martyrdom of Ali* (*estimated)", + "1997-02-08": "Eid al-Fitr* (*estimated)", + "1997-02-09": "Eid al-Fitr* (*estimated)", + "1997-02-10": "Islamic Revolution Day", + "1997-03-04": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "1997-03-19": "Iranian Oil Industry Nationalization Day", + "1997-03-21": "Persian New Year", + "1997-03-22": "Persian New Year", + "1997-03-23": "Persian New Year", + "1997-03-24": "Persian New Year", + "1997-04-01": "Islamic Republic Day", + "1997-04-02": "Nature's Day", + "1997-04-17": "Eid al-Adha* (*estimated)", + "1997-04-25": "Eid al-Ghadeer* (*estimated)", + "1997-05-15": "Tasua* (*estimated)", + "1997-05-16": "Ashura* (*estimated)", + "1997-06-04": "Death of Khomeini", + "1997-06-05": "Khordad National Uprising", + "1997-06-25": "Arbaeen* (*estimated)", + "1997-07-03": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "1997-07-04": "Martyrdom of Ali al-Rida* (*estimated)", + "1997-07-12": "Martyrdom of Hasan al-Askari* (*estimated)", + "1997-07-21": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "1997-10-04": "Martyrdom of Fatima* (*estimated)", + "1997-11-13": "Birthday of Ali* (*estimated)", + "1997-11-27": "Ascension of Muhammad* (*estimated)", + "1997-12-15": "Birthday of Mahdi* (*estimated)", + "1998-01-19": "Martyrdom of Ali* (*estimated)", + "1998-01-29": "Eid al-Fitr* (*estimated)", + "1998-01-30": "Eid al-Fitr* (*estimated)", + "1998-02-11": "Islamic Revolution Day", + "1998-02-22": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "1998-03-20": "Iranian Oil Industry Nationalization Day", + "1998-03-21": "Persian New Year", + "1998-03-22": "Persian New Year", + "1998-03-23": "Persian New Year", + "1998-03-24": "Persian New Year", + "1998-04-01": "Islamic Republic Day", + "1998-04-02": "Nature's Day", + "1998-04-07": "Eid al-Adha* (*estimated)", + "1998-04-15": "Eid al-Ghadeer* (*estimated)", + "1998-05-05": "Tasua* (*estimated)", + "1998-05-06": "Ashura* (*estimated)", + "1998-06-04": "Death of Khomeini", + "1998-06-05": "Khordad National Uprising", + "1998-06-14": "Arbaeen* (*estimated)", + "1998-06-22": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "1998-06-24": "Martyrdom of Ali al-Rida* (*estimated)", + "1998-07-02": "Martyrdom of Hasan al-Askari* (*estimated)", + "1998-07-11": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "1998-09-23": "Martyrdom of Fatima* (*estimated)", + "1998-11-02": "Birthday of Ali* (*estimated)", + "1998-11-16": "Ascension of Muhammad* (*estimated)", + "1998-12-04": "Birthday of Mahdi* (*estimated)", + "1999-01-08": "Martyrdom of Ali* (*estimated)", + "1999-01-18": "Eid al-Fitr* (*estimated)", + "1999-01-19": "Eid al-Fitr* (*estimated)", + "1999-02-11": "Islamic Revolution Day; Martyrdom of Ja'far al-Sadiq* (*estimated)", + "1999-03-20": "Iranian Oil Industry Nationalization Day", + "1999-03-21": "Persian New Year", + "1999-03-22": "Persian New Year", + "1999-03-23": "Persian New Year", + "1999-03-24": "Persian New Year", + "1999-03-27": "Eid al-Adha* (*estimated)", + "1999-04-01": "Islamic Republic Day", + "1999-04-02": "Nature's Day", + "1999-04-04": "Eid al-Ghadeer* (*estimated)", + "1999-04-25": "Tasua* (*estimated)", + "1999-04-26": "Ashura* (*estimated)", + "1999-06-04": "Arbaeen* (*estimated); Death of Khomeini", + "1999-06-05": "Khordad National Uprising", + "1999-06-12": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "1999-06-14": "Martyrdom of Ali al-Rida* (*estimated)", + "1999-06-22": "Martyrdom of Hasan al-Askari* (*estimated)", + "1999-07-01": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "1999-09-13": "Martyrdom of Fatima* (*estimated)", + "1999-10-22": "Birthday of Ali* (*estimated)", + "1999-11-05": "Ascension of Muhammad* (*estimated)", + "1999-11-23": "Birthday of Mahdi* (*estimated)", + "1999-12-29": "Martyrdom of Ali* (*estimated)", + "2000-01-08": "Eid al-Fitr* (*estimated)", + "2000-01-09": "Eid al-Fitr* (*estimated)", + "2000-02-01": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2000-02-11": "Islamic Revolution Day", + "2000-03-16": "Eid al-Adha* (*estimated)", + "2000-03-19": "Iranian Oil Industry Nationalization Day", + "2000-03-20": "Persian New Year", + "2000-03-21": "Persian New Year", + "2000-03-22": "Persian New Year", + "2000-03-23": "Persian New Year", + "2000-03-24": "Eid al-Ghadeer* (*estimated)", + "2000-03-31": "Islamic Republic Day", + "2000-04-01": "Nature's Day", + "2000-04-14": "Tasua* (*estimated)", + "2000-04-15": "Ashura* (*estimated)", + "2000-05-24": "Arbaeen* (*estimated)", + "2000-06-01": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2000-06-02": "Martyrdom of Ali al-Rida* (*estimated)", + "2000-06-03": "Death of Khomeini", + "2000-06-04": "Khordad National Uprising", + "2000-06-10": "Martyrdom of Hasan al-Askari* (*estimated)", + "2000-06-19": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2000-09-01": "Martyrdom of Fatima* (*estimated)", + "2000-10-10": "Birthday of Ali* (*estimated)", + "2000-10-24": "Ascension of Muhammad* (*estimated)", + "2000-11-11": "Birthday of Mahdi* (*estimated)", + "2000-12-17": "Martyrdom of Ali* (*estimated)", + "2000-12-27": "Eid al-Fitr* (*estimated)", + "2000-12-28": "Eid al-Fitr* (*estimated)", + "2001-01-20": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2001-02-10": "Islamic Revolution Day", + "2001-03-05": "Eid al-Adha* (*estimated)", + "2001-03-13": "Eid al-Ghadeer* (*estimated)", + "2001-03-19": "Iranian Oil Industry Nationalization Day", + "2001-03-21": "Persian New Year", + "2001-03-22": "Persian New Year", + "2001-03-23": "Persian New Year", + "2001-03-24": "Persian New Year", + "2001-04-01": "Islamic Republic Day", + "2001-04-02": "Nature's Day", + "2001-04-03": "Tasua* (*estimated)", + "2001-04-04": "Ashura* (*estimated)", + "2001-05-14": "Arbaeen* (*estimated)", + "2001-05-22": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2001-05-23": "Martyrdom of Ali al-Rida* (*estimated)", + "2001-05-31": "Martyrdom of Hasan al-Askari* (*estimated)", + "2001-06-04": "Death of Khomeini", + "2001-06-05": "Khordad National Uprising", + "2001-06-09": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2001-08-22": "Martyrdom of Fatima* (*estimated)", + "2001-09-30": "Birthday of Ali* (*estimated)", + "2001-10-14": "Ascension of Muhammad* (*estimated)", + "2001-10-31": "Birthday of Mahdi* (*estimated)", + "2001-12-06": "Martyrdom of Ali* (*estimated)", + "2001-12-16": "Eid al-Fitr* (*estimated)", + "2001-12-17": "Eid al-Fitr* (*estimated)", + "2002-01-09": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2002-02-11": "Islamic Revolution Day", + "2002-02-22": "Eid al-Adha* (*estimated)", + "2002-03-02": "Eid al-Ghadeer* (*estimated)", + "2002-03-20": "Iranian Oil Industry Nationalization Day", + "2002-03-21": "Persian New Year", + "2002-03-22": "Persian New Year", + "2002-03-23": "Persian New Year; Tasua* (*estimated)", + "2002-03-24": "Ashura* (*estimated); Persian New Year", + "2002-04-01": "Islamic Republic Day", + "2002-04-02": "Nature's Day", + "2002-05-03": "Arbaeen* (*estimated)", + "2002-05-11": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2002-05-12": "Martyrdom of Ali al-Rida* (*estimated)", + "2002-05-20": "Martyrdom of Hasan al-Askari* (*estimated)", + "2002-05-29": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2002-06-04": "Death of Khomeini", + "2002-06-05": "Khordad National Uprising", + "2002-08-12": "Martyrdom of Fatima* (*estimated)", + "2002-09-20": "Birthday of Ali* (*estimated)", + "2002-10-04": "Ascension of Muhammad* (*estimated)", + "2002-10-21": "Birthday of Mahdi* (*estimated)", + "2002-11-26": "Martyrdom of Ali* (*estimated)", + "2002-12-05": "Eid al-Fitr* (*estimated)", + "2002-12-06": "Eid al-Fitr* (*estimated)", + "2002-12-29": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2003-02-11": "Eid al-Adha* (*estimated); Islamic Revolution Day", + "2003-02-19": "Eid al-Ghadeer* (*estimated)", + "2003-03-12": "Tasua* (*estimated)", + "2003-03-13": "Ashura* (*estimated)", + "2003-03-20": "Iranian Oil Industry Nationalization Day", + "2003-03-21": "Persian New Year", + "2003-03-22": "Persian New Year", + "2003-03-23": "Persian New Year", + "2003-03-24": "Persian New Year", + "2003-04-01": "Islamic Republic Day", + "2003-04-02": "Nature's Day", + "2003-04-22": "Arbaeen* (*estimated)", + "2003-04-30": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2003-05-01": "Martyrdom of Ali al-Rida* (*estimated)", + "2003-05-09": "Martyrdom of Hasan al-Askari* (*estimated)", + "2003-05-18": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2003-06-04": "Death of Khomeini", + "2003-06-05": "Khordad National Uprising", + "2003-08-01": "Martyrdom of Fatima* (*estimated)", + "2003-09-10": "Birthday of Ali* (*estimated)", + "2003-09-24": "Ascension of Muhammad* (*estimated)", + "2003-10-11": "Birthday of Mahdi* (*estimated)", + "2003-11-15": "Martyrdom of Ali* (*estimated)", + "2003-11-25": "Eid al-Fitr* (*estimated)", + "2003-11-26": "Eid al-Fitr* (*estimated)", + "2003-12-19": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2004-02-01": "Eid al-Adha* (*estimated)", + "2004-02-09": "Eid al-Ghadeer* (*estimated)", + "2004-02-11": "Islamic Revolution Day", + "2004-02-29": "Tasua* (*estimated)", + "2004-03-01": "Ashura* (*estimated)", + "2004-03-19": "Iranian Oil Industry Nationalization Day", + "2004-03-20": "Persian New Year", + "2004-03-21": "Persian New Year", + "2004-03-22": "Persian New Year", + "2004-03-23": "Persian New Year", + "2004-03-31": "Islamic Republic Day", + "2004-04-01": "Nature's Day", + "2004-04-10": "Arbaeen* (*estimated)", + "2004-04-18": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2004-04-19": "Martyrdom of Ali al-Rida* (*estimated)", + "2004-04-27": "Martyrdom of Hasan al-Askari* (*estimated)", + "2004-05-06": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2004-06-03": "Death of Khomeini", + "2004-06-04": "Khordad National Uprising", + "2004-07-20": "Martyrdom of Fatima* (*estimated)", + "2004-08-29": "Birthday of Ali* (*estimated)", + "2004-09-12": "Ascension of Muhammad* (*estimated)", + "2004-09-29": "Birthday of Mahdi* (*estimated)", + "2004-11-04": "Martyrdom of Ali* (*estimated)", + "2004-11-14": "Eid al-Fitr* (*estimated)", + "2004-11-15": "Eid al-Fitr* (*estimated)", + "2004-12-08": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2005-01-21": "Eid al-Adha* (*estimated)", + "2005-01-29": "Eid al-Ghadeer* (*estimated)", + "2005-02-10": "Islamic Revolution Day", + "2005-02-18": "Tasua* (*estimated)", + "2005-02-19": "Ashura* (*estimated)", + "2005-03-19": "Iranian Oil Industry Nationalization Day", + "2005-03-21": "Persian New Year", + "2005-03-22": "Persian New Year", + "2005-03-23": "Persian New Year", + "2005-03-24": "Persian New Year", + "2005-03-30": "Arbaeen* (*estimated)", + "2005-04-01": "Islamic Republic Day", + "2005-04-02": "Nature's Day", + "2005-04-07": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2005-04-09": "Martyrdom of Ali al-Rida* (*estimated)", + "2005-04-17": "Martyrdom of Hasan al-Askari* (*estimated)", + "2005-04-26": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2005-06-04": "Death of Khomeini", + "2005-06-05": "Khordad National Uprising", + "2005-07-09": "Martyrdom of Fatima* (*estimated)", + "2005-08-18": "Birthday of Ali* (*estimated)", + "2005-09-01": "Ascension of Muhammad* (*estimated)", + "2005-09-19": "Birthday of Mahdi* (*estimated)", + "2005-10-24": "Martyrdom of Ali* (*estimated)", + "2005-11-03": "Eid al-Fitr* (*estimated)", + "2005-11-04": "Eid al-Fitr* (*estimated)", + "2005-11-27": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2006-01-10": "Eid al-Adha* (*estimated)", + "2006-01-18": "Eid al-Ghadeer* (*estimated)", + "2006-02-08": "Tasua* (*estimated)", + "2006-02-09": "Ashura* (*estimated)", + "2006-02-11": "Islamic Revolution Day", + "2006-03-20": "Arbaeen* (*estimated); Iranian Oil Industry Nationalization Day", + "2006-03-21": "Persian New Year", + "2006-03-22": "Persian New Year", + "2006-03-23": "Persian New Year", + "2006-03-24": "Persian New Year", + "2006-03-28": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2006-03-29": "Martyrdom of Ali al-Rida* (*estimated)", + "2006-04-01": "Islamic Republic Day", + "2006-04-02": "Nature's Day", + "2006-04-06": "Martyrdom of Hasan al-Askari* (*estimated)", + "2006-04-15": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2006-06-04": "Death of Khomeini", + "2006-06-05": "Khordad National Uprising", + "2006-06-29": "Martyrdom of Fatima* (*estimated)", + "2006-08-07": "Birthday of Ali* (*estimated)", + "2006-08-21": "Ascension of Muhammad* (*estimated)", + "2006-09-08": "Birthday of Mahdi* (*estimated)", + "2006-10-14": "Martyrdom of Ali* (*estimated)", + "2006-10-23": "Eid al-Fitr* (*estimated)", + "2006-10-24": "Eid al-Fitr* (*estimated)", + "2006-11-16": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2006-12-31": "Eid al-Adha* (*estimated)", + "2007-01-08": "Eid al-Ghadeer* (*estimated)", + "2007-01-28": "Tasua* (*estimated)", + "2007-01-29": "Ashura* (*estimated)", + "2007-02-11": "Islamic Revolution Day", + "2007-03-10": "Arbaeen* (*estimated)", + "2007-03-18": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2007-03-19": "Martyrdom of Ali al-Rida* (*estimated)", + "2007-03-20": "Iranian Oil Industry Nationalization Day", + "2007-03-21": "Persian New Year", + "2007-03-22": "Persian New Year", + "2007-03-23": "Persian New Year", + "2007-03-24": "Persian New Year", + "2007-03-27": "Martyrdom of Hasan al-Askari* (*estimated)", + "2007-04-01": "Islamic Republic Day", + "2007-04-02": "Nature's Day", + "2007-04-05": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2007-06-04": "Death of Khomeini", + "2007-06-05": "Khordad National Uprising", + "2007-06-18": "Martyrdom of Fatima* (*estimated)", + "2007-07-27": "Birthday of Ali* (*estimated)", + "2007-08-10": "Ascension of Muhammad* (*estimated)", + "2007-08-28": "Birthday of Mahdi* (*estimated)", + "2007-10-03": "Martyrdom of Ali* (*estimated)", + "2007-10-13": "Eid al-Fitr* (*estimated)", + "2007-10-14": "Eid al-Fitr* (*estimated)", + "2007-11-06": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2007-12-20": "Eid al-Adha* (*estimated)", + "2007-12-28": "Eid al-Ghadeer* (*estimated)", + "2008-01-18": "Tasua* (*estimated)", + "2008-01-19": "Ashura* (*estimated)", + "2008-02-11": "Islamic Revolution Day", + "2008-02-27": "Arbaeen* (*estimated)", + "2008-03-06": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2008-03-08": "Martyrdom of Ali al-Rida* (*estimated)", + "2008-03-16": "Martyrdom of Hasan al-Askari* (*estimated)", + "2008-03-19": "Iranian Oil Industry Nationalization Day", + "2008-03-20": "Persian New Year", + "2008-03-21": "Persian New Year", + "2008-03-22": "Persian New Year", + "2008-03-23": "Persian New Year", + "2008-03-25": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2008-03-31": "Islamic Republic Day", + "2008-04-01": "Nature's Day", + "2008-06-03": "Death of Khomeini", + "2008-06-04": "Khordad National Uprising", + "2008-06-07": "Martyrdom of Fatima* (*estimated)", + "2008-07-16": "Birthday of Ali* (*estimated)", + "2008-07-30": "Ascension of Muhammad* (*estimated)", + "2008-08-16": "Birthday of Mahdi* (*estimated)", + "2008-09-21": "Martyrdom of Ali* (*estimated)", + "2008-10-01": "Eid al-Fitr* (*estimated)", + "2008-10-02": "Eid al-Fitr* (*estimated)", + "2008-10-25": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2008-12-08": "Eid al-Adha* (*estimated)", + "2008-12-16": "Eid al-Ghadeer* (*estimated)", + "2009-01-06": "Tasua* (*estimated)", + "2009-01-07": "Ashura* (*estimated)", + "2009-02-10": "Islamic Revolution Day", + "2009-02-15": "Arbaeen* (*estimated)", + "2009-02-23": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2009-02-25": "Martyrdom of Ali al-Rida* (*estimated)", + "2009-03-05": "Martyrdom of Hasan al-Askari* (*estimated)", + "2009-03-14": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2009-03-19": "Iranian Oil Industry Nationalization Day", + "2009-03-21": "Persian New Year", + "2009-03-22": "Persian New Year", + "2009-03-23": "Persian New Year", + "2009-03-24": "Persian New Year", + "2009-04-01": "Islamic Republic Day", + "2009-04-02": "Nature's Day", + "2009-05-27": "Martyrdom of Fatima* (*estimated)", + "2009-06-04": "Death of Khomeini", + "2009-06-05": "Khordad National Uprising", + "2009-07-06": "Birthday of Ali* (*estimated)", + "2009-07-20": "Ascension of Muhammad* (*estimated)", + "2009-08-06": "Birthday of Mahdi* (*estimated)", + "2009-09-11": "Martyrdom of Ali* (*estimated)", + "2009-09-20": "Eid al-Fitr* (*estimated)", + "2009-09-21": "Eid al-Fitr* (*estimated)", + "2009-10-14": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2009-11-27": "Eid al-Adha* (*estimated)", + "2009-12-05": "Eid al-Ghadeer* (*estimated)", + "2009-12-26": "Tasua* (*estimated)", + "2009-12-27": "Ashura* (*estimated)", + "2010-02-04": "Arbaeen* (*estimated)", + "2010-02-11": "Islamic Revolution Day", + "2010-02-12": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2010-02-14": "Martyrdom of Ali al-Rida* (*estimated)", + "2010-02-22": "Martyrdom of Hasan al-Askari* (*estimated)", + "2010-03-03": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2010-03-20": "Iranian Oil Industry Nationalization Day", + "2010-03-21": "Persian New Year", + "2010-03-22": "Persian New Year", + "2010-03-23": "Persian New Year", + "2010-03-24": "Persian New Year", + "2010-04-01": "Islamic Republic Day", + "2010-04-02": "Nature's Day", + "2010-05-17": "Martyrdom of Fatima* (*estimated)", + "2010-06-04": "Death of Khomeini", + "2010-06-05": "Khordad National Uprising", + "2010-06-25": "Birthday of Ali* (*estimated)", + "2010-07-09": "Ascension of Muhammad* (*estimated)", + "2010-07-27": "Birthday of Mahdi* (*estimated)", + "2010-08-31": "Martyrdom of Ali* (*estimated)", + "2010-09-10": "Eid al-Fitr* (*estimated)", + "2010-09-11": "Eid al-Fitr* (*estimated)", + "2010-10-04": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2010-11-16": "Eid al-Adha* (*estimated)", + "2010-11-24": "Eid al-Ghadeer* (*estimated)", + "2010-12-15": "Tasua* (*estimated)", + "2010-12-16": "Ashura* (*estimated)", + "2011-01-24": "Arbaeen* (*estimated)", + "2011-02-01": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2011-02-03": "Martyrdom of Ali al-Rida* (*estimated)", + "2011-02-11": "Islamic Revolution Day; Martyrdom of Hasan al-Askari* (*estimated)", + "2011-02-20": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2011-03-20": "Iranian Oil Industry Nationalization Day", + "2011-03-21": "Persian New Year", + "2011-03-22": "Persian New Year", + "2011-03-23": "Persian New Year", + "2011-03-24": "Persian New Year", + "2011-04-01": "Islamic Republic Day", + "2011-04-02": "Nature's Day", + "2011-05-06": "Martyrdom of Fatima* (*estimated)", + "2011-06-04": "Death of Khomeini", + "2011-06-05": "Khordad National Uprising", + "2011-06-15": "Birthday of Ali* (*estimated)", + "2011-06-29": "Ascension of Muhammad* (*estimated)", + "2011-07-16": "Birthday of Mahdi* (*estimated)", + "2011-08-21": "Martyrdom of Ali* (*estimated)", + "2011-08-30": "Eid al-Fitr* (*estimated)", + "2011-08-31": "Eid al-Fitr* (*estimated)", + "2011-09-23": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2011-11-06": "Eid al-Adha* (*estimated)", + "2011-11-14": "Eid al-Ghadeer* (*estimated)", + "2011-12-04": "Tasua* (*estimated)", + "2011-12-05": "Ashura* (*estimated)", + "2012-01-14": "Arbaeen* (*estimated)", + "2012-01-22": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2012-01-23": "Martyrdom of Ali al-Rida* (*estimated)", + "2012-01-31": "Martyrdom of Hasan al-Askari* (*estimated)", + "2012-02-09": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2012-02-11": "Islamic Revolution Day", + "2012-03-19": "Iranian Oil Industry Nationalization Day", + "2012-03-20": "Persian New Year", + "2012-03-21": "Persian New Year", + "2012-03-22": "Persian New Year", + "2012-03-23": "Persian New Year", + "2012-03-31": "Islamic Republic Day", + "2012-04-01": "Nature's Day", + "2012-04-24": "Martyrdom of Fatima* (*estimated)", + "2012-06-03": "Birthday of Ali* (*estimated); Death of Khomeini", + "2012-06-04": "Khordad National Uprising", + "2012-06-17": "Ascension of Muhammad* (*estimated)", + "2012-07-05": "Birthday of Mahdi* (*estimated)", + "2012-08-09": "Martyrdom of Ali* (*estimated)", + "2012-08-19": "Eid al-Fitr* (*estimated)", + "2012-08-20": "Eid al-Fitr* (*estimated)", + "2012-09-12": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2012-10-26": "Eid al-Adha* (*estimated)", + "2012-11-03": "Eid al-Ghadeer* (*estimated)", + "2012-11-23": "Tasua* (*estimated)", + "2012-11-24": "Ashura* (*estimated)", + "2013-01-02": "Arbaeen* (*estimated)", + "2013-01-10": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2013-01-12": "Martyrdom of Ali al-Rida* (*estimated)", + "2013-01-20": "Martyrdom of Hasan al-Askari* (*estimated)", + "2013-01-29": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2013-02-10": "Islamic Revolution Day", + "2013-03-19": "Iranian Oil Industry Nationalization Day", + "2013-03-21": "Persian New Year", + "2013-03-22": "Persian New Year", + "2013-03-23": "Persian New Year", + "2013-03-24": "Persian New Year", + "2013-04-01": "Islamic Republic Day", + "2013-04-02": "Nature's Day", + "2013-04-13": "Martyrdom of Fatima* (*estimated)", + "2013-05-23": "Birthday of Ali* (*estimated)", + "2013-06-04": "Death of Khomeini", + "2013-06-05": "Khordad National Uprising", + "2013-06-06": "Ascension of Muhammad* (*estimated)", + "2013-06-24": "Birthday of Mahdi* (*estimated)", + "2013-07-29": "Martyrdom of Ali* (*estimated)", + "2013-08-08": "Eid al-Fitr* (*estimated)", + "2013-08-09": "Eid al-Fitr* (*estimated)", + "2013-09-01": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2013-10-15": "Eid al-Adha* (*estimated)", + "2013-10-23": "Eid al-Ghadeer* (*estimated)", + "2013-11-12": "Tasua* (*estimated)", + "2013-11-13": "Ashura* (*estimated)", + "2013-12-23": "Arbaeen* (*estimated)", + "2013-12-31": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2014-01-01": "Martyrdom of Ali al-Rida* (*estimated)", + "2014-01-09": "Martyrdom of Hasan al-Askari* (*estimated)", + "2014-01-18": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2014-02-11": "Islamic Revolution Day", + "2014-03-20": "Iranian Oil Industry Nationalization Day", + "2014-03-21": "Persian New Year", + "2014-03-22": "Persian New Year", + "2014-03-23": "Persian New Year", + "2014-03-24": "Persian New Year", + "2014-04-01": "Islamic Republic Day", + "2014-04-02": "Nature's Day", + "2014-04-03": "Martyrdom of Fatima* (*estimated)", + "2014-05-12": "Birthday of Ali* (*estimated)", + "2014-05-26": "Ascension of Muhammad* (*estimated)", + "2014-06-04": "Death of Khomeini", + "2014-06-05": "Khordad National Uprising", + "2014-06-13": "Birthday of Mahdi* (*estimated)", + "2014-07-18": "Martyrdom of Ali* (*estimated)", + "2014-07-28": "Eid al-Fitr* (*estimated)", + "2014-07-29": "Eid al-Fitr* (*estimated)", + "2014-08-21": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2014-10-04": "Eid al-Adha* (*estimated)", + "2014-10-12": "Eid al-Ghadeer* (*estimated)", + "2014-11-02": "Tasua* (*estimated)", + "2014-11-03": "Ashura* (*estimated)", + "2014-12-12": "Arbaeen* (*estimated)", + "2014-12-20": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2014-12-22": "Martyrdom of Ali al-Rida* (*estimated)", + "2014-12-30": "Martyrdom of Hasan al-Askari* (*estimated)", + "2015-01-08": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2015-02-11": "Islamic Revolution Day", + "2015-03-20": "Iranian Oil Industry Nationalization Day", + "2015-03-21": "Persian New Year", + "2015-03-22": "Persian New Year", + "2015-03-23": "Martyrdom of Fatima* (*estimated); Persian New Year", + "2015-03-24": "Persian New Year", + "2015-04-01": "Islamic Republic Day", + "2015-04-02": "Nature's Day", + "2015-05-02": "Birthday of Ali* (*estimated)", + "2015-05-16": "Ascension of Muhammad* (*estimated)", + "2015-06-02": "Birthday of Mahdi* (*estimated)", + "2015-06-04": "Death of Khomeini", + "2015-06-05": "Khordad National Uprising", + "2015-07-08": "Martyrdom of Ali* (*estimated)", + "2015-07-17": "Eid al-Fitr* (*estimated)", + "2015-07-18": "Eid al-Fitr* (*estimated)", + "2015-08-10": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2015-09-23": "Eid al-Adha* (*estimated)", + "2015-10-01": "Eid al-Ghadeer* (*estimated)", + "2015-10-22": "Tasua* (*estimated)", + "2015-10-23": "Ashura* (*estimated)", + "2015-12-02": "Arbaeen* (*estimated)", + "2015-12-10": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2015-12-11": "Martyrdom of Ali al-Rida* (*estimated)", + "2015-12-19": "Martyrdom of Hasan al-Askari* (*estimated)", + "2015-12-28": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2016-02-11": "Islamic Revolution Day", + "2016-03-12": "Martyrdom of Fatima* (*estimated)", + "2016-03-19": "Iranian Oil Industry Nationalization Day", + "2016-03-20": "Persian New Year", + "2016-03-21": "Persian New Year", + "2016-03-22": "Persian New Year", + "2016-03-23": "Persian New Year", + "2016-03-31": "Islamic Republic Day", + "2016-04-01": "Nature's Day", + "2016-04-20": "Birthday of Ali* (*estimated)", + "2016-05-04": "Ascension of Muhammad* (*estimated)", + "2016-05-22": "Birthday of Mahdi* (*estimated)", + "2016-06-03": "Death of Khomeini", + "2016-06-04": "Khordad National Uprising", + "2016-06-26": "Martyrdom of Ali* (*estimated)", + "2016-07-06": "Eid al-Fitr* (*estimated)", + "2016-07-07": "Eid al-Fitr* (*estimated)", + "2016-07-30": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2016-09-11": "Eid al-Adha* (*estimated)", + "2016-09-19": "Eid al-Ghadeer* (*estimated)", + "2016-10-10": "Tasua* (*estimated)", + "2016-10-11": "Ashura* (*estimated)", + "2016-11-20": "Arbaeen* (*estimated)", + "2016-11-28": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2016-11-29": "Martyrdom of Ali al-Rida* (*estimated)", + "2016-12-07": "Martyrdom of Hasan al-Askari* (*estimated)", + "2016-12-16": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2017-02-10": "Islamic Revolution Day", + "2017-03-02": "Martyrdom of Fatima* (*estimated)", + "2017-03-19": "Iranian Oil Industry Nationalization Day", + "2017-03-21": "Persian New Year", + "2017-03-22": "Persian New Year", + "2017-03-23": "Persian New Year", + "2017-03-24": "Persian New Year", + "2017-04-01": "Islamic Republic Day", + "2017-04-02": "Nature's Day", + "2017-04-10": "Birthday of Ali* (*estimated)", + "2017-04-24": "Ascension of Muhammad* (*estimated)", + "2017-05-11": "Birthday of Mahdi* (*estimated)", + "2017-06-04": "Death of Khomeini", + "2017-06-05": "Khordad National Uprising", + "2017-06-16": "Martyrdom of Ali* (*estimated)", + "2017-06-25": "Eid al-Fitr* (*estimated)", + "2017-06-26": "Eid al-Fitr* (*estimated)", + "2017-07-19": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2017-09-01": "Eid al-Adha* (*estimated)", + "2017-09-09": "Eid al-Ghadeer* (*estimated)", + "2017-09-29": "Tasua* (*estimated)", + "2017-09-30": "Ashura* (*estimated)", + "2017-11-09": "Arbaeen* (*estimated)", + "2017-11-17": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2017-11-18": "Martyrdom of Ali al-Rida* (*estimated)", + "2017-11-26": "Martyrdom of Hasan al-Askari* (*estimated)", + "2017-12-05": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2018-02-11": "Islamic Revolution Day", + "2018-02-19": "Martyrdom of Fatima* (*estimated)", + "2018-03-20": "Iranian Oil Industry Nationalization Day", + "2018-03-21": "Persian New Year", + "2018-03-22": "Persian New Year", + "2018-03-23": "Persian New Year", + "2018-03-24": "Persian New Year", + "2018-03-30": "Birthday of Ali* (*estimated)", + "2018-04-01": "Islamic Republic Day", + "2018-04-02": "Nature's Day", + "2018-04-13": "Ascension of Muhammad* (*estimated)", + "2018-05-01": "Birthday of Mahdi* (*estimated)", + "2018-06-04": "Death of Khomeini", + "2018-06-05": "Khordad National Uprising; Martyrdom of Ali* (*estimated)", + "2018-06-15": "Eid al-Fitr* (*estimated)", + "2018-06-16": "Eid al-Fitr* (*estimated)", + "2018-07-09": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2018-08-21": "Eid al-Adha* (*estimated)", + "2018-08-29": "Eid al-Ghadeer* (*estimated)", + "2018-09-19": "Tasua* (*estimated)", + "2018-09-20": "Ashura* (*estimated)", + "2018-10-29": "Arbaeen* (*estimated)", + "2018-11-06": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2018-11-08": "Martyrdom of Ali al-Rida* (*estimated)", + "2018-11-16": "Martyrdom of Hasan al-Askari* (*estimated)", + "2018-11-25": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2019-02-08": "Martyrdom of Fatima* (*estimated)", + "2019-02-11": "Islamic Revolution Day", + "2019-03-20": "Birthday of Ali* (*estimated); Iranian Oil Industry Nationalization Day", + "2019-03-21": "Persian New Year", + "2019-03-22": "Persian New Year", + "2019-03-23": "Persian New Year", + "2019-03-24": "Persian New Year", + "2019-04-01": "Islamic Republic Day", + "2019-04-02": "Nature's Day", + "2019-04-03": "Ascension of Muhammad* (*estimated)", + "2019-04-20": "Birthday of Mahdi* (*estimated)", + "2019-05-26": "Martyrdom of Ali* (*estimated)", + "2019-06-04": "Death of Khomeini; Eid al-Fitr* (*estimated)", + "2019-06-05": "Eid al-Fitr* (*estimated); Khordad National Uprising", + "2019-06-28": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2019-08-11": "Eid al-Adha* (*estimated)", + "2019-08-19": "Eid al-Ghadeer* (*estimated)", + "2019-09-08": "Tasua* (*estimated)", + "2019-09-09": "Ashura* (*estimated)", + "2019-10-19": "Arbaeen* (*estimated)", + "2019-10-27": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2019-10-28": "Martyrdom of Ali al-Rida* (*estimated)", + "2019-11-05": "Martyrdom of Hasan al-Askari* (*estimated)", + "2019-11-14": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2020-01-28": "Martyrdom of Fatima* (*estimated)", + "2020-02-11": "Islamic Revolution Day", + "2020-03-08": "Birthday of Ali* (*estimated)", + "2020-03-19": "Iranian Oil Industry Nationalization Day", + "2020-03-20": "Persian New Year", + "2020-03-21": "Persian New Year", + "2020-03-22": "Ascension of Muhammad* (*estimated); Persian New Year", + "2020-03-23": "Persian New Year", + "2020-03-31": "Islamic Republic Day", + "2020-04-01": "Nature's Day", + "2020-04-08": "Birthday of Mahdi* (*estimated)", + "2020-05-14": "Martyrdom of Ali* (*estimated)", + "2020-05-24": "Eid al-Fitr* (*estimated)", + "2020-05-25": "Eid al-Fitr* (*estimated)", + "2020-06-03": "Death of Khomeini", + "2020-06-04": "Khordad National Uprising", + "2020-06-17": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2020-07-31": "Eid al-Adha* (*estimated)", + "2020-08-08": "Eid al-Ghadeer* (*estimated)", + "2020-08-28": "Tasua* (*estimated)", + "2020-08-29": "Ashura* (*estimated)", + "2020-10-07": "Arbaeen* (*estimated)", + "2020-10-15": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2020-10-17": "Martyrdom of Ali al-Rida* (*estimated)", + "2020-10-25": "Martyrdom of Hasan al-Askari* (*estimated)", + "2020-11-03": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2021-01-16": "Martyrdom of Fatima* (*estimated)", + "2021-02-10": "Islamic Revolution Day", + "2021-02-25": "Birthday of Ali* (*estimated)", + "2021-03-11": "Ascension of Muhammad* (*estimated)", + "2021-03-19": "Iranian Oil Industry Nationalization Day", + "2021-03-21": "Persian New Year", + "2021-03-22": "Persian New Year", + "2021-03-23": "Persian New Year", + "2021-03-24": "Persian New Year", + "2021-03-28": "Birthday of Mahdi* (*estimated)", + "2021-04-01": "Islamic Republic Day", + "2021-04-02": "Nature's Day", + "2021-05-03": "Martyrdom of Ali* (*estimated)", + "2021-05-13": "Eid al-Fitr* (*estimated)", + "2021-05-14": "Eid al-Fitr* (*estimated)", + "2021-06-04": "Death of Khomeini", + "2021-06-05": "Khordad National Uprising", + "2021-06-06": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2021-07-20": "Eid al-Adha* (*estimated)", + "2021-07-28": "Eid al-Ghadeer* (*estimated)", + "2021-08-17": "Tasua* (*estimated)", + "2021-08-18": "Ashura* (*estimated)", + "2021-09-27": "Arbaeen* (*estimated)", + "2021-10-05": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2021-10-06": "Martyrdom of Ali al-Rida* (*estimated)", + "2021-10-14": "Martyrdom of Hasan al-Askari* (*estimated)", + "2021-10-23": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2022-01-06": "Martyrdom of Fatima* (*estimated)", + "2022-02-11": "Islamic Revolution Day", + "2022-02-14": "Birthday of Ali* (*estimated)", + "2022-02-28": "Ascension of Muhammad* (*estimated)", + "2022-03-18": "Birthday of Mahdi* (*estimated)", + "2022-03-20": "Iranian Oil Industry Nationalization Day", + "2022-03-21": "Persian New Year", + "2022-03-22": "Persian New Year", + "2022-03-23": "Persian New Year", + "2022-03-24": "Persian New Year", + "2022-04-01": "Islamic Republic Day", + "2022-04-02": "Nature's Day", + "2022-04-22": "Martyrdom of Ali* (*estimated)", + "2022-05-02": "Eid al-Fitr* (*estimated)", + "2022-05-03": "Eid al-Fitr* (*estimated)", + "2022-05-26": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2022-06-04": "Death of Khomeini", + "2022-06-05": "Khordad National Uprising", + "2022-07-09": "Eid al-Adha* (*estimated)", + "2022-07-17": "Eid al-Ghadeer* (*estimated)", + "2022-08-07": "Tasua* (*estimated)", + "2022-08-08": "Ashura* (*estimated)", + "2022-09-16": "Arbaeen* (*estimated)", + "2022-09-24": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2022-09-26": "Martyrdom of Ali al-Rida* (*estimated)", + "2022-10-04": "Martyrdom of Hasan al-Askari* (*estimated)", + "2022-10-13": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2022-12-27": "Martyrdom of Fatima* (*estimated)", + "2023-02-04": "Birthday of Ali* (*estimated)", + "2023-02-11": "Islamic Revolution Day", + "2023-02-18": "Ascension of Muhammad* (*estimated)", + "2023-03-07": "Birthday of Mahdi* (*estimated)", + "2023-03-20": "Iranian Oil Industry Nationalization Day", + "2023-03-21": "Persian New Year", + "2023-03-22": "Persian New Year", + "2023-03-23": "Persian New Year", + "2023-03-24": "Persian New Year", + "2023-04-01": "Islamic Republic Day", + "2023-04-02": "Nature's Day", + "2023-04-12": "Martyrdom of Ali* (*estimated)", + "2023-04-21": "Eid al-Fitr* (*estimated)", + "2023-04-22": "Eid al-Fitr* (*estimated)", + "2023-05-15": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2023-06-04": "Death of Khomeini", + "2023-06-05": "Khordad National Uprising", + "2023-06-28": "Eid al-Adha* (*estimated)", + "2023-07-06": "Eid al-Ghadeer* (*estimated)", + "2023-07-27": "Tasua* (*estimated)", + "2023-07-28": "Ashura* (*estimated)", + "2023-09-05": "Arbaeen* (*estimated)", + "2023-09-13": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2023-09-15": "Martyrdom of Ali al-Rida* (*estimated)", + "2023-09-23": "Martyrdom of Hasan al-Askari* (*estimated)", + "2023-10-02": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2023-12-16": "Martyrdom of Fatima* (*estimated)", + "2024-01-25": "Birthday of Ali* (*estimated)", + "2024-02-08": "Ascension of Muhammad* (*estimated)", + "2024-02-11": "Islamic Revolution Day", + "2024-02-25": "Birthday of Mahdi* (*estimated)", + "2024-03-19": "Iranian Oil Industry Nationalization Day", + "2024-03-20": "Persian New Year", + "2024-03-21": "Persian New Year", + "2024-03-22": "Persian New Year", + "2024-03-23": "Persian New Year", + "2024-03-31": "Islamic Republic Day; Martyrdom of Ali* (*estimated)", + "2024-04-01": "Nature's Day", + "2024-04-10": "Eid al-Fitr* (*estimated)", + "2024-04-11": "Eid al-Fitr* (*estimated)", + "2024-05-04": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2024-06-03": "Death of Khomeini", + "2024-06-04": "Khordad National Uprising", + "2024-06-16": "Eid al-Adha* (*estimated)", + "2024-06-24": "Eid al-Ghadeer* (*estimated)", + "2024-07-15": "Tasua* (*estimated)", + "2024-07-16": "Ashura* (*estimated)", + "2024-08-24": "Arbaeen* (*estimated)", + "2024-09-01": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2024-09-03": "Martyrdom of Ali al-Rida* (*estimated)", + "2024-09-11": "Martyrdom of Hasan al-Askari* (*estimated)", + "2024-09-20": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2024-12-04": "Martyrdom of Fatima* (*estimated)", + "2025-01-13": "Birthday of Ali* (*estimated)", + "2025-01-27": "Ascension of Muhammad* (*estimated)", + "2025-02-10": "Islamic Revolution Day", + "2025-02-14": "Birthday of Mahdi* (*estimated)", + "2025-03-19": "Iranian Oil Industry Nationalization Day", + "2025-03-21": "Martyrdom of Ali* (*estimated); Persian New Year", + "2025-03-22": "Persian New Year", + "2025-03-23": "Persian New Year", + "2025-03-24": "Persian New Year", + "2025-03-30": "Eid al-Fitr* (*estimated)", + "2025-03-31": "Eid al-Fitr* (*estimated)", + "2025-04-01": "Islamic Republic Day", + "2025-04-02": "Nature's Day", + "2025-04-23": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2025-06-04": "Death of Khomeini", + "2025-06-05": "Khordad National Uprising", + "2025-06-06": "Eid al-Adha* (*estimated)", + "2025-06-14": "Eid al-Ghadeer* (*estimated)", + "2025-07-04": "Tasua* (*estimated)", + "2025-07-05": "Ashura* (*estimated)", + "2025-08-14": "Arbaeen* (*estimated)", + "2025-08-22": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2025-08-23": "Martyrdom of Ali al-Rida* (*estimated)", + "2025-08-31": "Martyrdom of Hasan al-Askari* (*estimated)", + "2025-09-09": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2025-11-24": "Martyrdom of Fatima* (*estimated)", + "2026-01-02": "Birthday of Ali* (*estimated)", + "2026-01-16": "Ascension of Muhammad* (*estimated)", + "2026-02-03": "Birthday of Mahdi* (*estimated)", + "2026-02-11": "Islamic Revolution Day", + "2026-03-10": "Martyrdom of Ali* (*estimated)", + "2026-03-20": "Eid al-Fitr* (*estimated); Iranian Oil Industry Nationalization Day", + "2026-03-21": "Eid al-Fitr* (*estimated); Persian New Year", + "2026-03-22": "Persian New Year", + "2026-03-23": "Persian New Year", + "2026-03-24": "Persian New Year", + "2026-04-01": "Islamic Republic Day", + "2026-04-02": "Nature's Day", + "2026-04-13": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2026-05-27": "Eid al-Adha* (*estimated)", + "2026-06-04": "Death of Khomeini; Eid al-Ghadeer* (*estimated)", + "2026-06-05": "Khordad National Uprising", + "2026-06-24": "Tasua* (*estimated)", + "2026-06-25": "Ashura* (*estimated)", + "2026-08-03": "Arbaeen* (*estimated)", + "2026-08-11": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2026-08-13": "Martyrdom of Ali al-Rida* (*estimated)", + "2026-08-21": "Martyrdom of Hasan al-Askari* (*estimated)", + "2026-08-30": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2026-11-13": "Martyrdom of Fatima* (*estimated)", + "2026-12-22": "Birthday of Ali* (*estimated)", + "2027-01-05": "Ascension of Muhammad* (*estimated)", + "2027-01-23": "Birthday of Mahdi* (*estimated)", + "2027-02-11": "Islamic Revolution Day", + "2027-02-28": "Martyrdom of Ali* (*estimated)", + "2027-03-09": "Eid al-Fitr* (*estimated)", + "2027-03-10": "Eid al-Fitr* (*estimated)", + "2027-03-20": "Iranian Oil Industry Nationalization Day", + "2027-03-21": "Persian New Year", + "2027-03-22": "Persian New Year", + "2027-03-23": "Persian New Year", + "2027-03-24": "Persian New Year", + "2027-04-01": "Islamic Republic Day", + "2027-04-02": "Martyrdom of Ja'far al-Sadiq* (*estimated); Nature's Day", + "2027-05-16": "Eid al-Adha* (*estimated)", + "2027-05-24": "Eid al-Ghadeer* (*estimated)", + "2027-06-04": "Death of Khomeini", + "2027-06-05": "Khordad National Uprising", + "2027-06-14": "Tasua* (*estimated)", + "2027-06-15": "Ashura* (*estimated)", + "2027-07-24": "Arbaeen* (*estimated)", + "2027-08-01": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2027-08-02": "Martyrdom of Ali al-Rida* (*estimated)", + "2027-08-10": "Martyrdom of Hasan al-Askari* (*estimated)", + "2027-08-19": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2027-11-02": "Martyrdom of Fatima* (*estimated)", + "2027-12-11": "Birthday of Ali* (*estimated)", + "2027-12-25": "Ascension of Muhammad* (*estimated)", + "2028-01-12": "Birthday of Mahdi* (*estimated)", + "2028-02-11": "Islamic Revolution Day", + "2028-02-17": "Martyrdom of Ali* (*estimated)", + "2028-02-26": "Eid al-Fitr* (*estimated)", + "2028-02-27": "Eid al-Fitr* (*estimated)", + "2028-03-19": "Iranian Oil Industry Nationalization Day", + "2028-03-20": "Persian New Year", + "2028-03-21": "Martyrdom of Ja'far al-Sadiq* (*estimated); Persian New Year", + "2028-03-22": "Persian New Year", + "2028-03-23": "Persian New Year", + "2028-03-31": "Islamic Republic Day", + "2028-04-01": "Nature's Day", + "2028-05-05": "Eid al-Adha* (*estimated)", + "2028-05-13": "Eid al-Ghadeer* (*estimated)", + "2028-06-02": "Tasua* (*estimated)", + "2028-06-03": "Ashura* (*estimated); Death of Khomeini", + "2028-06-04": "Khordad National Uprising", + "2028-07-13": "Arbaeen* (*estimated)", + "2028-07-21": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2028-07-22": "Martyrdom of Ali al-Rida* (*estimated)", + "2028-07-30": "Martyrdom of Hasan al-Askari* (*estimated)", + "2028-08-08": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2028-10-21": "Martyrdom of Fatima* (*estimated)", + "2028-11-30": "Birthday of Ali* (*estimated)", + "2028-12-14": "Ascension of Muhammad* (*estimated)", + "2028-12-31": "Birthday of Mahdi* (*estimated)", + "2029-02-05": "Martyrdom of Ali* (*estimated)", + "2029-02-10": "Islamic Revolution Day", + "2029-02-14": "Eid al-Fitr* (*estimated)", + "2029-02-15": "Eid al-Fitr* (*estimated)", + "2029-03-10": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2029-03-19": "Iranian Oil Industry Nationalization Day", + "2029-03-20": "Persian New Year", + "2029-03-21": "Persian New Year", + "2029-03-22": "Persian New Year", + "2029-03-23": "Persian New Year", + "2029-03-31": "Islamic Republic Day", + "2029-04-01": "Nature's Day", + "2029-04-24": "Eid al-Adha* (*estimated)", + "2029-05-02": "Eid al-Ghadeer* (*estimated)", + "2029-05-22": "Tasua* (*estimated)", + "2029-05-23": "Ashura* (*estimated)", + "2029-06-03": "Death of Khomeini", + "2029-06-04": "Khordad National Uprising", + "2029-07-02": "Arbaeen* (*estimated)", + "2029-07-10": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2029-07-12": "Martyrdom of Ali al-Rida* (*estimated)", + "2029-07-20": "Martyrdom of Hasan al-Askari* (*estimated)", + "2029-07-29": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2029-10-11": "Martyrdom of Fatima* (*estimated)", + "2029-11-19": "Birthday of Ali* (*estimated)", + "2029-12-03": "Ascension of Muhammad* (*estimated)", + "2029-12-21": "Birthday of Mahdi* (*estimated)", + "2030-01-25": "Martyrdom of Ali* (*estimated)", + "2030-02-04": "Eid al-Fitr* (*estimated)", + "2030-02-05": "Eid al-Fitr* (*estimated)", + "2030-02-10": "Islamic Revolution Day", + "2030-02-28": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2030-03-19": "Iranian Oil Industry Nationalization Day", + "2030-03-21": "Persian New Year", + "2030-03-22": "Persian New Year", + "2030-03-23": "Persian New Year", + "2030-03-24": "Persian New Year", + "2030-04-01": "Islamic Republic Day", + "2030-04-02": "Nature's Day", + "2030-04-13": "Eid al-Adha* (*estimated)", + "2030-04-21": "Eid al-Ghadeer* (*estimated)", + "2030-05-11": "Tasua* (*estimated)", + "2030-05-12": "Ashura* (*estimated)", + "2030-06-04": "Death of Khomeini", + "2030-06-05": "Khordad National Uprising", + "2030-06-21": "Arbaeen* (*estimated)", + "2030-06-29": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2030-07-01": "Martyrdom of Ali al-Rida* (*estimated)", + "2030-07-09": "Martyrdom of Hasan al-Askari* (*estimated)", + "2030-07-18": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2030-10-01": "Martyrdom of Fatima* (*estimated)", + "2030-11-09": "Birthday of Ali* (*estimated)", + "2030-11-23": "Ascension of Muhammad* (*estimated)", + "2030-12-10": "Birthday of Mahdi* (*estimated)", + "2031-01-15": "Martyrdom of Ali* (*estimated)", + "2031-01-24": "Eid al-Fitr* (*estimated)", + "2031-01-25": "Eid al-Fitr* (*estimated)", + "2031-02-11": "Islamic Revolution Day", + "2031-02-17": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2031-03-20": "Iranian Oil Industry Nationalization Day", + "2031-03-21": "Persian New Year", + "2031-03-22": "Persian New Year", + "2031-03-23": "Persian New Year", + "2031-03-24": "Persian New Year", + "2031-04-01": "Islamic Republic Day", + "2031-04-02": "Eid al-Adha* (*estimated); Nature's Day", + "2031-04-10": "Eid al-Ghadeer* (*estimated)", + "2031-05-01": "Tasua* (*estimated)", + "2031-05-02": "Ashura* (*estimated)", + "2031-06-04": "Death of Khomeini", + "2031-06-05": "Khordad National Uprising", + "2031-06-10": "Arbaeen* (*estimated)", + "2031-06-18": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2031-06-20": "Martyrdom of Ali al-Rida* (*estimated)", + "2031-06-28": "Martyrdom of Hasan al-Askari* (*estimated)", + "2031-07-07": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2031-09-20": "Martyrdom of Fatima* (*estimated)", + "2031-10-29": "Birthday of Ali* (*estimated)", + "2031-11-12": "Ascension of Muhammad* (*estimated)", + "2031-11-30": "Birthday of Mahdi* (*estimated)", + "2032-01-04": "Martyrdom of Ali* (*estimated)", + "2032-01-14": "Eid al-Fitr* (*estimated)", + "2032-01-15": "Eid al-Fitr* (*estimated)", + "2032-02-07": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2032-02-11": "Islamic Revolution Day", + "2032-03-19": "Iranian Oil Industry Nationalization Day", + "2032-03-20": "Persian New Year", + "2032-03-21": "Persian New Year", + "2032-03-22": "Eid al-Adha* (*estimated); Persian New Year", + "2032-03-23": "Persian New Year", + "2032-03-30": "Eid al-Ghadeer* (*estimated)", + "2032-03-31": "Islamic Republic Day", + "2032-04-01": "Nature's Day", + "2032-04-19": "Tasua* (*estimated)", + "2032-04-20": "Ashura* (*estimated)", + "2032-05-29": "Arbaeen* (*estimated)", + "2032-06-03": "Death of Khomeini", + "2032-06-04": "Khordad National Uprising", + "2032-06-06": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2032-06-08": "Martyrdom of Ali al-Rida* (*estimated)", + "2032-06-16": "Martyrdom of Hasan al-Askari* (*estimated)", + "2032-06-25": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2032-09-08": "Martyrdom of Fatima* (*estimated)", + "2032-10-18": "Birthday of Ali* (*estimated)", + "2032-11-01": "Ascension of Muhammad* (*estimated)", + "2032-11-18": "Birthday of Mahdi* (*estimated)", + "2032-12-24": "Martyrdom of Ali* (*estimated)", + "2033-01-02": "Eid al-Fitr* (*estimated)", + "2033-01-03": "Eid al-Fitr* (*estimated)", + "2033-01-26": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2033-02-10": "Islamic Revolution Day", + "2033-03-11": "Eid al-Adha* (*estimated)", + "2033-03-19": "Eid al-Ghadeer* (*estimated); Iranian Oil Industry Nationalization Day", + "2033-03-20": "Persian New Year", + "2033-03-21": "Persian New Year", + "2033-03-22": "Persian New Year", + "2033-03-23": "Persian New Year", + "2033-03-31": "Islamic Republic Day", + "2033-04-01": "Nature's Day", + "2033-04-09": "Tasua* (*estimated)", + "2033-04-10": "Ashura* (*estimated)", + "2033-05-19": "Arbaeen* (*estimated)", + "2033-05-27": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2033-05-28": "Martyrdom of Ali al-Rida* (*estimated)", + "2033-06-03": "Death of Khomeini", + "2033-06-04": "Khordad National Uprising", + "2033-06-05": "Martyrdom of Hasan al-Askari* (*estimated)", + "2033-06-14": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2033-08-28": "Martyrdom of Fatima* (*estimated)", + "2033-10-07": "Birthday of Ali* (*estimated)", + "2033-10-21": "Ascension of Muhammad* (*estimated)", + "2033-11-07": "Birthday of Mahdi* (*estimated)", + "2033-12-13": "Martyrdom of Ali* (*estimated)", + "2033-12-23": "Eid al-Fitr* (*estimated)", + "2033-12-24": "Eid al-Fitr* (*estimated)", + "2034-01-16": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2034-02-10": "Islamic Revolution Day", + "2034-03-01": "Eid al-Adha* (*estimated)", + "2034-03-09": "Eid al-Ghadeer* (*estimated)", + "2034-03-19": "Iranian Oil Industry Nationalization Day", + "2034-03-21": "Persian New Year", + "2034-03-22": "Persian New Year", + "2034-03-23": "Persian New Year", + "2034-03-24": "Persian New Year", + "2034-03-29": "Tasua* (*estimated)", + "2034-03-30": "Ashura* (*estimated)", + "2034-04-01": "Islamic Republic Day", + "2034-04-02": "Nature's Day", + "2034-05-09": "Arbaeen* (*estimated)", + "2034-05-17": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2034-05-18": "Martyrdom of Ali al-Rida* (*estimated)", + "2034-05-26": "Martyrdom of Hasan al-Askari* (*estimated)", + "2034-06-04": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated); Death of Khomeini", + "2034-06-05": "Khordad National Uprising", + "2034-08-17": "Martyrdom of Fatima* (*estimated)", + "2034-09-26": "Birthday of Ali* (*estimated)", + "2034-10-10": "Ascension of Muhammad* (*estimated)", + "2034-10-27": "Birthday of Mahdi* (*estimated)", + "2034-12-02": "Martyrdom of Ali* (*estimated)", + "2034-12-12": "Eid al-Fitr* (*estimated)", + "2034-12-13": "Eid al-Fitr* (*estimated)", + "2035-01-05": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2035-02-11": "Islamic Revolution Day", + "2035-02-18": "Eid al-Adha* (*estimated)", + "2035-02-26": "Eid al-Ghadeer* (*estimated)", + "2035-03-19": "Tasua* (*estimated)", + "2035-03-20": "Ashura* (*estimated); Iranian Oil Industry Nationalization Day", + "2035-03-21": "Persian New Year", + "2035-03-22": "Persian New Year", + "2035-03-23": "Persian New Year", + "2035-03-24": "Persian New Year", + "2035-04-01": "Islamic Republic Day", + "2035-04-02": "Nature's Day", + "2035-04-28": "Arbaeen* (*estimated)", + "2035-05-06": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2035-05-08": "Martyrdom of Ali al-Rida* (*estimated)", + "2035-05-16": "Martyrdom of Hasan al-Askari* (*estimated)", + "2035-05-25": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2035-06-04": "Death of Khomeini", + "2035-06-05": "Khordad National Uprising", + "2035-08-07": "Martyrdom of Fatima* (*estimated)", + "2035-09-15": "Birthday of Ali* (*estimated)", + "2035-09-29": "Ascension of Muhammad* (*estimated)", + "2035-10-16": "Birthday of Mahdi* (*estimated)", + "2035-11-21": "Martyrdom of Ali* (*estimated)", + "2035-12-01": "Eid al-Fitr* (*estimated)", + "2035-12-02": "Eid al-Fitr* (*estimated)", + "2035-12-25": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2036-02-07": "Eid al-Adha* (*estimated)", + "2036-02-11": "Islamic Revolution Day", + "2036-02-15": "Eid al-Ghadeer* (*estimated)", + "2036-03-07": "Tasua* (*estimated)", + "2036-03-08": "Ashura* (*estimated)", + "2036-03-19": "Iranian Oil Industry Nationalization Day", + "2036-03-20": "Persian New Year", + "2036-03-21": "Persian New Year", + "2036-03-22": "Persian New Year", + "2036-03-23": "Persian New Year", + "2036-03-31": "Islamic Republic Day", + "2036-04-01": "Nature's Day", + "2036-04-17": "Arbaeen* (*estimated)", + "2036-04-25": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2036-04-26": "Martyrdom of Ali al-Rida* (*estimated)", + "2036-05-04": "Martyrdom of Hasan al-Askari* (*estimated)", + "2036-05-13": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2036-06-03": "Death of Khomeini", + "2036-06-04": "Khordad National Uprising", + "2036-07-26": "Martyrdom of Fatima* (*estimated)", + "2036-09-04": "Birthday of Ali* (*estimated)", + "2036-09-18": "Ascension of Muhammad* (*estimated)", + "2036-10-05": "Birthday of Mahdi* (*estimated)", + "2036-11-09": "Martyrdom of Ali* (*estimated)", + "2036-11-19": "Eid al-Fitr* (*estimated)", + "2036-11-20": "Eid al-Fitr* (*estimated)", + "2036-12-13": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2037-01-26": "Eid al-Adha* (*estimated)", + "2037-02-03": "Eid al-Ghadeer* (*estimated)", + "2037-02-10": "Islamic Revolution Day", + "2037-02-24": "Tasua* (*estimated)", + "2037-02-25": "Ashura* (*estimated)", + "2037-03-19": "Iranian Oil Industry Nationalization Day", + "2037-03-20": "Persian New Year", + "2037-03-21": "Persian New Year", + "2037-03-22": "Persian New Year", + "2037-03-23": "Persian New Year", + "2037-03-31": "Islamic Republic Day", + "2037-04-01": "Nature's Day", + "2037-04-06": "Arbaeen* (*estimated)", + "2037-04-14": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2037-04-16": "Martyrdom of Ali al-Rida* (*estimated)", + "2037-04-24": "Martyrdom of Hasan al-Askari* (*estimated)", + "2037-05-03": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2037-06-03": "Death of Khomeini", + "2037-06-04": "Khordad National Uprising", + "2037-07-16": "Martyrdom of Fatima* (*estimated)", + "2037-08-24": "Birthday of Ali* (*estimated)", + "2037-09-07": "Ascension of Muhammad* (*estimated)", + "2037-09-25": "Birthday of Mahdi* (*estimated)", + "2037-10-30": "Martyrdom of Ali* (*estimated)", + "2037-11-08": "Eid al-Fitr* (*estimated)", + "2037-11-09": "Eid al-Fitr* (*estimated)", + "2037-12-02": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2038-01-16": "Eid al-Adha* (*estimated)", + "2038-01-24": "Eid al-Ghadeer* (*estimated)", + "2038-02-10": "Islamic Revolution Day", + "2038-02-13": "Tasua* (*estimated)", + "2038-02-14": "Ashura* (*estimated)", + "2038-03-19": "Iranian Oil Industry Nationalization Day", + "2038-03-21": "Persian New Year", + "2038-03-22": "Persian New Year", + "2038-03-23": "Persian New Year", + "2038-03-24": "Persian New Year", + "2038-03-26": "Arbaeen* (*estimated)", + "2038-04-01": "Islamic Republic Day", + "2038-04-02": "Nature's Day", + "2038-04-03": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2038-04-05": "Martyrdom of Ali al-Rida* (*estimated)", + "2038-04-13": "Martyrdom of Hasan al-Askari* (*estimated)", + "2038-04-22": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2038-06-04": "Death of Khomeini", + "2038-06-05": "Khordad National Uprising", + "2038-07-05": "Martyrdom of Fatima* (*estimated)", + "2038-08-14": "Birthday of Ali* (*estimated)", + "2038-08-28": "Ascension of Muhammad* (*estimated)", + "2038-09-14": "Birthday of Mahdi* (*estimated)", + "2038-10-20": "Martyrdom of Ali* (*estimated)", + "2038-10-29": "Eid al-Fitr* (*estimated)", + "2038-10-30": "Eid al-Fitr* (*estimated)", + "2038-11-22": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2039-01-05": "Eid al-Adha* (*estimated)", + "2039-01-13": "Eid al-Ghadeer* (*estimated)", + "2039-02-03": "Tasua* (*estimated)", + "2039-02-04": "Ashura* (*estimated)", + "2039-02-11": "Islamic Revolution Day", + "2039-03-15": "Arbaeen* (*estimated)", + "2039-03-20": "Iranian Oil Industry Nationalization Day", + "2039-03-21": "Persian New Year", + "2039-03-22": "Persian New Year", + "2039-03-23": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated); Persian New Year", + "2039-03-24": "Persian New Year", + "2039-03-25": "Martyrdom of Ali al-Rida* (*estimated)", + "2039-04-01": "Islamic Republic Day", + "2039-04-02": "Martyrdom of Hasan al-Askari* (*estimated); Nature's Day", + "2039-04-11": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2039-06-04": "Death of Khomeini", + "2039-06-05": "Khordad National Uprising", + "2039-06-25": "Martyrdom of Fatima* (*estimated)", + "2039-08-03": "Birthday of Ali* (*estimated)", + "2039-08-17": "Ascension of Muhammad* (*estimated)", + "2039-09-04": "Birthday of Mahdi* (*estimated)", + "2039-10-09": "Martyrdom of Ali* (*estimated)", + "2039-10-19": "Eid al-Fitr* (*estimated)", + "2039-10-20": "Eid al-Fitr* (*estimated)", + "2039-11-12": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2039-12-26": "Eid al-Adha* (*estimated)", + "2040-01-03": "Eid al-Ghadeer* (*estimated)", + "2040-01-23": "Tasua* (*estimated)", + "2040-01-24": "Ashura* (*estimated)", + "2040-02-11": "Islamic Revolution Day", + "2040-03-04": "Arbaeen* (*estimated)", + "2040-03-12": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2040-03-13": "Martyrdom of Ali al-Rida* (*estimated)", + "2040-03-19": "Iranian Oil Industry Nationalization Day", + "2040-03-20": "Persian New Year", + "2040-03-21": "Martyrdom of Hasan al-Askari* (*estimated); Persian New Year", + "2040-03-22": "Persian New Year", + "2040-03-23": "Persian New Year", + "2040-03-30": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2040-03-31": "Islamic Republic Day", + "2040-04-01": "Nature's Day", + "2040-06-03": "Death of Khomeini", + "2040-06-04": "Khordad National Uprising", + "2040-06-13": "Martyrdom of Fatima* (*estimated)", + "2040-07-22": "Birthday of Ali* (*estimated)", + "2040-08-05": "Ascension of Muhammad* (*estimated)", + "2040-08-23": "Birthday of Mahdi* (*estimated)", + "2040-09-27": "Martyrdom of Ali* (*estimated)", + "2040-10-07": "Eid al-Fitr* (*estimated)", + "2040-10-08": "Eid al-Fitr* (*estimated)", + "2040-10-31": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2040-12-14": "Eid al-Adha* (*estimated)", + "2040-12-22": "Eid al-Ghadeer* (*estimated)", + "2041-01-12": "Tasua* (*estimated)", + "2041-01-13": "Ashura* (*estimated)", + "2041-02-10": "Islamic Revolution Day", + "2041-02-21": "Arbaeen* (*estimated)", + "2041-03-01": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2041-03-03": "Martyrdom of Ali al-Rida* (*estimated)", + "2041-03-11": "Martyrdom of Hasan al-Askari* (*estimated)", + "2041-03-19": "Iranian Oil Industry Nationalization Day", + "2041-03-20": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated); Persian New Year", + "2041-03-21": "Persian New Year", + "2041-03-22": "Persian New Year", + "2041-03-23": "Persian New Year", + "2041-03-31": "Islamic Republic Day", + "2041-04-01": "Nature's Day", + "2041-06-02": "Martyrdom of Fatima* (*estimated)", + "2041-06-03": "Death of Khomeini", + "2041-06-04": "Khordad National Uprising", + "2041-07-11": "Birthday of Ali* (*estimated)", + "2041-07-25": "Ascension of Muhammad* (*estimated)", + "2041-08-12": "Birthday of Mahdi* (*estimated)", + "2041-09-17": "Martyrdom of Ali* (*estimated)", + "2041-09-26": "Eid al-Fitr* (*estimated)", + "2041-09-27": "Eid al-Fitr* (*estimated)", + "2041-10-20": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2041-12-04": "Eid al-Adha* (*estimated)", + "2041-12-12": "Eid al-Ghadeer* (*estimated)", + "2042-01-01": "Tasua* (*estimated)", + "2042-01-02": "Ashura* (*estimated)", + "2042-02-10": "Islamic Revolution Day", + "2042-02-11": "Arbaeen* (*estimated)", + "2042-02-19": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2042-02-20": "Martyrdom of Ali al-Rida* (*estimated)", + "2042-02-28": "Martyrdom of Hasan al-Askari* (*estimated)", + "2042-03-09": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2042-03-19": "Iranian Oil Industry Nationalization Day", + "2042-03-21": "Persian New Year", + "2042-03-22": "Persian New Year", + "2042-03-23": "Persian New Year", + "2042-03-24": "Persian New Year", + "2042-04-01": "Islamic Republic Day", + "2042-04-02": "Nature's Day", + "2042-05-22": "Martyrdom of Fatima* (*estimated)", + "2042-06-04": "Death of Khomeini", + "2042-06-05": "Khordad National Uprising", + "2042-07-01": "Birthday of Ali* (*estimated)", + "2042-07-15": "Ascension of Muhammad* (*estimated)", + "2042-08-01": "Birthday of Mahdi* (*estimated)", + "2042-09-06": "Martyrdom of Ali* (*estimated)", + "2042-09-15": "Eid al-Fitr* (*estimated)", + "2042-09-16": "Eid al-Fitr* (*estimated)", + "2042-10-09": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2042-11-23": "Eid al-Adha* (*estimated)", + "2042-12-01": "Eid al-Ghadeer* (*estimated)", + "2042-12-22": "Tasua* (*estimated)", + "2042-12-23": "Ashura* (*estimated)", + "2043-01-31": "Arbaeen* (*estimated)", + "2043-02-08": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2043-02-10": "Martyrdom of Ali al-Rida* (*estimated)", + "2043-02-11": "Islamic Revolution Day", + "2043-02-18": "Martyrdom of Hasan al-Askari* (*estimated)", + "2043-02-27": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2043-03-20": "Iranian Oil Industry Nationalization Day", + "2043-03-21": "Persian New Year", + "2043-03-22": "Persian New Year", + "2043-03-23": "Persian New Year", + "2043-03-24": "Persian New Year", + "2043-04-01": "Islamic Republic Day", + "2043-04-02": "Nature's Day", + "2043-05-12": "Martyrdom of Fatima* (*estimated)", + "2043-06-04": "Death of Khomeini", + "2043-06-05": "Khordad National Uprising", + "2043-06-20": "Birthday of Ali* (*estimated)", + "2043-07-04": "Ascension of Muhammad* (*estimated)", + "2043-07-22": "Birthday of Mahdi* (*estimated)", + "2043-08-26": "Martyrdom of Ali* (*estimated)", + "2043-09-04": "Eid al-Fitr* (*estimated)", + "2043-09-05": "Eid al-Fitr* (*estimated)", + "2043-09-28": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2043-11-12": "Eid al-Adha* (*estimated)", + "2043-11-20": "Eid al-Ghadeer* (*estimated)", + "2043-12-11": "Tasua* (*estimated)", + "2043-12-12": "Ashura* (*estimated)", + "2044-01-21": "Arbaeen* (*estimated)", + "2044-01-29": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2044-01-30": "Martyrdom of Ali al-Rida* (*estimated)", + "2044-02-07": "Martyrdom of Hasan al-Askari* (*estimated)", + "2044-02-11": "Islamic Revolution Day", + "2044-02-16": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2044-03-19": "Iranian Oil Industry Nationalization Day", + "2044-03-20": "Persian New Year", + "2044-03-21": "Persian New Year", + "2044-03-22": "Persian New Year", + "2044-03-23": "Persian New Year", + "2044-03-31": "Islamic Republic Day", + "2044-04-01": "Nature's Day", + "2044-05-01": "Martyrdom of Fatima* (*estimated)", + "2044-06-03": "Death of Khomeini", + "2044-06-04": "Khordad National Uprising", + "2044-06-09": "Birthday of Ali* (*estimated)", + "2044-06-23": "Ascension of Muhammad* (*estimated)", + "2044-07-10": "Birthday of Mahdi* (*estimated)", + "2044-08-15": "Martyrdom of Ali* (*estimated)", + "2044-08-24": "Eid al-Fitr* (*estimated)", + "2044-08-25": "Eid al-Fitr* (*estimated)", + "2044-09-17": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2044-10-31": "Eid al-Adha* (*estimated)", + "2044-11-08": "Eid al-Ghadeer* (*estimated)", + "2044-11-29": "Tasua* (*estimated)", + "2044-11-30": "Ashura* (*estimated)", + "2045-01-09": "Arbaeen* (*estimated)", + "2045-01-17": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2045-01-18": "Martyrdom of Ali al-Rida* (*estimated)", + "2045-01-26": "Martyrdom of Hasan al-Askari* (*estimated)", + "2045-02-04": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2045-02-10": "Islamic Revolution Day", + "2045-03-19": "Iranian Oil Industry Nationalization Day", + "2045-03-20": "Persian New Year", + "2045-03-21": "Persian New Year", + "2045-03-22": "Persian New Year", + "2045-03-23": "Persian New Year", + "2045-03-31": "Islamic Republic Day", + "2045-04-01": "Nature's Day", + "2045-04-20": "Martyrdom of Fatima* (*estimated)", + "2045-05-30": "Birthday of Ali* (*estimated)", + "2045-06-03": "Death of Khomeini", + "2045-06-04": "Khordad National Uprising", + "2045-06-13": "Ascension of Muhammad* (*estimated)", + "2045-06-30": "Birthday of Mahdi* (*estimated)", + "2045-08-04": "Martyrdom of Ali* (*estimated)", + "2045-08-14": "Eid al-Fitr* (*estimated)", + "2045-08-15": "Eid al-Fitr* (*estimated)", + "2045-09-07": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2045-10-21": "Eid al-Adha* (*estimated)", + "2045-10-29": "Eid al-Ghadeer* (*estimated)", + "2045-11-18": "Tasua* (*estimated)", + "2045-11-19": "Ashura* (*estimated)", + "2045-12-29": "Arbaeen* (*estimated)", + "2046-01-06": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2046-01-07": "Martyrdom of Ali al-Rida* (*estimated)", + "2046-01-15": "Martyrdom of Hasan al-Askari* (*estimated)", + "2046-01-24": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2046-02-10": "Islamic Revolution Day", + "2046-03-19": "Iranian Oil Industry Nationalization Day", + "2046-03-21": "Persian New Year", + "2046-03-22": "Persian New Year", + "2046-03-23": "Persian New Year", + "2046-03-24": "Persian New Year", + "2046-04-01": "Islamic Republic Day", + "2046-04-02": "Nature's Day", + "2046-04-09": "Martyrdom of Fatima* (*estimated)", + "2046-05-19": "Birthday of Ali* (*estimated)", + "2046-06-02": "Ascension of Muhammad* (*estimated)", + "2046-06-04": "Death of Khomeini", + "2046-06-05": "Khordad National Uprising", + "2046-06-19": "Birthday of Mahdi* (*estimated)", + "2046-07-25": "Martyrdom of Ali* (*estimated)", + "2046-08-03": "Eid al-Fitr* (*estimated)", + "2046-08-04": "Eid al-Fitr* (*estimated)", + "2046-08-27": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2046-10-10": "Eid al-Adha* (*estimated)", + "2046-10-18": "Eid al-Ghadeer* (*estimated)", + "2046-11-08": "Tasua* (*estimated)", + "2046-11-09": "Ashura* (*estimated)", + "2046-12-18": "Arbaeen* (*estimated)", + "2046-12-26": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2046-12-27": "Martyrdom of Ali al-Rida* (*estimated)", + "2047-01-04": "Martyrdom of Hasan al-Askari* (*estimated)", + "2047-01-13": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2047-02-11": "Islamic Revolution Day", + "2047-03-20": "Iranian Oil Industry Nationalization Day", + "2047-03-21": "Persian New Year", + "2047-03-22": "Persian New Year", + "2047-03-23": "Persian New Year", + "2047-03-24": "Persian New Year", + "2047-03-29": "Martyrdom of Fatima* (*estimated)", + "2047-04-01": "Islamic Republic Day", + "2047-04-02": "Nature's Day", + "2047-05-08": "Birthday of Ali* (*estimated)", + "2047-05-22": "Ascension of Muhammad* (*estimated)", + "2047-06-04": "Death of Khomeini", + "2047-06-05": "Khordad National Uprising", + "2047-06-09": "Birthday of Mahdi* (*estimated)", + "2047-07-14": "Martyrdom of Ali* (*estimated)", + "2047-07-24": "Eid al-Fitr* (*estimated)", + "2047-07-25": "Eid al-Fitr* (*estimated)", + "2047-08-17": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2047-09-30": "Eid al-Adha* (*estimated)", + "2047-10-08": "Eid al-Ghadeer* (*estimated)", + "2047-10-28": "Tasua* (*estimated)", + "2047-10-29": "Ashura* (*estimated)", + "2047-12-08": "Arbaeen* (*estimated)", + "2047-12-16": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2047-12-17": "Martyrdom of Ali al-Rida* (*estimated)", + "2047-12-25": "Martyrdom of Hasan al-Askari* (*estimated)", + "2048-01-03": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2048-02-11": "Islamic Revolution Day", + "2048-03-18": "Martyrdom of Fatima* (*estimated)", + "2048-03-19": "Iranian Oil Industry Nationalization Day", + "2048-03-20": "Persian New Year", + "2048-03-21": "Persian New Year", + "2048-03-22": "Persian New Year", + "2048-03-23": "Persian New Year", + "2048-03-31": "Islamic Republic Day", + "2048-04-01": "Nature's Day", + "2048-04-26": "Birthday of Ali* (*estimated)", + "2048-05-10": "Ascension of Muhammad* (*estimated)", + "2048-05-28": "Birthday of Mahdi* (*estimated)", + "2048-06-03": "Death of Khomeini", + "2048-06-04": "Khordad National Uprising", + "2048-07-02": "Martyrdom of Ali* (*estimated)", + "2048-07-12": "Eid al-Fitr* (*estimated)", + "2048-07-13": "Eid al-Fitr* (*estimated)", + "2048-08-05": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2048-09-19": "Eid al-Adha* (*estimated)", + "2048-09-27": "Eid al-Ghadeer* (*estimated)", + "2048-10-17": "Tasua* (*estimated)", + "2048-10-18": "Ashura* (*estimated)", + "2048-11-26": "Arbaeen* (*estimated)", + "2048-12-04": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2048-12-06": "Martyrdom of Ali al-Rida* (*estimated)", + "2048-12-14": "Martyrdom of Hasan al-Askari* (*estimated)", + "2048-12-23": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2049-02-10": "Islamic Revolution Day", + "2049-03-07": "Martyrdom of Fatima* (*estimated)", + "2049-03-19": "Iranian Oil Industry Nationalization Day", + "2049-03-20": "Persian New Year", + "2049-03-21": "Persian New Year", + "2049-03-22": "Persian New Year", + "2049-03-23": "Persian New Year", + "2049-03-31": "Islamic Republic Day", + "2049-04-01": "Nature's Day", + "2049-04-15": "Birthday of Ali* (*estimated)", + "2049-04-29": "Ascension of Muhammad* (*estimated)", + "2049-05-17": "Birthday of Mahdi* (*estimated)", + "2049-06-03": "Death of Khomeini", + "2049-06-04": "Khordad National Uprising", + "2049-06-22": "Martyrdom of Ali* (*estimated)", + "2049-07-01": "Eid al-Fitr* (*estimated)", + "2049-07-02": "Eid al-Fitr* (*estimated)", + "2049-07-25": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2049-09-08": "Eid al-Adha* (*estimated)", + "2049-09-16": "Eid al-Ghadeer* (*estimated)", + "2049-10-06": "Tasua* (*estimated)", + "2049-10-07": "Ashura* (*estimated)", + "2049-11-16": "Arbaeen* (*estimated)", + "2049-11-24": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2049-11-25": "Martyrdom of Ali al-Rida* (*estimated)", + "2049-12-03": "Martyrdom of Hasan al-Askari* (*estimated)", + "2049-12-12": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2050-02-10": "Islamic Revolution Day", + "2050-02-25": "Martyrdom of Fatima* (*estimated)", + "2050-03-19": "Iranian Oil Industry Nationalization Day", + "2050-03-21": "Persian New Year", + "2050-03-22": "Persian New Year", + "2050-03-23": "Persian New Year", + "2050-03-24": "Persian New Year", + "2050-04-01": "Islamic Republic Day", + "2050-04-02": "Nature's Day", + "2050-04-05": "Birthday of Ali* (*estimated)", + "2050-04-19": "Ascension of Muhammad* (*estimated)", + "2050-05-06": "Birthday of Mahdi* (*estimated)", + "2050-06-04": "Death of Khomeini", + "2050-06-05": "Khordad National Uprising", + "2050-06-11": "Martyrdom of Ali* (*estimated)", + "2050-06-20": "Eid al-Fitr* (*estimated)", + "2050-06-21": "Eid al-Fitr* (*estimated)", + "2050-07-14": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2050-08-28": "Eid al-Adha* (*estimated)", + "2050-09-05": "Eid al-Ghadeer* (*estimated)", + "2050-09-25": "Tasua* (*estimated)", + "2050-09-26": "Ashura* (*estimated)", + "2050-11-05": "Arbaeen* (*estimated)", + "2050-11-13": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", + "2050-11-14": "Martyrdom of Ali al-Rida* (*estimated)", + "2050-11-22": "Martyrdom of Hasan al-Askari* (*estimated)", + "2050-12-01": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)" +} diff --git a/snapshots/countries/IS.json b/snapshots/countries/IS.json new file mode 100644 index 000000000..a9e7ae752 --- /dev/null +++ b/snapshots/countries/IS.json @@ -0,0 +1,1611 @@ +{ + "1950-01-01": "New Year's Day", + "1950-04-06": "Maundy Thursday", + "1950-04-07": "Good Friday", + "1950-04-09": "Easter Sunday", + "1950-04-10": "Easter Monday", + "1950-04-20": "First Day of Summer", + "1950-05-01": "Labor Day", + "1950-05-18": "Ascension Day", + "1950-05-28": "Whit Sunday", + "1950-05-29": "Whit Monday", + "1950-06-17": "National Day", + "1950-08-07": "Commerce Day", + "1950-12-24": "Christmas Eve", + "1950-12-25": "Christmas Day", + "1950-12-26": "Second Day of Christmas", + "1950-12-31": "New Year's Eve", + "1951-01-01": "New Year's Day", + "1951-03-22": "Maundy Thursday", + "1951-03-23": "Good Friday", + "1951-03-25": "Easter Sunday", + "1951-03-26": "Easter Monday", + "1951-04-19": "First Day of Summer", + "1951-05-01": "Labor Day", + "1951-05-03": "Ascension Day", + "1951-05-13": "Whit Sunday", + "1951-05-14": "Whit Monday", + "1951-06-17": "National Day", + "1951-08-06": "Commerce Day", + "1951-12-24": "Christmas Eve", + "1951-12-25": "Christmas Day", + "1951-12-26": "Second Day of Christmas", + "1951-12-31": "New Year's Eve", + "1952-01-01": "New Year's Day", + "1952-04-10": "Maundy Thursday", + "1952-04-11": "Good Friday", + "1952-04-13": "Easter Sunday", + "1952-04-14": "Easter Monday", + "1952-04-24": "First Day of Summer", + "1952-05-01": "Labor Day", + "1952-05-22": "Ascension Day", + "1952-06-01": "Whit Sunday", + "1952-06-02": "Whit Monday", + "1952-06-17": "National Day", + "1952-08-04": "Commerce Day", + "1952-12-24": "Christmas Eve", + "1952-12-25": "Christmas Day", + "1952-12-26": "Second Day of Christmas", + "1952-12-31": "New Year's Eve", + "1953-01-01": "New Year's Day", + "1953-04-02": "Maundy Thursday", + "1953-04-03": "Good Friday", + "1953-04-05": "Easter Sunday", + "1953-04-06": "Easter Monday", + "1953-04-23": "First Day of Summer", + "1953-05-01": "Labor Day", + "1953-05-14": "Ascension Day", + "1953-05-24": "Whit Sunday", + "1953-05-25": "Whit Monday", + "1953-06-17": "National Day", + "1953-08-03": "Commerce Day", + "1953-12-24": "Christmas Eve", + "1953-12-25": "Christmas Day", + "1953-12-26": "Second Day of Christmas", + "1953-12-31": "New Year's Eve", + "1954-01-01": "New Year's Day", + "1954-04-15": "Maundy Thursday", + "1954-04-16": "Good Friday", + "1954-04-18": "Easter Sunday", + "1954-04-19": "Easter Monday", + "1954-04-22": "First Day of Summer", + "1954-05-01": "Labor Day", + "1954-05-27": "Ascension Day", + "1954-06-06": "Whit Sunday", + "1954-06-07": "Whit Monday", + "1954-06-17": "National Day", + "1954-08-02": "Commerce Day", + "1954-12-24": "Christmas Eve", + "1954-12-25": "Christmas Day", + "1954-12-26": "Second Day of Christmas", + "1954-12-31": "New Year's Eve", + "1955-01-01": "New Year's Day", + "1955-04-07": "Maundy Thursday", + "1955-04-08": "Good Friday", + "1955-04-10": "Easter Sunday", + "1955-04-11": "Easter Monday", + "1955-04-21": "First Day of Summer", + "1955-05-01": "Labor Day", + "1955-05-19": "Ascension Day", + "1955-05-29": "Whit Sunday", + "1955-05-30": "Whit Monday", + "1955-06-17": "National Day", + "1955-08-01": "Commerce Day", + "1955-12-24": "Christmas Eve", + "1955-12-25": "Christmas Day", + "1955-12-26": "Second Day of Christmas", + "1955-12-31": "New Year's Eve", + "1956-01-01": "New Year's Day", + "1956-03-29": "Maundy Thursday", + "1956-03-30": "Good Friday", + "1956-04-01": "Easter Sunday", + "1956-04-02": "Easter Monday", + "1956-04-19": "First Day of Summer", + "1956-05-01": "Labor Day", + "1956-05-10": "Ascension Day", + "1956-05-20": "Whit Sunday", + "1956-05-21": "Whit Monday", + "1956-06-17": "National Day", + "1956-08-06": "Commerce Day", + "1956-12-24": "Christmas Eve", + "1956-12-25": "Christmas Day", + "1956-12-26": "Second Day of Christmas", + "1956-12-31": "New Year's Eve", + "1957-01-01": "New Year's Day", + "1957-04-18": "Maundy Thursday", + "1957-04-19": "Good Friday", + "1957-04-21": "Easter Sunday", + "1957-04-22": "Easter Monday", + "1957-04-25": "First Day of Summer", + "1957-05-01": "Labor Day", + "1957-05-30": "Ascension Day", + "1957-06-09": "Whit Sunday", + "1957-06-10": "Whit Monday", + "1957-06-17": "National Day", + "1957-08-05": "Commerce Day", + "1957-12-24": "Christmas Eve", + "1957-12-25": "Christmas Day", + "1957-12-26": "Second Day of Christmas", + "1957-12-31": "New Year's Eve", + "1958-01-01": "New Year's Day", + "1958-04-03": "Maundy Thursday", + "1958-04-04": "Good Friday", + "1958-04-06": "Easter Sunday", + "1958-04-07": "Easter Monday", + "1958-04-24": "First Day of Summer", + "1958-05-01": "Labor Day", + "1958-05-15": "Ascension Day", + "1958-05-25": "Whit Sunday", + "1958-05-26": "Whit Monday", + "1958-06-17": "National Day", + "1958-08-04": "Commerce Day", + "1958-12-24": "Christmas Eve", + "1958-12-25": "Christmas Day", + "1958-12-26": "Second Day of Christmas", + "1958-12-31": "New Year's Eve", + "1959-01-01": "New Year's Day", + "1959-03-26": "Maundy Thursday", + "1959-03-27": "Good Friday", + "1959-03-29": "Easter Sunday", + "1959-03-30": "Easter Monday", + "1959-04-23": "First Day of Summer", + "1959-05-01": "Labor Day", + "1959-05-07": "Ascension Day", + "1959-05-17": "Whit Sunday", + "1959-05-18": "Whit Monday", + "1959-06-17": "National Day", + "1959-08-03": "Commerce Day", + "1959-12-24": "Christmas Eve", + "1959-12-25": "Christmas Day", + "1959-12-26": "Second Day of Christmas", + "1959-12-31": "New Year's Eve", + "1960-01-01": "New Year's Day", + "1960-04-14": "Maundy Thursday", + "1960-04-15": "Good Friday", + "1960-04-17": "Easter Sunday", + "1960-04-18": "Easter Monday", + "1960-04-21": "First Day of Summer", + "1960-05-01": "Labor Day", + "1960-05-26": "Ascension Day", + "1960-06-05": "Whit Sunday", + "1960-06-06": "Whit Monday", + "1960-06-17": "National Day", + "1960-08-01": "Commerce Day", + "1960-12-24": "Christmas Eve", + "1960-12-25": "Christmas Day", + "1960-12-26": "Second Day of Christmas", + "1960-12-31": "New Year's Eve", + "1961-01-01": "New Year's Day", + "1961-03-30": "Maundy Thursday", + "1961-03-31": "Good Friday", + "1961-04-02": "Easter Sunday", + "1961-04-03": "Easter Monday", + "1961-04-20": "First Day of Summer", + "1961-05-01": "Labor Day", + "1961-05-11": "Ascension Day", + "1961-05-21": "Whit Sunday", + "1961-05-22": "Whit Monday", + "1961-06-17": "National Day", + "1961-08-07": "Commerce Day", + "1961-12-24": "Christmas Eve", + "1961-12-25": "Christmas Day", + "1961-12-26": "Second Day of Christmas", + "1961-12-31": "New Year's Eve", + "1962-01-01": "New Year's Day", + "1962-04-19": "First Day of Summer; Maundy Thursday", + "1962-04-20": "Good Friday", + "1962-04-22": "Easter Sunday", + "1962-04-23": "Easter Monday", + "1962-05-01": "Labor Day", + "1962-05-31": "Ascension Day", + "1962-06-10": "Whit Sunday", + "1962-06-11": "Whit Monday", + "1962-06-17": "National Day", + "1962-08-06": "Commerce Day", + "1962-12-24": "Christmas Eve", + "1962-12-25": "Christmas Day", + "1962-12-26": "Second Day of Christmas", + "1962-12-31": "New Year's Eve", + "1963-01-01": "New Year's Day", + "1963-04-11": "Maundy Thursday", + "1963-04-12": "Good Friday", + "1963-04-14": "Easter Sunday", + "1963-04-15": "Easter Monday", + "1963-04-25": "First Day of Summer", + "1963-05-01": "Labor Day", + "1963-05-23": "Ascension Day", + "1963-06-02": "Whit Sunday", + "1963-06-03": "Whit Monday", + "1963-06-17": "National Day", + "1963-08-05": "Commerce Day", + "1963-12-24": "Christmas Eve", + "1963-12-25": "Christmas Day", + "1963-12-26": "Second Day of Christmas", + "1963-12-31": "New Year's Eve", + "1964-01-01": "New Year's Day", + "1964-03-26": "Maundy Thursday", + "1964-03-27": "Good Friday", + "1964-03-29": "Easter Sunday", + "1964-03-30": "Easter Monday", + "1964-04-23": "First Day of Summer", + "1964-05-01": "Labor Day", + "1964-05-07": "Ascension Day", + "1964-05-17": "Whit Sunday", + "1964-05-18": "Whit Monday", + "1964-06-17": "National Day", + "1964-08-03": "Commerce Day", + "1964-12-24": "Christmas Eve", + "1964-12-25": "Christmas Day", + "1964-12-26": "Second Day of Christmas", + "1964-12-31": "New Year's Eve", + "1965-01-01": "New Year's Day", + "1965-04-15": "Maundy Thursday", + "1965-04-16": "Good Friday", + "1965-04-18": "Easter Sunday", + "1965-04-19": "Easter Monday", + "1965-04-22": "First Day of Summer", + "1965-05-01": "Labor Day", + "1965-05-27": "Ascension Day", + "1965-06-06": "Whit Sunday", + "1965-06-07": "Whit Monday", + "1965-06-17": "National Day", + "1965-08-02": "Commerce Day", + "1965-12-24": "Christmas Eve", + "1965-12-25": "Christmas Day", + "1965-12-26": "Second Day of Christmas", + "1965-12-31": "New Year's Eve", + "1966-01-01": "New Year's Day", + "1966-04-07": "Maundy Thursday", + "1966-04-08": "Good Friday", + "1966-04-10": "Easter Sunday", + "1966-04-11": "Easter Monday", + "1966-04-21": "First Day of Summer", + "1966-05-01": "Labor Day", + "1966-05-19": "Ascension Day", + "1966-05-29": "Whit Sunday", + "1966-05-30": "Whit Monday", + "1966-06-17": "National Day", + "1966-08-01": "Commerce Day", + "1966-12-24": "Christmas Eve", + "1966-12-25": "Christmas Day", + "1966-12-26": "Second Day of Christmas", + "1966-12-31": "New Year's Eve", + "1967-01-01": "New Year's Day", + "1967-03-23": "Maundy Thursday", + "1967-03-24": "Good Friday", + "1967-03-26": "Easter Sunday", + "1967-03-27": "Easter Monday", + "1967-04-20": "First Day of Summer", + "1967-05-01": "Labor Day", + "1967-05-04": "Ascension Day", + "1967-05-14": "Whit Sunday", + "1967-05-15": "Whit Monday", + "1967-06-17": "National Day", + "1967-08-07": "Commerce Day", + "1967-12-24": "Christmas Eve", + "1967-12-25": "Christmas Day", + "1967-12-26": "Second Day of Christmas", + "1967-12-31": "New Year's Eve", + "1968-01-01": "New Year's Day", + "1968-04-11": "Maundy Thursday", + "1968-04-12": "Good Friday", + "1968-04-14": "Easter Sunday", + "1968-04-15": "Easter Monday", + "1968-04-25": "First Day of Summer", + "1968-05-01": "Labor Day", + "1968-05-23": "Ascension Day", + "1968-06-02": "Whit Sunday", + "1968-06-03": "Whit Monday", + "1968-06-17": "National Day", + "1968-08-05": "Commerce Day", + "1968-12-24": "Christmas Eve", + "1968-12-25": "Christmas Day", + "1968-12-26": "Second Day of Christmas", + "1968-12-31": "New Year's Eve", + "1969-01-01": "New Year's Day", + "1969-04-03": "Maundy Thursday", + "1969-04-04": "Good Friday", + "1969-04-06": "Easter Sunday", + "1969-04-07": "Easter Monday", + "1969-04-24": "First Day of Summer", + "1969-05-01": "Labor Day", + "1969-05-15": "Ascension Day", + "1969-05-25": "Whit Sunday", + "1969-05-26": "Whit Monday", + "1969-06-17": "National Day", + "1969-08-04": "Commerce Day", + "1969-12-24": "Christmas Eve", + "1969-12-25": "Christmas Day", + "1969-12-26": "Second Day of Christmas", + "1969-12-31": "New Year's Eve", + "1970-01-01": "New Year's Day", + "1970-03-26": "Maundy Thursday", + "1970-03-27": "Good Friday", + "1970-03-29": "Easter Sunday", + "1970-03-30": "Easter Monday", + "1970-04-23": "First Day of Summer", + "1970-05-01": "Labor Day", + "1970-05-07": "Ascension Day", + "1970-05-17": "Whit Sunday", + "1970-05-18": "Whit Monday", + "1970-06-17": "National Day", + "1970-08-03": "Commerce Day", + "1970-12-24": "Christmas Eve", + "1970-12-25": "Christmas Day", + "1970-12-26": "Second Day of Christmas", + "1970-12-31": "New Year's Eve", + "1971-01-01": "New Year's Day", + "1971-04-08": "Maundy Thursday", + "1971-04-09": "Good Friday", + "1971-04-11": "Easter Sunday", + "1971-04-12": "Easter Monday", + "1971-04-22": "First Day of Summer", + "1971-05-01": "Labor Day", + "1971-05-20": "Ascension Day", + "1971-05-30": "Whit Sunday", + "1971-05-31": "Whit Monday", + "1971-06-17": "National Day", + "1971-08-02": "Commerce Day", + "1971-12-24": "Christmas Eve", + "1971-12-25": "Christmas Day", + "1971-12-26": "Second Day of Christmas", + "1971-12-31": "New Year's Eve", + "1972-01-01": "New Year's Day", + "1972-03-30": "Maundy Thursday", + "1972-03-31": "Good Friday", + "1972-04-02": "Easter Sunday", + "1972-04-03": "Easter Monday", + "1972-04-20": "First Day of Summer", + "1972-05-01": "Labor Day", + "1972-05-11": "Ascension Day", + "1972-05-21": "Whit Sunday", + "1972-05-22": "Whit Monday", + "1972-06-17": "National Day", + "1972-08-07": "Commerce Day", + "1972-12-24": "Christmas Eve", + "1972-12-25": "Christmas Day", + "1972-12-26": "Second Day of Christmas", + "1972-12-31": "New Year's Eve", + "1973-01-01": "New Year's Day", + "1973-04-19": "First Day of Summer; Maundy Thursday", + "1973-04-20": "Good Friday", + "1973-04-22": "Easter Sunday", + "1973-04-23": "Easter Monday", + "1973-05-01": "Labor Day", + "1973-05-31": "Ascension Day", + "1973-06-10": "Whit Sunday", + "1973-06-11": "Whit Monday", + "1973-06-17": "National Day", + "1973-08-06": "Commerce Day", + "1973-12-24": "Christmas Eve", + "1973-12-25": "Christmas Day", + "1973-12-26": "Second Day of Christmas", + "1973-12-31": "New Year's Eve", + "1974-01-01": "New Year's Day", + "1974-04-11": "Maundy Thursday", + "1974-04-12": "Good Friday", + "1974-04-14": "Easter Sunday", + "1974-04-15": "Easter Monday", + "1974-04-25": "First Day of Summer", + "1974-05-01": "Labor Day", + "1974-05-23": "Ascension Day", + "1974-06-02": "Whit Sunday", + "1974-06-03": "Whit Monday", + "1974-06-17": "National Day", + "1974-08-05": "Commerce Day", + "1974-12-24": "Christmas Eve", + "1974-12-25": "Christmas Day", + "1974-12-26": "Second Day of Christmas", + "1974-12-31": "New Year's Eve", + "1975-01-01": "New Year's Day", + "1975-03-27": "Maundy Thursday", + "1975-03-28": "Good Friday", + "1975-03-30": "Easter Sunday", + "1975-03-31": "Easter Monday", + "1975-04-24": "First Day of Summer", + "1975-05-01": "Labor Day", + "1975-05-08": "Ascension Day", + "1975-05-18": "Whit Sunday", + "1975-05-19": "Whit Monday", + "1975-06-17": "National Day", + "1975-08-04": "Commerce Day", + "1975-12-24": "Christmas Eve", + "1975-12-25": "Christmas Day", + "1975-12-26": "Second Day of Christmas", + "1975-12-31": "New Year's Eve", + "1976-01-01": "New Year's Day", + "1976-04-15": "Maundy Thursday", + "1976-04-16": "Good Friday", + "1976-04-18": "Easter Sunday", + "1976-04-19": "Easter Monday", + "1976-04-22": "First Day of Summer", + "1976-05-01": "Labor Day", + "1976-05-27": "Ascension Day", + "1976-06-06": "Whit Sunday", + "1976-06-07": "Whit Monday", + "1976-06-17": "National Day", + "1976-08-02": "Commerce Day", + "1976-12-24": "Christmas Eve", + "1976-12-25": "Christmas Day", + "1976-12-26": "Second Day of Christmas", + "1976-12-31": "New Year's Eve", + "1977-01-01": "New Year's Day", + "1977-04-07": "Maundy Thursday", + "1977-04-08": "Good Friday", + "1977-04-10": "Easter Sunday", + "1977-04-11": "Easter Monday", + "1977-04-21": "First Day of Summer", + "1977-05-01": "Labor Day", + "1977-05-19": "Ascension Day", + "1977-05-29": "Whit Sunday", + "1977-05-30": "Whit Monday", + "1977-06-17": "National Day", + "1977-08-01": "Commerce Day", + "1977-12-24": "Christmas Eve", + "1977-12-25": "Christmas Day", + "1977-12-26": "Second Day of Christmas", + "1977-12-31": "New Year's Eve", + "1978-01-01": "New Year's Day", + "1978-03-23": "Maundy Thursday", + "1978-03-24": "Good Friday", + "1978-03-26": "Easter Sunday", + "1978-03-27": "Easter Monday", + "1978-04-20": "First Day of Summer", + "1978-05-01": "Labor Day", + "1978-05-04": "Ascension Day", + "1978-05-14": "Whit Sunday", + "1978-05-15": "Whit Monday", + "1978-06-17": "National Day", + "1978-08-07": "Commerce Day", + "1978-12-24": "Christmas Eve", + "1978-12-25": "Christmas Day", + "1978-12-26": "Second Day of Christmas", + "1978-12-31": "New Year's Eve", + "1979-01-01": "New Year's Day", + "1979-04-12": "Maundy Thursday", + "1979-04-13": "Good Friday", + "1979-04-15": "Easter Sunday", + "1979-04-16": "Easter Monday", + "1979-04-19": "First Day of Summer", + "1979-05-01": "Labor Day", + "1979-05-24": "Ascension Day", + "1979-06-03": "Whit Sunday", + "1979-06-04": "Whit Monday", + "1979-06-17": "National Day", + "1979-08-06": "Commerce Day", + "1979-12-24": "Christmas Eve", + "1979-12-25": "Christmas Day", + "1979-12-26": "Second Day of Christmas", + "1979-12-31": "New Year's Eve", + "1980-01-01": "New Year's Day", + "1980-04-03": "Maundy Thursday", + "1980-04-04": "Good Friday", + "1980-04-06": "Easter Sunday", + "1980-04-07": "Easter Monday", + "1980-04-24": "First Day of Summer", + "1980-05-01": "Labor Day", + "1980-05-15": "Ascension Day", + "1980-05-25": "Whit Sunday", + "1980-05-26": "Whit Monday", + "1980-06-17": "National Day", + "1980-08-04": "Commerce Day", + "1980-12-24": "Christmas Eve", + "1980-12-25": "Christmas Day", + "1980-12-26": "Second Day of Christmas", + "1980-12-31": "New Year's Eve", + "1981-01-01": "New Year's Day", + "1981-04-16": "Maundy Thursday", + "1981-04-17": "Good Friday", + "1981-04-19": "Easter Sunday", + "1981-04-20": "Easter Monday", + "1981-04-23": "First Day of Summer", + "1981-05-01": "Labor Day", + "1981-05-28": "Ascension Day", + "1981-06-07": "Whit Sunday", + "1981-06-08": "Whit Monday", + "1981-06-17": "National Day", + "1981-08-03": "Commerce Day", + "1981-12-24": "Christmas Eve", + "1981-12-25": "Christmas Day", + "1981-12-26": "Second Day of Christmas", + "1981-12-31": "New Year's Eve", + "1982-01-01": "New Year's Day", + "1982-04-08": "Maundy Thursday", + "1982-04-09": "Good Friday", + "1982-04-11": "Easter Sunday", + "1982-04-12": "Easter Monday", + "1982-04-22": "First Day of Summer", + "1982-05-01": "Labor Day", + "1982-05-20": "Ascension Day", + "1982-05-30": "Whit Sunday", + "1982-05-31": "Whit Monday", + "1982-06-17": "National Day", + "1982-08-02": "Commerce Day", + "1982-12-24": "Christmas Eve", + "1982-12-25": "Christmas Day", + "1982-12-26": "Second Day of Christmas", + "1982-12-31": "New Year's Eve", + "1983-01-01": "New Year's Day", + "1983-03-31": "Maundy Thursday", + "1983-04-01": "Good Friday", + "1983-04-03": "Easter Sunday", + "1983-04-04": "Easter Monday", + "1983-04-21": "First Day of Summer", + "1983-05-01": "Labor Day", + "1983-05-12": "Ascension Day", + "1983-05-22": "Whit Sunday", + "1983-05-23": "Whit Monday", + "1983-06-17": "National Day", + "1983-08-01": "Commerce Day", + "1983-12-24": "Christmas Eve", + "1983-12-25": "Christmas Day", + "1983-12-26": "Second Day of Christmas", + "1983-12-31": "New Year's Eve", + "1984-01-01": "New Year's Day", + "1984-04-19": "First Day of Summer; Maundy Thursday", + "1984-04-20": "Good Friday", + "1984-04-22": "Easter Sunday", + "1984-04-23": "Easter Monday", + "1984-05-01": "Labor Day", + "1984-05-31": "Ascension Day", + "1984-06-10": "Whit Sunday", + "1984-06-11": "Whit Monday", + "1984-06-17": "National Day", + "1984-08-06": "Commerce Day", + "1984-12-24": "Christmas Eve", + "1984-12-25": "Christmas Day", + "1984-12-26": "Second Day of Christmas", + "1984-12-31": "New Year's Eve", + "1985-01-01": "New Year's Day", + "1985-04-04": "Maundy Thursday", + "1985-04-05": "Good Friday", + "1985-04-07": "Easter Sunday", + "1985-04-08": "Easter Monday", + "1985-04-25": "First Day of Summer", + "1985-05-01": "Labor Day", + "1985-05-16": "Ascension Day", + "1985-05-26": "Whit Sunday", + "1985-05-27": "Whit Monday", + "1985-06-17": "National Day", + "1985-08-05": "Commerce Day", + "1985-12-24": "Christmas Eve", + "1985-12-25": "Christmas Day", + "1985-12-26": "Second Day of Christmas", + "1985-12-31": "New Year's Eve", + "1986-01-01": "New Year's Day", + "1986-03-27": "Maundy Thursday", + "1986-03-28": "Good Friday", + "1986-03-30": "Easter Sunday", + "1986-03-31": "Easter Monday", + "1986-04-24": "First Day of Summer", + "1986-05-01": "Labor Day", + "1986-05-08": "Ascension Day", + "1986-05-18": "Whit Sunday", + "1986-05-19": "Whit Monday", + "1986-06-17": "National Day", + "1986-08-04": "Commerce Day", + "1986-12-24": "Christmas Eve", + "1986-12-25": "Christmas Day", + "1986-12-26": "Second Day of Christmas", + "1986-12-31": "New Year's Eve", + "1987-01-01": "New Year's Day", + "1987-04-16": "Maundy Thursday", + "1987-04-17": "Good Friday", + "1987-04-19": "Easter Sunday", + "1987-04-20": "Easter Monday", + "1987-04-23": "First Day of Summer", + "1987-05-01": "Labor Day", + "1987-05-28": "Ascension Day", + "1987-06-07": "Whit Sunday", + "1987-06-08": "Whit Monday", + "1987-06-17": "National Day", + "1987-08-03": "Commerce Day", + "1987-12-24": "Christmas Eve", + "1987-12-25": "Christmas Day", + "1987-12-26": "Second Day of Christmas", + "1987-12-31": "New Year's Eve", + "1988-01-01": "New Year's Day", + "1988-03-31": "Maundy Thursday", + "1988-04-01": "Good Friday", + "1988-04-03": "Easter Sunday", + "1988-04-04": "Easter Monday", + "1988-04-21": "First Day of Summer", + "1988-05-01": "Labor Day", + "1988-05-12": "Ascension Day", + "1988-05-22": "Whit Sunday", + "1988-05-23": "Whit Monday", + "1988-06-17": "National Day", + "1988-08-01": "Commerce Day", + "1988-12-24": "Christmas Eve", + "1988-12-25": "Christmas Day", + "1988-12-26": "Second Day of Christmas", + "1988-12-31": "New Year's Eve", + "1989-01-01": "New Year's Day", + "1989-03-23": "Maundy Thursday", + "1989-03-24": "Good Friday", + "1989-03-26": "Easter Sunday", + "1989-03-27": "Easter Monday", + "1989-04-20": "First Day of Summer", + "1989-05-01": "Labor Day", + "1989-05-04": "Ascension Day", + "1989-05-14": "Whit Sunday", + "1989-05-15": "Whit Monday", + "1989-06-17": "National Day", + "1989-08-07": "Commerce Day", + "1989-12-24": "Christmas Eve", + "1989-12-25": "Christmas Day", + "1989-12-26": "Second Day of Christmas", + "1989-12-31": "New Year's Eve", + "1990-01-01": "New Year's Day", + "1990-04-12": "Maundy Thursday", + "1990-04-13": "Good Friday", + "1990-04-15": "Easter Sunday", + "1990-04-16": "Easter Monday", + "1990-04-19": "First Day of Summer", + "1990-05-01": "Labor Day", + "1990-05-24": "Ascension Day", + "1990-06-03": "Whit Sunday", + "1990-06-04": "Whit Monday", + "1990-06-17": "National Day", + "1990-08-06": "Commerce Day", + "1990-12-24": "Christmas Eve", + "1990-12-25": "Christmas Day", + "1990-12-26": "Second Day of Christmas", + "1990-12-31": "New Year's Eve", + "1991-01-01": "New Year's Day", + "1991-03-28": "Maundy Thursday", + "1991-03-29": "Good Friday", + "1991-03-31": "Easter Sunday", + "1991-04-01": "Easter Monday", + "1991-04-25": "First Day of Summer", + "1991-05-01": "Labor Day", + "1991-05-09": "Ascension Day", + "1991-05-19": "Whit Sunday", + "1991-05-20": "Whit Monday", + "1991-06-17": "National Day", + "1991-08-05": "Commerce Day", + "1991-12-24": "Christmas Eve", + "1991-12-25": "Christmas Day", + "1991-12-26": "Second Day of Christmas", + "1991-12-31": "New Year's Eve", + "1992-01-01": "New Year's Day", + "1992-04-16": "Maundy Thursday", + "1992-04-17": "Good Friday", + "1992-04-19": "Easter Sunday", + "1992-04-20": "Easter Monday", + "1992-04-23": "First Day of Summer", + "1992-05-01": "Labor Day", + "1992-05-28": "Ascension Day", + "1992-06-07": "Whit Sunday", + "1992-06-08": "Whit Monday", + "1992-06-17": "National Day", + "1992-08-03": "Commerce Day", + "1992-12-24": "Christmas Eve", + "1992-12-25": "Christmas Day", + "1992-12-26": "Second Day of Christmas", + "1992-12-31": "New Year's Eve", + "1993-01-01": "New Year's Day", + "1993-04-08": "Maundy Thursday", + "1993-04-09": "Good Friday", + "1993-04-11": "Easter Sunday", + "1993-04-12": "Easter Monday", + "1993-04-22": "First Day of Summer", + "1993-05-01": "Labor Day", + "1993-05-20": "Ascension Day", + "1993-05-30": "Whit Sunday", + "1993-05-31": "Whit Monday", + "1993-06-17": "National Day", + "1993-08-02": "Commerce Day", + "1993-12-24": "Christmas Eve", + "1993-12-25": "Christmas Day", + "1993-12-26": "Second Day of Christmas", + "1993-12-31": "New Year's Eve", + "1994-01-01": "New Year's Day", + "1994-03-31": "Maundy Thursday", + "1994-04-01": "Good Friday", + "1994-04-03": "Easter Sunday", + "1994-04-04": "Easter Monday", + "1994-04-21": "First Day of Summer", + "1994-05-01": "Labor Day", + "1994-05-12": "Ascension Day", + "1994-05-22": "Whit Sunday", + "1994-05-23": "Whit Monday", + "1994-06-17": "National Day", + "1994-08-01": "Commerce Day", + "1994-12-24": "Christmas Eve", + "1994-12-25": "Christmas Day", + "1994-12-26": "Second Day of Christmas", + "1994-12-31": "New Year's Eve", + "1995-01-01": "New Year's Day", + "1995-04-13": "Maundy Thursday", + "1995-04-14": "Good Friday", + "1995-04-16": "Easter Sunday", + "1995-04-17": "Easter Monday", + "1995-04-20": "First Day of Summer", + "1995-05-01": "Labor Day", + "1995-05-25": "Ascension Day", + "1995-06-04": "Whit Sunday", + "1995-06-05": "Whit Monday", + "1995-06-17": "National Day", + "1995-08-07": "Commerce Day", + "1995-12-24": "Christmas Eve", + "1995-12-25": "Christmas Day", + "1995-12-26": "Second Day of Christmas", + "1995-12-31": "New Year's Eve", + "1996-01-01": "New Year's Day", + "1996-04-04": "Maundy Thursday", + "1996-04-05": "Good Friday", + "1996-04-07": "Easter Sunday", + "1996-04-08": "Easter Monday", + "1996-04-25": "First Day of Summer", + "1996-05-01": "Labor Day", + "1996-05-16": "Ascension Day", + "1996-05-26": "Whit Sunday", + "1996-05-27": "Whit Monday", + "1996-06-17": "National Day", + "1996-08-05": "Commerce Day", + "1996-12-24": "Christmas Eve", + "1996-12-25": "Christmas Day", + "1996-12-26": "Second Day of Christmas", + "1996-12-31": "New Year's Eve", + "1997-01-01": "New Year's Day", + "1997-03-27": "Maundy Thursday", + "1997-03-28": "Good Friday", + "1997-03-30": "Easter Sunday", + "1997-03-31": "Easter Monday", + "1997-04-24": "First Day of Summer", + "1997-05-01": "Labor Day", + "1997-05-08": "Ascension Day", + "1997-05-18": "Whit Sunday", + "1997-05-19": "Whit Monday", + "1997-06-17": "National Day", + "1997-08-04": "Commerce Day", + "1997-12-24": "Christmas Eve", + "1997-12-25": "Christmas Day", + "1997-12-26": "Second Day of Christmas", + "1997-12-31": "New Year's Eve", + "1998-01-01": "New Year's Day", + "1998-04-09": "Maundy Thursday", + "1998-04-10": "Good Friday", + "1998-04-12": "Easter Sunday", + "1998-04-13": "Easter Monday", + "1998-04-23": "First Day of Summer", + "1998-05-01": "Labor Day", + "1998-05-21": "Ascension Day", + "1998-05-31": "Whit Sunday", + "1998-06-01": "Whit Monday", + "1998-06-17": "National Day", + "1998-08-03": "Commerce Day", + "1998-12-24": "Christmas Eve", + "1998-12-25": "Christmas Day", + "1998-12-26": "Second Day of Christmas", + "1998-12-31": "New Year's Eve", + "1999-01-01": "New Year's Day", + "1999-04-01": "Maundy Thursday", + "1999-04-02": "Good Friday", + "1999-04-04": "Easter Sunday", + "1999-04-05": "Easter Monday", + "1999-04-22": "First Day of Summer", + "1999-05-01": "Labor Day", + "1999-05-13": "Ascension Day", + "1999-05-23": "Whit Sunday", + "1999-05-24": "Whit Monday", + "1999-06-17": "National Day", + "1999-08-02": "Commerce Day", + "1999-12-24": "Christmas Eve", + "1999-12-25": "Christmas Day", + "1999-12-26": "Second Day of Christmas", + "1999-12-31": "New Year's Eve", + "2000-01-01": "New Year's Day", + "2000-04-20": "First Day of Summer; Maundy Thursday", + "2000-04-21": "Good Friday", + "2000-04-23": "Easter Sunday", + "2000-04-24": "Easter Monday", + "2000-05-01": "Labor Day", + "2000-06-01": "Ascension Day", + "2000-06-11": "Whit Sunday", + "2000-06-12": "Whit Monday", + "2000-06-17": "National Day", + "2000-08-07": "Commerce Day", + "2000-12-24": "Christmas Eve", + "2000-12-25": "Christmas Day", + "2000-12-26": "Second Day of Christmas", + "2000-12-31": "New Year's Eve", + "2001-01-01": "New Year's Day", + "2001-04-12": "Maundy Thursday", + "2001-04-13": "Good Friday", + "2001-04-15": "Easter Sunday", + "2001-04-16": "Easter Monday", + "2001-04-19": "First Day of Summer", + "2001-05-01": "Labor Day", + "2001-05-24": "Ascension Day", + "2001-06-03": "Whit Sunday", + "2001-06-04": "Whit Monday", + "2001-06-17": "National Day", + "2001-08-06": "Commerce Day", + "2001-12-24": "Christmas Eve", + "2001-12-25": "Christmas Day", + "2001-12-26": "Second Day of Christmas", + "2001-12-31": "New Year's Eve", + "2002-01-01": "New Year's Day", + "2002-03-28": "Maundy Thursday", + "2002-03-29": "Good Friday", + "2002-03-31": "Easter Sunday", + "2002-04-01": "Easter Monday", + "2002-04-25": "First Day of Summer", + "2002-05-01": "Labor Day", + "2002-05-09": "Ascension Day", + "2002-05-19": "Whit Sunday", + "2002-05-20": "Whit Monday", + "2002-06-17": "National Day", + "2002-08-05": "Commerce Day", + "2002-12-24": "Christmas Eve", + "2002-12-25": "Christmas Day", + "2002-12-26": "Second Day of Christmas", + "2002-12-31": "New Year's Eve", + "2003-01-01": "New Year's Day", + "2003-04-17": "Maundy Thursday", + "2003-04-18": "Good Friday", + "2003-04-20": "Easter Sunday", + "2003-04-21": "Easter Monday", + "2003-04-24": "First Day of Summer", + "2003-05-01": "Labor Day", + "2003-05-29": "Ascension Day", + "2003-06-08": "Whit Sunday", + "2003-06-09": "Whit Monday", + "2003-06-17": "National Day", + "2003-08-04": "Commerce Day", + "2003-12-24": "Christmas Eve", + "2003-12-25": "Christmas Day", + "2003-12-26": "Second Day of Christmas", + "2003-12-31": "New Year's Eve", + "2004-01-01": "New Year's Day", + "2004-04-08": "Maundy Thursday", + "2004-04-09": "Good Friday", + "2004-04-11": "Easter Sunday", + "2004-04-12": "Easter Monday", + "2004-04-22": "First Day of Summer", + "2004-05-01": "Labor Day", + "2004-05-20": "Ascension Day", + "2004-05-30": "Whit Sunday", + "2004-05-31": "Whit Monday", + "2004-06-17": "National Day", + "2004-08-02": "Commerce Day", + "2004-12-24": "Christmas Eve", + "2004-12-25": "Christmas Day", + "2004-12-26": "Second Day of Christmas", + "2004-12-31": "New Year's Eve", + "2005-01-01": "New Year's Day", + "2005-03-24": "Maundy Thursday", + "2005-03-25": "Good Friday", + "2005-03-27": "Easter Sunday", + "2005-03-28": "Easter Monday", + "2005-04-21": "First Day of Summer", + "2005-05-01": "Labor Day", + "2005-05-05": "Ascension Day", + "2005-05-15": "Whit Sunday", + "2005-05-16": "Whit Monday", + "2005-06-17": "National Day", + "2005-08-01": "Commerce Day", + "2005-12-24": "Christmas Eve", + "2005-12-25": "Christmas Day", + "2005-12-26": "Second Day of Christmas", + "2005-12-31": "New Year's Eve", + "2006-01-01": "New Year's Day", + "2006-04-13": "Maundy Thursday", + "2006-04-14": "Good Friday", + "2006-04-16": "Easter Sunday", + "2006-04-17": "Easter Monday", + "2006-04-20": "First Day of Summer", + "2006-05-01": "Labor Day", + "2006-05-25": "Ascension Day", + "2006-06-04": "Whit Sunday", + "2006-06-05": "Whit Monday", + "2006-06-17": "National Day", + "2006-08-07": "Commerce Day", + "2006-12-24": "Christmas Eve", + "2006-12-25": "Christmas Day", + "2006-12-26": "Second Day of Christmas", + "2006-12-31": "New Year's Eve", + "2007-01-01": "New Year's Day", + "2007-04-05": "Maundy Thursday", + "2007-04-06": "Good Friday", + "2007-04-08": "Easter Sunday", + "2007-04-09": "Easter Monday", + "2007-04-19": "First Day of Summer", + "2007-05-01": "Labor Day", + "2007-05-17": "Ascension Day", + "2007-05-27": "Whit Sunday", + "2007-05-28": "Whit Monday", + "2007-06-17": "National Day", + "2007-08-06": "Commerce Day", + "2007-12-24": "Christmas Eve", + "2007-12-25": "Christmas Day", + "2007-12-26": "Second Day of Christmas", + "2007-12-31": "New Year's Eve", + "2008-01-01": "New Year's Day", + "2008-03-20": "Maundy Thursday", + "2008-03-21": "Good Friday", + "2008-03-23": "Easter Sunday", + "2008-03-24": "Easter Monday", + "2008-04-24": "First Day of Summer", + "2008-05-01": "Ascension Day; Labor Day", + "2008-05-11": "Whit Sunday", + "2008-05-12": "Whit Monday", + "2008-06-17": "National Day", + "2008-08-04": "Commerce Day", + "2008-12-24": "Christmas Eve", + "2008-12-25": "Christmas Day", + "2008-12-26": "Second Day of Christmas", + "2008-12-31": "New Year's Eve", + "2009-01-01": "New Year's Day", + "2009-04-09": "Maundy Thursday", + "2009-04-10": "Good Friday", + "2009-04-12": "Easter Sunday", + "2009-04-13": "Easter Monday", + "2009-04-23": "First Day of Summer", + "2009-05-01": "Labor Day", + "2009-05-21": "Ascension Day", + "2009-05-31": "Whit Sunday", + "2009-06-01": "Whit Monday", + "2009-06-17": "National Day", + "2009-08-03": "Commerce Day", + "2009-12-24": "Christmas Eve", + "2009-12-25": "Christmas Day", + "2009-12-26": "Second Day of Christmas", + "2009-12-31": "New Year's Eve", + "2010-01-01": "New Year's Day", + "2010-04-01": "Maundy Thursday", + "2010-04-02": "Good Friday", + "2010-04-04": "Easter Sunday", + "2010-04-05": "Easter Monday", + "2010-04-22": "First Day of Summer", + "2010-05-01": "Labor Day", + "2010-05-13": "Ascension Day", + "2010-05-23": "Whit Sunday", + "2010-05-24": "Whit Monday", + "2010-06-17": "National Day", + "2010-08-02": "Commerce Day", + "2010-12-24": "Christmas Eve", + "2010-12-25": "Christmas Day", + "2010-12-26": "Second Day of Christmas", + "2010-12-31": "New Year's Eve", + "2011-01-01": "New Year's Day", + "2011-04-21": "First Day of Summer; Maundy Thursday", + "2011-04-22": "Good Friday", + "2011-04-24": "Easter Sunday", + "2011-04-25": "Easter Monday", + "2011-05-01": "Labor Day", + "2011-06-02": "Ascension Day", + "2011-06-12": "Whit Sunday", + "2011-06-13": "Whit Monday", + "2011-06-17": "National Day", + "2011-08-01": "Commerce Day", + "2011-12-24": "Christmas Eve", + "2011-12-25": "Christmas Day", + "2011-12-26": "Second Day of Christmas", + "2011-12-31": "New Year's Eve", + "2012-01-01": "New Year's Day", + "2012-04-05": "Maundy Thursday", + "2012-04-06": "Good Friday", + "2012-04-08": "Easter Sunday", + "2012-04-09": "Easter Monday", + "2012-04-19": "First Day of Summer", + "2012-05-01": "Labor Day", + "2012-05-17": "Ascension Day", + "2012-05-27": "Whit Sunday", + "2012-05-28": "Whit Monday", + "2012-06-17": "National Day", + "2012-08-06": "Commerce Day", + "2012-12-24": "Christmas Eve", + "2012-12-25": "Christmas Day", + "2012-12-26": "Second Day of Christmas", + "2012-12-31": "New Year's Eve", + "2013-01-01": "New Year's Day", + "2013-03-28": "Maundy Thursday", + "2013-03-29": "Good Friday", + "2013-03-31": "Easter Sunday", + "2013-04-01": "Easter Monday", + "2013-04-25": "First Day of Summer", + "2013-05-01": "Labor Day", + "2013-05-09": "Ascension Day", + "2013-05-19": "Whit Sunday", + "2013-05-20": "Whit Monday", + "2013-06-17": "National Day", + "2013-08-05": "Commerce Day", + "2013-12-24": "Christmas Eve", + "2013-12-25": "Christmas Day", + "2013-12-26": "Second Day of Christmas", + "2013-12-31": "New Year's Eve", + "2014-01-01": "New Year's Day", + "2014-04-17": "Maundy Thursday", + "2014-04-18": "Good Friday", + "2014-04-20": "Easter Sunday", + "2014-04-21": "Easter Monday", + "2014-04-24": "First Day of Summer", + "2014-05-01": "Labor Day", + "2014-05-29": "Ascension Day", + "2014-06-08": "Whit Sunday", + "2014-06-09": "Whit Monday", + "2014-06-17": "National Day", + "2014-08-04": "Commerce Day", + "2014-12-24": "Christmas Eve", + "2014-12-25": "Christmas Day", + "2014-12-26": "Second Day of Christmas", + "2014-12-31": "New Year's Eve", + "2015-01-01": "New Year's Day", + "2015-04-02": "Maundy Thursday", + "2015-04-03": "Good Friday", + "2015-04-05": "Easter Sunday", + "2015-04-06": "Easter Monday", + "2015-04-23": "First Day of Summer", + "2015-05-01": "Labor Day", + "2015-05-14": "Ascension Day", + "2015-05-24": "Whit Sunday", + "2015-05-25": "Whit Monday", + "2015-06-17": "National Day", + "2015-08-03": "Commerce Day", + "2015-12-24": "Christmas Eve", + "2015-12-25": "Christmas Day", + "2015-12-26": "Second Day of Christmas", + "2015-12-31": "New Year's Eve", + "2016-01-01": "New Year's Day", + "2016-03-24": "Maundy Thursday", + "2016-03-25": "Good Friday", + "2016-03-27": "Easter Sunday", + "2016-03-28": "Easter Monday", + "2016-04-21": "First Day of Summer", + "2016-05-01": "Labor Day", + "2016-05-05": "Ascension Day", + "2016-05-15": "Whit Sunday", + "2016-05-16": "Whit Monday", + "2016-06-17": "National Day", + "2016-08-01": "Commerce Day", + "2016-12-24": "Christmas Eve", + "2016-12-25": "Christmas Day", + "2016-12-26": "Second Day of Christmas", + "2016-12-31": "New Year's Eve", + "2017-01-01": "New Year's Day", + "2017-04-13": "Maundy Thursday", + "2017-04-14": "Good Friday", + "2017-04-16": "Easter Sunday", + "2017-04-17": "Easter Monday", + "2017-04-20": "First Day of Summer", + "2017-05-01": "Labor Day", + "2017-05-25": "Ascension Day", + "2017-06-04": "Whit Sunday", + "2017-06-05": "Whit Monday", + "2017-06-17": "National Day", + "2017-08-07": "Commerce Day", + "2017-12-24": "Christmas Eve", + "2017-12-25": "Christmas Day", + "2017-12-26": "Second Day of Christmas", + "2017-12-31": "New Year's Eve", + "2018-01-01": "New Year's Day", + "2018-03-29": "Maundy Thursday", + "2018-03-30": "Good Friday", + "2018-04-01": "Easter Sunday", + "2018-04-02": "Easter Monday", + "2018-04-19": "First Day of Summer", + "2018-05-01": "Labor Day", + "2018-05-10": "Ascension Day", + "2018-05-20": "Whit Sunday", + "2018-05-21": "Whit Monday", + "2018-06-17": "National Day", + "2018-08-06": "Commerce Day", + "2018-12-24": "Christmas Eve", + "2018-12-25": "Christmas Day", + "2018-12-26": "Second Day of Christmas", + "2018-12-31": "New Year's Eve", + "2019-01-01": "New Year's Day", + "2019-04-18": "Maundy Thursday", + "2019-04-19": "Good Friday", + "2019-04-21": "Easter Sunday", + "2019-04-22": "Easter Monday", + "2019-04-25": "First Day of Summer", + "2019-05-01": "Labor Day", + "2019-05-30": "Ascension Day", + "2019-06-09": "Whit Sunday", + "2019-06-10": "Whit Monday", + "2019-06-17": "National Day", + "2019-08-05": "Commerce Day", + "2019-12-24": "Christmas Eve", + "2019-12-25": "Christmas Day", + "2019-12-26": "Second Day of Christmas", + "2019-12-31": "New Year's Eve", + "2020-01-01": "New Year's Day", + "2020-04-09": "Maundy Thursday", + "2020-04-10": "Good Friday", + "2020-04-12": "Easter Sunday", + "2020-04-13": "Easter Monday", + "2020-04-23": "First Day of Summer", + "2020-05-01": "Labor Day", + "2020-05-21": "Ascension Day", + "2020-05-31": "Whit Sunday", + "2020-06-01": "Whit Monday", + "2020-06-17": "National Day", + "2020-08-03": "Commerce Day", + "2020-12-24": "Christmas Eve", + "2020-12-25": "Christmas Day", + "2020-12-26": "Second Day of Christmas", + "2020-12-31": "New Year's Eve", + "2021-01-01": "New Year's Day", + "2021-04-01": "Maundy Thursday", + "2021-04-02": "Good Friday", + "2021-04-04": "Easter Sunday", + "2021-04-05": "Easter Monday", + "2021-04-22": "First Day of Summer", + "2021-05-01": "Labor Day", + "2021-05-13": "Ascension Day", + "2021-05-23": "Whit Sunday", + "2021-05-24": "Whit Monday", + "2021-06-17": "National Day", + "2021-08-02": "Commerce Day", + "2021-12-24": "Christmas Eve", + "2021-12-25": "Christmas Day", + "2021-12-26": "Second Day of Christmas", + "2021-12-31": "New Year's Eve", + "2022-01-01": "New Year's Day", + "2022-04-14": "Maundy Thursday", + "2022-04-15": "Good Friday", + "2022-04-17": "Easter Sunday", + "2022-04-18": "Easter Monday", + "2022-04-21": "First Day of Summer", + "2022-05-01": "Labor Day", + "2022-05-26": "Ascension Day", + "2022-06-05": "Whit Sunday", + "2022-06-06": "Whit Monday", + "2022-06-17": "National Day", + "2022-08-01": "Commerce Day", + "2022-12-24": "Christmas Eve", + "2022-12-25": "Christmas Day", + "2022-12-26": "Second Day of Christmas", + "2022-12-31": "New Year's Eve", + "2023-01-01": "New Year's Day", + "2023-04-06": "Maundy Thursday", + "2023-04-07": "Good Friday", + "2023-04-09": "Easter Sunday", + "2023-04-10": "Easter Monday", + "2023-04-20": "First Day of Summer", + "2023-05-01": "Labor Day", + "2023-05-18": "Ascension Day", + "2023-05-28": "Whit Sunday", + "2023-05-29": "Whit Monday", + "2023-06-17": "National Day", + "2023-08-07": "Commerce Day", + "2023-12-24": "Christmas Eve", + "2023-12-25": "Christmas Day", + "2023-12-26": "Second Day of Christmas", + "2023-12-31": "New Year's Eve", + "2024-01-01": "New Year's Day", + "2024-03-28": "Maundy Thursday", + "2024-03-29": "Good Friday", + "2024-03-31": "Easter Sunday", + "2024-04-01": "Easter Monday", + "2024-04-25": "First Day of Summer", + "2024-05-01": "Labor Day", + "2024-05-09": "Ascension Day", + "2024-05-19": "Whit Sunday", + "2024-05-20": "Whit Monday", + "2024-06-17": "National Day", + "2024-08-05": "Commerce Day", + "2024-12-24": "Christmas Eve", + "2024-12-25": "Christmas Day", + "2024-12-26": "Second Day of Christmas", + "2024-12-31": "New Year's Eve", + "2025-01-01": "New Year's Day", + "2025-04-17": "Maundy Thursday", + "2025-04-18": "Good Friday", + "2025-04-20": "Easter Sunday", + "2025-04-21": "Easter Monday", + "2025-04-24": "First Day of Summer", + "2025-05-01": "Labor Day", + "2025-05-29": "Ascension Day", + "2025-06-08": "Whit Sunday", + "2025-06-09": "Whit Monday", + "2025-06-17": "National Day", + "2025-08-04": "Commerce Day", + "2025-12-24": "Christmas Eve", + "2025-12-25": "Christmas Day", + "2025-12-26": "Second Day of Christmas", + "2025-12-31": "New Year's Eve", + "2026-01-01": "New Year's Day", + "2026-04-02": "Maundy Thursday", + "2026-04-03": "Good Friday", + "2026-04-05": "Easter Sunday", + "2026-04-06": "Easter Monday", + "2026-04-23": "First Day of Summer", + "2026-05-01": "Labor Day", + "2026-05-14": "Ascension Day", + "2026-05-24": "Whit Sunday", + "2026-05-25": "Whit Monday", + "2026-06-17": "National Day", + "2026-08-03": "Commerce Day", + "2026-12-24": "Christmas Eve", + "2026-12-25": "Christmas Day", + "2026-12-26": "Second Day of Christmas", + "2026-12-31": "New Year's Eve", + "2027-01-01": "New Year's Day", + "2027-03-25": "Maundy Thursday", + "2027-03-26": "Good Friday", + "2027-03-28": "Easter Sunday", + "2027-03-29": "Easter Monday", + "2027-04-22": "First Day of Summer", + "2027-05-01": "Labor Day", + "2027-05-06": "Ascension Day", + "2027-05-16": "Whit Sunday", + "2027-05-17": "Whit Monday", + "2027-06-17": "National Day", + "2027-08-02": "Commerce Day", + "2027-12-24": "Christmas Eve", + "2027-12-25": "Christmas Day", + "2027-12-26": "Second Day of Christmas", + "2027-12-31": "New Year's Eve", + "2028-01-01": "New Year's Day", + "2028-04-13": "Maundy Thursday", + "2028-04-14": "Good Friday", + "2028-04-16": "Easter Sunday", + "2028-04-17": "Easter Monday", + "2028-04-20": "First Day of Summer", + "2028-05-01": "Labor Day", + "2028-05-25": "Ascension Day", + "2028-06-04": "Whit Sunday", + "2028-06-05": "Whit Monday", + "2028-06-17": "National Day", + "2028-08-07": "Commerce Day", + "2028-12-24": "Christmas Eve", + "2028-12-25": "Christmas Day", + "2028-12-26": "Second Day of Christmas", + "2028-12-31": "New Year's Eve", + "2029-01-01": "New Year's Day", + "2029-03-29": "Maundy Thursday", + "2029-03-30": "Good Friday", + "2029-04-01": "Easter Sunday", + "2029-04-02": "Easter Monday", + "2029-04-19": "First Day of Summer", + "2029-05-01": "Labor Day", + "2029-05-10": "Ascension Day", + "2029-05-20": "Whit Sunday", + "2029-05-21": "Whit Monday", + "2029-06-17": "National Day", + "2029-08-06": "Commerce Day", + "2029-12-24": "Christmas Eve", + "2029-12-25": "Christmas Day", + "2029-12-26": "Second Day of Christmas", + "2029-12-31": "New Year's Eve", + "2030-01-01": "New Year's Day", + "2030-04-18": "Maundy Thursday", + "2030-04-19": "Good Friday", + "2030-04-21": "Easter Sunday", + "2030-04-22": "Easter Monday", + "2030-04-25": "First Day of Summer", + "2030-05-01": "Labor Day", + "2030-05-30": "Ascension Day", + "2030-06-09": "Whit Sunday", + "2030-06-10": "Whit Monday", + "2030-06-17": "National Day", + "2030-08-05": "Commerce Day", + "2030-12-24": "Christmas Eve", + "2030-12-25": "Christmas Day", + "2030-12-26": "Second Day of Christmas", + "2030-12-31": "New Year's Eve", + "2031-01-01": "New Year's Day", + "2031-04-10": "Maundy Thursday", + "2031-04-11": "Good Friday", + "2031-04-13": "Easter Sunday", + "2031-04-14": "Easter Monday", + "2031-04-24": "First Day of Summer", + "2031-05-01": "Labor Day", + "2031-05-22": "Ascension Day", + "2031-06-01": "Whit Sunday", + "2031-06-02": "Whit Monday", + "2031-06-17": "National Day", + "2031-08-04": "Commerce Day", + "2031-12-24": "Christmas Eve", + "2031-12-25": "Christmas Day", + "2031-12-26": "Second Day of Christmas", + "2031-12-31": "New Year's Eve", + "2032-01-01": "New Year's Day", + "2032-03-25": "Maundy Thursday", + "2032-03-26": "Good Friday", + "2032-03-28": "Easter Sunday", + "2032-03-29": "Easter Monday", + "2032-04-22": "First Day of Summer", + "2032-05-01": "Labor Day", + "2032-05-06": "Ascension Day", + "2032-05-16": "Whit Sunday", + "2032-05-17": "Whit Monday", + "2032-06-17": "National Day", + "2032-08-02": "Commerce Day", + "2032-12-24": "Christmas Eve", + "2032-12-25": "Christmas Day", + "2032-12-26": "Second Day of Christmas", + "2032-12-31": "New Year's Eve", + "2033-01-01": "New Year's Day", + "2033-04-14": "Maundy Thursday", + "2033-04-15": "Good Friday", + "2033-04-17": "Easter Sunday", + "2033-04-18": "Easter Monday", + "2033-04-21": "First Day of Summer", + "2033-05-01": "Labor Day", + "2033-05-26": "Ascension Day", + "2033-06-05": "Whit Sunday", + "2033-06-06": "Whit Monday", + "2033-06-17": "National Day", + "2033-08-01": "Commerce Day", + "2033-12-24": "Christmas Eve", + "2033-12-25": "Christmas Day", + "2033-12-26": "Second Day of Christmas", + "2033-12-31": "New Year's Eve", + "2034-01-01": "New Year's Day", + "2034-04-06": "Maundy Thursday", + "2034-04-07": "Good Friday", + "2034-04-09": "Easter Sunday", + "2034-04-10": "Easter Monday", + "2034-04-20": "First Day of Summer", + "2034-05-01": "Labor Day", + "2034-05-18": "Ascension Day", + "2034-05-28": "Whit Sunday", + "2034-05-29": "Whit Monday", + "2034-06-17": "National Day", + "2034-08-07": "Commerce Day", + "2034-12-24": "Christmas Eve", + "2034-12-25": "Christmas Day", + "2034-12-26": "Second Day of Christmas", + "2034-12-31": "New Year's Eve", + "2035-01-01": "New Year's Day", + "2035-03-22": "Maundy Thursday", + "2035-03-23": "Good Friday", + "2035-03-25": "Easter Sunday", + "2035-03-26": "Easter Monday", + "2035-04-19": "First Day of Summer", + "2035-05-01": "Labor Day", + "2035-05-03": "Ascension Day", + "2035-05-13": "Whit Sunday", + "2035-05-14": "Whit Monday", + "2035-06-17": "National Day", + "2035-08-06": "Commerce Day", + "2035-12-24": "Christmas Eve", + "2035-12-25": "Christmas Day", + "2035-12-26": "Second Day of Christmas", + "2035-12-31": "New Year's Eve", + "2036-01-01": "New Year's Day", + "2036-04-10": "Maundy Thursday", + "2036-04-11": "Good Friday", + "2036-04-13": "Easter Sunday", + "2036-04-14": "Easter Monday", + "2036-04-24": "First Day of Summer", + "2036-05-01": "Labor Day", + "2036-05-22": "Ascension Day", + "2036-06-01": "Whit Sunday", + "2036-06-02": "Whit Monday", + "2036-06-17": "National Day", + "2036-08-04": "Commerce Day", + "2036-12-24": "Christmas Eve", + "2036-12-25": "Christmas Day", + "2036-12-26": "Second Day of Christmas", + "2036-12-31": "New Year's Eve", + "2037-01-01": "New Year's Day", + "2037-04-02": "Maundy Thursday", + "2037-04-03": "Good Friday", + "2037-04-05": "Easter Sunday", + "2037-04-06": "Easter Monday", + "2037-04-23": "First Day of Summer", + "2037-05-01": "Labor Day", + "2037-05-14": "Ascension Day", + "2037-05-24": "Whit Sunday", + "2037-05-25": "Whit Monday", + "2037-06-17": "National Day", + "2037-08-03": "Commerce Day", + "2037-12-24": "Christmas Eve", + "2037-12-25": "Christmas Day", + "2037-12-26": "Second Day of Christmas", + "2037-12-31": "New Year's Eve", + "2038-01-01": "New Year's Day", + "2038-04-22": "First Day of Summer; Maundy Thursday", + "2038-04-23": "Good Friday", + "2038-04-25": "Easter Sunday", + "2038-04-26": "Easter Monday", + "2038-05-01": "Labor Day", + "2038-06-03": "Ascension Day", + "2038-06-13": "Whit Sunday", + "2038-06-14": "Whit Monday", + "2038-06-17": "National Day", + "2038-08-02": "Commerce Day", + "2038-12-24": "Christmas Eve", + "2038-12-25": "Christmas Day", + "2038-12-26": "Second Day of Christmas", + "2038-12-31": "New Year's Eve", + "2039-01-01": "New Year's Day", + "2039-04-07": "Maundy Thursday", + "2039-04-08": "Good Friday", + "2039-04-10": "Easter Sunday", + "2039-04-11": "Easter Monday", + "2039-04-21": "First Day of Summer", + "2039-05-01": "Labor Day", + "2039-05-19": "Ascension Day", + "2039-05-29": "Whit Sunday", + "2039-05-30": "Whit Monday", + "2039-06-17": "National Day", + "2039-08-01": "Commerce Day", + "2039-12-24": "Christmas Eve", + "2039-12-25": "Christmas Day", + "2039-12-26": "Second Day of Christmas", + "2039-12-31": "New Year's Eve", + "2040-01-01": "New Year's Day", + "2040-03-29": "Maundy Thursday", + "2040-03-30": "Good Friday", + "2040-04-01": "Easter Sunday", + "2040-04-02": "Easter Monday", + "2040-04-19": "First Day of Summer", + "2040-05-01": "Labor Day", + "2040-05-10": "Ascension Day", + "2040-05-20": "Whit Sunday", + "2040-05-21": "Whit Monday", + "2040-06-17": "National Day", + "2040-08-06": "Commerce Day", + "2040-12-24": "Christmas Eve", + "2040-12-25": "Christmas Day", + "2040-12-26": "Second Day of Christmas", + "2040-12-31": "New Year's Eve", + "2041-01-01": "New Year's Day", + "2041-04-18": "Maundy Thursday", + "2041-04-19": "Good Friday", + "2041-04-21": "Easter Sunday", + "2041-04-22": "Easter Monday", + "2041-04-25": "First Day of Summer", + "2041-05-01": "Labor Day", + "2041-05-30": "Ascension Day", + "2041-06-09": "Whit Sunday", + "2041-06-10": "Whit Monday", + "2041-06-17": "National Day", + "2041-08-05": "Commerce Day", + "2041-12-24": "Christmas Eve", + "2041-12-25": "Christmas Day", + "2041-12-26": "Second Day of Christmas", + "2041-12-31": "New Year's Eve", + "2042-01-01": "New Year's Day", + "2042-04-03": "Maundy Thursday", + "2042-04-04": "Good Friday", + "2042-04-06": "Easter Sunday", + "2042-04-07": "Easter Monday", + "2042-04-24": "First Day of Summer", + "2042-05-01": "Labor Day", + "2042-05-15": "Ascension Day", + "2042-05-25": "Whit Sunday", + "2042-05-26": "Whit Monday", + "2042-06-17": "National Day", + "2042-08-04": "Commerce Day", + "2042-12-24": "Christmas Eve", + "2042-12-25": "Christmas Day", + "2042-12-26": "Second Day of Christmas", + "2042-12-31": "New Year's Eve", + "2043-01-01": "New Year's Day", + "2043-03-26": "Maundy Thursday", + "2043-03-27": "Good Friday", + "2043-03-29": "Easter Sunday", + "2043-03-30": "Easter Monday", + "2043-04-23": "First Day of Summer", + "2043-05-01": "Labor Day", + "2043-05-07": "Ascension Day", + "2043-05-17": "Whit Sunday", + "2043-05-18": "Whit Monday", + "2043-06-17": "National Day", + "2043-08-03": "Commerce Day", + "2043-12-24": "Christmas Eve", + "2043-12-25": "Christmas Day", + "2043-12-26": "Second Day of Christmas", + "2043-12-31": "New Year's Eve", + "2044-01-01": "New Year's Day", + "2044-04-14": "Maundy Thursday", + "2044-04-15": "Good Friday", + "2044-04-17": "Easter Sunday", + "2044-04-18": "Easter Monday", + "2044-04-21": "First Day of Summer", + "2044-05-01": "Labor Day", + "2044-05-26": "Ascension Day", + "2044-06-05": "Whit Sunday", + "2044-06-06": "Whit Monday", + "2044-06-17": "National Day", + "2044-08-01": "Commerce Day", + "2044-12-24": "Christmas Eve", + "2044-12-25": "Christmas Day", + "2044-12-26": "Second Day of Christmas", + "2044-12-31": "New Year's Eve", + "2045-01-01": "New Year's Day", + "2045-04-06": "Maundy Thursday", + "2045-04-07": "Good Friday", + "2045-04-09": "Easter Sunday", + "2045-04-10": "Easter Monday", + "2045-04-20": "First Day of Summer", + "2045-05-01": "Labor Day", + "2045-05-18": "Ascension Day", + "2045-05-28": "Whit Sunday", + "2045-05-29": "Whit Monday", + "2045-06-17": "National Day", + "2045-08-07": "Commerce Day", + "2045-12-24": "Christmas Eve", + "2045-12-25": "Christmas Day", + "2045-12-26": "Second Day of Christmas", + "2045-12-31": "New Year's Eve", + "2046-01-01": "New Year's Day", + "2046-03-22": "Maundy Thursday", + "2046-03-23": "Good Friday", + "2046-03-25": "Easter Sunday", + "2046-03-26": "Easter Monday", + "2046-04-19": "First Day of Summer", + "2046-05-01": "Labor Day", + "2046-05-03": "Ascension Day", + "2046-05-13": "Whit Sunday", + "2046-05-14": "Whit Monday", + "2046-06-17": "National Day", + "2046-08-06": "Commerce Day", + "2046-12-24": "Christmas Eve", + "2046-12-25": "Christmas Day", + "2046-12-26": "Second Day of Christmas", + "2046-12-31": "New Year's Eve", + "2047-01-01": "New Year's Day", + "2047-04-11": "Maundy Thursday", + "2047-04-12": "Good Friday", + "2047-04-14": "Easter Sunday", + "2047-04-15": "Easter Monday", + "2047-04-25": "First Day of Summer", + "2047-05-01": "Labor Day", + "2047-05-23": "Ascension Day", + "2047-06-02": "Whit Sunday", + "2047-06-03": "Whit Monday", + "2047-06-17": "National Day", + "2047-08-05": "Commerce Day", + "2047-12-24": "Christmas Eve", + "2047-12-25": "Christmas Day", + "2047-12-26": "Second Day of Christmas", + "2047-12-31": "New Year's Eve", + "2048-01-01": "New Year's Day", + "2048-04-02": "Maundy Thursday", + "2048-04-03": "Good Friday", + "2048-04-05": "Easter Sunday", + "2048-04-06": "Easter Monday", + "2048-04-23": "First Day of Summer", + "2048-05-01": "Labor Day", + "2048-05-14": "Ascension Day", + "2048-05-24": "Whit Sunday", + "2048-05-25": "Whit Monday", + "2048-06-17": "National Day", + "2048-08-03": "Commerce Day", + "2048-12-24": "Christmas Eve", + "2048-12-25": "Christmas Day", + "2048-12-26": "Second Day of Christmas", + "2048-12-31": "New Year's Eve", + "2049-01-01": "New Year's Day", + "2049-04-15": "Maundy Thursday", + "2049-04-16": "Good Friday", + "2049-04-18": "Easter Sunday", + "2049-04-19": "Easter Monday", + "2049-04-22": "First Day of Summer", + "2049-05-01": "Labor Day", + "2049-05-27": "Ascension Day", + "2049-06-06": "Whit Sunday", + "2049-06-07": "Whit Monday", + "2049-06-17": "National Day", + "2049-08-02": "Commerce Day", + "2049-12-24": "Christmas Eve", + "2049-12-25": "Christmas Day", + "2049-12-26": "Second Day of Christmas", + "2049-12-31": "New Year's Eve", + "2050-01-01": "New Year's Day", + "2050-04-07": "Maundy Thursday", + "2050-04-08": "Good Friday", + "2050-04-10": "Easter Sunday", + "2050-04-11": "Easter Monday", + "2050-04-21": "First Day of Summer", + "2050-05-01": "Labor Day", + "2050-05-19": "Ascension Day", + "2050-05-29": "Whit Sunday", + "2050-05-30": "Whit Monday", + "2050-06-17": "National Day", + "2050-08-01": "Commerce Day", + "2050-12-24": "Christmas Eve", + "2050-12-25": "Christmas Day", + "2050-12-26": "Second Day of Christmas", + "2050-12-31": "New Year's Eve" +} diff --git a/snapshots/countries/IT.json b/snapshots/countries/IT.json new file mode 100644 index 000000000..368366d1e --- /dev/null +++ b/snapshots/countries/IT.json @@ -0,0 +1,9663 @@ +{ + "1950-01-01": "Capodanno", + "1950-01-06": "Epifania del Signore", + "1950-01-13": "Sant'Ilario di Poitiers", + "1950-01-19": "San Bassiano", + "1950-01-20": "San Sebastiano", + "1950-01-22": "San Gaudenzio", + "1950-01-29": "Sant'Ercolano e San Lorenzo", + "1950-01-31": "San Geminiano", + "1950-02-04": "Madonna del Fuoco", + "1950-02-05": "Sant'Agata", + "1950-02-12": "Madonna del Pilerio", + "1950-02-13": "Sant'Archelao", + "1950-02-14": "San Modestino; San Valentino", + "1950-02-15": "Santi Faustino e Giovita", + "1950-02-25": "San Gerlando", + "1950-03-01": "San Leoluca", + "1950-03-16": "Santi Ilario e Taziano", + "1950-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1950-03-19": "San Giuseppe", + "1950-03-22": "Madonna dei Sette Veli", + "1950-04-09": "Pasqua di Resurrezione", + "1950-04-10": "Luned\u00ec dell'Angelo", + "1950-04-23": "San Giorgio", + "1950-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1950-04-27": "San Liberale", + "1950-05-01": "Festa dei Lavoratori", + "1950-05-02": "San Secondo di Asti", + "1950-05-03": "San Nicola Pellegrino", + "1950-05-04": "San Ciriaco", + "1950-05-08": "San Vittore il Moro", + "1950-05-10": "San Cataldo", + "1950-05-11": "San Giustino di Chieti", + "1950-05-18": "San Ponziano", + "1950-05-19": "San Pietro Celestino", + "1950-05-21": "San Zeno", + "1950-05-22": "Santa Giulia", + "1950-05-29": "Luned\u00ec di Pentecoste", + "1950-05-30": "San Gerardo di Potenza", + "1950-06-01": "San Crescentino", + "1950-06-02": "Festa della Repubblica", + "1950-06-03": "Madonna della Lettera", + "1950-06-10": "San Massimo D'Aveia", + "1950-06-13": "Sant'Antonio di Padova", + "1950-06-17": "San Ranieri", + "1950-06-19": "San Gervasio e San Protasio", + "1950-06-20": "San Silverio", + "1950-06-24": "San Giovanni Battista", + "1950-06-26": "San Vigilio", + "1950-06-29": "Santi Pietro e Paolo", + "1950-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1950-07-04": "Sant'Antonino di Piacenza", + "1950-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1950-07-15": "San Giovanni", + "1950-07-16": "San Vitaliano", + "1950-07-23": "Sant'Apollinare", + "1950-07-25": "San Jacopo", + "1950-08-01": "Sant'Eusebio di Vercelli", + "1950-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1950-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1950-08-10": "San Lorenzo", + "1950-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1950-08-16": "Maria Santissima Assunta", + "1950-08-24": "San Bartolomeo apostolo", + "1950-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1950-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1950-09-03": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1950-09-04": "Santa Rosa da Viterbo", + "1950-09-07": "San Grato", + "1950-09-08": "Madonna delle Grazie", + "1950-09-17": "San Riccardo di Andria", + "1950-09-19": "San Gennaro", + "1950-09-21": "San Matteo Evangelista", + "1950-09-24": "San Terenzio di Pesaro", + "1950-09-29": "San Michele Arcangelo", + "1950-10-04": "San Francesco d'Assisi; San Petronio", + "1950-10-09": "San Dionigi", + "1950-10-10": "San Cetteo", + "1950-10-14": "San Gaudenzio", + "1950-10-30": "San Saturnino di Cagliari", + "1950-11-01": "Tutti i Santi", + "1950-11-03": "San Giusto", + "1950-11-10": "San Baudolino", + "1950-11-11": "San Martino", + "1950-11-13": "Sant'Omobono", + "1950-11-24": "San Prospero Vescovo", + "1950-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1950-12-01": "Sant'Ansano", + "1950-12-04": "Santa Barbara", + "1950-12-06": "San Nicola", + "1950-12-07": "Sant'Ambrogio", + "1950-12-08": "Immacolata Concezione", + "1950-12-09": "San Siro", + "1950-12-13": "Santa Lucia", + "1950-12-19": "San Berardo da Pagliara", + "1950-12-25": "Natale", + "1950-12-26": "Santo Stefano", + "1950-12-30": "San Ruggero", + "1951-01-01": "Capodanno", + "1951-01-06": "Epifania del Signore", + "1951-01-13": "Sant'Ilario di Poitiers", + "1951-01-19": "San Bassiano", + "1951-01-20": "San Sebastiano", + "1951-01-22": "San Gaudenzio", + "1951-01-29": "Sant'Ercolano e San Lorenzo", + "1951-01-31": "San Geminiano", + "1951-02-04": "Madonna del Fuoco", + "1951-02-05": "Sant'Agata", + "1951-02-12": "Madonna del Pilerio", + "1951-02-13": "Sant'Archelao", + "1951-02-14": "San Modestino; San Valentino", + "1951-02-15": "Santi Faustino e Giovita", + "1951-02-25": "San Gerlando", + "1951-03-01": "San Leoluca", + "1951-03-16": "Santi Ilario e Taziano", + "1951-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1951-03-19": "San Giuseppe", + "1951-03-22": "Madonna dei Sette Veli", + "1951-03-25": "Pasqua di Resurrezione", + "1951-03-26": "Luned\u00ec dell'Angelo", + "1951-04-23": "San Giorgio", + "1951-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1951-04-27": "San Liberale", + "1951-05-01": "Festa dei Lavoratori; San Secondo di Asti", + "1951-05-03": "San Nicola Pellegrino", + "1951-05-04": "San Ciriaco", + "1951-05-08": "San Vittore il Moro", + "1951-05-10": "San Cataldo", + "1951-05-11": "San Giustino di Chieti", + "1951-05-14": "Luned\u00ec di Pentecoste", + "1951-05-17": "San Ponziano", + "1951-05-19": "San Pietro Celestino", + "1951-05-21": "San Zeno", + "1951-05-22": "Santa Giulia", + "1951-05-30": "San Gerardo di Potenza", + "1951-06-01": "San Crescentino", + "1951-06-02": "Festa della Repubblica", + "1951-06-03": "Madonna della Lettera", + "1951-06-10": "San Massimo D'Aveia", + "1951-06-13": "Sant'Antonio di Padova", + "1951-06-17": "San Ranieri", + "1951-06-19": "San Gervasio e San Protasio", + "1951-06-20": "San Silverio", + "1951-06-24": "San Giovanni Battista", + "1951-06-26": "San Vigilio", + "1951-06-29": "Santi Pietro e Paolo", + "1951-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1951-07-04": "Sant'Antonino di Piacenza", + "1951-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1951-07-15": "San Giovanni", + "1951-07-16": "San Vitaliano", + "1951-07-23": "Sant'Apollinare", + "1951-07-25": "San Jacopo", + "1951-08-01": "Sant'Eusebio di Vercelli", + "1951-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1951-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1951-08-10": "San Lorenzo", + "1951-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1951-08-16": "Maria Santissima Assunta", + "1951-08-24": "San Bartolomeo apostolo", + "1951-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1951-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1951-09-02": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1951-09-04": "Santa Rosa da Viterbo", + "1951-09-07": "San Grato", + "1951-09-08": "Madonna delle Grazie", + "1951-09-16": "San Riccardo di Andria", + "1951-09-19": "San Gennaro", + "1951-09-21": "San Matteo Evangelista", + "1951-09-24": "San Terenzio di Pesaro", + "1951-09-29": "San Michele Arcangelo", + "1951-10-04": "San Francesco d'Assisi; San Petronio", + "1951-10-09": "San Dionigi", + "1951-10-10": "San Cetteo", + "1951-10-14": "San Gaudenzio", + "1951-10-30": "San Saturnino di Cagliari", + "1951-11-01": "Tutti i Santi", + "1951-11-03": "San Giusto", + "1951-11-10": "San Baudolino", + "1951-11-11": "San Martino", + "1951-11-13": "Sant'Omobono", + "1951-11-24": "San Prospero Vescovo", + "1951-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1951-12-01": "Sant'Ansano", + "1951-12-04": "Santa Barbara", + "1951-12-06": "San Nicola", + "1951-12-07": "Sant'Ambrogio", + "1951-12-08": "Immacolata Concezione", + "1951-12-09": "San Siro", + "1951-12-13": "Santa Lucia", + "1951-12-19": "San Berardo da Pagliara", + "1951-12-25": "Natale", + "1951-12-26": "Santo Stefano", + "1951-12-30": "San Ruggero", + "1952-01-01": "Capodanno", + "1952-01-06": "Epifania del Signore", + "1952-01-13": "Sant'Ilario di Poitiers", + "1952-01-19": "San Bassiano", + "1952-01-20": "San Sebastiano", + "1952-01-22": "San Gaudenzio", + "1952-01-29": "Sant'Ercolano e San Lorenzo", + "1952-01-31": "San Geminiano", + "1952-02-04": "Madonna del Fuoco", + "1952-02-05": "Sant'Agata", + "1952-02-12": "Madonna del Pilerio", + "1952-02-13": "Sant'Archelao", + "1952-02-14": "San Modestino; San Valentino", + "1952-02-15": "Santi Faustino e Giovita", + "1952-02-25": "San Gerlando", + "1952-03-01": "San Leoluca", + "1952-03-16": "Santi Ilario e Taziano", + "1952-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1952-03-19": "San Giuseppe", + "1952-03-22": "Madonna dei Sette Veli", + "1952-04-13": "Pasqua di Resurrezione", + "1952-04-14": "Luned\u00ec dell'Angelo", + "1952-04-23": "San Giorgio", + "1952-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1952-04-27": "San Liberale", + "1952-05-01": "Festa dei Lavoratori", + "1952-05-03": "San Nicola Pellegrino", + "1952-05-04": "San Ciriaco", + "1952-05-06": "San Secondo di Asti", + "1952-05-08": "San Vittore il Moro", + "1952-05-10": "San Cataldo", + "1952-05-11": "San Giustino di Chieti", + "1952-05-15": "San Ponziano", + "1952-05-19": "San Pietro Celestino", + "1952-05-21": "San Zeno", + "1952-05-22": "Santa Giulia", + "1952-05-30": "San Gerardo di Potenza", + "1952-06-01": "San Crescentino", + "1952-06-02": "Festa della Repubblica; Luned\u00ec di Pentecoste", + "1952-06-03": "Madonna della Lettera", + "1952-06-10": "San Massimo D'Aveia", + "1952-06-13": "Sant'Antonio di Padova", + "1952-06-17": "San Ranieri", + "1952-06-19": "San Gervasio e San Protasio", + "1952-06-20": "San Silverio", + "1952-06-24": "San Giovanni Battista", + "1952-06-26": "San Vigilio", + "1952-06-29": "Santi Pietro e Paolo", + "1952-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1952-07-04": "Sant'Antonino di Piacenza", + "1952-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1952-07-15": "San Giovanni", + "1952-07-16": "San Vitaliano", + "1952-07-23": "Sant'Apollinare", + "1952-07-25": "San Jacopo", + "1952-08-01": "Sant'Eusebio di Vercelli", + "1952-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1952-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1952-08-10": "San Lorenzo", + "1952-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1952-08-16": "Maria Santissima Assunta", + "1952-08-24": "San Bartolomeo apostolo", + "1952-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1952-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1952-09-04": "Santa Rosa da Viterbo", + "1952-09-07": "San Grato; San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1952-09-08": "Madonna delle Grazie", + "1952-09-19": "San Gennaro", + "1952-09-21": "San Matteo Evangelista; San Riccardo di Andria", + "1952-09-24": "San Terenzio di Pesaro", + "1952-09-29": "San Michele Arcangelo", + "1952-10-04": "San Francesco d'Assisi; San Petronio", + "1952-10-09": "San Dionigi", + "1952-10-10": "San Cetteo", + "1952-10-14": "San Gaudenzio", + "1952-10-30": "San Saturnino di Cagliari", + "1952-11-01": "Tutti i Santi", + "1952-11-03": "San Giusto", + "1952-11-10": "San Baudolino", + "1952-11-11": "San Martino", + "1952-11-13": "Sant'Omobono", + "1952-11-24": "San Prospero Vescovo", + "1952-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1952-12-01": "Sant'Ansano", + "1952-12-04": "Santa Barbara", + "1952-12-06": "San Nicola", + "1952-12-07": "Sant'Ambrogio", + "1952-12-08": "Immacolata Concezione", + "1952-12-09": "San Siro", + "1952-12-13": "Santa Lucia", + "1952-12-19": "San Berardo da Pagliara", + "1952-12-25": "Natale", + "1952-12-26": "Santo Stefano", + "1952-12-30": "San Ruggero", + "1953-01-01": "Capodanno", + "1953-01-06": "Epifania del Signore", + "1953-01-13": "Sant'Ilario di Poitiers", + "1953-01-19": "San Bassiano", + "1953-01-20": "San Sebastiano", + "1953-01-22": "San Gaudenzio", + "1953-01-29": "Sant'Ercolano e San Lorenzo", + "1953-01-31": "San Geminiano", + "1953-02-04": "Madonna del Fuoco", + "1953-02-05": "Sant'Agata", + "1953-02-12": "Madonna del Pilerio", + "1953-02-13": "Sant'Archelao", + "1953-02-14": "San Modestino; San Valentino", + "1953-02-15": "Santi Faustino e Giovita", + "1953-02-25": "San Gerlando", + "1953-03-01": "San Leoluca", + "1953-03-16": "Santi Ilario e Taziano", + "1953-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1953-03-19": "San Giuseppe", + "1953-03-22": "Madonna dei Sette Veli", + "1953-04-05": "Pasqua di Resurrezione", + "1953-04-06": "Luned\u00ec dell'Angelo", + "1953-04-23": "San Giorgio", + "1953-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1953-04-27": "San Liberale", + "1953-05-01": "Festa dei Lavoratori", + "1953-05-03": "San Nicola Pellegrino", + "1953-05-04": "San Ciriaco", + "1953-05-05": "San Secondo di Asti", + "1953-05-08": "San Vittore il Moro", + "1953-05-10": "San Cataldo", + "1953-05-11": "San Giustino di Chieti", + "1953-05-14": "San Ponziano", + "1953-05-19": "San Pietro Celestino", + "1953-05-21": "San Zeno", + "1953-05-22": "Santa Giulia", + "1953-05-25": "Luned\u00ec di Pentecoste", + "1953-05-30": "San Gerardo di Potenza", + "1953-06-01": "San Crescentino", + "1953-06-02": "Festa della Repubblica", + "1953-06-03": "Madonna della Lettera", + "1953-06-10": "San Massimo D'Aveia", + "1953-06-13": "Sant'Antonio di Padova", + "1953-06-17": "San Ranieri", + "1953-06-19": "San Gervasio e San Protasio", + "1953-06-20": "San Silverio", + "1953-06-24": "San Giovanni Battista", + "1953-06-26": "San Vigilio", + "1953-06-29": "Santi Pietro e Paolo", + "1953-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1953-07-04": "Sant'Antonino di Piacenza", + "1953-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1953-07-15": "San Giovanni", + "1953-07-16": "San Vitaliano", + "1953-07-23": "Sant'Apollinare", + "1953-07-25": "San Jacopo", + "1953-08-01": "Sant'Eusebio di Vercelli", + "1953-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1953-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1953-08-10": "San Lorenzo", + "1953-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1953-08-16": "Maria Santissima Assunta", + "1953-08-24": "San Bartolomeo apostolo", + "1953-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1953-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1953-09-04": "Santa Rosa da Viterbo", + "1953-09-06": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1953-09-07": "San Grato", + "1953-09-08": "Madonna delle Grazie", + "1953-09-19": "San Gennaro", + "1953-09-20": "San Riccardo di Andria", + "1953-09-21": "San Matteo Evangelista", + "1953-09-24": "San Terenzio di Pesaro", + "1953-09-29": "San Michele Arcangelo", + "1953-10-04": "San Francesco d'Assisi; San Petronio", + "1953-10-09": "San Dionigi", + "1953-10-10": "San Cetteo", + "1953-10-14": "San Gaudenzio", + "1953-10-30": "San Saturnino di Cagliari", + "1953-11-01": "Tutti i Santi", + "1953-11-03": "San Giusto", + "1953-11-10": "San Baudolino", + "1953-11-11": "San Martino", + "1953-11-13": "Sant'Omobono", + "1953-11-24": "San Prospero Vescovo", + "1953-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1953-12-01": "Sant'Ansano", + "1953-12-04": "Santa Barbara", + "1953-12-06": "San Nicola", + "1953-12-07": "Sant'Ambrogio", + "1953-12-08": "Immacolata Concezione", + "1953-12-09": "San Siro", + "1953-12-13": "Santa Lucia", + "1953-12-19": "San Berardo da Pagliara", + "1953-12-25": "Natale", + "1953-12-26": "Santo Stefano", + "1953-12-30": "San Ruggero", + "1954-01-01": "Capodanno", + "1954-01-06": "Epifania del Signore", + "1954-01-13": "Sant'Ilario di Poitiers", + "1954-01-19": "San Bassiano", + "1954-01-20": "San Sebastiano", + "1954-01-22": "San Gaudenzio", + "1954-01-29": "Sant'Ercolano e San Lorenzo", + "1954-01-31": "San Geminiano", + "1954-02-04": "Madonna del Fuoco", + "1954-02-05": "Sant'Agata", + "1954-02-12": "Madonna del Pilerio", + "1954-02-13": "Sant'Archelao", + "1954-02-14": "San Modestino; San Valentino", + "1954-02-15": "Santi Faustino e Giovita", + "1954-02-25": "San Gerlando", + "1954-03-01": "San Leoluca", + "1954-03-16": "Santi Ilario e Taziano", + "1954-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1954-03-19": "San Giuseppe", + "1954-03-22": "Madonna dei Sette Veli", + "1954-04-18": "Pasqua di Resurrezione", + "1954-04-19": "Luned\u00ec dell'Angelo", + "1954-04-23": "San Giorgio", + "1954-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1954-04-27": "San Liberale", + "1954-05-01": "Festa dei Lavoratori", + "1954-05-03": "San Nicola Pellegrino", + "1954-05-04": "San Ciriaco; San Secondo di Asti", + "1954-05-08": "San Vittore il Moro", + "1954-05-10": "San Cataldo", + "1954-05-11": "San Giustino di Chieti", + "1954-05-13": "San Ponziano", + "1954-05-19": "San Pietro Celestino", + "1954-05-21": "San Zeno", + "1954-05-22": "Santa Giulia", + "1954-05-30": "San Gerardo di Potenza", + "1954-06-01": "San Crescentino", + "1954-06-02": "Festa della Repubblica", + "1954-06-03": "Madonna della Lettera", + "1954-06-07": "Luned\u00ec di Pentecoste", + "1954-06-10": "San Massimo D'Aveia", + "1954-06-13": "Sant'Antonio di Padova", + "1954-06-17": "San Ranieri", + "1954-06-19": "San Gervasio e San Protasio", + "1954-06-20": "San Silverio", + "1954-06-24": "San Giovanni Battista", + "1954-06-26": "San Vigilio", + "1954-06-29": "Santi Pietro e Paolo", + "1954-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1954-07-04": "Sant'Antonino di Piacenza", + "1954-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1954-07-15": "San Giovanni", + "1954-07-16": "San Vitaliano", + "1954-07-23": "Sant'Apollinare", + "1954-07-25": "San Jacopo", + "1954-08-01": "Sant'Eusebio di Vercelli", + "1954-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1954-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1954-08-10": "San Lorenzo", + "1954-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1954-08-16": "Maria Santissima Assunta", + "1954-08-24": "San Bartolomeo apostolo", + "1954-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1954-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1954-09-04": "Santa Rosa da Viterbo", + "1954-09-05": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1954-09-07": "San Grato", + "1954-09-08": "Madonna delle Grazie", + "1954-09-19": "San Gennaro; San Riccardo di Andria", + "1954-09-21": "San Matteo Evangelista", + "1954-09-24": "San Terenzio di Pesaro", + "1954-09-29": "San Michele Arcangelo", + "1954-10-04": "San Francesco d'Assisi; San Petronio", + "1954-10-09": "San Dionigi", + "1954-10-10": "San Cetteo", + "1954-10-14": "San Gaudenzio", + "1954-10-30": "San Saturnino di Cagliari", + "1954-11-01": "Tutti i Santi", + "1954-11-03": "San Giusto", + "1954-11-10": "San Baudolino", + "1954-11-11": "San Martino", + "1954-11-13": "Sant'Omobono", + "1954-11-24": "San Prospero Vescovo", + "1954-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1954-12-01": "Sant'Ansano", + "1954-12-04": "Santa Barbara", + "1954-12-06": "San Nicola", + "1954-12-07": "Sant'Ambrogio", + "1954-12-08": "Immacolata Concezione", + "1954-12-09": "San Siro", + "1954-12-13": "Santa Lucia", + "1954-12-19": "San Berardo da Pagliara", + "1954-12-25": "Natale", + "1954-12-26": "Santo Stefano", + "1954-12-30": "San Ruggero", + "1955-01-01": "Capodanno", + "1955-01-06": "Epifania del Signore", + "1955-01-13": "Sant'Ilario di Poitiers", + "1955-01-19": "San Bassiano", + "1955-01-20": "San Sebastiano", + "1955-01-22": "San Gaudenzio", + "1955-01-29": "Sant'Ercolano e San Lorenzo", + "1955-01-31": "San Geminiano", + "1955-02-04": "Madonna del Fuoco", + "1955-02-05": "Sant'Agata", + "1955-02-12": "Madonna del Pilerio", + "1955-02-13": "Sant'Archelao", + "1955-02-14": "San Modestino; San Valentino", + "1955-02-15": "Santi Faustino e Giovita", + "1955-02-25": "San Gerlando", + "1955-03-01": "San Leoluca", + "1955-03-16": "Santi Ilario e Taziano", + "1955-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1955-03-19": "San Giuseppe", + "1955-03-22": "Madonna dei Sette Veli", + "1955-04-10": "Pasqua di Resurrezione", + "1955-04-11": "Luned\u00ec dell'Angelo", + "1955-04-23": "San Giorgio", + "1955-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1955-04-27": "San Liberale", + "1955-05-01": "Festa dei Lavoratori", + "1955-05-03": "San Nicola Pellegrino; San Secondo di Asti", + "1955-05-04": "San Ciriaco", + "1955-05-08": "San Vittore il Moro", + "1955-05-10": "San Cataldo", + "1955-05-11": "San Giustino di Chieti", + "1955-05-12": "San Ponziano", + "1955-05-19": "San Pietro Celestino", + "1955-05-21": "San Zeno", + "1955-05-22": "Santa Giulia", + "1955-05-30": "Luned\u00ec di Pentecoste; San Gerardo di Potenza", + "1955-06-01": "San Crescentino", + "1955-06-02": "Festa della Repubblica", + "1955-06-03": "Madonna della Lettera", + "1955-06-10": "San Massimo D'Aveia", + "1955-06-13": "Sant'Antonio di Padova", + "1955-06-17": "San Ranieri", + "1955-06-19": "San Gervasio e San Protasio", + "1955-06-20": "San Silverio", + "1955-06-24": "San Giovanni Battista", + "1955-06-26": "San Vigilio", + "1955-06-29": "Santi Pietro e Paolo", + "1955-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1955-07-04": "Sant'Antonino di Piacenza", + "1955-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1955-07-15": "San Giovanni", + "1955-07-16": "San Vitaliano", + "1955-07-23": "Sant'Apollinare", + "1955-07-25": "San Jacopo", + "1955-08-01": "Sant'Eusebio di Vercelli", + "1955-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1955-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1955-08-10": "San Lorenzo", + "1955-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1955-08-16": "Maria Santissima Assunta", + "1955-08-24": "San Bartolomeo apostolo", + "1955-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1955-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1955-09-04": "San Teodoro d'Amasea e San Lorenzo da Brindisi; Santa Rosa da Viterbo", + "1955-09-07": "San Grato", + "1955-09-08": "Madonna delle Grazie", + "1955-09-18": "San Riccardo di Andria", + "1955-09-19": "San Gennaro", + "1955-09-21": "San Matteo Evangelista", + "1955-09-24": "San Terenzio di Pesaro", + "1955-09-29": "San Michele Arcangelo", + "1955-10-04": "San Francesco d'Assisi; San Petronio", + "1955-10-09": "San Dionigi", + "1955-10-10": "San Cetteo", + "1955-10-14": "San Gaudenzio", + "1955-10-30": "San Saturnino di Cagliari", + "1955-11-01": "Tutti i Santi", + "1955-11-03": "San Giusto", + "1955-11-10": "San Baudolino", + "1955-11-11": "San Martino", + "1955-11-13": "Sant'Omobono", + "1955-11-24": "San Prospero Vescovo", + "1955-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1955-12-01": "Sant'Ansano", + "1955-12-04": "Santa Barbara", + "1955-12-06": "San Nicola", + "1955-12-07": "Sant'Ambrogio", + "1955-12-08": "Immacolata Concezione", + "1955-12-09": "San Siro", + "1955-12-13": "Santa Lucia", + "1955-12-19": "San Berardo da Pagliara", + "1955-12-25": "Natale", + "1955-12-26": "Santo Stefano", + "1955-12-30": "San Ruggero", + "1956-01-01": "Capodanno", + "1956-01-06": "Epifania del Signore", + "1956-01-13": "Sant'Ilario di Poitiers", + "1956-01-19": "San Bassiano", + "1956-01-20": "San Sebastiano", + "1956-01-22": "San Gaudenzio", + "1956-01-29": "Sant'Ercolano e San Lorenzo", + "1956-01-31": "San Geminiano", + "1956-02-04": "Madonna del Fuoco", + "1956-02-05": "Sant'Agata", + "1956-02-12": "Madonna del Pilerio", + "1956-02-13": "Sant'Archelao", + "1956-02-14": "San Modestino; San Valentino", + "1956-02-15": "Santi Faustino e Giovita", + "1956-02-25": "San Gerlando", + "1956-03-01": "San Leoluca", + "1956-03-16": "Santi Ilario e Taziano", + "1956-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1956-03-19": "San Giuseppe", + "1956-03-22": "Madonna dei Sette Veli", + "1956-04-01": "Pasqua di Resurrezione", + "1956-04-02": "Luned\u00ec dell'Angelo", + "1956-04-23": "San Giorgio", + "1956-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1956-04-27": "San Liberale", + "1956-05-01": "Festa dei Lavoratori; San Secondo di Asti", + "1956-05-03": "San Nicola Pellegrino", + "1956-05-04": "San Ciriaco", + "1956-05-08": "San Vittore il Moro", + "1956-05-10": "San Cataldo", + "1956-05-11": "San Giustino di Chieti", + "1956-05-17": "San Ponziano", + "1956-05-19": "San Pietro Celestino", + "1956-05-21": "Luned\u00ec di Pentecoste; San Zeno", + "1956-05-22": "Santa Giulia", + "1956-05-30": "San Gerardo di Potenza", + "1956-06-01": "San Crescentino", + "1956-06-02": "Festa della Repubblica", + "1956-06-03": "Madonna della Lettera", + "1956-06-10": "San Massimo D'Aveia", + "1956-06-13": "Sant'Antonio di Padova", + "1956-06-17": "San Ranieri", + "1956-06-19": "San Gervasio e San Protasio", + "1956-06-20": "San Silverio", + "1956-06-24": "San Giovanni Battista", + "1956-06-26": "San Vigilio", + "1956-06-29": "Santi Pietro e Paolo", + "1956-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1956-07-04": "Sant'Antonino di Piacenza", + "1956-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1956-07-15": "San Giovanni", + "1956-07-16": "San Vitaliano", + "1956-07-23": "Sant'Apollinare", + "1956-07-25": "San Jacopo", + "1956-08-01": "Sant'Eusebio di Vercelli", + "1956-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1956-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1956-08-10": "San Lorenzo", + "1956-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1956-08-16": "Maria Santissima Assunta", + "1956-08-24": "San Bartolomeo apostolo", + "1956-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1956-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1956-09-02": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1956-09-04": "Santa Rosa da Viterbo", + "1956-09-07": "San Grato", + "1956-09-08": "Madonna delle Grazie", + "1956-09-16": "San Riccardo di Andria", + "1956-09-19": "San Gennaro", + "1956-09-21": "San Matteo Evangelista", + "1956-09-24": "San Terenzio di Pesaro", + "1956-09-29": "San Michele Arcangelo", + "1956-10-04": "San Francesco d'Assisi; San Petronio", + "1956-10-09": "San Dionigi", + "1956-10-10": "San Cetteo", + "1956-10-14": "San Gaudenzio", + "1956-10-30": "San Saturnino di Cagliari", + "1956-11-01": "Tutti i Santi", + "1956-11-03": "San Giusto", + "1956-11-10": "San Baudolino", + "1956-11-11": "San Martino", + "1956-11-13": "Sant'Omobono", + "1956-11-24": "San Prospero Vescovo", + "1956-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1956-12-01": "Sant'Ansano", + "1956-12-04": "Santa Barbara", + "1956-12-06": "San Nicola", + "1956-12-07": "Sant'Ambrogio", + "1956-12-08": "Immacolata Concezione", + "1956-12-09": "San Siro", + "1956-12-13": "Santa Lucia", + "1956-12-19": "San Berardo da Pagliara", + "1956-12-25": "Natale", + "1956-12-26": "Santo Stefano", + "1956-12-30": "San Ruggero", + "1957-01-01": "Capodanno", + "1957-01-06": "Epifania del Signore", + "1957-01-13": "Sant'Ilario di Poitiers", + "1957-01-19": "San Bassiano", + "1957-01-20": "San Sebastiano", + "1957-01-22": "San Gaudenzio", + "1957-01-29": "Sant'Ercolano e San Lorenzo", + "1957-01-31": "San Geminiano", + "1957-02-04": "Madonna del Fuoco", + "1957-02-05": "Sant'Agata", + "1957-02-12": "Madonna del Pilerio", + "1957-02-13": "Sant'Archelao", + "1957-02-14": "San Modestino; San Valentino", + "1957-02-15": "Santi Faustino e Giovita", + "1957-02-25": "San Gerlando", + "1957-03-01": "San Leoluca", + "1957-03-16": "Santi Ilario e Taziano", + "1957-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1957-03-19": "San Giuseppe", + "1957-03-22": "Madonna dei Sette Veli", + "1957-04-21": "Pasqua di Resurrezione", + "1957-04-22": "Luned\u00ec dell'Angelo", + "1957-04-23": "San Giorgio", + "1957-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1957-04-27": "San Liberale", + "1957-05-01": "Festa dei Lavoratori", + "1957-05-03": "San Nicola Pellegrino", + "1957-05-04": "San Ciriaco", + "1957-05-07": "San Secondo di Asti", + "1957-05-08": "San Vittore il Moro", + "1957-05-10": "San Cataldo", + "1957-05-11": "San Giustino di Chieti", + "1957-05-16": "San Ponziano", + "1957-05-19": "San Pietro Celestino", + "1957-05-21": "San Zeno", + "1957-05-22": "Santa Giulia", + "1957-05-30": "San Gerardo di Potenza", + "1957-06-01": "San Crescentino", + "1957-06-02": "Festa della Repubblica", + "1957-06-03": "Madonna della Lettera", + "1957-06-10": "Luned\u00ec di Pentecoste; San Massimo D'Aveia", + "1957-06-13": "Sant'Antonio di Padova", + "1957-06-17": "San Ranieri", + "1957-06-19": "San Gervasio e San Protasio", + "1957-06-20": "San Silverio", + "1957-06-24": "San Giovanni Battista", + "1957-06-26": "San Vigilio", + "1957-06-29": "Santi Pietro e Paolo", + "1957-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1957-07-04": "Sant'Antonino di Piacenza", + "1957-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1957-07-15": "San Giovanni", + "1957-07-16": "San Vitaliano", + "1957-07-23": "Sant'Apollinare", + "1957-07-25": "San Jacopo", + "1957-08-01": "Sant'Eusebio di Vercelli", + "1957-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1957-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1957-08-10": "San Lorenzo", + "1957-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1957-08-16": "Maria Santissima Assunta", + "1957-08-24": "San Bartolomeo apostolo", + "1957-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1957-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1957-09-01": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1957-09-04": "Santa Rosa da Viterbo", + "1957-09-07": "San Grato", + "1957-09-08": "Madonna delle Grazie", + "1957-09-15": "San Riccardo di Andria", + "1957-09-19": "San Gennaro", + "1957-09-21": "San Matteo Evangelista", + "1957-09-24": "San Terenzio di Pesaro", + "1957-09-29": "San Michele Arcangelo", + "1957-10-04": "San Francesco d'Assisi; San Petronio", + "1957-10-09": "San Dionigi", + "1957-10-10": "San Cetteo", + "1957-10-14": "San Gaudenzio", + "1957-10-30": "San Saturnino di Cagliari", + "1957-11-01": "Tutti i Santi", + "1957-11-03": "San Giusto", + "1957-11-10": "San Baudolino", + "1957-11-11": "San Martino", + "1957-11-13": "Sant'Omobono", + "1957-11-24": "San Prospero Vescovo", + "1957-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1957-12-01": "Sant'Ansano", + "1957-12-04": "Santa Barbara", + "1957-12-06": "San Nicola", + "1957-12-07": "Sant'Ambrogio", + "1957-12-08": "Immacolata Concezione", + "1957-12-09": "San Siro", + "1957-12-13": "Santa Lucia", + "1957-12-19": "San Berardo da Pagliara", + "1957-12-25": "Natale", + "1957-12-26": "Santo Stefano", + "1957-12-30": "San Ruggero", + "1958-01-01": "Capodanno", + "1958-01-06": "Epifania del Signore", + "1958-01-13": "Sant'Ilario di Poitiers", + "1958-01-19": "San Bassiano", + "1958-01-20": "San Sebastiano", + "1958-01-22": "San Gaudenzio", + "1958-01-29": "Sant'Ercolano e San Lorenzo", + "1958-01-31": "San Geminiano", + "1958-02-04": "Madonna del Fuoco", + "1958-02-05": "Sant'Agata", + "1958-02-12": "Madonna del Pilerio", + "1958-02-13": "Sant'Archelao", + "1958-02-14": "San Modestino; San Valentino", + "1958-02-15": "Santi Faustino e Giovita", + "1958-02-25": "San Gerlando", + "1958-03-01": "San Leoluca", + "1958-03-16": "Santi Ilario e Taziano", + "1958-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1958-03-19": "San Giuseppe", + "1958-03-22": "Madonna dei Sette Veli", + "1958-04-06": "Pasqua di Resurrezione", + "1958-04-07": "Luned\u00ec dell'Angelo", + "1958-04-23": "San Giorgio", + "1958-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1958-04-27": "San Liberale", + "1958-05-01": "Festa dei Lavoratori", + "1958-05-03": "San Nicola Pellegrino", + "1958-05-04": "San Ciriaco", + "1958-05-06": "San Secondo di Asti", + "1958-05-08": "San Vittore il Moro", + "1958-05-10": "San Cataldo", + "1958-05-11": "San Giustino di Chieti", + "1958-05-15": "San Ponziano", + "1958-05-19": "San Pietro Celestino", + "1958-05-21": "San Zeno", + "1958-05-22": "Santa Giulia", + "1958-05-26": "Luned\u00ec di Pentecoste", + "1958-05-30": "San Gerardo di Potenza", + "1958-06-01": "San Crescentino", + "1958-06-02": "Festa della Repubblica", + "1958-06-03": "Madonna della Lettera", + "1958-06-10": "San Massimo D'Aveia", + "1958-06-13": "Sant'Antonio di Padova", + "1958-06-17": "San Ranieri", + "1958-06-19": "San Gervasio e San Protasio", + "1958-06-20": "San Silverio", + "1958-06-24": "San Giovanni Battista", + "1958-06-26": "San Vigilio", + "1958-06-29": "Santi Pietro e Paolo", + "1958-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1958-07-04": "Sant'Antonino di Piacenza", + "1958-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1958-07-15": "San Giovanni", + "1958-07-16": "San Vitaliano", + "1958-07-23": "Sant'Apollinare", + "1958-07-25": "San Jacopo", + "1958-08-01": "Sant'Eusebio di Vercelli", + "1958-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1958-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1958-08-10": "San Lorenzo", + "1958-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1958-08-16": "Maria Santissima Assunta", + "1958-08-24": "San Bartolomeo apostolo", + "1958-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1958-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1958-09-04": "Santa Rosa da Viterbo", + "1958-09-07": "San Grato; San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1958-09-08": "Madonna delle Grazie", + "1958-09-19": "San Gennaro", + "1958-09-21": "San Matteo Evangelista; San Riccardo di Andria", + "1958-09-24": "San Terenzio di Pesaro", + "1958-09-29": "San Michele Arcangelo", + "1958-10-04": "San Francesco d'Assisi; San Petronio", + "1958-10-09": "San Dionigi", + "1958-10-10": "San Cetteo", + "1958-10-14": "San Gaudenzio", + "1958-10-30": "San Saturnino di Cagliari", + "1958-11-01": "Tutti i Santi", + "1958-11-03": "San Giusto", + "1958-11-10": "San Baudolino", + "1958-11-11": "San Martino", + "1958-11-13": "Sant'Omobono", + "1958-11-24": "San Prospero Vescovo", + "1958-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1958-12-01": "Sant'Ansano", + "1958-12-04": "Santa Barbara", + "1958-12-06": "San Nicola", + "1958-12-07": "Sant'Ambrogio", + "1958-12-08": "Immacolata Concezione", + "1958-12-09": "San Siro", + "1958-12-13": "Santa Lucia", + "1958-12-19": "San Berardo da Pagliara", + "1958-12-25": "Natale", + "1958-12-26": "Santo Stefano", + "1958-12-30": "San Ruggero", + "1959-01-01": "Capodanno", + "1959-01-06": "Epifania del Signore", + "1959-01-13": "Sant'Ilario di Poitiers", + "1959-01-19": "San Bassiano", + "1959-01-20": "San Sebastiano", + "1959-01-22": "San Gaudenzio", + "1959-01-29": "Sant'Ercolano e San Lorenzo", + "1959-01-31": "San Geminiano", + "1959-02-04": "Madonna del Fuoco", + "1959-02-05": "Sant'Agata", + "1959-02-12": "Madonna del Pilerio", + "1959-02-13": "Sant'Archelao", + "1959-02-14": "San Modestino; San Valentino", + "1959-02-15": "Santi Faustino e Giovita", + "1959-02-25": "San Gerlando", + "1959-03-01": "San Leoluca", + "1959-03-16": "Santi Ilario e Taziano", + "1959-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1959-03-19": "San Giuseppe", + "1959-03-22": "Madonna dei Sette Veli", + "1959-03-29": "Pasqua di Resurrezione", + "1959-03-30": "Luned\u00ec dell'Angelo", + "1959-04-23": "San Giorgio", + "1959-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1959-04-27": "San Liberale", + "1959-05-01": "Festa dei Lavoratori", + "1959-05-03": "San Nicola Pellegrino", + "1959-05-04": "San Ciriaco", + "1959-05-05": "San Secondo di Asti", + "1959-05-08": "San Vittore il Moro", + "1959-05-10": "San Cataldo", + "1959-05-11": "San Giustino di Chieti", + "1959-05-14": "San Ponziano", + "1959-05-18": "Luned\u00ec di Pentecoste", + "1959-05-19": "San Pietro Celestino", + "1959-05-21": "San Zeno", + "1959-05-22": "Santa Giulia", + "1959-05-30": "San Gerardo di Potenza", + "1959-06-01": "San Crescentino", + "1959-06-02": "Festa della Repubblica", + "1959-06-03": "Madonna della Lettera", + "1959-06-10": "San Massimo D'Aveia", + "1959-06-13": "Sant'Antonio di Padova", + "1959-06-17": "San Ranieri", + "1959-06-19": "San Gervasio e San Protasio", + "1959-06-20": "San Silverio", + "1959-06-24": "San Giovanni Battista", + "1959-06-26": "San Vigilio", + "1959-06-29": "Santi Pietro e Paolo", + "1959-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1959-07-04": "Sant'Antonino di Piacenza", + "1959-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1959-07-15": "San Giovanni", + "1959-07-16": "San Vitaliano", + "1959-07-23": "Sant'Apollinare", + "1959-07-25": "San Jacopo", + "1959-08-01": "Sant'Eusebio di Vercelli", + "1959-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1959-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1959-08-10": "San Lorenzo", + "1959-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1959-08-16": "Maria Santissima Assunta", + "1959-08-24": "San Bartolomeo apostolo", + "1959-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1959-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1959-09-04": "Santa Rosa da Viterbo", + "1959-09-06": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1959-09-07": "San Grato", + "1959-09-08": "Madonna delle Grazie", + "1959-09-19": "San Gennaro", + "1959-09-20": "San Riccardo di Andria", + "1959-09-21": "San Matteo Evangelista", + "1959-09-24": "San Terenzio di Pesaro", + "1959-09-29": "San Michele Arcangelo", + "1959-10-04": "San Francesco d'Assisi; San Petronio", + "1959-10-09": "San Dionigi", + "1959-10-10": "San Cetteo", + "1959-10-14": "San Gaudenzio", + "1959-10-30": "San Saturnino di Cagliari", + "1959-11-01": "Tutti i Santi", + "1959-11-03": "San Giusto", + "1959-11-10": "San Baudolino", + "1959-11-11": "San Martino", + "1959-11-13": "Sant'Omobono", + "1959-11-24": "San Prospero Vescovo", + "1959-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1959-12-01": "Sant'Ansano", + "1959-12-04": "Santa Barbara", + "1959-12-06": "San Nicola", + "1959-12-07": "Sant'Ambrogio", + "1959-12-08": "Immacolata Concezione", + "1959-12-09": "San Siro", + "1959-12-13": "Santa Lucia", + "1959-12-19": "San Berardo da Pagliara", + "1959-12-25": "Natale", + "1959-12-26": "Santo Stefano", + "1959-12-30": "San Ruggero", + "1960-01-01": "Capodanno", + "1960-01-06": "Epifania del Signore", + "1960-01-13": "Sant'Ilario di Poitiers", + "1960-01-19": "San Bassiano", + "1960-01-20": "San Sebastiano", + "1960-01-22": "San Gaudenzio", + "1960-01-29": "Sant'Ercolano e San Lorenzo", + "1960-01-31": "San Geminiano", + "1960-02-04": "Madonna del Fuoco", + "1960-02-05": "Sant'Agata", + "1960-02-12": "Madonna del Pilerio", + "1960-02-13": "Sant'Archelao", + "1960-02-14": "San Modestino; San Valentino", + "1960-02-15": "Santi Faustino e Giovita", + "1960-02-25": "San Gerlando", + "1960-03-01": "San Leoluca", + "1960-03-16": "Santi Ilario e Taziano", + "1960-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1960-03-19": "San Giuseppe", + "1960-03-22": "Madonna dei Sette Veli", + "1960-04-17": "Pasqua di Resurrezione", + "1960-04-18": "Luned\u00ec dell'Angelo", + "1960-04-23": "San Giorgio", + "1960-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1960-04-27": "San Liberale", + "1960-05-01": "Festa dei Lavoratori", + "1960-05-03": "San Nicola Pellegrino; San Secondo di Asti", + "1960-05-04": "San Ciriaco", + "1960-05-08": "San Vittore il Moro", + "1960-05-10": "San Cataldo", + "1960-05-11": "San Giustino di Chieti", + "1960-05-12": "San Ponziano", + "1960-05-19": "San Pietro Celestino", + "1960-05-21": "San Zeno", + "1960-05-22": "Santa Giulia", + "1960-05-30": "San Gerardo di Potenza", + "1960-06-01": "San Crescentino", + "1960-06-02": "Festa della Repubblica", + "1960-06-03": "Madonna della Lettera", + "1960-06-06": "Luned\u00ec di Pentecoste", + "1960-06-10": "San Massimo D'Aveia", + "1960-06-13": "Sant'Antonio di Padova", + "1960-06-17": "San Ranieri", + "1960-06-19": "San Gervasio e San Protasio", + "1960-06-20": "San Silverio", + "1960-06-24": "San Giovanni Battista", + "1960-06-26": "San Vigilio", + "1960-06-29": "Santi Pietro e Paolo", + "1960-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1960-07-04": "Sant'Antonino di Piacenza", + "1960-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1960-07-15": "San Giovanni", + "1960-07-16": "San Vitaliano", + "1960-07-23": "Sant'Apollinare", + "1960-07-25": "San Jacopo", + "1960-08-01": "Sant'Eusebio di Vercelli", + "1960-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1960-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1960-08-10": "San Lorenzo", + "1960-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1960-08-16": "Maria Santissima Assunta", + "1960-08-24": "San Bartolomeo apostolo", + "1960-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1960-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1960-09-04": "San Teodoro d'Amasea e San Lorenzo da Brindisi; Santa Rosa da Viterbo", + "1960-09-07": "San Grato", + "1960-09-08": "Madonna delle Grazie", + "1960-09-18": "San Riccardo di Andria", + "1960-09-19": "San Gennaro", + "1960-09-21": "San Matteo Evangelista", + "1960-09-24": "San Terenzio di Pesaro", + "1960-09-29": "San Michele Arcangelo", + "1960-10-04": "San Francesco d'Assisi; San Petronio", + "1960-10-09": "San Dionigi", + "1960-10-10": "San Cetteo", + "1960-10-14": "San Gaudenzio", + "1960-10-30": "San Saturnino di Cagliari", + "1960-11-01": "Tutti i Santi", + "1960-11-03": "San Giusto", + "1960-11-10": "San Baudolino", + "1960-11-11": "San Martino", + "1960-11-13": "Sant'Omobono", + "1960-11-24": "San Prospero Vescovo", + "1960-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1960-12-01": "Sant'Ansano", + "1960-12-04": "Santa Barbara", + "1960-12-06": "San Nicola", + "1960-12-07": "Sant'Ambrogio", + "1960-12-08": "Immacolata Concezione", + "1960-12-09": "San Siro", + "1960-12-13": "Santa Lucia", + "1960-12-19": "San Berardo da Pagliara", + "1960-12-25": "Natale", + "1960-12-26": "Santo Stefano", + "1960-12-30": "San Ruggero", + "1961-01-01": "Capodanno", + "1961-01-06": "Epifania del Signore", + "1961-01-13": "Sant'Ilario di Poitiers", + "1961-01-19": "San Bassiano", + "1961-01-20": "San Sebastiano", + "1961-01-22": "San Gaudenzio", + "1961-01-29": "Sant'Ercolano e San Lorenzo", + "1961-01-31": "San Geminiano", + "1961-02-04": "Madonna del Fuoco", + "1961-02-05": "Sant'Agata", + "1961-02-12": "Madonna del Pilerio", + "1961-02-13": "Sant'Archelao", + "1961-02-14": "San Modestino; San Valentino", + "1961-02-15": "Santi Faustino e Giovita", + "1961-02-25": "San Gerlando", + "1961-03-01": "San Leoluca", + "1961-03-16": "Santi Ilario e Taziano", + "1961-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1961-03-19": "San Giuseppe", + "1961-03-22": "Madonna dei Sette Veli", + "1961-04-02": "Pasqua di Resurrezione", + "1961-04-03": "Luned\u00ec dell'Angelo", + "1961-04-23": "San Giorgio", + "1961-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1961-04-27": "San Liberale", + "1961-05-01": "Festa dei Lavoratori", + "1961-05-02": "San Secondo di Asti", + "1961-05-03": "San Nicola Pellegrino", + "1961-05-04": "San Ciriaco", + "1961-05-08": "San Vittore il Moro", + "1961-05-10": "San Cataldo", + "1961-05-11": "San Giustino di Chieti", + "1961-05-18": "San Ponziano", + "1961-05-19": "San Pietro Celestino", + "1961-05-21": "San Zeno", + "1961-05-22": "Luned\u00ec di Pentecoste; Santa Giulia", + "1961-05-30": "San Gerardo di Potenza", + "1961-06-01": "San Crescentino", + "1961-06-02": "Festa della Repubblica", + "1961-06-03": "Madonna della Lettera", + "1961-06-10": "San Massimo D'Aveia", + "1961-06-13": "Sant'Antonio di Padova", + "1961-06-17": "San Ranieri", + "1961-06-19": "San Gervasio e San Protasio", + "1961-06-20": "San Silverio", + "1961-06-24": "San Giovanni Battista", + "1961-06-26": "San Vigilio", + "1961-06-29": "Santi Pietro e Paolo", + "1961-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1961-07-04": "Sant'Antonino di Piacenza", + "1961-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1961-07-15": "San Giovanni", + "1961-07-16": "San Vitaliano", + "1961-07-23": "Sant'Apollinare", + "1961-07-25": "San Jacopo", + "1961-08-01": "Sant'Eusebio di Vercelli", + "1961-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1961-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1961-08-10": "San Lorenzo", + "1961-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1961-08-16": "Maria Santissima Assunta", + "1961-08-24": "San Bartolomeo apostolo", + "1961-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1961-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1961-09-03": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1961-09-04": "Santa Rosa da Viterbo", + "1961-09-07": "San Grato", + "1961-09-08": "Madonna delle Grazie", + "1961-09-17": "San Riccardo di Andria", + "1961-09-19": "San Gennaro", + "1961-09-21": "San Matteo Evangelista", + "1961-09-24": "San Terenzio di Pesaro", + "1961-09-29": "San Michele Arcangelo", + "1961-10-04": "San Francesco d'Assisi; San Petronio", + "1961-10-09": "San Dionigi", + "1961-10-10": "San Cetteo", + "1961-10-14": "San Gaudenzio", + "1961-10-30": "San Saturnino di Cagliari", + "1961-11-01": "Tutti i Santi", + "1961-11-03": "San Giusto", + "1961-11-10": "San Baudolino", + "1961-11-11": "San Martino", + "1961-11-13": "Sant'Omobono", + "1961-11-24": "San Prospero Vescovo", + "1961-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1961-12-01": "Sant'Ansano", + "1961-12-04": "Santa Barbara", + "1961-12-06": "San Nicola", + "1961-12-07": "Sant'Ambrogio", + "1961-12-08": "Immacolata Concezione", + "1961-12-09": "San Siro", + "1961-12-13": "Santa Lucia", + "1961-12-19": "San Berardo da Pagliara", + "1961-12-25": "Natale", + "1961-12-26": "Santo Stefano", + "1961-12-30": "San Ruggero", + "1962-01-01": "Capodanno", + "1962-01-06": "Epifania del Signore", + "1962-01-13": "Sant'Ilario di Poitiers", + "1962-01-19": "San Bassiano", + "1962-01-20": "San Sebastiano", + "1962-01-22": "San Gaudenzio", + "1962-01-29": "Sant'Ercolano e San Lorenzo", + "1962-01-31": "San Geminiano", + "1962-02-04": "Madonna del Fuoco", + "1962-02-05": "Sant'Agata", + "1962-02-12": "Madonna del Pilerio", + "1962-02-13": "Sant'Archelao", + "1962-02-14": "San Modestino; San Valentino", + "1962-02-15": "Santi Faustino e Giovita", + "1962-02-25": "San Gerlando", + "1962-03-01": "San Leoluca", + "1962-03-16": "Santi Ilario e Taziano", + "1962-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1962-03-19": "San Giuseppe", + "1962-03-22": "Madonna dei Sette Veli", + "1962-04-22": "Pasqua di Resurrezione", + "1962-04-23": "Luned\u00ec dell'Angelo; San Giorgio", + "1962-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1962-04-27": "San Liberale", + "1962-05-01": "Festa dei Lavoratori; San Secondo di Asti", + "1962-05-03": "San Nicola Pellegrino", + "1962-05-04": "San Ciriaco", + "1962-05-08": "San Vittore il Moro", + "1962-05-10": "San Cataldo", + "1962-05-11": "San Giustino di Chieti", + "1962-05-17": "San Ponziano", + "1962-05-19": "San Pietro Celestino", + "1962-05-21": "San Zeno", + "1962-05-22": "Santa Giulia", + "1962-05-30": "San Gerardo di Potenza", + "1962-06-01": "San Crescentino", + "1962-06-02": "Festa della Repubblica", + "1962-06-03": "Madonna della Lettera", + "1962-06-10": "San Massimo D'Aveia", + "1962-06-11": "Luned\u00ec di Pentecoste", + "1962-06-13": "Sant'Antonio di Padova", + "1962-06-17": "San Ranieri", + "1962-06-19": "San Gervasio e San Protasio", + "1962-06-20": "San Silverio", + "1962-06-24": "San Giovanni Battista", + "1962-06-26": "San Vigilio", + "1962-06-29": "Santi Pietro e Paolo", + "1962-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1962-07-04": "Sant'Antonino di Piacenza", + "1962-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1962-07-15": "San Giovanni", + "1962-07-16": "San Vitaliano", + "1962-07-23": "Sant'Apollinare", + "1962-07-25": "San Jacopo", + "1962-08-01": "Sant'Eusebio di Vercelli", + "1962-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1962-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1962-08-10": "San Lorenzo", + "1962-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1962-08-16": "Maria Santissima Assunta", + "1962-08-24": "San Bartolomeo apostolo", + "1962-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1962-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1962-09-02": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1962-09-04": "Santa Rosa da Viterbo", + "1962-09-07": "San Grato", + "1962-09-08": "Madonna delle Grazie", + "1962-09-16": "San Riccardo di Andria", + "1962-09-19": "San Gennaro", + "1962-09-21": "San Matteo Evangelista", + "1962-09-24": "San Terenzio di Pesaro", + "1962-09-29": "San Michele Arcangelo", + "1962-10-04": "San Francesco d'Assisi; San Petronio", + "1962-10-09": "San Dionigi", + "1962-10-10": "San Cetteo", + "1962-10-14": "San Gaudenzio", + "1962-10-30": "San Saturnino di Cagliari", + "1962-11-01": "Tutti i Santi", + "1962-11-03": "San Giusto", + "1962-11-10": "San Baudolino", + "1962-11-11": "San Martino", + "1962-11-13": "Sant'Omobono", + "1962-11-24": "San Prospero Vescovo", + "1962-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1962-12-01": "Sant'Ansano", + "1962-12-04": "Santa Barbara", + "1962-12-06": "San Nicola", + "1962-12-07": "Sant'Ambrogio", + "1962-12-08": "Immacolata Concezione", + "1962-12-09": "San Siro", + "1962-12-13": "Santa Lucia", + "1962-12-19": "San Berardo da Pagliara", + "1962-12-25": "Natale", + "1962-12-26": "Santo Stefano", + "1962-12-30": "San Ruggero", + "1963-01-01": "Capodanno", + "1963-01-06": "Epifania del Signore", + "1963-01-13": "Sant'Ilario di Poitiers", + "1963-01-19": "San Bassiano", + "1963-01-20": "San Sebastiano", + "1963-01-22": "San Gaudenzio", + "1963-01-29": "Sant'Ercolano e San Lorenzo", + "1963-01-31": "San Geminiano", + "1963-02-04": "Madonna del Fuoco", + "1963-02-05": "Sant'Agata", + "1963-02-12": "Madonna del Pilerio", + "1963-02-13": "Sant'Archelao", + "1963-02-14": "San Modestino; San Valentino", + "1963-02-15": "Santi Faustino e Giovita", + "1963-02-25": "San Gerlando", + "1963-03-01": "San Leoluca", + "1963-03-16": "Santi Ilario e Taziano", + "1963-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1963-03-19": "San Giuseppe", + "1963-03-22": "Madonna dei Sette Veli", + "1963-04-14": "Pasqua di Resurrezione", + "1963-04-15": "Luned\u00ec dell'Angelo", + "1963-04-23": "San Giorgio", + "1963-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1963-04-27": "San Liberale", + "1963-05-01": "Festa dei Lavoratori", + "1963-05-03": "San Nicola Pellegrino", + "1963-05-04": "San Ciriaco", + "1963-05-07": "San Secondo di Asti", + "1963-05-08": "San Vittore il Moro", + "1963-05-10": "San Cataldo", + "1963-05-11": "San Giustino di Chieti", + "1963-05-16": "San Ponziano", + "1963-05-19": "San Pietro Celestino", + "1963-05-21": "San Zeno", + "1963-05-22": "Santa Giulia", + "1963-05-30": "San Gerardo di Potenza", + "1963-06-01": "San Crescentino", + "1963-06-02": "Festa della Repubblica", + "1963-06-03": "Luned\u00ec di Pentecoste; Madonna della Lettera", + "1963-06-10": "San Massimo D'Aveia", + "1963-06-13": "Sant'Antonio di Padova", + "1963-06-17": "San Ranieri", + "1963-06-19": "San Gervasio e San Protasio", + "1963-06-20": "San Silverio", + "1963-06-24": "San Giovanni Battista", + "1963-06-26": "San Vigilio", + "1963-06-29": "Santi Pietro e Paolo", + "1963-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1963-07-04": "Sant'Antonino di Piacenza", + "1963-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1963-07-15": "San Giovanni", + "1963-07-16": "San Vitaliano", + "1963-07-23": "Sant'Apollinare", + "1963-07-25": "San Jacopo", + "1963-08-01": "Sant'Eusebio di Vercelli", + "1963-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1963-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1963-08-10": "San Lorenzo", + "1963-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1963-08-16": "Maria Santissima Assunta", + "1963-08-24": "San Bartolomeo apostolo", + "1963-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1963-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1963-09-01": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1963-09-04": "Santa Rosa da Viterbo", + "1963-09-07": "San Grato", + "1963-09-08": "Madonna delle Grazie", + "1963-09-15": "San Riccardo di Andria", + "1963-09-19": "San Gennaro", + "1963-09-21": "San Matteo Evangelista", + "1963-09-24": "San Terenzio di Pesaro", + "1963-09-29": "San Michele Arcangelo", + "1963-10-04": "San Francesco d'Assisi; San Petronio", + "1963-10-09": "San Dionigi", + "1963-10-10": "San Cetteo", + "1963-10-14": "San Gaudenzio", + "1963-10-30": "San Saturnino di Cagliari", + "1963-11-01": "Tutti i Santi", + "1963-11-03": "San Giusto", + "1963-11-10": "San Baudolino", + "1963-11-11": "San Martino", + "1963-11-13": "Sant'Omobono", + "1963-11-24": "San Prospero Vescovo", + "1963-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1963-12-01": "Sant'Ansano", + "1963-12-04": "Santa Barbara", + "1963-12-06": "San Nicola", + "1963-12-07": "Sant'Ambrogio", + "1963-12-08": "Immacolata Concezione", + "1963-12-09": "San Siro", + "1963-12-13": "Santa Lucia", + "1963-12-19": "San Berardo da Pagliara", + "1963-12-25": "Natale", + "1963-12-26": "Santo Stefano", + "1963-12-30": "San Ruggero", + "1964-01-01": "Capodanno", + "1964-01-06": "Epifania del Signore", + "1964-01-13": "Sant'Ilario di Poitiers", + "1964-01-19": "San Bassiano", + "1964-01-20": "San Sebastiano", + "1964-01-22": "San Gaudenzio", + "1964-01-29": "Sant'Ercolano e San Lorenzo", + "1964-01-31": "San Geminiano", + "1964-02-04": "Madonna del Fuoco", + "1964-02-05": "Sant'Agata", + "1964-02-12": "Madonna del Pilerio", + "1964-02-13": "Sant'Archelao", + "1964-02-14": "San Modestino; San Valentino", + "1964-02-15": "Santi Faustino e Giovita", + "1964-02-25": "San Gerlando", + "1964-03-01": "San Leoluca", + "1964-03-16": "Santi Ilario e Taziano", + "1964-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1964-03-19": "San Giuseppe", + "1964-03-22": "Madonna dei Sette Veli", + "1964-03-29": "Pasqua di Resurrezione", + "1964-03-30": "Luned\u00ec dell'Angelo", + "1964-04-23": "San Giorgio", + "1964-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1964-04-27": "San Liberale", + "1964-05-01": "Festa dei Lavoratori", + "1964-05-03": "San Nicola Pellegrino", + "1964-05-04": "San Ciriaco", + "1964-05-05": "San Secondo di Asti", + "1964-05-08": "San Vittore il Moro", + "1964-05-10": "San Cataldo", + "1964-05-11": "San Giustino di Chieti", + "1964-05-14": "San Ponziano", + "1964-05-18": "Luned\u00ec di Pentecoste", + "1964-05-19": "San Pietro Celestino", + "1964-05-21": "San Zeno", + "1964-05-22": "Santa Giulia", + "1964-05-30": "San Gerardo di Potenza", + "1964-06-01": "San Crescentino", + "1964-06-02": "Festa della Repubblica", + "1964-06-03": "Madonna della Lettera", + "1964-06-10": "San Massimo D'Aveia", + "1964-06-13": "Sant'Antonio di Padova", + "1964-06-17": "San Ranieri", + "1964-06-19": "San Gervasio e San Protasio", + "1964-06-20": "San Silverio", + "1964-06-24": "San Giovanni Battista", + "1964-06-26": "San Vigilio", + "1964-06-29": "Santi Pietro e Paolo", + "1964-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1964-07-04": "Sant'Antonino di Piacenza", + "1964-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1964-07-15": "San Giovanni", + "1964-07-16": "San Vitaliano", + "1964-07-23": "Sant'Apollinare", + "1964-07-25": "San Jacopo", + "1964-08-01": "Sant'Eusebio di Vercelli", + "1964-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1964-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1964-08-10": "San Lorenzo", + "1964-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1964-08-16": "Maria Santissima Assunta", + "1964-08-24": "San Bartolomeo apostolo", + "1964-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1964-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1964-09-04": "Santa Rosa da Viterbo", + "1964-09-06": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1964-09-07": "San Grato", + "1964-09-08": "Madonna delle Grazie", + "1964-09-19": "San Gennaro", + "1964-09-20": "San Riccardo di Andria", + "1964-09-21": "San Matteo Evangelista", + "1964-09-24": "San Terenzio di Pesaro", + "1964-09-29": "San Michele Arcangelo", + "1964-10-04": "San Francesco d'Assisi; San Petronio", + "1964-10-09": "San Dionigi", + "1964-10-10": "San Cetteo", + "1964-10-14": "San Gaudenzio", + "1964-10-30": "San Saturnino di Cagliari", + "1964-11-01": "Tutti i Santi", + "1964-11-03": "San Giusto", + "1964-11-10": "San Baudolino", + "1964-11-11": "San Martino", + "1964-11-13": "Sant'Omobono", + "1964-11-24": "San Prospero Vescovo", + "1964-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1964-12-01": "Sant'Ansano", + "1964-12-04": "Santa Barbara", + "1964-12-06": "San Nicola", + "1964-12-07": "Sant'Ambrogio", + "1964-12-08": "Immacolata Concezione", + "1964-12-09": "San Siro", + "1964-12-13": "Santa Lucia", + "1964-12-19": "San Berardo da Pagliara", + "1964-12-25": "Natale", + "1964-12-26": "Santo Stefano", + "1964-12-30": "San Ruggero", + "1965-01-01": "Capodanno", + "1965-01-06": "Epifania del Signore", + "1965-01-13": "Sant'Ilario di Poitiers", + "1965-01-19": "San Bassiano", + "1965-01-20": "San Sebastiano", + "1965-01-22": "San Gaudenzio", + "1965-01-29": "Sant'Ercolano e San Lorenzo", + "1965-01-31": "San Geminiano", + "1965-02-04": "Madonna del Fuoco", + "1965-02-05": "Sant'Agata", + "1965-02-12": "Madonna del Pilerio", + "1965-02-13": "Sant'Archelao", + "1965-02-14": "San Modestino; San Valentino", + "1965-02-15": "Santi Faustino e Giovita", + "1965-02-25": "San Gerlando", + "1965-03-01": "San Leoluca", + "1965-03-16": "Santi Ilario e Taziano", + "1965-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1965-03-19": "San Giuseppe", + "1965-03-22": "Madonna dei Sette Veli", + "1965-04-18": "Pasqua di Resurrezione", + "1965-04-19": "Luned\u00ec dell'Angelo", + "1965-04-23": "San Giorgio", + "1965-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1965-04-27": "San Liberale", + "1965-05-01": "Festa dei Lavoratori", + "1965-05-03": "San Nicola Pellegrino", + "1965-05-04": "San Ciriaco; San Secondo di Asti", + "1965-05-08": "San Vittore il Moro", + "1965-05-10": "San Cataldo", + "1965-05-11": "San Giustino di Chieti", + "1965-05-13": "San Ponziano", + "1965-05-19": "San Pietro Celestino", + "1965-05-21": "San Zeno", + "1965-05-22": "Santa Giulia", + "1965-05-30": "San Gerardo di Potenza", + "1965-06-01": "San Crescentino", + "1965-06-02": "Festa della Repubblica", + "1965-06-03": "Madonna della Lettera", + "1965-06-07": "Luned\u00ec di Pentecoste", + "1965-06-10": "San Massimo D'Aveia", + "1965-06-13": "Sant'Antonio di Padova", + "1965-06-17": "San Ranieri", + "1965-06-19": "San Gervasio e San Protasio", + "1965-06-20": "San Silverio", + "1965-06-24": "San Giovanni Battista", + "1965-06-26": "San Vigilio", + "1965-06-29": "Santi Pietro e Paolo", + "1965-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1965-07-04": "Sant'Antonino di Piacenza", + "1965-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1965-07-15": "San Giovanni", + "1965-07-16": "San Vitaliano", + "1965-07-23": "Sant'Apollinare", + "1965-07-25": "San Jacopo", + "1965-08-01": "Sant'Eusebio di Vercelli", + "1965-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1965-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1965-08-10": "San Lorenzo", + "1965-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1965-08-16": "Maria Santissima Assunta", + "1965-08-24": "San Bartolomeo apostolo", + "1965-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1965-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1965-09-04": "Santa Rosa da Viterbo", + "1965-09-05": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1965-09-07": "San Grato", + "1965-09-08": "Madonna delle Grazie", + "1965-09-19": "San Gennaro; San Riccardo di Andria", + "1965-09-21": "San Matteo Evangelista", + "1965-09-24": "San Terenzio di Pesaro", + "1965-09-29": "San Michele Arcangelo", + "1965-10-04": "San Francesco d'Assisi; San Petronio", + "1965-10-09": "San Dionigi", + "1965-10-10": "San Cetteo", + "1965-10-14": "San Gaudenzio", + "1965-10-30": "San Saturnino di Cagliari", + "1965-11-01": "Tutti i Santi", + "1965-11-03": "San Giusto", + "1965-11-10": "San Baudolino", + "1965-11-11": "San Martino", + "1965-11-13": "Sant'Omobono", + "1965-11-24": "San Prospero Vescovo", + "1965-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1965-12-01": "Sant'Ansano", + "1965-12-04": "Santa Barbara", + "1965-12-06": "San Nicola", + "1965-12-07": "Sant'Ambrogio", + "1965-12-08": "Immacolata Concezione", + "1965-12-09": "San Siro", + "1965-12-13": "Santa Lucia", + "1965-12-19": "San Berardo da Pagliara", + "1965-12-25": "Natale", + "1965-12-26": "Santo Stefano", + "1965-12-30": "San Ruggero", + "1966-01-01": "Capodanno", + "1966-01-06": "Epifania del Signore", + "1966-01-13": "Sant'Ilario di Poitiers", + "1966-01-19": "San Bassiano", + "1966-01-20": "San Sebastiano", + "1966-01-22": "San Gaudenzio", + "1966-01-29": "Sant'Ercolano e San Lorenzo", + "1966-01-31": "San Geminiano", + "1966-02-04": "Madonna del Fuoco", + "1966-02-05": "Sant'Agata", + "1966-02-12": "Madonna del Pilerio", + "1966-02-13": "Sant'Archelao", + "1966-02-14": "San Modestino; San Valentino", + "1966-02-15": "Santi Faustino e Giovita", + "1966-02-25": "San Gerlando", + "1966-03-01": "San Leoluca", + "1966-03-16": "Santi Ilario e Taziano", + "1966-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1966-03-19": "San Giuseppe", + "1966-03-22": "Madonna dei Sette Veli", + "1966-04-10": "Pasqua di Resurrezione", + "1966-04-11": "Luned\u00ec dell'Angelo", + "1966-04-23": "San Giorgio", + "1966-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1966-04-27": "San Liberale", + "1966-05-01": "Festa dei Lavoratori", + "1966-05-03": "San Nicola Pellegrino; San Secondo di Asti", + "1966-05-04": "San Ciriaco", + "1966-05-08": "San Vittore il Moro", + "1966-05-10": "San Cataldo", + "1966-05-11": "San Giustino di Chieti", + "1966-05-12": "San Ponziano", + "1966-05-19": "San Pietro Celestino", + "1966-05-21": "San Zeno", + "1966-05-22": "Santa Giulia", + "1966-05-30": "Luned\u00ec di Pentecoste; San Gerardo di Potenza", + "1966-06-01": "San Crescentino", + "1966-06-02": "Festa della Repubblica", + "1966-06-03": "Madonna della Lettera", + "1966-06-10": "San Massimo D'Aveia", + "1966-06-13": "Sant'Antonio di Padova", + "1966-06-17": "San Ranieri", + "1966-06-19": "San Gervasio e San Protasio", + "1966-06-20": "San Silverio", + "1966-06-24": "San Giovanni Battista", + "1966-06-26": "San Vigilio", + "1966-06-29": "Santi Pietro e Paolo", + "1966-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1966-07-04": "Sant'Antonino di Piacenza", + "1966-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1966-07-15": "San Giovanni", + "1966-07-16": "San Vitaliano", + "1966-07-23": "Sant'Apollinare", + "1966-07-25": "San Jacopo", + "1966-08-01": "Sant'Eusebio di Vercelli", + "1966-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1966-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1966-08-10": "San Lorenzo", + "1966-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1966-08-16": "Maria Santissima Assunta", + "1966-08-24": "San Bartolomeo apostolo", + "1966-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1966-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1966-09-04": "San Teodoro d'Amasea e San Lorenzo da Brindisi; Santa Rosa da Viterbo", + "1966-09-07": "San Grato", + "1966-09-08": "Madonna delle Grazie", + "1966-09-18": "San Riccardo di Andria", + "1966-09-19": "San Gennaro", + "1966-09-21": "San Matteo Evangelista", + "1966-09-24": "San Terenzio di Pesaro", + "1966-09-29": "San Michele Arcangelo", + "1966-10-04": "San Francesco d'Assisi; San Petronio", + "1966-10-09": "San Dionigi", + "1966-10-10": "San Cetteo", + "1966-10-14": "San Gaudenzio", + "1966-10-30": "San Saturnino di Cagliari", + "1966-11-01": "Tutti i Santi", + "1966-11-03": "San Giusto", + "1966-11-10": "San Baudolino", + "1966-11-11": "San Martino", + "1966-11-13": "Sant'Omobono", + "1966-11-24": "San Prospero Vescovo", + "1966-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1966-12-01": "Sant'Ansano", + "1966-12-04": "Santa Barbara", + "1966-12-06": "San Nicola", + "1966-12-07": "Sant'Ambrogio", + "1966-12-08": "Immacolata Concezione", + "1966-12-09": "San Siro", + "1966-12-13": "Santa Lucia", + "1966-12-19": "San Berardo da Pagliara", + "1966-12-25": "Natale", + "1966-12-26": "Santo Stefano", + "1966-12-30": "San Ruggero", + "1967-01-01": "Capodanno", + "1967-01-06": "Epifania del Signore", + "1967-01-13": "Sant'Ilario di Poitiers", + "1967-01-19": "San Bassiano", + "1967-01-20": "San Sebastiano", + "1967-01-22": "San Gaudenzio", + "1967-01-29": "Sant'Ercolano e San Lorenzo", + "1967-01-31": "San Geminiano", + "1967-02-04": "Madonna del Fuoco", + "1967-02-05": "Sant'Agata", + "1967-02-12": "Madonna del Pilerio", + "1967-02-13": "Sant'Archelao", + "1967-02-14": "San Modestino; San Valentino", + "1967-02-15": "Santi Faustino e Giovita", + "1967-02-25": "San Gerlando", + "1967-03-01": "San Leoluca", + "1967-03-16": "Santi Ilario e Taziano", + "1967-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1967-03-19": "San Giuseppe", + "1967-03-22": "Madonna dei Sette Veli", + "1967-03-26": "Pasqua di Resurrezione", + "1967-03-27": "Luned\u00ec dell'Angelo", + "1967-04-23": "San Giorgio", + "1967-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1967-04-27": "San Liberale", + "1967-05-01": "Festa dei Lavoratori", + "1967-05-02": "San Secondo di Asti", + "1967-05-03": "San Nicola Pellegrino", + "1967-05-04": "San Ciriaco", + "1967-05-08": "San Vittore il Moro", + "1967-05-10": "San Cataldo", + "1967-05-11": "San Giustino di Chieti", + "1967-05-15": "Luned\u00ec di Pentecoste", + "1967-05-18": "San Ponziano", + "1967-05-19": "San Pietro Celestino", + "1967-05-21": "San Zeno", + "1967-05-22": "Santa Giulia", + "1967-05-30": "San Gerardo di Potenza", + "1967-06-01": "San Crescentino", + "1967-06-02": "Festa della Repubblica", + "1967-06-03": "Madonna della Lettera", + "1967-06-10": "San Massimo D'Aveia", + "1967-06-13": "Sant'Antonio di Padova", + "1967-06-17": "San Ranieri", + "1967-06-19": "San Gervasio e San Protasio", + "1967-06-20": "San Silverio", + "1967-06-24": "San Giovanni Battista", + "1967-06-26": "San Vigilio", + "1967-06-29": "Santi Pietro e Paolo", + "1967-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1967-07-04": "Sant'Antonino di Piacenza", + "1967-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1967-07-15": "San Giovanni", + "1967-07-16": "San Vitaliano", + "1967-07-23": "Sant'Apollinare", + "1967-07-25": "San Jacopo", + "1967-08-01": "Sant'Eusebio di Vercelli", + "1967-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1967-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1967-08-10": "San Lorenzo", + "1967-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1967-08-16": "Maria Santissima Assunta", + "1967-08-24": "San Bartolomeo apostolo", + "1967-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1967-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1967-09-03": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1967-09-04": "Santa Rosa da Viterbo", + "1967-09-07": "San Grato", + "1967-09-08": "Madonna delle Grazie", + "1967-09-17": "San Riccardo di Andria", + "1967-09-19": "San Gennaro", + "1967-09-21": "San Matteo Evangelista", + "1967-09-24": "San Terenzio di Pesaro", + "1967-09-29": "San Michele Arcangelo", + "1967-10-04": "San Francesco d'Assisi; San Petronio", + "1967-10-09": "San Dionigi", + "1967-10-10": "San Cetteo", + "1967-10-14": "San Gaudenzio", + "1967-10-30": "San Saturnino di Cagliari", + "1967-11-01": "Tutti i Santi", + "1967-11-03": "San Giusto", + "1967-11-10": "San Baudolino", + "1967-11-11": "San Martino", + "1967-11-13": "Sant'Omobono", + "1967-11-24": "San Prospero Vescovo", + "1967-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1967-12-01": "Sant'Ansano", + "1967-12-04": "Santa Barbara", + "1967-12-06": "San Nicola", + "1967-12-07": "Sant'Ambrogio", + "1967-12-08": "Immacolata Concezione", + "1967-12-09": "San Siro", + "1967-12-13": "Santa Lucia", + "1967-12-19": "San Berardo da Pagliara", + "1967-12-25": "Natale", + "1967-12-26": "Santo Stefano", + "1967-12-30": "San Ruggero", + "1968-01-01": "Capodanno", + "1968-01-06": "Epifania del Signore", + "1968-01-13": "Sant'Ilario di Poitiers", + "1968-01-19": "San Bassiano", + "1968-01-20": "San Sebastiano", + "1968-01-22": "San Gaudenzio", + "1968-01-29": "Sant'Ercolano e San Lorenzo", + "1968-01-31": "San Geminiano", + "1968-02-04": "Madonna del Fuoco", + "1968-02-05": "Sant'Agata", + "1968-02-12": "Madonna del Pilerio", + "1968-02-13": "Sant'Archelao", + "1968-02-14": "San Modestino; San Valentino", + "1968-02-15": "Santi Faustino e Giovita", + "1968-02-25": "San Gerlando", + "1968-03-01": "San Leoluca", + "1968-03-16": "Santi Ilario e Taziano", + "1968-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1968-03-19": "San Giuseppe", + "1968-03-22": "Madonna dei Sette Veli", + "1968-04-14": "Pasqua di Resurrezione", + "1968-04-15": "Luned\u00ec dell'Angelo", + "1968-04-23": "San Giorgio", + "1968-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1968-04-27": "San Liberale", + "1968-05-01": "Festa dei Lavoratori", + "1968-05-03": "San Nicola Pellegrino", + "1968-05-04": "San Ciriaco", + "1968-05-07": "San Secondo di Asti", + "1968-05-08": "San Vittore il Moro", + "1968-05-10": "San Cataldo", + "1968-05-11": "San Giustino di Chieti", + "1968-05-16": "San Ponziano", + "1968-05-19": "San Pietro Celestino", + "1968-05-21": "San Zeno", + "1968-05-22": "Santa Giulia", + "1968-05-30": "San Gerardo di Potenza", + "1968-06-01": "San Crescentino", + "1968-06-02": "Festa della Repubblica", + "1968-06-03": "Luned\u00ec di Pentecoste; Madonna della Lettera", + "1968-06-10": "San Massimo D'Aveia", + "1968-06-13": "Sant'Antonio di Padova", + "1968-06-17": "San Ranieri", + "1968-06-19": "San Gervasio e San Protasio", + "1968-06-20": "San Silverio", + "1968-06-24": "San Giovanni Battista", + "1968-06-26": "San Vigilio", + "1968-06-29": "Santi Pietro e Paolo", + "1968-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1968-07-04": "Sant'Antonino di Piacenza", + "1968-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1968-07-15": "San Giovanni", + "1968-07-16": "San Vitaliano", + "1968-07-23": "Sant'Apollinare", + "1968-07-25": "San Jacopo", + "1968-08-01": "Sant'Eusebio di Vercelli", + "1968-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1968-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1968-08-10": "San Lorenzo", + "1968-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1968-08-16": "Maria Santissima Assunta", + "1968-08-24": "San Bartolomeo apostolo", + "1968-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1968-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1968-09-01": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1968-09-04": "Santa Rosa da Viterbo", + "1968-09-07": "San Grato", + "1968-09-08": "Madonna delle Grazie", + "1968-09-15": "San Riccardo di Andria", + "1968-09-19": "San Gennaro", + "1968-09-21": "San Matteo Evangelista", + "1968-09-24": "San Terenzio di Pesaro", + "1968-09-29": "San Michele Arcangelo", + "1968-10-04": "San Francesco d'Assisi; San Petronio", + "1968-10-09": "San Dionigi", + "1968-10-10": "San Cetteo", + "1968-10-14": "San Gaudenzio", + "1968-10-30": "San Saturnino di Cagliari", + "1968-11-01": "Tutti i Santi", + "1968-11-03": "San Giusto", + "1968-11-10": "San Baudolino", + "1968-11-11": "San Martino", + "1968-11-13": "Sant'Omobono", + "1968-11-24": "San Prospero Vescovo", + "1968-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1968-12-01": "Sant'Ansano", + "1968-12-04": "Santa Barbara", + "1968-12-06": "San Nicola", + "1968-12-07": "Sant'Ambrogio", + "1968-12-08": "Immacolata Concezione", + "1968-12-09": "San Siro", + "1968-12-13": "Santa Lucia", + "1968-12-19": "San Berardo da Pagliara", + "1968-12-25": "Natale", + "1968-12-26": "Santo Stefano", + "1968-12-30": "San Ruggero", + "1969-01-01": "Capodanno", + "1969-01-06": "Epifania del Signore", + "1969-01-13": "Sant'Ilario di Poitiers", + "1969-01-19": "San Bassiano", + "1969-01-20": "San Sebastiano", + "1969-01-22": "San Gaudenzio", + "1969-01-29": "Sant'Ercolano e San Lorenzo", + "1969-01-31": "San Geminiano", + "1969-02-04": "Madonna del Fuoco", + "1969-02-05": "Sant'Agata", + "1969-02-12": "Madonna del Pilerio", + "1969-02-13": "Sant'Archelao", + "1969-02-14": "San Modestino; San Valentino", + "1969-02-15": "Santi Faustino e Giovita", + "1969-02-25": "San Gerlando", + "1969-03-01": "San Leoluca", + "1969-03-16": "Santi Ilario e Taziano", + "1969-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1969-03-19": "San Giuseppe", + "1969-03-22": "Madonna dei Sette Veli", + "1969-04-06": "Pasqua di Resurrezione", + "1969-04-07": "Luned\u00ec dell'Angelo", + "1969-04-23": "San Giorgio", + "1969-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1969-04-27": "San Liberale", + "1969-05-01": "Festa dei Lavoratori", + "1969-05-03": "San Nicola Pellegrino", + "1969-05-04": "San Ciriaco", + "1969-05-06": "San Secondo di Asti", + "1969-05-08": "San Vittore il Moro", + "1969-05-10": "San Cataldo", + "1969-05-11": "San Giustino di Chieti", + "1969-05-15": "San Ponziano", + "1969-05-19": "San Pietro Celestino", + "1969-05-21": "San Zeno", + "1969-05-22": "Santa Giulia", + "1969-05-26": "Luned\u00ec di Pentecoste", + "1969-05-30": "San Gerardo di Potenza", + "1969-06-01": "San Crescentino", + "1969-06-02": "Festa della Repubblica", + "1969-06-03": "Madonna della Lettera", + "1969-06-10": "San Massimo D'Aveia", + "1969-06-13": "Sant'Antonio di Padova", + "1969-06-17": "San Ranieri", + "1969-06-19": "San Gervasio e San Protasio", + "1969-06-20": "San Silverio", + "1969-06-24": "San Giovanni Battista", + "1969-06-26": "San Vigilio", + "1969-06-29": "Santi Pietro e Paolo", + "1969-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1969-07-04": "Sant'Antonino di Piacenza", + "1969-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1969-07-15": "San Giovanni", + "1969-07-16": "San Vitaliano", + "1969-07-23": "Sant'Apollinare", + "1969-07-25": "San Jacopo", + "1969-08-01": "Sant'Eusebio di Vercelli", + "1969-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1969-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1969-08-10": "San Lorenzo", + "1969-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1969-08-16": "Maria Santissima Assunta", + "1969-08-24": "San Bartolomeo apostolo", + "1969-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1969-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1969-09-04": "Santa Rosa da Viterbo", + "1969-09-07": "San Grato; San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1969-09-08": "Madonna delle Grazie", + "1969-09-19": "San Gennaro", + "1969-09-21": "San Matteo Evangelista; San Riccardo di Andria", + "1969-09-24": "San Terenzio di Pesaro", + "1969-09-29": "San Michele Arcangelo", + "1969-10-04": "San Francesco d'Assisi; San Petronio", + "1969-10-09": "San Dionigi", + "1969-10-10": "San Cetteo", + "1969-10-14": "San Gaudenzio", + "1969-10-30": "San Saturnino di Cagliari", + "1969-11-01": "Tutti i Santi", + "1969-11-03": "San Giusto", + "1969-11-10": "San Baudolino", + "1969-11-11": "San Martino", + "1969-11-13": "Sant'Omobono", + "1969-11-24": "San Prospero Vescovo", + "1969-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1969-12-01": "Sant'Ansano", + "1969-12-04": "Santa Barbara", + "1969-12-06": "San Nicola", + "1969-12-07": "Sant'Ambrogio", + "1969-12-08": "Immacolata Concezione", + "1969-12-09": "San Siro", + "1969-12-13": "Santa Lucia", + "1969-12-19": "San Berardo da Pagliara", + "1969-12-25": "Natale", + "1969-12-26": "Santo Stefano", + "1969-12-30": "San Ruggero", + "1970-01-01": "Capodanno", + "1970-01-06": "Epifania del Signore", + "1970-01-13": "Sant'Ilario di Poitiers", + "1970-01-19": "San Bassiano", + "1970-01-20": "San Sebastiano", + "1970-01-22": "San Gaudenzio", + "1970-01-29": "Sant'Ercolano e San Lorenzo", + "1970-01-31": "San Geminiano", + "1970-02-04": "Madonna del Fuoco", + "1970-02-05": "Sant'Agata", + "1970-02-12": "Madonna del Pilerio", + "1970-02-13": "Sant'Archelao", + "1970-02-14": "San Modestino; San Valentino", + "1970-02-15": "Santi Faustino e Giovita", + "1970-02-25": "San Gerlando", + "1970-03-01": "San Leoluca", + "1970-03-16": "Santi Ilario e Taziano", + "1970-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1970-03-19": "San Giuseppe", + "1970-03-22": "Madonna dei Sette Veli", + "1970-03-29": "Pasqua di Resurrezione", + "1970-03-30": "Luned\u00ec dell'Angelo", + "1970-04-23": "San Giorgio", + "1970-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1970-04-27": "San Liberale", + "1970-05-01": "Festa dei Lavoratori", + "1970-05-03": "San Nicola Pellegrino", + "1970-05-04": "San Ciriaco", + "1970-05-05": "San Secondo di Asti", + "1970-05-08": "San Vittore il Moro", + "1970-05-10": "San Cataldo", + "1970-05-11": "San Giustino di Chieti", + "1970-05-14": "San Ponziano", + "1970-05-18": "Luned\u00ec di Pentecoste", + "1970-05-19": "San Pietro Celestino", + "1970-05-21": "San Zeno", + "1970-05-22": "Santa Giulia", + "1970-05-30": "San Gerardo di Potenza", + "1970-06-01": "San Crescentino", + "1970-06-02": "Festa della Repubblica", + "1970-06-03": "Madonna della Lettera", + "1970-06-10": "San Massimo D'Aveia", + "1970-06-13": "Sant'Antonio di Padova", + "1970-06-17": "San Ranieri", + "1970-06-19": "San Gervasio e San Protasio", + "1970-06-20": "San Silverio", + "1970-06-24": "San Giovanni Battista", + "1970-06-26": "San Vigilio", + "1970-06-29": "Santi Pietro e Paolo", + "1970-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1970-07-04": "Sant'Antonino di Piacenza", + "1970-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1970-07-15": "San Giovanni", + "1970-07-16": "San Vitaliano", + "1970-07-23": "Sant'Apollinare", + "1970-07-25": "San Jacopo", + "1970-08-01": "Sant'Eusebio di Vercelli", + "1970-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1970-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1970-08-10": "San Lorenzo", + "1970-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1970-08-16": "Maria Santissima Assunta", + "1970-08-24": "San Bartolomeo apostolo", + "1970-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1970-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1970-09-04": "Santa Rosa da Viterbo", + "1970-09-06": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1970-09-07": "San Grato", + "1970-09-08": "Madonna delle Grazie", + "1970-09-19": "San Gennaro", + "1970-09-20": "San Riccardo di Andria", + "1970-09-21": "San Matteo Evangelista", + "1970-09-24": "San Terenzio di Pesaro", + "1970-09-29": "San Michele Arcangelo", + "1970-10-04": "San Francesco d'Assisi; San Petronio", + "1970-10-09": "San Dionigi", + "1970-10-10": "San Cetteo", + "1970-10-14": "San Gaudenzio", + "1970-10-30": "San Saturnino di Cagliari", + "1970-11-01": "Tutti i Santi", + "1970-11-03": "San Giusto", + "1970-11-10": "San Baudolino", + "1970-11-11": "San Martino", + "1970-11-13": "Sant'Omobono", + "1970-11-24": "San Prospero Vescovo", + "1970-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1970-12-01": "Sant'Ansano", + "1970-12-04": "Santa Barbara", + "1970-12-06": "San Nicola", + "1970-12-07": "Sant'Ambrogio", + "1970-12-08": "Immacolata Concezione", + "1970-12-09": "San Siro", + "1970-12-13": "Santa Lucia", + "1970-12-19": "San Berardo da Pagliara", + "1970-12-25": "Natale", + "1970-12-26": "Santo Stefano", + "1970-12-30": "San Ruggero", + "1971-01-01": "Capodanno", + "1971-01-06": "Epifania del Signore", + "1971-01-13": "Sant'Ilario di Poitiers", + "1971-01-19": "San Bassiano", + "1971-01-20": "San Sebastiano", + "1971-01-22": "San Gaudenzio", + "1971-01-29": "Sant'Ercolano e San Lorenzo", + "1971-01-31": "San Geminiano", + "1971-02-04": "Madonna del Fuoco", + "1971-02-05": "Sant'Agata", + "1971-02-12": "Madonna del Pilerio", + "1971-02-13": "Sant'Archelao", + "1971-02-14": "San Modestino; San Valentino", + "1971-02-15": "Santi Faustino e Giovita", + "1971-02-25": "San Gerlando", + "1971-03-01": "San Leoluca", + "1971-03-16": "Santi Ilario e Taziano", + "1971-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1971-03-19": "San Giuseppe", + "1971-03-22": "Madonna dei Sette Veli", + "1971-04-11": "Pasqua di Resurrezione", + "1971-04-12": "Luned\u00ec dell'Angelo", + "1971-04-23": "San Giorgio", + "1971-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1971-04-27": "San Liberale", + "1971-05-01": "Festa dei Lavoratori", + "1971-05-03": "San Nicola Pellegrino", + "1971-05-04": "San Ciriaco; San Secondo di Asti", + "1971-05-08": "San Vittore il Moro", + "1971-05-10": "San Cataldo", + "1971-05-11": "San Giustino di Chieti", + "1971-05-13": "San Ponziano", + "1971-05-19": "San Pietro Celestino", + "1971-05-21": "San Zeno", + "1971-05-22": "Santa Giulia", + "1971-05-30": "San Gerardo di Potenza", + "1971-05-31": "Luned\u00ec di Pentecoste", + "1971-06-01": "San Crescentino", + "1971-06-02": "Festa della Repubblica", + "1971-06-03": "Madonna della Lettera", + "1971-06-10": "San Massimo D'Aveia", + "1971-06-13": "Sant'Antonio di Padova", + "1971-06-17": "San Ranieri", + "1971-06-19": "San Gervasio e San Protasio", + "1971-06-20": "San Silverio", + "1971-06-24": "San Giovanni Battista", + "1971-06-26": "San Vigilio", + "1971-06-29": "Santi Pietro e Paolo", + "1971-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1971-07-04": "Sant'Antonino di Piacenza", + "1971-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1971-07-15": "San Giovanni", + "1971-07-16": "San Vitaliano", + "1971-07-23": "Sant'Apollinare", + "1971-07-25": "San Jacopo", + "1971-08-01": "Sant'Eusebio di Vercelli", + "1971-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1971-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1971-08-10": "San Lorenzo", + "1971-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1971-08-16": "Maria Santissima Assunta", + "1971-08-24": "San Bartolomeo apostolo", + "1971-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1971-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1971-09-04": "Santa Rosa da Viterbo", + "1971-09-05": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1971-09-07": "San Grato", + "1971-09-08": "Madonna delle Grazie", + "1971-09-19": "San Gennaro; San Riccardo di Andria", + "1971-09-21": "San Matteo Evangelista", + "1971-09-24": "San Terenzio di Pesaro", + "1971-09-29": "San Michele Arcangelo", + "1971-10-04": "San Francesco d'Assisi; San Petronio", + "1971-10-09": "San Dionigi", + "1971-10-10": "San Cetteo", + "1971-10-14": "San Gaudenzio", + "1971-10-30": "San Saturnino di Cagliari", + "1971-11-01": "Tutti i Santi", + "1971-11-03": "San Giusto", + "1971-11-10": "San Baudolino", + "1971-11-11": "San Martino", + "1971-11-13": "Sant'Omobono", + "1971-11-24": "San Prospero Vescovo", + "1971-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1971-12-01": "Sant'Ansano", + "1971-12-04": "Santa Barbara", + "1971-12-06": "San Nicola", + "1971-12-07": "Sant'Ambrogio", + "1971-12-08": "Immacolata Concezione", + "1971-12-09": "San Siro", + "1971-12-13": "Santa Lucia", + "1971-12-19": "San Berardo da Pagliara", + "1971-12-25": "Natale", + "1971-12-26": "Santo Stefano", + "1971-12-30": "San Ruggero", + "1972-01-01": "Capodanno", + "1972-01-06": "Epifania del Signore", + "1972-01-13": "Sant'Ilario di Poitiers", + "1972-01-19": "San Bassiano", + "1972-01-20": "San Sebastiano", + "1972-01-22": "San Gaudenzio", + "1972-01-29": "Sant'Ercolano e San Lorenzo", + "1972-01-31": "San Geminiano", + "1972-02-04": "Madonna del Fuoco", + "1972-02-05": "Sant'Agata", + "1972-02-12": "Madonna del Pilerio", + "1972-02-13": "Sant'Archelao", + "1972-02-14": "San Modestino; San Valentino", + "1972-02-15": "Santi Faustino e Giovita", + "1972-02-25": "San Gerlando", + "1972-03-01": "San Leoluca", + "1972-03-16": "Santi Ilario e Taziano", + "1972-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1972-03-19": "San Giuseppe", + "1972-03-22": "Madonna dei Sette Veli", + "1972-04-02": "Pasqua di Resurrezione", + "1972-04-03": "Luned\u00ec dell'Angelo", + "1972-04-23": "San Giorgio", + "1972-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1972-04-27": "San Liberale", + "1972-05-01": "Festa dei Lavoratori", + "1972-05-02": "San Secondo di Asti", + "1972-05-03": "San Nicola Pellegrino", + "1972-05-04": "San Ciriaco", + "1972-05-08": "San Vittore il Moro", + "1972-05-10": "San Cataldo", + "1972-05-11": "San Giustino di Chieti", + "1972-05-18": "San Ponziano", + "1972-05-19": "San Pietro Celestino", + "1972-05-21": "San Zeno", + "1972-05-22": "Luned\u00ec di Pentecoste; Santa Giulia", + "1972-05-30": "San Gerardo di Potenza", + "1972-06-01": "San Crescentino", + "1972-06-02": "Festa della Repubblica", + "1972-06-03": "Madonna della Lettera", + "1972-06-10": "San Massimo D'Aveia", + "1972-06-13": "Sant'Antonio di Padova", + "1972-06-17": "San Ranieri", + "1972-06-19": "San Gervasio e San Protasio", + "1972-06-20": "San Silverio", + "1972-06-24": "San Giovanni Battista", + "1972-06-26": "San Vigilio", + "1972-06-29": "Santi Pietro e Paolo", + "1972-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1972-07-04": "Sant'Antonino di Piacenza", + "1972-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1972-07-15": "San Giovanni", + "1972-07-16": "San Vitaliano", + "1972-07-23": "Sant'Apollinare", + "1972-07-25": "San Jacopo", + "1972-08-01": "Sant'Eusebio di Vercelli", + "1972-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1972-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1972-08-10": "San Lorenzo", + "1972-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1972-08-16": "Maria Santissima Assunta", + "1972-08-24": "San Bartolomeo apostolo", + "1972-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1972-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1972-09-03": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1972-09-04": "Santa Rosa da Viterbo", + "1972-09-07": "San Grato", + "1972-09-08": "Madonna delle Grazie", + "1972-09-17": "San Riccardo di Andria", + "1972-09-19": "San Gennaro", + "1972-09-21": "San Matteo Evangelista", + "1972-09-24": "San Terenzio di Pesaro", + "1972-09-29": "San Michele Arcangelo", + "1972-10-04": "San Francesco d'Assisi; San Petronio", + "1972-10-09": "San Dionigi", + "1972-10-10": "San Cetteo", + "1972-10-14": "San Gaudenzio", + "1972-10-30": "San Saturnino di Cagliari", + "1972-11-01": "Tutti i Santi", + "1972-11-03": "San Giusto", + "1972-11-10": "San Baudolino", + "1972-11-11": "San Martino", + "1972-11-13": "Sant'Omobono", + "1972-11-24": "San Prospero Vescovo", + "1972-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1972-12-01": "Sant'Ansano", + "1972-12-04": "Santa Barbara", + "1972-12-06": "San Nicola", + "1972-12-07": "Sant'Ambrogio", + "1972-12-08": "Immacolata Concezione", + "1972-12-09": "San Siro", + "1972-12-13": "Santa Lucia", + "1972-12-19": "San Berardo da Pagliara", + "1972-12-25": "Natale", + "1972-12-26": "Santo Stefano", + "1972-12-30": "San Ruggero", + "1973-01-01": "Capodanno", + "1973-01-06": "Epifania del Signore", + "1973-01-13": "Sant'Ilario di Poitiers", + "1973-01-19": "San Bassiano", + "1973-01-20": "San Sebastiano", + "1973-01-22": "San Gaudenzio", + "1973-01-29": "Sant'Ercolano e San Lorenzo", + "1973-01-31": "San Geminiano", + "1973-02-04": "Madonna del Fuoco", + "1973-02-05": "Sant'Agata", + "1973-02-12": "Madonna del Pilerio", + "1973-02-13": "Sant'Archelao", + "1973-02-14": "San Modestino; San Valentino", + "1973-02-15": "Santi Faustino e Giovita", + "1973-02-25": "San Gerlando", + "1973-03-01": "San Leoluca", + "1973-03-16": "Santi Ilario e Taziano", + "1973-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1973-03-19": "San Giuseppe", + "1973-03-22": "Madonna dei Sette Veli", + "1973-04-22": "Pasqua di Resurrezione", + "1973-04-23": "Luned\u00ec dell'Angelo; San Giorgio", + "1973-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1973-04-27": "San Liberale", + "1973-05-01": "Festa dei Lavoratori; San Secondo di Asti", + "1973-05-03": "San Nicola Pellegrino", + "1973-05-04": "San Ciriaco", + "1973-05-08": "San Vittore il Moro", + "1973-05-10": "San Cataldo", + "1973-05-11": "San Giustino di Chieti", + "1973-05-17": "San Ponziano", + "1973-05-19": "San Pietro Celestino", + "1973-05-21": "San Zeno", + "1973-05-22": "Santa Giulia", + "1973-05-30": "San Gerardo di Potenza", + "1973-06-01": "San Crescentino", + "1973-06-02": "Festa della Repubblica", + "1973-06-03": "Madonna della Lettera", + "1973-06-10": "San Massimo D'Aveia", + "1973-06-11": "Luned\u00ec di Pentecoste", + "1973-06-13": "Sant'Antonio di Padova", + "1973-06-17": "San Ranieri", + "1973-06-19": "San Gervasio e San Protasio", + "1973-06-20": "San Silverio", + "1973-06-24": "San Giovanni Battista", + "1973-06-26": "San Vigilio", + "1973-06-29": "Santi Pietro e Paolo", + "1973-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1973-07-04": "Sant'Antonino di Piacenza", + "1973-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1973-07-15": "San Giovanni", + "1973-07-16": "San Vitaliano", + "1973-07-23": "Sant'Apollinare", + "1973-07-25": "San Jacopo", + "1973-08-01": "Sant'Eusebio di Vercelli", + "1973-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1973-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1973-08-10": "San Lorenzo", + "1973-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1973-08-16": "Maria Santissima Assunta", + "1973-08-24": "San Bartolomeo apostolo", + "1973-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1973-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1973-09-02": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1973-09-04": "Santa Rosa da Viterbo", + "1973-09-07": "San Grato", + "1973-09-08": "Madonna delle Grazie", + "1973-09-16": "San Riccardo di Andria", + "1973-09-19": "San Gennaro", + "1973-09-21": "San Matteo Evangelista", + "1973-09-24": "San Terenzio di Pesaro", + "1973-09-29": "San Michele Arcangelo", + "1973-10-04": "San Francesco d'Assisi; San Petronio", + "1973-10-09": "San Dionigi", + "1973-10-10": "San Cetteo", + "1973-10-14": "San Gaudenzio", + "1973-10-30": "San Saturnino di Cagliari", + "1973-11-01": "Tutti i Santi", + "1973-11-03": "San Giusto", + "1973-11-10": "San Baudolino", + "1973-11-11": "San Martino", + "1973-11-13": "Sant'Omobono", + "1973-11-24": "San Prospero Vescovo", + "1973-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1973-12-01": "Sant'Ansano", + "1973-12-04": "Santa Barbara", + "1973-12-06": "San Nicola", + "1973-12-07": "Sant'Ambrogio", + "1973-12-08": "Immacolata Concezione", + "1973-12-09": "San Siro", + "1973-12-13": "Santa Lucia", + "1973-12-19": "San Berardo da Pagliara", + "1973-12-25": "Natale", + "1973-12-26": "Santo Stefano", + "1973-12-30": "San Ruggero", + "1974-01-01": "Capodanno", + "1974-01-06": "Epifania del Signore", + "1974-01-13": "Sant'Ilario di Poitiers", + "1974-01-19": "San Bassiano", + "1974-01-20": "San Sebastiano", + "1974-01-22": "San Gaudenzio", + "1974-01-29": "Sant'Ercolano e San Lorenzo", + "1974-01-31": "San Geminiano", + "1974-02-04": "Madonna del Fuoco", + "1974-02-05": "Sant'Agata", + "1974-02-12": "Madonna del Pilerio", + "1974-02-13": "Sant'Archelao", + "1974-02-14": "San Modestino; San Valentino", + "1974-02-15": "Santi Faustino e Giovita", + "1974-02-25": "San Gerlando", + "1974-03-01": "San Leoluca", + "1974-03-16": "Santi Ilario e Taziano", + "1974-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1974-03-19": "San Giuseppe", + "1974-03-22": "Madonna dei Sette Veli", + "1974-04-14": "Pasqua di Resurrezione", + "1974-04-15": "Luned\u00ec dell'Angelo", + "1974-04-23": "San Giorgio", + "1974-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1974-04-27": "San Liberale", + "1974-05-01": "Festa dei Lavoratori", + "1974-05-03": "San Nicola Pellegrino", + "1974-05-04": "San Ciriaco", + "1974-05-07": "San Secondo di Asti", + "1974-05-08": "San Vittore il Moro", + "1974-05-10": "San Cataldo", + "1974-05-11": "San Giustino di Chieti", + "1974-05-16": "San Ponziano", + "1974-05-19": "San Pietro Celestino", + "1974-05-21": "San Zeno", + "1974-05-22": "Santa Giulia", + "1974-05-30": "San Gerardo di Potenza", + "1974-06-01": "San Crescentino", + "1974-06-02": "Festa della Repubblica", + "1974-06-03": "Luned\u00ec di Pentecoste; Madonna della Lettera", + "1974-06-10": "San Massimo D'Aveia", + "1974-06-13": "Sant'Antonio di Padova", + "1974-06-17": "San Ranieri", + "1974-06-19": "San Gervasio e San Protasio", + "1974-06-20": "San Silverio", + "1974-06-24": "San Giovanni Battista", + "1974-06-26": "San Vigilio", + "1974-06-29": "Santi Pietro e Paolo", + "1974-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1974-07-04": "Sant'Antonino di Piacenza", + "1974-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1974-07-15": "San Giovanni", + "1974-07-16": "San Vitaliano", + "1974-07-23": "Sant'Apollinare", + "1974-07-25": "San Jacopo", + "1974-08-01": "Sant'Eusebio di Vercelli", + "1974-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1974-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1974-08-10": "San Lorenzo", + "1974-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1974-08-16": "Maria Santissima Assunta", + "1974-08-24": "San Bartolomeo apostolo", + "1974-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1974-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1974-09-01": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1974-09-04": "Santa Rosa da Viterbo", + "1974-09-07": "San Grato", + "1974-09-08": "Madonna delle Grazie", + "1974-09-15": "San Riccardo di Andria", + "1974-09-19": "San Gennaro", + "1974-09-21": "San Matteo Evangelista", + "1974-09-24": "San Terenzio di Pesaro", + "1974-09-29": "San Michele Arcangelo", + "1974-10-04": "San Francesco d'Assisi; San Petronio", + "1974-10-09": "San Dionigi", + "1974-10-10": "San Cetteo", + "1974-10-14": "San Gaudenzio", + "1974-10-30": "San Saturnino di Cagliari", + "1974-11-01": "Tutti i Santi", + "1974-11-03": "San Giusto", + "1974-11-10": "San Baudolino", + "1974-11-11": "San Martino", + "1974-11-13": "Sant'Omobono", + "1974-11-24": "San Prospero Vescovo", + "1974-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1974-12-01": "Sant'Ansano", + "1974-12-04": "Santa Barbara", + "1974-12-06": "San Nicola", + "1974-12-07": "Sant'Ambrogio", + "1974-12-08": "Immacolata Concezione", + "1974-12-09": "San Siro", + "1974-12-13": "Santa Lucia", + "1974-12-19": "San Berardo da Pagliara", + "1974-12-25": "Natale", + "1974-12-26": "Santo Stefano", + "1974-12-30": "San Ruggero", + "1975-01-01": "Capodanno", + "1975-01-06": "Epifania del Signore", + "1975-01-13": "Sant'Ilario di Poitiers", + "1975-01-19": "San Bassiano", + "1975-01-20": "San Sebastiano", + "1975-01-22": "San Gaudenzio", + "1975-01-29": "Sant'Ercolano e San Lorenzo", + "1975-01-31": "San Geminiano", + "1975-02-04": "Madonna del Fuoco", + "1975-02-05": "Sant'Agata", + "1975-02-12": "Madonna del Pilerio", + "1975-02-13": "Sant'Archelao", + "1975-02-14": "San Modestino; San Valentino", + "1975-02-15": "Santi Faustino e Giovita", + "1975-02-25": "San Gerlando", + "1975-03-01": "San Leoluca", + "1975-03-16": "Santi Ilario e Taziano", + "1975-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1975-03-19": "San Giuseppe", + "1975-03-22": "Madonna dei Sette Veli", + "1975-03-30": "Pasqua di Resurrezione", + "1975-03-31": "Luned\u00ec dell'Angelo", + "1975-04-23": "San Giorgio", + "1975-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1975-04-27": "San Liberale", + "1975-05-01": "Festa dei Lavoratori", + "1975-05-03": "San Nicola Pellegrino", + "1975-05-04": "San Ciriaco", + "1975-05-06": "San Secondo di Asti", + "1975-05-08": "San Vittore il Moro", + "1975-05-10": "San Cataldo", + "1975-05-11": "San Giustino di Chieti", + "1975-05-15": "San Ponziano", + "1975-05-19": "Luned\u00ec di Pentecoste; San Pietro Celestino", + "1975-05-21": "San Zeno", + "1975-05-22": "Santa Giulia", + "1975-05-30": "San Gerardo di Potenza", + "1975-06-01": "San Crescentino", + "1975-06-02": "Festa della Repubblica", + "1975-06-03": "Madonna della Lettera", + "1975-06-10": "San Massimo D'Aveia", + "1975-06-13": "Sant'Antonio di Padova", + "1975-06-17": "San Ranieri", + "1975-06-19": "San Gervasio e San Protasio", + "1975-06-20": "San Silverio", + "1975-06-24": "San Giovanni Battista", + "1975-06-26": "San Vigilio", + "1975-06-29": "Santi Pietro e Paolo", + "1975-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1975-07-04": "Sant'Antonino di Piacenza", + "1975-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1975-07-15": "San Giovanni", + "1975-07-16": "San Vitaliano", + "1975-07-23": "Sant'Apollinare", + "1975-07-25": "San Jacopo", + "1975-08-01": "Sant'Eusebio di Vercelli", + "1975-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1975-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1975-08-10": "San Lorenzo", + "1975-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1975-08-16": "Maria Santissima Assunta", + "1975-08-24": "San Bartolomeo apostolo", + "1975-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1975-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1975-09-04": "Santa Rosa da Viterbo", + "1975-09-07": "San Grato; San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1975-09-08": "Madonna delle Grazie", + "1975-09-19": "San Gennaro", + "1975-09-21": "San Matteo Evangelista; San Riccardo di Andria", + "1975-09-24": "San Terenzio di Pesaro", + "1975-09-29": "San Michele Arcangelo", + "1975-10-04": "San Francesco d'Assisi; San Petronio", + "1975-10-09": "San Dionigi", + "1975-10-10": "San Cetteo", + "1975-10-14": "San Gaudenzio", + "1975-10-30": "San Saturnino di Cagliari", + "1975-11-01": "Tutti i Santi", + "1975-11-03": "San Giusto", + "1975-11-10": "San Baudolino", + "1975-11-11": "San Martino", + "1975-11-13": "Sant'Omobono", + "1975-11-24": "San Prospero Vescovo", + "1975-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1975-12-01": "Sant'Ansano", + "1975-12-04": "Santa Barbara", + "1975-12-06": "San Nicola", + "1975-12-07": "Sant'Ambrogio", + "1975-12-08": "Immacolata Concezione", + "1975-12-09": "San Siro", + "1975-12-13": "Santa Lucia", + "1975-12-19": "San Berardo da Pagliara", + "1975-12-25": "Natale", + "1975-12-26": "Santo Stefano", + "1975-12-30": "San Ruggero", + "1976-01-01": "Capodanno", + "1976-01-06": "Epifania del Signore", + "1976-01-13": "Sant'Ilario di Poitiers", + "1976-01-19": "San Bassiano", + "1976-01-20": "San Sebastiano", + "1976-01-22": "San Gaudenzio", + "1976-01-29": "Sant'Ercolano e San Lorenzo", + "1976-01-31": "San Geminiano", + "1976-02-04": "Madonna del Fuoco", + "1976-02-05": "Sant'Agata", + "1976-02-12": "Madonna del Pilerio", + "1976-02-13": "Sant'Archelao", + "1976-02-14": "San Modestino; San Valentino", + "1976-02-15": "Santi Faustino e Giovita", + "1976-02-25": "San Gerlando", + "1976-03-01": "San Leoluca", + "1976-03-16": "Santi Ilario e Taziano", + "1976-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1976-03-19": "San Giuseppe", + "1976-03-22": "Madonna dei Sette Veli", + "1976-04-18": "Pasqua di Resurrezione", + "1976-04-19": "Luned\u00ec dell'Angelo", + "1976-04-23": "San Giorgio", + "1976-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1976-04-27": "San Liberale", + "1976-05-01": "Festa dei Lavoratori", + "1976-05-03": "San Nicola Pellegrino", + "1976-05-04": "San Ciriaco; San Secondo di Asti", + "1976-05-08": "San Vittore il Moro", + "1976-05-10": "San Cataldo", + "1976-05-11": "San Giustino di Chieti", + "1976-05-13": "San Ponziano", + "1976-05-19": "San Pietro Celestino", + "1976-05-21": "San Zeno", + "1976-05-22": "Santa Giulia", + "1976-05-30": "San Gerardo di Potenza", + "1976-06-01": "San Crescentino", + "1976-06-02": "Festa della Repubblica", + "1976-06-03": "Madonna della Lettera", + "1976-06-07": "Luned\u00ec di Pentecoste", + "1976-06-10": "San Massimo D'Aveia", + "1976-06-13": "Sant'Antonio di Padova", + "1976-06-17": "San Ranieri", + "1976-06-19": "San Gervasio e San Protasio", + "1976-06-20": "San Silverio", + "1976-06-24": "San Giovanni Battista", + "1976-06-26": "San Vigilio", + "1976-06-29": "Santi Pietro e Paolo", + "1976-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1976-07-04": "Sant'Antonino di Piacenza", + "1976-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1976-07-15": "San Giovanni", + "1976-07-16": "San Vitaliano", + "1976-07-23": "Sant'Apollinare", + "1976-07-25": "San Jacopo", + "1976-08-01": "Sant'Eusebio di Vercelli", + "1976-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1976-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1976-08-10": "San Lorenzo", + "1976-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1976-08-16": "Maria Santissima Assunta", + "1976-08-24": "San Bartolomeo apostolo", + "1976-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1976-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1976-09-04": "Santa Rosa da Viterbo", + "1976-09-05": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1976-09-07": "San Grato", + "1976-09-08": "Madonna delle Grazie", + "1976-09-19": "San Gennaro; San Riccardo di Andria", + "1976-09-21": "San Matteo Evangelista", + "1976-09-24": "San Terenzio di Pesaro", + "1976-09-29": "San Michele Arcangelo", + "1976-10-04": "San Francesco d'Assisi; San Petronio", + "1976-10-09": "San Dionigi", + "1976-10-10": "San Cetteo", + "1976-10-14": "San Gaudenzio", + "1976-10-30": "San Saturnino di Cagliari", + "1976-11-01": "Tutti i Santi", + "1976-11-03": "San Giusto", + "1976-11-10": "San Baudolino", + "1976-11-11": "San Martino", + "1976-11-13": "Sant'Omobono", + "1976-11-24": "San Prospero Vescovo", + "1976-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1976-12-01": "Sant'Ansano", + "1976-12-04": "Santa Barbara", + "1976-12-06": "San Nicola", + "1976-12-07": "Sant'Ambrogio", + "1976-12-08": "Immacolata Concezione", + "1976-12-09": "San Siro", + "1976-12-13": "Santa Lucia", + "1976-12-19": "San Berardo da Pagliara", + "1976-12-25": "Natale", + "1976-12-26": "Santo Stefano", + "1976-12-30": "San Ruggero", + "1977-01-01": "Capodanno", + "1977-01-06": "Epifania del Signore", + "1977-01-13": "Sant'Ilario di Poitiers", + "1977-01-19": "San Bassiano", + "1977-01-20": "San Sebastiano", + "1977-01-22": "San Gaudenzio", + "1977-01-29": "Sant'Ercolano e San Lorenzo", + "1977-01-31": "San Geminiano", + "1977-02-04": "Madonna del Fuoco", + "1977-02-05": "Sant'Agata", + "1977-02-12": "Madonna del Pilerio", + "1977-02-13": "Sant'Archelao", + "1977-02-14": "San Modestino; San Valentino", + "1977-02-15": "Santi Faustino e Giovita", + "1977-02-25": "San Gerlando", + "1977-03-01": "San Leoluca", + "1977-03-16": "Santi Ilario e Taziano", + "1977-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1977-03-19": "San Giuseppe", + "1977-03-22": "Madonna dei Sette Veli", + "1977-04-10": "Pasqua di Resurrezione", + "1977-04-11": "Luned\u00ec dell'Angelo", + "1977-04-23": "San Giorgio", + "1977-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1977-04-27": "San Liberale", + "1977-05-01": "Festa dei Lavoratori", + "1977-05-03": "San Nicola Pellegrino; San Secondo di Asti", + "1977-05-04": "San Ciriaco", + "1977-05-08": "San Vittore il Moro", + "1977-05-10": "San Cataldo", + "1977-05-11": "San Giustino di Chieti", + "1977-05-12": "San Ponziano", + "1977-05-19": "San Pietro Celestino", + "1977-05-21": "San Zeno", + "1977-05-22": "Santa Giulia", + "1977-05-30": "Luned\u00ec di Pentecoste; San Gerardo di Potenza", + "1977-06-01": "San Crescentino", + "1977-06-02": "Festa della Repubblica", + "1977-06-03": "Madonna della Lettera", + "1977-06-10": "San Massimo D'Aveia", + "1977-06-13": "Sant'Antonio di Padova", + "1977-06-17": "San Ranieri", + "1977-06-19": "San Gervasio e San Protasio", + "1977-06-20": "San Silverio", + "1977-06-24": "San Giovanni Battista", + "1977-06-26": "San Vigilio", + "1977-06-29": "Santi Pietro e Paolo", + "1977-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1977-07-04": "Sant'Antonino di Piacenza", + "1977-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1977-07-15": "San Giovanni", + "1977-07-16": "San Vitaliano", + "1977-07-23": "Sant'Apollinare", + "1977-07-25": "San Jacopo", + "1977-08-01": "Sant'Eusebio di Vercelli", + "1977-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1977-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1977-08-10": "San Lorenzo", + "1977-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1977-08-16": "Maria Santissima Assunta", + "1977-08-24": "San Bartolomeo apostolo", + "1977-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1977-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1977-09-04": "San Teodoro d'Amasea e San Lorenzo da Brindisi; Santa Rosa da Viterbo", + "1977-09-07": "San Grato", + "1977-09-08": "Madonna delle Grazie", + "1977-09-18": "San Riccardo di Andria", + "1977-09-19": "San Gennaro", + "1977-09-21": "San Matteo Evangelista", + "1977-09-24": "San Terenzio di Pesaro", + "1977-09-29": "San Michele Arcangelo", + "1977-10-04": "San Francesco d'Assisi; San Petronio", + "1977-10-09": "San Dionigi", + "1977-10-10": "San Cetteo", + "1977-10-14": "San Gaudenzio", + "1977-10-30": "San Saturnino di Cagliari", + "1977-11-01": "Tutti i Santi", + "1977-11-03": "San Giusto", + "1977-11-10": "San Baudolino", + "1977-11-11": "San Martino", + "1977-11-13": "Sant'Omobono", + "1977-11-24": "San Prospero Vescovo", + "1977-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1977-12-01": "Sant'Ansano", + "1977-12-04": "Santa Barbara", + "1977-12-06": "San Nicola", + "1977-12-07": "Sant'Ambrogio", + "1977-12-08": "Immacolata Concezione", + "1977-12-09": "San Siro", + "1977-12-13": "Santa Lucia", + "1977-12-19": "San Berardo da Pagliara", + "1977-12-25": "Natale", + "1977-12-26": "Santo Stefano", + "1977-12-30": "San Ruggero", + "1978-01-01": "Capodanno", + "1978-01-06": "Epifania del Signore", + "1978-01-13": "Sant'Ilario di Poitiers", + "1978-01-19": "San Bassiano", + "1978-01-20": "San Sebastiano", + "1978-01-22": "San Gaudenzio", + "1978-01-29": "Sant'Ercolano e San Lorenzo", + "1978-01-31": "San Geminiano", + "1978-02-04": "Madonna del Fuoco", + "1978-02-05": "Sant'Agata", + "1978-02-12": "Madonna del Pilerio", + "1978-02-13": "Sant'Archelao", + "1978-02-14": "San Modestino; San Valentino", + "1978-02-15": "Santi Faustino e Giovita", + "1978-02-25": "San Gerlando", + "1978-03-01": "San Leoluca", + "1978-03-16": "Santi Ilario e Taziano", + "1978-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1978-03-19": "San Giuseppe", + "1978-03-22": "Madonna dei Sette Veli", + "1978-03-26": "Pasqua di Resurrezione", + "1978-03-27": "Luned\u00ec dell'Angelo", + "1978-04-23": "San Giorgio", + "1978-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1978-04-27": "San Liberale", + "1978-05-01": "Festa dei Lavoratori", + "1978-05-02": "San Secondo di Asti", + "1978-05-03": "San Nicola Pellegrino", + "1978-05-04": "San Ciriaco", + "1978-05-08": "San Vittore il Moro", + "1978-05-10": "San Cataldo", + "1978-05-11": "San Giustino di Chieti", + "1978-05-15": "Luned\u00ec di Pentecoste", + "1978-05-18": "San Ponziano", + "1978-05-19": "San Pietro Celestino", + "1978-05-21": "San Zeno", + "1978-05-22": "Santa Giulia", + "1978-05-30": "San Gerardo di Potenza", + "1978-06-01": "San Crescentino", + "1978-06-02": "Festa della Repubblica", + "1978-06-03": "Madonna della Lettera", + "1978-06-10": "San Massimo D'Aveia", + "1978-06-13": "Sant'Antonio di Padova", + "1978-06-17": "San Ranieri", + "1978-06-19": "San Gervasio e San Protasio", + "1978-06-20": "San Silverio", + "1978-06-24": "San Giovanni Battista", + "1978-06-26": "San Vigilio", + "1978-06-29": "Santi Pietro e Paolo", + "1978-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1978-07-04": "Sant'Antonino di Piacenza", + "1978-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1978-07-15": "San Giovanni", + "1978-07-16": "San Vitaliano", + "1978-07-23": "Sant'Apollinare", + "1978-07-25": "San Jacopo", + "1978-08-01": "Sant'Eusebio di Vercelli", + "1978-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1978-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1978-08-10": "San Lorenzo", + "1978-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1978-08-16": "Maria Santissima Assunta", + "1978-08-24": "San Bartolomeo apostolo", + "1978-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1978-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1978-09-03": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1978-09-04": "Santa Rosa da Viterbo", + "1978-09-07": "San Grato", + "1978-09-08": "Madonna delle Grazie", + "1978-09-17": "San Riccardo di Andria", + "1978-09-19": "San Gennaro", + "1978-09-21": "San Matteo Evangelista", + "1978-09-24": "San Terenzio di Pesaro", + "1978-09-29": "San Michele Arcangelo", + "1978-10-04": "San Francesco d'Assisi; San Petronio", + "1978-10-09": "San Dionigi", + "1978-10-10": "San Cetteo", + "1978-10-14": "San Gaudenzio", + "1978-10-30": "San Saturnino di Cagliari", + "1978-11-01": "Tutti i Santi", + "1978-11-03": "San Giusto", + "1978-11-10": "San Baudolino", + "1978-11-11": "San Martino", + "1978-11-13": "Sant'Omobono", + "1978-11-24": "San Prospero Vescovo", + "1978-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1978-12-01": "Sant'Ansano", + "1978-12-04": "Santa Barbara", + "1978-12-06": "San Nicola", + "1978-12-07": "Sant'Ambrogio", + "1978-12-08": "Immacolata Concezione", + "1978-12-09": "San Siro", + "1978-12-13": "Santa Lucia", + "1978-12-19": "San Berardo da Pagliara", + "1978-12-25": "Natale", + "1978-12-26": "Santo Stefano", + "1978-12-30": "San Ruggero", + "1979-01-01": "Capodanno", + "1979-01-06": "Epifania del Signore", + "1979-01-13": "Sant'Ilario di Poitiers", + "1979-01-19": "San Bassiano", + "1979-01-20": "San Sebastiano", + "1979-01-22": "San Gaudenzio", + "1979-01-29": "Sant'Ercolano e San Lorenzo", + "1979-01-31": "San Geminiano", + "1979-02-04": "Madonna del Fuoco", + "1979-02-05": "Sant'Agata", + "1979-02-12": "Madonna del Pilerio", + "1979-02-13": "Sant'Archelao", + "1979-02-14": "San Modestino; San Valentino", + "1979-02-15": "Santi Faustino e Giovita", + "1979-02-25": "San Gerlando", + "1979-03-01": "San Leoluca", + "1979-03-16": "Santi Ilario e Taziano", + "1979-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1979-03-19": "San Giuseppe", + "1979-03-22": "Madonna dei Sette Veli", + "1979-04-15": "Pasqua di Resurrezione", + "1979-04-16": "Luned\u00ec dell'Angelo", + "1979-04-23": "San Giorgio", + "1979-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1979-04-27": "San Liberale", + "1979-05-01": "Festa dei Lavoratori; San Secondo di Asti", + "1979-05-03": "San Nicola Pellegrino", + "1979-05-04": "San Ciriaco", + "1979-05-08": "San Vittore il Moro", + "1979-05-10": "San Cataldo", + "1979-05-11": "San Giustino di Chieti", + "1979-05-17": "San Ponziano", + "1979-05-19": "San Pietro Celestino", + "1979-05-21": "San Zeno", + "1979-05-22": "Santa Giulia", + "1979-05-30": "San Gerardo di Potenza", + "1979-06-01": "San Crescentino", + "1979-06-02": "Festa della Repubblica", + "1979-06-03": "Madonna della Lettera", + "1979-06-04": "Luned\u00ec di Pentecoste", + "1979-06-10": "San Massimo D'Aveia", + "1979-06-13": "Sant'Antonio di Padova", + "1979-06-17": "San Ranieri", + "1979-06-19": "San Gervasio e San Protasio", + "1979-06-20": "San Silverio", + "1979-06-24": "San Giovanni Battista", + "1979-06-26": "San Vigilio", + "1979-06-29": "Santi Pietro e Paolo", + "1979-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1979-07-04": "Sant'Antonino di Piacenza", + "1979-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1979-07-15": "San Giovanni", + "1979-07-16": "San Vitaliano", + "1979-07-23": "Sant'Apollinare", + "1979-07-25": "San Jacopo", + "1979-08-01": "Sant'Eusebio di Vercelli", + "1979-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1979-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1979-08-10": "San Lorenzo", + "1979-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1979-08-16": "Maria Santissima Assunta", + "1979-08-24": "San Bartolomeo apostolo", + "1979-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1979-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1979-09-02": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1979-09-04": "Santa Rosa da Viterbo", + "1979-09-07": "San Grato", + "1979-09-08": "Madonna delle Grazie", + "1979-09-16": "San Riccardo di Andria", + "1979-09-19": "San Gennaro", + "1979-09-21": "San Matteo Evangelista", + "1979-09-24": "San Terenzio di Pesaro", + "1979-09-29": "San Michele Arcangelo", + "1979-10-04": "San Francesco d'Assisi; San Petronio", + "1979-10-09": "San Dionigi", + "1979-10-10": "San Cetteo", + "1979-10-14": "San Gaudenzio", + "1979-10-30": "San Saturnino di Cagliari", + "1979-11-01": "Tutti i Santi", + "1979-11-03": "San Giusto", + "1979-11-10": "San Baudolino", + "1979-11-11": "San Martino", + "1979-11-13": "Sant'Omobono", + "1979-11-24": "San Prospero Vescovo", + "1979-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1979-12-01": "Sant'Ansano", + "1979-12-04": "Santa Barbara", + "1979-12-06": "San Nicola", + "1979-12-07": "Sant'Ambrogio", + "1979-12-08": "Immacolata Concezione", + "1979-12-09": "San Siro", + "1979-12-13": "Santa Lucia", + "1979-12-19": "San Berardo da Pagliara", + "1979-12-25": "Natale", + "1979-12-26": "Santo Stefano", + "1979-12-30": "San Ruggero", + "1980-01-01": "Capodanno", + "1980-01-06": "Epifania del Signore", + "1980-01-13": "Sant'Ilario di Poitiers", + "1980-01-19": "San Bassiano", + "1980-01-20": "San Sebastiano", + "1980-01-22": "San Gaudenzio", + "1980-01-29": "Sant'Ercolano e San Lorenzo", + "1980-01-31": "San Geminiano", + "1980-02-04": "Madonna del Fuoco", + "1980-02-05": "Sant'Agata", + "1980-02-12": "Madonna del Pilerio", + "1980-02-13": "Sant'Archelao", + "1980-02-14": "San Modestino; San Valentino", + "1980-02-15": "Santi Faustino e Giovita", + "1980-02-25": "San Gerlando", + "1980-03-01": "San Leoluca", + "1980-03-16": "Santi Ilario e Taziano", + "1980-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1980-03-19": "San Giuseppe", + "1980-03-22": "Madonna dei Sette Veli", + "1980-04-06": "Pasqua di Resurrezione", + "1980-04-07": "Luned\u00ec dell'Angelo", + "1980-04-23": "San Giorgio", + "1980-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1980-04-27": "San Liberale", + "1980-05-01": "Festa dei Lavoratori", + "1980-05-03": "San Nicola Pellegrino", + "1980-05-04": "San Ciriaco", + "1980-05-06": "San Secondo di Asti", + "1980-05-08": "San Vittore il Moro", + "1980-05-10": "San Cataldo", + "1980-05-11": "San Giustino di Chieti", + "1980-05-15": "San Ponziano", + "1980-05-19": "San Pietro Celestino", + "1980-05-21": "San Zeno", + "1980-05-22": "Santa Giulia", + "1980-05-26": "Luned\u00ec di Pentecoste", + "1980-05-30": "San Gerardo di Potenza", + "1980-06-01": "San Crescentino", + "1980-06-02": "Festa della Repubblica", + "1980-06-03": "Madonna della Lettera", + "1980-06-10": "San Massimo D'Aveia", + "1980-06-13": "Sant'Antonio di Padova", + "1980-06-17": "San Ranieri", + "1980-06-19": "San Gervasio e San Protasio", + "1980-06-20": "San Silverio", + "1980-06-24": "San Giovanni Battista", + "1980-06-26": "San Vigilio", + "1980-06-29": "Santi Pietro e Paolo", + "1980-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1980-07-04": "Sant'Antonino di Piacenza", + "1980-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1980-07-15": "San Giovanni", + "1980-07-16": "San Vitaliano", + "1980-07-23": "Sant'Apollinare", + "1980-07-25": "San Jacopo", + "1980-08-01": "Sant'Eusebio di Vercelli", + "1980-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1980-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1980-08-10": "San Lorenzo", + "1980-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1980-08-16": "Maria Santissima Assunta", + "1980-08-24": "San Bartolomeo apostolo", + "1980-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1980-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1980-09-04": "Santa Rosa da Viterbo", + "1980-09-07": "San Grato; San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1980-09-08": "Madonna delle Grazie", + "1980-09-19": "San Gennaro", + "1980-09-21": "San Matteo Evangelista; San Riccardo di Andria", + "1980-09-24": "San Terenzio di Pesaro", + "1980-09-29": "San Michele Arcangelo", + "1980-10-04": "San Francesco d'Assisi; San Petronio", + "1980-10-09": "San Dionigi", + "1980-10-10": "San Cetteo", + "1980-10-14": "San Gaudenzio", + "1980-10-30": "San Saturnino di Cagliari", + "1980-11-01": "Tutti i Santi", + "1980-11-03": "San Giusto", + "1980-11-10": "San Baudolino", + "1980-11-11": "San Martino", + "1980-11-13": "Sant'Omobono", + "1980-11-24": "San Prospero Vescovo", + "1980-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1980-12-01": "Sant'Ansano", + "1980-12-04": "Santa Barbara", + "1980-12-06": "San Nicola", + "1980-12-07": "Sant'Ambrogio", + "1980-12-08": "Immacolata Concezione", + "1980-12-09": "San Siro", + "1980-12-13": "Santa Lucia", + "1980-12-19": "San Berardo da Pagliara", + "1980-12-25": "Natale", + "1980-12-26": "Santo Stefano", + "1980-12-30": "San Ruggero", + "1981-01-01": "Capodanno", + "1981-01-06": "Epifania del Signore", + "1981-01-13": "Sant'Ilario di Poitiers", + "1981-01-19": "San Bassiano", + "1981-01-20": "San Sebastiano", + "1981-01-22": "San Gaudenzio", + "1981-01-29": "Sant'Ercolano e San Lorenzo", + "1981-01-31": "San Geminiano", + "1981-02-04": "Madonna del Fuoco", + "1981-02-05": "Sant'Agata", + "1981-02-12": "Madonna del Pilerio", + "1981-02-13": "Sant'Archelao", + "1981-02-14": "San Modestino; San Valentino", + "1981-02-15": "Santi Faustino e Giovita", + "1981-02-25": "San Gerlando", + "1981-03-01": "San Leoluca", + "1981-03-16": "Santi Ilario e Taziano", + "1981-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1981-03-19": "San Giuseppe", + "1981-03-22": "Madonna dei Sette Veli", + "1981-04-19": "Pasqua di Resurrezione", + "1981-04-20": "Luned\u00ec dell'Angelo", + "1981-04-23": "San Giorgio", + "1981-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1981-04-27": "San Liberale", + "1981-05-01": "Festa dei Lavoratori", + "1981-05-03": "San Nicola Pellegrino", + "1981-05-04": "San Ciriaco", + "1981-05-05": "San Secondo di Asti", + "1981-05-08": "San Vittore il Moro", + "1981-05-10": "San Cataldo", + "1981-05-11": "San Giustino di Chieti", + "1981-05-14": "San Ponziano", + "1981-05-19": "San Pietro Celestino", + "1981-05-21": "San Zeno", + "1981-05-22": "Santa Giulia", + "1981-05-30": "San Gerardo di Potenza", + "1981-06-01": "San Crescentino", + "1981-06-02": "Festa della Repubblica", + "1981-06-03": "Madonna della Lettera", + "1981-06-08": "Luned\u00ec di Pentecoste", + "1981-06-10": "San Massimo D'Aveia", + "1981-06-13": "Sant'Antonio di Padova", + "1981-06-17": "San Ranieri", + "1981-06-19": "San Gervasio e San Protasio", + "1981-06-20": "San Silverio", + "1981-06-24": "San Giovanni Battista", + "1981-06-26": "San Vigilio", + "1981-06-29": "Santi Pietro e Paolo", + "1981-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1981-07-04": "Sant'Antonino di Piacenza", + "1981-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1981-07-15": "San Giovanni", + "1981-07-16": "San Vitaliano", + "1981-07-23": "Sant'Apollinare", + "1981-07-25": "San Jacopo", + "1981-08-01": "Sant'Eusebio di Vercelli", + "1981-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1981-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1981-08-10": "San Lorenzo", + "1981-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1981-08-16": "Maria Santissima Assunta", + "1981-08-24": "San Bartolomeo apostolo", + "1981-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1981-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1981-09-04": "Santa Rosa da Viterbo", + "1981-09-06": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1981-09-07": "San Grato", + "1981-09-08": "Madonna delle Grazie", + "1981-09-19": "San Gennaro", + "1981-09-20": "San Riccardo di Andria", + "1981-09-21": "San Matteo Evangelista", + "1981-09-24": "San Terenzio di Pesaro", + "1981-09-29": "San Michele Arcangelo", + "1981-10-04": "San Francesco d'Assisi; San Petronio", + "1981-10-09": "San Dionigi", + "1981-10-10": "San Cetteo", + "1981-10-14": "San Gaudenzio", + "1981-10-30": "San Saturnino di Cagliari", + "1981-11-01": "Tutti i Santi", + "1981-11-03": "San Giusto", + "1981-11-10": "San Baudolino", + "1981-11-11": "San Martino", + "1981-11-13": "Sant'Omobono", + "1981-11-24": "San Prospero Vescovo", + "1981-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1981-12-01": "Sant'Ansano", + "1981-12-04": "Santa Barbara", + "1981-12-06": "San Nicola", + "1981-12-07": "Sant'Ambrogio", + "1981-12-08": "Immacolata Concezione", + "1981-12-09": "San Siro", + "1981-12-13": "Santa Lucia", + "1981-12-19": "San Berardo da Pagliara", + "1981-12-25": "Natale", + "1981-12-26": "Santo Stefano", + "1981-12-30": "San Ruggero", + "1982-01-01": "Capodanno", + "1982-01-06": "Epifania del Signore", + "1982-01-13": "Sant'Ilario di Poitiers", + "1982-01-19": "San Bassiano", + "1982-01-20": "San Sebastiano", + "1982-01-22": "San Gaudenzio", + "1982-01-29": "Sant'Ercolano e San Lorenzo", + "1982-01-31": "San Geminiano", + "1982-02-04": "Madonna del Fuoco", + "1982-02-05": "Sant'Agata", + "1982-02-12": "Madonna del Pilerio", + "1982-02-13": "Sant'Archelao", + "1982-02-14": "San Modestino; San Valentino", + "1982-02-15": "Santi Faustino e Giovita", + "1982-02-25": "San Gerlando", + "1982-03-01": "San Leoluca", + "1982-03-16": "Santi Ilario e Taziano", + "1982-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1982-03-19": "San Giuseppe", + "1982-03-22": "Madonna dei Sette Veli", + "1982-04-11": "Pasqua di Resurrezione", + "1982-04-12": "Luned\u00ec dell'Angelo", + "1982-04-23": "San Giorgio", + "1982-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1982-04-27": "San Liberale", + "1982-05-01": "Festa dei Lavoratori", + "1982-05-03": "San Nicola Pellegrino", + "1982-05-04": "San Ciriaco; San Secondo di Asti", + "1982-05-08": "San Vittore il Moro", + "1982-05-10": "San Cataldo", + "1982-05-11": "San Giustino di Chieti", + "1982-05-13": "San Ponziano", + "1982-05-19": "San Pietro Celestino", + "1982-05-21": "San Zeno", + "1982-05-22": "Santa Giulia", + "1982-05-30": "San Gerardo di Potenza", + "1982-05-31": "Luned\u00ec di Pentecoste", + "1982-06-01": "San Crescentino", + "1982-06-02": "Festa della Repubblica", + "1982-06-03": "Madonna della Lettera", + "1982-06-10": "San Massimo D'Aveia", + "1982-06-13": "Sant'Antonio di Padova", + "1982-06-17": "San Ranieri", + "1982-06-19": "San Gervasio e San Protasio", + "1982-06-20": "San Silverio", + "1982-06-24": "San Giovanni Battista", + "1982-06-26": "San Vigilio", + "1982-06-29": "Santi Pietro e Paolo", + "1982-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1982-07-04": "Sant'Antonino di Piacenza", + "1982-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1982-07-15": "San Giovanni", + "1982-07-16": "San Vitaliano", + "1982-07-23": "Sant'Apollinare", + "1982-07-25": "San Jacopo", + "1982-08-01": "Sant'Eusebio di Vercelli", + "1982-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1982-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1982-08-10": "San Lorenzo", + "1982-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1982-08-16": "Maria Santissima Assunta", + "1982-08-24": "San Bartolomeo apostolo", + "1982-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1982-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1982-09-04": "Santa Rosa da Viterbo", + "1982-09-05": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1982-09-07": "San Grato", + "1982-09-08": "Madonna delle Grazie", + "1982-09-19": "San Gennaro; San Riccardo di Andria", + "1982-09-21": "San Matteo Evangelista", + "1982-09-24": "San Terenzio di Pesaro", + "1982-09-29": "San Michele Arcangelo", + "1982-10-04": "San Francesco d'Assisi; San Petronio", + "1982-10-09": "San Dionigi", + "1982-10-10": "San Cetteo", + "1982-10-14": "San Gaudenzio", + "1982-10-30": "San Saturnino di Cagliari", + "1982-11-01": "Tutti i Santi", + "1982-11-03": "San Giusto", + "1982-11-10": "San Baudolino", + "1982-11-11": "San Martino", + "1982-11-13": "Sant'Omobono", + "1982-11-24": "San Prospero Vescovo", + "1982-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1982-12-01": "Sant'Ansano", + "1982-12-04": "Santa Barbara", + "1982-12-06": "San Nicola", + "1982-12-07": "Sant'Ambrogio", + "1982-12-08": "Immacolata Concezione", + "1982-12-09": "San Siro", + "1982-12-13": "Santa Lucia", + "1982-12-19": "San Berardo da Pagliara", + "1982-12-25": "Natale", + "1982-12-26": "Santo Stefano", + "1982-12-30": "San Ruggero", + "1983-01-01": "Capodanno", + "1983-01-06": "Epifania del Signore", + "1983-01-13": "Sant'Ilario di Poitiers", + "1983-01-19": "San Bassiano", + "1983-01-20": "San Sebastiano", + "1983-01-22": "San Gaudenzio", + "1983-01-29": "Sant'Ercolano e San Lorenzo", + "1983-01-31": "San Geminiano", + "1983-02-04": "Madonna del Fuoco", + "1983-02-05": "Sant'Agata", + "1983-02-12": "Madonna del Pilerio", + "1983-02-13": "Sant'Archelao", + "1983-02-14": "San Modestino; San Valentino", + "1983-02-15": "Santi Faustino e Giovita", + "1983-02-25": "San Gerlando", + "1983-03-01": "San Leoluca", + "1983-03-16": "Santi Ilario e Taziano", + "1983-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1983-03-19": "San Giuseppe", + "1983-03-22": "Madonna dei Sette Veli", + "1983-04-03": "Pasqua di Resurrezione", + "1983-04-04": "Luned\u00ec dell'Angelo", + "1983-04-23": "San Giorgio", + "1983-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1983-04-27": "San Liberale", + "1983-05-01": "Festa dei Lavoratori", + "1983-05-03": "San Nicola Pellegrino; San Secondo di Asti", + "1983-05-04": "San Ciriaco", + "1983-05-08": "San Vittore il Moro", + "1983-05-10": "San Cataldo", + "1983-05-11": "San Giustino di Chieti", + "1983-05-12": "San Ponziano", + "1983-05-19": "San Pietro Celestino", + "1983-05-21": "San Zeno", + "1983-05-22": "Santa Giulia", + "1983-05-23": "Luned\u00ec di Pentecoste", + "1983-05-30": "San Gerardo di Potenza", + "1983-06-01": "San Crescentino", + "1983-06-02": "Festa della Repubblica", + "1983-06-03": "Madonna della Lettera", + "1983-06-10": "San Massimo D'Aveia", + "1983-06-13": "Sant'Antonio di Padova", + "1983-06-17": "San Ranieri", + "1983-06-19": "San Gervasio e San Protasio", + "1983-06-20": "San Silverio", + "1983-06-24": "San Giovanni Battista", + "1983-06-26": "San Vigilio", + "1983-06-29": "Santi Pietro e Paolo", + "1983-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1983-07-04": "Sant'Antonino di Piacenza", + "1983-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1983-07-15": "San Giovanni", + "1983-07-16": "San Vitaliano", + "1983-07-23": "Sant'Apollinare", + "1983-07-25": "San Jacopo", + "1983-08-01": "Sant'Eusebio di Vercelli", + "1983-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1983-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1983-08-10": "San Lorenzo", + "1983-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1983-08-16": "Maria Santissima Assunta", + "1983-08-24": "San Bartolomeo apostolo", + "1983-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1983-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1983-09-04": "San Teodoro d'Amasea e San Lorenzo da Brindisi; Santa Rosa da Viterbo", + "1983-09-07": "San Grato", + "1983-09-08": "Madonna delle Grazie", + "1983-09-18": "San Riccardo di Andria", + "1983-09-19": "San Gennaro", + "1983-09-21": "San Matteo Evangelista", + "1983-09-24": "San Terenzio di Pesaro", + "1983-09-29": "San Michele Arcangelo", + "1983-10-04": "San Francesco d'Assisi; San Petronio", + "1983-10-09": "San Dionigi", + "1983-10-10": "San Cetteo", + "1983-10-14": "San Gaudenzio", + "1983-10-30": "San Saturnino di Cagliari", + "1983-11-01": "Tutti i Santi", + "1983-11-03": "San Giusto", + "1983-11-10": "San Baudolino", + "1983-11-11": "San Martino", + "1983-11-13": "Sant'Omobono", + "1983-11-24": "San Prospero Vescovo", + "1983-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1983-12-01": "Sant'Ansano", + "1983-12-04": "Santa Barbara", + "1983-12-06": "San Nicola", + "1983-12-07": "Sant'Ambrogio", + "1983-12-08": "Immacolata Concezione", + "1983-12-09": "San Siro", + "1983-12-13": "Santa Lucia", + "1983-12-19": "San Berardo da Pagliara", + "1983-12-25": "Natale", + "1983-12-26": "Santo Stefano", + "1983-12-30": "San Ruggero", + "1984-01-01": "Capodanno", + "1984-01-06": "Epifania del Signore", + "1984-01-13": "Sant'Ilario di Poitiers", + "1984-01-19": "San Bassiano", + "1984-01-20": "San Sebastiano", + "1984-01-22": "San Gaudenzio", + "1984-01-29": "Sant'Ercolano e San Lorenzo", + "1984-01-31": "San Geminiano", + "1984-02-04": "Madonna del Fuoco", + "1984-02-05": "Sant'Agata", + "1984-02-12": "Madonna del Pilerio", + "1984-02-13": "Sant'Archelao", + "1984-02-14": "San Modestino; San Valentino", + "1984-02-15": "Santi Faustino e Giovita", + "1984-02-25": "San Gerlando", + "1984-03-01": "San Leoluca", + "1984-03-16": "Santi Ilario e Taziano", + "1984-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1984-03-19": "San Giuseppe", + "1984-03-22": "Madonna dei Sette Veli", + "1984-04-22": "Pasqua di Resurrezione", + "1984-04-23": "Luned\u00ec dell'Angelo; San Giorgio", + "1984-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1984-04-27": "San Liberale", + "1984-05-01": "Festa dei Lavoratori; San Secondo di Asti", + "1984-05-03": "San Nicola Pellegrino", + "1984-05-04": "San Ciriaco", + "1984-05-08": "San Vittore il Moro", + "1984-05-10": "San Cataldo", + "1984-05-11": "San Giustino di Chieti", + "1984-05-17": "San Ponziano", + "1984-05-19": "San Pietro Celestino", + "1984-05-21": "San Zeno", + "1984-05-22": "Santa Giulia", + "1984-05-30": "San Gerardo di Potenza", + "1984-06-01": "San Crescentino", + "1984-06-02": "Festa della Repubblica", + "1984-06-03": "Madonna della Lettera", + "1984-06-10": "San Massimo D'Aveia", + "1984-06-11": "Luned\u00ec di Pentecoste", + "1984-06-13": "Sant'Antonio di Padova", + "1984-06-17": "San Ranieri", + "1984-06-19": "San Gervasio e San Protasio", + "1984-06-20": "San Silverio", + "1984-06-24": "San Giovanni Battista", + "1984-06-26": "San Vigilio", + "1984-06-29": "Santi Pietro e Paolo", + "1984-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1984-07-04": "Sant'Antonino di Piacenza", + "1984-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1984-07-15": "San Giovanni", + "1984-07-16": "San Vitaliano", + "1984-07-23": "Sant'Apollinare", + "1984-07-25": "San Jacopo", + "1984-08-01": "Sant'Eusebio di Vercelli", + "1984-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1984-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1984-08-10": "San Lorenzo", + "1984-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1984-08-16": "Maria Santissima Assunta", + "1984-08-24": "San Bartolomeo apostolo", + "1984-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1984-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1984-09-02": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1984-09-04": "Santa Rosa da Viterbo", + "1984-09-07": "San Grato", + "1984-09-08": "Madonna delle Grazie", + "1984-09-16": "San Riccardo di Andria", + "1984-09-19": "San Gennaro", + "1984-09-21": "San Matteo Evangelista", + "1984-09-24": "San Terenzio di Pesaro", + "1984-09-29": "San Michele Arcangelo", + "1984-10-04": "San Francesco d'Assisi; San Petronio", + "1984-10-09": "San Dionigi", + "1984-10-10": "San Cetteo", + "1984-10-14": "San Gaudenzio", + "1984-10-30": "San Saturnino di Cagliari", + "1984-11-01": "Tutti i Santi", + "1984-11-03": "San Giusto", + "1984-11-10": "San Baudolino", + "1984-11-11": "San Martino", + "1984-11-13": "Sant'Omobono", + "1984-11-24": "San Prospero Vescovo", + "1984-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1984-12-01": "Sant'Ansano", + "1984-12-04": "Santa Barbara", + "1984-12-06": "San Nicola", + "1984-12-07": "Sant'Ambrogio", + "1984-12-08": "Immacolata Concezione", + "1984-12-09": "San Siro", + "1984-12-13": "Santa Lucia", + "1984-12-19": "San Berardo da Pagliara", + "1984-12-25": "Natale", + "1984-12-26": "Santo Stefano", + "1984-12-30": "San Ruggero", + "1985-01-01": "Capodanno", + "1985-01-06": "Epifania del Signore", + "1985-01-13": "Sant'Ilario di Poitiers", + "1985-01-19": "San Bassiano", + "1985-01-20": "San Sebastiano", + "1985-01-22": "San Gaudenzio", + "1985-01-29": "Sant'Ercolano e San Lorenzo", + "1985-01-31": "San Geminiano", + "1985-02-04": "Madonna del Fuoco", + "1985-02-05": "Sant'Agata", + "1985-02-12": "Madonna del Pilerio", + "1985-02-13": "Sant'Archelao", + "1985-02-14": "San Modestino; San Valentino", + "1985-02-15": "Santi Faustino e Giovita", + "1985-02-25": "San Gerlando", + "1985-03-01": "San Leoluca", + "1985-03-16": "Santi Ilario e Taziano", + "1985-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1985-03-19": "San Giuseppe", + "1985-03-22": "Madonna dei Sette Veli", + "1985-04-07": "Pasqua di Resurrezione", + "1985-04-08": "Luned\u00ec dell'Angelo", + "1985-04-23": "San Giorgio", + "1985-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1985-04-27": "San Liberale", + "1985-05-01": "Festa dei Lavoratori", + "1985-05-03": "San Nicola Pellegrino", + "1985-05-04": "San Ciriaco", + "1985-05-07": "San Secondo di Asti", + "1985-05-08": "San Vittore il Moro", + "1985-05-10": "San Cataldo", + "1985-05-11": "San Giustino di Chieti", + "1985-05-16": "San Ponziano", + "1985-05-19": "San Pietro Celestino", + "1985-05-21": "San Zeno", + "1985-05-22": "Santa Giulia", + "1985-05-27": "Luned\u00ec di Pentecoste", + "1985-05-30": "San Gerardo di Potenza", + "1985-06-01": "San Crescentino", + "1985-06-02": "Festa della Repubblica", + "1985-06-03": "Madonna della Lettera", + "1985-06-10": "San Massimo D'Aveia", + "1985-06-13": "Sant'Antonio di Padova", + "1985-06-17": "San Ranieri", + "1985-06-19": "San Gervasio e San Protasio", + "1985-06-20": "San Silverio", + "1985-06-24": "San Giovanni Battista", + "1985-06-26": "San Vigilio", + "1985-06-29": "Santi Pietro e Paolo", + "1985-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1985-07-04": "Sant'Antonino di Piacenza", + "1985-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1985-07-15": "San Giovanni", + "1985-07-16": "San Vitaliano", + "1985-07-23": "Sant'Apollinare", + "1985-07-25": "San Jacopo", + "1985-08-01": "Sant'Eusebio di Vercelli", + "1985-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1985-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1985-08-10": "San Lorenzo", + "1985-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1985-08-16": "Maria Santissima Assunta", + "1985-08-24": "San Bartolomeo apostolo", + "1985-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1985-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1985-09-01": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1985-09-04": "Santa Rosa da Viterbo", + "1985-09-07": "San Grato", + "1985-09-08": "Madonna delle Grazie", + "1985-09-15": "San Riccardo di Andria", + "1985-09-19": "San Gennaro", + "1985-09-21": "San Matteo Evangelista", + "1985-09-24": "San Terenzio di Pesaro", + "1985-09-29": "San Michele Arcangelo", + "1985-10-04": "San Francesco d'Assisi; San Petronio", + "1985-10-09": "San Dionigi", + "1985-10-10": "San Cetteo", + "1985-10-14": "San Gaudenzio", + "1985-10-30": "San Saturnino di Cagliari", + "1985-11-01": "Tutti i Santi", + "1985-11-03": "San Giusto", + "1985-11-10": "San Baudolino", + "1985-11-11": "San Martino", + "1985-11-13": "Sant'Omobono", + "1985-11-24": "San Prospero Vescovo", + "1985-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1985-12-01": "Sant'Ansano", + "1985-12-04": "Santa Barbara", + "1985-12-06": "San Nicola", + "1985-12-07": "Sant'Ambrogio", + "1985-12-08": "Immacolata Concezione", + "1985-12-09": "San Siro", + "1985-12-13": "Santa Lucia", + "1985-12-19": "San Berardo da Pagliara", + "1985-12-25": "Natale", + "1985-12-26": "Santo Stefano", + "1985-12-30": "San Ruggero", + "1986-01-01": "Capodanno", + "1986-01-06": "Epifania del Signore", + "1986-01-13": "Sant'Ilario di Poitiers", + "1986-01-19": "San Bassiano", + "1986-01-20": "San Sebastiano", + "1986-01-22": "San Gaudenzio", + "1986-01-29": "Sant'Ercolano e San Lorenzo", + "1986-01-31": "San Geminiano", + "1986-02-04": "Madonna del Fuoco", + "1986-02-05": "Sant'Agata", + "1986-02-12": "Madonna del Pilerio", + "1986-02-13": "Sant'Archelao", + "1986-02-14": "San Modestino; San Valentino", + "1986-02-15": "Santi Faustino e Giovita", + "1986-02-25": "San Gerlando", + "1986-03-01": "San Leoluca", + "1986-03-16": "Santi Ilario e Taziano", + "1986-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1986-03-19": "San Giuseppe", + "1986-03-22": "Madonna dei Sette Veli", + "1986-03-30": "Pasqua di Resurrezione", + "1986-03-31": "Luned\u00ec dell'Angelo", + "1986-04-23": "San Giorgio", + "1986-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1986-04-27": "San Liberale", + "1986-05-01": "Festa dei Lavoratori", + "1986-05-03": "San Nicola Pellegrino", + "1986-05-04": "San Ciriaco", + "1986-05-06": "San Secondo di Asti", + "1986-05-08": "San Vittore il Moro", + "1986-05-10": "San Cataldo", + "1986-05-11": "San Giustino di Chieti", + "1986-05-15": "San Ponziano", + "1986-05-19": "Luned\u00ec di Pentecoste; San Pietro Celestino", + "1986-05-21": "San Zeno", + "1986-05-22": "Santa Giulia", + "1986-05-30": "San Gerardo di Potenza", + "1986-06-01": "San Crescentino", + "1986-06-02": "Festa della Repubblica", + "1986-06-03": "Madonna della Lettera", + "1986-06-10": "San Massimo D'Aveia", + "1986-06-13": "Sant'Antonio di Padova", + "1986-06-17": "San Ranieri", + "1986-06-19": "San Gervasio e San Protasio", + "1986-06-20": "San Silverio", + "1986-06-24": "San Giovanni Battista", + "1986-06-26": "San Vigilio", + "1986-06-29": "Santi Pietro e Paolo", + "1986-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1986-07-04": "Sant'Antonino di Piacenza", + "1986-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1986-07-15": "San Giovanni", + "1986-07-16": "San Vitaliano", + "1986-07-23": "Sant'Apollinare", + "1986-07-25": "San Jacopo", + "1986-08-01": "Sant'Eusebio di Vercelli", + "1986-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1986-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1986-08-10": "San Lorenzo", + "1986-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1986-08-16": "Maria Santissima Assunta", + "1986-08-24": "San Bartolomeo apostolo", + "1986-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1986-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1986-09-04": "Santa Rosa da Viterbo", + "1986-09-07": "San Grato; San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1986-09-08": "Madonna delle Grazie", + "1986-09-19": "San Gennaro", + "1986-09-21": "San Matteo Evangelista; San Riccardo di Andria", + "1986-09-24": "San Terenzio di Pesaro", + "1986-09-29": "San Michele Arcangelo", + "1986-10-04": "San Francesco d'Assisi; San Petronio", + "1986-10-09": "San Dionigi", + "1986-10-10": "San Cetteo", + "1986-10-14": "San Gaudenzio", + "1986-10-30": "San Saturnino di Cagliari", + "1986-11-01": "Tutti i Santi", + "1986-11-03": "San Giusto", + "1986-11-10": "San Baudolino", + "1986-11-11": "San Martino", + "1986-11-13": "Sant'Omobono", + "1986-11-24": "San Prospero Vescovo", + "1986-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1986-12-01": "Sant'Ansano", + "1986-12-04": "Santa Barbara", + "1986-12-06": "San Nicola", + "1986-12-07": "Sant'Ambrogio", + "1986-12-08": "Immacolata Concezione", + "1986-12-09": "San Siro", + "1986-12-13": "Santa Lucia", + "1986-12-19": "San Berardo da Pagliara", + "1986-12-25": "Natale", + "1986-12-26": "Santo Stefano", + "1986-12-30": "San Ruggero", + "1987-01-01": "Capodanno", + "1987-01-06": "Epifania del Signore", + "1987-01-13": "Sant'Ilario di Poitiers", + "1987-01-19": "San Bassiano", + "1987-01-20": "San Sebastiano", + "1987-01-22": "San Gaudenzio", + "1987-01-29": "Sant'Ercolano e San Lorenzo", + "1987-01-31": "San Geminiano", + "1987-02-04": "Madonna del Fuoco", + "1987-02-05": "Sant'Agata", + "1987-02-12": "Madonna del Pilerio", + "1987-02-13": "Sant'Archelao", + "1987-02-14": "San Modestino; San Valentino", + "1987-02-15": "Santi Faustino e Giovita", + "1987-02-25": "San Gerlando", + "1987-03-01": "San Leoluca", + "1987-03-16": "Santi Ilario e Taziano", + "1987-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1987-03-19": "San Giuseppe", + "1987-03-22": "Madonna dei Sette Veli", + "1987-04-19": "Pasqua di Resurrezione", + "1987-04-20": "Luned\u00ec dell'Angelo", + "1987-04-23": "San Giorgio", + "1987-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1987-04-27": "San Liberale", + "1987-05-01": "Festa dei Lavoratori", + "1987-05-03": "San Nicola Pellegrino", + "1987-05-04": "San Ciriaco", + "1987-05-05": "San Secondo di Asti", + "1987-05-08": "San Vittore il Moro", + "1987-05-10": "San Cataldo", + "1987-05-11": "San Giustino di Chieti", + "1987-05-14": "San Ponziano", + "1987-05-19": "San Pietro Celestino", + "1987-05-21": "San Zeno", + "1987-05-22": "Santa Giulia", + "1987-05-30": "San Gerardo di Potenza", + "1987-06-01": "San Crescentino", + "1987-06-02": "Festa della Repubblica", + "1987-06-03": "Madonna della Lettera", + "1987-06-08": "Luned\u00ec di Pentecoste", + "1987-06-10": "San Massimo D'Aveia", + "1987-06-13": "Sant'Antonio di Padova", + "1987-06-17": "San Ranieri", + "1987-06-19": "San Gervasio e San Protasio", + "1987-06-20": "San Silverio", + "1987-06-24": "San Giovanni Battista", + "1987-06-26": "San Vigilio", + "1987-06-29": "Santi Pietro e Paolo", + "1987-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1987-07-04": "Sant'Antonino di Piacenza", + "1987-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1987-07-15": "San Giovanni", + "1987-07-16": "San Vitaliano", + "1987-07-23": "Sant'Apollinare", + "1987-07-25": "San Jacopo", + "1987-08-01": "Sant'Eusebio di Vercelli", + "1987-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1987-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1987-08-10": "San Lorenzo", + "1987-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1987-08-16": "Maria Santissima Assunta", + "1987-08-24": "San Bartolomeo apostolo", + "1987-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1987-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1987-09-04": "Santa Rosa da Viterbo", + "1987-09-06": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1987-09-07": "San Grato", + "1987-09-08": "Madonna delle Grazie", + "1987-09-19": "San Gennaro", + "1987-09-20": "San Riccardo di Andria", + "1987-09-21": "San Matteo Evangelista", + "1987-09-24": "San Terenzio di Pesaro", + "1987-09-29": "San Michele Arcangelo", + "1987-10-04": "San Francesco d'Assisi; San Petronio", + "1987-10-09": "San Dionigi", + "1987-10-10": "San Cetteo", + "1987-10-14": "San Gaudenzio", + "1987-10-30": "San Saturnino di Cagliari", + "1987-11-01": "Tutti i Santi", + "1987-11-03": "San Giusto", + "1987-11-10": "San Baudolino", + "1987-11-11": "San Martino", + "1987-11-13": "Sant'Omobono", + "1987-11-24": "San Prospero Vescovo", + "1987-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1987-12-01": "Sant'Ansano", + "1987-12-04": "Santa Barbara", + "1987-12-06": "San Nicola", + "1987-12-07": "Sant'Ambrogio", + "1987-12-08": "Immacolata Concezione", + "1987-12-09": "San Siro", + "1987-12-13": "Santa Lucia", + "1987-12-19": "San Berardo da Pagliara", + "1987-12-25": "Natale", + "1987-12-26": "Santo Stefano", + "1987-12-30": "San Ruggero", + "1988-01-01": "Capodanno", + "1988-01-06": "Epifania del Signore", + "1988-01-13": "Sant'Ilario di Poitiers", + "1988-01-19": "San Bassiano", + "1988-01-20": "San Sebastiano", + "1988-01-22": "San Gaudenzio", + "1988-01-29": "Sant'Ercolano e San Lorenzo", + "1988-01-31": "San Geminiano", + "1988-02-04": "Madonna del Fuoco", + "1988-02-05": "Sant'Agata", + "1988-02-12": "Madonna del Pilerio", + "1988-02-13": "Sant'Archelao", + "1988-02-14": "San Modestino; San Valentino", + "1988-02-15": "Santi Faustino e Giovita", + "1988-02-25": "San Gerlando", + "1988-03-01": "San Leoluca", + "1988-03-16": "Santi Ilario e Taziano", + "1988-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1988-03-19": "San Giuseppe", + "1988-03-22": "Madonna dei Sette Veli", + "1988-04-03": "Pasqua di Resurrezione", + "1988-04-04": "Luned\u00ec dell'Angelo", + "1988-04-23": "San Giorgio", + "1988-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1988-04-27": "San Liberale", + "1988-05-01": "Festa dei Lavoratori", + "1988-05-03": "San Nicola Pellegrino; San Secondo di Asti", + "1988-05-04": "San Ciriaco", + "1988-05-08": "San Vittore il Moro", + "1988-05-10": "San Cataldo", + "1988-05-11": "San Giustino di Chieti", + "1988-05-12": "San Ponziano", + "1988-05-19": "San Pietro Celestino", + "1988-05-21": "San Zeno", + "1988-05-22": "Santa Giulia", + "1988-05-23": "Luned\u00ec di Pentecoste", + "1988-05-30": "San Gerardo di Potenza", + "1988-06-01": "San Crescentino", + "1988-06-02": "Festa della Repubblica", + "1988-06-03": "Madonna della Lettera", + "1988-06-10": "San Massimo D'Aveia", + "1988-06-13": "Sant'Antonio di Padova", + "1988-06-17": "San Ranieri", + "1988-06-19": "San Gervasio e San Protasio", + "1988-06-20": "San Silverio", + "1988-06-24": "San Giovanni Battista", + "1988-06-26": "San Vigilio", + "1988-06-29": "Santi Pietro e Paolo", + "1988-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1988-07-04": "Sant'Antonino di Piacenza", + "1988-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1988-07-15": "San Giovanni", + "1988-07-16": "San Vitaliano", + "1988-07-23": "Sant'Apollinare", + "1988-07-25": "San Jacopo", + "1988-08-01": "Sant'Eusebio di Vercelli", + "1988-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1988-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1988-08-10": "San Lorenzo", + "1988-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1988-08-16": "Maria Santissima Assunta", + "1988-08-24": "San Bartolomeo apostolo", + "1988-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1988-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1988-09-04": "San Teodoro d'Amasea e San Lorenzo da Brindisi; Santa Rosa da Viterbo", + "1988-09-07": "San Grato", + "1988-09-08": "Madonna delle Grazie", + "1988-09-18": "San Riccardo di Andria", + "1988-09-19": "San Gennaro", + "1988-09-21": "San Matteo Evangelista", + "1988-09-24": "San Terenzio di Pesaro", + "1988-09-29": "San Michele Arcangelo", + "1988-10-04": "San Francesco d'Assisi; San Petronio", + "1988-10-09": "San Dionigi", + "1988-10-10": "San Cetteo", + "1988-10-14": "San Gaudenzio", + "1988-10-30": "San Saturnino di Cagliari", + "1988-11-01": "Tutti i Santi", + "1988-11-03": "San Giusto", + "1988-11-10": "San Baudolino", + "1988-11-11": "San Martino", + "1988-11-13": "Sant'Omobono", + "1988-11-24": "San Prospero Vescovo", + "1988-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1988-12-01": "Sant'Ansano", + "1988-12-04": "Santa Barbara", + "1988-12-06": "San Nicola", + "1988-12-07": "Sant'Ambrogio", + "1988-12-08": "Immacolata Concezione", + "1988-12-09": "San Siro", + "1988-12-13": "Santa Lucia", + "1988-12-19": "San Berardo da Pagliara", + "1988-12-25": "Natale", + "1988-12-26": "Santo Stefano", + "1988-12-30": "San Ruggero", + "1989-01-01": "Capodanno", + "1989-01-06": "Epifania del Signore", + "1989-01-13": "Sant'Ilario di Poitiers", + "1989-01-19": "San Bassiano", + "1989-01-20": "San Sebastiano", + "1989-01-22": "San Gaudenzio", + "1989-01-29": "Sant'Ercolano e San Lorenzo", + "1989-01-31": "San Geminiano", + "1989-02-04": "Madonna del Fuoco", + "1989-02-05": "Sant'Agata", + "1989-02-12": "Madonna del Pilerio", + "1989-02-13": "Sant'Archelao", + "1989-02-14": "San Modestino; San Valentino", + "1989-02-15": "Santi Faustino e Giovita", + "1989-02-25": "San Gerlando", + "1989-03-01": "San Leoluca", + "1989-03-16": "Santi Ilario e Taziano", + "1989-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1989-03-19": "San Giuseppe", + "1989-03-22": "Madonna dei Sette Veli", + "1989-03-26": "Pasqua di Resurrezione", + "1989-03-27": "Luned\u00ec dell'Angelo", + "1989-04-23": "San Giorgio", + "1989-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1989-04-27": "San Liberale", + "1989-05-01": "Festa dei Lavoratori", + "1989-05-02": "San Secondo di Asti", + "1989-05-03": "San Nicola Pellegrino", + "1989-05-04": "San Ciriaco", + "1989-05-08": "San Vittore il Moro", + "1989-05-10": "San Cataldo", + "1989-05-11": "San Giustino di Chieti", + "1989-05-15": "Luned\u00ec di Pentecoste", + "1989-05-18": "San Ponziano", + "1989-05-19": "San Pietro Celestino", + "1989-05-21": "San Zeno", + "1989-05-22": "Santa Giulia", + "1989-05-30": "San Gerardo di Potenza", + "1989-06-01": "San Crescentino", + "1989-06-02": "Festa della Repubblica", + "1989-06-03": "Madonna della Lettera", + "1989-06-10": "San Massimo D'Aveia", + "1989-06-13": "Sant'Antonio di Padova", + "1989-06-17": "San Ranieri", + "1989-06-19": "San Gervasio e San Protasio", + "1989-06-20": "San Silverio", + "1989-06-24": "San Giovanni Battista", + "1989-06-26": "San Vigilio", + "1989-06-29": "Santi Pietro e Paolo", + "1989-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1989-07-04": "Sant'Antonino di Piacenza", + "1989-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1989-07-15": "San Giovanni", + "1989-07-16": "San Vitaliano", + "1989-07-23": "Sant'Apollinare", + "1989-07-25": "San Jacopo", + "1989-08-01": "Sant'Eusebio di Vercelli", + "1989-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1989-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1989-08-10": "San Lorenzo", + "1989-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1989-08-16": "Maria Santissima Assunta", + "1989-08-24": "San Bartolomeo apostolo", + "1989-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1989-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1989-09-03": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1989-09-04": "Santa Rosa da Viterbo", + "1989-09-07": "San Grato", + "1989-09-08": "Madonna delle Grazie", + "1989-09-17": "San Riccardo di Andria", + "1989-09-19": "San Gennaro", + "1989-09-21": "San Matteo Evangelista", + "1989-09-24": "San Terenzio di Pesaro", + "1989-09-29": "San Michele Arcangelo", + "1989-10-04": "San Francesco d'Assisi; San Petronio", + "1989-10-09": "San Dionigi", + "1989-10-10": "San Cetteo", + "1989-10-14": "San Gaudenzio", + "1989-10-30": "San Saturnino di Cagliari", + "1989-11-01": "Tutti i Santi", + "1989-11-03": "San Giusto", + "1989-11-10": "San Baudolino", + "1989-11-11": "San Martino", + "1989-11-13": "Sant'Omobono", + "1989-11-24": "San Prospero Vescovo", + "1989-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1989-12-01": "Sant'Ansano", + "1989-12-04": "Santa Barbara", + "1989-12-06": "San Nicola", + "1989-12-07": "Sant'Ambrogio", + "1989-12-08": "Immacolata Concezione", + "1989-12-09": "San Siro", + "1989-12-13": "Santa Lucia", + "1989-12-19": "San Berardo da Pagliara", + "1989-12-25": "Natale", + "1989-12-26": "Santo Stefano", + "1989-12-30": "San Ruggero", + "1990-01-01": "Capodanno", + "1990-01-06": "Epifania del Signore", + "1990-01-13": "Sant'Ilario di Poitiers", + "1990-01-19": "San Bassiano", + "1990-01-20": "San Sebastiano", + "1990-01-22": "San Gaudenzio", + "1990-01-29": "Sant'Ercolano e San Lorenzo", + "1990-01-31": "San Geminiano", + "1990-02-04": "Madonna del Fuoco", + "1990-02-05": "Sant'Agata", + "1990-02-12": "Madonna del Pilerio", + "1990-02-13": "Sant'Archelao", + "1990-02-14": "San Modestino; San Valentino", + "1990-02-15": "Santi Faustino e Giovita", + "1990-02-25": "San Gerlando", + "1990-03-01": "San Leoluca", + "1990-03-16": "Santi Ilario e Taziano", + "1990-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1990-03-19": "San Giuseppe", + "1990-03-22": "Madonna dei Sette Veli", + "1990-04-15": "Pasqua di Resurrezione", + "1990-04-16": "Luned\u00ec dell'Angelo", + "1990-04-23": "San Giorgio", + "1990-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1990-04-27": "San Liberale", + "1990-05-01": "Festa dei Lavoratori; San Secondo di Asti", + "1990-05-03": "San Nicola Pellegrino", + "1990-05-04": "San Ciriaco", + "1990-05-08": "San Vittore il Moro", + "1990-05-10": "San Cataldo", + "1990-05-11": "San Giustino di Chieti", + "1990-05-17": "San Ponziano", + "1990-05-19": "San Pietro Celestino", + "1990-05-21": "San Zeno", + "1990-05-22": "Santa Giulia", + "1990-05-30": "San Gerardo di Potenza", + "1990-06-01": "San Crescentino", + "1990-06-02": "Festa della Repubblica", + "1990-06-03": "Madonna della Lettera", + "1990-06-04": "Luned\u00ec di Pentecoste", + "1990-06-10": "San Massimo D'Aveia", + "1990-06-13": "Sant'Antonio di Padova", + "1990-06-17": "San Ranieri", + "1990-06-19": "San Gervasio e San Protasio", + "1990-06-20": "San Silverio", + "1990-06-24": "San Giovanni Battista", + "1990-06-26": "San Vigilio", + "1990-06-29": "Santi Pietro e Paolo", + "1990-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1990-07-04": "Sant'Antonino di Piacenza", + "1990-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1990-07-15": "San Giovanni", + "1990-07-16": "San Vitaliano", + "1990-07-23": "Sant'Apollinare", + "1990-07-25": "San Jacopo", + "1990-08-01": "Sant'Eusebio di Vercelli", + "1990-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1990-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1990-08-10": "San Lorenzo", + "1990-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1990-08-16": "Maria Santissima Assunta", + "1990-08-24": "San Bartolomeo apostolo", + "1990-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1990-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1990-09-02": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1990-09-04": "Santa Rosa da Viterbo", + "1990-09-07": "San Grato", + "1990-09-08": "Madonna delle Grazie", + "1990-09-16": "San Riccardo di Andria", + "1990-09-19": "San Gennaro", + "1990-09-21": "San Matteo Evangelista", + "1990-09-24": "San Terenzio di Pesaro", + "1990-09-29": "San Michele Arcangelo", + "1990-10-04": "San Francesco d'Assisi; San Petronio", + "1990-10-09": "San Dionigi", + "1990-10-10": "San Cetteo", + "1990-10-14": "San Gaudenzio", + "1990-10-30": "San Saturnino di Cagliari", + "1990-11-01": "Tutti i Santi", + "1990-11-03": "San Giusto", + "1990-11-10": "San Baudolino", + "1990-11-11": "San Martino", + "1990-11-13": "Sant'Omobono", + "1990-11-24": "San Prospero Vescovo", + "1990-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1990-12-01": "Sant'Ansano", + "1990-12-04": "Santa Barbara", + "1990-12-06": "San Nicola", + "1990-12-07": "Sant'Ambrogio", + "1990-12-08": "Immacolata Concezione", + "1990-12-09": "San Siro", + "1990-12-13": "Santa Lucia", + "1990-12-19": "San Berardo da Pagliara", + "1990-12-25": "Natale", + "1990-12-26": "Santo Stefano", + "1990-12-30": "San Ruggero", + "1991-01-01": "Capodanno", + "1991-01-06": "Epifania del Signore", + "1991-01-13": "Sant'Ilario di Poitiers", + "1991-01-19": "San Bassiano", + "1991-01-20": "San Sebastiano", + "1991-01-22": "San Gaudenzio", + "1991-01-29": "Sant'Ercolano e San Lorenzo", + "1991-01-31": "San Geminiano", + "1991-02-04": "Madonna del Fuoco", + "1991-02-05": "Sant'Agata", + "1991-02-12": "Madonna del Pilerio", + "1991-02-13": "Sant'Archelao", + "1991-02-14": "San Modestino; San Valentino", + "1991-02-15": "Santi Faustino e Giovita", + "1991-02-25": "San Gerlando", + "1991-03-01": "San Leoluca", + "1991-03-16": "Santi Ilario e Taziano", + "1991-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1991-03-19": "San Giuseppe", + "1991-03-22": "Madonna dei Sette Veli", + "1991-03-31": "Pasqua di Resurrezione", + "1991-04-01": "Luned\u00ec dell'Angelo", + "1991-04-23": "San Giorgio", + "1991-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1991-04-27": "San Liberale", + "1991-05-01": "Festa dei Lavoratori", + "1991-05-03": "San Nicola Pellegrino", + "1991-05-04": "San Ciriaco", + "1991-05-07": "San Secondo di Asti", + "1991-05-08": "San Vittore il Moro", + "1991-05-10": "San Cataldo", + "1991-05-11": "San Giustino di Chieti", + "1991-05-16": "San Ponziano", + "1991-05-19": "San Pietro Celestino", + "1991-05-20": "Luned\u00ec di Pentecoste", + "1991-05-21": "San Zeno", + "1991-05-22": "Santa Giulia", + "1991-05-30": "San Gerardo di Potenza", + "1991-06-01": "San Crescentino", + "1991-06-02": "Festa della Repubblica", + "1991-06-03": "Madonna della Lettera", + "1991-06-10": "San Massimo D'Aveia", + "1991-06-13": "Sant'Antonio di Padova", + "1991-06-17": "San Ranieri", + "1991-06-19": "San Gervasio e San Protasio", + "1991-06-20": "San Silverio", + "1991-06-24": "San Giovanni Battista", + "1991-06-26": "San Vigilio", + "1991-06-29": "Santi Pietro e Paolo", + "1991-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1991-07-04": "Sant'Antonino di Piacenza", + "1991-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1991-07-15": "San Giovanni", + "1991-07-16": "San Vitaliano", + "1991-07-23": "Sant'Apollinare", + "1991-07-25": "San Jacopo", + "1991-08-01": "Sant'Eusebio di Vercelli", + "1991-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1991-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1991-08-10": "San Lorenzo", + "1991-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1991-08-16": "Maria Santissima Assunta", + "1991-08-24": "San Bartolomeo apostolo", + "1991-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1991-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1991-09-01": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1991-09-04": "Santa Rosa da Viterbo", + "1991-09-07": "San Grato", + "1991-09-08": "Madonna delle Grazie", + "1991-09-15": "San Riccardo di Andria", + "1991-09-19": "San Gennaro", + "1991-09-21": "San Matteo Evangelista", + "1991-09-24": "San Terenzio di Pesaro", + "1991-09-29": "San Michele Arcangelo", + "1991-10-04": "San Francesco d'Assisi; San Petronio", + "1991-10-09": "San Dionigi", + "1991-10-10": "San Cetteo", + "1991-10-14": "San Gaudenzio", + "1991-10-30": "San Saturnino di Cagliari", + "1991-11-01": "Tutti i Santi", + "1991-11-03": "San Giusto", + "1991-11-10": "San Baudolino", + "1991-11-11": "San Martino", + "1991-11-13": "Sant'Omobono", + "1991-11-24": "San Prospero Vescovo", + "1991-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1991-12-01": "Sant'Ansano", + "1991-12-04": "Santa Barbara", + "1991-12-06": "San Nicola", + "1991-12-07": "Sant'Ambrogio", + "1991-12-08": "Immacolata Concezione", + "1991-12-09": "San Siro", + "1991-12-13": "Santa Lucia", + "1991-12-19": "San Berardo da Pagliara", + "1991-12-25": "Natale", + "1991-12-26": "Santo Stefano", + "1991-12-30": "San Ruggero", + "1992-01-01": "Capodanno", + "1992-01-06": "Epifania del Signore", + "1992-01-13": "Sant'Ilario di Poitiers", + "1992-01-19": "San Bassiano", + "1992-01-20": "San Sebastiano", + "1992-01-22": "San Gaudenzio", + "1992-01-29": "Sant'Ercolano e San Lorenzo", + "1992-01-31": "San Geminiano", + "1992-02-04": "Madonna del Fuoco", + "1992-02-05": "Sant'Agata", + "1992-02-12": "Madonna del Pilerio", + "1992-02-13": "Sant'Archelao", + "1992-02-14": "San Modestino; San Valentino", + "1992-02-15": "Santi Faustino e Giovita", + "1992-02-25": "San Gerlando", + "1992-03-01": "San Leoluca", + "1992-03-16": "Santi Ilario e Taziano", + "1992-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1992-03-19": "San Giuseppe", + "1992-03-22": "Madonna dei Sette Veli", + "1992-04-19": "Pasqua di Resurrezione", + "1992-04-20": "Luned\u00ec dell'Angelo", + "1992-04-23": "San Giorgio", + "1992-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1992-04-27": "San Liberale", + "1992-05-01": "Festa dei Lavoratori", + "1992-05-03": "San Nicola Pellegrino", + "1992-05-04": "San Ciriaco", + "1992-05-05": "San Secondo di Asti", + "1992-05-08": "San Vittore il Moro", + "1992-05-10": "San Cataldo", + "1992-05-11": "San Giustino di Chieti", + "1992-05-14": "San Ponziano", + "1992-05-19": "San Pietro Celestino", + "1992-05-21": "San Zeno", + "1992-05-22": "Santa Giulia", + "1992-05-30": "San Gerardo di Potenza", + "1992-06-01": "San Crescentino", + "1992-06-02": "Festa della Repubblica", + "1992-06-03": "Madonna della Lettera", + "1992-06-08": "Luned\u00ec di Pentecoste", + "1992-06-10": "San Massimo D'Aveia", + "1992-06-13": "Sant'Antonio di Padova", + "1992-06-17": "San Ranieri", + "1992-06-19": "San Gervasio e San Protasio", + "1992-06-20": "San Silverio", + "1992-06-24": "San Giovanni Battista", + "1992-06-26": "San Vigilio", + "1992-06-29": "Santi Pietro e Paolo", + "1992-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1992-07-04": "Sant'Antonino di Piacenza", + "1992-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1992-07-15": "San Giovanni", + "1992-07-16": "San Vitaliano", + "1992-07-23": "Sant'Apollinare", + "1992-07-25": "San Jacopo", + "1992-08-01": "Sant'Eusebio di Vercelli", + "1992-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1992-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1992-08-10": "San Lorenzo", + "1992-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1992-08-16": "Maria Santissima Assunta", + "1992-08-24": "San Bartolomeo apostolo", + "1992-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1992-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1992-09-04": "Santa Rosa da Viterbo", + "1992-09-06": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1992-09-07": "San Grato", + "1992-09-08": "Madonna delle Grazie", + "1992-09-19": "San Gennaro", + "1992-09-20": "San Riccardo di Andria", + "1992-09-21": "San Matteo Evangelista", + "1992-09-24": "San Terenzio di Pesaro", + "1992-09-29": "San Michele Arcangelo", + "1992-10-04": "San Francesco d'Assisi; San Petronio", + "1992-10-09": "San Dionigi", + "1992-10-10": "San Cetteo", + "1992-10-14": "San Gaudenzio", + "1992-10-30": "San Saturnino di Cagliari", + "1992-11-01": "Tutti i Santi", + "1992-11-03": "San Giusto", + "1992-11-10": "San Baudolino", + "1992-11-11": "San Martino", + "1992-11-13": "Sant'Omobono", + "1992-11-24": "San Prospero Vescovo", + "1992-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1992-12-01": "Sant'Ansano", + "1992-12-04": "Santa Barbara", + "1992-12-06": "San Nicola", + "1992-12-07": "Sant'Ambrogio", + "1992-12-08": "Immacolata Concezione", + "1992-12-09": "San Siro", + "1992-12-13": "Santa Lucia", + "1992-12-19": "San Berardo da Pagliara", + "1992-12-25": "Natale", + "1992-12-26": "Santo Stefano", + "1992-12-30": "San Ruggero", + "1993-01-01": "Capodanno", + "1993-01-06": "Epifania del Signore", + "1993-01-13": "Sant'Ilario di Poitiers", + "1993-01-19": "San Bassiano", + "1993-01-20": "San Sebastiano", + "1993-01-22": "San Gaudenzio", + "1993-01-29": "Sant'Ercolano e San Lorenzo", + "1993-01-31": "San Geminiano", + "1993-02-04": "Madonna del Fuoco", + "1993-02-05": "Sant'Agata", + "1993-02-12": "Madonna del Pilerio", + "1993-02-13": "Sant'Archelao", + "1993-02-14": "San Modestino; San Valentino", + "1993-02-15": "Santi Faustino e Giovita", + "1993-02-25": "San Gerlando", + "1993-03-01": "San Leoluca", + "1993-03-16": "Santi Ilario e Taziano", + "1993-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1993-03-19": "San Giuseppe", + "1993-03-22": "Madonna dei Sette Veli", + "1993-04-11": "Pasqua di Resurrezione", + "1993-04-12": "Luned\u00ec dell'Angelo", + "1993-04-23": "San Giorgio", + "1993-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1993-04-27": "San Liberale", + "1993-05-01": "Festa dei Lavoratori", + "1993-05-03": "San Nicola Pellegrino", + "1993-05-04": "San Ciriaco; San Secondo di Asti", + "1993-05-08": "San Vittore il Moro", + "1993-05-10": "San Cataldo", + "1993-05-11": "San Giustino di Chieti", + "1993-05-13": "San Ponziano", + "1993-05-19": "San Pietro Celestino", + "1993-05-21": "San Zeno", + "1993-05-22": "Santa Giulia", + "1993-05-30": "San Gerardo di Potenza", + "1993-05-31": "Luned\u00ec di Pentecoste", + "1993-06-01": "San Crescentino", + "1993-06-02": "Festa della Repubblica", + "1993-06-03": "Madonna della Lettera", + "1993-06-10": "San Massimo D'Aveia", + "1993-06-13": "Sant'Antonio di Padova", + "1993-06-17": "San Ranieri", + "1993-06-19": "San Gervasio e San Protasio", + "1993-06-20": "San Silverio", + "1993-06-24": "San Giovanni Battista", + "1993-06-26": "San Vigilio", + "1993-06-29": "Santi Pietro e Paolo", + "1993-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1993-07-04": "Sant'Antonino di Piacenza", + "1993-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1993-07-15": "San Giovanni", + "1993-07-16": "San Vitaliano", + "1993-07-23": "Sant'Apollinare", + "1993-07-25": "San Jacopo", + "1993-08-01": "Sant'Eusebio di Vercelli", + "1993-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1993-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1993-08-10": "San Lorenzo", + "1993-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1993-08-16": "Maria Santissima Assunta", + "1993-08-24": "San Bartolomeo apostolo", + "1993-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1993-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1993-09-04": "Santa Rosa da Viterbo", + "1993-09-05": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1993-09-07": "San Grato", + "1993-09-08": "Madonna delle Grazie", + "1993-09-19": "San Gennaro; San Riccardo di Andria", + "1993-09-21": "San Matteo Evangelista", + "1993-09-24": "San Terenzio di Pesaro", + "1993-09-29": "San Michele Arcangelo", + "1993-10-04": "San Francesco d'Assisi; San Petronio", + "1993-10-09": "San Dionigi", + "1993-10-10": "San Cetteo", + "1993-10-14": "San Gaudenzio", + "1993-10-30": "San Saturnino di Cagliari", + "1993-11-01": "Tutti i Santi", + "1993-11-03": "San Giusto", + "1993-11-10": "San Baudolino", + "1993-11-11": "San Martino", + "1993-11-13": "Sant'Omobono", + "1993-11-24": "San Prospero Vescovo", + "1993-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1993-12-01": "Sant'Ansano", + "1993-12-04": "Santa Barbara", + "1993-12-06": "San Nicola", + "1993-12-07": "Sant'Ambrogio", + "1993-12-08": "Immacolata Concezione", + "1993-12-09": "San Siro", + "1993-12-13": "Santa Lucia", + "1993-12-19": "San Berardo da Pagliara", + "1993-12-25": "Natale", + "1993-12-26": "Santo Stefano", + "1993-12-30": "San Ruggero", + "1994-01-01": "Capodanno", + "1994-01-06": "Epifania del Signore", + "1994-01-13": "Sant'Ilario di Poitiers", + "1994-01-19": "San Bassiano", + "1994-01-20": "San Sebastiano", + "1994-01-22": "San Gaudenzio", + "1994-01-29": "Sant'Ercolano e San Lorenzo", + "1994-01-31": "San Geminiano", + "1994-02-04": "Madonna del Fuoco", + "1994-02-05": "Sant'Agata", + "1994-02-12": "Madonna del Pilerio", + "1994-02-13": "Sant'Archelao", + "1994-02-14": "San Modestino; San Valentino", + "1994-02-15": "Santi Faustino e Giovita", + "1994-02-25": "San Gerlando", + "1994-03-01": "San Leoluca", + "1994-03-16": "Santi Ilario e Taziano", + "1994-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1994-03-19": "San Giuseppe", + "1994-03-22": "Madonna dei Sette Veli", + "1994-04-03": "Pasqua di Resurrezione", + "1994-04-04": "Luned\u00ec dell'Angelo", + "1994-04-23": "San Giorgio", + "1994-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1994-04-27": "San Liberale", + "1994-05-01": "Festa dei Lavoratori", + "1994-05-03": "San Nicola Pellegrino; San Secondo di Asti", + "1994-05-04": "San Ciriaco", + "1994-05-08": "San Vittore il Moro", + "1994-05-10": "San Cataldo", + "1994-05-11": "San Giustino di Chieti", + "1994-05-12": "San Ponziano", + "1994-05-19": "San Pietro Celestino", + "1994-05-21": "San Zeno", + "1994-05-22": "Santa Giulia", + "1994-05-23": "Luned\u00ec di Pentecoste", + "1994-05-30": "San Gerardo di Potenza", + "1994-06-01": "San Crescentino", + "1994-06-02": "Festa della Repubblica", + "1994-06-03": "Madonna della Lettera", + "1994-06-10": "San Massimo D'Aveia", + "1994-06-13": "Sant'Antonio di Padova", + "1994-06-17": "San Ranieri", + "1994-06-19": "San Gervasio e San Protasio", + "1994-06-20": "San Silverio", + "1994-06-24": "San Giovanni Battista", + "1994-06-26": "San Vigilio", + "1994-06-29": "Santi Pietro e Paolo", + "1994-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1994-07-04": "Sant'Antonino di Piacenza", + "1994-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1994-07-15": "San Giovanni", + "1994-07-16": "San Vitaliano", + "1994-07-23": "Sant'Apollinare", + "1994-07-25": "San Jacopo", + "1994-08-01": "Sant'Eusebio di Vercelli", + "1994-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1994-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1994-08-10": "San Lorenzo", + "1994-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1994-08-16": "Maria Santissima Assunta", + "1994-08-24": "San Bartolomeo apostolo", + "1994-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1994-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1994-09-04": "San Teodoro d'Amasea e San Lorenzo da Brindisi; Santa Rosa da Viterbo", + "1994-09-07": "San Grato", + "1994-09-08": "Madonna delle Grazie", + "1994-09-18": "San Riccardo di Andria", + "1994-09-19": "San Gennaro", + "1994-09-21": "San Matteo Evangelista", + "1994-09-24": "San Terenzio di Pesaro", + "1994-09-29": "San Michele Arcangelo", + "1994-10-04": "San Francesco d'Assisi; San Petronio", + "1994-10-09": "San Dionigi", + "1994-10-10": "San Cetteo", + "1994-10-14": "San Gaudenzio", + "1994-10-30": "San Saturnino di Cagliari", + "1994-11-01": "Tutti i Santi", + "1994-11-03": "San Giusto", + "1994-11-10": "San Baudolino", + "1994-11-11": "San Martino", + "1994-11-13": "Sant'Omobono", + "1994-11-24": "San Prospero Vescovo", + "1994-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1994-12-01": "Sant'Ansano", + "1994-12-04": "Santa Barbara", + "1994-12-06": "San Nicola", + "1994-12-07": "Sant'Ambrogio", + "1994-12-08": "Immacolata Concezione", + "1994-12-09": "San Siro", + "1994-12-13": "Santa Lucia", + "1994-12-19": "San Berardo da Pagliara", + "1994-12-25": "Natale", + "1994-12-26": "Santo Stefano", + "1994-12-30": "San Ruggero", + "1995-01-01": "Capodanno", + "1995-01-06": "Epifania del Signore", + "1995-01-13": "Sant'Ilario di Poitiers", + "1995-01-19": "San Bassiano", + "1995-01-20": "San Sebastiano", + "1995-01-22": "San Gaudenzio", + "1995-01-29": "Sant'Ercolano e San Lorenzo", + "1995-01-31": "San Geminiano", + "1995-02-04": "Madonna del Fuoco", + "1995-02-05": "Sant'Agata", + "1995-02-12": "Madonna del Pilerio", + "1995-02-13": "Sant'Archelao", + "1995-02-14": "San Modestino; San Valentino", + "1995-02-15": "Santi Faustino e Giovita", + "1995-02-25": "San Gerlando", + "1995-03-01": "San Leoluca", + "1995-03-16": "Santi Ilario e Taziano", + "1995-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1995-03-19": "San Giuseppe", + "1995-03-22": "Madonna dei Sette Veli", + "1995-04-16": "Pasqua di Resurrezione", + "1995-04-17": "Luned\u00ec dell'Angelo", + "1995-04-23": "San Giorgio", + "1995-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1995-04-27": "San Liberale", + "1995-05-01": "Festa dei Lavoratori", + "1995-05-02": "San Secondo di Asti", + "1995-05-03": "San Nicola Pellegrino", + "1995-05-04": "San Ciriaco", + "1995-05-08": "San Vittore il Moro", + "1995-05-10": "San Cataldo", + "1995-05-11": "San Giustino di Chieti", + "1995-05-18": "San Ponziano", + "1995-05-19": "San Pietro Celestino", + "1995-05-21": "San Zeno", + "1995-05-22": "Santa Giulia", + "1995-05-30": "San Gerardo di Potenza", + "1995-06-01": "San Crescentino", + "1995-06-02": "Festa della Repubblica", + "1995-06-03": "Madonna della Lettera", + "1995-06-05": "Luned\u00ec di Pentecoste", + "1995-06-10": "San Massimo D'Aveia", + "1995-06-13": "Sant'Antonio di Padova", + "1995-06-17": "San Ranieri", + "1995-06-19": "San Gervasio e San Protasio", + "1995-06-20": "San Silverio", + "1995-06-24": "San Giovanni Battista", + "1995-06-26": "San Vigilio", + "1995-06-29": "Santi Pietro e Paolo", + "1995-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1995-07-04": "Sant'Antonino di Piacenza", + "1995-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1995-07-15": "San Giovanni", + "1995-07-16": "San Vitaliano", + "1995-07-23": "Sant'Apollinare", + "1995-07-25": "San Jacopo", + "1995-08-01": "Sant'Eusebio di Vercelli", + "1995-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1995-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1995-08-10": "San Lorenzo", + "1995-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1995-08-16": "Maria Santissima Assunta", + "1995-08-24": "San Bartolomeo apostolo", + "1995-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1995-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1995-09-03": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1995-09-04": "Santa Rosa da Viterbo", + "1995-09-07": "San Grato", + "1995-09-08": "Madonna delle Grazie", + "1995-09-17": "San Riccardo di Andria", + "1995-09-19": "San Gennaro", + "1995-09-21": "San Matteo Evangelista", + "1995-09-24": "San Terenzio di Pesaro", + "1995-09-29": "San Michele Arcangelo", + "1995-10-04": "San Francesco d'Assisi; San Petronio", + "1995-10-09": "San Dionigi", + "1995-10-10": "San Cetteo", + "1995-10-14": "San Gaudenzio", + "1995-10-30": "San Saturnino di Cagliari", + "1995-11-01": "Tutti i Santi", + "1995-11-03": "San Giusto", + "1995-11-10": "San Baudolino", + "1995-11-11": "San Martino", + "1995-11-13": "Sant'Omobono", + "1995-11-24": "San Prospero Vescovo", + "1995-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1995-12-01": "Sant'Ansano", + "1995-12-04": "Santa Barbara", + "1995-12-06": "San Nicola", + "1995-12-07": "Sant'Ambrogio", + "1995-12-08": "Immacolata Concezione", + "1995-12-09": "San Siro", + "1995-12-13": "Santa Lucia", + "1995-12-19": "San Berardo da Pagliara", + "1995-12-25": "Natale", + "1995-12-26": "Santo Stefano", + "1995-12-30": "San Ruggero", + "1996-01-01": "Capodanno", + "1996-01-06": "Epifania del Signore", + "1996-01-13": "Sant'Ilario di Poitiers", + "1996-01-19": "San Bassiano", + "1996-01-20": "San Sebastiano", + "1996-01-22": "San Gaudenzio", + "1996-01-29": "Sant'Ercolano e San Lorenzo", + "1996-01-31": "San Geminiano", + "1996-02-04": "Madonna del Fuoco", + "1996-02-05": "Sant'Agata", + "1996-02-12": "Madonna del Pilerio", + "1996-02-13": "Sant'Archelao", + "1996-02-14": "San Modestino; San Valentino", + "1996-02-15": "Santi Faustino e Giovita", + "1996-02-25": "San Gerlando", + "1996-03-01": "San Leoluca", + "1996-03-16": "Santi Ilario e Taziano", + "1996-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1996-03-19": "San Giuseppe", + "1996-03-22": "Madonna dei Sette Veli", + "1996-04-07": "Pasqua di Resurrezione", + "1996-04-08": "Luned\u00ec dell'Angelo", + "1996-04-23": "San Giorgio", + "1996-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1996-04-27": "San Liberale", + "1996-05-01": "Festa dei Lavoratori", + "1996-05-03": "San Nicola Pellegrino", + "1996-05-04": "San Ciriaco", + "1996-05-07": "San Secondo di Asti", + "1996-05-08": "San Vittore il Moro", + "1996-05-10": "San Cataldo", + "1996-05-11": "San Giustino di Chieti", + "1996-05-16": "San Ponziano", + "1996-05-19": "San Pietro Celestino", + "1996-05-21": "San Zeno", + "1996-05-22": "Santa Giulia", + "1996-05-27": "Luned\u00ec di Pentecoste", + "1996-05-30": "San Gerardo di Potenza", + "1996-06-01": "San Crescentino", + "1996-06-02": "Festa della Repubblica", + "1996-06-03": "Madonna della Lettera", + "1996-06-10": "San Massimo D'Aveia", + "1996-06-13": "Sant'Antonio di Padova", + "1996-06-17": "San Ranieri", + "1996-06-19": "San Gervasio e San Protasio", + "1996-06-20": "San Silverio", + "1996-06-24": "San Giovanni Battista", + "1996-06-26": "San Vigilio", + "1996-06-29": "Santi Pietro e Paolo", + "1996-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1996-07-04": "Sant'Antonino di Piacenza", + "1996-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1996-07-15": "San Giovanni", + "1996-07-16": "San Vitaliano", + "1996-07-23": "Sant'Apollinare", + "1996-07-25": "San Jacopo", + "1996-08-01": "Sant'Eusebio di Vercelli", + "1996-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1996-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1996-08-10": "San Lorenzo", + "1996-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1996-08-16": "Maria Santissima Assunta", + "1996-08-24": "San Bartolomeo apostolo", + "1996-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1996-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1996-09-01": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1996-09-04": "Santa Rosa da Viterbo", + "1996-09-07": "San Grato", + "1996-09-08": "Madonna delle Grazie", + "1996-09-15": "San Riccardo di Andria", + "1996-09-19": "San Gennaro", + "1996-09-21": "San Matteo Evangelista", + "1996-09-24": "San Terenzio di Pesaro", + "1996-09-29": "San Michele Arcangelo", + "1996-10-04": "San Francesco d'Assisi; San Petronio", + "1996-10-09": "San Dionigi", + "1996-10-10": "San Cetteo", + "1996-10-14": "San Gaudenzio", + "1996-10-30": "San Saturnino di Cagliari", + "1996-11-01": "Tutti i Santi", + "1996-11-03": "San Giusto", + "1996-11-10": "San Baudolino", + "1996-11-11": "San Martino", + "1996-11-13": "Sant'Omobono", + "1996-11-24": "San Prospero Vescovo", + "1996-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1996-12-01": "Sant'Ansano", + "1996-12-04": "Santa Barbara", + "1996-12-06": "San Nicola", + "1996-12-07": "Sant'Ambrogio", + "1996-12-08": "Immacolata Concezione", + "1996-12-09": "San Siro", + "1996-12-13": "Santa Lucia", + "1996-12-19": "San Berardo da Pagliara", + "1996-12-25": "Natale", + "1996-12-26": "Santo Stefano", + "1996-12-30": "San Ruggero", + "1997-01-01": "Capodanno", + "1997-01-06": "Epifania del Signore", + "1997-01-13": "Sant'Ilario di Poitiers", + "1997-01-19": "San Bassiano", + "1997-01-20": "San Sebastiano", + "1997-01-22": "San Gaudenzio", + "1997-01-29": "Sant'Ercolano e San Lorenzo", + "1997-01-31": "San Geminiano", + "1997-02-04": "Madonna del Fuoco", + "1997-02-05": "Sant'Agata", + "1997-02-12": "Madonna del Pilerio", + "1997-02-13": "Sant'Archelao", + "1997-02-14": "San Modestino; San Valentino", + "1997-02-15": "Santi Faustino e Giovita", + "1997-02-25": "San Gerlando", + "1997-03-01": "San Leoluca", + "1997-03-16": "Santi Ilario e Taziano", + "1997-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1997-03-19": "San Giuseppe", + "1997-03-22": "Madonna dei Sette Veli", + "1997-03-30": "Pasqua di Resurrezione", + "1997-03-31": "Luned\u00ec dell'Angelo", + "1997-04-23": "San Giorgio", + "1997-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1997-04-27": "San Liberale", + "1997-05-01": "Festa dei Lavoratori", + "1997-05-03": "San Nicola Pellegrino", + "1997-05-04": "San Ciriaco", + "1997-05-06": "San Secondo di Asti", + "1997-05-08": "San Vittore il Moro", + "1997-05-10": "San Cataldo", + "1997-05-11": "San Giustino di Chieti", + "1997-05-15": "San Ponziano", + "1997-05-19": "Luned\u00ec di Pentecoste; San Pietro Celestino", + "1997-05-21": "San Zeno", + "1997-05-22": "Santa Giulia", + "1997-05-30": "San Gerardo di Potenza", + "1997-06-01": "San Crescentino", + "1997-06-02": "Festa della Repubblica", + "1997-06-03": "Madonna della Lettera", + "1997-06-10": "San Massimo D'Aveia", + "1997-06-13": "Sant'Antonio di Padova", + "1997-06-17": "San Ranieri", + "1997-06-19": "San Gervasio e San Protasio", + "1997-06-20": "San Silverio", + "1997-06-24": "San Giovanni Battista", + "1997-06-26": "San Vigilio", + "1997-06-29": "Santi Pietro e Paolo", + "1997-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1997-07-04": "Sant'Antonino di Piacenza", + "1997-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1997-07-15": "San Giovanni", + "1997-07-16": "San Vitaliano", + "1997-07-23": "Sant'Apollinare", + "1997-07-25": "San Jacopo", + "1997-08-01": "Sant'Eusebio di Vercelli", + "1997-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1997-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1997-08-10": "San Lorenzo", + "1997-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1997-08-16": "Maria Santissima Assunta", + "1997-08-24": "San Bartolomeo apostolo", + "1997-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1997-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1997-09-04": "Santa Rosa da Viterbo", + "1997-09-07": "San Grato; San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1997-09-08": "Madonna delle Grazie", + "1997-09-19": "San Gennaro", + "1997-09-21": "San Matteo Evangelista; San Riccardo di Andria", + "1997-09-24": "San Terenzio di Pesaro", + "1997-09-29": "San Michele Arcangelo", + "1997-10-04": "San Francesco d'Assisi; San Petronio", + "1997-10-09": "San Dionigi", + "1997-10-10": "San Cetteo", + "1997-10-14": "San Gaudenzio", + "1997-10-30": "San Saturnino di Cagliari", + "1997-11-01": "Tutti i Santi", + "1997-11-03": "San Giusto", + "1997-11-10": "San Baudolino", + "1997-11-11": "San Martino", + "1997-11-13": "Sant'Omobono", + "1997-11-24": "San Prospero Vescovo", + "1997-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1997-12-01": "Sant'Ansano", + "1997-12-04": "Santa Barbara", + "1997-12-06": "San Nicola", + "1997-12-07": "Sant'Ambrogio", + "1997-12-08": "Immacolata Concezione", + "1997-12-09": "San Siro", + "1997-12-13": "Santa Lucia", + "1997-12-19": "San Berardo da Pagliara", + "1997-12-25": "Natale", + "1997-12-26": "Santo Stefano", + "1997-12-30": "San Ruggero", + "1998-01-01": "Capodanno", + "1998-01-06": "Epifania del Signore", + "1998-01-13": "Sant'Ilario di Poitiers", + "1998-01-19": "San Bassiano", + "1998-01-20": "San Sebastiano", + "1998-01-22": "San Gaudenzio", + "1998-01-29": "Sant'Ercolano e San Lorenzo", + "1998-01-31": "San Geminiano", + "1998-02-04": "Madonna del Fuoco", + "1998-02-05": "Sant'Agata", + "1998-02-12": "Madonna del Pilerio", + "1998-02-13": "Sant'Archelao", + "1998-02-14": "San Modestino; San Valentino", + "1998-02-15": "Santi Faustino e Giovita", + "1998-02-25": "San Gerlando", + "1998-03-01": "San Leoluca", + "1998-03-16": "Santi Ilario e Taziano", + "1998-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1998-03-19": "San Giuseppe", + "1998-03-22": "Madonna dei Sette Veli", + "1998-04-12": "Pasqua di Resurrezione", + "1998-04-13": "Luned\u00ec dell'Angelo", + "1998-04-23": "San Giorgio", + "1998-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1998-04-27": "San Liberale", + "1998-05-01": "Festa dei Lavoratori", + "1998-05-03": "San Nicola Pellegrino", + "1998-05-04": "San Ciriaco", + "1998-05-05": "San Secondo di Asti", + "1998-05-08": "San Vittore il Moro", + "1998-05-10": "San Cataldo", + "1998-05-11": "San Giustino di Chieti", + "1998-05-14": "San Ponziano", + "1998-05-19": "San Pietro Celestino", + "1998-05-21": "San Zeno", + "1998-05-22": "Santa Giulia", + "1998-05-30": "San Gerardo di Potenza", + "1998-06-01": "Luned\u00ec di Pentecoste; San Crescentino", + "1998-06-02": "Festa della Repubblica", + "1998-06-03": "Madonna della Lettera", + "1998-06-10": "San Massimo D'Aveia", + "1998-06-13": "Sant'Antonio di Padova", + "1998-06-17": "San Ranieri", + "1998-06-19": "San Gervasio e San Protasio", + "1998-06-20": "San Silverio", + "1998-06-24": "San Giovanni Battista", + "1998-06-26": "San Vigilio", + "1998-06-29": "Santi Pietro e Paolo", + "1998-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1998-07-04": "Sant'Antonino di Piacenza", + "1998-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1998-07-15": "San Giovanni", + "1998-07-16": "San Vitaliano", + "1998-07-23": "Sant'Apollinare", + "1998-07-25": "San Jacopo", + "1998-08-01": "Sant'Eusebio di Vercelli", + "1998-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1998-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1998-08-10": "San Lorenzo", + "1998-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1998-08-16": "Maria Santissima Assunta", + "1998-08-24": "San Bartolomeo apostolo", + "1998-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1998-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1998-09-04": "Santa Rosa da Viterbo", + "1998-09-06": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1998-09-07": "San Grato", + "1998-09-08": "Madonna delle Grazie", + "1998-09-19": "San Gennaro", + "1998-09-20": "San Riccardo di Andria", + "1998-09-21": "San Matteo Evangelista", + "1998-09-24": "San Terenzio di Pesaro", + "1998-09-29": "San Michele Arcangelo", + "1998-10-04": "San Francesco d'Assisi; San Petronio", + "1998-10-09": "San Dionigi", + "1998-10-10": "San Cetteo", + "1998-10-14": "San Gaudenzio", + "1998-10-30": "San Saturnino di Cagliari", + "1998-11-01": "Tutti i Santi", + "1998-11-03": "San Giusto", + "1998-11-10": "San Baudolino", + "1998-11-11": "San Martino", + "1998-11-13": "Sant'Omobono", + "1998-11-24": "San Prospero Vescovo", + "1998-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1998-12-01": "Sant'Ansano", + "1998-12-04": "Santa Barbara", + "1998-12-06": "San Nicola", + "1998-12-07": "Sant'Ambrogio", + "1998-12-08": "Immacolata Concezione", + "1998-12-09": "San Siro", + "1998-12-13": "Santa Lucia", + "1998-12-19": "San Berardo da Pagliara", + "1998-12-25": "Natale", + "1998-12-26": "Santo Stefano", + "1998-12-30": "San Ruggero", + "1999-01-01": "Capodanno", + "1999-01-06": "Epifania del Signore", + "1999-01-13": "Sant'Ilario di Poitiers", + "1999-01-19": "San Bassiano", + "1999-01-20": "San Sebastiano", + "1999-01-22": "San Gaudenzio", + "1999-01-29": "Sant'Ercolano e San Lorenzo", + "1999-01-31": "San Geminiano", + "1999-02-04": "Madonna del Fuoco", + "1999-02-05": "Sant'Agata", + "1999-02-12": "Madonna del Pilerio", + "1999-02-13": "Sant'Archelao", + "1999-02-14": "San Modestino; San Valentino", + "1999-02-15": "Santi Faustino e Giovita", + "1999-02-25": "San Gerlando", + "1999-03-01": "San Leoluca", + "1999-03-16": "Santi Ilario e Taziano", + "1999-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "1999-03-19": "San Giuseppe", + "1999-03-22": "Madonna dei Sette Veli", + "1999-04-04": "Pasqua di Resurrezione", + "1999-04-05": "Luned\u00ec dell'Angelo", + "1999-04-23": "San Giorgio", + "1999-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "1999-04-27": "San Liberale", + "1999-05-01": "Festa dei Lavoratori", + "1999-05-03": "San Nicola Pellegrino", + "1999-05-04": "San Ciriaco; San Secondo di Asti", + "1999-05-08": "San Vittore il Moro", + "1999-05-10": "San Cataldo", + "1999-05-11": "San Giustino di Chieti", + "1999-05-13": "San Ponziano", + "1999-05-19": "San Pietro Celestino", + "1999-05-21": "San Zeno", + "1999-05-22": "Santa Giulia", + "1999-05-24": "Luned\u00ec di Pentecoste", + "1999-05-30": "San Gerardo di Potenza", + "1999-06-01": "San Crescentino", + "1999-06-02": "Festa della Repubblica", + "1999-06-03": "Madonna della Lettera", + "1999-06-10": "San Massimo D'Aveia", + "1999-06-13": "Sant'Antonio di Padova", + "1999-06-17": "San Ranieri", + "1999-06-19": "San Gervasio e San Protasio", + "1999-06-20": "San Silverio", + "1999-06-24": "San Giovanni Battista", + "1999-06-26": "San Vigilio", + "1999-06-29": "Santi Pietro e Paolo", + "1999-07-02": "Madonna della Bruna; Madonna della Visitazione", + "1999-07-04": "Sant'Antonino di Piacenza", + "1999-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "1999-07-15": "San Giovanni", + "1999-07-16": "San Vitaliano", + "1999-07-23": "Sant'Apollinare", + "1999-07-25": "San Jacopo", + "1999-08-01": "Sant'Eusebio di Vercelli", + "1999-08-05": "Nostra Signora della Neve; Sant'Emidio", + "1999-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "1999-08-10": "San Lorenzo", + "1999-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "1999-08-16": "Maria Santissima Assunta", + "1999-08-24": "San Bartolomeo apostolo", + "1999-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "1999-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "1999-09-04": "Santa Rosa da Viterbo", + "1999-09-05": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "1999-09-07": "San Grato", + "1999-09-08": "Madonna delle Grazie", + "1999-09-19": "San Gennaro; San Riccardo di Andria", + "1999-09-21": "San Matteo Evangelista", + "1999-09-24": "San Terenzio di Pesaro", + "1999-09-29": "San Michele Arcangelo", + "1999-10-04": "San Francesco d'Assisi; San Petronio", + "1999-10-09": "San Dionigi", + "1999-10-10": "San Cetteo", + "1999-10-14": "San Gaudenzio", + "1999-10-30": "San Saturnino di Cagliari", + "1999-11-01": "Tutti i Santi", + "1999-11-03": "San Giusto", + "1999-11-10": "San Baudolino", + "1999-11-11": "San Martino", + "1999-11-13": "Sant'Omobono", + "1999-11-24": "San Prospero Vescovo", + "1999-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "1999-12-01": "Sant'Ansano", + "1999-12-04": "Santa Barbara", + "1999-12-06": "San Nicola", + "1999-12-07": "Sant'Ambrogio", + "1999-12-08": "Immacolata Concezione", + "1999-12-09": "San Siro", + "1999-12-13": "Santa Lucia", + "1999-12-19": "San Berardo da Pagliara", + "1999-12-25": "Natale", + "1999-12-26": "Santo Stefano", + "1999-12-30": "San Ruggero", + "2000-01-01": "Capodanno", + "2000-01-06": "Epifania del Signore", + "2000-01-13": "Sant'Ilario di Poitiers", + "2000-01-19": "San Bassiano", + "2000-01-20": "San Sebastiano", + "2000-01-22": "San Gaudenzio", + "2000-01-29": "Sant'Ercolano e San Lorenzo", + "2000-01-31": "San Geminiano", + "2000-02-04": "Madonna del Fuoco", + "2000-02-05": "Sant'Agata", + "2000-02-12": "Madonna del Pilerio", + "2000-02-13": "Sant'Archelao", + "2000-02-14": "San Modestino; San Valentino", + "2000-02-15": "Santi Faustino e Giovita", + "2000-02-25": "San Gerlando", + "2000-03-01": "San Leoluca", + "2000-03-16": "Santi Ilario e Taziano", + "2000-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2000-03-19": "San Giuseppe", + "2000-03-22": "Madonna dei Sette Veli", + "2000-04-23": "Pasqua di Resurrezione; San Giorgio", + "2000-04-24": "Luned\u00ec dell'Angelo", + "2000-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2000-04-27": "San Liberale", + "2000-05-01": "Festa dei Lavoratori", + "2000-05-02": "San Secondo di Asti", + "2000-05-03": "San Nicola Pellegrino", + "2000-05-04": "San Ciriaco", + "2000-05-08": "San Vittore il Moro", + "2000-05-10": "San Cataldo", + "2000-05-11": "San Giustino di Chieti", + "2000-05-18": "San Ponziano", + "2000-05-19": "San Pietro Celestino", + "2000-05-21": "San Zeno", + "2000-05-22": "Santa Giulia", + "2000-05-30": "San Gerardo di Potenza", + "2000-06-01": "San Crescentino", + "2000-06-02": "Festa della Repubblica", + "2000-06-03": "Madonna della Lettera", + "2000-06-10": "San Massimo D'Aveia", + "2000-06-12": "Luned\u00ec di Pentecoste", + "2000-06-13": "Sant'Antonio di Padova", + "2000-06-17": "San Ranieri", + "2000-06-19": "San Gervasio e San Protasio", + "2000-06-20": "San Silverio", + "2000-06-24": "San Giovanni Battista", + "2000-06-26": "San Vigilio", + "2000-06-29": "Santi Pietro e Paolo", + "2000-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2000-07-04": "Sant'Antonino di Piacenza", + "2000-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2000-07-15": "San Giovanni", + "2000-07-16": "San Vitaliano", + "2000-07-23": "Sant'Apollinare", + "2000-07-25": "San Jacopo", + "2000-08-01": "Sant'Eusebio di Vercelli", + "2000-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2000-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2000-08-10": "San Lorenzo", + "2000-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2000-08-16": "Maria Santissima Assunta", + "2000-08-24": "San Bartolomeo apostolo", + "2000-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2000-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2000-09-03": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2000-09-04": "Santa Rosa da Viterbo", + "2000-09-07": "San Grato", + "2000-09-08": "Madonna delle Grazie", + "2000-09-17": "San Riccardo di Andria", + "2000-09-19": "San Gennaro", + "2000-09-21": "San Matteo Evangelista", + "2000-09-24": "San Terenzio di Pesaro", + "2000-09-29": "San Michele Arcangelo", + "2000-10-04": "San Francesco d'Assisi; San Petronio", + "2000-10-09": "San Dionigi", + "2000-10-10": "San Cetteo", + "2000-10-14": "San Gaudenzio", + "2000-10-30": "San Saturnino di Cagliari", + "2000-11-01": "Tutti i Santi", + "2000-11-03": "San Giusto", + "2000-11-10": "San Baudolino", + "2000-11-11": "San Martino", + "2000-11-13": "Sant'Omobono", + "2000-11-24": "San Prospero Vescovo", + "2000-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2000-12-01": "Sant'Ansano", + "2000-12-04": "Santa Barbara", + "2000-12-06": "San Nicola", + "2000-12-07": "Sant'Ambrogio", + "2000-12-08": "Immacolata Concezione", + "2000-12-09": "San Siro", + "2000-12-13": "Santa Lucia", + "2000-12-19": "San Berardo da Pagliara", + "2000-12-25": "Natale", + "2000-12-26": "Santo Stefano", + "2000-12-30": "San Ruggero", + "2001-01-01": "Capodanno", + "2001-01-06": "Epifania del Signore", + "2001-01-13": "Sant'Ilario di Poitiers", + "2001-01-19": "San Bassiano", + "2001-01-20": "San Sebastiano", + "2001-01-22": "San Gaudenzio", + "2001-01-29": "Sant'Ercolano e San Lorenzo", + "2001-01-31": "San Geminiano", + "2001-02-04": "Madonna del Fuoco", + "2001-02-05": "Sant'Agata", + "2001-02-12": "Madonna del Pilerio", + "2001-02-13": "Sant'Archelao", + "2001-02-14": "San Modestino; San Valentino", + "2001-02-15": "Santi Faustino e Giovita", + "2001-02-25": "San Gerlando", + "2001-03-01": "San Leoluca", + "2001-03-16": "Santi Ilario e Taziano", + "2001-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2001-03-19": "San Giuseppe", + "2001-03-22": "Madonna dei Sette Veli", + "2001-04-15": "Pasqua di Resurrezione", + "2001-04-16": "Luned\u00ec dell'Angelo", + "2001-04-23": "San Giorgio", + "2001-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2001-04-27": "San Liberale", + "2001-05-01": "Festa dei Lavoratori; San Secondo di Asti", + "2001-05-03": "San Nicola Pellegrino", + "2001-05-04": "San Ciriaco", + "2001-05-08": "San Vittore il Moro", + "2001-05-10": "San Cataldo", + "2001-05-11": "San Giustino di Chieti", + "2001-05-17": "San Ponziano", + "2001-05-19": "San Pietro Celestino", + "2001-05-21": "San Zeno", + "2001-05-22": "Santa Giulia", + "2001-05-30": "San Gerardo di Potenza", + "2001-06-01": "San Crescentino", + "2001-06-02": "Festa della Repubblica", + "2001-06-03": "Madonna della Lettera", + "2001-06-04": "Luned\u00ec di Pentecoste", + "2001-06-10": "San Massimo D'Aveia", + "2001-06-13": "Sant'Antonio di Padova", + "2001-06-17": "San Ranieri", + "2001-06-19": "San Gervasio e San Protasio", + "2001-06-20": "San Silverio", + "2001-06-24": "San Giovanni Battista", + "2001-06-26": "San Vigilio", + "2001-06-29": "Santi Pietro e Paolo", + "2001-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2001-07-04": "Sant'Antonino di Piacenza", + "2001-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2001-07-15": "San Giovanni", + "2001-07-16": "San Vitaliano", + "2001-07-23": "Sant'Apollinare", + "2001-07-25": "San Jacopo", + "2001-08-01": "Sant'Eusebio di Vercelli", + "2001-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2001-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2001-08-10": "San Lorenzo", + "2001-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2001-08-16": "Maria Santissima Assunta", + "2001-08-24": "San Bartolomeo apostolo", + "2001-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2001-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2001-09-02": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2001-09-04": "Santa Rosa da Viterbo", + "2001-09-07": "San Grato", + "2001-09-08": "Madonna delle Grazie", + "2001-09-16": "San Riccardo di Andria", + "2001-09-19": "San Gennaro", + "2001-09-21": "San Matteo Evangelista", + "2001-09-24": "San Terenzio di Pesaro", + "2001-09-29": "San Michele Arcangelo", + "2001-10-04": "San Francesco d'Assisi; San Petronio", + "2001-10-09": "San Dionigi", + "2001-10-10": "San Cetteo", + "2001-10-14": "San Gaudenzio", + "2001-10-30": "San Saturnino di Cagliari", + "2001-11-01": "Tutti i Santi", + "2001-11-03": "San Giusto", + "2001-11-10": "San Baudolino", + "2001-11-11": "San Martino", + "2001-11-13": "Sant'Omobono", + "2001-11-24": "San Prospero Vescovo", + "2001-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2001-12-01": "Sant'Ansano", + "2001-12-04": "Santa Barbara", + "2001-12-06": "San Nicola", + "2001-12-07": "Sant'Ambrogio", + "2001-12-08": "Immacolata Concezione", + "2001-12-09": "San Siro", + "2001-12-13": "Santa Lucia", + "2001-12-19": "San Berardo da Pagliara", + "2001-12-25": "Natale", + "2001-12-26": "Santo Stefano", + "2001-12-30": "San Ruggero", + "2002-01-01": "Capodanno", + "2002-01-06": "Epifania del Signore", + "2002-01-13": "Sant'Ilario di Poitiers", + "2002-01-19": "San Bassiano", + "2002-01-20": "San Sebastiano", + "2002-01-22": "San Gaudenzio", + "2002-01-29": "Sant'Ercolano e San Lorenzo", + "2002-01-31": "San Geminiano", + "2002-02-04": "Madonna del Fuoco", + "2002-02-05": "Sant'Agata", + "2002-02-12": "Madonna del Pilerio", + "2002-02-13": "Sant'Archelao", + "2002-02-14": "San Modestino; San Valentino", + "2002-02-15": "Santi Faustino e Giovita", + "2002-02-25": "San Gerlando", + "2002-03-01": "San Leoluca", + "2002-03-16": "Santi Ilario e Taziano", + "2002-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2002-03-19": "San Giuseppe", + "2002-03-22": "Madonna dei Sette Veli", + "2002-03-31": "Pasqua di Resurrezione", + "2002-04-01": "Luned\u00ec dell'Angelo", + "2002-04-23": "San Giorgio", + "2002-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2002-04-27": "San Liberale", + "2002-05-01": "Festa dei Lavoratori", + "2002-05-03": "San Nicola Pellegrino", + "2002-05-04": "San Ciriaco", + "2002-05-07": "San Secondo di Asti", + "2002-05-08": "San Vittore il Moro", + "2002-05-10": "San Cataldo", + "2002-05-11": "San Giustino di Chieti", + "2002-05-16": "San Ponziano", + "2002-05-19": "San Pietro Celestino", + "2002-05-20": "Luned\u00ec di Pentecoste", + "2002-05-21": "San Zeno", + "2002-05-22": "Santa Giulia", + "2002-05-30": "San Gerardo di Potenza", + "2002-06-01": "San Crescentino", + "2002-06-02": "Festa della Repubblica", + "2002-06-03": "Madonna della Lettera", + "2002-06-10": "San Massimo D'Aveia", + "2002-06-13": "Sant'Antonio di Padova", + "2002-06-17": "San Ranieri", + "2002-06-19": "San Gervasio e San Protasio", + "2002-06-20": "San Silverio", + "2002-06-24": "San Giovanni Battista", + "2002-06-26": "San Vigilio", + "2002-06-29": "Santi Pietro e Paolo", + "2002-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2002-07-04": "Sant'Antonino di Piacenza", + "2002-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2002-07-15": "San Giovanni", + "2002-07-16": "San Vitaliano", + "2002-07-23": "Sant'Apollinare", + "2002-07-25": "San Jacopo", + "2002-08-01": "Sant'Eusebio di Vercelli", + "2002-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2002-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2002-08-10": "San Lorenzo", + "2002-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2002-08-16": "Maria Santissima Assunta", + "2002-08-24": "San Bartolomeo apostolo", + "2002-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2002-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2002-09-01": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2002-09-04": "Santa Rosa da Viterbo", + "2002-09-07": "San Grato", + "2002-09-08": "Madonna delle Grazie", + "2002-09-15": "San Riccardo di Andria", + "2002-09-19": "San Gennaro", + "2002-09-21": "San Matteo Evangelista", + "2002-09-24": "San Terenzio di Pesaro", + "2002-09-29": "San Michele Arcangelo", + "2002-10-04": "San Francesco d'Assisi; San Petronio", + "2002-10-09": "San Dionigi", + "2002-10-10": "San Cetteo", + "2002-10-14": "San Gaudenzio", + "2002-10-30": "San Saturnino di Cagliari", + "2002-11-01": "Tutti i Santi", + "2002-11-03": "San Giusto", + "2002-11-10": "San Baudolino", + "2002-11-11": "San Martino", + "2002-11-13": "Sant'Omobono", + "2002-11-24": "San Prospero Vescovo", + "2002-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2002-12-01": "Sant'Ansano", + "2002-12-04": "Santa Barbara", + "2002-12-06": "San Nicola", + "2002-12-07": "Sant'Ambrogio", + "2002-12-08": "Immacolata Concezione", + "2002-12-09": "San Siro", + "2002-12-13": "Santa Lucia", + "2002-12-19": "San Berardo da Pagliara", + "2002-12-25": "Natale", + "2002-12-26": "Santo Stefano", + "2002-12-30": "San Ruggero", + "2003-01-01": "Capodanno", + "2003-01-06": "Epifania del Signore", + "2003-01-13": "Sant'Ilario di Poitiers", + "2003-01-19": "San Bassiano", + "2003-01-20": "San Sebastiano", + "2003-01-22": "San Gaudenzio", + "2003-01-29": "Sant'Ercolano e San Lorenzo", + "2003-01-31": "San Geminiano", + "2003-02-04": "Madonna del Fuoco", + "2003-02-05": "Sant'Agata", + "2003-02-12": "Madonna del Pilerio", + "2003-02-13": "Sant'Archelao", + "2003-02-14": "San Modestino; San Valentino", + "2003-02-15": "Santi Faustino e Giovita", + "2003-02-25": "San Gerlando", + "2003-03-01": "San Leoluca", + "2003-03-16": "Santi Ilario e Taziano", + "2003-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2003-03-19": "San Giuseppe", + "2003-03-22": "Madonna dei Sette Veli", + "2003-04-20": "Pasqua di Resurrezione", + "2003-04-21": "Luned\u00ec dell'Angelo", + "2003-04-23": "San Giorgio", + "2003-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2003-04-27": "San Liberale", + "2003-05-01": "Festa dei Lavoratori", + "2003-05-03": "San Nicola Pellegrino", + "2003-05-04": "San Ciriaco", + "2003-05-06": "San Secondo di Asti", + "2003-05-08": "San Vittore il Moro", + "2003-05-10": "San Cataldo", + "2003-05-11": "San Giustino di Chieti", + "2003-05-15": "San Ponziano", + "2003-05-19": "San Pietro Celestino", + "2003-05-21": "San Zeno", + "2003-05-22": "Santa Giulia", + "2003-05-30": "San Gerardo di Potenza", + "2003-06-01": "San Crescentino", + "2003-06-02": "Festa della Repubblica", + "2003-06-03": "Madonna della Lettera", + "2003-06-09": "Luned\u00ec di Pentecoste", + "2003-06-10": "San Massimo D'Aveia", + "2003-06-13": "Sant'Antonio di Padova", + "2003-06-17": "San Ranieri", + "2003-06-19": "San Gervasio e San Protasio", + "2003-06-20": "San Silverio", + "2003-06-24": "San Giovanni Battista", + "2003-06-26": "San Vigilio", + "2003-06-29": "Santi Pietro e Paolo", + "2003-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2003-07-04": "Sant'Antonino di Piacenza", + "2003-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2003-07-15": "San Giovanni", + "2003-07-16": "San Vitaliano", + "2003-07-23": "Sant'Apollinare", + "2003-07-25": "San Jacopo", + "2003-08-01": "Sant'Eusebio di Vercelli", + "2003-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2003-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2003-08-10": "San Lorenzo", + "2003-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2003-08-16": "Maria Santissima Assunta", + "2003-08-24": "San Bartolomeo apostolo", + "2003-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2003-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2003-09-04": "Santa Rosa da Viterbo", + "2003-09-07": "San Grato; San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2003-09-08": "Madonna delle Grazie", + "2003-09-19": "San Gennaro", + "2003-09-21": "San Matteo Evangelista; San Riccardo di Andria", + "2003-09-24": "San Terenzio di Pesaro", + "2003-09-29": "San Michele Arcangelo", + "2003-10-04": "San Francesco d'Assisi; San Petronio", + "2003-10-09": "San Dionigi", + "2003-10-10": "San Cetteo", + "2003-10-14": "San Gaudenzio", + "2003-10-30": "San Saturnino di Cagliari", + "2003-11-01": "Tutti i Santi", + "2003-11-03": "San Giusto", + "2003-11-10": "San Baudolino", + "2003-11-11": "San Martino", + "2003-11-13": "Sant'Omobono", + "2003-11-24": "San Prospero Vescovo", + "2003-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2003-12-01": "Sant'Ansano", + "2003-12-04": "Santa Barbara", + "2003-12-06": "San Nicola", + "2003-12-07": "Sant'Ambrogio", + "2003-12-08": "Immacolata Concezione", + "2003-12-09": "San Siro", + "2003-12-13": "Santa Lucia", + "2003-12-19": "San Berardo da Pagliara", + "2003-12-25": "Natale", + "2003-12-26": "Santo Stefano", + "2003-12-30": "San Ruggero", + "2004-01-01": "Capodanno", + "2004-01-06": "Epifania del Signore", + "2004-01-13": "Sant'Ilario di Poitiers", + "2004-01-19": "San Bassiano", + "2004-01-20": "San Sebastiano", + "2004-01-22": "San Gaudenzio", + "2004-01-29": "Sant'Ercolano e San Lorenzo", + "2004-01-31": "San Geminiano", + "2004-02-04": "Madonna del Fuoco", + "2004-02-05": "Sant'Agata", + "2004-02-12": "Madonna del Pilerio", + "2004-02-13": "Sant'Archelao", + "2004-02-14": "San Modestino; San Valentino", + "2004-02-15": "Santi Faustino e Giovita", + "2004-02-25": "San Gerlando", + "2004-03-01": "San Leoluca", + "2004-03-16": "Santi Ilario e Taziano", + "2004-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2004-03-19": "San Giuseppe", + "2004-03-22": "Madonna dei Sette Veli", + "2004-04-11": "Pasqua di Resurrezione", + "2004-04-12": "Luned\u00ec dell'Angelo", + "2004-04-23": "San Giorgio", + "2004-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2004-04-27": "San Liberale", + "2004-05-01": "Festa dei Lavoratori", + "2004-05-03": "San Nicola Pellegrino", + "2004-05-04": "San Ciriaco; San Secondo di Asti", + "2004-05-08": "San Vittore il Moro", + "2004-05-10": "San Cataldo", + "2004-05-11": "San Giustino di Chieti", + "2004-05-13": "San Ponziano", + "2004-05-19": "San Pietro Celestino", + "2004-05-21": "San Zeno", + "2004-05-22": "Santa Giulia", + "2004-05-30": "San Gerardo di Potenza", + "2004-05-31": "Luned\u00ec di Pentecoste", + "2004-06-01": "San Crescentino", + "2004-06-02": "Festa della Repubblica", + "2004-06-03": "Madonna della Lettera", + "2004-06-10": "San Massimo D'Aveia", + "2004-06-13": "Sant'Antonio di Padova", + "2004-06-17": "San Ranieri", + "2004-06-19": "San Gervasio e San Protasio", + "2004-06-20": "San Silverio", + "2004-06-24": "San Giovanni Battista", + "2004-06-26": "San Vigilio", + "2004-06-29": "Santi Pietro e Paolo", + "2004-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2004-07-04": "Sant'Antonino di Piacenza", + "2004-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2004-07-15": "San Giovanni", + "2004-07-16": "San Vitaliano", + "2004-07-23": "Sant'Apollinare", + "2004-07-25": "San Jacopo", + "2004-08-01": "Sant'Eusebio di Vercelli", + "2004-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2004-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2004-08-10": "San Lorenzo", + "2004-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2004-08-16": "Maria Santissima Assunta", + "2004-08-24": "San Bartolomeo apostolo", + "2004-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2004-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2004-09-04": "Santa Rosa da Viterbo", + "2004-09-05": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2004-09-07": "San Grato", + "2004-09-08": "Madonna delle Grazie", + "2004-09-19": "San Gennaro; San Riccardo di Andria", + "2004-09-21": "San Matteo Evangelista", + "2004-09-24": "San Terenzio di Pesaro", + "2004-09-29": "San Michele Arcangelo", + "2004-10-04": "San Francesco d'Assisi; San Petronio", + "2004-10-09": "San Dionigi", + "2004-10-10": "San Cetteo", + "2004-10-14": "San Gaudenzio", + "2004-10-30": "San Saturnino di Cagliari", + "2004-11-01": "Tutti i Santi", + "2004-11-03": "San Giusto", + "2004-11-10": "San Baudolino", + "2004-11-11": "San Martino", + "2004-11-13": "Sant'Omobono", + "2004-11-24": "San Prospero Vescovo", + "2004-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2004-12-01": "Sant'Ansano", + "2004-12-04": "Santa Barbara", + "2004-12-06": "San Nicola", + "2004-12-07": "Sant'Ambrogio", + "2004-12-08": "Immacolata Concezione", + "2004-12-09": "San Siro", + "2004-12-13": "Santa Lucia", + "2004-12-19": "San Berardo da Pagliara", + "2004-12-25": "Natale", + "2004-12-26": "Santo Stefano", + "2004-12-30": "San Ruggero", + "2005-01-01": "Capodanno", + "2005-01-06": "Epifania del Signore", + "2005-01-13": "Sant'Ilario di Poitiers", + "2005-01-19": "San Bassiano", + "2005-01-20": "San Sebastiano", + "2005-01-22": "San Gaudenzio", + "2005-01-29": "Sant'Ercolano e San Lorenzo", + "2005-01-31": "San Geminiano", + "2005-02-04": "Madonna del Fuoco", + "2005-02-05": "Sant'Agata", + "2005-02-12": "Madonna del Pilerio", + "2005-02-13": "Sant'Archelao", + "2005-02-14": "San Modestino; San Valentino", + "2005-02-15": "Santi Faustino e Giovita", + "2005-02-25": "San Gerlando", + "2005-03-01": "San Leoluca", + "2005-03-16": "Santi Ilario e Taziano", + "2005-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2005-03-19": "San Giuseppe", + "2005-03-22": "Madonna dei Sette Veli", + "2005-03-27": "Pasqua di Resurrezione", + "2005-03-28": "Luned\u00ec dell'Angelo", + "2005-04-23": "San Giorgio", + "2005-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2005-04-27": "San Liberale", + "2005-05-01": "Festa dei Lavoratori", + "2005-05-03": "San Nicola Pellegrino; San Secondo di Asti", + "2005-05-04": "San Ciriaco", + "2005-05-08": "San Vittore il Moro", + "2005-05-10": "San Cataldo", + "2005-05-11": "San Giustino di Chieti", + "2005-05-12": "San Ponziano", + "2005-05-16": "Luned\u00ec di Pentecoste", + "2005-05-19": "San Pietro Celestino", + "2005-05-21": "San Zeno", + "2005-05-22": "Santa Giulia", + "2005-05-30": "San Gerardo di Potenza", + "2005-06-01": "San Crescentino", + "2005-06-02": "Festa della Repubblica", + "2005-06-03": "Madonna della Lettera", + "2005-06-10": "San Massimo D'Aveia", + "2005-06-13": "Sant'Antonio di Padova", + "2005-06-17": "San Ranieri", + "2005-06-19": "San Gervasio e San Protasio", + "2005-06-20": "San Silverio", + "2005-06-24": "San Giovanni Battista", + "2005-06-26": "San Vigilio", + "2005-06-29": "Santi Pietro e Paolo", + "2005-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2005-07-04": "Sant'Antonino di Piacenza", + "2005-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2005-07-15": "San Giovanni", + "2005-07-16": "San Vitaliano", + "2005-07-23": "Sant'Apollinare", + "2005-07-25": "San Jacopo", + "2005-08-01": "Sant'Eusebio di Vercelli", + "2005-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2005-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2005-08-10": "San Lorenzo", + "2005-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2005-08-16": "Maria Santissima Assunta", + "2005-08-24": "San Bartolomeo apostolo", + "2005-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2005-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2005-09-04": "San Teodoro d'Amasea e San Lorenzo da Brindisi; Santa Rosa da Viterbo", + "2005-09-07": "San Grato", + "2005-09-08": "Madonna delle Grazie", + "2005-09-18": "San Riccardo di Andria", + "2005-09-19": "San Gennaro", + "2005-09-21": "San Matteo Evangelista", + "2005-09-24": "San Terenzio di Pesaro", + "2005-09-29": "San Michele Arcangelo", + "2005-10-04": "San Francesco d'Assisi; San Petronio", + "2005-10-09": "San Dionigi", + "2005-10-10": "San Cetteo", + "2005-10-14": "San Gaudenzio", + "2005-10-30": "San Saturnino di Cagliari", + "2005-11-01": "Tutti i Santi", + "2005-11-03": "San Giusto", + "2005-11-10": "San Baudolino", + "2005-11-11": "San Martino", + "2005-11-13": "Sant'Omobono", + "2005-11-24": "San Prospero Vescovo", + "2005-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2005-12-01": "Sant'Ansano", + "2005-12-04": "Santa Barbara", + "2005-12-06": "San Nicola", + "2005-12-07": "Sant'Ambrogio", + "2005-12-08": "Immacolata Concezione", + "2005-12-09": "San Siro", + "2005-12-13": "Santa Lucia", + "2005-12-19": "San Berardo da Pagliara", + "2005-12-25": "Natale", + "2005-12-26": "Santo Stefano", + "2005-12-30": "San Ruggero", + "2006-01-01": "Capodanno", + "2006-01-06": "Epifania del Signore", + "2006-01-13": "Sant'Ilario di Poitiers", + "2006-01-19": "San Bassiano", + "2006-01-20": "San Sebastiano", + "2006-01-22": "San Gaudenzio", + "2006-01-29": "Sant'Ercolano e San Lorenzo", + "2006-01-31": "San Geminiano", + "2006-02-04": "Madonna del Fuoco", + "2006-02-05": "Sant'Agata", + "2006-02-12": "Madonna del Pilerio", + "2006-02-13": "Sant'Archelao", + "2006-02-14": "San Modestino; San Valentino", + "2006-02-15": "Santi Faustino e Giovita", + "2006-02-25": "San Gerlando", + "2006-03-01": "San Leoluca", + "2006-03-16": "Santi Ilario e Taziano", + "2006-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2006-03-19": "San Giuseppe", + "2006-03-22": "Madonna dei Sette Veli", + "2006-04-16": "Pasqua di Resurrezione", + "2006-04-17": "Luned\u00ec dell'Angelo", + "2006-04-23": "San Giorgio", + "2006-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2006-04-27": "San Liberale", + "2006-05-01": "Festa dei Lavoratori", + "2006-05-02": "San Secondo di Asti", + "2006-05-03": "San Nicola Pellegrino", + "2006-05-04": "San Ciriaco", + "2006-05-08": "San Vittore il Moro", + "2006-05-10": "San Cataldo", + "2006-05-11": "San Giustino di Chieti", + "2006-05-18": "San Ponziano", + "2006-05-19": "San Pietro Celestino", + "2006-05-21": "San Zeno", + "2006-05-22": "Santa Giulia", + "2006-05-30": "San Gerardo di Potenza", + "2006-06-01": "San Crescentino", + "2006-06-02": "Festa della Repubblica", + "2006-06-03": "Madonna della Lettera", + "2006-06-05": "Luned\u00ec di Pentecoste", + "2006-06-10": "San Massimo D'Aveia", + "2006-06-13": "Sant'Antonio di Padova", + "2006-06-17": "San Ranieri", + "2006-06-19": "San Gervasio e San Protasio", + "2006-06-20": "San Silverio", + "2006-06-24": "San Giovanni Battista", + "2006-06-26": "San Vigilio", + "2006-06-29": "Santi Pietro e Paolo", + "2006-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2006-07-04": "Sant'Antonino di Piacenza", + "2006-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2006-07-15": "San Giovanni", + "2006-07-16": "San Vitaliano", + "2006-07-23": "Sant'Apollinare", + "2006-07-25": "San Jacopo", + "2006-08-01": "Sant'Eusebio di Vercelli", + "2006-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2006-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2006-08-10": "San Lorenzo", + "2006-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2006-08-16": "Maria Santissima Assunta", + "2006-08-24": "San Bartolomeo apostolo", + "2006-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2006-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2006-09-03": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2006-09-04": "Santa Rosa da Viterbo", + "2006-09-07": "San Grato", + "2006-09-08": "Madonna delle Grazie", + "2006-09-17": "San Riccardo di Andria", + "2006-09-19": "San Gennaro", + "2006-09-21": "San Matteo Evangelista", + "2006-09-24": "San Terenzio di Pesaro", + "2006-09-29": "San Michele Arcangelo", + "2006-10-04": "San Francesco d'Assisi; San Petronio", + "2006-10-09": "San Dionigi", + "2006-10-10": "San Cetteo", + "2006-10-14": "San Gaudenzio", + "2006-10-30": "San Saturnino di Cagliari", + "2006-11-01": "Tutti i Santi", + "2006-11-03": "San Giusto", + "2006-11-10": "San Baudolino", + "2006-11-11": "San Martino", + "2006-11-13": "Sant'Omobono", + "2006-11-24": "San Prospero Vescovo", + "2006-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2006-12-01": "Sant'Ansano", + "2006-12-04": "Santa Barbara", + "2006-12-06": "San Nicola", + "2006-12-07": "Sant'Ambrogio", + "2006-12-08": "Immacolata Concezione", + "2006-12-09": "San Siro", + "2006-12-13": "Santa Lucia", + "2006-12-19": "San Berardo da Pagliara", + "2006-12-25": "Natale", + "2006-12-26": "Santo Stefano", + "2006-12-30": "San Ruggero", + "2007-01-01": "Capodanno", + "2007-01-06": "Epifania del Signore", + "2007-01-13": "Sant'Ilario di Poitiers", + "2007-01-19": "San Bassiano", + "2007-01-20": "San Sebastiano", + "2007-01-22": "San Gaudenzio", + "2007-01-29": "Sant'Ercolano e San Lorenzo", + "2007-01-31": "San Geminiano", + "2007-02-04": "Madonna del Fuoco", + "2007-02-05": "Sant'Agata", + "2007-02-12": "Madonna del Pilerio", + "2007-02-13": "Sant'Archelao", + "2007-02-14": "San Modestino; San Valentino", + "2007-02-15": "Santi Faustino e Giovita", + "2007-02-25": "San Gerlando", + "2007-03-01": "San Leoluca", + "2007-03-16": "Santi Ilario e Taziano", + "2007-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2007-03-19": "San Giuseppe", + "2007-03-22": "Madonna dei Sette Veli", + "2007-04-08": "Pasqua di Resurrezione", + "2007-04-09": "Luned\u00ec dell'Angelo", + "2007-04-23": "San Giorgio", + "2007-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2007-04-27": "San Liberale", + "2007-05-01": "Festa dei Lavoratori; San Secondo di Asti", + "2007-05-03": "San Nicola Pellegrino", + "2007-05-04": "San Ciriaco", + "2007-05-08": "San Vittore il Moro", + "2007-05-10": "San Cataldo", + "2007-05-11": "San Giustino di Chieti", + "2007-05-17": "San Ponziano", + "2007-05-19": "San Pietro Celestino", + "2007-05-21": "San Zeno", + "2007-05-22": "Santa Giulia", + "2007-05-28": "Luned\u00ec di Pentecoste", + "2007-05-30": "San Gerardo di Potenza", + "2007-06-01": "San Crescentino", + "2007-06-02": "Festa della Repubblica", + "2007-06-03": "Madonna della Lettera", + "2007-06-10": "San Massimo D'Aveia", + "2007-06-13": "Sant'Antonio di Padova", + "2007-06-17": "San Ranieri", + "2007-06-19": "San Gervasio e San Protasio", + "2007-06-20": "San Silverio", + "2007-06-24": "San Giovanni Battista", + "2007-06-26": "San Vigilio", + "2007-06-29": "Santi Pietro e Paolo", + "2007-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2007-07-04": "Sant'Antonino di Piacenza", + "2007-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2007-07-15": "San Giovanni", + "2007-07-16": "San Vitaliano", + "2007-07-23": "Sant'Apollinare", + "2007-07-25": "San Jacopo", + "2007-08-01": "Sant'Eusebio di Vercelli", + "2007-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2007-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2007-08-10": "San Lorenzo", + "2007-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2007-08-16": "Maria Santissima Assunta", + "2007-08-24": "San Bartolomeo apostolo", + "2007-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2007-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2007-09-02": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2007-09-04": "Santa Rosa da Viterbo", + "2007-09-07": "San Grato", + "2007-09-08": "Madonna delle Grazie", + "2007-09-16": "San Riccardo di Andria", + "2007-09-19": "San Gennaro", + "2007-09-21": "San Matteo Evangelista", + "2007-09-24": "San Terenzio di Pesaro", + "2007-09-29": "San Michele Arcangelo", + "2007-10-04": "San Francesco d'Assisi; San Petronio", + "2007-10-09": "San Dionigi", + "2007-10-10": "San Cetteo", + "2007-10-14": "San Gaudenzio", + "2007-10-30": "San Saturnino di Cagliari", + "2007-11-01": "Tutti i Santi", + "2007-11-03": "San Giusto", + "2007-11-10": "San Baudolino", + "2007-11-11": "San Martino", + "2007-11-13": "Sant'Omobono", + "2007-11-24": "San Prospero Vescovo", + "2007-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2007-12-01": "Sant'Ansano", + "2007-12-04": "Santa Barbara", + "2007-12-06": "San Nicola", + "2007-12-07": "Sant'Ambrogio", + "2007-12-08": "Immacolata Concezione", + "2007-12-09": "San Siro", + "2007-12-13": "Santa Lucia", + "2007-12-19": "San Berardo da Pagliara", + "2007-12-25": "Natale", + "2007-12-26": "Santo Stefano", + "2007-12-30": "San Ruggero", + "2008-01-01": "Capodanno", + "2008-01-06": "Epifania del Signore", + "2008-01-13": "Sant'Ilario di Poitiers", + "2008-01-19": "San Bassiano", + "2008-01-20": "San Sebastiano", + "2008-01-22": "San Gaudenzio", + "2008-01-29": "Sant'Ercolano e San Lorenzo", + "2008-01-31": "San Geminiano", + "2008-02-04": "Madonna del Fuoco", + "2008-02-05": "Sant'Agata", + "2008-02-12": "Madonna del Pilerio", + "2008-02-13": "Sant'Archelao", + "2008-02-14": "San Modestino; San Valentino", + "2008-02-15": "Santi Faustino e Giovita", + "2008-02-25": "San Gerlando", + "2008-03-01": "San Leoluca", + "2008-03-16": "Santi Ilario e Taziano", + "2008-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2008-03-19": "San Giuseppe", + "2008-03-22": "Madonna dei Sette Veli", + "2008-03-23": "Pasqua di Resurrezione", + "2008-03-24": "Luned\u00ec dell'Angelo", + "2008-04-23": "San Giorgio", + "2008-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2008-04-27": "San Liberale", + "2008-05-01": "Festa dei Lavoratori", + "2008-05-03": "San Nicola Pellegrino", + "2008-05-04": "San Ciriaco", + "2008-05-06": "San Secondo di Asti", + "2008-05-08": "San Vittore il Moro", + "2008-05-10": "San Cataldo", + "2008-05-11": "San Giustino di Chieti", + "2008-05-12": "Luned\u00ec di Pentecoste", + "2008-05-15": "San Ponziano", + "2008-05-19": "San Pietro Celestino", + "2008-05-21": "San Zeno", + "2008-05-22": "Santa Giulia", + "2008-05-30": "San Gerardo di Potenza", + "2008-06-01": "San Crescentino", + "2008-06-02": "Festa della Repubblica", + "2008-06-03": "Madonna della Lettera", + "2008-06-10": "San Massimo D'Aveia", + "2008-06-13": "Sant'Antonio di Padova", + "2008-06-17": "San Ranieri", + "2008-06-19": "San Gervasio e San Protasio", + "2008-06-20": "San Silverio", + "2008-06-24": "San Giovanni Battista", + "2008-06-26": "San Vigilio", + "2008-06-29": "Santi Pietro e Paolo", + "2008-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2008-07-04": "Sant'Antonino di Piacenza", + "2008-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2008-07-15": "San Giovanni", + "2008-07-16": "San Vitaliano", + "2008-07-23": "Sant'Apollinare", + "2008-07-25": "San Jacopo", + "2008-08-01": "Sant'Eusebio di Vercelli", + "2008-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2008-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2008-08-10": "San Lorenzo", + "2008-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2008-08-16": "Maria Santissima Assunta", + "2008-08-24": "San Bartolomeo apostolo", + "2008-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2008-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2008-09-04": "Santa Rosa da Viterbo", + "2008-09-07": "San Grato; San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2008-09-08": "Madonna delle Grazie", + "2008-09-19": "San Gennaro", + "2008-09-21": "San Matteo Evangelista; San Riccardo di Andria", + "2008-09-24": "San Terenzio di Pesaro", + "2008-09-29": "San Michele Arcangelo", + "2008-10-04": "San Francesco d'Assisi; San Petronio", + "2008-10-09": "San Dionigi", + "2008-10-10": "San Cetteo", + "2008-10-14": "San Gaudenzio", + "2008-10-30": "San Saturnino di Cagliari", + "2008-11-01": "Tutti i Santi", + "2008-11-03": "San Giusto", + "2008-11-10": "San Baudolino", + "2008-11-11": "San Martino", + "2008-11-13": "Sant'Omobono", + "2008-11-24": "San Prospero Vescovo", + "2008-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2008-12-01": "Sant'Ansano", + "2008-12-04": "Santa Barbara", + "2008-12-06": "San Nicola", + "2008-12-07": "Sant'Ambrogio", + "2008-12-08": "Immacolata Concezione", + "2008-12-09": "San Siro", + "2008-12-13": "Santa Lucia", + "2008-12-19": "San Berardo da Pagliara", + "2008-12-25": "Natale", + "2008-12-26": "Santo Stefano", + "2008-12-30": "San Ruggero", + "2009-01-01": "Capodanno", + "2009-01-06": "Epifania del Signore", + "2009-01-13": "Sant'Ilario di Poitiers", + "2009-01-19": "San Bassiano", + "2009-01-20": "San Sebastiano", + "2009-01-22": "San Gaudenzio", + "2009-01-29": "Sant'Ercolano e San Lorenzo", + "2009-01-31": "San Geminiano", + "2009-02-04": "Madonna del Fuoco", + "2009-02-05": "Sant'Agata", + "2009-02-12": "Madonna del Pilerio", + "2009-02-13": "Sant'Archelao", + "2009-02-14": "San Modestino; San Valentino", + "2009-02-15": "Santi Faustino e Giovita", + "2009-02-25": "San Gerlando", + "2009-03-01": "San Leoluca", + "2009-03-16": "Santi Ilario e Taziano", + "2009-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2009-03-19": "San Giuseppe", + "2009-03-22": "Madonna dei Sette Veli", + "2009-04-12": "Pasqua di Resurrezione", + "2009-04-13": "Luned\u00ec dell'Angelo", + "2009-04-23": "San Giorgio", + "2009-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2009-04-27": "San Liberale", + "2009-05-01": "Festa dei Lavoratori", + "2009-05-03": "San Nicola Pellegrino", + "2009-05-04": "San Ciriaco", + "2009-05-05": "San Secondo di Asti", + "2009-05-08": "San Vittore il Moro", + "2009-05-10": "San Cataldo", + "2009-05-11": "San Giustino di Chieti", + "2009-05-14": "San Ponziano", + "2009-05-19": "San Pietro Celestino", + "2009-05-21": "San Zeno", + "2009-05-22": "Santa Giulia", + "2009-05-30": "San Gerardo di Potenza", + "2009-06-01": "Luned\u00ec di Pentecoste; San Crescentino", + "2009-06-02": "Festa della Repubblica", + "2009-06-03": "Madonna della Lettera", + "2009-06-10": "San Massimo D'Aveia", + "2009-06-13": "Sant'Antonio di Padova", + "2009-06-17": "San Ranieri", + "2009-06-19": "San Gervasio e San Protasio", + "2009-06-20": "San Silverio", + "2009-06-24": "San Giovanni Battista", + "2009-06-26": "San Vigilio", + "2009-06-29": "Santi Pietro e Paolo", + "2009-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2009-07-04": "Sant'Antonino di Piacenza", + "2009-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2009-07-15": "San Giovanni", + "2009-07-16": "San Vitaliano", + "2009-07-23": "Sant'Apollinare", + "2009-07-25": "San Jacopo", + "2009-08-01": "Sant'Eusebio di Vercelli", + "2009-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2009-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2009-08-10": "San Lorenzo", + "2009-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2009-08-16": "Maria Santissima Assunta", + "2009-08-24": "San Bartolomeo apostolo", + "2009-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2009-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2009-09-04": "Santa Rosa da Viterbo", + "2009-09-06": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2009-09-07": "San Grato", + "2009-09-08": "Madonna delle Grazie", + "2009-09-19": "San Gennaro", + "2009-09-20": "San Riccardo di Andria", + "2009-09-21": "San Matteo Evangelista", + "2009-09-24": "San Terenzio di Pesaro", + "2009-09-29": "San Michele Arcangelo", + "2009-10-04": "San Francesco d'Assisi; San Petronio", + "2009-10-09": "San Dionigi", + "2009-10-10": "San Cetteo", + "2009-10-14": "San Gaudenzio", + "2009-10-30": "San Saturnino di Cagliari", + "2009-11-01": "Tutti i Santi", + "2009-11-03": "San Giusto", + "2009-11-10": "San Baudolino", + "2009-11-11": "San Martino", + "2009-11-13": "Sant'Omobono", + "2009-11-24": "San Prospero Vescovo", + "2009-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2009-12-01": "Sant'Ansano", + "2009-12-04": "Santa Barbara", + "2009-12-06": "San Nicola", + "2009-12-07": "Sant'Ambrogio", + "2009-12-08": "Immacolata Concezione", + "2009-12-09": "San Siro", + "2009-12-13": "Santa Lucia", + "2009-12-19": "San Berardo da Pagliara", + "2009-12-25": "Natale", + "2009-12-26": "Santo Stefano", + "2009-12-30": "San Ruggero", + "2010-01-01": "Capodanno", + "2010-01-06": "Epifania del Signore", + "2010-01-13": "Sant'Ilario di Poitiers", + "2010-01-19": "San Bassiano", + "2010-01-20": "San Sebastiano", + "2010-01-22": "San Gaudenzio", + "2010-01-29": "Sant'Ercolano e San Lorenzo", + "2010-01-31": "San Geminiano", + "2010-02-04": "Madonna del Fuoco", + "2010-02-05": "Sant'Agata", + "2010-02-12": "Madonna del Pilerio", + "2010-02-13": "Sant'Archelao", + "2010-02-14": "San Modestino; San Valentino", + "2010-02-15": "Santi Faustino e Giovita", + "2010-02-25": "San Gerlando", + "2010-03-01": "San Leoluca", + "2010-03-16": "Santi Ilario e Taziano", + "2010-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2010-03-19": "San Giuseppe", + "2010-03-22": "Madonna dei Sette Veli", + "2010-04-04": "Pasqua di Resurrezione", + "2010-04-05": "Luned\u00ec dell'Angelo", + "2010-04-23": "San Giorgio", + "2010-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2010-04-27": "San Liberale", + "2010-05-01": "Festa dei Lavoratori", + "2010-05-03": "San Nicola Pellegrino", + "2010-05-04": "San Ciriaco; San Secondo di Asti", + "2010-05-08": "San Vittore il Moro", + "2010-05-10": "San Cataldo", + "2010-05-11": "San Giustino di Chieti", + "2010-05-13": "San Ponziano", + "2010-05-19": "San Pietro Celestino", + "2010-05-21": "San Zeno", + "2010-05-22": "Santa Giulia", + "2010-05-24": "Luned\u00ec di Pentecoste", + "2010-05-30": "San Gerardo di Potenza", + "2010-06-01": "San Crescentino", + "2010-06-02": "Festa della Repubblica", + "2010-06-03": "Madonna della Lettera", + "2010-06-10": "San Massimo D'Aveia", + "2010-06-13": "Sant'Antonio di Padova", + "2010-06-17": "San Ranieri", + "2010-06-19": "San Gervasio e San Protasio", + "2010-06-20": "San Silverio", + "2010-06-24": "San Giovanni Battista", + "2010-06-26": "San Vigilio", + "2010-06-29": "Santi Pietro e Paolo", + "2010-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2010-07-04": "Sant'Antonino di Piacenza", + "2010-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2010-07-15": "San Giovanni", + "2010-07-16": "San Vitaliano", + "2010-07-23": "Sant'Apollinare", + "2010-07-25": "San Jacopo", + "2010-08-01": "Sant'Eusebio di Vercelli", + "2010-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2010-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2010-08-10": "San Lorenzo", + "2010-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2010-08-16": "Maria Santissima Assunta", + "2010-08-24": "San Bartolomeo apostolo", + "2010-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2010-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2010-09-04": "Santa Rosa da Viterbo", + "2010-09-05": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2010-09-07": "San Grato", + "2010-09-08": "Madonna delle Grazie", + "2010-09-19": "San Gennaro; San Riccardo di Andria", + "2010-09-21": "San Matteo Evangelista", + "2010-09-24": "San Terenzio di Pesaro", + "2010-09-29": "San Michele Arcangelo", + "2010-10-04": "San Francesco d'Assisi; San Petronio", + "2010-10-09": "San Dionigi", + "2010-10-10": "San Cetteo", + "2010-10-14": "San Gaudenzio", + "2010-10-30": "San Saturnino di Cagliari", + "2010-11-01": "Tutti i Santi", + "2010-11-03": "San Giusto", + "2010-11-10": "San Baudolino", + "2010-11-11": "San Martino", + "2010-11-13": "Sant'Omobono", + "2010-11-24": "San Prospero Vescovo", + "2010-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2010-12-01": "Sant'Ansano", + "2010-12-04": "Santa Barbara", + "2010-12-06": "San Nicola", + "2010-12-07": "Sant'Ambrogio", + "2010-12-08": "Immacolata Concezione", + "2010-12-09": "San Siro", + "2010-12-13": "Santa Lucia", + "2010-12-19": "San Berardo da Pagliara", + "2010-12-25": "Natale", + "2010-12-26": "Santo Stefano", + "2010-12-30": "San Ruggero", + "2011-01-01": "Capodanno", + "2011-01-06": "Epifania del Signore", + "2011-01-13": "Sant'Ilario di Poitiers", + "2011-01-19": "San Bassiano", + "2011-01-20": "San Sebastiano", + "2011-01-22": "San Gaudenzio", + "2011-01-29": "Sant'Ercolano e San Lorenzo", + "2011-01-31": "San Geminiano", + "2011-02-04": "Madonna del Fuoco", + "2011-02-05": "Sant'Agata", + "2011-02-12": "Madonna del Pilerio", + "2011-02-13": "Sant'Archelao", + "2011-02-14": "San Modestino; San Valentino", + "2011-02-15": "Santi Faustino e Giovita", + "2011-02-25": "San Gerlando", + "2011-03-01": "San Leoluca", + "2011-03-16": "Santi Ilario e Taziano", + "2011-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2011-03-19": "San Giuseppe", + "2011-03-22": "Madonna dei Sette Veli", + "2011-04-23": "San Giorgio", + "2011-04-24": "Pasqua di Resurrezione", + "2011-04-25": "Festa della Liberazione; Luned\u00ec dell'Angelo; San Marco; San Marco Evangelista; San Marco evangelista", + "2011-04-27": "San Liberale", + "2011-05-01": "Festa dei Lavoratori", + "2011-05-03": "San Nicola Pellegrino; San Secondo di Asti", + "2011-05-04": "San Ciriaco", + "2011-05-08": "San Vittore il Moro", + "2011-05-10": "San Cataldo", + "2011-05-11": "San Giustino di Chieti", + "2011-05-12": "San Ponziano", + "2011-05-19": "San Pietro Celestino", + "2011-05-21": "San Zeno", + "2011-05-22": "Santa Giulia", + "2011-05-30": "San Gerardo di Potenza", + "2011-06-01": "San Crescentino", + "2011-06-02": "Festa della Repubblica", + "2011-06-03": "Madonna della Lettera", + "2011-06-10": "San Massimo D'Aveia", + "2011-06-13": "Luned\u00ec di Pentecoste; Sant'Antonio di Padova", + "2011-06-17": "San Ranieri", + "2011-06-19": "San Gervasio e San Protasio", + "2011-06-20": "San Silverio", + "2011-06-24": "San Giovanni Battista", + "2011-06-26": "San Vigilio", + "2011-06-29": "Santi Pietro e Paolo", + "2011-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2011-07-04": "Sant'Antonino di Piacenza", + "2011-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2011-07-15": "San Giovanni", + "2011-07-16": "San Vitaliano", + "2011-07-23": "Sant'Apollinare", + "2011-07-25": "San Jacopo", + "2011-08-01": "Sant'Eusebio di Vercelli", + "2011-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2011-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2011-08-10": "San Lorenzo", + "2011-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2011-08-16": "Maria Santissima Assunta", + "2011-08-24": "San Bartolomeo apostolo", + "2011-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2011-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2011-09-04": "San Teodoro d'Amasea e San Lorenzo da Brindisi; Santa Rosa da Viterbo", + "2011-09-07": "San Grato", + "2011-09-08": "Madonna delle Grazie", + "2011-09-18": "San Riccardo di Andria", + "2011-09-19": "San Gennaro", + "2011-09-21": "San Matteo Evangelista", + "2011-09-24": "San Terenzio di Pesaro", + "2011-09-29": "San Michele Arcangelo", + "2011-10-04": "San Francesco d'Assisi; San Petronio", + "2011-10-09": "San Dionigi", + "2011-10-10": "San Cetteo", + "2011-10-14": "San Gaudenzio", + "2011-10-30": "San Saturnino di Cagliari", + "2011-11-01": "Tutti i Santi", + "2011-11-03": "San Giusto", + "2011-11-10": "San Baudolino", + "2011-11-11": "San Martino", + "2011-11-13": "Sant'Omobono", + "2011-11-24": "San Prospero Vescovo", + "2011-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2011-12-01": "Sant'Ansano", + "2011-12-04": "Santa Barbara", + "2011-12-06": "San Nicola", + "2011-12-07": "Sant'Ambrogio", + "2011-12-08": "Immacolata Concezione", + "2011-12-09": "San Siro", + "2011-12-13": "Santa Lucia", + "2011-12-19": "San Berardo da Pagliara", + "2011-12-25": "Natale", + "2011-12-26": "Santo Stefano", + "2011-12-30": "San Ruggero", + "2012-01-01": "Capodanno", + "2012-01-06": "Epifania del Signore", + "2012-01-13": "Sant'Ilario di Poitiers", + "2012-01-19": "San Bassiano", + "2012-01-20": "San Sebastiano", + "2012-01-22": "San Gaudenzio", + "2012-01-29": "Sant'Ercolano e San Lorenzo", + "2012-01-31": "San Geminiano", + "2012-02-04": "Madonna del Fuoco", + "2012-02-05": "Sant'Agata", + "2012-02-12": "Madonna del Pilerio", + "2012-02-13": "Sant'Archelao", + "2012-02-14": "San Modestino; San Valentino", + "2012-02-15": "Santi Faustino e Giovita", + "2012-02-25": "San Gerlando", + "2012-03-01": "San Leoluca", + "2012-03-16": "Santi Ilario e Taziano", + "2012-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2012-03-19": "San Giuseppe", + "2012-03-22": "Madonna dei Sette Veli", + "2012-04-08": "Pasqua di Resurrezione", + "2012-04-09": "Luned\u00ec dell'Angelo", + "2012-04-23": "San Giorgio", + "2012-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2012-04-27": "San Liberale", + "2012-05-01": "Festa dei Lavoratori; San Secondo di Asti", + "2012-05-03": "San Nicola Pellegrino", + "2012-05-04": "San Ciriaco", + "2012-05-08": "San Vittore il Moro", + "2012-05-10": "San Cataldo", + "2012-05-11": "San Giustino di Chieti", + "2012-05-17": "San Ponziano", + "2012-05-19": "San Pietro Celestino", + "2012-05-21": "San Zeno", + "2012-05-22": "Santa Giulia", + "2012-05-28": "Luned\u00ec di Pentecoste", + "2012-05-30": "San Gerardo di Potenza", + "2012-06-01": "San Crescentino", + "2012-06-02": "Festa della Repubblica", + "2012-06-03": "Madonna della Lettera", + "2012-06-10": "San Massimo D'Aveia", + "2012-06-13": "Sant'Antonio di Padova", + "2012-06-17": "San Ranieri", + "2012-06-19": "San Gervasio e San Protasio", + "2012-06-20": "San Silverio", + "2012-06-24": "San Giovanni Battista", + "2012-06-26": "San Vigilio", + "2012-06-29": "Santi Pietro e Paolo", + "2012-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2012-07-04": "Sant'Antonino di Piacenza", + "2012-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2012-07-15": "San Giovanni", + "2012-07-16": "San Vitaliano", + "2012-07-23": "Sant'Apollinare", + "2012-07-25": "San Jacopo", + "2012-08-01": "Sant'Eusebio di Vercelli", + "2012-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2012-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2012-08-10": "San Lorenzo", + "2012-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2012-08-16": "Maria Santissima Assunta", + "2012-08-24": "San Bartolomeo apostolo", + "2012-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2012-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2012-09-02": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2012-09-04": "Santa Rosa da Viterbo", + "2012-09-07": "San Grato", + "2012-09-08": "Madonna delle Grazie", + "2012-09-16": "San Riccardo di Andria", + "2012-09-19": "San Gennaro", + "2012-09-21": "San Matteo Evangelista", + "2012-09-24": "San Terenzio di Pesaro", + "2012-09-29": "San Michele Arcangelo", + "2012-10-04": "San Francesco d'Assisi; San Petronio", + "2012-10-09": "San Dionigi", + "2012-10-10": "San Cetteo", + "2012-10-14": "San Gaudenzio", + "2012-10-30": "San Saturnino di Cagliari", + "2012-11-01": "Tutti i Santi", + "2012-11-03": "San Giusto", + "2012-11-10": "San Baudolino", + "2012-11-11": "San Martino", + "2012-11-13": "Sant'Omobono", + "2012-11-24": "San Prospero Vescovo", + "2012-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2012-12-01": "Sant'Ansano", + "2012-12-04": "Santa Barbara", + "2012-12-06": "San Nicola", + "2012-12-07": "Sant'Ambrogio", + "2012-12-08": "Immacolata Concezione", + "2012-12-09": "San Siro", + "2012-12-13": "Santa Lucia", + "2012-12-19": "San Berardo da Pagliara", + "2012-12-25": "Natale", + "2012-12-26": "Santo Stefano", + "2012-12-30": "San Ruggero", + "2013-01-01": "Capodanno", + "2013-01-06": "Epifania del Signore", + "2013-01-13": "Sant'Ilario di Poitiers", + "2013-01-19": "San Bassiano", + "2013-01-20": "San Sebastiano", + "2013-01-22": "San Gaudenzio", + "2013-01-29": "Sant'Ercolano e San Lorenzo", + "2013-01-31": "San Geminiano", + "2013-02-04": "Madonna del Fuoco", + "2013-02-05": "Sant'Agata", + "2013-02-12": "Madonna del Pilerio", + "2013-02-13": "Sant'Archelao", + "2013-02-14": "San Modestino; San Valentino", + "2013-02-15": "Santi Faustino e Giovita", + "2013-02-25": "San Gerlando", + "2013-03-01": "San Leoluca", + "2013-03-16": "Santi Ilario e Taziano", + "2013-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2013-03-19": "San Giuseppe", + "2013-03-22": "Madonna dei Sette Veli", + "2013-03-31": "Pasqua di Resurrezione", + "2013-04-01": "Luned\u00ec dell'Angelo", + "2013-04-23": "San Giorgio", + "2013-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2013-04-27": "San Liberale", + "2013-05-01": "Festa dei Lavoratori", + "2013-05-03": "San Nicola Pellegrino", + "2013-05-04": "San Ciriaco", + "2013-05-07": "San Secondo di Asti", + "2013-05-08": "San Vittore il Moro", + "2013-05-10": "San Cataldo", + "2013-05-11": "San Giustino di Chieti", + "2013-05-16": "San Ponziano", + "2013-05-19": "San Pietro Celestino", + "2013-05-20": "Luned\u00ec di Pentecoste", + "2013-05-21": "San Zeno", + "2013-05-22": "Santa Giulia", + "2013-05-30": "San Gerardo di Potenza", + "2013-06-01": "San Crescentino", + "2013-06-02": "Festa della Repubblica", + "2013-06-03": "Madonna della Lettera", + "2013-06-10": "San Massimo D'Aveia", + "2013-06-13": "Sant'Antonio di Padova", + "2013-06-17": "San Ranieri", + "2013-06-19": "San Gervasio e San Protasio", + "2013-06-20": "San Silverio", + "2013-06-24": "San Giovanni Battista", + "2013-06-26": "San Vigilio", + "2013-06-29": "Santi Pietro e Paolo", + "2013-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2013-07-04": "Sant'Antonino di Piacenza", + "2013-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2013-07-15": "San Giovanni", + "2013-07-16": "San Vitaliano", + "2013-07-23": "Sant'Apollinare", + "2013-07-25": "San Jacopo", + "2013-08-01": "Sant'Eusebio di Vercelli", + "2013-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2013-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2013-08-10": "San Lorenzo", + "2013-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2013-08-16": "Maria Santissima Assunta", + "2013-08-24": "San Bartolomeo apostolo", + "2013-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2013-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2013-09-01": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2013-09-04": "Santa Rosa da Viterbo", + "2013-09-07": "San Grato", + "2013-09-08": "Madonna delle Grazie", + "2013-09-15": "San Riccardo di Andria", + "2013-09-19": "San Gennaro", + "2013-09-21": "San Matteo Evangelista", + "2013-09-24": "San Terenzio di Pesaro", + "2013-09-29": "San Michele Arcangelo", + "2013-10-04": "San Francesco d'Assisi; San Petronio", + "2013-10-09": "San Dionigi", + "2013-10-10": "San Cetteo", + "2013-10-14": "San Gaudenzio", + "2013-10-30": "San Saturnino di Cagliari", + "2013-11-01": "Tutti i Santi", + "2013-11-03": "San Giusto", + "2013-11-10": "San Baudolino", + "2013-11-11": "San Martino", + "2013-11-13": "Sant'Omobono", + "2013-11-24": "San Prospero Vescovo", + "2013-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2013-12-01": "Sant'Ansano", + "2013-12-04": "Santa Barbara", + "2013-12-06": "San Nicola", + "2013-12-07": "Sant'Ambrogio", + "2013-12-08": "Immacolata Concezione", + "2013-12-09": "San Siro", + "2013-12-13": "Santa Lucia", + "2013-12-19": "San Berardo da Pagliara", + "2013-12-25": "Natale", + "2013-12-26": "Santo Stefano", + "2013-12-30": "San Ruggero", + "2014-01-01": "Capodanno", + "2014-01-06": "Epifania del Signore", + "2014-01-13": "Sant'Ilario di Poitiers", + "2014-01-19": "San Bassiano", + "2014-01-20": "San Sebastiano", + "2014-01-22": "San Gaudenzio", + "2014-01-29": "Sant'Ercolano e San Lorenzo", + "2014-01-31": "San Geminiano", + "2014-02-04": "Madonna del Fuoco", + "2014-02-05": "Sant'Agata", + "2014-02-12": "Madonna del Pilerio", + "2014-02-13": "Sant'Archelao", + "2014-02-14": "San Modestino; San Valentino", + "2014-02-15": "Santi Faustino e Giovita", + "2014-02-25": "San Gerlando", + "2014-03-01": "San Leoluca", + "2014-03-16": "Santi Ilario e Taziano", + "2014-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2014-03-19": "San Giuseppe", + "2014-03-22": "Madonna dei Sette Veli", + "2014-04-20": "Pasqua di Resurrezione", + "2014-04-21": "Luned\u00ec dell'Angelo", + "2014-04-23": "San Giorgio", + "2014-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2014-04-27": "San Liberale", + "2014-05-01": "Festa dei Lavoratori", + "2014-05-03": "San Nicola Pellegrino", + "2014-05-04": "San Ciriaco", + "2014-05-06": "San Secondo di Asti", + "2014-05-08": "San Vittore il Moro", + "2014-05-10": "San Cataldo", + "2014-05-11": "San Giustino di Chieti", + "2014-05-15": "San Ponziano", + "2014-05-19": "San Pietro Celestino", + "2014-05-21": "San Zeno", + "2014-05-22": "Santa Giulia", + "2014-05-30": "San Gerardo di Potenza", + "2014-06-01": "San Crescentino", + "2014-06-02": "Festa della Repubblica", + "2014-06-03": "Madonna della Lettera", + "2014-06-09": "Luned\u00ec di Pentecoste", + "2014-06-10": "San Massimo D'Aveia", + "2014-06-13": "Sant'Antonio di Padova", + "2014-06-17": "San Ranieri", + "2014-06-19": "San Gervasio e San Protasio", + "2014-06-20": "San Silverio", + "2014-06-24": "San Giovanni Battista", + "2014-06-26": "San Vigilio", + "2014-06-29": "Santi Pietro e Paolo", + "2014-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2014-07-04": "Sant'Antonino di Piacenza", + "2014-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2014-07-15": "San Giovanni", + "2014-07-16": "San Vitaliano", + "2014-07-23": "Sant'Apollinare", + "2014-07-25": "San Jacopo", + "2014-08-01": "Sant'Eusebio di Vercelli", + "2014-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2014-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2014-08-10": "San Lorenzo", + "2014-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2014-08-16": "Maria Santissima Assunta", + "2014-08-24": "San Bartolomeo apostolo", + "2014-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2014-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2014-09-04": "Santa Rosa da Viterbo", + "2014-09-07": "San Grato; San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2014-09-08": "Madonna delle Grazie", + "2014-09-19": "San Gennaro", + "2014-09-21": "San Matteo Evangelista; San Riccardo di Andria", + "2014-09-24": "San Terenzio di Pesaro", + "2014-09-29": "San Michele Arcangelo", + "2014-10-04": "San Francesco d'Assisi; San Petronio", + "2014-10-09": "San Dionigi", + "2014-10-10": "San Cetteo", + "2014-10-14": "San Gaudenzio", + "2014-10-30": "San Saturnino di Cagliari", + "2014-11-01": "Tutti i Santi", + "2014-11-03": "San Giusto", + "2014-11-10": "San Baudolino", + "2014-11-11": "San Martino", + "2014-11-13": "Sant'Omobono", + "2014-11-24": "San Prospero Vescovo", + "2014-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2014-12-01": "Sant'Ansano", + "2014-12-04": "Santa Barbara", + "2014-12-06": "San Nicola", + "2014-12-07": "Sant'Ambrogio", + "2014-12-08": "Immacolata Concezione", + "2014-12-09": "San Siro", + "2014-12-13": "Santa Lucia", + "2014-12-19": "San Berardo da Pagliara", + "2014-12-25": "Natale", + "2014-12-26": "Santo Stefano", + "2014-12-30": "San Ruggero", + "2015-01-01": "Capodanno", + "2015-01-06": "Epifania del Signore", + "2015-01-13": "Sant'Ilario di Poitiers", + "2015-01-19": "San Bassiano", + "2015-01-20": "San Sebastiano", + "2015-01-22": "San Gaudenzio", + "2015-01-29": "Sant'Ercolano e San Lorenzo", + "2015-01-31": "San Geminiano", + "2015-02-04": "Madonna del Fuoco", + "2015-02-05": "Sant'Agata", + "2015-02-12": "Madonna del Pilerio", + "2015-02-13": "Sant'Archelao", + "2015-02-14": "San Modestino; San Valentino", + "2015-02-15": "Santi Faustino e Giovita", + "2015-02-25": "San Gerlando", + "2015-03-01": "San Leoluca", + "2015-03-16": "Santi Ilario e Taziano", + "2015-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2015-03-19": "San Giuseppe", + "2015-03-22": "Madonna dei Sette Veli", + "2015-04-05": "Pasqua di Resurrezione", + "2015-04-06": "Luned\u00ec dell'Angelo", + "2015-04-23": "San Giorgio", + "2015-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2015-04-27": "San Liberale", + "2015-05-01": "Festa dei Lavoratori", + "2015-05-03": "San Nicola Pellegrino", + "2015-05-04": "San Ciriaco", + "2015-05-05": "San Secondo di Asti", + "2015-05-08": "San Vittore il Moro", + "2015-05-10": "San Cataldo", + "2015-05-11": "San Giustino di Chieti", + "2015-05-14": "San Ponziano", + "2015-05-19": "San Pietro Celestino", + "2015-05-21": "San Zeno", + "2015-05-22": "Santa Giulia", + "2015-05-25": "Luned\u00ec di Pentecoste", + "2015-05-30": "San Gerardo di Potenza", + "2015-06-01": "San Crescentino", + "2015-06-02": "Festa della Repubblica", + "2015-06-03": "Madonna della Lettera", + "2015-06-10": "San Massimo D'Aveia", + "2015-06-13": "Sant'Antonio di Padova", + "2015-06-17": "San Ranieri", + "2015-06-19": "San Gervasio e San Protasio", + "2015-06-20": "San Silverio", + "2015-06-24": "San Giovanni Battista", + "2015-06-26": "San Vigilio", + "2015-06-29": "Santi Pietro e Paolo", + "2015-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2015-07-04": "Sant'Antonino di Piacenza", + "2015-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2015-07-15": "San Giovanni", + "2015-07-16": "San Vitaliano", + "2015-07-23": "Sant'Apollinare", + "2015-07-25": "San Jacopo", + "2015-08-01": "Sant'Eusebio di Vercelli", + "2015-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2015-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2015-08-10": "San Lorenzo", + "2015-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2015-08-16": "Maria Santissima Assunta", + "2015-08-24": "San Bartolomeo apostolo", + "2015-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2015-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2015-09-04": "Santa Rosa da Viterbo", + "2015-09-06": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2015-09-07": "San Grato", + "2015-09-08": "Madonna delle Grazie", + "2015-09-19": "San Gennaro", + "2015-09-20": "San Riccardo di Andria", + "2015-09-21": "San Matteo Evangelista", + "2015-09-24": "San Terenzio di Pesaro", + "2015-09-29": "San Michele Arcangelo", + "2015-10-04": "San Francesco d'Assisi; San Petronio", + "2015-10-09": "San Dionigi", + "2015-10-10": "San Cetteo", + "2015-10-14": "San Gaudenzio", + "2015-10-30": "San Saturnino di Cagliari", + "2015-11-01": "Tutti i Santi", + "2015-11-03": "San Giusto", + "2015-11-10": "San Baudolino", + "2015-11-11": "San Martino", + "2015-11-13": "Sant'Omobono", + "2015-11-24": "San Prospero Vescovo", + "2015-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2015-12-01": "Sant'Ansano", + "2015-12-04": "Santa Barbara", + "2015-12-06": "San Nicola", + "2015-12-07": "Sant'Ambrogio", + "2015-12-08": "Immacolata Concezione", + "2015-12-09": "San Siro", + "2015-12-13": "Santa Lucia", + "2015-12-19": "San Berardo da Pagliara", + "2015-12-25": "Natale", + "2015-12-26": "Santo Stefano", + "2015-12-30": "San Ruggero", + "2016-01-01": "Capodanno", + "2016-01-06": "Epifania del Signore", + "2016-01-13": "Sant'Ilario di Poitiers", + "2016-01-19": "San Bassiano", + "2016-01-20": "San Sebastiano", + "2016-01-22": "San Gaudenzio", + "2016-01-29": "Sant'Ercolano e San Lorenzo", + "2016-01-31": "San Geminiano", + "2016-02-04": "Madonna del Fuoco", + "2016-02-05": "Sant'Agata", + "2016-02-12": "Madonna del Pilerio", + "2016-02-13": "Sant'Archelao", + "2016-02-14": "San Modestino; San Valentino", + "2016-02-15": "Santi Faustino e Giovita", + "2016-02-25": "San Gerlando", + "2016-03-01": "San Leoluca", + "2016-03-16": "Santi Ilario e Taziano", + "2016-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2016-03-19": "San Giuseppe", + "2016-03-22": "Madonna dei Sette Veli", + "2016-03-27": "Pasqua di Resurrezione", + "2016-03-28": "Luned\u00ec dell'Angelo", + "2016-04-23": "San Giorgio", + "2016-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2016-04-27": "San Liberale", + "2016-05-01": "Festa dei Lavoratori", + "2016-05-03": "San Nicola Pellegrino; San Secondo di Asti", + "2016-05-04": "San Ciriaco", + "2016-05-08": "San Vittore il Moro", + "2016-05-10": "San Cataldo", + "2016-05-11": "San Giustino di Chieti", + "2016-05-12": "San Ponziano", + "2016-05-16": "Luned\u00ec di Pentecoste", + "2016-05-19": "San Pietro Celestino", + "2016-05-21": "San Zeno", + "2016-05-22": "Santa Giulia", + "2016-05-30": "San Gerardo di Potenza", + "2016-06-01": "San Crescentino", + "2016-06-02": "Festa della Repubblica", + "2016-06-03": "Madonna della Lettera", + "2016-06-10": "San Massimo D'Aveia", + "2016-06-13": "Sant'Antonio di Padova", + "2016-06-17": "San Ranieri", + "2016-06-19": "San Gervasio e San Protasio", + "2016-06-20": "San Silverio", + "2016-06-24": "San Giovanni Battista", + "2016-06-26": "San Vigilio", + "2016-06-29": "Santi Pietro e Paolo", + "2016-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2016-07-04": "Sant'Antonino di Piacenza", + "2016-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2016-07-15": "San Giovanni", + "2016-07-16": "San Vitaliano", + "2016-07-23": "Sant'Apollinare", + "2016-07-25": "San Jacopo", + "2016-08-01": "Sant'Eusebio di Vercelli", + "2016-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2016-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2016-08-10": "San Lorenzo", + "2016-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2016-08-16": "Maria Santissima Assunta", + "2016-08-24": "San Bartolomeo apostolo", + "2016-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2016-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2016-09-04": "San Teodoro d'Amasea e San Lorenzo da Brindisi; Santa Rosa da Viterbo", + "2016-09-07": "San Grato", + "2016-09-08": "Madonna delle Grazie", + "2016-09-18": "San Riccardo di Andria", + "2016-09-19": "San Gennaro", + "2016-09-21": "San Matteo Evangelista", + "2016-09-24": "San Terenzio di Pesaro", + "2016-09-29": "San Michele Arcangelo", + "2016-10-04": "San Francesco d'Assisi; San Petronio", + "2016-10-09": "San Dionigi", + "2016-10-10": "San Cetteo", + "2016-10-14": "San Gaudenzio", + "2016-10-30": "San Saturnino di Cagliari", + "2016-11-01": "Tutti i Santi", + "2016-11-03": "San Giusto", + "2016-11-10": "San Baudolino", + "2016-11-11": "San Martino", + "2016-11-13": "Sant'Omobono", + "2016-11-24": "San Prospero Vescovo", + "2016-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2016-12-01": "Sant'Ansano", + "2016-12-04": "Santa Barbara", + "2016-12-06": "San Nicola", + "2016-12-07": "Sant'Ambrogio", + "2016-12-08": "Immacolata Concezione", + "2016-12-09": "San Siro", + "2016-12-13": "Santa Lucia", + "2016-12-19": "San Berardo da Pagliara", + "2016-12-25": "Natale", + "2016-12-26": "Santo Stefano", + "2016-12-30": "San Ruggero", + "2017-01-01": "Capodanno", + "2017-01-06": "Epifania del Signore", + "2017-01-13": "Sant'Ilario di Poitiers", + "2017-01-19": "San Bassiano", + "2017-01-20": "San Sebastiano", + "2017-01-22": "San Gaudenzio", + "2017-01-29": "Sant'Ercolano e San Lorenzo", + "2017-01-31": "San Geminiano", + "2017-02-04": "Madonna del Fuoco", + "2017-02-05": "Sant'Agata", + "2017-02-12": "Madonna del Pilerio", + "2017-02-13": "Sant'Archelao", + "2017-02-14": "San Modestino; San Valentino", + "2017-02-15": "Santi Faustino e Giovita", + "2017-02-25": "San Gerlando", + "2017-03-01": "San Leoluca", + "2017-03-16": "Santi Ilario e Taziano", + "2017-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2017-03-19": "San Giuseppe", + "2017-03-22": "Madonna dei Sette Veli", + "2017-04-16": "Pasqua di Resurrezione", + "2017-04-17": "Luned\u00ec dell'Angelo", + "2017-04-23": "San Giorgio", + "2017-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2017-04-27": "San Liberale", + "2017-05-01": "Festa dei Lavoratori", + "2017-05-02": "San Secondo di Asti", + "2017-05-03": "San Nicola Pellegrino", + "2017-05-04": "San Ciriaco", + "2017-05-08": "San Vittore il Moro", + "2017-05-10": "San Cataldo", + "2017-05-11": "San Giustino di Chieti", + "2017-05-18": "San Ponziano", + "2017-05-19": "San Pietro Celestino", + "2017-05-21": "San Zeno", + "2017-05-22": "Santa Giulia", + "2017-05-30": "San Gerardo di Potenza", + "2017-06-01": "San Crescentino", + "2017-06-02": "Festa della Repubblica", + "2017-06-03": "Madonna della Lettera", + "2017-06-05": "Luned\u00ec di Pentecoste", + "2017-06-10": "San Massimo D'Aveia", + "2017-06-13": "Sant'Antonio di Padova", + "2017-06-17": "San Ranieri", + "2017-06-19": "San Gervasio e San Protasio", + "2017-06-20": "San Silverio", + "2017-06-24": "San Giovanni Battista", + "2017-06-26": "San Vigilio", + "2017-06-29": "Santi Pietro e Paolo", + "2017-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2017-07-04": "Sant'Antonino di Piacenza", + "2017-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2017-07-15": "San Giovanni", + "2017-07-16": "San Vitaliano", + "2017-07-23": "Sant'Apollinare", + "2017-07-25": "San Jacopo", + "2017-08-01": "Sant'Eusebio di Vercelli", + "2017-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2017-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2017-08-10": "San Lorenzo", + "2017-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2017-08-16": "Maria Santissima Assunta", + "2017-08-24": "San Bartolomeo apostolo", + "2017-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2017-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2017-09-03": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2017-09-04": "Santa Rosa da Viterbo", + "2017-09-07": "San Grato", + "2017-09-08": "Madonna delle Grazie", + "2017-09-17": "San Riccardo di Andria", + "2017-09-19": "San Gennaro", + "2017-09-21": "San Matteo Evangelista", + "2017-09-24": "San Terenzio di Pesaro", + "2017-09-29": "San Michele Arcangelo", + "2017-10-04": "San Francesco d'Assisi; San Petronio", + "2017-10-09": "San Dionigi", + "2017-10-10": "San Cetteo", + "2017-10-14": "San Gaudenzio", + "2017-10-30": "San Saturnino di Cagliari", + "2017-11-01": "Tutti i Santi", + "2017-11-03": "San Giusto", + "2017-11-10": "San Baudolino", + "2017-11-11": "San Martino", + "2017-11-13": "Sant'Omobono", + "2017-11-24": "San Prospero Vescovo", + "2017-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2017-12-01": "Sant'Ansano", + "2017-12-04": "Santa Barbara", + "2017-12-06": "San Nicola", + "2017-12-07": "Sant'Ambrogio", + "2017-12-08": "Immacolata Concezione", + "2017-12-09": "San Siro", + "2017-12-13": "Santa Lucia", + "2017-12-19": "San Berardo da Pagliara", + "2017-12-25": "Natale", + "2017-12-26": "Santo Stefano", + "2017-12-30": "San Ruggero", + "2018-01-01": "Capodanno", + "2018-01-06": "Epifania del Signore", + "2018-01-13": "Sant'Ilario di Poitiers", + "2018-01-19": "San Bassiano", + "2018-01-20": "San Sebastiano", + "2018-01-22": "San Gaudenzio", + "2018-01-29": "Sant'Ercolano e San Lorenzo", + "2018-01-31": "San Geminiano", + "2018-02-04": "Madonna del Fuoco", + "2018-02-05": "Sant'Agata", + "2018-02-12": "Madonna del Pilerio", + "2018-02-13": "Sant'Archelao", + "2018-02-14": "San Modestino; San Valentino", + "2018-02-15": "Santi Faustino e Giovita", + "2018-02-25": "San Gerlando", + "2018-03-01": "San Leoluca", + "2018-03-16": "Santi Ilario e Taziano", + "2018-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2018-03-19": "San Giuseppe", + "2018-03-22": "Madonna dei Sette Veli", + "2018-04-01": "Pasqua di Resurrezione", + "2018-04-02": "Luned\u00ec dell'Angelo", + "2018-04-23": "San Giorgio", + "2018-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2018-04-27": "San Liberale", + "2018-05-01": "Festa dei Lavoratori; San Secondo di Asti", + "2018-05-03": "San Nicola Pellegrino", + "2018-05-04": "San Ciriaco", + "2018-05-08": "San Vittore il Moro", + "2018-05-10": "San Cataldo", + "2018-05-11": "San Giustino di Chieti", + "2018-05-17": "San Ponziano", + "2018-05-19": "San Pietro Celestino", + "2018-05-21": "Luned\u00ec di Pentecoste; San Zeno", + "2018-05-22": "Santa Giulia", + "2018-05-30": "San Gerardo di Potenza", + "2018-06-01": "San Crescentino", + "2018-06-02": "Festa della Repubblica", + "2018-06-03": "Madonna della Lettera", + "2018-06-10": "San Massimo D'Aveia", + "2018-06-13": "Sant'Antonio di Padova", + "2018-06-17": "San Ranieri", + "2018-06-19": "San Gervasio e San Protasio", + "2018-06-20": "San Silverio", + "2018-06-24": "San Giovanni Battista", + "2018-06-26": "San Vigilio", + "2018-06-29": "Santi Pietro e Paolo", + "2018-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2018-07-04": "Sant'Antonino di Piacenza", + "2018-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2018-07-15": "San Giovanni", + "2018-07-16": "San Vitaliano", + "2018-07-23": "Sant'Apollinare", + "2018-07-25": "San Jacopo", + "2018-08-01": "Sant'Eusebio di Vercelli", + "2018-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2018-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2018-08-10": "San Lorenzo", + "2018-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2018-08-16": "Maria Santissima Assunta", + "2018-08-24": "San Bartolomeo apostolo", + "2018-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2018-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2018-09-02": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2018-09-04": "Santa Rosa da Viterbo", + "2018-09-07": "San Grato", + "2018-09-08": "Madonna delle Grazie", + "2018-09-16": "San Riccardo di Andria", + "2018-09-19": "San Gennaro", + "2018-09-21": "San Matteo Evangelista", + "2018-09-24": "San Terenzio di Pesaro", + "2018-09-29": "San Michele Arcangelo", + "2018-10-04": "San Francesco d'Assisi; San Petronio", + "2018-10-09": "San Dionigi", + "2018-10-10": "San Cetteo", + "2018-10-14": "San Gaudenzio", + "2018-10-30": "San Saturnino di Cagliari", + "2018-11-01": "Tutti i Santi", + "2018-11-03": "San Giusto", + "2018-11-10": "San Baudolino", + "2018-11-11": "San Martino", + "2018-11-13": "Sant'Omobono", + "2018-11-24": "San Prospero Vescovo", + "2018-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2018-12-01": "Sant'Ansano", + "2018-12-04": "Santa Barbara", + "2018-12-06": "San Nicola", + "2018-12-07": "Sant'Ambrogio", + "2018-12-08": "Immacolata Concezione", + "2018-12-09": "San Siro", + "2018-12-13": "Santa Lucia", + "2018-12-19": "San Berardo da Pagliara", + "2018-12-25": "Natale", + "2018-12-26": "Santo Stefano", + "2018-12-30": "San Ruggero", + "2019-01-01": "Capodanno", + "2019-01-06": "Epifania del Signore", + "2019-01-13": "Sant'Ilario di Poitiers", + "2019-01-19": "San Bassiano", + "2019-01-20": "San Sebastiano", + "2019-01-22": "San Gaudenzio", + "2019-01-29": "Sant'Ercolano e San Lorenzo", + "2019-01-31": "San Geminiano", + "2019-02-04": "Madonna del Fuoco", + "2019-02-05": "Sant'Agata", + "2019-02-12": "Madonna del Pilerio", + "2019-02-13": "Sant'Archelao", + "2019-02-14": "San Modestino; San Valentino", + "2019-02-15": "Santi Faustino e Giovita", + "2019-02-25": "San Gerlando", + "2019-03-01": "San Leoluca", + "2019-03-16": "Santi Ilario e Taziano", + "2019-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2019-03-19": "San Giuseppe", + "2019-03-22": "Madonna dei Sette Veli", + "2019-04-21": "Pasqua di Resurrezione", + "2019-04-22": "Luned\u00ec dell'Angelo", + "2019-04-23": "San Giorgio", + "2019-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2019-04-27": "San Liberale", + "2019-05-01": "Festa dei Lavoratori", + "2019-05-03": "San Nicola Pellegrino", + "2019-05-04": "San Ciriaco", + "2019-05-07": "San Secondo di Asti", + "2019-05-08": "San Vittore il Moro", + "2019-05-10": "San Cataldo", + "2019-05-11": "San Giustino di Chieti", + "2019-05-16": "San Ponziano", + "2019-05-19": "San Pietro Celestino", + "2019-05-21": "San Zeno", + "2019-05-22": "Santa Giulia", + "2019-05-30": "San Gerardo di Potenza", + "2019-06-01": "San Crescentino", + "2019-06-02": "Festa della Repubblica", + "2019-06-03": "Madonna della Lettera", + "2019-06-10": "Luned\u00ec di Pentecoste; San Massimo D'Aveia", + "2019-06-13": "Sant'Antonio di Padova", + "2019-06-17": "San Ranieri", + "2019-06-19": "San Gervasio e San Protasio", + "2019-06-20": "San Silverio", + "2019-06-24": "San Giovanni Battista", + "2019-06-26": "San Vigilio", + "2019-06-29": "Santi Pietro e Paolo", + "2019-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2019-07-04": "Sant'Antonino di Piacenza", + "2019-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2019-07-15": "San Giovanni", + "2019-07-16": "San Vitaliano", + "2019-07-23": "Sant'Apollinare", + "2019-07-25": "San Jacopo", + "2019-08-01": "Sant'Eusebio di Vercelli", + "2019-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2019-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2019-08-10": "San Lorenzo", + "2019-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2019-08-16": "Maria Santissima Assunta", + "2019-08-24": "San Bartolomeo apostolo", + "2019-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2019-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2019-09-01": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2019-09-04": "Santa Rosa da Viterbo", + "2019-09-07": "San Grato", + "2019-09-08": "Madonna delle Grazie", + "2019-09-15": "San Riccardo di Andria", + "2019-09-19": "San Gennaro", + "2019-09-21": "San Matteo Evangelista", + "2019-09-24": "San Terenzio di Pesaro", + "2019-09-29": "San Michele Arcangelo", + "2019-10-04": "San Francesco d'Assisi; San Petronio", + "2019-10-09": "San Dionigi", + "2019-10-10": "San Cetteo", + "2019-10-14": "San Gaudenzio", + "2019-10-30": "San Saturnino di Cagliari", + "2019-11-01": "Tutti i Santi", + "2019-11-03": "San Giusto", + "2019-11-10": "San Baudolino", + "2019-11-11": "San Martino", + "2019-11-13": "Sant'Omobono", + "2019-11-24": "San Prospero Vescovo", + "2019-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2019-12-01": "Sant'Ansano", + "2019-12-04": "Santa Barbara", + "2019-12-06": "San Nicola", + "2019-12-07": "Sant'Ambrogio", + "2019-12-08": "Immacolata Concezione", + "2019-12-09": "San Siro", + "2019-12-13": "Santa Lucia", + "2019-12-19": "San Berardo da Pagliara", + "2019-12-25": "Natale", + "2019-12-26": "Santo Stefano", + "2019-12-30": "San Ruggero", + "2020-01-01": "Capodanno", + "2020-01-06": "Epifania del Signore", + "2020-01-13": "Sant'Ilario di Poitiers", + "2020-01-19": "San Bassiano", + "2020-01-20": "San Sebastiano", + "2020-01-22": "San Gaudenzio", + "2020-01-29": "Sant'Ercolano e San Lorenzo", + "2020-01-31": "San Geminiano", + "2020-02-04": "Madonna del Fuoco", + "2020-02-05": "Sant'Agata", + "2020-02-12": "Madonna del Pilerio", + "2020-02-13": "Sant'Archelao", + "2020-02-14": "San Modestino; San Valentino", + "2020-02-15": "Santi Faustino e Giovita", + "2020-02-25": "San Gerlando", + "2020-03-01": "San Leoluca", + "2020-03-16": "Santi Ilario e Taziano", + "2020-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2020-03-19": "San Giuseppe", + "2020-03-22": "Madonna dei Sette Veli", + "2020-04-12": "Pasqua di Resurrezione", + "2020-04-13": "Luned\u00ec dell'Angelo", + "2020-04-23": "San Giorgio", + "2020-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2020-04-27": "San Liberale", + "2020-05-01": "Festa dei Lavoratori", + "2020-05-03": "San Nicola Pellegrino", + "2020-05-04": "San Ciriaco", + "2020-05-05": "San Secondo di Asti", + "2020-05-08": "San Vittore il Moro", + "2020-05-10": "San Cataldo", + "2020-05-11": "San Giustino di Chieti", + "2020-05-14": "San Ponziano", + "2020-05-19": "San Pietro Celestino", + "2020-05-21": "San Zeno", + "2020-05-22": "Santa Giulia", + "2020-05-30": "San Gerardo di Potenza", + "2020-06-01": "Luned\u00ec di Pentecoste; San Crescentino", + "2020-06-02": "Festa della Repubblica", + "2020-06-03": "Madonna della Lettera", + "2020-06-10": "San Massimo D'Aveia", + "2020-06-13": "Sant'Antonio di Padova", + "2020-06-17": "San Ranieri", + "2020-06-19": "San Gervasio e San Protasio", + "2020-06-20": "San Silverio", + "2020-06-24": "San Giovanni Battista", + "2020-06-26": "San Vigilio", + "2020-06-29": "Santi Pietro e Paolo", + "2020-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2020-07-04": "Sant'Antonino di Piacenza", + "2020-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2020-07-15": "San Giovanni", + "2020-07-16": "San Vitaliano", + "2020-07-23": "Sant'Apollinare", + "2020-07-25": "San Jacopo", + "2020-08-01": "Sant'Eusebio di Vercelli", + "2020-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2020-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2020-08-10": "San Lorenzo", + "2020-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2020-08-16": "Maria Santissima Assunta", + "2020-08-24": "San Bartolomeo apostolo", + "2020-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2020-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2020-09-04": "Santa Rosa da Viterbo", + "2020-09-06": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2020-09-07": "San Grato", + "2020-09-08": "Madonna delle Grazie", + "2020-09-19": "San Gennaro", + "2020-09-20": "San Riccardo di Andria", + "2020-09-21": "San Matteo Evangelista", + "2020-09-24": "San Terenzio di Pesaro", + "2020-09-29": "San Michele Arcangelo", + "2020-10-04": "San Francesco d'Assisi; San Petronio", + "2020-10-09": "San Dionigi", + "2020-10-10": "San Cetteo", + "2020-10-14": "San Gaudenzio", + "2020-10-30": "San Saturnino di Cagliari", + "2020-11-01": "Tutti i Santi", + "2020-11-03": "San Giusto", + "2020-11-10": "San Baudolino", + "2020-11-11": "San Martino", + "2020-11-13": "Sant'Omobono", + "2020-11-24": "San Prospero Vescovo", + "2020-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2020-12-01": "Sant'Ansano", + "2020-12-04": "Santa Barbara", + "2020-12-06": "San Nicola", + "2020-12-07": "Sant'Ambrogio", + "2020-12-08": "Immacolata Concezione", + "2020-12-09": "San Siro", + "2020-12-13": "Santa Lucia", + "2020-12-19": "San Berardo da Pagliara", + "2020-12-25": "Natale", + "2020-12-26": "Santo Stefano", + "2020-12-30": "San Ruggero", + "2021-01-01": "Capodanno", + "2021-01-06": "Epifania del Signore", + "2021-01-13": "Sant'Ilario di Poitiers", + "2021-01-19": "San Bassiano", + "2021-01-20": "San Sebastiano", + "2021-01-22": "San Gaudenzio", + "2021-01-29": "Sant'Ercolano e San Lorenzo", + "2021-01-31": "San Geminiano", + "2021-02-04": "Madonna del Fuoco", + "2021-02-05": "Sant'Agata", + "2021-02-12": "Madonna del Pilerio", + "2021-02-13": "Sant'Archelao", + "2021-02-14": "San Modestino; San Valentino", + "2021-02-15": "Santi Faustino e Giovita", + "2021-02-25": "San Gerlando", + "2021-03-01": "San Leoluca", + "2021-03-16": "Santi Ilario e Taziano", + "2021-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2021-03-19": "San Giuseppe", + "2021-03-22": "Madonna dei Sette Veli", + "2021-04-04": "Pasqua di Resurrezione", + "2021-04-05": "Luned\u00ec dell'Angelo", + "2021-04-23": "San Giorgio", + "2021-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2021-04-27": "San Liberale", + "2021-05-01": "Festa dei Lavoratori", + "2021-05-03": "San Nicola Pellegrino", + "2021-05-04": "San Ciriaco; San Secondo di Asti", + "2021-05-08": "San Vittore il Moro", + "2021-05-10": "San Cataldo", + "2021-05-11": "San Giustino di Chieti", + "2021-05-13": "San Ponziano", + "2021-05-19": "San Pietro Celestino", + "2021-05-21": "San Zeno", + "2021-05-22": "Santa Giulia", + "2021-05-24": "Luned\u00ec di Pentecoste", + "2021-05-30": "San Gerardo di Potenza", + "2021-06-01": "San Crescentino", + "2021-06-02": "Festa della Repubblica", + "2021-06-03": "Madonna della Lettera", + "2021-06-10": "San Massimo D'Aveia", + "2021-06-13": "Sant'Antonio di Padova", + "2021-06-17": "San Ranieri", + "2021-06-19": "San Gervasio e San Protasio", + "2021-06-20": "San Silverio", + "2021-06-24": "San Giovanni Battista", + "2021-06-26": "San Vigilio", + "2021-06-29": "Santi Pietro e Paolo", + "2021-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2021-07-04": "Sant'Antonino di Piacenza", + "2021-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2021-07-15": "San Giovanni", + "2021-07-16": "San Vitaliano", + "2021-07-23": "Sant'Apollinare", + "2021-07-25": "San Jacopo", + "2021-08-01": "Sant'Eusebio di Vercelli", + "2021-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2021-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2021-08-10": "San Lorenzo", + "2021-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2021-08-16": "Maria Santissima Assunta", + "2021-08-24": "San Bartolomeo apostolo", + "2021-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2021-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2021-09-04": "Santa Rosa da Viterbo", + "2021-09-05": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2021-09-07": "San Grato", + "2021-09-08": "Madonna delle Grazie", + "2021-09-19": "San Gennaro; San Riccardo di Andria", + "2021-09-21": "San Matteo Evangelista", + "2021-09-24": "San Terenzio di Pesaro", + "2021-09-29": "San Michele Arcangelo", + "2021-10-04": "San Francesco d'Assisi; San Petronio", + "2021-10-09": "San Dionigi", + "2021-10-10": "San Cetteo", + "2021-10-14": "San Gaudenzio", + "2021-10-30": "San Saturnino di Cagliari", + "2021-11-01": "Tutti i Santi", + "2021-11-03": "San Giusto", + "2021-11-10": "San Baudolino", + "2021-11-11": "San Martino", + "2021-11-13": "Sant'Omobono", + "2021-11-24": "San Prospero Vescovo", + "2021-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2021-12-01": "Sant'Ansano", + "2021-12-04": "Santa Barbara", + "2021-12-06": "San Nicola", + "2021-12-07": "Sant'Ambrogio", + "2021-12-08": "Immacolata Concezione", + "2021-12-09": "San Siro", + "2021-12-13": "Santa Lucia", + "2021-12-19": "San Berardo da Pagliara", + "2021-12-25": "Natale", + "2021-12-26": "Santo Stefano", + "2021-12-30": "San Ruggero", + "2022-01-01": "Capodanno", + "2022-01-06": "Epifania del Signore", + "2022-01-13": "Sant'Ilario di Poitiers", + "2022-01-19": "San Bassiano", + "2022-01-20": "San Sebastiano", + "2022-01-22": "San Gaudenzio", + "2022-01-29": "Sant'Ercolano e San Lorenzo", + "2022-01-31": "San Geminiano", + "2022-02-04": "Madonna del Fuoco", + "2022-02-05": "Sant'Agata", + "2022-02-12": "Madonna del Pilerio", + "2022-02-13": "Sant'Archelao", + "2022-02-14": "San Modestino; San Valentino", + "2022-02-15": "Santi Faustino e Giovita", + "2022-02-25": "San Gerlando", + "2022-03-01": "San Leoluca", + "2022-03-16": "Santi Ilario e Taziano", + "2022-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2022-03-19": "San Giuseppe", + "2022-03-22": "Madonna dei Sette Veli", + "2022-04-17": "Pasqua di Resurrezione", + "2022-04-18": "Luned\u00ec dell'Angelo", + "2022-04-23": "San Giorgio", + "2022-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2022-04-27": "San Liberale", + "2022-05-01": "Festa dei Lavoratori", + "2022-05-03": "San Nicola Pellegrino; San Secondo di Asti", + "2022-05-04": "San Ciriaco", + "2022-05-08": "San Vittore il Moro", + "2022-05-10": "San Cataldo", + "2022-05-11": "San Giustino di Chieti", + "2022-05-12": "San Ponziano", + "2022-05-19": "San Pietro Celestino", + "2022-05-21": "San Zeno", + "2022-05-22": "Santa Giulia", + "2022-05-30": "San Gerardo di Potenza", + "2022-06-01": "San Crescentino", + "2022-06-02": "Festa della Repubblica", + "2022-06-03": "Madonna della Lettera", + "2022-06-06": "Luned\u00ec di Pentecoste", + "2022-06-10": "San Massimo D'Aveia", + "2022-06-13": "Sant'Antonio di Padova", + "2022-06-17": "San Ranieri", + "2022-06-19": "San Gervasio e San Protasio", + "2022-06-20": "San Silverio", + "2022-06-24": "San Giovanni Battista", + "2022-06-26": "San Vigilio", + "2022-06-29": "Santi Pietro e Paolo", + "2022-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2022-07-04": "Sant'Antonino di Piacenza", + "2022-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2022-07-15": "San Giovanni", + "2022-07-16": "San Vitaliano", + "2022-07-23": "Sant'Apollinare", + "2022-07-25": "San Jacopo", + "2022-08-01": "Sant'Eusebio di Vercelli", + "2022-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2022-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2022-08-10": "San Lorenzo", + "2022-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2022-08-16": "Maria Santissima Assunta", + "2022-08-24": "San Bartolomeo apostolo", + "2022-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2022-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2022-09-04": "San Teodoro d'Amasea e San Lorenzo da Brindisi; Santa Rosa da Viterbo", + "2022-09-07": "San Grato", + "2022-09-08": "Madonna delle Grazie", + "2022-09-18": "San Riccardo di Andria", + "2022-09-19": "San Gennaro", + "2022-09-21": "San Matteo Evangelista", + "2022-09-24": "San Terenzio di Pesaro", + "2022-09-29": "San Michele Arcangelo", + "2022-10-04": "San Francesco d'Assisi; San Petronio", + "2022-10-09": "San Dionigi", + "2022-10-10": "San Cetteo", + "2022-10-14": "San Gaudenzio", + "2022-10-30": "San Saturnino di Cagliari", + "2022-11-01": "Tutti i Santi", + "2022-11-03": "San Giusto", + "2022-11-10": "San Baudolino", + "2022-11-11": "San Martino", + "2022-11-13": "Sant'Omobono", + "2022-11-24": "San Prospero Vescovo", + "2022-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2022-12-01": "Sant'Ansano", + "2022-12-04": "Santa Barbara", + "2022-12-06": "San Nicola", + "2022-12-07": "Sant'Ambrogio", + "2022-12-08": "Immacolata Concezione", + "2022-12-09": "San Siro", + "2022-12-13": "Santa Lucia", + "2022-12-19": "San Berardo da Pagliara", + "2022-12-25": "Natale", + "2022-12-26": "Santo Stefano", + "2022-12-30": "San Ruggero", + "2023-01-01": "Capodanno", + "2023-01-06": "Epifania del Signore", + "2023-01-13": "Sant'Ilario di Poitiers", + "2023-01-19": "San Bassiano", + "2023-01-20": "San Sebastiano", + "2023-01-22": "San Gaudenzio", + "2023-01-29": "Sant'Ercolano e San Lorenzo", + "2023-01-31": "San Geminiano", + "2023-02-04": "Madonna del Fuoco", + "2023-02-05": "Sant'Agata", + "2023-02-12": "Madonna del Pilerio", + "2023-02-13": "Sant'Archelao", + "2023-02-14": "San Modestino; San Valentino", + "2023-02-15": "Santi Faustino e Giovita", + "2023-02-25": "San Gerlando", + "2023-03-01": "San Leoluca", + "2023-03-16": "Santi Ilario e Taziano", + "2023-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2023-03-19": "San Giuseppe", + "2023-03-22": "Madonna dei Sette Veli", + "2023-04-09": "Pasqua di Resurrezione", + "2023-04-10": "Luned\u00ec dell'Angelo", + "2023-04-23": "San Giorgio", + "2023-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2023-04-27": "San Liberale", + "2023-05-01": "Festa dei Lavoratori", + "2023-05-02": "San Secondo di Asti", + "2023-05-03": "San Nicola Pellegrino", + "2023-05-04": "San Ciriaco", + "2023-05-08": "San Vittore il Moro", + "2023-05-10": "San Cataldo", + "2023-05-11": "San Giustino di Chieti", + "2023-05-18": "San Ponziano", + "2023-05-19": "San Pietro Celestino", + "2023-05-21": "San Zeno", + "2023-05-22": "Santa Giulia", + "2023-05-29": "Luned\u00ec di Pentecoste", + "2023-05-30": "San Gerardo di Potenza", + "2023-06-01": "San Crescentino", + "2023-06-02": "Festa della Repubblica", + "2023-06-03": "Madonna della Lettera", + "2023-06-10": "San Massimo D'Aveia", + "2023-06-13": "Sant'Antonio di Padova", + "2023-06-17": "San Ranieri", + "2023-06-19": "San Gervasio e San Protasio", + "2023-06-20": "San Silverio", + "2023-06-24": "San Giovanni Battista", + "2023-06-26": "San Vigilio", + "2023-06-29": "Santi Pietro e Paolo", + "2023-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2023-07-04": "Sant'Antonino di Piacenza", + "2023-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2023-07-15": "San Giovanni", + "2023-07-16": "San Vitaliano", + "2023-07-23": "Sant'Apollinare", + "2023-07-25": "San Jacopo", + "2023-08-01": "Sant'Eusebio di Vercelli", + "2023-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2023-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2023-08-10": "San Lorenzo", + "2023-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2023-08-16": "Maria Santissima Assunta", + "2023-08-24": "San Bartolomeo apostolo", + "2023-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2023-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2023-09-03": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2023-09-04": "Santa Rosa da Viterbo", + "2023-09-07": "San Grato", + "2023-09-08": "Madonna delle Grazie", + "2023-09-17": "San Riccardo di Andria", + "2023-09-19": "San Gennaro", + "2023-09-21": "San Matteo Evangelista", + "2023-09-24": "San Terenzio di Pesaro", + "2023-09-29": "San Michele Arcangelo", + "2023-10-04": "San Francesco d'Assisi; San Petronio", + "2023-10-09": "San Dionigi", + "2023-10-10": "San Cetteo", + "2023-10-14": "San Gaudenzio", + "2023-10-30": "San Saturnino di Cagliari", + "2023-11-01": "Tutti i Santi", + "2023-11-03": "San Giusto", + "2023-11-10": "San Baudolino", + "2023-11-11": "San Martino", + "2023-11-13": "Sant'Omobono", + "2023-11-24": "San Prospero Vescovo", + "2023-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2023-12-01": "Sant'Ansano", + "2023-12-04": "Santa Barbara", + "2023-12-06": "San Nicola", + "2023-12-07": "Sant'Ambrogio", + "2023-12-08": "Immacolata Concezione", + "2023-12-09": "San Siro", + "2023-12-13": "Santa Lucia", + "2023-12-19": "San Berardo da Pagliara", + "2023-12-25": "Natale", + "2023-12-26": "Santo Stefano", + "2023-12-30": "San Ruggero", + "2024-01-01": "Capodanno", + "2024-01-06": "Epifania del Signore", + "2024-01-13": "Sant'Ilario di Poitiers", + "2024-01-19": "San Bassiano", + "2024-01-20": "San Sebastiano", + "2024-01-22": "San Gaudenzio", + "2024-01-29": "Sant'Ercolano e San Lorenzo", + "2024-01-31": "San Geminiano", + "2024-02-04": "Madonna del Fuoco", + "2024-02-05": "Sant'Agata", + "2024-02-12": "Madonna del Pilerio", + "2024-02-13": "Sant'Archelao", + "2024-02-14": "San Modestino; San Valentino", + "2024-02-15": "Santi Faustino e Giovita", + "2024-02-25": "San Gerlando", + "2024-03-01": "San Leoluca", + "2024-03-16": "Santi Ilario e Taziano", + "2024-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2024-03-19": "San Giuseppe", + "2024-03-22": "Madonna dei Sette Veli", + "2024-03-31": "Pasqua di Resurrezione", + "2024-04-01": "Luned\u00ec dell'Angelo", + "2024-04-23": "San Giorgio", + "2024-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2024-04-27": "San Liberale", + "2024-05-01": "Festa dei Lavoratori", + "2024-05-03": "San Nicola Pellegrino", + "2024-05-04": "San Ciriaco", + "2024-05-07": "San Secondo di Asti", + "2024-05-08": "San Vittore il Moro", + "2024-05-10": "San Cataldo", + "2024-05-11": "San Giustino di Chieti", + "2024-05-16": "San Ponziano", + "2024-05-19": "San Pietro Celestino", + "2024-05-20": "Luned\u00ec di Pentecoste", + "2024-05-21": "San Zeno", + "2024-05-22": "Santa Giulia", + "2024-05-30": "San Gerardo di Potenza", + "2024-06-01": "San Crescentino", + "2024-06-02": "Festa della Repubblica", + "2024-06-03": "Madonna della Lettera", + "2024-06-10": "San Massimo D'Aveia", + "2024-06-13": "Sant'Antonio di Padova", + "2024-06-17": "San Ranieri", + "2024-06-19": "San Gervasio e San Protasio", + "2024-06-20": "San Silverio", + "2024-06-24": "San Giovanni Battista", + "2024-06-26": "San Vigilio", + "2024-06-29": "Santi Pietro e Paolo", + "2024-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2024-07-04": "Sant'Antonino di Piacenza", + "2024-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2024-07-15": "San Giovanni", + "2024-07-16": "San Vitaliano", + "2024-07-23": "Sant'Apollinare", + "2024-07-25": "San Jacopo", + "2024-08-01": "Sant'Eusebio di Vercelli", + "2024-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2024-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2024-08-10": "San Lorenzo", + "2024-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2024-08-16": "Maria Santissima Assunta", + "2024-08-24": "San Bartolomeo apostolo", + "2024-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2024-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2024-09-01": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2024-09-04": "Santa Rosa da Viterbo", + "2024-09-07": "San Grato", + "2024-09-08": "Madonna delle Grazie", + "2024-09-15": "San Riccardo di Andria", + "2024-09-19": "San Gennaro", + "2024-09-21": "San Matteo Evangelista", + "2024-09-24": "San Terenzio di Pesaro", + "2024-09-29": "San Michele Arcangelo", + "2024-10-04": "San Francesco d'Assisi; San Petronio", + "2024-10-09": "San Dionigi", + "2024-10-10": "San Cetteo", + "2024-10-14": "San Gaudenzio", + "2024-10-30": "San Saturnino di Cagliari", + "2024-11-01": "Tutti i Santi", + "2024-11-03": "San Giusto", + "2024-11-10": "San Baudolino", + "2024-11-11": "San Martino", + "2024-11-13": "Sant'Omobono", + "2024-11-24": "San Prospero Vescovo", + "2024-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2024-12-01": "Sant'Ansano", + "2024-12-04": "Santa Barbara", + "2024-12-06": "San Nicola", + "2024-12-07": "Sant'Ambrogio", + "2024-12-08": "Immacolata Concezione", + "2024-12-09": "San Siro", + "2024-12-13": "Santa Lucia", + "2024-12-19": "San Berardo da Pagliara", + "2024-12-25": "Natale", + "2024-12-26": "Santo Stefano", + "2024-12-30": "San Ruggero", + "2025-01-01": "Capodanno", + "2025-01-06": "Epifania del Signore", + "2025-01-13": "Sant'Ilario di Poitiers", + "2025-01-19": "San Bassiano", + "2025-01-20": "San Sebastiano", + "2025-01-22": "San Gaudenzio", + "2025-01-29": "Sant'Ercolano e San Lorenzo", + "2025-01-31": "San Geminiano", + "2025-02-04": "Madonna del Fuoco", + "2025-02-05": "Sant'Agata", + "2025-02-12": "Madonna del Pilerio", + "2025-02-13": "Sant'Archelao", + "2025-02-14": "San Modestino; San Valentino", + "2025-02-15": "Santi Faustino e Giovita", + "2025-02-25": "San Gerlando", + "2025-03-01": "San Leoluca", + "2025-03-16": "Santi Ilario e Taziano", + "2025-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2025-03-19": "San Giuseppe", + "2025-03-22": "Madonna dei Sette Veli", + "2025-04-20": "Pasqua di Resurrezione", + "2025-04-21": "Luned\u00ec dell'Angelo", + "2025-04-23": "San Giorgio", + "2025-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2025-04-27": "San Liberale", + "2025-05-01": "Festa dei Lavoratori", + "2025-05-03": "San Nicola Pellegrino", + "2025-05-04": "San Ciriaco", + "2025-05-06": "San Secondo di Asti", + "2025-05-08": "San Vittore il Moro", + "2025-05-10": "San Cataldo", + "2025-05-11": "San Giustino di Chieti", + "2025-05-15": "San Ponziano", + "2025-05-19": "San Pietro Celestino", + "2025-05-21": "San Zeno", + "2025-05-22": "Santa Giulia", + "2025-05-30": "San Gerardo di Potenza", + "2025-06-01": "San Crescentino", + "2025-06-02": "Festa della Repubblica", + "2025-06-03": "Madonna della Lettera", + "2025-06-09": "Luned\u00ec di Pentecoste", + "2025-06-10": "San Massimo D'Aveia", + "2025-06-13": "Sant'Antonio di Padova", + "2025-06-17": "San Ranieri", + "2025-06-19": "San Gervasio e San Protasio", + "2025-06-20": "San Silverio", + "2025-06-24": "San Giovanni Battista", + "2025-06-26": "San Vigilio", + "2025-06-29": "Santi Pietro e Paolo", + "2025-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2025-07-04": "Sant'Antonino di Piacenza", + "2025-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2025-07-15": "San Giovanni", + "2025-07-16": "San Vitaliano", + "2025-07-23": "Sant'Apollinare", + "2025-07-25": "San Jacopo", + "2025-08-01": "Sant'Eusebio di Vercelli", + "2025-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2025-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2025-08-10": "San Lorenzo", + "2025-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2025-08-16": "Maria Santissima Assunta", + "2025-08-24": "San Bartolomeo apostolo", + "2025-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2025-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2025-09-04": "Santa Rosa da Viterbo", + "2025-09-07": "San Grato; San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2025-09-08": "Madonna delle Grazie", + "2025-09-19": "San Gennaro", + "2025-09-21": "San Matteo Evangelista; San Riccardo di Andria", + "2025-09-24": "San Terenzio di Pesaro", + "2025-09-29": "San Michele Arcangelo", + "2025-10-04": "San Francesco d'Assisi; San Petronio", + "2025-10-09": "San Dionigi", + "2025-10-10": "San Cetteo", + "2025-10-14": "San Gaudenzio", + "2025-10-30": "San Saturnino di Cagliari", + "2025-11-01": "Tutti i Santi", + "2025-11-03": "San Giusto", + "2025-11-10": "San Baudolino", + "2025-11-11": "San Martino", + "2025-11-13": "Sant'Omobono", + "2025-11-24": "San Prospero Vescovo", + "2025-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2025-12-01": "Sant'Ansano", + "2025-12-04": "Santa Barbara", + "2025-12-06": "San Nicola", + "2025-12-07": "Sant'Ambrogio", + "2025-12-08": "Immacolata Concezione", + "2025-12-09": "San Siro", + "2025-12-13": "Santa Lucia", + "2025-12-19": "San Berardo da Pagliara", + "2025-12-25": "Natale", + "2025-12-26": "Santo Stefano", + "2025-12-30": "San Ruggero", + "2026-01-01": "Capodanno", + "2026-01-06": "Epifania del Signore", + "2026-01-13": "Sant'Ilario di Poitiers", + "2026-01-19": "San Bassiano", + "2026-01-20": "San Sebastiano", + "2026-01-22": "San Gaudenzio", + "2026-01-29": "Sant'Ercolano e San Lorenzo", + "2026-01-31": "San Geminiano", + "2026-02-04": "Madonna del Fuoco", + "2026-02-05": "Sant'Agata", + "2026-02-12": "Madonna del Pilerio", + "2026-02-13": "Sant'Archelao", + "2026-02-14": "San Modestino; San Valentino", + "2026-02-15": "Santi Faustino e Giovita", + "2026-02-25": "San Gerlando", + "2026-03-01": "San Leoluca", + "2026-03-16": "Santi Ilario e Taziano", + "2026-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2026-03-19": "San Giuseppe", + "2026-03-22": "Madonna dei Sette Veli", + "2026-04-05": "Pasqua di Resurrezione", + "2026-04-06": "Luned\u00ec dell'Angelo", + "2026-04-23": "San Giorgio", + "2026-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2026-04-27": "San Liberale", + "2026-05-01": "Festa dei Lavoratori", + "2026-05-03": "San Nicola Pellegrino", + "2026-05-04": "San Ciriaco", + "2026-05-05": "San Secondo di Asti", + "2026-05-08": "San Vittore il Moro", + "2026-05-10": "San Cataldo", + "2026-05-11": "San Giustino di Chieti", + "2026-05-14": "San Ponziano", + "2026-05-19": "San Pietro Celestino", + "2026-05-21": "San Zeno", + "2026-05-22": "Santa Giulia", + "2026-05-25": "Luned\u00ec di Pentecoste", + "2026-05-30": "San Gerardo di Potenza", + "2026-06-01": "San Crescentino", + "2026-06-02": "Festa della Repubblica", + "2026-06-03": "Madonna della Lettera", + "2026-06-10": "San Massimo D'Aveia", + "2026-06-13": "Sant'Antonio di Padova", + "2026-06-17": "San Ranieri", + "2026-06-19": "San Gervasio e San Protasio", + "2026-06-20": "San Silverio", + "2026-06-24": "San Giovanni Battista", + "2026-06-26": "San Vigilio", + "2026-06-29": "Santi Pietro e Paolo", + "2026-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2026-07-04": "Sant'Antonino di Piacenza", + "2026-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2026-07-15": "San Giovanni", + "2026-07-16": "San Vitaliano", + "2026-07-23": "Sant'Apollinare", + "2026-07-25": "San Jacopo", + "2026-08-01": "Sant'Eusebio di Vercelli", + "2026-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2026-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2026-08-10": "San Lorenzo", + "2026-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2026-08-16": "Maria Santissima Assunta", + "2026-08-24": "San Bartolomeo apostolo", + "2026-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2026-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2026-09-04": "Santa Rosa da Viterbo", + "2026-09-06": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2026-09-07": "San Grato", + "2026-09-08": "Madonna delle Grazie", + "2026-09-19": "San Gennaro", + "2026-09-20": "San Riccardo di Andria", + "2026-09-21": "San Matteo Evangelista", + "2026-09-24": "San Terenzio di Pesaro", + "2026-09-29": "San Michele Arcangelo", + "2026-10-04": "San Francesco d'Assisi; San Petronio", + "2026-10-09": "San Dionigi", + "2026-10-10": "San Cetteo", + "2026-10-14": "San Gaudenzio", + "2026-10-30": "San Saturnino di Cagliari", + "2026-11-01": "Tutti i Santi", + "2026-11-03": "San Giusto", + "2026-11-10": "San Baudolino", + "2026-11-11": "San Martino", + "2026-11-13": "Sant'Omobono", + "2026-11-24": "San Prospero Vescovo", + "2026-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2026-12-01": "Sant'Ansano", + "2026-12-04": "Santa Barbara", + "2026-12-06": "San Nicola", + "2026-12-07": "Sant'Ambrogio", + "2026-12-08": "Immacolata Concezione", + "2026-12-09": "San Siro", + "2026-12-13": "Santa Lucia", + "2026-12-19": "San Berardo da Pagliara", + "2026-12-25": "Natale", + "2026-12-26": "Santo Stefano", + "2026-12-30": "San Ruggero", + "2027-01-01": "Capodanno", + "2027-01-06": "Epifania del Signore", + "2027-01-13": "Sant'Ilario di Poitiers", + "2027-01-19": "San Bassiano", + "2027-01-20": "San Sebastiano", + "2027-01-22": "San Gaudenzio", + "2027-01-29": "Sant'Ercolano e San Lorenzo", + "2027-01-31": "San Geminiano", + "2027-02-04": "Madonna del Fuoco", + "2027-02-05": "Sant'Agata", + "2027-02-12": "Madonna del Pilerio", + "2027-02-13": "Sant'Archelao", + "2027-02-14": "San Modestino; San Valentino", + "2027-02-15": "Santi Faustino e Giovita", + "2027-02-25": "San Gerlando", + "2027-03-01": "San Leoluca", + "2027-03-16": "Santi Ilario e Taziano", + "2027-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2027-03-19": "San Giuseppe", + "2027-03-22": "Madonna dei Sette Veli", + "2027-03-28": "Pasqua di Resurrezione", + "2027-03-29": "Luned\u00ec dell'Angelo", + "2027-04-23": "San Giorgio", + "2027-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2027-04-27": "San Liberale", + "2027-05-01": "Festa dei Lavoratori", + "2027-05-03": "San Nicola Pellegrino", + "2027-05-04": "San Ciriaco; San Secondo di Asti", + "2027-05-08": "San Vittore il Moro", + "2027-05-10": "San Cataldo", + "2027-05-11": "San Giustino di Chieti", + "2027-05-13": "San Ponziano", + "2027-05-17": "Luned\u00ec di Pentecoste", + "2027-05-19": "San Pietro Celestino", + "2027-05-21": "San Zeno", + "2027-05-22": "Santa Giulia", + "2027-05-30": "San Gerardo di Potenza", + "2027-06-01": "San Crescentino", + "2027-06-02": "Festa della Repubblica", + "2027-06-03": "Madonna della Lettera", + "2027-06-10": "San Massimo D'Aveia", + "2027-06-13": "Sant'Antonio di Padova", + "2027-06-17": "San Ranieri", + "2027-06-19": "San Gervasio e San Protasio", + "2027-06-20": "San Silverio", + "2027-06-24": "San Giovanni Battista", + "2027-06-26": "San Vigilio", + "2027-06-29": "Santi Pietro e Paolo", + "2027-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2027-07-04": "Sant'Antonino di Piacenza", + "2027-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2027-07-15": "San Giovanni", + "2027-07-16": "San Vitaliano", + "2027-07-23": "Sant'Apollinare", + "2027-07-25": "San Jacopo", + "2027-08-01": "Sant'Eusebio di Vercelli", + "2027-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2027-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2027-08-10": "San Lorenzo", + "2027-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2027-08-16": "Maria Santissima Assunta", + "2027-08-24": "San Bartolomeo apostolo", + "2027-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2027-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2027-09-04": "Santa Rosa da Viterbo", + "2027-09-05": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2027-09-07": "San Grato", + "2027-09-08": "Madonna delle Grazie", + "2027-09-19": "San Gennaro; San Riccardo di Andria", + "2027-09-21": "San Matteo Evangelista", + "2027-09-24": "San Terenzio di Pesaro", + "2027-09-29": "San Michele Arcangelo", + "2027-10-04": "San Francesco d'Assisi; San Petronio", + "2027-10-09": "San Dionigi", + "2027-10-10": "San Cetteo", + "2027-10-14": "San Gaudenzio", + "2027-10-30": "San Saturnino di Cagliari", + "2027-11-01": "Tutti i Santi", + "2027-11-03": "San Giusto", + "2027-11-10": "San Baudolino", + "2027-11-11": "San Martino", + "2027-11-13": "Sant'Omobono", + "2027-11-24": "San Prospero Vescovo", + "2027-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2027-12-01": "Sant'Ansano", + "2027-12-04": "Santa Barbara", + "2027-12-06": "San Nicola", + "2027-12-07": "Sant'Ambrogio", + "2027-12-08": "Immacolata Concezione", + "2027-12-09": "San Siro", + "2027-12-13": "Santa Lucia", + "2027-12-19": "San Berardo da Pagliara", + "2027-12-25": "Natale", + "2027-12-26": "Santo Stefano", + "2027-12-30": "San Ruggero", + "2028-01-01": "Capodanno", + "2028-01-06": "Epifania del Signore", + "2028-01-13": "Sant'Ilario di Poitiers", + "2028-01-19": "San Bassiano", + "2028-01-20": "San Sebastiano", + "2028-01-22": "San Gaudenzio", + "2028-01-29": "Sant'Ercolano e San Lorenzo", + "2028-01-31": "San Geminiano", + "2028-02-04": "Madonna del Fuoco", + "2028-02-05": "Sant'Agata", + "2028-02-12": "Madonna del Pilerio", + "2028-02-13": "Sant'Archelao", + "2028-02-14": "San Modestino; San Valentino", + "2028-02-15": "Santi Faustino e Giovita", + "2028-02-25": "San Gerlando", + "2028-03-01": "San Leoluca", + "2028-03-16": "Santi Ilario e Taziano", + "2028-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2028-03-19": "San Giuseppe", + "2028-03-22": "Madonna dei Sette Veli", + "2028-04-16": "Pasqua di Resurrezione", + "2028-04-17": "Luned\u00ec dell'Angelo", + "2028-04-23": "San Giorgio", + "2028-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2028-04-27": "San Liberale", + "2028-05-01": "Festa dei Lavoratori", + "2028-05-02": "San Secondo di Asti", + "2028-05-03": "San Nicola Pellegrino", + "2028-05-04": "San Ciriaco", + "2028-05-08": "San Vittore il Moro", + "2028-05-10": "San Cataldo", + "2028-05-11": "San Giustino di Chieti", + "2028-05-18": "San Ponziano", + "2028-05-19": "San Pietro Celestino", + "2028-05-21": "San Zeno", + "2028-05-22": "Santa Giulia", + "2028-05-30": "San Gerardo di Potenza", + "2028-06-01": "San Crescentino", + "2028-06-02": "Festa della Repubblica", + "2028-06-03": "Madonna della Lettera", + "2028-06-05": "Luned\u00ec di Pentecoste", + "2028-06-10": "San Massimo D'Aveia", + "2028-06-13": "Sant'Antonio di Padova", + "2028-06-17": "San Ranieri", + "2028-06-19": "San Gervasio e San Protasio", + "2028-06-20": "San Silverio", + "2028-06-24": "San Giovanni Battista", + "2028-06-26": "San Vigilio", + "2028-06-29": "Santi Pietro e Paolo", + "2028-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2028-07-04": "Sant'Antonino di Piacenza", + "2028-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2028-07-15": "San Giovanni", + "2028-07-16": "San Vitaliano", + "2028-07-23": "Sant'Apollinare", + "2028-07-25": "San Jacopo", + "2028-08-01": "Sant'Eusebio di Vercelli", + "2028-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2028-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2028-08-10": "San Lorenzo", + "2028-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2028-08-16": "Maria Santissima Assunta", + "2028-08-24": "San Bartolomeo apostolo", + "2028-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2028-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2028-09-03": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2028-09-04": "Santa Rosa da Viterbo", + "2028-09-07": "San Grato", + "2028-09-08": "Madonna delle Grazie", + "2028-09-17": "San Riccardo di Andria", + "2028-09-19": "San Gennaro", + "2028-09-21": "San Matteo Evangelista", + "2028-09-24": "San Terenzio di Pesaro", + "2028-09-29": "San Michele Arcangelo", + "2028-10-04": "San Francesco d'Assisi; San Petronio", + "2028-10-09": "San Dionigi", + "2028-10-10": "San Cetteo", + "2028-10-14": "San Gaudenzio", + "2028-10-30": "San Saturnino di Cagliari", + "2028-11-01": "Tutti i Santi", + "2028-11-03": "San Giusto", + "2028-11-10": "San Baudolino", + "2028-11-11": "San Martino", + "2028-11-13": "Sant'Omobono", + "2028-11-24": "San Prospero Vescovo", + "2028-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2028-12-01": "Sant'Ansano", + "2028-12-04": "Santa Barbara", + "2028-12-06": "San Nicola", + "2028-12-07": "Sant'Ambrogio", + "2028-12-08": "Immacolata Concezione", + "2028-12-09": "San Siro", + "2028-12-13": "Santa Lucia", + "2028-12-19": "San Berardo da Pagliara", + "2028-12-25": "Natale", + "2028-12-26": "Santo Stefano", + "2028-12-30": "San Ruggero", + "2029-01-01": "Capodanno", + "2029-01-06": "Epifania del Signore", + "2029-01-13": "Sant'Ilario di Poitiers", + "2029-01-19": "San Bassiano", + "2029-01-20": "San Sebastiano", + "2029-01-22": "San Gaudenzio", + "2029-01-29": "Sant'Ercolano e San Lorenzo", + "2029-01-31": "San Geminiano", + "2029-02-04": "Madonna del Fuoco", + "2029-02-05": "Sant'Agata", + "2029-02-12": "Madonna del Pilerio", + "2029-02-13": "Sant'Archelao", + "2029-02-14": "San Modestino; San Valentino", + "2029-02-15": "Santi Faustino e Giovita", + "2029-02-25": "San Gerlando", + "2029-03-01": "San Leoluca", + "2029-03-16": "Santi Ilario e Taziano", + "2029-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2029-03-19": "San Giuseppe", + "2029-03-22": "Madonna dei Sette Veli", + "2029-04-01": "Pasqua di Resurrezione", + "2029-04-02": "Luned\u00ec dell'Angelo", + "2029-04-23": "San Giorgio", + "2029-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2029-04-27": "San Liberale", + "2029-05-01": "Festa dei Lavoratori; San Secondo di Asti", + "2029-05-03": "San Nicola Pellegrino", + "2029-05-04": "San Ciriaco", + "2029-05-08": "San Vittore il Moro", + "2029-05-10": "San Cataldo", + "2029-05-11": "San Giustino di Chieti", + "2029-05-17": "San Ponziano", + "2029-05-19": "San Pietro Celestino", + "2029-05-21": "Luned\u00ec di Pentecoste; San Zeno", + "2029-05-22": "Santa Giulia", + "2029-05-30": "San Gerardo di Potenza", + "2029-06-01": "San Crescentino", + "2029-06-02": "Festa della Repubblica", + "2029-06-03": "Madonna della Lettera", + "2029-06-10": "San Massimo D'Aveia", + "2029-06-13": "Sant'Antonio di Padova", + "2029-06-17": "San Ranieri", + "2029-06-19": "San Gervasio e San Protasio", + "2029-06-20": "San Silverio", + "2029-06-24": "San Giovanni Battista", + "2029-06-26": "San Vigilio", + "2029-06-29": "Santi Pietro e Paolo", + "2029-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2029-07-04": "Sant'Antonino di Piacenza", + "2029-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2029-07-15": "San Giovanni", + "2029-07-16": "San Vitaliano", + "2029-07-23": "Sant'Apollinare", + "2029-07-25": "San Jacopo", + "2029-08-01": "Sant'Eusebio di Vercelli", + "2029-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2029-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2029-08-10": "San Lorenzo", + "2029-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2029-08-16": "Maria Santissima Assunta", + "2029-08-24": "San Bartolomeo apostolo", + "2029-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2029-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2029-09-02": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2029-09-04": "Santa Rosa da Viterbo", + "2029-09-07": "San Grato", + "2029-09-08": "Madonna delle Grazie", + "2029-09-16": "San Riccardo di Andria", + "2029-09-19": "San Gennaro", + "2029-09-21": "San Matteo Evangelista", + "2029-09-24": "San Terenzio di Pesaro", + "2029-09-29": "San Michele Arcangelo", + "2029-10-04": "San Francesco d'Assisi; San Petronio", + "2029-10-09": "San Dionigi", + "2029-10-10": "San Cetteo", + "2029-10-14": "San Gaudenzio", + "2029-10-30": "San Saturnino di Cagliari", + "2029-11-01": "Tutti i Santi", + "2029-11-03": "San Giusto", + "2029-11-10": "San Baudolino", + "2029-11-11": "San Martino", + "2029-11-13": "Sant'Omobono", + "2029-11-24": "San Prospero Vescovo", + "2029-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2029-12-01": "Sant'Ansano", + "2029-12-04": "Santa Barbara", + "2029-12-06": "San Nicola", + "2029-12-07": "Sant'Ambrogio", + "2029-12-08": "Immacolata Concezione", + "2029-12-09": "San Siro", + "2029-12-13": "Santa Lucia", + "2029-12-19": "San Berardo da Pagliara", + "2029-12-25": "Natale", + "2029-12-26": "Santo Stefano", + "2029-12-30": "San Ruggero", + "2030-01-01": "Capodanno", + "2030-01-06": "Epifania del Signore", + "2030-01-13": "Sant'Ilario di Poitiers", + "2030-01-19": "San Bassiano", + "2030-01-20": "San Sebastiano", + "2030-01-22": "San Gaudenzio", + "2030-01-29": "Sant'Ercolano e San Lorenzo", + "2030-01-31": "San Geminiano", + "2030-02-04": "Madonna del Fuoco", + "2030-02-05": "Sant'Agata", + "2030-02-12": "Madonna del Pilerio", + "2030-02-13": "Sant'Archelao", + "2030-02-14": "San Modestino; San Valentino", + "2030-02-15": "Santi Faustino e Giovita", + "2030-02-25": "San Gerlando", + "2030-03-01": "San Leoluca", + "2030-03-16": "Santi Ilario e Taziano", + "2030-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2030-03-19": "San Giuseppe", + "2030-03-22": "Madonna dei Sette Veli", + "2030-04-21": "Pasqua di Resurrezione", + "2030-04-22": "Luned\u00ec dell'Angelo", + "2030-04-23": "San Giorgio", + "2030-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2030-04-27": "San Liberale", + "2030-05-01": "Festa dei Lavoratori", + "2030-05-03": "San Nicola Pellegrino", + "2030-05-04": "San Ciriaco", + "2030-05-07": "San Secondo di Asti", + "2030-05-08": "San Vittore il Moro", + "2030-05-10": "San Cataldo", + "2030-05-11": "San Giustino di Chieti", + "2030-05-16": "San Ponziano", + "2030-05-19": "San Pietro Celestino", + "2030-05-21": "San Zeno", + "2030-05-22": "Santa Giulia", + "2030-05-30": "San Gerardo di Potenza", + "2030-06-01": "San Crescentino", + "2030-06-02": "Festa della Repubblica", + "2030-06-03": "Madonna della Lettera", + "2030-06-10": "Luned\u00ec di Pentecoste; San Massimo D'Aveia", + "2030-06-13": "Sant'Antonio di Padova", + "2030-06-17": "San Ranieri", + "2030-06-19": "San Gervasio e San Protasio", + "2030-06-20": "San Silverio", + "2030-06-24": "San Giovanni Battista", + "2030-06-26": "San Vigilio", + "2030-06-29": "Santi Pietro e Paolo", + "2030-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2030-07-04": "Sant'Antonino di Piacenza", + "2030-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2030-07-15": "San Giovanni", + "2030-07-16": "San Vitaliano", + "2030-07-23": "Sant'Apollinare", + "2030-07-25": "San Jacopo", + "2030-08-01": "Sant'Eusebio di Vercelli", + "2030-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2030-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2030-08-10": "San Lorenzo", + "2030-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2030-08-16": "Maria Santissima Assunta", + "2030-08-24": "San Bartolomeo apostolo", + "2030-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2030-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2030-09-01": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2030-09-04": "Santa Rosa da Viterbo", + "2030-09-07": "San Grato", + "2030-09-08": "Madonna delle Grazie", + "2030-09-15": "San Riccardo di Andria", + "2030-09-19": "San Gennaro", + "2030-09-21": "San Matteo Evangelista", + "2030-09-24": "San Terenzio di Pesaro", + "2030-09-29": "San Michele Arcangelo", + "2030-10-04": "San Francesco d'Assisi; San Petronio", + "2030-10-09": "San Dionigi", + "2030-10-10": "San Cetteo", + "2030-10-14": "San Gaudenzio", + "2030-10-30": "San Saturnino di Cagliari", + "2030-11-01": "Tutti i Santi", + "2030-11-03": "San Giusto", + "2030-11-10": "San Baudolino", + "2030-11-11": "San Martino", + "2030-11-13": "Sant'Omobono", + "2030-11-24": "San Prospero Vescovo", + "2030-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2030-12-01": "Sant'Ansano", + "2030-12-04": "Santa Barbara", + "2030-12-06": "San Nicola", + "2030-12-07": "Sant'Ambrogio", + "2030-12-08": "Immacolata Concezione", + "2030-12-09": "San Siro", + "2030-12-13": "Santa Lucia", + "2030-12-19": "San Berardo da Pagliara", + "2030-12-25": "Natale", + "2030-12-26": "Santo Stefano", + "2030-12-30": "San Ruggero", + "2031-01-01": "Capodanno", + "2031-01-06": "Epifania del Signore", + "2031-01-13": "Sant'Ilario di Poitiers", + "2031-01-19": "San Bassiano", + "2031-01-20": "San Sebastiano", + "2031-01-22": "San Gaudenzio", + "2031-01-29": "Sant'Ercolano e San Lorenzo", + "2031-01-31": "San Geminiano", + "2031-02-04": "Madonna del Fuoco", + "2031-02-05": "Sant'Agata", + "2031-02-12": "Madonna del Pilerio", + "2031-02-13": "Sant'Archelao", + "2031-02-14": "San Modestino; San Valentino", + "2031-02-15": "Santi Faustino e Giovita", + "2031-02-25": "San Gerlando", + "2031-03-01": "San Leoluca", + "2031-03-16": "Santi Ilario e Taziano", + "2031-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2031-03-19": "San Giuseppe", + "2031-03-22": "Madonna dei Sette Veli", + "2031-04-13": "Pasqua di Resurrezione", + "2031-04-14": "Luned\u00ec dell'Angelo", + "2031-04-23": "San Giorgio", + "2031-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2031-04-27": "San Liberale", + "2031-05-01": "Festa dei Lavoratori", + "2031-05-03": "San Nicola Pellegrino", + "2031-05-04": "San Ciriaco", + "2031-05-06": "San Secondo di Asti", + "2031-05-08": "San Vittore il Moro", + "2031-05-10": "San Cataldo", + "2031-05-11": "San Giustino di Chieti", + "2031-05-15": "San Ponziano", + "2031-05-19": "San Pietro Celestino", + "2031-05-21": "San Zeno", + "2031-05-22": "Santa Giulia", + "2031-05-30": "San Gerardo di Potenza", + "2031-06-01": "San Crescentino", + "2031-06-02": "Festa della Repubblica; Luned\u00ec di Pentecoste", + "2031-06-03": "Madonna della Lettera", + "2031-06-10": "San Massimo D'Aveia", + "2031-06-13": "Sant'Antonio di Padova", + "2031-06-17": "San Ranieri", + "2031-06-19": "San Gervasio e San Protasio", + "2031-06-20": "San Silverio", + "2031-06-24": "San Giovanni Battista", + "2031-06-26": "San Vigilio", + "2031-06-29": "Santi Pietro e Paolo", + "2031-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2031-07-04": "Sant'Antonino di Piacenza", + "2031-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2031-07-15": "San Giovanni", + "2031-07-16": "San Vitaliano", + "2031-07-23": "Sant'Apollinare", + "2031-07-25": "San Jacopo", + "2031-08-01": "Sant'Eusebio di Vercelli", + "2031-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2031-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2031-08-10": "San Lorenzo", + "2031-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2031-08-16": "Maria Santissima Assunta", + "2031-08-24": "San Bartolomeo apostolo", + "2031-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2031-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2031-09-04": "Santa Rosa da Viterbo", + "2031-09-07": "San Grato; San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2031-09-08": "Madonna delle Grazie", + "2031-09-19": "San Gennaro", + "2031-09-21": "San Matteo Evangelista; San Riccardo di Andria", + "2031-09-24": "San Terenzio di Pesaro", + "2031-09-29": "San Michele Arcangelo", + "2031-10-04": "San Francesco d'Assisi; San Petronio", + "2031-10-09": "San Dionigi", + "2031-10-10": "San Cetteo", + "2031-10-14": "San Gaudenzio", + "2031-10-30": "San Saturnino di Cagliari", + "2031-11-01": "Tutti i Santi", + "2031-11-03": "San Giusto", + "2031-11-10": "San Baudolino", + "2031-11-11": "San Martino", + "2031-11-13": "Sant'Omobono", + "2031-11-24": "San Prospero Vescovo", + "2031-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2031-12-01": "Sant'Ansano", + "2031-12-04": "Santa Barbara", + "2031-12-06": "San Nicola", + "2031-12-07": "Sant'Ambrogio", + "2031-12-08": "Immacolata Concezione", + "2031-12-09": "San Siro", + "2031-12-13": "Santa Lucia", + "2031-12-19": "San Berardo da Pagliara", + "2031-12-25": "Natale", + "2031-12-26": "Santo Stefano", + "2031-12-30": "San Ruggero", + "2032-01-01": "Capodanno", + "2032-01-06": "Epifania del Signore", + "2032-01-13": "Sant'Ilario di Poitiers", + "2032-01-19": "San Bassiano", + "2032-01-20": "San Sebastiano", + "2032-01-22": "San Gaudenzio", + "2032-01-29": "Sant'Ercolano e San Lorenzo", + "2032-01-31": "San Geminiano", + "2032-02-04": "Madonna del Fuoco", + "2032-02-05": "Sant'Agata", + "2032-02-12": "Madonna del Pilerio", + "2032-02-13": "Sant'Archelao", + "2032-02-14": "San Modestino; San Valentino", + "2032-02-15": "Santi Faustino e Giovita", + "2032-02-25": "San Gerlando", + "2032-03-01": "San Leoluca", + "2032-03-16": "Santi Ilario e Taziano", + "2032-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2032-03-19": "San Giuseppe", + "2032-03-22": "Madonna dei Sette Veli", + "2032-03-28": "Pasqua di Resurrezione", + "2032-03-29": "Luned\u00ec dell'Angelo", + "2032-04-23": "San Giorgio", + "2032-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2032-04-27": "San Liberale", + "2032-05-01": "Festa dei Lavoratori", + "2032-05-03": "San Nicola Pellegrino", + "2032-05-04": "San Ciriaco; San Secondo di Asti", + "2032-05-08": "San Vittore il Moro", + "2032-05-10": "San Cataldo", + "2032-05-11": "San Giustino di Chieti", + "2032-05-13": "San Ponziano", + "2032-05-17": "Luned\u00ec di Pentecoste", + "2032-05-19": "San Pietro Celestino", + "2032-05-21": "San Zeno", + "2032-05-22": "Santa Giulia", + "2032-05-30": "San Gerardo di Potenza", + "2032-06-01": "San Crescentino", + "2032-06-02": "Festa della Repubblica", + "2032-06-03": "Madonna della Lettera", + "2032-06-10": "San Massimo D'Aveia", + "2032-06-13": "Sant'Antonio di Padova", + "2032-06-17": "San Ranieri", + "2032-06-19": "San Gervasio e San Protasio", + "2032-06-20": "San Silverio", + "2032-06-24": "San Giovanni Battista", + "2032-06-26": "San Vigilio", + "2032-06-29": "Santi Pietro e Paolo", + "2032-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2032-07-04": "Sant'Antonino di Piacenza", + "2032-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2032-07-15": "San Giovanni", + "2032-07-16": "San Vitaliano", + "2032-07-23": "Sant'Apollinare", + "2032-07-25": "San Jacopo", + "2032-08-01": "Sant'Eusebio di Vercelli", + "2032-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2032-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2032-08-10": "San Lorenzo", + "2032-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2032-08-16": "Maria Santissima Assunta", + "2032-08-24": "San Bartolomeo apostolo", + "2032-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2032-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2032-09-04": "Santa Rosa da Viterbo", + "2032-09-05": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2032-09-07": "San Grato", + "2032-09-08": "Madonna delle Grazie", + "2032-09-19": "San Gennaro; San Riccardo di Andria", + "2032-09-21": "San Matteo Evangelista", + "2032-09-24": "San Terenzio di Pesaro", + "2032-09-29": "San Michele Arcangelo", + "2032-10-04": "San Francesco d'Assisi; San Petronio", + "2032-10-09": "San Dionigi", + "2032-10-10": "San Cetteo", + "2032-10-14": "San Gaudenzio", + "2032-10-30": "San Saturnino di Cagliari", + "2032-11-01": "Tutti i Santi", + "2032-11-03": "San Giusto", + "2032-11-10": "San Baudolino", + "2032-11-11": "San Martino", + "2032-11-13": "Sant'Omobono", + "2032-11-24": "San Prospero Vescovo", + "2032-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2032-12-01": "Sant'Ansano", + "2032-12-04": "Santa Barbara", + "2032-12-06": "San Nicola", + "2032-12-07": "Sant'Ambrogio", + "2032-12-08": "Immacolata Concezione", + "2032-12-09": "San Siro", + "2032-12-13": "Santa Lucia", + "2032-12-19": "San Berardo da Pagliara", + "2032-12-25": "Natale", + "2032-12-26": "Santo Stefano", + "2032-12-30": "San Ruggero", + "2033-01-01": "Capodanno", + "2033-01-06": "Epifania del Signore", + "2033-01-13": "Sant'Ilario di Poitiers", + "2033-01-19": "San Bassiano", + "2033-01-20": "San Sebastiano", + "2033-01-22": "San Gaudenzio", + "2033-01-29": "Sant'Ercolano e San Lorenzo", + "2033-01-31": "San Geminiano", + "2033-02-04": "Madonna del Fuoco", + "2033-02-05": "Sant'Agata", + "2033-02-12": "Madonna del Pilerio", + "2033-02-13": "Sant'Archelao", + "2033-02-14": "San Modestino; San Valentino", + "2033-02-15": "Santi Faustino e Giovita", + "2033-02-25": "San Gerlando", + "2033-03-01": "San Leoluca", + "2033-03-16": "Santi Ilario e Taziano", + "2033-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2033-03-19": "San Giuseppe", + "2033-03-22": "Madonna dei Sette Veli", + "2033-04-17": "Pasqua di Resurrezione", + "2033-04-18": "Luned\u00ec dell'Angelo", + "2033-04-23": "San Giorgio", + "2033-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2033-04-27": "San Liberale", + "2033-05-01": "Festa dei Lavoratori", + "2033-05-03": "San Nicola Pellegrino; San Secondo di Asti", + "2033-05-04": "San Ciriaco", + "2033-05-08": "San Vittore il Moro", + "2033-05-10": "San Cataldo", + "2033-05-11": "San Giustino di Chieti", + "2033-05-12": "San Ponziano", + "2033-05-19": "San Pietro Celestino", + "2033-05-21": "San Zeno", + "2033-05-22": "Santa Giulia", + "2033-05-30": "San Gerardo di Potenza", + "2033-06-01": "San Crescentino", + "2033-06-02": "Festa della Repubblica", + "2033-06-03": "Madonna della Lettera", + "2033-06-06": "Luned\u00ec di Pentecoste", + "2033-06-10": "San Massimo D'Aveia", + "2033-06-13": "Sant'Antonio di Padova", + "2033-06-17": "San Ranieri", + "2033-06-19": "San Gervasio e San Protasio", + "2033-06-20": "San Silverio", + "2033-06-24": "San Giovanni Battista", + "2033-06-26": "San Vigilio", + "2033-06-29": "Santi Pietro e Paolo", + "2033-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2033-07-04": "Sant'Antonino di Piacenza", + "2033-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2033-07-15": "San Giovanni", + "2033-07-16": "San Vitaliano", + "2033-07-23": "Sant'Apollinare", + "2033-07-25": "San Jacopo", + "2033-08-01": "Sant'Eusebio di Vercelli", + "2033-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2033-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2033-08-10": "San Lorenzo", + "2033-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2033-08-16": "Maria Santissima Assunta", + "2033-08-24": "San Bartolomeo apostolo", + "2033-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2033-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2033-09-04": "San Teodoro d'Amasea e San Lorenzo da Brindisi; Santa Rosa da Viterbo", + "2033-09-07": "San Grato", + "2033-09-08": "Madonna delle Grazie", + "2033-09-18": "San Riccardo di Andria", + "2033-09-19": "San Gennaro", + "2033-09-21": "San Matteo Evangelista", + "2033-09-24": "San Terenzio di Pesaro", + "2033-09-29": "San Michele Arcangelo", + "2033-10-04": "San Francesco d'Assisi; San Petronio", + "2033-10-09": "San Dionigi", + "2033-10-10": "San Cetteo", + "2033-10-14": "San Gaudenzio", + "2033-10-30": "San Saturnino di Cagliari", + "2033-11-01": "Tutti i Santi", + "2033-11-03": "San Giusto", + "2033-11-10": "San Baudolino", + "2033-11-11": "San Martino", + "2033-11-13": "Sant'Omobono", + "2033-11-24": "San Prospero Vescovo", + "2033-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2033-12-01": "Sant'Ansano", + "2033-12-04": "Santa Barbara", + "2033-12-06": "San Nicola", + "2033-12-07": "Sant'Ambrogio", + "2033-12-08": "Immacolata Concezione", + "2033-12-09": "San Siro", + "2033-12-13": "Santa Lucia", + "2033-12-19": "San Berardo da Pagliara", + "2033-12-25": "Natale", + "2033-12-26": "Santo Stefano", + "2033-12-30": "San Ruggero", + "2034-01-01": "Capodanno", + "2034-01-06": "Epifania del Signore", + "2034-01-13": "Sant'Ilario di Poitiers", + "2034-01-19": "San Bassiano", + "2034-01-20": "San Sebastiano", + "2034-01-22": "San Gaudenzio", + "2034-01-29": "Sant'Ercolano e San Lorenzo", + "2034-01-31": "San Geminiano", + "2034-02-04": "Madonna del Fuoco", + "2034-02-05": "Sant'Agata", + "2034-02-12": "Madonna del Pilerio", + "2034-02-13": "Sant'Archelao", + "2034-02-14": "San Modestino; San Valentino", + "2034-02-15": "Santi Faustino e Giovita", + "2034-02-25": "San Gerlando", + "2034-03-01": "San Leoluca", + "2034-03-16": "Santi Ilario e Taziano", + "2034-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2034-03-19": "San Giuseppe", + "2034-03-22": "Madonna dei Sette Veli", + "2034-04-09": "Pasqua di Resurrezione", + "2034-04-10": "Luned\u00ec dell'Angelo", + "2034-04-23": "San Giorgio", + "2034-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2034-04-27": "San Liberale", + "2034-05-01": "Festa dei Lavoratori", + "2034-05-02": "San Secondo di Asti", + "2034-05-03": "San Nicola Pellegrino", + "2034-05-04": "San Ciriaco", + "2034-05-08": "San Vittore il Moro", + "2034-05-10": "San Cataldo", + "2034-05-11": "San Giustino di Chieti", + "2034-05-18": "San Ponziano", + "2034-05-19": "San Pietro Celestino", + "2034-05-21": "San Zeno", + "2034-05-22": "Santa Giulia", + "2034-05-29": "Luned\u00ec di Pentecoste", + "2034-05-30": "San Gerardo di Potenza", + "2034-06-01": "San Crescentino", + "2034-06-02": "Festa della Repubblica", + "2034-06-03": "Madonna della Lettera", + "2034-06-10": "San Massimo D'Aveia", + "2034-06-13": "Sant'Antonio di Padova", + "2034-06-17": "San Ranieri", + "2034-06-19": "San Gervasio e San Protasio", + "2034-06-20": "San Silverio", + "2034-06-24": "San Giovanni Battista", + "2034-06-26": "San Vigilio", + "2034-06-29": "Santi Pietro e Paolo", + "2034-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2034-07-04": "Sant'Antonino di Piacenza", + "2034-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2034-07-15": "San Giovanni", + "2034-07-16": "San Vitaliano", + "2034-07-23": "Sant'Apollinare", + "2034-07-25": "San Jacopo", + "2034-08-01": "Sant'Eusebio di Vercelli", + "2034-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2034-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2034-08-10": "San Lorenzo", + "2034-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2034-08-16": "Maria Santissima Assunta", + "2034-08-24": "San Bartolomeo apostolo", + "2034-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2034-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2034-09-03": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2034-09-04": "Santa Rosa da Viterbo", + "2034-09-07": "San Grato", + "2034-09-08": "Madonna delle Grazie", + "2034-09-17": "San Riccardo di Andria", + "2034-09-19": "San Gennaro", + "2034-09-21": "San Matteo Evangelista", + "2034-09-24": "San Terenzio di Pesaro", + "2034-09-29": "San Michele Arcangelo", + "2034-10-04": "San Francesco d'Assisi; San Petronio", + "2034-10-09": "San Dionigi", + "2034-10-10": "San Cetteo", + "2034-10-14": "San Gaudenzio", + "2034-10-30": "San Saturnino di Cagliari", + "2034-11-01": "Tutti i Santi", + "2034-11-03": "San Giusto", + "2034-11-10": "San Baudolino", + "2034-11-11": "San Martino", + "2034-11-13": "Sant'Omobono", + "2034-11-24": "San Prospero Vescovo", + "2034-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2034-12-01": "Sant'Ansano", + "2034-12-04": "Santa Barbara", + "2034-12-06": "San Nicola", + "2034-12-07": "Sant'Ambrogio", + "2034-12-08": "Immacolata Concezione", + "2034-12-09": "San Siro", + "2034-12-13": "Santa Lucia", + "2034-12-19": "San Berardo da Pagliara", + "2034-12-25": "Natale", + "2034-12-26": "Santo Stefano", + "2034-12-30": "San Ruggero", + "2035-01-01": "Capodanno", + "2035-01-06": "Epifania del Signore", + "2035-01-13": "Sant'Ilario di Poitiers", + "2035-01-19": "San Bassiano", + "2035-01-20": "San Sebastiano", + "2035-01-22": "San Gaudenzio", + "2035-01-29": "Sant'Ercolano e San Lorenzo", + "2035-01-31": "San Geminiano", + "2035-02-04": "Madonna del Fuoco", + "2035-02-05": "Sant'Agata", + "2035-02-12": "Madonna del Pilerio", + "2035-02-13": "Sant'Archelao", + "2035-02-14": "San Modestino; San Valentino", + "2035-02-15": "Santi Faustino e Giovita", + "2035-02-25": "San Gerlando", + "2035-03-01": "San Leoluca", + "2035-03-16": "Santi Ilario e Taziano", + "2035-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2035-03-19": "San Giuseppe", + "2035-03-22": "Madonna dei Sette Veli", + "2035-03-25": "Pasqua di Resurrezione", + "2035-03-26": "Luned\u00ec dell'Angelo", + "2035-04-23": "San Giorgio", + "2035-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2035-04-27": "San Liberale", + "2035-05-01": "Festa dei Lavoratori; San Secondo di Asti", + "2035-05-03": "San Nicola Pellegrino", + "2035-05-04": "San Ciriaco", + "2035-05-08": "San Vittore il Moro", + "2035-05-10": "San Cataldo", + "2035-05-11": "San Giustino di Chieti", + "2035-05-14": "Luned\u00ec di Pentecoste", + "2035-05-17": "San Ponziano", + "2035-05-19": "San Pietro Celestino", + "2035-05-21": "San Zeno", + "2035-05-22": "Santa Giulia", + "2035-05-30": "San Gerardo di Potenza", + "2035-06-01": "San Crescentino", + "2035-06-02": "Festa della Repubblica", + "2035-06-03": "Madonna della Lettera", + "2035-06-10": "San Massimo D'Aveia", + "2035-06-13": "Sant'Antonio di Padova", + "2035-06-17": "San Ranieri", + "2035-06-19": "San Gervasio e San Protasio", + "2035-06-20": "San Silverio", + "2035-06-24": "San Giovanni Battista", + "2035-06-26": "San Vigilio", + "2035-06-29": "Santi Pietro e Paolo", + "2035-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2035-07-04": "Sant'Antonino di Piacenza", + "2035-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2035-07-15": "San Giovanni", + "2035-07-16": "San Vitaliano", + "2035-07-23": "Sant'Apollinare", + "2035-07-25": "San Jacopo", + "2035-08-01": "Sant'Eusebio di Vercelli", + "2035-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2035-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2035-08-10": "San Lorenzo", + "2035-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2035-08-16": "Maria Santissima Assunta", + "2035-08-24": "San Bartolomeo apostolo", + "2035-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2035-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2035-09-02": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2035-09-04": "Santa Rosa da Viterbo", + "2035-09-07": "San Grato", + "2035-09-08": "Madonna delle Grazie", + "2035-09-16": "San Riccardo di Andria", + "2035-09-19": "San Gennaro", + "2035-09-21": "San Matteo Evangelista", + "2035-09-24": "San Terenzio di Pesaro", + "2035-09-29": "San Michele Arcangelo", + "2035-10-04": "San Francesco d'Assisi; San Petronio", + "2035-10-09": "San Dionigi", + "2035-10-10": "San Cetteo", + "2035-10-14": "San Gaudenzio", + "2035-10-30": "San Saturnino di Cagliari", + "2035-11-01": "Tutti i Santi", + "2035-11-03": "San Giusto", + "2035-11-10": "San Baudolino", + "2035-11-11": "San Martino", + "2035-11-13": "Sant'Omobono", + "2035-11-24": "San Prospero Vescovo", + "2035-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2035-12-01": "Sant'Ansano", + "2035-12-04": "Santa Barbara", + "2035-12-06": "San Nicola", + "2035-12-07": "Sant'Ambrogio", + "2035-12-08": "Immacolata Concezione", + "2035-12-09": "San Siro", + "2035-12-13": "Santa Lucia", + "2035-12-19": "San Berardo da Pagliara", + "2035-12-25": "Natale", + "2035-12-26": "Santo Stefano", + "2035-12-30": "San Ruggero", + "2036-01-01": "Capodanno", + "2036-01-06": "Epifania del Signore", + "2036-01-13": "Sant'Ilario di Poitiers", + "2036-01-19": "San Bassiano", + "2036-01-20": "San Sebastiano", + "2036-01-22": "San Gaudenzio", + "2036-01-29": "Sant'Ercolano e San Lorenzo", + "2036-01-31": "San Geminiano", + "2036-02-04": "Madonna del Fuoco", + "2036-02-05": "Sant'Agata", + "2036-02-12": "Madonna del Pilerio", + "2036-02-13": "Sant'Archelao", + "2036-02-14": "San Modestino; San Valentino", + "2036-02-15": "Santi Faustino e Giovita", + "2036-02-25": "San Gerlando", + "2036-03-01": "San Leoluca", + "2036-03-16": "Santi Ilario e Taziano", + "2036-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2036-03-19": "San Giuseppe", + "2036-03-22": "Madonna dei Sette Veli", + "2036-04-13": "Pasqua di Resurrezione", + "2036-04-14": "Luned\u00ec dell'Angelo", + "2036-04-23": "San Giorgio", + "2036-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2036-04-27": "San Liberale", + "2036-05-01": "Festa dei Lavoratori", + "2036-05-03": "San Nicola Pellegrino", + "2036-05-04": "San Ciriaco", + "2036-05-06": "San Secondo di Asti", + "2036-05-08": "San Vittore il Moro", + "2036-05-10": "San Cataldo", + "2036-05-11": "San Giustino di Chieti", + "2036-05-15": "San Ponziano", + "2036-05-19": "San Pietro Celestino", + "2036-05-21": "San Zeno", + "2036-05-22": "Santa Giulia", + "2036-05-30": "San Gerardo di Potenza", + "2036-06-01": "San Crescentino", + "2036-06-02": "Festa della Repubblica; Luned\u00ec di Pentecoste", + "2036-06-03": "Madonna della Lettera", + "2036-06-10": "San Massimo D'Aveia", + "2036-06-13": "Sant'Antonio di Padova", + "2036-06-17": "San Ranieri", + "2036-06-19": "San Gervasio e San Protasio", + "2036-06-20": "San Silverio", + "2036-06-24": "San Giovanni Battista", + "2036-06-26": "San Vigilio", + "2036-06-29": "Santi Pietro e Paolo", + "2036-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2036-07-04": "Sant'Antonino di Piacenza", + "2036-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2036-07-15": "San Giovanni", + "2036-07-16": "San Vitaliano", + "2036-07-23": "Sant'Apollinare", + "2036-07-25": "San Jacopo", + "2036-08-01": "Sant'Eusebio di Vercelli", + "2036-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2036-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2036-08-10": "San Lorenzo", + "2036-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2036-08-16": "Maria Santissima Assunta", + "2036-08-24": "San Bartolomeo apostolo", + "2036-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2036-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2036-09-04": "Santa Rosa da Viterbo", + "2036-09-07": "San Grato; San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2036-09-08": "Madonna delle Grazie", + "2036-09-19": "San Gennaro", + "2036-09-21": "San Matteo Evangelista; San Riccardo di Andria", + "2036-09-24": "San Terenzio di Pesaro", + "2036-09-29": "San Michele Arcangelo", + "2036-10-04": "San Francesco d'Assisi; San Petronio", + "2036-10-09": "San Dionigi", + "2036-10-10": "San Cetteo", + "2036-10-14": "San Gaudenzio", + "2036-10-30": "San Saturnino di Cagliari", + "2036-11-01": "Tutti i Santi", + "2036-11-03": "San Giusto", + "2036-11-10": "San Baudolino", + "2036-11-11": "San Martino", + "2036-11-13": "Sant'Omobono", + "2036-11-24": "San Prospero Vescovo", + "2036-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2036-12-01": "Sant'Ansano", + "2036-12-04": "Santa Barbara", + "2036-12-06": "San Nicola", + "2036-12-07": "Sant'Ambrogio", + "2036-12-08": "Immacolata Concezione", + "2036-12-09": "San Siro", + "2036-12-13": "Santa Lucia", + "2036-12-19": "San Berardo da Pagliara", + "2036-12-25": "Natale", + "2036-12-26": "Santo Stefano", + "2036-12-30": "San Ruggero", + "2037-01-01": "Capodanno", + "2037-01-06": "Epifania del Signore", + "2037-01-13": "Sant'Ilario di Poitiers", + "2037-01-19": "San Bassiano", + "2037-01-20": "San Sebastiano", + "2037-01-22": "San Gaudenzio", + "2037-01-29": "Sant'Ercolano e San Lorenzo", + "2037-01-31": "San Geminiano", + "2037-02-04": "Madonna del Fuoco", + "2037-02-05": "Sant'Agata", + "2037-02-12": "Madonna del Pilerio", + "2037-02-13": "Sant'Archelao", + "2037-02-14": "San Modestino; San Valentino", + "2037-02-15": "Santi Faustino e Giovita", + "2037-02-25": "San Gerlando", + "2037-03-01": "San Leoluca", + "2037-03-16": "Santi Ilario e Taziano", + "2037-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2037-03-19": "San Giuseppe", + "2037-03-22": "Madonna dei Sette Veli", + "2037-04-05": "Pasqua di Resurrezione", + "2037-04-06": "Luned\u00ec dell'Angelo", + "2037-04-23": "San Giorgio", + "2037-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2037-04-27": "San Liberale", + "2037-05-01": "Festa dei Lavoratori", + "2037-05-03": "San Nicola Pellegrino", + "2037-05-04": "San Ciriaco", + "2037-05-05": "San Secondo di Asti", + "2037-05-08": "San Vittore il Moro", + "2037-05-10": "San Cataldo", + "2037-05-11": "San Giustino di Chieti", + "2037-05-14": "San Ponziano", + "2037-05-19": "San Pietro Celestino", + "2037-05-21": "San Zeno", + "2037-05-22": "Santa Giulia", + "2037-05-25": "Luned\u00ec di Pentecoste", + "2037-05-30": "San Gerardo di Potenza", + "2037-06-01": "San Crescentino", + "2037-06-02": "Festa della Repubblica", + "2037-06-03": "Madonna della Lettera", + "2037-06-10": "San Massimo D'Aveia", + "2037-06-13": "Sant'Antonio di Padova", + "2037-06-17": "San Ranieri", + "2037-06-19": "San Gervasio e San Protasio", + "2037-06-20": "San Silverio", + "2037-06-24": "San Giovanni Battista", + "2037-06-26": "San Vigilio", + "2037-06-29": "Santi Pietro e Paolo", + "2037-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2037-07-04": "Sant'Antonino di Piacenza", + "2037-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2037-07-15": "San Giovanni", + "2037-07-16": "San Vitaliano", + "2037-07-23": "Sant'Apollinare", + "2037-07-25": "San Jacopo", + "2037-08-01": "Sant'Eusebio di Vercelli", + "2037-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2037-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2037-08-10": "San Lorenzo", + "2037-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2037-08-16": "Maria Santissima Assunta", + "2037-08-24": "San Bartolomeo apostolo", + "2037-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2037-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2037-09-04": "Santa Rosa da Viterbo", + "2037-09-06": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2037-09-07": "San Grato", + "2037-09-08": "Madonna delle Grazie", + "2037-09-19": "San Gennaro", + "2037-09-20": "San Riccardo di Andria", + "2037-09-21": "San Matteo Evangelista", + "2037-09-24": "San Terenzio di Pesaro", + "2037-09-29": "San Michele Arcangelo", + "2037-10-04": "San Francesco d'Assisi; San Petronio", + "2037-10-09": "San Dionigi", + "2037-10-10": "San Cetteo", + "2037-10-14": "San Gaudenzio", + "2037-10-30": "San Saturnino di Cagliari", + "2037-11-01": "Tutti i Santi", + "2037-11-03": "San Giusto", + "2037-11-10": "San Baudolino", + "2037-11-11": "San Martino", + "2037-11-13": "Sant'Omobono", + "2037-11-24": "San Prospero Vescovo", + "2037-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2037-12-01": "Sant'Ansano", + "2037-12-04": "Santa Barbara", + "2037-12-06": "San Nicola", + "2037-12-07": "Sant'Ambrogio", + "2037-12-08": "Immacolata Concezione", + "2037-12-09": "San Siro", + "2037-12-13": "Santa Lucia", + "2037-12-19": "San Berardo da Pagliara", + "2037-12-25": "Natale", + "2037-12-26": "Santo Stefano", + "2037-12-30": "San Ruggero", + "2038-01-01": "Capodanno", + "2038-01-06": "Epifania del Signore", + "2038-01-13": "Sant'Ilario di Poitiers", + "2038-01-19": "San Bassiano", + "2038-01-20": "San Sebastiano", + "2038-01-22": "San Gaudenzio", + "2038-01-29": "Sant'Ercolano e San Lorenzo", + "2038-01-31": "San Geminiano", + "2038-02-04": "Madonna del Fuoco", + "2038-02-05": "Sant'Agata", + "2038-02-12": "Madonna del Pilerio", + "2038-02-13": "Sant'Archelao", + "2038-02-14": "San Modestino; San Valentino", + "2038-02-15": "Santi Faustino e Giovita", + "2038-02-25": "San Gerlando", + "2038-03-01": "San Leoluca", + "2038-03-16": "Santi Ilario e Taziano", + "2038-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2038-03-19": "San Giuseppe", + "2038-03-22": "Madonna dei Sette Veli", + "2038-04-23": "San Giorgio", + "2038-04-25": "Festa della Liberazione; Pasqua di Resurrezione; San Marco; San Marco Evangelista; San Marco evangelista", + "2038-04-26": "Luned\u00ec dell'Angelo", + "2038-04-27": "San Liberale", + "2038-05-01": "Festa dei Lavoratori", + "2038-05-03": "San Nicola Pellegrino", + "2038-05-04": "San Ciriaco; San Secondo di Asti", + "2038-05-08": "San Vittore il Moro", + "2038-05-10": "San Cataldo", + "2038-05-11": "San Giustino di Chieti", + "2038-05-13": "San Ponziano", + "2038-05-19": "San Pietro Celestino", + "2038-05-21": "San Zeno", + "2038-05-22": "Santa Giulia", + "2038-05-30": "San Gerardo di Potenza", + "2038-06-01": "San Crescentino", + "2038-06-02": "Festa della Repubblica", + "2038-06-03": "Madonna della Lettera", + "2038-06-10": "San Massimo D'Aveia", + "2038-06-13": "Sant'Antonio di Padova", + "2038-06-14": "Luned\u00ec di Pentecoste", + "2038-06-17": "San Ranieri", + "2038-06-19": "San Gervasio e San Protasio", + "2038-06-20": "San Silverio", + "2038-06-24": "San Giovanni Battista", + "2038-06-26": "San Vigilio", + "2038-06-29": "Santi Pietro e Paolo", + "2038-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2038-07-04": "Sant'Antonino di Piacenza", + "2038-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2038-07-15": "San Giovanni", + "2038-07-16": "San Vitaliano", + "2038-07-23": "Sant'Apollinare", + "2038-07-25": "San Jacopo", + "2038-08-01": "Sant'Eusebio di Vercelli", + "2038-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2038-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2038-08-10": "San Lorenzo", + "2038-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2038-08-16": "Maria Santissima Assunta", + "2038-08-24": "San Bartolomeo apostolo", + "2038-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2038-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2038-09-04": "Santa Rosa da Viterbo", + "2038-09-05": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2038-09-07": "San Grato", + "2038-09-08": "Madonna delle Grazie", + "2038-09-19": "San Gennaro; San Riccardo di Andria", + "2038-09-21": "San Matteo Evangelista", + "2038-09-24": "San Terenzio di Pesaro", + "2038-09-29": "San Michele Arcangelo", + "2038-10-04": "San Francesco d'Assisi; San Petronio", + "2038-10-09": "San Dionigi", + "2038-10-10": "San Cetteo", + "2038-10-14": "San Gaudenzio", + "2038-10-30": "San Saturnino di Cagliari", + "2038-11-01": "Tutti i Santi", + "2038-11-03": "San Giusto", + "2038-11-10": "San Baudolino", + "2038-11-11": "San Martino", + "2038-11-13": "Sant'Omobono", + "2038-11-24": "San Prospero Vescovo", + "2038-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2038-12-01": "Sant'Ansano", + "2038-12-04": "Santa Barbara", + "2038-12-06": "San Nicola", + "2038-12-07": "Sant'Ambrogio", + "2038-12-08": "Immacolata Concezione", + "2038-12-09": "San Siro", + "2038-12-13": "Santa Lucia", + "2038-12-19": "San Berardo da Pagliara", + "2038-12-25": "Natale", + "2038-12-26": "Santo Stefano", + "2038-12-30": "San Ruggero", + "2039-01-01": "Capodanno", + "2039-01-06": "Epifania del Signore", + "2039-01-13": "Sant'Ilario di Poitiers", + "2039-01-19": "San Bassiano", + "2039-01-20": "San Sebastiano", + "2039-01-22": "San Gaudenzio", + "2039-01-29": "Sant'Ercolano e San Lorenzo", + "2039-01-31": "San Geminiano", + "2039-02-04": "Madonna del Fuoco", + "2039-02-05": "Sant'Agata", + "2039-02-12": "Madonna del Pilerio", + "2039-02-13": "Sant'Archelao", + "2039-02-14": "San Modestino; San Valentino", + "2039-02-15": "Santi Faustino e Giovita", + "2039-02-25": "San Gerlando", + "2039-03-01": "San Leoluca", + "2039-03-16": "Santi Ilario e Taziano", + "2039-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2039-03-19": "San Giuseppe", + "2039-03-22": "Madonna dei Sette Veli", + "2039-04-10": "Pasqua di Resurrezione", + "2039-04-11": "Luned\u00ec dell'Angelo", + "2039-04-23": "San Giorgio", + "2039-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2039-04-27": "San Liberale", + "2039-05-01": "Festa dei Lavoratori", + "2039-05-03": "San Nicola Pellegrino; San Secondo di Asti", + "2039-05-04": "San Ciriaco", + "2039-05-08": "San Vittore il Moro", + "2039-05-10": "San Cataldo", + "2039-05-11": "San Giustino di Chieti", + "2039-05-12": "San Ponziano", + "2039-05-19": "San Pietro Celestino", + "2039-05-21": "San Zeno", + "2039-05-22": "Santa Giulia", + "2039-05-30": "Luned\u00ec di Pentecoste; San Gerardo di Potenza", + "2039-06-01": "San Crescentino", + "2039-06-02": "Festa della Repubblica", + "2039-06-03": "Madonna della Lettera", + "2039-06-10": "San Massimo D'Aveia", + "2039-06-13": "Sant'Antonio di Padova", + "2039-06-17": "San Ranieri", + "2039-06-19": "San Gervasio e San Protasio", + "2039-06-20": "San Silverio", + "2039-06-24": "San Giovanni Battista", + "2039-06-26": "San Vigilio", + "2039-06-29": "Santi Pietro e Paolo", + "2039-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2039-07-04": "Sant'Antonino di Piacenza", + "2039-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2039-07-15": "San Giovanni", + "2039-07-16": "San Vitaliano", + "2039-07-23": "Sant'Apollinare", + "2039-07-25": "San Jacopo", + "2039-08-01": "Sant'Eusebio di Vercelli", + "2039-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2039-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2039-08-10": "San Lorenzo", + "2039-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2039-08-16": "Maria Santissima Assunta", + "2039-08-24": "San Bartolomeo apostolo", + "2039-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2039-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2039-09-04": "San Teodoro d'Amasea e San Lorenzo da Brindisi; Santa Rosa da Viterbo", + "2039-09-07": "San Grato", + "2039-09-08": "Madonna delle Grazie", + "2039-09-18": "San Riccardo di Andria", + "2039-09-19": "San Gennaro", + "2039-09-21": "San Matteo Evangelista", + "2039-09-24": "San Terenzio di Pesaro", + "2039-09-29": "San Michele Arcangelo", + "2039-10-04": "San Francesco d'Assisi; San Petronio", + "2039-10-09": "San Dionigi", + "2039-10-10": "San Cetteo", + "2039-10-14": "San Gaudenzio", + "2039-10-30": "San Saturnino di Cagliari", + "2039-11-01": "Tutti i Santi", + "2039-11-03": "San Giusto", + "2039-11-10": "San Baudolino", + "2039-11-11": "San Martino", + "2039-11-13": "Sant'Omobono", + "2039-11-24": "San Prospero Vescovo", + "2039-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2039-12-01": "Sant'Ansano", + "2039-12-04": "Santa Barbara", + "2039-12-06": "San Nicola", + "2039-12-07": "Sant'Ambrogio", + "2039-12-08": "Immacolata Concezione", + "2039-12-09": "San Siro", + "2039-12-13": "Santa Lucia", + "2039-12-19": "San Berardo da Pagliara", + "2039-12-25": "Natale", + "2039-12-26": "Santo Stefano", + "2039-12-30": "San Ruggero", + "2040-01-01": "Capodanno", + "2040-01-06": "Epifania del Signore", + "2040-01-13": "Sant'Ilario di Poitiers", + "2040-01-19": "San Bassiano", + "2040-01-20": "San Sebastiano", + "2040-01-22": "San Gaudenzio", + "2040-01-29": "Sant'Ercolano e San Lorenzo", + "2040-01-31": "San Geminiano", + "2040-02-04": "Madonna del Fuoco", + "2040-02-05": "Sant'Agata", + "2040-02-12": "Madonna del Pilerio", + "2040-02-13": "Sant'Archelao", + "2040-02-14": "San Modestino; San Valentino", + "2040-02-15": "Santi Faustino e Giovita", + "2040-02-25": "San Gerlando", + "2040-03-01": "San Leoluca", + "2040-03-16": "Santi Ilario e Taziano", + "2040-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2040-03-19": "San Giuseppe", + "2040-03-22": "Madonna dei Sette Veli", + "2040-04-01": "Pasqua di Resurrezione", + "2040-04-02": "Luned\u00ec dell'Angelo", + "2040-04-23": "San Giorgio", + "2040-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2040-04-27": "San Liberale", + "2040-05-01": "Festa dei Lavoratori; San Secondo di Asti", + "2040-05-03": "San Nicola Pellegrino", + "2040-05-04": "San Ciriaco", + "2040-05-08": "San Vittore il Moro", + "2040-05-10": "San Cataldo", + "2040-05-11": "San Giustino di Chieti", + "2040-05-17": "San Ponziano", + "2040-05-19": "San Pietro Celestino", + "2040-05-21": "Luned\u00ec di Pentecoste; San Zeno", + "2040-05-22": "Santa Giulia", + "2040-05-30": "San Gerardo di Potenza", + "2040-06-01": "San Crescentino", + "2040-06-02": "Festa della Repubblica", + "2040-06-03": "Madonna della Lettera", + "2040-06-10": "San Massimo D'Aveia", + "2040-06-13": "Sant'Antonio di Padova", + "2040-06-17": "San Ranieri", + "2040-06-19": "San Gervasio e San Protasio", + "2040-06-20": "San Silverio", + "2040-06-24": "San Giovanni Battista", + "2040-06-26": "San Vigilio", + "2040-06-29": "Santi Pietro e Paolo", + "2040-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2040-07-04": "Sant'Antonino di Piacenza", + "2040-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2040-07-15": "San Giovanni", + "2040-07-16": "San Vitaliano", + "2040-07-23": "Sant'Apollinare", + "2040-07-25": "San Jacopo", + "2040-08-01": "Sant'Eusebio di Vercelli", + "2040-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2040-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2040-08-10": "San Lorenzo", + "2040-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2040-08-16": "Maria Santissima Assunta", + "2040-08-24": "San Bartolomeo apostolo", + "2040-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2040-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2040-09-02": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2040-09-04": "Santa Rosa da Viterbo", + "2040-09-07": "San Grato", + "2040-09-08": "Madonna delle Grazie", + "2040-09-16": "San Riccardo di Andria", + "2040-09-19": "San Gennaro", + "2040-09-21": "San Matteo Evangelista", + "2040-09-24": "San Terenzio di Pesaro", + "2040-09-29": "San Michele Arcangelo", + "2040-10-04": "San Francesco d'Assisi; San Petronio", + "2040-10-09": "San Dionigi", + "2040-10-10": "San Cetteo", + "2040-10-14": "San Gaudenzio", + "2040-10-30": "San Saturnino di Cagliari", + "2040-11-01": "Tutti i Santi", + "2040-11-03": "San Giusto", + "2040-11-10": "San Baudolino", + "2040-11-11": "San Martino", + "2040-11-13": "Sant'Omobono", + "2040-11-24": "San Prospero Vescovo", + "2040-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2040-12-01": "Sant'Ansano", + "2040-12-04": "Santa Barbara", + "2040-12-06": "San Nicola", + "2040-12-07": "Sant'Ambrogio", + "2040-12-08": "Immacolata Concezione", + "2040-12-09": "San Siro", + "2040-12-13": "Santa Lucia", + "2040-12-19": "San Berardo da Pagliara", + "2040-12-25": "Natale", + "2040-12-26": "Santo Stefano", + "2040-12-30": "San Ruggero", + "2041-01-01": "Capodanno", + "2041-01-06": "Epifania del Signore", + "2041-01-13": "Sant'Ilario di Poitiers", + "2041-01-19": "San Bassiano", + "2041-01-20": "San Sebastiano", + "2041-01-22": "San Gaudenzio", + "2041-01-29": "Sant'Ercolano e San Lorenzo", + "2041-01-31": "San Geminiano", + "2041-02-04": "Madonna del Fuoco", + "2041-02-05": "Sant'Agata", + "2041-02-12": "Madonna del Pilerio", + "2041-02-13": "Sant'Archelao", + "2041-02-14": "San Modestino; San Valentino", + "2041-02-15": "Santi Faustino e Giovita", + "2041-02-25": "San Gerlando", + "2041-03-01": "San Leoluca", + "2041-03-16": "Santi Ilario e Taziano", + "2041-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2041-03-19": "San Giuseppe", + "2041-03-22": "Madonna dei Sette Veli", + "2041-04-21": "Pasqua di Resurrezione", + "2041-04-22": "Luned\u00ec dell'Angelo", + "2041-04-23": "San Giorgio", + "2041-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2041-04-27": "San Liberale", + "2041-05-01": "Festa dei Lavoratori", + "2041-05-03": "San Nicola Pellegrino", + "2041-05-04": "San Ciriaco", + "2041-05-07": "San Secondo di Asti", + "2041-05-08": "San Vittore il Moro", + "2041-05-10": "San Cataldo", + "2041-05-11": "San Giustino di Chieti", + "2041-05-16": "San Ponziano", + "2041-05-19": "San Pietro Celestino", + "2041-05-21": "San Zeno", + "2041-05-22": "Santa Giulia", + "2041-05-30": "San Gerardo di Potenza", + "2041-06-01": "San Crescentino", + "2041-06-02": "Festa della Repubblica", + "2041-06-03": "Madonna della Lettera", + "2041-06-10": "Luned\u00ec di Pentecoste; San Massimo D'Aveia", + "2041-06-13": "Sant'Antonio di Padova", + "2041-06-17": "San Ranieri", + "2041-06-19": "San Gervasio e San Protasio", + "2041-06-20": "San Silverio", + "2041-06-24": "San Giovanni Battista", + "2041-06-26": "San Vigilio", + "2041-06-29": "Santi Pietro e Paolo", + "2041-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2041-07-04": "Sant'Antonino di Piacenza", + "2041-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2041-07-15": "San Giovanni", + "2041-07-16": "San Vitaliano", + "2041-07-23": "Sant'Apollinare", + "2041-07-25": "San Jacopo", + "2041-08-01": "Sant'Eusebio di Vercelli", + "2041-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2041-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2041-08-10": "San Lorenzo", + "2041-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2041-08-16": "Maria Santissima Assunta", + "2041-08-24": "San Bartolomeo apostolo", + "2041-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2041-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2041-09-01": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2041-09-04": "Santa Rosa da Viterbo", + "2041-09-07": "San Grato", + "2041-09-08": "Madonna delle Grazie", + "2041-09-15": "San Riccardo di Andria", + "2041-09-19": "San Gennaro", + "2041-09-21": "San Matteo Evangelista", + "2041-09-24": "San Terenzio di Pesaro", + "2041-09-29": "San Michele Arcangelo", + "2041-10-04": "San Francesco d'Assisi; San Petronio", + "2041-10-09": "San Dionigi", + "2041-10-10": "San Cetteo", + "2041-10-14": "San Gaudenzio", + "2041-10-30": "San Saturnino di Cagliari", + "2041-11-01": "Tutti i Santi", + "2041-11-03": "San Giusto", + "2041-11-10": "San Baudolino", + "2041-11-11": "San Martino", + "2041-11-13": "Sant'Omobono", + "2041-11-24": "San Prospero Vescovo", + "2041-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2041-12-01": "Sant'Ansano", + "2041-12-04": "Santa Barbara", + "2041-12-06": "San Nicola", + "2041-12-07": "Sant'Ambrogio", + "2041-12-08": "Immacolata Concezione", + "2041-12-09": "San Siro", + "2041-12-13": "Santa Lucia", + "2041-12-19": "San Berardo da Pagliara", + "2041-12-25": "Natale", + "2041-12-26": "Santo Stefano", + "2041-12-30": "San Ruggero", + "2042-01-01": "Capodanno", + "2042-01-06": "Epifania del Signore", + "2042-01-13": "Sant'Ilario di Poitiers", + "2042-01-19": "San Bassiano", + "2042-01-20": "San Sebastiano", + "2042-01-22": "San Gaudenzio", + "2042-01-29": "Sant'Ercolano e San Lorenzo", + "2042-01-31": "San Geminiano", + "2042-02-04": "Madonna del Fuoco", + "2042-02-05": "Sant'Agata", + "2042-02-12": "Madonna del Pilerio", + "2042-02-13": "Sant'Archelao", + "2042-02-14": "San Modestino; San Valentino", + "2042-02-15": "Santi Faustino e Giovita", + "2042-02-25": "San Gerlando", + "2042-03-01": "San Leoluca", + "2042-03-16": "Santi Ilario e Taziano", + "2042-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2042-03-19": "San Giuseppe", + "2042-03-22": "Madonna dei Sette Veli", + "2042-04-06": "Pasqua di Resurrezione", + "2042-04-07": "Luned\u00ec dell'Angelo", + "2042-04-23": "San Giorgio", + "2042-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2042-04-27": "San Liberale", + "2042-05-01": "Festa dei Lavoratori", + "2042-05-03": "San Nicola Pellegrino", + "2042-05-04": "San Ciriaco", + "2042-05-06": "San Secondo di Asti", + "2042-05-08": "San Vittore il Moro", + "2042-05-10": "San Cataldo", + "2042-05-11": "San Giustino di Chieti", + "2042-05-15": "San Ponziano", + "2042-05-19": "San Pietro Celestino", + "2042-05-21": "San Zeno", + "2042-05-22": "Santa Giulia", + "2042-05-26": "Luned\u00ec di Pentecoste", + "2042-05-30": "San Gerardo di Potenza", + "2042-06-01": "San Crescentino", + "2042-06-02": "Festa della Repubblica", + "2042-06-03": "Madonna della Lettera", + "2042-06-10": "San Massimo D'Aveia", + "2042-06-13": "Sant'Antonio di Padova", + "2042-06-17": "San Ranieri", + "2042-06-19": "San Gervasio e San Protasio", + "2042-06-20": "San Silverio", + "2042-06-24": "San Giovanni Battista", + "2042-06-26": "San Vigilio", + "2042-06-29": "Santi Pietro e Paolo", + "2042-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2042-07-04": "Sant'Antonino di Piacenza", + "2042-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2042-07-15": "San Giovanni", + "2042-07-16": "San Vitaliano", + "2042-07-23": "Sant'Apollinare", + "2042-07-25": "San Jacopo", + "2042-08-01": "Sant'Eusebio di Vercelli", + "2042-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2042-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2042-08-10": "San Lorenzo", + "2042-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2042-08-16": "Maria Santissima Assunta", + "2042-08-24": "San Bartolomeo apostolo", + "2042-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2042-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2042-09-04": "Santa Rosa da Viterbo", + "2042-09-07": "San Grato; San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2042-09-08": "Madonna delle Grazie", + "2042-09-19": "San Gennaro", + "2042-09-21": "San Matteo Evangelista; San Riccardo di Andria", + "2042-09-24": "San Terenzio di Pesaro", + "2042-09-29": "San Michele Arcangelo", + "2042-10-04": "San Francesco d'Assisi; San Petronio", + "2042-10-09": "San Dionigi", + "2042-10-10": "San Cetteo", + "2042-10-14": "San Gaudenzio", + "2042-10-30": "San Saturnino di Cagliari", + "2042-11-01": "Tutti i Santi", + "2042-11-03": "San Giusto", + "2042-11-10": "San Baudolino", + "2042-11-11": "San Martino", + "2042-11-13": "Sant'Omobono", + "2042-11-24": "San Prospero Vescovo", + "2042-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2042-12-01": "Sant'Ansano", + "2042-12-04": "Santa Barbara", + "2042-12-06": "San Nicola", + "2042-12-07": "Sant'Ambrogio", + "2042-12-08": "Immacolata Concezione", + "2042-12-09": "San Siro", + "2042-12-13": "Santa Lucia", + "2042-12-19": "San Berardo da Pagliara", + "2042-12-25": "Natale", + "2042-12-26": "Santo Stefano", + "2042-12-30": "San Ruggero", + "2043-01-01": "Capodanno", + "2043-01-06": "Epifania del Signore", + "2043-01-13": "Sant'Ilario di Poitiers", + "2043-01-19": "San Bassiano", + "2043-01-20": "San Sebastiano", + "2043-01-22": "San Gaudenzio", + "2043-01-29": "Sant'Ercolano e San Lorenzo", + "2043-01-31": "San Geminiano", + "2043-02-04": "Madonna del Fuoco", + "2043-02-05": "Sant'Agata", + "2043-02-12": "Madonna del Pilerio", + "2043-02-13": "Sant'Archelao", + "2043-02-14": "San Modestino; San Valentino", + "2043-02-15": "Santi Faustino e Giovita", + "2043-02-25": "San Gerlando", + "2043-03-01": "San Leoluca", + "2043-03-16": "Santi Ilario e Taziano", + "2043-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2043-03-19": "San Giuseppe", + "2043-03-22": "Madonna dei Sette Veli", + "2043-03-29": "Pasqua di Resurrezione", + "2043-03-30": "Luned\u00ec dell'Angelo", + "2043-04-23": "San Giorgio", + "2043-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2043-04-27": "San Liberale", + "2043-05-01": "Festa dei Lavoratori", + "2043-05-03": "San Nicola Pellegrino", + "2043-05-04": "San Ciriaco", + "2043-05-05": "San Secondo di Asti", + "2043-05-08": "San Vittore il Moro", + "2043-05-10": "San Cataldo", + "2043-05-11": "San Giustino di Chieti", + "2043-05-14": "San Ponziano", + "2043-05-18": "Luned\u00ec di Pentecoste", + "2043-05-19": "San Pietro Celestino", + "2043-05-21": "San Zeno", + "2043-05-22": "Santa Giulia", + "2043-05-30": "San Gerardo di Potenza", + "2043-06-01": "San Crescentino", + "2043-06-02": "Festa della Repubblica", + "2043-06-03": "Madonna della Lettera", + "2043-06-10": "San Massimo D'Aveia", + "2043-06-13": "Sant'Antonio di Padova", + "2043-06-17": "San Ranieri", + "2043-06-19": "San Gervasio e San Protasio", + "2043-06-20": "San Silverio", + "2043-06-24": "San Giovanni Battista", + "2043-06-26": "San Vigilio", + "2043-06-29": "Santi Pietro e Paolo", + "2043-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2043-07-04": "Sant'Antonino di Piacenza", + "2043-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2043-07-15": "San Giovanni", + "2043-07-16": "San Vitaliano", + "2043-07-23": "Sant'Apollinare", + "2043-07-25": "San Jacopo", + "2043-08-01": "Sant'Eusebio di Vercelli", + "2043-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2043-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2043-08-10": "San Lorenzo", + "2043-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2043-08-16": "Maria Santissima Assunta", + "2043-08-24": "San Bartolomeo apostolo", + "2043-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2043-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2043-09-04": "Santa Rosa da Viterbo", + "2043-09-06": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2043-09-07": "San Grato", + "2043-09-08": "Madonna delle Grazie", + "2043-09-19": "San Gennaro", + "2043-09-20": "San Riccardo di Andria", + "2043-09-21": "San Matteo Evangelista", + "2043-09-24": "San Terenzio di Pesaro", + "2043-09-29": "San Michele Arcangelo", + "2043-10-04": "San Francesco d'Assisi; San Petronio", + "2043-10-09": "San Dionigi", + "2043-10-10": "San Cetteo", + "2043-10-14": "San Gaudenzio", + "2043-10-30": "San Saturnino di Cagliari", + "2043-11-01": "Tutti i Santi", + "2043-11-03": "San Giusto", + "2043-11-10": "San Baudolino", + "2043-11-11": "San Martino", + "2043-11-13": "Sant'Omobono", + "2043-11-24": "San Prospero Vescovo", + "2043-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2043-12-01": "Sant'Ansano", + "2043-12-04": "Santa Barbara", + "2043-12-06": "San Nicola", + "2043-12-07": "Sant'Ambrogio", + "2043-12-08": "Immacolata Concezione", + "2043-12-09": "San Siro", + "2043-12-13": "Santa Lucia", + "2043-12-19": "San Berardo da Pagliara", + "2043-12-25": "Natale", + "2043-12-26": "Santo Stefano", + "2043-12-30": "San Ruggero", + "2044-01-01": "Capodanno", + "2044-01-06": "Epifania del Signore", + "2044-01-13": "Sant'Ilario di Poitiers", + "2044-01-19": "San Bassiano", + "2044-01-20": "San Sebastiano", + "2044-01-22": "San Gaudenzio", + "2044-01-29": "Sant'Ercolano e San Lorenzo", + "2044-01-31": "San Geminiano", + "2044-02-04": "Madonna del Fuoco", + "2044-02-05": "Sant'Agata", + "2044-02-12": "Madonna del Pilerio", + "2044-02-13": "Sant'Archelao", + "2044-02-14": "San Modestino; San Valentino", + "2044-02-15": "Santi Faustino e Giovita", + "2044-02-25": "San Gerlando", + "2044-03-01": "San Leoluca", + "2044-03-16": "Santi Ilario e Taziano", + "2044-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2044-03-19": "San Giuseppe", + "2044-03-22": "Madonna dei Sette Veli", + "2044-04-17": "Pasqua di Resurrezione", + "2044-04-18": "Luned\u00ec dell'Angelo", + "2044-04-23": "San Giorgio", + "2044-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2044-04-27": "San Liberale", + "2044-05-01": "Festa dei Lavoratori", + "2044-05-03": "San Nicola Pellegrino; San Secondo di Asti", + "2044-05-04": "San Ciriaco", + "2044-05-08": "San Vittore il Moro", + "2044-05-10": "San Cataldo", + "2044-05-11": "San Giustino di Chieti", + "2044-05-12": "San Ponziano", + "2044-05-19": "San Pietro Celestino", + "2044-05-21": "San Zeno", + "2044-05-22": "Santa Giulia", + "2044-05-30": "San Gerardo di Potenza", + "2044-06-01": "San Crescentino", + "2044-06-02": "Festa della Repubblica", + "2044-06-03": "Madonna della Lettera", + "2044-06-06": "Luned\u00ec di Pentecoste", + "2044-06-10": "San Massimo D'Aveia", + "2044-06-13": "Sant'Antonio di Padova", + "2044-06-17": "San Ranieri", + "2044-06-19": "San Gervasio e San Protasio", + "2044-06-20": "San Silverio", + "2044-06-24": "San Giovanni Battista", + "2044-06-26": "San Vigilio", + "2044-06-29": "Santi Pietro e Paolo", + "2044-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2044-07-04": "Sant'Antonino di Piacenza", + "2044-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2044-07-15": "San Giovanni", + "2044-07-16": "San Vitaliano", + "2044-07-23": "Sant'Apollinare", + "2044-07-25": "San Jacopo", + "2044-08-01": "Sant'Eusebio di Vercelli", + "2044-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2044-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2044-08-10": "San Lorenzo", + "2044-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2044-08-16": "Maria Santissima Assunta", + "2044-08-24": "San Bartolomeo apostolo", + "2044-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2044-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2044-09-04": "San Teodoro d'Amasea e San Lorenzo da Brindisi; Santa Rosa da Viterbo", + "2044-09-07": "San Grato", + "2044-09-08": "Madonna delle Grazie", + "2044-09-18": "San Riccardo di Andria", + "2044-09-19": "San Gennaro", + "2044-09-21": "San Matteo Evangelista", + "2044-09-24": "San Terenzio di Pesaro", + "2044-09-29": "San Michele Arcangelo", + "2044-10-04": "San Francesco d'Assisi; San Petronio", + "2044-10-09": "San Dionigi", + "2044-10-10": "San Cetteo", + "2044-10-14": "San Gaudenzio", + "2044-10-30": "San Saturnino di Cagliari", + "2044-11-01": "Tutti i Santi", + "2044-11-03": "San Giusto", + "2044-11-10": "San Baudolino", + "2044-11-11": "San Martino", + "2044-11-13": "Sant'Omobono", + "2044-11-24": "San Prospero Vescovo", + "2044-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2044-12-01": "Sant'Ansano", + "2044-12-04": "Santa Barbara", + "2044-12-06": "San Nicola", + "2044-12-07": "Sant'Ambrogio", + "2044-12-08": "Immacolata Concezione", + "2044-12-09": "San Siro", + "2044-12-13": "Santa Lucia", + "2044-12-19": "San Berardo da Pagliara", + "2044-12-25": "Natale", + "2044-12-26": "Santo Stefano", + "2044-12-30": "San Ruggero", + "2045-01-01": "Capodanno", + "2045-01-06": "Epifania del Signore", + "2045-01-13": "Sant'Ilario di Poitiers", + "2045-01-19": "San Bassiano", + "2045-01-20": "San Sebastiano", + "2045-01-22": "San Gaudenzio", + "2045-01-29": "Sant'Ercolano e San Lorenzo", + "2045-01-31": "San Geminiano", + "2045-02-04": "Madonna del Fuoco", + "2045-02-05": "Sant'Agata", + "2045-02-12": "Madonna del Pilerio", + "2045-02-13": "Sant'Archelao", + "2045-02-14": "San Modestino; San Valentino", + "2045-02-15": "Santi Faustino e Giovita", + "2045-02-25": "San Gerlando", + "2045-03-01": "San Leoluca", + "2045-03-16": "Santi Ilario e Taziano", + "2045-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2045-03-19": "San Giuseppe", + "2045-03-22": "Madonna dei Sette Veli", + "2045-04-09": "Pasqua di Resurrezione", + "2045-04-10": "Luned\u00ec dell'Angelo", + "2045-04-23": "San Giorgio", + "2045-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2045-04-27": "San Liberale", + "2045-05-01": "Festa dei Lavoratori", + "2045-05-02": "San Secondo di Asti", + "2045-05-03": "San Nicola Pellegrino", + "2045-05-04": "San Ciriaco", + "2045-05-08": "San Vittore il Moro", + "2045-05-10": "San Cataldo", + "2045-05-11": "San Giustino di Chieti", + "2045-05-18": "San Ponziano", + "2045-05-19": "San Pietro Celestino", + "2045-05-21": "San Zeno", + "2045-05-22": "Santa Giulia", + "2045-05-29": "Luned\u00ec di Pentecoste", + "2045-05-30": "San Gerardo di Potenza", + "2045-06-01": "San Crescentino", + "2045-06-02": "Festa della Repubblica", + "2045-06-03": "Madonna della Lettera", + "2045-06-10": "San Massimo D'Aveia", + "2045-06-13": "Sant'Antonio di Padova", + "2045-06-17": "San Ranieri", + "2045-06-19": "San Gervasio e San Protasio", + "2045-06-20": "San Silverio", + "2045-06-24": "San Giovanni Battista", + "2045-06-26": "San Vigilio", + "2045-06-29": "Santi Pietro e Paolo", + "2045-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2045-07-04": "Sant'Antonino di Piacenza", + "2045-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2045-07-15": "San Giovanni", + "2045-07-16": "San Vitaliano", + "2045-07-23": "Sant'Apollinare", + "2045-07-25": "San Jacopo", + "2045-08-01": "Sant'Eusebio di Vercelli", + "2045-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2045-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2045-08-10": "San Lorenzo", + "2045-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2045-08-16": "Maria Santissima Assunta", + "2045-08-24": "San Bartolomeo apostolo", + "2045-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2045-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2045-09-03": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2045-09-04": "Santa Rosa da Viterbo", + "2045-09-07": "San Grato", + "2045-09-08": "Madonna delle Grazie", + "2045-09-17": "San Riccardo di Andria", + "2045-09-19": "San Gennaro", + "2045-09-21": "San Matteo Evangelista", + "2045-09-24": "San Terenzio di Pesaro", + "2045-09-29": "San Michele Arcangelo", + "2045-10-04": "San Francesco d'Assisi; San Petronio", + "2045-10-09": "San Dionigi", + "2045-10-10": "San Cetteo", + "2045-10-14": "San Gaudenzio", + "2045-10-30": "San Saturnino di Cagliari", + "2045-11-01": "Tutti i Santi", + "2045-11-03": "San Giusto", + "2045-11-10": "San Baudolino", + "2045-11-11": "San Martino", + "2045-11-13": "Sant'Omobono", + "2045-11-24": "San Prospero Vescovo", + "2045-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2045-12-01": "Sant'Ansano", + "2045-12-04": "Santa Barbara", + "2045-12-06": "San Nicola", + "2045-12-07": "Sant'Ambrogio", + "2045-12-08": "Immacolata Concezione", + "2045-12-09": "San Siro", + "2045-12-13": "Santa Lucia", + "2045-12-19": "San Berardo da Pagliara", + "2045-12-25": "Natale", + "2045-12-26": "Santo Stefano", + "2045-12-30": "San Ruggero", + "2046-01-01": "Capodanno", + "2046-01-06": "Epifania del Signore", + "2046-01-13": "Sant'Ilario di Poitiers", + "2046-01-19": "San Bassiano", + "2046-01-20": "San Sebastiano", + "2046-01-22": "San Gaudenzio", + "2046-01-29": "Sant'Ercolano e San Lorenzo", + "2046-01-31": "San Geminiano", + "2046-02-04": "Madonna del Fuoco", + "2046-02-05": "Sant'Agata", + "2046-02-12": "Madonna del Pilerio", + "2046-02-13": "Sant'Archelao", + "2046-02-14": "San Modestino; San Valentino", + "2046-02-15": "Santi Faustino e Giovita", + "2046-02-25": "San Gerlando", + "2046-03-01": "San Leoluca", + "2046-03-16": "Santi Ilario e Taziano", + "2046-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2046-03-19": "San Giuseppe", + "2046-03-22": "Madonna dei Sette Veli", + "2046-03-25": "Pasqua di Resurrezione", + "2046-03-26": "Luned\u00ec dell'Angelo", + "2046-04-23": "San Giorgio", + "2046-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2046-04-27": "San Liberale", + "2046-05-01": "Festa dei Lavoratori; San Secondo di Asti", + "2046-05-03": "San Nicola Pellegrino", + "2046-05-04": "San Ciriaco", + "2046-05-08": "San Vittore il Moro", + "2046-05-10": "San Cataldo", + "2046-05-11": "San Giustino di Chieti", + "2046-05-14": "Luned\u00ec di Pentecoste", + "2046-05-17": "San Ponziano", + "2046-05-19": "San Pietro Celestino", + "2046-05-21": "San Zeno", + "2046-05-22": "Santa Giulia", + "2046-05-30": "San Gerardo di Potenza", + "2046-06-01": "San Crescentino", + "2046-06-02": "Festa della Repubblica", + "2046-06-03": "Madonna della Lettera", + "2046-06-10": "San Massimo D'Aveia", + "2046-06-13": "Sant'Antonio di Padova", + "2046-06-17": "San Ranieri", + "2046-06-19": "San Gervasio e San Protasio", + "2046-06-20": "San Silverio", + "2046-06-24": "San Giovanni Battista", + "2046-06-26": "San Vigilio", + "2046-06-29": "Santi Pietro e Paolo", + "2046-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2046-07-04": "Sant'Antonino di Piacenza", + "2046-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2046-07-15": "San Giovanni", + "2046-07-16": "San Vitaliano", + "2046-07-23": "Sant'Apollinare", + "2046-07-25": "San Jacopo", + "2046-08-01": "Sant'Eusebio di Vercelli", + "2046-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2046-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2046-08-10": "San Lorenzo", + "2046-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2046-08-16": "Maria Santissima Assunta", + "2046-08-24": "San Bartolomeo apostolo", + "2046-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2046-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2046-09-02": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2046-09-04": "Santa Rosa da Viterbo", + "2046-09-07": "San Grato", + "2046-09-08": "Madonna delle Grazie", + "2046-09-16": "San Riccardo di Andria", + "2046-09-19": "San Gennaro", + "2046-09-21": "San Matteo Evangelista", + "2046-09-24": "San Terenzio di Pesaro", + "2046-09-29": "San Michele Arcangelo", + "2046-10-04": "San Francesco d'Assisi; San Petronio", + "2046-10-09": "San Dionigi", + "2046-10-10": "San Cetteo", + "2046-10-14": "San Gaudenzio", + "2046-10-30": "San Saturnino di Cagliari", + "2046-11-01": "Tutti i Santi", + "2046-11-03": "San Giusto", + "2046-11-10": "San Baudolino", + "2046-11-11": "San Martino", + "2046-11-13": "Sant'Omobono", + "2046-11-24": "San Prospero Vescovo", + "2046-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2046-12-01": "Sant'Ansano", + "2046-12-04": "Santa Barbara", + "2046-12-06": "San Nicola", + "2046-12-07": "Sant'Ambrogio", + "2046-12-08": "Immacolata Concezione", + "2046-12-09": "San Siro", + "2046-12-13": "Santa Lucia", + "2046-12-19": "San Berardo da Pagliara", + "2046-12-25": "Natale", + "2046-12-26": "Santo Stefano", + "2046-12-30": "San Ruggero", + "2047-01-01": "Capodanno", + "2047-01-06": "Epifania del Signore", + "2047-01-13": "Sant'Ilario di Poitiers", + "2047-01-19": "San Bassiano", + "2047-01-20": "San Sebastiano", + "2047-01-22": "San Gaudenzio", + "2047-01-29": "Sant'Ercolano e San Lorenzo", + "2047-01-31": "San Geminiano", + "2047-02-04": "Madonna del Fuoco", + "2047-02-05": "Sant'Agata", + "2047-02-12": "Madonna del Pilerio", + "2047-02-13": "Sant'Archelao", + "2047-02-14": "San Modestino; San Valentino", + "2047-02-15": "Santi Faustino e Giovita", + "2047-02-25": "San Gerlando", + "2047-03-01": "San Leoluca", + "2047-03-16": "Santi Ilario e Taziano", + "2047-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2047-03-19": "San Giuseppe", + "2047-03-22": "Madonna dei Sette Veli", + "2047-04-14": "Pasqua di Resurrezione", + "2047-04-15": "Luned\u00ec dell'Angelo", + "2047-04-23": "San Giorgio", + "2047-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2047-04-27": "San Liberale", + "2047-05-01": "Festa dei Lavoratori", + "2047-05-03": "San Nicola Pellegrino", + "2047-05-04": "San Ciriaco", + "2047-05-07": "San Secondo di Asti", + "2047-05-08": "San Vittore il Moro", + "2047-05-10": "San Cataldo", + "2047-05-11": "San Giustino di Chieti", + "2047-05-16": "San Ponziano", + "2047-05-19": "San Pietro Celestino", + "2047-05-21": "San Zeno", + "2047-05-22": "Santa Giulia", + "2047-05-30": "San Gerardo di Potenza", + "2047-06-01": "San Crescentino", + "2047-06-02": "Festa della Repubblica", + "2047-06-03": "Luned\u00ec di Pentecoste; Madonna della Lettera", + "2047-06-10": "San Massimo D'Aveia", + "2047-06-13": "Sant'Antonio di Padova", + "2047-06-17": "San Ranieri", + "2047-06-19": "San Gervasio e San Protasio", + "2047-06-20": "San Silverio", + "2047-06-24": "San Giovanni Battista", + "2047-06-26": "San Vigilio", + "2047-06-29": "Santi Pietro e Paolo", + "2047-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2047-07-04": "Sant'Antonino di Piacenza", + "2047-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2047-07-15": "San Giovanni", + "2047-07-16": "San Vitaliano", + "2047-07-23": "Sant'Apollinare", + "2047-07-25": "San Jacopo", + "2047-08-01": "Sant'Eusebio di Vercelli", + "2047-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2047-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2047-08-10": "San Lorenzo", + "2047-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2047-08-16": "Maria Santissima Assunta", + "2047-08-24": "San Bartolomeo apostolo", + "2047-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2047-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2047-09-01": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2047-09-04": "Santa Rosa da Viterbo", + "2047-09-07": "San Grato", + "2047-09-08": "Madonna delle Grazie", + "2047-09-15": "San Riccardo di Andria", + "2047-09-19": "San Gennaro", + "2047-09-21": "San Matteo Evangelista", + "2047-09-24": "San Terenzio di Pesaro", + "2047-09-29": "San Michele Arcangelo", + "2047-10-04": "San Francesco d'Assisi; San Petronio", + "2047-10-09": "San Dionigi", + "2047-10-10": "San Cetteo", + "2047-10-14": "San Gaudenzio", + "2047-10-30": "San Saturnino di Cagliari", + "2047-11-01": "Tutti i Santi", + "2047-11-03": "San Giusto", + "2047-11-10": "San Baudolino", + "2047-11-11": "San Martino", + "2047-11-13": "Sant'Omobono", + "2047-11-24": "San Prospero Vescovo", + "2047-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2047-12-01": "Sant'Ansano", + "2047-12-04": "Santa Barbara", + "2047-12-06": "San Nicola", + "2047-12-07": "Sant'Ambrogio", + "2047-12-08": "Immacolata Concezione", + "2047-12-09": "San Siro", + "2047-12-13": "Santa Lucia", + "2047-12-19": "San Berardo da Pagliara", + "2047-12-25": "Natale", + "2047-12-26": "Santo Stefano", + "2047-12-30": "San Ruggero", + "2048-01-01": "Capodanno", + "2048-01-06": "Epifania del Signore", + "2048-01-13": "Sant'Ilario di Poitiers", + "2048-01-19": "San Bassiano", + "2048-01-20": "San Sebastiano", + "2048-01-22": "San Gaudenzio", + "2048-01-29": "Sant'Ercolano e San Lorenzo", + "2048-01-31": "San Geminiano", + "2048-02-04": "Madonna del Fuoco", + "2048-02-05": "Sant'Agata", + "2048-02-12": "Madonna del Pilerio", + "2048-02-13": "Sant'Archelao", + "2048-02-14": "San Modestino; San Valentino", + "2048-02-15": "Santi Faustino e Giovita", + "2048-02-25": "San Gerlando", + "2048-03-01": "San Leoluca", + "2048-03-16": "Santi Ilario e Taziano", + "2048-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2048-03-19": "San Giuseppe", + "2048-03-22": "Madonna dei Sette Veli", + "2048-04-05": "Pasqua di Resurrezione", + "2048-04-06": "Luned\u00ec dell'Angelo", + "2048-04-23": "San Giorgio", + "2048-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2048-04-27": "San Liberale", + "2048-05-01": "Festa dei Lavoratori", + "2048-05-03": "San Nicola Pellegrino", + "2048-05-04": "San Ciriaco", + "2048-05-05": "San Secondo di Asti", + "2048-05-08": "San Vittore il Moro", + "2048-05-10": "San Cataldo", + "2048-05-11": "San Giustino di Chieti", + "2048-05-14": "San Ponziano", + "2048-05-19": "San Pietro Celestino", + "2048-05-21": "San Zeno", + "2048-05-22": "Santa Giulia", + "2048-05-25": "Luned\u00ec di Pentecoste", + "2048-05-30": "San Gerardo di Potenza", + "2048-06-01": "San Crescentino", + "2048-06-02": "Festa della Repubblica", + "2048-06-03": "Madonna della Lettera", + "2048-06-10": "San Massimo D'Aveia", + "2048-06-13": "Sant'Antonio di Padova", + "2048-06-17": "San Ranieri", + "2048-06-19": "San Gervasio e San Protasio", + "2048-06-20": "San Silverio", + "2048-06-24": "San Giovanni Battista", + "2048-06-26": "San Vigilio", + "2048-06-29": "Santi Pietro e Paolo", + "2048-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2048-07-04": "Sant'Antonino di Piacenza", + "2048-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2048-07-15": "San Giovanni", + "2048-07-16": "San Vitaliano", + "2048-07-23": "Sant'Apollinare", + "2048-07-25": "San Jacopo", + "2048-08-01": "Sant'Eusebio di Vercelli", + "2048-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2048-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2048-08-10": "San Lorenzo", + "2048-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2048-08-16": "Maria Santissima Assunta", + "2048-08-24": "San Bartolomeo apostolo", + "2048-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2048-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2048-09-04": "Santa Rosa da Viterbo", + "2048-09-06": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2048-09-07": "San Grato", + "2048-09-08": "Madonna delle Grazie", + "2048-09-19": "San Gennaro", + "2048-09-20": "San Riccardo di Andria", + "2048-09-21": "San Matteo Evangelista", + "2048-09-24": "San Terenzio di Pesaro", + "2048-09-29": "San Michele Arcangelo", + "2048-10-04": "San Francesco d'Assisi; San Petronio", + "2048-10-09": "San Dionigi", + "2048-10-10": "San Cetteo", + "2048-10-14": "San Gaudenzio", + "2048-10-30": "San Saturnino di Cagliari", + "2048-11-01": "Tutti i Santi", + "2048-11-03": "San Giusto", + "2048-11-10": "San Baudolino", + "2048-11-11": "San Martino", + "2048-11-13": "Sant'Omobono", + "2048-11-24": "San Prospero Vescovo", + "2048-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2048-12-01": "Sant'Ansano", + "2048-12-04": "Santa Barbara", + "2048-12-06": "San Nicola", + "2048-12-07": "Sant'Ambrogio", + "2048-12-08": "Immacolata Concezione", + "2048-12-09": "San Siro", + "2048-12-13": "Santa Lucia", + "2048-12-19": "San Berardo da Pagliara", + "2048-12-25": "Natale", + "2048-12-26": "Santo Stefano", + "2048-12-30": "San Ruggero", + "2049-01-01": "Capodanno", + "2049-01-06": "Epifania del Signore", + "2049-01-13": "Sant'Ilario di Poitiers", + "2049-01-19": "San Bassiano", + "2049-01-20": "San Sebastiano", + "2049-01-22": "San Gaudenzio", + "2049-01-29": "Sant'Ercolano e San Lorenzo", + "2049-01-31": "San Geminiano", + "2049-02-04": "Madonna del Fuoco", + "2049-02-05": "Sant'Agata", + "2049-02-12": "Madonna del Pilerio", + "2049-02-13": "Sant'Archelao", + "2049-02-14": "San Modestino; San Valentino", + "2049-02-15": "Santi Faustino e Giovita", + "2049-02-25": "San Gerlando", + "2049-03-01": "San Leoluca", + "2049-03-16": "Santi Ilario e Taziano", + "2049-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2049-03-19": "San Giuseppe", + "2049-03-22": "Madonna dei Sette Veli", + "2049-04-18": "Pasqua di Resurrezione", + "2049-04-19": "Luned\u00ec dell'Angelo", + "2049-04-23": "San Giorgio", + "2049-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2049-04-27": "San Liberale", + "2049-05-01": "Festa dei Lavoratori", + "2049-05-03": "San Nicola Pellegrino", + "2049-05-04": "San Ciriaco; San Secondo di Asti", + "2049-05-08": "San Vittore il Moro", + "2049-05-10": "San Cataldo", + "2049-05-11": "San Giustino di Chieti", + "2049-05-13": "San Ponziano", + "2049-05-19": "San Pietro Celestino", + "2049-05-21": "San Zeno", + "2049-05-22": "Santa Giulia", + "2049-05-30": "San Gerardo di Potenza", + "2049-06-01": "San Crescentino", + "2049-06-02": "Festa della Repubblica", + "2049-06-03": "Madonna della Lettera", + "2049-06-07": "Luned\u00ec di Pentecoste", + "2049-06-10": "San Massimo D'Aveia", + "2049-06-13": "Sant'Antonio di Padova", + "2049-06-17": "San Ranieri", + "2049-06-19": "San Gervasio e San Protasio", + "2049-06-20": "San Silverio", + "2049-06-24": "San Giovanni Battista", + "2049-06-26": "San Vigilio", + "2049-06-29": "Santi Pietro e Paolo", + "2049-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2049-07-04": "Sant'Antonino di Piacenza", + "2049-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2049-07-15": "San Giovanni", + "2049-07-16": "San Vitaliano", + "2049-07-23": "Sant'Apollinare", + "2049-07-25": "San Jacopo", + "2049-08-01": "Sant'Eusebio di Vercelli", + "2049-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2049-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2049-08-10": "San Lorenzo", + "2049-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2049-08-16": "Maria Santissima Assunta", + "2049-08-24": "San Bartolomeo apostolo", + "2049-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2049-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2049-09-04": "Santa Rosa da Viterbo", + "2049-09-05": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "2049-09-07": "San Grato", + "2049-09-08": "Madonna delle Grazie", + "2049-09-19": "San Gennaro; San Riccardo di Andria", + "2049-09-21": "San Matteo Evangelista", + "2049-09-24": "San Terenzio di Pesaro", + "2049-09-29": "San Michele Arcangelo", + "2049-10-04": "San Francesco d'Assisi; San Petronio", + "2049-10-09": "San Dionigi", + "2049-10-10": "San Cetteo", + "2049-10-14": "San Gaudenzio", + "2049-10-30": "San Saturnino di Cagliari", + "2049-11-01": "Tutti i Santi", + "2049-11-03": "San Giusto", + "2049-11-10": "San Baudolino", + "2049-11-11": "San Martino", + "2049-11-13": "Sant'Omobono", + "2049-11-24": "San Prospero Vescovo", + "2049-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2049-12-01": "Sant'Ansano", + "2049-12-04": "Santa Barbara", + "2049-12-06": "San Nicola", + "2049-12-07": "Sant'Ambrogio", + "2049-12-08": "Immacolata Concezione", + "2049-12-09": "San Siro", + "2049-12-13": "Santa Lucia", + "2049-12-19": "San Berardo da Pagliara", + "2049-12-25": "Natale", + "2049-12-26": "Santo Stefano", + "2049-12-30": "San Ruggero", + "2050-01-01": "Capodanno", + "2050-01-06": "Epifania del Signore", + "2050-01-13": "Sant'Ilario di Poitiers", + "2050-01-19": "San Bassiano", + "2050-01-20": "San Sebastiano", + "2050-01-22": "San Gaudenzio", + "2050-01-29": "Sant'Ercolano e San Lorenzo", + "2050-01-31": "San Geminiano", + "2050-02-04": "Madonna del Fuoco", + "2050-02-05": "Sant'Agata", + "2050-02-12": "Madonna del Pilerio", + "2050-02-13": "Sant'Archelao", + "2050-02-14": "San Modestino; San Valentino", + "2050-02-15": "Santi Faustino e Giovita", + "2050-02-25": "San Gerlando", + "2050-03-01": "San Leoluca", + "2050-03-16": "Santi Ilario e Taziano", + "2050-03-18": "Nostra Signora della Misericordia; Sant'Anselmo da Baggio", + "2050-03-19": "San Giuseppe", + "2050-03-22": "Madonna dei Sette Veli", + "2050-04-10": "Pasqua di Resurrezione", + "2050-04-11": "Luned\u00ec dell'Angelo", + "2050-04-23": "San Giorgio", + "2050-04-25": "Festa della Liberazione; San Marco; San Marco Evangelista; San Marco evangelista", + "2050-04-27": "San Liberale", + "2050-05-01": "Festa dei Lavoratori", + "2050-05-03": "San Nicola Pellegrino; San Secondo di Asti", + "2050-05-04": "San Ciriaco", + "2050-05-08": "San Vittore il Moro", + "2050-05-10": "San Cataldo", + "2050-05-11": "San Giustino di Chieti", + "2050-05-12": "San Ponziano", + "2050-05-19": "San Pietro Celestino", + "2050-05-21": "San Zeno", + "2050-05-22": "Santa Giulia", + "2050-05-30": "Luned\u00ec di Pentecoste; San Gerardo di Potenza", + "2050-06-01": "San Crescentino", + "2050-06-02": "Festa della Repubblica", + "2050-06-03": "Madonna della Lettera", + "2050-06-10": "San Massimo D'Aveia", + "2050-06-13": "Sant'Antonio di Padova", + "2050-06-17": "San Ranieri", + "2050-06-19": "San Gervasio e San Protasio", + "2050-06-20": "San Silverio", + "2050-06-24": "San Giovanni Battista", + "2050-06-26": "San Vigilio", + "2050-06-29": "Santi Pietro e Paolo", + "2050-07-02": "Madonna della Bruna; Madonna della Visitazione", + "2050-07-04": "Sant'Antonino di Piacenza", + "2050-07-12": "San Paolino di Lucca; Santi Ermacora e Fortunato", + "2050-07-15": "San Giovanni", + "2050-07-16": "San Vitaliano", + "2050-07-23": "Sant'Apollinare", + "2050-07-25": "San Jacopo", + "2050-08-01": "Sant'Eusebio di Vercelli", + "2050-08-05": "Nostra Signora della Neve; Sant'Emidio", + "2050-08-07": "San Donato D'Arezzo; Sant'Alberto degli Abati", + "2050-08-10": "San Lorenzo", + "2050-08-15": "Assunzione della Vergine; Maria Santissima Assunta", + "2050-08-16": "Maria Santissima Assunta", + "2050-08-24": "San Bartolomeo apostolo", + "2050-08-26": "Sant'Alessandro di Bergamo; Sant'Oronzo", + "2050-08-31": "San Giuliano l'ospitaliere; Sant'Abbondio", + "2050-09-04": "San Teodoro d'Amasea e San Lorenzo da Brindisi; Santa Rosa da Viterbo", + "2050-09-07": "San Grato", + "2050-09-08": "Madonna delle Grazie", + "2050-09-18": "San Riccardo di Andria", + "2050-09-19": "San Gennaro", + "2050-09-21": "San Matteo Evangelista", + "2050-09-24": "San Terenzio di Pesaro", + "2050-09-29": "San Michele Arcangelo", + "2050-10-04": "San Francesco d'Assisi; San Petronio", + "2050-10-09": "San Dionigi", + "2050-10-10": "San Cetteo", + "2050-10-14": "San Gaudenzio", + "2050-10-30": "San Saturnino di Cagliari", + "2050-11-01": "Tutti i Santi", + "2050-11-03": "San Giusto", + "2050-11-10": "San Baudolino", + "2050-11-11": "San Martino", + "2050-11-13": "Sant'Omobono", + "2050-11-24": "San Prospero Vescovo", + "2050-11-26": "San Bellino; San Leonardo da Porto Maurizio", + "2050-12-01": "Sant'Ansano", + "2050-12-04": "Santa Barbara", + "2050-12-06": "San Nicola", + "2050-12-07": "Sant'Ambrogio", + "2050-12-08": "Immacolata Concezione", + "2050-12-09": "San Siro", + "2050-12-13": "Santa Lucia", + "2050-12-19": "San Berardo da Pagliara", + "2050-12-25": "Natale", + "2050-12-26": "Santo Stefano", + "2050-12-30": "San Ruggero" +} diff --git a/snapshots/countries/JM.json b/snapshots/countries/JM.json new file mode 100644 index 000000000..075709e3e --- /dev/null +++ b/snapshots/countries/JM.json @@ -0,0 +1,1059 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-02": "New Year's Day (Observed)", + "1950-02-22": "Ash Wednesday", + "1950-04-07": "Good Friday", + "1950-04-10": "Easter Monday", + "1950-05-23": "National Labour Day", + "1950-08-06": "Independence Day", + "1950-08-07": "Independence Day (Observed)", + "1950-10-16": "National Heroes Day", + "1950-12-25": "Christmas Day", + "1950-12-26": "Boxing Day", + "1951-01-01": "New Year's Day", + "1951-02-07": "Ash Wednesday", + "1951-03-23": "Good Friday", + "1951-03-26": "Easter Monday", + "1951-05-23": "National Labour Day", + "1951-08-06": "Independence Day", + "1951-10-15": "National Heroes Day", + "1951-12-25": "Christmas Day", + "1951-12-26": "Boxing Day", + "1952-01-01": "New Year's Day", + "1952-02-27": "Ash Wednesday", + "1952-04-11": "Good Friday", + "1952-04-14": "Easter Monday", + "1952-05-23": "National Labour Day", + "1952-08-06": "Independence Day", + "1952-10-20": "National Heroes Day", + "1952-12-25": "Christmas Day", + "1952-12-26": "Boxing Day", + "1953-01-01": "New Year's Day", + "1953-02-18": "Ash Wednesday", + "1953-04-03": "Good Friday", + "1953-04-06": "Easter Monday", + "1953-05-23": "National Labour Day", + "1953-05-25": "National Labour Day (Observed)", + "1953-08-06": "Independence Day", + "1953-10-19": "National Heroes Day", + "1953-12-25": "Christmas Day", + "1953-12-26": "Boxing Day", + "1954-01-01": "New Year's Day", + "1954-03-03": "Ash Wednesday", + "1954-04-16": "Good Friday", + "1954-04-19": "Easter Monday", + "1954-05-23": "National Labour Day", + "1954-05-24": "National Labour Day (Observed)", + "1954-08-06": "Independence Day", + "1954-10-18": "National Heroes Day", + "1954-12-25": "Christmas Day", + "1954-12-26": "Boxing Day", + "1954-12-27": "Boxing Day (Observed)", + "1955-01-01": "New Year's Day", + "1955-02-23": "Ash Wednesday", + "1955-04-08": "Good Friday", + "1955-04-11": "Easter Monday", + "1955-05-23": "National Labour Day", + "1955-08-06": "Independence Day", + "1955-10-17": "National Heroes Day", + "1955-12-25": "Christmas Day", + "1955-12-26": "Boxing Day", + "1955-12-27": "Christmas Day (Observed)", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year's Day (Observed)", + "1956-02-15": "Ash Wednesday", + "1956-03-30": "Good Friday", + "1956-04-02": "Easter Monday", + "1956-05-23": "National Labour Day", + "1956-08-06": "Independence Day", + "1956-10-15": "National Heroes Day", + "1956-12-25": "Christmas Day", + "1956-12-26": "Boxing Day", + "1957-01-01": "New Year's Day", + "1957-03-06": "Ash Wednesday", + "1957-04-19": "Good Friday", + "1957-04-22": "Easter Monday", + "1957-05-23": "National Labour Day", + "1957-08-06": "Independence Day", + "1957-10-21": "National Heroes Day", + "1957-12-25": "Christmas Day", + "1957-12-26": "Boxing Day", + "1958-01-01": "New Year's Day", + "1958-02-19": "Ash Wednesday", + "1958-04-04": "Good Friday", + "1958-04-07": "Easter Monday", + "1958-05-23": "National Labour Day", + "1958-08-06": "Independence Day", + "1958-10-20": "National Heroes Day", + "1958-12-25": "Christmas Day", + "1958-12-26": "Boxing Day", + "1959-01-01": "New Year's Day", + "1959-02-11": "Ash Wednesday", + "1959-03-27": "Good Friday", + "1959-03-30": "Easter Monday", + "1959-05-23": "National Labour Day", + "1959-05-25": "National Labour Day (Observed)", + "1959-08-06": "Independence Day", + "1959-10-19": "National Heroes Day", + "1959-12-25": "Christmas Day", + "1959-12-26": "Boxing Day", + "1960-01-01": "New Year's Day", + "1960-03-02": "Ash Wednesday", + "1960-04-15": "Good Friday", + "1960-04-18": "Easter Monday", + "1960-05-23": "National Labour Day", + "1960-08-06": "Independence Day", + "1960-10-17": "National Heroes Day", + "1960-12-25": "Christmas Day", + "1960-12-26": "Boxing Day", + "1960-12-27": "Christmas Day (Observed)", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day (Observed)", + "1961-02-15": "Ash Wednesday", + "1961-03-31": "Good Friday", + "1961-04-03": "Easter Monday", + "1961-05-23": "National Labour Day", + "1961-08-06": "Independence Day", + "1961-08-07": "Independence Day (Observed)", + "1961-10-16": "National Heroes Day", + "1961-12-25": "Christmas Day", + "1961-12-26": "Boxing Day", + "1962-01-01": "New Year's Day", + "1962-03-07": "Ash Wednesday", + "1962-04-20": "Good Friday", + "1962-04-23": "Easter Monday", + "1962-05-23": "National Labour Day", + "1962-08-06": "Independence Day", + "1962-10-15": "National Heroes Day", + "1962-12-25": "Christmas Day", + "1962-12-26": "Boxing Day", + "1963-01-01": "New Year's Day", + "1963-02-27": "Ash Wednesday", + "1963-04-12": "Good Friday", + "1963-04-15": "Easter Monday", + "1963-05-23": "National Labour Day", + "1963-08-06": "Independence Day", + "1963-10-21": "National Heroes Day", + "1963-12-25": "Christmas Day", + "1963-12-26": "Boxing Day", + "1964-01-01": "New Year's Day", + "1964-02-12": "Ash Wednesday", + "1964-03-27": "Good Friday", + "1964-03-30": "Easter Monday", + "1964-05-23": "National Labour Day", + "1964-05-25": "National Labour Day (Observed)", + "1964-08-06": "Independence Day", + "1964-10-19": "National Heroes Day", + "1964-12-25": "Christmas Day", + "1964-12-26": "Boxing Day", + "1965-01-01": "New Year's Day", + "1965-03-03": "Ash Wednesday", + "1965-04-16": "Good Friday", + "1965-04-19": "Easter Monday", + "1965-05-23": "National Labour Day", + "1965-05-24": "National Labour Day (Observed)", + "1965-08-06": "Independence Day", + "1965-10-18": "National Heroes Day", + "1965-12-25": "Christmas Day", + "1965-12-26": "Boxing Day", + "1965-12-27": "Boxing Day (Observed)", + "1966-01-01": "New Year's Day", + "1966-02-23": "Ash Wednesday", + "1966-04-08": "Good Friday", + "1966-04-11": "Easter Monday", + "1966-05-23": "National Labour Day", + "1966-08-06": "Independence Day", + "1966-10-17": "National Heroes Day", + "1966-12-25": "Christmas Day", + "1966-12-26": "Boxing Day", + "1966-12-27": "Christmas Day (Observed)", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day (Observed)", + "1967-02-08": "Ash Wednesday", + "1967-03-24": "Good Friday", + "1967-03-27": "Easter Monday", + "1967-05-23": "National Labour Day", + "1967-08-06": "Independence Day", + "1967-08-07": "Independence Day (Observed)", + "1967-10-16": "National Heroes Day", + "1967-12-25": "Christmas Day", + "1967-12-26": "Boxing Day", + "1968-01-01": "New Year's Day", + "1968-02-28": "Ash Wednesday", + "1968-04-12": "Good Friday", + "1968-04-15": "Easter Monday", + "1968-05-23": "National Labour Day", + "1968-08-06": "Independence Day", + "1968-10-21": "National Heroes Day", + "1968-12-25": "Christmas Day", + "1968-12-26": "Boxing Day", + "1969-01-01": "New Year's Day", + "1969-02-19": "Ash Wednesday", + "1969-04-04": "Good Friday", + "1969-04-07": "Easter Monday", + "1969-05-23": "National Labour Day", + "1969-08-06": "Independence Day", + "1969-10-20": "National Heroes Day", + "1969-12-25": "Christmas Day", + "1969-12-26": "Boxing Day", + "1970-01-01": "New Year's Day", + "1970-02-11": "Ash Wednesday", + "1970-03-27": "Good Friday", + "1970-03-30": "Easter Monday", + "1970-05-23": "National Labour Day", + "1970-05-25": "National Labour Day (Observed)", + "1970-08-06": "Independence Day", + "1970-10-19": "National Heroes Day", + "1970-12-25": "Christmas Day", + "1970-12-26": "Boxing Day", + "1971-01-01": "New Year's Day", + "1971-02-24": "Ash Wednesday", + "1971-04-09": "Good Friday", + "1971-04-12": "Easter Monday", + "1971-05-23": "National Labour Day", + "1971-05-24": "National Labour Day (Observed)", + "1971-08-06": "Independence Day", + "1971-10-18": "National Heroes Day", + "1971-12-25": "Christmas Day", + "1971-12-26": "Boxing Day", + "1971-12-27": "Boxing Day (Observed)", + "1972-01-01": "New Year's Day", + "1972-02-16": "Ash Wednesday", + "1972-03-31": "Good Friday", + "1972-04-03": "Easter Monday", + "1972-05-23": "National Labour Day", + "1972-08-06": "Independence Day", + "1972-08-07": "Independence Day (Observed)", + "1972-10-16": "National Heroes Day", + "1972-12-25": "Christmas Day", + "1972-12-26": "Boxing Day", + "1973-01-01": "New Year's Day", + "1973-03-07": "Ash Wednesday", + "1973-04-20": "Good Friday", + "1973-04-23": "Easter Monday", + "1973-05-23": "National Labour Day", + "1973-08-06": "Independence Day", + "1973-10-15": "National Heroes Day", + "1973-12-25": "Christmas Day", + "1973-12-26": "Boxing Day", + "1974-01-01": "New Year's Day", + "1974-02-27": "Ash Wednesday", + "1974-04-12": "Good Friday", + "1974-04-15": "Easter Monday", + "1974-05-23": "National Labour Day", + "1974-08-06": "Independence Day", + "1974-10-21": "National Heroes Day", + "1974-12-25": "Christmas Day", + "1974-12-26": "Boxing Day", + "1975-01-01": "New Year's Day", + "1975-02-12": "Ash Wednesday", + "1975-03-28": "Good Friday", + "1975-03-31": "Easter Monday", + "1975-05-23": "National Labour Day", + "1975-08-06": "Independence Day", + "1975-10-20": "National Heroes Day", + "1975-12-25": "Christmas Day", + "1975-12-26": "Boxing Day", + "1976-01-01": "New Year's Day", + "1976-03-03": "Ash Wednesday", + "1976-04-16": "Good Friday", + "1976-04-19": "Easter Monday", + "1976-05-23": "National Labour Day", + "1976-05-24": "National Labour Day (Observed)", + "1976-08-06": "Independence Day", + "1976-10-18": "National Heroes Day", + "1976-12-25": "Christmas Day", + "1976-12-26": "Boxing Day", + "1976-12-27": "Boxing Day (Observed)", + "1977-01-01": "New Year's Day", + "1977-02-23": "Ash Wednesday", + "1977-04-08": "Good Friday", + "1977-04-11": "Easter Monday", + "1977-05-23": "National Labour Day", + "1977-08-06": "Independence Day", + "1977-10-17": "National Heroes Day", + "1977-12-25": "Christmas Day", + "1977-12-26": "Boxing Day", + "1977-12-27": "Christmas Day (Observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day (Observed)", + "1978-02-08": "Ash Wednesday", + "1978-03-24": "Good Friday", + "1978-03-27": "Easter Monday", + "1978-05-23": "National Labour Day", + "1978-08-06": "Independence Day", + "1978-08-07": "Independence Day (Observed)", + "1978-10-16": "National Heroes Day", + "1978-12-25": "Christmas Day", + "1978-12-26": "Boxing Day", + "1979-01-01": "New Year's Day", + "1979-02-28": "Ash Wednesday", + "1979-04-13": "Good Friday", + "1979-04-16": "Easter Monday", + "1979-05-23": "National Labour Day", + "1979-08-06": "Independence Day", + "1979-10-15": "National Heroes Day", + "1979-12-25": "Christmas Day", + "1979-12-26": "Boxing Day", + "1980-01-01": "New Year's Day", + "1980-02-20": "Ash Wednesday", + "1980-04-04": "Good Friday", + "1980-04-07": "Easter Monday", + "1980-05-23": "National Labour Day", + "1980-08-06": "Independence Day", + "1980-10-20": "National Heroes Day", + "1980-12-25": "Christmas Day", + "1980-12-26": "Boxing Day", + "1981-01-01": "New Year's Day", + "1981-03-04": "Ash Wednesday", + "1981-04-17": "Good Friday", + "1981-04-20": "Easter Monday", + "1981-05-23": "National Labour Day", + "1981-05-25": "National Labour Day (Observed)", + "1981-08-06": "Independence Day", + "1981-10-19": "National Heroes Day", + "1981-12-25": "Christmas Day", + "1981-12-26": "Boxing Day", + "1982-01-01": "New Year's Day", + "1982-02-24": "Ash Wednesday", + "1982-04-09": "Good Friday", + "1982-04-12": "Easter Monday", + "1982-05-23": "National Labour Day", + "1982-05-24": "National Labour Day (Observed)", + "1982-08-06": "Independence Day", + "1982-10-18": "National Heroes Day", + "1982-12-25": "Christmas Day", + "1982-12-26": "Boxing Day", + "1982-12-27": "Boxing Day (Observed)", + "1983-01-01": "New Year's Day", + "1983-02-16": "Ash Wednesday", + "1983-04-01": "Good Friday", + "1983-04-04": "Easter Monday", + "1983-05-23": "National Labour Day", + "1983-08-06": "Independence Day", + "1983-10-17": "National Heroes Day", + "1983-12-25": "Christmas Day", + "1983-12-26": "Boxing Day", + "1983-12-27": "Christmas Day (Observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (Observed)", + "1984-03-07": "Ash Wednesday", + "1984-04-20": "Good Friday", + "1984-04-23": "Easter Monday", + "1984-05-23": "National Labour Day", + "1984-08-06": "Independence Day", + "1984-10-15": "National Heroes Day", + "1984-12-25": "Christmas Day", + "1984-12-26": "Boxing Day", + "1985-01-01": "New Year's Day", + "1985-02-20": "Ash Wednesday", + "1985-04-05": "Good Friday", + "1985-04-08": "Easter Monday", + "1985-05-23": "National Labour Day", + "1985-08-06": "Independence Day", + "1985-10-21": "National Heroes Day", + "1985-12-25": "Christmas Day", + "1985-12-26": "Boxing Day", + "1986-01-01": "New Year's Day", + "1986-02-12": "Ash Wednesday", + "1986-03-28": "Good Friday", + "1986-03-31": "Easter Monday", + "1986-05-23": "National Labour Day", + "1986-08-06": "Independence Day", + "1986-10-20": "National Heroes Day", + "1986-12-25": "Christmas Day", + "1986-12-26": "Boxing Day", + "1987-01-01": "New Year's Day", + "1987-03-04": "Ash Wednesday", + "1987-04-17": "Good Friday", + "1987-04-20": "Easter Monday", + "1987-05-23": "National Labour Day", + "1987-05-25": "National Labour Day (Observed)", + "1987-08-06": "Independence Day", + "1987-10-19": "National Heroes Day", + "1987-12-25": "Christmas Day", + "1987-12-26": "Boxing Day", + "1988-01-01": "New Year's Day", + "1988-02-17": "Ash Wednesday", + "1988-04-01": "Good Friday", + "1988-04-04": "Easter Monday", + "1988-05-23": "National Labour Day", + "1988-08-06": "Independence Day", + "1988-10-17": "National Heroes Day", + "1988-12-25": "Christmas Day", + "1988-12-26": "Boxing Day", + "1988-12-27": "Christmas Day (Observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (Observed)", + "1989-02-08": "Ash Wednesday", + "1989-03-24": "Good Friday", + "1989-03-27": "Easter Monday", + "1989-05-23": "National Labour Day", + "1989-08-06": "Independence Day", + "1989-08-07": "Independence Day (Observed)", + "1989-10-16": "National Heroes Day", + "1989-12-25": "Christmas Day", + "1989-12-26": "Boxing Day", + "1990-01-01": "New Year's Day", + "1990-02-28": "Ash Wednesday", + "1990-04-13": "Good Friday", + "1990-04-16": "Easter Monday", + "1990-05-23": "National Labour Day", + "1990-08-06": "Independence Day", + "1990-10-15": "National Heroes Day", + "1990-12-25": "Christmas Day", + "1990-12-26": "Boxing Day", + "1991-01-01": "New Year's Day", + "1991-02-13": "Ash Wednesday", + "1991-03-29": "Good Friday", + "1991-04-01": "Easter Monday", + "1991-05-23": "National Labour Day", + "1991-08-06": "Independence Day", + "1991-10-21": "National Heroes Day", + "1991-12-25": "Christmas Day", + "1991-12-26": "Boxing Day", + "1992-01-01": "New Year's Day", + "1992-03-04": "Ash Wednesday", + "1992-04-17": "Good Friday", + "1992-04-20": "Easter Monday", + "1992-05-23": "National Labour Day", + "1992-05-25": "National Labour Day (Observed)", + "1992-08-06": "Independence Day", + "1992-10-19": "National Heroes Day", + "1992-12-25": "Christmas Day", + "1992-12-26": "Boxing Day", + "1993-01-01": "New Year's Day", + "1993-02-24": "Ash Wednesday", + "1993-04-09": "Good Friday", + "1993-04-12": "Easter Monday", + "1993-05-23": "National Labour Day", + "1993-05-24": "National Labour Day (Observed)", + "1993-08-06": "Independence Day", + "1993-10-18": "National Heroes Day", + "1993-12-25": "Christmas Day", + "1993-12-26": "Boxing Day", + "1993-12-27": "Boxing Day (Observed)", + "1994-01-01": "New Year's Day", + "1994-02-16": "Ash Wednesday", + "1994-04-01": "Good Friday", + "1994-04-04": "Easter Monday", + "1994-05-23": "National Labour Day", + "1994-08-06": "Independence Day", + "1994-10-17": "National Heroes Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Boxing Day", + "1994-12-27": "Christmas Day (Observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (Observed)", + "1995-03-01": "Ash Wednesday", + "1995-04-14": "Good Friday", + "1995-04-17": "Easter Monday", + "1995-05-23": "National Labour Day", + "1995-08-06": "Independence Day", + "1995-08-07": "Independence Day (Observed)", + "1995-10-16": "National Heroes Day", + "1995-12-25": "Christmas Day", + "1995-12-26": "Boxing Day", + "1996-01-01": "New Year's Day", + "1996-02-21": "Ash Wednesday", + "1996-04-05": "Good Friday", + "1996-04-08": "Easter Monday", + "1996-05-23": "National Labour Day", + "1996-08-06": "Independence Day", + "1996-10-21": "National Heroes Day", + "1996-12-25": "Christmas Day", + "1996-12-26": "Boxing Day", + "1997-01-01": "New Year's Day", + "1997-02-12": "Ash Wednesday", + "1997-03-28": "Good Friday", + "1997-03-31": "Easter Monday", + "1997-05-23": "National Labour Day", + "1997-08-06": "Independence Day", + "1997-10-20": "National Heroes Day", + "1997-12-25": "Christmas Day", + "1997-12-26": "Boxing Day", + "1998-01-01": "New Year's Day", + "1998-02-25": "Ash Wednesday", + "1998-04-10": "Good Friday", + "1998-04-13": "Easter Monday", + "1998-05-23": "National Labour Day", + "1998-05-25": "National Labour Day (Observed)", + "1998-08-01": "Emancipation Day", + "1998-08-06": "Independence Day", + "1998-10-19": "National Heroes Day", + "1998-12-25": "Christmas Day", + "1998-12-26": "Boxing Day", + "1999-01-01": "New Year's Day", + "1999-02-17": "Ash Wednesday", + "1999-04-02": "Good Friday", + "1999-04-05": "Easter Monday", + "1999-05-23": "National Labour Day", + "1999-05-24": "National Labour Day (Observed)", + "1999-08-01": "Emancipation Day", + "1999-08-02": "Emancipation Day (Observed)", + "1999-08-06": "Independence Day", + "1999-10-18": "National Heroes Day", + "1999-12-25": "Christmas Day", + "1999-12-26": "Boxing Day", + "1999-12-27": "Boxing Day (Observed)", + "2000-01-01": "New Year's Day", + "2000-03-08": "Ash Wednesday", + "2000-04-21": "Good Friday", + "2000-04-24": "Easter Monday", + "2000-05-23": "National Labour Day", + "2000-08-01": "Emancipation Day", + "2000-08-06": "Independence Day", + "2000-08-07": "Independence Day (Observed)", + "2000-10-16": "National Heroes Day", + "2000-12-25": "Christmas Day", + "2000-12-26": "Boxing Day", + "2001-01-01": "New Year's Day", + "2001-02-28": "Ash Wednesday", + "2001-04-13": "Good Friday", + "2001-04-16": "Easter Monday", + "2001-05-23": "National Labour Day", + "2001-08-01": "Emancipation Day", + "2001-08-06": "Independence Day", + "2001-10-15": "National Heroes Day", + "2001-12-25": "Christmas Day", + "2001-12-26": "Boxing Day", + "2002-01-01": "New Year's Day", + "2002-02-13": "Ash Wednesday", + "2002-03-29": "Good Friday", + "2002-04-01": "Easter Monday", + "2002-05-23": "National Labour Day", + "2002-08-01": "Emancipation Day", + "2002-08-06": "Independence Day", + "2002-10-21": "National Heroes Day", + "2002-12-25": "Christmas Day", + "2002-12-26": "Boxing Day", + "2003-01-01": "New Year's Day", + "2003-03-05": "Ash Wednesday", + "2003-04-18": "Good Friday", + "2003-04-21": "Easter Monday", + "2003-05-23": "National Labour Day", + "2003-08-01": "Emancipation Day", + "2003-08-06": "Independence Day", + "2003-10-20": "National Heroes Day", + "2003-12-25": "Christmas Day", + "2003-12-26": "Boxing Day", + "2004-01-01": "New Year's Day", + "2004-02-25": "Ash Wednesday", + "2004-04-09": "Good Friday", + "2004-04-12": "Easter Monday", + "2004-05-23": "National Labour Day", + "2004-05-24": "National Labour Day (Observed)", + "2004-08-01": "Emancipation Day", + "2004-08-02": "Emancipation Day (Observed)", + "2004-08-06": "Independence Day", + "2004-10-18": "National Heroes Day", + "2004-12-25": "Christmas Day", + "2004-12-26": "Boxing Day", + "2004-12-27": "Boxing Day (Observed)", + "2005-01-01": "New Year's Day", + "2005-02-09": "Ash Wednesday", + "2005-03-25": "Good Friday", + "2005-03-28": "Easter Monday", + "2005-05-23": "National Labour Day", + "2005-08-01": "Emancipation Day", + "2005-08-06": "Independence Day", + "2005-10-17": "National Heroes Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "Boxing Day", + "2005-12-27": "Christmas Day (Observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (Observed)", + "2006-03-01": "Ash Wednesday", + "2006-04-14": "Good Friday", + "2006-04-17": "Easter Monday", + "2006-05-23": "National Labour Day", + "2006-08-01": "Emancipation Day", + "2006-08-06": "Independence Day", + "2006-08-07": "Independence Day (Observed)", + "2006-10-16": "National Heroes Day", + "2006-12-25": "Christmas Day", + "2006-12-26": "Boxing Day", + "2007-01-01": "New Year's Day", + "2007-02-21": "Ash Wednesday", + "2007-04-06": "Good Friday", + "2007-04-09": "Easter Monday", + "2007-05-23": "National Labour Day", + "2007-08-01": "Emancipation Day", + "2007-08-06": "Independence Day", + "2007-10-15": "National Heroes Day", + "2007-12-25": "Christmas Day", + "2007-12-26": "Boxing Day", + "2008-01-01": "New Year's Day", + "2008-02-06": "Ash Wednesday", + "2008-03-21": "Good Friday", + "2008-03-24": "Easter Monday", + "2008-05-23": "National Labour Day", + "2008-08-01": "Emancipation Day", + "2008-08-06": "Independence Day", + "2008-10-20": "National Heroes Day", + "2008-12-25": "Christmas Day", + "2008-12-26": "Boxing Day", + "2009-01-01": "New Year's Day", + "2009-02-25": "Ash Wednesday", + "2009-04-10": "Good Friday", + "2009-04-13": "Easter Monday", + "2009-05-23": "National Labour Day", + "2009-05-25": "National Labour Day (Observed)", + "2009-08-01": "Emancipation Day", + "2009-08-06": "Independence Day", + "2009-10-19": "National Heroes Day", + "2009-12-25": "Christmas Day", + "2009-12-26": "Boxing Day", + "2010-01-01": "New Year's Day", + "2010-02-17": "Ash Wednesday", + "2010-04-02": "Good Friday", + "2010-04-05": "Easter Monday", + "2010-05-23": "National Labour Day", + "2010-05-24": "National Labour Day (Observed)", + "2010-08-01": "Emancipation Day", + "2010-08-02": "Emancipation Day (Observed)", + "2010-08-06": "Independence Day", + "2010-10-18": "National Heroes Day", + "2010-12-25": "Christmas Day", + "2010-12-26": "Boxing Day", + "2010-12-27": "Boxing Day (Observed)", + "2011-01-01": "New Year's Day", + "2011-03-09": "Ash Wednesday", + "2011-04-22": "Good Friday", + "2011-04-25": "Easter Monday", + "2011-05-23": "National Labour Day", + "2011-08-01": "Emancipation Day", + "2011-08-06": "Independence Day", + "2011-10-17": "National Heroes Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "Boxing Day", + "2011-12-27": "Christmas Day (Observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (Observed)", + "2012-02-22": "Ash Wednesday", + "2012-04-06": "Good Friday", + "2012-04-09": "Easter Monday", + "2012-05-23": "National Labour Day", + "2012-08-01": "Emancipation Day", + "2012-08-06": "Independence Day", + "2012-10-15": "National Heroes Day", + "2012-12-25": "Christmas Day", + "2012-12-26": "Boxing Day", + "2013-01-01": "New Year's Day", + "2013-02-13": "Ash Wednesday", + "2013-03-29": "Good Friday", + "2013-04-01": "Easter Monday", + "2013-05-23": "National Labour Day", + "2013-08-01": "Emancipation Day", + "2013-08-06": "Independence Day", + "2013-10-21": "National Heroes Day", + "2013-12-25": "Christmas Day", + "2013-12-26": "Boxing Day", + "2014-01-01": "New Year's Day", + "2014-03-05": "Ash Wednesday", + "2014-04-18": "Good Friday", + "2014-04-21": "Easter Monday", + "2014-05-23": "National Labour Day", + "2014-08-01": "Emancipation Day", + "2014-08-06": "Independence Day", + "2014-10-20": "National Heroes Day", + "2014-12-25": "Christmas Day", + "2014-12-26": "Boxing Day", + "2015-01-01": "New Year's Day", + "2015-02-18": "Ash Wednesday", + "2015-04-03": "Good Friday", + "2015-04-06": "Easter Monday", + "2015-05-23": "National Labour Day", + "2015-05-25": "National Labour Day (Observed)", + "2015-08-01": "Emancipation Day", + "2015-08-06": "Independence Day", + "2015-10-19": "National Heroes Day", + "2015-12-25": "Christmas Day", + "2015-12-26": "Boxing Day", + "2016-01-01": "New Year's Day", + "2016-02-10": "Ash Wednesday", + "2016-03-25": "Good Friday", + "2016-03-28": "Easter Monday", + "2016-05-23": "National Labour Day", + "2016-08-01": "Emancipation Day", + "2016-08-06": "Independence Day", + "2016-10-17": "National Heroes Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "Boxing Day", + "2016-12-27": "Christmas Day (Observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (Observed)", + "2017-03-01": "Ash Wednesday", + "2017-04-14": "Good Friday", + "2017-04-17": "Easter Monday", + "2017-05-23": "National Labour Day", + "2017-08-01": "Emancipation Day", + "2017-08-06": "Independence Day", + "2017-08-07": "Independence Day (Observed)", + "2017-10-16": "National Heroes Day", + "2017-12-25": "Christmas Day", + "2017-12-26": "Boxing Day", + "2018-01-01": "New Year's Day", + "2018-02-14": "Ash Wednesday", + "2018-03-30": "Good Friday", + "2018-04-02": "Easter Monday", + "2018-05-23": "National Labour Day", + "2018-08-01": "Emancipation Day", + "2018-08-06": "Independence Day", + "2018-10-15": "National Heroes Day", + "2018-12-25": "Christmas Day", + "2018-12-26": "Boxing Day", + "2019-01-01": "New Year's Day", + "2019-03-06": "Ash Wednesday", + "2019-04-19": "Good Friday", + "2019-04-22": "Easter Monday", + "2019-05-23": "National Labour Day", + "2019-08-01": "Emancipation Day", + "2019-08-06": "Independence Day", + "2019-10-21": "National Heroes Day", + "2019-12-25": "Christmas Day", + "2019-12-26": "Boxing Day", + "2020-01-01": "New Year's Day", + "2020-02-26": "Ash Wednesday", + "2020-04-10": "Good Friday", + "2020-04-13": "Easter Monday", + "2020-05-23": "National Labour Day", + "2020-05-25": "National Labour Day (Observed)", + "2020-08-01": "Emancipation Day", + "2020-08-06": "Independence Day", + "2020-10-19": "National Heroes Day", + "2020-12-25": "Christmas Day", + "2020-12-26": "Boxing Day", + "2021-01-01": "New Year's Day", + "2021-02-17": "Ash Wednesday", + "2021-04-02": "Good Friday", + "2021-04-05": "Easter Monday", + "2021-05-23": "National Labour Day", + "2021-05-24": "National Labour Day (Observed)", + "2021-08-01": "Emancipation Day", + "2021-08-02": "Emancipation Day (Observed)", + "2021-08-06": "Independence Day", + "2021-10-18": "National Heroes Day", + "2021-12-25": "Christmas Day", + "2021-12-26": "Boxing Day", + "2021-12-27": "Boxing Day (Observed)", + "2022-01-01": "New Year's Day", + "2022-03-02": "Ash Wednesday", + "2022-04-15": "Good Friday", + "2022-04-18": "Easter Monday", + "2022-05-23": "National Labour Day", + "2022-08-01": "Emancipation Day", + "2022-08-06": "Independence Day", + "2022-10-17": "National Heroes Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "Boxing Day", + "2022-12-27": "Christmas Day (Observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (Observed)", + "2023-02-22": "Ash Wednesday", + "2023-04-07": "Good Friday", + "2023-04-10": "Easter Monday", + "2023-05-23": "National Labour Day", + "2023-08-01": "Emancipation Day", + "2023-08-06": "Independence Day", + "2023-08-07": "Independence Day (Observed)", + "2023-10-16": "National Heroes Day", + "2023-12-25": "Christmas Day", + "2023-12-26": "Boxing Day", + "2024-01-01": "New Year's Day", + "2024-02-14": "Ash Wednesday", + "2024-03-29": "Good Friday", + "2024-04-01": "Easter Monday", + "2024-05-23": "National Labour Day", + "2024-08-01": "Emancipation Day", + "2024-08-06": "Independence Day", + "2024-10-21": "National Heroes Day", + "2024-12-25": "Christmas Day", + "2024-12-26": "Boxing Day", + "2025-01-01": "New Year's Day", + "2025-03-05": "Ash Wednesday", + "2025-04-18": "Good Friday", + "2025-04-21": "Easter Monday", + "2025-05-23": "National Labour Day", + "2025-08-01": "Emancipation Day", + "2025-08-06": "Independence Day", + "2025-10-20": "National Heroes Day", + "2025-12-25": "Christmas Day", + "2025-12-26": "Boxing Day", + "2026-01-01": "New Year's Day", + "2026-02-18": "Ash Wednesday", + "2026-04-03": "Good Friday", + "2026-04-06": "Easter Monday", + "2026-05-23": "National Labour Day", + "2026-05-25": "National Labour Day (Observed)", + "2026-08-01": "Emancipation Day", + "2026-08-06": "Independence Day", + "2026-10-19": "National Heroes Day", + "2026-12-25": "Christmas Day", + "2026-12-26": "Boxing Day", + "2027-01-01": "New Year's Day", + "2027-02-10": "Ash Wednesday", + "2027-03-26": "Good Friday", + "2027-03-29": "Easter Monday", + "2027-05-23": "National Labour Day", + "2027-05-24": "National Labour Day (Observed)", + "2027-08-01": "Emancipation Day", + "2027-08-02": "Emancipation Day (Observed)", + "2027-08-06": "Independence Day", + "2027-10-18": "National Heroes Day", + "2027-12-25": "Christmas Day", + "2027-12-26": "Boxing Day", + "2027-12-27": "Boxing Day (Observed)", + "2028-01-01": "New Year's Day", + "2028-03-01": "Ash Wednesday", + "2028-04-14": "Good Friday", + "2028-04-17": "Easter Monday", + "2028-05-23": "National Labour Day", + "2028-08-01": "Emancipation Day", + "2028-08-06": "Independence Day", + "2028-08-07": "Independence Day (Observed)", + "2028-10-16": "National Heroes Day", + "2028-12-25": "Christmas Day", + "2028-12-26": "Boxing Day", + "2029-01-01": "New Year's Day", + "2029-02-14": "Ash Wednesday", + "2029-03-30": "Good Friday", + "2029-04-02": "Easter Monday", + "2029-05-23": "National Labour Day", + "2029-08-01": "Emancipation Day", + "2029-08-06": "Independence Day", + "2029-10-15": "National Heroes Day", + "2029-12-25": "Christmas Day", + "2029-12-26": "Boxing Day", + "2030-01-01": "New Year's Day", + "2030-03-06": "Ash Wednesday", + "2030-04-19": "Good Friday", + "2030-04-22": "Easter Monday", + "2030-05-23": "National Labour Day", + "2030-08-01": "Emancipation Day", + "2030-08-06": "Independence Day", + "2030-10-21": "National Heroes Day", + "2030-12-25": "Christmas Day", + "2030-12-26": "Boxing Day", + "2031-01-01": "New Year's Day", + "2031-02-26": "Ash Wednesday", + "2031-04-11": "Good Friday", + "2031-04-14": "Easter Monday", + "2031-05-23": "National Labour Day", + "2031-08-01": "Emancipation Day", + "2031-08-06": "Independence Day", + "2031-10-20": "National Heroes Day", + "2031-12-25": "Christmas Day", + "2031-12-26": "Boxing Day", + "2032-01-01": "New Year's Day", + "2032-02-11": "Ash Wednesday", + "2032-03-26": "Good Friday", + "2032-03-29": "Easter Monday", + "2032-05-23": "National Labour Day", + "2032-05-24": "National Labour Day (Observed)", + "2032-08-01": "Emancipation Day", + "2032-08-02": "Emancipation Day (Observed)", + "2032-08-06": "Independence Day", + "2032-10-18": "National Heroes Day", + "2032-12-25": "Christmas Day", + "2032-12-26": "Boxing Day", + "2032-12-27": "Boxing Day (Observed)", + "2033-01-01": "New Year's Day", + "2033-03-02": "Ash Wednesday", + "2033-04-15": "Good Friday", + "2033-04-18": "Easter Monday", + "2033-05-23": "National Labour Day", + "2033-08-01": "Emancipation Day", + "2033-08-06": "Independence Day", + "2033-10-17": "National Heroes Day", + "2033-12-25": "Christmas Day", + "2033-12-26": "Boxing Day", + "2033-12-27": "Christmas Day (Observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-02-22": "Ash Wednesday", + "2034-04-07": "Good Friday", + "2034-04-10": "Easter Monday", + "2034-05-23": "National Labour Day", + "2034-08-01": "Emancipation Day", + "2034-08-06": "Independence Day", + "2034-08-07": "Independence Day (Observed)", + "2034-10-16": "National Heroes Day", + "2034-12-25": "Christmas Day", + "2034-12-26": "Boxing Day", + "2035-01-01": "New Year's Day", + "2035-02-07": "Ash Wednesday", + "2035-03-23": "Good Friday", + "2035-03-26": "Easter Monday", + "2035-05-23": "National Labour Day", + "2035-08-01": "Emancipation Day", + "2035-08-06": "Independence Day", + "2035-10-15": "National Heroes Day", + "2035-12-25": "Christmas Day", + "2035-12-26": "Boxing Day", + "2036-01-01": "New Year's Day", + "2036-02-27": "Ash Wednesday", + "2036-04-11": "Good Friday", + "2036-04-14": "Easter Monday", + "2036-05-23": "National Labour Day", + "2036-08-01": "Emancipation Day", + "2036-08-06": "Independence Day", + "2036-10-20": "National Heroes Day", + "2036-12-25": "Christmas Day", + "2036-12-26": "Boxing Day", + "2037-01-01": "New Year's Day", + "2037-02-18": "Ash Wednesday", + "2037-04-03": "Good Friday", + "2037-04-06": "Easter Monday", + "2037-05-23": "National Labour Day", + "2037-05-25": "National Labour Day (Observed)", + "2037-08-01": "Emancipation Day", + "2037-08-06": "Independence Day", + "2037-10-19": "National Heroes Day", + "2037-12-25": "Christmas Day", + "2037-12-26": "Boxing Day", + "2038-01-01": "New Year's Day", + "2038-03-10": "Ash Wednesday", + "2038-04-23": "Good Friday", + "2038-04-26": "Easter Monday", + "2038-05-23": "National Labour Day", + "2038-05-24": "National Labour Day (Observed)", + "2038-08-01": "Emancipation Day", + "2038-08-02": "Emancipation Day (Observed)", + "2038-08-06": "Independence Day", + "2038-10-18": "National Heroes Day", + "2038-12-25": "Christmas Day", + "2038-12-26": "Boxing Day", + "2038-12-27": "Boxing Day (Observed)", + "2039-01-01": "New Year's Day", + "2039-02-23": "Ash Wednesday", + "2039-04-08": "Good Friday", + "2039-04-11": "Easter Monday", + "2039-05-23": "National Labour Day", + "2039-08-01": "Emancipation Day", + "2039-08-06": "Independence Day", + "2039-10-17": "National Heroes Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Boxing Day", + "2039-12-27": "Christmas Day (Observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (Observed)", + "2040-02-15": "Ash Wednesday", + "2040-03-30": "Good Friday", + "2040-04-02": "Easter Monday", + "2040-05-23": "National Labour Day", + "2040-08-01": "Emancipation Day", + "2040-08-06": "Independence Day", + "2040-10-15": "National Heroes Day", + "2040-12-25": "Christmas Day", + "2040-12-26": "Boxing Day", + "2041-01-01": "New Year's Day", + "2041-03-06": "Ash Wednesday", + "2041-04-19": "Good Friday", + "2041-04-22": "Easter Monday", + "2041-05-23": "National Labour Day", + "2041-08-01": "Emancipation Day", + "2041-08-06": "Independence Day", + "2041-10-21": "National Heroes Day", + "2041-12-25": "Christmas Day", + "2041-12-26": "Boxing Day", + "2042-01-01": "New Year's Day", + "2042-02-19": "Ash Wednesday", + "2042-04-04": "Good Friday", + "2042-04-07": "Easter Monday", + "2042-05-23": "National Labour Day", + "2042-08-01": "Emancipation Day", + "2042-08-06": "Independence Day", + "2042-10-20": "National Heroes Day", + "2042-12-25": "Christmas Day", + "2042-12-26": "Boxing Day", + "2043-01-01": "New Year's Day", + "2043-02-11": "Ash Wednesday", + "2043-03-27": "Good Friday", + "2043-03-30": "Easter Monday", + "2043-05-23": "National Labour Day", + "2043-05-25": "National Labour Day (Observed)", + "2043-08-01": "Emancipation Day", + "2043-08-06": "Independence Day", + "2043-10-19": "National Heroes Day", + "2043-12-25": "Christmas Day", + "2043-12-26": "Boxing Day", + "2044-01-01": "New Year's Day", + "2044-03-02": "Ash Wednesday", + "2044-04-15": "Good Friday", + "2044-04-18": "Easter Monday", + "2044-05-23": "National Labour Day", + "2044-08-01": "Emancipation Day", + "2044-08-06": "Independence Day", + "2044-10-17": "National Heroes Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "Boxing Day", + "2044-12-27": "Christmas Day (Observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (Observed)", + "2045-02-22": "Ash Wednesday", + "2045-04-07": "Good Friday", + "2045-04-10": "Easter Monday", + "2045-05-23": "National Labour Day", + "2045-08-01": "Emancipation Day", + "2045-08-06": "Independence Day", + "2045-08-07": "Independence Day (Observed)", + "2045-10-16": "National Heroes Day", + "2045-12-25": "Christmas Day", + "2045-12-26": "Boxing Day", + "2046-01-01": "New Year's Day", + "2046-02-07": "Ash Wednesday", + "2046-03-23": "Good Friday", + "2046-03-26": "Easter Monday", + "2046-05-23": "National Labour Day", + "2046-08-01": "Emancipation Day", + "2046-08-06": "Independence Day", + "2046-10-15": "National Heroes Day", + "2046-12-25": "Christmas Day", + "2046-12-26": "Boxing Day", + "2047-01-01": "New Year's Day", + "2047-02-27": "Ash Wednesday", + "2047-04-12": "Good Friday", + "2047-04-15": "Easter Monday", + "2047-05-23": "National Labour Day", + "2047-08-01": "Emancipation Day", + "2047-08-06": "Independence Day", + "2047-10-21": "National Heroes Day", + "2047-12-25": "Christmas Day", + "2047-12-26": "Boxing Day", + "2048-01-01": "New Year's Day", + "2048-02-19": "Ash Wednesday", + "2048-04-03": "Good Friday", + "2048-04-06": "Easter Monday", + "2048-05-23": "National Labour Day", + "2048-05-25": "National Labour Day (Observed)", + "2048-08-01": "Emancipation Day", + "2048-08-06": "Independence Day", + "2048-10-19": "National Heroes Day", + "2048-12-25": "Christmas Day", + "2048-12-26": "Boxing Day", + "2049-01-01": "New Year's Day", + "2049-03-03": "Ash Wednesday", + "2049-04-16": "Good Friday", + "2049-04-19": "Easter Monday", + "2049-05-23": "National Labour Day", + "2049-05-24": "National Labour Day (Observed)", + "2049-08-01": "Emancipation Day", + "2049-08-02": "Emancipation Day (Observed)", + "2049-08-06": "Independence Day", + "2049-10-18": "National Heroes Day", + "2049-12-25": "Christmas Day", + "2049-12-26": "Boxing Day", + "2049-12-27": "Boxing Day (Observed)", + "2050-01-01": "New Year's Day", + "2050-02-23": "Ash Wednesday", + "2050-04-08": "Good Friday", + "2050-04-11": "Easter Monday", + "2050-05-23": "National Labour Day", + "2050-08-01": "Emancipation Day", + "2050-08-06": "Independence Day", + "2050-10-17": "National Heroes Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "Boxing Day", + "2050-12-27": "Christmas Day (Observed)" +} diff --git a/snapshots/countries/JP.json b/snapshots/countries/JP.json new file mode 100644 index 000000000..1fe3cc0d4 --- /dev/null +++ b/snapshots/countries/JP.json @@ -0,0 +1,1872 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-02": "Bank Holiday; Substitute Holiday", + "1950-01-03": "Bank Holiday", + "1950-01-15": "Coming of Age Day", + "1950-01-16": "Substitute Holiday", + "1950-03-21": "Vernal Equinox Day", + "1950-04-29": "Emperor's Birthday", + "1950-05-03": "Constitution Day", + "1950-05-04": "National Holiday", + "1950-05-05": "Children's Day", + "1950-09-23": "Autumnal Equinox", + "1950-11-03": "Culture Day", + "1950-11-23": "Labor Thanksgiving Day", + "1950-12-31": "Bank Holiday", + "1951-01-01": "New Year's Day", + "1951-01-02": "Bank Holiday", + "1951-01-03": "Bank Holiday", + "1951-01-15": "Coming of Age Day", + "1951-03-21": "Vernal Equinox Day", + "1951-04-29": "Emperor's Birthday", + "1951-04-30": "Substitute Holiday", + "1951-05-03": "Constitution Day", + "1951-05-04": "National Holiday", + "1951-05-05": "Children's Day", + "1951-09-24": "Autumnal Equinox", + "1951-11-03": "Culture Day", + "1951-11-23": "Labor Thanksgiving Day", + "1951-12-31": "Bank Holiday", + "1952-01-01": "New Year's Day", + "1952-01-02": "Bank Holiday", + "1952-01-03": "Bank Holiday", + "1952-01-15": "Coming of Age Day", + "1952-03-21": "Vernal Equinox Day", + "1952-04-29": "Emperor's Birthday", + "1952-05-03": "Constitution Day", + "1952-05-05": "Children's Day", + "1952-09-23": "Autumnal Equinox", + "1952-11-03": "Culture Day", + "1952-11-23": "Labor Thanksgiving Day", + "1952-11-24": "Substitute Holiday", + "1952-12-31": "Bank Holiday", + "1953-01-01": "New Year's Day", + "1953-01-02": "Bank Holiday", + "1953-01-03": "Bank Holiday", + "1953-01-15": "Coming of Age Day", + "1953-03-21": "Vernal Equinox Day", + "1953-04-29": "Emperor's Birthday", + "1953-05-03": "Constitution Day", + "1953-05-04": "Substitute Holiday", + "1953-05-05": "Children's Day", + "1953-09-23": "Autumnal Equinox", + "1953-11-03": "Culture Day", + "1953-11-23": "Labor Thanksgiving Day", + "1953-12-31": "Bank Holiday", + "1954-01-01": "New Year's Day", + "1954-01-02": "Bank Holiday", + "1954-01-03": "Bank Holiday", + "1954-01-15": "Coming of Age Day", + "1954-03-21": "Vernal Equinox Day", + "1954-03-22": "Substitute Holiday", + "1954-04-29": "Emperor's Birthday", + "1954-05-03": "Constitution Day", + "1954-05-04": "National Holiday", + "1954-05-05": "Children's Day", + "1954-09-23": "Autumnal Equinox", + "1954-11-03": "Culture Day", + "1954-11-23": "Labor Thanksgiving Day", + "1954-12-31": "Bank Holiday", + "1955-01-01": "New Year's Day", + "1955-01-02": "Bank Holiday", + "1955-01-03": "Bank Holiday", + "1955-01-15": "Coming of Age Day", + "1955-03-21": "Vernal Equinox Day", + "1955-04-29": "Emperor's Birthday", + "1955-05-03": "Constitution Day", + "1955-05-04": "National Holiday", + "1955-05-05": "Children's Day", + "1955-09-24": "Autumnal Equinox", + "1955-11-03": "Culture Day", + "1955-11-23": "Labor Thanksgiving Day", + "1955-12-31": "Bank Holiday", + "1956-01-01": "New Year's Day", + "1956-01-02": "Bank Holiday; Substitute Holiday", + "1956-01-03": "Bank Holiday", + "1956-01-15": "Coming of Age Day", + "1956-01-16": "Substitute Holiday", + "1956-03-21": "Vernal Equinox Day", + "1956-04-29": "Emperor's Birthday", + "1956-04-30": "Substitute Holiday", + "1956-05-03": "Constitution Day", + "1956-05-04": "National Holiday", + "1956-05-05": "Children's Day", + "1956-09-23": "Autumnal Equinox", + "1956-09-24": "Substitute Holiday", + "1956-11-03": "Culture Day", + "1956-11-23": "Labor Thanksgiving Day", + "1956-12-31": "Bank Holiday", + "1957-01-01": "New Year's Day", + "1957-01-02": "Bank Holiday", + "1957-01-03": "Bank Holiday", + "1957-01-15": "Coming of Age Day", + "1957-03-21": "Vernal Equinox Day", + "1957-04-29": "Emperor's Birthday", + "1957-05-03": "Constitution Day", + "1957-05-04": "National Holiday", + "1957-05-05": "Children's Day", + "1957-05-06": "Substitute Holiday", + "1957-09-23": "Autumnal Equinox", + "1957-11-03": "Culture Day", + "1957-11-04": "Substitute Holiday", + "1957-11-23": "Labor Thanksgiving Day", + "1957-12-31": "Bank Holiday", + "1958-01-01": "New Year's Day", + "1958-01-02": "Bank Holiday", + "1958-01-03": "Bank Holiday", + "1958-01-15": "Coming of Age Day", + "1958-03-21": "Vernal Equinox Day", + "1958-04-29": "Emperor's Birthday", + "1958-05-03": "Constitution Day", + "1958-05-05": "Children's Day", + "1958-09-23": "Autumnal Equinox", + "1958-11-03": "Culture Day", + "1958-11-23": "Labor Thanksgiving Day", + "1958-11-24": "Substitute Holiday", + "1958-12-31": "Bank Holiday", + "1959-01-01": "New Year's Day", + "1959-01-02": "Bank Holiday", + "1959-01-03": "Bank Holiday", + "1959-01-15": "Coming of Age Day", + "1959-03-21": "Vernal Equinox Day", + "1959-04-10": "The Crown Prince Marriage Ceremony", + "1959-04-29": "Emperor's Birthday", + "1959-05-03": "Constitution Day", + "1959-05-04": "Substitute Holiday", + "1959-05-05": "Children's Day", + "1959-09-24": "Autumnal Equinox", + "1959-11-03": "Culture Day", + "1959-11-23": "Labor Thanksgiving Day", + "1959-12-31": "Bank Holiday", + "1960-01-01": "New Year's Day", + "1960-01-02": "Bank Holiday", + "1960-01-03": "Bank Holiday", + "1960-01-15": "Coming of Age Day", + "1960-03-20": "Vernal Equinox Day", + "1960-03-21": "Substitute Holiday", + "1960-04-29": "Emperor's Birthday", + "1960-05-03": "Constitution Day", + "1960-05-04": "National Holiday", + "1960-05-05": "Children's Day", + "1960-09-23": "Autumnal Equinox", + "1960-11-03": "Culture Day", + "1960-11-23": "Labor Thanksgiving Day", + "1960-12-31": "Bank Holiday", + "1961-01-01": "New Year's Day", + "1961-01-02": "Bank Holiday; Substitute Holiday", + "1961-01-03": "Bank Holiday", + "1961-01-15": "Coming of Age Day", + "1961-01-16": "Substitute Holiday", + "1961-03-21": "Vernal Equinox Day", + "1961-04-29": "Emperor's Birthday", + "1961-05-03": "Constitution Day", + "1961-05-04": "National Holiday", + "1961-05-05": "Children's Day", + "1961-09-23": "Autumnal Equinox", + "1961-11-03": "Culture Day", + "1961-11-23": "Labor Thanksgiving Day", + "1961-12-31": "Bank Holiday", + "1962-01-01": "New Year's Day", + "1962-01-02": "Bank Holiday", + "1962-01-03": "Bank Holiday", + "1962-01-15": "Coming of Age Day", + "1962-03-21": "Vernal Equinox Day", + "1962-04-29": "Emperor's Birthday", + "1962-04-30": "Substitute Holiday", + "1962-05-03": "Constitution Day", + "1962-05-04": "National Holiday", + "1962-05-05": "Children's Day", + "1962-09-23": "Autumnal Equinox", + "1962-09-24": "Substitute Holiday", + "1962-11-03": "Culture Day", + "1962-11-23": "Labor Thanksgiving Day", + "1962-12-31": "Bank Holiday", + "1963-01-01": "New Year's Day", + "1963-01-02": "Bank Holiday", + "1963-01-03": "Bank Holiday", + "1963-01-15": "Coming of Age Day", + "1963-03-21": "Vernal Equinox Day", + "1963-04-29": "Emperor's Birthday", + "1963-05-03": "Constitution Day", + "1963-05-04": "National Holiday", + "1963-05-05": "Children's Day", + "1963-05-06": "Substitute Holiday", + "1963-09-24": "Autumnal Equinox", + "1963-11-03": "Culture Day", + "1963-11-04": "Substitute Holiday", + "1963-11-23": "Labor Thanksgiving Day", + "1963-12-31": "Bank Holiday", + "1964-01-01": "New Year's Day", + "1964-01-02": "Bank Holiday", + "1964-01-03": "Bank Holiday", + "1964-01-15": "Coming of Age Day", + "1964-03-20": "Vernal Equinox Day", + "1964-04-29": "Emperor's Birthday", + "1964-05-03": "Constitution Day", + "1964-05-04": "Substitute Holiday", + "1964-05-05": "Children's Day", + "1964-09-23": "Autumnal Equinox", + "1964-11-03": "Culture Day", + "1964-11-23": "Labor Thanksgiving Day", + "1964-12-31": "Bank Holiday", + "1965-01-01": "New Year's Day", + "1965-01-02": "Bank Holiday", + "1965-01-03": "Bank Holiday", + "1965-01-15": "Coming of Age Day", + "1965-03-21": "Vernal Equinox Day", + "1965-03-22": "Substitute Holiday", + "1965-04-29": "Emperor's Birthday", + "1965-05-03": "Constitution Day", + "1965-05-04": "National Holiday", + "1965-05-05": "Children's Day", + "1965-09-23": "Autumnal Equinox", + "1965-11-03": "Culture Day", + "1965-11-23": "Labor Thanksgiving Day", + "1965-12-31": "Bank Holiday", + "1966-01-01": "New Year's Day", + "1966-01-02": "Bank Holiday", + "1966-01-03": "Bank Holiday", + "1966-01-15": "Coming of Age Day", + "1966-03-21": "Vernal Equinox Day", + "1966-04-29": "Emperor's Birthday", + "1966-05-03": "Constitution Day", + "1966-05-04": "National Holiday", + "1966-05-05": "Children's Day", + "1966-09-15": "Respect for the Aged Day", + "1966-09-23": "Autumnal Equinox", + "1966-10-10": "Physical Education Day", + "1966-11-03": "Culture Day", + "1966-11-23": "Labor Thanksgiving Day", + "1966-12-31": "Bank Holiday", + "1967-01-01": "New Year's Day", + "1967-01-02": "Bank Holiday; Substitute Holiday", + "1967-01-03": "Bank Holiday", + "1967-01-15": "Coming of Age Day", + "1967-01-16": "Substitute Holiday", + "1967-02-11": "Foundation Day", + "1967-03-21": "Vernal Equinox Day", + "1967-04-29": "Emperor's Birthday", + "1967-05-03": "Constitution Day", + "1967-05-04": "National Holiday", + "1967-05-05": "Children's Day", + "1967-09-15": "Respect for the Aged Day", + "1967-09-24": "Autumnal Equinox", + "1967-09-25": "Substitute Holiday", + "1967-10-10": "Physical Education Day", + "1967-11-03": "Culture Day", + "1967-11-23": "Labor Thanksgiving Day", + "1967-12-31": "Bank Holiday", + "1968-01-01": "New Year's Day", + "1968-01-02": "Bank Holiday", + "1968-01-03": "Bank Holiday", + "1968-01-15": "Coming of Age Day", + "1968-02-11": "Foundation Day", + "1968-02-12": "Substitute Holiday", + "1968-03-20": "Vernal Equinox Day", + "1968-04-29": "Emperor's Birthday", + "1968-05-03": "Constitution Day", + "1968-05-04": "National Holiday", + "1968-05-05": "Children's Day", + "1968-05-06": "Substitute Holiday", + "1968-09-15": "Respect for the Aged Day", + "1968-09-16": "Substitute Holiday", + "1968-09-23": "Autumnal Equinox", + "1968-10-10": "Physical Education Day", + "1968-11-03": "Culture Day", + "1968-11-04": "Substitute Holiday", + "1968-11-23": "Labor Thanksgiving Day", + "1968-12-31": "Bank Holiday", + "1969-01-01": "New Year's Day", + "1969-01-02": "Bank Holiday", + "1969-01-03": "Bank Holiday", + "1969-01-15": "Coming of Age Day", + "1969-02-11": "Foundation Day", + "1969-03-21": "Vernal Equinox Day", + "1969-04-29": "Emperor's Birthday", + "1969-05-03": "Constitution Day", + "1969-05-05": "Children's Day", + "1969-09-15": "Respect for the Aged Day", + "1969-09-23": "Autumnal Equinox", + "1969-10-10": "Physical Education Day", + "1969-11-03": "Culture Day", + "1969-11-23": "Labor Thanksgiving Day", + "1969-11-24": "Substitute Holiday", + "1969-12-31": "Bank Holiday", + "1970-01-01": "New Year's Day", + "1970-01-02": "Bank Holiday", + "1970-01-03": "Bank Holiday", + "1970-01-15": "Coming of Age Day", + "1970-02-11": "Foundation Day", + "1970-03-21": "Vernal Equinox Day", + "1970-04-29": "Emperor's Birthday", + "1970-05-03": "Constitution Day", + "1970-05-04": "Substitute Holiday", + "1970-05-05": "Children's Day", + "1970-09-15": "Respect for the Aged Day", + "1970-09-23": "Autumnal Equinox", + "1970-10-10": "Physical Education Day", + "1970-11-03": "Culture Day", + "1970-11-23": "Labor Thanksgiving Day", + "1970-12-31": "Bank Holiday", + "1971-01-01": "New Year's Day", + "1971-01-02": "Bank Holiday", + "1971-01-03": "Bank Holiday", + "1971-01-15": "Coming of Age Day", + "1971-02-11": "Foundation Day", + "1971-03-21": "Vernal Equinox Day", + "1971-03-22": "Substitute Holiday", + "1971-04-29": "Emperor's Birthday", + "1971-05-03": "Constitution Day", + "1971-05-04": "National Holiday", + "1971-05-05": "Children's Day", + "1971-09-15": "Respect for the Aged Day", + "1971-09-24": "Autumnal Equinox", + "1971-10-10": "Physical Education Day", + "1971-10-11": "Substitute Holiday", + "1971-11-03": "Culture Day", + "1971-11-23": "Labor Thanksgiving Day", + "1971-12-31": "Bank Holiday", + "1972-01-01": "New Year's Day", + "1972-01-02": "Bank Holiday", + "1972-01-03": "Bank Holiday", + "1972-01-15": "Coming of Age Day", + "1972-02-11": "Foundation Day", + "1972-03-20": "Vernal Equinox Day", + "1972-04-29": "Emperor's Birthday", + "1972-05-03": "Constitution Day", + "1972-05-04": "National Holiday", + "1972-05-05": "Children's Day", + "1972-09-15": "Respect for the Aged Day", + "1972-09-23": "Autumnal Equinox", + "1972-10-10": "Physical Education Day", + "1972-11-03": "Culture Day", + "1972-11-23": "Labor Thanksgiving Day", + "1972-12-31": "Bank Holiday", + "1973-01-01": "New Year's Day", + "1973-01-02": "Bank Holiday", + "1973-01-03": "Bank Holiday", + "1973-01-15": "Coming of Age Day", + "1973-02-11": "Foundation Day", + "1973-02-12": "Substitute Holiday", + "1973-03-21": "Vernal Equinox Day", + "1973-04-29": "Emperor's Birthday", + "1973-04-30": "Substitute Holiday", + "1973-05-03": "Constitution Day", + "1973-05-04": "National Holiday", + "1973-05-05": "Children's Day", + "1973-09-15": "Respect for the Aged Day", + "1973-09-23": "Autumnal Equinox", + "1973-09-24": "Substitute Holiday", + "1973-10-10": "Physical Education Day", + "1973-11-03": "Culture Day", + "1973-11-23": "Labor Thanksgiving Day", + "1973-12-31": "Bank Holiday", + "1974-01-01": "New Year's Day", + "1974-01-02": "Bank Holiday", + "1974-01-03": "Bank Holiday", + "1974-01-15": "Coming of Age Day", + "1974-02-11": "Foundation Day", + "1974-03-21": "Vernal Equinox Day", + "1974-04-29": "Emperor's Birthday", + "1974-05-03": "Constitution Day", + "1974-05-04": "National Holiday", + "1974-05-05": "Children's Day", + "1974-05-06": "Substitute Holiday", + "1974-09-15": "Respect for the Aged Day", + "1974-09-16": "Substitute Holiday", + "1974-09-23": "Autumnal Equinox", + "1974-10-10": "Physical Education Day", + "1974-11-03": "Culture Day", + "1974-11-04": "Substitute Holiday", + "1974-11-23": "Labor Thanksgiving Day", + "1974-12-31": "Bank Holiday", + "1975-01-01": "New Year's Day", + "1975-01-02": "Bank Holiday", + "1975-01-03": "Bank Holiday", + "1975-01-15": "Coming of Age Day", + "1975-02-11": "Foundation Day", + "1975-03-21": "Vernal Equinox Day", + "1975-04-29": "Emperor's Birthday", + "1975-05-03": "Constitution Day", + "1975-05-05": "Children's Day", + "1975-09-15": "Respect for the Aged Day", + "1975-09-24": "Autumnal Equinox", + "1975-10-10": "Physical Education Day", + "1975-11-03": "Culture Day", + "1975-11-23": "Labor Thanksgiving Day", + "1975-11-24": "Substitute Holiday", + "1975-12-31": "Bank Holiday", + "1976-01-01": "New Year's Day", + "1976-01-02": "Bank Holiday", + "1976-01-03": "Bank Holiday", + "1976-01-15": "Coming of Age Day", + "1976-02-11": "Foundation Day", + "1976-03-20": "Vernal Equinox Day", + "1976-04-29": "Emperor's Birthday", + "1976-05-03": "Constitution Day", + "1976-05-04": "National Holiday", + "1976-05-05": "Children's Day", + "1976-09-15": "Respect for the Aged Day", + "1976-09-23": "Autumnal Equinox", + "1976-10-10": "Physical Education Day", + "1976-10-11": "Substitute Holiday", + "1976-11-03": "Culture Day", + "1976-11-23": "Labor Thanksgiving Day", + "1976-12-31": "Bank Holiday", + "1977-01-01": "New Year's Day", + "1977-01-02": "Bank Holiday", + "1977-01-03": "Bank Holiday", + "1977-01-15": "Coming of Age Day", + "1977-02-11": "Foundation Day", + "1977-03-21": "Vernal Equinox Day", + "1977-04-29": "Emperor's Birthday", + "1977-05-03": "Constitution Day", + "1977-05-04": "National Holiday", + "1977-05-05": "Children's Day", + "1977-09-15": "Respect for the Aged Day", + "1977-09-23": "Autumnal Equinox", + "1977-10-10": "Physical Education Day", + "1977-11-03": "Culture Day", + "1977-11-23": "Labor Thanksgiving Day", + "1977-12-31": "Bank Holiday", + "1978-01-01": "New Year's Day", + "1978-01-02": "Bank Holiday; Substitute Holiday", + "1978-01-03": "Bank Holiday", + "1978-01-15": "Coming of Age Day", + "1978-01-16": "Substitute Holiday", + "1978-02-11": "Foundation Day", + "1978-03-21": "Vernal Equinox Day", + "1978-04-29": "Emperor's Birthday", + "1978-05-03": "Constitution Day", + "1978-05-04": "National Holiday", + "1978-05-05": "Children's Day", + "1978-09-15": "Respect for the Aged Day", + "1978-09-23": "Autumnal Equinox", + "1978-10-10": "Physical Education Day", + "1978-11-03": "Culture Day", + "1978-11-23": "Labor Thanksgiving Day", + "1978-12-31": "Bank Holiday", + "1979-01-01": "New Year's Day", + "1979-01-02": "Bank Holiday", + "1979-01-03": "Bank Holiday", + "1979-01-15": "Coming of Age Day", + "1979-02-11": "Foundation Day", + "1979-02-12": "Substitute Holiday", + "1979-03-21": "Vernal Equinox Day", + "1979-04-29": "Emperor's Birthday", + "1979-04-30": "Substitute Holiday", + "1979-05-03": "Constitution Day", + "1979-05-04": "National Holiday", + "1979-05-05": "Children's Day", + "1979-09-15": "Respect for the Aged Day", + "1979-09-24": "Autumnal Equinox", + "1979-10-10": "Physical Education Day", + "1979-11-03": "Culture Day", + "1979-11-23": "Labor Thanksgiving Day", + "1979-12-31": "Bank Holiday", + "1980-01-01": "New Year's Day", + "1980-01-02": "Bank Holiday", + "1980-01-03": "Bank Holiday", + "1980-01-15": "Coming of Age Day", + "1980-02-11": "Foundation Day", + "1980-03-20": "Vernal Equinox Day", + "1980-04-29": "Emperor's Birthday", + "1980-05-03": "Constitution Day", + "1980-05-05": "Children's Day", + "1980-09-15": "Respect for the Aged Day", + "1980-09-23": "Autumnal Equinox", + "1980-10-10": "Physical Education Day", + "1980-11-03": "Culture Day", + "1980-11-23": "Labor Thanksgiving Day", + "1980-11-24": "Substitute Holiday", + "1980-12-31": "Bank Holiday", + "1981-01-01": "New Year's Day", + "1981-01-02": "Bank Holiday", + "1981-01-03": "Bank Holiday", + "1981-01-15": "Coming of Age Day", + "1981-02-11": "Foundation Day", + "1981-03-21": "Vernal Equinox Day", + "1981-04-29": "Emperor's Birthday", + "1981-05-03": "Constitution Day", + "1981-05-04": "Substitute Holiday", + "1981-05-05": "Children's Day", + "1981-09-15": "Respect for the Aged Day", + "1981-09-23": "Autumnal Equinox", + "1981-10-10": "Physical Education Day", + "1981-11-03": "Culture Day", + "1981-11-23": "Labor Thanksgiving Day", + "1981-12-31": "Bank Holiday", + "1982-01-01": "New Year's Day", + "1982-01-02": "Bank Holiday", + "1982-01-03": "Bank Holiday", + "1982-01-15": "Coming of Age Day", + "1982-02-11": "Foundation Day", + "1982-03-21": "Vernal Equinox Day", + "1982-03-22": "Substitute Holiday", + "1982-04-29": "Emperor's Birthday", + "1982-05-03": "Constitution Day", + "1982-05-04": "National Holiday", + "1982-05-05": "Children's Day", + "1982-09-15": "Respect for the Aged Day", + "1982-09-23": "Autumnal Equinox", + "1982-10-10": "Physical Education Day", + "1982-10-11": "Substitute Holiday", + "1982-11-03": "Culture Day", + "1982-11-23": "Labor Thanksgiving Day", + "1982-12-31": "Bank Holiday", + "1983-01-01": "New Year's Day", + "1983-01-02": "Bank Holiday", + "1983-01-03": "Bank Holiday", + "1983-01-15": "Coming of Age Day", + "1983-02-11": "Foundation Day", + "1983-03-21": "Vernal Equinox Day", + "1983-04-29": "Emperor's Birthday", + "1983-05-03": "Constitution Day", + "1983-05-04": "National Holiday", + "1983-05-05": "Children's Day", + "1983-09-15": "Respect for the Aged Day", + "1983-09-23": "Autumnal Equinox", + "1983-10-10": "Physical Education Day", + "1983-11-03": "Culture Day", + "1983-11-23": "Labor Thanksgiving Day", + "1983-12-31": "Bank Holiday", + "1984-01-01": "New Year's Day", + "1984-01-02": "Bank Holiday; Substitute Holiday", + "1984-01-03": "Bank Holiday", + "1984-01-15": "Coming of Age Day", + "1984-01-16": "Substitute Holiday", + "1984-02-11": "Foundation Day", + "1984-03-20": "Vernal Equinox Day", + "1984-04-29": "Emperor's Birthday", + "1984-04-30": "Substitute Holiday", + "1984-05-03": "Constitution Day", + "1984-05-04": "National Holiday", + "1984-05-05": "Children's Day", + "1984-09-15": "Respect for the Aged Day", + "1984-09-23": "Autumnal Equinox", + "1984-09-24": "Substitute Holiday", + "1984-10-10": "Physical Education Day", + "1984-11-03": "Culture Day", + "1984-11-23": "Labor Thanksgiving Day", + "1984-12-31": "Bank Holiday", + "1985-01-01": "New Year's Day", + "1985-01-02": "Bank Holiday", + "1985-01-03": "Bank Holiday", + "1985-01-15": "Coming of Age Day", + "1985-02-11": "Foundation Day", + "1985-03-21": "Vernal Equinox Day", + "1985-04-29": "Emperor's Birthday", + "1985-05-03": "Constitution Day", + "1985-05-04": "National Holiday", + "1985-05-05": "Children's Day", + "1985-05-06": "Substitute Holiday", + "1985-09-15": "Respect for the Aged Day", + "1985-09-16": "Substitute Holiday", + "1985-09-23": "Autumnal Equinox", + "1985-10-10": "Physical Education Day", + "1985-11-03": "Culture Day", + "1985-11-04": "Substitute Holiday", + "1985-11-23": "Labor Thanksgiving Day", + "1985-12-31": "Bank Holiday", + "1986-01-01": "New Year's Day", + "1986-01-02": "Bank Holiday", + "1986-01-03": "Bank Holiday", + "1986-01-15": "Coming of Age Day", + "1986-02-11": "Foundation Day", + "1986-03-21": "Vernal Equinox Day", + "1986-04-29": "Emperor's Birthday", + "1986-05-03": "Constitution Day", + "1986-05-05": "Children's Day", + "1986-09-15": "Respect for the Aged Day", + "1986-09-23": "Autumnal Equinox", + "1986-10-10": "Physical Education Day", + "1986-11-03": "Culture Day", + "1986-11-23": "Labor Thanksgiving Day", + "1986-11-24": "Substitute Holiday", + "1986-12-31": "Bank Holiday", + "1987-01-01": "New Year's Day", + "1987-01-02": "Bank Holiday", + "1987-01-03": "Bank Holiday", + "1987-01-15": "Coming of Age Day", + "1987-02-11": "Foundation Day", + "1987-03-21": "Vernal Equinox Day", + "1987-04-29": "Emperor's Birthday", + "1987-05-03": "Constitution Day", + "1987-05-04": "Substitute Holiday", + "1987-05-05": "Children's Day", + "1987-09-15": "Respect for the Aged Day", + "1987-09-23": "Autumnal Equinox", + "1987-10-10": "Physical Education Day", + "1987-11-03": "Culture Day", + "1987-11-23": "Labor Thanksgiving Day", + "1987-12-31": "Bank Holiday", + "1988-01-01": "New Year's Day", + "1988-01-02": "Bank Holiday", + "1988-01-03": "Bank Holiday", + "1988-01-15": "Coming of Age Day", + "1988-02-11": "Foundation Day", + "1988-03-20": "Vernal Equinox Day", + "1988-03-21": "Substitute Holiday", + "1988-04-29": "Emperor's Birthday", + "1988-05-03": "Constitution Day", + "1988-05-04": "National Holiday", + "1988-05-05": "Children's Day", + "1988-09-15": "Respect for the Aged Day", + "1988-09-23": "Autumnal Equinox", + "1988-10-10": "Physical Education Day", + "1988-11-03": "Culture Day", + "1988-11-23": "Labor Thanksgiving Day", + "1988-12-31": "Bank Holiday", + "1989-01-01": "New Year's Day", + "1989-01-02": "Bank Holiday; Substitute Holiday", + "1989-01-03": "Bank Holiday", + "1989-01-15": "Coming of Age Day", + "1989-01-16": "Substitute Holiday", + "1989-02-11": "Foundation Day", + "1989-02-24": "Emperor Sh\u014dwa Funeral Ceremony", + "1989-03-21": "Vernal Equinox Day", + "1989-04-29": "Greenery Day", + "1989-05-03": "Constitution Day", + "1989-05-04": "National Holiday", + "1989-05-05": "Children's Day", + "1989-09-15": "Respect for the Aged Day", + "1989-09-23": "Autumnal Equinox", + "1989-10-10": "Physical Education Day", + "1989-11-03": "Culture Day", + "1989-11-23": "Labor Thanksgiving Day", + "1989-12-23": "Emperor's Birthday", + "1989-12-31": "Bank Holiday", + "1990-01-01": "New Year's Day", + "1990-01-02": "Bank Holiday", + "1990-01-03": "Bank Holiday", + "1990-01-15": "Coming of Age Day", + "1990-02-11": "Foundation Day", + "1990-02-12": "Substitute Holiday", + "1990-03-21": "Vernal Equinox Day", + "1990-04-29": "Greenery Day", + "1990-04-30": "Substitute Holiday", + "1990-05-03": "Constitution Day", + "1990-05-04": "National Holiday", + "1990-05-05": "Children's Day", + "1990-09-15": "Respect for the Aged Day", + "1990-09-23": "Autumnal Equinox", + "1990-09-24": "Substitute Holiday", + "1990-10-10": "Physical Education Day", + "1990-11-03": "Culture Day", + "1990-11-12": "Enthronement Ceremony", + "1990-11-23": "Labor Thanksgiving Day", + "1990-12-23": "Emperor's Birthday", + "1990-12-24": "Substitute Holiday", + "1990-12-31": "Bank Holiday", + "1991-01-01": "New Year's Day", + "1991-01-02": "Bank Holiday", + "1991-01-03": "Bank Holiday", + "1991-01-15": "Coming of Age Day", + "1991-02-11": "Foundation Day", + "1991-03-21": "Vernal Equinox Day", + "1991-04-29": "Greenery Day", + "1991-05-03": "Constitution Day", + "1991-05-04": "National Holiday", + "1991-05-05": "Children's Day", + "1991-05-06": "Substitute Holiday", + "1991-09-15": "Respect for the Aged Day", + "1991-09-16": "Substitute Holiday", + "1991-09-23": "Autumnal Equinox", + "1991-10-10": "Physical Education Day", + "1991-11-03": "Culture Day", + "1991-11-04": "Substitute Holiday", + "1991-11-23": "Labor Thanksgiving Day", + "1991-12-23": "Emperor's Birthday", + "1991-12-31": "Bank Holiday", + "1992-01-01": "New Year's Day", + "1992-01-02": "Bank Holiday", + "1992-01-03": "Bank Holiday", + "1992-01-15": "Coming of Age Day", + "1992-02-11": "Foundation Day", + "1992-03-20": "Vernal Equinox Day", + "1992-04-29": "Greenery Day", + "1992-05-03": "Constitution Day", + "1992-05-04": "Substitute Holiday", + "1992-05-05": "Children's Day", + "1992-09-15": "Respect for the Aged Day", + "1992-09-23": "Autumnal Equinox", + "1992-10-10": "Physical Education Day", + "1992-11-03": "Culture Day", + "1992-11-23": "Labor Thanksgiving Day", + "1992-12-23": "Emperor's Birthday", + "1992-12-31": "Bank Holiday", + "1993-01-01": "New Year's Day", + "1993-01-02": "Bank Holiday", + "1993-01-03": "Bank Holiday", + "1993-01-15": "Coming of Age Day", + "1993-02-11": "Foundation Day", + "1993-03-20": "Vernal Equinox Day", + "1993-04-29": "Greenery Day", + "1993-05-03": "Constitution Day", + "1993-05-04": "National Holiday", + "1993-05-05": "Children's Day", + "1993-06-09": "The Crown Prince Marriage Ceremony", + "1993-09-15": "Respect for the Aged Day", + "1993-09-23": "Autumnal Equinox", + "1993-10-10": "Physical Education Day", + "1993-10-11": "Substitute Holiday", + "1993-11-03": "Culture Day", + "1993-11-23": "Labor Thanksgiving Day", + "1993-12-23": "Emperor's Birthday", + "1993-12-31": "Bank Holiday", + "1994-01-01": "New Year's Day", + "1994-01-02": "Bank Holiday", + "1994-01-03": "Bank Holiday", + "1994-01-15": "Coming of Age Day", + "1994-02-11": "Foundation Day", + "1994-03-21": "Vernal Equinox Day", + "1994-04-29": "Greenery Day", + "1994-05-03": "Constitution Day", + "1994-05-04": "National Holiday", + "1994-05-05": "Children's Day", + "1994-09-15": "Respect for the Aged Day", + "1994-09-23": "Autumnal Equinox", + "1994-10-10": "Physical Education Day", + "1994-11-03": "Culture Day", + "1994-11-23": "Labor Thanksgiving Day", + "1994-12-23": "Emperor's Birthday", + "1994-12-31": "Bank Holiday", + "1995-01-01": "New Year's Day", + "1995-01-02": "Bank Holiday; Substitute Holiday", + "1995-01-03": "Bank Holiday", + "1995-01-15": "Coming of Age Day", + "1995-01-16": "Substitute Holiday", + "1995-02-11": "Foundation Day", + "1995-03-21": "Vernal Equinox Day", + "1995-04-29": "Greenery Day", + "1995-05-03": "Constitution Day", + "1995-05-04": "National Holiday", + "1995-05-05": "Children's Day", + "1995-09-15": "Respect for the Aged Day", + "1995-09-23": "Autumnal Equinox", + "1995-10-10": "Physical Education Day", + "1995-11-03": "Culture Day", + "1995-11-23": "Labor Thanksgiving Day", + "1995-12-23": "Emperor's Birthday", + "1995-12-31": "Bank Holiday", + "1996-01-01": "New Year's Day", + "1996-01-02": "Bank Holiday", + "1996-01-03": "Bank Holiday", + "1996-01-15": "Coming of Age Day", + "1996-02-11": "Foundation Day", + "1996-02-12": "Substitute Holiday", + "1996-03-20": "Vernal Equinox Day", + "1996-04-29": "Greenery Day", + "1996-05-03": "Constitution Day", + "1996-05-04": "National Holiday", + "1996-05-05": "Children's Day", + "1996-05-06": "Substitute Holiday", + "1996-07-20": "Marine Day", + "1996-09-15": "Respect for the Aged Day", + "1996-09-16": "Substitute Holiday", + "1996-09-23": "Autumnal Equinox", + "1996-10-10": "Physical Education Day", + "1996-11-03": "Culture Day", + "1996-11-04": "Substitute Holiday", + "1996-11-23": "Labor Thanksgiving Day", + "1996-12-23": "Emperor's Birthday", + "1996-12-31": "Bank Holiday", + "1997-01-01": "New Year's Day", + "1997-01-02": "Bank Holiday", + "1997-01-03": "Bank Holiday", + "1997-01-15": "Coming of Age Day", + "1997-02-11": "Foundation Day", + "1997-03-20": "Vernal Equinox Day", + "1997-04-29": "Greenery Day", + "1997-05-03": "Constitution Day", + "1997-05-05": "Children's Day", + "1997-07-20": "Marine Day", + "1997-07-21": "Substitute Holiday", + "1997-09-15": "Respect for the Aged Day", + "1997-09-23": "Autumnal Equinox", + "1997-10-10": "Physical Education Day", + "1997-11-03": "Culture Day", + "1997-11-23": "Labor Thanksgiving Day", + "1997-11-24": "Substitute Holiday", + "1997-12-23": "Emperor's Birthday", + "1997-12-31": "Bank Holiday", + "1998-01-01": "New Year's Day", + "1998-01-02": "Bank Holiday", + "1998-01-03": "Bank Holiday", + "1998-01-15": "Coming of Age Day", + "1998-02-11": "Foundation Day", + "1998-03-21": "Vernal Equinox Day", + "1998-04-29": "Greenery Day", + "1998-05-03": "Constitution Day", + "1998-05-04": "Substitute Holiday", + "1998-05-05": "Children's Day", + "1998-07-20": "Marine Day", + "1998-09-15": "Respect for the Aged Day", + "1998-09-23": "Autumnal Equinox", + "1998-10-10": "Physical Education Day", + "1998-11-03": "Culture Day", + "1998-11-23": "Labor Thanksgiving Day", + "1998-12-23": "Emperor's Birthday", + "1998-12-31": "Bank Holiday", + "1999-01-01": "New Year's Day", + "1999-01-02": "Bank Holiday", + "1999-01-03": "Bank Holiday", + "1999-01-15": "Coming of Age Day", + "1999-02-11": "Foundation Day", + "1999-03-21": "Vernal Equinox Day", + "1999-03-22": "Substitute Holiday", + "1999-04-29": "Greenery Day", + "1999-05-03": "Constitution Day", + "1999-05-04": "National Holiday", + "1999-05-05": "Children's Day", + "1999-07-20": "Marine Day", + "1999-09-15": "Respect for the Aged Day", + "1999-09-23": "Autumnal Equinox", + "1999-10-10": "Physical Education Day", + "1999-10-11": "Substitute Holiday", + "1999-11-03": "Culture Day", + "1999-11-23": "Labor Thanksgiving Day", + "1999-12-23": "Emperor's Birthday", + "1999-12-31": "Bank Holiday", + "2000-01-01": "New Year's Day", + "2000-01-02": "Bank Holiday", + "2000-01-03": "Bank Holiday", + "2000-01-10": "Coming of Age Day", + "2000-02-11": "Foundation Day", + "2000-03-20": "Vernal Equinox Day", + "2000-04-29": "Greenery Day", + "2000-05-03": "Constitution Day", + "2000-05-04": "National Holiday", + "2000-05-05": "Children's Day", + "2000-07-20": "Marine Day", + "2000-09-15": "Respect for the Aged Day", + "2000-09-23": "Autumnal Equinox", + "2000-10-09": "Physical Education Day", + "2000-11-03": "Culture Day", + "2000-11-23": "Labor Thanksgiving Day", + "2000-12-23": "Emperor's Birthday", + "2000-12-31": "Bank Holiday", + "2001-01-01": "New Year's Day", + "2001-01-02": "Bank Holiday", + "2001-01-03": "Bank Holiday", + "2001-01-08": "Coming of Age Day", + "2001-02-11": "Foundation Day", + "2001-02-12": "Substitute Holiday", + "2001-03-20": "Vernal Equinox Day", + "2001-04-29": "Greenery Day", + "2001-04-30": "Substitute Holiday", + "2001-05-03": "Constitution Day", + "2001-05-04": "National Holiday", + "2001-05-05": "Children's Day", + "2001-07-20": "Marine Day", + "2001-09-15": "Respect for the Aged Day", + "2001-09-23": "Autumnal Equinox", + "2001-09-24": "Substitute Holiday", + "2001-10-08": "Physical Education Day", + "2001-11-03": "Culture Day", + "2001-11-23": "Labor Thanksgiving Day", + "2001-12-23": "Emperor's Birthday", + "2001-12-24": "Substitute Holiday", + "2001-12-31": "Bank Holiday", + "2002-01-01": "New Year's Day", + "2002-01-02": "Bank Holiday", + "2002-01-03": "Bank Holiday", + "2002-01-14": "Coming of Age Day", + "2002-02-11": "Foundation Day", + "2002-03-21": "Vernal Equinox Day", + "2002-04-29": "Greenery Day", + "2002-05-03": "Constitution Day", + "2002-05-04": "National Holiday", + "2002-05-05": "Children's Day", + "2002-05-06": "Substitute Holiday", + "2002-07-20": "Marine Day", + "2002-09-15": "Respect for the Aged Day", + "2002-09-16": "Substitute Holiday", + "2002-09-23": "Autumnal Equinox", + "2002-10-14": "Physical Education Day", + "2002-11-03": "Culture Day", + "2002-11-04": "Substitute Holiday", + "2002-11-23": "Labor Thanksgiving Day", + "2002-12-23": "Emperor's Birthday", + "2002-12-31": "Bank Holiday", + "2003-01-01": "New Year's Day", + "2003-01-02": "Bank Holiday", + "2003-01-03": "Bank Holiday", + "2003-01-13": "Coming of Age Day", + "2003-02-11": "Foundation Day", + "2003-03-21": "Vernal Equinox Day", + "2003-04-29": "Greenery Day", + "2003-05-03": "Constitution Day", + "2003-05-05": "Children's Day", + "2003-07-21": "Marine Day", + "2003-09-15": "Respect for the Aged Day", + "2003-09-23": "Autumnal Equinox", + "2003-10-13": "Physical Education Day", + "2003-11-03": "Culture Day", + "2003-11-23": "Labor Thanksgiving Day", + "2003-11-24": "Substitute Holiday", + "2003-12-23": "Emperor's Birthday", + "2003-12-31": "Bank Holiday", + "2004-01-01": "New Year's Day", + "2004-01-02": "Bank Holiday", + "2004-01-03": "Bank Holiday", + "2004-01-12": "Coming of Age Day", + "2004-02-11": "Foundation Day", + "2004-03-20": "Vernal Equinox Day", + "2004-04-29": "Greenery Day", + "2004-05-03": "Constitution Day", + "2004-05-04": "National Holiday", + "2004-05-05": "Children's Day", + "2004-07-19": "Marine Day", + "2004-09-20": "Respect for the Aged Day", + "2004-09-23": "Autumnal Equinox", + "2004-10-11": "Physical Education Day", + "2004-11-03": "Culture Day", + "2004-11-23": "Labor Thanksgiving Day", + "2004-12-23": "Emperor's Birthday", + "2004-12-31": "Bank Holiday", + "2005-01-01": "New Year's Day", + "2005-01-02": "Bank Holiday", + "2005-01-03": "Bank Holiday", + "2005-01-10": "Coming of Age Day", + "2005-02-11": "Foundation Day", + "2005-03-20": "Vernal Equinox Day", + "2005-03-21": "Substitute Holiday", + "2005-04-29": "Greenery Day", + "2005-05-03": "Constitution Day", + "2005-05-04": "National Holiday", + "2005-05-05": "Children's Day", + "2005-07-18": "Marine Day", + "2005-09-19": "Respect for the Aged Day", + "2005-09-23": "Autumnal Equinox", + "2005-10-10": "Physical Education Day", + "2005-11-03": "Culture Day", + "2005-11-23": "Labor Thanksgiving Day", + "2005-12-23": "Emperor's Birthday", + "2005-12-31": "Bank Holiday", + "2006-01-01": "New Year's Day", + "2006-01-02": "Bank Holiday; Substitute Holiday", + "2006-01-03": "Bank Holiday", + "2006-01-09": "Coming of Age Day", + "2006-02-11": "Foundation Day", + "2006-03-21": "Vernal Equinox Day", + "2006-04-29": "Greenery Day", + "2006-05-03": "Constitution Day", + "2006-05-04": "National Holiday", + "2006-05-05": "Children's Day", + "2006-07-17": "Marine Day", + "2006-09-18": "Respect for the Aged Day", + "2006-09-23": "Autumnal Equinox", + "2006-10-09": "Physical Education Day", + "2006-11-03": "Culture Day", + "2006-11-23": "Labor Thanksgiving Day", + "2006-12-23": "Emperor's Birthday", + "2006-12-31": "Bank Holiday", + "2007-01-01": "New Year's Day", + "2007-01-02": "Bank Holiday", + "2007-01-03": "Bank Holiday", + "2007-01-08": "Coming of Age Day", + "2007-02-11": "Foundation Day", + "2007-02-12": "Substitute Holiday", + "2007-03-21": "Vernal Equinox Day", + "2007-04-29": "Showa Day", + "2007-04-30": "Substitute Holiday", + "2007-05-03": "Constitution Day", + "2007-05-04": "Greenery Day", + "2007-05-05": "Children's Day", + "2007-07-16": "Marine Day", + "2007-09-17": "Respect for the Aged Day", + "2007-09-23": "Autumnal Equinox", + "2007-09-24": "Substitute Holiday", + "2007-10-08": "Physical Education Day", + "2007-11-03": "Culture Day", + "2007-11-23": "Labor Thanksgiving Day", + "2007-12-23": "Emperor's Birthday", + "2007-12-24": "Substitute Holiday", + "2007-12-31": "Bank Holiday", + "2008-01-01": "New Year's Day", + "2008-01-02": "Bank Holiday", + "2008-01-03": "Bank Holiday", + "2008-01-14": "Coming of Age Day", + "2008-02-11": "Foundation Day", + "2008-03-20": "Vernal Equinox Day", + "2008-04-29": "Showa Day", + "2008-05-03": "Constitution Day", + "2008-05-04": "Greenery Day", + "2008-05-05": "Children's Day", + "2008-05-06": "Substitute Holiday", + "2008-07-21": "Marine Day", + "2008-09-15": "Respect for the Aged Day", + "2008-09-23": "Autumnal Equinox", + "2008-10-13": "Physical Education Day", + "2008-11-03": "Culture Day", + "2008-11-23": "Labor Thanksgiving Day", + "2008-11-24": "Substitute Holiday", + "2008-12-23": "Emperor's Birthday", + "2008-12-31": "Bank Holiday", + "2009-01-01": "New Year's Day", + "2009-01-02": "Bank Holiday", + "2009-01-03": "Bank Holiday", + "2009-01-12": "Coming of Age Day", + "2009-02-11": "Foundation Day", + "2009-03-20": "Vernal Equinox Day", + "2009-04-29": "Showa Day", + "2009-05-03": "Constitution Day", + "2009-05-04": "Greenery Day", + "2009-05-05": "Children's Day", + "2009-05-06": "Substitute Holiday", + "2009-07-20": "Marine Day", + "2009-09-21": "Respect for the Aged Day", + "2009-09-22": "National Holiday", + "2009-09-23": "Autumnal Equinox", + "2009-10-12": "Physical Education Day", + "2009-11-03": "Culture Day", + "2009-11-23": "Labor Thanksgiving Day", + "2009-12-23": "Emperor's Birthday", + "2009-12-31": "Bank Holiday", + "2010-01-01": "New Year's Day", + "2010-01-02": "Bank Holiday", + "2010-01-03": "Bank Holiday", + "2010-01-11": "Coming of Age Day", + "2010-02-11": "Foundation Day", + "2010-03-21": "Vernal Equinox Day", + "2010-03-22": "Substitute Holiday", + "2010-04-29": "Showa Day", + "2010-05-03": "Constitution Day", + "2010-05-04": "Greenery Day", + "2010-05-05": "Children's Day", + "2010-07-19": "Marine Day", + "2010-09-20": "Respect for the Aged Day", + "2010-09-23": "Autumnal Equinox", + "2010-10-11": "Physical Education Day", + "2010-11-03": "Culture Day", + "2010-11-23": "Labor Thanksgiving Day", + "2010-12-23": "Emperor's Birthday", + "2010-12-31": "Bank Holiday", + "2011-01-01": "New Year's Day", + "2011-01-02": "Bank Holiday", + "2011-01-03": "Bank Holiday", + "2011-01-10": "Coming of Age Day", + "2011-02-11": "Foundation Day", + "2011-03-21": "Vernal Equinox Day", + "2011-04-29": "Showa Day", + "2011-05-03": "Constitution Day", + "2011-05-04": "Greenery Day", + "2011-05-05": "Children's Day", + "2011-07-18": "Marine Day", + "2011-09-19": "Respect for the Aged Day", + "2011-09-23": "Autumnal Equinox", + "2011-10-10": "Physical Education Day", + "2011-11-03": "Culture Day", + "2011-11-23": "Labor Thanksgiving Day", + "2011-12-23": "Emperor's Birthday", + "2011-12-31": "Bank Holiday", + "2012-01-01": "New Year's Day", + "2012-01-02": "Bank Holiday; Substitute Holiday", + "2012-01-03": "Bank Holiday", + "2012-01-09": "Coming of Age Day", + "2012-02-11": "Foundation Day", + "2012-03-20": "Vernal Equinox Day", + "2012-04-29": "Showa Day", + "2012-04-30": "Substitute Holiday", + "2012-05-03": "Constitution Day", + "2012-05-04": "Greenery Day", + "2012-05-05": "Children's Day", + "2012-07-16": "Marine Day", + "2012-09-17": "Respect for the Aged Day", + "2012-09-22": "Autumnal Equinox", + "2012-10-08": "Physical Education Day", + "2012-11-03": "Culture Day", + "2012-11-23": "Labor Thanksgiving Day", + "2012-12-23": "Emperor's Birthday", + "2012-12-24": "Substitute Holiday", + "2012-12-31": "Bank Holiday", + "2013-01-01": "New Year's Day", + "2013-01-02": "Bank Holiday", + "2013-01-03": "Bank Holiday", + "2013-01-14": "Coming of Age Day", + "2013-02-11": "Foundation Day", + "2013-03-20": "Vernal Equinox Day", + "2013-04-29": "Showa Day", + "2013-05-03": "Constitution Day", + "2013-05-04": "Greenery Day", + "2013-05-05": "Children's Day", + "2013-05-06": "Substitute Holiday", + "2013-07-15": "Marine Day", + "2013-09-16": "Respect for the Aged Day", + "2013-09-23": "Autumnal Equinox", + "2013-10-14": "Physical Education Day", + "2013-11-03": "Culture Day", + "2013-11-04": "Substitute Holiday", + "2013-11-23": "Labor Thanksgiving Day", + "2013-12-23": "Emperor's Birthday", + "2013-12-31": "Bank Holiday", + "2014-01-01": "New Year's Day", + "2014-01-02": "Bank Holiday", + "2014-01-03": "Bank Holiday", + "2014-01-13": "Coming of Age Day", + "2014-02-11": "Foundation Day", + "2014-03-21": "Vernal Equinox Day", + "2014-04-29": "Showa Day", + "2014-05-03": "Constitution Day", + "2014-05-04": "Greenery Day", + "2014-05-05": "Children's Day", + "2014-05-06": "Substitute Holiday", + "2014-07-21": "Marine Day", + "2014-09-15": "Respect for the Aged Day", + "2014-09-23": "Autumnal Equinox", + "2014-10-13": "Physical Education Day", + "2014-11-03": "Culture Day", + "2014-11-23": "Labor Thanksgiving Day", + "2014-11-24": "Substitute Holiday", + "2014-12-23": "Emperor's Birthday", + "2014-12-31": "Bank Holiday", + "2015-01-01": "New Year's Day", + "2015-01-02": "Bank Holiday", + "2015-01-03": "Bank Holiday", + "2015-01-12": "Coming of Age Day", + "2015-02-11": "Foundation Day", + "2015-03-21": "Vernal Equinox Day", + "2015-04-29": "Showa Day", + "2015-05-03": "Constitution Day", + "2015-05-04": "Greenery Day", + "2015-05-05": "Children's Day", + "2015-05-06": "Substitute Holiday", + "2015-07-20": "Marine Day", + "2015-09-21": "Respect for the Aged Day", + "2015-09-22": "National Holiday", + "2015-09-23": "Autumnal Equinox", + "2015-10-12": "Physical Education Day", + "2015-11-03": "Culture Day", + "2015-11-23": "Labor Thanksgiving Day", + "2015-12-23": "Emperor's Birthday", + "2015-12-31": "Bank Holiday", + "2016-01-01": "New Year's Day", + "2016-01-02": "Bank Holiday", + "2016-01-03": "Bank Holiday", + "2016-01-11": "Coming of Age Day", + "2016-02-11": "Foundation Day", + "2016-03-20": "Vernal Equinox Day", + "2016-03-21": "Substitute Holiday", + "2016-04-29": "Showa Day", + "2016-05-03": "Constitution Day", + "2016-05-04": "Greenery Day", + "2016-05-05": "Children's Day", + "2016-07-18": "Marine Day", + "2016-08-11": "Mountain Day", + "2016-09-19": "Respect for the Aged Day", + "2016-09-22": "Autumnal Equinox", + "2016-10-10": "Physical Education Day", + "2016-11-03": "Culture Day", + "2016-11-23": "Labor Thanksgiving Day", + "2016-12-23": "Emperor's Birthday", + "2016-12-31": "Bank Holiday", + "2017-01-01": "New Year's Day", + "2017-01-02": "Bank Holiday; Substitute Holiday", + "2017-01-03": "Bank Holiday", + "2017-01-09": "Coming of Age Day", + "2017-02-11": "Foundation Day", + "2017-03-20": "Vernal Equinox Day", + "2017-04-29": "Showa Day", + "2017-05-03": "Constitution Day", + "2017-05-04": "Greenery Day", + "2017-05-05": "Children's Day", + "2017-07-17": "Marine Day", + "2017-08-11": "Mountain Day", + "2017-09-18": "Respect for the Aged Day", + "2017-09-23": "Autumnal Equinox", + "2017-10-09": "Physical Education Day", + "2017-11-03": "Culture Day", + "2017-11-23": "Labor Thanksgiving Day", + "2017-12-23": "Emperor's Birthday", + "2017-12-31": "Bank Holiday", + "2018-01-01": "New Year's Day", + "2018-01-02": "Bank Holiday", + "2018-01-03": "Bank Holiday", + "2018-01-08": "Coming of Age Day", + "2018-02-11": "Foundation Day", + "2018-02-12": "Substitute Holiday", + "2018-03-21": "Vernal Equinox Day", + "2018-04-29": "Showa Day", + "2018-04-30": "Substitute Holiday", + "2018-05-03": "Constitution Day", + "2018-05-04": "Greenery Day", + "2018-05-05": "Children's Day", + "2018-07-16": "Marine Day", + "2018-08-11": "Mountain Day", + "2018-09-17": "Respect for the Aged Day", + "2018-09-23": "Autumnal Equinox", + "2018-09-24": "Substitute Holiday", + "2018-10-08": "Physical Education Day", + "2018-11-03": "Culture Day", + "2018-11-23": "Labor Thanksgiving Day", + "2018-12-23": "Emperor's Birthday", + "2018-12-24": "Substitute Holiday", + "2018-12-31": "Bank Holiday", + "2019-01-01": "New Year's Day", + "2019-01-02": "Bank Holiday", + "2019-01-03": "Bank Holiday", + "2019-01-14": "Coming of Age Day", + "2019-02-11": "Foundation Day", + "2019-03-21": "Vernal Equinox Day", + "2019-04-29": "Showa Day", + "2019-04-30": "National Holiday", + "2019-05-01": "Emperor's Enthronement Day", + "2019-05-02": "National Holiday", + "2019-05-03": "Constitution Day", + "2019-05-04": "Greenery Day", + "2019-05-05": "Children's Day", + "2019-05-06": "Substitute Holiday", + "2019-07-15": "Marine Day", + "2019-08-11": "Mountain Day", + "2019-08-12": "Substitute Holiday", + "2019-09-16": "Respect for the Aged Day", + "2019-09-23": "Autumnal Equinox", + "2019-10-14": "Physical Education Day", + "2019-10-22": "Emperor's Enthronement Day", + "2019-11-03": "Culture Day", + "2019-11-04": "Substitute Holiday", + "2019-11-23": "Labor Thanksgiving Day", + "2019-12-31": "Bank Holiday", + "2020-01-01": "New Year's Day", + "2020-01-02": "Bank Holiday", + "2020-01-03": "Bank Holiday", + "2020-01-13": "Coming of Age Day", + "2020-02-11": "Foundation Day", + "2020-02-23": "Emperor's Birthday", + "2020-02-24": "Substitute Holiday", + "2020-03-20": "Vernal Equinox Day", + "2020-04-29": "Showa Day", + "2020-05-03": "Constitution Day", + "2020-05-04": "Greenery Day", + "2020-05-05": "Children's Day", + "2020-05-06": "Substitute Holiday", + "2020-07-23": "Marine Day", + "2020-07-24": "Sports Day", + "2020-08-10": "Mountain Day", + "2020-09-21": "Respect for the Aged Day", + "2020-09-22": "Autumnal Equinox", + "2020-11-03": "Culture Day", + "2020-11-23": "Labor Thanksgiving Day", + "2020-12-31": "Bank Holiday", + "2021-01-01": "New Year's Day", + "2021-01-02": "Bank Holiday", + "2021-01-03": "Bank Holiday", + "2021-01-11": "Coming of Age Day", + "2021-02-11": "Foundation Day", + "2021-02-23": "Emperor's Birthday", + "2021-03-20": "Vernal Equinox Day", + "2021-04-29": "Showa Day", + "2021-05-03": "Constitution Day", + "2021-05-04": "Greenery Day", + "2021-05-05": "Children's Day", + "2021-07-22": "Marine Day", + "2021-07-23": "Sports Day", + "2021-08-08": "Mountain Day", + "2021-08-09": "Substitute Holiday", + "2021-09-20": "Respect for the Aged Day", + "2021-09-23": "Autumnal Equinox", + "2021-11-03": "Culture Day", + "2021-11-23": "Labor Thanksgiving Day", + "2021-12-31": "Bank Holiday", + "2022-01-01": "New Year's Day", + "2022-01-02": "Bank Holiday", + "2022-01-03": "Bank Holiday", + "2022-01-10": "Coming of Age Day", + "2022-02-11": "Foundation Day", + "2022-02-23": "Emperor's Birthday", + "2022-03-21": "Vernal Equinox Day", + "2022-04-29": "Showa Day", + "2022-05-03": "Constitution Day", + "2022-05-04": "Greenery Day", + "2022-05-05": "Children's Day", + "2022-07-18": "Marine Day", + "2022-08-11": "Mountain Day", + "2022-09-19": "Respect for the Aged Day", + "2022-09-23": "Autumnal Equinox", + "2022-10-10": "Sports Day", + "2022-11-03": "Culture Day", + "2022-11-23": "Labor Thanksgiving Day", + "2022-12-31": "Bank Holiday", + "2023-01-01": "New Year's Day", + "2023-01-02": "Bank Holiday; Substitute Holiday", + "2023-01-03": "Bank Holiday", + "2023-01-09": "Coming of Age Day", + "2023-02-11": "Foundation Day", + "2023-02-23": "Emperor's Birthday", + "2023-03-21": "Vernal Equinox Day", + "2023-04-29": "Showa Day", + "2023-05-03": "Constitution Day", + "2023-05-04": "Greenery Day", + "2023-05-05": "Children's Day", + "2023-07-17": "Marine Day", + "2023-08-11": "Mountain Day", + "2023-09-18": "Respect for the Aged Day", + "2023-09-23": "Autumnal Equinox", + "2023-10-09": "Sports Day", + "2023-11-03": "Culture Day", + "2023-11-23": "Labor Thanksgiving Day", + "2023-12-31": "Bank Holiday", + "2024-01-01": "New Year's Day", + "2024-01-02": "Bank Holiday", + "2024-01-03": "Bank Holiday", + "2024-01-08": "Coming of Age Day", + "2024-02-11": "Foundation Day", + "2024-02-12": "Substitute Holiday", + "2024-02-23": "Emperor's Birthday", + "2024-03-20": "Vernal Equinox Day", + "2024-04-29": "Showa Day", + "2024-05-03": "Constitution Day", + "2024-05-04": "Greenery Day", + "2024-05-05": "Children's Day", + "2024-05-06": "Substitute Holiday", + "2024-07-15": "Marine Day", + "2024-08-11": "Mountain Day", + "2024-08-12": "Substitute Holiday", + "2024-09-16": "Respect for the Aged Day", + "2024-09-22": "Autumnal Equinox", + "2024-09-23": "Substitute Holiday", + "2024-10-14": "Sports Day", + "2024-11-03": "Culture Day", + "2024-11-04": "Substitute Holiday", + "2024-11-23": "Labor Thanksgiving Day", + "2024-12-31": "Bank Holiday", + "2025-01-01": "New Year's Day", + "2025-01-02": "Bank Holiday", + "2025-01-03": "Bank Holiday", + "2025-01-13": "Coming of Age Day", + "2025-02-11": "Foundation Day", + "2025-02-23": "Emperor's Birthday", + "2025-02-24": "Substitute Holiday", + "2025-03-20": "Vernal Equinox Day", + "2025-04-29": "Showa Day", + "2025-05-03": "Constitution Day", + "2025-05-04": "Greenery Day", + "2025-05-05": "Children's Day", + "2025-05-06": "Substitute Holiday", + "2025-07-21": "Marine Day", + "2025-08-11": "Mountain Day", + "2025-09-15": "Respect for the Aged Day", + "2025-09-23": "Autumnal Equinox", + "2025-10-13": "Sports Day", + "2025-11-03": "Culture Day", + "2025-11-23": "Labor Thanksgiving Day", + "2025-11-24": "Substitute Holiday", + "2025-12-31": "Bank Holiday", + "2026-01-01": "New Year's Day", + "2026-01-02": "Bank Holiday", + "2026-01-03": "Bank Holiday", + "2026-01-12": "Coming of Age Day", + "2026-02-11": "Foundation Day", + "2026-02-23": "Emperor's Birthday", + "2026-03-20": "Vernal Equinox Day", + "2026-04-29": "Showa Day", + "2026-05-03": "Constitution Day", + "2026-05-04": "Greenery Day", + "2026-05-05": "Children's Day", + "2026-05-06": "Substitute Holiday", + "2026-07-20": "Marine Day", + "2026-08-11": "Mountain Day", + "2026-09-21": "Respect for the Aged Day", + "2026-09-22": "National Holiday", + "2026-09-23": "Autumnal Equinox", + "2026-10-12": "Sports Day", + "2026-11-03": "Culture Day", + "2026-11-23": "Labor Thanksgiving Day", + "2026-12-31": "Bank Holiday", + "2027-01-01": "New Year's Day", + "2027-01-02": "Bank Holiday", + "2027-01-03": "Bank Holiday", + "2027-01-11": "Coming of Age Day", + "2027-02-11": "Foundation Day", + "2027-02-23": "Emperor's Birthday", + "2027-03-21": "Vernal Equinox Day", + "2027-03-22": "Substitute Holiday", + "2027-04-29": "Showa Day", + "2027-05-03": "Constitution Day", + "2027-05-04": "Greenery Day", + "2027-05-05": "Children's Day", + "2027-07-19": "Marine Day", + "2027-08-11": "Mountain Day", + "2027-09-20": "Respect for the Aged Day", + "2027-09-23": "Autumnal Equinox", + "2027-10-11": "Sports Day", + "2027-11-03": "Culture Day", + "2027-11-23": "Labor Thanksgiving Day", + "2027-12-31": "Bank Holiday", + "2028-01-01": "New Year's Day", + "2028-01-02": "Bank Holiday", + "2028-01-03": "Bank Holiday", + "2028-01-10": "Coming of Age Day", + "2028-02-11": "Foundation Day", + "2028-02-23": "Emperor's Birthday", + "2028-03-20": "Vernal Equinox Day", + "2028-04-29": "Showa Day", + "2028-05-03": "Constitution Day", + "2028-05-04": "Greenery Day", + "2028-05-05": "Children's Day", + "2028-07-17": "Marine Day", + "2028-08-11": "Mountain Day", + "2028-09-18": "Respect for the Aged Day", + "2028-09-22": "Autumnal Equinox", + "2028-10-09": "Sports Day", + "2028-11-03": "Culture Day", + "2028-11-23": "Labor Thanksgiving Day", + "2028-12-31": "Bank Holiday", + "2029-01-01": "New Year's Day", + "2029-01-02": "Bank Holiday", + "2029-01-03": "Bank Holiday", + "2029-01-08": "Coming of Age Day", + "2029-02-11": "Foundation Day", + "2029-02-12": "Substitute Holiday", + "2029-02-23": "Emperor's Birthday", + "2029-03-20": "Vernal Equinox Day", + "2029-04-29": "Showa Day", + "2029-04-30": "Substitute Holiday", + "2029-05-03": "Constitution Day", + "2029-05-04": "Greenery Day", + "2029-05-05": "Children's Day", + "2029-07-16": "Marine Day", + "2029-08-11": "Mountain Day", + "2029-09-17": "Respect for the Aged Day", + "2029-09-23": "Autumnal Equinox", + "2029-09-24": "Substitute Holiday", + "2029-10-08": "Sports Day", + "2029-11-03": "Culture Day", + "2029-11-23": "Labor Thanksgiving Day", + "2029-12-31": "Bank Holiday", + "2030-01-01": "New Year's Day", + "2030-01-02": "Bank Holiday", + "2030-01-03": "Bank Holiday", + "2030-01-14": "Coming of Age Day", + "2030-02-11": "Foundation Day", + "2030-02-23": "Emperor's Birthday", + "2030-03-20": "Vernal Equinox Day", + "2030-04-29": "Showa Day", + "2030-05-03": "Constitution Day", + "2030-05-04": "Greenery Day", + "2030-05-05": "Children's Day", + "2030-05-06": "Substitute Holiday", + "2030-07-15": "Marine Day", + "2030-08-11": "Mountain Day", + "2030-08-12": "Substitute Holiday", + "2030-09-16": "Respect for the Aged Day", + "2030-09-23": "Autumnal Equinox", + "2030-10-14": "Sports Day", + "2030-11-03": "Culture Day", + "2030-11-04": "Substitute Holiday", + "2030-11-23": "Labor Thanksgiving Day", + "2030-12-31": "Bank Holiday", + "2031-01-01": "New Year's Day", + "2031-01-02": "Bank Holiday", + "2031-01-03": "Bank Holiday", + "2031-01-13": "Coming of Age Day", + "2031-02-11": "Foundation Day", + "2031-02-23": "Emperor's Birthday", + "2031-02-24": "Substitute Holiday", + "2031-03-21": "Vernal Equinox Day", + "2031-04-29": "Showa Day", + "2031-05-03": "Constitution Day", + "2031-05-04": "Greenery Day", + "2031-05-05": "Children's Day", + "2031-05-06": "Substitute Holiday", + "2031-07-21": "Marine Day", + "2031-08-11": "Mountain Day", + "2031-09-15": "Respect for the Aged Day", + "2031-09-23": "Autumnal Equinox", + "2031-10-13": "Sports Day", + "2031-11-03": "Culture Day", + "2031-11-23": "Labor Thanksgiving Day", + "2031-11-24": "Substitute Holiday", + "2031-12-31": "Bank Holiday", + "2032-01-01": "New Year's Day", + "2032-01-02": "Bank Holiday", + "2032-01-03": "Bank Holiday", + "2032-01-12": "Coming of Age Day", + "2032-02-11": "Foundation Day", + "2032-02-23": "Emperor's Birthday", + "2032-03-20": "Vernal Equinox Day", + "2032-04-29": "Showa Day", + "2032-05-03": "Constitution Day", + "2032-05-04": "Greenery Day", + "2032-05-05": "Children's Day", + "2032-07-19": "Marine Day", + "2032-08-11": "Mountain Day", + "2032-09-20": "Respect for the Aged Day", + "2032-09-21": "National Holiday", + "2032-09-22": "Autumnal Equinox", + "2032-10-11": "Sports Day", + "2032-11-03": "Culture Day", + "2032-11-23": "Labor Thanksgiving Day", + "2032-12-31": "Bank Holiday", + "2033-01-01": "New Year's Day", + "2033-01-02": "Bank Holiday", + "2033-01-03": "Bank Holiday", + "2033-01-10": "Coming of Age Day", + "2033-02-11": "Foundation Day", + "2033-02-23": "Emperor's Birthday", + "2033-03-20": "Vernal Equinox Day", + "2033-03-21": "Substitute Holiday", + "2033-04-29": "Showa Day", + "2033-05-03": "Constitution Day", + "2033-05-04": "Greenery Day", + "2033-05-05": "Children's Day", + "2033-07-18": "Marine Day", + "2033-08-11": "Mountain Day", + "2033-09-19": "Respect for the Aged Day", + "2033-09-23": "Autumnal Equinox", + "2033-10-10": "Sports Day", + "2033-11-03": "Culture Day", + "2033-11-23": "Labor Thanksgiving Day", + "2033-12-31": "Bank Holiday", + "2034-01-01": "New Year's Day", + "2034-01-02": "Bank Holiday; Substitute Holiday", + "2034-01-03": "Bank Holiday", + "2034-01-09": "Coming of Age Day", + "2034-02-11": "Foundation Day", + "2034-02-23": "Emperor's Birthday", + "2034-03-20": "Vernal Equinox Day", + "2034-04-29": "Showa Day", + "2034-05-03": "Constitution Day", + "2034-05-04": "Greenery Day", + "2034-05-05": "Children's Day", + "2034-07-17": "Marine Day", + "2034-08-11": "Mountain Day", + "2034-09-18": "Respect for the Aged Day", + "2034-09-23": "Autumnal Equinox", + "2034-10-09": "Sports Day", + "2034-11-03": "Culture Day", + "2034-11-23": "Labor Thanksgiving Day", + "2034-12-31": "Bank Holiday", + "2035-01-01": "New Year's Day", + "2035-01-02": "Bank Holiday", + "2035-01-03": "Bank Holiday", + "2035-01-08": "Coming of Age Day", + "2035-02-11": "Foundation Day", + "2035-02-12": "Substitute Holiday", + "2035-02-23": "Emperor's Birthday", + "2035-03-21": "Vernal Equinox Day", + "2035-04-29": "Showa Day", + "2035-04-30": "Substitute Holiday", + "2035-05-03": "Constitution Day", + "2035-05-04": "Greenery Day", + "2035-05-05": "Children's Day", + "2035-07-16": "Marine Day", + "2035-08-11": "Mountain Day", + "2035-09-17": "Respect for the Aged Day", + "2035-09-23": "Autumnal Equinox", + "2035-09-24": "Substitute Holiday", + "2035-10-08": "Sports Day", + "2035-11-03": "Culture Day", + "2035-11-23": "Labor Thanksgiving Day", + "2035-12-31": "Bank Holiday", + "2036-01-01": "New Year's Day", + "2036-01-02": "Bank Holiday", + "2036-01-03": "Bank Holiday", + "2036-01-14": "Coming of Age Day", + "2036-02-11": "Foundation Day", + "2036-02-23": "Emperor's Birthday", + "2036-03-20": "Vernal Equinox Day", + "2036-04-29": "Showa Day", + "2036-05-03": "Constitution Day", + "2036-05-04": "Greenery Day", + "2036-05-05": "Children's Day", + "2036-05-06": "Substitute Holiday", + "2036-07-21": "Marine Day", + "2036-08-11": "Mountain Day", + "2036-09-15": "Respect for the Aged Day", + "2036-09-22": "Autumnal Equinox", + "2036-10-13": "Sports Day", + "2036-11-03": "Culture Day", + "2036-11-23": "Labor Thanksgiving Day", + "2036-11-24": "Substitute Holiday", + "2036-12-31": "Bank Holiday", + "2037-01-01": "New Year's Day", + "2037-01-02": "Bank Holiday", + "2037-01-03": "Bank Holiday", + "2037-01-12": "Coming of Age Day", + "2037-02-11": "Foundation Day", + "2037-02-23": "Emperor's Birthday", + "2037-03-20": "Vernal Equinox Day", + "2037-04-29": "Showa Day", + "2037-05-03": "Constitution Day", + "2037-05-04": "Greenery Day", + "2037-05-05": "Children's Day", + "2037-05-06": "Substitute Holiday", + "2037-07-20": "Marine Day", + "2037-08-11": "Mountain Day", + "2037-09-21": "Respect for the Aged Day", + "2037-09-22": "National Holiday", + "2037-09-23": "Autumnal Equinox", + "2037-10-12": "Sports Day", + "2037-11-03": "Culture Day", + "2037-11-23": "Labor Thanksgiving Day", + "2037-12-31": "Bank Holiday", + "2038-01-01": "New Year's Day", + "2038-01-02": "Bank Holiday", + "2038-01-03": "Bank Holiday", + "2038-01-11": "Coming of Age Day", + "2038-02-11": "Foundation Day", + "2038-02-23": "Emperor's Birthday", + "2038-03-20": "Vernal Equinox Day", + "2038-04-29": "Showa Day", + "2038-05-03": "Constitution Day", + "2038-05-04": "Greenery Day", + "2038-05-05": "Children's Day", + "2038-07-19": "Marine Day", + "2038-08-11": "Mountain Day", + "2038-09-20": "Respect for the Aged Day", + "2038-09-23": "Autumnal Equinox", + "2038-10-11": "Sports Day", + "2038-11-03": "Culture Day", + "2038-11-23": "Labor Thanksgiving Day", + "2038-12-31": "Bank Holiday", + "2039-01-01": "New Year's Day", + "2039-01-02": "Bank Holiday", + "2039-01-03": "Bank Holiday", + "2039-01-10": "Coming of Age Day", + "2039-02-11": "Foundation Day", + "2039-02-23": "Emperor's Birthday", + "2039-03-21": "Vernal Equinox Day", + "2039-04-29": "Showa Day", + "2039-05-03": "Constitution Day", + "2039-05-04": "Greenery Day", + "2039-05-05": "Children's Day", + "2039-07-18": "Marine Day", + "2039-08-11": "Mountain Day", + "2039-09-19": "Respect for the Aged Day", + "2039-09-23": "Autumnal Equinox", + "2039-10-10": "Sports Day", + "2039-11-03": "Culture Day", + "2039-11-23": "Labor Thanksgiving Day", + "2039-12-31": "Bank Holiday", + "2040-01-01": "New Year's Day", + "2040-01-02": "Bank Holiday; Substitute Holiday", + "2040-01-03": "Bank Holiday", + "2040-01-09": "Coming of Age Day", + "2040-02-11": "Foundation Day", + "2040-02-23": "Emperor's Birthday", + "2040-03-20": "Vernal Equinox Day", + "2040-04-29": "Showa Day", + "2040-04-30": "Substitute Holiday", + "2040-05-03": "Constitution Day", + "2040-05-04": "Greenery Day", + "2040-05-05": "Children's Day", + "2040-07-16": "Marine Day", + "2040-08-11": "Mountain Day", + "2040-09-17": "Respect for the Aged Day", + "2040-09-22": "Autumnal Equinox", + "2040-10-08": "Sports Day", + "2040-11-03": "Culture Day", + "2040-11-23": "Labor Thanksgiving Day", + "2040-12-31": "Bank Holiday", + "2041-01-01": "New Year's Day", + "2041-01-02": "Bank Holiday", + "2041-01-03": "Bank Holiday", + "2041-01-14": "Coming of Age Day", + "2041-02-11": "Foundation Day", + "2041-02-23": "Emperor's Birthday", + "2041-03-20": "Vernal Equinox Day", + "2041-04-29": "Showa Day", + "2041-05-03": "Constitution Day", + "2041-05-04": "Greenery Day", + "2041-05-05": "Children's Day", + "2041-05-06": "Substitute Holiday", + "2041-07-15": "Marine Day", + "2041-08-11": "Mountain Day", + "2041-08-12": "Substitute Holiday", + "2041-09-16": "Respect for the Aged Day", + "2041-09-23": "Autumnal Equinox", + "2041-10-14": "Sports Day", + "2041-11-03": "Culture Day", + "2041-11-04": "Substitute Holiday", + "2041-11-23": "Labor Thanksgiving Day", + "2041-12-31": "Bank Holiday", + "2042-01-01": "New Year's Day", + "2042-01-02": "Bank Holiday", + "2042-01-03": "Bank Holiday", + "2042-01-13": "Coming of Age Day", + "2042-02-11": "Foundation Day", + "2042-02-23": "Emperor's Birthday", + "2042-02-24": "Substitute Holiday", + "2042-03-20": "Vernal Equinox Day", + "2042-04-29": "Showa Day", + "2042-05-03": "Constitution Day", + "2042-05-04": "Greenery Day", + "2042-05-05": "Children's Day", + "2042-05-06": "Substitute Holiday", + "2042-07-21": "Marine Day", + "2042-08-11": "Mountain Day", + "2042-09-15": "Respect for the Aged Day", + "2042-09-23": "Autumnal Equinox", + "2042-10-13": "Sports Day", + "2042-11-03": "Culture Day", + "2042-11-23": "Labor Thanksgiving Day", + "2042-11-24": "Substitute Holiday", + "2042-12-31": "Bank Holiday", + "2043-01-01": "New Year's Day", + "2043-01-02": "Bank Holiday", + "2043-01-03": "Bank Holiday", + "2043-01-12": "Coming of Age Day", + "2043-02-11": "Foundation Day", + "2043-02-23": "Emperor's Birthday", + "2043-03-21": "Vernal Equinox Day", + "2043-04-29": "Showa Day", + "2043-05-03": "Constitution Day", + "2043-05-04": "Greenery Day", + "2043-05-05": "Children's Day", + "2043-05-06": "Substitute Holiday", + "2043-07-20": "Marine Day", + "2043-08-11": "Mountain Day", + "2043-09-21": "Respect for the Aged Day", + "2043-09-22": "National Holiday", + "2043-09-23": "Autumnal Equinox", + "2043-10-12": "Sports Day", + "2043-11-03": "Culture Day", + "2043-11-23": "Labor Thanksgiving Day", + "2043-12-31": "Bank Holiday", + "2044-01-01": "New Year's Day", + "2044-01-02": "Bank Holiday", + "2044-01-03": "Bank Holiday", + "2044-01-11": "Coming of Age Day", + "2044-02-11": "Foundation Day", + "2044-02-23": "Emperor's Birthday", + "2044-03-20": "Vernal Equinox Day", + "2044-03-21": "Substitute Holiday", + "2044-04-29": "Showa Day", + "2044-05-03": "Constitution Day", + "2044-05-04": "Greenery Day", + "2044-05-05": "Children's Day", + "2044-07-18": "Marine Day", + "2044-08-11": "Mountain Day", + "2044-09-19": "Respect for the Aged Day", + "2044-09-22": "Autumnal Equinox", + "2044-10-10": "Sports Day", + "2044-11-03": "Culture Day", + "2044-11-23": "Labor Thanksgiving Day", + "2044-12-31": "Bank Holiday", + "2045-01-01": "New Year's Day", + "2045-01-02": "Bank Holiday; Substitute Holiday", + "2045-01-03": "Bank Holiday", + "2045-01-09": "Coming of Age Day", + "2045-02-11": "Foundation Day", + "2045-02-23": "Emperor's Birthday", + "2045-03-20": "Vernal Equinox Day", + "2045-04-29": "Showa Day", + "2045-05-03": "Constitution Day", + "2045-05-04": "Greenery Day", + "2045-05-05": "Children's Day", + "2045-07-17": "Marine Day", + "2045-08-11": "Mountain Day", + "2045-09-18": "Respect for the Aged Day", + "2045-09-22": "Autumnal Equinox", + "2045-10-09": "Sports Day", + "2045-11-03": "Culture Day", + "2045-11-23": "Labor Thanksgiving Day", + "2045-12-31": "Bank Holiday", + "2046-01-01": "New Year's Day", + "2046-01-02": "Bank Holiday", + "2046-01-03": "Bank Holiday", + "2046-01-08": "Coming of Age Day", + "2046-02-11": "Foundation Day", + "2046-02-12": "Substitute Holiday", + "2046-02-23": "Emperor's Birthday", + "2046-03-20": "Vernal Equinox Day", + "2046-04-29": "Showa Day", + "2046-04-30": "Substitute Holiday", + "2046-05-03": "Constitution Day", + "2046-05-04": "Greenery Day", + "2046-05-05": "Children's Day", + "2046-07-16": "Marine Day", + "2046-08-11": "Mountain Day", + "2046-09-17": "Respect for the Aged Day", + "2046-09-23": "Autumnal Equinox", + "2046-09-24": "Substitute Holiday", + "2046-10-08": "Sports Day", + "2046-11-03": "Culture Day", + "2046-11-23": "Labor Thanksgiving Day", + "2046-12-31": "Bank Holiday", + "2047-01-01": "New Year's Day", + "2047-01-02": "Bank Holiday", + "2047-01-03": "Bank Holiday", + "2047-01-14": "Coming of Age Day", + "2047-02-11": "Foundation Day", + "2047-02-23": "Emperor's Birthday", + "2047-03-21": "Vernal Equinox Day", + "2047-04-29": "Showa Day", + "2047-05-03": "Constitution Day", + "2047-05-04": "Greenery Day", + "2047-05-05": "Children's Day", + "2047-05-06": "Substitute Holiday", + "2047-07-15": "Marine Day", + "2047-08-11": "Mountain Day", + "2047-08-12": "Substitute Holiday", + "2047-09-16": "Respect for the Aged Day", + "2047-09-23": "Autumnal Equinox", + "2047-10-14": "Sports Day", + "2047-11-03": "Culture Day", + "2047-11-04": "Substitute Holiday", + "2047-11-23": "Labor Thanksgiving Day", + "2047-12-31": "Bank Holiday", + "2048-01-01": "New Year's Day", + "2048-01-02": "Bank Holiday", + "2048-01-03": "Bank Holiday", + "2048-01-13": "Coming of Age Day", + "2048-02-11": "Foundation Day", + "2048-02-23": "Emperor's Birthday", + "2048-02-24": "Substitute Holiday", + "2048-03-20": "Vernal Equinox Day", + "2048-04-29": "Showa Day", + "2048-05-03": "Constitution Day", + "2048-05-04": "Greenery Day", + "2048-05-05": "Children's Day", + "2048-05-06": "Substitute Holiday", + "2048-07-20": "Marine Day", + "2048-08-11": "Mountain Day", + "2048-09-21": "Respect for the Aged Day", + "2048-09-22": "Autumnal Equinox", + "2048-10-12": "Sports Day", + "2048-11-03": "Culture Day", + "2048-11-23": "Labor Thanksgiving Day", + "2048-12-31": "Bank Holiday", + "2049-01-01": "New Year's Day", + "2049-01-02": "Bank Holiday", + "2049-01-03": "Bank Holiday", + "2049-01-11": "Coming of Age Day", + "2049-02-11": "Foundation Day", + "2049-02-23": "Emperor's Birthday", + "2049-03-20": "Vernal Equinox Day", + "2049-04-29": "Showa Day", + "2049-05-03": "Constitution Day", + "2049-05-04": "Greenery Day", + "2049-05-05": "Children's Day", + "2049-07-19": "Marine Day", + "2049-08-11": "Mountain Day", + "2049-09-20": "Respect for the Aged Day", + "2049-09-21": "National Holiday", + "2049-09-22": "Autumnal Equinox", + "2049-10-11": "Sports Day", + "2049-11-03": "Culture Day", + "2049-11-23": "Labor Thanksgiving Day", + "2049-12-31": "Bank Holiday", + "2050-01-01": "New Year's Day", + "2050-01-02": "Bank Holiday", + "2050-01-03": "Bank Holiday", + "2050-01-10": "Coming of Age Day", + "2050-02-11": "Foundation Day", + "2050-02-23": "Emperor's Birthday", + "2050-03-20": "Vernal Equinox Day", + "2050-03-21": "Substitute Holiday", + "2050-04-29": "Showa Day", + "2050-05-03": "Constitution Day", + "2050-05-04": "Greenery Day", + "2050-05-05": "Children's Day", + "2050-07-18": "Marine Day", + "2050-08-11": "Mountain Day", + "2050-09-19": "Respect for the Aged Day", + "2050-09-23": "Autumnal Equinox", + "2050-10-10": "Sports Day", + "2050-11-03": "Culture Day", + "2050-11-23": "Labor Thanksgiving Day", + "2050-12-31": "Bank Holiday" +} diff --git a/snapshots/countries/KE.json b/snapshots/countries/KE.json new file mode 100644 index 000000000..b2de8cd38 --- /dev/null +++ b/snapshots/countries/KE.json @@ -0,0 +1,883 @@ +{ + "1963-01-01": "New Year's Day", + "1963-04-12": "Good Friday", + "1963-04-15": "Easter Monday", + "1963-05-01": "Labour Day", + "1963-10-20": "Kenyatta Day", + "1963-10-21": "Kenyatta Day (Observed)", + "1963-12-12": "Jamhuri Day", + "1963-12-25": "Christmas Day", + "1963-12-26": "Boxing Day", + "1964-01-01": "New Year's Day", + "1964-03-27": "Good Friday", + "1964-03-30": "Easter Monday", + "1964-05-01": "Labour Day", + "1964-10-20": "Kenyatta Day", + "1964-12-12": "Jamhuri Day", + "1964-12-25": "Christmas Day", + "1964-12-26": "Boxing Day", + "1965-01-01": "New Year's Day", + "1965-04-16": "Good Friday", + "1965-04-19": "Easter Monday", + "1965-05-01": "Labour Day", + "1965-10-20": "Kenyatta Day", + "1965-12-12": "Jamhuri Day", + "1965-12-13": "Jamhuri Day (Observed)", + "1965-12-25": "Christmas Day", + "1965-12-26": "Boxing Day", + "1965-12-27": "Boxing Day (Observed)", + "1966-01-01": "New Year's Day", + "1966-04-08": "Good Friday", + "1966-04-11": "Easter Monday", + "1966-05-01": "Labour Day", + "1966-05-02": "Labour Day (Observed)", + "1966-10-20": "Kenyatta Day", + "1966-12-12": "Jamhuri Day", + "1966-12-25": "Christmas Day", + "1966-12-26": "Boxing Day", + "1966-12-27": "Christmas Day (Observed)", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day (Observed)", + "1967-03-24": "Good Friday", + "1967-03-27": "Easter Monday", + "1967-05-01": "Labour Day", + "1967-10-20": "Kenyatta Day", + "1967-12-12": "Jamhuri Day", + "1967-12-25": "Christmas Day", + "1967-12-26": "Boxing Day", + "1968-01-01": "New Year's Day", + "1968-04-12": "Good Friday", + "1968-04-15": "Easter Monday", + "1968-05-01": "Labour Day", + "1968-10-20": "Kenyatta Day", + "1968-10-21": "Kenyatta Day (Observed)", + "1968-12-12": "Jamhuri Day", + "1968-12-25": "Christmas Day", + "1968-12-26": "Boxing Day", + "1969-01-01": "New Year's Day", + "1969-04-04": "Good Friday", + "1969-04-07": "Easter Monday", + "1969-05-01": "Labour Day", + "1969-10-20": "Kenyatta Day", + "1969-12-12": "Jamhuri Day", + "1969-12-25": "Christmas Day", + "1969-12-26": "Boxing Day", + "1970-01-01": "New Year's Day", + "1970-03-27": "Good Friday", + "1970-03-30": "Easter Monday", + "1970-05-01": "Labour Day", + "1970-10-20": "Kenyatta Day", + "1970-12-12": "Jamhuri Day", + "1970-12-25": "Christmas Day", + "1970-12-26": "Boxing Day", + "1971-01-01": "New Year's Day", + "1971-04-09": "Good Friday", + "1971-04-12": "Easter Monday", + "1971-05-01": "Labour Day", + "1971-10-20": "Kenyatta Day", + "1971-12-12": "Jamhuri Day", + "1971-12-13": "Jamhuri Day (Observed)", + "1971-12-25": "Christmas Day", + "1971-12-26": "Boxing Day", + "1971-12-27": "Boxing Day (Observed)", + "1972-01-01": "New Year's Day", + "1972-03-31": "Good Friday", + "1972-04-03": "Easter Monday", + "1972-05-01": "Labour Day", + "1972-10-20": "Kenyatta Day", + "1972-12-12": "Jamhuri Day", + "1972-12-25": "Christmas Day", + "1972-12-26": "Boxing Day", + "1973-01-01": "New Year's Day", + "1973-04-20": "Good Friday", + "1973-04-23": "Easter Monday", + "1973-05-01": "Labour Day", + "1973-10-20": "Kenyatta Day", + "1973-12-12": "Jamhuri Day", + "1973-12-25": "Christmas Day", + "1973-12-26": "Boxing Day", + "1974-01-01": "New Year's Day", + "1974-04-12": "Good Friday", + "1974-04-15": "Easter Monday", + "1974-05-01": "Labour Day", + "1974-10-20": "Kenyatta Day", + "1974-10-21": "Kenyatta Day (Observed)", + "1974-12-12": "Jamhuri Day", + "1974-12-25": "Christmas Day", + "1974-12-26": "Boxing Day", + "1975-01-01": "New Year's Day", + "1975-03-28": "Good Friday", + "1975-03-31": "Easter Monday", + "1975-05-01": "Labour Day", + "1975-10-20": "Kenyatta Day", + "1975-12-12": "Jamhuri Day", + "1975-12-25": "Christmas Day", + "1975-12-26": "Boxing Day", + "1976-01-01": "New Year's Day", + "1976-04-16": "Good Friday", + "1976-04-19": "Easter Monday", + "1976-05-01": "Labour Day", + "1976-10-20": "Kenyatta Day", + "1976-12-12": "Jamhuri Day", + "1976-12-13": "Jamhuri Day (Observed)", + "1976-12-25": "Christmas Day", + "1976-12-26": "Boxing Day", + "1976-12-27": "Boxing Day (Observed)", + "1977-01-01": "New Year's Day", + "1977-04-08": "Good Friday", + "1977-04-11": "Easter Monday", + "1977-05-01": "Labour Day", + "1977-05-02": "Labour Day (Observed)", + "1977-10-20": "Kenyatta Day", + "1977-12-12": "Jamhuri Day", + "1977-12-25": "Christmas Day", + "1977-12-26": "Boxing Day", + "1977-12-27": "Christmas Day (Observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day (Observed)", + "1978-03-24": "Good Friday", + "1978-03-27": "Easter Monday", + "1978-05-01": "Labour Day", + "1978-10-20": "Kenyatta Day", + "1978-12-12": "Jamhuri Day", + "1978-12-25": "Christmas Day", + "1978-12-26": "Boxing Day", + "1979-01-01": "New Year's Day", + "1979-04-13": "Good Friday", + "1979-04-16": "Easter Monday", + "1979-05-01": "Labour Day", + "1979-10-20": "Kenyatta Day", + "1979-12-12": "Jamhuri Day", + "1979-12-25": "Christmas Day", + "1979-12-26": "Boxing Day", + "1980-01-01": "New Year's Day", + "1980-04-04": "Good Friday", + "1980-04-07": "Easter Monday", + "1980-05-01": "Labour Day", + "1980-10-20": "Kenyatta Day", + "1980-12-12": "Jamhuri Day", + "1980-12-25": "Christmas Day", + "1980-12-26": "Boxing Day", + "1981-01-01": "New Year's Day", + "1981-04-17": "Good Friday", + "1981-04-20": "Easter Monday", + "1981-05-01": "Labour Day", + "1981-10-20": "Kenyatta Day", + "1981-12-12": "Jamhuri Day", + "1981-12-25": "Christmas Day", + "1981-12-26": "Boxing Day", + "1982-01-01": "New Year's Day", + "1982-04-09": "Good Friday", + "1982-04-12": "Easter Monday", + "1982-05-01": "Labour Day", + "1982-10-20": "Kenyatta Day", + "1982-12-12": "Jamhuri Day", + "1982-12-13": "Jamhuri Day (Observed)", + "1982-12-25": "Christmas Day", + "1982-12-26": "Boxing Day", + "1982-12-27": "Boxing Day (Observed)", + "1983-01-01": "New Year's Day", + "1983-04-01": "Good Friday", + "1983-04-04": "Easter Monday", + "1983-05-01": "Labour Day", + "1983-05-02": "Labour Day (Observed)", + "1983-10-20": "Kenyatta Day", + "1983-12-12": "Jamhuri Day", + "1983-12-25": "Christmas Day", + "1983-12-26": "Boxing Day", + "1983-12-27": "Christmas Day (Observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (Observed)", + "1984-04-20": "Good Friday", + "1984-04-23": "Easter Monday", + "1984-05-01": "Labour Day", + "1984-10-20": "Kenyatta Day", + "1984-12-12": "Jamhuri Day", + "1984-12-25": "Christmas Day", + "1984-12-26": "Boxing Day", + "1985-01-01": "New Year's Day", + "1985-04-05": "Good Friday", + "1985-04-08": "Easter Monday", + "1985-05-01": "Labour Day", + "1985-10-20": "Kenyatta Day", + "1985-10-21": "Kenyatta Day (Observed)", + "1985-12-12": "Jamhuri Day", + "1985-12-25": "Christmas Day", + "1985-12-26": "Boxing Day", + "1986-01-01": "New Year's Day", + "1986-03-28": "Good Friday", + "1986-03-31": "Easter Monday", + "1986-05-01": "Labour Day", + "1986-10-20": "Kenyatta Day", + "1986-12-12": "Jamhuri Day", + "1986-12-25": "Christmas Day", + "1986-12-26": "Boxing Day", + "1987-01-01": "New Year's Day", + "1987-04-17": "Good Friday", + "1987-04-20": "Easter Monday", + "1987-05-01": "Labour Day", + "1987-10-20": "Kenyatta Day", + "1987-12-12": "Jamhuri Day", + "1987-12-25": "Christmas Day", + "1987-12-26": "Boxing Day", + "1988-01-01": "New Year's Day", + "1988-04-01": "Good Friday", + "1988-04-04": "Easter Monday", + "1988-05-01": "Labour Day", + "1988-05-02": "Labour Day (Observed)", + "1988-10-20": "Kenyatta Day", + "1988-12-12": "Jamhuri Day", + "1988-12-25": "Christmas Day", + "1988-12-26": "Boxing Day", + "1988-12-27": "Christmas Day (Observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (Observed)", + "1989-03-24": "Good Friday", + "1989-03-27": "Easter Monday", + "1989-05-01": "Labour Day", + "1989-10-20": "Kenyatta Day", + "1989-12-12": "Jamhuri Day", + "1989-12-25": "Christmas Day", + "1989-12-26": "Boxing Day", + "1990-01-01": "New Year's Day", + "1990-04-13": "Good Friday", + "1990-04-16": "Easter Monday", + "1990-05-01": "Labour Day", + "1990-10-20": "Kenyatta Day", + "1990-12-12": "Jamhuri Day", + "1990-12-25": "Christmas Day", + "1990-12-26": "Boxing Day", + "1991-01-01": "New Year's Day", + "1991-03-29": "Good Friday", + "1991-04-01": "Easter Monday", + "1991-05-01": "Labour Day", + "1991-10-20": "Kenyatta Day", + "1991-10-21": "Kenyatta Day (Observed)", + "1991-12-12": "Jamhuri Day", + "1991-12-25": "Christmas Day", + "1991-12-26": "Boxing Day", + "1992-01-01": "New Year's Day", + "1992-04-17": "Good Friday", + "1992-04-20": "Easter Monday", + "1992-05-01": "Labour Day", + "1992-10-20": "Kenyatta Day", + "1992-12-12": "Jamhuri Day", + "1992-12-25": "Christmas Day", + "1992-12-26": "Boxing Day", + "1993-01-01": "New Year's Day", + "1993-04-09": "Good Friday", + "1993-04-12": "Easter Monday", + "1993-05-01": "Labour Day", + "1993-10-20": "Kenyatta Day", + "1993-12-12": "Jamhuri Day", + "1993-12-13": "Jamhuri Day (Observed)", + "1993-12-25": "Christmas Day", + "1993-12-26": "Boxing Day", + "1993-12-27": "Boxing Day (Observed)", + "1994-01-01": "New Year's Day", + "1994-04-01": "Good Friday", + "1994-04-04": "Easter Monday", + "1994-05-01": "Labour Day", + "1994-05-02": "Labour Day (Observed)", + "1994-10-20": "Kenyatta Day", + "1994-12-12": "Jamhuri Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Boxing Day", + "1994-12-27": "Christmas Day (Observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (Observed)", + "1995-04-14": "Good Friday", + "1995-04-17": "Easter Monday", + "1995-05-01": "Labour Day", + "1995-10-20": "Kenyatta Day", + "1995-12-12": "Jamhuri Day", + "1995-12-25": "Christmas Day", + "1995-12-26": "Boxing Day", + "1996-01-01": "New Year's Day", + "1996-04-05": "Good Friday", + "1996-04-08": "Easter Monday", + "1996-05-01": "Labour Day", + "1996-10-20": "Kenyatta Day", + "1996-10-21": "Kenyatta Day (Observed)", + "1996-12-12": "Jamhuri Day", + "1996-12-25": "Christmas Day", + "1996-12-26": "Boxing Day", + "1997-01-01": "New Year's Day", + "1997-03-28": "Good Friday", + "1997-03-31": "Easter Monday", + "1997-05-01": "Labour Day", + "1997-10-20": "Kenyatta Day", + "1997-12-12": "Jamhuri Day", + "1997-12-25": "Christmas Day", + "1997-12-26": "Boxing Day", + "1998-01-01": "New Year's Day", + "1998-04-10": "Good Friday", + "1998-04-13": "Easter Monday", + "1998-05-01": "Labour Day", + "1998-10-20": "Kenyatta Day", + "1998-12-12": "Jamhuri Day", + "1998-12-25": "Christmas Day", + "1998-12-26": "Boxing Day", + "1999-01-01": "New Year's Day", + "1999-04-02": "Good Friday", + "1999-04-05": "Easter Monday", + "1999-05-01": "Labour Day", + "1999-10-20": "Kenyatta Day", + "1999-12-12": "Jamhuri Day", + "1999-12-13": "Jamhuri Day (Observed)", + "1999-12-25": "Christmas Day", + "1999-12-26": "Boxing Day", + "1999-12-27": "Boxing Day (Observed)", + "2000-01-01": "New Year's Day", + "2000-04-21": "Good Friday", + "2000-04-24": "Easter Monday", + "2000-05-01": "Labour Day", + "2000-10-20": "Kenyatta Day", + "2000-12-12": "Jamhuri Day", + "2000-12-25": "Christmas Day", + "2000-12-26": "Boxing Day", + "2001-01-01": "New Year's Day", + "2001-04-13": "Good Friday", + "2001-04-16": "Easter Monday", + "2001-05-01": "Labour Day", + "2001-10-20": "Kenyatta Day", + "2001-12-12": "Jamhuri Day", + "2001-12-25": "Christmas Day", + "2001-12-26": "Boxing Day", + "2002-01-01": "New Year's Day", + "2002-03-29": "Good Friday", + "2002-04-01": "Easter Monday", + "2002-05-01": "Labour Day", + "2002-10-10": "Moi Day", + "2002-10-20": "Kenyatta Day", + "2002-10-21": "Kenyatta Day (Observed)", + "2002-12-12": "Jamhuri Day", + "2002-12-25": "Christmas Day", + "2002-12-26": "Boxing Day", + "2003-01-01": "New Year's Day", + "2003-04-18": "Good Friday", + "2003-04-21": "Easter Monday", + "2003-05-01": "Labour Day", + "2003-10-10": "Moi Day", + "2003-10-20": "Kenyatta Day", + "2003-12-12": "Jamhuri Day", + "2003-12-25": "Christmas Day", + "2003-12-26": "Boxing Day", + "2004-01-01": "New Year's Day", + "2004-04-09": "Good Friday", + "2004-04-12": "Easter Monday", + "2004-05-01": "Labour Day", + "2004-10-10": "Moi Day", + "2004-10-11": "Moi Day (Observed)", + "2004-10-20": "Kenyatta Day", + "2004-12-12": "Jamhuri Day", + "2004-12-13": "Jamhuri Day (Observed)", + "2004-12-25": "Christmas Day", + "2004-12-26": "Boxing Day", + "2004-12-27": "Boxing Day (Observed)", + "2005-01-01": "New Year's Day", + "2005-03-25": "Good Friday", + "2005-03-28": "Easter Monday", + "2005-05-01": "Labour Day", + "2005-05-02": "Labour Day (Observed)", + "2005-10-10": "Moi Day", + "2005-10-20": "Kenyatta Day", + "2005-12-12": "Jamhuri Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "Boxing Day", + "2005-12-27": "Christmas Day (Observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (Observed)", + "2006-04-14": "Good Friday", + "2006-04-17": "Easter Monday", + "2006-05-01": "Labour Day", + "2006-10-10": "Moi Day", + "2006-10-20": "Kenyatta Day", + "2006-12-12": "Jamhuri Day", + "2006-12-25": "Christmas Day", + "2006-12-26": "Boxing Day", + "2007-01-01": "New Year's Day", + "2007-04-06": "Good Friday", + "2007-04-09": "Easter Monday", + "2007-05-01": "Labour Day", + "2007-10-10": "Moi Day", + "2007-10-20": "Kenyatta Day", + "2007-12-12": "Jamhuri Day", + "2007-12-25": "Christmas Day", + "2007-12-26": "Boxing Day", + "2008-01-01": "New Year's Day", + "2008-03-21": "Good Friday", + "2008-03-24": "Easter Monday", + "2008-05-01": "Labour Day", + "2008-10-10": "Moi Day", + "2008-10-20": "Kenyatta Day", + "2008-12-12": "Jamhuri Day", + "2008-12-25": "Christmas Day", + "2008-12-26": "Boxing Day", + "2009-01-01": "New Year's Day", + "2009-04-10": "Good Friday", + "2009-04-13": "Easter Monday", + "2009-05-01": "Labour Day", + "2009-10-10": "Moi Day", + "2009-10-20": "Kenyatta Day", + "2009-12-12": "Jamhuri Day", + "2009-12-25": "Christmas Day", + "2009-12-26": "Boxing Day", + "2010-01-01": "New Year's Day", + "2010-04-02": "Good Friday", + "2010-04-05": "Easter Monday", + "2010-05-01": "Labour Day", + "2010-06-01": "Madaraka Day", + "2010-10-20": "Mashujaa Day", + "2010-12-12": "Jamhuri Day", + "2010-12-13": "Jamhuri Day (Observed)", + "2010-12-25": "Christmas Day", + "2010-12-26": "Boxing Day", + "2010-12-27": "Boxing Day (Observed)", + "2011-01-01": "New Year's Day", + "2011-04-22": "Good Friday", + "2011-04-25": "Easter Monday", + "2011-05-01": "Labour Day", + "2011-05-02": "Labour Day (Observed)", + "2011-06-01": "Madaraka Day", + "2011-10-20": "Mashujaa Day", + "2011-12-12": "Jamhuri Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "Boxing Day", + "2011-12-27": "Christmas Day (Observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (Observed)", + "2012-04-06": "Good Friday", + "2012-04-09": "Easter Monday", + "2012-05-01": "Labour Day", + "2012-06-01": "Madaraka Day", + "2012-10-20": "Mashujaa Day", + "2012-12-12": "Jamhuri Day", + "2012-12-25": "Christmas Day", + "2012-12-26": "Boxing Day", + "2013-01-01": "New Year's Day", + "2013-03-29": "Good Friday", + "2013-04-01": "Easter Monday", + "2013-05-01": "Labour Day", + "2013-06-01": "Madaraka Day", + "2013-10-20": "Mashujaa Day", + "2013-10-21": "Mashujaa Day (Observed)", + "2013-12-12": "Jamhuri Day", + "2013-12-25": "Christmas Day", + "2013-12-26": "Boxing Day", + "2014-01-01": "New Year's Day", + "2014-04-18": "Good Friday", + "2014-04-21": "Easter Monday", + "2014-05-01": "Labour Day", + "2014-06-01": "Madaraka Day", + "2014-06-02": "Madaraka Day (Observed)", + "2014-10-20": "Mashujaa Day", + "2014-12-12": "Jamhuri Day", + "2014-12-25": "Christmas Day", + "2014-12-26": "Boxing Day", + "2015-01-01": "New Year's Day", + "2015-04-03": "Good Friday", + "2015-04-06": "Easter Monday", + "2015-05-01": "Labour Day", + "2015-06-01": "Madaraka Day", + "2015-10-20": "Mashujaa Day", + "2015-12-12": "Jamhuri Day", + "2015-12-25": "Christmas Day", + "2015-12-26": "Boxing Day", + "2016-01-01": "New Year's Day", + "2016-03-25": "Good Friday", + "2016-03-28": "Easter Monday", + "2016-05-01": "Labour Day", + "2016-05-02": "Labour Day (Observed)", + "2016-06-01": "Madaraka Day", + "2016-10-20": "Mashujaa Day", + "2016-12-12": "Jamhuri Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "Boxing Day", + "2016-12-27": "Christmas Day (Observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (Observed)", + "2017-04-14": "Good Friday", + "2017-04-17": "Easter Monday", + "2017-05-01": "Labour Day", + "2017-06-01": "Madaraka Day", + "2017-10-20": "Mashujaa Day", + "2017-12-12": "Jamhuri Day", + "2017-12-25": "Christmas Day", + "2017-12-26": "Boxing Day", + "2018-01-01": "New Year's Day", + "2018-03-30": "Good Friday", + "2018-04-02": "Easter Monday", + "2018-05-01": "Labour Day", + "2018-06-01": "Madaraka Day", + "2018-10-10": "Moi Day", + "2018-10-20": "Mashujaa Day", + "2018-12-12": "Jamhuri Day", + "2018-12-25": "Christmas Day", + "2018-12-26": "Boxing Day", + "2019-01-01": "New Year's Day", + "2019-04-19": "Good Friday", + "2019-04-22": "Easter Monday", + "2019-05-01": "Labour Day", + "2019-06-01": "Madaraka Day", + "2019-10-10": "Moi Day", + "2019-10-20": "Mashujaa Day", + "2019-10-21": "Mashujaa Day (Observed)", + "2019-12-12": "Jamhuri Day", + "2019-12-25": "Christmas Day", + "2019-12-26": "Boxing Day", + "2020-01-01": "New Year's Day", + "2020-02-11": "President Moi Celebration of Life Day", + "2020-04-10": "Good Friday", + "2020-04-13": "Easter Monday", + "2020-05-01": "Labour Day", + "2020-06-01": "Madaraka Day", + "2020-10-10": "Moi Day", + "2020-10-20": "Mashujaa Day", + "2020-12-12": "Jamhuri Day", + "2020-12-25": "Christmas Day", + "2020-12-26": "Boxing Day", + "2021-01-01": "New Year's Day", + "2021-04-02": "Good Friday", + "2021-04-05": "Easter Monday", + "2021-05-01": "Labour Day", + "2021-06-01": "Madaraka Day", + "2021-10-10": "Utamaduni Day", + "2021-10-11": "Utamaduni Day (Observed)", + "2021-10-20": "Mashujaa Day", + "2021-12-12": "Jamhuri Day", + "2021-12-13": "Jamhuri Day (Observed)", + "2021-12-25": "Christmas Day", + "2021-12-26": "Boxing Day", + "2021-12-27": "Boxing Day (Observed)", + "2022-01-01": "New Year's Day", + "2022-04-15": "Good Friday", + "2022-04-18": "Easter Monday", + "2022-04-29": "State Funeral for Former President Mwai Kibaki", + "2022-05-01": "Labour Day", + "2022-05-02": "Labour Day (Observed)", + "2022-06-01": "Madaraka Day", + "2022-08-09": "Election Day", + "2022-09-10": "Day of Mourning for Queen Elizabeth II", + "2022-09-11": "Day of Mourning for Queen Elizabeth II", + "2022-09-12": "Day of Mourning for Queen Elizabeth II", + "2022-09-13": "Inauguration Day", + "2022-10-10": "Utamaduni Day", + "2022-10-20": "Mashujaa Day", + "2022-12-12": "Jamhuri Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "Boxing Day", + "2022-12-27": "Christmas Day (Observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (Observed)", + "2023-04-07": "Good Friday", + "2023-04-10": "Easter Monday", + "2023-05-01": "Labour Day", + "2023-06-01": "Madaraka Day", + "2023-10-10": "Utamaduni Day", + "2023-10-20": "Mashujaa Day", + "2023-12-12": "Jamhuri Day", + "2023-12-25": "Christmas Day", + "2023-12-26": "Boxing Day", + "2024-01-01": "New Year's Day", + "2024-03-29": "Good Friday", + "2024-04-01": "Easter Monday", + "2024-05-01": "Labour Day", + "2024-06-01": "Madaraka Day", + "2024-10-10": "Utamaduni Day", + "2024-10-20": "Mashujaa Day", + "2024-10-21": "Mashujaa Day (Observed)", + "2024-12-12": "Jamhuri Day", + "2024-12-25": "Christmas Day", + "2024-12-26": "Boxing Day", + "2025-01-01": "New Year's Day", + "2025-04-18": "Good Friday", + "2025-04-21": "Easter Monday", + "2025-05-01": "Labour Day", + "2025-06-01": "Madaraka Day", + "2025-06-02": "Madaraka Day (Observed)", + "2025-10-10": "Utamaduni Day", + "2025-10-20": "Mashujaa Day", + "2025-12-12": "Jamhuri Day", + "2025-12-25": "Christmas Day", + "2025-12-26": "Boxing Day", + "2026-01-01": "New Year's Day", + "2026-04-03": "Good Friday", + "2026-04-06": "Easter Monday", + "2026-05-01": "Labour Day", + "2026-06-01": "Madaraka Day", + "2026-10-10": "Utamaduni Day", + "2026-10-20": "Mashujaa Day", + "2026-12-12": "Jamhuri Day", + "2026-12-25": "Christmas Day", + "2026-12-26": "Boxing Day", + "2027-01-01": "New Year's Day", + "2027-03-26": "Good Friday", + "2027-03-29": "Easter Monday", + "2027-05-01": "Labour Day", + "2027-06-01": "Madaraka Day", + "2027-10-10": "Utamaduni Day", + "2027-10-11": "Utamaduni Day (Observed)", + "2027-10-20": "Mashujaa Day", + "2027-12-12": "Jamhuri Day", + "2027-12-13": "Jamhuri Day (Observed)", + "2027-12-25": "Christmas Day", + "2027-12-26": "Boxing Day", + "2027-12-27": "Boxing Day (Observed)", + "2028-01-01": "New Year's Day", + "2028-04-14": "Good Friday", + "2028-04-17": "Easter Monday", + "2028-05-01": "Labour Day", + "2028-06-01": "Madaraka Day", + "2028-10-10": "Utamaduni Day", + "2028-10-20": "Mashujaa Day", + "2028-12-12": "Jamhuri Day", + "2028-12-25": "Christmas Day", + "2028-12-26": "Boxing Day", + "2029-01-01": "New Year's Day", + "2029-03-30": "Good Friday", + "2029-04-02": "Easter Monday", + "2029-05-01": "Labour Day", + "2029-06-01": "Madaraka Day", + "2029-10-10": "Utamaduni Day", + "2029-10-20": "Mashujaa Day", + "2029-12-12": "Jamhuri Day", + "2029-12-25": "Christmas Day", + "2029-12-26": "Boxing Day", + "2030-01-01": "New Year's Day", + "2030-04-19": "Good Friday", + "2030-04-22": "Easter Monday", + "2030-05-01": "Labour Day", + "2030-06-01": "Madaraka Day", + "2030-10-10": "Utamaduni Day", + "2030-10-20": "Mashujaa Day", + "2030-10-21": "Mashujaa Day (Observed)", + "2030-12-12": "Jamhuri Day", + "2030-12-25": "Christmas Day", + "2030-12-26": "Boxing Day", + "2031-01-01": "New Year's Day", + "2031-04-11": "Good Friday", + "2031-04-14": "Easter Monday", + "2031-05-01": "Labour Day", + "2031-06-01": "Madaraka Day", + "2031-06-02": "Madaraka Day (Observed)", + "2031-10-10": "Utamaduni Day", + "2031-10-20": "Mashujaa Day", + "2031-12-12": "Jamhuri Day", + "2031-12-25": "Christmas Day", + "2031-12-26": "Boxing Day", + "2032-01-01": "New Year's Day", + "2032-03-26": "Good Friday", + "2032-03-29": "Easter Monday", + "2032-05-01": "Labour Day", + "2032-06-01": "Madaraka Day", + "2032-10-10": "Utamaduni Day", + "2032-10-11": "Utamaduni Day (Observed)", + "2032-10-20": "Mashujaa Day", + "2032-12-12": "Jamhuri Day", + "2032-12-13": "Jamhuri Day (Observed)", + "2032-12-25": "Christmas Day", + "2032-12-26": "Boxing Day", + "2032-12-27": "Boxing Day (Observed)", + "2033-01-01": "New Year's Day", + "2033-04-15": "Good Friday", + "2033-04-18": "Easter Monday", + "2033-05-01": "Labour Day", + "2033-05-02": "Labour Day (Observed)", + "2033-06-01": "Madaraka Day", + "2033-10-10": "Utamaduni Day", + "2033-10-20": "Mashujaa Day", + "2033-12-12": "Jamhuri Day", + "2033-12-25": "Christmas Day", + "2033-12-26": "Boxing Day", + "2033-12-27": "Christmas Day (Observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-04-07": "Good Friday", + "2034-04-10": "Easter Monday", + "2034-05-01": "Labour Day", + "2034-06-01": "Madaraka Day", + "2034-10-10": "Utamaduni Day", + "2034-10-20": "Mashujaa Day", + "2034-12-12": "Jamhuri Day", + "2034-12-25": "Christmas Day", + "2034-12-26": "Boxing Day", + "2035-01-01": "New Year's Day", + "2035-03-23": "Good Friday", + "2035-03-26": "Easter Monday", + "2035-05-01": "Labour Day", + "2035-06-01": "Madaraka Day", + "2035-10-10": "Utamaduni Day", + "2035-10-20": "Mashujaa Day", + "2035-12-12": "Jamhuri Day", + "2035-12-25": "Christmas Day", + "2035-12-26": "Boxing Day", + "2036-01-01": "New Year's Day", + "2036-04-11": "Good Friday", + "2036-04-14": "Easter Monday", + "2036-05-01": "Labour Day", + "2036-06-01": "Madaraka Day", + "2036-06-02": "Madaraka Day (Observed)", + "2036-10-10": "Utamaduni Day", + "2036-10-20": "Mashujaa Day", + "2036-12-12": "Jamhuri Day", + "2036-12-25": "Christmas Day", + "2036-12-26": "Boxing Day", + "2037-01-01": "New Year's Day", + "2037-04-03": "Good Friday", + "2037-04-06": "Easter Monday", + "2037-05-01": "Labour Day", + "2037-06-01": "Madaraka Day", + "2037-10-10": "Utamaduni Day", + "2037-10-20": "Mashujaa Day", + "2037-12-12": "Jamhuri Day", + "2037-12-25": "Christmas Day", + "2037-12-26": "Boxing Day", + "2038-01-01": "New Year's Day", + "2038-04-23": "Good Friday", + "2038-04-26": "Easter Monday", + "2038-05-01": "Labour Day", + "2038-06-01": "Madaraka Day", + "2038-10-10": "Utamaduni Day", + "2038-10-11": "Utamaduni Day (Observed)", + "2038-10-20": "Mashujaa Day", + "2038-12-12": "Jamhuri Day", + "2038-12-13": "Jamhuri Day (Observed)", + "2038-12-25": "Christmas Day", + "2038-12-26": "Boxing Day", + "2038-12-27": "Boxing Day (Observed)", + "2039-01-01": "New Year's Day", + "2039-04-08": "Good Friday", + "2039-04-11": "Easter Monday", + "2039-05-01": "Labour Day", + "2039-05-02": "Labour Day (Observed)", + "2039-06-01": "Madaraka Day", + "2039-10-10": "Utamaduni Day", + "2039-10-20": "Mashujaa Day", + "2039-12-12": "Jamhuri Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Boxing Day", + "2039-12-27": "Christmas Day (Observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (Observed)", + "2040-03-30": "Good Friday", + "2040-04-02": "Easter Monday", + "2040-05-01": "Labour Day", + "2040-06-01": "Madaraka Day", + "2040-10-10": "Utamaduni Day", + "2040-10-20": "Mashujaa Day", + "2040-12-12": "Jamhuri Day", + "2040-12-25": "Christmas Day", + "2040-12-26": "Boxing Day", + "2041-01-01": "New Year's Day", + "2041-04-19": "Good Friday", + "2041-04-22": "Easter Monday", + "2041-05-01": "Labour Day", + "2041-06-01": "Madaraka Day", + "2041-10-10": "Utamaduni Day", + "2041-10-20": "Mashujaa Day", + "2041-10-21": "Mashujaa Day (Observed)", + "2041-12-12": "Jamhuri Day", + "2041-12-25": "Christmas Day", + "2041-12-26": "Boxing Day", + "2042-01-01": "New Year's Day", + "2042-04-04": "Good Friday", + "2042-04-07": "Easter Monday", + "2042-05-01": "Labour Day", + "2042-06-01": "Madaraka Day", + "2042-06-02": "Madaraka Day (Observed)", + "2042-10-10": "Utamaduni Day", + "2042-10-20": "Mashujaa Day", + "2042-12-12": "Jamhuri Day", + "2042-12-25": "Christmas Day", + "2042-12-26": "Boxing Day", + "2043-01-01": "New Year's Day", + "2043-03-27": "Good Friday", + "2043-03-30": "Easter Monday", + "2043-05-01": "Labour Day", + "2043-06-01": "Madaraka Day", + "2043-10-10": "Utamaduni Day", + "2043-10-20": "Mashujaa Day", + "2043-12-12": "Jamhuri Day", + "2043-12-25": "Christmas Day", + "2043-12-26": "Boxing Day", + "2044-01-01": "New Year's Day", + "2044-04-15": "Good Friday", + "2044-04-18": "Easter Monday", + "2044-05-01": "Labour Day", + "2044-05-02": "Labour Day (Observed)", + "2044-06-01": "Madaraka Day", + "2044-10-10": "Utamaduni Day", + "2044-10-20": "Mashujaa Day", + "2044-12-12": "Jamhuri Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "Boxing Day", + "2044-12-27": "Christmas Day (Observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (Observed)", + "2045-04-07": "Good Friday", + "2045-04-10": "Easter Monday", + "2045-05-01": "Labour Day", + "2045-06-01": "Madaraka Day", + "2045-10-10": "Utamaduni Day", + "2045-10-20": "Mashujaa Day", + "2045-12-12": "Jamhuri Day", + "2045-12-25": "Christmas Day", + "2045-12-26": "Boxing Day", + "2046-01-01": "New Year's Day", + "2046-03-23": "Good Friday", + "2046-03-26": "Easter Monday", + "2046-05-01": "Labour Day", + "2046-06-01": "Madaraka Day", + "2046-10-10": "Utamaduni Day", + "2046-10-20": "Mashujaa Day", + "2046-12-12": "Jamhuri Day", + "2046-12-25": "Christmas Day", + "2046-12-26": "Boxing Day", + "2047-01-01": "New Year's Day", + "2047-04-12": "Good Friday", + "2047-04-15": "Easter Monday", + "2047-05-01": "Labour Day", + "2047-06-01": "Madaraka Day", + "2047-10-10": "Utamaduni Day", + "2047-10-20": "Mashujaa Day", + "2047-10-21": "Mashujaa Day (Observed)", + "2047-12-12": "Jamhuri Day", + "2047-12-25": "Christmas Day", + "2047-12-26": "Boxing Day", + "2048-01-01": "New Year's Day", + "2048-04-03": "Good Friday", + "2048-04-06": "Easter Monday", + "2048-05-01": "Labour Day", + "2048-06-01": "Madaraka Day", + "2048-10-10": "Utamaduni Day", + "2048-10-20": "Mashujaa Day", + "2048-12-12": "Jamhuri Day", + "2048-12-25": "Christmas Day", + "2048-12-26": "Boxing Day", + "2049-01-01": "New Year's Day", + "2049-04-16": "Good Friday", + "2049-04-19": "Easter Monday", + "2049-05-01": "Labour Day", + "2049-06-01": "Madaraka Day", + "2049-10-10": "Utamaduni Day", + "2049-10-11": "Utamaduni Day (Observed)", + "2049-10-20": "Mashujaa Day", + "2049-12-12": "Jamhuri Day", + "2049-12-13": "Jamhuri Day (Observed)", + "2049-12-25": "Christmas Day", + "2049-12-26": "Boxing Day", + "2049-12-27": "Boxing Day (Observed)", + "2050-01-01": "New Year's Day", + "2050-04-08": "Good Friday", + "2050-04-11": "Easter Monday", + "2050-05-01": "Labour Day", + "2050-05-02": "Labour Day (Observed)", + "2050-06-01": "Madaraka Day", + "2050-10-10": "Utamaduni Day", + "2050-10-20": "Mashujaa Day", + "2050-12-12": "Jamhuri Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "Boxing Day", + "2050-12-27": "Christmas Day (Observed)" +} diff --git a/snapshots/countries/KG.json b/snapshots/countries/KG.json new file mode 100644 index 000000000..f5d063602 --- /dev/null +++ b/snapshots/countries/KG.json @@ -0,0 +1,1548 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-07": "Christmas Day", + "1950-02-23": "Fatherland Defender's Day", + "1950-03-08": "International Women's Day", + "1950-03-21": "Nooruz Mairamy", + "1950-05-01": "International Workers' Day", + "1950-05-05": "Constitution Day", + "1950-05-09": "Victory Day", + "1950-07-16": "Orozo Ait* (*estimated)", + "1950-07-17": "Orozo Ait* (*estimated)", + "1950-08-31": "Independence Day", + "1950-09-23": "Kurman Ait* (*estimated)", + "1950-11-07": "Days of History and Commemoration of Ancestors", + "1950-11-08": "Days of History and Commemoration of Ancestors", + "1950-12-31": "New Year's Eve", + "1951-01-01": "New Year's Day", + "1951-01-07": "Christmas Day", + "1951-02-23": "Fatherland Defender's Day", + "1951-03-08": "International Women's Day", + "1951-03-21": "Nooruz Mairamy", + "1951-05-01": "International Workers' Day", + "1951-05-05": "Constitution Day", + "1951-05-09": "Victory Day", + "1951-07-06": "Orozo Ait* (*estimated)", + "1951-07-07": "Orozo Ait* (*estimated)", + "1951-08-31": "Independence Day", + "1951-09-12": "Kurman Ait* (*estimated)", + "1951-11-07": "Days of History and Commemoration of Ancestors", + "1951-11-08": "Days of History and Commemoration of Ancestors", + "1951-12-31": "New Year's Eve", + "1952-01-01": "New Year's Day", + "1952-01-07": "Christmas Day", + "1952-02-23": "Fatherland Defender's Day", + "1952-03-08": "International Women's Day", + "1952-03-21": "Nooruz Mairamy", + "1952-05-01": "International Workers' Day", + "1952-05-05": "Constitution Day", + "1952-05-09": "Victory Day", + "1952-06-23": "Orozo Ait* (*estimated)", + "1952-06-24": "Orozo Ait* (*estimated)", + "1952-08-31": "Independence Day; Kurman Ait* (*estimated)", + "1952-11-07": "Days of History and Commemoration of Ancestors", + "1952-11-08": "Days of History and Commemoration of Ancestors", + "1952-12-31": "New Year's Eve", + "1953-01-01": "New Year's Day", + "1953-01-07": "Christmas Day", + "1953-02-23": "Fatherland Defender's Day", + "1953-03-08": "International Women's Day", + "1953-03-21": "Nooruz Mairamy", + "1953-05-01": "International Workers' Day", + "1953-05-05": "Constitution Day", + "1953-05-09": "Victory Day", + "1953-06-13": "Orozo Ait* (*estimated)", + "1953-06-14": "Orozo Ait* (*estimated)", + "1953-08-20": "Kurman Ait* (*estimated)", + "1953-08-31": "Independence Day", + "1953-11-07": "Days of History and Commemoration of Ancestors", + "1953-11-08": "Days of History and Commemoration of Ancestors", + "1953-12-31": "New Year's Eve", + "1954-01-01": "New Year's Day", + "1954-01-07": "Christmas Day", + "1954-02-23": "Fatherland Defender's Day", + "1954-03-08": "International Women's Day", + "1954-03-21": "Nooruz Mairamy", + "1954-05-01": "International Workers' Day", + "1954-05-05": "Constitution Day", + "1954-05-09": "Victory Day", + "1954-06-02": "Orozo Ait* (*estimated)", + "1954-06-03": "Orozo Ait* (*estimated)", + "1954-08-09": "Kurman Ait* (*estimated)", + "1954-08-31": "Independence Day", + "1954-11-07": "Days of History and Commemoration of Ancestors", + "1954-11-08": "Days of History and Commemoration of Ancestors", + "1954-12-31": "New Year's Eve", + "1955-01-01": "New Year's Day", + "1955-01-07": "Christmas Day", + "1955-02-23": "Fatherland Defender's Day", + "1955-03-08": "International Women's Day", + "1955-03-21": "Nooruz Mairamy", + "1955-05-01": "International Workers' Day", + "1955-05-05": "Constitution Day", + "1955-05-09": "Victory Day", + "1955-05-23": "Orozo Ait* (*estimated)", + "1955-05-24": "Orozo Ait* (*estimated)", + "1955-07-30": "Kurman Ait* (*estimated)", + "1955-08-31": "Independence Day", + "1955-11-07": "Days of History and Commemoration of Ancestors", + "1955-11-08": "Days of History and Commemoration of Ancestors", + "1955-12-31": "New Year's Eve", + "1956-01-01": "New Year's Day", + "1956-01-07": "Christmas Day", + "1956-02-23": "Fatherland Defender's Day", + "1956-03-08": "International Women's Day", + "1956-03-21": "Nooruz Mairamy", + "1956-05-01": "International Workers' Day", + "1956-05-05": "Constitution Day", + "1956-05-09": "Victory Day", + "1956-05-11": "Orozo Ait* (*estimated)", + "1956-05-12": "Orozo Ait* (*estimated)", + "1956-07-19": "Kurman Ait* (*estimated)", + "1956-08-31": "Independence Day", + "1956-11-07": "Days of History and Commemoration of Ancestors", + "1956-11-08": "Days of History and Commemoration of Ancestors", + "1956-12-31": "New Year's Eve", + "1957-01-01": "New Year's Day", + "1957-01-07": "Christmas Day", + "1957-02-23": "Fatherland Defender's Day", + "1957-03-08": "International Women's Day", + "1957-03-21": "Nooruz Mairamy", + "1957-05-01": "International Workers' Day; Orozo Ait* (*estimated)", + "1957-05-02": "Orozo Ait* (*estimated)", + "1957-05-05": "Constitution Day", + "1957-05-09": "Victory Day", + "1957-07-08": "Kurman Ait* (*estimated)", + "1957-08-31": "Independence Day", + "1957-11-07": "Days of History and Commemoration of Ancestors", + "1957-11-08": "Days of History and Commemoration of Ancestors", + "1957-12-31": "New Year's Eve", + "1958-01-01": "New Year's Day", + "1958-01-07": "Christmas Day", + "1958-02-23": "Fatherland Defender's Day", + "1958-03-08": "International Women's Day", + "1958-03-21": "Nooruz Mairamy", + "1958-04-20": "Orozo Ait* (*estimated)", + "1958-04-21": "Orozo Ait* (*estimated)", + "1958-05-01": "International Workers' Day", + "1958-05-05": "Constitution Day", + "1958-05-09": "Victory Day", + "1958-06-27": "Kurman Ait* (*estimated)", + "1958-08-31": "Independence Day", + "1958-11-07": "Days of History and Commemoration of Ancestors", + "1958-11-08": "Days of History and Commemoration of Ancestors", + "1958-12-31": "New Year's Eve", + "1959-01-01": "New Year's Day", + "1959-01-07": "Christmas Day", + "1959-02-23": "Fatherland Defender's Day", + "1959-03-08": "International Women's Day", + "1959-03-21": "Nooruz Mairamy", + "1959-04-10": "Orozo Ait* (*estimated)", + "1959-04-11": "Orozo Ait* (*estimated)", + "1959-05-01": "International Workers' Day", + "1959-05-05": "Constitution Day", + "1959-05-09": "Victory Day", + "1959-06-17": "Kurman Ait* (*estimated)", + "1959-08-31": "Independence Day", + "1959-11-07": "Days of History and Commemoration of Ancestors", + "1959-11-08": "Days of History and Commemoration of Ancestors", + "1959-12-31": "New Year's Eve", + "1960-01-01": "New Year's Day", + "1960-01-07": "Christmas Day", + "1960-02-23": "Fatherland Defender's Day", + "1960-03-08": "International Women's Day", + "1960-03-21": "Nooruz Mairamy", + "1960-03-28": "Orozo Ait* (*estimated)", + "1960-03-29": "Orozo Ait* (*estimated)", + "1960-05-01": "International Workers' Day", + "1960-05-05": "Constitution Day", + "1960-05-09": "Victory Day", + "1960-06-04": "Kurman Ait* (*estimated)", + "1960-08-31": "Independence Day", + "1960-11-07": "Days of History and Commemoration of Ancestors", + "1960-11-08": "Days of History and Commemoration of Ancestors", + "1960-12-31": "New Year's Eve", + "1961-01-01": "New Year's Day", + "1961-01-07": "Christmas Day", + "1961-02-23": "Fatherland Defender's Day", + "1961-03-08": "International Women's Day", + "1961-03-18": "Orozo Ait* (*estimated)", + "1961-03-19": "Orozo Ait* (*estimated)", + "1961-03-21": "Nooruz Mairamy", + "1961-05-01": "International Workers' Day", + "1961-05-05": "Constitution Day", + "1961-05-09": "Victory Day", + "1961-05-25": "Kurman Ait* (*estimated)", + "1961-08-31": "Independence Day", + "1961-11-07": "Days of History and Commemoration of Ancestors", + "1961-11-08": "Days of History and Commemoration of Ancestors", + "1961-12-31": "New Year's Eve", + "1962-01-01": "New Year's Day", + "1962-01-07": "Christmas Day", + "1962-02-23": "Fatherland Defender's Day", + "1962-03-07": "Orozo Ait* (*estimated)", + "1962-03-08": "International Women's Day; Orozo Ait* (*estimated)", + "1962-03-21": "Nooruz Mairamy", + "1962-05-01": "International Workers' Day", + "1962-05-05": "Constitution Day", + "1962-05-09": "Victory Day", + "1962-05-14": "Kurman Ait* (*estimated)", + "1962-08-31": "Independence Day", + "1962-11-07": "Days of History and Commemoration of Ancestors", + "1962-11-08": "Days of History and Commemoration of Ancestors", + "1962-12-31": "New Year's Eve", + "1963-01-01": "New Year's Day", + "1963-01-07": "Christmas Day", + "1963-02-23": "Fatherland Defender's Day", + "1963-02-24": "Orozo Ait* (*estimated)", + "1963-02-25": "Orozo Ait* (*estimated)", + "1963-03-08": "International Women's Day", + "1963-03-21": "Nooruz Mairamy", + "1963-05-01": "International Workers' Day", + "1963-05-03": "Kurman Ait* (*estimated)", + "1963-05-05": "Constitution Day", + "1963-05-09": "Victory Day", + "1963-08-31": "Independence Day", + "1963-11-07": "Days of History and Commemoration of Ancestors", + "1963-11-08": "Days of History and Commemoration of Ancestors", + "1963-12-31": "New Year's Eve", + "1964-01-01": "New Year's Day", + "1964-01-07": "Christmas Day", + "1964-02-14": "Orozo Ait* (*estimated)", + "1964-02-15": "Orozo Ait* (*estimated)", + "1964-02-23": "Fatherland Defender's Day", + "1964-03-08": "International Women's Day", + "1964-03-21": "Nooruz Mairamy", + "1964-04-22": "Kurman Ait* (*estimated)", + "1964-05-01": "International Workers' Day", + "1964-05-05": "Constitution Day", + "1964-05-09": "Victory Day", + "1964-08-31": "Independence Day", + "1964-11-07": "Days of History and Commemoration of Ancestors", + "1964-11-08": "Days of History and Commemoration of Ancestors", + "1964-12-31": "New Year's Eve", + "1965-01-01": "New Year's Day", + "1965-01-07": "Christmas Day", + "1965-02-02": "Orozo Ait* (*estimated)", + "1965-02-03": "Orozo Ait* (*estimated)", + "1965-02-23": "Fatherland Defender's Day", + "1965-03-08": "International Women's Day", + "1965-03-21": "Nooruz Mairamy", + "1965-04-11": "Kurman Ait* (*estimated)", + "1965-05-01": "International Workers' Day", + "1965-05-05": "Constitution Day", + "1965-05-09": "Victory Day", + "1965-08-31": "Independence Day", + "1965-11-07": "Days of History and Commemoration of Ancestors", + "1965-11-08": "Days of History and Commemoration of Ancestors", + "1965-12-31": "New Year's Eve", + "1966-01-01": "New Year's Day", + "1966-01-07": "Christmas Day", + "1966-01-22": "Orozo Ait* (*estimated)", + "1966-01-23": "Orozo Ait* (*estimated)", + "1966-02-23": "Fatherland Defender's Day", + "1966-03-08": "International Women's Day", + "1966-03-21": "Nooruz Mairamy", + "1966-04-01": "Kurman Ait* (*estimated)", + "1966-05-01": "International Workers' Day", + "1966-05-05": "Constitution Day", + "1966-05-09": "Victory Day", + "1966-08-31": "Independence Day", + "1966-11-07": "Days of History and Commemoration of Ancestors", + "1966-11-08": "Days of History and Commemoration of Ancestors", + "1966-12-31": "New Year's Eve", + "1967-01-01": "New Year's Day", + "1967-01-07": "Christmas Day", + "1967-01-12": "Orozo Ait* (*estimated)", + "1967-01-13": "Orozo Ait* (*estimated)", + "1967-02-23": "Fatherland Defender's Day", + "1967-03-08": "International Women's Day", + "1967-03-21": "Kurman Ait* (*estimated); Nooruz Mairamy", + "1967-05-01": "International Workers' Day", + "1967-05-05": "Constitution Day", + "1967-05-09": "Victory Day", + "1967-08-31": "Independence Day", + "1967-11-07": "Days of History and Commemoration of Ancestors", + "1967-11-08": "Days of History and Commemoration of Ancestors", + "1967-12-31": "New Year's Eve", + "1968-01-01": "New Year's Day; Orozo Ait* (*estimated)", + "1968-01-02": "Orozo Ait* (*estimated)", + "1968-01-07": "Christmas Day", + "1968-02-23": "Fatherland Defender's Day", + "1968-03-08": "International Women's Day", + "1968-03-09": "Kurman Ait* (*estimated)", + "1968-03-21": "Nooruz Mairamy", + "1968-05-01": "International Workers' Day", + "1968-05-05": "Constitution Day", + "1968-05-09": "Victory Day", + "1968-08-31": "Independence Day", + "1968-11-07": "Days of History and Commemoration of Ancestors", + "1968-11-08": "Days of History and Commemoration of Ancestors", + "1968-12-21": "Orozo Ait* (*estimated)", + "1968-12-22": "Orozo Ait* (*estimated)", + "1968-12-31": "New Year's Eve", + "1969-01-01": "New Year's Day", + "1969-01-07": "Christmas Day", + "1969-02-23": "Fatherland Defender's Day", + "1969-02-27": "Kurman Ait* (*estimated)", + "1969-03-08": "International Women's Day", + "1969-03-21": "Nooruz Mairamy", + "1969-05-01": "International Workers' Day", + "1969-05-05": "Constitution Day", + "1969-05-09": "Victory Day", + "1969-08-31": "Independence Day", + "1969-11-07": "Days of History and Commemoration of Ancestors", + "1969-11-08": "Days of History and Commemoration of Ancestors", + "1969-12-10": "Orozo Ait* (*estimated)", + "1969-12-11": "Orozo Ait* (*estimated)", + "1969-12-31": "New Year's Eve", + "1970-01-01": "New Year's Day", + "1970-01-07": "Christmas Day", + "1970-02-16": "Kurman Ait* (*estimated)", + "1970-02-23": "Fatherland Defender's Day", + "1970-03-08": "International Women's Day", + "1970-03-21": "Nooruz Mairamy", + "1970-05-01": "International Workers' Day", + "1970-05-05": "Constitution Day", + "1970-05-09": "Victory Day", + "1970-08-31": "Independence Day", + "1970-11-07": "Days of History and Commemoration of Ancestors", + "1970-11-08": "Days of History and Commemoration of Ancestors", + "1970-11-30": "Orozo Ait* (*estimated)", + "1970-12-01": "Orozo Ait* (*estimated)", + "1970-12-31": "New Year's Eve", + "1971-01-01": "New Year's Day", + "1971-01-07": "Christmas Day", + "1971-02-06": "Kurman Ait* (*estimated)", + "1971-02-23": "Fatherland Defender's Day", + "1971-03-08": "International Women's Day", + "1971-03-21": "Nooruz Mairamy", + "1971-05-01": "International Workers' Day", + "1971-05-05": "Constitution Day", + "1971-05-09": "Victory Day", + "1971-08-31": "Independence Day", + "1971-11-07": "Days of History and Commemoration of Ancestors", + "1971-11-08": "Days of History and Commemoration of Ancestors", + "1971-11-19": "Orozo Ait* (*estimated)", + "1971-11-20": "Orozo Ait* (*estimated)", + "1971-12-31": "New Year's Eve", + "1972-01-01": "New Year's Day", + "1972-01-07": "Christmas Day", + "1972-01-26": "Kurman Ait* (*estimated)", + "1972-02-23": "Fatherland Defender's Day", + "1972-03-08": "International Women's Day", + "1972-03-21": "Nooruz Mairamy", + "1972-05-01": "International Workers' Day", + "1972-05-05": "Constitution Day", + "1972-05-09": "Victory Day", + "1972-08-31": "Independence Day", + "1972-11-07": "Days of History and Commemoration of Ancestors; Orozo Ait* (*estimated)", + "1972-11-08": "Days of History and Commemoration of Ancestors; Orozo Ait* (*estimated)", + "1972-12-31": "New Year's Eve", + "1973-01-01": "New Year's Day", + "1973-01-07": "Christmas Day", + "1973-01-14": "Kurman Ait* (*estimated)", + "1973-02-23": "Fatherland Defender's Day", + "1973-03-08": "International Women's Day", + "1973-03-21": "Nooruz Mairamy", + "1973-05-01": "International Workers' Day", + "1973-05-05": "Constitution Day", + "1973-05-09": "Victory Day", + "1973-08-31": "Independence Day", + "1973-10-27": "Orozo Ait* (*estimated)", + "1973-10-28": "Orozo Ait* (*estimated)", + "1973-11-07": "Days of History and Commemoration of Ancestors", + "1973-11-08": "Days of History and Commemoration of Ancestors", + "1973-12-31": "New Year's Eve", + "1974-01-01": "New Year's Day", + "1974-01-03": "Kurman Ait* (*estimated)", + "1974-01-07": "Christmas Day", + "1974-02-23": "Fatherland Defender's Day", + "1974-03-08": "International Women's Day", + "1974-03-21": "Nooruz Mairamy", + "1974-05-01": "International Workers' Day", + "1974-05-05": "Constitution Day", + "1974-05-09": "Victory Day", + "1974-08-31": "Independence Day", + "1974-10-16": "Orozo Ait* (*estimated)", + "1974-10-17": "Orozo Ait* (*estimated)", + "1974-11-07": "Days of History and Commemoration of Ancestors", + "1974-11-08": "Days of History and Commemoration of Ancestors", + "1974-12-24": "Kurman Ait* (*estimated)", + "1974-12-31": "New Year's Eve", + "1975-01-01": "New Year's Day", + "1975-01-07": "Christmas Day", + "1975-02-23": "Fatherland Defender's Day", + "1975-03-08": "International Women's Day", + "1975-03-21": "Nooruz Mairamy", + "1975-05-01": "International Workers' Day", + "1975-05-05": "Constitution Day", + "1975-05-09": "Victory Day", + "1975-08-31": "Independence Day", + "1975-10-06": "Orozo Ait* (*estimated)", + "1975-10-07": "Orozo Ait* (*estimated)", + "1975-11-07": "Days of History and Commemoration of Ancestors", + "1975-11-08": "Days of History and Commemoration of Ancestors", + "1975-12-13": "Kurman Ait* (*estimated)", + "1975-12-31": "New Year's Eve", + "1976-01-01": "New Year's Day", + "1976-01-07": "Christmas Day", + "1976-02-23": "Fatherland Defender's Day", + "1976-03-08": "International Women's Day", + "1976-03-21": "Nooruz Mairamy", + "1976-05-01": "International Workers' Day", + "1976-05-05": "Constitution Day", + "1976-05-09": "Victory Day", + "1976-08-31": "Independence Day", + "1976-09-24": "Orozo Ait* (*estimated)", + "1976-09-25": "Orozo Ait* (*estimated)", + "1976-11-07": "Days of History and Commemoration of Ancestors", + "1976-11-08": "Days of History and Commemoration of Ancestors", + "1976-12-01": "Kurman Ait* (*estimated)", + "1976-12-31": "New Year's Eve", + "1977-01-01": "New Year's Day", + "1977-01-07": "Christmas Day", + "1977-02-23": "Fatherland Defender's Day", + "1977-03-08": "International Women's Day", + "1977-03-21": "Nooruz Mairamy", + "1977-05-01": "International Workers' Day", + "1977-05-05": "Constitution Day", + "1977-05-09": "Victory Day", + "1977-08-31": "Independence Day", + "1977-09-14": "Orozo Ait* (*estimated)", + "1977-09-15": "Orozo Ait* (*estimated)", + "1977-11-07": "Days of History and Commemoration of Ancestors", + "1977-11-08": "Days of History and Commemoration of Ancestors", + "1977-11-21": "Kurman Ait* (*estimated)", + "1977-12-31": "New Year's Eve", + "1978-01-01": "New Year's Day", + "1978-01-07": "Christmas Day", + "1978-02-23": "Fatherland Defender's Day", + "1978-03-08": "International Women's Day", + "1978-03-21": "Nooruz Mairamy", + "1978-05-01": "International Workers' Day", + "1978-05-05": "Constitution Day", + "1978-05-09": "Victory Day", + "1978-08-31": "Independence Day", + "1978-09-03": "Orozo Ait* (*estimated)", + "1978-09-04": "Orozo Ait* (*estimated)", + "1978-11-07": "Days of History and Commemoration of Ancestors", + "1978-11-08": "Days of History and Commemoration of Ancestors", + "1978-11-10": "Kurman Ait* (*estimated)", + "1978-12-31": "New Year's Eve", + "1979-01-01": "New Year's Day", + "1979-01-07": "Christmas Day", + "1979-02-23": "Fatherland Defender's Day", + "1979-03-08": "International Women's Day", + "1979-03-21": "Nooruz Mairamy", + "1979-05-01": "International Workers' Day", + "1979-05-05": "Constitution Day", + "1979-05-09": "Victory Day", + "1979-08-23": "Orozo Ait* (*estimated)", + "1979-08-24": "Orozo Ait* (*estimated)", + "1979-08-31": "Independence Day", + "1979-10-31": "Kurman Ait* (*estimated)", + "1979-11-07": "Days of History and Commemoration of Ancestors", + "1979-11-08": "Days of History and Commemoration of Ancestors", + "1979-12-31": "New Year's Eve", + "1980-01-01": "New Year's Day", + "1980-01-07": "Christmas Day", + "1980-02-23": "Fatherland Defender's Day", + "1980-03-08": "International Women's Day", + "1980-03-21": "Nooruz Mairamy", + "1980-05-01": "International Workers' Day", + "1980-05-05": "Constitution Day", + "1980-05-09": "Victory Day", + "1980-08-12": "Orozo Ait* (*estimated)", + "1980-08-13": "Orozo Ait* (*estimated)", + "1980-08-31": "Independence Day", + "1980-10-19": "Kurman Ait* (*estimated)", + "1980-11-07": "Days of History and Commemoration of Ancestors", + "1980-11-08": "Days of History and Commemoration of Ancestors", + "1980-12-31": "New Year's Eve", + "1981-01-01": "New Year's Day", + "1981-01-07": "Christmas Day", + "1981-02-23": "Fatherland Defender's Day", + "1981-03-08": "International Women's Day", + "1981-03-21": "Nooruz Mairamy", + "1981-05-01": "International Workers' Day", + "1981-05-05": "Constitution Day", + "1981-05-09": "Victory Day", + "1981-08-01": "Orozo Ait* (*estimated)", + "1981-08-02": "Orozo Ait* (*estimated)", + "1981-08-31": "Independence Day", + "1981-10-08": "Kurman Ait* (*estimated)", + "1981-11-07": "Days of History and Commemoration of Ancestors", + "1981-11-08": "Days of History and Commemoration of Ancestors", + "1981-12-31": "New Year's Eve", + "1982-01-01": "New Year's Day", + "1982-01-07": "Christmas Day", + "1982-02-23": "Fatherland Defender's Day", + "1982-03-08": "International Women's Day", + "1982-03-21": "Nooruz Mairamy", + "1982-05-01": "International Workers' Day", + "1982-05-05": "Constitution Day", + "1982-05-09": "Victory Day", + "1982-07-21": "Orozo Ait* (*estimated)", + "1982-07-22": "Orozo Ait* (*estimated)", + "1982-08-31": "Independence Day", + "1982-09-27": "Kurman Ait* (*estimated)", + "1982-11-07": "Days of History and Commemoration of Ancestors", + "1982-11-08": "Days of History and Commemoration of Ancestors", + "1982-12-31": "New Year's Eve", + "1983-01-01": "New Year's Day", + "1983-01-07": "Christmas Day", + "1983-02-23": "Fatherland Defender's Day", + "1983-03-08": "International Women's Day", + "1983-03-21": "Nooruz Mairamy", + "1983-05-01": "International Workers' Day", + "1983-05-05": "Constitution Day", + "1983-05-09": "Victory Day", + "1983-07-11": "Orozo Ait* (*estimated)", + "1983-07-12": "Orozo Ait* (*estimated)", + "1983-08-31": "Independence Day", + "1983-09-17": "Kurman Ait* (*estimated)", + "1983-11-07": "Days of History and Commemoration of Ancestors", + "1983-11-08": "Days of History and Commemoration of Ancestors", + "1983-12-31": "New Year's Eve", + "1984-01-01": "New Year's Day", + "1984-01-07": "Christmas Day", + "1984-02-23": "Fatherland Defender's Day", + "1984-03-08": "International Women's Day", + "1984-03-21": "Nooruz Mairamy", + "1984-05-01": "International Workers' Day", + "1984-05-05": "Constitution Day", + "1984-05-09": "Victory Day", + "1984-06-30": "Orozo Ait* (*estimated)", + "1984-07-01": "Orozo Ait* (*estimated)", + "1984-08-31": "Independence Day", + "1984-09-05": "Kurman Ait* (*estimated)", + "1984-11-07": "Days of History and Commemoration of Ancestors", + "1984-11-08": "Days of History and Commemoration of Ancestors", + "1984-12-31": "New Year's Eve", + "1985-01-01": "New Year's Day", + "1985-01-07": "Christmas Day", + "1985-02-23": "Fatherland Defender's Day", + "1985-03-08": "International Women's Day", + "1985-03-21": "Nooruz Mairamy", + "1985-05-01": "International Workers' Day", + "1985-05-05": "Constitution Day", + "1985-05-09": "Victory Day", + "1985-06-19": "Orozo Ait* (*estimated)", + "1985-06-20": "Orozo Ait* (*estimated)", + "1985-08-26": "Kurman Ait* (*estimated)", + "1985-08-31": "Independence Day", + "1985-11-07": "Days of History and Commemoration of Ancestors", + "1985-11-08": "Days of History and Commemoration of Ancestors", + "1985-12-31": "New Year's Eve", + "1986-01-01": "New Year's Day", + "1986-01-07": "Christmas Day", + "1986-02-23": "Fatherland Defender's Day", + "1986-03-08": "International Women's Day", + "1986-03-21": "Nooruz Mairamy", + "1986-05-01": "International Workers' Day", + "1986-05-05": "Constitution Day", + "1986-05-09": "Victory Day", + "1986-06-08": "Orozo Ait* (*estimated)", + "1986-06-09": "Orozo Ait* (*estimated)", + "1986-08-15": "Kurman Ait* (*estimated)", + "1986-08-31": "Independence Day", + "1986-11-07": "Days of History and Commemoration of Ancestors", + "1986-11-08": "Days of History and Commemoration of Ancestors", + "1986-12-31": "New Year's Eve", + "1987-01-01": "New Year's Day", + "1987-01-07": "Christmas Day", + "1987-02-23": "Fatherland Defender's Day", + "1987-03-08": "International Women's Day", + "1987-03-21": "Nooruz Mairamy", + "1987-05-01": "International Workers' Day", + "1987-05-05": "Constitution Day", + "1987-05-09": "Victory Day", + "1987-05-28": "Orozo Ait* (*estimated)", + "1987-05-29": "Orozo Ait* (*estimated)", + "1987-08-04": "Kurman Ait* (*estimated)", + "1987-08-31": "Independence Day", + "1987-11-07": "Days of History and Commemoration of Ancestors", + "1987-11-08": "Days of History and Commemoration of Ancestors", + "1987-12-31": "New Year's Eve", + "1988-01-01": "New Year's Day", + "1988-01-07": "Christmas Day", + "1988-02-23": "Fatherland Defender's Day", + "1988-03-08": "International Women's Day", + "1988-03-21": "Nooruz Mairamy", + "1988-05-01": "International Workers' Day", + "1988-05-05": "Constitution Day", + "1988-05-09": "Victory Day", + "1988-05-16": "Orozo Ait* (*estimated)", + "1988-05-17": "Orozo Ait* (*estimated)", + "1988-07-23": "Kurman Ait* (*estimated)", + "1988-08-31": "Independence Day", + "1988-11-07": "Days of History and Commemoration of Ancestors", + "1988-11-08": "Days of History and Commemoration of Ancestors", + "1988-12-31": "New Year's Eve", + "1989-01-01": "New Year's Day", + "1989-01-07": "Christmas Day", + "1989-02-23": "Fatherland Defender's Day", + "1989-03-08": "International Women's Day", + "1989-03-21": "Nooruz Mairamy", + "1989-05-01": "International Workers' Day", + "1989-05-05": "Constitution Day", + "1989-05-06": "Orozo Ait* (*estimated)", + "1989-05-07": "Orozo Ait* (*estimated)", + "1989-05-09": "Victory Day", + "1989-07-13": "Kurman Ait* (*estimated)", + "1989-08-31": "Independence Day", + "1989-11-07": "Days of History and Commemoration of Ancestors", + "1989-11-08": "Days of History and Commemoration of Ancestors", + "1989-12-31": "New Year's Eve", + "1990-01-01": "New Year's Day", + "1990-01-07": "Christmas Day", + "1990-02-23": "Fatherland Defender's Day", + "1990-03-08": "International Women's Day", + "1990-03-21": "Nooruz Mairamy", + "1990-04-26": "Orozo Ait* (*estimated)", + "1990-04-27": "Orozo Ait* (*estimated)", + "1990-05-01": "International Workers' Day", + "1990-05-05": "Constitution Day", + "1990-05-09": "Victory Day", + "1990-07-02": "Kurman Ait* (*estimated)", + "1990-08-31": "Independence Day", + "1990-11-07": "Days of History and Commemoration of Ancestors", + "1990-11-08": "Days of History and Commemoration of Ancestors", + "1990-12-31": "New Year's Eve", + "1991-01-01": "New Year's Day", + "1991-01-07": "Christmas Day", + "1991-02-23": "Fatherland Defender's Day", + "1991-03-08": "International Women's Day", + "1991-03-21": "Nooruz Mairamy", + "1991-04-15": "Orozo Ait* (*estimated)", + "1991-04-16": "Orozo Ait* (*estimated)", + "1991-05-01": "International Workers' Day", + "1991-05-05": "Constitution Day", + "1991-05-09": "Victory Day", + "1991-06-22": "Kurman Ait* (*estimated)", + "1991-08-31": "Independence Day", + "1991-11-07": "Days of History and Commemoration of Ancestors", + "1991-11-08": "Days of History and Commemoration of Ancestors", + "1991-12-31": "New Year's Eve", + "1992-01-01": "New Year's Day", + "1992-01-07": "Christmas Day", + "1992-02-23": "Fatherland Defender's Day", + "1992-03-08": "International Women's Day", + "1992-03-21": "Nooruz Mairamy", + "1992-04-04": "Orozo Ait* (*estimated)", + "1992-04-05": "Orozo Ait* (*estimated)", + "1992-05-01": "International Workers' Day", + "1992-05-05": "Constitution Day", + "1992-05-09": "Victory Day", + "1992-06-11": "Kurman Ait* (*estimated)", + "1992-08-31": "Independence Day", + "1992-11-07": "Days of History and Commemoration of Ancestors", + "1992-11-08": "Days of History and Commemoration of Ancestors", + "1992-12-31": "New Year's Eve", + "1993-01-01": "New Year's Day", + "1993-01-07": "Christmas Day", + "1993-02-23": "Fatherland Defender's Day", + "1993-03-08": "International Women's Day", + "1993-03-21": "Nooruz Mairamy", + "1993-03-24": "Orozo Ait* (*estimated)", + "1993-03-25": "Orozo Ait* (*estimated)", + "1993-05-01": "International Workers' Day", + "1993-05-05": "Constitution Day", + "1993-05-09": "Victory Day", + "1993-05-31": "Kurman Ait* (*estimated)", + "1993-08-31": "Independence Day", + "1993-11-07": "Days of History and Commemoration of Ancestors", + "1993-11-08": "Days of History and Commemoration of Ancestors", + "1993-12-31": "New Year's Eve", + "1994-01-01": "New Year's Day", + "1994-01-07": "Christmas Day", + "1994-02-23": "Fatherland Defender's Day", + "1994-03-08": "International Women's Day", + "1994-03-13": "Orozo Ait* (*estimated)", + "1994-03-14": "Orozo Ait* (*estimated)", + "1994-03-21": "Nooruz Mairamy", + "1994-05-01": "International Workers' Day", + "1994-05-05": "Constitution Day", + "1994-05-09": "Victory Day", + "1994-05-20": "Kurman Ait* (*estimated)", + "1994-08-31": "Independence Day", + "1994-11-07": "Days of History and Commemoration of Ancestors", + "1994-11-08": "Days of History and Commemoration of Ancestors", + "1994-12-31": "New Year's Eve", + "1995-01-01": "New Year's Day", + "1995-01-07": "Christmas Day", + "1995-02-23": "Fatherland Defender's Day", + "1995-03-02": "Orozo Ait* (*estimated)", + "1995-03-03": "Orozo Ait* (*estimated)", + "1995-03-08": "International Women's Day", + "1995-03-21": "Nooruz Mairamy", + "1995-05-01": "International Workers' Day", + "1995-05-05": "Constitution Day", + "1995-05-09": "Kurman Ait* (*estimated); Victory Day", + "1995-08-31": "Independence Day", + "1995-11-07": "Days of History and Commemoration of Ancestors", + "1995-11-08": "Days of History and Commemoration of Ancestors", + "1995-12-31": "New Year's Eve", + "1996-01-01": "New Year's Day", + "1996-01-07": "Christmas Day", + "1996-02-19": "Orozo Ait* (*estimated)", + "1996-02-20": "Orozo Ait* (*estimated)", + "1996-02-23": "Fatherland Defender's Day", + "1996-03-08": "International Women's Day", + "1996-03-21": "Nooruz Mairamy", + "1996-04-27": "Kurman Ait* (*estimated)", + "1996-05-01": "International Workers' Day", + "1996-05-05": "Constitution Day", + "1996-05-09": "Victory Day", + "1996-08-31": "Independence Day", + "1996-11-07": "Days of History and Commemoration of Ancestors", + "1996-11-08": "Days of History and Commemoration of Ancestors", + "1996-12-31": "New Year's Eve", + "1997-01-01": "New Year's Day", + "1997-01-07": "Christmas Day", + "1997-02-08": "Orozo Ait* (*estimated)", + "1997-02-09": "Orozo Ait* (*estimated)", + "1997-02-23": "Fatherland Defender's Day", + "1997-03-08": "International Women's Day", + "1997-03-21": "Nooruz Mairamy", + "1997-04-17": "Kurman Ait* (*estimated)", + "1997-05-01": "International Workers' Day", + "1997-05-05": "Constitution Day", + "1997-05-09": "Victory Day", + "1997-08-31": "Independence Day", + "1997-11-07": "Days of History and Commemoration of Ancestors", + "1997-11-08": "Days of History and Commemoration of Ancestors", + "1997-12-31": "New Year's Eve", + "1998-01-01": "New Year's Day", + "1998-01-07": "Christmas Day", + "1998-01-29": "Orozo Ait* (*estimated)", + "1998-01-30": "Orozo Ait* (*estimated)", + "1998-02-23": "Fatherland Defender's Day", + "1998-03-08": "International Women's Day", + "1998-03-21": "Nooruz Mairamy", + "1998-04-07": "Kurman Ait* (*estimated)", + "1998-05-01": "International Workers' Day", + "1998-05-05": "Constitution Day", + "1998-05-09": "Victory Day", + "1998-08-31": "Independence Day", + "1998-11-07": "Days of History and Commemoration of Ancestors", + "1998-11-08": "Days of History and Commemoration of Ancestors", + "1998-12-31": "New Year's Eve", + "1999-01-01": "New Year's Day", + "1999-01-07": "Christmas Day", + "1999-01-18": "Orozo Ait* (*estimated)", + "1999-01-19": "Orozo Ait* (*estimated)", + "1999-02-23": "Fatherland Defender's Day", + "1999-03-08": "International Women's Day", + "1999-03-21": "Nooruz Mairamy", + "1999-03-27": "Kurman Ait* (*estimated)", + "1999-05-01": "International Workers' Day", + "1999-05-05": "Constitution Day", + "1999-05-09": "Victory Day", + "1999-08-31": "Independence Day", + "1999-11-07": "Days of History and Commemoration of Ancestors", + "1999-11-08": "Days of History and Commemoration of Ancestors", + "1999-12-31": "New Year's Eve", + "2000-01-01": "New Year's Day", + "2000-01-07": "Christmas Day", + "2000-01-08": "Orozo Ait* (*estimated)", + "2000-01-09": "Orozo Ait* (*estimated)", + "2000-02-23": "Fatherland Defender's Day", + "2000-03-08": "International Women's Day", + "2000-03-16": "Kurman Ait* (*estimated)", + "2000-03-21": "Nooruz Mairamy", + "2000-05-01": "International Workers' Day", + "2000-05-05": "Constitution Day", + "2000-05-09": "Victory Day", + "2000-08-31": "Independence Day", + "2000-11-07": "Days of History and Commemoration of Ancestors", + "2000-11-08": "Days of History and Commemoration of Ancestors", + "2000-12-27": "Orozo Ait* (*estimated)", + "2000-12-28": "Orozo Ait* (*estimated)", + "2000-12-31": "New Year's Eve", + "2001-01-01": "New Year's Day", + "2001-01-07": "Christmas Day", + "2001-02-23": "Fatherland Defender's Day", + "2001-03-05": "Kurman Ait* (*estimated)", + "2001-03-08": "International Women's Day", + "2001-03-21": "Nooruz Mairamy", + "2001-05-01": "International Workers' Day", + "2001-05-05": "Constitution Day", + "2001-05-09": "Victory Day", + "2001-08-31": "Independence Day", + "2001-11-07": "Days of History and Commemoration of Ancestors", + "2001-11-08": "Days of History and Commemoration of Ancestors", + "2001-12-16": "Orozo Ait* (*estimated)", + "2001-12-17": "Orozo Ait* (*estimated)", + "2001-12-31": "New Year's Eve", + "2002-01-01": "New Year's Day", + "2002-01-07": "Christmas Day", + "2002-02-22": "Kurman Ait* (*estimated)", + "2002-02-23": "Fatherland Defender's Day", + "2002-03-08": "International Women's Day", + "2002-03-21": "Nooruz Mairamy", + "2002-05-01": "International Workers' Day", + "2002-05-05": "Constitution Day", + "2002-05-09": "Victory Day", + "2002-08-31": "Independence Day", + "2002-11-07": "Days of History and Commemoration of Ancestors", + "2002-11-08": "Days of History and Commemoration of Ancestors", + "2002-12-05": "Orozo Ait* (*estimated)", + "2002-12-06": "Orozo Ait* (*estimated)", + "2002-12-31": "New Year's Eve", + "2003-01-01": "New Year's Day", + "2003-01-07": "Christmas Day", + "2003-02-11": "Kurman Ait* (*estimated)", + "2003-02-23": "Fatherland Defender's Day", + "2003-03-08": "International Women's Day", + "2003-03-21": "Nooruz Mairamy", + "2003-05-01": "International Workers' Day", + "2003-05-05": "Constitution Day", + "2003-05-09": "Victory Day", + "2003-08-31": "Independence Day", + "2003-11-07": "Days of History and Commemoration of Ancestors", + "2003-11-08": "Days of History and Commemoration of Ancestors", + "2003-11-25": "Orozo Ait* (*estimated)", + "2003-11-26": "Orozo Ait* (*estimated)", + "2003-12-31": "New Year's Eve", + "2004-01-01": "New Year's Day", + "2004-01-07": "Christmas Day", + "2004-02-01": "Kurman Ait* (*estimated)", + "2004-02-23": "Fatherland Defender's Day", + "2004-03-08": "International Women's Day", + "2004-03-21": "Nooruz Mairamy", + "2004-05-01": "International Workers' Day", + "2004-05-05": "Constitution Day", + "2004-05-09": "Victory Day", + "2004-08-31": "Independence Day", + "2004-11-07": "Days of History and Commemoration of Ancestors", + "2004-11-08": "Days of History and Commemoration of Ancestors", + "2004-11-14": "Orozo Ait* (*estimated)", + "2004-11-15": "Orozo Ait* (*estimated)", + "2004-12-31": "New Year's Eve", + "2005-01-01": "New Year's Day", + "2005-01-07": "Christmas Day", + "2005-01-21": "Kurman Ait* (*estimated)", + "2005-02-23": "Fatherland Defender's Day", + "2005-03-08": "International Women's Day", + "2005-03-21": "Nooruz Mairamy", + "2005-05-01": "International Workers' Day", + "2005-05-05": "Constitution Day", + "2005-05-09": "Victory Day", + "2005-08-31": "Independence Day", + "2005-11-03": "Orozo Ait* (*estimated)", + "2005-11-04": "Orozo Ait* (*estimated)", + "2005-11-07": "Days of History and Commemoration of Ancestors", + "2005-11-08": "Days of History and Commemoration of Ancestors", + "2005-12-31": "New Year's Eve", + "2006-01-01": "New Year's Day", + "2006-01-07": "Christmas Day", + "2006-01-10": "Kurman Ait* (*estimated)", + "2006-02-23": "Fatherland Defender's Day", + "2006-03-08": "International Women's Day", + "2006-03-21": "Nooruz Mairamy", + "2006-05-01": "International Workers' Day", + "2006-05-05": "Constitution Day", + "2006-05-09": "Victory Day", + "2006-08-31": "Independence Day", + "2006-10-23": "Orozo Ait* (*estimated)", + "2006-10-24": "Orozo Ait* (*estimated)", + "2006-11-07": "Days of History and Commemoration of Ancestors", + "2006-11-08": "Days of History and Commemoration of Ancestors", + "2006-12-31": "Kurman Ait* (*estimated); New Year's Eve", + "2007-01-01": "New Year's Day", + "2007-01-07": "Christmas Day", + "2007-02-23": "Fatherland Defender's Day", + "2007-03-08": "International Women's Day", + "2007-03-21": "Nooruz Mairamy", + "2007-05-01": "International Workers' Day", + "2007-05-05": "Constitution Day", + "2007-05-09": "Victory Day", + "2007-08-31": "Independence Day", + "2007-10-13": "Orozo Ait* (*estimated)", + "2007-10-14": "Orozo Ait* (*estimated)", + "2007-11-07": "Days of History and Commemoration of Ancestors", + "2007-11-08": "Days of History and Commemoration of Ancestors", + "2007-12-20": "Kurman Ait* (*estimated)", + "2007-12-31": "New Year's Eve", + "2008-01-01": "New Year's Day", + "2008-01-07": "Christmas Day", + "2008-02-23": "Fatherland Defender's Day", + "2008-03-08": "International Women's Day", + "2008-03-21": "Nooruz Mairamy", + "2008-05-01": "International Workers' Day", + "2008-05-05": "Constitution Day", + "2008-05-09": "Victory Day", + "2008-08-31": "Independence Day", + "2008-10-01": "Orozo Ait* (*estimated)", + "2008-10-02": "Orozo Ait* (*estimated)", + "2008-11-07": "Days of History and Commemoration of Ancestors", + "2008-11-08": "Days of History and Commemoration of Ancestors", + "2008-12-08": "Kurman Ait* (*estimated)", + "2008-12-31": "New Year's Eve", + "2009-01-01": "New Year's Day", + "2009-01-07": "Christmas Day", + "2009-02-23": "Fatherland Defender's Day", + "2009-03-08": "International Women's Day", + "2009-03-21": "Nooruz Mairamy", + "2009-05-01": "International Workers' Day", + "2009-05-05": "Constitution Day", + "2009-05-09": "Victory Day", + "2009-08-31": "Independence Day", + "2009-09-20": "Orozo Ait* (*estimated)", + "2009-09-21": "Orozo Ait* (*estimated)", + "2009-11-07": "Days of History and Commemoration of Ancestors", + "2009-11-08": "Days of History and Commemoration of Ancestors", + "2009-11-27": "Kurman Ait* (*estimated)", + "2009-12-31": "New Year's Eve", + "2010-01-01": "New Year's Day", + "2010-01-07": "Christmas Day", + "2010-02-23": "Fatherland Defender's Day", + "2010-03-08": "International Women's Day", + "2010-03-21": "Nooruz Mairamy", + "2010-05-01": "International Workers' Day", + "2010-05-05": "Constitution Day", + "2010-05-09": "Victory Day", + "2010-08-31": "Independence Day", + "2010-09-10": "Orozo Ait* (*estimated)", + "2010-09-11": "Orozo Ait* (*estimated)", + "2010-11-07": "Days of History and Commemoration of Ancestors", + "2010-11-08": "Days of History and Commemoration of Ancestors", + "2010-11-16": "Kurman Ait* (*estimated)", + "2010-12-31": "New Year's Eve", + "2011-01-01": "New Year's Day", + "2011-01-07": "Christmas Day", + "2011-02-23": "Fatherland Defender's Day", + "2011-03-08": "International Women's Day", + "2011-03-21": "Nooruz Mairamy", + "2011-05-01": "International Workers' Day", + "2011-05-05": "Constitution Day", + "2011-05-09": "Victory Day", + "2011-08-30": "Orozo Ait* (*estimated)", + "2011-08-31": "Independence Day; Orozo Ait* (*estimated)", + "2011-11-06": "Kurman Ait* (*estimated)", + "2011-11-07": "Days of History and Commemoration of Ancestors", + "2011-11-08": "Days of History and Commemoration of Ancestors", + "2011-12-31": "New Year's Eve", + "2012-01-01": "New Year's Day", + "2012-01-07": "Christmas Day", + "2012-02-23": "Fatherland Defender's Day", + "2012-03-08": "International Women's Day", + "2012-03-21": "Nooruz Mairamy", + "2012-05-01": "International Workers' Day", + "2012-05-05": "Constitution Day", + "2012-05-09": "Victory Day", + "2012-08-19": "Orozo Ait* (*estimated)", + "2012-08-20": "Orozo Ait* (*estimated)", + "2012-08-31": "Independence Day", + "2012-10-26": "Kurman Ait* (*estimated)", + "2012-11-07": "Days of History and Commemoration of Ancestors", + "2012-11-08": "Days of History and Commemoration of Ancestors", + "2012-12-31": "New Year's Eve", + "2013-01-01": "New Year's Day", + "2013-01-07": "Christmas Day", + "2013-02-23": "Fatherland Defender's Day", + "2013-03-08": "International Women's Day", + "2013-03-21": "Nooruz Mairamy", + "2013-05-01": "International Workers' Day", + "2013-05-05": "Constitution Day", + "2013-05-09": "Victory Day", + "2013-08-08": "Orozo Ait* (*estimated)", + "2013-08-09": "Orozo Ait* (*estimated)", + "2013-08-31": "Independence Day", + "2013-10-15": "Kurman Ait* (*estimated)", + "2013-11-07": "Days of History and Commemoration of Ancestors", + "2013-11-08": "Days of History and Commemoration of Ancestors", + "2013-12-31": "New Year's Eve", + "2014-01-01": "New Year's Day", + "2014-01-07": "Christmas Day", + "2014-02-23": "Fatherland Defender's Day", + "2014-03-08": "International Women's Day", + "2014-03-21": "Nooruz Mairamy", + "2014-05-01": "International Workers' Day", + "2014-05-05": "Constitution Day", + "2014-05-09": "Victory Day", + "2014-07-28": "Orozo Ait* (*estimated)", + "2014-07-29": "Orozo Ait* (*estimated)", + "2014-08-31": "Independence Day", + "2014-10-04": "Kurman Ait* (*estimated)", + "2014-11-07": "Days of History and Commemoration of Ancestors", + "2014-11-08": "Days of History and Commemoration of Ancestors", + "2014-12-31": "New Year's Eve", + "2015-01-01": "New Year's Day", + "2015-01-07": "Christmas Day", + "2015-02-23": "Fatherland Defender's Day", + "2015-03-08": "International Women's Day", + "2015-03-21": "Nooruz Mairamy", + "2015-05-01": "International Workers' Day", + "2015-05-05": "Constitution Day", + "2015-05-09": "Victory Day", + "2015-07-17": "Orozo Ait* (*estimated)", + "2015-07-18": "Orozo Ait* (*estimated)", + "2015-08-31": "Independence Day", + "2015-09-23": "Kurman Ait* (*estimated)", + "2015-11-07": "Days of History and Commemoration of Ancestors", + "2015-11-08": "Days of History and Commemoration of Ancestors", + "2015-12-31": "New Year's Eve", + "2016-01-01": "New Year's Day", + "2016-01-07": "Christmas Day", + "2016-02-23": "Fatherland Defender's Day", + "2016-03-08": "International Women's Day", + "2016-03-21": "Nooruz Mairamy", + "2016-04-07": "Day of the People's April Revolution", + "2016-05-01": "International Workers' Day", + "2016-05-05": "Constitution Day", + "2016-05-09": "Victory Day", + "2016-07-06": "Orozo Ait* (*estimated)", + "2016-07-07": "Orozo Ait* (*estimated)", + "2016-08-31": "Independence Day", + "2016-09-11": "Kurman Ait* (*estimated)", + "2016-11-07": "Days of History and Commemoration of Ancestors", + "2016-11-08": "Days of History and Commemoration of Ancestors", + "2016-12-31": "New Year's Eve", + "2017-01-01": "New Year's Day", + "2017-01-07": "Christmas Day", + "2017-02-23": "Fatherland Defender's Day", + "2017-03-08": "International Women's Day", + "2017-03-21": "Nooruz Mairamy", + "2017-04-07": "Day of the People's April Revolution", + "2017-05-01": "International Workers' Day", + "2017-05-05": "Constitution Day", + "2017-05-09": "Victory Day", + "2017-06-25": "Orozo Ait* (*estimated)", + "2017-06-26": "Orozo Ait* (*estimated)", + "2017-08-31": "Independence Day", + "2017-09-01": "Kurman Ait* (*estimated)", + "2017-11-07": "Days of History and Commemoration of Ancestors", + "2017-11-08": "Days of History and Commemoration of Ancestors", + "2017-12-31": "New Year's Eve", + "2018-01-01": "New Year's Day", + "2018-01-07": "Christmas Day", + "2018-02-23": "Fatherland Defender's Day", + "2018-03-08": "International Women's Day", + "2018-03-21": "Nooruz Mairamy", + "2018-04-07": "Day of the People's April Revolution", + "2018-05-01": "International Workers' Day", + "2018-05-05": "Constitution Day", + "2018-05-09": "Victory Day", + "2018-06-15": "Orozo Ait* (*estimated)", + "2018-06-16": "Orozo Ait* (*estimated)", + "2018-08-21": "Kurman Ait* (*estimated)", + "2018-08-31": "Independence Day", + "2018-11-07": "Days of History and Commemoration of Ancestors", + "2018-11-08": "Days of History and Commemoration of Ancestors", + "2018-12-31": "New Year's Eve", + "2019-01-01": "New Year's Day", + "2019-01-07": "Christmas Day", + "2019-02-23": "Fatherland Defender's Day", + "2019-03-08": "International Women's Day", + "2019-03-21": "Nooruz Mairamy", + "2019-04-07": "Day of the People's April Revolution", + "2019-05-01": "International Workers' Day", + "2019-05-05": "Constitution Day", + "2019-05-09": "Victory Day", + "2019-06-04": "Orozo Ait* (*estimated)", + "2019-06-05": "Orozo Ait* (*estimated)", + "2019-08-11": "Kurman Ait* (*estimated)", + "2019-08-31": "Independence Day", + "2019-11-07": "Days of History and Commemoration of Ancestors", + "2019-11-08": "Days of History and Commemoration of Ancestors", + "2019-12-31": "New Year's Eve", + "2020-01-01": "New Year's Day", + "2020-01-07": "Christmas Day", + "2020-02-23": "Fatherland Defender's Day", + "2020-03-08": "International Women's Day", + "2020-03-21": "Nooruz Mairamy", + "2020-04-07": "Day of the People's April Revolution", + "2020-05-01": "International Workers' Day", + "2020-05-05": "Constitution Day", + "2020-05-09": "Victory Day", + "2020-05-24": "Orozo Ait* (*estimated)", + "2020-05-25": "Orozo Ait* (*estimated)", + "2020-07-31": "Kurman Ait* (*estimated)", + "2020-08-31": "Independence Day", + "2020-11-07": "Days of History and Commemoration of Ancestors", + "2020-11-08": "Days of History and Commemoration of Ancestors", + "2020-12-31": "New Year's Eve", + "2021-01-01": "New Year's Day", + "2021-01-07": "Christmas Day", + "2021-02-23": "Fatherland Defender's Day", + "2021-03-08": "International Women's Day", + "2021-03-21": "Nooruz Mairamy", + "2021-04-07": "Day of the People's April Revolution", + "2021-05-01": "International Workers' Day", + "2021-05-05": "Constitution Day", + "2021-05-09": "Victory Day", + "2021-05-13": "Orozo Ait* (*estimated)", + "2021-05-14": "Orozo Ait* (*estimated)", + "2021-07-20": "Kurman Ait* (*estimated)", + "2021-08-31": "Independence Day", + "2021-11-07": "Days of History and Commemoration of Ancestors", + "2021-11-08": "Days of History and Commemoration of Ancestors", + "2021-12-31": "New Year's Eve", + "2022-01-01": "New Year's Day", + "2022-01-07": "Christmas Day", + "2022-02-23": "Fatherland Defender's Day", + "2022-03-08": "International Women's Day", + "2022-03-21": "Nooruz Mairamy", + "2022-04-07": "Day of the People's April Revolution", + "2022-05-01": "International Workers' Day", + "2022-05-02": "Orozo Ait* (*estimated)", + "2022-05-03": "Orozo Ait* (*estimated)", + "2022-05-05": "Constitution Day", + "2022-05-09": "Victory Day", + "2022-07-09": "Kurman Ait* (*estimated)", + "2022-08-31": "Independence Day", + "2022-11-07": "Days of History and Commemoration of Ancestors", + "2022-11-08": "Days of History and Commemoration of Ancestors", + "2022-12-31": "New Year's Eve", + "2023-01-01": "New Year's Day", + "2023-01-07": "Christmas Day", + "2023-02-23": "Fatherland Defender's Day", + "2023-03-08": "International Women's Day", + "2023-03-21": "Nooruz Mairamy", + "2023-04-07": "Day of the People's April Revolution", + "2023-04-21": "Orozo Ait* (*estimated)", + "2023-04-22": "Orozo Ait* (*estimated)", + "2023-05-01": "International Workers' Day", + "2023-05-05": "Constitution Day", + "2023-05-09": "Victory Day", + "2023-06-28": "Kurman Ait* (*estimated)", + "2023-08-31": "Independence Day", + "2023-11-07": "Days of History and Commemoration of Ancestors", + "2023-11-08": "Days of History and Commemoration of Ancestors", + "2023-12-31": "New Year's Eve", + "2024-01-01": "New Year's Day", + "2024-01-07": "Christmas Day", + "2024-02-23": "Fatherland Defender's Day", + "2024-03-08": "International Women's Day", + "2024-03-21": "Nooruz Mairamy", + "2024-04-07": "Day of the People's April Revolution", + "2024-04-10": "Orozo Ait* (*estimated)", + "2024-04-11": "Orozo Ait* (*estimated)", + "2024-05-01": "International Workers' Day", + "2024-05-05": "Constitution Day", + "2024-05-09": "Victory Day", + "2024-06-16": "Kurman Ait* (*estimated)", + "2024-08-31": "Independence Day", + "2024-11-07": "Days of History and Commemoration of Ancestors", + "2024-11-08": "Days of History and Commemoration of Ancestors", + "2024-12-31": "New Year's Eve", + "2025-01-01": "New Year's Day", + "2025-01-07": "Christmas Day", + "2025-02-23": "Fatherland Defender's Day", + "2025-03-08": "International Women's Day", + "2025-03-21": "Nooruz Mairamy", + "2025-03-30": "Orozo Ait* (*estimated)", + "2025-03-31": "Orozo Ait* (*estimated)", + "2025-04-07": "Day of the People's April Revolution", + "2025-05-01": "International Workers' Day", + "2025-05-05": "Constitution Day", + "2025-05-09": "Victory Day", + "2025-06-06": "Kurman Ait* (*estimated)", + "2025-08-31": "Independence Day", + "2025-11-07": "Days of History and Commemoration of Ancestors", + "2025-11-08": "Days of History and Commemoration of Ancestors", + "2025-12-31": "New Year's Eve", + "2026-01-01": "New Year's Day", + "2026-01-07": "Christmas Day", + "2026-02-23": "Fatherland Defender's Day", + "2026-03-08": "International Women's Day", + "2026-03-20": "Orozo Ait* (*estimated)", + "2026-03-21": "Nooruz Mairamy; Orozo Ait* (*estimated)", + "2026-04-07": "Day of the People's April Revolution", + "2026-05-01": "International Workers' Day", + "2026-05-05": "Constitution Day", + "2026-05-09": "Victory Day", + "2026-05-27": "Kurman Ait* (*estimated)", + "2026-08-31": "Independence Day", + "2026-11-07": "Days of History and Commemoration of Ancestors", + "2026-11-08": "Days of History and Commemoration of Ancestors", + "2026-12-31": "New Year's Eve", + "2027-01-01": "New Year's Day", + "2027-01-07": "Christmas Day", + "2027-02-23": "Fatherland Defender's Day", + "2027-03-08": "International Women's Day", + "2027-03-09": "Orozo Ait* (*estimated)", + "2027-03-10": "Orozo Ait* (*estimated)", + "2027-03-21": "Nooruz Mairamy", + "2027-04-07": "Day of the People's April Revolution", + "2027-05-01": "International Workers' Day", + "2027-05-05": "Constitution Day", + "2027-05-09": "Victory Day", + "2027-05-16": "Kurman Ait* (*estimated)", + "2027-08-31": "Independence Day", + "2027-11-07": "Days of History and Commemoration of Ancestors", + "2027-11-08": "Days of History and Commemoration of Ancestors", + "2027-12-31": "New Year's Eve", + "2028-01-01": "New Year's Day", + "2028-01-07": "Christmas Day", + "2028-02-23": "Fatherland Defender's Day", + "2028-02-26": "Orozo Ait* (*estimated)", + "2028-02-27": "Orozo Ait* (*estimated)", + "2028-03-08": "International Women's Day", + "2028-03-21": "Nooruz Mairamy", + "2028-04-07": "Day of the People's April Revolution", + "2028-05-01": "International Workers' Day", + "2028-05-05": "Constitution Day; Kurman Ait* (*estimated)", + "2028-05-09": "Victory Day", + "2028-08-31": "Independence Day", + "2028-11-07": "Days of History and Commemoration of Ancestors", + "2028-11-08": "Days of History and Commemoration of Ancestors", + "2028-12-31": "New Year's Eve", + "2029-01-01": "New Year's Day", + "2029-01-07": "Christmas Day", + "2029-02-14": "Orozo Ait* (*estimated)", + "2029-02-15": "Orozo Ait* (*estimated)", + "2029-02-23": "Fatherland Defender's Day", + "2029-03-08": "International Women's Day", + "2029-03-21": "Nooruz Mairamy", + "2029-04-07": "Day of the People's April Revolution", + "2029-04-24": "Kurman Ait* (*estimated)", + "2029-05-01": "International Workers' Day", + "2029-05-05": "Constitution Day", + "2029-05-09": "Victory Day", + "2029-08-31": "Independence Day", + "2029-11-07": "Days of History and Commemoration of Ancestors", + "2029-11-08": "Days of History and Commemoration of Ancestors", + "2029-12-31": "New Year's Eve", + "2030-01-01": "New Year's Day", + "2030-01-07": "Christmas Day", + "2030-02-04": "Orozo Ait* (*estimated)", + "2030-02-05": "Orozo Ait* (*estimated)", + "2030-02-23": "Fatherland Defender's Day", + "2030-03-08": "International Women's Day", + "2030-03-21": "Nooruz Mairamy", + "2030-04-07": "Day of the People's April Revolution", + "2030-04-13": "Kurman Ait* (*estimated)", + "2030-05-01": "International Workers' Day", + "2030-05-05": "Constitution Day", + "2030-05-09": "Victory Day", + "2030-08-31": "Independence Day", + "2030-11-07": "Days of History and Commemoration of Ancestors", + "2030-11-08": "Days of History and Commemoration of Ancestors", + "2030-12-31": "New Year's Eve", + "2031-01-01": "New Year's Day", + "2031-01-07": "Christmas Day", + "2031-01-24": "Orozo Ait* (*estimated)", + "2031-01-25": "Orozo Ait* (*estimated)", + "2031-02-23": "Fatherland Defender's Day", + "2031-03-08": "International Women's Day", + "2031-03-21": "Nooruz Mairamy", + "2031-04-02": "Kurman Ait* (*estimated)", + "2031-04-07": "Day of the People's April Revolution", + "2031-05-01": "International Workers' Day", + "2031-05-05": "Constitution Day", + "2031-05-09": "Victory Day", + "2031-08-31": "Independence Day", + "2031-11-07": "Days of History and Commemoration of Ancestors", + "2031-11-08": "Days of History and Commemoration of Ancestors", + "2031-12-31": "New Year's Eve", + "2032-01-01": "New Year's Day", + "2032-01-07": "Christmas Day", + "2032-01-14": "Orozo Ait* (*estimated)", + "2032-01-15": "Orozo Ait* (*estimated)", + "2032-02-23": "Fatherland Defender's Day", + "2032-03-08": "International Women's Day", + "2032-03-21": "Nooruz Mairamy", + "2032-03-22": "Kurman Ait* (*estimated)", + "2032-04-07": "Day of the People's April Revolution", + "2032-05-01": "International Workers' Day", + "2032-05-05": "Constitution Day", + "2032-05-09": "Victory Day", + "2032-08-31": "Independence Day", + "2032-11-07": "Days of History and Commemoration of Ancestors", + "2032-11-08": "Days of History and Commemoration of Ancestors", + "2032-12-31": "New Year's Eve", + "2033-01-01": "New Year's Day", + "2033-01-02": "Orozo Ait* (*estimated)", + "2033-01-03": "Orozo Ait* (*estimated)", + "2033-01-07": "Christmas Day", + "2033-02-23": "Fatherland Defender's Day", + "2033-03-08": "International Women's Day", + "2033-03-11": "Kurman Ait* (*estimated)", + "2033-03-21": "Nooruz Mairamy", + "2033-04-07": "Day of the People's April Revolution", + "2033-05-01": "International Workers' Day", + "2033-05-05": "Constitution Day", + "2033-05-09": "Victory Day", + "2033-08-31": "Independence Day", + "2033-11-07": "Days of History and Commemoration of Ancestors", + "2033-11-08": "Days of History and Commemoration of Ancestors", + "2033-12-23": "Orozo Ait* (*estimated)", + "2033-12-24": "Orozo Ait* (*estimated)", + "2033-12-31": "New Year's Eve", + "2034-01-01": "New Year's Day", + "2034-01-07": "Christmas Day", + "2034-02-23": "Fatherland Defender's Day", + "2034-03-01": "Kurman Ait* (*estimated)", + "2034-03-08": "International Women's Day", + "2034-03-21": "Nooruz Mairamy", + "2034-04-07": "Day of the People's April Revolution", + "2034-05-01": "International Workers' Day", + "2034-05-05": "Constitution Day", + "2034-05-09": "Victory Day", + "2034-08-31": "Independence Day", + "2034-11-07": "Days of History and Commemoration of Ancestors", + "2034-11-08": "Days of History and Commemoration of Ancestors", + "2034-12-12": "Orozo Ait* (*estimated)", + "2034-12-13": "Orozo Ait* (*estimated)", + "2034-12-31": "New Year's Eve", + "2035-01-01": "New Year's Day", + "2035-01-07": "Christmas Day", + "2035-02-18": "Kurman Ait* (*estimated)", + "2035-02-23": "Fatherland Defender's Day", + "2035-03-08": "International Women's Day", + "2035-03-21": "Nooruz Mairamy", + "2035-04-07": "Day of the People's April Revolution", + "2035-05-01": "International Workers' Day", + "2035-05-05": "Constitution Day", + "2035-05-09": "Victory Day", + "2035-08-31": "Independence Day", + "2035-11-07": "Days of History and Commemoration of Ancestors", + "2035-11-08": "Days of History and Commemoration of Ancestors", + "2035-12-01": "Orozo Ait* (*estimated)", + "2035-12-02": "Orozo Ait* (*estimated)", + "2035-12-31": "New Year's Eve", + "2036-01-01": "New Year's Day", + "2036-01-07": "Christmas Day", + "2036-02-07": "Kurman Ait* (*estimated)", + "2036-02-23": "Fatherland Defender's Day", + "2036-03-08": "International Women's Day", + "2036-03-21": "Nooruz Mairamy", + "2036-04-07": "Day of the People's April Revolution", + "2036-05-01": "International Workers' Day", + "2036-05-05": "Constitution Day", + "2036-05-09": "Victory Day", + "2036-08-31": "Independence Day", + "2036-11-07": "Days of History and Commemoration of Ancestors", + "2036-11-08": "Days of History and Commemoration of Ancestors", + "2036-11-19": "Orozo Ait* (*estimated)", + "2036-11-20": "Orozo Ait* (*estimated)", + "2036-12-31": "New Year's Eve", + "2037-01-01": "New Year's Day", + "2037-01-07": "Christmas Day", + "2037-01-26": "Kurman Ait* (*estimated)", + "2037-02-23": "Fatherland Defender's Day", + "2037-03-08": "International Women's Day", + "2037-03-21": "Nooruz Mairamy", + "2037-04-07": "Day of the People's April Revolution", + "2037-05-01": "International Workers' Day", + "2037-05-05": "Constitution Day", + "2037-05-09": "Victory Day", + "2037-08-31": "Independence Day", + "2037-11-07": "Days of History and Commemoration of Ancestors", + "2037-11-08": "Days of History and Commemoration of Ancestors; Orozo Ait* (*estimated)", + "2037-11-09": "Orozo Ait* (*estimated)", + "2037-12-31": "New Year's Eve", + "2038-01-01": "New Year's Day", + "2038-01-07": "Christmas Day", + "2038-01-16": "Kurman Ait* (*estimated)", + "2038-02-23": "Fatherland Defender's Day", + "2038-03-08": "International Women's Day", + "2038-03-21": "Nooruz Mairamy", + "2038-04-07": "Day of the People's April Revolution", + "2038-05-01": "International Workers' Day", + "2038-05-05": "Constitution Day", + "2038-05-09": "Victory Day", + "2038-08-31": "Independence Day", + "2038-10-29": "Orozo Ait* (*estimated)", + "2038-10-30": "Orozo Ait* (*estimated)", + "2038-11-07": "Days of History and Commemoration of Ancestors", + "2038-11-08": "Days of History and Commemoration of Ancestors", + "2038-12-31": "New Year's Eve", + "2039-01-01": "New Year's Day", + "2039-01-05": "Kurman Ait* (*estimated)", + "2039-01-07": "Christmas Day", + "2039-02-23": "Fatherland Defender's Day", + "2039-03-08": "International Women's Day", + "2039-03-21": "Nooruz Mairamy", + "2039-04-07": "Day of the People's April Revolution", + "2039-05-01": "International Workers' Day", + "2039-05-05": "Constitution Day", + "2039-05-09": "Victory Day", + "2039-08-31": "Independence Day", + "2039-10-19": "Orozo Ait* (*estimated)", + "2039-10-20": "Orozo Ait* (*estimated)", + "2039-11-07": "Days of History and Commemoration of Ancestors", + "2039-11-08": "Days of History and Commemoration of Ancestors", + "2039-12-26": "Kurman Ait* (*estimated)", + "2039-12-31": "New Year's Eve", + "2040-01-01": "New Year's Day", + "2040-01-07": "Christmas Day", + "2040-02-23": "Fatherland Defender's Day", + "2040-03-08": "International Women's Day", + "2040-03-21": "Nooruz Mairamy", + "2040-04-07": "Day of the People's April Revolution", + "2040-05-01": "International Workers' Day", + "2040-05-05": "Constitution Day", + "2040-05-09": "Victory Day", + "2040-08-31": "Independence Day", + "2040-10-07": "Orozo Ait* (*estimated)", + "2040-10-08": "Orozo Ait* (*estimated)", + "2040-11-07": "Days of History and Commemoration of Ancestors", + "2040-11-08": "Days of History and Commemoration of Ancestors", + "2040-12-14": "Kurman Ait* (*estimated)", + "2040-12-31": "New Year's Eve", + "2041-01-01": "New Year's Day", + "2041-01-07": "Christmas Day", + "2041-02-23": "Fatherland Defender's Day", + "2041-03-08": "International Women's Day", + "2041-03-21": "Nooruz Mairamy", + "2041-04-07": "Day of the People's April Revolution", + "2041-05-01": "International Workers' Day", + "2041-05-05": "Constitution Day", + "2041-05-09": "Victory Day", + "2041-08-31": "Independence Day", + "2041-09-26": "Orozo Ait* (*estimated)", + "2041-09-27": "Orozo Ait* (*estimated)", + "2041-11-07": "Days of History and Commemoration of Ancestors", + "2041-11-08": "Days of History and Commemoration of Ancestors", + "2041-12-04": "Kurman Ait* (*estimated)", + "2041-12-31": "New Year's Eve", + "2042-01-01": "New Year's Day", + "2042-01-07": "Christmas Day", + "2042-02-23": "Fatherland Defender's Day", + "2042-03-08": "International Women's Day", + "2042-03-21": "Nooruz Mairamy", + "2042-04-07": "Day of the People's April Revolution", + "2042-05-01": "International Workers' Day", + "2042-05-05": "Constitution Day", + "2042-05-09": "Victory Day", + "2042-08-31": "Independence Day", + "2042-09-15": "Orozo Ait* (*estimated)", + "2042-09-16": "Orozo Ait* (*estimated)", + "2042-11-07": "Days of History and Commemoration of Ancestors", + "2042-11-08": "Days of History and Commemoration of Ancestors", + "2042-11-23": "Kurman Ait* (*estimated)", + "2042-12-31": "New Year's Eve", + "2043-01-01": "New Year's Day", + "2043-01-07": "Christmas Day", + "2043-02-23": "Fatherland Defender's Day", + "2043-03-08": "International Women's Day", + "2043-03-21": "Nooruz Mairamy", + "2043-04-07": "Day of the People's April Revolution", + "2043-05-01": "International Workers' Day", + "2043-05-05": "Constitution Day", + "2043-05-09": "Victory Day", + "2043-08-31": "Independence Day", + "2043-09-04": "Orozo Ait* (*estimated)", + "2043-09-05": "Orozo Ait* (*estimated)", + "2043-11-07": "Days of History and Commemoration of Ancestors", + "2043-11-08": "Days of History and Commemoration of Ancestors", + "2043-11-12": "Kurman Ait* (*estimated)", + "2043-12-31": "New Year's Eve", + "2044-01-01": "New Year's Day", + "2044-01-07": "Christmas Day", + "2044-02-23": "Fatherland Defender's Day", + "2044-03-08": "International Women's Day", + "2044-03-21": "Nooruz Mairamy", + "2044-04-07": "Day of the People's April Revolution", + "2044-05-01": "International Workers' Day", + "2044-05-05": "Constitution Day", + "2044-05-09": "Victory Day", + "2044-08-24": "Orozo Ait* (*estimated)", + "2044-08-25": "Orozo Ait* (*estimated)", + "2044-08-31": "Independence Day", + "2044-10-31": "Kurman Ait* (*estimated)", + "2044-11-07": "Days of History and Commemoration of Ancestors", + "2044-11-08": "Days of History and Commemoration of Ancestors", + "2044-12-31": "New Year's Eve", + "2045-01-01": "New Year's Day", + "2045-01-07": "Christmas Day", + "2045-02-23": "Fatherland Defender's Day", + "2045-03-08": "International Women's Day", + "2045-03-21": "Nooruz Mairamy", + "2045-04-07": "Day of the People's April Revolution", + "2045-05-01": "International Workers' Day", + "2045-05-05": "Constitution Day", + "2045-05-09": "Victory Day", + "2045-08-14": "Orozo Ait* (*estimated)", + "2045-08-15": "Orozo Ait* (*estimated)", + "2045-08-31": "Independence Day", + "2045-10-21": "Kurman Ait* (*estimated)", + "2045-11-07": "Days of History and Commemoration of Ancestors", + "2045-11-08": "Days of History and Commemoration of Ancestors", + "2045-12-31": "New Year's Eve", + "2046-01-01": "New Year's Day", + "2046-01-07": "Christmas Day", + "2046-02-23": "Fatherland Defender's Day", + "2046-03-08": "International Women's Day", + "2046-03-21": "Nooruz Mairamy", + "2046-04-07": "Day of the People's April Revolution", + "2046-05-01": "International Workers' Day", + "2046-05-05": "Constitution Day", + "2046-05-09": "Victory Day", + "2046-08-03": "Orozo Ait* (*estimated)", + "2046-08-04": "Orozo Ait* (*estimated)", + "2046-08-31": "Independence Day", + "2046-10-10": "Kurman Ait* (*estimated)", + "2046-11-07": "Days of History and Commemoration of Ancestors", + "2046-11-08": "Days of History and Commemoration of Ancestors", + "2046-12-31": "New Year's Eve", + "2047-01-01": "New Year's Day", + "2047-01-07": "Christmas Day", + "2047-02-23": "Fatherland Defender's Day", + "2047-03-08": "International Women's Day", + "2047-03-21": "Nooruz Mairamy", + "2047-04-07": "Day of the People's April Revolution", + "2047-05-01": "International Workers' Day", + "2047-05-05": "Constitution Day", + "2047-05-09": "Victory Day", + "2047-07-24": "Orozo Ait* (*estimated)", + "2047-07-25": "Orozo Ait* (*estimated)", + "2047-08-31": "Independence Day", + "2047-09-30": "Kurman Ait* (*estimated)", + "2047-11-07": "Days of History and Commemoration of Ancestors", + "2047-11-08": "Days of History and Commemoration of Ancestors", + "2047-12-31": "New Year's Eve", + "2048-01-01": "New Year's Day", + "2048-01-07": "Christmas Day", + "2048-02-23": "Fatherland Defender's Day", + "2048-03-08": "International Women's Day", + "2048-03-21": "Nooruz Mairamy", + "2048-04-07": "Day of the People's April Revolution", + "2048-05-01": "International Workers' Day", + "2048-05-05": "Constitution Day", + "2048-05-09": "Victory Day", + "2048-07-12": "Orozo Ait* (*estimated)", + "2048-07-13": "Orozo Ait* (*estimated)", + "2048-08-31": "Independence Day", + "2048-09-19": "Kurman Ait* (*estimated)", + "2048-11-07": "Days of History and Commemoration of Ancestors", + "2048-11-08": "Days of History and Commemoration of Ancestors", + "2048-12-31": "New Year's Eve", + "2049-01-01": "New Year's Day", + "2049-01-07": "Christmas Day", + "2049-02-23": "Fatherland Defender's Day", + "2049-03-08": "International Women's Day", + "2049-03-21": "Nooruz Mairamy", + "2049-04-07": "Day of the People's April Revolution", + "2049-05-01": "International Workers' Day", + "2049-05-05": "Constitution Day", + "2049-05-09": "Victory Day", + "2049-07-01": "Orozo Ait* (*estimated)", + "2049-07-02": "Orozo Ait* (*estimated)", + "2049-08-31": "Independence Day", + "2049-09-08": "Kurman Ait* (*estimated)", + "2049-11-07": "Days of History and Commemoration of Ancestors", + "2049-11-08": "Days of History and Commemoration of Ancestors", + "2049-12-31": "New Year's Eve", + "2050-01-01": "New Year's Day", + "2050-01-07": "Christmas Day", + "2050-02-23": "Fatherland Defender's Day", + "2050-03-08": "International Women's Day", + "2050-03-21": "Nooruz Mairamy", + "2050-04-07": "Day of the People's April Revolution", + "2050-05-01": "International Workers' Day", + "2050-05-05": "Constitution Day", + "2050-05-09": "Victory Day", + "2050-06-20": "Orozo Ait* (*estimated)", + "2050-06-21": "Orozo Ait* (*estimated)", + "2050-08-28": "Kurman Ait* (*estimated)", + "2050-08-31": "Independence Day", + "2050-11-07": "Days of History and Commemoration of Ancestors", + "2050-11-08": "Days of History and Commemoration of Ancestors", + "2050-12-31": "New Year's Eve" +} diff --git a/snapshots/countries/KH.json b/snapshots/countries/KH.json new file mode 100644 index 000000000..f01fb02e1 --- /dev/null +++ b/snapshots/countries/KH.json @@ -0,0 +1,1277 @@ +{ + "1993-01-01": "International New Year Day", + "1993-01-07": "Day of Victory over the Genocidal Regime", + "1993-02-06": "Meak Bochea Day", + "1993-03-08": "International Women's Rights Day", + "1993-04-13": "Khmer New Year's Day", + "1993-04-14": "Khmer New Year's Day", + "1993-04-15": "Khmer New Year's Day", + "1993-05-01": "International Labor Day", + "1993-05-05": "Visaka Bochea Day", + "1993-05-09": "Royal Ploughing Ceremony", + "1993-06-01": "International Children Day", + "1993-09-14": "Pchum Ben Day", + "1993-09-15": "Pchum Ben Day", + "1993-09-24": "Constitution Day", + "1993-10-23": "Paris Peace Agreement's Day", + "1993-10-28": "Water Festival", + "1993-10-29": "Water Festival", + "1993-10-30": "Water Festival", + "1993-11-09": "National Independence Day", + "1993-12-10": "International Human Rights Day", + "1994-01-01": "International New Year Day", + "1994-01-07": "Day of Victory over the Genocidal Regime", + "1994-01-26": "Meak Bochea Day", + "1994-03-08": "International Women's Rights Day", + "1994-04-13": "Khmer New Year's Day", + "1994-04-14": "Khmer New Year's Day", + "1994-04-15": "Khmer New Year's Day", + "1994-04-24": "Visaka Bochea Day", + "1994-04-28": "Royal Ploughing Ceremony", + "1994-05-01": "International Labor Day", + "1994-06-01": "International Children Day", + "1994-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "1994-09-24": "Constitution Day", + "1994-10-03": "Pchum Ben Day", + "1994-10-04": "Pchum Ben Day", + "1994-10-23": "Paris Peace Agreement's Day", + "1994-11-09": "National Independence Day", + "1994-11-16": "Water Festival", + "1994-11-17": "Water Festival", + "1994-11-18": "Water Festival", + "1994-12-10": "International Human Rights Day", + "1995-01-01": "International New Year Day", + "1995-01-07": "Day of Victory over the Genocidal Regime", + "1995-02-14": "Meak Bochea Day", + "1995-03-08": "International Women's Rights Day", + "1995-04-13": "Khmer New Year's Day", + "1995-04-14": "Khmer New Year's Day", + "1995-04-15": "Khmer New Year's Day", + "1995-05-01": "International Labor Day", + "1995-05-13": "Visaka Bochea Day", + "1995-05-17": "Royal Ploughing Ceremony", + "1995-06-01": "International Children Day", + "1995-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "1995-09-22": "Pchum Ben Day", + "1995-09-23": "Pchum Ben Day", + "1995-09-24": "Constitution Day", + "1995-10-23": "Paris Peace Agreement's Day", + "1995-11-05": "Water Festival", + "1995-11-06": "Water Festival", + "1995-11-07": "Water Festival", + "1995-11-09": "National Independence Day", + "1995-12-10": "International Human Rights Day", + "1996-01-01": "International New Year Day", + "1996-01-07": "Day of Victory over the Genocidal Regime", + "1996-02-03": "Meak Bochea Day", + "1996-03-08": "International Women's Rights Day", + "1996-04-13": "Khmer New Year's Day", + "1996-04-14": "Khmer New Year's Day", + "1996-04-15": "Khmer New Year's Day", + "1996-05-01": "International Labor Day; Visaka Bochea Day", + "1996-05-05": "Royal Ploughing Ceremony", + "1996-06-01": "International Children Day", + "1996-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "1996-09-24": "Constitution Day", + "1996-10-10": "Pchum Ben Day", + "1996-10-11": "Pchum Ben Day", + "1996-10-23": "Paris Peace Agreement's Day", + "1996-11-09": "National Independence Day", + "1996-11-23": "Water Festival", + "1996-11-24": "Water Festival", + "1996-11-25": "Water Festival", + "1996-12-10": "International Human Rights Day", + "1997-01-01": "International New Year Day", + "1997-01-07": "Day of Victory over the Genocidal Regime", + "1997-02-21": "Meak Bochea Day", + "1997-03-08": "International Women's Rights Day", + "1997-04-13": "Khmer New Year's Day", + "1997-04-14": "Khmer New Year's Day", + "1997-04-15": "Khmer New Year's Day", + "1997-05-01": "International Labor Day", + "1997-05-20": "Visaka Bochea Day", + "1997-05-24": "Royal Ploughing Ceremony", + "1997-06-01": "International Children Day", + "1997-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "1997-09-24": "Constitution Day", + "1997-09-30": "Pchum Ben Day", + "1997-10-01": "Pchum Ben Day", + "1997-10-23": "Paris Peace Agreement's Day", + "1997-11-09": "National Independence Day", + "1997-11-13": "Water Festival", + "1997-11-14": "Water Festival", + "1997-11-15": "Water Festival", + "1997-12-10": "International Human Rights Day", + "1998-01-01": "International New Year Day", + "1998-01-07": "Day of Victory over the Genocidal Regime", + "1998-02-11": "Meak Bochea Day", + "1998-03-08": "International Women's Rights Day", + "1998-04-13": "Khmer New Year's Day", + "1998-04-14": "Khmer New Year's Day", + "1998-04-15": "Khmer New Year's Day", + "1998-05-01": "International Labor Day", + "1998-05-10": "Visaka Bochea Day", + "1998-05-14": "Royal Ploughing Ceremony", + "1998-06-01": "International Children Day", + "1998-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "1998-09-19": "Pchum Ben Day", + "1998-09-20": "Pchum Ben Day", + "1998-09-24": "Constitution Day", + "1998-10-23": "Paris Peace Agreement's Day", + "1998-11-02": "Water Festival", + "1998-11-03": "Water Festival", + "1998-11-04": "Water Festival", + "1998-11-09": "National Independence Day", + "1998-12-10": "International Human Rights Day", + "1999-01-01": "International New Year Day", + "1999-01-07": "Day of Victory over the Genocidal Regime", + "1999-01-31": "Meak Bochea Day", + "1999-03-08": "International Women's Rights Day", + "1999-04-13": "Khmer New Year's Day", + "1999-04-14": "Khmer New Year's Day", + "1999-04-15": "Khmer New Year's Day", + "1999-04-29": "Visaka Bochea Day", + "1999-05-01": "International Labor Day", + "1999-05-03": "Royal Ploughing Ceremony", + "1999-06-01": "International Children Day", + "1999-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "1999-09-24": "Constitution Day", + "1999-10-08": "Pchum Ben Day", + "1999-10-09": "Pchum Ben Day", + "1999-10-23": "Paris Peace Agreement's Day", + "1999-11-09": "National Independence Day", + "1999-11-21": "Water Festival", + "1999-11-22": "Water Festival", + "1999-11-23": "Water Festival", + "1999-12-10": "International Human Rights Day", + "2000-01-01": "International New Year Day", + "2000-01-07": "Day of Victory over the Genocidal Regime", + "2000-02-19": "Meak Bochea Day", + "2000-03-08": "International Women's Rights Day", + "2000-04-13": "Khmer New Year's Day", + "2000-04-14": "Khmer New Year's Day", + "2000-04-15": "Khmer New Year's Day", + "2000-05-01": "International Labor Day", + "2000-05-17": "Visaka Bochea Day", + "2000-05-21": "Royal Ploughing Ceremony", + "2000-06-01": "International Children Day", + "2000-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2000-09-24": "Constitution Day", + "2000-09-27": "Pchum Ben Day", + "2000-09-28": "Pchum Ben Day", + "2000-10-23": "Paris Peace Agreement's Day", + "2000-11-09": "National Independence Day", + "2000-11-10": "Water Festival", + "2000-11-11": "Water Festival", + "2000-11-12": "Water Festival", + "2000-12-10": "International Human Rights Day", + "2001-01-01": "International New Year Day", + "2001-01-07": "Day of Victory over the Genocidal Regime", + "2001-02-08": "Meak Bochea Day", + "2001-03-08": "International Women's Rights Day", + "2001-04-13": "Khmer New Year's Day", + "2001-04-14": "Khmer New Year's Day", + "2001-04-15": "Khmer New Year's Day", + "2001-05-01": "International Labor Day", + "2001-05-07": "Visaka Bochea Day", + "2001-05-11": "Royal Ploughing Ceremony", + "2001-06-01": "International Children Day", + "2001-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2001-09-16": "Pchum Ben Day", + "2001-09-17": "Pchum Ben Day", + "2001-09-24": "Constitution Day", + "2001-10-23": "Paris Peace Agreement's Day", + "2001-10-30": "Water Festival", + "2001-10-31": "Water Festival", + "2001-11-01": "Water Festival", + "2001-11-09": "National Independence Day", + "2001-12-10": "International Human Rights Day", + "2002-01-01": "International New Year Day", + "2002-01-07": "Day of Victory over the Genocidal Regime", + "2002-01-28": "Meak Bochea Day", + "2002-03-08": "International Women's Rights Day", + "2002-04-13": "Khmer New Year's Day", + "2002-04-14": "Khmer New Year's Day", + "2002-04-15": "Khmer New Year's Day", + "2002-04-26": "Visaka Bochea Day", + "2002-04-30": "Royal Ploughing Ceremony", + "2002-05-01": "International Labor Day", + "2002-06-01": "International Children Day", + "2002-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2002-09-24": "Constitution Day", + "2002-10-05": "Pchum Ben Day", + "2002-10-06": "Pchum Ben Day", + "2002-10-23": "Paris Peace Agreement's Day", + "2002-11-09": "National Independence Day", + "2002-11-18": "Water Festival", + "2002-11-19": "Water Festival", + "2002-11-20": "Water Festival", + "2002-12-10": "International Human Rights Day", + "2003-01-01": "International New Year Day", + "2003-01-07": "Day of Victory over the Genocidal Regime", + "2003-02-16": "Meak Bochea Day", + "2003-03-08": "International Women's Rights Day", + "2003-04-13": "Khmer New Year's Day", + "2003-04-14": "Khmer New Year's Day", + "2003-04-15": "Khmer New Year's Day", + "2003-05-01": "International Labor Day", + "2003-05-15": "Visaka Bochea Day", + "2003-05-19": "Royal Ploughing Ceremony", + "2003-06-01": "International Children Day", + "2003-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2003-09-24": "Constitution Day; Pchum Ben Day", + "2003-09-25": "Pchum Ben Day", + "2003-10-23": "Paris Peace Agreement's Day", + "2003-11-07": "Water Festival", + "2003-11-08": "Water Festival", + "2003-11-09": "National Independence Day; Water Festival", + "2003-12-10": "International Human Rights Day", + "2004-01-01": "International New Year Day", + "2004-01-07": "Day of Victory over the Genocidal Regime", + "2004-02-05": "Meak Bochea Day", + "2004-03-08": "International Women's Rights Day", + "2004-04-13": "Khmer New Year's Day", + "2004-04-14": "Khmer New Year's Day", + "2004-04-15": "Khmer New Year's Day", + "2004-05-01": "International Labor Day", + "2004-05-03": "Visaka Bochea Day", + "2004-05-07": "Royal Ploughing Ceremony", + "2004-06-01": "International Children Day", + "2004-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2004-09-24": "Constitution Day", + "2004-10-12": "Pchum Ben Day", + "2004-10-13": "Pchum Ben Day", + "2004-10-23": "Paris Peace Agreement's Day", + "2004-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2004-11-09": "National Independence Day", + "2004-11-25": "Water Festival", + "2004-11-26": "Water Festival", + "2004-11-27": "Water Festival", + "2004-12-10": "International Human Rights Day", + "2005-01-01": "International New Year Day", + "2005-01-07": "Day of Victory over the Genocidal Regime", + "2005-02-23": "Meak Bochea Day", + "2005-03-08": "International Women's Rights Day", + "2005-04-13": "Khmer New Year's Day", + "2005-04-14": "Khmer New Year's Day", + "2005-04-15": "Khmer New Year's Day", + "2005-05-01": "International Labor Day", + "2005-05-13": "HM King Norodom Sihamoni's Birthday", + "2005-05-14": "HM King Norodom Sihamoni's Birthday", + "2005-05-15": "HM King Norodom Sihamoni's Birthday", + "2005-05-22": "Visaka Bochea Day", + "2005-05-26": "Royal Ploughing Ceremony", + "2005-06-01": "International Children Day", + "2005-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2005-09-24": "Constitution Day", + "2005-10-01": "Pchum Ben Day", + "2005-10-02": "Pchum Ben Day", + "2005-10-23": "Paris Peace Agreement's Day", + "2005-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2005-11-09": "National Independence Day", + "2005-11-14": "Water Festival", + "2005-11-15": "Water Festival", + "2005-11-16": "Water Festival", + "2005-12-10": "International Human Rights Day", + "2006-01-01": "International New Year Day", + "2006-01-07": "Day of Victory over the Genocidal Regime", + "2006-02-12": "Meak Bochea Day", + "2006-03-08": "International Women's Rights Day", + "2006-04-13": "Khmer New Year's Day", + "2006-04-14": "Khmer New Year's Day", + "2006-04-15": "Khmer New Year's Day", + "2006-05-01": "International Labor Day", + "2006-05-11": "Visaka Bochea Day", + "2006-05-13": "HM King Norodom Sihamoni's Birthday", + "2006-05-14": "HM King Norodom Sihamoni's Birthday", + "2006-05-15": "HM King Norodom Sihamoni's Birthday; Royal Ploughing Ceremony", + "2006-06-01": "International Children Day", + "2006-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2006-09-21": "Pchum Ben Day", + "2006-09-22": "Pchum Ben Day", + "2006-09-24": "Constitution Day", + "2006-10-23": "Paris Peace Agreement's Day", + "2006-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2006-11-04": "Water Festival", + "2006-11-05": "Water Festival", + "2006-11-06": "Water Festival", + "2006-11-09": "National Independence Day", + "2006-12-10": "International Human Rights Day", + "2007-01-01": "International New Year Day", + "2007-01-07": "Day of Victory over the Genocidal Regime", + "2007-02-02": "Meak Bochea Day", + "2007-03-08": "International Women's Rights Day", + "2007-04-13": "Khmer New Year's Day", + "2007-04-14": "Khmer New Year's Day", + "2007-04-15": "Khmer New Year's Day", + "2007-05-01": "International Labor Day; Visaka Bochea Day", + "2007-05-05": "Royal Ploughing Ceremony", + "2007-05-13": "HM King Norodom Sihamoni's Birthday", + "2007-05-14": "HM King Norodom Sihamoni's Birthday", + "2007-05-15": "HM King Norodom Sihamoni's Birthday", + "2007-06-01": "International Children Day", + "2007-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2007-09-24": "Constitution Day", + "2007-10-10": "Pchum Ben Day", + "2007-10-11": "Pchum Ben Day", + "2007-10-23": "Paris Peace Agreement's Day", + "2007-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2007-11-09": "National Independence Day", + "2007-11-23": "Water Festival", + "2007-11-24": "Water Festival", + "2007-11-25": "Water Festival", + "2007-12-10": "International Human Rights Day", + "2008-01-01": "International New Year Day", + "2008-01-07": "Day of Victory over the Genocidal Regime", + "2008-02-21": "Meak Bochea Day", + "2008-03-08": "International Women's Rights Day", + "2008-04-13": "Khmer New Year's Day", + "2008-04-14": "Khmer New Year's Day", + "2008-04-15": "Khmer New Year's Day", + "2008-05-01": "International Labor Day", + "2008-05-13": "HM King Norodom Sihamoni's Birthday", + "2008-05-14": "HM King Norodom Sihamoni's Birthday", + "2008-05-15": "HM King Norodom Sihamoni's Birthday", + "2008-05-19": "Visaka Bochea Day", + "2008-05-23": "Royal Ploughing Ceremony", + "2008-06-01": "International Children Day", + "2008-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2008-09-24": "Constitution Day", + "2008-09-28": "Pchum Ben Day", + "2008-09-29": "Pchum Ben Day", + "2008-10-23": "Paris Peace Agreement's Day", + "2008-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2008-11-09": "National Independence Day", + "2008-11-11": "Water Festival", + "2008-11-12": "Water Festival", + "2008-11-13": "Water Festival", + "2008-12-10": "International Human Rights Day", + "2009-01-01": "International New Year Day", + "2009-01-07": "Day of Victory over the Genocidal Regime", + "2009-02-09": "Meak Bochea Day", + "2009-03-08": "International Women's Rights Day", + "2009-04-13": "Khmer New Year's Day", + "2009-04-14": "Khmer New Year's Day", + "2009-04-15": "Khmer New Year's Day", + "2009-05-01": "International Labor Day", + "2009-05-08": "Visaka Bochea Day", + "2009-05-12": "Royal Ploughing Ceremony", + "2009-05-13": "HM King Norodom Sihamoni's Birthday", + "2009-05-14": "HM King Norodom Sihamoni's Birthday", + "2009-05-15": "HM King Norodom Sihamoni's Birthday", + "2009-06-01": "International Children Day", + "2009-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2009-09-18": "Pchum Ben Day", + "2009-09-19": "Pchum Ben Day", + "2009-09-24": "Constitution Day", + "2009-10-23": "Paris Peace Agreement's Day", + "2009-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2009-11-01": "Water Festival", + "2009-11-02": "Water Festival", + "2009-11-03": "Water Festival", + "2009-11-09": "National Independence Day", + "2009-12-10": "International Human Rights Day", + "2010-01-01": "International New Year Day", + "2010-01-07": "Day of Victory over the Genocidal Regime", + "2010-01-30": "Meak Bochea Day", + "2010-03-08": "International Women's Rights Day", + "2010-04-13": "Khmer New Year's Day", + "2010-04-14": "Khmer New Year's Day", + "2010-04-15": "Khmer New Year's Day", + "2010-04-28": "Visaka Bochea Day", + "2010-05-01": "International Labor Day", + "2010-05-02": "Royal Ploughing Ceremony", + "2010-05-13": "HM King Norodom Sihamoni's Birthday", + "2010-05-14": "HM King Norodom Sihamoni's Birthday", + "2010-05-15": "HM King Norodom Sihamoni's Birthday", + "2010-06-01": "International Children Day", + "2010-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2010-09-24": "Constitution Day", + "2010-10-07": "Pchum Ben Day", + "2010-10-08": "Pchum Ben Day", + "2010-10-23": "Paris Peace Agreement's Day", + "2010-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2010-11-09": "National Independence Day", + "2010-11-20": "Water Festival", + "2010-11-21": "Water Festival", + "2010-11-22": "Water Festival", + "2010-12-10": "International Human Rights Day", + "2011-01-01": "International New Year Day", + "2011-01-07": "Day of Victory over the Genocidal Regime", + "2011-02-18": "Meak Bochea Day", + "2011-03-08": "International Women's Rights Day", + "2011-04-13": "Khmer New Year's Day", + "2011-04-14": "Khmer New Year's Day", + "2011-04-15": "Khmer New Year's Day", + "2011-05-01": "International Labor Day", + "2011-05-13": "HM King Norodom Sihamoni's Birthday", + "2011-05-14": "HM King Norodom Sihamoni's Birthday", + "2011-05-15": "HM King Norodom Sihamoni's Birthday", + "2011-05-17": "Visaka Bochea Day", + "2011-05-21": "Royal Ploughing Ceremony", + "2011-06-01": "International Children Day", + "2011-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2011-09-24": "Constitution Day", + "2011-09-26": "Pchum Ben Day", + "2011-09-27": "Pchum Ben Day", + "2011-10-23": "Paris Peace Agreement's Day", + "2011-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2011-11-09": "National Independence Day; Water Festival", + "2011-11-10": "Water Festival", + "2011-11-11": "Water Festival", + "2011-12-10": "International Human Rights Day", + "2012-01-01": "International New Year Day", + "2012-01-07": "Day of Victory over the Genocidal Regime", + "2012-02-07": "Meak Bochea Day", + "2012-03-08": "International Women's Rights Day", + "2012-04-13": "Khmer New Year's Day", + "2012-04-14": "Khmer New Year's Day", + "2012-04-15": "Khmer New Year's Day", + "2012-05-01": "International Labor Day", + "2012-05-05": "Visaka Bochea Day", + "2012-05-09": "Royal Ploughing Ceremony", + "2012-05-13": "HM King Norodom Sihamoni's Birthday", + "2012-05-14": "HM King Norodom Sihamoni's Birthday", + "2012-05-15": "HM King Norodom Sihamoni's Birthday", + "2012-06-01": "International Children Day", + "2012-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2012-09-24": "Constitution Day", + "2012-10-14": "Pchum Ben Day", + "2012-10-15": "HM King Norodom Sihanouk Mourning Day; Pchum Ben Day", + "2012-10-23": "Paris Peace Agreement's Day", + "2012-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2012-11-09": "National Independence Day", + "2012-11-27": "Water Festival", + "2012-11-28": "Water Festival", + "2012-11-29": "Water Festival", + "2012-12-10": "International Human Rights Day", + "2013-01-01": "International New Year Day", + "2013-01-07": "Day of Victory over the Genocidal Regime", + "2013-02-25": "Meak Bochea Day", + "2013-03-08": "International Women's Rights Day", + "2013-04-13": "Khmer New Year's Day", + "2013-04-14": "Khmer New Year's Day", + "2013-04-15": "Khmer New Year's Day", + "2013-05-01": "International Labor Day", + "2013-05-13": "HM King Norodom Sihamoni's Birthday", + "2013-05-14": "HM King Norodom Sihamoni's Birthday", + "2013-05-15": "HM King Norodom Sihamoni's Birthday", + "2013-05-24": "Visaka Bochea Day", + "2013-05-28": "Royal Ploughing Ceremony", + "2013-06-01": "International Children Day", + "2013-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2013-09-24": "Constitution Day", + "2013-10-03": "Pchum Ben Day", + "2013-10-04": "Pchum Ben Day", + "2013-10-15": "HM King Norodom Sihanouk Mourning Day", + "2013-10-23": "Paris Peace Agreement's Day", + "2013-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2013-11-09": "National Independence Day", + "2013-11-16": "Water Festival", + "2013-11-17": "Water Festival", + "2013-11-18": "Water Festival", + "2013-12-10": "International Human Rights Day", + "2014-01-01": "International New Year Day", + "2014-01-07": "Day of Victory over the Genocidal Regime", + "2014-02-14": "Meak Bochea Day", + "2014-03-08": "International Women's Rights Day", + "2014-04-13": "Khmer New Year's Day", + "2014-04-14": "Khmer New Year's Day", + "2014-04-15": "Khmer New Year's Day", + "2014-05-01": "International Labor Day", + "2014-05-13": "HM King Norodom Sihamoni's Birthday; Visaka Bochea Day", + "2014-05-14": "HM King Norodom Sihamoni's Birthday", + "2014-05-15": "HM King Norodom Sihamoni's Birthday", + "2014-05-17": "Royal Ploughing Ceremony", + "2014-06-01": "International Children Day", + "2014-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2014-09-22": "Pchum Ben Day", + "2014-09-23": "Pchum Ben Day", + "2014-09-24": "Constitution Day", + "2014-10-15": "HM King Norodom Sihanouk Mourning Day", + "2014-10-23": "Paris Peace Agreement's Day", + "2014-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2014-11-05": "Water Festival", + "2014-11-06": "Water Festival", + "2014-11-07": "Water Festival", + "2014-11-09": "National Independence Day", + "2014-12-10": "International Human Rights Day", + "2015-01-01": "International New Year Day", + "2015-01-07": "Day of Victory over the Genocidal Regime", + "2015-02-03": "Meak Bochea Day", + "2015-03-08": "International Women's Rights Day", + "2015-04-13": "Khmer New Year's Day", + "2015-04-14": "Khmer New Year's Day", + "2015-04-15": "Khmer New Year's Day", + "2015-05-01": "International Labor Day", + "2015-05-02": "Visaka Bochea Day", + "2015-05-06": "Royal Ploughing Ceremony", + "2015-05-13": "HM King Norodom Sihamoni's Birthday", + "2015-05-14": "HM King Norodom Sihamoni's Birthday", + "2015-05-15": "HM King Norodom Sihamoni's Birthday", + "2015-06-01": "International Children Day", + "2015-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2015-09-24": "Constitution Day", + "2015-10-11": "Pchum Ben Day", + "2015-10-12": "Pchum Ben Day", + "2015-10-15": "HM King Norodom Sihanouk Mourning Day", + "2015-10-23": "Paris Peace Agreement's Day", + "2015-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2015-11-09": "National Independence Day", + "2015-11-24": "Water Festival", + "2015-11-25": "Water Festival", + "2015-11-26": "Water Festival", + "2015-12-10": "International Human Rights Day", + "2016-01-01": "International New Year Day", + "2016-01-07": "Day of Victory over the Genocidal Regime", + "2016-02-22": "Meak Bochea Day", + "2016-03-08": "International Women's Rights Day", + "2016-04-13": "Khmer New Year's Day", + "2016-04-14": "Khmer New Year's Day", + "2016-04-15": "Khmer New Year's Day", + "2016-05-01": "International Labor Day", + "2016-05-02": "Special Public Holiday", + "2016-05-13": "HM King Norodom Sihamoni's Birthday", + "2016-05-14": "HM King Norodom Sihamoni's Birthday", + "2016-05-15": "HM King Norodom Sihamoni's Birthday", + "2016-05-16": "Special Public Holiday", + "2016-05-20": "Visaka Bochea Day", + "2016-05-24": "Royal Ploughing Ceremony", + "2016-06-01": "International Children Day", + "2016-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2016-09-24": "Constitution Day", + "2016-09-30": "Pchum Ben Day", + "2016-10-01": "Pchum Ben Day", + "2016-10-15": "HM King Norodom Sihanouk Mourning Day", + "2016-10-23": "Paris Peace Agreement's Day", + "2016-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2016-11-09": "National Independence Day", + "2016-11-13": "Water Festival", + "2016-11-14": "Water Festival", + "2016-11-15": "Water Festival", + "2016-12-10": "International Human Rights Day", + "2017-01-01": "International New Year Day", + "2017-01-07": "Day of Victory over the Genocidal Regime", + "2017-02-11": "Meak Bochea Day", + "2017-03-08": "International Women's Rights Day", + "2017-04-14": "Khmer New Year's Day", + "2017-04-15": "Khmer New Year's Day", + "2017-04-16": "Khmer New Year's Day", + "2017-05-01": "International Labor Day", + "2017-05-10": "Visaka Bochea Day", + "2017-05-13": "HM King Norodom Sihamoni's Birthday", + "2017-05-14": "HM King Norodom Sihamoni's Birthday; Royal Ploughing Ceremony", + "2017-05-15": "HM King Norodom Sihamoni's Birthday", + "2017-06-01": "International Children Day", + "2017-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2017-09-19": "Pchum Ben Day", + "2017-09-20": "Pchum Ben Day", + "2017-09-21": "Pchum Ben Day", + "2017-09-24": "Constitution Day", + "2017-10-15": "HM King Norodom Sihanouk Mourning Day", + "2017-10-23": "Paris Peace Agreement's Day", + "2017-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2017-11-02": "Water Festival", + "2017-11-03": "Water Festival", + "2017-11-04": "Water Festival", + "2017-11-09": "National Independence Day", + "2017-12-10": "International Human Rights Day", + "2018-01-01": "International New Year Day", + "2018-01-07": "Day of Victory over the Genocidal Regime", + "2018-01-31": "Meak Bochea Day", + "2018-03-08": "International Women's Rights Day", + "2018-04-14": "Khmer New Year's Day", + "2018-04-15": "Khmer New Year's Day", + "2018-04-16": "Khmer New Year's Day", + "2018-04-29": "Visaka Bochea Day", + "2018-05-01": "International Labor Day", + "2018-05-03": "Royal Ploughing Ceremony", + "2018-05-13": "HM King Norodom Sihamoni's Birthday", + "2018-05-14": "HM King Norodom Sihamoni's Birthday", + "2018-05-15": "HM King Norodom Sihamoni's Birthday", + "2018-05-20": "National Day of Remembrance", + "2018-05-21": "Special Public Holiday", + "2018-06-01": "International Children Day", + "2018-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2018-09-24": "Constitution Day", + "2018-10-08": "Pchum Ben Day", + "2018-10-09": "Pchum Ben Day", + "2018-10-10": "Pchum Ben Day", + "2018-10-15": "HM King Norodom Sihanouk Mourning Day", + "2018-10-23": "Paris Peace Agreement's Day", + "2018-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2018-11-09": "National Independence Day", + "2018-11-21": "Water Festival", + "2018-11-22": "Water Festival", + "2018-11-23": "Water Festival", + "2018-12-10": "International Human Rights Day", + "2019-01-01": "International New Year Day", + "2019-01-07": "Day of Victory over the Genocidal Regime", + "2019-02-19": "Meak Bochea Day", + "2019-03-08": "International Women's Rights Day", + "2019-04-13": "Khmer New Year's Day", + "2019-04-14": "Khmer New Year's Day", + "2019-04-15": "Khmer New Year's Day", + "2019-05-01": "International Labor Day", + "2019-05-13": "HM King Norodom Sihamoni's Birthday", + "2019-05-14": "HM King Norodom Sihamoni's Birthday", + "2019-05-15": "HM King Norodom Sihamoni's Birthday", + "2019-05-18": "Visaka Bochea Day", + "2019-05-20": "National Day of Remembrance", + "2019-05-22": "Royal Ploughing Ceremony", + "2019-06-01": "International Children Day", + "2019-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2019-09-24": "Constitution Day", + "2019-09-27": "Pchum Ben Day", + "2019-09-28": "Pchum Ben Day", + "2019-09-29": "Pchum Ben Day", + "2019-09-30": "Special Public Holiday", + "2019-10-15": "HM King Norodom Sihanouk Mourning Day", + "2019-10-23": "Paris Peace Agreement's Day", + "2019-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2019-11-09": "National Independence Day", + "2019-11-10": "Water Festival", + "2019-11-11": "Water Festival", + "2019-11-12": "Water Festival", + "2019-12-10": "International Human Rights Day", + "2020-01-01": "International New Year Day", + "2020-01-07": "Day of Victory over the Genocidal Regime", + "2020-03-08": "International Women's Rights Day", + "2020-05-01": "International Labor Day", + "2020-05-06": "Visaka Bochea Day", + "2020-05-10": "Royal Ploughing Ceremony", + "2020-05-11": "Special Public Holiday", + "2020-05-14": "HM King Norodom Sihamoni's Birthday", + "2020-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2020-08-17": "Khmer New Year's Replacement Holiday", + "2020-08-18": "Khmer New Year's Replacement Holiday", + "2020-08-19": "Khmer New Year's Replacement Holiday", + "2020-08-20": "Khmer New Year's Replacement Holiday", + "2020-08-21": "Khmer New Year's Replacement Holiday", + "2020-09-16": "Pchum Ben Day", + "2020-09-17": "Pchum Ben Day", + "2020-09-18": "Pchum Ben Day", + "2020-09-24": "Constitution Day", + "2020-10-15": "HM King Norodom Sihanouk Mourning Day", + "2020-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2020-10-30": "Water Festival", + "2020-10-31": "Water Festival", + "2020-11-01": "Water Festival", + "2020-11-09": "National Independence Day", + "2021-01-01": "International New Year Day", + "2021-01-07": "Day of Victory over the Genocidal Regime", + "2021-03-08": "International Women's Rights Day", + "2021-04-14": "Khmer New Year's Day", + "2021-04-15": "Khmer New Year's Day", + "2021-04-16": "Khmer New Year's Day", + "2021-04-26": "Visaka Bochea Day", + "2021-04-30": "Royal Ploughing Ceremony", + "2021-05-01": "International Labor Day", + "2021-05-14": "HM King Norodom Sihamoni's Birthday", + "2021-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2021-09-24": "Constitution Day", + "2021-10-05": "Pchum Ben Day", + "2021-10-06": "Pchum Ben Day", + "2021-10-07": "Pchum Ben Day", + "2021-10-15": "HM King Norodom Sihanouk Mourning Day", + "2021-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2021-11-09": "National Independence Day", + "2021-11-18": "Water Festival", + "2021-11-19": "Water Festival", + "2021-11-20": "Water Festival", + "2022-01-01": "International New Year Day", + "2022-01-07": "Day of Victory over the Genocidal Regime", + "2022-03-08": "International Women's Rights Day", + "2022-04-14": "Khmer New Year's Day", + "2022-04-15": "Khmer New Year's Day", + "2022-04-16": "Khmer New Year's Day", + "2022-05-01": "International Labor Day", + "2022-05-14": "HM King Norodom Sihamoni's Birthday", + "2022-05-15": "Visaka Bochea Day", + "2022-05-19": "Royal Ploughing Ceremony", + "2022-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2022-09-24": "Constitution Day; Pchum Ben Day", + "2022-09-25": "Pchum Ben Day", + "2022-09-26": "Pchum Ben Day", + "2022-10-15": "HM King Norodom Sihanouk Mourning Day", + "2022-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2022-11-07": "Water Festival", + "2022-11-08": "Water Festival", + "2022-11-09": "National Independence Day; Water Festival", + "2023-01-01": "International New Year Day", + "2023-01-07": "Day of Victory over the Genocidal Regime", + "2023-03-08": "International Women's Rights Day", + "2023-04-14": "Khmer New Year's Day", + "2023-04-15": "Khmer New Year's Day", + "2023-04-16": "Khmer New Year's Day", + "2023-05-01": "International Labor Day", + "2023-05-04": "Visaka Bochea Day", + "2023-05-08": "Royal Ploughing Ceremony", + "2023-05-14": "HM King Norodom Sihamoni's Birthday", + "2023-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2023-09-24": "Constitution Day", + "2023-10-13": "Pchum Ben Day", + "2023-10-14": "Pchum Ben Day", + "2023-10-15": "HM King Norodom Sihanouk Mourning Day; Pchum Ben Day", + "2023-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2023-11-09": "National Independence Day", + "2023-11-26": "Water Festival", + "2023-11-27": "Water Festival", + "2023-11-28": "Water Festival", + "2024-01-01": "International New Year Day", + "2024-01-07": "Day of Victory over the Genocidal Regime", + "2024-03-08": "International Women's Rights Day", + "2024-04-13": "Khmer New Year's Day", + "2024-04-14": "Khmer New Year's Day", + "2024-04-15": "Khmer New Year's Day", + "2024-05-01": "International Labor Day", + "2024-05-14": "HM King Norodom Sihamoni's Birthday", + "2024-05-22": "Visaka Bochea Day", + "2024-05-26": "Royal Ploughing Ceremony", + "2024-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2024-09-24": "Constitution Day", + "2024-10-01": "Pchum Ben Day", + "2024-10-02": "Pchum Ben Day", + "2024-10-03": "Pchum Ben Day", + "2024-10-15": "HM King Norodom Sihanouk Mourning Day", + "2024-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2024-11-09": "National Independence Day", + "2024-11-14": "Water Festival", + "2024-11-15": "Water Festival", + "2024-11-16": "Water Festival", + "2025-01-01": "International New Year Day", + "2025-01-07": "Day of Victory over the Genocidal Regime", + "2025-03-08": "International Women's Rights Day", + "2025-04-13": "Khmer New Year's Day", + "2025-04-14": "Khmer New Year's Day", + "2025-04-15": "Khmer New Year's Day", + "2025-05-01": "International Labor Day", + "2025-05-11": "Visaka Bochea Day", + "2025-05-14": "HM King Norodom Sihamoni's Birthday", + "2025-05-15": "Royal Ploughing Ceremony", + "2025-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2025-09-21": "Pchum Ben Day", + "2025-09-22": "Pchum Ben Day", + "2025-09-23": "Pchum Ben Day", + "2025-09-24": "Constitution Day", + "2025-10-15": "HM King Norodom Sihanouk Mourning Day", + "2025-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2025-11-04": "Water Festival", + "2025-11-05": "Water Festival", + "2025-11-06": "Water Festival", + "2025-11-09": "National Independence Day", + "2026-01-01": "International New Year Day", + "2026-01-07": "Day of Victory over the Genocidal Regime", + "2026-03-08": "International Women's Rights Day", + "2026-04-13": "Khmer New Year's Day", + "2026-04-14": "Khmer New Year's Day", + "2026-04-15": "Khmer New Year's Day", + "2026-05-01": "International Labor Day; Visaka Bochea Day", + "2026-05-05": "Royal Ploughing Ceremony", + "2026-05-14": "HM King Norodom Sihamoni's Birthday", + "2026-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2026-09-24": "Constitution Day", + "2026-10-10": "Pchum Ben Day", + "2026-10-11": "Pchum Ben Day", + "2026-10-12": "Pchum Ben Day", + "2026-10-15": "HM King Norodom Sihanouk Mourning Day", + "2026-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2026-11-09": "National Independence Day", + "2026-11-23": "Water Festival", + "2026-11-24": "Water Festival", + "2026-11-25": "Water Festival", + "2027-01-01": "International New Year Day", + "2027-01-07": "Day of Victory over the Genocidal Regime", + "2027-03-08": "International Women's Rights Day", + "2027-04-13": "Khmer New Year's Day", + "2027-04-14": "Khmer New Year's Day", + "2027-04-15": "Khmer New Year's Day", + "2027-05-01": "International Labor Day", + "2027-05-14": "HM King Norodom Sihamoni's Birthday", + "2027-05-20": "Visaka Bochea Day", + "2027-05-24": "Royal Ploughing Ceremony", + "2027-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2027-09-24": "Constitution Day", + "2027-09-29": "Pchum Ben Day", + "2027-09-30": "Pchum Ben Day", + "2027-10-01": "Pchum Ben Day", + "2027-10-15": "HM King Norodom Sihanouk Mourning Day", + "2027-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2027-11-09": "National Independence Day", + "2027-11-12": "Water Festival", + "2027-11-13": "Water Festival", + "2027-11-14": "Water Festival", + "2028-01-01": "International New Year Day", + "2028-01-07": "Day of Victory over the Genocidal Regime", + "2028-03-08": "International Women's Rights Day", + "2028-04-13": "Khmer New Year's Day", + "2028-04-14": "Khmer New Year's Day", + "2028-04-15": "Khmer New Year's Day", + "2028-05-01": "International Labor Day", + "2028-05-08": "Visaka Bochea Day", + "2028-05-12": "Royal Ploughing Ceremony", + "2028-05-14": "HM King Norodom Sihamoni's Birthday", + "2028-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2028-09-17": "Pchum Ben Day", + "2028-09-18": "Pchum Ben Day", + "2028-09-19": "Pchum Ben Day", + "2028-09-24": "Constitution Day", + "2028-10-15": "HM King Norodom Sihanouk Mourning Day", + "2028-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2028-10-31": "Water Festival", + "2028-11-01": "Water Festival", + "2028-11-02": "Water Festival", + "2028-11-09": "National Independence Day", + "2029-01-01": "International New Year Day", + "2029-01-07": "Day of Victory over the Genocidal Regime", + "2029-03-08": "International Women's Rights Day", + "2029-04-13": "Khmer New Year's Day", + "2029-04-14": "Khmer New Year's Day", + "2029-04-15": "Khmer New Year's Day", + "2029-04-27": "Visaka Bochea Day", + "2029-05-01": "International Labor Day; Royal Ploughing Ceremony", + "2029-05-14": "HM King Norodom Sihamoni's Birthday", + "2029-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2029-09-24": "Constitution Day", + "2029-10-06": "Pchum Ben Day", + "2029-10-07": "Pchum Ben Day", + "2029-10-08": "Pchum Ben Day", + "2029-10-15": "HM King Norodom Sihanouk Mourning Day", + "2029-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2029-11-09": "National Independence Day", + "2029-11-19": "Water Festival", + "2029-11-20": "Water Festival", + "2029-11-21": "Water Festival", + "2030-01-01": "International New Year Day", + "2030-01-07": "Day of Victory over the Genocidal Regime", + "2030-03-08": "International Women's Rights Day", + "2030-04-13": "Khmer New Year's Day", + "2030-04-14": "Khmer New Year's Day", + "2030-04-15": "Khmer New Year's Day", + "2030-05-01": "International Labor Day", + "2030-05-14": "HM King Norodom Sihamoni's Birthday", + "2030-05-16": "Visaka Bochea Day", + "2030-05-20": "Royal Ploughing Ceremony", + "2030-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2030-09-24": "Constitution Day", + "2030-09-25": "Pchum Ben Day", + "2030-09-26": "Pchum Ben Day", + "2030-09-27": "Pchum Ben Day", + "2030-10-15": "HM King Norodom Sihanouk Mourning Day", + "2030-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2030-11-08": "Water Festival", + "2030-11-09": "National Independence Day; Water Festival", + "2030-11-10": "Water Festival", + "2031-01-01": "International New Year Day", + "2031-01-07": "Day of Victory over the Genocidal Regime", + "2031-03-08": "International Women's Rights Day", + "2031-04-13": "Khmer New Year's Day", + "2031-04-14": "Khmer New Year's Day", + "2031-04-15": "Khmer New Year's Day", + "2031-05-01": "International Labor Day", + "2031-05-05": "Visaka Bochea Day", + "2031-05-09": "Royal Ploughing Ceremony", + "2031-05-14": "HM King Norodom Sihamoni's Birthday", + "2031-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2031-09-24": "Constitution Day", + "2031-10-14": "Pchum Ben Day", + "2031-10-15": "HM King Norodom Sihanouk Mourning Day; Pchum Ben Day", + "2031-10-16": "Pchum Ben Day", + "2031-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2031-11-09": "National Independence Day", + "2031-11-27": "Water Festival", + "2031-11-28": "Water Festival", + "2031-11-29": "Water Festival", + "2032-01-01": "International New Year Day", + "2032-01-07": "Day of Victory over the Genocidal Regime", + "2032-03-08": "International Women's Rights Day", + "2032-04-13": "Khmer New Year's Day", + "2032-04-14": "Khmer New Year's Day", + "2032-04-15": "Khmer New Year's Day", + "2032-05-01": "International Labor Day", + "2032-05-14": "HM King Norodom Sihamoni's Birthday", + "2032-05-23": "Visaka Bochea Day", + "2032-05-27": "Royal Ploughing Ceremony", + "2032-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2032-09-24": "Constitution Day", + "2032-10-03": "Pchum Ben Day", + "2032-10-04": "Pchum Ben Day", + "2032-10-05": "Pchum Ben Day", + "2032-10-15": "HM King Norodom Sihanouk Mourning Day", + "2032-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2032-11-09": "National Independence Day", + "2032-11-16": "Water Festival", + "2032-11-17": "Water Festival", + "2032-11-18": "Water Festival", + "2033-01-01": "International New Year Day", + "2033-01-07": "Day of Victory over the Genocidal Regime", + "2033-03-08": "International Women's Rights Day", + "2033-04-13": "Khmer New Year's Day", + "2033-04-14": "Khmer New Year's Day", + "2033-04-15": "Khmer New Year's Day", + "2033-05-01": "International Labor Day", + "2033-05-13": "Visaka Bochea Day", + "2033-05-14": "HM King Norodom Sihamoni's Birthday", + "2033-05-17": "Royal Ploughing Ceremony", + "2033-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2033-09-22": "Pchum Ben Day", + "2033-09-23": "Pchum Ben Day", + "2033-09-24": "Constitution Day; Pchum Ben Day", + "2033-10-15": "HM King Norodom Sihanouk Mourning Day", + "2033-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2033-11-05": "Water Festival", + "2033-11-06": "Water Festival", + "2033-11-07": "Water Festival", + "2033-11-09": "National Independence Day", + "2034-01-01": "International New Year Day", + "2034-01-07": "Day of Victory over the Genocidal Regime", + "2034-03-08": "International Women's Rights Day", + "2034-04-13": "Khmer New Year's Day", + "2034-04-14": "Khmer New Year's Day", + "2034-04-15": "Khmer New Year's Day", + "2034-05-01": "International Labor Day", + "2034-05-02": "Visaka Bochea Day", + "2034-05-06": "Royal Ploughing Ceremony", + "2034-05-14": "HM King Norodom Sihamoni's Birthday", + "2034-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2034-09-24": "Constitution Day", + "2034-10-11": "Pchum Ben Day", + "2034-10-12": "Pchum Ben Day", + "2034-10-13": "Pchum Ben Day", + "2034-10-15": "HM King Norodom Sihanouk Mourning Day", + "2034-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2034-11-09": "National Independence Day", + "2034-11-24": "Water Festival", + "2034-11-25": "Water Festival", + "2034-11-26": "Water Festival", + "2035-01-01": "International New Year Day", + "2035-01-07": "Day of Victory over the Genocidal Regime", + "2035-03-08": "International Women's Rights Day", + "2035-04-13": "Khmer New Year's Day", + "2035-04-14": "Khmer New Year's Day", + "2035-04-15": "Khmer New Year's Day", + "2035-05-01": "International Labor Day", + "2035-05-14": "HM King Norodom Sihamoni's Birthday", + "2035-05-21": "Visaka Bochea Day", + "2035-05-25": "Royal Ploughing Ceremony", + "2035-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2035-09-24": "Constitution Day", + "2035-10-01": "Pchum Ben Day", + "2035-10-02": "Pchum Ben Day", + "2035-10-03": "Pchum Ben Day", + "2035-10-15": "HM King Norodom Sihanouk Mourning Day", + "2035-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2035-11-09": "National Independence Day", + "2035-11-14": "Water Festival", + "2035-11-15": "Water Festival", + "2035-11-16": "Water Festival", + "2036-01-01": "International New Year Day", + "2036-01-07": "Day of Victory over the Genocidal Regime", + "2036-03-08": "International Women's Rights Day", + "2036-04-13": "Khmer New Year's Day", + "2036-04-14": "Khmer New Year's Day", + "2036-04-15": "Khmer New Year's Day", + "2036-05-01": "International Labor Day", + "2036-05-10": "Visaka Bochea Day", + "2036-05-14": "HM King Norodom Sihamoni's Birthday; Royal Ploughing Ceremony", + "2036-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2036-09-19": "Pchum Ben Day", + "2036-09-20": "Pchum Ben Day", + "2036-09-21": "Pchum Ben Day", + "2036-09-24": "Constitution Day", + "2036-10-15": "HM King Norodom Sihanouk Mourning Day", + "2036-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2036-11-02": "Water Festival", + "2036-11-03": "Water Festival", + "2036-11-04": "Water Festival", + "2036-11-09": "National Independence Day", + "2037-01-01": "International New Year Day", + "2037-01-07": "Day of Victory over the Genocidal Regime", + "2037-03-08": "International Women's Rights Day", + "2037-04-13": "Khmer New Year's Day", + "2037-04-14": "Khmer New Year's Day", + "2037-04-15": "Khmer New Year's Day", + "2037-04-29": "Visaka Bochea Day", + "2037-05-01": "International Labor Day", + "2037-05-03": "Royal Ploughing Ceremony", + "2037-05-14": "HM King Norodom Sihamoni's Birthday", + "2037-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2037-09-24": "Constitution Day", + "2037-10-08": "Pchum Ben Day", + "2037-10-09": "Pchum Ben Day", + "2037-10-10": "Pchum Ben Day", + "2037-10-15": "HM King Norodom Sihanouk Mourning Day", + "2037-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2037-11-09": "National Independence Day", + "2037-11-21": "Water Festival", + "2037-11-22": "Water Festival", + "2037-11-23": "Water Festival", + "2038-01-01": "International New Year Day", + "2038-01-07": "Day of Victory over the Genocidal Regime", + "2038-03-08": "International Women's Rights Day", + "2038-04-13": "Khmer New Year's Day", + "2038-04-14": "Khmer New Year's Day", + "2038-04-15": "Khmer New Year's Day", + "2038-05-01": "International Labor Day", + "2038-05-14": "HM King Norodom Sihamoni's Birthday", + "2038-05-18": "Visaka Bochea Day", + "2038-05-22": "Royal Ploughing Ceremony", + "2038-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2038-09-24": "Constitution Day", + "2038-09-27": "Pchum Ben Day", + "2038-09-28": "Pchum Ben Day", + "2038-09-29": "Pchum Ben Day", + "2038-10-15": "HM King Norodom Sihanouk Mourning Day", + "2038-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2038-11-09": "National Independence Day", + "2038-11-10": "Water Festival", + "2038-11-11": "Water Festival", + "2038-11-12": "Water Festival", + "2039-01-01": "International New Year Day", + "2039-01-07": "Day of Victory over the Genocidal Regime", + "2039-03-08": "International Women's Rights Day", + "2039-04-13": "Khmer New Year's Day", + "2039-04-14": "Khmer New Year's Day", + "2039-04-15": "Khmer New Year's Day", + "2039-05-01": "International Labor Day", + "2039-05-07": "Visaka Bochea Day", + "2039-05-11": "Royal Ploughing Ceremony", + "2039-05-14": "HM King Norodom Sihamoni's Birthday", + "2039-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2039-09-16": "Pchum Ben Day", + "2039-09-17": "Pchum Ben Day", + "2039-09-18": "Pchum Ben Day", + "2039-09-24": "Constitution Day", + "2039-10-15": "HM King Norodom Sihanouk Mourning Day", + "2039-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2039-10-30": "Water Festival", + "2039-10-31": "Water Festival", + "2039-11-01": "Water Festival", + "2039-11-09": "National Independence Day", + "2040-01-01": "International New Year Day", + "2040-01-07": "Day of Victory over the Genocidal Regime", + "2040-03-08": "International Women's Rights Day", + "2040-04-13": "Khmer New Year's Day", + "2040-04-14": "Khmer New Year's Day", + "2040-04-15": "Khmer New Year's Day", + "2040-04-25": "Visaka Bochea Day", + "2040-04-29": "Royal Ploughing Ceremony", + "2040-05-01": "International Labor Day", + "2040-05-14": "HM King Norodom Sihamoni's Birthday", + "2040-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2040-09-24": "Constitution Day", + "2040-10-04": "Pchum Ben Day", + "2040-10-05": "Pchum Ben Day", + "2040-10-06": "Pchum Ben Day", + "2040-10-15": "HM King Norodom Sihanouk Mourning Day", + "2040-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2040-11-09": "National Independence Day", + "2040-11-17": "Water Festival", + "2040-11-18": "Water Festival", + "2040-11-19": "Water Festival", + "2041-01-01": "International New Year Day", + "2041-01-07": "Day of Victory over the Genocidal Regime", + "2041-03-08": "International Women's Rights Day", + "2041-04-13": "Khmer New Year's Day", + "2041-04-14": "Khmer New Year's Day", + "2041-04-15": "Khmer New Year's Day", + "2041-05-01": "International Labor Day", + "2041-05-14": "HM King Norodom Sihamoni's Birthday; Visaka Bochea Day", + "2041-05-18": "Royal Ploughing Ceremony", + "2041-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2041-09-23": "Pchum Ben Day", + "2041-09-24": "Constitution Day; Pchum Ben Day", + "2041-09-25": "Pchum Ben Day", + "2041-10-15": "HM King Norodom Sihanouk Mourning Day", + "2041-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2041-11-06": "Water Festival", + "2041-11-07": "Water Festival", + "2041-11-08": "Water Festival", + "2041-11-09": "National Independence Day", + "2042-01-01": "International New Year Day", + "2042-01-07": "Day of Victory over the Genocidal Regime", + "2042-03-08": "International Women's Rights Day", + "2042-04-13": "Khmer New Year's Day", + "2042-04-14": "Khmer New Year's Day", + "2042-04-15": "Khmer New Year's Day", + "2042-05-01": "International Labor Day", + "2042-05-03": "Visaka Bochea Day", + "2042-05-07": "Royal Ploughing Ceremony", + "2042-05-14": "HM King Norodom Sihamoni's Birthday", + "2042-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2042-09-24": "Constitution Day", + "2042-10-12": "Pchum Ben Day", + "2042-10-13": "Pchum Ben Day", + "2042-10-14": "Pchum Ben Day", + "2042-10-15": "HM King Norodom Sihanouk Mourning Day", + "2042-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2042-11-09": "National Independence Day", + "2042-11-25": "Water Festival", + "2042-11-26": "Water Festival", + "2042-11-27": "Water Festival", + "2043-01-01": "International New Year Day", + "2043-01-07": "Day of Victory over the Genocidal Regime", + "2043-03-08": "International Women's Rights Day", + "2043-04-13": "Khmer New Year's Day", + "2043-04-14": "Khmer New Year's Day", + "2043-04-15": "Khmer New Year's Day", + "2043-05-01": "International Labor Day", + "2043-05-14": "HM King Norodom Sihamoni's Birthday", + "2043-05-22": "Visaka Bochea Day", + "2043-05-26": "Royal Ploughing Ceremony", + "2043-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2043-09-24": "Constitution Day", + "2043-10-02": "Pchum Ben Day", + "2043-10-03": "Pchum Ben Day", + "2043-10-04": "Pchum Ben Day", + "2043-10-15": "HM King Norodom Sihanouk Mourning Day", + "2043-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2043-11-09": "National Independence Day", + "2043-11-15": "Water Festival", + "2043-11-16": "Water Festival", + "2043-11-17": "Water Festival", + "2044-01-01": "International New Year Day", + "2044-01-07": "Day of Victory over the Genocidal Regime", + "2044-03-08": "International Women's Rights Day", + "2044-04-13": "Khmer New Year's Day", + "2044-04-14": "Khmer New Year's Day", + "2044-04-15": "Khmer New Year's Day", + "2044-05-01": "International Labor Day", + "2044-05-11": "Visaka Bochea Day", + "2044-05-14": "HM King Norodom Sihamoni's Birthday", + "2044-05-15": "Royal Ploughing Ceremony", + "2044-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2044-09-20": "Pchum Ben Day", + "2044-09-21": "Pchum Ben Day", + "2044-09-22": "Pchum Ben Day", + "2044-09-24": "Constitution Day", + "2044-10-15": "HM King Norodom Sihanouk Mourning Day", + "2044-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2044-11-03": "Water Festival", + "2044-11-04": "Water Festival", + "2044-11-05": "Water Festival", + "2044-11-09": "National Independence Day", + "2045-01-01": "International New Year Day", + "2045-01-07": "Day of Victory over the Genocidal Regime", + "2045-03-08": "International Women's Rights Day", + "2045-04-13": "Khmer New Year's Day", + "2045-04-14": "Khmer New Year's Day", + "2045-04-15": "Khmer New Year's Day", + "2045-04-30": "Visaka Bochea Day", + "2045-05-01": "International Labor Day", + "2045-05-04": "Royal Ploughing Ceremony", + "2045-05-14": "HM King Norodom Sihamoni's Birthday", + "2045-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2045-09-24": "Constitution Day", + "2045-10-09": "Pchum Ben Day", + "2045-10-10": "Pchum Ben Day", + "2045-10-11": "Pchum Ben Day", + "2045-10-15": "HM King Norodom Sihanouk Mourning Day", + "2045-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2045-11-09": "National Independence Day", + "2045-11-22": "Water Festival", + "2045-11-23": "Water Festival", + "2045-11-24": "Water Festival", + "2046-01-01": "International New Year Day", + "2046-01-07": "Day of Victory over the Genocidal Regime", + "2046-03-08": "International Women's Rights Day", + "2046-04-13": "Khmer New Year's Day", + "2046-04-14": "Khmer New Year's Day", + "2046-04-15": "Khmer New Year's Day", + "2046-05-01": "International Labor Day", + "2046-05-14": "HM King Norodom Sihamoni's Birthday", + "2046-05-19": "Visaka Bochea Day", + "2046-05-23": "Royal Ploughing Ceremony", + "2046-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2046-09-24": "Constitution Day", + "2046-09-29": "Pchum Ben Day", + "2046-09-30": "Pchum Ben Day", + "2046-10-01": "Pchum Ben Day", + "2046-10-15": "HM King Norodom Sihanouk Mourning Day", + "2046-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2046-11-09": "National Independence Day", + "2046-11-12": "Water Festival", + "2046-11-13": "Water Festival", + "2046-11-14": "Water Festival", + "2047-01-01": "International New Year Day", + "2047-01-07": "Day of Victory over the Genocidal Regime", + "2047-03-08": "International Women's Rights Day", + "2047-04-13": "Khmer New Year's Day", + "2047-04-14": "Khmer New Year's Day", + "2047-04-15": "Khmer New Year's Day", + "2047-05-01": "International Labor Day", + "2047-05-09": "Visaka Bochea Day", + "2047-05-13": "Royal Ploughing Ceremony", + "2047-05-14": "HM King Norodom Sihamoni's Birthday", + "2047-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2047-09-18": "Pchum Ben Day", + "2047-09-19": "Pchum Ben Day", + "2047-09-20": "Pchum Ben Day", + "2047-09-24": "Constitution Day", + "2047-10-15": "HM King Norodom Sihanouk Mourning Day", + "2047-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2047-11-01": "Water Festival", + "2047-11-02": "Water Festival", + "2047-11-03": "Water Festival", + "2047-11-09": "National Independence Day", + "2048-01-01": "International New Year Day", + "2048-01-07": "Day of Victory over the Genocidal Regime", + "2048-03-08": "International Women's Rights Day", + "2048-04-13": "Khmer New Year's Day", + "2048-04-14": "Khmer New Year's Day", + "2048-04-15": "Khmer New Year's Day", + "2048-04-27": "Visaka Bochea Day", + "2048-05-01": "International Labor Day; Royal Ploughing Ceremony", + "2048-05-14": "HM King Norodom Sihamoni's Birthday", + "2048-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2048-09-24": "Constitution Day", + "2048-10-06": "Pchum Ben Day", + "2048-10-07": "Pchum Ben Day", + "2048-10-08": "Pchum Ben Day", + "2048-10-15": "HM King Norodom Sihanouk Mourning Day", + "2048-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2048-11-09": "National Independence Day", + "2048-11-19": "Water Festival", + "2048-11-20": "Water Festival", + "2048-11-21": "Water Festival", + "2049-01-01": "International New Year Day", + "2049-01-07": "Day of Victory over the Genocidal Regime", + "2049-03-08": "International Women's Rights Day", + "2049-04-13": "Khmer New Year's Day", + "2049-04-14": "Khmer New Year's Day", + "2049-04-15": "Khmer New Year's Day", + "2049-05-01": "International Labor Day", + "2049-05-14": "HM King Norodom Sihamoni's Birthday", + "2049-05-16": "Visaka Bochea Day", + "2049-05-20": "Royal Ploughing Ceremony", + "2049-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2049-09-24": "Constitution Day", + "2049-09-25": "Pchum Ben Day", + "2049-09-26": "Pchum Ben Day", + "2049-09-27": "Pchum Ben Day", + "2049-10-15": "HM King Norodom Sihanouk Mourning Day", + "2049-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2049-11-08": "Water Festival", + "2049-11-09": "National Independence Day; Water Festival", + "2049-11-10": "Water Festival", + "2050-01-01": "International New Year Day", + "2050-01-07": "Day of Victory over the Genocidal Regime", + "2050-03-08": "International Women's Rights Day", + "2050-04-13": "Khmer New Year's Day", + "2050-04-14": "Khmer New Year's Day", + "2050-04-15": "Khmer New Year's Day", + "2050-05-01": "International Labor Day", + "2050-05-05": "Visaka Bochea Day", + "2050-05-09": "Royal Ploughing Ceremony", + "2050-05-14": "HM King Norodom Sihamoni's Birthday", + "2050-06-18": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "2050-09-24": "Constitution Day", + "2050-10-14": "Pchum Ben Day", + "2050-10-15": "HM King Norodom Sihanouk Mourning Day; Pchum Ben Day", + "2050-10-16": "Pchum Ben Day", + "2050-10-29": "HM King Norodom Sihamoni's Coronation Day", + "2050-11-09": "National Independence Day", + "2050-11-27": "Water Festival", + "2050-11-28": "Water Festival", + "2050-11-29": "Water Festival" +} diff --git a/snapshots/countries/KR.json b/snapshots/countries/KR.json new file mode 100644 index 000000000..8d77e7ea2 --- /dev/null +++ b/snapshots/countries/KR.json @@ -0,0 +1,1827 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-02": "New Year's Day", + "1950-02-16": "The day preceding Lunar New Year", + "1950-02-17": "Lunar New Year", + "1950-02-18": "The second day of Lunar New Year", + "1950-03-01": "Independence Movement Day", + "1950-03-10": "Labour Day", + "1950-04-05": "Tree Planting Day", + "1950-05-24": "Buddha's Birthday", + "1950-06-06": "Memorial Day", + "1950-07-17": "Constitution Day", + "1950-08-15": "Liberation Day", + "1950-09-25": "The day preceding Chuseok", + "1950-09-26": "Chuseok", + "1950-09-27": "The second day of Chuseok", + "1950-10-03": "National Foundation Day", + "1950-10-09": "Hangul Day", + "1950-12-25": "Christmas Day", + "1951-01-01": "New Year's Day", + "1951-01-02": "New Year's Day", + "1951-02-05": "The day preceding Lunar New Year", + "1951-02-06": "Lunar New Year", + "1951-02-07": "The second day of Lunar New Year", + "1951-03-01": "Independence Movement Day", + "1951-03-10": "Labour Day", + "1951-04-05": "Tree Planting Day", + "1951-05-13": "Buddha's Birthday", + "1951-06-06": "Memorial Day", + "1951-07-17": "Constitution Day", + "1951-08-15": "Liberation Day", + "1951-09-14": "The day preceding Chuseok", + "1951-09-15": "Chuseok", + "1951-09-16": "The second day of Chuseok", + "1951-10-03": "National Foundation Day", + "1951-10-09": "Hangul Day", + "1951-12-25": "Christmas Day", + "1952-01-01": "New Year's Day", + "1952-01-02": "New Year's Day", + "1952-01-26": "The day preceding Lunar New Year", + "1952-01-27": "Lunar New Year", + "1952-01-28": "The second day of Lunar New Year", + "1952-03-01": "Independence Movement Day", + "1952-03-10": "Labour Day", + "1952-04-05": "Tree Planting Day", + "1952-05-01": "Buddha's Birthday", + "1952-06-06": "Memorial Day", + "1952-07-17": "Constitution Day", + "1952-08-15": "Liberation Day", + "1952-10-02": "The day preceding Chuseok", + "1952-10-03": "Chuseok; National Foundation Day", + "1952-10-04": "The second day of Chuseok", + "1952-10-09": "Hangul Day", + "1952-12-25": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-01-02": "New Year's Day", + "1953-02-13": "The day preceding Lunar New Year", + "1953-02-14": "Lunar New Year", + "1953-02-15": "The second day of Lunar New Year", + "1953-03-01": "Independence Movement Day", + "1953-03-10": "Labour Day", + "1953-04-05": "Tree Planting Day", + "1953-05-20": "Buddha's Birthday", + "1953-06-06": "Memorial Day", + "1953-07-17": "Constitution Day", + "1953-08-15": "Liberation Day", + "1953-09-21": "The day preceding Chuseok", + "1953-09-22": "Chuseok", + "1953-09-23": "The second day of Chuseok", + "1953-10-03": "National Foundation Day", + "1953-10-09": "Hangul Day", + "1953-12-25": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-01-02": "New Year's Day", + "1954-02-03": "The day preceding Lunar New Year", + "1954-02-04": "Lunar New Year", + "1954-02-05": "The second day of Lunar New Year", + "1954-03-01": "Independence Movement Day", + "1954-03-10": "Labour Day", + "1954-04-05": "Tree Planting Day", + "1954-05-10": "Buddha's Birthday", + "1954-06-06": "Memorial Day", + "1954-07-17": "Constitution Day", + "1954-08-15": "Liberation Day", + "1954-09-10": "The day preceding Chuseok", + "1954-09-11": "Chuseok", + "1954-09-12": "The second day of Chuseok", + "1954-10-03": "National Foundation Day", + "1954-10-09": "Hangul Day", + "1954-12-25": "Christmas Day", + "1955-01-01": "New Year's Day", + "1955-01-02": "New Year's Day", + "1955-01-23": "The day preceding Lunar New Year", + "1955-01-24": "Lunar New Year", + "1955-01-25": "The second day of Lunar New Year", + "1955-03-01": "Independence Movement Day", + "1955-03-10": "Labour Day", + "1955-04-05": "Tree Planting Day", + "1955-05-29": "Buddha's Birthday", + "1955-06-06": "Memorial Day", + "1955-07-17": "Constitution Day", + "1955-08-15": "Liberation Day", + "1955-09-29": "The day preceding Chuseok", + "1955-09-30": "Chuseok", + "1955-10-01": "The second day of Chuseok", + "1955-10-03": "National Foundation Day", + "1955-10-09": "Hangul Day", + "1955-12-25": "Christmas Day", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year's Day", + "1956-02-11": "The day preceding Lunar New Year", + "1956-02-12": "Lunar New Year", + "1956-02-13": "The second day of Lunar New Year", + "1956-03-01": "Independence Movement Day", + "1956-03-10": "Labour Day", + "1956-04-05": "Tree Planting Day", + "1956-05-17": "Buddha's Birthday", + "1956-06-06": "Memorial Day", + "1956-07-17": "Constitution Day", + "1956-08-15": "Liberation Day", + "1956-09-18": "The day preceding Chuseok", + "1956-09-19": "Chuseok", + "1956-09-20": "The second day of Chuseok", + "1956-10-03": "National Foundation Day", + "1956-10-09": "Hangul Day", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-01-02": "New Year's Day", + "1957-01-30": "The day preceding Lunar New Year", + "1957-01-31": "Lunar New Year", + "1957-02-01": "The second day of Lunar New Year", + "1957-03-01": "Independence Movement Day", + "1957-03-10": "Labour Day", + "1957-04-05": "Tree Planting Day", + "1957-05-07": "Buddha's Birthday", + "1957-06-06": "Memorial Day", + "1957-07-17": "Constitution Day", + "1957-08-15": "Liberation Day", + "1957-09-07": "The day preceding Chuseok", + "1957-09-08": "Chuseok", + "1957-09-09": "The second day of Chuseok", + "1957-10-03": "National Foundation Day", + "1957-10-09": "Hangul Day", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-01-02": "New Year's Day", + "1958-02-18": "The day preceding Lunar New Year", + "1958-02-19": "Lunar New Year", + "1958-02-20": "The second day of Lunar New Year", + "1958-03-01": "Independence Movement Day", + "1958-03-10": "Labour Day", + "1958-04-05": "Tree Planting Day", + "1958-05-26": "Buddha's Birthday", + "1958-06-06": "Memorial Day", + "1958-07-17": "Constitution Day", + "1958-08-15": "Liberation Day", + "1958-09-26": "The day preceding Chuseok", + "1958-09-27": "Chuseok", + "1958-09-28": "The second day of Chuseok", + "1958-10-03": "National Foundation Day", + "1958-10-09": "Hangul Day", + "1958-12-25": "Christmas Day", + "1959-01-01": "New Year's Day", + "1959-01-02": "New Year's Day", + "1959-02-07": "The day preceding Lunar New Year", + "1959-02-08": "Lunar New Year", + "1959-02-09": "The second day of Lunar New Year", + "1959-03-01": "Independence Movement Day", + "1959-03-10": "Labour Day", + "1959-04-05": "Tree Planting Day", + "1959-05-15": "Buddha's Birthday", + "1959-06-06": "Memorial Day", + "1959-07-17": "Constitution Day", + "1959-08-15": "Liberation Day", + "1959-09-16": "The day preceding Chuseok", + "1959-09-17": "Chuseok", + "1959-09-18": "The second day of Chuseok", + "1959-10-03": "National Foundation Day", + "1959-10-09": "Hangul Day", + "1959-12-25": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-01-02": "New Year's Day", + "1960-01-27": "The day preceding Lunar New Year", + "1960-01-28": "Lunar New Year", + "1960-01-29": "The second day of Lunar New Year", + "1960-03-01": "Independence Movement Day", + "1960-03-10": "Labour Day", + "1960-05-03": "Buddha's Birthday", + "1960-06-06": "Memorial Day", + "1960-07-17": "Constitution Day", + "1960-08-15": "Liberation Day", + "1960-10-03": "National Foundation Day", + "1960-10-04": "The day preceding Chuseok", + "1960-10-05": "Chuseok", + "1960-10-06": "The second day of Chuseok", + "1960-10-09": "Hangul Day", + "1960-12-25": "Christmas Day", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day", + "1961-02-14": "The day preceding Lunar New Year", + "1961-02-15": "Lunar New Year", + "1961-02-16": "The second day of Lunar New Year", + "1961-03-01": "Independence Movement Day", + "1961-03-10": "Labour Day", + "1961-04-05": "Tree Planting Day", + "1961-05-22": "Buddha's Birthday", + "1961-06-06": "Memorial Day", + "1961-07-17": "Constitution Day", + "1961-08-15": "Liberation Day", + "1961-09-23": "The day preceding Chuseok", + "1961-09-24": "Chuseok", + "1961-09-25": "The second day of Chuseok", + "1961-10-03": "National Foundation Day", + "1961-10-09": "Hangul Day", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-01-02": "New Year's Day", + "1962-02-04": "The day preceding Lunar New Year", + "1962-02-05": "Lunar New Year", + "1962-02-06": "The second day of Lunar New Year", + "1962-03-01": "Independence Movement Day", + "1962-03-10": "Labour Day", + "1962-04-05": "Tree Planting Day", + "1962-05-11": "Buddha's Birthday", + "1962-06-06": "Memorial Day", + "1962-07-17": "Constitution Day", + "1962-08-15": "Liberation Day", + "1962-09-12": "The day preceding Chuseok", + "1962-09-13": "Chuseok", + "1962-09-14": "The second day of Chuseok", + "1962-10-03": "National Foundation Day", + "1962-10-09": "Hangul Day", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-01-02": "New Year's Day", + "1963-01-24": "The day preceding Lunar New Year", + "1963-01-25": "Lunar New Year", + "1963-01-26": "The second day of Lunar New Year", + "1963-03-01": "Independence Movement Day", + "1963-03-10": "Labour Day", + "1963-04-05": "Tree Planting Day", + "1963-05-01": "Buddha's Birthday", + "1963-06-06": "Memorial Day", + "1963-07-17": "Constitution Day", + "1963-08-15": "Liberation Day", + "1963-10-01": "The day preceding Chuseok", + "1963-10-02": "Chuseok", + "1963-10-03": "National Foundation Day; The second day of Chuseok", + "1963-10-09": "Hangul Day", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-01-02": "New Year's Day", + "1964-02-12": "The day preceding Lunar New Year", + "1964-02-13": "Lunar New Year", + "1964-02-14": "The second day of Lunar New Year", + "1964-03-01": "Independence Movement Day", + "1964-03-10": "Labour Day", + "1964-04-05": "Tree Planting Day", + "1964-05-19": "Buddha's Birthday", + "1964-06-06": "Memorial Day", + "1964-07-17": "Constitution Day", + "1964-08-15": "Liberation Day", + "1964-09-19": "The day preceding Chuseok", + "1964-09-20": "Chuseok", + "1964-09-21": "The second day of Chuseok", + "1964-10-03": "National Foundation Day", + "1964-10-09": "Hangul Day", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-01-02": "New Year's Day", + "1965-02-01": "The day preceding Lunar New Year", + "1965-02-02": "Lunar New Year", + "1965-02-03": "The second day of Lunar New Year", + "1965-03-01": "Independence Movement Day", + "1965-03-10": "Labour Day", + "1965-04-05": "Tree Planting Day", + "1965-05-08": "Buddha's Birthday", + "1965-06-06": "Memorial Day", + "1965-07-17": "Constitution Day", + "1965-08-15": "Liberation Day", + "1965-09-09": "The day preceding Chuseok", + "1965-09-10": "Chuseok", + "1965-09-11": "The second day of Chuseok", + "1965-10-03": "National Foundation Day", + "1965-10-09": "Hangul Day", + "1965-12-25": "Christmas Day", + "1966-01-01": "New Year's Day", + "1966-01-02": "New Year's Day", + "1966-01-21": "The day preceding Lunar New Year", + "1966-01-22": "Lunar New Year", + "1966-01-23": "The second day of Lunar New Year", + "1966-03-01": "Independence Movement Day", + "1966-03-10": "Labour Day", + "1966-04-05": "Tree Planting Day", + "1966-05-27": "Buddha's Birthday", + "1966-06-06": "Memorial Day", + "1966-07-17": "Constitution Day", + "1966-08-15": "Liberation Day", + "1966-09-28": "The day preceding Chuseok", + "1966-09-29": "Chuseok", + "1966-09-30": "The second day of Chuseok", + "1966-10-03": "National Foundation Day", + "1966-10-09": "Hangul Day", + "1966-12-25": "Christmas Day", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day", + "1967-02-08": "The day preceding Lunar New Year", + "1967-02-09": "Lunar New Year", + "1967-02-10": "The second day of Lunar New Year", + "1967-03-01": "Independence Movement Day", + "1967-03-10": "Labour Day", + "1967-04-05": "Tree Planting Day", + "1967-05-16": "Buddha's Birthday", + "1967-06-06": "Memorial Day", + "1967-07-17": "Constitution Day", + "1967-08-15": "Liberation Day", + "1967-09-17": "The day preceding Chuseok", + "1967-09-18": "Chuseok", + "1967-09-19": "The second day of Chuseok", + "1967-10-03": "National Foundation Day", + "1967-10-09": "Hangul Day", + "1967-12-25": "Christmas Day", + "1968-01-01": "New Year's Day", + "1968-01-02": "New Year's Day", + "1968-01-29": "The day preceding Lunar New Year", + "1968-01-30": "Lunar New Year", + "1968-01-31": "The second day of Lunar New Year", + "1968-03-01": "Independence Movement Day", + "1968-03-10": "Labour Day", + "1968-04-05": "Tree Planting Day", + "1968-05-05": "Buddha's Birthday", + "1968-06-06": "Memorial Day", + "1968-07-17": "Constitution Day", + "1968-08-15": "Liberation Day", + "1968-10-03": "National Foundation Day", + "1968-10-05": "The day preceding Chuseok", + "1968-10-06": "Chuseok", + "1968-10-07": "The second day of Chuseok", + "1968-10-09": "Hangul Day", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-01-02": "New Year's Day", + "1969-02-16": "The day preceding Lunar New Year", + "1969-02-17": "Lunar New Year", + "1969-02-18": "The second day of Lunar New Year", + "1969-03-01": "Independence Movement Day", + "1969-03-10": "Labour Day", + "1969-04-05": "Tree Planting Day", + "1969-05-23": "Buddha's Birthday", + "1969-06-06": "Memorial Day", + "1969-07-17": "Constitution Day", + "1969-08-15": "Liberation Day", + "1969-09-25": "The day preceding Chuseok", + "1969-09-26": "Chuseok", + "1969-09-27": "The second day of Chuseok", + "1969-10-03": "National Foundation Day", + "1969-10-09": "Hangul Day", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-01-02": "New Year's Day", + "1970-02-05": "The day preceding Lunar New Year", + "1970-02-06": "Lunar New Year", + "1970-02-07": "The second day of Lunar New Year", + "1970-03-01": "Independence Movement Day", + "1970-03-10": "Labour Day", + "1970-04-05": "Tree Planting Day", + "1970-05-12": "Buddha's Birthday", + "1970-06-06": "Memorial Day", + "1970-07-17": "Constitution Day", + "1970-08-15": "Liberation Day", + "1970-09-14": "The day preceding Chuseok", + "1970-09-15": "Chuseok", + "1970-09-16": "The second day of Chuseok", + "1970-10-03": "National Foundation Day", + "1970-10-09": "Hangul Day", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-01-02": "New Year's Day", + "1971-01-26": "The day preceding Lunar New Year", + "1971-01-27": "Lunar New Year", + "1971-01-28": "The second day of Lunar New Year", + "1971-03-01": "Independence Movement Day", + "1971-03-10": "Labour Day", + "1971-04-05": "Tree Planting Day", + "1971-05-02": "Buddha's Birthday", + "1971-06-06": "Memorial Day", + "1971-07-17": "Constitution Day", + "1971-08-15": "Liberation Day", + "1971-10-02": "The day preceding Chuseok", + "1971-10-03": "Chuseok; National Foundation Day", + "1971-10-04": "The second day of Chuseok", + "1971-10-09": "Hangul Day", + "1971-12-25": "Christmas Day", + "1972-01-01": "New Year's Day", + "1972-01-02": "New Year's Day", + "1972-02-14": "The day preceding Lunar New Year", + "1972-02-15": "Lunar New Year", + "1972-02-16": "The second day of Lunar New Year", + "1972-03-01": "Independence Movement Day", + "1972-03-10": "Labour Day", + "1972-04-05": "Tree Planting Day", + "1972-05-20": "Buddha's Birthday", + "1972-06-06": "Memorial Day", + "1972-07-17": "Constitution Day", + "1972-08-15": "Liberation Day", + "1972-09-21": "The day preceding Chuseok", + "1972-09-22": "Chuseok", + "1972-09-23": "The second day of Chuseok", + "1972-10-03": "National Foundation Day", + "1972-10-09": "Hangul Day", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-01-02": "New Year's Day", + "1973-02-02": "The day preceding Lunar New Year", + "1973-02-03": "Lunar New Year", + "1973-02-04": "The second day of Lunar New Year", + "1973-03-01": "Independence Movement Day", + "1973-03-10": "Labour Day", + "1973-04-05": "Tree Planting Day", + "1973-05-10": "Buddha's Birthday", + "1973-06-06": "Memorial Day", + "1973-07-17": "Constitution Day", + "1973-08-15": "Liberation Day", + "1973-09-10": "The day preceding Chuseok", + "1973-09-11": "Chuseok", + "1973-09-12": "The second day of Chuseok", + "1973-10-03": "National Foundation Day", + "1973-10-09": "Hangul Day", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-01-02": "New Year's Day", + "1974-01-22": "The day preceding Lunar New Year", + "1974-01-23": "Lunar New Year", + "1974-01-24": "The second day of Lunar New Year", + "1974-03-01": "Independence Movement Day", + "1974-03-10": "Labour Day", + "1974-04-05": "Tree Planting Day", + "1974-04-29": "Buddha's Birthday", + "1974-06-06": "Memorial Day", + "1974-07-17": "Constitution Day", + "1974-08-15": "Liberation Day", + "1974-09-29": "The day preceding Chuseok", + "1974-09-30": "Chuseok", + "1974-10-01": "The second day of Chuseok", + "1974-10-03": "National Foundation Day", + "1974-10-09": "Hangul Day", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-01-02": "New Year's Day", + "1975-02-10": "The day preceding Lunar New Year", + "1975-02-11": "Lunar New Year", + "1975-02-12": "The second day of Lunar New Year", + "1975-03-01": "Independence Movement Day", + "1975-03-10": "Labour Day", + "1975-04-05": "Tree Planting Day", + "1975-05-05": "Children's Day", + "1975-05-18": "Buddha's Birthday", + "1975-06-06": "Memorial Day", + "1975-07-17": "Constitution Day", + "1975-08-15": "Liberation Day", + "1975-09-19": "The day preceding Chuseok", + "1975-09-20": "Chuseok", + "1975-09-21": "The second day of Chuseok", + "1975-10-03": "National Foundation Day", + "1975-10-09": "Hangul Day", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-01-02": "New Year's Day", + "1976-01-30": "The day preceding Lunar New Year", + "1976-01-31": "Lunar New Year", + "1976-02-01": "The second day of Lunar New Year", + "1976-03-01": "Independence Movement Day", + "1976-03-10": "Labour Day", + "1976-04-05": "Tree Planting Day", + "1976-05-05": "Children's Day", + "1976-05-06": "Buddha's Birthday", + "1976-06-06": "Memorial Day", + "1976-07-17": "Constitution Day", + "1976-08-15": "Liberation Day", + "1976-09-07": "The day preceding Chuseok", + "1976-09-08": "Chuseok", + "1976-09-09": "The second day of Chuseok", + "1976-10-03": "National Foundation Day", + "1976-10-09": "Hangul Day", + "1976-12-25": "Christmas Day", + "1977-01-01": "New Year's Day", + "1977-01-02": "New Year's Day", + "1977-02-17": "The day preceding Lunar New Year", + "1977-02-18": "Lunar New Year", + "1977-02-19": "The second day of Lunar New Year", + "1977-03-01": "Independence Movement Day", + "1977-03-10": "Labour Day", + "1977-04-05": "Tree Planting Day", + "1977-05-05": "Children's Day", + "1977-05-25": "Buddha's Birthday", + "1977-06-06": "Memorial Day", + "1977-07-17": "Constitution Day", + "1977-08-15": "Liberation Day", + "1977-09-26": "The day preceding Chuseok", + "1977-09-27": "Chuseok", + "1977-09-28": "The second day of Chuseok", + "1977-10-03": "National Foundation Day", + "1977-10-09": "Hangul Day", + "1977-12-25": "Christmas Day", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day", + "1978-02-06": "The day preceding Lunar New Year", + "1978-02-07": "Lunar New Year", + "1978-02-08": "The second day of Lunar New Year", + "1978-03-01": "Independence Movement Day", + "1978-03-10": "Labour Day", + "1978-04-05": "Tree Planting Day", + "1978-05-05": "Children's Day", + "1978-05-14": "Buddha's Birthday", + "1978-06-06": "Memorial Day", + "1978-07-17": "Constitution Day", + "1978-08-15": "Liberation Day", + "1978-09-16": "The day preceding Chuseok", + "1978-09-17": "Chuseok", + "1978-09-18": "The second day of Chuseok", + "1978-10-03": "National Foundation Day", + "1978-10-09": "Hangul Day", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-01-02": "New Year's Day", + "1979-01-27": "The day preceding Lunar New Year", + "1979-01-28": "Lunar New Year", + "1979-01-29": "The second day of Lunar New Year", + "1979-03-01": "Independence Movement Day", + "1979-03-10": "Labour Day", + "1979-04-05": "Tree Planting Day", + "1979-05-03": "Buddha's Birthday", + "1979-05-05": "Children's Day", + "1979-06-06": "Memorial Day", + "1979-07-17": "Constitution Day", + "1979-08-15": "Liberation Day", + "1979-10-03": "National Foundation Day", + "1979-10-04": "The day preceding Chuseok", + "1979-10-05": "Chuseok", + "1979-10-06": "The second day of Chuseok", + "1979-10-09": "Hangul Day", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-01-02": "New Year's Day", + "1980-02-15": "The day preceding Lunar New Year", + "1980-02-16": "Lunar New Year", + "1980-02-17": "The second day of Lunar New Year", + "1980-03-01": "Independence Movement Day", + "1980-03-10": "Labour Day", + "1980-04-05": "Tree Planting Day", + "1980-05-05": "Children's Day", + "1980-05-21": "Buddha's Birthday", + "1980-06-06": "Memorial Day", + "1980-07-17": "Constitution Day", + "1980-08-15": "Liberation Day", + "1980-09-22": "The day preceding Chuseok", + "1980-09-23": "Chuseok", + "1980-09-24": "The second day of Chuseok", + "1980-10-03": "National Foundation Day", + "1980-10-09": "Hangul Day", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-01-02": "New Year's Day", + "1981-02-04": "The day preceding Lunar New Year", + "1981-02-05": "Lunar New Year", + "1981-02-06": "The second day of Lunar New Year", + "1981-03-01": "Independence Movement Day", + "1981-03-10": "Labour Day", + "1981-04-05": "Tree Planting Day", + "1981-05-05": "Children's Day", + "1981-05-11": "Buddha's Birthday", + "1981-06-06": "Memorial Day", + "1981-07-17": "Constitution Day", + "1981-08-15": "Liberation Day", + "1981-09-11": "The day preceding Chuseok", + "1981-09-12": "Chuseok", + "1981-09-13": "The second day of Chuseok", + "1981-10-03": "National Foundation Day", + "1981-10-09": "Hangul Day", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-01-02": "New Year's Day", + "1982-01-24": "The day preceding Lunar New Year", + "1982-01-25": "Lunar New Year", + "1982-01-26": "The second day of Lunar New Year", + "1982-03-01": "Independence Movement Day", + "1982-03-10": "Labour Day", + "1982-04-05": "Tree Planting Day", + "1982-05-01": "Buddha's Birthday", + "1982-05-05": "Children's Day", + "1982-06-06": "Memorial Day", + "1982-07-17": "Constitution Day", + "1982-08-15": "Liberation Day", + "1982-09-30": "The day preceding Chuseok", + "1982-10-01": "Chuseok", + "1982-10-02": "The second day of Chuseok", + "1982-10-03": "National Foundation Day", + "1982-10-09": "Hangul Day", + "1982-12-25": "Christmas Day", + "1983-01-01": "New Year's Day", + "1983-01-02": "New Year's Day", + "1983-02-12": "The day preceding Lunar New Year", + "1983-02-13": "Lunar New Year", + "1983-02-14": "The second day of Lunar New Year", + "1983-03-01": "Independence Movement Day", + "1983-03-10": "Labour Day", + "1983-04-05": "Tree Planting Day", + "1983-05-05": "Children's Day", + "1983-05-20": "Buddha's Birthday", + "1983-06-06": "Memorial Day", + "1983-07-17": "Constitution Day", + "1983-08-15": "Liberation Day", + "1983-09-20": "The day preceding Chuseok", + "1983-09-21": "Chuseok", + "1983-09-22": "The second day of Chuseok", + "1983-10-03": "National Foundation Day", + "1983-10-09": "Hangul Day", + "1983-12-25": "Christmas Day", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day", + "1984-02-01": "The day preceding Lunar New Year", + "1984-02-02": "Lunar New Year", + "1984-02-03": "The second day of Lunar New Year", + "1984-03-01": "Independence Movement Day", + "1984-03-10": "Labour Day", + "1984-04-05": "Tree Planting Day", + "1984-05-05": "Children's Day", + "1984-05-08": "Buddha's Birthday", + "1984-06-06": "Memorial Day", + "1984-07-17": "Constitution Day", + "1984-08-15": "Liberation Day", + "1984-09-09": "The day preceding Chuseok", + "1984-09-10": "Chuseok", + "1984-09-11": "The second day of Chuseok", + "1984-10-03": "National Foundation Day", + "1984-10-09": "Hangul Day", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-01-02": "New Year's Day", + "1985-02-19": "The day preceding Lunar New Year", + "1985-02-20": "Lunar New Year", + "1985-02-21": "The second day of Lunar New Year", + "1985-03-01": "Independence Movement Day", + "1985-03-10": "Labour Day", + "1985-04-05": "Tree Planting Day", + "1985-05-05": "Children's Day", + "1985-05-27": "Buddha's Birthday", + "1985-06-06": "Memorial Day", + "1985-07-17": "Constitution Day", + "1985-08-15": "Liberation Day", + "1985-09-28": "The day preceding Chuseok", + "1985-09-29": "Chuseok", + "1985-09-30": "The second day of Chuseok", + "1985-10-03": "National Foundation Day", + "1985-10-09": "Hangul Day", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-01-02": "New Year's Day", + "1986-02-08": "The day preceding Lunar New Year", + "1986-02-09": "Lunar New Year", + "1986-02-10": "The second day of Lunar New Year", + "1986-03-01": "Independence Movement Day", + "1986-03-10": "Labour Day", + "1986-04-05": "Tree Planting Day", + "1986-05-05": "Children's Day", + "1986-05-16": "Buddha's Birthday", + "1986-06-06": "Memorial Day", + "1986-07-17": "Constitution Day", + "1986-08-15": "Liberation Day", + "1986-09-17": "The day preceding Chuseok", + "1986-09-18": "Chuseok", + "1986-09-19": "The second day of Chuseok", + "1986-10-03": "National Foundation Day", + "1986-10-09": "Hangul Day", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-01-02": "New Year's Day", + "1987-01-28": "The day preceding Lunar New Year", + "1987-01-29": "Lunar New Year", + "1987-01-30": "The second day of Lunar New Year", + "1987-03-01": "Independence Movement Day", + "1987-03-10": "Labour Day", + "1987-04-05": "Tree Planting Day", + "1987-05-05": "Buddha's Birthday; Children's Day", + "1987-06-06": "Memorial Day", + "1987-07-17": "Constitution Day", + "1987-08-15": "Liberation Day", + "1987-10-03": "National Foundation Day", + "1987-10-06": "The day preceding Chuseok", + "1987-10-07": "Chuseok", + "1987-10-08": "The second day of Chuseok", + "1987-10-09": "Hangul Day", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-01-02": "New Year's Day", + "1988-02-17": "The day preceding Lunar New Year", + "1988-02-18": "Lunar New Year", + "1988-02-19": "The second day of Lunar New Year", + "1988-03-01": "Independence Movement Day", + "1988-03-10": "Labour Day", + "1988-04-05": "Tree Planting Day", + "1988-05-05": "Children's Day", + "1988-05-23": "Buddha's Birthday", + "1988-06-06": "Memorial Day", + "1988-07-17": "Constitution Day", + "1988-08-15": "Liberation Day", + "1988-09-24": "The day preceding Chuseok", + "1988-09-25": "Chuseok", + "1988-09-26": "The second day of Chuseok", + "1988-10-03": "National Foundation Day", + "1988-10-09": "Hangul Day", + "1988-12-25": "Christmas Day", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day", + "1989-02-05": "The day preceding Lunar New Year", + "1989-02-06": "Lunar New Year", + "1989-02-07": "The second day of Lunar New Year", + "1989-03-01": "Independence Movement Day", + "1989-03-10": "Labour Day", + "1989-04-05": "Tree Planting Day", + "1989-05-05": "Children's Day", + "1989-05-12": "Buddha's Birthday", + "1989-06-06": "Memorial Day", + "1989-07-17": "Constitution Day", + "1989-08-15": "Liberation Day", + "1989-09-13": "The day preceding Chuseok", + "1989-09-14": "Chuseok", + "1989-09-15": "The second day of Chuseok", + "1989-10-03": "National Foundation Day", + "1989-10-09": "Hangul Day", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-01-02": "New Year's Day", + "1990-01-26": "The day preceding Lunar New Year", + "1990-01-27": "Lunar New Year", + "1990-01-28": "The second day of Lunar New Year", + "1990-03-01": "Independence Movement Day", + "1990-03-10": "Labour Day", + "1990-04-05": "Tree Planting Day", + "1990-05-02": "Buddha's Birthday", + "1990-05-05": "Children's Day", + "1990-06-06": "Memorial Day", + "1990-07-17": "Constitution Day", + "1990-08-15": "Liberation Day", + "1990-10-02": "The day preceding Chuseok", + "1990-10-03": "Chuseok; National Foundation Day", + "1990-10-04": "The second day of Chuseok", + "1990-10-09": "Hangul Day", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-01-02": "New Year's Day", + "1991-02-14": "The day preceding Lunar New Year", + "1991-02-15": "Lunar New Year", + "1991-02-16": "The second day of Lunar New Year", + "1991-03-01": "Independence Movement Day", + "1991-03-10": "Labour Day", + "1991-04-05": "Tree Planting Day", + "1991-05-05": "Children's Day", + "1991-05-21": "Buddha's Birthday", + "1991-06-06": "Memorial Day", + "1991-07-17": "Constitution Day", + "1991-08-15": "Liberation Day", + "1991-09-21": "The day preceding Chuseok", + "1991-09-22": "Chuseok", + "1991-09-23": "The second day of Chuseok", + "1991-10-03": "National Foundation Day", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-01-02": "New Year's Day", + "1992-02-03": "The day preceding Lunar New Year", + "1992-02-04": "Lunar New Year", + "1992-02-05": "The second day of Lunar New Year", + "1992-03-01": "Independence Movement Day", + "1992-03-10": "Labour Day", + "1992-04-05": "Tree Planting Day", + "1992-05-05": "Children's Day", + "1992-05-10": "Buddha's Birthday", + "1992-06-06": "Memorial Day", + "1992-07-17": "Constitution Day", + "1992-08-15": "Liberation Day", + "1992-09-10": "The day preceding Chuseok", + "1992-09-11": "Chuseok", + "1992-09-12": "The second day of Chuseok", + "1992-10-03": "National Foundation Day", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-01-02": "New Year's Day", + "1993-01-22": "The day preceding Lunar New Year", + "1993-01-23": "Lunar New Year", + "1993-01-24": "The second day of Lunar New Year", + "1993-03-01": "Independence Movement Day", + "1993-03-10": "Labour Day", + "1993-04-05": "Tree Planting Day", + "1993-05-05": "Children's Day", + "1993-05-28": "Buddha's Birthday", + "1993-06-06": "Memorial Day", + "1993-07-17": "Constitution Day", + "1993-08-15": "Liberation Day", + "1993-09-29": "The day preceding Chuseok", + "1993-09-30": "Chuseok", + "1993-10-01": "The second day of Chuseok", + "1993-10-03": "National Foundation Day", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-01-02": "New Year's Day", + "1994-02-09": "The day preceding Lunar New Year", + "1994-02-10": "Lunar New Year", + "1994-02-11": "The second day of Lunar New Year", + "1994-03-01": "Independence Movement Day", + "1994-04-05": "Tree Planting Day", + "1994-05-01": "Labour Day", + "1994-05-05": "Children's Day", + "1994-05-18": "Buddha's Birthday", + "1994-06-06": "Memorial Day", + "1994-07-17": "Constitution Day", + "1994-08-15": "Liberation Day", + "1994-09-19": "The day preceding Chuseok", + "1994-09-20": "Chuseok", + "1994-09-21": "The second day of Chuseok", + "1994-10-03": "National Foundation Day", + "1994-12-25": "Christmas Day", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day", + "1995-01-30": "The day preceding Lunar New Year", + "1995-01-31": "Lunar New Year", + "1995-02-01": "The second day of Lunar New Year", + "1995-03-01": "Independence Movement Day", + "1995-04-05": "Tree Planting Day", + "1995-05-01": "Labour Day", + "1995-05-05": "Children's Day", + "1995-05-07": "Buddha's Birthday", + "1995-06-06": "Memorial Day", + "1995-07-17": "Constitution Day", + "1995-08-15": "Liberation Day", + "1995-09-08": "The day preceding Chuseok", + "1995-09-09": "Chuseok", + "1995-09-10": "The second day of Chuseok", + "1995-10-03": "National Foundation Day", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-01-02": "New Year's Day", + "1996-02-18": "The day preceding Lunar New Year", + "1996-02-19": "Lunar New Year", + "1996-02-20": "The second day of Lunar New Year", + "1996-03-01": "Independence Movement Day", + "1996-04-05": "Tree Planting Day", + "1996-05-01": "Labour Day", + "1996-05-05": "Children's Day", + "1996-05-24": "Buddha's Birthday", + "1996-06-06": "Memorial Day", + "1996-07-17": "Constitution Day", + "1996-08-15": "Liberation Day", + "1996-09-26": "The day preceding Chuseok", + "1996-09-27": "Chuseok", + "1996-09-28": "The second day of Chuseok", + "1996-10-03": "National Foundation Day", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-01-02": "New Year's Day", + "1997-02-07": "The day preceding Lunar New Year", + "1997-02-08": "Lunar New Year", + "1997-02-09": "The second day of Lunar New Year", + "1997-03-01": "Independence Movement Day", + "1997-04-05": "Tree Planting Day", + "1997-05-01": "Labour Day", + "1997-05-05": "Children's Day", + "1997-05-14": "Buddha's Birthday", + "1997-06-06": "Memorial Day", + "1997-07-17": "Constitution Day", + "1997-08-15": "Liberation Day", + "1997-09-15": "The day preceding Chuseok", + "1997-09-16": "Chuseok", + "1997-09-17": "The second day of Chuseok", + "1997-10-03": "National Foundation Day", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-01-02": "New Year's Day", + "1998-01-27": "The day preceding Lunar New Year", + "1998-01-28": "Lunar New Year", + "1998-01-29": "The second day of Lunar New Year", + "1998-03-01": "Independence Movement Day", + "1998-04-05": "Tree Planting Day", + "1998-05-01": "Labour Day", + "1998-05-03": "Buddha's Birthday", + "1998-05-05": "Children's Day", + "1998-06-06": "Memorial Day", + "1998-07-17": "Constitution Day", + "1998-08-15": "Liberation Day", + "1998-10-03": "National Foundation Day", + "1998-10-04": "The day preceding Chuseok", + "1998-10-05": "Chuseok", + "1998-10-06": "The second day of Chuseok", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-02-15": "The day preceding Lunar New Year", + "1999-02-16": "Lunar New Year", + "1999-02-17": "The second day of Lunar New Year", + "1999-03-01": "Independence Movement Day", + "1999-04-05": "Tree Planting Day", + "1999-05-01": "Labour Day", + "1999-05-05": "Children's Day", + "1999-05-22": "Buddha's Birthday", + "1999-06-06": "Memorial Day", + "1999-07-17": "Constitution Day", + "1999-08-15": "Liberation Day", + "1999-09-23": "The day preceding Chuseok", + "1999-09-24": "Chuseok", + "1999-09-25": "The second day of Chuseok", + "1999-10-03": "National Foundation Day", + "1999-12-25": "Christmas Day", + "2000-01-01": "New Year's Day", + "2000-02-04": "The day preceding Lunar New Year", + "2000-02-05": "Lunar New Year", + "2000-02-06": "The second day of Lunar New Year", + "2000-03-01": "Independence Movement Day", + "2000-04-05": "Tree Planting Day", + "2000-05-01": "Labour Day", + "2000-05-05": "Children's Day", + "2000-05-11": "Buddha's Birthday", + "2000-06-06": "Memorial Day", + "2000-07-17": "Constitution Day", + "2000-08-15": "Liberation Day", + "2000-09-11": "The day preceding Chuseok", + "2000-09-12": "Chuseok", + "2000-09-13": "The second day of Chuseok", + "2000-10-03": "National Foundation Day", + "2000-12-25": "Christmas Day", + "2001-01-01": "New Year's Day", + "2001-01-23": "The day preceding Lunar New Year", + "2001-01-24": "Lunar New Year", + "2001-01-25": "The second day of Lunar New Year", + "2001-03-01": "Independence Movement Day", + "2001-04-05": "Tree Planting Day", + "2001-05-01": "Buddha's Birthday; Labour Day", + "2001-05-05": "Children's Day", + "2001-06-06": "Memorial Day", + "2001-07-17": "Constitution Day", + "2001-08-15": "Liberation Day", + "2001-09-30": "The day preceding Chuseok", + "2001-10-01": "Chuseok", + "2001-10-02": "The second day of Chuseok", + "2001-10-03": "National Foundation Day", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-02-11": "The day preceding Lunar New Year", + "2002-02-12": "Lunar New Year", + "2002-02-13": "The second day of Lunar New Year", + "2002-03-01": "Independence Movement Day", + "2002-04-05": "Tree Planting Day", + "2002-05-01": "Labour Day", + "2002-05-05": "Children's Day", + "2002-05-19": "Buddha's Birthday", + "2002-06-06": "Memorial Day", + "2002-07-17": "Constitution Day", + "2002-08-15": "Liberation Day", + "2002-09-20": "The day preceding Chuseok", + "2002-09-21": "Chuseok", + "2002-09-22": "The second day of Chuseok", + "2002-10-03": "National Foundation Day", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-01-31": "The day preceding Lunar New Year", + "2003-02-01": "Lunar New Year", + "2003-02-02": "The second day of Lunar New Year", + "2003-03-01": "Independence Movement Day", + "2003-04-05": "Tree Planting Day", + "2003-05-01": "Labour Day", + "2003-05-05": "Children's Day", + "2003-05-08": "Buddha's Birthday", + "2003-06-06": "Memorial Day", + "2003-07-17": "Constitution Day", + "2003-08-15": "Liberation Day", + "2003-09-10": "The day preceding Chuseok", + "2003-09-11": "Chuseok", + "2003-09-12": "The second day of Chuseok", + "2003-10-03": "National Foundation Day", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-01-21": "The day preceding Lunar New Year", + "2004-01-22": "Lunar New Year", + "2004-01-23": "The second day of Lunar New Year", + "2004-03-01": "Independence Movement Day", + "2004-04-05": "Tree Planting Day", + "2004-05-01": "Labour Day", + "2004-05-05": "Children's Day", + "2004-05-26": "Buddha's Birthday", + "2004-06-06": "Memorial Day", + "2004-07-17": "Constitution Day", + "2004-08-15": "Liberation Day", + "2004-09-27": "The day preceding Chuseok", + "2004-09-28": "Chuseok", + "2004-09-29": "The second day of Chuseok", + "2004-10-03": "National Foundation Day", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-02-08": "The day preceding Lunar New Year", + "2005-02-09": "Lunar New Year", + "2005-02-10": "The second day of Lunar New Year", + "2005-03-01": "Independence Movement Day", + "2005-04-05": "Tree Planting Day", + "2005-05-01": "Labour Day", + "2005-05-05": "Children's Day", + "2005-05-15": "Buddha's Birthday", + "2005-06-06": "Memorial Day", + "2005-07-17": "Constitution Day", + "2005-08-15": "Liberation Day", + "2005-09-17": "The day preceding Chuseok", + "2005-09-18": "Chuseok", + "2005-09-19": "The second day of Chuseok", + "2005-10-03": "National Foundation Day", + "2005-12-25": "Christmas Day", + "2006-01-01": "New Year's Day", + "2006-01-28": "The day preceding Lunar New Year", + "2006-01-29": "Lunar New Year", + "2006-01-30": "The second day of Lunar New Year", + "2006-03-01": "Independence Movement Day", + "2006-05-01": "Labour Day", + "2006-05-05": "Buddha's Birthday; Children's Day", + "2006-06-06": "Memorial Day", + "2006-07-17": "Constitution Day", + "2006-08-15": "Liberation Day", + "2006-10-03": "National Foundation Day", + "2006-10-05": "The day preceding Chuseok", + "2006-10-06": "Chuseok", + "2006-10-07": "The second day of Chuseok", + "2006-12-25": "Christmas Day", + "2007-01-01": "New Year's Day", + "2007-02-17": "The day preceding Lunar New Year", + "2007-02-18": "Lunar New Year", + "2007-02-19": "The second day of Lunar New Year", + "2007-03-01": "Independence Movement Day", + "2007-05-01": "Labour Day", + "2007-05-05": "Children's Day", + "2007-05-24": "Buddha's Birthday", + "2007-06-06": "Memorial Day", + "2007-07-17": "Constitution Day", + "2007-08-15": "Liberation Day", + "2007-09-24": "The day preceding Chuseok", + "2007-09-25": "Chuseok", + "2007-09-26": "The second day of Chuseok", + "2007-10-03": "National Foundation Day", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-02-06": "The day preceding Lunar New Year", + "2008-02-07": "Lunar New Year", + "2008-02-08": "The second day of Lunar New Year", + "2008-03-01": "Independence Movement Day", + "2008-05-01": "Labour Day", + "2008-05-05": "Children's Day", + "2008-05-12": "Buddha's Birthday", + "2008-06-06": "Memorial Day", + "2008-08-15": "Liberation Day", + "2008-09-13": "The day preceding Chuseok", + "2008-09-14": "Chuseok", + "2008-09-15": "The second day of Chuseok", + "2008-10-03": "National Foundation Day", + "2008-12-25": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-01-25": "The day preceding Lunar New Year", + "2009-01-26": "Lunar New Year", + "2009-01-27": "The second day of Lunar New Year", + "2009-03-01": "Independence Movement Day", + "2009-05-01": "Labour Day", + "2009-05-02": "Buddha's Birthday", + "2009-05-05": "Children's Day", + "2009-06-06": "Memorial Day", + "2009-08-15": "Liberation Day", + "2009-10-02": "The day preceding Chuseok", + "2009-10-03": "Chuseok; National Foundation Day", + "2009-10-04": "The second day of Chuseok", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-02-13": "The day preceding Lunar New Year", + "2010-02-14": "Lunar New Year", + "2010-02-15": "The second day of Lunar New Year", + "2010-03-01": "Independence Movement Day", + "2010-05-01": "Labour Day", + "2010-05-05": "Children's Day", + "2010-05-21": "Buddha's Birthday", + "2010-06-06": "Memorial Day", + "2010-08-15": "Liberation Day", + "2010-09-21": "The day preceding Chuseok", + "2010-09-22": "Chuseok", + "2010-09-23": "The second day of Chuseok", + "2010-10-03": "National Foundation Day", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-02-02": "The day preceding Lunar New Year", + "2011-02-03": "Lunar New Year", + "2011-02-04": "The second day of Lunar New Year", + "2011-03-01": "Independence Movement Day", + "2011-05-01": "Labour Day", + "2011-05-05": "Children's Day", + "2011-05-10": "Buddha's Birthday", + "2011-06-06": "Memorial Day", + "2011-08-15": "Liberation Day", + "2011-09-11": "The day preceding Chuseok", + "2011-09-12": "Chuseok", + "2011-09-13": "The second day of Chuseok", + "2011-10-03": "National Foundation Day", + "2011-12-25": "Christmas Day", + "2012-01-01": "New Year's Day", + "2012-01-22": "The day preceding Lunar New Year", + "2012-01-23": "Lunar New Year", + "2012-01-24": "The second day of Lunar New Year", + "2012-03-01": "Independence Movement Day", + "2012-05-01": "Labour Day", + "2012-05-05": "Children's Day", + "2012-05-28": "Buddha's Birthday", + "2012-06-06": "Memorial Day", + "2012-08-15": "Liberation Day", + "2012-09-29": "The day preceding Chuseok", + "2012-09-30": "Chuseok", + "2012-10-01": "The second day of Chuseok", + "2012-10-03": "National Foundation Day", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-02-09": "The day preceding Lunar New Year", + "2013-02-10": "Lunar New Year", + "2013-02-11": "The second day of Lunar New Year", + "2013-03-01": "Independence Movement Day", + "2013-05-01": "Labour Day", + "2013-05-05": "Children's Day", + "2013-05-17": "Buddha's Birthday", + "2013-06-06": "Memorial Day", + "2013-08-15": "Liberation Day", + "2013-09-18": "The day preceding Chuseok", + "2013-09-19": "Chuseok", + "2013-09-20": "The second day of Chuseok", + "2013-10-03": "National Foundation Day", + "2013-10-09": "Hangul Day", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-30": "The day preceding Lunar New Year", + "2014-01-31": "Lunar New Year", + "2014-02-01": "The second day of Lunar New Year", + "2014-03-01": "Independence Movement Day", + "2014-05-01": "Labour Day", + "2014-05-05": "Children's Day", + "2014-05-06": "Buddha's Birthday", + "2014-06-06": "Memorial Day", + "2014-08-15": "Liberation Day", + "2014-09-07": "The day preceding Chuseok", + "2014-09-08": "Chuseok", + "2014-09-09": "The second day of Chuseok", + "2014-09-10": "Alternative holiday for Chuseok", + "2014-10-03": "National Foundation Day", + "2014-10-09": "Hangul Day", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-02-18": "The day preceding Lunar New Year", + "2015-02-19": "Lunar New Year", + "2015-02-20": "The second day of Lunar New Year", + "2015-03-01": "Independence Movement Day", + "2015-05-01": "Labour Day", + "2015-05-05": "Children's Day", + "2015-05-25": "Buddha's Birthday", + "2015-06-06": "Memorial Day", + "2015-08-15": "Liberation Day", + "2015-09-26": "The day preceding Chuseok", + "2015-09-27": "Chuseok", + "2015-09-28": "The second day of Chuseok", + "2015-09-29": "Alternative holiday for Chuseok", + "2015-10-03": "National Foundation Day", + "2015-10-09": "Hangul Day", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-02-07": "The day preceding Lunar New Year", + "2016-02-08": "Lunar New Year", + "2016-02-09": "The second day of Lunar New Year", + "2016-02-10": "Alternative holiday for Lunar New Year", + "2016-03-01": "Independence Movement Day", + "2016-04-13": "National Assembly Election Day", + "2016-05-01": "Labour Day", + "2016-05-05": "Children's Day", + "2016-05-14": "Buddha's Birthday", + "2016-06-06": "Memorial Day", + "2016-08-15": "Liberation Day", + "2016-09-14": "The day preceding Chuseok", + "2016-09-15": "Chuseok", + "2016-09-16": "The second day of Chuseok", + "2016-10-03": "National Foundation Day", + "2016-10-09": "Hangul Day", + "2016-12-25": "Christmas Day", + "2017-01-01": "New Year's Day", + "2017-01-27": "The day preceding Lunar New Year", + "2017-01-28": "Lunar New Year", + "2017-01-29": "The second day of Lunar New Year", + "2017-01-30": "Alternative holiday for Lunar New Year", + "2017-03-01": "Independence Movement Day", + "2017-05-01": "Labour Day", + "2017-05-03": "Buddha's Birthday", + "2017-05-05": "Children's Day", + "2017-05-09": "Presidential Election Day", + "2017-06-06": "Memorial Day", + "2017-08-15": "Liberation Day", + "2017-10-03": "National Foundation Day; The day preceding Chuseok", + "2017-10-04": "Chuseok", + "2017-10-05": "The second day of Chuseok", + "2017-10-06": "Alternative holiday for Chuseok", + "2017-10-09": "Hangul Day", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-02-15": "The day preceding Lunar New Year", + "2018-02-16": "Lunar New Year", + "2018-02-17": "The second day of Lunar New Year", + "2018-03-01": "Independence Movement Day", + "2018-05-01": "Labour Day", + "2018-05-05": "Children's Day", + "2018-05-07": "Alternative holiday for Children's Day", + "2018-05-22": "Buddha's Birthday", + "2018-06-06": "Memorial Day", + "2018-06-13": "Local Election Day", + "2018-08-15": "Liberation Day", + "2018-09-23": "The day preceding Chuseok", + "2018-09-24": "Chuseok", + "2018-09-25": "The second day of Chuseok", + "2018-09-26": "Alternative holiday for Chuseok", + "2018-10-03": "National Foundation Day", + "2018-10-09": "Hangul Day", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-02-04": "The day preceding Lunar New Year", + "2019-02-05": "Lunar New Year", + "2019-02-06": "The second day of Lunar New Year", + "2019-03-01": "Independence Movement Day", + "2019-05-01": "Labour Day", + "2019-05-05": "Children's Day", + "2019-05-06": "Alternative holiday for Children's Day", + "2019-05-12": "Buddha's Birthday", + "2019-06-06": "Memorial Day", + "2019-08-15": "Liberation Day", + "2019-09-12": "The day preceding Chuseok", + "2019-09-13": "Chuseok", + "2019-09-14": "The second day of Chuseok", + "2019-10-03": "National Foundation Day", + "2019-10-09": "Hangul Day", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-01-24": "The day preceding Lunar New Year", + "2020-01-25": "Lunar New Year", + "2020-01-26": "The second day of Lunar New Year", + "2020-01-27": "Alternative holiday for Lunar New Year", + "2020-03-01": "Independence Movement Day", + "2020-04-15": "National Assembly Election Day", + "2020-04-30": "Buddha's Birthday", + "2020-05-01": "Labour Day", + "2020-05-05": "Children's Day", + "2020-06-06": "Memorial Day", + "2020-08-15": "Liberation Day", + "2020-08-17": "Alternative public holiday", + "2020-09-30": "The day preceding Chuseok", + "2020-10-01": "Chuseok", + "2020-10-02": "The second day of Chuseok", + "2020-10-03": "National Foundation Day", + "2020-10-09": "Hangul Day", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-02-11": "The day preceding Lunar New Year", + "2021-02-12": "Lunar New Year", + "2021-02-13": "The second day of Lunar New Year", + "2021-03-01": "Independence Movement Day", + "2021-05-01": "Labour Day", + "2021-05-05": "Children's Day", + "2021-05-19": "Buddha's Birthday", + "2021-06-06": "Memorial Day", + "2021-08-15": "Liberation Day", + "2021-08-16": "Alternative holiday for Liberation Day", + "2021-09-20": "The day preceding Chuseok", + "2021-09-21": "Chuseok", + "2021-09-22": "The second day of Chuseok", + "2021-10-03": "National Foundation Day", + "2021-10-04": "Alternative holiday for National Foundation Day", + "2021-10-09": "Hangul Day", + "2021-10-11": "Alternative holiday for Hangul Day", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-01-31": "The day preceding Lunar New Year", + "2022-02-01": "Lunar New Year", + "2022-02-02": "The second day of Lunar New Year", + "2022-03-01": "Independence Movement Day", + "2022-03-09": "Presidential Election Day", + "2022-05-01": "Labour Day", + "2022-05-05": "Children's Day", + "2022-05-08": "Buddha's Birthday", + "2022-06-01": "Local Election Day", + "2022-06-06": "Memorial Day", + "2022-08-15": "Liberation Day", + "2022-09-09": "The day preceding Chuseok", + "2022-09-10": "Chuseok", + "2022-09-11": "The second day of Chuseok", + "2022-09-12": "Alternative holiday for Chuseok", + "2022-10-03": "National Foundation Day", + "2022-10-09": "Hangul Day", + "2022-10-10": "Alternative holiday for Hangul Day", + "2022-12-25": "Christmas Day", + "2023-01-01": "New Year's Day", + "2023-01-21": "The day preceding Lunar New Year", + "2023-01-22": "Lunar New Year", + "2023-01-23": "The second day of Lunar New Year", + "2023-01-24": "Alternative holiday for Lunar New Year", + "2023-03-01": "Independence Movement Day", + "2023-05-01": "Labour Day", + "2023-05-05": "Children's Day", + "2023-05-27": "Buddha's Birthday", + "2023-05-29": "Alternative holiday for Buddha's Birthday", + "2023-06-06": "Memorial Day", + "2023-08-15": "Liberation Day", + "2023-09-28": "The day preceding Chuseok", + "2023-09-29": "Chuseok", + "2023-09-30": "The second day of Chuseok", + "2023-10-03": "National Foundation Day", + "2023-10-09": "Hangul Day", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-02-09": "The day preceding Lunar New Year", + "2024-02-10": "Lunar New Year", + "2024-02-11": "The second day of Lunar New Year", + "2024-02-12": "Alternative holiday for Lunar New Year", + "2024-03-01": "Independence Movement Day", + "2024-05-01": "Labour Day", + "2024-05-05": "Children's Day", + "2024-05-06": "Alternative holiday for Children's Day", + "2024-05-15": "Buddha's Birthday", + "2024-06-06": "Memorial Day", + "2024-08-15": "Liberation Day", + "2024-09-16": "The day preceding Chuseok", + "2024-09-17": "Chuseok", + "2024-09-18": "The second day of Chuseok", + "2024-10-03": "National Foundation Day", + "2024-10-09": "Hangul Day", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-01-28": "The day preceding Lunar New Year", + "2025-01-29": "Lunar New Year", + "2025-01-30": "The second day of Lunar New Year", + "2025-03-01": "Independence Movement Day", + "2025-03-03": "Alternative holiday for Independence Movement Day", + "2025-05-01": "Labour Day", + "2025-05-05": "Buddha's Birthday; Children's Day", + "2025-05-06": "Alternative holiday for Buddha's Birthday; Alternative holiday for Children's Day", + "2025-06-06": "Memorial Day", + "2025-08-15": "Liberation Day", + "2025-10-03": "National Foundation Day", + "2025-10-05": "The day preceding Chuseok", + "2025-10-06": "Chuseok", + "2025-10-07": "The second day of Chuseok", + "2025-10-08": "Alternative holiday for Chuseok", + "2025-10-09": "Hangul Day", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-02-16": "The day preceding Lunar New Year", + "2026-02-17": "Lunar New Year", + "2026-02-18": "The second day of Lunar New Year", + "2026-03-01": "Independence Movement Day", + "2026-03-02": "Alternative holiday for Independence Movement Day", + "2026-05-01": "Labour Day", + "2026-05-05": "Children's Day", + "2026-05-24": "Buddha's Birthday", + "2026-05-25": "Alternative holiday for Buddha's Birthday", + "2026-06-06": "Memorial Day", + "2026-08-15": "Liberation Day", + "2026-08-17": "Alternative holiday for Liberation Day", + "2026-09-24": "The day preceding Chuseok", + "2026-09-25": "Chuseok", + "2026-09-26": "The second day of Chuseok", + "2026-10-03": "National Foundation Day", + "2026-10-05": "Alternative holiday for National Foundation Day", + "2026-10-09": "Hangul Day", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-02-06": "The day preceding Lunar New Year", + "2027-02-07": "Lunar New Year", + "2027-02-08": "The second day of Lunar New Year", + "2027-02-09": "Alternative holiday for Lunar New Year", + "2027-03-01": "Independence Movement Day", + "2027-05-01": "Labour Day", + "2027-05-05": "Children's Day", + "2027-05-13": "Buddha's Birthday", + "2027-06-06": "Memorial Day", + "2027-08-15": "Liberation Day", + "2027-08-16": "Alternative holiday for Liberation Day", + "2027-09-14": "The day preceding Chuseok", + "2027-09-15": "Chuseok", + "2027-09-16": "The second day of Chuseok", + "2027-10-03": "National Foundation Day", + "2027-10-04": "Alternative holiday for National Foundation Day", + "2027-10-09": "Hangul Day", + "2027-10-11": "Alternative holiday for Hangul Day", + "2027-12-25": "Christmas Day", + "2027-12-27": "Alternative holiday for Christmas Day", + "2028-01-01": "New Year's Day", + "2028-01-26": "The day preceding Lunar New Year", + "2028-01-27": "Lunar New Year", + "2028-01-28": "The second day of Lunar New Year", + "2028-03-01": "Independence Movement Day", + "2028-05-01": "Labour Day", + "2028-05-02": "Buddha's Birthday", + "2028-05-05": "Children's Day", + "2028-06-06": "Memorial Day", + "2028-08-15": "Liberation Day", + "2028-10-02": "The day preceding Chuseok", + "2028-10-03": "Chuseok; National Foundation Day", + "2028-10-04": "The second day of Chuseok", + "2028-10-05": "Alternative holiday for Chuseok", + "2028-10-09": "Hangul Day", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-02-12": "The day preceding Lunar New Year", + "2029-02-13": "Lunar New Year", + "2029-02-14": "The second day of Lunar New Year", + "2029-03-01": "Independence Movement Day", + "2029-05-01": "Labour Day", + "2029-05-05": "Children's Day", + "2029-05-07": "Alternative holiday for Children's Day", + "2029-05-20": "Buddha's Birthday", + "2029-05-21": "Alternative holiday for Buddha's Birthday", + "2029-06-06": "Memorial Day", + "2029-08-15": "Liberation Day", + "2029-09-21": "The day preceding Chuseok", + "2029-09-22": "Chuseok", + "2029-09-23": "The second day of Chuseok", + "2029-09-24": "Alternative holiday for Chuseok", + "2029-10-03": "National Foundation Day", + "2029-10-09": "Hangul Day", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-02-02": "The day preceding Lunar New Year", + "2030-02-03": "Lunar New Year", + "2030-02-04": "The second day of Lunar New Year", + "2030-02-05": "Alternative holiday for Lunar New Year", + "2030-03-01": "Independence Movement Day", + "2030-05-01": "Labour Day", + "2030-05-05": "Children's Day", + "2030-05-06": "Alternative holiday for Children's Day", + "2030-05-09": "Buddha's Birthday", + "2030-06-06": "Memorial Day", + "2030-08-15": "Liberation Day", + "2030-09-11": "The day preceding Chuseok", + "2030-09-12": "Chuseok", + "2030-09-13": "The second day of Chuseok", + "2030-10-03": "National Foundation Day", + "2030-10-09": "Hangul Day", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-01-22": "The day preceding Lunar New Year", + "2031-01-23": "Lunar New Year", + "2031-01-24": "The second day of Lunar New Year", + "2031-03-01": "Independence Movement Day", + "2031-03-03": "Alternative holiday for Independence Movement Day", + "2031-05-01": "Labour Day", + "2031-05-05": "Children's Day", + "2031-05-28": "Buddha's Birthday", + "2031-06-06": "Memorial Day", + "2031-08-15": "Liberation Day", + "2031-09-30": "The day preceding Chuseok", + "2031-10-01": "Chuseok", + "2031-10-02": "The second day of Chuseok", + "2031-10-03": "National Foundation Day", + "2031-10-09": "Hangul Day", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-02-10": "The day preceding Lunar New Year", + "2032-02-11": "Lunar New Year", + "2032-02-12": "The second day of Lunar New Year", + "2032-03-01": "Independence Movement Day", + "2032-05-01": "Labour Day", + "2032-05-05": "Children's Day", + "2032-05-16": "Buddha's Birthday", + "2032-05-17": "Alternative holiday for Buddha's Birthday", + "2032-06-06": "Memorial Day", + "2032-08-15": "Liberation Day", + "2032-08-16": "Alternative holiday for Liberation Day", + "2032-09-18": "The day preceding Chuseok", + "2032-09-19": "Chuseok", + "2032-09-20": "The second day of Chuseok", + "2032-09-21": "Alternative holiday for Chuseok", + "2032-10-03": "National Foundation Day", + "2032-10-04": "Alternative holiday for National Foundation Day", + "2032-10-09": "Hangul Day", + "2032-10-11": "Alternative holiday for Hangul Day", + "2032-12-25": "Christmas Day", + "2032-12-27": "Alternative holiday for Christmas Day", + "2033-01-01": "New Year's Day", + "2033-01-30": "The day preceding Lunar New Year", + "2033-01-31": "Lunar New Year", + "2033-02-01": "The second day of Lunar New Year", + "2033-02-02": "Alternative holiday for Lunar New Year", + "2033-03-01": "Independence Movement Day", + "2033-05-01": "Labour Day", + "2033-05-05": "Children's Day", + "2033-05-06": "Buddha's Birthday", + "2033-06-06": "Memorial Day", + "2033-08-15": "Liberation Day", + "2033-09-07": "The day preceding Chuseok", + "2033-09-08": "Chuseok", + "2033-09-09": "The second day of Chuseok", + "2033-10-03": "National Foundation Day", + "2033-10-09": "Hangul Day", + "2033-10-10": "Alternative holiday for Hangul Day", + "2033-12-25": "Christmas Day", + "2033-12-26": "Alternative holiday for Christmas Day", + "2034-01-01": "New Year's Day", + "2034-02-18": "The day preceding Lunar New Year", + "2034-02-19": "Lunar New Year", + "2034-02-20": "The second day of Lunar New Year", + "2034-02-21": "Alternative holiday for Lunar New Year", + "2034-03-01": "Independence Movement Day", + "2034-05-01": "Labour Day", + "2034-05-05": "Children's Day", + "2034-05-25": "Buddha's Birthday", + "2034-06-06": "Memorial Day", + "2034-08-15": "Liberation Day", + "2034-09-26": "The day preceding Chuseok", + "2034-09-27": "Chuseok", + "2034-09-28": "The second day of Chuseok", + "2034-10-03": "National Foundation Day", + "2034-10-09": "Hangul Day", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-02-07": "The day preceding Lunar New Year", + "2035-02-08": "Lunar New Year", + "2035-02-09": "The second day of Lunar New Year", + "2035-03-01": "Independence Movement Day", + "2035-05-01": "Labour Day", + "2035-05-05": "Children's Day", + "2035-05-07": "Alternative holiday for Children's Day", + "2035-05-15": "Buddha's Birthday", + "2035-06-06": "Memorial Day", + "2035-08-15": "Liberation Day", + "2035-09-15": "The day preceding Chuseok", + "2035-09-16": "Chuseok", + "2035-09-17": "The second day of Chuseok", + "2035-09-18": "Alternative holiday for Chuseok", + "2035-10-03": "National Foundation Day", + "2035-10-09": "Hangul Day", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-01-27": "The day preceding Lunar New Year", + "2036-01-28": "Lunar New Year", + "2036-01-29": "The second day of Lunar New Year", + "2036-01-30": "Alternative holiday for Lunar New Year", + "2036-03-01": "Independence Movement Day", + "2036-03-03": "Alternative holiday for Independence Movement Day", + "2036-05-01": "Labour Day", + "2036-05-03": "Buddha's Birthday", + "2036-05-05": "Alternative holiday for Buddha's Birthday; Children's Day", + "2036-05-06": "Alternative holiday for Children's Day", + "2036-06-06": "Memorial Day", + "2036-08-15": "Liberation Day", + "2036-10-03": "National Foundation Day; The day preceding Chuseok", + "2036-10-04": "Chuseok", + "2036-10-05": "The second day of Chuseok", + "2036-10-06": "Alternative holiday for Chuseok", + "2036-10-07": "Alternative holiday for Chuseok", + "2036-10-09": "Hangul Day", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-02-14": "The day preceding Lunar New Year", + "2037-02-15": "Lunar New Year", + "2037-02-16": "The second day of Lunar New Year", + "2037-02-17": "Alternative holiday for Lunar New Year", + "2037-03-01": "Independence Movement Day", + "2037-03-02": "Alternative holiday for Independence Movement Day", + "2037-05-01": "Labour Day", + "2037-05-05": "Children's Day", + "2037-05-22": "Buddha's Birthday", + "2037-06-06": "Memorial Day", + "2037-08-15": "Liberation Day", + "2037-08-17": "Alternative holiday for Liberation Day", + "2037-09-23": "The day preceding Chuseok", + "2037-09-24": "Chuseok", + "2037-09-25": "The second day of Chuseok", + "2037-10-03": "National Foundation Day", + "2037-10-05": "Alternative holiday for National Foundation Day", + "2037-10-09": "Hangul Day", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-02-03": "The day preceding Lunar New Year", + "2038-02-04": "Lunar New Year", + "2038-02-05": "The second day of Lunar New Year", + "2038-03-01": "Independence Movement Day", + "2038-05-01": "Labour Day", + "2038-05-05": "Children's Day", + "2038-05-11": "Buddha's Birthday", + "2038-06-06": "Memorial Day", + "2038-08-15": "Liberation Day", + "2038-08-16": "Alternative holiday for Liberation Day", + "2038-09-12": "The day preceding Chuseok", + "2038-09-13": "Chuseok", + "2038-09-14": "The second day of Chuseok", + "2038-09-15": "Alternative holiday for Chuseok", + "2038-10-03": "National Foundation Day", + "2038-10-04": "Alternative holiday for National Foundation Day", + "2038-10-09": "Hangul Day", + "2038-10-11": "Alternative holiday for Hangul Day", + "2038-12-25": "Christmas Day", + "2038-12-27": "Alternative holiday for Christmas Day", + "2039-01-01": "New Year's Day", + "2039-01-23": "The day preceding Lunar New Year", + "2039-01-24": "Lunar New Year", + "2039-01-25": "The second day of Lunar New Year", + "2039-01-26": "Alternative holiday for Lunar New Year", + "2039-03-01": "Independence Movement Day", + "2039-04-30": "Buddha's Birthday", + "2039-05-01": "Labour Day", + "2039-05-02": "Alternative holiday for Buddha's Birthday", + "2039-05-05": "Children's Day", + "2039-06-06": "Memorial Day", + "2039-08-15": "Liberation Day", + "2039-10-01": "The day preceding Chuseok", + "2039-10-02": "Chuseok", + "2039-10-03": "National Foundation Day; The second day of Chuseok", + "2039-10-04": "Alternative holiday for Chuseok", + "2039-10-05": "Alternative holiday for Chuseok", + "2039-10-09": "Hangul Day", + "2039-10-10": "Alternative holiday for Hangul Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Alternative holiday for Christmas Day", + "2040-01-01": "New Year's Day", + "2040-02-11": "The day preceding Lunar New Year", + "2040-02-12": "Lunar New Year", + "2040-02-13": "The second day of Lunar New Year", + "2040-02-14": "Alternative holiday for Lunar New Year", + "2040-03-01": "Independence Movement Day", + "2040-05-01": "Labour Day", + "2040-05-05": "Children's Day", + "2040-05-07": "Alternative holiday for Children's Day", + "2040-05-18": "Buddha's Birthday", + "2040-06-06": "Memorial Day", + "2040-08-15": "Liberation Day", + "2040-09-20": "The day preceding Chuseok", + "2040-09-21": "Chuseok", + "2040-09-22": "The second day of Chuseok", + "2040-10-03": "National Foundation Day", + "2040-10-09": "Hangul Day", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-01-31": "The day preceding Lunar New Year", + "2041-02-01": "Lunar New Year", + "2041-02-02": "The second day of Lunar New Year", + "2041-03-01": "Independence Movement Day", + "2041-05-01": "Labour Day", + "2041-05-05": "Children's Day", + "2041-05-06": "Alternative holiday for Children's Day", + "2041-05-07": "Buddha's Birthday", + "2041-06-06": "Memorial Day", + "2041-08-15": "Liberation Day", + "2041-09-09": "The day preceding Chuseok", + "2041-09-10": "Chuseok", + "2041-09-11": "The second day of Chuseok", + "2041-10-03": "National Foundation Day", + "2041-10-09": "Hangul Day", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-01-21": "The day preceding Lunar New Year", + "2042-01-22": "Lunar New Year", + "2042-01-23": "The second day of Lunar New Year", + "2042-03-01": "Independence Movement Day", + "2042-03-03": "Alternative holiday for Independence Movement Day", + "2042-05-01": "Labour Day", + "2042-05-05": "Children's Day", + "2042-05-26": "Buddha's Birthday", + "2042-06-06": "Memorial Day", + "2042-08-15": "Liberation Day", + "2042-09-27": "The day preceding Chuseok", + "2042-09-28": "Chuseok", + "2042-09-29": "The second day of Chuseok", + "2042-09-30": "Alternative holiday for Chuseok", + "2042-10-03": "National Foundation Day", + "2042-10-09": "Hangul Day", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-02-09": "The day preceding Lunar New Year", + "2043-02-10": "Lunar New Year", + "2043-02-11": "The second day of Lunar New Year", + "2043-03-01": "Independence Movement Day", + "2043-03-02": "Alternative holiday for Independence Movement Day", + "2043-05-01": "Labour Day", + "2043-05-05": "Children's Day", + "2043-05-16": "Buddha's Birthday", + "2043-05-18": "Alternative holiday for Buddha's Birthday", + "2043-06-06": "Memorial Day", + "2043-08-15": "Liberation Day", + "2043-08-17": "Alternative holiday for Liberation Day", + "2043-09-16": "The day preceding Chuseok", + "2043-09-17": "Chuseok", + "2043-09-18": "The second day of Chuseok", + "2043-10-03": "National Foundation Day", + "2043-10-05": "Alternative holiday for National Foundation Day", + "2043-10-09": "Hangul Day", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-01-29": "The day preceding Lunar New Year", + "2044-01-30": "Lunar New Year", + "2044-01-31": "The second day of Lunar New Year", + "2044-02-01": "Alternative holiday for Lunar New Year", + "2044-03-01": "Independence Movement Day", + "2044-05-01": "Labour Day", + "2044-05-05": "Buddha's Birthday; Children's Day", + "2044-05-06": "Alternative holiday for Buddha's Birthday; Alternative holiday for Children's Day", + "2044-06-06": "Memorial Day", + "2044-08-15": "Liberation Day", + "2044-10-03": "National Foundation Day", + "2044-10-04": "The day preceding Chuseok", + "2044-10-05": "Chuseok", + "2044-10-06": "The second day of Chuseok", + "2044-10-09": "Hangul Day", + "2044-10-10": "Alternative holiday for Hangul Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "Alternative holiday for Christmas Day", + "2045-01-01": "New Year's Day", + "2045-02-16": "The day preceding Lunar New Year", + "2045-02-17": "Lunar New Year", + "2045-02-18": "The second day of Lunar New Year", + "2045-03-01": "Independence Movement Day", + "2045-05-01": "Labour Day", + "2045-05-05": "Children's Day", + "2045-05-24": "Buddha's Birthday", + "2045-06-06": "Memorial Day", + "2045-08-15": "Liberation Day", + "2045-09-24": "The day preceding Chuseok", + "2045-09-25": "Chuseok", + "2045-09-26": "The second day of Chuseok", + "2045-09-27": "Alternative holiday for Chuseok", + "2045-10-03": "National Foundation Day", + "2045-10-09": "Hangul Day", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-02-05": "The day preceding Lunar New Year", + "2046-02-06": "Lunar New Year", + "2046-02-07": "The second day of Lunar New Year", + "2046-03-01": "Independence Movement Day", + "2046-05-01": "Labour Day", + "2046-05-05": "Children's Day", + "2046-05-07": "Alternative holiday for Children's Day", + "2046-05-13": "Buddha's Birthday", + "2046-05-14": "Alternative holiday for Buddha's Birthday", + "2046-06-06": "Memorial Day", + "2046-08-15": "Liberation Day", + "2046-09-14": "The day preceding Chuseok", + "2046-09-15": "Chuseok", + "2046-09-16": "The second day of Chuseok", + "2046-09-17": "Alternative holiday for Chuseok", + "2046-10-03": "National Foundation Day", + "2046-10-09": "Hangul Day", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-25": "The day preceding Lunar New Year", + "2047-01-26": "Lunar New Year", + "2047-01-27": "The second day of Lunar New Year", + "2047-01-28": "Alternative holiday for Lunar New Year", + "2047-03-01": "Independence Movement Day", + "2047-05-01": "Labour Day", + "2047-05-02": "Buddha's Birthday", + "2047-05-05": "Children's Day", + "2047-05-06": "Alternative holiday for Children's Day", + "2047-06-06": "Memorial Day", + "2047-08-15": "Liberation Day", + "2047-10-03": "National Foundation Day; The day preceding Chuseok", + "2047-10-04": "Chuseok", + "2047-10-05": "The second day of Chuseok", + "2047-10-07": "Alternative holiday for Chuseok", + "2047-10-09": "Hangul Day", + "2047-12-25": "Christmas Day", + "2048-01-01": "New Year's Day", + "2048-02-13": "The day preceding Lunar New Year", + "2048-02-14": "Lunar New Year", + "2048-02-15": "The second day of Lunar New Year", + "2048-03-01": "Independence Movement Day", + "2048-03-02": "Alternative holiday for Independence Movement Day", + "2048-05-01": "Labour Day", + "2048-05-05": "Children's Day", + "2048-05-20": "Buddha's Birthday", + "2048-06-06": "Memorial Day", + "2048-08-15": "Liberation Day", + "2048-08-17": "Alternative holiday for Liberation Day", + "2048-09-21": "The day preceding Chuseok", + "2048-09-22": "Chuseok", + "2048-09-23": "The second day of Chuseok", + "2048-10-03": "National Foundation Day", + "2048-10-05": "Alternative holiday for National Foundation Day", + "2048-10-09": "Hangul Day", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-02-01": "The day preceding Lunar New Year", + "2049-02-02": "Lunar New Year", + "2049-02-03": "The second day of Lunar New Year", + "2049-03-01": "Independence Movement Day", + "2049-05-01": "Labour Day", + "2049-05-05": "Children's Day", + "2049-05-09": "Buddha's Birthday", + "2049-05-10": "Alternative holiday for Buddha's Birthday", + "2049-06-06": "Memorial Day", + "2049-08-15": "Liberation Day", + "2049-08-16": "Alternative holiday for Liberation Day", + "2049-09-10": "The day preceding Chuseok", + "2049-09-11": "Chuseok", + "2049-09-12": "The second day of Chuseok", + "2049-09-13": "Alternative holiday for Chuseok", + "2049-10-03": "National Foundation Day", + "2049-10-04": "Alternative holiday for National Foundation Day", + "2049-10-09": "Hangul Day", + "2049-10-11": "Alternative holiday for Hangul Day", + "2049-12-25": "Christmas Day", + "2049-12-27": "Alternative holiday for Christmas Day", + "2050-01-01": "New Year's Day", + "2050-01-22": "The day preceding Lunar New Year", + "2050-01-23": "Lunar New Year", + "2050-01-24": "The second day of Lunar New Year", + "2050-01-25": "Alternative holiday for Lunar New Year", + "2050-03-01": "Independence Movement Day", + "2050-05-01": "Labour Day", + "2050-05-05": "Children's Day", + "2050-05-28": "Buddha's Birthday", + "2050-05-30": "Alternative holiday for Buddha's Birthday", + "2050-06-06": "Memorial Day", + "2050-08-15": "Liberation Day", + "2050-09-29": "The day preceding Chuseok", + "2050-09-30": "Chuseok", + "2050-10-01": "The second day of Chuseok", + "2050-10-03": "National Foundation Day", + "2050-10-09": "Hangul Day", + "2050-10-10": "Alternative holiday for Hangul Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "Alternative holiday for Christmas Day" +} diff --git a/snapshots/countries/KZ.json b/snapshots/countries/KZ.json new file mode 100644 index 000000000..540260708 --- /dev/null +++ b/snapshots/countries/KZ.json @@ -0,0 +1,969 @@ +{ + "1991-01-01": "New Year", + "1991-01-02": "New Year", + "1991-03-08": "International Women's Day", + "1991-05-01": "Kazakhstan People Solidarity Holiday", + "1991-05-09": "Victory Day", + "1991-12-16": "Kazakhstan Independence Day", + "1992-01-01": "New Year", + "1992-01-02": "New Year", + "1992-03-08": "International Women's Day", + "1992-05-01": "Kazakhstan People Solidarity Holiday", + "1992-05-09": "Victory Day", + "1992-12-16": "Kazakhstan Independence Day", + "1993-01-01": "New Year", + "1993-01-02": "New Year", + "1993-03-08": "International Women's Day", + "1993-05-01": "Kazakhstan People Solidarity Holiday", + "1993-05-09": "Victory Day", + "1993-12-16": "Kazakhstan Independence Day", + "1994-01-01": "New Year", + "1994-01-02": "New Year", + "1994-03-08": "International Women's Day", + "1994-05-01": "Kazakhstan People Solidarity Holiday", + "1994-05-09": "Victory Day", + "1994-10-25": "Republic Day", + "1994-12-16": "Kazakhstan Independence Day", + "1995-01-01": "New Year", + "1995-01-02": "New Year", + "1995-03-08": "International Women's Day", + "1995-05-01": "Kazakhstan People Solidarity Holiday", + "1995-05-09": "Victory Day", + "1995-10-25": "Republic Day", + "1995-12-16": "Kazakhstan Independence Day", + "1996-01-01": "New Year", + "1996-01-02": "New Year", + "1996-03-08": "International Women's Day", + "1996-05-01": "Kazakhstan People Solidarity Holiday", + "1996-05-09": "Victory Day", + "1996-08-30": "Constitution Day of the Republic of Kazakhstan", + "1996-10-25": "Republic Day", + "1996-12-16": "Kazakhstan Independence Day", + "1997-01-01": "New Year", + "1997-01-02": "New Year", + "1997-03-08": "International Women's Day", + "1997-05-01": "Kazakhstan People Solidarity Holiday", + "1997-05-09": "Victory Day", + "1997-08-30": "Constitution Day of the Republic of Kazakhstan", + "1997-10-25": "Republic Day", + "1997-12-16": "Kazakhstan Independence Day", + "1998-01-01": "New Year", + "1998-01-02": "New Year", + "1998-03-08": "International Women's Day", + "1998-05-01": "Kazakhstan People Solidarity Holiday", + "1998-05-09": "Victory Day", + "1998-08-30": "Constitution Day of the Republic of Kazakhstan", + "1998-10-25": "Republic Day", + "1998-12-16": "Kazakhstan Independence Day", + "1999-01-01": "New Year", + "1999-01-02": "New Year", + "1999-03-08": "International Women's Day", + "1999-05-01": "Kazakhstan People Solidarity Holiday", + "1999-05-09": "Victory Day", + "1999-08-30": "Constitution Day of the Republic of Kazakhstan", + "1999-10-25": "Republic Day", + "1999-12-16": "Kazakhstan Independence Day", + "2000-01-01": "New Year", + "2000-01-02": "New Year", + "2000-03-08": "International Women's Day", + "2000-05-01": "Kazakhstan People Solidarity Holiday", + "2000-05-09": "Victory Day", + "2000-08-30": "Constitution Day of the Republic of Kazakhstan", + "2000-10-25": "Republic Day", + "2000-12-16": "Kazakhstan Independence Day", + "2001-01-01": "New Year", + "2001-01-02": "New Year", + "2001-03-08": "International Women's Day", + "2001-05-01": "Kazakhstan People Solidarity Holiday", + "2001-05-09": "Victory Day", + "2001-08-30": "Constitution Day of the Republic of Kazakhstan", + "2001-10-25": "Republic Day", + "2001-12-16": "Kazakhstan Independence Day", + "2002-01-01": "New Year", + "2002-01-02": "New Year", + "2002-03-08": "International Women's Day", + "2002-03-22": "Nauryz holiday", + "2002-05-01": "Kazakhstan People Solidarity Holiday", + "2002-05-09": "Victory Day", + "2002-08-30": "Constitution Day of the Republic of Kazakhstan", + "2002-10-25": "Republic Day", + "2002-12-16": "Kazakhstan Independence Day", + "2002-12-17": "Kazakhstan Independence Day", + "2003-01-01": "New Year", + "2003-01-02": "New Year", + "2003-03-08": "International Women's Day", + "2003-03-10": "International Women's Day (Observed)", + "2003-03-22": "Nauryz holiday", + "2003-03-24": "Nauryz holiday (Observed)", + "2003-05-01": "Kazakhstan People Solidarity Holiday", + "2003-05-09": "Victory Day", + "2003-08-30": "Constitution Day of the Republic of Kazakhstan", + "2003-09-01": "Constitution Day of the Republic of Kazakhstan (Observed)", + "2003-10-25": "Republic Day", + "2003-10-27": "Republic Day (Observed)", + "2003-12-16": "Kazakhstan Independence Day", + "2003-12-17": "Kazakhstan Independence Day", + "2004-01-01": "New Year", + "2004-01-02": "New Year", + "2004-03-08": "International Women's Day", + "2004-03-22": "Nauryz holiday", + "2004-05-01": "Kazakhstan People Solidarity Holiday", + "2004-05-03": "Kazakhstan People Solidarity Holiday (Observed)", + "2004-05-09": "Victory Day", + "2004-05-10": "Victory Day (Observed)", + "2004-08-30": "Constitution Day of the Republic of Kazakhstan", + "2004-10-25": "Republic Day", + "2004-12-16": "Kazakhstan Independence Day", + "2004-12-17": "Kazakhstan Independence Day", + "2005-01-01": "New Year", + "2005-01-02": "New Year", + "2005-01-03": "New Year (Observed)", + "2005-01-04": "New Year (Observed)", + "2005-03-08": "International Women's Day", + "2005-03-22": "Nauryz holiday", + "2005-05-01": "Kazakhstan People Solidarity Holiday", + "2005-05-02": "Kazakhstan People Solidarity Holiday (Observed)", + "2005-05-09": "Victory Day", + "2005-08-30": "Constitution Day of the Republic of Kazakhstan", + "2005-10-25": "Republic Day", + "2005-12-16": "Kazakhstan Independence Day", + "2005-12-17": "Kazakhstan Independence Day", + "2005-12-19": "Kazakhstan Independence Day (Observed)", + "2006-01-01": "New Year", + "2006-01-02": "New Year", + "2006-01-03": "New Year (Observed)", + "2006-01-07": "Orthodox Christmas", + "2006-01-10": "Kurban Ait* (*estimated)", + "2006-03-08": "International Women's Day", + "2006-03-22": "Nauryz holiday", + "2006-05-01": "Kazakhstan People Solidarity Holiday", + "2006-05-09": "Victory Day", + "2006-08-30": "Constitution Day of the Republic of Kazakhstan", + "2006-10-25": "Republic Day", + "2006-12-16": "Kazakhstan Independence Day", + "2006-12-17": "Kazakhstan Independence Day", + "2006-12-18": "Kazakhstan Independence Day (Observed)", + "2006-12-19": "Kazakhstan Independence Day (Observed)", + "2006-12-31": "Kurban Ait* (*estimated)", + "2007-01-01": "New Year", + "2007-01-02": "New Year", + "2007-01-07": "Orthodox Christmas", + "2007-03-08": "International Women's Day", + "2007-03-22": "Nauryz holiday", + "2007-05-01": "Kazakhstan People Solidarity Holiday", + "2007-05-09": "Victory Day", + "2007-08-30": "Constitution Day of the Republic of Kazakhstan", + "2007-10-25": "Republic Day", + "2007-12-16": "Kazakhstan Independence Day", + "2007-12-17": "Kazakhstan Independence Day", + "2007-12-18": "Kazakhstan Independence Day (Observed)", + "2007-12-20": "Kurban Ait* (*estimated)", + "2008-01-01": "New Year", + "2008-01-02": "New Year", + "2008-01-07": "Orthodox Christmas", + "2008-03-08": "International Women's Day", + "2008-03-10": "International Women's Day (Observed)", + "2008-03-22": "Nauryz holiday", + "2008-03-24": "Nauryz holiday (Observed)", + "2008-05-01": "Kazakhstan People Solidarity Holiday", + "2008-05-09": "Victory Day", + "2008-08-30": "Constitution Day of the Republic of Kazakhstan", + "2008-09-01": "Constitution Day of the Republic of Kazakhstan (Observed)", + "2008-10-25": "Republic Day", + "2008-10-27": "Republic Day (Observed)", + "2008-12-08": "Kurban Ait* (*estimated)", + "2008-12-16": "Kazakhstan Independence Day", + "2008-12-17": "Kazakhstan Independence Day", + "2009-01-01": "New Year", + "2009-01-02": "New Year", + "2009-01-07": "Orthodox Christmas", + "2009-03-08": "International Women's Day", + "2009-03-09": "International Women's Day (Observed)", + "2009-03-22": "Nauryz holiday", + "2009-03-23": "Nauryz holiday (Observed)", + "2009-05-01": "Kazakhstan People Solidarity Holiday", + "2009-05-09": "Victory Day", + "2009-05-11": "Victory Day (Observed)", + "2009-07-06": "Capital Day", + "2009-08-30": "Constitution Day of the Republic of Kazakhstan", + "2009-08-31": "Constitution Day of the Republic of Kazakhstan (Observed)", + "2009-11-27": "Kurban Ait* (*estimated)", + "2009-12-16": "Kazakhstan Independence Day", + "2009-12-17": "Kazakhstan Independence Day", + "2010-01-01": "New Year", + "2010-01-02": "New Year", + "2010-01-04": "New Year (Observed)", + "2010-01-07": "Orthodox Christmas", + "2010-03-08": "International Women's Day", + "2010-03-21": "Nauryz holiday", + "2010-03-22": "Nauryz holiday", + "2010-03-23": "Nauryz holiday", + "2010-03-24": "Nauryz holiday (Observed)", + "2010-05-01": "Kazakhstan People Solidarity Holiday", + "2010-05-03": "Kazakhstan People Solidarity Holiday (Observed)", + "2010-05-09": "Victory Day", + "2010-05-10": "Victory Day (Observed)", + "2010-07-06": "Capital Day", + "2010-08-30": "Constitution Day of the Republic of Kazakhstan", + "2010-11-16": "Kurban Ait* (*estimated)", + "2010-12-16": "Kazakhstan Independence Day", + "2010-12-17": "Kazakhstan Independence Day", + "2011-01-01": "New Year", + "2011-01-02": "New Year", + "2011-01-03": "New Year (Observed)", + "2011-01-04": "New Year (Observed)", + "2011-01-07": "Orthodox Christmas", + "2011-03-08": "International Women's Day", + "2011-03-21": "Nauryz holiday", + "2011-03-22": "Nauryz holiday", + "2011-03-23": "Nauryz holiday", + "2011-05-01": "Kazakhstan People Solidarity Holiday", + "2011-05-02": "Kazakhstan People Solidarity Holiday (Observed)", + "2011-05-09": "Victory Day", + "2011-07-06": "Capital Day", + "2011-08-30": "Constitution Day of the Republic of Kazakhstan", + "2011-11-06": "Kurban Ait* (*estimated)", + "2011-12-16": "Kazakhstan Independence Day", + "2011-12-17": "Kazakhstan Independence Day", + "2011-12-19": "Kazakhstan Independence Day (Observed)", + "2012-01-01": "New Year", + "2012-01-02": "New Year", + "2012-01-03": "New Year (Observed)", + "2012-01-07": "Orthodox Christmas", + "2012-03-08": "International Women's Day", + "2012-03-21": "Nauryz holiday", + "2012-03-22": "Nauryz holiday", + "2012-03-23": "Nauryz holiday", + "2012-05-01": "Kazakhstan People Solidarity Holiday", + "2012-05-09": "Victory Day", + "2012-07-06": "Capital Day", + "2012-08-30": "Constitution Day of the Republic of Kazakhstan", + "2012-10-26": "Kurban Ait* (*estimated)", + "2012-12-01": "First President Day", + "2012-12-03": "First President Day (Observed)", + "2012-12-16": "Kazakhstan Independence Day", + "2012-12-17": "Kazakhstan Independence Day", + "2012-12-18": "Kazakhstan Independence Day (Observed)", + "2013-01-01": "New Year", + "2013-01-02": "New Year", + "2013-01-07": "Orthodox Christmas", + "2013-03-08": "International Women's Day", + "2013-03-21": "Nauryz holiday", + "2013-03-22": "Nauryz holiday", + "2013-03-23": "Nauryz holiday", + "2013-03-25": "Nauryz holiday (Observed)", + "2013-05-01": "Kazakhstan People Solidarity Holiday", + "2013-05-07": "Defender of the Fatherland Day", + "2013-05-09": "Victory Day", + "2013-07-06": "Capital Day", + "2013-07-08": "Capital Day (Observed)", + "2013-08-30": "Constitution Day of the Republic of Kazakhstan", + "2013-10-15": "Kurban Ait* (*estimated)", + "2013-12-01": "First President Day", + "2013-12-02": "First President Day (Observed)", + "2013-12-16": "Kazakhstan Independence Day", + "2013-12-17": "Kazakhstan Independence Day", + "2014-01-01": "New Year", + "2014-01-02": "New Year", + "2014-01-07": "Orthodox Christmas", + "2014-03-08": "International Women's Day", + "2014-03-10": "International Women's Day (Observed)", + "2014-03-21": "Nauryz holiday", + "2014-03-22": "Nauryz holiday", + "2014-03-23": "Nauryz holiday", + "2014-03-24": "Nauryz holiday (Observed)", + "2014-03-25": "Nauryz holiday (Observed)", + "2014-05-01": "Kazakhstan People Solidarity Holiday", + "2014-05-07": "Defender of the Fatherland Day", + "2014-05-09": "Victory Day", + "2014-07-06": "Capital Day", + "2014-07-07": "Capital Day (Observed)", + "2014-08-30": "Constitution Day of the Republic of Kazakhstan", + "2014-09-01": "Constitution Day of the Republic of Kazakhstan (Observed)", + "2014-10-04": "Kurban Ait* (*estimated)", + "2014-12-01": "First President Day", + "2014-12-16": "Kazakhstan Independence Day", + "2014-12-17": "Kazakhstan Independence Day", + "2015-01-01": "New Year", + "2015-01-02": "New Year", + "2015-01-07": "Orthodox Christmas", + "2015-03-08": "International Women's Day", + "2015-03-09": "International Women's Day (Observed)", + "2015-03-21": "Nauryz holiday", + "2015-03-22": "Nauryz holiday", + "2015-03-23": "Nauryz holiday", + "2015-03-24": "Nauryz holiday (Observed)", + "2015-03-25": "Nauryz holiday (Observed)", + "2015-05-01": "Kazakhstan People Solidarity Holiday", + "2015-05-07": "Defender of the Fatherland Day", + "2015-05-09": "Victory Day", + "2015-05-11": "Victory Day (Observed)", + "2015-07-06": "Capital Day", + "2015-08-30": "Constitution Day of the Republic of Kazakhstan", + "2015-08-31": "Constitution Day of the Republic of Kazakhstan (Observed)", + "2015-09-23": "Kurban Ait* (*estimated)", + "2015-12-01": "First President Day", + "2015-12-16": "Kazakhstan Independence Day", + "2015-12-17": "Kazakhstan Independence Day", + "2016-01-01": "New Year", + "2016-01-02": "New Year", + "2016-01-04": "New Year (Observed)", + "2016-01-07": "Orthodox Christmas", + "2016-03-08": "International Women's Day", + "2016-03-21": "Nauryz holiday", + "2016-03-22": "Nauryz holiday", + "2016-03-23": "Nauryz holiday", + "2016-05-01": "Kazakhstan People Solidarity Holiday", + "2016-05-02": "Kazakhstan People Solidarity Holiday (Observed)", + "2016-05-07": "Defender of the Fatherland Day", + "2016-05-09": "Victory Day", + "2016-05-10": "Defender of the Fatherland Day (Observed)", + "2016-07-06": "Capital Day", + "2016-08-30": "Constitution Day of the Republic of Kazakhstan", + "2016-09-11": "Kurban Ait* (*estimated)", + "2016-12-01": "First President Day", + "2016-12-16": "Kazakhstan Independence Day", + "2016-12-17": "Kazakhstan Independence Day", + "2016-12-19": "Kazakhstan Independence Day (Observed)", + "2017-01-01": "New Year", + "2017-01-02": "New Year", + "2017-01-03": "New Year (Observed)", + "2017-01-07": "Orthodox Christmas", + "2017-03-08": "International Women's Day", + "2017-03-21": "Nauryz holiday", + "2017-03-22": "Nauryz holiday", + "2017-03-23": "Nauryz holiday", + "2017-05-01": "Kazakhstan People Solidarity Holiday", + "2017-05-07": "Defender of the Fatherland Day", + "2017-05-08": "Defender of the Fatherland Day (Observed)", + "2017-05-09": "Victory Day", + "2017-07-06": "Capital Day", + "2017-08-30": "Constitution Day of the Republic of Kazakhstan", + "2017-09-01": "Kurban Ait* (*estimated)", + "2017-12-01": "First President Day", + "2017-12-16": "Kazakhstan Independence Day", + "2017-12-17": "Kazakhstan Independence Day", + "2017-12-18": "Kazakhstan Independence Day (Observed)", + "2017-12-19": "Kazakhstan Independence Day (Observed)", + "2018-01-01": "New Year", + "2018-01-02": "New Year", + "2018-01-07": "Orthodox Christmas", + "2018-03-08": "International Women's Day", + "2018-03-21": "Nauryz holiday", + "2018-03-22": "Nauryz holiday", + "2018-03-23": "Nauryz holiday", + "2018-05-01": "Kazakhstan People Solidarity Holiday", + "2018-05-07": "Defender of the Fatherland Day", + "2018-05-09": "Victory Day", + "2018-07-06": "Capital Day", + "2018-08-21": "Kurban Ait* (*estimated)", + "2018-08-30": "Constitution Day of the Republic of Kazakhstan", + "2018-12-01": "First President Day", + "2018-12-03": "First President Day (Observed)", + "2018-12-16": "Kazakhstan Independence Day", + "2018-12-17": "Kazakhstan Independence Day", + "2018-12-18": "Kazakhstan Independence Day (Observed)", + "2019-01-01": "New Year", + "2019-01-02": "New Year", + "2019-01-07": "Orthodox Christmas", + "2019-03-08": "International Women's Day", + "2019-03-21": "Nauryz holiday", + "2019-03-22": "Nauryz holiday", + "2019-03-23": "Nauryz holiday", + "2019-03-25": "Nauryz holiday (Observed)", + "2019-05-01": "Kazakhstan People Solidarity Holiday", + "2019-05-07": "Defender of the Fatherland Day", + "2019-05-09": "Victory Day", + "2019-07-06": "Capital Day", + "2019-07-08": "Capital Day (Observed)", + "2019-08-11": "Kurban Ait* (*estimated)", + "2019-08-30": "Constitution Day of the Republic of Kazakhstan", + "2019-12-01": "First President Day", + "2019-12-02": "First President Day (Observed)", + "2019-12-16": "Kazakhstan Independence Day", + "2019-12-17": "Kazakhstan Independence Day", + "2020-01-01": "New Year", + "2020-01-02": "New Year", + "2020-01-07": "Orthodox Christmas", + "2020-03-08": "International Women's Day", + "2020-03-09": "International Women's Day (Observed)", + "2020-03-21": "Nauryz holiday", + "2020-03-22": "Nauryz holiday", + "2020-03-23": "Nauryz holiday", + "2020-03-24": "Nauryz holiday (Observed)", + "2020-03-25": "Nauryz holiday (Observed)", + "2020-05-01": "Kazakhstan People Solidarity Holiday", + "2020-05-07": "Defender of the Fatherland Day", + "2020-05-09": "Victory Day", + "2020-05-11": "Victory Day (Observed)", + "2020-07-06": "Capital Day", + "2020-07-31": "Kurban Ait* (*estimated)", + "2020-08-30": "Constitution Day of the Republic of Kazakhstan", + "2020-08-31": "Constitution Day of the Republic of Kazakhstan (Observed)", + "2020-12-01": "First President Day", + "2020-12-16": "Kazakhstan Independence Day", + "2020-12-17": "Kazakhstan Independence Day", + "2021-01-01": "New Year", + "2021-01-02": "New Year", + "2021-01-04": "New Year (Observed)", + "2021-01-07": "Orthodox Christmas", + "2021-03-08": "International Women's Day", + "2021-03-21": "Nauryz holiday", + "2021-03-22": "Nauryz holiday", + "2021-03-23": "Nauryz holiday", + "2021-03-24": "Nauryz holiday (Observed)", + "2021-05-01": "Kazakhstan People Solidarity Holiday", + "2021-05-03": "Kazakhstan People Solidarity Holiday (Observed)", + "2021-05-07": "Defender of the Fatherland Day", + "2021-05-09": "Victory Day", + "2021-05-10": "Victory Day (Observed)", + "2021-07-06": "Capital Day", + "2021-07-20": "Kurban Ait* (*estimated)", + "2021-08-30": "Constitution Day of the Republic of Kazakhstan", + "2021-12-01": "First President Day", + "2021-12-16": "Kazakhstan Independence Day", + "2021-12-17": "Kazakhstan Independence Day", + "2022-01-01": "New Year", + "2022-01-02": "New Year", + "2022-01-03": "New Year (Observed)", + "2022-01-04": "New Year (Observed)", + "2022-01-07": "Orthodox Christmas", + "2022-03-08": "International Women's Day", + "2022-03-21": "Nauryz holiday", + "2022-03-22": "Nauryz holiday", + "2022-03-23": "Nauryz holiday", + "2022-05-01": "Kazakhstan People Solidarity Holiday", + "2022-05-02": "Kazakhstan People Solidarity Holiday (Observed)", + "2022-05-07": "Defender of the Fatherland Day", + "2022-05-09": "Victory Day", + "2022-05-10": "Defender of the Fatherland Day (Observed)", + "2022-07-06": "Capital Day", + "2022-07-09": "Kurban Ait* (*estimated)", + "2022-08-30": "Constitution Day of the Republic of Kazakhstan", + "2022-10-25": "Republic Day", + "2022-12-16": "Kazakhstan Independence Day", + "2023-01-01": "New Year", + "2023-01-02": "New Year", + "2023-01-03": "New Year (Observed)", + "2023-01-07": "Orthodox Christmas", + "2023-03-08": "International Women's Day", + "2023-03-21": "Nauryz holiday", + "2023-03-22": "Nauryz holiday", + "2023-03-23": "Nauryz holiday", + "2023-05-01": "Kazakhstan People Solidarity Holiday", + "2023-05-07": "Defender of the Fatherland Day", + "2023-05-08": "Defender of the Fatherland Day (Observed)", + "2023-05-09": "Victory Day", + "2023-06-28": "Kurban Ait* (*estimated)", + "2023-07-06": "Capital Day", + "2023-08-30": "Constitution Day of the Republic of Kazakhstan", + "2023-10-25": "Republic Day", + "2023-12-16": "Kazakhstan Independence Day", + "2023-12-18": "Kazakhstan Independence Day (Observed)", + "2024-01-01": "New Year", + "2024-01-02": "New Year", + "2024-01-07": "Orthodox Christmas", + "2024-03-08": "International Women's Day", + "2024-03-21": "Nauryz holiday", + "2024-03-22": "Nauryz holiday", + "2024-03-23": "Nauryz holiday", + "2024-03-25": "Nauryz holiday (Observed)", + "2024-05-01": "Kazakhstan People Solidarity Holiday", + "2024-05-07": "Defender of the Fatherland Day", + "2024-05-09": "Victory Day", + "2024-06-16": "Kurban Ait* (*estimated)", + "2024-07-06": "Capital Day", + "2024-07-08": "Capital Day (Observed)", + "2024-08-30": "Constitution Day of the Republic of Kazakhstan", + "2024-10-25": "Republic Day", + "2024-12-16": "Kazakhstan Independence Day", + "2025-01-01": "New Year", + "2025-01-02": "New Year", + "2025-01-07": "Orthodox Christmas", + "2025-03-08": "International Women's Day", + "2025-03-10": "International Women's Day (Observed)", + "2025-03-21": "Nauryz holiday", + "2025-03-22": "Nauryz holiday", + "2025-03-23": "Nauryz holiday", + "2025-03-24": "Nauryz holiday (Observed)", + "2025-03-25": "Nauryz holiday (Observed)", + "2025-05-01": "Kazakhstan People Solidarity Holiday", + "2025-05-07": "Defender of the Fatherland Day", + "2025-05-09": "Victory Day", + "2025-06-06": "Kurban Ait* (*estimated)", + "2025-07-06": "Capital Day", + "2025-07-07": "Capital Day (Observed)", + "2025-08-30": "Constitution Day of the Republic of Kazakhstan", + "2025-09-01": "Constitution Day of the Republic of Kazakhstan (Observed)", + "2025-10-25": "Republic Day", + "2025-10-27": "Republic Day (Observed)", + "2025-12-16": "Kazakhstan Independence Day", + "2026-01-01": "New Year", + "2026-01-02": "New Year", + "2026-01-07": "Orthodox Christmas", + "2026-03-08": "International Women's Day", + "2026-03-09": "International Women's Day (Observed)", + "2026-03-21": "Nauryz holiday", + "2026-03-22": "Nauryz holiday", + "2026-03-23": "Nauryz holiday", + "2026-03-24": "Nauryz holiday (Observed)", + "2026-03-25": "Nauryz holiday (Observed)", + "2026-05-01": "Kazakhstan People Solidarity Holiday", + "2026-05-07": "Defender of the Fatherland Day", + "2026-05-09": "Victory Day", + "2026-05-11": "Victory Day (Observed)", + "2026-05-27": "Kurban Ait* (*estimated)", + "2026-07-06": "Capital Day", + "2026-08-30": "Constitution Day of the Republic of Kazakhstan", + "2026-08-31": "Constitution Day of the Republic of Kazakhstan (Observed)", + "2026-10-25": "Republic Day", + "2026-10-26": "Republic Day (Observed)", + "2026-12-16": "Kazakhstan Independence Day", + "2027-01-01": "New Year", + "2027-01-02": "New Year", + "2027-01-04": "New Year (Observed)", + "2027-01-07": "Orthodox Christmas", + "2027-03-08": "International Women's Day", + "2027-03-21": "Nauryz holiday", + "2027-03-22": "Nauryz holiday", + "2027-03-23": "Nauryz holiday", + "2027-03-24": "Nauryz holiday (Observed)", + "2027-05-01": "Kazakhstan People Solidarity Holiday", + "2027-05-03": "Kazakhstan People Solidarity Holiday (Observed)", + "2027-05-07": "Defender of the Fatherland Day", + "2027-05-09": "Victory Day", + "2027-05-10": "Victory Day (Observed)", + "2027-05-16": "Kurban Ait* (*estimated)", + "2027-07-06": "Capital Day", + "2027-08-30": "Constitution Day of the Republic of Kazakhstan", + "2027-10-25": "Republic Day", + "2027-12-16": "Kazakhstan Independence Day", + "2028-01-01": "New Year", + "2028-01-02": "New Year", + "2028-01-03": "New Year (Observed)", + "2028-01-04": "New Year (Observed)", + "2028-01-07": "Orthodox Christmas", + "2028-03-08": "International Women's Day", + "2028-03-21": "Nauryz holiday", + "2028-03-22": "Nauryz holiday", + "2028-03-23": "Nauryz holiday", + "2028-05-01": "Kazakhstan People Solidarity Holiday", + "2028-05-05": "Kurban Ait* (*estimated)", + "2028-05-07": "Defender of the Fatherland Day", + "2028-05-08": "Defender of the Fatherland Day (Observed)", + "2028-05-09": "Victory Day", + "2028-07-06": "Capital Day", + "2028-08-30": "Constitution Day of the Republic of Kazakhstan", + "2028-10-25": "Republic Day", + "2028-12-16": "Kazakhstan Independence Day", + "2028-12-18": "Kazakhstan Independence Day (Observed)", + "2029-01-01": "New Year", + "2029-01-02": "New Year", + "2029-01-07": "Orthodox Christmas", + "2029-03-08": "International Women's Day", + "2029-03-21": "Nauryz holiday", + "2029-03-22": "Nauryz holiday", + "2029-03-23": "Nauryz holiday", + "2029-04-24": "Kurban Ait* (*estimated)", + "2029-05-01": "Kazakhstan People Solidarity Holiday", + "2029-05-07": "Defender of the Fatherland Day", + "2029-05-09": "Victory Day", + "2029-07-06": "Capital Day", + "2029-08-30": "Constitution Day of the Republic of Kazakhstan", + "2029-10-25": "Republic Day", + "2029-12-16": "Kazakhstan Independence Day", + "2029-12-17": "Kazakhstan Independence Day (Observed)", + "2030-01-01": "New Year", + "2030-01-02": "New Year", + "2030-01-07": "Orthodox Christmas", + "2030-03-08": "International Women's Day", + "2030-03-21": "Nauryz holiday", + "2030-03-22": "Nauryz holiday", + "2030-03-23": "Nauryz holiday", + "2030-03-25": "Nauryz holiday (Observed)", + "2030-04-13": "Kurban Ait* (*estimated)", + "2030-05-01": "Kazakhstan People Solidarity Holiday", + "2030-05-07": "Defender of the Fatherland Day", + "2030-05-09": "Victory Day", + "2030-07-06": "Capital Day", + "2030-07-08": "Capital Day (Observed)", + "2030-08-30": "Constitution Day of the Republic of Kazakhstan", + "2030-10-25": "Republic Day", + "2030-12-16": "Kazakhstan Independence Day", + "2031-01-01": "New Year", + "2031-01-02": "New Year", + "2031-01-07": "Orthodox Christmas", + "2031-03-08": "International Women's Day", + "2031-03-10": "International Women's Day (Observed)", + "2031-03-21": "Nauryz holiday", + "2031-03-22": "Nauryz holiday", + "2031-03-23": "Nauryz holiday", + "2031-03-24": "Nauryz holiday (Observed)", + "2031-03-25": "Nauryz holiday (Observed)", + "2031-04-02": "Kurban Ait* (*estimated)", + "2031-05-01": "Kazakhstan People Solidarity Holiday", + "2031-05-07": "Defender of the Fatherland Day", + "2031-05-09": "Victory Day", + "2031-07-06": "Capital Day", + "2031-07-07": "Capital Day (Observed)", + "2031-08-30": "Constitution Day of the Republic of Kazakhstan", + "2031-09-01": "Constitution Day of the Republic of Kazakhstan (Observed)", + "2031-10-25": "Republic Day", + "2031-10-27": "Republic Day (Observed)", + "2031-12-16": "Kazakhstan Independence Day", + "2032-01-01": "New Year", + "2032-01-02": "New Year", + "2032-01-07": "Orthodox Christmas", + "2032-03-08": "International Women's Day", + "2032-03-21": "Nauryz holiday", + "2032-03-22": "Kurban Ait* (*estimated); Nauryz holiday", + "2032-03-23": "Nauryz holiday", + "2032-03-24": "Nauryz holiday (Observed)", + "2032-05-01": "Kazakhstan People Solidarity Holiday", + "2032-05-03": "Kazakhstan People Solidarity Holiday (Observed)", + "2032-05-07": "Defender of the Fatherland Day", + "2032-05-09": "Victory Day", + "2032-05-10": "Victory Day (Observed)", + "2032-07-06": "Capital Day", + "2032-08-30": "Constitution Day of the Republic of Kazakhstan", + "2032-10-25": "Republic Day", + "2032-12-16": "Kazakhstan Independence Day", + "2033-01-01": "New Year", + "2033-01-02": "New Year", + "2033-01-03": "New Year (Observed)", + "2033-01-04": "New Year (Observed)", + "2033-01-07": "Orthodox Christmas", + "2033-03-08": "International Women's Day", + "2033-03-11": "Kurban Ait* (*estimated)", + "2033-03-21": "Nauryz holiday", + "2033-03-22": "Nauryz holiday", + "2033-03-23": "Nauryz holiday", + "2033-05-01": "Kazakhstan People Solidarity Holiday", + "2033-05-02": "Kazakhstan People Solidarity Holiday (Observed)", + "2033-05-07": "Defender of the Fatherland Day", + "2033-05-09": "Victory Day", + "2033-05-10": "Defender of the Fatherland Day (Observed)", + "2033-07-06": "Capital Day", + "2033-08-30": "Constitution Day of the Republic of Kazakhstan", + "2033-10-25": "Republic Day", + "2033-12-16": "Kazakhstan Independence Day", + "2034-01-01": "New Year", + "2034-01-02": "New Year", + "2034-01-03": "New Year (Observed)", + "2034-01-07": "Orthodox Christmas", + "2034-03-01": "Kurban Ait* (*estimated)", + "2034-03-08": "International Women's Day", + "2034-03-21": "Nauryz holiday", + "2034-03-22": "Nauryz holiday", + "2034-03-23": "Nauryz holiday", + "2034-05-01": "Kazakhstan People Solidarity Holiday", + "2034-05-07": "Defender of the Fatherland Day", + "2034-05-08": "Defender of the Fatherland Day (Observed)", + "2034-05-09": "Victory Day", + "2034-07-06": "Capital Day", + "2034-08-30": "Constitution Day of the Republic of Kazakhstan", + "2034-10-25": "Republic Day", + "2034-12-16": "Kazakhstan Independence Day", + "2034-12-18": "Kazakhstan Independence Day (Observed)", + "2035-01-01": "New Year", + "2035-01-02": "New Year", + "2035-01-07": "Orthodox Christmas", + "2035-02-18": "Kurban Ait* (*estimated)", + "2035-03-08": "International Women's Day", + "2035-03-21": "Nauryz holiday", + "2035-03-22": "Nauryz holiday", + "2035-03-23": "Nauryz holiday", + "2035-05-01": "Kazakhstan People Solidarity Holiday", + "2035-05-07": "Defender of the Fatherland Day", + "2035-05-09": "Victory Day", + "2035-07-06": "Capital Day", + "2035-08-30": "Constitution Day of the Republic of Kazakhstan", + "2035-10-25": "Republic Day", + "2035-12-16": "Kazakhstan Independence Day", + "2035-12-17": "Kazakhstan Independence Day (Observed)", + "2036-01-01": "New Year", + "2036-01-02": "New Year", + "2036-01-07": "Orthodox Christmas", + "2036-02-07": "Kurban Ait* (*estimated)", + "2036-03-08": "International Women's Day", + "2036-03-10": "International Women's Day (Observed)", + "2036-03-21": "Nauryz holiday", + "2036-03-22": "Nauryz holiday", + "2036-03-23": "Nauryz holiday", + "2036-03-24": "Nauryz holiday (Observed)", + "2036-03-25": "Nauryz holiday (Observed)", + "2036-05-01": "Kazakhstan People Solidarity Holiday", + "2036-05-07": "Defender of the Fatherland Day", + "2036-05-09": "Victory Day", + "2036-07-06": "Capital Day", + "2036-07-07": "Capital Day (Observed)", + "2036-08-30": "Constitution Day of the Republic of Kazakhstan", + "2036-09-01": "Constitution Day of the Republic of Kazakhstan (Observed)", + "2036-10-25": "Republic Day", + "2036-10-27": "Republic Day (Observed)", + "2036-12-16": "Kazakhstan Independence Day", + "2037-01-01": "New Year", + "2037-01-02": "New Year", + "2037-01-07": "Orthodox Christmas", + "2037-01-26": "Kurban Ait* (*estimated)", + "2037-03-08": "International Women's Day", + "2037-03-09": "International Women's Day (Observed)", + "2037-03-21": "Nauryz holiday", + "2037-03-22": "Nauryz holiday", + "2037-03-23": "Nauryz holiday", + "2037-03-24": "Nauryz holiday (Observed)", + "2037-03-25": "Nauryz holiday (Observed)", + "2037-05-01": "Kazakhstan People Solidarity Holiday", + "2037-05-07": "Defender of the Fatherland Day", + "2037-05-09": "Victory Day", + "2037-05-11": "Victory Day (Observed)", + "2037-07-06": "Capital Day", + "2037-08-30": "Constitution Day of the Republic of Kazakhstan", + "2037-08-31": "Constitution Day of the Republic of Kazakhstan (Observed)", + "2037-10-25": "Republic Day", + "2037-10-26": "Republic Day (Observed)", + "2037-12-16": "Kazakhstan Independence Day", + "2038-01-01": "New Year", + "2038-01-02": "New Year", + "2038-01-04": "New Year (Observed)", + "2038-01-07": "Orthodox Christmas", + "2038-01-16": "Kurban Ait* (*estimated)", + "2038-03-08": "International Women's Day", + "2038-03-21": "Nauryz holiday", + "2038-03-22": "Nauryz holiday", + "2038-03-23": "Nauryz holiday", + "2038-03-24": "Nauryz holiday (Observed)", + "2038-05-01": "Kazakhstan People Solidarity Holiday", + "2038-05-03": "Kazakhstan People Solidarity Holiday (Observed)", + "2038-05-07": "Defender of the Fatherland Day", + "2038-05-09": "Victory Day", + "2038-05-10": "Victory Day (Observed)", + "2038-07-06": "Capital Day", + "2038-08-30": "Constitution Day of the Republic of Kazakhstan", + "2038-10-25": "Republic Day", + "2038-12-16": "Kazakhstan Independence Day", + "2039-01-01": "New Year", + "2039-01-02": "New Year", + "2039-01-03": "New Year (Observed)", + "2039-01-04": "New Year (Observed)", + "2039-01-05": "Kurban Ait* (*estimated)", + "2039-01-07": "Orthodox Christmas", + "2039-03-08": "International Women's Day", + "2039-03-21": "Nauryz holiday", + "2039-03-22": "Nauryz holiday", + "2039-03-23": "Nauryz holiday", + "2039-05-01": "Kazakhstan People Solidarity Holiday", + "2039-05-02": "Kazakhstan People Solidarity Holiday (Observed)", + "2039-05-07": "Defender of the Fatherland Day", + "2039-05-09": "Victory Day", + "2039-05-10": "Defender of the Fatherland Day (Observed)", + "2039-07-06": "Capital Day", + "2039-08-30": "Constitution Day of the Republic of Kazakhstan", + "2039-10-25": "Republic Day", + "2039-12-16": "Kazakhstan Independence Day", + "2039-12-26": "Kurban Ait* (*estimated)", + "2040-01-01": "New Year", + "2040-01-02": "New Year", + "2040-01-03": "New Year (Observed)", + "2040-01-07": "Orthodox Christmas", + "2040-03-08": "International Women's Day", + "2040-03-21": "Nauryz holiday", + "2040-03-22": "Nauryz holiday", + "2040-03-23": "Nauryz holiday", + "2040-05-01": "Kazakhstan People Solidarity Holiday", + "2040-05-07": "Defender of the Fatherland Day", + "2040-05-09": "Victory Day", + "2040-07-06": "Capital Day", + "2040-08-30": "Constitution Day of the Republic of Kazakhstan", + "2040-10-25": "Republic Day", + "2040-12-14": "Kurban Ait* (*estimated)", + "2040-12-16": "Kazakhstan Independence Day", + "2040-12-17": "Kazakhstan Independence Day (Observed)", + "2041-01-01": "New Year", + "2041-01-02": "New Year", + "2041-01-07": "Orthodox Christmas", + "2041-03-08": "International Women's Day", + "2041-03-21": "Nauryz holiday", + "2041-03-22": "Nauryz holiday", + "2041-03-23": "Nauryz holiday", + "2041-03-25": "Nauryz holiday (Observed)", + "2041-05-01": "Kazakhstan People Solidarity Holiday", + "2041-05-07": "Defender of the Fatherland Day", + "2041-05-09": "Victory Day", + "2041-07-06": "Capital Day", + "2041-07-08": "Capital Day (Observed)", + "2041-08-30": "Constitution Day of the Republic of Kazakhstan", + "2041-10-25": "Republic Day", + "2041-12-04": "Kurban Ait* (*estimated)", + "2041-12-16": "Kazakhstan Independence Day", + "2042-01-01": "New Year", + "2042-01-02": "New Year", + "2042-01-07": "Orthodox Christmas", + "2042-03-08": "International Women's Day", + "2042-03-10": "International Women's Day (Observed)", + "2042-03-21": "Nauryz holiday", + "2042-03-22": "Nauryz holiday", + "2042-03-23": "Nauryz holiday", + "2042-03-24": "Nauryz holiday (Observed)", + "2042-03-25": "Nauryz holiday (Observed)", + "2042-05-01": "Kazakhstan People Solidarity Holiday", + "2042-05-07": "Defender of the Fatherland Day", + "2042-05-09": "Victory Day", + "2042-07-06": "Capital Day", + "2042-07-07": "Capital Day (Observed)", + "2042-08-30": "Constitution Day of the Republic of Kazakhstan", + "2042-09-01": "Constitution Day of the Republic of Kazakhstan (Observed)", + "2042-10-25": "Republic Day", + "2042-10-27": "Republic Day (Observed)", + "2042-11-23": "Kurban Ait* (*estimated)", + "2042-12-16": "Kazakhstan Independence Day", + "2043-01-01": "New Year", + "2043-01-02": "New Year", + "2043-01-07": "Orthodox Christmas", + "2043-03-08": "International Women's Day", + "2043-03-09": "International Women's Day (Observed)", + "2043-03-21": "Nauryz holiday", + "2043-03-22": "Nauryz holiday", + "2043-03-23": "Nauryz holiday", + "2043-03-24": "Nauryz holiday (Observed)", + "2043-03-25": "Nauryz holiday (Observed)", + "2043-05-01": "Kazakhstan People Solidarity Holiday", + "2043-05-07": "Defender of the Fatherland Day", + "2043-05-09": "Victory Day", + "2043-05-11": "Victory Day (Observed)", + "2043-07-06": "Capital Day", + "2043-08-30": "Constitution Day of the Republic of Kazakhstan", + "2043-08-31": "Constitution Day of the Republic of Kazakhstan (Observed)", + "2043-10-25": "Republic Day", + "2043-10-26": "Republic Day (Observed)", + "2043-11-12": "Kurban Ait* (*estimated)", + "2043-12-16": "Kazakhstan Independence Day", + "2044-01-01": "New Year", + "2044-01-02": "New Year", + "2044-01-04": "New Year (Observed)", + "2044-01-07": "Orthodox Christmas", + "2044-03-08": "International Women's Day", + "2044-03-21": "Nauryz holiday", + "2044-03-22": "Nauryz holiday", + "2044-03-23": "Nauryz holiday", + "2044-05-01": "Kazakhstan People Solidarity Holiday", + "2044-05-02": "Kazakhstan People Solidarity Holiday (Observed)", + "2044-05-07": "Defender of the Fatherland Day", + "2044-05-09": "Victory Day", + "2044-05-10": "Defender of the Fatherland Day (Observed)", + "2044-07-06": "Capital Day", + "2044-08-30": "Constitution Day of the Republic of Kazakhstan", + "2044-10-25": "Republic Day", + "2044-10-31": "Kurban Ait* (*estimated)", + "2044-12-16": "Kazakhstan Independence Day", + "2045-01-01": "New Year", + "2045-01-02": "New Year", + "2045-01-03": "New Year (Observed)", + "2045-01-07": "Orthodox Christmas", + "2045-03-08": "International Women's Day", + "2045-03-21": "Nauryz holiday", + "2045-03-22": "Nauryz holiday", + "2045-03-23": "Nauryz holiday", + "2045-05-01": "Kazakhstan People Solidarity Holiday", + "2045-05-07": "Defender of the Fatherland Day", + "2045-05-08": "Defender of the Fatherland Day (Observed)", + "2045-05-09": "Victory Day", + "2045-07-06": "Capital Day", + "2045-08-30": "Constitution Day of the Republic of Kazakhstan", + "2045-10-21": "Kurban Ait* (*estimated)", + "2045-10-25": "Republic Day", + "2045-12-16": "Kazakhstan Independence Day", + "2045-12-18": "Kazakhstan Independence Day (Observed)", + "2046-01-01": "New Year", + "2046-01-02": "New Year", + "2046-01-07": "Orthodox Christmas", + "2046-03-08": "International Women's Day", + "2046-03-21": "Nauryz holiday", + "2046-03-22": "Nauryz holiday", + "2046-03-23": "Nauryz holiday", + "2046-05-01": "Kazakhstan People Solidarity Holiday", + "2046-05-07": "Defender of the Fatherland Day", + "2046-05-09": "Victory Day", + "2046-07-06": "Capital Day", + "2046-08-30": "Constitution Day of the Republic of Kazakhstan", + "2046-10-10": "Kurban Ait* (*estimated)", + "2046-10-25": "Republic Day", + "2046-12-16": "Kazakhstan Independence Day", + "2046-12-17": "Kazakhstan Independence Day (Observed)", + "2047-01-01": "New Year", + "2047-01-02": "New Year", + "2047-01-07": "Orthodox Christmas", + "2047-03-08": "International Women's Day", + "2047-03-21": "Nauryz holiday", + "2047-03-22": "Nauryz holiday", + "2047-03-23": "Nauryz holiday", + "2047-03-25": "Nauryz holiday (Observed)", + "2047-05-01": "Kazakhstan People Solidarity Holiday", + "2047-05-07": "Defender of the Fatherland Day", + "2047-05-09": "Victory Day", + "2047-07-06": "Capital Day", + "2047-07-08": "Capital Day (Observed)", + "2047-08-30": "Constitution Day of the Republic of Kazakhstan", + "2047-09-30": "Kurban Ait* (*estimated)", + "2047-10-25": "Republic Day", + "2047-12-16": "Kazakhstan Independence Day", + "2048-01-01": "New Year", + "2048-01-02": "New Year", + "2048-01-07": "Orthodox Christmas", + "2048-03-08": "International Women's Day", + "2048-03-09": "International Women's Day (Observed)", + "2048-03-21": "Nauryz holiday", + "2048-03-22": "Nauryz holiday", + "2048-03-23": "Nauryz holiday", + "2048-03-24": "Nauryz holiday (Observed)", + "2048-03-25": "Nauryz holiday (Observed)", + "2048-05-01": "Kazakhstan People Solidarity Holiday", + "2048-05-07": "Defender of the Fatherland Day", + "2048-05-09": "Victory Day", + "2048-05-11": "Victory Day (Observed)", + "2048-07-06": "Capital Day", + "2048-08-30": "Constitution Day of the Republic of Kazakhstan", + "2048-08-31": "Constitution Day of the Republic of Kazakhstan (Observed)", + "2048-09-19": "Kurban Ait* (*estimated)", + "2048-10-25": "Republic Day", + "2048-10-26": "Republic Day (Observed)", + "2048-12-16": "Kazakhstan Independence Day", + "2049-01-01": "New Year", + "2049-01-02": "New Year", + "2049-01-04": "New Year (Observed)", + "2049-01-07": "Orthodox Christmas", + "2049-03-08": "International Women's Day", + "2049-03-21": "Nauryz holiday", + "2049-03-22": "Nauryz holiday", + "2049-03-23": "Nauryz holiday", + "2049-03-24": "Nauryz holiday (Observed)", + "2049-05-01": "Kazakhstan People Solidarity Holiday", + "2049-05-03": "Kazakhstan People Solidarity Holiday (Observed)", + "2049-05-07": "Defender of the Fatherland Day", + "2049-05-09": "Victory Day", + "2049-05-10": "Victory Day (Observed)", + "2049-07-06": "Capital Day", + "2049-08-30": "Constitution Day of the Republic of Kazakhstan", + "2049-09-08": "Kurban Ait* (*estimated)", + "2049-10-25": "Republic Day", + "2049-12-16": "Kazakhstan Independence Day", + "2050-01-01": "New Year", + "2050-01-02": "New Year", + "2050-01-03": "New Year (Observed)", + "2050-01-04": "New Year (Observed)", + "2050-01-07": "Orthodox Christmas", + "2050-03-08": "International Women's Day", + "2050-03-21": "Nauryz holiday", + "2050-03-22": "Nauryz holiday", + "2050-03-23": "Nauryz holiday", + "2050-05-01": "Kazakhstan People Solidarity Holiday", + "2050-05-02": "Kazakhstan People Solidarity Holiday (Observed)", + "2050-05-07": "Defender of the Fatherland Day", + "2050-05-09": "Victory Day", + "2050-05-10": "Defender of the Fatherland Day (Observed)", + "2050-07-06": "Capital Day", + "2050-08-28": "Kurban Ait* (*estimated)", + "2050-08-30": "Constitution Day of the Republic of Kazakhstan", + "2050-10-25": "Republic Day", + "2050-12-16": "Kazakhstan Independence Day" +} diff --git a/snapshots/countries/LI.json b/snapshots/countries/LI.json new file mode 100644 index 000000000..2771b61ed --- /dev/null +++ b/snapshots/countries/LI.json @@ -0,0 +1,2223 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-02": "Saint Berchtold's Day", + "1950-01-06": "Epiphany", + "1950-02-02": "Candlemas", + "1950-02-21": "Shrove Tuesday", + "1950-03-19": "Saint Joseph's Day", + "1950-04-07": "Good Friday", + "1950-04-09": "Easter Sunday", + "1950-04-10": "Easter Monday", + "1950-05-01": "Labor Day", + "1950-05-18": "Ascension Day", + "1950-05-28": "Whit Sunday", + "1950-05-29": "Whit Monday", + "1950-06-08": "Corpus Christi", + "1950-08-15": "National Day", + "1950-09-08": "Nativity of Mary", + "1950-11-01": "All Saints' Day", + "1950-12-08": "Immaculate Conception", + "1950-12-24": "Christmas Eve", + "1950-12-25": "Christmas Day", + "1950-12-26": "St. Stephen's Day", + "1950-12-31": "New Year's Eve", + "1951-01-01": "New Year's Day", + "1951-01-02": "Saint Berchtold's Day", + "1951-01-06": "Epiphany", + "1951-02-02": "Candlemas", + "1951-02-06": "Shrove Tuesday", + "1951-03-19": "Saint Joseph's Day", + "1951-03-23": "Good Friday", + "1951-03-25": "Easter Sunday", + "1951-03-26": "Easter Monday", + "1951-05-01": "Labor Day", + "1951-05-03": "Ascension Day", + "1951-05-13": "Whit Sunday", + "1951-05-14": "Whit Monday", + "1951-05-24": "Corpus Christi", + "1951-08-15": "National Day", + "1951-09-08": "Nativity of Mary", + "1951-11-01": "All Saints' Day", + "1951-12-08": "Immaculate Conception", + "1951-12-24": "Christmas Eve", + "1951-12-25": "Christmas Day", + "1951-12-26": "St. Stephen's Day", + "1951-12-31": "New Year's Eve", + "1952-01-01": "New Year's Day", + "1952-01-02": "Saint Berchtold's Day", + "1952-01-06": "Epiphany", + "1952-02-02": "Candlemas", + "1952-02-26": "Shrove Tuesday", + "1952-03-19": "Saint Joseph's Day", + "1952-04-11": "Good Friday", + "1952-04-13": "Easter Sunday", + "1952-04-14": "Easter Monday", + "1952-05-01": "Labor Day", + "1952-05-22": "Ascension Day", + "1952-06-01": "Whit Sunday", + "1952-06-02": "Whit Monday", + "1952-06-12": "Corpus Christi", + "1952-08-15": "National Day", + "1952-09-08": "Nativity of Mary", + "1952-11-01": "All Saints' Day", + "1952-12-08": "Immaculate Conception", + "1952-12-24": "Christmas Eve", + "1952-12-25": "Christmas Day", + "1952-12-26": "St. Stephen's Day", + "1952-12-31": "New Year's Eve", + "1953-01-01": "New Year's Day", + "1953-01-02": "Saint Berchtold's Day", + "1953-01-06": "Epiphany", + "1953-02-02": "Candlemas", + "1953-02-17": "Shrove Tuesday", + "1953-03-19": "Saint Joseph's Day", + "1953-04-03": "Good Friday", + "1953-04-05": "Easter Sunday", + "1953-04-06": "Easter Monday", + "1953-05-01": "Labor Day", + "1953-05-14": "Ascension Day", + "1953-05-24": "Whit Sunday", + "1953-05-25": "Whit Monday", + "1953-06-04": "Corpus Christi", + "1953-08-15": "National Day", + "1953-09-08": "Nativity of Mary", + "1953-11-01": "All Saints' Day", + "1953-12-08": "Immaculate Conception", + "1953-12-24": "Christmas Eve", + "1953-12-25": "Christmas Day", + "1953-12-26": "St. Stephen's Day", + "1953-12-31": "New Year's Eve", + "1954-01-01": "New Year's Day", + "1954-01-02": "Saint Berchtold's Day", + "1954-01-06": "Epiphany", + "1954-02-02": "Candlemas", + "1954-03-02": "Shrove Tuesday", + "1954-03-19": "Saint Joseph's Day", + "1954-04-16": "Good Friday", + "1954-04-18": "Easter Sunday", + "1954-04-19": "Easter Monday", + "1954-05-01": "Labor Day", + "1954-05-27": "Ascension Day", + "1954-06-06": "Whit Sunday", + "1954-06-07": "Whit Monday", + "1954-06-17": "Corpus Christi", + "1954-08-15": "National Day", + "1954-09-08": "Nativity of Mary", + "1954-11-01": "All Saints' Day", + "1954-12-08": "Immaculate Conception", + "1954-12-24": "Christmas Eve", + "1954-12-25": "Christmas Day", + "1954-12-26": "St. Stephen's Day", + "1954-12-31": "New Year's Eve", + "1955-01-01": "New Year's Day", + "1955-01-02": "Saint Berchtold's Day", + "1955-01-06": "Epiphany", + "1955-02-02": "Candlemas", + "1955-02-22": "Shrove Tuesday", + "1955-03-19": "Saint Joseph's Day", + "1955-04-08": "Good Friday", + "1955-04-10": "Easter Sunday", + "1955-04-11": "Easter Monday", + "1955-05-01": "Labor Day", + "1955-05-19": "Ascension Day", + "1955-05-29": "Whit Sunday", + "1955-05-30": "Whit Monday", + "1955-06-09": "Corpus Christi", + "1955-08-15": "National Day", + "1955-09-08": "Nativity of Mary", + "1955-11-01": "All Saints' Day", + "1955-12-08": "Immaculate Conception", + "1955-12-24": "Christmas Eve", + "1955-12-25": "Christmas Day", + "1955-12-26": "St. Stephen's Day", + "1955-12-31": "New Year's Eve", + "1956-01-01": "New Year's Day", + "1956-01-02": "Saint Berchtold's Day", + "1956-01-06": "Epiphany", + "1956-02-02": "Candlemas", + "1956-02-14": "Shrove Tuesday", + "1956-03-19": "Saint Joseph's Day", + "1956-03-30": "Good Friday", + "1956-04-01": "Easter Sunday", + "1956-04-02": "Easter Monday", + "1956-05-01": "Labor Day", + "1956-05-10": "Ascension Day", + "1956-05-20": "Whit Sunday", + "1956-05-21": "Whit Monday", + "1956-05-31": "Corpus Christi", + "1956-08-15": "National Day", + "1956-09-08": "Nativity of Mary", + "1956-11-01": "All Saints' Day", + "1956-12-08": "Immaculate Conception", + "1956-12-24": "Christmas Eve", + "1956-12-25": "Christmas Day", + "1956-12-26": "St. Stephen's Day", + "1956-12-31": "New Year's Eve", + "1957-01-01": "New Year's Day", + "1957-01-02": "Saint Berchtold's Day", + "1957-01-06": "Epiphany", + "1957-02-02": "Candlemas", + "1957-03-05": "Shrove Tuesday", + "1957-03-19": "Saint Joseph's Day", + "1957-04-19": "Good Friday", + "1957-04-21": "Easter Sunday", + "1957-04-22": "Easter Monday", + "1957-05-01": "Labor Day", + "1957-05-30": "Ascension Day", + "1957-06-09": "Whit Sunday", + "1957-06-10": "Whit Monday", + "1957-06-20": "Corpus Christi", + "1957-08-15": "National Day", + "1957-09-08": "Nativity of Mary", + "1957-11-01": "All Saints' Day", + "1957-12-08": "Immaculate Conception", + "1957-12-24": "Christmas Eve", + "1957-12-25": "Christmas Day", + "1957-12-26": "St. Stephen's Day", + "1957-12-31": "New Year's Eve", + "1958-01-01": "New Year's Day", + "1958-01-02": "Saint Berchtold's Day", + "1958-01-06": "Epiphany", + "1958-02-02": "Candlemas", + "1958-02-18": "Shrove Tuesday", + "1958-03-19": "Saint Joseph's Day", + "1958-04-04": "Good Friday", + "1958-04-06": "Easter Sunday", + "1958-04-07": "Easter Monday", + "1958-05-01": "Labor Day", + "1958-05-15": "Ascension Day", + "1958-05-25": "Whit Sunday", + "1958-05-26": "Whit Monday", + "1958-06-05": "Corpus Christi", + "1958-08-15": "National Day", + "1958-09-08": "Nativity of Mary", + "1958-11-01": "All Saints' Day", + "1958-12-08": "Immaculate Conception", + "1958-12-24": "Christmas Eve", + "1958-12-25": "Christmas Day", + "1958-12-26": "St. Stephen's Day", + "1958-12-31": "New Year's Eve", + "1959-01-01": "New Year's Day", + "1959-01-02": "Saint Berchtold's Day", + "1959-01-06": "Epiphany", + "1959-02-02": "Candlemas", + "1959-02-10": "Shrove Tuesday", + "1959-03-19": "Saint Joseph's Day", + "1959-03-27": "Good Friday", + "1959-03-29": "Easter Sunday", + "1959-03-30": "Easter Monday", + "1959-05-01": "Labor Day", + "1959-05-07": "Ascension Day", + "1959-05-17": "Whit Sunday", + "1959-05-18": "Whit Monday", + "1959-05-28": "Corpus Christi", + "1959-08-15": "National Day", + "1959-09-08": "Nativity of Mary", + "1959-11-01": "All Saints' Day", + "1959-12-08": "Immaculate Conception", + "1959-12-24": "Christmas Eve", + "1959-12-25": "Christmas Day", + "1959-12-26": "St. Stephen's Day", + "1959-12-31": "New Year's Eve", + "1960-01-01": "New Year's Day", + "1960-01-02": "Saint Berchtold's Day", + "1960-01-06": "Epiphany", + "1960-02-02": "Candlemas", + "1960-03-01": "Shrove Tuesday", + "1960-03-19": "Saint Joseph's Day", + "1960-04-15": "Good Friday", + "1960-04-17": "Easter Sunday", + "1960-04-18": "Easter Monday", + "1960-05-01": "Labor Day", + "1960-05-26": "Ascension Day", + "1960-06-05": "Whit Sunday", + "1960-06-06": "Whit Monday", + "1960-06-16": "Corpus Christi", + "1960-08-15": "National Day", + "1960-09-08": "Nativity of Mary", + "1960-11-01": "All Saints' Day", + "1960-12-08": "Immaculate Conception", + "1960-12-24": "Christmas Eve", + "1960-12-25": "Christmas Day", + "1960-12-26": "St. Stephen's Day", + "1960-12-31": "New Year's Eve", + "1961-01-01": "New Year's Day", + "1961-01-02": "Saint Berchtold's Day", + "1961-01-06": "Epiphany", + "1961-02-02": "Candlemas", + "1961-02-14": "Shrove Tuesday", + "1961-03-19": "Saint Joseph's Day", + "1961-03-31": "Good Friday", + "1961-04-02": "Easter Sunday", + "1961-04-03": "Easter Monday", + "1961-05-01": "Labor Day", + "1961-05-11": "Ascension Day", + "1961-05-21": "Whit Sunday", + "1961-05-22": "Whit Monday", + "1961-06-01": "Corpus Christi", + "1961-08-15": "National Day", + "1961-09-08": "Nativity of Mary", + "1961-11-01": "All Saints' Day", + "1961-12-08": "Immaculate Conception", + "1961-12-24": "Christmas Eve", + "1961-12-25": "Christmas Day", + "1961-12-26": "St. Stephen's Day", + "1961-12-31": "New Year's Eve", + "1962-01-01": "New Year's Day", + "1962-01-02": "Saint Berchtold's Day", + "1962-01-06": "Epiphany", + "1962-02-02": "Candlemas", + "1962-03-06": "Shrove Tuesday", + "1962-03-19": "Saint Joseph's Day", + "1962-04-20": "Good Friday", + "1962-04-22": "Easter Sunday", + "1962-04-23": "Easter Monday", + "1962-05-01": "Labor Day", + "1962-05-31": "Ascension Day", + "1962-06-10": "Whit Sunday", + "1962-06-11": "Whit Monday", + "1962-06-21": "Corpus Christi", + "1962-08-15": "National Day", + "1962-09-08": "Nativity of Mary", + "1962-11-01": "All Saints' Day", + "1962-12-08": "Immaculate Conception", + "1962-12-24": "Christmas Eve", + "1962-12-25": "Christmas Day", + "1962-12-26": "St. Stephen's Day", + "1962-12-31": "New Year's Eve", + "1963-01-01": "New Year's Day", + "1963-01-02": "Saint Berchtold's Day", + "1963-01-06": "Epiphany", + "1963-02-02": "Candlemas", + "1963-02-26": "Shrove Tuesday", + "1963-03-19": "Saint Joseph's Day", + "1963-04-12": "Good Friday", + "1963-04-14": "Easter Sunday", + "1963-04-15": "Easter Monday", + "1963-05-01": "Labor Day", + "1963-05-23": "Ascension Day", + "1963-06-02": "Whit Sunday", + "1963-06-03": "Whit Monday", + "1963-06-13": "Corpus Christi", + "1963-08-15": "National Day", + "1963-09-08": "Nativity of Mary", + "1963-11-01": "All Saints' Day", + "1963-12-08": "Immaculate Conception", + "1963-12-24": "Christmas Eve", + "1963-12-25": "Christmas Day", + "1963-12-26": "St. Stephen's Day", + "1963-12-31": "New Year's Eve", + "1964-01-01": "New Year's Day", + "1964-01-02": "Saint Berchtold's Day", + "1964-01-06": "Epiphany", + "1964-02-02": "Candlemas", + "1964-02-11": "Shrove Tuesday", + "1964-03-19": "Saint Joseph's Day", + "1964-03-27": "Good Friday", + "1964-03-29": "Easter Sunday", + "1964-03-30": "Easter Monday", + "1964-05-01": "Labor Day", + "1964-05-07": "Ascension Day", + "1964-05-17": "Whit Sunday", + "1964-05-18": "Whit Monday", + "1964-05-28": "Corpus Christi", + "1964-08-15": "National Day", + "1964-09-08": "Nativity of Mary", + "1964-11-01": "All Saints' Day", + "1964-12-08": "Immaculate Conception", + "1964-12-24": "Christmas Eve", + "1964-12-25": "Christmas Day", + "1964-12-26": "St. Stephen's Day", + "1964-12-31": "New Year's Eve", + "1965-01-01": "New Year's Day", + "1965-01-02": "Saint Berchtold's Day", + "1965-01-06": "Epiphany", + "1965-02-02": "Candlemas", + "1965-03-02": "Shrove Tuesday", + "1965-03-19": "Saint Joseph's Day", + "1965-04-16": "Good Friday", + "1965-04-18": "Easter Sunday", + "1965-04-19": "Easter Monday", + "1965-05-01": "Labor Day", + "1965-05-27": "Ascension Day", + "1965-06-06": "Whit Sunday", + "1965-06-07": "Whit Monday", + "1965-06-17": "Corpus Christi", + "1965-08-15": "National Day", + "1965-09-08": "Nativity of Mary", + "1965-11-01": "All Saints' Day", + "1965-12-08": "Immaculate Conception", + "1965-12-24": "Christmas Eve", + "1965-12-25": "Christmas Day", + "1965-12-26": "St. Stephen's Day", + "1965-12-31": "New Year's Eve", + "1966-01-01": "New Year's Day", + "1966-01-02": "Saint Berchtold's Day", + "1966-01-06": "Epiphany", + "1966-02-02": "Candlemas", + "1966-02-22": "Shrove Tuesday", + "1966-03-19": "Saint Joseph's Day", + "1966-04-08": "Good Friday", + "1966-04-10": "Easter Sunday", + "1966-04-11": "Easter Monday", + "1966-05-01": "Labor Day", + "1966-05-19": "Ascension Day", + "1966-05-29": "Whit Sunday", + "1966-05-30": "Whit Monday", + "1966-06-09": "Corpus Christi", + "1966-08-15": "National Day", + "1966-09-08": "Nativity of Mary", + "1966-11-01": "All Saints' Day", + "1966-12-08": "Immaculate Conception", + "1966-12-24": "Christmas Eve", + "1966-12-25": "Christmas Day", + "1966-12-26": "St. Stephen's Day", + "1966-12-31": "New Year's Eve", + "1967-01-01": "New Year's Day", + "1967-01-02": "Saint Berchtold's Day", + "1967-01-06": "Epiphany", + "1967-02-02": "Candlemas", + "1967-02-07": "Shrove Tuesday", + "1967-03-19": "Saint Joseph's Day", + "1967-03-24": "Good Friday", + "1967-03-26": "Easter Sunday", + "1967-03-27": "Easter Monday", + "1967-05-01": "Labor Day", + "1967-05-04": "Ascension Day", + "1967-05-14": "Whit Sunday", + "1967-05-15": "Whit Monday", + "1967-05-25": "Corpus Christi", + "1967-08-15": "National Day", + "1967-09-08": "Nativity of Mary", + "1967-11-01": "All Saints' Day", + "1967-12-08": "Immaculate Conception", + "1967-12-24": "Christmas Eve", + "1967-12-25": "Christmas Day", + "1967-12-26": "St. Stephen's Day", + "1967-12-31": "New Year's Eve", + "1968-01-01": "New Year's Day", + "1968-01-02": "Saint Berchtold's Day", + "1968-01-06": "Epiphany", + "1968-02-02": "Candlemas", + "1968-02-27": "Shrove Tuesday", + "1968-03-19": "Saint Joseph's Day", + "1968-04-12": "Good Friday", + "1968-04-14": "Easter Sunday", + "1968-04-15": "Easter Monday", + "1968-05-01": "Labor Day", + "1968-05-23": "Ascension Day", + "1968-06-02": "Whit Sunday", + "1968-06-03": "Whit Monday", + "1968-06-13": "Corpus Christi", + "1968-08-15": "National Day", + "1968-09-08": "Nativity of Mary", + "1968-11-01": "All Saints' Day", + "1968-12-08": "Immaculate Conception", + "1968-12-24": "Christmas Eve", + "1968-12-25": "Christmas Day", + "1968-12-26": "St. Stephen's Day", + "1968-12-31": "New Year's Eve", + "1969-01-01": "New Year's Day", + "1969-01-02": "Saint Berchtold's Day", + "1969-01-06": "Epiphany", + "1969-02-02": "Candlemas", + "1969-02-18": "Shrove Tuesday", + "1969-03-19": "Saint Joseph's Day", + "1969-04-04": "Good Friday", + "1969-04-06": "Easter Sunday", + "1969-04-07": "Easter Monday", + "1969-05-01": "Labor Day", + "1969-05-15": "Ascension Day", + "1969-05-25": "Whit Sunday", + "1969-05-26": "Whit Monday", + "1969-06-05": "Corpus Christi", + "1969-08-15": "National Day", + "1969-09-08": "Nativity of Mary", + "1969-11-01": "All Saints' Day", + "1969-12-08": "Immaculate Conception", + "1969-12-24": "Christmas Eve", + "1969-12-25": "Christmas Day", + "1969-12-26": "St. Stephen's Day", + "1969-12-31": "New Year's Eve", + "1970-01-01": "New Year's Day", + "1970-01-02": "Saint Berchtold's Day", + "1970-01-06": "Epiphany", + "1970-02-02": "Candlemas", + "1970-02-10": "Shrove Tuesday", + "1970-03-19": "Saint Joseph's Day", + "1970-03-27": "Good Friday", + "1970-03-29": "Easter Sunday", + "1970-03-30": "Easter Monday", + "1970-05-01": "Labor Day", + "1970-05-07": "Ascension Day", + "1970-05-17": "Whit Sunday", + "1970-05-18": "Whit Monday", + "1970-05-28": "Corpus Christi", + "1970-08-15": "National Day", + "1970-09-08": "Nativity of Mary", + "1970-11-01": "All Saints' Day", + "1970-12-08": "Immaculate Conception", + "1970-12-24": "Christmas Eve", + "1970-12-25": "Christmas Day", + "1970-12-26": "St. Stephen's Day", + "1970-12-31": "New Year's Eve", + "1971-01-01": "New Year's Day", + "1971-01-02": "Saint Berchtold's Day", + "1971-01-06": "Epiphany", + "1971-02-02": "Candlemas", + "1971-02-23": "Shrove Tuesday", + "1971-03-19": "Saint Joseph's Day", + "1971-04-09": "Good Friday", + "1971-04-11": "Easter Sunday", + "1971-04-12": "Easter Monday", + "1971-05-01": "Labor Day", + "1971-05-20": "Ascension Day", + "1971-05-30": "Whit Sunday", + "1971-05-31": "Whit Monday", + "1971-06-10": "Corpus Christi", + "1971-08-15": "National Day", + "1971-09-08": "Nativity of Mary", + "1971-11-01": "All Saints' Day", + "1971-12-08": "Immaculate Conception", + "1971-12-24": "Christmas Eve", + "1971-12-25": "Christmas Day", + "1971-12-26": "St. Stephen's Day", + "1971-12-31": "New Year's Eve", + "1972-01-01": "New Year's Day", + "1972-01-02": "Saint Berchtold's Day", + "1972-01-06": "Epiphany", + "1972-02-02": "Candlemas", + "1972-02-15": "Shrove Tuesday", + "1972-03-19": "Saint Joseph's Day", + "1972-03-31": "Good Friday", + "1972-04-02": "Easter Sunday", + "1972-04-03": "Easter Monday", + "1972-05-01": "Labor Day", + "1972-05-11": "Ascension Day", + "1972-05-21": "Whit Sunday", + "1972-05-22": "Whit Monday", + "1972-06-01": "Corpus Christi", + "1972-08-15": "National Day", + "1972-09-08": "Nativity of Mary", + "1972-11-01": "All Saints' Day", + "1972-12-08": "Immaculate Conception", + "1972-12-24": "Christmas Eve", + "1972-12-25": "Christmas Day", + "1972-12-26": "St. Stephen's Day", + "1972-12-31": "New Year's Eve", + "1973-01-01": "New Year's Day", + "1973-01-02": "Saint Berchtold's Day", + "1973-01-06": "Epiphany", + "1973-02-02": "Candlemas", + "1973-03-06": "Shrove Tuesday", + "1973-03-19": "Saint Joseph's Day", + "1973-04-20": "Good Friday", + "1973-04-22": "Easter Sunday", + "1973-04-23": "Easter Monday", + "1973-05-01": "Labor Day", + "1973-05-31": "Ascension Day", + "1973-06-10": "Whit Sunday", + "1973-06-11": "Whit Monday", + "1973-06-21": "Corpus Christi", + "1973-08-15": "National Day", + "1973-09-08": "Nativity of Mary", + "1973-11-01": "All Saints' Day", + "1973-12-08": "Immaculate Conception", + "1973-12-24": "Christmas Eve", + "1973-12-25": "Christmas Day", + "1973-12-26": "St. Stephen's Day", + "1973-12-31": "New Year's Eve", + "1974-01-01": "New Year's Day", + "1974-01-02": "Saint Berchtold's Day", + "1974-01-06": "Epiphany", + "1974-02-02": "Candlemas", + "1974-02-26": "Shrove Tuesday", + "1974-03-19": "Saint Joseph's Day", + "1974-04-12": "Good Friday", + "1974-04-14": "Easter Sunday", + "1974-04-15": "Easter Monday", + "1974-05-01": "Labor Day", + "1974-05-23": "Ascension Day", + "1974-06-02": "Whit Sunday", + "1974-06-03": "Whit Monday", + "1974-06-13": "Corpus Christi", + "1974-08-15": "National Day", + "1974-09-08": "Nativity of Mary", + "1974-11-01": "All Saints' Day", + "1974-12-08": "Immaculate Conception", + "1974-12-24": "Christmas Eve", + "1974-12-25": "Christmas Day", + "1974-12-26": "St. Stephen's Day", + "1974-12-31": "New Year's Eve", + "1975-01-01": "New Year's Day", + "1975-01-02": "Saint Berchtold's Day", + "1975-01-06": "Epiphany", + "1975-02-02": "Candlemas", + "1975-02-11": "Shrove Tuesday", + "1975-03-19": "Saint Joseph's Day", + "1975-03-28": "Good Friday", + "1975-03-30": "Easter Sunday", + "1975-03-31": "Easter Monday", + "1975-05-01": "Labor Day", + "1975-05-08": "Ascension Day", + "1975-05-18": "Whit Sunday", + "1975-05-19": "Whit Monday", + "1975-05-29": "Corpus Christi", + "1975-08-15": "National Day", + "1975-09-08": "Nativity of Mary", + "1975-11-01": "All Saints' Day", + "1975-12-08": "Immaculate Conception", + "1975-12-24": "Christmas Eve", + "1975-12-25": "Christmas Day", + "1975-12-26": "St. Stephen's Day", + "1975-12-31": "New Year's Eve", + "1976-01-01": "New Year's Day", + "1976-01-02": "Saint Berchtold's Day", + "1976-01-06": "Epiphany", + "1976-02-02": "Candlemas", + "1976-03-02": "Shrove Tuesday", + "1976-03-19": "Saint Joseph's Day", + "1976-04-16": "Good Friday", + "1976-04-18": "Easter Sunday", + "1976-04-19": "Easter Monday", + "1976-05-01": "Labor Day", + "1976-05-27": "Ascension Day", + "1976-06-06": "Whit Sunday", + "1976-06-07": "Whit Monday", + "1976-06-17": "Corpus Christi", + "1976-08-15": "National Day", + "1976-09-08": "Nativity of Mary", + "1976-11-01": "All Saints' Day", + "1976-12-08": "Immaculate Conception", + "1976-12-24": "Christmas Eve", + "1976-12-25": "Christmas Day", + "1976-12-26": "St. Stephen's Day", + "1976-12-31": "New Year's Eve", + "1977-01-01": "New Year's Day", + "1977-01-02": "Saint Berchtold's Day", + "1977-01-06": "Epiphany", + "1977-02-02": "Candlemas", + "1977-02-22": "Shrove Tuesday", + "1977-03-19": "Saint Joseph's Day", + "1977-04-08": "Good Friday", + "1977-04-10": "Easter Sunday", + "1977-04-11": "Easter Monday", + "1977-05-01": "Labor Day", + "1977-05-19": "Ascension Day", + "1977-05-29": "Whit Sunday", + "1977-05-30": "Whit Monday", + "1977-06-09": "Corpus Christi", + "1977-08-15": "National Day", + "1977-09-08": "Nativity of Mary", + "1977-11-01": "All Saints' Day", + "1977-12-08": "Immaculate Conception", + "1977-12-24": "Christmas Eve", + "1977-12-25": "Christmas Day", + "1977-12-26": "St. Stephen's Day", + "1977-12-31": "New Year's Eve", + "1978-01-01": "New Year's Day", + "1978-01-02": "Saint Berchtold's Day", + "1978-01-06": "Epiphany", + "1978-02-02": "Candlemas", + "1978-02-07": "Shrove Tuesday", + "1978-03-19": "Saint Joseph's Day", + "1978-03-24": "Good Friday", + "1978-03-26": "Easter Sunday", + "1978-03-27": "Easter Monday", + "1978-05-01": "Labor Day", + "1978-05-04": "Ascension Day", + "1978-05-14": "Whit Sunday", + "1978-05-15": "Whit Monday", + "1978-05-25": "Corpus Christi", + "1978-08-15": "National Day", + "1978-09-08": "Nativity of Mary", + "1978-11-01": "All Saints' Day", + "1978-12-08": "Immaculate Conception", + "1978-12-24": "Christmas Eve", + "1978-12-25": "Christmas Day", + "1978-12-26": "St. Stephen's Day", + "1978-12-31": "New Year's Eve", + "1979-01-01": "New Year's Day", + "1979-01-02": "Saint Berchtold's Day", + "1979-01-06": "Epiphany", + "1979-02-02": "Candlemas", + "1979-02-27": "Shrove Tuesday", + "1979-03-19": "Saint Joseph's Day", + "1979-04-13": "Good Friday", + "1979-04-15": "Easter Sunday", + "1979-04-16": "Easter Monday", + "1979-05-01": "Labor Day", + "1979-05-24": "Ascension Day", + "1979-06-03": "Whit Sunday", + "1979-06-04": "Whit Monday", + "1979-06-14": "Corpus Christi", + "1979-08-15": "National Day", + "1979-09-08": "Nativity of Mary", + "1979-11-01": "All Saints' Day", + "1979-12-08": "Immaculate Conception", + "1979-12-24": "Christmas Eve", + "1979-12-25": "Christmas Day", + "1979-12-26": "St. Stephen's Day", + "1979-12-31": "New Year's Eve", + "1980-01-01": "New Year's Day", + "1980-01-02": "Saint Berchtold's Day", + "1980-01-06": "Epiphany", + "1980-02-02": "Candlemas", + "1980-02-19": "Shrove Tuesday", + "1980-03-19": "Saint Joseph's Day", + "1980-04-04": "Good Friday", + "1980-04-06": "Easter Sunday", + "1980-04-07": "Easter Monday", + "1980-05-01": "Labor Day", + "1980-05-15": "Ascension Day", + "1980-05-25": "Whit Sunday", + "1980-05-26": "Whit Monday", + "1980-06-05": "Corpus Christi", + "1980-08-15": "National Day", + "1980-09-08": "Nativity of Mary", + "1980-11-01": "All Saints' Day", + "1980-12-08": "Immaculate Conception", + "1980-12-24": "Christmas Eve", + "1980-12-25": "Christmas Day", + "1980-12-26": "St. Stephen's Day", + "1980-12-31": "New Year's Eve", + "1981-01-01": "New Year's Day", + "1981-01-02": "Saint Berchtold's Day", + "1981-01-06": "Epiphany", + "1981-02-02": "Candlemas", + "1981-03-03": "Shrove Tuesday", + "1981-03-19": "Saint Joseph's Day", + "1981-04-17": "Good Friday", + "1981-04-19": "Easter Sunday", + "1981-04-20": "Easter Monday", + "1981-05-01": "Labor Day", + "1981-05-28": "Ascension Day", + "1981-06-07": "Whit Sunday", + "1981-06-08": "Whit Monday", + "1981-06-18": "Corpus Christi", + "1981-08-15": "National Day", + "1981-09-08": "Nativity of Mary", + "1981-11-01": "All Saints' Day", + "1981-12-08": "Immaculate Conception", + "1981-12-24": "Christmas Eve", + "1981-12-25": "Christmas Day", + "1981-12-26": "St. Stephen's Day", + "1981-12-31": "New Year's Eve", + "1982-01-01": "New Year's Day", + "1982-01-02": "Saint Berchtold's Day", + "1982-01-06": "Epiphany", + "1982-02-02": "Candlemas", + "1982-02-23": "Shrove Tuesday", + "1982-03-19": "Saint Joseph's Day", + "1982-04-09": "Good Friday", + "1982-04-11": "Easter Sunday", + "1982-04-12": "Easter Monday", + "1982-05-01": "Labor Day", + "1982-05-20": "Ascension Day", + "1982-05-30": "Whit Sunday", + "1982-05-31": "Whit Monday", + "1982-06-10": "Corpus Christi", + "1982-08-15": "National Day", + "1982-09-08": "Nativity of Mary", + "1982-11-01": "All Saints' Day", + "1982-12-08": "Immaculate Conception", + "1982-12-24": "Christmas Eve", + "1982-12-25": "Christmas Day", + "1982-12-26": "St. Stephen's Day", + "1982-12-31": "New Year's Eve", + "1983-01-01": "New Year's Day", + "1983-01-02": "Saint Berchtold's Day", + "1983-01-06": "Epiphany", + "1983-02-02": "Candlemas", + "1983-02-15": "Shrove Tuesday", + "1983-03-19": "Saint Joseph's Day", + "1983-04-01": "Good Friday", + "1983-04-03": "Easter Sunday", + "1983-04-04": "Easter Monday", + "1983-05-01": "Labor Day", + "1983-05-12": "Ascension Day", + "1983-05-22": "Whit Sunday", + "1983-05-23": "Whit Monday", + "1983-06-02": "Corpus Christi", + "1983-08-15": "National Day", + "1983-09-08": "Nativity of Mary", + "1983-11-01": "All Saints' Day", + "1983-12-08": "Immaculate Conception", + "1983-12-24": "Christmas Eve", + "1983-12-25": "Christmas Day", + "1983-12-26": "St. Stephen's Day", + "1983-12-31": "New Year's Eve", + "1984-01-01": "New Year's Day", + "1984-01-02": "Saint Berchtold's Day", + "1984-01-06": "Epiphany", + "1984-02-02": "Candlemas", + "1984-03-06": "Shrove Tuesday", + "1984-03-19": "Saint Joseph's Day", + "1984-04-20": "Good Friday", + "1984-04-22": "Easter Sunday", + "1984-04-23": "Easter Monday", + "1984-05-01": "Labor Day", + "1984-05-31": "Ascension Day", + "1984-06-10": "Whit Sunday", + "1984-06-11": "Whit Monday", + "1984-06-21": "Corpus Christi", + "1984-08-15": "National Day", + "1984-09-08": "Nativity of Mary", + "1984-11-01": "All Saints' Day", + "1984-12-08": "Immaculate Conception", + "1984-12-24": "Christmas Eve", + "1984-12-25": "Christmas Day", + "1984-12-26": "St. Stephen's Day", + "1984-12-31": "New Year's Eve", + "1985-01-01": "New Year's Day", + "1985-01-02": "Saint Berchtold's Day", + "1985-01-06": "Epiphany", + "1985-02-02": "Candlemas", + "1985-02-19": "Shrove Tuesday", + "1985-03-19": "Saint Joseph's Day", + "1985-04-05": "Good Friday", + "1985-04-07": "Easter Sunday", + "1985-04-08": "Easter Monday", + "1985-05-01": "Labor Day", + "1985-05-16": "Ascension Day", + "1985-05-26": "Whit Sunday", + "1985-05-27": "Whit Monday", + "1985-06-06": "Corpus Christi", + "1985-08-15": "National Day", + "1985-09-08": "Nativity of Mary", + "1985-11-01": "All Saints' Day", + "1985-12-08": "Immaculate Conception", + "1985-12-24": "Christmas Eve", + "1985-12-25": "Christmas Day", + "1985-12-26": "St. Stephen's Day", + "1985-12-31": "New Year's Eve", + "1986-01-01": "New Year's Day", + "1986-01-02": "Saint Berchtold's Day", + "1986-01-06": "Epiphany", + "1986-02-02": "Candlemas", + "1986-02-11": "Shrove Tuesday", + "1986-03-19": "Saint Joseph's Day", + "1986-03-28": "Good Friday", + "1986-03-30": "Easter Sunday", + "1986-03-31": "Easter Monday", + "1986-05-01": "Labor Day", + "1986-05-08": "Ascension Day", + "1986-05-18": "Whit Sunday", + "1986-05-19": "Whit Monday", + "1986-05-29": "Corpus Christi", + "1986-08-15": "National Day", + "1986-09-08": "Nativity of Mary", + "1986-11-01": "All Saints' Day", + "1986-12-08": "Immaculate Conception", + "1986-12-24": "Christmas Eve", + "1986-12-25": "Christmas Day", + "1986-12-26": "St. Stephen's Day", + "1986-12-31": "New Year's Eve", + "1987-01-01": "New Year's Day", + "1987-01-02": "Saint Berchtold's Day", + "1987-01-06": "Epiphany", + "1987-02-02": "Candlemas", + "1987-03-03": "Shrove Tuesday", + "1987-03-19": "Saint Joseph's Day", + "1987-04-17": "Good Friday", + "1987-04-19": "Easter Sunday", + "1987-04-20": "Easter Monday", + "1987-05-01": "Labor Day", + "1987-05-28": "Ascension Day", + "1987-06-07": "Whit Sunday", + "1987-06-08": "Whit Monday", + "1987-06-18": "Corpus Christi", + "1987-08-15": "National Day", + "1987-09-08": "Nativity of Mary", + "1987-11-01": "All Saints' Day", + "1987-12-08": "Immaculate Conception", + "1987-12-24": "Christmas Eve", + "1987-12-25": "Christmas Day", + "1987-12-26": "St. Stephen's Day", + "1987-12-31": "New Year's Eve", + "1988-01-01": "New Year's Day", + "1988-01-02": "Saint Berchtold's Day", + "1988-01-06": "Epiphany", + "1988-02-02": "Candlemas", + "1988-02-16": "Shrove Tuesday", + "1988-03-19": "Saint Joseph's Day", + "1988-04-01": "Good Friday", + "1988-04-03": "Easter Sunday", + "1988-04-04": "Easter Monday", + "1988-05-01": "Labor Day", + "1988-05-12": "Ascension Day", + "1988-05-22": "Whit Sunday", + "1988-05-23": "Whit Monday", + "1988-06-02": "Corpus Christi", + "1988-08-15": "National Day", + "1988-09-08": "Nativity of Mary", + "1988-11-01": "All Saints' Day", + "1988-12-08": "Immaculate Conception", + "1988-12-24": "Christmas Eve", + "1988-12-25": "Christmas Day", + "1988-12-26": "St. Stephen's Day", + "1988-12-31": "New Year's Eve", + "1989-01-01": "New Year's Day", + "1989-01-02": "Saint Berchtold's Day", + "1989-01-06": "Epiphany", + "1989-02-02": "Candlemas", + "1989-02-07": "Shrove Tuesday", + "1989-03-19": "Saint Joseph's Day", + "1989-03-24": "Good Friday", + "1989-03-26": "Easter Sunday", + "1989-03-27": "Easter Monday", + "1989-05-01": "Labor Day", + "1989-05-04": "Ascension Day", + "1989-05-14": "Whit Sunday", + "1989-05-15": "Whit Monday", + "1989-05-25": "Corpus Christi", + "1989-08-15": "National Day", + "1989-09-08": "Nativity of Mary", + "1989-11-01": "All Saints' Day", + "1989-12-08": "Immaculate Conception", + "1989-12-24": "Christmas Eve", + "1989-12-25": "Christmas Day", + "1989-12-26": "St. Stephen's Day", + "1989-12-31": "New Year's Eve", + "1990-01-01": "New Year's Day", + "1990-01-02": "Saint Berchtold's Day", + "1990-01-06": "Epiphany", + "1990-02-02": "Candlemas", + "1990-02-27": "Shrove Tuesday", + "1990-03-19": "Saint Joseph's Day", + "1990-04-13": "Good Friday", + "1990-04-15": "Easter Sunday", + "1990-04-16": "Easter Monday", + "1990-05-01": "Labor Day", + "1990-05-24": "Ascension Day", + "1990-06-03": "Whit Sunday", + "1990-06-04": "Whit Monday", + "1990-06-14": "Corpus Christi", + "1990-08-15": "National Day", + "1990-09-08": "Nativity of Mary", + "1990-11-01": "All Saints' Day", + "1990-12-08": "Immaculate Conception", + "1990-12-24": "Christmas Eve", + "1990-12-25": "Christmas Day", + "1990-12-26": "St. Stephen's Day", + "1990-12-31": "New Year's Eve", + "1991-01-01": "New Year's Day", + "1991-01-02": "Saint Berchtold's Day", + "1991-01-06": "Epiphany", + "1991-02-02": "Candlemas", + "1991-02-12": "Shrove Tuesday", + "1991-03-19": "Saint Joseph's Day", + "1991-03-29": "Good Friday", + "1991-03-31": "Easter Sunday", + "1991-04-01": "Easter Monday", + "1991-05-01": "Labor Day", + "1991-05-09": "Ascension Day", + "1991-05-19": "Whit Sunday", + "1991-05-20": "Whit Monday", + "1991-05-30": "Corpus Christi", + "1991-08-15": "National Day", + "1991-09-08": "Nativity of Mary", + "1991-11-01": "All Saints' Day", + "1991-12-08": "Immaculate Conception", + "1991-12-24": "Christmas Eve", + "1991-12-25": "Christmas Day", + "1991-12-26": "St. Stephen's Day", + "1991-12-31": "New Year's Eve", + "1992-01-01": "New Year's Day", + "1992-01-02": "Saint Berchtold's Day", + "1992-01-06": "Epiphany", + "1992-02-02": "Candlemas", + "1992-03-03": "Shrove Tuesday", + "1992-03-19": "Saint Joseph's Day", + "1992-04-17": "Good Friday", + "1992-04-19": "Easter Sunday", + "1992-04-20": "Easter Monday", + "1992-05-01": "Labor Day", + "1992-05-28": "Ascension Day", + "1992-06-07": "Whit Sunday", + "1992-06-08": "Whit Monday", + "1992-06-18": "Corpus Christi", + "1992-08-15": "National Day", + "1992-09-08": "Nativity of Mary", + "1992-11-01": "All Saints' Day", + "1992-12-08": "Immaculate Conception", + "1992-12-24": "Christmas Eve", + "1992-12-25": "Christmas Day", + "1992-12-26": "St. Stephen's Day", + "1992-12-31": "New Year's Eve", + "1993-01-01": "New Year's Day", + "1993-01-02": "Saint Berchtold's Day", + "1993-01-06": "Epiphany", + "1993-02-02": "Candlemas", + "1993-02-23": "Shrove Tuesday", + "1993-03-19": "Saint Joseph's Day", + "1993-04-09": "Good Friday", + "1993-04-11": "Easter Sunday", + "1993-04-12": "Easter Monday", + "1993-05-01": "Labor Day", + "1993-05-20": "Ascension Day", + "1993-05-30": "Whit Sunday", + "1993-05-31": "Whit Monday", + "1993-06-10": "Corpus Christi", + "1993-08-15": "National Day", + "1993-09-08": "Nativity of Mary", + "1993-11-01": "All Saints' Day", + "1993-12-08": "Immaculate Conception", + "1993-12-24": "Christmas Eve", + "1993-12-25": "Christmas Day", + "1993-12-26": "St. Stephen's Day", + "1993-12-31": "New Year's Eve", + "1994-01-01": "New Year's Day", + "1994-01-02": "Saint Berchtold's Day", + "1994-01-06": "Epiphany", + "1994-02-02": "Candlemas", + "1994-02-15": "Shrove Tuesday", + "1994-03-19": "Saint Joseph's Day", + "1994-04-01": "Good Friday", + "1994-04-03": "Easter Sunday", + "1994-04-04": "Easter Monday", + "1994-05-01": "Labor Day", + "1994-05-12": "Ascension Day", + "1994-05-22": "Whit Sunday", + "1994-05-23": "Whit Monday", + "1994-06-02": "Corpus Christi", + "1994-08-15": "National Day", + "1994-09-08": "Nativity of Mary", + "1994-11-01": "All Saints' Day", + "1994-12-08": "Immaculate Conception", + "1994-12-24": "Christmas Eve", + "1994-12-25": "Christmas Day", + "1994-12-26": "St. Stephen's Day", + "1994-12-31": "New Year's Eve", + "1995-01-01": "New Year's Day", + "1995-01-02": "Saint Berchtold's Day", + "1995-01-06": "Epiphany", + "1995-02-02": "Candlemas", + "1995-02-28": "Shrove Tuesday", + "1995-03-19": "Saint Joseph's Day", + "1995-04-14": "Good Friday", + "1995-04-16": "Easter Sunday", + "1995-04-17": "Easter Monday", + "1995-05-01": "Labor Day", + "1995-05-25": "Ascension Day", + "1995-06-04": "Whit Sunday", + "1995-06-05": "Whit Monday", + "1995-06-15": "Corpus Christi", + "1995-08-15": "National Day", + "1995-09-08": "Nativity of Mary", + "1995-11-01": "All Saints' Day", + "1995-12-08": "Immaculate Conception", + "1995-12-24": "Christmas Eve", + "1995-12-25": "Christmas Day", + "1995-12-26": "St. Stephen's Day", + "1995-12-31": "New Year's Eve", + "1996-01-01": "New Year's Day", + "1996-01-02": "Saint Berchtold's Day", + "1996-01-06": "Epiphany", + "1996-02-02": "Candlemas", + "1996-02-20": "Shrove Tuesday", + "1996-03-19": "Saint Joseph's Day", + "1996-04-05": "Good Friday", + "1996-04-07": "Easter Sunday", + "1996-04-08": "Easter Monday", + "1996-05-01": "Labor Day", + "1996-05-16": "Ascension Day", + "1996-05-26": "Whit Sunday", + "1996-05-27": "Whit Monday", + "1996-06-06": "Corpus Christi", + "1996-08-15": "National Day", + "1996-09-08": "Nativity of Mary", + "1996-11-01": "All Saints' Day", + "1996-12-08": "Immaculate Conception", + "1996-12-24": "Christmas Eve", + "1996-12-25": "Christmas Day", + "1996-12-26": "St. Stephen's Day", + "1996-12-31": "New Year's Eve", + "1997-01-01": "New Year's Day", + "1997-01-02": "Saint Berchtold's Day", + "1997-01-06": "Epiphany", + "1997-02-02": "Candlemas", + "1997-02-11": "Shrove Tuesday", + "1997-03-19": "Saint Joseph's Day", + "1997-03-28": "Good Friday", + "1997-03-30": "Easter Sunday", + "1997-03-31": "Easter Monday", + "1997-05-01": "Labor Day", + "1997-05-08": "Ascension Day", + "1997-05-18": "Whit Sunday", + "1997-05-19": "Whit Monday", + "1997-05-29": "Corpus Christi", + "1997-08-15": "National Day", + "1997-09-08": "Nativity of Mary", + "1997-11-01": "All Saints' Day", + "1997-12-08": "Immaculate Conception", + "1997-12-24": "Christmas Eve", + "1997-12-25": "Christmas Day", + "1997-12-26": "St. Stephen's Day", + "1997-12-31": "New Year's Eve", + "1998-01-01": "New Year's Day", + "1998-01-02": "Saint Berchtold's Day", + "1998-01-06": "Epiphany", + "1998-02-02": "Candlemas", + "1998-02-24": "Shrove Tuesday", + "1998-03-19": "Saint Joseph's Day", + "1998-04-10": "Good Friday", + "1998-04-12": "Easter Sunday", + "1998-04-13": "Easter Monday", + "1998-05-01": "Labor Day", + "1998-05-21": "Ascension Day", + "1998-05-31": "Whit Sunday", + "1998-06-01": "Whit Monday", + "1998-06-11": "Corpus Christi", + "1998-08-15": "National Day", + "1998-09-08": "Nativity of Mary", + "1998-11-01": "All Saints' Day", + "1998-12-08": "Immaculate Conception", + "1998-12-24": "Christmas Eve", + "1998-12-25": "Christmas Day", + "1998-12-26": "St. Stephen's Day", + "1998-12-31": "New Year's Eve", + "1999-01-01": "New Year's Day", + "1999-01-02": "Saint Berchtold's Day", + "1999-01-06": "Epiphany", + "1999-02-02": "Candlemas", + "1999-02-16": "Shrove Tuesday", + "1999-03-19": "Saint Joseph's Day", + "1999-04-02": "Good Friday", + "1999-04-04": "Easter Sunday", + "1999-04-05": "Easter Monday", + "1999-05-01": "Labor Day", + "1999-05-13": "Ascension Day", + "1999-05-23": "Whit Sunday", + "1999-05-24": "Whit Monday", + "1999-06-03": "Corpus Christi", + "1999-08-15": "National Day", + "1999-09-08": "Nativity of Mary", + "1999-11-01": "All Saints' Day", + "1999-12-08": "Immaculate Conception", + "1999-12-24": "Christmas Eve", + "1999-12-25": "Christmas Day", + "1999-12-26": "St. Stephen's Day", + "1999-12-31": "New Year's Eve", + "2000-01-01": "New Year's Day", + "2000-01-02": "Saint Berchtold's Day", + "2000-01-06": "Epiphany", + "2000-02-02": "Candlemas", + "2000-03-07": "Shrove Tuesday", + "2000-03-19": "Saint Joseph's Day", + "2000-04-21": "Good Friday", + "2000-04-23": "Easter Sunday", + "2000-04-24": "Easter Monday", + "2000-05-01": "Labor Day", + "2000-06-01": "Ascension Day", + "2000-06-11": "Whit Sunday", + "2000-06-12": "Whit Monday", + "2000-06-22": "Corpus Christi", + "2000-08-15": "National Day", + "2000-09-08": "Nativity of Mary", + "2000-11-01": "All Saints' Day", + "2000-12-08": "Immaculate Conception", + "2000-12-24": "Christmas Eve", + "2000-12-25": "Christmas Day", + "2000-12-26": "St. Stephen's Day", + "2000-12-31": "New Year's Eve", + "2001-01-01": "New Year's Day", + "2001-01-02": "Saint Berchtold's Day", + "2001-01-06": "Epiphany", + "2001-02-02": "Candlemas", + "2001-02-27": "Shrove Tuesday", + "2001-03-19": "Saint Joseph's Day", + "2001-04-13": "Good Friday", + "2001-04-15": "Easter Sunday", + "2001-04-16": "Easter Monday", + "2001-05-01": "Labor Day", + "2001-05-24": "Ascension Day", + "2001-06-03": "Whit Sunday", + "2001-06-04": "Whit Monday", + "2001-06-14": "Corpus Christi", + "2001-08-15": "National Day", + "2001-09-08": "Nativity of Mary", + "2001-11-01": "All Saints' Day", + "2001-12-08": "Immaculate Conception", + "2001-12-24": "Christmas Eve", + "2001-12-25": "Christmas Day", + "2001-12-26": "St. Stephen's Day", + "2001-12-31": "New Year's Eve", + "2002-01-01": "New Year's Day", + "2002-01-02": "Saint Berchtold's Day", + "2002-01-06": "Epiphany", + "2002-02-02": "Candlemas", + "2002-02-12": "Shrove Tuesday", + "2002-03-19": "Saint Joseph's Day", + "2002-03-29": "Good Friday", + "2002-03-31": "Easter Sunday", + "2002-04-01": "Easter Monday", + "2002-05-01": "Labor Day", + "2002-05-09": "Ascension Day", + "2002-05-19": "Whit Sunday", + "2002-05-20": "Whit Monday", + "2002-05-30": "Corpus Christi", + "2002-08-15": "National Day", + "2002-09-08": "Nativity of Mary", + "2002-11-01": "All Saints' Day", + "2002-12-08": "Immaculate Conception", + "2002-12-24": "Christmas Eve", + "2002-12-25": "Christmas Day", + "2002-12-26": "St. Stephen's Day", + "2002-12-31": "New Year's Eve", + "2003-01-01": "New Year's Day", + "2003-01-02": "Saint Berchtold's Day", + "2003-01-06": "Epiphany", + "2003-02-02": "Candlemas", + "2003-03-04": "Shrove Tuesday", + "2003-03-19": "Saint Joseph's Day", + "2003-04-18": "Good Friday", + "2003-04-20": "Easter Sunday", + "2003-04-21": "Easter Monday", + "2003-05-01": "Labor Day", + "2003-05-29": "Ascension Day", + "2003-06-08": "Whit Sunday", + "2003-06-09": "Whit Monday", + "2003-06-19": "Corpus Christi", + "2003-08-15": "National Day", + "2003-09-08": "Nativity of Mary", + "2003-11-01": "All Saints' Day", + "2003-12-08": "Immaculate Conception", + "2003-12-24": "Christmas Eve", + "2003-12-25": "Christmas Day", + "2003-12-26": "St. Stephen's Day", + "2003-12-31": "New Year's Eve", + "2004-01-01": "New Year's Day", + "2004-01-02": "Saint Berchtold's Day", + "2004-01-06": "Epiphany", + "2004-02-02": "Candlemas", + "2004-02-24": "Shrove Tuesday", + "2004-03-19": "Saint Joseph's Day", + "2004-04-09": "Good Friday", + "2004-04-11": "Easter Sunday", + "2004-04-12": "Easter Monday", + "2004-05-01": "Labor Day", + "2004-05-20": "Ascension Day", + "2004-05-30": "Whit Sunday", + "2004-05-31": "Whit Monday", + "2004-06-10": "Corpus Christi", + "2004-08-15": "National Day", + "2004-09-08": "Nativity of Mary", + "2004-11-01": "All Saints' Day", + "2004-12-08": "Immaculate Conception", + "2004-12-24": "Christmas Eve", + "2004-12-25": "Christmas Day", + "2004-12-26": "St. Stephen's Day", + "2004-12-31": "New Year's Eve", + "2005-01-01": "New Year's Day", + "2005-01-02": "Saint Berchtold's Day", + "2005-01-06": "Epiphany", + "2005-02-02": "Candlemas", + "2005-02-08": "Shrove Tuesday", + "2005-03-19": "Saint Joseph's Day", + "2005-03-25": "Good Friday", + "2005-03-27": "Easter Sunday", + "2005-03-28": "Easter Monday", + "2005-05-01": "Labor Day", + "2005-05-05": "Ascension Day", + "2005-05-15": "Whit Sunday", + "2005-05-16": "Whit Monday", + "2005-05-26": "Corpus Christi", + "2005-08-15": "National Day", + "2005-09-08": "Nativity of Mary", + "2005-11-01": "All Saints' Day", + "2005-12-08": "Immaculate Conception", + "2005-12-24": "Christmas Eve", + "2005-12-25": "Christmas Day", + "2005-12-26": "St. Stephen's Day", + "2005-12-31": "New Year's Eve", + "2006-01-01": "New Year's Day", + "2006-01-02": "Saint Berchtold's Day", + "2006-01-06": "Epiphany", + "2006-02-02": "Candlemas", + "2006-02-28": "Shrove Tuesday", + "2006-03-19": "Saint Joseph's Day", + "2006-04-14": "Good Friday", + "2006-04-16": "Easter Sunday", + "2006-04-17": "Easter Monday", + "2006-05-01": "Labor Day", + "2006-05-25": "Ascension Day", + "2006-06-04": "Whit Sunday", + "2006-06-05": "Whit Monday", + "2006-06-15": "Corpus Christi", + "2006-08-15": "National Day", + "2006-09-08": "Nativity of Mary", + "2006-11-01": "All Saints' Day", + "2006-12-08": "Immaculate Conception", + "2006-12-24": "Christmas Eve", + "2006-12-25": "Christmas Day", + "2006-12-26": "St. Stephen's Day", + "2006-12-31": "New Year's Eve", + "2007-01-01": "New Year's Day", + "2007-01-02": "Saint Berchtold's Day", + "2007-01-06": "Epiphany", + "2007-02-02": "Candlemas", + "2007-02-20": "Shrove Tuesday", + "2007-03-19": "Saint Joseph's Day", + "2007-04-06": "Good Friday", + "2007-04-08": "Easter Sunday", + "2007-04-09": "Easter Monday", + "2007-05-01": "Labor Day", + "2007-05-17": "Ascension Day", + "2007-05-27": "Whit Sunday", + "2007-05-28": "Whit Monday", + "2007-06-07": "Corpus Christi", + "2007-08-15": "National Day", + "2007-09-08": "Nativity of Mary", + "2007-11-01": "All Saints' Day", + "2007-12-08": "Immaculate Conception", + "2007-12-24": "Christmas Eve", + "2007-12-25": "Christmas Day", + "2007-12-26": "St. Stephen's Day", + "2007-12-31": "New Year's Eve", + "2008-01-01": "New Year's Day", + "2008-01-02": "Saint Berchtold's Day", + "2008-01-06": "Epiphany", + "2008-02-02": "Candlemas", + "2008-02-05": "Shrove Tuesday", + "2008-03-19": "Saint Joseph's Day", + "2008-03-21": "Good Friday", + "2008-03-23": "Easter Sunday", + "2008-03-24": "Easter Monday", + "2008-05-01": "Ascension Day; Labor Day", + "2008-05-11": "Whit Sunday", + "2008-05-12": "Whit Monday", + "2008-05-22": "Corpus Christi", + "2008-08-15": "National Day", + "2008-09-08": "Nativity of Mary", + "2008-11-01": "All Saints' Day", + "2008-12-08": "Immaculate Conception", + "2008-12-24": "Christmas Eve", + "2008-12-25": "Christmas Day", + "2008-12-26": "St. Stephen's Day", + "2008-12-31": "New Year's Eve", + "2009-01-01": "New Year's Day", + "2009-01-02": "Saint Berchtold's Day", + "2009-01-06": "Epiphany", + "2009-02-02": "Candlemas", + "2009-02-24": "Shrove Tuesday", + "2009-03-19": "Saint Joseph's Day", + "2009-04-10": "Good Friday", + "2009-04-12": "Easter Sunday", + "2009-04-13": "Easter Monday", + "2009-05-01": "Labor Day", + "2009-05-21": "Ascension Day", + "2009-05-31": "Whit Sunday", + "2009-06-01": "Whit Monday", + "2009-06-11": "Corpus Christi", + "2009-08-15": "National Day", + "2009-09-08": "Nativity of Mary", + "2009-11-01": "All Saints' Day", + "2009-12-08": "Immaculate Conception", + "2009-12-24": "Christmas Eve", + "2009-12-25": "Christmas Day", + "2009-12-26": "St. Stephen's Day", + "2009-12-31": "New Year's Eve", + "2010-01-01": "New Year's Day", + "2010-01-02": "Saint Berchtold's Day", + "2010-01-06": "Epiphany", + "2010-02-02": "Candlemas", + "2010-02-16": "Shrove Tuesday", + "2010-03-19": "Saint Joseph's Day", + "2010-04-02": "Good Friday", + "2010-04-04": "Easter Sunday", + "2010-04-05": "Easter Monday", + "2010-05-01": "Labor Day", + "2010-05-13": "Ascension Day", + "2010-05-23": "Whit Sunday", + "2010-05-24": "Whit Monday", + "2010-06-03": "Corpus Christi", + "2010-08-15": "National Day", + "2010-09-08": "Nativity of Mary", + "2010-11-01": "All Saints' Day", + "2010-12-08": "Immaculate Conception", + "2010-12-24": "Christmas Eve", + "2010-12-25": "Christmas Day", + "2010-12-26": "St. Stephen's Day", + "2010-12-31": "New Year's Eve", + "2011-01-01": "New Year's Day", + "2011-01-02": "Saint Berchtold's Day", + "2011-01-06": "Epiphany", + "2011-02-02": "Candlemas", + "2011-03-08": "Shrove Tuesday", + "2011-03-19": "Saint Joseph's Day", + "2011-04-22": "Good Friday", + "2011-04-24": "Easter Sunday", + "2011-04-25": "Easter Monday", + "2011-05-01": "Labor Day", + "2011-06-02": "Ascension Day", + "2011-06-12": "Whit Sunday", + "2011-06-13": "Whit Monday", + "2011-06-23": "Corpus Christi", + "2011-08-15": "National Day", + "2011-09-08": "Nativity of Mary", + "2011-11-01": "All Saints' Day", + "2011-12-08": "Immaculate Conception", + "2011-12-24": "Christmas Eve", + "2011-12-25": "Christmas Day", + "2011-12-26": "St. Stephen's Day", + "2011-12-31": "New Year's Eve", + "2012-01-01": "New Year's Day", + "2012-01-02": "Saint Berchtold's Day", + "2012-01-06": "Epiphany", + "2012-02-02": "Candlemas", + "2012-02-21": "Shrove Tuesday", + "2012-03-19": "Saint Joseph's Day", + "2012-04-06": "Good Friday", + "2012-04-08": "Easter Sunday", + "2012-04-09": "Easter Monday", + "2012-05-01": "Labor Day", + "2012-05-17": "Ascension Day", + "2012-05-27": "Whit Sunday", + "2012-05-28": "Whit Monday", + "2012-06-07": "Corpus Christi", + "2012-08-15": "National Day", + "2012-09-08": "Nativity of Mary", + "2012-11-01": "All Saints' Day", + "2012-12-08": "Immaculate Conception", + "2012-12-24": "Christmas Eve", + "2012-12-25": "Christmas Day", + "2012-12-26": "St. Stephen's Day", + "2012-12-31": "New Year's Eve", + "2013-01-01": "New Year's Day", + "2013-01-02": "Saint Berchtold's Day", + "2013-01-06": "Epiphany", + "2013-02-02": "Candlemas", + "2013-02-12": "Shrove Tuesday", + "2013-03-19": "Saint Joseph's Day", + "2013-03-29": "Good Friday", + "2013-03-31": "Easter Sunday", + "2013-04-01": "Easter Monday", + "2013-05-01": "Labor Day", + "2013-05-09": "Ascension Day", + "2013-05-19": "Whit Sunday", + "2013-05-20": "Whit Monday", + "2013-05-30": "Corpus Christi", + "2013-08-15": "National Day", + "2013-09-08": "Nativity of Mary", + "2013-11-01": "All Saints' Day", + "2013-12-08": "Immaculate Conception", + "2013-12-24": "Christmas Eve", + "2013-12-25": "Christmas Day", + "2013-12-26": "St. Stephen's Day", + "2013-12-31": "New Year's Eve", + "2014-01-01": "New Year's Day", + "2014-01-02": "Saint Berchtold's Day", + "2014-01-06": "Epiphany", + "2014-02-02": "Candlemas", + "2014-03-04": "Shrove Tuesday", + "2014-03-19": "Saint Joseph's Day", + "2014-04-18": "Good Friday", + "2014-04-20": "Easter Sunday", + "2014-04-21": "Easter Monday", + "2014-05-01": "Labor Day", + "2014-05-29": "Ascension Day", + "2014-06-08": "Whit Sunday", + "2014-06-09": "Whit Monday", + "2014-06-19": "Corpus Christi", + "2014-08-15": "National Day", + "2014-09-08": "Nativity of Mary", + "2014-11-01": "All Saints' Day", + "2014-12-08": "Immaculate Conception", + "2014-12-24": "Christmas Eve", + "2014-12-25": "Christmas Day", + "2014-12-26": "St. Stephen's Day", + "2014-12-31": "New Year's Eve", + "2015-01-01": "New Year's Day", + "2015-01-02": "Saint Berchtold's Day", + "2015-01-06": "Epiphany", + "2015-02-02": "Candlemas", + "2015-02-17": "Shrove Tuesday", + "2015-03-19": "Saint Joseph's Day", + "2015-04-03": "Good Friday", + "2015-04-05": "Easter Sunday", + "2015-04-06": "Easter Monday", + "2015-05-01": "Labor Day", + "2015-05-14": "Ascension Day", + "2015-05-24": "Whit Sunday", + "2015-05-25": "Whit Monday", + "2015-06-04": "Corpus Christi", + "2015-08-15": "National Day", + "2015-09-08": "Nativity of Mary", + "2015-11-01": "All Saints' Day", + "2015-12-08": "Immaculate Conception", + "2015-12-24": "Christmas Eve", + "2015-12-25": "Christmas Day", + "2015-12-26": "St. Stephen's Day", + "2015-12-31": "New Year's Eve", + "2016-01-01": "New Year's Day", + "2016-01-02": "Saint Berchtold's Day", + "2016-01-06": "Epiphany", + "2016-02-02": "Candlemas", + "2016-02-09": "Shrove Tuesday", + "2016-03-19": "Saint Joseph's Day", + "2016-03-25": "Good Friday", + "2016-03-27": "Easter Sunday", + "2016-03-28": "Easter Monday", + "2016-05-01": "Labor Day", + "2016-05-05": "Ascension Day", + "2016-05-15": "Whit Sunday", + "2016-05-16": "Whit Monday", + "2016-05-26": "Corpus Christi", + "2016-08-15": "National Day", + "2016-09-08": "Nativity of Mary", + "2016-11-01": "All Saints' Day", + "2016-12-08": "Immaculate Conception", + "2016-12-24": "Christmas Eve", + "2016-12-25": "Christmas Day", + "2016-12-26": "St. Stephen's Day", + "2016-12-31": "New Year's Eve", + "2017-01-01": "New Year's Day", + "2017-01-02": "Saint Berchtold's Day", + "2017-01-06": "Epiphany", + "2017-02-02": "Candlemas", + "2017-02-28": "Shrove Tuesday", + "2017-03-19": "Saint Joseph's Day", + "2017-04-14": "Good Friday", + "2017-04-16": "Easter Sunday", + "2017-04-17": "Easter Monday", + "2017-05-01": "Labor Day", + "2017-05-25": "Ascension Day", + "2017-06-04": "Whit Sunday", + "2017-06-05": "Whit Monday", + "2017-06-15": "Corpus Christi", + "2017-08-15": "National Day", + "2017-09-08": "Nativity of Mary", + "2017-11-01": "All Saints' Day", + "2017-12-08": "Immaculate Conception", + "2017-12-24": "Christmas Eve", + "2017-12-25": "Christmas Day", + "2017-12-26": "St. Stephen's Day", + "2017-12-31": "New Year's Eve", + "2018-01-01": "New Year's Day", + "2018-01-02": "Saint Berchtold's Day", + "2018-01-06": "Epiphany", + "2018-02-02": "Candlemas", + "2018-02-13": "Shrove Tuesday", + "2018-03-19": "Saint Joseph's Day", + "2018-03-30": "Good Friday", + "2018-04-01": "Easter Sunday", + "2018-04-02": "Easter Monday", + "2018-05-01": "Labor Day", + "2018-05-10": "Ascension Day", + "2018-05-20": "Whit Sunday", + "2018-05-21": "Whit Monday", + "2018-05-31": "Corpus Christi", + "2018-08-15": "National Day", + "2018-09-08": "Nativity of Mary", + "2018-11-01": "All Saints' Day", + "2018-12-08": "Immaculate Conception", + "2018-12-24": "Christmas Eve", + "2018-12-25": "Christmas Day", + "2018-12-26": "St. Stephen's Day", + "2018-12-31": "New Year's Eve", + "2019-01-01": "New Year's Day", + "2019-01-02": "Saint Berchtold's Day", + "2019-01-06": "Epiphany", + "2019-02-02": "Candlemas", + "2019-03-05": "Shrove Tuesday", + "2019-03-19": "Saint Joseph's Day", + "2019-04-19": "Good Friday", + "2019-04-21": "Easter Sunday", + "2019-04-22": "Easter Monday", + "2019-05-01": "Labor Day", + "2019-05-30": "Ascension Day", + "2019-06-09": "Whit Sunday", + "2019-06-10": "Whit Monday", + "2019-06-20": "Corpus Christi", + "2019-08-15": "National Day", + "2019-09-08": "Nativity of Mary", + "2019-11-01": "All Saints' Day", + "2019-12-08": "Immaculate Conception", + "2019-12-24": "Christmas Eve", + "2019-12-25": "Christmas Day", + "2019-12-26": "St. Stephen's Day", + "2019-12-31": "New Year's Eve", + "2020-01-01": "New Year's Day", + "2020-01-02": "Saint Berchtold's Day", + "2020-01-06": "Epiphany", + "2020-02-02": "Candlemas", + "2020-02-25": "Shrove Tuesday", + "2020-03-19": "Saint Joseph's Day", + "2020-04-10": "Good Friday", + "2020-04-12": "Easter Sunday", + "2020-04-13": "Easter Monday", + "2020-05-01": "Labor Day", + "2020-05-21": "Ascension Day", + "2020-05-31": "Whit Sunday", + "2020-06-01": "Whit Monday", + "2020-06-11": "Corpus Christi", + "2020-08-15": "National Day", + "2020-09-08": "Nativity of Mary", + "2020-11-01": "All Saints' Day", + "2020-12-08": "Immaculate Conception", + "2020-12-24": "Christmas Eve", + "2020-12-25": "Christmas Day", + "2020-12-26": "St. Stephen's Day", + "2020-12-31": "New Year's Eve", + "2021-01-01": "New Year's Day", + "2021-01-02": "Saint Berchtold's Day", + "2021-01-06": "Epiphany", + "2021-02-02": "Candlemas", + "2021-02-16": "Shrove Tuesday", + "2021-03-19": "Saint Joseph's Day", + "2021-04-02": "Good Friday", + "2021-04-04": "Easter Sunday", + "2021-04-05": "Easter Monday", + "2021-05-01": "Labor Day", + "2021-05-13": "Ascension Day", + "2021-05-23": "Whit Sunday", + "2021-05-24": "Whit Monday", + "2021-06-03": "Corpus Christi", + "2021-08-15": "National Day", + "2021-09-08": "Nativity of Mary", + "2021-11-01": "All Saints' Day", + "2021-12-08": "Immaculate Conception", + "2021-12-24": "Christmas Eve", + "2021-12-25": "Christmas Day", + "2021-12-26": "St. Stephen's Day", + "2021-12-31": "New Year's Eve", + "2022-01-01": "New Year's Day", + "2022-01-02": "Saint Berchtold's Day", + "2022-01-06": "Epiphany", + "2022-02-02": "Candlemas", + "2022-03-01": "Shrove Tuesday", + "2022-03-19": "Saint Joseph's Day", + "2022-04-15": "Good Friday", + "2022-04-17": "Easter Sunday", + "2022-04-18": "Easter Monday", + "2022-05-01": "Labor Day", + "2022-05-26": "Ascension Day", + "2022-06-05": "Whit Sunday", + "2022-06-06": "Whit Monday", + "2022-06-16": "Corpus Christi", + "2022-08-15": "National Day", + "2022-09-08": "Nativity of Mary", + "2022-11-01": "All Saints' Day", + "2022-12-08": "Immaculate Conception", + "2022-12-24": "Christmas Eve", + "2022-12-25": "Christmas Day", + "2022-12-26": "St. Stephen's Day", + "2022-12-31": "New Year's Eve", + "2023-01-01": "New Year's Day", + "2023-01-02": "Saint Berchtold's Day", + "2023-01-06": "Epiphany", + "2023-02-02": "Candlemas", + "2023-02-21": "Shrove Tuesday", + "2023-03-19": "Saint Joseph's Day", + "2023-04-07": "Good Friday", + "2023-04-09": "Easter Sunday", + "2023-04-10": "Easter Monday", + "2023-05-01": "Labor Day", + "2023-05-18": "Ascension Day", + "2023-05-28": "Whit Sunday", + "2023-05-29": "Whit Monday", + "2023-06-08": "Corpus Christi", + "2023-08-15": "National Day", + "2023-09-08": "Nativity of Mary", + "2023-11-01": "All Saints' Day", + "2023-12-08": "Immaculate Conception", + "2023-12-24": "Christmas Eve", + "2023-12-25": "Christmas Day", + "2023-12-26": "St. Stephen's Day", + "2023-12-31": "New Year's Eve", + "2024-01-01": "New Year's Day", + "2024-01-02": "Saint Berchtold's Day", + "2024-01-06": "Epiphany", + "2024-02-02": "Candlemas", + "2024-02-13": "Shrove Tuesday", + "2024-03-19": "Saint Joseph's Day", + "2024-03-29": "Good Friday", + "2024-03-31": "Easter Sunday", + "2024-04-01": "Easter Monday", + "2024-05-01": "Labor Day", + "2024-05-09": "Ascension Day", + "2024-05-19": "Whit Sunday", + "2024-05-20": "Whit Monday", + "2024-05-30": "Corpus Christi", + "2024-08-15": "National Day", + "2024-09-08": "Nativity of Mary", + "2024-11-01": "All Saints' Day", + "2024-12-08": "Immaculate Conception", + "2024-12-24": "Christmas Eve", + "2024-12-25": "Christmas Day", + "2024-12-26": "St. Stephen's Day", + "2024-12-31": "New Year's Eve", + "2025-01-01": "New Year's Day", + "2025-01-02": "Saint Berchtold's Day", + "2025-01-06": "Epiphany", + "2025-02-02": "Candlemas", + "2025-03-04": "Shrove Tuesday", + "2025-03-19": "Saint Joseph's Day", + "2025-04-18": "Good Friday", + "2025-04-20": "Easter Sunday", + "2025-04-21": "Easter Monday", + "2025-05-01": "Labor Day", + "2025-05-29": "Ascension Day", + "2025-06-08": "Whit Sunday", + "2025-06-09": "Whit Monday", + "2025-06-19": "Corpus Christi", + "2025-08-15": "National Day", + "2025-09-08": "Nativity of Mary", + "2025-11-01": "All Saints' Day", + "2025-12-08": "Immaculate Conception", + "2025-12-24": "Christmas Eve", + "2025-12-25": "Christmas Day", + "2025-12-26": "St. Stephen's Day", + "2025-12-31": "New Year's Eve", + "2026-01-01": "New Year's Day", + "2026-01-02": "Saint Berchtold's Day", + "2026-01-06": "Epiphany", + "2026-02-02": "Candlemas", + "2026-02-17": "Shrove Tuesday", + "2026-03-19": "Saint Joseph's Day", + "2026-04-03": "Good Friday", + "2026-04-05": "Easter Sunday", + "2026-04-06": "Easter Monday", + "2026-05-01": "Labor Day", + "2026-05-14": "Ascension Day", + "2026-05-24": "Whit Sunday", + "2026-05-25": "Whit Monday", + "2026-06-04": "Corpus Christi", + "2026-08-15": "National Day", + "2026-09-08": "Nativity of Mary", + "2026-11-01": "All Saints' Day", + "2026-12-08": "Immaculate Conception", + "2026-12-24": "Christmas Eve", + "2026-12-25": "Christmas Day", + "2026-12-26": "St. Stephen's Day", + "2026-12-31": "New Year's Eve", + "2027-01-01": "New Year's Day", + "2027-01-02": "Saint Berchtold's Day", + "2027-01-06": "Epiphany", + "2027-02-02": "Candlemas", + "2027-02-09": "Shrove Tuesday", + "2027-03-19": "Saint Joseph's Day", + "2027-03-26": "Good Friday", + "2027-03-28": "Easter Sunday", + "2027-03-29": "Easter Monday", + "2027-05-01": "Labor Day", + "2027-05-06": "Ascension Day", + "2027-05-16": "Whit Sunday", + "2027-05-17": "Whit Monday", + "2027-05-27": "Corpus Christi", + "2027-08-15": "National Day", + "2027-09-08": "Nativity of Mary", + "2027-11-01": "All Saints' Day", + "2027-12-08": "Immaculate Conception", + "2027-12-24": "Christmas Eve", + "2027-12-25": "Christmas Day", + "2027-12-26": "St. Stephen's Day", + "2027-12-31": "New Year's Eve", + "2028-01-01": "New Year's Day", + "2028-01-02": "Saint Berchtold's Day", + "2028-01-06": "Epiphany", + "2028-02-02": "Candlemas", + "2028-02-29": "Shrove Tuesday", + "2028-03-19": "Saint Joseph's Day", + "2028-04-14": "Good Friday", + "2028-04-16": "Easter Sunday", + "2028-04-17": "Easter Monday", + "2028-05-01": "Labor Day", + "2028-05-25": "Ascension Day", + "2028-06-04": "Whit Sunday", + "2028-06-05": "Whit Monday", + "2028-06-15": "Corpus Christi", + "2028-08-15": "National Day", + "2028-09-08": "Nativity of Mary", + "2028-11-01": "All Saints' Day", + "2028-12-08": "Immaculate Conception", + "2028-12-24": "Christmas Eve", + "2028-12-25": "Christmas Day", + "2028-12-26": "St. Stephen's Day", + "2028-12-31": "New Year's Eve", + "2029-01-01": "New Year's Day", + "2029-01-02": "Saint Berchtold's Day", + "2029-01-06": "Epiphany", + "2029-02-02": "Candlemas", + "2029-02-13": "Shrove Tuesday", + "2029-03-19": "Saint Joseph's Day", + "2029-03-30": "Good Friday", + "2029-04-01": "Easter Sunday", + "2029-04-02": "Easter Monday", + "2029-05-01": "Labor Day", + "2029-05-10": "Ascension Day", + "2029-05-20": "Whit Sunday", + "2029-05-21": "Whit Monday", + "2029-05-31": "Corpus Christi", + "2029-08-15": "National Day", + "2029-09-08": "Nativity of Mary", + "2029-11-01": "All Saints' Day", + "2029-12-08": "Immaculate Conception", + "2029-12-24": "Christmas Eve", + "2029-12-25": "Christmas Day", + "2029-12-26": "St. Stephen's Day", + "2029-12-31": "New Year's Eve", + "2030-01-01": "New Year's Day", + "2030-01-02": "Saint Berchtold's Day", + "2030-01-06": "Epiphany", + "2030-02-02": "Candlemas", + "2030-03-05": "Shrove Tuesday", + "2030-03-19": "Saint Joseph's Day", + "2030-04-19": "Good Friday", + "2030-04-21": "Easter Sunday", + "2030-04-22": "Easter Monday", + "2030-05-01": "Labor Day", + "2030-05-30": "Ascension Day", + "2030-06-09": "Whit Sunday", + "2030-06-10": "Whit Monday", + "2030-06-20": "Corpus Christi", + "2030-08-15": "National Day", + "2030-09-08": "Nativity of Mary", + "2030-11-01": "All Saints' Day", + "2030-12-08": "Immaculate Conception", + "2030-12-24": "Christmas Eve", + "2030-12-25": "Christmas Day", + "2030-12-26": "St. Stephen's Day", + "2030-12-31": "New Year's Eve", + "2031-01-01": "New Year's Day", + "2031-01-02": "Saint Berchtold's Day", + "2031-01-06": "Epiphany", + "2031-02-02": "Candlemas", + "2031-02-25": "Shrove Tuesday", + "2031-03-19": "Saint Joseph's Day", + "2031-04-11": "Good Friday", + "2031-04-13": "Easter Sunday", + "2031-04-14": "Easter Monday", + "2031-05-01": "Labor Day", + "2031-05-22": "Ascension Day", + "2031-06-01": "Whit Sunday", + "2031-06-02": "Whit Monday", + "2031-06-12": "Corpus Christi", + "2031-08-15": "National Day", + "2031-09-08": "Nativity of Mary", + "2031-11-01": "All Saints' Day", + "2031-12-08": "Immaculate Conception", + "2031-12-24": "Christmas Eve", + "2031-12-25": "Christmas Day", + "2031-12-26": "St. Stephen's Day", + "2031-12-31": "New Year's Eve", + "2032-01-01": "New Year's Day", + "2032-01-02": "Saint Berchtold's Day", + "2032-01-06": "Epiphany", + "2032-02-02": "Candlemas", + "2032-02-10": "Shrove Tuesday", + "2032-03-19": "Saint Joseph's Day", + "2032-03-26": "Good Friday", + "2032-03-28": "Easter Sunday", + "2032-03-29": "Easter Monday", + "2032-05-01": "Labor Day", + "2032-05-06": "Ascension Day", + "2032-05-16": "Whit Sunday", + "2032-05-17": "Whit Monday", + "2032-05-27": "Corpus Christi", + "2032-08-15": "National Day", + "2032-09-08": "Nativity of Mary", + "2032-11-01": "All Saints' Day", + "2032-12-08": "Immaculate Conception", + "2032-12-24": "Christmas Eve", + "2032-12-25": "Christmas Day", + "2032-12-26": "St. Stephen's Day", + "2032-12-31": "New Year's Eve", + "2033-01-01": "New Year's Day", + "2033-01-02": "Saint Berchtold's Day", + "2033-01-06": "Epiphany", + "2033-02-02": "Candlemas", + "2033-03-01": "Shrove Tuesday", + "2033-03-19": "Saint Joseph's Day", + "2033-04-15": "Good Friday", + "2033-04-17": "Easter Sunday", + "2033-04-18": "Easter Monday", + "2033-05-01": "Labor Day", + "2033-05-26": "Ascension Day", + "2033-06-05": "Whit Sunday", + "2033-06-06": "Whit Monday", + "2033-06-16": "Corpus Christi", + "2033-08-15": "National Day", + "2033-09-08": "Nativity of Mary", + "2033-11-01": "All Saints' Day", + "2033-12-08": "Immaculate Conception", + "2033-12-24": "Christmas Eve", + "2033-12-25": "Christmas Day", + "2033-12-26": "St. Stephen's Day", + "2033-12-31": "New Year's Eve", + "2034-01-01": "New Year's Day", + "2034-01-02": "Saint Berchtold's Day", + "2034-01-06": "Epiphany", + "2034-02-02": "Candlemas", + "2034-02-21": "Shrove Tuesday", + "2034-03-19": "Saint Joseph's Day", + "2034-04-07": "Good Friday", + "2034-04-09": "Easter Sunday", + "2034-04-10": "Easter Monday", + "2034-05-01": "Labor Day", + "2034-05-18": "Ascension Day", + "2034-05-28": "Whit Sunday", + "2034-05-29": "Whit Monday", + "2034-06-08": "Corpus Christi", + "2034-08-15": "National Day", + "2034-09-08": "Nativity of Mary", + "2034-11-01": "All Saints' Day", + "2034-12-08": "Immaculate Conception", + "2034-12-24": "Christmas Eve", + "2034-12-25": "Christmas Day", + "2034-12-26": "St. Stephen's Day", + "2034-12-31": "New Year's Eve", + "2035-01-01": "New Year's Day", + "2035-01-02": "Saint Berchtold's Day", + "2035-01-06": "Epiphany", + "2035-02-02": "Candlemas", + "2035-02-06": "Shrove Tuesday", + "2035-03-19": "Saint Joseph's Day", + "2035-03-23": "Good Friday", + "2035-03-25": "Easter Sunday", + "2035-03-26": "Easter Monday", + "2035-05-01": "Labor Day", + "2035-05-03": "Ascension Day", + "2035-05-13": "Whit Sunday", + "2035-05-14": "Whit Monday", + "2035-05-24": "Corpus Christi", + "2035-08-15": "National Day", + "2035-09-08": "Nativity of Mary", + "2035-11-01": "All Saints' Day", + "2035-12-08": "Immaculate Conception", + "2035-12-24": "Christmas Eve", + "2035-12-25": "Christmas Day", + "2035-12-26": "St. Stephen's Day", + "2035-12-31": "New Year's Eve", + "2036-01-01": "New Year's Day", + "2036-01-02": "Saint Berchtold's Day", + "2036-01-06": "Epiphany", + "2036-02-02": "Candlemas", + "2036-02-26": "Shrove Tuesday", + "2036-03-19": "Saint Joseph's Day", + "2036-04-11": "Good Friday", + "2036-04-13": "Easter Sunday", + "2036-04-14": "Easter Monday", + "2036-05-01": "Labor Day", + "2036-05-22": "Ascension Day", + "2036-06-01": "Whit Sunday", + "2036-06-02": "Whit Monday", + "2036-06-12": "Corpus Christi", + "2036-08-15": "National Day", + "2036-09-08": "Nativity of Mary", + "2036-11-01": "All Saints' Day", + "2036-12-08": "Immaculate Conception", + "2036-12-24": "Christmas Eve", + "2036-12-25": "Christmas Day", + "2036-12-26": "St. Stephen's Day", + "2036-12-31": "New Year's Eve", + "2037-01-01": "New Year's Day", + "2037-01-02": "Saint Berchtold's Day", + "2037-01-06": "Epiphany", + "2037-02-02": "Candlemas", + "2037-02-17": "Shrove Tuesday", + "2037-03-19": "Saint Joseph's Day", + "2037-04-03": "Good Friday", + "2037-04-05": "Easter Sunday", + "2037-04-06": "Easter Monday", + "2037-05-01": "Labor Day", + "2037-05-14": "Ascension Day", + "2037-05-24": "Whit Sunday", + "2037-05-25": "Whit Monday", + "2037-06-04": "Corpus Christi", + "2037-08-15": "National Day", + "2037-09-08": "Nativity of Mary", + "2037-11-01": "All Saints' Day", + "2037-12-08": "Immaculate Conception", + "2037-12-24": "Christmas Eve", + "2037-12-25": "Christmas Day", + "2037-12-26": "St. Stephen's Day", + "2037-12-31": "New Year's Eve", + "2038-01-01": "New Year's Day", + "2038-01-02": "Saint Berchtold's Day", + "2038-01-06": "Epiphany", + "2038-02-02": "Candlemas", + "2038-03-09": "Shrove Tuesday", + "2038-03-19": "Saint Joseph's Day", + "2038-04-23": "Good Friday", + "2038-04-25": "Easter Sunday", + "2038-04-26": "Easter Monday", + "2038-05-01": "Labor Day", + "2038-06-03": "Ascension Day", + "2038-06-13": "Whit Sunday", + "2038-06-14": "Whit Monday", + "2038-06-24": "Corpus Christi", + "2038-08-15": "National Day", + "2038-09-08": "Nativity of Mary", + "2038-11-01": "All Saints' Day", + "2038-12-08": "Immaculate Conception", + "2038-12-24": "Christmas Eve", + "2038-12-25": "Christmas Day", + "2038-12-26": "St. Stephen's Day", + "2038-12-31": "New Year's Eve", + "2039-01-01": "New Year's Day", + "2039-01-02": "Saint Berchtold's Day", + "2039-01-06": "Epiphany", + "2039-02-02": "Candlemas", + "2039-02-22": "Shrove Tuesday", + "2039-03-19": "Saint Joseph's Day", + "2039-04-08": "Good Friday", + "2039-04-10": "Easter Sunday", + "2039-04-11": "Easter Monday", + "2039-05-01": "Labor Day", + "2039-05-19": "Ascension Day", + "2039-05-29": "Whit Sunday", + "2039-05-30": "Whit Monday", + "2039-06-09": "Corpus Christi", + "2039-08-15": "National Day", + "2039-09-08": "Nativity of Mary", + "2039-11-01": "All Saints' Day", + "2039-12-08": "Immaculate Conception", + "2039-12-24": "Christmas Eve", + "2039-12-25": "Christmas Day", + "2039-12-26": "St. Stephen's Day", + "2039-12-31": "New Year's Eve", + "2040-01-01": "New Year's Day", + "2040-01-02": "Saint Berchtold's Day", + "2040-01-06": "Epiphany", + "2040-02-02": "Candlemas", + "2040-02-14": "Shrove Tuesday", + "2040-03-19": "Saint Joseph's Day", + "2040-03-30": "Good Friday", + "2040-04-01": "Easter Sunday", + "2040-04-02": "Easter Monday", + "2040-05-01": "Labor Day", + "2040-05-10": "Ascension Day", + "2040-05-20": "Whit Sunday", + "2040-05-21": "Whit Monday", + "2040-05-31": "Corpus Christi", + "2040-08-15": "National Day", + "2040-09-08": "Nativity of Mary", + "2040-11-01": "All Saints' Day", + "2040-12-08": "Immaculate Conception", + "2040-12-24": "Christmas Eve", + "2040-12-25": "Christmas Day", + "2040-12-26": "St. Stephen's Day", + "2040-12-31": "New Year's Eve", + "2041-01-01": "New Year's Day", + "2041-01-02": "Saint Berchtold's Day", + "2041-01-06": "Epiphany", + "2041-02-02": "Candlemas", + "2041-03-05": "Shrove Tuesday", + "2041-03-19": "Saint Joseph's Day", + "2041-04-19": "Good Friday", + "2041-04-21": "Easter Sunday", + "2041-04-22": "Easter Monday", + "2041-05-01": "Labor Day", + "2041-05-30": "Ascension Day", + "2041-06-09": "Whit Sunday", + "2041-06-10": "Whit Monday", + "2041-06-20": "Corpus Christi", + "2041-08-15": "National Day", + "2041-09-08": "Nativity of Mary", + "2041-11-01": "All Saints' Day", + "2041-12-08": "Immaculate Conception", + "2041-12-24": "Christmas Eve", + "2041-12-25": "Christmas Day", + "2041-12-26": "St. Stephen's Day", + "2041-12-31": "New Year's Eve", + "2042-01-01": "New Year's Day", + "2042-01-02": "Saint Berchtold's Day", + "2042-01-06": "Epiphany", + "2042-02-02": "Candlemas", + "2042-02-18": "Shrove Tuesday", + "2042-03-19": "Saint Joseph's Day", + "2042-04-04": "Good Friday", + "2042-04-06": "Easter Sunday", + "2042-04-07": "Easter Monday", + "2042-05-01": "Labor Day", + "2042-05-15": "Ascension Day", + "2042-05-25": "Whit Sunday", + "2042-05-26": "Whit Monday", + "2042-06-05": "Corpus Christi", + "2042-08-15": "National Day", + "2042-09-08": "Nativity of Mary", + "2042-11-01": "All Saints' Day", + "2042-12-08": "Immaculate Conception", + "2042-12-24": "Christmas Eve", + "2042-12-25": "Christmas Day", + "2042-12-26": "St. Stephen's Day", + "2042-12-31": "New Year's Eve", + "2043-01-01": "New Year's Day", + "2043-01-02": "Saint Berchtold's Day", + "2043-01-06": "Epiphany", + "2043-02-02": "Candlemas", + "2043-02-10": "Shrove Tuesday", + "2043-03-19": "Saint Joseph's Day", + "2043-03-27": "Good Friday", + "2043-03-29": "Easter Sunday", + "2043-03-30": "Easter Monday", + "2043-05-01": "Labor Day", + "2043-05-07": "Ascension Day", + "2043-05-17": "Whit Sunday", + "2043-05-18": "Whit Monday", + "2043-05-28": "Corpus Christi", + "2043-08-15": "National Day", + "2043-09-08": "Nativity of Mary", + "2043-11-01": "All Saints' Day", + "2043-12-08": "Immaculate Conception", + "2043-12-24": "Christmas Eve", + "2043-12-25": "Christmas Day", + "2043-12-26": "St. Stephen's Day", + "2043-12-31": "New Year's Eve", + "2044-01-01": "New Year's Day", + "2044-01-02": "Saint Berchtold's Day", + "2044-01-06": "Epiphany", + "2044-02-02": "Candlemas", + "2044-03-01": "Shrove Tuesday", + "2044-03-19": "Saint Joseph's Day", + "2044-04-15": "Good Friday", + "2044-04-17": "Easter Sunday", + "2044-04-18": "Easter Monday", + "2044-05-01": "Labor Day", + "2044-05-26": "Ascension Day", + "2044-06-05": "Whit Sunday", + "2044-06-06": "Whit Monday", + "2044-06-16": "Corpus Christi", + "2044-08-15": "National Day", + "2044-09-08": "Nativity of Mary", + "2044-11-01": "All Saints' Day", + "2044-12-08": "Immaculate Conception", + "2044-12-24": "Christmas Eve", + "2044-12-25": "Christmas Day", + "2044-12-26": "St. Stephen's Day", + "2044-12-31": "New Year's Eve", + "2045-01-01": "New Year's Day", + "2045-01-02": "Saint Berchtold's Day", + "2045-01-06": "Epiphany", + "2045-02-02": "Candlemas", + "2045-02-21": "Shrove Tuesday", + "2045-03-19": "Saint Joseph's Day", + "2045-04-07": "Good Friday", + "2045-04-09": "Easter Sunday", + "2045-04-10": "Easter Monday", + "2045-05-01": "Labor Day", + "2045-05-18": "Ascension Day", + "2045-05-28": "Whit Sunday", + "2045-05-29": "Whit Monday", + "2045-06-08": "Corpus Christi", + "2045-08-15": "National Day", + "2045-09-08": "Nativity of Mary", + "2045-11-01": "All Saints' Day", + "2045-12-08": "Immaculate Conception", + "2045-12-24": "Christmas Eve", + "2045-12-25": "Christmas Day", + "2045-12-26": "St. Stephen's Day", + "2045-12-31": "New Year's Eve", + "2046-01-01": "New Year's Day", + "2046-01-02": "Saint Berchtold's Day", + "2046-01-06": "Epiphany", + "2046-02-02": "Candlemas", + "2046-02-06": "Shrove Tuesday", + "2046-03-19": "Saint Joseph's Day", + "2046-03-23": "Good Friday", + "2046-03-25": "Easter Sunday", + "2046-03-26": "Easter Monday", + "2046-05-01": "Labor Day", + "2046-05-03": "Ascension Day", + "2046-05-13": "Whit Sunday", + "2046-05-14": "Whit Monday", + "2046-05-24": "Corpus Christi", + "2046-08-15": "National Day", + "2046-09-08": "Nativity of Mary", + "2046-11-01": "All Saints' Day", + "2046-12-08": "Immaculate Conception", + "2046-12-24": "Christmas Eve", + "2046-12-25": "Christmas Day", + "2046-12-26": "St. Stephen's Day", + "2046-12-31": "New Year's Eve", + "2047-01-01": "New Year's Day", + "2047-01-02": "Saint Berchtold's Day", + "2047-01-06": "Epiphany", + "2047-02-02": "Candlemas", + "2047-02-26": "Shrove Tuesday", + "2047-03-19": "Saint Joseph's Day", + "2047-04-12": "Good Friday", + "2047-04-14": "Easter Sunday", + "2047-04-15": "Easter Monday", + "2047-05-01": "Labor Day", + "2047-05-23": "Ascension Day", + "2047-06-02": "Whit Sunday", + "2047-06-03": "Whit Monday", + "2047-06-13": "Corpus Christi", + "2047-08-15": "National Day", + "2047-09-08": "Nativity of Mary", + "2047-11-01": "All Saints' Day", + "2047-12-08": "Immaculate Conception", + "2047-12-24": "Christmas Eve", + "2047-12-25": "Christmas Day", + "2047-12-26": "St. Stephen's Day", + "2047-12-31": "New Year's Eve", + "2048-01-01": "New Year's Day", + "2048-01-02": "Saint Berchtold's Day", + "2048-01-06": "Epiphany", + "2048-02-02": "Candlemas", + "2048-02-18": "Shrove Tuesday", + "2048-03-19": "Saint Joseph's Day", + "2048-04-03": "Good Friday", + "2048-04-05": "Easter Sunday", + "2048-04-06": "Easter Monday", + "2048-05-01": "Labor Day", + "2048-05-14": "Ascension Day", + "2048-05-24": "Whit Sunday", + "2048-05-25": "Whit Monday", + "2048-06-04": "Corpus Christi", + "2048-08-15": "National Day", + "2048-09-08": "Nativity of Mary", + "2048-11-01": "All Saints' Day", + "2048-12-08": "Immaculate Conception", + "2048-12-24": "Christmas Eve", + "2048-12-25": "Christmas Day", + "2048-12-26": "St. Stephen's Day", + "2048-12-31": "New Year's Eve", + "2049-01-01": "New Year's Day", + "2049-01-02": "Saint Berchtold's Day", + "2049-01-06": "Epiphany", + "2049-02-02": "Candlemas", + "2049-03-02": "Shrove Tuesday", + "2049-03-19": "Saint Joseph's Day", + "2049-04-16": "Good Friday", + "2049-04-18": "Easter Sunday", + "2049-04-19": "Easter Monday", + "2049-05-01": "Labor Day", + "2049-05-27": "Ascension Day", + "2049-06-06": "Whit Sunday", + "2049-06-07": "Whit Monday", + "2049-06-17": "Corpus Christi", + "2049-08-15": "National Day", + "2049-09-08": "Nativity of Mary", + "2049-11-01": "All Saints' Day", + "2049-12-08": "Immaculate Conception", + "2049-12-24": "Christmas Eve", + "2049-12-25": "Christmas Day", + "2049-12-26": "St. Stephen's Day", + "2049-12-31": "New Year's Eve", + "2050-01-01": "New Year's Day", + "2050-01-02": "Saint Berchtold's Day", + "2050-01-06": "Epiphany", + "2050-02-02": "Candlemas", + "2050-02-22": "Shrove Tuesday", + "2050-03-19": "Saint Joseph's Day", + "2050-04-08": "Good Friday", + "2050-04-10": "Easter Sunday", + "2050-04-11": "Easter Monday", + "2050-05-01": "Labor Day", + "2050-05-19": "Ascension Day", + "2050-05-29": "Whit Sunday", + "2050-05-30": "Whit Monday", + "2050-06-09": "Corpus Christi", + "2050-08-15": "National Day", + "2050-09-08": "Nativity of Mary", + "2050-11-01": "All Saints' Day", + "2050-12-08": "Immaculate Conception", + "2050-12-24": "Christmas Eve", + "2050-12-25": "Christmas Day", + "2050-12-26": "St. Stephen's Day", + "2050-12-31": "New Year's Eve" +} diff --git a/snapshots/countries/LS.json b/snapshots/countries/LS.json new file mode 100644 index 000000000..85650746e --- /dev/null +++ b/snapshots/countries/LS.json @@ -0,0 +1,604 @@ +{ + "1996-01-01": "New Year's Day", + "1996-03-11": "Moshoeshoe's Day", + "1996-04-04": "Heroes Day", + "1996-04-05": "Good Friday", + "1996-04-08": "Easter Monday", + "1996-05-01": "Workers' Day", + "1996-05-02": "King's Birthday", + "1996-05-16": "Ascension Day", + "1996-10-04": "Independence Day", + "1996-12-25": "Christmas Day", + "1996-12-26": "Boxing Day", + "1997-01-01": "New Year's Day", + "1997-03-11": "Moshoeshoe's Day", + "1997-03-28": "Good Friday", + "1997-03-31": "Easter Monday", + "1997-04-04": "Heroes Day", + "1997-05-01": "Workers' Day", + "1997-05-02": "King's Birthday", + "1997-05-08": "Ascension Day", + "1997-10-04": "Independence Day", + "1997-12-25": "Christmas Day", + "1997-12-26": "Boxing Day", + "1998-01-01": "New Year's Day", + "1998-03-11": "Moshoeshoe's Day", + "1998-04-04": "Heroes Day", + "1998-04-10": "Good Friday", + "1998-04-13": "Easter Monday", + "1998-05-01": "Workers' Day", + "1998-05-21": "Ascension Day", + "1998-07-17": "King's Birthday", + "1998-10-04": "Independence Day", + "1998-12-25": "Christmas Day", + "1998-12-26": "Boxing Day", + "1999-01-01": "New Year's Day", + "1999-03-11": "Moshoeshoe's Day", + "1999-04-02": "Good Friday", + "1999-04-04": "Heroes Day", + "1999-04-05": "Easter Monday", + "1999-05-01": "Workers' Day", + "1999-05-13": "Ascension Day", + "1999-07-17": "King's Birthday", + "1999-10-04": "Independence Day", + "1999-12-25": "Christmas Day", + "1999-12-26": "Boxing Day", + "2000-01-01": "New Year's Day", + "2000-03-11": "Moshoeshoe's Day", + "2000-04-04": "Heroes Day", + "2000-04-21": "Good Friday", + "2000-04-24": "Easter Monday", + "2000-05-01": "Workers' Day", + "2000-06-01": "Ascension Day", + "2000-07-17": "King's Birthday", + "2000-10-04": "Independence Day", + "2000-12-25": "Christmas Day", + "2000-12-26": "Boxing Day", + "2001-01-01": "New Year's Day", + "2001-03-11": "Moshoeshoe's Day", + "2001-04-04": "Heroes Day", + "2001-04-13": "Good Friday", + "2001-04-16": "Easter Monday", + "2001-05-01": "Workers' Day", + "2001-05-24": "Ascension Day", + "2001-07-17": "King's Birthday", + "2001-10-04": "Independence Day", + "2001-12-25": "Christmas Day", + "2001-12-26": "Boxing Day", + "2002-01-01": "New Year's Day", + "2002-03-11": "Moshoeshoe's Day", + "2002-03-29": "Good Friday", + "2002-04-01": "Easter Monday", + "2002-04-04": "Heroes Day", + "2002-05-01": "Workers' Day", + "2002-05-09": "Ascension Day", + "2002-05-25": "Africa Day", + "2002-07-17": "King's Birthday", + "2002-10-04": "Independence Day", + "2002-12-25": "Christmas Day", + "2002-12-26": "Boxing Day", + "2003-01-01": "New Year's Day", + "2003-03-11": "Moshoeshoe's Day", + "2003-04-18": "Good Friday", + "2003-04-21": "Easter Monday", + "2003-05-01": "Workers' Day", + "2003-05-25": "Africa/Heroes Day", + "2003-05-29": "Ascension Day", + "2003-07-17": "King's Birthday", + "2003-10-04": "Independence Day", + "2003-12-25": "Christmas Day", + "2003-12-26": "Boxing Day", + "2004-01-01": "New Year's Day", + "2004-03-11": "Moshoeshoe's Day", + "2004-04-09": "Good Friday", + "2004-04-12": "Easter Monday", + "2004-05-01": "Workers' Day", + "2004-05-20": "Ascension Day", + "2004-05-25": "Africa/Heroes Day", + "2004-07-17": "King's Birthday", + "2004-10-04": "Independence Day", + "2004-12-25": "Christmas Day", + "2004-12-26": "Boxing Day", + "2005-01-01": "New Year's Day", + "2005-03-11": "Moshoeshoe's Day", + "2005-03-25": "Good Friday", + "2005-03-28": "Easter Monday", + "2005-05-01": "Workers' Day", + "2005-05-05": "Ascension Day", + "2005-05-25": "Africa/Heroes Day", + "2005-07-17": "King's Birthday", + "2005-10-04": "Independence Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "Boxing Day", + "2006-01-01": "New Year's Day", + "2006-03-11": "Moshoeshoe's Day", + "2006-04-14": "Good Friday", + "2006-04-17": "Easter Monday", + "2006-05-01": "Workers' Day", + "2006-05-25": "Africa/Heroes Day; Ascension Day", + "2006-07-17": "King's Birthday", + "2006-10-04": "Independence Day", + "2006-12-25": "Christmas Day", + "2006-12-26": "Boxing Day", + "2007-01-01": "New Year's Day", + "2007-03-11": "Moshoeshoe's Day", + "2007-04-06": "Good Friday", + "2007-04-09": "Easter Monday", + "2007-05-01": "Workers' Day", + "2007-05-17": "Ascension Day", + "2007-05-25": "Africa/Heroes Day", + "2007-07-17": "King's Birthday", + "2007-10-04": "Independence Day", + "2007-12-25": "Christmas Day", + "2007-12-26": "Boxing Day", + "2008-01-01": "New Year's Day", + "2008-03-11": "Moshoeshoe's Day", + "2008-03-21": "Good Friday", + "2008-03-24": "Easter Monday", + "2008-05-01": "Ascension Day; Workers' Day", + "2008-05-25": "Africa/Heroes Day", + "2008-07-17": "King's Birthday", + "2008-10-04": "Independence Day", + "2008-12-25": "Christmas Day", + "2008-12-26": "Boxing Day", + "2009-01-01": "New Year's Day", + "2009-03-11": "Moshoeshoe's Day", + "2009-04-10": "Good Friday", + "2009-04-13": "Easter Monday", + "2009-05-01": "Workers' Day", + "2009-05-21": "Ascension Day", + "2009-05-25": "Africa/Heroes Day", + "2009-07-17": "King's Birthday", + "2009-10-04": "Independence Day", + "2009-12-25": "Christmas Day", + "2009-12-26": "Boxing Day", + "2010-01-01": "New Year's Day", + "2010-03-11": "Moshoeshoe's Day", + "2010-04-02": "Good Friday", + "2010-04-05": "Easter Monday", + "2010-05-01": "Workers' Day", + "2010-05-13": "Ascension Day", + "2010-05-25": "Africa/Heroes Day", + "2010-07-17": "King's Birthday", + "2010-10-04": "Independence Day", + "2010-12-25": "Christmas Day", + "2010-12-26": "Boxing Day", + "2011-01-01": "New Year's Day", + "2011-03-11": "Moshoeshoe's Day", + "2011-04-22": "Good Friday", + "2011-04-25": "Easter Monday", + "2011-05-01": "Workers' Day", + "2011-05-25": "Africa/Heroes Day", + "2011-06-02": "Ascension Day", + "2011-07-17": "King's Birthday", + "2011-10-04": "Independence Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "Boxing Day", + "2012-01-01": "New Year's Day", + "2012-03-11": "Moshoeshoe's Day", + "2012-04-06": "Good Friday", + "2012-04-09": "Easter Monday", + "2012-05-01": "Workers' Day", + "2012-05-17": "Ascension Day", + "2012-05-25": "Africa/Heroes Day", + "2012-07-17": "King's Birthday", + "2012-10-04": "Independence Day", + "2012-12-25": "Christmas Day", + "2012-12-26": "Boxing Day", + "2013-01-01": "New Year's Day", + "2013-03-11": "Moshoeshoe's Day", + "2013-03-29": "Good Friday", + "2013-04-01": "Easter Monday", + "2013-05-01": "Workers' Day", + "2013-05-09": "Ascension Day", + "2013-05-25": "Africa/Heroes Day", + "2013-07-17": "King's Birthday", + "2013-10-04": "Independence Day", + "2013-12-25": "Christmas Day", + "2013-12-26": "Boxing Day", + "2014-01-01": "New Year's Day", + "2014-03-11": "Moshoeshoe's Day", + "2014-04-18": "Good Friday", + "2014-04-21": "Easter Monday", + "2014-05-01": "Workers' Day", + "2014-05-25": "Africa/Heroes Day", + "2014-05-29": "Ascension Day", + "2014-07-17": "King's Birthday", + "2014-10-04": "Independence Day", + "2014-12-25": "Christmas Day", + "2014-12-26": "Boxing Day", + "2015-01-01": "New Year's Day", + "2015-03-11": "Moshoeshoe's Day", + "2015-04-03": "Good Friday", + "2015-04-06": "Easter Monday", + "2015-05-01": "Workers' Day", + "2015-05-14": "Ascension Day", + "2015-05-25": "Africa/Heroes Day", + "2015-07-17": "King's Birthday", + "2015-10-04": "Independence Day", + "2015-12-25": "Christmas Day", + "2015-12-26": "Boxing Day", + "2016-01-01": "New Year's Day", + "2016-03-11": "Moshoeshoe's Day", + "2016-03-25": "Good Friday", + "2016-03-28": "Easter Monday", + "2016-05-01": "Workers' Day", + "2016-05-05": "Ascension Day", + "2016-05-25": "Africa/Heroes Day", + "2016-07-17": "King's Birthday", + "2016-10-04": "Independence Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "Boxing Day", + "2017-01-01": "New Year's Day", + "2017-03-11": "Moshoeshoe's Day", + "2017-04-14": "Good Friday", + "2017-04-17": "Easter Monday", + "2017-05-01": "Workers' Day", + "2017-05-25": "Africa/Heroes Day; Ascension Day", + "2017-07-17": "King's Birthday", + "2017-10-04": "Independence Day", + "2017-12-25": "Christmas Day", + "2017-12-26": "Boxing Day", + "2018-01-01": "New Year's Day", + "2018-03-11": "Moshoeshoe's Day", + "2018-03-30": "Good Friday", + "2018-04-02": "Easter Monday", + "2018-05-01": "Workers' Day", + "2018-05-10": "Ascension Day", + "2018-05-25": "Africa/Heroes Day", + "2018-07-17": "King's Birthday", + "2018-10-04": "Independence Day", + "2018-12-25": "Christmas Day", + "2018-12-26": "Boxing Day", + "2019-01-01": "New Year's Day", + "2019-03-11": "Moshoeshoe's Day", + "2019-04-19": "Good Friday", + "2019-04-22": "Easter Monday", + "2019-05-01": "Workers' Day", + "2019-05-25": "Africa/Heroes Day", + "2019-05-30": "Ascension Day", + "2019-07-17": "King's Birthday", + "2019-10-04": "Independence Day", + "2019-12-25": "Christmas Day", + "2019-12-26": "Boxing Day", + "2020-01-01": "New Year's Day", + "2020-03-11": "Moshoeshoe's Day", + "2020-04-10": "Good Friday", + "2020-04-13": "Easter Monday", + "2020-05-01": "Workers' Day", + "2020-05-21": "Ascension Day", + "2020-05-25": "Africa/Heroes Day", + "2020-07-17": "King's Birthday", + "2020-10-04": "Independence Day", + "2020-12-25": "Christmas Day", + "2020-12-26": "Boxing Day", + "2021-01-01": "New Year's Day", + "2021-03-11": "Moshoeshoe's Day", + "2021-04-02": "Good Friday", + "2021-04-05": "Easter Monday", + "2021-05-01": "Workers' Day", + "2021-05-13": "Ascension Day", + "2021-05-25": "Africa/Heroes Day", + "2021-07-17": "King's Birthday", + "2021-10-04": "Independence Day", + "2021-12-25": "Christmas Day", + "2021-12-26": "Boxing Day", + "2022-01-01": "New Year's Day", + "2022-03-11": "Moshoeshoe's Day", + "2022-04-15": "Good Friday", + "2022-04-18": "Easter Monday", + "2022-05-01": "Workers' Day", + "2022-05-25": "Africa/Heroes Day", + "2022-05-26": "Ascension Day", + "2022-07-17": "King's Birthday", + "2022-10-04": "Independence Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "Boxing Day", + "2023-01-01": "New Year's Day", + "2023-03-11": "Moshoeshoe's Day", + "2023-04-07": "Good Friday", + "2023-04-10": "Easter Monday", + "2023-05-01": "Workers' Day", + "2023-05-18": "Ascension Day", + "2023-05-25": "Africa/Heroes Day", + "2023-07-17": "King's Birthday", + "2023-10-04": "Independence Day", + "2023-12-25": "Christmas Day", + "2023-12-26": "Boxing Day", + "2024-01-01": "New Year's Day", + "2024-03-11": "Moshoeshoe's Day", + "2024-03-29": "Good Friday", + "2024-04-01": "Easter Monday", + "2024-05-01": "Workers' Day", + "2024-05-09": "Ascension Day", + "2024-05-25": "Africa/Heroes Day", + "2024-07-17": "King's Birthday", + "2024-10-04": "Independence Day", + "2024-12-25": "Christmas Day", + "2024-12-26": "Boxing Day", + "2025-01-01": "New Year's Day", + "2025-03-11": "Moshoeshoe's Day", + "2025-04-18": "Good Friday", + "2025-04-21": "Easter Monday", + "2025-05-01": "Workers' Day", + "2025-05-25": "Africa/Heroes Day", + "2025-05-29": "Ascension Day", + "2025-07-17": "King's Birthday", + "2025-10-04": "Independence Day", + "2025-12-25": "Christmas Day", + "2025-12-26": "Boxing Day", + "2026-01-01": "New Year's Day", + "2026-03-11": "Moshoeshoe's Day", + "2026-04-03": "Good Friday", + "2026-04-06": "Easter Monday", + "2026-05-01": "Workers' Day", + "2026-05-14": "Ascension Day", + "2026-05-25": "Africa/Heroes Day", + "2026-07-17": "King's Birthday", + "2026-10-04": "Independence Day", + "2026-12-25": "Christmas Day", + "2026-12-26": "Boxing Day", + "2027-01-01": "New Year's Day", + "2027-03-11": "Moshoeshoe's Day", + "2027-03-26": "Good Friday", + "2027-03-29": "Easter Monday", + "2027-05-01": "Workers' Day", + "2027-05-06": "Ascension Day", + "2027-05-25": "Africa/Heroes Day", + "2027-07-17": "King's Birthday", + "2027-10-04": "Independence Day", + "2027-12-25": "Christmas Day", + "2027-12-26": "Boxing Day", + "2028-01-01": "New Year's Day", + "2028-03-11": "Moshoeshoe's Day", + "2028-04-14": "Good Friday", + "2028-04-17": "Easter Monday", + "2028-05-01": "Workers' Day", + "2028-05-25": "Africa/Heroes Day; Ascension Day", + "2028-07-17": "King's Birthday", + "2028-10-04": "Independence Day", + "2028-12-25": "Christmas Day", + "2028-12-26": "Boxing Day", + "2029-01-01": "New Year's Day", + "2029-03-11": "Moshoeshoe's Day", + "2029-03-30": "Good Friday", + "2029-04-02": "Easter Monday", + "2029-05-01": "Workers' Day", + "2029-05-10": "Ascension Day", + "2029-05-25": "Africa/Heroes Day", + "2029-07-17": "King's Birthday", + "2029-10-04": "Independence Day", + "2029-12-25": "Christmas Day", + "2029-12-26": "Boxing Day", + "2030-01-01": "New Year's Day", + "2030-03-11": "Moshoeshoe's Day", + "2030-04-19": "Good Friday", + "2030-04-22": "Easter Monday", + "2030-05-01": "Workers' Day", + "2030-05-25": "Africa/Heroes Day", + "2030-05-30": "Ascension Day", + "2030-07-17": "King's Birthday", + "2030-10-04": "Independence Day", + "2030-12-25": "Christmas Day", + "2030-12-26": "Boxing Day", + "2031-01-01": "New Year's Day", + "2031-03-11": "Moshoeshoe's Day", + "2031-04-11": "Good Friday", + "2031-04-14": "Easter Monday", + "2031-05-01": "Workers' Day", + "2031-05-22": "Ascension Day", + "2031-05-25": "Africa/Heroes Day", + "2031-07-17": "King's Birthday", + "2031-10-04": "Independence Day", + "2031-12-25": "Christmas Day", + "2031-12-26": "Boxing Day", + "2032-01-01": "New Year's Day", + "2032-03-11": "Moshoeshoe's Day", + "2032-03-26": "Good Friday", + "2032-03-29": "Easter Monday", + "2032-05-01": "Workers' Day", + "2032-05-06": "Ascension Day", + "2032-05-25": "Africa/Heroes Day", + "2032-07-17": "King's Birthday", + "2032-10-04": "Independence Day", + "2032-12-25": "Christmas Day", + "2032-12-26": "Boxing Day", + "2033-01-01": "New Year's Day", + "2033-03-11": "Moshoeshoe's Day", + "2033-04-15": "Good Friday", + "2033-04-18": "Easter Monday", + "2033-05-01": "Workers' Day", + "2033-05-25": "Africa/Heroes Day", + "2033-05-26": "Ascension Day", + "2033-07-17": "King's Birthday", + "2033-10-04": "Independence Day", + "2033-12-25": "Christmas Day", + "2033-12-26": "Boxing Day", + "2034-01-01": "New Year's Day", + "2034-03-11": "Moshoeshoe's Day", + "2034-04-07": "Good Friday", + "2034-04-10": "Easter Monday", + "2034-05-01": "Workers' Day", + "2034-05-18": "Ascension Day", + "2034-05-25": "Africa/Heroes Day", + "2034-07-17": "King's Birthday", + "2034-10-04": "Independence Day", + "2034-12-25": "Christmas Day", + "2034-12-26": "Boxing Day", + "2035-01-01": "New Year's Day", + "2035-03-11": "Moshoeshoe's Day", + "2035-03-23": "Good Friday", + "2035-03-26": "Easter Monday", + "2035-05-01": "Workers' Day", + "2035-05-03": "Ascension Day", + "2035-05-25": "Africa/Heroes Day", + "2035-07-17": "King's Birthday", + "2035-10-04": "Independence Day", + "2035-12-25": "Christmas Day", + "2035-12-26": "Boxing Day", + "2036-01-01": "New Year's Day", + "2036-03-11": "Moshoeshoe's Day", + "2036-04-11": "Good Friday", + "2036-04-14": "Easter Monday", + "2036-05-01": "Workers' Day", + "2036-05-22": "Ascension Day", + "2036-05-25": "Africa/Heroes Day", + "2036-07-17": "King's Birthday", + "2036-10-04": "Independence Day", + "2036-12-25": "Christmas Day", + "2036-12-26": "Boxing Day", + "2037-01-01": "New Year's Day", + "2037-03-11": "Moshoeshoe's Day", + "2037-04-03": "Good Friday", + "2037-04-06": "Easter Monday", + "2037-05-01": "Workers' Day", + "2037-05-14": "Ascension Day", + "2037-05-25": "Africa/Heroes Day", + "2037-07-17": "King's Birthday", + "2037-10-04": "Independence Day", + "2037-12-25": "Christmas Day", + "2037-12-26": "Boxing Day", + "2038-01-01": "New Year's Day", + "2038-03-11": "Moshoeshoe's Day", + "2038-04-23": "Good Friday", + "2038-04-26": "Easter Monday", + "2038-05-01": "Workers' Day", + "2038-05-25": "Africa/Heroes Day", + "2038-06-03": "Ascension Day", + "2038-07-17": "King's Birthday", + "2038-10-04": "Independence Day", + "2038-12-25": "Christmas Day", + "2038-12-26": "Boxing Day", + "2039-01-01": "New Year's Day", + "2039-03-11": "Moshoeshoe's Day", + "2039-04-08": "Good Friday", + "2039-04-11": "Easter Monday", + "2039-05-01": "Workers' Day", + "2039-05-19": "Ascension Day", + "2039-05-25": "Africa/Heroes Day", + "2039-07-17": "King's Birthday", + "2039-10-04": "Independence Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Boxing Day", + "2040-01-01": "New Year's Day", + "2040-03-11": "Moshoeshoe's Day", + "2040-03-30": "Good Friday", + "2040-04-02": "Easter Monday", + "2040-05-01": "Workers' Day", + "2040-05-10": "Ascension Day", + "2040-05-25": "Africa/Heroes Day", + "2040-07-17": "King's Birthday", + "2040-10-04": "Independence Day", + "2040-12-25": "Christmas Day", + "2040-12-26": "Boxing Day", + "2041-01-01": "New Year's Day", + "2041-03-11": "Moshoeshoe's Day", + "2041-04-19": "Good Friday", + "2041-04-22": "Easter Monday", + "2041-05-01": "Workers' Day", + "2041-05-25": "Africa/Heroes Day", + "2041-05-30": "Ascension Day", + "2041-07-17": "King's Birthday", + "2041-10-04": "Independence Day", + "2041-12-25": "Christmas Day", + "2041-12-26": "Boxing Day", + "2042-01-01": "New Year's Day", + "2042-03-11": "Moshoeshoe's Day", + "2042-04-04": "Good Friday", + "2042-04-07": "Easter Monday", + "2042-05-01": "Workers' Day", + "2042-05-15": "Ascension Day", + "2042-05-25": "Africa/Heroes Day", + "2042-07-17": "King's Birthday", + "2042-10-04": "Independence Day", + "2042-12-25": "Christmas Day", + "2042-12-26": "Boxing Day", + "2043-01-01": "New Year's Day", + "2043-03-11": "Moshoeshoe's Day", + "2043-03-27": "Good Friday", + "2043-03-30": "Easter Monday", + "2043-05-01": "Workers' Day", + "2043-05-07": "Ascension Day", + "2043-05-25": "Africa/Heroes Day", + "2043-07-17": "King's Birthday", + "2043-10-04": "Independence Day", + "2043-12-25": "Christmas Day", + "2043-12-26": "Boxing Day", + "2044-01-01": "New Year's Day", + "2044-03-11": "Moshoeshoe's Day", + "2044-04-15": "Good Friday", + "2044-04-18": "Easter Monday", + "2044-05-01": "Workers' Day", + "2044-05-25": "Africa/Heroes Day", + "2044-05-26": "Ascension Day", + "2044-07-17": "King's Birthday", + "2044-10-04": "Independence Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "Boxing Day", + "2045-01-01": "New Year's Day", + "2045-03-11": "Moshoeshoe's Day", + "2045-04-07": "Good Friday", + "2045-04-10": "Easter Monday", + "2045-05-01": "Workers' Day", + "2045-05-18": "Ascension Day", + "2045-05-25": "Africa/Heroes Day", + "2045-07-17": "King's Birthday", + "2045-10-04": "Independence Day", + "2045-12-25": "Christmas Day", + "2045-12-26": "Boxing Day", + "2046-01-01": "New Year's Day", + "2046-03-11": "Moshoeshoe's Day", + "2046-03-23": "Good Friday", + "2046-03-26": "Easter Monday", + "2046-05-01": "Workers' Day", + "2046-05-03": "Ascension Day", + "2046-05-25": "Africa/Heroes Day", + "2046-07-17": "King's Birthday", + "2046-10-04": "Independence Day", + "2046-12-25": "Christmas Day", + "2046-12-26": "Boxing Day", + "2047-01-01": "New Year's Day", + "2047-03-11": "Moshoeshoe's Day", + "2047-04-12": "Good Friday", + "2047-04-15": "Easter Monday", + "2047-05-01": "Workers' Day", + "2047-05-23": "Ascension Day", + "2047-05-25": "Africa/Heroes Day", + "2047-07-17": "King's Birthday", + "2047-10-04": "Independence Day", + "2047-12-25": "Christmas Day", + "2047-12-26": "Boxing Day", + "2048-01-01": "New Year's Day", + "2048-03-11": "Moshoeshoe's Day", + "2048-04-03": "Good Friday", + "2048-04-06": "Easter Monday", + "2048-05-01": "Workers' Day", + "2048-05-14": "Ascension Day", + "2048-05-25": "Africa/Heroes Day", + "2048-07-17": "King's Birthday", + "2048-10-04": "Independence Day", + "2048-12-25": "Christmas Day", + "2048-12-26": "Boxing Day", + "2049-01-01": "New Year's Day", + "2049-03-11": "Moshoeshoe's Day", + "2049-04-16": "Good Friday", + "2049-04-19": "Easter Monday", + "2049-05-01": "Workers' Day", + "2049-05-25": "Africa/Heroes Day", + "2049-05-27": "Ascension Day", + "2049-07-17": "King's Birthday", + "2049-10-04": "Independence Day", + "2049-12-25": "Christmas Day", + "2049-12-26": "Boxing Day", + "2050-01-01": "New Year's Day", + "2050-03-11": "Moshoeshoe's Day", + "2050-04-08": "Good Friday", + "2050-04-11": "Easter Monday", + "2050-05-01": "Workers' Day", + "2050-05-19": "Ascension Day", + "2050-05-25": "Africa/Heroes Day", + "2050-07-17": "King's Birthday", + "2050-10-04": "Independence Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "Boxing Day" +} diff --git a/snapshots/countries/LT.json b/snapshots/countries/LT.json new file mode 100644 index 000000000..9aec28162 --- /dev/null +++ b/snapshots/countries/LT.json @@ -0,0 +1,925 @@ +{ + "1990-01-01": "New Year's Day", + "1990-02-16": "Day of Restoration of the State of Lithuania", + "1990-03-11": "Day of Restoration of Independence of Lithuania", + "1990-04-15": "Easter", + "1990-04-16": "Easter Monday", + "1990-05-01": "International Workers' Day", + "1990-05-06": "Mother's Day", + "1990-06-03": "Father's Day", + "1990-08-15": "Assumption Day", + "1990-11-01": "All Saints' Day", + "1990-12-24": "Christmas Eve", + "1990-12-25": "Christmas Day", + "1990-12-26": "Second Day of Christmas", + "1991-01-01": "New Year's Day", + "1991-02-16": "Day of Restoration of the State of Lithuania", + "1991-03-11": "Day of Restoration of Independence of Lithuania", + "1991-03-31": "Easter", + "1991-04-01": "Easter Monday", + "1991-05-01": "International Workers' Day", + "1991-05-05": "Mother's Day", + "1991-06-02": "Father's Day", + "1991-07-06": "Statehood Day", + "1991-08-15": "Assumption Day", + "1991-11-01": "All Saints' Day", + "1991-12-24": "Christmas Eve", + "1991-12-25": "Christmas Day", + "1991-12-26": "Second Day of Christmas", + "1992-01-01": "New Year's Day", + "1992-02-16": "Day of Restoration of the State of Lithuania", + "1992-03-11": "Day of Restoration of Independence of Lithuania", + "1992-04-19": "Easter", + "1992-04-20": "Easter Monday", + "1992-05-01": "International Workers' Day", + "1992-05-03": "Mother's Day", + "1992-06-07": "Father's Day", + "1992-07-06": "Statehood Day", + "1992-08-15": "Assumption Day", + "1992-11-01": "All Saints' Day", + "1992-12-24": "Christmas Eve", + "1992-12-25": "Christmas Day", + "1992-12-26": "Second Day of Christmas", + "1993-01-01": "New Year's Day", + "1993-02-16": "Day of Restoration of the State of Lithuania", + "1993-03-11": "Day of Restoration of Independence of Lithuania", + "1993-04-11": "Easter", + "1993-04-12": "Easter Monday", + "1993-05-01": "International Workers' Day", + "1993-05-02": "Mother's Day", + "1993-06-06": "Father's Day", + "1993-07-06": "Statehood Day", + "1993-08-15": "Assumption Day", + "1993-11-01": "All Saints' Day", + "1993-12-24": "Christmas Eve", + "1993-12-25": "Christmas Day", + "1993-12-26": "Second Day of Christmas", + "1994-01-01": "New Year's Day", + "1994-02-16": "Day of Restoration of the State of Lithuania", + "1994-03-11": "Day of Restoration of Independence of Lithuania", + "1994-04-03": "Easter", + "1994-04-04": "Easter Monday", + "1994-05-01": "International Workers' Day; Mother's Day", + "1994-06-05": "Father's Day", + "1994-07-06": "Statehood Day", + "1994-08-15": "Assumption Day", + "1994-11-01": "All Saints' Day", + "1994-12-24": "Christmas Eve", + "1994-12-25": "Christmas Day", + "1994-12-26": "Second Day of Christmas", + "1995-01-01": "New Year's Day", + "1995-02-16": "Day of Restoration of the State of Lithuania", + "1995-03-11": "Day of Restoration of Independence of Lithuania", + "1995-04-16": "Easter", + "1995-04-17": "Easter Monday", + "1995-05-01": "International Workers' Day", + "1995-05-07": "Mother's Day", + "1995-06-04": "Father's Day", + "1995-07-06": "Statehood Day", + "1995-08-15": "Assumption Day", + "1995-11-01": "All Saints' Day", + "1995-12-24": "Christmas Eve", + "1995-12-25": "Christmas Day", + "1995-12-26": "Second Day of Christmas", + "1996-01-01": "New Year's Day", + "1996-02-16": "Day of Restoration of the State of Lithuania", + "1996-03-11": "Day of Restoration of Independence of Lithuania", + "1996-04-07": "Easter", + "1996-04-08": "Easter Monday", + "1996-05-01": "International Workers' Day", + "1996-05-05": "Mother's Day", + "1996-06-02": "Father's Day", + "1996-07-06": "Statehood Day", + "1996-08-15": "Assumption Day", + "1996-11-01": "All Saints' Day", + "1996-12-24": "Christmas Eve", + "1996-12-25": "Christmas Day", + "1996-12-26": "Second Day of Christmas", + "1997-01-01": "New Year's Day", + "1997-02-16": "Day of Restoration of the State of Lithuania", + "1997-03-11": "Day of Restoration of Independence of Lithuania", + "1997-03-30": "Easter", + "1997-03-31": "Easter Monday", + "1997-05-01": "International Workers' Day", + "1997-05-04": "Mother's Day", + "1997-06-01": "Father's Day", + "1997-07-06": "Statehood Day", + "1997-08-15": "Assumption Day", + "1997-11-01": "All Saints' Day", + "1997-12-24": "Christmas Eve", + "1997-12-25": "Christmas Day", + "1997-12-26": "Second Day of Christmas", + "1998-01-01": "New Year's Day", + "1998-02-16": "Day of Restoration of the State of Lithuania", + "1998-03-11": "Day of Restoration of Independence of Lithuania", + "1998-04-12": "Easter", + "1998-04-13": "Easter Monday", + "1998-05-01": "International Workers' Day", + "1998-05-03": "Mother's Day", + "1998-06-07": "Father's Day", + "1998-07-06": "Statehood Day", + "1998-08-15": "Assumption Day", + "1998-11-01": "All Saints' Day", + "1998-12-24": "Christmas Eve", + "1998-12-25": "Christmas Day", + "1998-12-26": "Second Day of Christmas", + "1999-01-01": "New Year's Day", + "1999-02-16": "Day of Restoration of the State of Lithuania", + "1999-03-11": "Day of Restoration of Independence of Lithuania", + "1999-04-04": "Easter", + "1999-04-05": "Easter Monday", + "1999-05-01": "International Workers' Day", + "1999-05-02": "Mother's Day", + "1999-06-06": "Father's Day", + "1999-07-06": "Statehood Day", + "1999-08-15": "Assumption Day", + "1999-11-01": "All Saints' Day", + "1999-12-24": "Christmas Eve", + "1999-12-25": "Christmas Day", + "1999-12-26": "Second Day of Christmas", + "2000-01-01": "New Year's Day", + "2000-02-16": "Day of Restoration of the State of Lithuania", + "2000-03-11": "Day of Restoration of Independence of Lithuania", + "2000-04-23": "Easter", + "2000-04-24": "Easter Monday", + "2000-05-01": "International Workers' Day", + "2000-05-07": "Mother's Day", + "2000-06-04": "Father's Day", + "2000-07-06": "Statehood Day", + "2000-08-15": "Assumption Day", + "2000-11-01": "All Saints' Day", + "2000-12-24": "Christmas Eve", + "2000-12-25": "Christmas Day", + "2000-12-26": "Second Day of Christmas", + "2001-01-01": "New Year's Day", + "2001-02-16": "Day of Restoration of the State of Lithuania", + "2001-03-11": "Day of Restoration of Independence of Lithuania", + "2001-04-15": "Easter", + "2001-04-16": "Easter Monday", + "2001-05-01": "International Workers' Day", + "2001-05-06": "Mother's Day", + "2001-06-03": "Father's Day", + "2001-07-06": "Statehood Day", + "2001-08-15": "Assumption Day", + "2001-11-01": "All Saints' Day", + "2001-12-24": "Christmas Eve", + "2001-12-25": "Christmas Day", + "2001-12-26": "Second Day of Christmas", + "2002-01-01": "New Year's Day", + "2002-02-16": "Day of Restoration of the State of Lithuania", + "2002-03-11": "Day of Restoration of Independence of Lithuania", + "2002-03-31": "Easter", + "2002-04-01": "Easter Monday", + "2002-05-01": "International Workers' Day", + "2002-05-05": "Mother's Day", + "2002-06-02": "Father's Day", + "2002-07-06": "Statehood Day", + "2002-08-15": "Assumption Day", + "2002-11-01": "All Saints' Day", + "2002-12-24": "Christmas Eve", + "2002-12-25": "Christmas Day", + "2002-12-26": "Second Day of Christmas", + "2003-01-01": "New Year's Day", + "2003-02-16": "Day of Restoration of the State of Lithuania", + "2003-03-11": "Day of Restoration of Independence of Lithuania", + "2003-04-20": "Easter", + "2003-04-21": "Easter Monday", + "2003-05-01": "International Workers' Day", + "2003-05-04": "Mother's Day", + "2003-06-01": "Father's Day", + "2003-06-24": "Day of Dew and Saint John", + "2003-07-06": "Statehood Day", + "2003-08-15": "Assumption Day", + "2003-11-01": "All Saints' Day", + "2003-12-24": "Christmas Eve", + "2003-12-25": "Christmas Day", + "2003-12-26": "Second Day of Christmas", + "2004-01-01": "New Year's Day", + "2004-02-16": "Day of Restoration of the State of Lithuania", + "2004-03-11": "Day of Restoration of Independence of Lithuania", + "2004-04-11": "Easter", + "2004-04-12": "Easter Monday", + "2004-05-01": "International Workers' Day", + "2004-05-02": "Mother's Day", + "2004-06-06": "Father's Day", + "2004-06-24": "Day of Dew and Saint John", + "2004-07-06": "Statehood Day", + "2004-08-15": "Assumption Day", + "2004-11-01": "All Saints' Day", + "2004-12-24": "Christmas Eve", + "2004-12-25": "Christmas Day", + "2004-12-26": "Second Day of Christmas", + "2005-01-01": "New Year's Day", + "2005-02-16": "Day of Restoration of the State of Lithuania", + "2005-03-11": "Day of Restoration of Independence of Lithuania", + "2005-03-27": "Easter", + "2005-03-28": "Easter Monday", + "2005-05-01": "International Workers' Day; Mother's Day", + "2005-06-05": "Father's Day", + "2005-06-24": "Day of Dew and Saint John", + "2005-07-06": "Statehood Day", + "2005-08-15": "Assumption Day", + "2005-11-01": "All Saints' Day", + "2005-12-24": "Christmas Eve", + "2005-12-25": "Christmas Day", + "2005-12-26": "Second Day of Christmas", + "2006-01-01": "New Year's Day", + "2006-02-16": "Day of Restoration of the State of Lithuania", + "2006-03-11": "Day of Restoration of Independence of Lithuania", + "2006-04-16": "Easter", + "2006-04-17": "Easter Monday", + "2006-05-01": "International Workers' Day", + "2006-05-07": "Mother's Day", + "2006-06-04": "Father's Day", + "2006-06-24": "Day of Dew and Saint John", + "2006-07-06": "Statehood Day", + "2006-08-15": "Assumption Day", + "2006-11-01": "All Saints' Day", + "2006-12-24": "Christmas Eve", + "2006-12-25": "Christmas Day", + "2006-12-26": "Second Day of Christmas", + "2007-01-01": "New Year's Day", + "2007-02-16": "Day of Restoration of the State of Lithuania", + "2007-03-11": "Day of Restoration of Independence of Lithuania", + "2007-04-08": "Easter", + "2007-04-09": "Easter Monday", + "2007-05-01": "International Workers' Day", + "2007-05-06": "Mother's Day", + "2007-06-03": "Father's Day", + "2007-06-24": "Day of Dew and Saint John", + "2007-07-06": "Statehood Day", + "2007-08-15": "Assumption Day", + "2007-11-01": "All Saints' Day", + "2007-12-24": "Christmas Eve", + "2007-12-25": "Christmas Day", + "2007-12-26": "Second Day of Christmas", + "2008-01-01": "New Year's Day", + "2008-02-16": "Day of Restoration of the State of Lithuania", + "2008-03-11": "Day of Restoration of Independence of Lithuania", + "2008-03-23": "Easter", + "2008-03-24": "Easter Monday", + "2008-05-01": "International Workers' Day", + "2008-05-04": "Mother's Day", + "2008-06-01": "Father's Day", + "2008-06-24": "Day of Dew and Saint John", + "2008-07-06": "Statehood Day", + "2008-08-15": "Assumption Day", + "2008-11-01": "All Saints' Day", + "2008-12-24": "Christmas Eve", + "2008-12-25": "Christmas Day", + "2008-12-26": "Second Day of Christmas", + "2009-01-01": "New Year's Day", + "2009-02-16": "Day of Restoration of the State of Lithuania", + "2009-03-11": "Day of Restoration of Independence of Lithuania", + "2009-04-12": "Easter", + "2009-04-13": "Easter Monday", + "2009-05-01": "International Workers' Day", + "2009-05-03": "Mother's Day", + "2009-06-07": "Father's Day", + "2009-06-24": "Day of Dew and Saint John", + "2009-07-06": "Statehood Day", + "2009-08-15": "Assumption Day", + "2009-11-01": "All Saints' Day", + "2009-12-24": "Christmas Eve", + "2009-12-25": "Christmas Day", + "2009-12-26": "Second Day of Christmas", + "2010-01-01": "New Year's Day", + "2010-02-16": "Day of Restoration of the State of Lithuania", + "2010-03-11": "Day of Restoration of Independence of Lithuania", + "2010-04-04": "Easter", + "2010-04-05": "Easter Monday", + "2010-05-01": "International Workers' Day", + "2010-05-02": "Mother's Day", + "2010-06-06": "Father's Day", + "2010-06-24": "Day of Dew and Saint John", + "2010-07-06": "Statehood Day", + "2010-08-15": "Assumption Day", + "2010-11-01": "All Saints' Day", + "2010-12-24": "Christmas Eve", + "2010-12-25": "Christmas Day", + "2010-12-26": "Second Day of Christmas", + "2011-01-01": "New Year's Day", + "2011-02-16": "Day of Restoration of the State of Lithuania", + "2011-03-11": "Day of Restoration of Independence of Lithuania", + "2011-04-24": "Easter", + "2011-04-25": "Easter Monday", + "2011-05-01": "International Workers' Day; Mother's Day", + "2011-06-05": "Father's Day", + "2011-06-24": "Day of Dew and Saint John", + "2011-07-06": "Statehood Day", + "2011-08-15": "Assumption Day", + "2011-11-01": "All Saints' Day", + "2011-12-24": "Christmas Eve", + "2011-12-25": "Christmas Day", + "2011-12-26": "Second Day of Christmas", + "2012-01-01": "New Year's Day", + "2012-02-16": "Day of Restoration of the State of Lithuania", + "2012-03-11": "Day of Restoration of Independence of Lithuania", + "2012-04-08": "Easter", + "2012-04-09": "Easter Monday", + "2012-05-01": "International Workers' Day", + "2012-05-06": "Mother's Day", + "2012-06-03": "Father's Day", + "2012-06-24": "Day of Dew and Saint John", + "2012-07-06": "Statehood Day", + "2012-08-15": "Assumption Day", + "2012-11-01": "All Saints' Day", + "2012-12-24": "Christmas Eve", + "2012-12-25": "Christmas Day", + "2012-12-26": "Second Day of Christmas", + "2013-01-01": "New Year's Day", + "2013-02-16": "Day of Restoration of the State of Lithuania", + "2013-03-11": "Day of Restoration of Independence of Lithuania", + "2013-03-31": "Easter", + "2013-04-01": "Easter Monday", + "2013-05-01": "International Workers' Day", + "2013-05-05": "Mother's Day", + "2013-06-02": "Father's Day", + "2013-06-24": "Day of Dew and Saint John", + "2013-07-06": "Statehood Day", + "2013-08-15": "Assumption Day", + "2013-11-01": "All Saints' Day", + "2013-12-24": "Christmas Eve", + "2013-12-25": "Christmas Day", + "2013-12-26": "Second Day of Christmas", + "2014-01-01": "New Year's Day", + "2014-02-16": "Day of Restoration of the State of Lithuania", + "2014-03-11": "Day of Restoration of Independence of Lithuania", + "2014-04-20": "Easter", + "2014-04-21": "Easter Monday", + "2014-05-01": "International Workers' Day", + "2014-05-04": "Mother's Day", + "2014-06-01": "Father's Day", + "2014-06-24": "Day of Dew and Saint John", + "2014-07-06": "Statehood Day", + "2014-08-15": "Assumption Day", + "2014-11-01": "All Saints' Day", + "2014-12-24": "Christmas Eve", + "2014-12-25": "Christmas Day", + "2014-12-26": "Second Day of Christmas", + "2015-01-01": "New Year's Day", + "2015-02-16": "Day of Restoration of the State of Lithuania", + "2015-03-11": "Day of Restoration of Independence of Lithuania", + "2015-04-05": "Easter", + "2015-04-06": "Easter Monday", + "2015-05-01": "International Workers' Day", + "2015-05-03": "Mother's Day", + "2015-06-07": "Father's Day", + "2015-06-24": "Day of Dew and Saint John", + "2015-07-06": "Statehood Day", + "2015-08-15": "Assumption Day", + "2015-11-01": "All Saints' Day", + "2015-12-24": "Christmas Eve", + "2015-12-25": "Christmas Day", + "2015-12-26": "Second Day of Christmas", + "2016-01-01": "New Year's Day", + "2016-02-16": "Day of Restoration of the State of Lithuania", + "2016-03-11": "Day of Restoration of Independence of Lithuania", + "2016-03-27": "Easter", + "2016-03-28": "Easter Monday", + "2016-05-01": "International Workers' Day; Mother's Day", + "2016-06-05": "Father's Day", + "2016-06-24": "Day of Dew and Saint John", + "2016-07-06": "Statehood Day", + "2016-08-15": "Assumption Day", + "2016-11-01": "All Saints' Day", + "2016-12-24": "Christmas Eve", + "2016-12-25": "Christmas Day", + "2016-12-26": "Second Day of Christmas", + "2017-01-01": "New Year's Day", + "2017-02-16": "Day of Restoration of the State of Lithuania", + "2017-03-11": "Day of Restoration of Independence of Lithuania", + "2017-04-16": "Easter", + "2017-04-17": "Easter Monday", + "2017-05-01": "International Workers' Day", + "2017-05-07": "Mother's Day", + "2017-06-04": "Father's Day", + "2017-06-24": "Day of Dew and Saint John", + "2017-07-06": "Statehood Day", + "2017-08-15": "Assumption Day", + "2017-11-01": "All Saints' Day", + "2017-12-24": "Christmas Eve", + "2017-12-25": "Christmas Day", + "2017-12-26": "Second Day of Christmas", + "2018-01-01": "New Year's Day", + "2018-02-16": "Day of Restoration of the State of Lithuania", + "2018-03-11": "Day of Restoration of Independence of Lithuania", + "2018-04-01": "Easter", + "2018-04-02": "Easter Monday", + "2018-05-01": "International Workers' Day", + "2018-05-06": "Mother's Day", + "2018-06-03": "Father's Day", + "2018-06-24": "Day of Dew and Saint John", + "2018-07-06": "Statehood Day", + "2018-08-15": "Assumption Day", + "2018-11-01": "All Saints' Day", + "2018-12-24": "Christmas Eve", + "2018-12-25": "Christmas Day", + "2018-12-26": "Second Day of Christmas", + "2019-01-01": "New Year's Day", + "2019-02-16": "Day of Restoration of the State of Lithuania", + "2019-03-11": "Day of Restoration of Independence of Lithuania", + "2019-04-21": "Easter", + "2019-04-22": "Easter Monday", + "2019-05-01": "International Workers' Day", + "2019-05-05": "Mother's Day", + "2019-06-02": "Father's Day", + "2019-06-24": "Day of Dew and Saint John", + "2019-07-06": "Statehood Day", + "2019-08-15": "Assumption Day", + "2019-11-01": "All Saints' Day", + "2019-12-24": "Christmas Eve", + "2019-12-25": "Christmas Day", + "2019-12-26": "Second Day of Christmas", + "2020-01-01": "New Year's Day", + "2020-02-16": "Day of Restoration of the State of Lithuania", + "2020-03-11": "Day of Restoration of Independence of Lithuania", + "2020-04-12": "Easter", + "2020-04-13": "Easter Monday", + "2020-05-01": "International Workers' Day", + "2020-05-03": "Mother's Day", + "2020-06-07": "Father's Day", + "2020-06-24": "Day of Dew and Saint John", + "2020-07-06": "Statehood Day", + "2020-08-15": "Assumption Day", + "2020-11-01": "All Saints' Day", + "2020-11-02": "All Souls' Day", + "2020-12-24": "Christmas Eve", + "2020-12-25": "Christmas Day", + "2020-12-26": "Second Day of Christmas", + "2021-01-01": "New Year's Day", + "2021-02-16": "Day of Restoration of the State of Lithuania", + "2021-03-11": "Day of Restoration of Independence of Lithuania", + "2021-04-04": "Easter", + "2021-04-05": "Easter Monday", + "2021-05-01": "International Workers' Day", + "2021-05-02": "Mother's Day", + "2021-06-06": "Father's Day", + "2021-06-24": "Day of Dew and Saint John", + "2021-07-06": "Statehood Day", + "2021-08-15": "Assumption Day", + "2021-11-01": "All Saints' Day", + "2021-11-02": "All Souls' Day", + "2021-12-24": "Christmas Eve", + "2021-12-25": "Christmas Day", + "2021-12-26": "Second Day of Christmas", + "2022-01-01": "New Year's Day", + "2022-02-16": "Day of Restoration of the State of Lithuania", + "2022-03-11": "Day of Restoration of Independence of Lithuania", + "2022-04-17": "Easter", + "2022-04-18": "Easter Monday", + "2022-05-01": "International Workers' Day; Mother's Day", + "2022-06-05": "Father's Day", + "2022-06-24": "Day of Dew and Saint John", + "2022-07-06": "Statehood Day", + "2022-08-15": "Assumption Day", + "2022-11-01": "All Saints' Day", + "2022-11-02": "All Souls' Day", + "2022-12-24": "Christmas Eve", + "2022-12-25": "Christmas Day", + "2022-12-26": "Second Day of Christmas", + "2023-01-01": "New Year's Day", + "2023-02-16": "Day of Restoration of the State of Lithuania", + "2023-03-11": "Day of Restoration of Independence of Lithuania", + "2023-04-09": "Easter", + "2023-04-10": "Easter Monday", + "2023-05-01": "International Workers' Day", + "2023-05-07": "Mother's Day", + "2023-06-04": "Father's Day", + "2023-06-24": "Day of Dew and Saint John", + "2023-07-06": "Statehood Day", + "2023-08-15": "Assumption Day", + "2023-11-01": "All Saints' Day", + "2023-11-02": "All Souls' Day", + "2023-12-24": "Christmas Eve", + "2023-12-25": "Christmas Day", + "2023-12-26": "Second Day of Christmas", + "2024-01-01": "New Year's Day", + "2024-02-16": "Day of Restoration of the State of Lithuania", + "2024-03-11": "Day of Restoration of Independence of Lithuania", + "2024-03-31": "Easter", + "2024-04-01": "Easter Monday", + "2024-05-01": "International Workers' Day", + "2024-05-05": "Mother's Day", + "2024-06-02": "Father's Day", + "2024-06-24": "Day of Dew and Saint John", + "2024-07-06": "Statehood Day", + "2024-08-15": "Assumption Day", + "2024-11-01": "All Saints' Day", + "2024-11-02": "All Souls' Day", + "2024-12-24": "Christmas Eve", + "2024-12-25": "Christmas Day", + "2024-12-26": "Second Day of Christmas", + "2025-01-01": "New Year's Day", + "2025-02-16": "Day of Restoration of the State of Lithuania", + "2025-03-11": "Day of Restoration of Independence of Lithuania", + "2025-04-20": "Easter", + "2025-04-21": "Easter Monday", + "2025-05-01": "International Workers' Day", + "2025-05-04": "Mother's Day", + "2025-06-01": "Father's Day", + "2025-06-24": "Day of Dew and Saint John", + "2025-07-06": "Statehood Day", + "2025-08-15": "Assumption Day", + "2025-11-01": "All Saints' Day", + "2025-11-02": "All Souls' Day", + "2025-12-24": "Christmas Eve", + "2025-12-25": "Christmas Day", + "2025-12-26": "Second Day of Christmas", + "2026-01-01": "New Year's Day", + "2026-02-16": "Day of Restoration of the State of Lithuania", + "2026-03-11": "Day of Restoration of Independence of Lithuania", + "2026-04-05": "Easter", + "2026-04-06": "Easter Monday", + "2026-05-01": "International Workers' Day", + "2026-05-03": "Mother's Day", + "2026-06-07": "Father's Day", + "2026-06-24": "Day of Dew and Saint John", + "2026-07-06": "Statehood Day", + "2026-08-15": "Assumption Day", + "2026-11-01": "All Saints' Day", + "2026-11-02": "All Souls' Day", + "2026-12-24": "Christmas Eve", + "2026-12-25": "Christmas Day", + "2026-12-26": "Second Day of Christmas", + "2027-01-01": "New Year's Day", + "2027-02-16": "Day of Restoration of the State of Lithuania", + "2027-03-11": "Day of Restoration of Independence of Lithuania", + "2027-03-28": "Easter", + "2027-03-29": "Easter Monday", + "2027-05-01": "International Workers' Day", + "2027-05-02": "Mother's Day", + "2027-06-06": "Father's Day", + "2027-06-24": "Day of Dew and Saint John", + "2027-07-06": "Statehood Day", + "2027-08-15": "Assumption Day", + "2027-11-01": "All Saints' Day", + "2027-11-02": "All Souls' Day", + "2027-12-24": "Christmas Eve", + "2027-12-25": "Christmas Day", + "2027-12-26": "Second Day of Christmas", + "2028-01-01": "New Year's Day", + "2028-02-16": "Day of Restoration of the State of Lithuania", + "2028-03-11": "Day of Restoration of Independence of Lithuania", + "2028-04-16": "Easter", + "2028-04-17": "Easter Monday", + "2028-05-01": "International Workers' Day", + "2028-05-07": "Mother's Day", + "2028-06-04": "Father's Day", + "2028-06-24": "Day of Dew and Saint John", + "2028-07-06": "Statehood Day", + "2028-08-15": "Assumption Day", + "2028-11-01": "All Saints' Day", + "2028-11-02": "All Souls' Day", + "2028-12-24": "Christmas Eve", + "2028-12-25": "Christmas Day", + "2028-12-26": "Second Day of Christmas", + "2029-01-01": "New Year's Day", + "2029-02-16": "Day of Restoration of the State of Lithuania", + "2029-03-11": "Day of Restoration of Independence of Lithuania", + "2029-04-01": "Easter", + "2029-04-02": "Easter Monday", + "2029-05-01": "International Workers' Day", + "2029-05-06": "Mother's Day", + "2029-06-03": "Father's Day", + "2029-06-24": "Day of Dew and Saint John", + "2029-07-06": "Statehood Day", + "2029-08-15": "Assumption Day", + "2029-11-01": "All Saints' Day", + "2029-11-02": "All Souls' Day", + "2029-12-24": "Christmas Eve", + "2029-12-25": "Christmas Day", + "2029-12-26": "Second Day of Christmas", + "2030-01-01": "New Year's Day", + "2030-02-16": "Day of Restoration of the State of Lithuania", + "2030-03-11": "Day of Restoration of Independence of Lithuania", + "2030-04-21": "Easter", + "2030-04-22": "Easter Monday", + "2030-05-01": "International Workers' Day", + "2030-05-05": "Mother's Day", + "2030-06-02": "Father's Day", + "2030-06-24": "Day of Dew and Saint John", + "2030-07-06": "Statehood Day", + "2030-08-15": "Assumption Day", + "2030-11-01": "All Saints' Day", + "2030-11-02": "All Souls' Day", + "2030-12-24": "Christmas Eve", + "2030-12-25": "Christmas Day", + "2030-12-26": "Second Day of Christmas", + "2031-01-01": "New Year's Day", + "2031-02-16": "Day of Restoration of the State of Lithuania", + "2031-03-11": "Day of Restoration of Independence of Lithuania", + "2031-04-13": "Easter", + "2031-04-14": "Easter Monday", + "2031-05-01": "International Workers' Day", + "2031-05-04": "Mother's Day", + "2031-06-01": "Father's Day", + "2031-06-24": "Day of Dew and Saint John", + "2031-07-06": "Statehood Day", + "2031-08-15": "Assumption Day", + "2031-11-01": "All Saints' Day", + "2031-11-02": "All Souls' Day", + "2031-12-24": "Christmas Eve", + "2031-12-25": "Christmas Day", + "2031-12-26": "Second Day of Christmas", + "2032-01-01": "New Year's Day", + "2032-02-16": "Day of Restoration of the State of Lithuania", + "2032-03-11": "Day of Restoration of Independence of Lithuania", + "2032-03-28": "Easter", + "2032-03-29": "Easter Monday", + "2032-05-01": "International Workers' Day", + "2032-05-02": "Mother's Day", + "2032-06-06": "Father's Day", + "2032-06-24": "Day of Dew and Saint John", + "2032-07-06": "Statehood Day", + "2032-08-15": "Assumption Day", + "2032-11-01": "All Saints' Day", + "2032-11-02": "All Souls' Day", + "2032-12-24": "Christmas Eve", + "2032-12-25": "Christmas Day", + "2032-12-26": "Second Day of Christmas", + "2033-01-01": "New Year's Day", + "2033-02-16": "Day of Restoration of the State of Lithuania", + "2033-03-11": "Day of Restoration of Independence of Lithuania", + "2033-04-17": "Easter", + "2033-04-18": "Easter Monday", + "2033-05-01": "International Workers' Day; Mother's Day", + "2033-06-05": "Father's Day", + "2033-06-24": "Day of Dew and Saint John", + "2033-07-06": "Statehood Day", + "2033-08-15": "Assumption Day", + "2033-11-01": "All Saints' Day", + "2033-11-02": "All Souls' Day", + "2033-12-24": "Christmas Eve", + "2033-12-25": "Christmas Day", + "2033-12-26": "Second Day of Christmas", + "2034-01-01": "New Year's Day", + "2034-02-16": "Day of Restoration of the State of Lithuania", + "2034-03-11": "Day of Restoration of Independence of Lithuania", + "2034-04-09": "Easter", + "2034-04-10": "Easter Monday", + "2034-05-01": "International Workers' Day", + "2034-05-07": "Mother's Day", + "2034-06-04": "Father's Day", + "2034-06-24": "Day of Dew and Saint John", + "2034-07-06": "Statehood Day", + "2034-08-15": "Assumption Day", + "2034-11-01": "All Saints' Day", + "2034-11-02": "All Souls' Day", + "2034-12-24": "Christmas Eve", + "2034-12-25": "Christmas Day", + "2034-12-26": "Second Day of Christmas", + "2035-01-01": "New Year's Day", + "2035-02-16": "Day of Restoration of the State of Lithuania", + "2035-03-11": "Day of Restoration of Independence of Lithuania", + "2035-03-25": "Easter", + "2035-03-26": "Easter Monday", + "2035-05-01": "International Workers' Day", + "2035-05-06": "Mother's Day", + "2035-06-03": "Father's Day", + "2035-06-24": "Day of Dew and Saint John", + "2035-07-06": "Statehood Day", + "2035-08-15": "Assumption Day", + "2035-11-01": "All Saints' Day", + "2035-11-02": "All Souls' Day", + "2035-12-24": "Christmas Eve", + "2035-12-25": "Christmas Day", + "2035-12-26": "Second Day of Christmas", + "2036-01-01": "New Year's Day", + "2036-02-16": "Day of Restoration of the State of Lithuania", + "2036-03-11": "Day of Restoration of Independence of Lithuania", + "2036-04-13": "Easter", + "2036-04-14": "Easter Monday", + "2036-05-01": "International Workers' Day", + "2036-05-04": "Mother's Day", + "2036-06-01": "Father's Day", + "2036-06-24": "Day of Dew and Saint John", + "2036-07-06": "Statehood Day", + "2036-08-15": "Assumption Day", + "2036-11-01": "All Saints' Day", + "2036-11-02": "All Souls' Day", + "2036-12-24": "Christmas Eve", + "2036-12-25": "Christmas Day", + "2036-12-26": "Second Day of Christmas", + "2037-01-01": "New Year's Day", + "2037-02-16": "Day of Restoration of the State of Lithuania", + "2037-03-11": "Day of Restoration of Independence of Lithuania", + "2037-04-05": "Easter", + "2037-04-06": "Easter Monday", + "2037-05-01": "International Workers' Day", + "2037-05-03": "Mother's Day", + "2037-06-07": "Father's Day", + "2037-06-24": "Day of Dew and Saint John", + "2037-07-06": "Statehood Day", + "2037-08-15": "Assumption Day", + "2037-11-01": "All Saints' Day", + "2037-11-02": "All Souls' Day", + "2037-12-24": "Christmas Eve", + "2037-12-25": "Christmas Day", + "2037-12-26": "Second Day of Christmas", + "2038-01-01": "New Year's Day", + "2038-02-16": "Day of Restoration of the State of Lithuania", + "2038-03-11": "Day of Restoration of Independence of Lithuania", + "2038-04-25": "Easter", + "2038-04-26": "Easter Monday", + "2038-05-01": "International Workers' Day", + "2038-05-02": "Mother's Day", + "2038-06-06": "Father's Day", + "2038-06-24": "Day of Dew and Saint John", + "2038-07-06": "Statehood Day", + "2038-08-15": "Assumption Day", + "2038-11-01": "All Saints' Day", + "2038-11-02": "All Souls' Day", + "2038-12-24": "Christmas Eve", + "2038-12-25": "Christmas Day", + "2038-12-26": "Second Day of Christmas", + "2039-01-01": "New Year's Day", + "2039-02-16": "Day of Restoration of the State of Lithuania", + "2039-03-11": "Day of Restoration of Independence of Lithuania", + "2039-04-10": "Easter", + "2039-04-11": "Easter Monday", + "2039-05-01": "International Workers' Day; Mother's Day", + "2039-06-05": "Father's Day", + "2039-06-24": "Day of Dew and Saint John", + "2039-07-06": "Statehood Day", + "2039-08-15": "Assumption Day", + "2039-11-01": "All Saints' Day", + "2039-11-02": "All Souls' Day", + "2039-12-24": "Christmas Eve", + "2039-12-25": "Christmas Day", + "2039-12-26": "Second Day of Christmas", + "2040-01-01": "New Year's Day", + "2040-02-16": "Day of Restoration of the State of Lithuania", + "2040-03-11": "Day of Restoration of Independence of Lithuania", + "2040-04-01": "Easter", + "2040-04-02": "Easter Monday", + "2040-05-01": "International Workers' Day", + "2040-05-06": "Mother's Day", + "2040-06-03": "Father's Day", + "2040-06-24": "Day of Dew and Saint John", + "2040-07-06": "Statehood Day", + "2040-08-15": "Assumption Day", + "2040-11-01": "All Saints' Day", + "2040-11-02": "All Souls' Day", + "2040-12-24": "Christmas Eve", + "2040-12-25": "Christmas Day", + "2040-12-26": "Second Day of Christmas", + "2041-01-01": "New Year's Day", + "2041-02-16": "Day of Restoration of the State of Lithuania", + "2041-03-11": "Day of Restoration of Independence of Lithuania", + "2041-04-21": "Easter", + "2041-04-22": "Easter Monday", + "2041-05-01": "International Workers' Day", + "2041-05-05": "Mother's Day", + "2041-06-02": "Father's Day", + "2041-06-24": "Day of Dew and Saint John", + "2041-07-06": "Statehood Day", + "2041-08-15": "Assumption Day", + "2041-11-01": "All Saints' Day", + "2041-11-02": "All Souls' Day", + "2041-12-24": "Christmas Eve", + "2041-12-25": "Christmas Day", + "2041-12-26": "Second Day of Christmas", + "2042-01-01": "New Year's Day", + "2042-02-16": "Day of Restoration of the State of Lithuania", + "2042-03-11": "Day of Restoration of Independence of Lithuania", + "2042-04-06": "Easter", + "2042-04-07": "Easter Monday", + "2042-05-01": "International Workers' Day", + "2042-05-04": "Mother's Day", + "2042-06-01": "Father's Day", + "2042-06-24": "Day of Dew and Saint John", + "2042-07-06": "Statehood Day", + "2042-08-15": "Assumption Day", + "2042-11-01": "All Saints' Day", + "2042-11-02": "All Souls' Day", + "2042-12-24": "Christmas Eve", + "2042-12-25": "Christmas Day", + "2042-12-26": "Second Day of Christmas", + "2043-01-01": "New Year's Day", + "2043-02-16": "Day of Restoration of the State of Lithuania", + "2043-03-11": "Day of Restoration of Independence of Lithuania", + "2043-03-29": "Easter", + "2043-03-30": "Easter Monday", + "2043-05-01": "International Workers' Day", + "2043-05-03": "Mother's Day", + "2043-06-07": "Father's Day", + "2043-06-24": "Day of Dew and Saint John", + "2043-07-06": "Statehood Day", + "2043-08-15": "Assumption Day", + "2043-11-01": "All Saints' Day", + "2043-11-02": "All Souls' Day", + "2043-12-24": "Christmas Eve", + "2043-12-25": "Christmas Day", + "2043-12-26": "Second Day of Christmas", + "2044-01-01": "New Year's Day", + "2044-02-16": "Day of Restoration of the State of Lithuania", + "2044-03-11": "Day of Restoration of Independence of Lithuania", + "2044-04-17": "Easter", + "2044-04-18": "Easter Monday", + "2044-05-01": "International Workers' Day; Mother's Day", + "2044-06-05": "Father's Day", + "2044-06-24": "Day of Dew and Saint John", + "2044-07-06": "Statehood Day", + "2044-08-15": "Assumption Day", + "2044-11-01": "All Saints' Day", + "2044-11-02": "All Souls' Day", + "2044-12-24": "Christmas Eve", + "2044-12-25": "Christmas Day", + "2044-12-26": "Second Day of Christmas", + "2045-01-01": "New Year's Day", + "2045-02-16": "Day of Restoration of the State of Lithuania", + "2045-03-11": "Day of Restoration of Independence of Lithuania", + "2045-04-09": "Easter", + "2045-04-10": "Easter Monday", + "2045-05-01": "International Workers' Day", + "2045-05-07": "Mother's Day", + "2045-06-04": "Father's Day", + "2045-06-24": "Day of Dew and Saint John", + "2045-07-06": "Statehood Day", + "2045-08-15": "Assumption Day", + "2045-11-01": "All Saints' Day", + "2045-11-02": "All Souls' Day", + "2045-12-24": "Christmas Eve", + "2045-12-25": "Christmas Day", + "2045-12-26": "Second Day of Christmas", + "2046-01-01": "New Year's Day", + "2046-02-16": "Day of Restoration of the State of Lithuania", + "2046-03-11": "Day of Restoration of Independence of Lithuania", + "2046-03-25": "Easter", + "2046-03-26": "Easter Monday", + "2046-05-01": "International Workers' Day", + "2046-05-06": "Mother's Day", + "2046-06-03": "Father's Day", + "2046-06-24": "Day of Dew and Saint John", + "2046-07-06": "Statehood Day", + "2046-08-15": "Assumption Day", + "2046-11-01": "All Saints' Day", + "2046-11-02": "All Souls' Day", + "2046-12-24": "Christmas Eve", + "2046-12-25": "Christmas Day", + "2046-12-26": "Second Day of Christmas", + "2047-01-01": "New Year's Day", + "2047-02-16": "Day of Restoration of the State of Lithuania", + "2047-03-11": "Day of Restoration of Independence of Lithuania", + "2047-04-14": "Easter", + "2047-04-15": "Easter Monday", + "2047-05-01": "International Workers' Day", + "2047-05-05": "Mother's Day", + "2047-06-02": "Father's Day", + "2047-06-24": "Day of Dew and Saint John", + "2047-07-06": "Statehood Day", + "2047-08-15": "Assumption Day", + "2047-11-01": "All Saints' Day", + "2047-11-02": "All Souls' Day", + "2047-12-24": "Christmas Eve", + "2047-12-25": "Christmas Day", + "2047-12-26": "Second Day of Christmas", + "2048-01-01": "New Year's Day", + "2048-02-16": "Day of Restoration of the State of Lithuania", + "2048-03-11": "Day of Restoration of Independence of Lithuania", + "2048-04-05": "Easter", + "2048-04-06": "Easter Monday", + "2048-05-01": "International Workers' Day", + "2048-05-03": "Mother's Day", + "2048-06-07": "Father's Day", + "2048-06-24": "Day of Dew and Saint John", + "2048-07-06": "Statehood Day", + "2048-08-15": "Assumption Day", + "2048-11-01": "All Saints' Day", + "2048-11-02": "All Souls' Day", + "2048-12-24": "Christmas Eve", + "2048-12-25": "Christmas Day", + "2048-12-26": "Second Day of Christmas", + "2049-01-01": "New Year's Day", + "2049-02-16": "Day of Restoration of the State of Lithuania", + "2049-03-11": "Day of Restoration of Independence of Lithuania", + "2049-04-18": "Easter", + "2049-04-19": "Easter Monday", + "2049-05-01": "International Workers' Day", + "2049-05-02": "Mother's Day", + "2049-06-06": "Father's Day", + "2049-06-24": "Day of Dew and Saint John", + "2049-07-06": "Statehood Day", + "2049-08-15": "Assumption Day", + "2049-11-01": "All Saints' Day", + "2049-11-02": "All Souls' Day", + "2049-12-24": "Christmas Eve", + "2049-12-25": "Christmas Day", + "2049-12-26": "Second Day of Christmas", + "2050-01-01": "New Year's Day", + "2050-02-16": "Day of Restoration of the State of Lithuania", + "2050-03-11": "Day of Restoration of Independence of Lithuania", + "2050-04-10": "Easter", + "2050-04-11": "Easter Monday", + "2050-05-01": "International Workers' Day; Mother's Day", + "2050-06-05": "Father's Day", + "2050-06-24": "Day of Dew and Saint John", + "2050-07-06": "Statehood Day", + "2050-08-15": "Assumption Day", + "2050-11-01": "All Saints' Day", + "2050-11-02": "All Souls' Day", + "2050-12-24": "Christmas Eve", + "2050-12-25": "Christmas Day", + "2050-12-26": "Second Day of Christmas" +} diff --git a/snapshots/countries/LU.json b/snapshots/countries/LU.json new file mode 100644 index 000000000..985ea7b1f --- /dev/null +++ b/snapshots/countries/LU.json @@ -0,0 +1,1042 @@ +{ + "1950-01-01": "New Year's Day", + "1950-04-10": "Easter Monday", + "1950-05-01": "Labor Day", + "1950-05-18": "Ascension Day", + "1950-05-29": "Whit Monday", + "1950-06-23": "National Day", + "1950-08-15": "Assumption Day", + "1950-11-01": "All Saints' Day", + "1950-12-25": "Christmas Day", + "1950-12-26": "St. Stephen's Day", + "1951-01-01": "New Year's Day", + "1951-03-26": "Easter Monday", + "1951-05-01": "Labor Day", + "1951-05-03": "Ascension Day", + "1951-05-14": "Whit Monday", + "1951-06-23": "National Day", + "1951-08-15": "Assumption Day", + "1951-11-01": "All Saints' Day", + "1951-12-25": "Christmas Day", + "1951-12-26": "St. Stephen's Day", + "1952-01-01": "New Year's Day", + "1952-04-14": "Easter Monday", + "1952-05-01": "Labor Day", + "1952-05-22": "Ascension Day", + "1952-06-02": "Whit Monday", + "1952-06-23": "National Day", + "1952-08-15": "Assumption Day", + "1952-11-01": "All Saints' Day", + "1952-12-25": "Christmas Day", + "1952-12-26": "St. Stephen's Day", + "1953-01-01": "New Year's Day", + "1953-04-06": "Easter Monday", + "1953-05-01": "Labor Day", + "1953-05-14": "Ascension Day", + "1953-05-25": "Whit Monday", + "1953-06-23": "National Day", + "1953-08-15": "Assumption Day", + "1953-11-01": "All Saints' Day", + "1953-12-25": "Christmas Day", + "1953-12-26": "St. Stephen's Day", + "1954-01-01": "New Year's Day", + "1954-04-19": "Easter Monday", + "1954-05-01": "Labor Day", + "1954-05-27": "Ascension Day", + "1954-06-07": "Whit Monday", + "1954-06-23": "National Day", + "1954-08-15": "Assumption Day", + "1954-11-01": "All Saints' Day", + "1954-12-25": "Christmas Day", + "1954-12-26": "St. Stephen's Day", + "1955-01-01": "New Year's Day", + "1955-04-11": "Easter Monday", + "1955-05-01": "Labor Day", + "1955-05-19": "Ascension Day", + "1955-05-30": "Whit Monday", + "1955-06-23": "National Day", + "1955-08-15": "Assumption Day", + "1955-11-01": "All Saints' Day", + "1955-12-25": "Christmas Day", + "1955-12-26": "St. Stephen's Day", + "1956-01-01": "New Year's Day", + "1956-04-02": "Easter Monday", + "1956-05-01": "Labor Day", + "1956-05-10": "Ascension Day", + "1956-05-21": "Whit Monday", + "1956-06-23": "National Day", + "1956-08-15": "Assumption Day", + "1956-11-01": "All Saints' Day", + "1956-12-25": "Christmas Day", + "1956-12-26": "St. Stephen's Day", + "1957-01-01": "New Year's Day", + "1957-04-22": "Easter Monday", + "1957-05-01": "Labor Day", + "1957-05-30": "Ascension Day", + "1957-06-10": "Whit Monday", + "1957-06-23": "National Day", + "1957-08-15": "Assumption Day", + "1957-11-01": "All Saints' Day", + "1957-12-25": "Christmas Day", + "1957-12-26": "St. Stephen's Day", + "1958-01-01": "New Year's Day", + "1958-04-07": "Easter Monday", + "1958-05-01": "Labor Day", + "1958-05-15": "Ascension Day", + "1958-05-26": "Whit Monday", + "1958-06-23": "National Day", + "1958-08-15": "Assumption Day", + "1958-11-01": "All Saints' Day", + "1958-12-25": "Christmas Day", + "1958-12-26": "St. Stephen's Day", + "1959-01-01": "New Year's Day", + "1959-03-30": "Easter Monday", + "1959-05-01": "Labor Day", + "1959-05-07": "Ascension Day", + "1959-05-18": "Whit Monday", + "1959-06-23": "National Day", + "1959-08-15": "Assumption Day", + "1959-11-01": "All Saints' Day", + "1959-12-25": "Christmas Day", + "1959-12-26": "St. Stephen's Day", + "1960-01-01": "New Year's Day", + "1960-04-18": "Easter Monday", + "1960-05-01": "Labor Day", + "1960-05-26": "Ascension Day", + "1960-06-06": "Whit Monday", + "1960-06-23": "National Day", + "1960-08-15": "Assumption Day", + "1960-11-01": "All Saints' Day", + "1960-12-25": "Christmas Day", + "1960-12-26": "St. Stephen's Day", + "1961-01-01": "New Year's Day", + "1961-04-03": "Easter Monday", + "1961-05-01": "Labor Day", + "1961-05-11": "Ascension Day", + "1961-05-22": "Whit Monday", + "1961-06-23": "National Day", + "1961-08-15": "Assumption Day", + "1961-11-01": "All Saints' Day", + "1961-12-25": "Christmas Day", + "1961-12-26": "St. Stephen's Day", + "1962-01-01": "New Year's Day", + "1962-04-23": "Easter Monday", + "1962-05-01": "Labor Day", + "1962-05-31": "Ascension Day", + "1962-06-11": "Whit Monday", + "1962-06-23": "National Day", + "1962-08-15": "Assumption Day", + "1962-11-01": "All Saints' Day", + "1962-12-25": "Christmas Day", + "1962-12-26": "St. Stephen's Day", + "1963-01-01": "New Year's Day", + "1963-04-15": "Easter Monday", + "1963-05-01": "Labor Day", + "1963-05-23": "Ascension Day", + "1963-06-03": "Whit Monday", + "1963-06-23": "National Day", + "1963-08-15": "Assumption Day", + "1963-11-01": "All Saints' Day", + "1963-12-25": "Christmas Day", + "1963-12-26": "St. Stephen's Day", + "1964-01-01": "New Year's Day", + "1964-03-30": "Easter Monday", + "1964-05-01": "Labor Day", + "1964-05-07": "Ascension Day", + "1964-05-18": "Whit Monday", + "1964-06-23": "National Day", + "1964-08-15": "Assumption Day", + "1964-11-01": "All Saints' Day", + "1964-12-25": "Christmas Day", + "1964-12-26": "St. Stephen's Day", + "1965-01-01": "New Year's Day", + "1965-04-19": "Easter Monday", + "1965-05-01": "Labor Day", + "1965-05-27": "Ascension Day", + "1965-06-07": "Whit Monday", + "1965-06-23": "National Day", + "1965-08-15": "Assumption Day", + "1965-11-01": "All Saints' Day", + "1965-12-25": "Christmas Day", + "1965-12-26": "St. Stephen's Day", + "1966-01-01": "New Year's Day", + "1966-04-11": "Easter Monday", + "1966-05-01": "Labor Day", + "1966-05-19": "Ascension Day", + "1966-05-30": "Whit Monday", + "1966-06-23": "National Day", + "1966-08-15": "Assumption Day", + "1966-11-01": "All Saints' Day", + "1966-12-25": "Christmas Day", + "1966-12-26": "St. Stephen's Day", + "1967-01-01": "New Year's Day", + "1967-03-27": "Easter Monday", + "1967-05-01": "Labor Day", + "1967-05-04": "Ascension Day", + "1967-05-15": "Whit Monday", + "1967-06-23": "National Day", + "1967-08-15": "Assumption Day", + "1967-11-01": "All Saints' Day", + "1967-12-25": "Christmas Day", + "1967-12-26": "St. Stephen's Day", + "1968-01-01": "New Year's Day", + "1968-04-15": "Easter Monday", + "1968-05-01": "Labor Day", + "1968-05-23": "Ascension Day", + "1968-06-03": "Whit Monday", + "1968-06-23": "National Day", + "1968-08-15": "Assumption Day", + "1968-11-01": "All Saints' Day", + "1968-12-25": "Christmas Day", + "1968-12-26": "St. Stephen's Day", + "1969-01-01": "New Year's Day", + "1969-04-07": "Easter Monday", + "1969-05-01": "Labor Day", + "1969-05-15": "Ascension Day", + "1969-05-26": "Whit Monday", + "1969-06-23": "National Day", + "1969-08-15": "Assumption Day", + "1969-11-01": "All Saints' Day", + "1969-12-25": "Christmas Day", + "1969-12-26": "St. Stephen's Day", + "1970-01-01": "New Year's Day", + "1970-03-30": "Easter Monday", + "1970-05-01": "Labor Day", + "1970-05-07": "Ascension Day", + "1970-05-18": "Whit Monday", + "1970-06-23": "National Day", + "1970-08-15": "Assumption Day", + "1970-11-01": "All Saints' Day", + "1970-12-25": "Christmas Day", + "1970-12-26": "St. Stephen's Day", + "1971-01-01": "New Year's Day", + "1971-04-12": "Easter Monday", + "1971-05-01": "Labor Day", + "1971-05-20": "Ascension Day", + "1971-05-31": "Whit Monday", + "1971-06-23": "National Day", + "1971-08-15": "Assumption Day", + "1971-11-01": "All Saints' Day", + "1971-12-25": "Christmas Day", + "1971-12-26": "St. Stephen's Day", + "1972-01-01": "New Year's Day", + "1972-04-03": "Easter Monday", + "1972-05-01": "Labor Day", + "1972-05-11": "Ascension Day", + "1972-05-22": "Whit Monday", + "1972-06-23": "National Day", + "1972-08-15": "Assumption Day", + "1972-11-01": "All Saints' Day", + "1972-12-25": "Christmas Day", + "1972-12-26": "St. Stephen's Day", + "1973-01-01": "New Year's Day", + "1973-04-23": "Easter Monday", + "1973-05-01": "Labor Day", + "1973-05-31": "Ascension Day", + "1973-06-11": "Whit Monday", + "1973-06-23": "National Day", + "1973-08-15": "Assumption Day", + "1973-11-01": "All Saints' Day", + "1973-12-25": "Christmas Day", + "1973-12-26": "St. Stephen's Day", + "1974-01-01": "New Year's Day", + "1974-04-15": "Easter Monday", + "1974-05-01": "Labor Day", + "1974-05-23": "Ascension Day", + "1974-06-03": "Whit Monday", + "1974-06-23": "National Day", + "1974-08-15": "Assumption Day", + "1974-11-01": "All Saints' Day", + "1974-12-25": "Christmas Day", + "1974-12-26": "St. Stephen's Day", + "1975-01-01": "New Year's Day", + "1975-03-31": "Easter Monday", + "1975-05-01": "Labor Day", + "1975-05-08": "Ascension Day", + "1975-05-19": "Whit Monday", + "1975-06-23": "National Day", + "1975-08-15": "Assumption Day", + "1975-11-01": "All Saints' Day", + "1975-12-25": "Christmas Day", + "1975-12-26": "St. Stephen's Day", + "1976-01-01": "New Year's Day", + "1976-04-19": "Easter Monday", + "1976-05-01": "Labor Day", + "1976-05-27": "Ascension Day", + "1976-06-07": "Whit Monday", + "1976-06-23": "National Day", + "1976-08-15": "Assumption Day", + "1976-11-01": "All Saints' Day", + "1976-12-25": "Christmas Day", + "1976-12-26": "St. Stephen's Day", + "1977-01-01": "New Year's Day", + "1977-04-11": "Easter Monday", + "1977-05-01": "Labor Day", + "1977-05-19": "Ascension Day", + "1977-05-30": "Whit Monday", + "1977-06-23": "National Day", + "1977-08-15": "Assumption Day", + "1977-11-01": "All Saints' Day", + "1977-12-25": "Christmas Day", + "1977-12-26": "St. Stephen's Day", + "1978-01-01": "New Year's Day", + "1978-03-27": "Easter Monday", + "1978-05-01": "Labor Day", + "1978-05-04": "Ascension Day", + "1978-05-15": "Whit Monday", + "1978-06-23": "National Day", + "1978-08-15": "Assumption Day", + "1978-11-01": "All Saints' Day", + "1978-12-25": "Christmas Day", + "1978-12-26": "St. Stephen's Day", + "1979-01-01": "New Year's Day", + "1979-04-16": "Easter Monday", + "1979-05-01": "Labor Day", + "1979-05-24": "Ascension Day", + "1979-06-04": "Whit Monday", + "1979-06-23": "National Day", + "1979-08-15": "Assumption Day", + "1979-11-01": "All Saints' Day", + "1979-12-25": "Christmas Day", + "1979-12-26": "St. Stephen's Day", + "1980-01-01": "New Year's Day", + "1980-04-07": "Easter Monday", + "1980-05-01": "Labor Day", + "1980-05-15": "Ascension Day", + "1980-05-26": "Whit Monday", + "1980-06-23": "National Day", + "1980-08-15": "Assumption Day", + "1980-11-01": "All Saints' Day", + "1980-12-25": "Christmas Day", + "1980-12-26": "St. Stephen's Day", + "1981-01-01": "New Year's Day", + "1981-04-20": "Easter Monday", + "1981-05-01": "Labor Day", + "1981-05-28": "Ascension Day", + "1981-06-08": "Whit Monday", + "1981-06-23": "National Day", + "1981-08-15": "Assumption Day", + "1981-11-01": "All Saints' Day", + "1981-12-25": "Christmas Day", + "1981-12-26": "St. Stephen's Day", + "1982-01-01": "New Year's Day", + "1982-04-12": "Easter Monday", + "1982-05-01": "Labor Day", + "1982-05-20": "Ascension Day", + "1982-05-31": "Whit Monday", + "1982-06-23": "National Day", + "1982-08-15": "Assumption Day", + "1982-11-01": "All Saints' Day", + "1982-12-25": "Christmas Day", + "1982-12-26": "St. Stephen's Day", + "1983-01-01": "New Year's Day", + "1983-04-04": "Easter Monday", + "1983-05-01": "Labor Day", + "1983-05-12": "Ascension Day", + "1983-05-23": "Whit Monday", + "1983-06-23": "National Day", + "1983-08-15": "Assumption Day", + "1983-11-01": "All Saints' Day", + "1983-12-25": "Christmas Day", + "1983-12-26": "St. Stephen's Day", + "1984-01-01": "New Year's Day", + "1984-04-23": "Easter Monday", + "1984-05-01": "Labor Day", + "1984-05-31": "Ascension Day", + "1984-06-11": "Whit Monday", + "1984-06-23": "National Day", + "1984-08-15": "Assumption Day", + "1984-11-01": "All Saints' Day", + "1984-12-25": "Christmas Day", + "1984-12-26": "St. Stephen's Day", + "1985-01-01": "New Year's Day", + "1985-04-08": "Easter Monday", + "1985-05-01": "Labor Day", + "1985-05-16": "Ascension Day", + "1985-05-27": "Whit Monday", + "1985-06-23": "National Day", + "1985-08-15": "Assumption Day", + "1985-11-01": "All Saints' Day", + "1985-12-25": "Christmas Day", + "1985-12-26": "St. Stephen's Day", + "1986-01-01": "New Year's Day", + "1986-03-31": "Easter Monday", + "1986-05-01": "Labor Day", + "1986-05-08": "Ascension Day", + "1986-05-19": "Whit Monday", + "1986-06-23": "National Day", + "1986-08-15": "Assumption Day", + "1986-11-01": "All Saints' Day", + "1986-12-25": "Christmas Day", + "1986-12-26": "St. Stephen's Day", + "1987-01-01": "New Year's Day", + "1987-04-20": "Easter Monday", + "1987-05-01": "Labor Day", + "1987-05-28": "Ascension Day", + "1987-06-08": "Whit Monday", + "1987-06-23": "National Day", + "1987-08-15": "Assumption Day", + "1987-11-01": "All Saints' Day", + "1987-12-25": "Christmas Day", + "1987-12-26": "St. Stephen's Day", + "1988-01-01": "New Year's Day", + "1988-04-04": "Easter Monday", + "1988-05-01": "Labor Day", + "1988-05-12": "Ascension Day", + "1988-05-23": "Whit Monday", + "1988-06-23": "National Day", + "1988-08-15": "Assumption Day", + "1988-11-01": "All Saints' Day", + "1988-12-25": "Christmas Day", + "1988-12-26": "St. Stephen's Day", + "1989-01-01": "New Year's Day", + "1989-03-27": "Easter Monday", + "1989-05-01": "Labor Day", + "1989-05-04": "Ascension Day", + "1989-05-15": "Whit Monday", + "1989-06-23": "National Day", + "1989-08-15": "Assumption Day", + "1989-11-01": "All Saints' Day", + "1989-12-25": "Christmas Day", + "1989-12-26": "St. Stephen's Day", + "1990-01-01": "New Year's Day", + "1990-04-16": "Easter Monday", + "1990-05-01": "Labor Day", + "1990-05-24": "Ascension Day", + "1990-06-04": "Whit Monday", + "1990-06-23": "National Day", + "1990-08-15": "Assumption Day", + "1990-11-01": "All Saints' Day", + "1990-12-25": "Christmas Day", + "1990-12-26": "St. Stephen's Day", + "1991-01-01": "New Year's Day", + "1991-04-01": "Easter Monday", + "1991-05-01": "Labor Day", + "1991-05-09": "Ascension Day", + "1991-05-20": "Whit Monday", + "1991-06-23": "National Day", + "1991-08-15": "Assumption Day", + "1991-11-01": "All Saints' Day", + "1991-12-25": "Christmas Day", + "1991-12-26": "St. Stephen's Day", + "1992-01-01": "New Year's Day", + "1992-04-20": "Easter Monday", + "1992-05-01": "Labor Day", + "1992-05-28": "Ascension Day", + "1992-06-08": "Whit Monday", + "1992-06-23": "National Day", + "1992-08-15": "Assumption Day", + "1992-11-01": "All Saints' Day", + "1992-12-25": "Christmas Day", + "1992-12-26": "St. Stephen's Day", + "1993-01-01": "New Year's Day", + "1993-04-12": "Easter Monday", + "1993-05-01": "Labor Day", + "1993-05-20": "Ascension Day", + "1993-05-31": "Whit Monday", + "1993-06-23": "National Day", + "1993-08-15": "Assumption Day", + "1993-11-01": "All Saints' Day", + "1993-12-25": "Christmas Day", + "1993-12-26": "St. Stephen's Day", + "1994-01-01": "New Year's Day", + "1994-04-04": "Easter Monday", + "1994-05-01": "Labor Day", + "1994-05-12": "Ascension Day", + "1994-05-23": "Whit Monday", + "1994-06-23": "National Day", + "1994-08-15": "Assumption Day", + "1994-11-01": "All Saints' Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "St. Stephen's Day", + "1995-01-01": "New Year's Day", + "1995-04-17": "Easter Monday", + "1995-05-01": "Labor Day", + "1995-05-25": "Ascension Day", + "1995-06-05": "Whit Monday", + "1995-06-23": "National Day", + "1995-08-15": "Assumption Day", + "1995-11-01": "All Saints' Day", + "1995-12-25": "Christmas Day", + "1995-12-26": "St. Stephen's Day", + "1996-01-01": "New Year's Day", + "1996-04-08": "Easter Monday", + "1996-05-01": "Labor Day", + "1996-05-16": "Ascension Day", + "1996-05-27": "Whit Monday", + "1996-06-23": "National Day", + "1996-08-15": "Assumption Day", + "1996-11-01": "All Saints' Day", + "1996-12-25": "Christmas Day", + "1996-12-26": "St. Stephen's Day", + "1997-01-01": "New Year's Day", + "1997-03-31": "Easter Monday", + "1997-05-01": "Labor Day", + "1997-05-08": "Ascension Day", + "1997-05-19": "Whit Monday", + "1997-06-23": "National Day", + "1997-08-15": "Assumption Day", + "1997-11-01": "All Saints' Day", + "1997-12-25": "Christmas Day", + "1997-12-26": "St. Stephen's Day", + "1998-01-01": "New Year's Day", + "1998-04-13": "Easter Monday", + "1998-05-01": "Labor Day", + "1998-05-21": "Ascension Day", + "1998-06-01": "Whit Monday", + "1998-06-23": "National Day", + "1998-08-15": "Assumption Day", + "1998-11-01": "All Saints' Day", + "1998-12-25": "Christmas Day", + "1998-12-26": "St. Stephen's Day", + "1999-01-01": "New Year's Day", + "1999-04-05": "Easter Monday", + "1999-05-01": "Labor Day", + "1999-05-13": "Ascension Day", + "1999-05-24": "Whit Monday", + "1999-06-23": "National Day", + "1999-08-15": "Assumption Day", + "1999-11-01": "All Saints' Day", + "1999-12-25": "Christmas Day", + "1999-12-26": "St. Stephen's Day", + "2000-01-01": "New Year's Day", + "2000-04-24": "Easter Monday", + "2000-05-01": "Labor Day", + "2000-06-01": "Ascension Day", + "2000-06-12": "Whit Monday", + "2000-06-23": "National Day", + "2000-08-15": "Assumption Day", + "2000-11-01": "All Saints' Day", + "2000-12-25": "Christmas Day", + "2000-12-26": "St. Stephen's Day", + "2001-01-01": "New Year's Day", + "2001-04-16": "Easter Monday", + "2001-05-01": "Labor Day", + "2001-05-24": "Ascension Day", + "2001-06-04": "Whit Monday", + "2001-06-23": "National Day", + "2001-08-15": "Assumption Day", + "2001-11-01": "All Saints' Day", + "2001-12-25": "Christmas Day", + "2001-12-26": "St. Stephen's Day", + "2002-01-01": "New Year's Day", + "2002-04-01": "Easter Monday", + "2002-05-01": "Labor Day", + "2002-05-09": "Ascension Day", + "2002-05-20": "Whit Monday", + "2002-06-23": "National Day", + "2002-08-15": "Assumption Day", + "2002-11-01": "All Saints' Day", + "2002-12-25": "Christmas Day", + "2002-12-26": "St. Stephen's Day", + "2003-01-01": "New Year's Day", + "2003-04-21": "Easter Monday", + "2003-05-01": "Labor Day", + "2003-05-29": "Ascension Day", + "2003-06-09": "Whit Monday", + "2003-06-23": "National Day", + "2003-08-15": "Assumption Day", + "2003-11-01": "All Saints' Day", + "2003-12-25": "Christmas Day", + "2003-12-26": "St. Stephen's Day", + "2004-01-01": "New Year's Day", + "2004-04-12": "Easter Monday", + "2004-05-01": "Labor Day", + "2004-05-20": "Ascension Day", + "2004-05-31": "Whit Monday", + "2004-06-23": "National Day", + "2004-08-15": "Assumption Day", + "2004-11-01": "All Saints' Day", + "2004-12-25": "Christmas Day", + "2004-12-26": "St. Stephen's Day", + "2005-01-01": "New Year's Day", + "2005-03-28": "Easter Monday", + "2005-05-01": "Labor Day", + "2005-05-05": "Ascension Day", + "2005-05-16": "Whit Monday", + "2005-06-23": "National Day", + "2005-08-15": "Assumption Day", + "2005-11-01": "All Saints' Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "St. Stephen's Day", + "2006-01-01": "New Year's Day", + "2006-04-17": "Easter Monday", + "2006-05-01": "Labor Day", + "2006-05-25": "Ascension Day", + "2006-06-05": "Whit Monday", + "2006-06-23": "National Day", + "2006-08-15": "Assumption Day", + "2006-11-01": "All Saints' Day", + "2006-12-25": "Christmas Day", + "2006-12-26": "St. Stephen's Day", + "2007-01-01": "New Year's Day", + "2007-04-09": "Easter Monday", + "2007-05-01": "Labor Day", + "2007-05-17": "Ascension Day", + "2007-05-28": "Whit Monday", + "2007-06-23": "National Day", + "2007-08-15": "Assumption Day", + "2007-11-01": "All Saints' Day", + "2007-12-25": "Christmas Day", + "2007-12-26": "St. Stephen's Day", + "2008-01-01": "New Year's Day", + "2008-03-24": "Easter Monday", + "2008-05-01": "Ascension Day; Labor Day", + "2008-05-12": "Whit Monday", + "2008-06-23": "National Day", + "2008-08-15": "Assumption Day", + "2008-11-01": "All Saints' Day", + "2008-12-25": "Christmas Day", + "2008-12-26": "St. Stephen's Day", + "2009-01-01": "New Year's Day", + "2009-04-13": "Easter Monday", + "2009-05-01": "Labor Day", + "2009-05-21": "Ascension Day", + "2009-06-01": "Whit Monday", + "2009-06-23": "National Day", + "2009-08-15": "Assumption Day", + "2009-11-01": "All Saints' Day", + "2009-12-25": "Christmas Day", + "2009-12-26": "St. Stephen's Day", + "2010-01-01": "New Year's Day", + "2010-04-05": "Easter Monday", + "2010-05-01": "Labor Day", + "2010-05-13": "Ascension Day", + "2010-05-24": "Whit Monday", + "2010-06-23": "National Day", + "2010-08-15": "Assumption Day", + "2010-11-01": "All Saints' Day", + "2010-12-25": "Christmas Day", + "2010-12-26": "St. Stephen's Day", + "2011-01-01": "New Year's Day", + "2011-04-25": "Easter Monday", + "2011-05-01": "Labor Day", + "2011-06-02": "Ascension Day", + "2011-06-13": "Whit Monday", + "2011-06-23": "National Day", + "2011-08-15": "Assumption Day", + "2011-11-01": "All Saints' Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "St. Stephen's Day", + "2012-01-01": "New Year's Day", + "2012-04-09": "Easter Monday", + "2012-05-01": "Labor Day", + "2012-05-17": "Ascension Day", + "2012-05-28": "Whit Monday", + "2012-06-23": "National Day", + "2012-08-15": "Assumption Day", + "2012-11-01": "All Saints' Day", + "2012-12-25": "Christmas Day", + "2012-12-26": "St. Stephen's Day", + "2013-01-01": "New Year's Day", + "2013-04-01": "Easter Monday", + "2013-05-01": "Labor Day", + "2013-05-09": "Ascension Day", + "2013-05-20": "Whit Monday", + "2013-06-23": "National Day", + "2013-08-15": "Assumption Day", + "2013-11-01": "All Saints' Day", + "2013-12-25": "Christmas Day", + "2013-12-26": "St. Stephen's Day", + "2014-01-01": "New Year's Day", + "2014-04-21": "Easter Monday", + "2014-05-01": "Labor Day", + "2014-05-29": "Ascension Day", + "2014-06-09": "Whit Monday", + "2014-06-23": "National Day", + "2014-08-15": "Assumption Day", + "2014-11-01": "All Saints' Day", + "2014-12-25": "Christmas Day", + "2014-12-26": "St. Stephen's Day", + "2015-01-01": "New Year's Day", + "2015-04-06": "Easter Monday", + "2015-05-01": "Labor Day", + "2015-05-14": "Ascension Day", + "2015-05-25": "Whit Monday", + "2015-06-23": "National Day", + "2015-08-15": "Assumption Day", + "2015-11-01": "All Saints' Day", + "2015-12-25": "Christmas Day", + "2015-12-26": "St. Stephen's Day", + "2016-01-01": "New Year's Day", + "2016-03-28": "Easter Monday", + "2016-05-01": "Labor Day", + "2016-05-05": "Ascension Day", + "2016-05-16": "Whit Monday", + "2016-06-23": "National Day", + "2016-08-15": "Assumption Day", + "2016-11-01": "All Saints' Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "St. Stephen's Day", + "2017-01-01": "New Year's Day", + "2017-04-17": "Easter Monday", + "2017-05-01": "Labor Day", + "2017-05-25": "Ascension Day", + "2017-06-05": "Whit Monday", + "2017-06-23": "National Day", + "2017-08-15": "Assumption Day", + "2017-11-01": "All Saints' Day", + "2017-12-25": "Christmas Day", + "2017-12-26": "St. Stephen's Day", + "2018-01-01": "New Year's Day", + "2018-04-02": "Easter Monday", + "2018-05-01": "Labor Day", + "2018-05-10": "Ascension Day", + "2018-05-21": "Whit Monday", + "2018-06-23": "National Day", + "2018-08-15": "Assumption Day", + "2018-11-01": "All Saints' Day", + "2018-12-25": "Christmas Day", + "2018-12-26": "St. Stephen's Day", + "2019-01-01": "New Year's Day", + "2019-04-22": "Easter Monday", + "2019-05-01": "Labor Day", + "2019-05-09": "Europe Day", + "2019-05-30": "Ascension Day", + "2019-06-10": "Whit Monday", + "2019-06-23": "National Day", + "2019-08-15": "Assumption Day", + "2019-11-01": "All Saints' Day", + "2019-12-25": "Christmas Day", + "2019-12-26": "St. Stephen's Day", + "2020-01-01": "New Year's Day", + "2020-04-13": "Easter Monday", + "2020-05-01": "Labor Day", + "2020-05-09": "Europe Day", + "2020-05-21": "Ascension Day", + "2020-06-01": "Whit Monday", + "2020-06-23": "National Day", + "2020-08-15": "Assumption Day", + "2020-11-01": "All Saints' Day", + "2020-12-25": "Christmas Day", + "2020-12-26": "St. Stephen's Day", + "2021-01-01": "New Year's Day", + "2021-04-05": "Easter Monday", + "2021-05-01": "Labor Day", + "2021-05-09": "Europe Day", + "2021-05-13": "Ascension Day", + "2021-05-24": "Whit Monday", + "2021-06-23": "National Day", + "2021-08-15": "Assumption Day", + "2021-11-01": "All Saints' Day", + "2021-12-25": "Christmas Day", + "2021-12-26": "St. Stephen's Day", + "2022-01-01": "New Year's Day", + "2022-04-18": "Easter Monday", + "2022-05-01": "Labor Day", + "2022-05-09": "Europe Day", + "2022-05-26": "Ascension Day", + "2022-06-06": "Whit Monday", + "2022-06-23": "National Day", + "2022-08-15": "Assumption Day", + "2022-11-01": "All Saints' Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "St. Stephen's Day", + "2023-01-01": "New Year's Day", + "2023-04-10": "Easter Monday", + "2023-05-01": "Labor Day", + "2023-05-09": "Europe Day", + "2023-05-18": "Ascension Day", + "2023-05-29": "Whit Monday", + "2023-06-23": "National Day", + "2023-08-15": "Assumption Day", + "2023-11-01": "All Saints' Day", + "2023-12-25": "Christmas Day", + "2023-12-26": "St. Stephen's Day", + "2024-01-01": "New Year's Day", + "2024-04-01": "Easter Monday", + "2024-05-01": "Labor Day", + "2024-05-09": "Ascension Day; Europe Day", + "2024-05-20": "Whit Monday", + "2024-06-23": "National Day", + "2024-08-15": "Assumption Day", + "2024-11-01": "All Saints' Day", + "2024-12-25": "Christmas Day", + "2024-12-26": "St. Stephen's Day", + "2025-01-01": "New Year's Day", + "2025-04-21": "Easter Monday", + "2025-05-01": "Labor Day", + "2025-05-09": "Europe Day", + "2025-05-29": "Ascension Day", + "2025-06-09": "Whit Monday", + "2025-06-23": "National Day", + "2025-08-15": "Assumption Day", + "2025-11-01": "All Saints' Day", + "2025-12-25": "Christmas Day", + "2025-12-26": "St. Stephen's Day", + "2026-01-01": "New Year's Day", + "2026-04-06": "Easter Monday", + "2026-05-01": "Labor Day", + "2026-05-09": "Europe Day", + "2026-05-14": "Ascension Day", + "2026-05-25": "Whit Monday", + "2026-06-23": "National Day", + "2026-08-15": "Assumption Day", + "2026-11-01": "All Saints' Day", + "2026-12-25": "Christmas Day", + "2026-12-26": "St. Stephen's Day", + "2027-01-01": "New Year's Day", + "2027-03-29": "Easter Monday", + "2027-05-01": "Labor Day", + "2027-05-06": "Ascension Day", + "2027-05-09": "Europe Day", + "2027-05-17": "Whit Monday", + "2027-06-23": "National Day", + "2027-08-15": "Assumption Day", + "2027-11-01": "All Saints' Day", + "2027-12-25": "Christmas Day", + "2027-12-26": "St. Stephen's Day", + "2028-01-01": "New Year's Day", + "2028-04-17": "Easter Monday", + "2028-05-01": "Labor Day", + "2028-05-09": "Europe Day", + "2028-05-25": "Ascension Day", + "2028-06-05": "Whit Monday", + "2028-06-23": "National Day", + "2028-08-15": "Assumption Day", + "2028-11-01": "All Saints' Day", + "2028-12-25": "Christmas Day", + "2028-12-26": "St. Stephen's Day", + "2029-01-01": "New Year's Day", + "2029-04-02": "Easter Monday", + "2029-05-01": "Labor Day", + "2029-05-09": "Europe Day", + "2029-05-10": "Ascension Day", + "2029-05-21": "Whit Monday", + "2029-06-23": "National Day", + "2029-08-15": "Assumption Day", + "2029-11-01": "All Saints' Day", + "2029-12-25": "Christmas Day", + "2029-12-26": "St. Stephen's Day", + "2030-01-01": "New Year's Day", + "2030-04-22": "Easter Monday", + "2030-05-01": "Labor Day", + "2030-05-09": "Europe Day", + "2030-05-30": "Ascension Day", + "2030-06-10": "Whit Monday", + "2030-06-23": "National Day", + "2030-08-15": "Assumption Day", + "2030-11-01": "All Saints' Day", + "2030-12-25": "Christmas Day", + "2030-12-26": "St. Stephen's Day", + "2031-01-01": "New Year's Day", + "2031-04-14": "Easter Monday", + "2031-05-01": "Labor Day", + "2031-05-09": "Europe Day", + "2031-05-22": "Ascension Day", + "2031-06-02": "Whit Monday", + "2031-06-23": "National Day", + "2031-08-15": "Assumption Day", + "2031-11-01": "All Saints' Day", + "2031-12-25": "Christmas Day", + "2031-12-26": "St. Stephen's Day", + "2032-01-01": "New Year's Day", + "2032-03-29": "Easter Monday", + "2032-05-01": "Labor Day", + "2032-05-06": "Ascension Day", + "2032-05-09": "Europe Day", + "2032-05-17": "Whit Monday", + "2032-06-23": "National Day", + "2032-08-15": "Assumption Day", + "2032-11-01": "All Saints' Day", + "2032-12-25": "Christmas Day", + "2032-12-26": "St. Stephen's Day", + "2033-01-01": "New Year's Day", + "2033-04-18": "Easter Monday", + "2033-05-01": "Labor Day", + "2033-05-09": "Europe Day", + "2033-05-26": "Ascension Day", + "2033-06-06": "Whit Monday", + "2033-06-23": "National Day", + "2033-08-15": "Assumption Day", + "2033-11-01": "All Saints' Day", + "2033-12-25": "Christmas Day", + "2033-12-26": "St. Stephen's Day", + "2034-01-01": "New Year's Day", + "2034-04-10": "Easter Monday", + "2034-05-01": "Labor Day", + "2034-05-09": "Europe Day", + "2034-05-18": "Ascension Day", + "2034-05-29": "Whit Monday", + "2034-06-23": "National Day", + "2034-08-15": "Assumption Day", + "2034-11-01": "All Saints' Day", + "2034-12-25": "Christmas Day", + "2034-12-26": "St. Stephen's Day", + "2035-01-01": "New Year's Day", + "2035-03-26": "Easter Monday", + "2035-05-01": "Labor Day", + "2035-05-03": "Ascension Day", + "2035-05-09": "Europe Day", + "2035-05-14": "Whit Monday", + "2035-06-23": "National Day", + "2035-08-15": "Assumption Day", + "2035-11-01": "All Saints' Day", + "2035-12-25": "Christmas Day", + "2035-12-26": "St. Stephen's Day", + "2036-01-01": "New Year's Day", + "2036-04-14": "Easter Monday", + "2036-05-01": "Labor Day", + "2036-05-09": "Europe Day", + "2036-05-22": "Ascension Day", + "2036-06-02": "Whit Monday", + "2036-06-23": "National Day", + "2036-08-15": "Assumption Day", + "2036-11-01": "All Saints' Day", + "2036-12-25": "Christmas Day", + "2036-12-26": "St. Stephen's Day", + "2037-01-01": "New Year's Day", + "2037-04-06": "Easter Monday", + "2037-05-01": "Labor Day", + "2037-05-09": "Europe Day", + "2037-05-14": "Ascension Day", + "2037-05-25": "Whit Monday", + "2037-06-23": "National Day", + "2037-08-15": "Assumption Day", + "2037-11-01": "All Saints' Day", + "2037-12-25": "Christmas Day", + "2037-12-26": "St. Stephen's Day", + "2038-01-01": "New Year's Day", + "2038-04-26": "Easter Monday", + "2038-05-01": "Labor Day", + "2038-05-09": "Europe Day", + "2038-06-03": "Ascension Day", + "2038-06-14": "Whit Monday", + "2038-06-23": "National Day", + "2038-08-15": "Assumption Day", + "2038-11-01": "All Saints' Day", + "2038-12-25": "Christmas Day", + "2038-12-26": "St. Stephen's Day", + "2039-01-01": "New Year's Day", + "2039-04-11": "Easter Monday", + "2039-05-01": "Labor Day", + "2039-05-09": "Europe Day", + "2039-05-19": "Ascension Day", + "2039-05-30": "Whit Monday", + "2039-06-23": "National Day", + "2039-08-15": "Assumption Day", + "2039-11-01": "All Saints' Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "St. Stephen's Day", + "2040-01-01": "New Year's Day", + "2040-04-02": "Easter Monday", + "2040-05-01": "Labor Day", + "2040-05-09": "Europe Day", + "2040-05-10": "Ascension Day", + "2040-05-21": "Whit Monday", + "2040-06-23": "National Day", + "2040-08-15": "Assumption Day", + "2040-11-01": "All Saints' Day", + "2040-12-25": "Christmas Day", + "2040-12-26": "St. Stephen's Day", + "2041-01-01": "New Year's Day", + "2041-04-22": "Easter Monday", + "2041-05-01": "Labor Day", + "2041-05-09": "Europe Day", + "2041-05-30": "Ascension Day", + "2041-06-10": "Whit Monday", + "2041-06-23": "National Day", + "2041-08-15": "Assumption Day", + "2041-11-01": "All Saints' Day", + "2041-12-25": "Christmas Day", + "2041-12-26": "St. Stephen's Day", + "2042-01-01": "New Year's Day", + "2042-04-07": "Easter Monday", + "2042-05-01": "Labor Day", + "2042-05-09": "Europe Day", + "2042-05-15": "Ascension Day", + "2042-05-26": "Whit Monday", + "2042-06-23": "National Day", + "2042-08-15": "Assumption Day", + "2042-11-01": "All Saints' Day", + "2042-12-25": "Christmas Day", + "2042-12-26": "St. Stephen's Day", + "2043-01-01": "New Year's Day", + "2043-03-30": "Easter Monday", + "2043-05-01": "Labor Day", + "2043-05-07": "Ascension Day", + "2043-05-09": "Europe Day", + "2043-05-18": "Whit Monday", + "2043-06-23": "National Day", + "2043-08-15": "Assumption Day", + "2043-11-01": "All Saints' Day", + "2043-12-25": "Christmas Day", + "2043-12-26": "St. Stephen's Day", + "2044-01-01": "New Year's Day", + "2044-04-18": "Easter Monday", + "2044-05-01": "Labor Day", + "2044-05-09": "Europe Day", + "2044-05-26": "Ascension Day", + "2044-06-06": "Whit Monday", + "2044-06-23": "National Day", + "2044-08-15": "Assumption Day", + "2044-11-01": "All Saints' Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "St. Stephen's Day", + "2045-01-01": "New Year's Day", + "2045-04-10": "Easter Monday", + "2045-05-01": "Labor Day", + "2045-05-09": "Europe Day", + "2045-05-18": "Ascension Day", + "2045-05-29": "Whit Monday", + "2045-06-23": "National Day", + "2045-08-15": "Assumption Day", + "2045-11-01": "All Saints' Day", + "2045-12-25": "Christmas Day", + "2045-12-26": "St. Stephen's Day", + "2046-01-01": "New Year's Day", + "2046-03-26": "Easter Monday", + "2046-05-01": "Labor Day", + "2046-05-03": "Ascension Day", + "2046-05-09": "Europe Day", + "2046-05-14": "Whit Monday", + "2046-06-23": "National Day", + "2046-08-15": "Assumption Day", + "2046-11-01": "All Saints' Day", + "2046-12-25": "Christmas Day", + "2046-12-26": "St. Stephen's Day", + "2047-01-01": "New Year's Day", + "2047-04-15": "Easter Monday", + "2047-05-01": "Labor Day", + "2047-05-09": "Europe Day", + "2047-05-23": "Ascension Day", + "2047-06-03": "Whit Monday", + "2047-06-23": "National Day", + "2047-08-15": "Assumption Day", + "2047-11-01": "All Saints' Day", + "2047-12-25": "Christmas Day", + "2047-12-26": "St. Stephen's Day", + "2048-01-01": "New Year's Day", + "2048-04-06": "Easter Monday", + "2048-05-01": "Labor Day", + "2048-05-09": "Europe Day", + "2048-05-14": "Ascension Day", + "2048-05-25": "Whit Monday", + "2048-06-23": "National Day", + "2048-08-15": "Assumption Day", + "2048-11-01": "All Saints' Day", + "2048-12-25": "Christmas Day", + "2048-12-26": "St. Stephen's Day", + "2049-01-01": "New Year's Day", + "2049-04-19": "Easter Monday", + "2049-05-01": "Labor Day", + "2049-05-09": "Europe Day", + "2049-05-27": "Ascension Day", + "2049-06-07": "Whit Monday", + "2049-06-23": "National Day", + "2049-08-15": "Assumption Day", + "2049-11-01": "All Saints' Day", + "2049-12-25": "Christmas Day", + "2049-12-26": "St. Stephen's Day", + "2050-01-01": "New Year's Day", + "2050-04-11": "Easter Monday", + "2050-05-01": "Labor Day", + "2050-05-09": "Europe Day", + "2050-05-19": "Ascension Day", + "2050-05-30": "Whit Monday", + "2050-06-23": "National Day", + "2050-08-15": "Assumption Day", + "2050-11-01": "All Saints' Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "St. Stephen's Day" +} diff --git a/snapshots/countries/LV.json b/snapshots/countries/LV.json new file mode 100644 index 000000000..6f7ad5ddd --- /dev/null +++ b/snapshots/countries/LV.json @@ -0,0 +1,855 @@ +{ + "1990-01-01": "New Year's Day", + "1990-04-13": "Good Friday", + "1990-04-15": "Easter", + "1990-04-16": "Easter Monday", + "1990-05-01": "Labor Day", + "1990-05-13": "Mother's Day", + "1990-06-23": "Midsummer Eve", + "1990-06-24": "Midsummer Day", + "1990-11-18": "Republic of Latvia Proclamation Day", + "1990-12-25": "Christmas Day", + "1990-12-26": "Second Day of Christmas", + "1990-12-31": "New Year's Eve", + "1991-01-01": "New Year's Day", + "1991-03-29": "Good Friday", + "1991-03-31": "Easter", + "1991-04-01": "Easter Monday", + "1991-05-01": "Labor Day", + "1991-05-12": "Mother's Day", + "1991-06-23": "Midsummer Eve", + "1991-06-24": "Midsummer Day", + "1991-11-18": "Republic of Latvia Proclamation Day", + "1991-12-25": "Christmas Day", + "1991-12-26": "Second Day of Christmas", + "1991-12-31": "New Year's Eve", + "1992-01-01": "New Year's Day", + "1992-04-17": "Good Friday", + "1992-04-19": "Easter", + "1992-04-20": "Easter Monday", + "1992-05-01": "Labor Day", + "1992-05-10": "Mother's Day", + "1992-06-23": "Midsummer Eve", + "1992-06-24": "Midsummer Day", + "1992-11-18": "Republic of Latvia Proclamation Day", + "1992-12-25": "Christmas Day", + "1992-12-26": "Second Day of Christmas", + "1992-12-31": "New Year's Eve", + "1993-01-01": "New Year's Day", + "1993-04-09": "Good Friday", + "1993-04-11": "Easter", + "1993-04-12": "Easter Monday", + "1993-05-01": "Labor Day", + "1993-05-09": "Mother's Day", + "1993-06-23": "Midsummer Eve", + "1993-06-24": "Midsummer Day", + "1993-11-18": "Republic of Latvia Proclamation Day", + "1993-12-25": "Christmas Day", + "1993-12-26": "Second Day of Christmas", + "1993-12-31": "New Year's Eve", + "1994-01-01": "New Year's Day", + "1994-04-01": "Good Friday", + "1994-04-03": "Easter", + "1994-04-04": "Easter Monday", + "1994-05-01": "Labor Day", + "1994-05-08": "Mother's Day", + "1994-06-23": "Midsummer Eve", + "1994-06-24": "Midsummer Day", + "1994-11-18": "Republic of Latvia Proclamation Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Second Day of Christmas", + "1994-12-31": "New Year's Eve", + "1995-01-01": "New Year's Day", + "1995-04-14": "Good Friday", + "1995-04-16": "Easter", + "1995-04-17": "Easter Monday", + "1995-05-01": "Labor Day", + "1995-05-14": "Mother's Day", + "1995-06-23": "Midsummer Eve", + "1995-06-24": "Midsummer Day", + "1995-11-18": "Republic of Latvia Proclamation Day", + "1995-12-25": "Christmas Day", + "1995-12-26": "Second Day of Christmas", + "1995-12-31": "New Year's Eve", + "1996-01-01": "New Year's Day", + "1996-04-05": "Good Friday", + "1996-04-07": "Easter", + "1996-04-08": "Easter Monday", + "1996-05-01": "Labor Day", + "1996-05-12": "Mother's Day", + "1996-06-23": "Midsummer Eve", + "1996-06-24": "Midsummer Day", + "1996-11-18": "Republic of Latvia Proclamation Day", + "1996-12-25": "Christmas Day", + "1996-12-26": "Second Day of Christmas", + "1996-12-31": "New Year's Eve", + "1997-01-01": "New Year's Day", + "1997-03-28": "Good Friday", + "1997-03-30": "Easter", + "1997-03-31": "Easter Monday", + "1997-05-01": "Labor Day", + "1997-05-11": "Mother's Day", + "1997-06-23": "Midsummer Eve", + "1997-06-24": "Midsummer Day", + "1997-11-18": "Republic of Latvia Proclamation Day", + "1997-12-25": "Christmas Day", + "1997-12-26": "Second Day of Christmas", + "1997-12-31": "New Year's Eve", + "1998-01-01": "New Year's Day", + "1998-04-10": "Good Friday", + "1998-04-12": "Easter", + "1998-04-13": "Easter Monday", + "1998-05-01": "Labor Day", + "1998-05-10": "Mother's Day", + "1998-06-23": "Midsummer Eve", + "1998-06-24": "Midsummer Day", + "1998-11-18": "Republic of Latvia Proclamation Day", + "1998-12-25": "Christmas Day", + "1998-12-26": "Second Day of Christmas", + "1998-12-31": "New Year's Eve", + "1999-01-01": "New Year's Day", + "1999-04-02": "Good Friday", + "1999-04-04": "Easter", + "1999-04-05": "Easter Monday", + "1999-05-01": "Labor Day", + "1999-05-09": "Mother's Day", + "1999-06-23": "Midsummer Eve", + "1999-06-24": "Midsummer Day", + "1999-11-18": "Republic of Latvia Proclamation Day", + "1999-12-25": "Christmas Day", + "1999-12-26": "Second Day of Christmas", + "1999-12-31": "New Year's Eve", + "2000-01-01": "New Year's Day", + "2000-04-21": "Good Friday", + "2000-04-23": "Easter", + "2000-04-24": "Easter Monday", + "2000-05-01": "Labor Day", + "2000-05-14": "Mother's Day", + "2000-06-23": "Midsummer Eve", + "2000-06-24": "Midsummer Day", + "2000-11-18": "Republic of Latvia Proclamation Day", + "2000-12-25": "Christmas Day", + "2000-12-26": "Second Day of Christmas", + "2000-12-31": "New Year's Eve", + "2001-01-01": "New Year's Day", + "2001-04-13": "Good Friday", + "2001-04-15": "Easter", + "2001-04-16": "Easter Monday", + "2001-05-01": "Labor Day", + "2001-05-13": "Mother's Day", + "2001-06-23": "Midsummer Eve", + "2001-06-24": "Midsummer Day", + "2001-11-18": "Republic of Latvia Proclamation Day", + "2001-12-25": "Christmas Day", + "2001-12-26": "Second Day of Christmas", + "2001-12-31": "New Year's Eve", + "2002-01-01": "New Year's Day", + "2002-03-29": "Good Friday", + "2002-03-31": "Easter", + "2002-04-01": "Easter Monday", + "2002-05-01": "Labor Day", + "2002-05-04": "Restoration of Independence Day", + "2002-05-12": "Mother's Day", + "2002-06-23": "Midsummer Eve", + "2002-06-24": "Midsummer Day", + "2002-11-18": "Republic of Latvia Proclamation Day", + "2002-12-25": "Christmas Day", + "2002-12-26": "Second Day of Christmas", + "2002-12-31": "New Year's Eve", + "2003-01-01": "New Year's Day", + "2003-04-18": "Good Friday", + "2003-04-20": "Easter", + "2003-04-21": "Easter Monday", + "2003-05-01": "Labor Day", + "2003-05-04": "Restoration of Independence Day", + "2003-05-11": "Mother's Day", + "2003-06-23": "Midsummer Eve", + "2003-06-24": "Midsummer Day", + "2003-11-18": "Republic of Latvia Proclamation Day", + "2003-12-25": "Christmas Day", + "2003-12-26": "Second Day of Christmas", + "2003-12-31": "New Year's Eve", + "2004-01-01": "New Year's Day", + "2004-04-09": "Good Friday", + "2004-04-11": "Easter", + "2004-04-12": "Easter Monday", + "2004-05-01": "Labor Day", + "2004-05-04": "Restoration of Independence Day", + "2004-05-09": "Mother's Day", + "2004-06-23": "Midsummer Eve", + "2004-06-24": "Midsummer Day", + "2004-11-18": "Republic of Latvia Proclamation Day", + "2004-12-25": "Christmas Day", + "2004-12-26": "Second Day of Christmas", + "2004-12-31": "New Year's Eve", + "2005-01-01": "New Year's Day", + "2005-03-25": "Good Friday", + "2005-03-27": "Easter", + "2005-03-28": "Easter Monday", + "2005-05-01": "Labor Day", + "2005-05-04": "Restoration of Independence Day", + "2005-05-08": "Mother's Day", + "2005-06-23": "Midsummer Eve", + "2005-06-24": "Midsummer Day", + "2005-11-18": "Republic of Latvia Proclamation Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "Second Day of Christmas", + "2005-12-31": "New Year's Eve", + "2006-01-01": "New Year's Day", + "2006-04-14": "Good Friday", + "2006-04-16": "Easter", + "2006-04-17": "Easter Monday", + "2006-05-01": "Labor Day", + "2006-05-04": "Restoration of Independence Day", + "2006-05-14": "Mother's Day", + "2006-06-23": "Midsummer Eve", + "2006-06-24": "Midsummer Day", + "2006-11-18": "Republic of Latvia Proclamation Day", + "2006-12-25": "Christmas Day", + "2006-12-26": "Second Day of Christmas", + "2006-12-31": "New Year's Eve", + "2007-01-01": "New Year's Day", + "2007-04-06": "Good Friday", + "2007-04-08": "Easter", + "2007-04-09": "Easter Monday", + "2007-05-01": "Labor Day", + "2007-05-04": "Restoration of Independence Day", + "2007-05-13": "Mother's Day", + "2007-06-23": "Midsummer Eve", + "2007-06-24": "Midsummer Day", + "2007-11-18": "Republic of Latvia Proclamation Day", + "2007-11-19": "Republic of Latvia Proclamation Day (Observed)", + "2007-12-24": "Christmas Eve", + "2007-12-25": "Christmas Day", + "2007-12-26": "Second Day of Christmas", + "2007-12-31": "New Year's Eve", + "2008-01-01": "New Year's Day", + "2008-03-21": "Good Friday", + "2008-03-23": "Easter", + "2008-03-24": "Easter Monday", + "2008-05-01": "Labor Day", + "2008-05-04": "Restoration of Independence Day", + "2008-05-05": "Restoration of Independence Day (Observed)", + "2008-05-11": "Mother's Day", + "2008-06-23": "Midsummer Eve", + "2008-06-24": "Midsummer Day", + "2008-11-18": "Republic of Latvia Proclamation Day", + "2008-12-24": "Christmas Eve", + "2008-12-25": "Christmas Day", + "2008-12-26": "Second Day of Christmas", + "2008-12-31": "New Year's Eve", + "2009-01-01": "New Year's Day", + "2009-04-10": "Good Friday", + "2009-04-12": "Easter", + "2009-04-13": "Easter Monday", + "2009-05-01": "Labor Day", + "2009-05-04": "Restoration of Independence Day", + "2009-05-10": "Mother's Day", + "2009-06-23": "Midsummer Eve", + "2009-06-24": "Midsummer Day", + "2009-11-18": "Republic of Latvia Proclamation Day", + "2009-12-24": "Christmas Eve", + "2009-12-25": "Christmas Day", + "2009-12-26": "Second Day of Christmas", + "2009-12-31": "New Year's Eve", + "2010-01-01": "New Year's Day", + "2010-04-02": "Good Friday", + "2010-04-04": "Easter", + "2010-04-05": "Easter Monday", + "2010-05-01": "Labor Day", + "2010-05-04": "Restoration of Independence Day", + "2010-05-09": "Mother's Day", + "2010-06-23": "Midsummer Eve", + "2010-06-24": "Midsummer Day", + "2010-11-18": "Republic of Latvia Proclamation Day", + "2010-12-24": "Christmas Eve", + "2010-12-25": "Christmas Day", + "2010-12-26": "Second Day of Christmas", + "2010-12-31": "New Year's Eve", + "2011-01-01": "New Year's Day", + "2011-04-22": "Good Friday", + "2011-04-24": "Easter", + "2011-04-25": "Easter Monday", + "2011-05-01": "Labor Day", + "2011-05-04": "Restoration of Independence Day", + "2011-05-08": "Mother's Day", + "2011-06-23": "Midsummer Eve", + "2011-06-24": "Midsummer Day", + "2011-11-18": "Republic of Latvia Proclamation Day", + "2011-12-24": "Christmas Eve", + "2011-12-25": "Christmas Day", + "2011-12-26": "Second Day of Christmas", + "2011-12-31": "New Year's Eve", + "2012-01-01": "New Year's Day", + "2012-04-06": "Good Friday", + "2012-04-08": "Easter", + "2012-04-09": "Easter Monday", + "2012-05-01": "Labor Day", + "2012-05-04": "Restoration of Independence Day", + "2012-05-13": "Mother's Day", + "2012-06-23": "Midsummer Eve", + "2012-06-24": "Midsummer Day", + "2012-11-18": "Republic of Latvia Proclamation Day", + "2012-11-19": "Republic of Latvia Proclamation Day (Observed)", + "2012-12-24": "Christmas Eve", + "2012-12-25": "Christmas Day", + "2012-12-26": "Second Day of Christmas", + "2012-12-31": "New Year's Eve", + "2013-01-01": "New Year's Day", + "2013-03-29": "Good Friday", + "2013-03-31": "Easter", + "2013-04-01": "Easter Monday", + "2013-05-01": "Labor Day", + "2013-05-04": "Restoration of Independence Day", + "2013-05-06": "Restoration of Independence Day (Observed)", + "2013-05-12": "Mother's Day", + "2013-06-23": "Midsummer Eve", + "2013-06-24": "Midsummer Day", + "2013-11-18": "Republic of Latvia Proclamation Day", + "2013-12-24": "Christmas Eve", + "2013-12-25": "Christmas Day", + "2013-12-26": "Second Day of Christmas", + "2013-12-31": "New Year's Eve", + "2014-01-01": "New Year's Day", + "2014-04-18": "Good Friday", + "2014-04-20": "Easter", + "2014-04-21": "Easter Monday", + "2014-05-01": "Labor Day", + "2014-05-04": "Restoration of Independence Day", + "2014-05-05": "Restoration of Independence Day (Observed)", + "2014-05-11": "Mother's Day", + "2014-06-23": "Midsummer Eve", + "2014-06-24": "Midsummer Day", + "2014-11-18": "Republic of Latvia Proclamation Day", + "2014-12-24": "Christmas Eve", + "2014-12-25": "Christmas Day", + "2014-12-26": "Second Day of Christmas", + "2014-12-31": "New Year's Eve", + "2015-01-01": "New Year's Day", + "2015-04-03": "Good Friday", + "2015-04-05": "Easter", + "2015-04-06": "Easter Monday", + "2015-05-01": "Labor Day", + "2015-05-04": "Restoration of Independence Day", + "2015-05-10": "Mother's Day", + "2015-06-23": "Midsummer Eve", + "2015-06-24": "Midsummer Day", + "2015-11-18": "Republic of Latvia Proclamation Day", + "2015-12-24": "Christmas Eve", + "2015-12-25": "Christmas Day", + "2015-12-26": "Second Day of Christmas", + "2015-12-31": "New Year's Eve", + "2016-01-01": "New Year's Day", + "2016-03-25": "Good Friday", + "2016-03-27": "Easter", + "2016-03-28": "Easter Monday", + "2016-05-01": "Labor Day", + "2016-05-04": "Restoration of Independence Day", + "2016-05-08": "Mother's Day", + "2016-06-23": "Midsummer Eve", + "2016-06-24": "Midsummer Day", + "2016-11-18": "Republic of Latvia Proclamation Day", + "2016-12-24": "Christmas Eve", + "2016-12-25": "Christmas Day", + "2016-12-26": "Second Day of Christmas", + "2016-12-31": "New Year's Eve", + "2017-01-01": "New Year's Day", + "2017-04-14": "Good Friday", + "2017-04-16": "Easter", + "2017-04-17": "Easter Monday", + "2017-05-01": "Labor Day", + "2017-05-04": "Restoration of Independence Day", + "2017-05-14": "Mother's Day", + "2017-06-23": "Midsummer Eve", + "2017-06-24": "Midsummer Day", + "2017-11-18": "Republic of Latvia Proclamation Day", + "2017-11-20": "Republic of Latvia Proclamation Day (Observed)", + "2017-12-24": "Christmas Eve", + "2017-12-25": "Christmas Day", + "2017-12-26": "Second Day of Christmas", + "2017-12-31": "New Year's Eve", + "2018-01-01": "New Year's Day", + "2018-03-30": "Good Friday", + "2018-04-01": "Easter", + "2018-04-02": "Easter Monday", + "2018-05-01": "Labor Day", + "2018-05-04": "Restoration of Independence Day", + "2018-05-13": "Mother's Day", + "2018-06-23": "Midsummer Eve", + "2018-06-24": "Midsummer Day", + "2018-07-09": "General Latvian Song and Dance Festival closing day", + "2018-09-24": "Day of His Holiness Pope Francis' pastoral visit to Latvia", + "2018-11-18": "Republic of Latvia Proclamation Day", + "2018-11-19": "Republic of Latvia Proclamation Day (Observed)", + "2018-12-24": "Christmas Eve", + "2018-12-25": "Christmas Day", + "2018-12-26": "Second Day of Christmas", + "2018-12-31": "New Year's Eve", + "2019-01-01": "New Year's Day", + "2019-04-19": "Good Friday", + "2019-04-21": "Easter", + "2019-04-22": "Easter Monday", + "2019-05-01": "Labor Day", + "2019-05-04": "Restoration of Independence Day", + "2019-05-06": "Restoration of Independence Day (Observed)", + "2019-05-12": "Mother's Day", + "2019-06-23": "Midsummer Eve", + "2019-06-24": "Midsummer Day", + "2019-11-18": "Republic of Latvia Proclamation Day", + "2019-12-24": "Christmas Eve", + "2019-12-25": "Christmas Day", + "2019-12-26": "Second Day of Christmas", + "2019-12-31": "New Year's Eve", + "2020-01-01": "New Year's Day", + "2020-04-10": "Good Friday", + "2020-04-12": "Easter", + "2020-04-13": "Easter Monday", + "2020-05-01": "Labor Day", + "2020-05-04": "Restoration of Independence Day", + "2020-05-10": "Mother's Day", + "2020-06-23": "Midsummer Eve", + "2020-06-24": "Midsummer Day", + "2020-11-18": "Republic of Latvia Proclamation Day", + "2020-12-24": "Christmas Eve", + "2020-12-25": "Christmas Day", + "2020-12-26": "Second Day of Christmas", + "2020-12-31": "New Year's Eve", + "2021-01-01": "New Year's Day", + "2021-04-02": "Good Friday", + "2021-04-04": "Easter", + "2021-04-05": "Easter Monday", + "2021-05-01": "Labor Day", + "2021-05-04": "Restoration of Independence Day", + "2021-05-09": "Mother's Day", + "2021-06-23": "Midsummer Eve", + "2021-06-24": "Midsummer Day", + "2021-11-18": "Republic of Latvia Proclamation Day", + "2021-12-24": "Christmas Eve", + "2021-12-25": "Christmas Day", + "2021-12-26": "Second Day of Christmas", + "2021-12-31": "New Year's Eve", + "2022-01-01": "New Year's Day", + "2022-04-15": "Good Friday", + "2022-04-17": "Easter", + "2022-04-18": "Easter Monday", + "2022-05-01": "Labor Day", + "2022-05-04": "Restoration of Independence Day", + "2022-05-08": "Mother's Day", + "2022-06-23": "Midsummer Eve", + "2022-06-24": "Midsummer Day", + "2022-11-18": "Republic of Latvia Proclamation Day", + "2022-12-24": "Christmas Eve", + "2022-12-25": "Christmas Day", + "2022-12-26": "Second Day of Christmas", + "2022-12-31": "New Year's Eve", + "2023-01-01": "New Year's Day", + "2023-04-07": "Good Friday", + "2023-04-09": "Easter", + "2023-04-10": "Easter Monday", + "2023-05-01": "Labor Day", + "2023-05-04": "Restoration of Independence Day", + "2023-05-14": "Mother's Day", + "2023-05-29": "Day the Latvian hockey team won the bronze medal at the 2023 World Ice Hockey Championship", + "2023-06-23": "Midsummer Eve", + "2023-06-24": "Midsummer Day", + "2023-07-10": "General Latvian Song and Dance Festival closing day", + "2023-11-18": "Republic of Latvia Proclamation Day", + "2023-11-20": "Republic of Latvia Proclamation Day (Observed)", + "2023-12-24": "Christmas Eve", + "2023-12-25": "Christmas Day", + "2023-12-26": "Second Day of Christmas", + "2023-12-31": "New Year's Eve", + "2024-01-01": "New Year's Day", + "2024-03-29": "Good Friday", + "2024-03-31": "Easter", + "2024-04-01": "Easter Monday", + "2024-05-01": "Labor Day", + "2024-05-04": "Restoration of Independence Day", + "2024-05-06": "Restoration of Independence Day (Observed)", + "2024-05-12": "Mother's Day", + "2024-06-23": "Midsummer Eve", + "2024-06-24": "Midsummer Day", + "2024-11-18": "Republic of Latvia Proclamation Day", + "2024-12-24": "Christmas Eve", + "2024-12-25": "Christmas Day", + "2024-12-26": "Second Day of Christmas", + "2024-12-31": "New Year's Eve", + "2025-01-01": "New Year's Day", + "2025-04-18": "Good Friday", + "2025-04-20": "Easter", + "2025-04-21": "Easter Monday", + "2025-05-01": "Labor Day", + "2025-05-04": "Restoration of Independence Day", + "2025-05-05": "Restoration of Independence Day (Observed)", + "2025-05-11": "Mother's Day", + "2025-06-23": "Midsummer Eve", + "2025-06-24": "Midsummer Day", + "2025-11-18": "Republic of Latvia Proclamation Day", + "2025-12-24": "Christmas Eve", + "2025-12-25": "Christmas Day", + "2025-12-26": "Second Day of Christmas", + "2025-12-31": "New Year's Eve", + "2026-01-01": "New Year's Day", + "2026-04-03": "Good Friday", + "2026-04-05": "Easter", + "2026-04-06": "Easter Monday", + "2026-05-01": "Labor Day", + "2026-05-04": "Restoration of Independence Day", + "2026-05-10": "Mother's Day", + "2026-06-23": "Midsummer Eve", + "2026-06-24": "Midsummer Day", + "2026-11-18": "Republic of Latvia Proclamation Day", + "2026-12-24": "Christmas Eve", + "2026-12-25": "Christmas Day", + "2026-12-26": "Second Day of Christmas", + "2026-12-31": "New Year's Eve", + "2027-01-01": "New Year's Day", + "2027-03-26": "Good Friday", + "2027-03-28": "Easter", + "2027-03-29": "Easter Monday", + "2027-05-01": "Labor Day", + "2027-05-04": "Restoration of Independence Day", + "2027-05-09": "Mother's Day", + "2027-06-23": "Midsummer Eve", + "2027-06-24": "Midsummer Day", + "2027-11-18": "Republic of Latvia Proclamation Day", + "2027-12-24": "Christmas Eve", + "2027-12-25": "Christmas Day", + "2027-12-26": "Second Day of Christmas", + "2027-12-31": "New Year's Eve", + "2028-01-01": "New Year's Day", + "2028-04-14": "Good Friday", + "2028-04-16": "Easter", + "2028-04-17": "Easter Monday", + "2028-05-01": "Labor Day", + "2028-05-04": "Restoration of Independence Day", + "2028-05-14": "Mother's Day", + "2028-06-23": "Midsummer Eve", + "2028-06-24": "Midsummer Day", + "2028-11-18": "Republic of Latvia Proclamation Day", + "2028-11-20": "Republic of Latvia Proclamation Day (Observed)", + "2028-12-24": "Christmas Eve", + "2028-12-25": "Christmas Day", + "2028-12-26": "Second Day of Christmas", + "2028-12-31": "New Year's Eve", + "2029-01-01": "New Year's Day", + "2029-03-30": "Good Friday", + "2029-04-01": "Easter", + "2029-04-02": "Easter Monday", + "2029-05-01": "Labor Day", + "2029-05-04": "Restoration of Independence Day", + "2029-05-13": "Mother's Day", + "2029-06-23": "Midsummer Eve", + "2029-06-24": "Midsummer Day", + "2029-11-18": "Republic of Latvia Proclamation Day", + "2029-11-19": "Republic of Latvia Proclamation Day (Observed)", + "2029-12-24": "Christmas Eve", + "2029-12-25": "Christmas Day", + "2029-12-26": "Second Day of Christmas", + "2029-12-31": "New Year's Eve", + "2030-01-01": "New Year's Day", + "2030-04-19": "Good Friday", + "2030-04-21": "Easter", + "2030-04-22": "Easter Monday", + "2030-05-01": "Labor Day", + "2030-05-04": "Restoration of Independence Day", + "2030-05-06": "Restoration of Independence Day (Observed)", + "2030-05-12": "Mother's Day", + "2030-06-23": "Midsummer Eve", + "2030-06-24": "Midsummer Day", + "2030-11-18": "Republic of Latvia Proclamation Day", + "2030-12-24": "Christmas Eve", + "2030-12-25": "Christmas Day", + "2030-12-26": "Second Day of Christmas", + "2030-12-31": "New Year's Eve", + "2031-01-01": "New Year's Day", + "2031-04-11": "Good Friday", + "2031-04-13": "Easter", + "2031-04-14": "Easter Monday", + "2031-05-01": "Labor Day", + "2031-05-04": "Restoration of Independence Day", + "2031-05-05": "Restoration of Independence Day (Observed)", + "2031-05-11": "Mother's Day", + "2031-06-23": "Midsummer Eve", + "2031-06-24": "Midsummer Day", + "2031-11-18": "Republic of Latvia Proclamation Day", + "2031-12-24": "Christmas Eve", + "2031-12-25": "Christmas Day", + "2031-12-26": "Second Day of Christmas", + "2031-12-31": "New Year's Eve", + "2032-01-01": "New Year's Day", + "2032-03-26": "Good Friday", + "2032-03-28": "Easter", + "2032-03-29": "Easter Monday", + "2032-05-01": "Labor Day", + "2032-05-04": "Restoration of Independence Day", + "2032-05-09": "Mother's Day", + "2032-06-23": "Midsummer Eve", + "2032-06-24": "Midsummer Day", + "2032-11-18": "Republic of Latvia Proclamation Day", + "2032-12-24": "Christmas Eve", + "2032-12-25": "Christmas Day", + "2032-12-26": "Second Day of Christmas", + "2032-12-31": "New Year's Eve", + "2033-01-01": "New Year's Day", + "2033-04-15": "Good Friday", + "2033-04-17": "Easter", + "2033-04-18": "Easter Monday", + "2033-05-01": "Labor Day", + "2033-05-04": "Restoration of Independence Day", + "2033-05-08": "Mother's Day", + "2033-06-23": "Midsummer Eve", + "2033-06-24": "Midsummer Day", + "2033-11-18": "Republic of Latvia Proclamation Day", + "2033-12-24": "Christmas Eve", + "2033-12-25": "Christmas Day", + "2033-12-26": "Second Day of Christmas", + "2033-12-31": "New Year's Eve", + "2034-01-01": "New Year's Day", + "2034-04-07": "Good Friday", + "2034-04-09": "Easter", + "2034-04-10": "Easter Monday", + "2034-05-01": "Labor Day", + "2034-05-04": "Restoration of Independence Day", + "2034-05-14": "Mother's Day", + "2034-06-23": "Midsummer Eve", + "2034-06-24": "Midsummer Day", + "2034-11-18": "Republic of Latvia Proclamation Day", + "2034-11-20": "Republic of Latvia Proclamation Day (Observed)", + "2034-12-24": "Christmas Eve", + "2034-12-25": "Christmas Day", + "2034-12-26": "Second Day of Christmas", + "2034-12-31": "New Year's Eve", + "2035-01-01": "New Year's Day", + "2035-03-23": "Good Friday", + "2035-03-25": "Easter", + "2035-03-26": "Easter Monday", + "2035-05-01": "Labor Day", + "2035-05-04": "Restoration of Independence Day", + "2035-05-13": "Mother's Day", + "2035-06-23": "Midsummer Eve", + "2035-06-24": "Midsummer Day", + "2035-11-18": "Republic of Latvia Proclamation Day", + "2035-11-19": "Republic of Latvia Proclamation Day (Observed)", + "2035-12-24": "Christmas Eve", + "2035-12-25": "Christmas Day", + "2035-12-26": "Second Day of Christmas", + "2035-12-31": "New Year's Eve", + "2036-01-01": "New Year's Day", + "2036-04-11": "Good Friday", + "2036-04-13": "Easter", + "2036-04-14": "Easter Monday", + "2036-05-01": "Labor Day", + "2036-05-04": "Restoration of Independence Day", + "2036-05-05": "Restoration of Independence Day (Observed)", + "2036-05-11": "Mother's Day", + "2036-06-23": "Midsummer Eve", + "2036-06-24": "Midsummer Day", + "2036-11-18": "Republic of Latvia Proclamation Day", + "2036-12-24": "Christmas Eve", + "2036-12-25": "Christmas Day", + "2036-12-26": "Second Day of Christmas", + "2036-12-31": "New Year's Eve", + "2037-01-01": "New Year's Day", + "2037-04-03": "Good Friday", + "2037-04-05": "Easter", + "2037-04-06": "Easter Monday", + "2037-05-01": "Labor Day", + "2037-05-04": "Restoration of Independence Day", + "2037-05-10": "Mother's Day", + "2037-06-23": "Midsummer Eve", + "2037-06-24": "Midsummer Day", + "2037-11-18": "Republic of Latvia Proclamation Day", + "2037-12-24": "Christmas Eve", + "2037-12-25": "Christmas Day", + "2037-12-26": "Second Day of Christmas", + "2037-12-31": "New Year's Eve", + "2038-01-01": "New Year's Day", + "2038-04-23": "Good Friday", + "2038-04-25": "Easter", + "2038-04-26": "Easter Monday", + "2038-05-01": "Labor Day", + "2038-05-04": "Restoration of Independence Day", + "2038-05-09": "Mother's Day", + "2038-06-23": "Midsummer Eve", + "2038-06-24": "Midsummer Day", + "2038-11-18": "Republic of Latvia Proclamation Day", + "2038-12-24": "Christmas Eve", + "2038-12-25": "Christmas Day", + "2038-12-26": "Second Day of Christmas", + "2038-12-31": "New Year's Eve", + "2039-01-01": "New Year's Day", + "2039-04-08": "Good Friday", + "2039-04-10": "Easter", + "2039-04-11": "Easter Monday", + "2039-05-01": "Labor Day", + "2039-05-04": "Restoration of Independence Day", + "2039-05-08": "Mother's Day", + "2039-06-23": "Midsummer Eve", + "2039-06-24": "Midsummer Day", + "2039-11-18": "Republic of Latvia Proclamation Day", + "2039-12-24": "Christmas Eve", + "2039-12-25": "Christmas Day", + "2039-12-26": "Second Day of Christmas", + "2039-12-31": "New Year's Eve", + "2040-01-01": "New Year's Day", + "2040-03-30": "Good Friday", + "2040-04-01": "Easter", + "2040-04-02": "Easter Monday", + "2040-05-01": "Labor Day", + "2040-05-04": "Restoration of Independence Day", + "2040-05-13": "Mother's Day", + "2040-06-23": "Midsummer Eve", + "2040-06-24": "Midsummer Day", + "2040-11-18": "Republic of Latvia Proclamation Day", + "2040-11-19": "Republic of Latvia Proclamation Day (Observed)", + "2040-12-24": "Christmas Eve", + "2040-12-25": "Christmas Day", + "2040-12-26": "Second Day of Christmas", + "2040-12-31": "New Year's Eve", + "2041-01-01": "New Year's Day", + "2041-04-19": "Good Friday", + "2041-04-21": "Easter", + "2041-04-22": "Easter Monday", + "2041-05-01": "Labor Day", + "2041-05-04": "Restoration of Independence Day", + "2041-05-06": "Restoration of Independence Day (Observed)", + "2041-05-12": "Mother's Day", + "2041-06-23": "Midsummer Eve", + "2041-06-24": "Midsummer Day", + "2041-11-18": "Republic of Latvia Proclamation Day", + "2041-12-24": "Christmas Eve", + "2041-12-25": "Christmas Day", + "2041-12-26": "Second Day of Christmas", + "2041-12-31": "New Year's Eve", + "2042-01-01": "New Year's Day", + "2042-04-04": "Good Friday", + "2042-04-06": "Easter", + "2042-04-07": "Easter Monday", + "2042-05-01": "Labor Day", + "2042-05-04": "Restoration of Independence Day", + "2042-05-05": "Restoration of Independence Day (Observed)", + "2042-05-11": "Mother's Day", + "2042-06-23": "Midsummer Eve", + "2042-06-24": "Midsummer Day", + "2042-11-18": "Republic of Latvia Proclamation Day", + "2042-12-24": "Christmas Eve", + "2042-12-25": "Christmas Day", + "2042-12-26": "Second Day of Christmas", + "2042-12-31": "New Year's Eve", + "2043-01-01": "New Year's Day", + "2043-03-27": "Good Friday", + "2043-03-29": "Easter", + "2043-03-30": "Easter Monday", + "2043-05-01": "Labor Day", + "2043-05-04": "Restoration of Independence Day", + "2043-05-10": "Mother's Day", + "2043-06-23": "Midsummer Eve", + "2043-06-24": "Midsummer Day", + "2043-11-18": "Republic of Latvia Proclamation Day", + "2043-12-24": "Christmas Eve", + "2043-12-25": "Christmas Day", + "2043-12-26": "Second Day of Christmas", + "2043-12-31": "New Year's Eve", + "2044-01-01": "New Year's Day", + "2044-04-15": "Good Friday", + "2044-04-17": "Easter", + "2044-04-18": "Easter Monday", + "2044-05-01": "Labor Day", + "2044-05-04": "Restoration of Independence Day", + "2044-05-08": "Mother's Day", + "2044-06-23": "Midsummer Eve", + "2044-06-24": "Midsummer Day", + "2044-11-18": "Republic of Latvia Proclamation Day", + "2044-12-24": "Christmas Eve", + "2044-12-25": "Christmas Day", + "2044-12-26": "Second Day of Christmas", + "2044-12-31": "New Year's Eve", + "2045-01-01": "New Year's Day", + "2045-04-07": "Good Friday", + "2045-04-09": "Easter", + "2045-04-10": "Easter Monday", + "2045-05-01": "Labor Day", + "2045-05-04": "Restoration of Independence Day", + "2045-05-14": "Mother's Day", + "2045-06-23": "Midsummer Eve", + "2045-06-24": "Midsummer Day", + "2045-11-18": "Republic of Latvia Proclamation Day", + "2045-11-20": "Republic of Latvia Proclamation Day (Observed)", + "2045-12-24": "Christmas Eve", + "2045-12-25": "Christmas Day", + "2045-12-26": "Second Day of Christmas", + "2045-12-31": "New Year's Eve", + "2046-01-01": "New Year's Day", + "2046-03-23": "Good Friday", + "2046-03-25": "Easter", + "2046-03-26": "Easter Monday", + "2046-05-01": "Labor Day", + "2046-05-04": "Restoration of Independence Day", + "2046-05-13": "Mother's Day", + "2046-06-23": "Midsummer Eve", + "2046-06-24": "Midsummer Day", + "2046-11-18": "Republic of Latvia Proclamation Day", + "2046-11-19": "Republic of Latvia Proclamation Day (Observed)", + "2046-12-24": "Christmas Eve", + "2046-12-25": "Christmas Day", + "2046-12-26": "Second Day of Christmas", + "2046-12-31": "New Year's Eve", + "2047-01-01": "New Year's Day", + "2047-04-12": "Good Friday", + "2047-04-14": "Easter", + "2047-04-15": "Easter Monday", + "2047-05-01": "Labor Day", + "2047-05-04": "Restoration of Independence Day", + "2047-05-06": "Restoration of Independence Day (Observed)", + "2047-05-12": "Mother's Day", + "2047-06-23": "Midsummer Eve", + "2047-06-24": "Midsummer Day", + "2047-11-18": "Republic of Latvia Proclamation Day", + "2047-12-24": "Christmas Eve", + "2047-12-25": "Christmas Day", + "2047-12-26": "Second Day of Christmas", + "2047-12-31": "New Year's Eve", + "2048-01-01": "New Year's Day", + "2048-04-03": "Good Friday", + "2048-04-05": "Easter", + "2048-04-06": "Easter Monday", + "2048-05-01": "Labor Day", + "2048-05-04": "Restoration of Independence Day", + "2048-05-10": "Mother's Day", + "2048-06-23": "Midsummer Eve", + "2048-06-24": "Midsummer Day", + "2048-11-18": "Republic of Latvia Proclamation Day", + "2048-12-24": "Christmas Eve", + "2048-12-25": "Christmas Day", + "2048-12-26": "Second Day of Christmas", + "2048-12-31": "New Year's Eve", + "2049-01-01": "New Year's Day", + "2049-04-16": "Good Friday", + "2049-04-18": "Easter", + "2049-04-19": "Easter Monday", + "2049-05-01": "Labor Day", + "2049-05-04": "Restoration of Independence Day", + "2049-05-09": "Mother's Day", + "2049-06-23": "Midsummer Eve", + "2049-06-24": "Midsummer Day", + "2049-11-18": "Republic of Latvia Proclamation Day", + "2049-12-24": "Christmas Eve", + "2049-12-25": "Christmas Day", + "2049-12-26": "Second Day of Christmas", + "2049-12-31": "New Year's Eve", + "2050-01-01": "New Year's Day", + "2050-04-08": "Good Friday", + "2050-04-10": "Easter", + "2050-04-11": "Easter Monday", + "2050-05-01": "Labor Day", + "2050-05-04": "Restoration of Independence Day", + "2050-05-08": "Mother's Day", + "2050-06-23": "Midsummer Eve", + "2050-06-24": "Midsummer Day", + "2050-11-18": "Republic of Latvia Proclamation Day", + "2050-12-24": "Christmas Eve", + "2050-12-25": "Christmas Day", + "2050-12-26": "Second Day of Christmas", + "2050-12-31": "New Year's Eve" +} diff --git a/snapshots/countries/MA.json b/snapshots/countries/MA.json new file mode 100644 index 000000000..0e715518b --- /dev/null +++ b/snapshots/countries/MA.json @@ -0,0 +1,1609 @@ +{ + "1950-01-01": "New Year's Day; Prophet's Birthday* (*estimated)", + "1950-01-02": "Prophet's Birthday* (*estimated)", + "1950-01-11": "Proclamation of Independence Day", + "1950-05-01": "Labor Day", + "1950-07-09": "Youth Day", + "1950-07-16": "Eid al-Fitr* (*estimated)", + "1950-07-17": "Eid al-Fitr* (*estimated)", + "1950-08-14": "Oued Ed-Dahab Day", + "1950-08-20": "Revolution Day", + "1950-09-23": "Eid al-Adha* (*estimated)", + "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-10-13": "Islamic New Year* (*estimated)", + "1950-11-18": "Throne Day", + "1950-12-22": "Prophet's Birthday* (*estimated)", + "1950-12-23": "Prophet's Birthday* (*estimated)", + "1951-01-01": "New Year's Day", + "1951-01-11": "Proclamation of Independence Day", + "1951-05-01": "Labor Day", + "1951-07-06": "Eid al-Fitr* (*estimated)", + "1951-07-07": "Eid al-Fitr* (*estimated)", + "1951-07-09": "Youth Day", + "1951-08-14": "Oued Ed-Dahab Day", + "1951-08-20": "Revolution Day", + "1951-09-12": "Eid al-Adha* (*estimated)", + "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-10-02": "Islamic New Year* (*estimated)", + "1951-11-18": "Throne Day", + "1951-12-11": "Prophet's Birthday* (*estimated)", + "1951-12-12": "Prophet's Birthday* (*estimated)", + "1952-01-01": "New Year's Day", + "1952-01-11": "Proclamation of Independence Day", + "1952-05-01": "Labor Day", + "1952-06-23": "Eid al-Fitr* (*estimated)", + "1952-06-24": "Eid al-Fitr* (*estimated)", + "1952-07-09": "Youth Day", + "1952-08-14": "Oued Ed-Dahab Day", + "1952-08-20": "Revolution Day", + "1952-08-31": "Eid al-Adha* (*estimated)", + "1952-09-01": "Eid al-Adha* (*estimated)", + "1952-09-21": "Islamic New Year* (*estimated)", + "1952-11-18": "Throne Day", + "1952-11-30": "Prophet's Birthday* (*estimated)", + "1952-12-01": "Prophet's Birthday* (*estimated)", + "1953-01-01": "New Year's Day", + "1953-01-11": "Proclamation of Independence Day", + "1953-05-01": "Labor Day", + "1953-06-13": "Eid al-Fitr* (*estimated)", + "1953-06-14": "Eid al-Fitr* (*estimated)", + "1953-07-09": "Youth Day", + "1953-08-14": "Oued Ed-Dahab Day", + "1953-08-20": "Eid al-Adha* (*estimated); Revolution Day", + "1953-08-21": "Eid al-Adha* (*estimated)", + "1953-09-10": "Islamic New Year* (*estimated)", + "1953-11-18": "Throne Day", + "1953-11-19": "Prophet's Birthday* (*estimated)", + "1953-11-20": "Prophet's Birthday* (*estimated)", + "1954-01-01": "New Year's Day", + "1954-01-11": "Proclamation of Independence Day", + "1954-05-01": "Labor Day", + "1954-06-02": "Eid al-Fitr* (*estimated)", + "1954-06-03": "Eid al-Fitr* (*estimated)", + "1954-07-09": "Youth Day", + "1954-08-09": "Eid al-Adha* (*estimated)", + "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-14": "Oued Ed-Dahab Day", + "1954-08-20": "Revolution Day", + "1954-08-30": "Islamic New Year* (*estimated)", + "1954-11-08": "Prophet's Birthday* (*estimated)", + "1954-11-09": "Prophet's Birthday* (*estimated)", + "1954-11-18": "Throne Day", + "1955-01-01": "New Year's Day", + "1955-01-11": "Proclamation of Independence Day", + "1955-05-01": "Labor Day", + "1955-05-23": "Eid al-Fitr* (*estimated)", + "1955-05-24": "Eid al-Fitr* (*estimated)", + "1955-07-09": "Youth Day", + "1955-07-30": "Eid al-Adha* (*estimated)", + "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-08-14": "Oued Ed-Dahab Day", + "1955-08-20": "Islamic New Year* (*estimated); Revolution Day", + "1955-10-29": "Prophet's Birthday* (*estimated)", + "1955-10-30": "Prophet's Birthday* (*estimated)", + "1955-11-18": "Throne Day", + "1956-01-01": "New Year's Day", + "1956-01-11": "Proclamation of Independence Day", + "1956-05-01": "Labor Day", + "1956-05-11": "Eid al-Fitr* (*estimated)", + "1956-05-12": "Eid al-Fitr* (*estimated)", + "1956-07-09": "Youth Day", + "1956-07-19": "Eid al-Adha* (*estimated)", + "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-08-08": "Islamic New Year* (*estimated)", + "1956-08-14": "Oued Ed-Dahab Day", + "1956-08-20": "Revolution Day", + "1956-10-17": "Prophet's Birthday* (*estimated)", + "1956-10-18": "Prophet's Birthday* (*estimated)", + "1956-11-18": "Throne Day", + "1957-01-01": "New Year's Day", + "1957-01-11": "Proclamation of Independence Day", + "1957-05-01": "Eid al-Fitr* (*estimated); Labor Day", + "1957-05-02": "Eid al-Fitr* (*estimated)", + "1957-07-08": "Eid al-Adha* (*estimated)", + "1957-07-09": "Eid al-Adha* (*estimated); Youth Day", + "1957-07-28": "Islamic New Year* (*estimated)", + "1957-08-14": "Oued Ed-Dahab Day", + "1957-08-20": "Revolution Day", + "1957-10-06": "Prophet's Birthday* (*estimated)", + "1957-10-07": "Prophet's Birthday* (*estimated)", + "1957-11-18": "Independence Day; Throne Day", + "1958-01-01": "New Year's Day", + "1958-01-11": "Proclamation of Independence Day", + "1958-04-20": "Eid al-Fitr* (*estimated)", + "1958-04-21": "Eid al-Fitr* (*estimated)", + "1958-05-01": "Labor Day", + "1958-06-27": "Eid al-Adha* (*estimated)", + "1958-06-28": "Eid al-Adha* (*estimated)", + "1958-07-09": "Youth Day", + "1958-07-18": "Islamic New Year* (*estimated)", + "1958-08-14": "Oued Ed-Dahab Day", + "1958-08-20": "Revolution Day", + "1958-09-26": "Prophet's Birthday* (*estimated)", + "1958-09-27": "Prophet's Birthday* (*estimated)", + "1958-11-18": "Independence Day; Throne Day", + "1959-01-01": "New Year's Day", + "1959-01-11": "Proclamation of Independence Day", + "1959-04-10": "Eid al-Fitr* (*estimated)", + "1959-04-11": "Eid al-Fitr* (*estimated)", + "1959-05-01": "Labor Day", + "1959-06-17": "Eid al-Adha* (*estimated)", + "1959-06-18": "Eid al-Adha* (*estimated)", + "1959-07-07": "Islamic New Year* (*estimated)", + "1959-07-09": "Youth Day", + "1959-08-14": "Oued Ed-Dahab Day", + "1959-08-20": "Revolution Day", + "1959-09-15": "Prophet's Birthday* (*estimated)", + "1959-09-16": "Prophet's Birthday* (*estimated)", + "1959-11-18": "Independence Day; Throne Day", + "1960-01-01": "New Year's Day", + "1960-01-11": "Proclamation of Independence Day", + "1960-03-28": "Eid al-Fitr* (*estimated)", + "1960-03-29": "Eid al-Fitr* (*estimated)", + "1960-05-01": "Labor Day", + "1960-06-04": "Eid al-Adha* (*estimated)", + "1960-06-05": "Eid al-Adha* (*estimated)", + "1960-06-25": "Islamic New Year* (*estimated)", + "1960-07-09": "Youth Day", + "1960-08-14": "Oued Ed-Dahab Day", + "1960-08-20": "Revolution Day", + "1960-09-03": "Prophet's Birthday* (*estimated)", + "1960-09-04": "Prophet's Birthday* (*estimated)", + "1960-11-18": "Independence Day; Throne Day", + "1961-01-01": "New Year's Day", + "1961-01-11": "Proclamation of Independence Day", + "1961-03-18": "Eid al-Fitr* (*estimated)", + "1961-03-19": "Eid al-Fitr* (*estimated)", + "1961-05-01": "Labor Day", + "1961-05-25": "Eid al-Adha* (*estimated)", + "1961-05-26": "Eid al-Adha* (*estimated)", + "1961-06-14": "Islamic New Year* (*estimated)", + "1961-07-09": "Youth Day", + "1961-08-14": "Oued Ed-Dahab Day", + "1961-08-20": "Revolution Day", + "1961-08-23": "Prophet's Birthday* (*estimated)", + "1961-08-24": "Prophet's Birthday* (*estimated)", + "1961-11-18": "Independence Day; Throne Day", + "1962-01-01": "New Year's Day", + "1962-01-11": "Proclamation of Independence Day", + "1962-03-07": "Eid al-Fitr* (*estimated)", + "1962-03-08": "Eid al-Fitr* (*estimated)", + "1962-05-01": "Labor Day", + "1962-05-14": "Eid al-Adha* (*estimated)", + "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-06-03": "Islamic New Year* (*estimated)", + "1962-07-09": "Youth Day", + "1962-08-12": "Prophet's Birthday* (*estimated)", + "1962-08-13": "Prophet's Birthday* (*estimated)", + "1962-08-14": "Oued Ed-Dahab Day", + "1962-08-20": "Revolution Day", + "1962-11-18": "Independence Day; Throne Day", + "1963-01-01": "New Year's Day", + "1963-01-11": "Proclamation of Independence Day", + "1963-02-24": "Eid al-Fitr* (*estimated)", + "1963-02-25": "Eid al-Fitr* (*estimated)", + "1963-03-03": "Throne Day", + "1963-05-01": "Labor Day", + "1963-05-03": "Eid al-Adha* (*estimated)", + "1963-05-04": "Eid al-Adha* (*estimated)", + "1963-05-24": "Islamic New Year* (*estimated)", + "1963-07-09": "Youth Day", + "1963-08-02": "Prophet's Birthday* (*estimated)", + "1963-08-03": "Prophet's Birthday* (*estimated)", + "1963-08-14": "Oued Ed-Dahab Day", + "1963-08-20": "Revolution Day", + "1963-11-18": "Independence Day", + "1964-01-01": "New Year's Day", + "1964-01-11": "Proclamation of Independence Day", + "1964-02-14": "Eid al-Fitr* (*estimated)", + "1964-02-15": "Eid al-Fitr* (*estimated)", + "1964-03-03": "Throne Day", + "1964-04-22": "Eid al-Adha* (*estimated)", + "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-05-01": "Labor Day", + "1964-05-12": "Islamic New Year* (*estimated)", + "1964-07-09": "Youth Day", + "1964-07-21": "Prophet's Birthday* (*estimated)", + "1964-07-22": "Prophet's Birthday* (*estimated)", + "1964-08-14": "Oued Ed-Dahab Day", + "1964-08-20": "Revolution Day", + "1964-11-18": "Independence Day", + "1965-01-01": "New Year's Day", + "1965-01-11": "Proclamation of Independence Day", + "1965-02-02": "Eid al-Fitr* (*estimated)", + "1965-02-03": "Eid al-Fitr* (*estimated)", + "1965-03-03": "Throne Day", + "1965-04-11": "Eid al-Adha* (*estimated)", + "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-05-01": "Islamic New Year* (*estimated); Labor Day", + "1965-07-09": "Youth Day", + "1965-07-10": "Prophet's Birthday* (*estimated)", + "1965-07-11": "Prophet's Birthday* (*estimated)", + "1965-08-14": "Oued Ed-Dahab Day", + "1965-08-20": "Revolution Day", + "1965-11-18": "Independence Day", + "1966-01-01": "New Year's Day", + "1966-01-11": "Proclamation of Independence Day", + "1966-01-22": "Eid al-Fitr* (*estimated)", + "1966-01-23": "Eid al-Fitr* (*estimated)", + "1966-03-03": "Throne Day", + "1966-04-01": "Eid al-Adha* (*estimated)", + "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-21": "Islamic New Year* (*estimated)", + "1966-05-01": "Labor Day", + "1966-07-01": "Prophet's Birthday* (*estimated)", + "1966-07-02": "Prophet's Birthday* (*estimated)", + "1966-07-09": "Youth Day", + "1966-08-14": "Oued Ed-Dahab Day", + "1966-08-20": "Revolution Day", + "1966-11-18": "Independence Day", + "1967-01-01": "New Year's Day", + "1967-01-11": "Proclamation of Independence Day", + "1967-01-12": "Eid al-Fitr* (*estimated)", + "1967-01-13": "Eid al-Fitr* (*estimated)", + "1967-03-03": "Throne Day", + "1967-03-21": "Eid al-Adha* (*estimated)", + "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-04-11": "Islamic New Year* (*estimated)", + "1967-05-01": "Labor Day", + "1967-06-19": "Prophet's Birthday* (*estimated)", + "1967-06-20": "Prophet's Birthday* (*estimated)", + "1967-07-09": "Youth Day", + "1967-08-14": "Oued Ed-Dahab Day", + "1967-08-20": "Revolution Day", + "1967-11-18": "Independence Day", + "1968-01-01": "Eid al-Fitr* (*estimated); New Year's Day", + "1968-01-02": "Eid al-Fitr* (*estimated)", + "1968-01-11": "Proclamation of Independence Day", + "1968-03-03": "Throne Day", + "1968-03-09": "Eid al-Adha* (*estimated)", + "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-30": "Islamic New Year* (*estimated)", + "1968-05-01": "Labor Day", + "1968-06-08": "Prophet's Birthday* (*estimated)", + "1968-06-09": "Prophet's Birthday* (*estimated)", + "1968-07-09": "Youth Day", + "1968-08-14": "Oued Ed-Dahab Day", + "1968-08-20": "Revolution Day", + "1968-11-18": "Independence Day", + "1968-12-21": "Eid al-Fitr* (*estimated)", + "1968-12-22": "Eid al-Fitr* (*estimated)", + "1969-01-01": "New Year's Day", + "1969-01-11": "Proclamation of Independence Day", + "1969-02-27": "Eid al-Adha* (*estimated)", + "1969-02-28": "Eid al-Adha* (*estimated)", + "1969-03-03": "Throne Day", + "1969-03-19": "Islamic New Year* (*estimated)", + "1969-05-01": "Labor Day", + "1969-05-28": "Prophet's Birthday* (*estimated)", + "1969-05-29": "Prophet's Birthday* (*estimated)", + "1969-07-09": "Youth Day", + "1969-08-14": "Oued Ed-Dahab Day", + "1969-08-20": "Revolution Day", + "1969-11-18": "Independence Day", + "1969-12-10": "Eid al-Fitr* (*estimated)", + "1969-12-11": "Eid al-Fitr* (*estimated)", + "1970-01-01": "New Year's Day", + "1970-01-11": "Proclamation of Independence Day", + "1970-02-16": "Eid al-Adha* (*estimated)", + "1970-02-17": "Eid al-Adha* (*estimated)", + "1970-03-03": "Throne Day", + "1970-03-09": "Islamic New Year* (*estimated)", + "1970-05-01": "Labor Day", + "1970-05-18": "Prophet's Birthday* (*estimated)", + "1970-05-19": "Prophet's Birthday* (*estimated)", + "1970-07-09": "Youth Day", + "1970-08-14": "Oued Ed-Dahab Day", + "1970-08-20": "Revolution Day", + "1970-11-18": "Independence Day", + "1970-11-30": "Eid al-Fitr* (*estimated)", + "1970-12-01": "Eid al-Fitr* (*estimated)", + "1971-01-01": "New Year's Day", + "1971-01-11": "Proclamation of Independence Day", + "1971-02-06": "Eid al-Adha* (*estimated)", + "1971-02-07": "Eid al-Adha* (*estimated)", + "1971-02-26": "Islamic New Year* (*estimated)", + "1971-03-03": "Throne Day", + "1971-05-01": "Labor Day", + "1971-05-07": "Prophet's Birthday* (*estimated)", + "1971-05-08": "Prophet's Birthday* (*estimated)", + "1971-07-09": "Youth Day", + "1971-08-14": "Oued Ed-Dahab Day", + "1971-08-20": "Revolution Day", + "1971-11-18": "Independence Day", + "1971-11-19": "Eid al-Fitr* (*estimated)", + "1971-11-20": "Eid al-Fitr* (*estimated)", + "1972-01-01": "New Year's Day", + "1972-01-11": "Proclamation of Independence Day", + "1972-01-26": "Eid al-Adha* (*estimated)", + "1972-01-27": "Eid al-Adha* (*estimated)", + "1972-02-16": "Islamic New Year* (*estimated)", + "1972-03-03": "Throne Day", + "1972-04-25": "Prophet's Birthday* (*estimated)", + "1972-04-26": "Prophet's Birthday* (*estimated)", + "1972-05-01": "Labor Day", + "1972-07-09": "Youth Day", + "1972-08-14": "Oued Ed-Dahab Day", + "1972-08-20": "Revolution Day", + "1972-11-07": "Eid al-Fitr* (*estimated)", + "1972-11-08": "Eid al-Fitr* (*estimated)", + "1972-11-18": "Independence Day", + "1973-01-01": "New Year's Day", + "1973-01-11": "Proclamation of Independence Day", + "1973-01-14": "Eid al-Adha* (*estimated)", + "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-02-04": "Islamic New Year* (*estimated)", + "1973-03-03": "Throne Day", + "1973-04-15": "Prophet's Birthday* (*estimated)", + "1973-04-16": "Prophet's Birthday* (*estimated)", + "1973-05-01": "Labor Day", + "1973-07-09": "Youth Day", + "1973-08-14": "Oued Ed-Dahab Day", + "1973-08-20": "Revolution Day", + "1973-10-27": "Eid al-Fitr* (*estimated)", + "1973-10-28": "Eid al-Fitr* (*estimated)", + "1973-11-18": "Independence Day", + "1974-01-01": "New Year's Day", + "1974-01-03": "Eid al-Adha* (*estimated)", + "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-11": "Proclamation of Independence Day", + "1974-01-24": "Islamic New Year* (*estimated)", + "1974-03-03": "Throne Day", + "1974-04-04": "Prophet's Birthday* (*estimated)", + "1974-04-05": "Prophet's Birthday* (*estimated)", + "1974-05-01": "Labor Day", + "1974-07-09": "Youth Day", + "1974-08-14": "Oued Ed-Dahab Day", + "1974-08-20": "Revolution Day", + "1974-10-16": "Eid al-Fitr* (*estimated)", + "1974-10-17": "Eid al-Fitr* (*estimated)", + "1974-11-18": "Independence Day", + "1974-12-24": "Eid al-Adha* (*estimated)", + "1974-12-25": "Eid al-Adha* (*estimated)", + "1975-01-01": "New Year's Day", + "1975-01-11": "Proclamation of Independence Day", + "1975-01-13": "Islamic New Year* (*estimated)", + "1975-03-03": "Throne Day", + "1975-03-24": "Prophet's Birthday* (*estimated)", + "1975-03-25": "Prophet's Birthday* (*estimated)", + "1975-05-01": "Labor Day", + "1975-07-09": "Youth Day", + "1975-08-14": "Oued Ed-Dahab Day", + "1975-08-20": "Revolution Day", + "1975-10-06": "Eid al-Fitr* (*estimated)", + "1975-10-07": "Eid al-Fitr* (*estimated)", + "1975-11-18": "Independence Day", + "1975-12-13": "Eid al-Adha* (*estimated)", + "1975-12-14": "Eid al-Adha* (*estimated)", + "1976-01-01": "New Year's Day", + "1976-01-02": "Islamic New Year* (*estimated)", + "1976-01-11": "Proclamation of Independence Day", + "1976-03-03": "Throne Day", + "1976-03-12": "Prophet's Birthday* (*estimated)", + "1976-03-13": "Prophet's Birthday* (*estimated)", + "1976-05-01": "Labor Day", + "1976-07-09": "Youth Day", + "1976-08-14": "Oued Ed-Dahab Day", + "1976-08-20": "Revolution Day", + "1976-09-24": "Eid al-Fitr* (*estimated)", + "1976-09-25": "Eid al-Fitr* (*estimated)", + "1976-11-06": "Green March", + "1976-11-18": "Independence Day", + "1976-12-01": "Eid al-Adha* (*estimated)", + "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-22": "Islamic New Year* (*estimated)", + "1977-01-01": "New Year's Day", + "1977-01-11": "Proclamation of Independence Day", + "1977-03-02": "Prophet's Birthday* (*estimated)", + "1977-03-03": "Prophet's Birthday* (*estimated); Throne Day", + "1977-05-01": "Labor Day", + "1977-07-09": "Youth Day", + "1977-08-14": "Oued Ed-Dahab Day", + "1977-08-20": "Revolution Day", + "1977-09-14": "Eid al-Fitr* (*estimated)", + "1977-09-15": "Eid al-Fitr* (*estimated)", + "1977-11-06": "Green March", + "1977-11-18": "Independence Day", + "1977-11-21": "Eid al-Adha* (*estimated)", + "1977-11-22": "Eid al-Adha* (*estimated)", + "1977-12-11": "Islamic New Year* (*estimated)", + "1978-01-01": "New Year's Day", + "1978-01-11": "Proclamation of Independence Day", + "1978-02-19": "Prophet's Birthday* (*estimated)", + "1978-02-20": "Prophet's Birthday* (*estimated)", + "1978-03-03": "Throne Day", + "1978-05-01": "Labor Day", + "1978-07-09": "Youth Day", + "1978-08-14": "Oued Ed-Dahab Day", + "1978-08-20": "Revolution Day", + "1978-09-03": "Eid al-Fitr* (*estimated)", + "1978-09-04": "Eid al-Fitr* (*estimated)", + "1978-11-06": "Green March", + "1978-11-10": "Eid al-Adha* (*estimated)", + "1978-11-11": "Eid al-Adha* (*estimated)", + "1978-11-18": "Independence Day", + "1978-12-01": "Islamic New Year* (*estimated)", + "1979-01-01": "New Year's Day", + "1979-01-11": "Proclamation of Independence Day", + "1979-02-09": "Prophet's Birthday* (*estimated)", + "1979-02-10": "Prophet's Birthday* (*estimated)", + "1979-03-03": "Throne Day", + "1979-05-01": "Labor Day", + "1979-07-09": "Youth Day", + "1979-08-14": "Oued Ed-Dahab Day", + "1979-08-20": "Revolution Day", + "1979-08-23": "Eid al-Fitr* (*estimated)", + "1979-08-24": "Eid al-Fitr* (*estimated)", + "1979-10-31": "Eid al-Adha* (*estimated)", + "1979-11-01": "Eid al-Adha* (*estimated)", + "1979-11-06": "Green March", + "1979-11-18": "Independence Day", + "1979-11-20": "Islamic New Year* (*estimated)", + "1980-01-01": "New Year's Day", + "1980-01-11": "Proclamation of Independence Day", + "1980-01-30": "Prophet's Birthday* (*estimated)", + "1980-01-31": "Prophet's Birthday* (*estimated)", + "1980-03-03": "Throne Day", + "1980-05-01": "Labor Day", + "1980-07-09": "Youth Day", + "1980-08-12": "Eid al-Fitr* (*estimated)", + "1980-08-13": "Eid al-Fitr* (*estimated)", + "1980-08-14": "Oued Ed-Dahab Day", + "1980-08-20": "Revolution Day", + "1980-10-19": "Eid al-Adha* (*estimated)", + "1980-10-20": "Eid al-Adha* (*estimated)", + "1980-11-06": "Green March", + "1980-11-09": "Islamic New Year* (*estimated)", + "1980-11-18": "Independence Day", + "1981-01-01": "New Year's Day", + "1981-01-11": "Proclamation of Independence Day", + "1981-01-18": "Prophet's Birthday* (*estimated)", + "1981-01-19": "Prophet's Birthday* (*estimated)", + "1981-03-03": "Throne Day", + "1981-05-01": "Labor Day", + "1981-07-09": "Youth Day", + "1981-08-01": "Eid al-Fitr* (*estimated)", + "1981-08-02": "Eid al-Fitr* (*estimated)", + "1981-08-14": "Oued Ed-Dahab Day", + "1981-08-20": "Revolution Day", + "1981-10-08": "Eid al-Adha* (*estimated)", + "1981-10-09": "Eid al-Adha* (*estimated)", + "1981-10-28": "Islamic New Year* (*estimated)", + "1981-11-06": "Green March", + "1981-11-18": "Independence Day", + "1982-01-01": "New Year's Day", + "1982-01-07": "Prophet's Birthday* (*estimated)", + "1982-01-08": "Prophet's Birthday* (*estimated)", + "1982-01-11": "Proclamation of Independence Day", + "1982-03-03": "Throne Day", + "1982-05-01": "Labor Day", + "1982-07-09": "Youth Day", + "1982-07-21": "Eid al-Fitr* (*estimated)", + "1982-07-22": "Eid al-Fitr* (*estimated)", + "1982-08-14": "Oued Ed-Dahab Day", + "1982-08-20": "Revolution Day", + "1982-09-27": "Eid al-Adha* (*estimated)", + "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-10-18": "Islamic New Year* (*estimated)", + "1982-11-06": "Green March", + "1982-11-18": "Independence Day", + "1982-12-27": "Prophet's Birthday* (*estimated)", + "1982-12-28": "Prophet's Birthday* (*estimated)", + "1983-01-01": "New Year's Day", + "1983-01-11": "Proclamation of Independence Day", + "1983-03-03": "Throne Day", + "1983-05-01": "Labor Day", + "1983-07-09": "Youth Day", + "1983-07-11": "Eid al-Fitr* (*estimated)", + "1983-07-12": "Eid al-Fitr* (*estimated)", + "1983-08-14": "Oued Ed-Dahab Day", + "1983-08-20": "Revolution Day", + "1983-09-17": "Eid al-Adha* (*estimated)", + "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-10-07": "Islamic New Year* (*estimated)", + "1983-11-06": "Green March", + "1983-11-18": "Independence Day", + "1983-12-16": "Prophet's Birthday* (*estimated)", + "1983-12-17": "Prophet's Birthday* (*estimated)", + "1984-01-01": "New Year's Day", + "1984-01-11": "Proclamation of Independence Day", + "1984-03-03": "Throne Day", + "1984-05-01": "Labor Day", + "1984-06-30": "Eid al-Fitr* (*estimated)", + "1984-07-01": "Eid al-Fitr* (*estimated)", + "1984-07-09": "Youth Day", + "1984-08-14": "Oued Ed-Dahab Day", + "1984-08-20": "Revolution Day", + "1984-09-05": "Eid al-Adha* (*estimated)", + "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-26": "Islamic New Year* (*estimated)", + "1984-11-06": "Green March", + "1984-11-18": "Independence Day", + "1984-12-04": "Prophet's Birthday* (*estimated)", + "1984-12-05": "Prophet's Birthday* (*estimated)", + "1985-01-01": "New Year's Day", + "1985-01-11": "Proclamation of Independence Day", + "1985-03-03": "Throne Day", + "1985-05-01": "Labor Day", + "1985-06-19": "Eid al-Fitr* (*estimated)", + "1985-06-20": "Eid al-Fitr* (*estimated)", + "1985-07-09": "Youth Day", + "1985-08-14": "Oued Ed-Dahab Day", + "1985-08-20": "Revolution Day", + "1985-08-26": "Eid al-Adha* (*estimated)", + "1985-08-27": "Eid al-Adha* (*estimated)", + "1985-09-15": "Islamic New Year* (*estimated)", + "1985-11-06": "Green March", + "1985-11-18": "Independence Day", + "1985-11-24": "Prophet's Birthday* (*estimated)", + "1985-11-25": "Prophet's Birthday* (*estimated)", + "1986-01-01": "New Year's Day", + "1986-01-11": "Proclamation of Independence Day", + "1986-03-03": "Throne Day", + "1986-05-01": "Labor Day", + "1986-06-08": "Eid al-Fitr* (*estimated)", + "1986-06-09": "Eid al-Fitr* (*estimated)", + "1986-07-09": "Youth Day", + "1986-08-14": "Oued Ed-Dahab Day", + "1986-08-15": "Eid al-Adha* (*estimated)", + "1986-08-16": "Eid al-Adha* (*estimated)", + "1986-08-20": "Revolution Day", + "1986-09-05": "Islamic New Year* (*estimated)", + "1986-11-06": "Green March", + "1986-11-14": "Prophet's Birthday* (*estimated)", + "1986-11-15": "Prophet's Birthday* (*estimated)", + "1986-11-18": "Independence Day", + "1987-01-01": "New Year's Day", + "1987-01-11": "Proclamation of Independence Day", + "1987-03-03": "Throne Day", + "1987-05-01": "Labor Day", + "1987-05-28": "Eid al-Fitr* (*estimated)", + "1987-05-29": "Eid al-Fitr* (*estimated)", + "1987-07-09": "Youth Day", + "1987-08-04": "Eid al-Adha* (*estimated)", + "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-14": "Oued Ed-Dahab Day", + "1987-08-20": "Revolution Day", + "1987-08-25": "Islamic New Year* (*estimated)", + "1987-11-03": "Prophet's Birthday* (*estimated)", + "1987-11-04": "Prophet's Birthday* (*estimated)", + "1987-11-06": "Green March", + "1987-11-18": "Independence Day", + "1988-01-01": "New Year's Day", + "1988-01-11": "Proclamation of Independence Day", + "1988-03-03": "Throne Day", + "1988-05-01": "Labor Day", + "1988-05-16": "Eid al-Fitr* (*estimated)", + "1988-05-17": "Eid al-Fitr* (*estimated)", + "1988-07-09": "Youth Day", + "1988-07-23": "Eid al-Adha* (*estimated)", + "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-08-13": "Islamic New Year* (*estimated)", + "1988-08-14": "Oued Ed-Dahab Day", + "1988-08-20": "Revolution Day", + "1988-10-22": "Prophet's Birthday* (*estimated)", + "1988-10-23": "Prophet's Birthday* (*estimated)", + "1988-11-06": "Green March", + "1988-11-18": "Independence Day", + "1989-01-01": "New Year's Day", + "1989-01-11": "Proclamation of Independence Day", + "1989-03-03": "Throne Day", + "1989-05-01": "Labor Day", + "1989-05-06": "Eid al-Fitr* (*estimated)", + "1989-05-07": "Eid al-Fitr* (*estimated)", + "1989-07-09": "Youth Day", + "1989-07-13": "Eid al-Adha* (*estimated)", + "1989-07-14": "Eid al-Adha* (*estimated)", + "1989-08-02": "Islamic New Year* (*estimated)", + "1989-08-14": "Oued Ed-Dahab Day", + "1989-08-20": "Revolution Day", + "1989-10-11": "Prophet's Birthday* (*estimated)", + "1989-10-12": "Prophet's Birthday* (*estimated)", + "1989-11-06": "Green March", + "1989-11-18": "Independence Day", + "1990-01-01": "New Year's Day", + "1990-01-11": "Proclamation of Independence Day", + "1990-03-03": "Throne Day", + "1990-04-26": "Eid al-Fitr* (*estimated)", + "1990-04-27": "Eid al-Fitr* (*estimated)", + "1990-05-01": "Labor Day", + "1990-07-02": "Eid al-Adha* (*estimated)", + "1990-07-03": "Eid al-Adha* (*estimated)", + "1990-07-09": "Youth Day", + "1990-07-23": "Islamic New Year* (*estimated)", + "1990-08-14": "Oued Ed-Dahab Day", + "1990-08-20": "Revolution Day", + "1990-10-01": "Prophet's Birthday* (*estimated)", + "1990-10-02": "Prophet's Birthday* (*estimated)", + "1990-11-06": "Green March", + "1990-11-18": "Independence Day", + "1991-01-01": "New Year's Day", + "1991-01-11": "Proclamation of Independence Day", + "1991-03-03": "Throne Day", + "1991-04-15": "Eid al-Fitr* (*estimated)", + "1991-04-16": "Eid al-Fitr* (*estimated)", + "1991-05-01": "Labor Day", + "1991-06-22": "Eid al-Adha* (*estimated)", + "1991-06-23": "Eid al-Adha* (*estimated)", + "1991-07-09": "Youth Day", + "1991-07-12": "Islamic New Year* (*estimated)", + "1991-08-14": "Oued Ed-Dahab Day", + "1991-08-20": "Revolution Day", + "1991-09-20": "Prophet's Birthday* (*estimated)", + "1991-09-21": "Prophet's Birthday* (*estimated)", + "1991-11-06": "Green March", + "1991-11-18": "Independence Day", + "1992-01-01": "New Year's Day", + "1992-01-11": "Proclamation of Independence Day", + "1992-03-03": "Throne Day", + "1992-04-04": "Eid al-Fitr* (*estimated)", + "1992-04-05": "Eid al-Fitr* (*estimated)", + "1992-05-01": "Labor Day", + "1992-06-11": "Eid al-Adha* (*estimated)", + "1992-06-12": "Eid al-Adha* (*estimated)", + "1992-07-01": "Islamic New Year* (*estimated)", + "1992-07-09": "Youth Day", + "1992-08-14": "Oued Ed-Dahab Day", + "1992-08-20": "Revolution Day", + "1992-09-09": "Prophet's Birthday* (*estimated)", + "1992-09-10": "Prophet's Birthday* (*estimated)", + "1992-11-06": "Green March", + "1992-11-18": "Independence Day", + "1993-01-01": "New Year's Day", + "1993-01-11": "Proclamation of Independence Day", + "1993-03-03": "Throne Day", + "1993-03-24": "Eid al-Fitr* (*estimated)", + "1993-03-25": "Eid al-Fitr* (*estimated)", + "1993-05-01": "Labor Day", + "1993-05-31": "Eid al-Adha* (*estimated)", + "1993-06-01": "Eid al-Adha* (*estimated)", + "1993-06-21": "Islamic New Year* (*estimated)", + "1993-07-09": "Youth Day", + "1993-08-14": "Oued Ed-Dahab Day", + "1993-08-20": "Revolution Day", + "1993-08-29": "Prophet's Birthday* (*estimated)", + "1993-08-30": "Prophet's Birthday* (*estimated)", + "1993-11-06": "Green March", + "1993-11-18": "Independence Day", + "1994-01-01": "New Year's Day", + "1994-01-11": "Proclamation of Independence Day", + "1994-03-03": "Throne Day", + "1994-03-13": "Eid al-Fitr* (*estimated)", + "1994-03-14": "Eid al-Fitr* (*estimated)", + "1994-05-01": "Labor Day", + "1994-05-20": "Eid al-Adha* (*estimated)", + "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-06-10": "Islamic New Year* (*estimated)", + "1994-07-09": "Youth Day", + "1994-08-14": "Oued Ed-Dahab Day", + "1994-08-19": "Prophet's Birthday* (*estimated)", + "1994-08-20": "Prophet's Birthday* (*estimated); Revolution Day", + "1994-11-06": "Green March", + "1994-11-18": "Independence Day", + "1995-01-01": "New Year's Day", + "1995-01-11": "Proclamation of Independence Day", + "1995-03-02": "Eid al-Fitr* (*estimated)", + "1995-03-03": "Eid al-Fitr* (*estimated); Throne Day", + "1995-05-01": "Labor Day", + "1995-05-09": "Eid al-Adha* (*estimated)", + "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-30": "Islamic New Year* (*estimated)", + "1995-07-09": "Youth Day", + "1995-08-08": "Prophet's Birthday* (*estimated)", + "1995-08-09": "Prophet's Birthday* (*estimated)", + "1995-08-14": "Oued Ed-Dahab Day", + "1995-08-20": "Revolution Day", + "1995-11-06": "Green March", + "1995-11-18": "Independence Day", + "1996-01-01": "New Year's Day", + "1996-01-11": "Proclamation of Independence Day", + "1996-02-19": "Eid al-Fitr* (*estimated)", + "1996-02-20": "Eid al-Fitr* (*estimated)", + "1996-03-03": "Throne Day", + "1996-04-27": "Eid al-Adha* (*estimated)", + "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-05-01": "Labor Day", + "1996-05-18": "Islamic New Year* (*estimated)", + "1996-07-09": "Youth Day", + "1996-07-27": "Prophet's Birthday* (*estimated)", + "1996-07-28": "Prophet's Birthday* (*estimated)", + "1996-08-14": "Oued Ed-Dahab Day", + "1996-08-20": "Revolution Day", + "1996-11-06": "Green March", + "1996-11-18": "Independence Day", + "1997-01-01": "New Year's Day", + "1997-01-11": "Proclamation of Independence Day", + "1997-02-08": "Eid al-Fitr* (*estimated)", + "1997-02-09": "Eid al-Fitr* (*estimated)", + "1997-03-03": "Throne Day", + "1997-04-17": "Eid al-Adha* (*estimated)", + "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-05-01": "Labor Day", + "1997-05-07": "Islamic New Year* (*estimated)", + "1997-07-09": "Youth Day", + "1997-07-16": "Prophet's Birthday* (*estimated)", + "1997-07-17": "Prophet's Birthday* (*estimated)", + "1997-08-14": "Oued Ed-Dahab Day", + "1997-08-20": "Revolution Day", + "1997-11-06": "Green March", + "1997-11-18": "Independence Day", + "1998-01-01": "New Year's Day", + "1998-01-11": "Proclamation of Independence Day", + "1998-01-29": "Eid al-Fitr* (*estimated)", + "1998-01-30": "Eid al-Fitr* (*estimated)", + "1998-03-03": "Throne Day", + "1998-04-07": "Eid al-Adha* (*estimated)", + "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-27": "Islamic New Year* (*estimated)", + "1998-05-01": "Labor Day", + "1998-07-06": "Prophet's Birthday* (*estimated)", + "1998-07-07": "Prophet's Birthday* (*estimated)", + "1998-07-09": "Youth Day", + "1998-08-14": "Oued Ed-Dahab Day", + "1998-08-20": "Revolution Day", + "1998-11-06": "Green March", + "1998-11-18": "Independence Day", + "1999-01-01": "New Year's Day", + "1999-01-11": "Proclamation of Independence Day", + "1999-01-18": "Eid al-Fitr* (*estimated)", + "1999-01-19": "Eid al-Fitr* (*estimated)", + "1999-03-03": "Throne Day", + "1999-03-27": "Eid al-Adha* (*estimated)", + "1999-03-28": "Eid al-Adha* (*estimated)", + "1999-04-17": "Islamic New Year* (*estimated)", + "1999-05-01": "Labor Day", + "1999-06-26": "Prophet's Birthday* (*estimated)", + "1999-06-27": "Prophet's Birthday* (*estimated)", + "1999-07-09": "Youth Day", + "1999-08-14": "Oued Ed-Dahab Day", + "1999-08-20": "Revolution Day", + "1999-11-06": "Green March", + "1999-11-18": "Independence Day", + "2000-01-01": "New Year's Day", + "2000-01-08": "Eid al-Fitr* (*estimated)", + "2000-01-09": "Eid al-Fitr* (*estimated)", + "2000-01-11": "Proclamation of Independence Day", + "2000-03-03": "Throne Day", + "2000-03-16": "Eid al-Adha* (*estimated)", + "2000-03-17": "Eid al-Adha* (*estimated)", + "2000-04-06": "Islamic New Year* (*estimated)", + "2000-05-01": "Labor Day", + "2000-06-14": "Prophet's Birthday* (*estimated)", + "2000-06-15": "Prophet's Birthday* (*estimated)", + "2000-07-09": "Youth Day", + "2000-08-14": "Oued Ed-Dahab Day", + "2000-08-20": "Revolution Day", + "2000-11-06": "Green March", + "2000-11-18": "Independence Day", + "2000-12-27": "Eid al-Fitr* (*estimated)", + "2000-12-28": "Eid al-Fitr* (*estimated)", + "2001-01-01": "New Year's Day", + "2001-01-11": "Proclamation of Independence Day", + "2001-03-05": "Eid al-Adha* (*estimated)", + "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-26": "Islamic New Year* (*estimated)", + "2001-05-01": "Labor Day", + "2001-06-04": "Prophet's Birthday* (*estimated)", + "2001-06-05": "Prophet's Birthday* (*estimated)", + "2001-07-30": "Throne Day", + "2001-08-14": "Oued Ed-Dahab Day", + "2001-08-20": "Revolution Day", + "2001-08-21": "Youth Day", + "2001-11-06": "Green March", + "2001-11-18": "Independence Day", + "2001-12-16": "Eid al-Fitr* (*estimated)", + "2001-12-17": "Eid al-Fitr* (*estimated)", + "2002-01-01": "New Year's Day", + "2002-01-11": "Proclamation of Independence Day", + "2002-02-22": "Eid al-Adha* (*estimated)", + "2002-02-23": "Eid al-Adha* (*estimated)", + "2002-03-15": "Islamic New Year* (*estimated)", + "2002-05-01": "Labor Day", + "2002-05-24": "Prophet's Birthday* (*estimated)", + "2002-05-25": "Prophet's Birthday* (*estimated)", + "2002-07-30": "Throne Day", + "2002-08-14": "Oued Ed-Dahab Day", + "2002-08-20": "Revolution Day", + "2002-08-21": "Youth Day", + "2002-11-06": "Green March", + "2002-11-18": "Independence Day", + "2002-12-05": "Eid al-Fitr* (*estimated)", + "2002-12-06": "Eid al-Fitr* (*estimated)", + "2003-01-01": "New Year's Day", + "2003-01-11": "Proclamation of Independence Day", + "2003-02-11": "Eid al-Adha* (*estimated)", + "2003-02-12": "Eid al-Adha* (*estimated)", + "2003-03-04": "Islamic New Year* (*estimated)", + "2003-05-01": "Labor Day", + "2003-05-13": "Prophet's Birthday* (*estimated)", + "2003-05-14": "Prophet's Birthday* (*estimated)", + "2003-07-30": "Throne Day", + "2003-08-14": "Oued Ed-Dahab Day", + "2003-08-20": "Revolution Day", + "2003-08-21": "Youth Day", + "2003-11-06": "Green March", + "2003-11-18": "Independence Day", + "2003-11-25": "Eid al-Fitr* (*estimated)", + "2003-11-26": "Eid al-Fitr* (*estimated)", + "2004-01-01": "New Year's Day", + "2004-01-11": "Proclamation of Independence Day", + "2004-02-01": "Eid al-Adha* (*estimated)", + "2004-02-02": "Eid al-Adha* (*estimated)", + "2004-02-21": "Islamic New Year* (*estimated)", + "2004-05-01": "Labor Day; Prophet's Birthday* (*estimated)", + "2004-05-02": "Prophet's Birthday* (*estimated)", + "2004-07-30": "Throne Day", + "2004-08-14": "Oued Ed-Dahab Day", + "2004-08-20": "Revolution Day", + "2004-08-21": "Youth Day", + "2004-11-06": "Green March", + "2004-11-14": "Eid al-Fitr* (*estimated)", + "2004-11-15": "Eid al-Fitr* (*estimated)", + "2004-11-18": "Independence Day", + "2005-01-01": "New Year's Day", + "2005-01-11": "Proclamation of Independence Day", + "2005-01-21": "Eid al-Adha* (*estimated)", + "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-02-10": "Islamic New Year* (*estimated)", + "2005-04-21": "Prophet's Birthday* (*estimated)", + "2005-04-22": "Prophet's Birthday* (*estimated)", + "2005-05-01": "Labor Day", + "2005-07-30": "Throne Day", + "2005-08-14": "Oued Ed-Dahab Day", + "2005-08-20": "Revolution Day", + "2005-08-21": "Youth Day", + "2005-11-03": "Eid al-Fitr* (*estimated)", + "2005-11-04": "Eid al-Fitr* (*estimated)", + "2005-11-06": "Green March", + "2005-11-18": "Independence Day", + "2006-01-01": "New Year's Day", + "2006-01-10": "Eid al-Adha* (*estimated)", + "2006-01-11": "Eid al-Adha* (*estimated); Proclamation of Independence Day", + "2006-01-31": "Islamic New Year* (*estimated)", + "2006-04-10": "Prophet's Birthday* (*estimated)", + "2006-04-11": "Prophet's Birthday* (*estimated)", + "2006-05-01": "Labor Day", + "2006-07-30": "Throne Day", + "2006-08-14": "Oued Ed-Dahab Day", + "2006-08-20": "Revolution Day", + "2006-08-21": "Youth Day", + "2006-10-23": "Eid al-Fitr* (*estimated)", + "2006-10-24": "Eid al-Fitr* (*estimated)", + "2006-11-06": "Green March", + "2006-11-18": "Independence Day", + "2006-12-31": "Eid al-Adha* (*estimated)", + "2007-01-01": "Eid al-Adha* (*estimated); New Year's Day", + "2007-01-11": "Proclamation of Independence Day", + "2007-01-20": "Islamic New Year* (*estimated)", + "2007-03-31": "Prophet's Birthday* (*estimated)", + "2007-04-01": "Prophet's Birthday* (*estimated)", + "2007-05-01": "Labor Day", + "2007-07-30": "Throne Day", + "2007-08-14": "Oued Ed-Dahab Day", + "2007-08-20": "Revolution Day", + "2007-08-21": "Youth Day", + "2007-10-13": "Eid al-Fitr* (*estimated)", + "2007-10-14": "Eid al-Fitr* (*estimated)", + "2007-11-06": "Green March", + "2007-11-18": "Independence Day", + "2007-12-20": "Eid al-Adha* (*estimated)", + "2007-12-21": "Eid al-Adha* (*estimated)", + "2008-01-01": "New Year's Day", + "2008-01-10": "Islamic New Year* (*estimated)", + "2008-01-11": "Proclamation of Independence Day", + "2008-03-20": "Prophet's Birthday* (*estimated)", + "2008-03-21": "Prophet's Birthday* (*estimated)", + "2008-05-01": "Labor Day", + "2008-07-30": "Throne Day", + "2008-08-14": "Oued Ed-Dahab Day", + "2008-08-20": "Revolution Day", + "2008-08-21": "Youth Day", + "2008-10-01": "Eid al-Fitr* (*estimated)", + "2008-10-02": "Eid al-Fitr* (*estimated)", + "2008-11-06": "Green March", + "2008-11-18": "Independence Day", + "2008-12-08": "Eid al-Adha* (*estimated)", + "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-29": "Islamic New Year* (*estimated)", + "2009-01-01": "New Year's Day", + "2009-01-11": "Proclamation of Independence Day", + "2009-03-09": "Prophet's Birthday* (*estimated)", + "2009-03-10": "Prophet's Birthday* (*estimated)", + "2009-05-01": "Labor Day", + "2009-07-30": "Throne Day", + "2009-08-14": "Oued Ed-Dahab Day", + "2009-08-20": "Revolution Day", + "2009-08-21": "Youth Day", + "2009-09-20": "Eid al-Fitr* (*estimated)", + "2009-09-21": "Eid al-Fitr* (*estimated)", + "2009-11-06": "Green March", + "2009-11-18": "Independence Day", + "2009-11-27": "Eid al-Adha* (*estimated)", + "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-12-18": "Islamic New Year* (*estimated)", + "2010-01-01": "New Year's Day", + "2010-01-11": "Proclamation of Independence Day", + "2010-02-26": "Prophet's Birthday* (*estimated)", + "2010-02-27": "Prophet's Birthday* (*estimated)", + "2010-05-01": "Labor Day", + "2010-07-30": "Throne Day", + "2010-08-14": "Oued Ed-Dahab Day", + "2010-08-20": "Revolution Day", + "2010-08-21": "Youth Day", + "2010-09-10": "Eid al-Fitr* (*estimated)", + "2010-09-11": "Eid al-Fitr* (*estimated)", + "2010-11-06": "Green March", + "2010-11-16": "Eid al-Adha* (*estimated)", + "2010-11-17": "Eid al-Adha* (*estimated)", + "2010-11-18": "Independence Day", + "2010-12-07": "Islamic New Year* (*estimated)", + "2011-01-01": "New Year's Day", + "2011-01-11": "Proclamation of Independence Day", + "2011-02-15": "Prophet's Birthday* (*estimated)", + "2011-02-16": "Prophet's Birthday* (*estimated)", + "2011-05-01": "Labor Day", + "2011-07-30": "Throne Day", + "2011-08-14": "Oued Ed-Dahab Day", + "2011-08-20": "Revolution Day", + "2011-08-21": "Youth Day", + "2011-08-30": "Eid al-Fitr* (*estimated)", + "2011-08-31": "Eid al-Fitr* (*estimated)", + "2011-11-06": "Eid al-Adha* (*estimated); Green March", + "2011-11-07": "Eid al-Adha* (*estimated)", + "2011-11-18": "Independence Day", + "2011-11-26": "Islamic New Year* (*estimated)", + "2012-01-01": "New Year's Day", + "2012-01-11": "Proclamation of Independence Day", + "2012-02-04": "Prophet's Birthday* (*estimated)", + "2012-02-05": "Prophet's Birthday* (*estimated)", + "2012-05-01": "Labor Day", + "2012-07-30": "Throne Day", + "2012-08-14": "Oued Ed-Dahab Day", + "2012-08-19": "Eid al-Fitr* (*estimated)", + "2012-08-20": "Eid al-Fitr* (*estimated); Revolution Day", + "2012-08-21": "Youth Day", + "2012-10-26": "Eid al-Adha* (*estimated)", + "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-11-06": "Green March", + "2012-11-15": "Islamic New Year* (*estimated)", + "2012-11-18": "Independence Day", + "2013-01-01": "New Year's Day", + "2013-01-11": "Proclamation of Independence Day", + "2013-01-24": "Prophet's Birthday* (*estimated)", + "2013-01-25": "Prophet's Birthday* (*estimated)", + "2013-05-01": "Labor Day", + "2013-07-30": "Throne Day", + "2013-08-08": "Eid al-Fitr* (*estimated)", + "2013-08-09": "Eid al-Fitr* (*estimated)", + "2013-08-14": "Oued Ed-Dahab Day", + "2013-08-20": "Revolution Day", + "2013-08-21": "Youth Day", + "2013-10-15": "Eid al-Adha* (*estimated)", + "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-11-04": "Islamic New Year* (*estimated)", + "2013-11-06": "Green March", + "2013-11-18": "Independence Day", + "2014-01-01": "New Year's Day", + "2014-01-11": "Proclamation of Independence Day", + "2014-01-13": "Prophet's Birthday* (*estimated)", + "2014-01-14": "Prophet's Birthday* (*estimated)", + "2014-05-01": "Labor Day", + "2014-07-28": "Eid al-Fitr* (*estimated)", + "2014-07-29": "Eid al-Fitr* (*estimated)", + "2014-07-30": "Throne Day", + "2014-08-14": "Oued Ed-Dahab Day", + "2014-08-20": "Revolution Day", + "2014-08-21": "Youth Day", + "2014-10-04": "Eid al-Adha* (*estimated)", + "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-25": "Islamic New Year* (*estimated)", + "2014-11-06": "Green March", + "2014-11-18": "Independence Day", + "2015-01-01": "New Year's Day", + "2015-01-03": "Prophet's Birthday* (*estimated)", + "2015-01-04": "Prophet's Birthday* (*estimated)", + "2015-01-11": "Proclamation of Independence Day", + "2015-05-01": "Labor Day", + "2015-07-17": "Eid al-Fitr* (*estimated)", + "2015-07-18": "Eid al-Fitr* (*estimated)", + "2015-07-30": "Throne Day", + "2015-08-14": "Oued Ed-Dahab Day", + "2015-08-20": "Revolution Day", + "2015-08-21": "Youth Day", + "2015-09-23": "Eid al-Adha* (*estimated)", + "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-10-14": "Islamic New Year* (*estimated)", + "2015-11-06": "Green March", + "2015-11-18": "Independence Day", + "2015-12-23": "Prophet's Birthday* (*estimated)", + "2015-12-24": "Prophet's Birthday* (*estimated)", + "2016-01-01": "New Year's Day", + "2016-01-11": "Proclamation of Independence Day", + "2016-05-01": "Labor Day", + "2016-07-06": "Eid al-Fitr* (*estimated)", + "2016-07-07": "Eid al-Fitr* (*estimated)", + "2016-07-30": "Throne Day", + "2016-08-14": "Oued Ed-Dahab Day", + "2016-08-20": "Revolution Day", + "2016-08-21": "Youth Day", + "2016-09-11": "Eid al-Adha* (*estimated)", + "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-10-02": "Islamic New Year* (*estimated)", + "2016-11-06": "Green March", + "2016-11-18": "Independence Day", + "2016-12-11": "Prophet's Birthday* (*estimated)", + "2016-12-12": "Prophet's Birthday* (*estimated)", + "2017-01-01": "New Year's Day", + "2017-01-11": "Proclamation of Independence Day", + "2017-05-01": "Labor Day", + "2017-06-25": "Eid al-Fitr* (*estimated)", + "2017-06-26": "Eid al-Fitr* (*estimated)", + "2017-07-30": "Throne Day", + "2017-08-14": "Oued Ed-Dahab Day", + "2017-08-20": "Revolution Day", + "2017-08-21": "Youth Day", + "2017-09-01": "Eid al-Adha* (*estimated)", + "2017-09-02": "Eid al-Adha* (*estimated)", + "2017-09-21": "Islamic New Year* (*estimated)", + "2017-11-06": "Green March", + "2017-11-18": "Independence Day", + "2017-11-30": "Prophet's Birthday* (*estimated)", + "2017-12-01": "Prophet's Birthday* (*estimated)", + "2018-01-01": "New Year's Day", + "2018-01-11": "Proclamation of Independence Day", + "2018-05-01": "Labor Day", + "2018-06-15": "Eid al-Fitr* (*estimated)", + "2018-06-16": "Eid al-Fitr* (*estimated)", + "2018-07-30": "Throne Day", + "2018-08-14": "Oued Ed-Dahab Day", + "2018-08-20": "Revolution Day", + "2018-08-21": "Eid al-Adha* (*estimated); Youth Day", + "2018-08-22": "Eid al-Adha* (*estimated)", + "2018-09-11": "Islamic New Year* (*estimated)", + "2018-11-06": "Green March", + "2018-11-18": "Independence Day", + "2018-11-20": "Prophet's Birthday* (*estimated)", + "2018-11-21": "Prophet's Birthday* (*estimated)", + "2019-01-01": "New Year's Day", + "2019-01-11": "Proclamation of Independence Day", + "2019-05-01": "Labor Day", + "2019-06-04": "Eid al-Fitr* (*estimated)", + "2019-06-05": "Eid al-Fitr* (*estimated)", + "2019-07-30": "Throne Day", + "2019-08-11": "Eid al-Adha* (*estimated)", + "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-14": "Oued Ed-Dahab Day", + "2019-08-20": "Revolution Day", + "2019-08-21": "Youth Day", + "2019-08-31": "Islamic New Year* (*estimated)", + "2019-11-06": "Green March", + "2019-11-09": "Prophet's Birthday* (*estimated)", + "2019-11-10": "Prophet's Birthday* (*estimated)", + "2019-11-18": "Independence Day", + "2020-01-01": "New Year's Day", + "2020-01-11": "Proclamation of Independence Day", + "2020-05-01": "Labor Day", + "2020-05-24": "Eid al-Fitr* (*estimated)", + "2020-05-25": "Eid al-Fitr* (*estimated)", + "2020-07-30": "Throne Day", + "2020-07-31": "Eid al-Adha* (*estimated)", + "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-08-14": "Oued Ed-Dahab Day", + "2020-08-20": "Islamic New Year* (*estimated); Revolution Day", + "2020-08-21": "Youth Day", + "2020-10-29": "Prophet's Birthday* (*estimated)", + "2020-10-30": "Prophet's Birthday* (*estimated)", + "2020-11-06": "Green March", + "2020-11-18": "Independence Day", + "2021-01-01": "New Year's Day", + "2021-01-11": "Proclamation of Independence Day", + "2021-05-01": "Labor Day", + "2021-05-13": "Eid al-Fitr* (*estimated)", + "2021-05-14": "Eid al-Fitr* (*estimated)", + "2021-07-20": "Eid al-Adha* (*estimated)", + "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-30": "Throne Day", + "2021-08-09": "Islamic New Year* (*estimated)", + "2021-08-14": "Oued Ed-Dahab Day", + "2021-08-20": "Revolution Day", + "2021-08-21": "Youth Day", + "2021-10-18": "Prophet's Birthday* (*estimated)", + "2021-10-19": "Prophet's Birthday* (*estimated)", + "2021-11-06": "Green March", + "2021-11-18": "Independence Day", + "2022-01-01": "New Year's Day", + "2022-01-11": "Proclamation of Independence Day", + "2022-05-01": "Labor Day", + "2022-05-02": "Eid al-Fitr* (*estimated)", + "2022-05-03": "Eid al-Fitr* (*estimated)", + "2022-07-09": "Eid al-Adha* (*estimated)", + "2022-07-10": "Eid al-Adha* (*estimated)", + "2022-07-30": "Islamic New Year* (*estimated); Throne Day", + "2022-08-14": "Oued Ed-Dahab Day", + "2022-08-20": "Revolution Day", + "2022-08-21": "Youth Day", + "2022-10-08": "Prophet's Birthday* (*estimated)", + "2022-10-09": "Prophet's Birthday* (*estimated)", + "2022-11-06": "Green March", + "2022-11-18": "Independence Day", + "2023-01-01": "New Year's Day", + "2023-01-11": "Proclamation of Independence Day", + "2023-04-21": "Eid al-Fitr* (*estimated)", + "2023-04-22": "Eid al-Fitr* (*estimated)", + "2023-05-01": "Labor Day", + "2023-06-28": "Eid al-Adha* (*estimated)", + "2023-06-29": "Eid al-Adha* (*estimated)", + "2023-07-19": "Islamic New Year* (*estimated)", + "2023-07-30": "Throne Day", + "2023-08-14": "Oued Ed-Dahab Day", + "2023-08-20": "Revolution Day", + "2023-08-21": "Youth Day", + "2023-09-27": "Prophet's Birthday* (*estimated)", + "2023-09-28": "Prophet's Birthday* (*estimated)", + "2023-11-06": "Green March", + "2023-11-18": "Independence Day", + "2024-01-01": "New Year's Day", + "2024-01-11": "Proclamation of Independence Day", + "2024-01-13": "Amazigh New Year", + "2024-04-10": "Eid al-Fitr* (*estimated)", + "2024-04-11": "Eid al-Fitr* (*estimated)", + "2024-05-01": "Labor Day", + "2024-06-16": "Eid al-Adha* (*estimated)", + "2024-06-17": "Eid al-Adha* (*estimated)", + "2024-07-07": "Islamic New Year* (*estimated)", + "2024-07-30": "Throne Day", + "2024-08-14": "Oued Ed-Dahab Day", + "2024-08-20": "Revolution Day", + "2024-08-21": "Youth Day", + "2024-09-15": "Prophet's Birthday* (*estimated)", + "2024-09-16": "Prophet's Birthday* (*estimated)", + "2024-11-06": "Green March", + "2024-11-18": "Independence Day", + "2025-01-01": "New Year's Day", + "2025-01-11": "Proclamation of Independence Day", + "2025-01-13": "Amazigh New Year", + "2025-03-30": "Eid al-Fitr* (*estimated)", + "2025-03-31": "Eid al-Fitr* (*estimated)", + "2025-05-01": "Labor Day", + "2025-06-06": "Eid al-Adha* (*estimated)", + "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-26": "Islamic New Year* (*estimated)", + "2025-07-30": "Throne Day", + "2025-08-14": "Oued Ed-Dahab Day", + "2025-08-20": "Revolution Day", + "2025-08-21": "Youth Day", + "2025-09-04": "Prophet's Birthday* (*estimated)", + "2025-09-05": "Prophet's Birthday* (*estimated)", + "2025-11-06": "Green March", + "2025-11-18": "Independence Day", + "2026-01-01": "New Year's Day", + "2026-01-11": "Proclamation of Independence Day", + "2026-01-13": "Amazigh New Year", + "2026-03-20": "Eid al-Fitr* (*estimated)", + "2026-03-21": "Eid al-Fitr* (*estimated)", + "2026-05-01": "Labor Day", + "2026-05-27": "Eid al-Adha* (*estimated)", + "2026-05-28": "Eid al-Adha* (*estimated)", + "2026-06-16": "Islamic New Year* (*estimated)", + "2026-07-30": "Throne Day", + "2026-08-14": "Oued Ed-Dahab Day", + "2026-08-20": "Revolution Day", + "2026-08-21": "Youth Day", + "2026-08-25": "Prophet's Birthday* (*estimated)", + "2026-08-26": "Prophet's Birthday* (*estimated)", + "2026-11-06": "Green March", + "2026-11-18": "Independence Day", + "2027-01-01": "New Year's Day", + "2027-01-11": "Proclamation of Independence Day", + "2027-01-13": "Amazigh New Year", + "2027-03-09": "Eid al-Fitr* (*estimated)", + "2027-03-10": "Eid al-Fitr* (*estimated)", + "2027-05-01": "Labor Day", + "2027-05-16": "Eid al-Adha* (*estimated)", + "2027-05-17": "Eid al-Adha* (*estimated)", + "2027-06-06": "Islamic New Year* (*estimated)", + "2027-07-30": "Throne Day", + "2027-08-14": "Oued Ed-Dahab Day; Prophet's Birthday* (*estimated)", + "2027-08-15": "Prophet's Birthday* (*estimated)", + "2027-08-20": "Revolution Day", + "2027-08-21": "Youth Day", + "2027-11-06": "Green March", + "2027-11-18": "Independence Day", + "2028-01-01": "New Year's Day", + "2028-01-11": "Proclamation of Independence Day", + "2028-01-13": "Amazigh New Year", + "2028-02-26": "Eid al-Fitr* (*estimated)", + "2028-02-27": "Eid al-Fitr* (*estimated)", + "2028-05-01": "Labor Day", + "2028-05-05": "Eid al-Adha* (*estimated)", + "2028-05-06": "Eid al-Adha* (*estimated)", + "2028-05-25": "Islamic New Year* (*estimated)", + "2028-07-30": "Throne Day", + "2028-08-03": "Prophet's Birthday* (*estimated)", + "2028-08-04": "Prophet's Birthday* (*estimated)", + "2028-08-14": "Oued Ed-Dahab Day", + "2028-08-20": "Revolution Day", + "2028-08-21": "Youth Day", + "2028-11-06": "Green March", + "2028-11-18": "Independence Day", + "2029-01-01": "New Year's Day", + "2029-01-11": "Proclamation of Independence Day", + "2029-01-13": "Amazigh New Year", + "2029-02-14": "Eid al-Fitr* (*estimated)", + "2029-02-15": "Eid al-Fitr* (*estimated)", + "2029-04-24": "Eid al-Adha* (*estimated)", + "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-05-01": "Labor Day", + "2029-05-14": "Islamic New Year* (*estimated)", + "2029-07-24": "Prophet's Birthday* (*estimated)", + "2029-07-25": "Prophet's Birthday* (*estimated)", + "2029-07-30": "Throne Day", + "2029-08-14": "Oued Ed-Dahab Day", + "2029-08-20": "Revolution Day", + "2029-08-21": "Youth Day", + "2029-11-06": "Green March", + "2029-11-18": "Independence Day", + "2030-01-01": "New Year's Day", + "2030-01-11": "Proclamation of Independence Day", + "2030-01-13": "Amazigh New Year", + "2030-02-04": "Eid al-Fitr* (*estimated)", + "2030-02-05": "Eid al-Fitr* (*estimated)", + "2030-04-13": "Eid al-Adha* (*estimated)", + "2030-04-14": "Eid al-Adha* (*estimated)", + "2030-05-01": "Labor Day", + "2030-05-03": "Islamic New Year* (*estimated)", + "2030-07-13": "Prophet's Birthday* (*estimated)", + "2030-07-14": "Prophet's Birthday* (*estimated)", + "2030-07-30": "Throne Day", + "2030-08-14": "Oued Ed-Dahab Day", + "2030-08-20": "Revolution Day", + "2030-08-21": "Youth Day", + "2030-11-06": "Green March", + "2030-11-18": "Independence Day", + "2031-01-01": "New Year's Day", + "2031-01-11": "Proclamation of Independence Day", + "2031-01-13": "Amazigh New Year", + "2031-01-24": "Eid al-Fitr* (*estimated)", + "2031-01-25": "Eid al-Fitr* (*estimated)", + "2031-04-02": "Eid al-Adha* (*estimated)", + "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-23": "Islamic New Year* (*estimated)", + "2031-05-01": "Labor Day", + "2031-07-02": "Prophet's Birthday* (*estimated)", + "2031-07-03": "Prophet's Birthday* (*estimated)", + "2031-07-30": "Throne Day", + "2031-08-14": "Oued Ed-Dahab Day", + "2031-08-20": "Revolution Day", + "2031-08-21": "Youth Day", + "2031-11-06": "Green March", + "2031-11-18": "Independence Day", + "2032-01-01": "New Year's Day", + "2032-01-11": "Proclamation of Independence Day", + "2032-01-13": "Amazigh New Year", + "2032-01-14": "Eid al-Fitr* (*estimated)", + "2032-01-15": "Eid al-Fitr* (*estimated)", + "2032-03-22": "Eid al-Adha* (*estimated)", + "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-04-11": "Islamic New Year* (*estimated)", + "2032-05-01": "Labor Day", + "2032-06-20": "Prophet's Birthday* (*estimated)", + "2032-06-21": "Prophet's Birthday* (*estimated)", + "2032-07-30": "Throne Day", + "2032-08-14": "Oued Ed-Dahab Day", + "2032-08-20": "Revolution Day", + "2032-08-21": "Youth Day", + "2032-11-06": "Green March", + "2032-11-18": "Independence Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "Eid al-Fitr* (*estimated)", + "2033-01-03": "Eid al-Fitr* (*estimated)", + "2033-01-11": "Proclamation of Independence Day", + "2033-01-13": "Amazigh New Year", + "2033-03-11": "Eid al-Adha* (*estimated)", + "2033-03-12": "Eid al-Adha* (*estimated)", + "2033-04-01": "Islamic New Year* (*estimated)", + "2033-05-01": "Labor Day", + "2033-06-09": "Prophet's Birthday* (*estimated)", + "2033-06-10": "Prophet's Birthday* (*estimated)", + "2033-07-30": "Throne Day", + "2033-08-14": "Oued Ed-Dahab Day", + "2033-08-20": "Revolution Day", + "2033-08-21": "Youth Day", + "2033-11-06": "Green March", + "2033-11-18": "Independence Day", + "2033-12-23": "Eid al-Fitr* (*estimated)", + "2033-12-24": "Eid al-Fitr* (*estimated)", + "2034-01-01": "New Year's Day", + "2034-01-11": "Proclamation of Independence Day", + "2034-01-13": "Amazigh New Year", + "2034-03-01": "Eid al-Adha* (*estimated)", + "2034-03-02": "Eid al-Adha* (*estimated)", + "2034-03-21": "Islamic New Year* (*estimated)", + "2034-05-01": "Labor Day", + "2034-05-30": "Prophet's Birthday* (*estimated)", + "2034-05-31": "Prophet's Birthday* (*estimated)", + "2034-07-30": "Throne Day", + "2034-08-14": "Oued Ed-Dahab Day", + "2034-08-20": "Revolution Day", + "2034-08-21": "Youth Day", + "2034-11-06": "Green March", + "2034-11-18": "Independence Day", + "2034-12-12": "Eid al-Fitr* (*estimated)", + "2034-12-13": "Eid al-Fitr* (*estimated)", + "2035-01-01": "New Year's Day", + "2035-01-11": "Proclamation of Independence Day", + "2035-01-13": "Amazigh New Year", + "2035-02-18": "Eid al-Adha* (*estimated)", + "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-03-11": "Islamic New Year* (*estimated)", + "2035-05-01": "Labor Day", + "2035-05-20": "Prophet's Birthday* (*estimated)", + "2035-05-21": "Prophet's Birthday* (*estimated)", + "2035-07-30": "Throne Day", + "2035-08-14": "Oued Ed-Dahab Day", + "2035-08-20": "Revolution Day", + "2035-08-21": "Youth Day", + "2035-11-06": "Green March", + "2035-11-18": "Independence Day", + "2035-12-01": "Eid al-Fitr* (*estimated)", + "2035-12-02": "Eid al-Fitr* (*estimated)", + "2036-01-01": "New Year's Day", + "2036-01-11": "Proclamation of Independence Day", + "2036-01-13": "Amazigh New Year", + "2036-02-07": "Eid al-Adha* (*estimated)", + "2036-02-08": "Eid al-Adha* (*estimated)", + "2036-02-28": "Islamic New Year* (*estimated)", + "2036-05-01": "Labor Day", + "2036-05-08": "Prophet's Birthday* (*estimated)", + "2036-05-09": "Prophet's Birthday* (*estimated)", + "2036-07-30": "Throne Day", + "2036-08-14": "Oued Ed-Dahab Day", + "2036-08-20": "Revolution Day", + "2036-08-21": "Youth Day", + "2036-11-06": "Green March", + "2036-11-18": "Independence Day", + "2036-11-19": "Eid al-Fitr* (*estimated)", + "2036-11-20": "Eid al-Fitr* (*estimated)", + "2037-01-01": "New Year's Day", + "2037-01-11": "Proclamation of Independence Day", + "2037-01-13": "Amazigh New Year", + "2037-01-26": "Eid al-Adha* (*estimated)", + "2037-01-27": "Eid al-Adha* (*estimated)", + "2037-02-16": "Islamic New Year* (*estimated)", + "2037-04-28": "Prophet's Birthday* (*estimated)", + "2037-04-29": "Prophet's Birthday* (*estimated)", + "2037-05-01": "Labor Day", + "2037-07-30": "Throne Day", + "2037-08-14": "Oued Ed-Dahab Day", + "2037-08-20": "Revolution Day", + "2037-08-21": "Youth Day", + "2037-11-06": "Green March", + "2037-11-08": "Eid al-Fitr* (*estimated)", + "2037-11-09": "Eid al-Fitr* (*estimated)", + "2037-11-18": "Independence Day", + "2038-01-01": "New Year's Day", + "2038-01-11": "Proclamation of Independence Day", + "2038-01-13": "Amazigh New Year", + "2038-01-16": "Eid al-Adha* (*estimated)", + "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-02-05": "Islamic New Year* (*estimated)", + "2038-04-17": "Prophet's Birthday* (*estimated)", + "2038-04-18": "Prophet's Birthday* (*estimated)", + "2038-05-01": "Labor Day", + "2038-07-30": "Throne Day", + "2038-08-14": "Oued Ed-Dahab Day", + "2038-08-20": "Revolution Day", + "2038-08-21": "Youth Day", + "2038-10-29": "Eid al-Fitr* (*estimated)", + "2038-10-30": "Eid al-Fitr* (*estimated)", + "2038-11-06": "Green March", + "2038-11-18": "Independence Day", + "2039-01-01": "New Year's Day", + "2039-01-05": "Eid al-Adha* (*estimated)", + "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-11": "Proclamation of Independence Day", + "2039-01-13": "Amazigh New Year", + "2039-01-26": "Islamic New Year* (*estimated)", + "2039-04-06": "Prophet's Birthday* (*estimated)", + "2039-04-07": "Prophet's Birthday* (*estimated)", + "2039-05-01": "Labor Day", + "2039-07-30": "Throne Day", + "2039-08-14": "Oued Ed-Dahab Day", + "2039-08-20": "Revolution Day", + "2039-08-21": "Youth Day", + "2039-10-19": "Eid al-Fitr* (*estimated)", + "2039-10-20": "Eid al-Fitr* (*estimated)", + "2039-11-06": "Green March", + "2039-11-18": "Independence Day", + "2039-12-26": "Eid al-Adha* (*estimated)", + "2039-12-27": "Eid al-Adha* (*estimated)", + "2040-01-01": "New Year's Day", + "2040-01-11": "Proclamation of Independence Day", + "2040-01-13": "Amazigh New Year", + "2040-01-15": "Islamic New Year* (*estimated)", + "2040-03-25": "Prophet's Birthday* (*estimated)", + "2040-03-26": "Prophet's Birthday* (*estimated)", + "2040-05-01": "Labor Day", + "2040-07-30": "Throne Day", + "2040-08-14": "Oued Ed-Dahab Day", + "2040-08-20": "Revolution Day", + "2040-08-21": "Youth Day", + "2040-10-07": "Eid al-Fitr* (*estimated)", + "2040-10-08": "Eid al-Fitr* (*estimated)", + "2040-11-06": "Green March", + "2040-11-18": "Independence Day", + "2040-12-14": "Eid al-Adha* (*estimated)", + "2040-12-15": "Eid al-Adha* (*estimated)", + "2041-01-01": "New Year's Day", + "2041-01-04": "Islamic New Year* (*estimated)", + "2041-01-11": "Proclamation of Independence Day", + "2041-01-13": "Amazigh New Year", + "2041-03-15": "Prophet's Birthday* (*estimated)", + "2041-03-16": "Prophet's Birthday* (*estimated)", + "2041-05-01": "Labor Day", + "2041-07-30": "Throne Day", + "2041-08-14": "Oued Ed-Dahab Day", + "2041-08-20": "Revolution Day", + "2041-08-21": "Youth Day", + "2041-09-26": "Eid al-Fitr* (*estimated)", + "2041-09-27": "Eid al-Fitr* (*estimated)", + "2041-11-06": "Green March", + "2041-11-18": "Independence Day", + "2041-12-04": "Eid al-Adha* (*estimated)", + "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-24": "Islamic New Year* (*estimated)", + "2042-01-01": "New Year's Day", + "2042-01-11": "Proclamation of Independence Day", + "2042-01-13": "Amazigh New Year", + "2042-03-04": "Prophet's Birthday* (*estimated)", + "2042-03-05": "Prophet's Birthday* (*estimated)", + "2042-05-01": "Labor Day", + "2042-07-30": "Throne Day", + "2042-08-14": "Oued Ed-Dahab Day", + "2042-08-20": "Revolution Day", + "2042-08-21": "Youth Day", + "2042-09-15": "Eid al-Fitr* (*estimated)", + "2042-09-16": "Eid al-Fitr* (*estimated)", + "2042-11-06": "Green March", + "2042-11-18": "Independence Day", + "2042-11-23": "Eid al-Adha* (*estimated)", + "2042-11-24": "Eid al-Adha* (*estimated)", + "2042-12-14": "Islamic New Year* (*estimated)", + "2043-01-01": "New Year's Day", + "2043-01-11": "Proclamation of Independence Day", + "2043-01-13": "Amazigh New Year", + "2043-02-22": "Prophet's Birthday* (*estimated)", + "2043-02-23": "Prophet's Birthday* (*estimated)", + "2043-05-01": "Labor Day", + "2043-07-30": "Throne Day", + "2043-08-14": "Oued Ed-Dahab Day", + "2043-08-20": "Revolution Day", + "2043-08-21": "Youth Day", + "2043-09-04": "Eid al-Fitr* (*estimated)", + "2043-09-05": "Eid al-Fitr* (*estimated)", + "2043-11-06": "Green March", + "2043-11-12": "Eid al-Adha* (*estimated)", + "2043-11-13": "Eid al-Adha* (*estimated)", + "2043-11-18": "Independence Day", + "2043-12-03": "Islamic New Year* (*estimated)", + "2044-01-01": "New Year's Day", + "2044-01-11": "Proclamation of Independence Day", + "2044-01-13": "Amazigh New Year", + "2044-02-11": "Prophet's Birthday* (*estimated)", + "2044-02-12": "Prophet's Birthday* (*estimated)", + "2044-05-01": "Labor Day", + "2044-07-30": "Throne Day", + "2044-08-14": "Oued Ed-Dahab Day", + "2044-08-20": "Revolution Day", + "2044-08-21": "Youth Day", + "2044-08-24": "Eid al-Fitr* (*estimated)", + "2044-08-25": "Eid al-Fitr* (*estimated)", + "2044-10-31": "Eid al-Adha* (*estimated)", + "2044-11-01": "Eid al-Adha* (*estimated)", + "2044-11-06": "Green March", + "2044-11-18": "Independence Day", + "2044-11-21": "Islamic New Year* (*estimated)", + "2045-01-01": "New Year's Day", + "2045-01-11": "Proclamation of Independence Day", + "2045-01-13": "Amazigh New Year", + "2045-01-30": "Prophet's Birthday* (*estimated)", + "2045-01-31": "Prophet's Birthday* (*estimated)", + "2045-05-01": "Labor Day", + "2045-07-30": "Throne Day", + "2045-08-14": "Eid al-Fitr* (*estimated); Oued Ed-Dahab Day", + "2045-08-15": "Eid al-Fitr* (*estimated)", + "2045-08-20": "Revolution Day", + "2045-08-21": "Youth Day", + "2045-10-21": "Eid al-Adha* (*estimated)", + "2045-10-22": "Eid al-Adha* (*estimated)", + "2045-11-06": "Green March", + "2045-11-10": "Islamic New Year* (*estimated)", + "2045-11-18": "Independence Day", + "2046-01-01": "New Year's Day", + "2046-01-11": "Proclamation of Independence Day", + "2046-01-13": "Amazigh New Year", + "2046-01-19": "Prophet's Birthday* (*estimated)", + "2046-01-20": "Prophet's Birthday* (*estimated)", + "2046-05-01": "Labor Day", + "2046-07-30": "Throne Day", + "2046-08-03": "Eid al-Fitr* (*estimated)", + "2046-08-04": "Eid al-Fitr* (*estimated)", + "2046-08-14": "Oued Ed-Dahab Day", + "2046-08-20": "Revolution Day", + "2046-08-21": "Youth Day", + "2046-10-10": "Eid al-Adha* (*estimated)", + "2046-10-11": "Eid al-Adha* (*estimated)", + "2046-10-31": "Islamic New Year* (*estimated)", + "2046-11-06": "Green March", + "2046-11-18": "Independence Day", + "2047-01-01": "New Year's Day", + "2047-01-08": "Prophet's Birthday* (*estimated)", + "2047-01-09": "Prophet's Birthday* (*estimated)", + "2047-01-11": "Proclamation of Independence Day", + "2047-01-13": "Amazigh New Year", + "2047-05-01": "Labor Day", + "2047-07-24": "Eid al-Fitr* (*estimated)", + "2047-07-25": "Eid al-Fitr* (*estimated)", + "2047-07-30": "Throne Day", + "2047-08-14": "Oued Ed-Dahab Day", + "2047-08-20": "Revolution Day", + "2047-08-21": "Youth Day", + "2047-09-30": "Eid al-Adha* (*estimated)", + "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-10-20": "Islamic New Year* (*estimated)", + "2047-11-06": "Green March", + "2047-11-18": "Independence Day", + "2047-12-29": "Prophet's Birthday* (*estimated)", + "2047-12-30": "Prophet's Birthday* (*estimated)", + "2048-01-01": "New Year's Day", + "2048-01-11": "Proclamation of Independence Day", + "2048-01-13": "Amazigh New Year", + "2048-05-01": "Labor Day", + "2048-07-12": "Eid al-Fitr* (*estimated)", + "2048-07-13": "Eid al-Fitr* (*estimated)", + "2048-07-30": "Throne Day", + "2048-08-14": "Oued Ed-Dahab Day", + "2048-08-20": "Revolution Day", + "2048-08-21": "Youth Day", + "2048-09-19": "Eid al-Adha* (*estimated)", + "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-10-09": "Islamic New Year* (*estimated)", + "2048-11-06": "Green March", + "2048-11-18": "Independence Day", + "2048-12-18": "Prophet's Birthday* (*estimated)", + "2048-12-19": "Prophet's Birthday* (*estimated)", + "2049-01-01": "New Year's Day", + "2049-01-11": "Proclamation of Independence Day", + "2049-01-13": "Amazigh New Year", + "2049-05-01": "Labor Day", + "2049-07-01": "Eid al-Fitr* (*estimated)", + "2049-07-02": "Eid al-Fitr* (*estimated)", + "2049-07-30": "Throne Day", + "2049-08-14": "Oued Ed-Dahab Day", + "2049-08-20": "Revolution Day", + "2049-08-21": "Youth Day", + "2049-09-08": "Eid al-Adha* (*estimated)", + "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-28": "Islamic New Year* (*estimated)", + "2049-11-06": "Green March", + "2049-11-18": "Independence Day", + "2049-12-07": "Prophet's Birthday* (*estimated)", + "2049-12-08": "Prophet's Birthday* (*estimated)", + "2050-01-01": "New Year's Day", + "2050-01-11": "Proclamation of Independence Day", + "2050-01-13": "Amazigh New Year", + "2050-05-01": "Labor Day", + "2050-06-20": "Eid al-Fitr* (*estimated)", + "2050-06-21": "Eid al-Fitr* (*estimated)", + "2050-07-30": "Throne Day", + "2050-08-14": "Oued Ed-Dahab Day", + "2050-08-20": "Revolution Day", + "2050-08-21": "Youth Day", + "2050-08-28": "Eid al-Adha* (*estimated)", + "2050-08-29": "Eid al-Adha* (*estimated)", + "2050-09-17": "Islamic New Year* (*estimated)", + "2050-11-06": "Green March", + "2050-11-18": "Independence Day", + "2050-11-26": "Prophet's Birthday* (*estimated)", + "2050-11-27": "Prophet's Birthday* (*estimated)" +} diff --git a/snapshots/countries/MC.json b/snapshots/countries/MC.json new file mode 100644 index 000000000..55a55bef8 --- /dev/null +++ b/snapshots/countries/MC.json @@ -0,0 +1,1302 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-02": "New Year's Day (Observed)", + "1950-01-27": "Saint Devote's Day", + "1950-04-10": "Easter Monday", + "1950-05-01": "Labour Day", + "1950-05-18": "Ascension's Day", + "1950-05-29": "Whit Monday", + "1950-06-08": "Corpus Christi", + "1950-08-15": "Assumption's Day", + "1950-11-01": "All Saints' Day", + "1950-11-19": "Prince's Day", + "1950-11-20": "Prince's Day (Observed)", + "1950-12-08": "Immaculate Conception's Day", + "1950-12-25": "Christmas Day", + "1951-01-01": "New Year's Day", + "1951-01-27": "Saint Devote's Day", + "1951-03-26": "Easter Monday", + "1951-05-01": "Labour Day", + "1951-05-03": "Ascension's Day", + "1951-05-14": "Whit Monday", + "1951-05-24": "Corpus Christi", + "1951-08-15": "Assumption's Day", + "1951-11-01": "All Saints' Day", + "1951-11-19": "Prince's Day", + "1951-12-08": "Immaculate Conception's Day", + "1951-12-25": "Christmas Day", + "1952-01-01": "New Year's Day", + "1952-01-27": "Saint Devote's Day", + "1952-04-14": "Easter Monday", + "1952-05-01": "Labour Day", + "1952-05-22": "Ascension's Day", + "1952-06-02": "Whit Monday", + "1952-06-12": "Corpus Christi", + "1952-08-15": "Assumption's Day", + "1952-11-01": "All Saints' Day", + "1952-11-19": "Prince's Day", + "1952-12-08": "Immaculate Conception's Day", + "1952-12-25": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-01-27": "Saint Devote's Day", + "1953-04-06": "Easter Monday", + "1953-05-01": "Labour Day", + "1953-05-14": "Ascension's Day", + "1953-05-25": "Whit Monday", + "1953-06-04": "Corpus Christi", + "1953-08-15": "Assumption's Day", + "1953-11-01": "All Saints' Day", + "1953-11-02": "All Saints' Day (Observed)", + "1953-11-19": "Prince's Day", + "1953-12-08": "Immaculate Conception's Day", + "1953-12-25": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-01-27": "Saint Devote's Day", + "1954-04-19": "Easter Monday", + "1954-05-01": "Labour Day", + "1954-05-27": "Ascension's Day", + "1954-06-07": "Whit Monday", + "1954-06-17": "Corpus Christi", + "1954-08-15": "Assumption's Day", + "1954-08-16": "Assumption's Day (Observed)", + "1954-11-01": "All Saints' Day", + "1954-11-19": "Prince's Day", + "1954-12-08": "Immaculate Conception's Day", + "1954-12-25": "Christmas Day", + "1955-01-01": "New Year's Day", + "1955-01-27": "Saint Devote's Day", + "1955-04-11": "Easter Monday", + "1955-05-01": "Labour Day", + "1955-05-02": "Labour Day (Observed)", + "1955-05-19": "Ascension's Day", + "1955-05-30": "Whit Monday", + "1955-06-09": "Corpus Christi", + "1955-08-15": "Assumption's Day", + "1955-11-01": "All Saints' Day", + "1955-11-19": "Prince's Day", + "1955-12-08": "Immaculate Conception's Day", + "1955-12-25": "Christmas Day", + "1955-12-26": "Christmas Day (Observed)", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year's Day (Observed)", + "1956-01-27": "Saint Devote's Day", + "1956-04-02": "Easter Monday", + "1956-05-01": "Labour Day", + "1956-05-10": "Ascension's Day", + "1956-05-21": "Whit Monday", + "1956-05-31": "Corpus Christi", + "1956-08-15": "Assumption's Day", + "1956-11-01": "All Saints' Day", + "1956-11-19": "Prince's Day", + "1956-12-08": "Immaculate Conception's Day", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-01-27": "Saint Devote's Day", + "1957-04-22": "Easter Monday", + "1957-05-01": "Labour Day", + "1957-05-30": "Ascension's Day", + "1957-06-10": "Whit Monday", + "1957-06-20": "Corpus Christi", + "1957-08-15": "Assumption's Day", + "1957-11-01": "All Saints' Day", + "1957-11-19": "Prince's Day", + "1957-12-08": "Immaculate Conception's Day", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-01-27": "Saint Devote's Day", + "1958-04-07": "Easter Monday", + "1958-05-01": "Labour Day", + "1958-05-15": "Ascension's Day", + "1958-05-26": "Whit Monday", + "1958-06-05": "Corpus Christi", + "1958-08-15": "Assumption's Day", + "1958-11-01": "All Saints' Day", + "1958-11-19": "Prince's Day", + "1958-12-08": "Immaculate Conception's Day", + "1958-12-25": "Christmas Day", + "1959-01-01": "New Year's Day", + "1959-01-27": "Saint Devote's Day", + "1959-03-30": "Easter Monday", + "1959-05-01": "Labour Day", + "1959-05-07": "Ascension's Day", + "1959-05-18": "Whit Monday", + "1959-05-28": "Corpus Christi", + "1959-08-15": "Assumption's Day", + "1959-11-01": "All Saints' Day", + "1959-11-02": "All Saints' Day (Observed)", + "1959-11-19": "Prince's Day", + "1959-12-08": "Immaculate Conception's Day", + "1959-12-25": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-01-27": "Saint Devote's Day", + "1960-04-18": "Easter Monday", + "1960-05-01": "Labour Day", + "1960-05-02": "Labour Day (Observed)", + "1960-05-26": "Ascension's Day", + "1960-06-06": "Whit Monday", + "1960-06-16": "Corpus Christi", + "1960-08-15": "Assumption's Day", + "1960-11-01": "All Saints' Day", + "1960-11-19": "Prince's Day", + "1960-12-08": "Immaculate Conception's Day", + "1960-12-25": "Christmas Day", + "1960-12-26": "Christmas Day (Observed)", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day (Observed)", + "1961-01-27": "Saint Devote's Day", + "1961-04-03": "Easter Monday", + "1961-05-01": "Labour Day", + "1961-05-11": "Ascension's Day", + "1961-05-22": "Whit Monday", + "1961-06-01": "Corpus Christi", + "1961-08-15": "Assumption's Day", + "1961-11-01": "All Saints' Day", + "1961-11-19": "Prince's Day", + "1961-11-20": "Prince's Day (Observed)", + "1961-12-08": "Immaculate Conception's Day", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-01-27": "Saint Devote's Day", + "1962-04-23": "Easter Monday", + "1962-05-01": "Labour Day", + "1962-05-31": "Ascension's Day", + "1962-06-11": "Whit Monday", + "1962-06-21": "Corpus Christi", + "1962-08-15": "Assumption's Day", + "1962-11-01": "All Saints' Day", + "1962-11-19": "Prince's Day", + "1962-12-08": "Immaculate Conception's Day", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-01-27": "Saint Devote's Day", + "1963-04-15": "Easter Monday", + "1963-05-01": "Labour Day", + "1963-05-23": "Ascension's Day", + "1963-06-03": "Whit Monday", + "1963-06-13": "Corpus Christi", + "1963-08-15": "Assumption's Day", + "1963-11-01": "All Saints' Day", + "1963-11-19": "Prince's Day", + "1963-12-08": "Immaculate Conception's Day", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-01-27": "Saint Devote's Day", + "1964-03-30": "Easter Monday", + "1964-05-01": "Labour Day", + "1964-05-07": "Ascension's Day", + "1964-05-18": "Whit Monday", + "1964-05-28": "Corpus Christi", + "1964-08-15": "Assumption's Day", + "1964-11-01": "All Saints' Day", + "1964-11-02": "All Saints' Day (Observed)", + "1964-11-19": "Prince's Day", + "1964-12-08": "Immaculate Conception's Day", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-01-27": "Saint Devote's Day", + "1965-04-19": "Easter Monday", + "1965-05-01": "Labour Day", + "1965-05-27": "Ascension's Day", + "1965-06-07": "Whit Monday", + "1965-06-17": "Corpus Christi", + "1965-08-15": "Assumption's Day", + "1965-08-16": "Assumption's Day (Observed)", + "1965-11-01": "All Saints' Day", + "1965-11-19": "Prince's Day", + "1965-12-08": "Immaculate Conception's Day", + "1965-12-25": "Christmas Day", + "1966-01-01": "New Year's Day", + "1966-01-27": "Saint Devote's Day", + "1966-04-11": "Easter Monday", + "1966-05-01": "Labour Day", + "1966-05-02": "Labour Day (Observed)", + "1966-05-19": "Ascension's Day", + "1966-05-30": "Whit Monday", + "1966-06-09": "Corpus Christi", + "1966-08-15": "Assumption's Day", + "1966-11-01": "All Saints' Day", + "1966-11-19": "Prince's Day", + "1966-12-08": "Immaculate Conception's Day", + "1966-12-25": "Christmas Day", + "1966-12-26": "Christmas Day (Observed)", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day (Observed)", + "1967-01-27": "Saint Devote's Day", + "1967-03-27": "Easter Monday", + "1967-05-01": "Labour Day", + "1967-05-04": "Ascension's Day", + "1967-05-15": "Whit Monday", + "1967-05-25": "Corpus Christi", + "1967-08-15": "Assumption's Day", + "1967-11-01": "All Saints' Day", + "1967-11-19": "Prince's Day", + "1967-11-20": "Prince's Day (Observed)", + "1967-12-08": "Immaculate Conception's Day", + "1967-12-25": "Christmas Day", + "1968-01-01": "New Year's Day", + "1968-01-27": "Saint Devote's Day", + "1968-04-15": "Easter Monday", + "1968-05-01": "Labour Day", + "1968-05-23": "Ascension's Day", + "1968-06-03": "Whit Monday", + "1968-06-13": "Corpus Christi", + "1968-08-15": "Assumption's Day", + "1968-11-01": "All Saints' Day", + "1968-11-19": "Prince's Day", + "1968-12-08": "Immaculate Conception's Day", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-01-27": "Saint Devote's Day", + "1969-04-07": "Easter Monday", + "1969-05-01": "Labour Day", + "1969-05-15": "Ascension's Day", + "1969-05-26": "Whit Monday", + "1969-06-05": "Corpus Christi", + "1969-08-15": "Assumption's Day", + "1969-11-01": "All Saints' Day", + "1969-11-19": "Prince's Day", + "1969-12-08": "Immaculate Conception's Day", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-01-27": "Saint Devote's Day", + "1970-03-30": "Easter Monday", + "1970-05-01": "Labour Day", + "1970-05-07": "Ascension's Day", + "1970-05-18": "Whit Monday", + "1970-05-28": "Corpus Christi", + "1970-08-15": "Assumption's Day", + "1970-11-01": "All Saints' Day", + "1970-11-02": "All Saints' Day (Observed)", + "1970-11-19": "Prince's Day", + "1970-12-08": "Immaculate Conception's Day", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-01-27": "Saint Devote's Day", + "1971-04-12": "Easter Monday", + "1971-05-01": "Labour Day", + "1971-05-20": "Ascension's Day", + "1971-05-31": "Whit Monday", + "1971-06-10": "Corpus Christi", + "1971-08-15": "Assumption's Day", + "1971-08-16": "Assumption's Day (Observed)", + "1971-11-01": "All Saints' Day", + "1971-11-19": "Prince's Day", + "1971-12-08": "Immaculate Conception's Day", + "1971-12-25": "Christmas Day", + "1972-01-01": "New Year's Day", + "1972-01-27": "Saint Devote's Day", + "1972-04-03": "Easter Monday", + "1972-05-01": "Labour Day", + "1972-05-11": "Ascension's Day", + "1972-05-22": "Whit Monday", + "1972-06-01": "Corpus Christi", + "1972-08-15": "Assumption's Day", + "1972-11-01": "All Saints' Day", + "1972-11-19": "Prince's Day", + "1972-11-20": "Prince's Day (Observed)", + "1972-12-08": "Immaculate Conception's Day", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-01-27": "Saint Devote's Day", + "1973-04-23": "Easter Monday", + "1973-05-01": "Labour Day", + "1973-05-31": "Ascension's Day", + "1973-06-11": "Whit Monday", + "1973-06-21": "Corpus Christi", + "1973-08-15": "Assumption's Day", + "1973-11-01": "All Saints' Day", + "1973-11-19": "Prince's Day", + "1973-12-08": "Immaculate Conception's Day", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-01-27": "Saint Devote's Day", + "1974-04-15": "Easter Monday", + "1974-05-01": "Labour Day", + "1974-05-23": "Ascension's Day", + "1974-06-03": "Whit Monday", + "1974-06-13": "Corpus Christi", + "1974-08-15": "Assumption's Day", + "1974-11-01": "All Saints' Day", + "1974-11-19": "Prince's Day", + "1974-12-08": "Immaculate Conception's Day", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-01-27": "Saint Devote's Day", + "1975-03-31": "Easter Monday", + "1975-05-01": "Labour Day", + "1975-05-08": "Ascension's Day", + "1975-05-19": "Whit Monday", + "1975-05-29": "Corpus Christi", + "1975-08-15": "Assumption's Day", + "1975-11-01": "All Saints' Day", + "1975-11-19": "Prince's Day", + "1975-12-08": "Immaculate Conception's Day", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-01-27": "Saint Devote's Day", + "1976-04-19": "Easter Monday", + "1976-05-01": "Labour Day", + "1976-05-27": "Ascension's Day", + "1976-06-07": "Whit Monday", + "1976-06-17": "Corpus Christi", + "1976-08-15": "Assumption's Day", + "1976-08-16": "Assumption's Day (Observed)", + "1976-11-01": "All Saints' Day", + "1976-11-19": "Prince's Day", + "1976-12-08": "Immaculate Conception's Day", + "1976-12-25": "Christmas Day", + "1977-01-01": "New Year's Day", + "1977-01-27": "Saint Devote's Day", + "1977-04-11": "Easter Monday", + "1977-05-01": "Labour Day", + "1977-05-02": "Labour Day (Observed)", + "1977-05-19": "Ascension's Day", + "1977-05-30": "Whit Monday", + "1977-06-09": "Corpus Christi", + "1977-08-15": "Assumption's Day", + "1977-11-01": "All Saints' Day", + "1977-11-19": "Prince's Day", + "1977-12-08": "Immaculate Conception's Day", + "1977-12-25": "Christmas Day", + "1977-12-26": "Christmas Day (Observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day (Observed)", + "1978-01-27": "Saint Devote's Day", + "1978-03-27": "Easter Monday", + "1978-05-01": "Labour Day", + "1978-05-04": "Ascension's Day", + "1978-05-15": "Whit Monday", + "1978-05-25": "Corpus Christi", + "1978-08-15": "Assumption's Day", + "1978-11-01": "All Saints' Day", + "1978-11-19": "Prince's Day", + "1978-11-20": "Prince's Day (Observed)", + "1978-12-08": "Immaculate Conception's Day", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-01-27": "Saint Devote's Day", + "1979-04-16": "Easter Monday", + "1979-05-01": "Labour Day", + "1979-05-24": "Ascension's Day", + "1979-06-04": "Whit Monday", + "1979-06-14": "Corpus Christi", + "1979-08-15": "Assumption's Day", + "1979-11-01": "All Saints' Day", + "1979-11-19": "Prince's Day", + "1979-12-08": "Immaculate Conception's Day", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-01-27": "Saint Devote's Day", + "1980-04-07": "Easter Monday", + "1980-05-01": "Labour Day", + "1980-05-15": "Ascension's Day", + "1980-05-26": "Whit Monday", + "1980-06-05": "Corpus Christi", + "1980-08-15": "Assumption's Day", + "1980-11-01": "All Saints' Day", + "1980-11-19": "Prince's Day", + "1980-12-08": "Immaculate Conception's Day", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-01-27": "Saint Devote's Day", + "1981-04-20": "Easter Monday", + "1981-05-01": "Labour Day", + "1981-05-28": "Ascension's Day", + "1981-06-08": "Whit Monday", + "1981-06-18": "Corpus Christi", + "1981-08-15": "Assumption's Day", + "1981-11-01": "All Saints' Day", + "1981-11-02": "All Saints' Day (Observed)", + "1981-11-19": "Prince's Day", + "1981-12-08": "Immaculate Conception's Day", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-01-27": "Saint Devote's Day", + "1982-04-12": "Easter Monday", + "1982-05-01": "Labour Day", + "1982-05-20": "Ascension's Day", + "1982-05-31": "Whit Monday", + "1982-06-10": "Corpus Christi", + "1982-08-15": "Assumption's Day", + "1982-08-16": "Assumption's Day (Observed)", + "1982-11-01": "All Saints' Day", + "1982-11-19": "Prince's Day", + "1982-12-08": "Immaculate Conception's Day", + "1982-12-25": "Christmas Day", + "1983-01-01": "New Year's Day", + "1983-01-27": "Saint Devote's Day", + "1983-04-04": "Easter Monday", + "1983-05-01": "Labour Day", + "1983-05-02": "Labour Day (Observed)", + "1983-05-12": "Ascension's Day", + "1983-05-23": "Whit Monday", + "1983-06-02": "Corpus Christi", + "1983-08-15": "Assumption's Day", + "1983-11-01": "All Saints' Day", + "1983-11-19": "Prince's Day", + "1983-12-08": "Immaculate Conception's Day", + "1983-12-25": "Christmas Day", + "1983-12-26": "Christmas Day (Observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (Observed)", + "1984-01-27": "Saint Devote's Day", + "1984-04-23": "Easter Monday", + "1984-05-01": "Labour Day", + "1984-05-31": "Ascension's Day", + "1984-06-11": "Whit Monday", + "1984-06-21": "Corpus Christi", + "1984-08-15": "Assumption's Day", + "1984-11-01": "All Saints' Day", + "1984-11-19": "Prince's Day", + "1984-12-08": "Immaculate Conception's Day", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-01-27": "Saint Devote's Day", + "1985-04-08": "Easter Monday", + "1985-05-01": "Labour Day", + "1985-05-16": "Ascension's Day", + "1985-05-27": "Whit Monday", + "1985-06-06": "Corpus Christi", + "1985-08-15": "Assumption's Day", + "1985-11-01": "All Saints' Day", + "1985-11-19": "Prince's Day", + "1985-12-08": "Immaculate Conception's Day", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-01-27": "Saint Devote's Day", + "1986-03-31": "Easter Monday", + "1986-05-01": "Labour Day", + "1986-05-08": "Ascension's Day", + "1986-05-19": "Whit Monday", + "1986-05-29": "Corpus Christi", + "1986-08-15": "Assumption's Day", + "1986-11-01": "All Saints' Day", + "1986-11-19": "Prince's Day", + "1986-12-08": "Immaculate Conception's Day", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-01-27": "Saint Devote's Day", + "1987-04-20": "Easter Monday", + "1987-05-01": "Labour Day", + "1987-05-28": "Ascension's Day", + "1987-06-08": "Whit Monday", + "1987-06-18": "Corpus Christi", + "1987-08-15": "Assumption's Day", + "1987-11-01": "All Saints' Day", + "1987-11-02": "All Saints' Day (Observed)", + "1987-11-19": "Prince's Day", + "1987-12-08": "Immaculate Conception's Day", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-01-27": "Saint Devote's Day", + "1988-04-04": "Easter Monday", + "1988-05-01": "Labour Day", + "1988-05-02": "Labour Day (Observed)", + "1988-05-12": "Ascension's Day", + "1988-05-23": "Whit Monday", + "1988-06-02": "Corpus Christi", + "1988-08-15": "Assumption's Day", + "1988-11-01": "All Saints' Day", + "1988-11-19": "Prince's Day", + "1988-12-08": "Immaculate Conception's Day", + "1988-12-25": "Christmas Day", + "1988-12-26": "Christmas Day (Observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (Observed)", + "1989-01-27": "Saint Devote's Day", + "1989-03-27": "Easter Monday", + "1989-05-01": "Labour Day", + "1989-05-04": "Ascension's Day", + "1989-05-15": "Whit Monday", + "1989-05-25": "Corpus Christi", + "1989-08-15": "Assumption's Day", + "1989-11-01": "All Saints' Day", + "1989-11-19": "Prince's Day", + "1989-11-20": "Prince's Day (Observed)", + "1989-12-08": "Immaculate Conception's Day", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-01-27": "Saint Devote's Day", + "1990-04-16": "Easter Monday", + "1990-05-01": "Labour Day", + "1990-05-24": "Ascension's Day", + "1990-06-04": "Whit Monday", + "1990-06-14": "Corpus Christi", + "1990-08-15": "Assumption's Day", + "1990-11-01": "All Saints' Day", + "1990-11-19": "Prince's Day", + "1990-12-08": "Immaculate Conception's Day", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-01-27": "Saint Devote's Day", + "1991-04-01": "Easter Monday", + "1991-05-01": "Labour Day", + "1991-05-09": "Ascension's Day", + "1991-05-20": "Whit Monday", + "1991-05-30": "Corpus Christi", + "1991-08-15": "Assumption's Day", + "1991-11-01": "All Saints' Day", + "1991-11-19": "Prince's Day", + "1991-12-08": "Immaculate Conception's Day", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-01-27": "Saint Devote's Day", + "1992-04-20": "Easter Monday", + "1992-05-01": "Labour Day", + "1992-05-28": "Ascension's Day", + "1992-06-08": "Whit Monday", + "1992-06-18": "Corpus Christi", + "1992-08-15": "Assumption's Day", + "1992-11-01": "All Saints' Day", + "1992-11-02": "All Saints' Day (Observed)", + "1992-11-19": "Prince's Day", + "1992-12-08": "Immaculate Conception's Day", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-01-27": "Saint Devote's Day", + "1993-04-12": "Easter Monday", + "1993-05-01": "Labour Day", + "1993-05-20": "Ascension's Day", + "1993-05-31": "Whit Monday", + "1993-06-10": "Corpus Christi", + "1993-08-15": "Assumption's Day", + "1993-08-16": "Assumption's Day (Observed)", + "1993-11-01": "All Saints' Day", + "1993-11-19": "Prince's Day", + "1993-12-08": "Immaculate Conception's Day", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-01-27": "Saint Devote's Day", + "1994-04-04": "Easter Monday", + "1994-05-01": "Labour Day", + "1994-05-02": "Labour Day (Observed)", + "1994-05-12": "Ascension's Day", + "1994-05-23": "Whit Monday", + "1994-06-02": "Corpus Christi", + "1994-08-15": "Assumption's Day", + "1994-11-01": "All Saints' Day", + "1994-11-19": "Prince's Day", + "1994-12-08": "Immaculate Conception's Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day (Observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (Observed)", + "1995-01-27": "Saint Devote's Day", + "1995-04-17": "Easter Monday", + "1995-05-01": "Labour Day", + "1995-05-25": "Ascension's Day", + "1995-06-05": "Whit Monday", + "1995-06-15": "Corpus Christi", + "1995-08-15": "Assumption's Day", + "1995-11-01": "All Saints' Day", + "1995-11-19": "Prince's Day", + "1995-11-20": "Prince's Day (Observed)", + "1995-12-08": "Immaculate Conception's Day", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-01-27": "Saint Devote's Day", + "1996-04-08": "Easter Monday", + "1996-05-01": "Labour Day", + "1996-05-16": "Ascension's Day", + "1996-05-27": "Whit Monday", + "1996-06-06": "Corpus Christi", + "1996-08-15": "Assumption's Day", + "1996-11-01": "All Saints' Day", + "1996-11-19": "Prince's Day", + "1996-12-08": "Immaculate Conception's Day", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-01-27": "Saint Devote's Day", + "1997-03-31": "Easter Monday", + "1997-05-01": "Labour Day", + "1997-05-08": "Ascension's Day", + "1997-05-19": "Whit Monday", + "1997-05-29": "Corpus Christi", + "1997-08-15": "Assumption's Day", + "1997-11-01": "All Saints' Day", + "1997-11-19": "Prince's Day", + "1997-12-08": "Immaculate Conception's Day", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-01-27": "Saint Devote's Day", + "1998-04-13": "Easter Monday", + "1998-05-01": "Labour Day", + "1998-05-21": "Ascension's Day", + "1998-06-01": "Whit Monday", + "1998-06-11": "Corpus Christi", + "1998-08-15": "Assumption's Day", + "1998-11-01": "All Saints' Day", + "1998-11-02": "All Saints' Day (Observed)", + "1998-11-19": "Prince's Day", + "1998-12-08": "Immaculate Conception's Day", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-01-27": "Saint Devote's Day", + "1999-04-05": "Easter Monday", + "1999-05-01": "Labour Day", + "1999-05-13": "Ascension's Day", + "1999-05-24": "Whit Monday", + "1999-06-03": "Corpus Christi", + "1999-08-15": "Assumption's Day", + "1999-08-16": "Assumption's Day (Observed)", + "1999-11-01": "All Saints' Day", + "1999-11-19": "Prince's Day", + "1999-12-08": "Immaculate Conception's Day", + "1999-12-25": "Christmas Day", + "2000-01-01": "New Year's Day", + "2000-01-27": "Saint Devote's Day", + "2000-04-24": "Easter Monday", + "2000-05-01": "Labour Day", + "2000-06-01": "Ascension's Day", + "2000-06-12": "Whit Monday", + "2000-06-22": "Corpus Christi", + "2000-08-15": "Assumption's Day", + "2000-11-01": "All Saints' Day", + "2000-11-19": "Prince's Day", + "2000-11-20": "Prince's Day (Observed)", + "2000-12-08": "Immaculate Conception's Day", + "2000-12-25": "Christmas Day", + "2001-01-01": "New Year's Day", + "2001-01-27": "Saint Devote's Day", + "2001-04-16": "Easter Monday", + "2001-05-01": "Labour Day", + "2001-05-24": "Ascension's Day", + "2001-06-04": "Whit Monday", + "2001-06-14": "Corpus Christi", + "2001-08-15": "Assumption's Day", + "2001-11-01": "All Saints' Day", + "2001-11-19": "Prince's Day", + "2001-12-08": "Immaculate Conception's Day", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-01-27": "Saint Devote's Day", + "2002-04-01": "Easter Monday", + "2002-05-01": "Labour Day", + "2002-05-09": "Ascension's Day", + "2002-05-20": "Whit Monday", + "2002-05-30": "Corpus Christi", + "2002-08-15": "Assumption's Day", + "2002-11-01": "All Saints' Day", + "2002-11-19": "Prince's Day", + "2002-12-08": "Immaculate Conception's Day", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-01-27": "Saint Devote's Day", + "2003-04-21": "Easter Monday", + "2003-05-01": "Labour Day", + "2003-05-29": "Ascension's Day", + "2003-06-09": "Whit Monday", + "2003-06-19": "Corpus Christi", + "2003-08-15": "Assumption's Day", + "2003-11-01": "All Saints' Day", + "2003-11-19": "Prince's Day", + "2003-12-08": "Immaculate Conception's Day", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-01-27": "Saint Devote's Day", + "2004-04-12": "Easter Monday", + "2004-05-01": "Labour Day", + "2004-05-20": "Ascension's Day", + "2004-05-31": "Whit Monday", + "2004-06-10": "Corpus Christi", + "2004-08-15": "Assumption's Day", + "2004-08-16": "Assumption's Day (Observed)", + "2004-11-01": "All Saints' Day", + "2004-11-19": "Prince's Day", + "2004-12-08": "Immaculate Conception's Day", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-01-27": "Saint Devote's Day", + "2005-03-28": "Easter Monday", + "2005-05-01": "Labour Day", + "2005-05-02": "Labour Day (Observed)", + "2005-05-05": "Ascension's Day", + "2005-05-16": "Whit Monday", + "2005-05-26": "Corpus Christi", + "2005-08-15": "Assumption's Day", + "2005-11-01": "All Saints' Day", + "2005-11-19": "Prince's Day", + "2005-12-08": "Immaculate Conception's Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day (Observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (Observed)", + "2006-01-27": "Saint Devote's Day", + "2006-04-17": "Easter Monday", + "2006-05-01": "Labour Day", + "2006-05-25": "Ascension's Day", + "2006-06-05": "Whit Monday", + "2006-06-15": "Corpus Christi", + "2006-08-15": "Assumption's Day", + "2006-11-01": "All Saints' Day", + "2006-11-19": "Prince's Day", + "2006-11-20": "Prince's Day (Observed)", + "2006-12-08": "Immaculate Conception's Day", + "2006-12-25": "Christmas Day", + "2007-01-01": "New Year's Day", + "2007-01-27": "Saint Devote's Day", + "2007-04-09": "Easter Monday", + "2007-05-01": "Labour Day", + "2007-05-17": "Ascension's Day", + "2007-05-28": "Whit Monday", + "2007-06-07": "Corpus Christi", + "2007-08-15": "Assumption's Day", + "2007-11-01": "All Saints' Day", + "2007-11-19": "Prince's Day", + "2007-12-08": "Immaculate Conception's Day", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-01-27": "Saint Devote's Day", + "2008-03-24": "Easter Monday", + "2008-05-01": "Ascension's Day; Labour Day", + "2008-05-12": "Whit Monday", + "2008-05-22": "Corpus Christi", + "2008-08-15": "Assumption's Day", + "2008-11-01": "All Saints' Day", + "2008-11-19": "Prince's Day", + "2008-12-08": "Immaculate Conception's Day", + "2008-12-25": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-01-27": "Saint Devote's Day", + "2009-04-13": "Easter Monday", + "2009-05-01": "Labour Day", + "2009-05-21": "Ascension's Day", + "2009-06-01": "Whit Monday", + "2009-06-11": "Corpus Christi", + "2009-08-15": "Assumption's Day", + "2009-11-01": "All Saints' Day", + "2009-11-02": "All Saints' Day (Observed)", + "2009-11-19": "Prince's Day", + "2009-12-08": "Immaculate Conception's Day", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-01-27": "Saint Devote's Day", + "2010-04-05": "Easter Monday", + "2010-05-01": "Labour Day", + "2010-05-13": "Ascension's Day", + "2010-05-24": "Whit Monday", + "2010-06-03": "Corpus Christi", + "2010-08-15": "Assumption's Day", + "2010-08-16": "Assumption's Day (Observed)", + "2010-11-01": "All Saints' Day", + "2010-11-19": "Prince's Day", + "2010-12-08": "Immaculate Conception's Day", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-01-27": "Saint Devote's Day", + "2011-04-25": "Easter Monday", + "2011-05-01": "Labour Day", + "2011-05-02": "Labour Day (Observed)", + "2011-06-02": "Ascension's Day", + "2011-06-13": "Whit Monday", + "2011-06-23": "Corpus Christi", + "2011-08-15": "Assumption's Day", + "2011-11-01": "All Saints' Day", + "2011-11-19": "Prince's Day", + "2011-12-08": "Immaculate Conception's Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day (Observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (Observed)", + "2012-01-27": "Saint Devote's Day", + "2012-04-09": "Easter Monday", + "2012-05-01": "Labour Day", + "2012-05-17": "Ascension's Day", + "2012-05-28": "Whit Monday", + "2012-06-07": "Corpus Christi", + "2012-08-15": "Assumption's Day", + "2012-11-01": "All Saints' Day", + "2012-11-19": "Prince's Day", + "2012-12-08": "Immaculate Conception's Day", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-01-27": "Saint Devote's Day", + "2013-04-01": "Easter Monday", + "2013-05-01": "Labour Day", + "2013-05-09": "Ascension's Day", + "2013-05-20": "Whit Monday", + "2013-05-30": "Corpus Christi", + "2013-08-15": "Assumption's Day", + "2013-11-01": "All Saints' Day", + "2013-11-19": "Prince's Day", + "2013-12-08": "Immaculate Conception's Day", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-27": "Saint Devote's Day", + "2014-04-21": "Easter Monday", + "2014-05-01": "Labour Day", + "2014-05-29": "Ascension's Day", + "2014-06-09": "Whit Monday", + "2014-06-19": "Corpus Christi", + "2014-08-15": "Assumption's Day", + "2014-11-01": "All Saints' Day", + "2014-11-19": "Prince's Day", + "2014-12-08": "Immaculate Conception's Day", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-01-07": "Public holiday", + "2015-01-27": "Saint Devote's Day", + "2015-04-06": "Easter Monday", + "2015-05-01": "Labour Day", + "2015-05-14": "Ascension's Day", + "2015-05-25": "Whit Monday", + "2015-06-04": "Corpus Christi", + "2015-08-15": "Assumption's Day", + "2015-11-01": "All Saints' Day", + "2015-11-02": "All Saints' Day (Observed)", + "2015-11-19": "Prince's Day", + "2015-12-08": "Immaculate Conception's Day", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-01-27": "Saint Devote's Day", + "2016-03-28": "Easter Monday", + "2016-05-01": "Labour Day", + "2016-05-02": "Labour Day (Observed)", + "2016-05-05": "Ascension's Day", + "2016-05-16": "Whit Monday", + "2016-05-26": "Corpus Christi", + "2016-08-15": "Assumption's Day", + "2016-11-01": "All Saints' Day", + "2016-11-19": "Prince's Day", + "2016-12-08": "Immaculate Conception's Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day (Observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (Observed)", + "2017-01-27": "Saint Devote's Day", + "2017-04-17": "Easter Monday", + "2017-05-01": "Labour Day", + "2017-05-25": "Ascension's Day", + "2017-06-05": "Whit Monday", + "2017-06-15": "Corpus Christi", + "2017-08-15": "Assumption's Day", + "2017-11-01": "All Saints' Day", + "2017-11-19": "Prince's Day", + "2017-11-20": "Prince's Day (Observed)", + "2017-12-08": "Immaculate Conception's Day", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-01-27": "Saint Devote's Day", + "2018-04-02": "Easter Monday", + "2018-05-01": "Labour Day", + "2018-05-10": "Ascension's Day", + "2018-05-21": "Whit Monday", + "2018-05-31": "Corpus Christi", + "2018-08-15": "Assumption's Day", + "2018-11-01": "All Saints' Day", + "2018-11-19": "Prince's Day", + "2018-12-08": "Immaculate Conception's Day", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-01-27": "Saint Devote's Day", + "2019-04-22": "Easter Monday", + "2019-05-01": "Labour Day", + "2019-05-30": "Ascension's Day", + "2019-06-10": "Whit Monday", + "2019-06-20": "Corpus Christi", + "2019-08-15": "Assumption's Day", + "2019-11-01": "All Saints' Day", + "2019-11-19": "Prince's Day", + "2019-12-09": "Immaculate Conception's Day", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-01-27": "Saint Devote's Day", + "2020-04-13": "Easter Monday", + "2020-05-01": "Labour Day", + "2020-05-21": "Ascension's Day", + "2020-06-01": "Whit Monday", + "2020-06-11": "Corpus Christi", + "2020-08-15": "Assumption's Day", + "2020-11-01": "All Saints' Day", + "2020-11-02": "All Saints' Day (Observed)", + "2020-11-19": "Prince's Day", + "2020-12-08": "Immaculate Conception's Day", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-01-27": "Saint Devote's Day", + "2021-04-05": "Easter Monday", + "2021-05-01": "Labour Day", + "2021-05-13": "Ascension's Day", + "2021-05-24": "Whit Monday", + "2021-06-03": "Corpus Christi", + "2021-08-15": "Assumption's Day", + "2021-08-16": "Assumption's Day (Observed)", + "2021-11-01": "All Saints' Day", + "2021-11-19": "Prince's Day", + "2021-12-08": "Immaculate Conception's Day", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-01-27": "Saint Devote's Day", + "2022-04-18": "Easter Monday", + "2022-05-01": "Labour Day", + "2022-05-02": "Labour Day (Observed)", + "2022-05-26": "Ascension's Day", + "2022-06-06": "Whit Monday", + "2022-06-16": "Corpus Christi", + "2022-08-15": "Assumption's Day", + "2022-11-01": "All Saints' Day", + "2022-11-19": "Prince's Day", + "2022-12-08": "Immaculate Conception's Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day (Observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (Observed)", + "2023-01-27": "Saint Devote's Day", + "2023-04-10": "Easter Monday", + "2023-05-01": "Labour Day", + "2023-05-18": "Ascension's Day", + "2023-05-29": "Whit Monday", + "2023-06-08": "Corpus Christi", + "2023-08-15": "Assumption's Day", + "2023-11-01": "All Saints' Day", + "2023-11-19": "Prince's Day", + "2023-11-20": "Prince's Day (Observed)", + "2023-12-08": "Immaculate Conception's Day", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-01-27": "Saint Devote's Day", + "2024-04-01": "Easter Monday", + "2024-05-01": "Labour Day", + "2024-05-09": "Ascension's Day", + "2024-05-20": "Whit Monday", + "2024-05-30": "Corpus Christi", + "2024-08-15": "Assumption's Day", + "2024-11-01": "All Saints' Day", + "2024-11-19": "Prince's Day", + "2024-12-09": "Immaculate Conception's Day", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-01-27": "Saint Devote's Day", + "2025-04-21": "Easter Monday", + "2025-05-01": "Labour Day", + "2025-05-29": "Ascension's Day", + "2025-06-09": "Whit Monday", + "2025-06-19": "Corpus Christi", + "2025-08-15": "Assumption's Day", + "2025-11-01": "All Saints' Day", + "2025-11-19": "Prince's Day", + "2025-12-08": "Immaculate Conception's Day", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-01-27": "Saint Devote's Day", + "2026-04-06": "Easter Monday", + "2026-05-01": "Labour Day", + "2026-05-14": "Ascension's Day", + "2026-05-25": "Whit Monday", + "2026-06-04": "Corpus Christi", + "2026-08-15": "Assumption's Day", + "2026-11-01": "All Saints' Day", + "2026-11-02": "All Saints' Day (Observed)", + "2026-11-19": "Prince's Day", + "2026-12-08": "Immaculate Conception's Day", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-01-27": "Saint Devote's Day", + "2027-03-29": "Easter Monday", + "2027-05-01": "Labour Day", + "2027-05-06": "Ascension's Day", + "2027-05-17": "Whit Monday", + "2027-05-27": "Corpus Christi", + "2027-08-15": "Assumption's Day", + "2027-08-16": "Assumption's Day (Observed)", + "2027-11-01": "All Saints' Day", + "2027-11-19": "Prince's Day", + "2027-12-08": "Immaculate Conception's Day", + "2027-12-25": "Christmas Day", + "2028-01-01": "New Year's Day", + "2028-01-27": "Saint Devote's Day", + "2028-04-17": "Easter Monday", + "2028-05-01": "Labour Day", + "2028-05-25": "Ascension's Day", + "2028-06-05": "Whit Monday", + "2028-06-15": "Corpus Christi", + "2028-08-15": "Assumption's Day", + "2028-11-01": "All Saints' Day", + "2028-11-19": "Prince's Day", + "2028-11-20": "Prince's Day (Observed)", + "2028-12-08": "Immaculate Conception's Day", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-01-27": "Saint Devote's Day", + "2029-04-02": "Easter Monday", + "2029-05-01": "Labour Day", + "2029-05-10": "Ascension's Day", + "2029-05-21": "Whit Monday", + "2029-05-31": "Corpus Christi", + "2029-08-15": "Assumption's Day", + "2029-11-01": "All Saints' Day", + "2029-11-19": "Prince's Day", + "2029-12-08": "Immaculate Conception's Day", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-01-27": "Saint Devote's Day", + "2030-04-22": "Easter Monday", + "2030-05-01": "Labour Day", + "2030-05-30": "Ascension's Day", + "2030-06-10": "Whit Monday", + "2030-06-20": "Corpus Christi", + "2030-08-15": "Assumption's Day", + "2030-11-01": "All Saints' Day", + "2030-11-19": "Prince's Day", + "2030-12-09": "Immaculate Conception's Day", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-01-27": "Saint Devote's Day", + "2031-04-14": "Easter Monday", + "2031-05-01": "Labour Day", + "2031-05-22": "Ascension's Day", + "2031-06-02": "Whit Monday", + "2031-06-12": "Corpus Christi", + "2031-08-15": "Assumption's Day", + "2031-11-01": "All Saints' Day", + "2031-11-19": "Prince's Day", + "2031-12-08": "Immaculate Conception's Day", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-01-27": "Saint Devote's Day", + "2032-03-29": "Easter Monday", + "2032-05-01": "Labour Day", + "2032-05-06": "Ascension's Day", + "2032-05-17": "Whit Monday", + "2032-05-27": "Corpus Christi", + "2032-08-15": "Assumption's Day", + "2032-08-16": "Assumption's Day (Observed)", + "2032-11-01": "All Saints' Day", + "2032-11-19": "Prince's Day", + "2032-12-08": "Immaculate Conception's Day", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-01-27": "Saint Devote's Day", + "2033-04-18": "Easter Monday", + "2033-05-01": "Labour Day", + "2033-05-02": "Labour Day (Observed)", + "2033-05-26": "Ascension's Day", + "2033-06-06": "Whit Monday", + "2033-06-16": "Corpus Christi", + "2033-08-15": "Assumption's Day", + "2033-11-01": "All Saints' Day", + "2033-11-19": "Prince's Day", + "2033-12-08": "Immaculate Conception's Day", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day (Observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-01-27": "Saint Devote's Day", + "2034-04-10": "Easter Monday", + "2034-05-01": "Labour Day", + "2034-05-18": "Ascension's Day", + "2034-05-29": "Whit Monday", + "2034-06-08": "Corpus Christi", + "2034-08-15": "Assumption's Day", + "2034-11-01": "All Saints' Day", + "2034-11-19": "Prince's Day", + "2034-11-20": "Prince's Day (Observed)", + "2034-12-08": "Immaculate Conception's Day", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-01-27": "Saint Devote's Day", + "2035-03-26": "Easter Monday", + "2035-05-01": "Labour Day", + "2035-05-03": "Ascension's Day", + "2035-05-14": "Whit Monday", + "2035-05-24": "Corpus Christi", + "2035-08-15": "Assumption's Day", + "2035-11-01": "All Saints' Day", + "2035-11-19": "Prince's Day", + "2035-12-08": "Immaculate Conception's Day", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-01-27": "Saint Devote's Day", + "2036-04-14": "Easter Monday", + "2036-05-01": "Labour Day", + "2036-05-22": "Ascension's Day", + "2036-06-02": "Whit Monday", + "2036-06-12": "Corpus Christi", + "2036-08-15": "Assumption's Day", + "2036-11-01": "All Saints' Day", + "2036-11-19": "Prince's Day", + "2036-12-08": "Immaculate Conception's Day", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-27": "Saint Devote's Day", + "2037-04-06": "Easter Monday", + "2037-05-01": "Labour Day", + "2037-05-14": "Ascension's Day", + "2037-05-25": "Whit Monday", + "2037-06-04": "Corpus Christi", + "2037-08-15": "Assumption's Day", + "2037-11-01": "All Saints' Day", + "2037-11-02": "All Saints' Day (Observed)", + "2037-11-19": "Prince's Day", + "2037-12-08": "Immaculate Conception's Day", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-01-27": "Saint Devote's Day", + "2038-04-26": "Easter Monday", + "2038-05-01": "Labour Day", + "2038-06-03": "Ascension's Day", + "2038-06-14": "Whit Monday", + "2038-06-24": "Corpus Christi", + "2038-08-15": "Assumption's Day", + "2038-08-16": "Assumption's Day (Observed)", + "2038-11-01": "All Saints' Day", + "2038-11-19": "Prince's Day", + "2038-12-08": "Immaculate Conception's Day", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-01-27": "Saint Devote's Day", + "2039-04-11": "Easter Monday", + "2039-05-01": "Labour Day", + "2039-05-02": "Labour Day (Observed)", + "2039-05-19": "Ascension's Day", + "2039-05-30": "Whit Monday", + "2039-06-09": "Corpus Christi", + "2039-08-15": "Assumption's Day", + "2039-11-01": "All Saints' Day", + "2039-11-19": "Prince's Day", + "2039-12-08": "Immaculate Conception's Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Christmas Day (Observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (Observed)", + "2040-01-27": "Saint Devote's Day", + "2040-04-02": "Easter Monday", + "2040-05-01": "Labour Day", + "2040-05-10": "Ascension's Day", + "2040-05-21": "Whit Monday", + "2040-05-31": "Corpus Christi", + "2040-08-15": "Assumption's Day", + "2040-11-01": "All Saints' Day", + "2040-11-19": "Prince's Day", + "2040-12-08": "Immaculate Conception's Day", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-01-27": "Saint Devote's Day", + "2041-04-22": "Easter Monday", + "2041-05-01": "Labour Day", + "2041-05-30": "Ascension's Day", + "2041-06-10": "Whit Monday", + "2041-06-20": "Corpus Christi", + "2041-08-15": "Assumption's Day", + "2041-11-01": "All Saints' Day", + "2041-11-19": "Prince's Day", + "2041-12-09": "Immaculate Conception's Day", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-01-27": "Saint Devote's Day", + "2042-04-07": "Easter Monday", + "2042-05-01": "Labour Day", + "2042-05-15": "Ascension's Day", + "2042-05-26": "Whit Monday", + "2042-06-05": "Corpus Christi", + "2042-08-15": "Assumption's Day", + "2042-11-01": "All Saints' Day", + "2042-11-19": "Prince's Day", + "2042-12-08": "Immaculate Conception's Day", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-01-27": "Saint Devote's Day", + "2043-03-30": "Easter Monday", + "2043-05-01": "Labour Day", + "2043-05-07": "Ascension's Day", + "2043-05-18": "Whit Monday", + "2043-05-28": "Corpus Christi", + "2043-08-15": "Assumption's Day", + "2043-11-01": "All Saints' Day", + "2043-11-02": "All Saints' Day (Observed)", + "2043-11-19": "Prince's Day", + "2043-12-08": "Immaculate Conception's Day", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-01-27": "Saint Devote's Day", + "2044-04-18": "Easter Monday", + "2044-05-01": "Labour Day", + "2044-05-02": "Labour Day (Observed)", + "2044-05-26": "Ascension's Day", + "2044-06-06": "Whit Monday", + "2044-06-16": "Corpus Christi", + "2044-08-15": "Assumption's Day", + "2044-11-01": "All Saints' Day", + "2044-11-19": "Prince's Day", + "2044-12-08": "Immaculate Conception's Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day (Observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (Observed)", + "2045-01-27": "Saint Devote's Day", + "2045-04-10": "Easter Monday", + "2045-05-01": "Labour Day", + "2045-05-18": "Ascension's Day", + "2045-05-29": "Whit Monday", + "2045-06-08": "Corpus Christi", + "2045-08-15": "Assumption's Day", + "2045-11-01": "All Saints' Day", + "2045-11-19": "Prince's Day", + "2045-11-20": "Prince's Day (Observed)", + "2045-12-08": "Immaculate Conception's Day", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-01-27": "Saint Devote's Day", + "2046-03-26": "Easter Monday", + "2046-05-01": "Labour Day", + "2046-05-03": "Ascension's Day", + "2046-05-14": "Whit Monday", + "2046-05-24": "Corpus Christi", + "2046-08-15": "Assumption's Day", + "2046-11-01": "All Saints' Day", + "2046-11-19": "Prince's Day", + "2046-12-08": "Immaculate Conception's Day", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-27": "Saint Devote's Day", + "2047-04-15": "Easter Monday", + "2047-05-01": "Labour Day", + "2047-05-23": "Ascension's Day", + "2047-06-03": "Whit Monday", + "2047-06-13": "Corpus Christi", + "2047-08-15": "Assumption's Day", + "2047-11-01": "All Saints' Day", + "2047-11-19": "Prince's Day", + "2047-12-09": "Immaculate Conception's Day", + "2047-12-25": "Christmas Day", + "2048-01-01": "New Year's Day", + "2048-01-27": "Saint Devote's Day", + "2048-04-06": "Easter Monday", + "2048-05-01": "Labour Day", + "2048-05-14": "Ascension's Day", + "2048-05-25": "Whit Monday", + "2048-06-04": "Corpus Christi", + "2048-08-15": "Assumption's Day", + "2048-11-01": "All Saints' Day", + "2048-11-02": "All Saints' Day (Observed)", + "2048-11-19": "Prince's Day", + "2048-12-08": "Immaculate Conception's Day", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-01-27": "Saint Devote's Day", + "2049-04-19": "Easter Monday", + "2049-05-01": "Labour Day", + "2049-05-27": "Ascension's Day", + "2049-06-07": "Whit Monday", + "2049-06-17": "Corpus Christi", + "2049-08-15": "Assumption's Day", + "2049-08-16": "Assumption's Day (Observed)", + "2049-11-01": "All Saints' Day", + "2049-11-19": "Prince's Day", + "2049-12-08": "Immaculate Conception's Day", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-01-27": "Saint Devote's Day", + "2050-04-11": "Easter Monday", + "2050-05-01": "Labour Day", + "2050-05-02": "Labour Day (Observed)", + "2050-05-19": "Ascension's Day", + "2050-05-30": "Whit Monday", + "2050-06-09": "Corpus Christi", + "2050-08-15": "Assumption's Day", + "2050-11-01": "All Saints' Day", + "2050-11-19": "Prince's Day", + "2050-12-08": "Immaculate Conception's Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day (Observed)" +} diff --git a/snapshots/countries/MD.json b/snapshots/countries/MD.json new file mode 100644 index 000000000..af67e853b --- /dev/null +++ b/snapshots/countries/MD.json @@ -0,0 +1,726 @@ +{ + "1991-01-01": "New Year's Day", + "1991-01-07": "Christmas", + "1991-01-08": "Christmas", + "1991-03-08": "International Women's Day", + "1991-04-07": "Easter", + "1991-04-08": "Easter", + "1991-04-15": "Day of Rejoicing", + "1991-05-01": "International Workers' Solidarity Day", + "1991-05-09": "Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "1991-08-27": "Republic of Moldova Independence Day", + "1991-08-31": "National Language Day", + "1992-01-01": "New Year's Day", + "1992-01-07": "Christmas", + "1992-01-08": "Christmas", + "1992-03-08": "International Women's Day", + "1992-04-26": "Easter", + "1992-04-27": "Easter", + "1992-05-01": "International Workers' Solidarity Day", + "1992-05-04": "Day of Rejoicing", + "1992-05-09": "Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "1992-08-27": "Republic of Moldova Independence Day", + "1992-08-31": "National Language Day", + "1993-01-01": "New Year's Day", + "1993-01-07": "Christmas", + "1993-01-08": "Christmas", + "1993-03-08": "International Women's Day", + "1993-04-18": "Easter", + "1993-04-19": "Easter", + "1993-04-26": "Day of Rejoicing", + "1993-05-01": "International Workers' Solidarity Day", + "1993-05-09": "Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "1993-08-27": "Republic of Moldova Independence Day", + "1993-08-31": "National Language Day", + "1994-01-01": "New Year's Day", + "1994-01-07": "Christmas", + "1994-01-08": "Christmas", + "1994-03-08": "International Women's Day", + "1994-05-01": "Easter; International Workers' Solidarity Day", + "1994-05-02": "Easter", + "1994-05-09": "Day of Rejoicing; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "1994-08-27": "Republic of Moldova Independence Day", + "1994-08-31": "National Language Day", + "1995-01-01": "New Year's Day", + "1995-01-07": "Christmas", + "1995-01-08": "Christmas", + "1995-03-08": "International Women's Day", + "1995-04-23": "Easter", + "1995-04-24": "Easter", + "1995-05-01": "Day of Rejoicing; International Workers' Solidarity Day", + "1995-05-09": "Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "1995-08-27": "Republic of Moldova Independence Day", + "1995-08-31": "National Language Day", + "1996-01-01": "New Year's Day", + "1996-01-07": "Christmas", + "1996-01-08": "Christmas", + "1996-03-08": "International Women's Day", + "1996-04-14": "Easter", + "1996-04-15": "Easter", + "1996-04-22": "Day of Rejoicing", + "1996-05-01": "International Workers' Solidarity Day", + "1996-05-09": "Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "1996-08-27": "Republic of Moldova Independence Day", + "1996-08-31": "National Language Day", + "1997-01-01": "New Year's Day", + "1997-01-07": "Christmas", + "1997-01-08": "Christmas", + "1997-03-08": "International Women's Day", + "1997-04-27": "Easter", + "1997-04-28": "Easter", + "1997-05-01": "International Workers' Solidarity Day", + "1997-05-05": "Day of Rejoicing", + "1997-05-09": "Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "1997-08-27": "Republic of Moldova Independence Day", + "1997-08-31": "National Language Day", + "1998-01-01": "New Year's Day", + "1998-01-07": "Christmas", + "1998-01-08": "Christmas", + "1998-03-08": "International Women's Day", + "1998-04-19": "Easter", + "1998-04-20": "Easter", + "1998-04-27": "Day of Rejoicing", + "1998-05-01": "International Workers' Solidarity Day", + "1998-05-09": "Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "1998-08-27": "Republic of Moldova Independence Day", + "1998-08-31": "National Language Day", + "1999-01-01": "New Year's Day", + "1999-01-07": "Christmas", + "1999-01-08": "Christmas", + "1999-03-08": "International Women's Day", + "1999-04-11": "Easter", + "1999-04-12": "Easter", + "1999-04-19": "Day of Rejoicing", + "1999-05-01": "International Workers' Solidarity Day", + "1999-05-09": "Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "1999-08-27": "Republic of Moldova Independence Day", + "1999-08-31": "National Language Day", + "2000-01-01": "New Year's Day", + "2000-01-07": "Christmas", + "2000-01-08": "Christmas", + "2000-03-08": "International Women's Day", + "2000-04-30": "Easter", + "2000-05-01": "Easter; International Workers' Solidarity Day", + "2000-05-08": "Day of Rejoicing", + "2000-05-09": "Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2000-08-27": "Republic of Moldova Independence Day", + "2000-08-31": "National Language Day", + "2001-01-01": "New Year's Day", + "2001-01-07": "Christmas", + "2001-01-08": "Christmas", + "2001-03-08": "International Women's Day", + "2001-04-15": "Easter", + "2001-04-16": "Easter", + "2001-04-23": "Day of Rejoicing", + "2001-05-01": "International Workers' Solidarity Day", + "2001-05-09": "Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2001-08-27": "Republic of Moldova Independence Day", + "2001-08-31": "National Language Day", + "2002-01-01": "New Year's Day", + "2002-01-07": "Christmas", + "2002-01-08": "Christmas", + "2002-03-08": "International Women's Day", + "2002-05-01": "International Workers' Solidarity Day", + "2002-05-05": "Easter", + "2002-05-06": "Easter", + "2002-05-09": "Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2002-05-13": "Day of Rejoicing", + "2002-08-27": "Republic of Moldova Independence Day", + "2002-08-31": "National Language Day", + "2003-01-01": "New Year's Day", + "2003-01-07": "Christmas", + "2003-01-08": "Christmas", + "2003-03-08": "International Women's Day", + "2003-04-27": "Easter", + "2003-04-28": "Easter", + "2003-05-01": "International Workers' Solidarity Day", + "2003-05-05": "Day of Rejoicing", + "2003-05-09": "Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2003-08-27": "Republic of Moldova Independence Day", + "2003-08-31": "National Language Day", + "2004-01-01": "New Year's Day", + "2004-01-07": "Christmas", + "2004-01-08": "Christmas", + "2004-03-08": "International Women's Day", + "2004-04-11": "Easter", + "2004-04-12": "Easter", + "2004-04-19": "Day of Rejoicing", + "2004-05-01": "International Workers' Solidarity Day", + "2004-05-09": "Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2004-08-27": "Republic of Moldova Independence Day", + "2004-08-31": "National Language Day", + "2005-01-01": "New Year's Day", + "2005-01-07": "Christmas", + "2005-01-08": "Christmas", + "2005-03-08": "International Women's Day", + "2005-05-01": "Easter; International Workers' Solidarity Day", + "2005-05-02": "Easter", + "2005-05-09": "Day of Rejoicing; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2005-08-27": "Republic of Moldova Independence Day", + "2005-08-31": "National Language Day", + "2006-01-01": "New Year's Day", + "2006-01-07": "Christmas", + "2006-01-08": "Christmas", + "2006-03-08": "International Women's Day", + "2006-04-23": "Easter", + "2006-04-24": "Easter", + "2006-05-01": "Day of Rejoicing; International Workers' Solidarity Day", + "2006-05-09": "Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2006-08-27": "Republic of Moldova Independence Day", + "2006-08-31": "National Language Day", + "2007-01-01": "New Year's Day", + "2007-01-07": "Christmas", + "2007-01-08": "Christmas", + "2007-03-08": "International Women's Day", + "2007-04-08": "Easter", + "2007-04-09": "Easter", + "2007-04-16": "Day of Rejoicing", + "2007-05-01": "International Workers' Solidarity Day", + "2007-05-09": "Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2007-08-27": "Republic of Moldova Independence Day", + "2007-08-31": "National Language Day", + "2008-01-01": "New Year's Day", + "2008-01-07": "Christmas", + "2008-01-08": "Christmas", + "2008-03-08": "International Women's Day", + "2008-04-27": "Easter", + "2008-04-28": "Easter", + "2008-05-01": "International Workers' Solidarity Day", + "2008-05-05": "Day of Rejoicing", + "2008-05-09": "Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2008-08-27": "Republic of Moldova Independence Day", + "2008-08-31": "National Language Day", + "2009-01-01": "New Year's Day", + "2009-01-07": "Christmas", + "2009-01-08": "Christmas", + "2009-03-08": "International Women's Day", + "2009-04-19": "Easter", + "2009-04-20": "Easter", + "2009-04-27": "Day of Rejoicing", + "2009-05-01": "International Workers' Solidarity Day", + "2009-05-09": "Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2009-08-27": "Republic of Moldova Independence Day", + "2009-08-31": "National Language Day", + "2010-01-01": "New Year's Day", + "2010-01-07": "Christmas", + "2010-01-08": "Christmas", + "2010-03-08": "International Women's Day", + "2010-04-04": "Easter", + "2010-04-05": "Easter", + "2010-04-12": "Day of Rejoicing", + "2010-05-01": "International Workers' Solidarity Day", + "2010-05-09": "Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2010-08-27": "Republic of Moldova Independence Day", + "2010-08-31": "National Language Day", + "2011-01-01": "New Year's Day", + "2011-01-07": "Christmas", + "2011-01-08": "Christmas", + "2011-03-08": "International Women's Day", + "2011-04-24": "Easter", + "2011-04-25": "Easter", + "2011-05-01": "International Workers' Solidarity Day", + "2011-05-02": "Day of Rejoicing", + "2011-05-09": "Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2011-08-27": "Republic of Moldova Independence Day", + "2011-08-31": "National Language Day", + "2012-01-01": "New Year's Day", + "2012-01-07": "Christmas", + "2012-01-08": "Christmas", + "2012-03-08": "International Women's Day", + "2012-04-15": "Easter", + "2012-04-16": "Easter", + "2012-04-23": "Day of Rejoicing", + "2012-05-01": "International Workers' Solidarity Day", + "2012-05-09": "Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2012-08-27": "Republic of Moldova Independence Day", + "2012-08-31": "National Language Day", + "2013-01-01": "New Year's Day", + "2013-01-07": "Christmas", + "2013-01-08": "Christmas", + "2013-03-08": "International Women's Day", + "2013-05-01": "International Workers' Solidarity Day", + "2013-05-05": "Easter", + "2013-05-06": "Easter", + "2013-05-09": "Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2013-05-13": "Day of Rejoicing", + "2013-08-27": "Republic of Moldova Independence Day", + "2013-08-31": "National Language Day", + "2013-12-25": "Christmas (by new style)", + "2014-01-01": "New Year's Day", + "2014-01-07": "Christmas (by old style)", + "2014-01-08": "Christmas (by old style)", + "2014-03-08": "International Women's Day", + "2014-04-20": "Easter", + "2014-04-21": "Easter", + "2014-04-28": "Day of Rejoicing", + "2014-05-01": "International Workers' Solidarity Day", + "2014-05-09": "Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2014-08-27": "Republic of Moldova Independence Day", + "2014-08-31": "National Language Day", + "2014-12-25": "Christmas (by new style)", + "2015-01-01": "New Year's Day", + "2015-01-07": "Christmas (by old style)", + "2015-01-08": "Christmas (by old style)", + "2015-03-08": "International Women's Day", + "2015-04-12": "Easter", + "2015-04-13": "Easter", + "2015-04-20": "Day of Rejoicing", + "2015-05-01": "International Workers' Solidarity Day", + "2015-05-09": "Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2015-08-27": "Republic of Moldova Independence Day", + "2015-08-31": "National Language Day", + "2015-12-25": "Christmas (by new style)", + "2016-01-01": "New Year's Day", + "2016-01-07": "Christmas (by old style)", + "2016-01-08": "Christmas (by old style)", + "2016-03-08": "International Women's Day", + "2016-05-01": "Easter; International Workers' Solidarity Day", + "2016-05-02": "Easter", + "2016-05-09": "Day of Rejoicing; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2016-06-01": "International Children's Day", + "2016-08-27": "Republic of Moldova Independence Day", + "2016-08-31": "National Language Day", + "2016-12-25": "Christmas (by new style)", + "2017-01-01": "New Year's Day", + "2017-01-07": "Christmas (by old style)", + "2017-01-08": "Christmas (by old style)", + "2017-03-08": "International Women's Day", + "2017-04-16": "Easter", + "2017-04-17": "Easter", + "2017-04-24": "Day of Rejoicing", + "2017-05-01": "International Workers' Solidarity Day", + "2017-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2017-06-01": "International Children's Day", + "2017-08-27": "Republic of Moldova Independence Day", + "2017-08-31": "National Language Day", + "2017-12-25": "Christmas (by new style)", + "2018-01-01": "New Year's Day", + "2018-01-07": "Christmas (by old style)", + "2018-01-08": "Christmas (by old style)", + "2018-03-08": "International Women's Day", + "2018-04-08": "Easter", + "2018-04-09": "Easter", + "2018-04-16": "Day of Rejoicing", + "2018-05-01": "International Workers' Solidarity Day", + "2018-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2018-06-01": "International Children's Day", + "2018-08-27": "Republic of Moldova Independence Day", + "2018-08-31": "National Language Day", + "2018-12-25": "Christmas (by new style)", + "2019-01-01": "New Year's Day", + "2019-01-07": "Christmas (by old style)", + "2019-01-08": "Christmas (by old style)", + "2019-03-08": "International Women's Day", + "2019-04-28": "Easter", + "2019-04-29": "Easter", + "2019-05-01": "International Workers' Solidarity Day", + "2019-05-06": "Day of Rejoicing", + "2019-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2019-06-01": "International Children's Day", + "2019-08-27": "Republic of Moldova Independence Day", + "2019-08-31": "National Language Day", + "2019-12-25": "Christmas (by new style)", + "2020-01-01": "New Year's Day", + "2020-01-07": "Christmas (by old style)", + "2020-01-08": "Christmas (by old style)", + "2020-03-08": "International Women's Day", + "2020-04-19": "Easter", + "2020-04-20": "Easter", + "2020-04-27": "Day of Rejoicing", + "2020-05-01": "International Workers' Solidarity Day", + "2020-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2020-06-01": "International Children's Day", + "2020-08-27": "Republic of Moldova Independence Day", + "2020-08-31": "National Language Day", + "2020-12-25": "Christmas (by new style)", + "2021-01-01": "New Year's Day", + "2021-01-07": "Christmas (by old style)", + "2021-01-08": "Christmas (by old style)", + "2021-03-08": "International Women's Day", + "2021-05-01": "International Workers' Solidarity Day", + "2021-05-02": "Easter", + "2021-05-03": "Easter", + "2021-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2021-05-10": "Day of Rejoicing", + "2021-06-01": "International Children's Day", + "2021-08-27": "Republic of Moldova Independence Day", + "2021-08-31": "National Language Day", + "2021-12-25": "Christmas (by new style)", + "2022-01-01": "New Year's Day", + "2022-01-07": "Christmas (by old style)", + "2022-01-08": "Christmas (by old style)", + "2022-03-08": "International Women's Day", + "2022-04-24": "Easter", + "2022-04-25": "Easter", + "2022-05-01": "International Workers' Solidarity Day", + "2022-05-02": "Day of Rejoicing", + "2022-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2022-06-01": "International Children's Day", + "2022-08-27": "Republic of Moldova Independence Day", + "2022-08-31": "National Language Day", + "2022-12-25": "Christmas (by new style)", + "2023-01-01": "New Year's Day", + "2023-01-07": "Christmas (by old style)", + "2023-01-08": "Christmas (by old style)", + "2023-03-08": "International Women's Day", + "2023-04-16": "Easter", + "2023-04-17": "Easter", + "2023-04-24": "Day of Rejoicing", + "2023-05-01": "International Workers' Solidarity Day", + "2023-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2023-06-01": "International Children's Day", + "2023-08-27": "Republic of Moldova Independence Day", + "2023-08-31": "National Language Day", + "2023-12-25": "Christmas (by new style)", + "2024-01-01": "New Year's Day", + "2024-01-07": "Christmas (by old style)", + "2024-01-08": "Christmas (by old style)", + "2024-03-08": "International Women's Day", + "2024-05-01": "International Workers' Solidarity Day", + "2024-05-05": "Easter", + "2024-05-06": "Easter", + "2024-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2024-05-13": "Day of Rejoicing", + "2024-06-01": "International Children's Day", + "2024-08-27": "Republic of Moldova Independence Day", + "2024-08-31": "National Language Day", + "2024-12-25": "Christmas (by new style)", + "2025-01-01": "New Year's Day", + "2025-01-07": "Christmas (by old style)", + "2025-01-08": "Christmas (by old style)", + "2025-03-08": "International Women's Day", + "2025-04-20": "Easter", + "2025-04-21": "Easter", + "2025-04-28": "Day of Rejoicing", + "2025-05-01": "International Workers' Solidarity Day", + "2025-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2025-06-01": "International Children's Day", + "2025-08-27": "Republic of Moldova Independence Day", + "2025-08-31": "National Language Day", + "2025-12-25": "Christmas (by new style)", + "2026-01-01": "New Year's Day", + "2026-01-07": "Christmas (by old style)", + "2026-01-08": "Christmas (by old style)", + "2026-03-08": "International Women's Day", + "2026-04-12": "Easter", + "2026-04-13": "Easter", + "2026-04-20": "Day of Rejoicing", + "2026-05-01": "International Workers' Solidarity Day", + "2026-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2026-06-01": "International Children's Day", + "2026-08-27": "Republic of Moldova Independence Day", + "2026-08-31": "National Language Day", + "2026-12-25": "Christmas (by new style)", + "2027-01-01": "New Year's Day", + "2027-01-07": "Christmas (by old style)", + "2027-01-08": "Christmas (by old style)", + "2027-03-08": "International Women's Day", + "2027-05-01": "International Workers' Solidarity Day", + "2027-05-02": "Easter", + "2027-05-03": "Easter", + "2027-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2027-05-10": "Day of Rejoicing", + "2027-06-01": "International Children's Day", + "2027-08-27": "Republic of Moldova Independence Day", + "2027-08-31": "National Language Day", + "2027-12-25": "Christmas (by new style)", + "2028-01-01": "New Year's Day", + "2028-01-07": "Christmas (by old style)", + "2028-01-08": "Christmas (by old style)", + "2028-03-08": "International Women's Day", + "2028-04-16": "Easter", + "2028-04-17": "Easter", + "2028-04-24": "Day of Rejoicing", + "2028-05-01": "International Workers' Solidarity Day", + "2028-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2028-06-01": "International Children's Day", + "2028-08-27": "Republic of Moldova Independence Day", + "2028-08-31": "National Language Day", + "2028-12-25": "Christmas (by new style)", + "2029-01-01": "New Year's Day", + "2029-01-07": "Christmas (by old style)", + "2029-01-08": "Christmas (by old style)", + "2029-03-08": "International Women's Day", + "2029-04-08": "Easter", + "2029-04-09": "Easter", + "2029-04-16": "Day of Rejoicing", + "2029-05-01": "International Workers' Solidarity Day", + "2029-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2029-06-01": "International Children's Day", + "2029-08-27": "Republic of Moldova Independence Day", + "2029-08-31": "National Language Day", + "2029-12-25": "Christmas (by new style)", + "2030-01-01": "New Year's Day", + "2030-01-07": "Christmas (by old style)", + "2030-01-08": "Christmas (by old style)", + "2030-03-08": "International Women's Day", + "2030-04-28": "Easter", + "2030-04-29": "Easter", + "2030-05-01": "International Workers' Solidarity Day", + "2030-05-06": "Day of Rejoicing", + "2030-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2030-06-01": "International Children's Day", + "2030-08-27": "Republic of Moldova Independence Day", + "2030-08-31": "National Language Day", + "2030-12-25": "Christmas (by new style)", + "2031-01-01": "New Year's Day", + "2031-01-07": "Christmas (by old style)", + "2031-01-08": "Christmas (by old style)", + "2031-03-08": "International Women's Day", + "2031-04-13": "Easter", + "2031-04-14": "Easter", + "2031-04-21": "Day of Rejoicing", + "2031-05-01": "International Workers' Solidarity Day", + "2031-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2031-06-01": "International Children's Day", + "2031-08-27": "Republic of Moldova Independence Day", + "2031-08-31": "National Language Day", + "2031-12-25": "Christmas (by new style)", + "2032-01-01": "New Year's Day", + "2032-01-07": "Christmas (by old style)", + "2032-01-08": "Christmas (by old style)", + "2032-03-08": "International Women's Day", + "2032-05-01": "International Workers' Solidarity Day", + "2032-05-02": "Easter", + "2032-05-03": "Easter", + "2032-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2032-05-10": "Day of Rejoicing", + "2032-06-01": "International Children's Day", + "2032-08-27": "Republic of Moldova Independence Day", + "2032-08-31": "National Language Day", + "2032-12-25": "Christmas (by new style)", + "2033-01-01": "New Year's Day", + "2033-01-07": "Christmas (by old style)", + "2033-01-08": "Christmas (by old style)", + "2033-03-08": "International Women's Day", + "2033-04-24": "Easter", + "2033-04-25": "Easter", + "2033-05-01": "International Workers' Solidarity Day", + "2033-05-02": "Day of Rejoicing", + "2033-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2033-06-01": "International Children's Day", + "2033-08-27": "Republic of Moldova Independence Day", + "2033-08-31": "National Language Day", + "2033-12-25": "Christmas (by new style)", + "2034-01-01": "New Year's Day", + "2034-01-07": "Christmas (by old style)", + "2034-01-08": "Christmas (by old style)", + "2034-03-08": "International Women's Day", + "2034-04-09": "Easter", + "2034-04-10": "Easter", + "2034-04-17": "Day of Rejoicing", + "2034-05-01": "International Workers' Solidarity Day", + "2034-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2034-06-01": "International Children's Day", + "2034-08-27": "Republic of Moldova Independence Day", + "2034-08-31": "National Language Day", + "2034-12-25": "Christmas (by new style)", + "2035-01-01": "New Year's Day", + "2035-01-07": "Christmas (by old style)", + "2035-01-08": "Christmas (by old style)", + "2035-03-08": "International Women's Day", + "2035-04-29": "Easter", + "2035-04-30": "Easter", + "2035-05-01": "International Workers' Solidarity Day", + "2035-05-07": "Day of Rejoicing", + "2035-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2035-06-01": "International Children's Day", + "2035-08-27": "Republic of Moldova Independence Day", + "2035-08-31": "National Language Day", + "2035-12-25": "Christmas (by new style)", + "2036-01-01": "New Year's Day", + "2036-01-07": "Christmas (by old style)", + "2036-01-08": "Christmas (by old style)", + "2036-03-08": "International Women's Day", + "2036-04-20": "Easter", + "2036-04-21": "Easter", + "2036-04-28": "Day of Rejoicing", + "2036-05-01": "International Workers' Solidarity Day", + "2036-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2036-06-01": "International Children's Day", + "2036-08-27": "Republic of Moldova Independence Day", + "2036-08-31": "National Language Day", + "2036-12-25": "Christmas (by new style)", + "2037-01-01": "New Year's Day", + "2037-01-07": "Christmas (by old style)", + "2037-01-08": "Christmas (by old style)", + "2037-03-08": "International Women's Day", + "2037-04-05": "Easter", + "2037-04-06": "Easter", + "2037-04-13": "Day of Rejoicing", + "2037-05-01": "International Workers' Solidarity Day", + "2037-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2037-06-01": "International Children's Day", + "2037-08-27": "Republic of Moldova Independence Day", + "2037-08-31": "National Language Day", + "2037-12-25": "Christmas (by new style)", + "2038-01-01": "New Year's Day", + "2038-01-07": "Christmas (by old style)", + "2038-01-08": "Christmas (by old style)", + "2038-03-08": "International Women's Day", + "2038-04-25": "Easter", + "2038-04-26": "Easter", + "2038-05-01": "International Workers' Solidarity Day", + "2038-05-03": "Day of Rejoicing", + "2038-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2038-06-01": "International Children's Day", + "2038-08-27": "Republic of Moldova Independence Day", + "2038-08-31": "National Language Day", + "2038-12-25": "Christmas (by new style)", + "2039-01-01": "New Year's Day", + "2039-01-07": "Christmas (by old style)", + "2039-01-08": "Christmas (by old style)", + "2039-03-08": "International Women's Day", + "2039-04-17": "Easter", + "2039-04-18": "Easter", + "2039-04-25": "Day of Rejoicing", + "2039-05-01": "International Workers' Solidarity Day", + "2039-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2039-06-01": "International Children's Day", + "2039-08-27": "Republic of Moldova Independence Day", + "2039-08-31": "National Language Day", + "2039-12-25": "Christmas (by new style)", + "2040-01-01": "New Year's Day", + "2040-01-07": "Christmas (by old style)", + "2040-01-08": "Christmas (by old style)", + "2040-03-08": "International Women's Day", + "2040-05-01": "International Workers' Solidarity Day", + "2040-05-06": "Easter", + "2040-05-07": "Easter", + "2040-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2040-05-14": "Day of Rejoicing", + "2040-06-01": "International Children's Day", + "2040-08-27": "Republic of Moldova Independence Day", + "2040-08-31": "National Language Day", + "2040-12-25": "Christmas (by new style)", + "2041-01-01": "New Year's Day", + "2041-01-07": "Christmas (by old style)", + "2041-01-08": "Christmas (by old style)", + "2041-03-08": "International Women's Day", + "2041-04-21": "Easter", + "2041-04-22": "Easter", + "2041-04-29": "Day of Rejoicing", + "2041-05-01": "International Workers' Solidarity Day", + "2041-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2041-06-01": "International Children's Day", + "2041-08-27": "Republic of Moldova Independence Day", + "2041-08-31": "National Language Day", + "2041-12-25": "Christmas (by new style)", + "2042-01-01": "New Year's Day", + "2042-01-07": "Christmas (by old style)", + "2042-01-08": "Christmas (by old style)", + "2042-03-08": "International Women's Day", + "2042-04-13": "Easter", + "2042-04-14": "Easter", + "2042-04-21": "Day of Rejoicing", + "2042-05-01": "International Workers' Solidarity Day", + "2042-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2042-06-01": "International Children's Day", + "2042-08-27": "Republic of Moldova Independence Day", + "2042-08-31": "National Language Day", + "2042-12-25": "Christmas (by new style)", + "2043-01-01": "New Year's Day", + "2043-01-07": "Christmas (by old style)", + "2043-01-08": "Christmas (by old style)", + "2043-03-08": "International Women's Day", + "2043-05-01": "International Workers' Solidarity Day", + "2043-05-03": "Easter", + "2043-05-04": "Easter", + "2043-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2043-05-11": "Day of Rejoicing", + "2043-06-01": "International Children's Day", + "2043-08-27": "Republic of Moldova Independence Day", + "2043-08-31": "National Language Day", + "2043-12-25": "Christmas (by new style)", + "2044-01-01": "New Year's Day", + "2044-01-07": "Christmas (by old style)", + "2044-01-08": "Christmas (by old style)", + "2044-03-08": "International Women's Day", + "2044-04-24": "Easter", + "2044-04-25": "Easter", + "2044-05-01": "International Workers' Solidarity Day", + "2044-05-02": "Day of Rejoicing", + "2044-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2044-06-01": "International Children's Day", + "2044-08-27": "Republic of Moldova Independence Day", + "2044-08-31": "National Language Day", + "2044-12-25": "Christmas (by new style)", + "2045-01-01": "New Year's Day", + "2045-01-07": "Christmas (by old style)", + "2045-01-08": "Christmas (by old style)", + "2045-03-08": "International Women's Day", + "2045-04-09": "Easter", + "2045-04-10": "Easter", + "2045-04-17": "Day of Rejoicing", + "2045-05-01": "International Workers' Solidarity Day", + "2045-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2045-06-01": "International Children's Day", + "2045-08-27": "Republic of Moldova Independence Day", + "2045-08-31": "National Language Day", + "2045-12-25": "Christmas (by new style)", + "2046-01-01": "New Year's Day", + "2046-01-07": "Christmas (by old style)", + "2046-01-08": "Christmas (by old style)", + "2046-03-08": "International Women's Day", + "2046-04-29": "Easter", + "2046-04-30": "Easter", + "2046-05-01": "International Workers' Solidarity Day", + "2046-05-07": "Day of Rejoicing", + "2046-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2046-06-01": "International Children's Day", + "2046-08-27": "Republic of Moldova Independence Day", + "2046-08-31": "National Language Day", + "2046-12-25": "Christmas (by new style)", + "2047-01-01": "New Year's Day", + "2047-01-07": "Christmas (by old style)", + "2047-01-08": "Christmas (by old style)", + "2047-03-08": "International Women's Day", + "2047-04-21": "Easter", + "2047-04-22": "Easter", + "2047-04-29": "Day of Rejoicing", + "2047-05-01": "International Workers' Solidarity Day", + "2047-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2047-06-01": "International Children's Day", + "2047-08-27": "Republic of Moldova Independence Day", + "2047-08-31": "National Language Day", + "2047-12-25": "Christmas (by new style)", + "2048-01-01": "New Year's Day", + "2048-01-07": "Christmas (by old style)", + "2048-01-08": "Christmas (by old style)", + "2048-03-08": "International Women's Day", + "2048-04-05": "Easter", + "2048-04-06": "Easter", + "2048-04-13": "Day of Rejoicing", + "2048-05-01": "International Workers' Solidarity Day", + "2048-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2048-06-01": "International Children's Day", + "2048-08-27": "Republic of Moldova Independence Day", + "2048-08-31": "National Language Day", + "2048-12-25": "Christmas (by new style)", + "2049-01-01": "New Year's Day", + "2049-01-07": "Christmas (by old style)", + "2049-01-08": "Christmas (by old style)", + "2049-03-08": "International Women's Day", + "2049-04-25": "Easter", + "2049-04-26": "Easter", + "2049-05-01": "International Workers' Solidarity Day", + "2049-05-03": "Day of Rejoicing", + "2049-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2049-06-01": "International Children's Day", + "2049-08-27": "Republic of Moldova Independence Day", + "2049-08-31": "National Language Day", + "2049-12-25": "Christmas (by new style)", + "2050-01-01": "New Year's Day", + "2050-01-07": "Christmas (by old style)", + "2050-01-08": "Christmas (by old style)", + "2050-03-08": "International Women's Day", + "2050-04-17": "Easter", + "2050-04-18": "Easter", + "2050-04-25": "Day of Rejoicing", + "2050-05-01": "International Workers' Solidarity Day", + "2050-05-09": "Europe Day; Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "2050-06-01": "International Children's Day", + "2050-08-27": "Republic of Moldova Independence Day", + "2050-08-31": "National Language Day", + "2050-12-25": "Christmas (by new style)" +} diff --git a/snapshots/countries/ME.json b/snapshots/countries/ME.json new file mode 100644 index 000000000..cd2990117 --- /dev/null +++ b/snapshots/countries/ME.json @@ -0,0 +1,1409 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-02": "New Year's Day", + "1950-01-03": "New Year's Day (Observed)", + "1950-01-06": "Orthodox Christmas Eve", + "1950-01-07": "Orthodox Christmas", + "1950-04-07": "Orthodox Good Friday", + "1950-04-09": "Orthodox Easter Sunday", + "1950-04-10": "Orthodox Easter Monday", + "1950-05-01": "Labour Day", + "1950-05-02": "Labour Day", + "1950-05-21": "Independence Day", + "1950-05-22": "Independence Day", + "1950-05-23": "Independence Day (Observed)", + "1950-07-13": "Statehood Day", + "1950-07-14": "Statehood Day", + "1951-01-01": "New Year's Day", + "1951-01-02": "New Year's Day", + "1951-01-06": "Orthodox Christmas Eve", + "1951-01-07": "Orthodox Christmas", + "1951-04-27": "Orthodox Good Friday", + "1951-04-29": "Orthodox Easter Sunday", + "1951-04-30": "Orthodox Easter Monday", + "1951-05-01": "Labour Day", + "1951-05-02": "Labour Day", + "1951-05-21": "Independence Day", + "1951-05-22": "Independence Day", + "1951-07-13": "Statehood Day", + "1951-07-14": "Statehood Day", + "1952-01-01": "New Year's Day", + "1952-01-02": "New Year's Day", + "1952-01-06": "Orthodox Christmas Eve", + "1952-01-07": "Orthodox Christmas", + "1952-04-18": "Orthodox Good Friday", + "1952-04-20": "Orthodox Easter Sunday", + "1952-04-21": "Orthodox Easter Monday", + "1952-05-01": "Labour Day", + "1952-05-02": "Labour Day", + "1952-05-21": "Independence Day", + "1952-05-22": "Independence Day", + "1952-07-13": "Statehood Day", + "1952-07-14": "Statehood Day", + "1952-07-15": "Statehood Day (Observed)", + "1953-01-01": "New Year's Day", + "1953-01-02": "New Year's Day", + "1953-01-06": "Orthodox Christmas Eve", + "1953-01-07": "Orthodox Christmas", + "1953-04-03": "Orthodox Good Friday", + "1953-04-05": "Orthodox Easter Sunday", + "1953-04-06": "Orthodox Easter Monday", + "1953-05-01": "Labour Day", + "1953-05-02": "Labour Day", + "1953-05-21": "Independence Day", + "1953-05-22": "Independence Day", + "1953-07-13": "Statehood Day", + "1953-07-14": "Statehood Day", + "1954-01-01": "New Year's Day", + "1954-01-02": "New Year's Day", + "1954-01-06": "Orthodox Christmas Eve", + "1954-01-07": "Orthodox Christmas", + "1954-04-23": "Orthodox Good Friday", + "1954-04-25": "Orthodox Easter Sunday", + "1954-04-26": "Orthodox Easter Monday", + "1954-05-01": "Labour Day", + "1954-05-02": "Labour Day", + "1954-05-03": "Labour Day (Observed)", + "1954-05-21": "Independence Day", + "1954-05-22": "Independence Day", + "1954-07-13": "Statehood Day", + "1954-07-14": "Statehood Day", + "1955-01-01": "New Year's Day", + "1955-01-02": "New Year's Day", + "1955-01-03": "New Year's Day (Observed)", + "1955-01-06": "Orthodox Christmas Eve", + "1955-01-07": "Orthodox Christmas", + "1955-04-15": "Orthodox Good Friday", + "1955-04-17": "Orthodox Easter Sunday", + "1955-04-18": "Orthodox Easter Monday", + "1955-05-01": "Labour Day", + "1955-05-02": "Labour Day", + "1955-05-03": "Labour Day (Observed)", + "1955-05-21": "Independence Day", + "1955-05-22": "Independence Day", + "1955-05-23": "Independence Day (Observed)", + "1955-07-13": "Statehood Day", + "1955-07-14": "Statehood Day", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year's Day", + "1956-01-03": "New Year's Day (Observed)", + "1956-01-06": "Orthodox Christmas Eve", + "1956-01-07": "Orthodox Christmas", + "1956-05-01": "Labour Day", + "1956-05-02": "Labour Day", + "1956-05-04": "Orthodox Good Friday", + "1956-05-06": "Orthodox Easter Sunday", + "1956-05-07": "Orthodox Easter Monday", + "1956-05-21": "Independence Day", + "1956-05-22": "Independence Day", + "1956-07-13": "Statehood Day", + "1956-07-14": "Statehood Day", + "1957-01-01": "New Year's Day", + "1957-01-02": "New Year's Day", + "1957-01-06": "Orthodox Christmas Eve", + "1957-01-07": "Orthodox Christmas", + "1957-04-19": "Orthodox Good Friday", + "1957-04-21": "Orthodox Easter Sunday", + "1957-04-22": "Orthodox Easter Monday", + "1957-05-01": "Labour Day", + "1957-05-02": "Labour Day", + "1957-05-21": "Independence Day", + "1957-05-22": "Independence Day", + "1957-07-13": "Statehood Day", + "1957-07-14": "Statehood Day", + "1957-07-15": "Statehood Day (Observed)", + "1958-01-01": "New Year's Day", + "1958-01-02": "New Year's Day", + "1958-01-06": "Orthodox Christmas Eve", + "1958-01-07": "Orthodox Christmas", + "1958-04-11": "Orthodox Good Friday", + "1958-04-13": "Orthodox Easter Sunday", + "1958-04-14": "Orthodox Easter Monday", + "1958-05-01": "Labour Day", + "1958-05-02": "Labour Day", + "1958-05-21": "Independence Day", + "1958-05-22": "Independence Day", + "1958-07-13": "Statehood Day", + "1958-07-14": "Statehood Day", + "1958-07-15": "Statehood Day (Observed)", + "1959-01-01": "New Year's Day", + "1959-01-02": "New Year's Day", + "1959-01-06": "Orthodox Christmas Eve", + "1959-01-07": "Orthodox Christmas", + "1959-05-01": "Labour Day; Orthodox Good Friday", + "1959-05-02": "Labour Day", + "1959-05-03": "Orthodox Easter Sunday", + "1959-05-04": "Orthodox Easter Monday", + "1959-05-21": "Independence Day", + "1959-05-22": "Independence Day", + "1959-07-13": "Statehood Day", + "1959-07-14": "Statehood Day", + "1960-01-01": "New Year's Day", + "1960-01-02": "New Year's Day", + "1960-01-06": "Orthodox Christmas Eve", + "1960-01-07": "Orthodox Christmas", + "1960-04-15": "Orthodox Good Friday", + "1960-04-17": "Orthodox Easter Sunday", + "1960-04-18": "Orthodox Easter Monday", + "1960-05-01": "Labour Day", + "1960-05-02": "Labour Day", + "1960-05-03": "Labour Day (Observed)", + "1960-05-21": "Independence Day", + "1960-05-22": "Independence Day", + "1960-05-23": "Independence Day (Observed)", + "1960-07-13": "Statehood Day", + "1960-07-14": "Statehood Day", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day", + "1961-01-03": "New Year's Day (Observed)", + "1961-01-06": "Orthodox Christmas Eve", + "1961-01-07": "Orthodox Christmas", + "1961-04-07": "Orthodox Good Friday", + "1961-04-09": "Orthodox Easter Sunday", + "1961-04-10": "Orthodox Easter Monday", + "1961-05-01": "Labour Day", + "1961-05-02": "Labour Day", + "1961-05-21": "Independence Day", + "1961-05-22": "Independence Day", + "1961-05-23": "Independence Day (Observed)", + "1961-07-13": "Statehood Day", + "1961-07-14": "Statehood Day", + "1962-01-01": "New Year's Day", + "1962-01-02": "New Year's Day", + "1962-01-06": "Orthodox Christmas Eve", + "1962-01-07": "Orthodox Christmas", + "1962-04-27": "Orthodox Good Friday", + "1962-04-29": "Orthodox Easter Sunday", + "1962-04-30": "Orthodox Easter Monday", + "1962-05-01": "Labour Day", + "1962-05-02": "Labour Day", + "1962-05-21": "Independence Day", + "1962-05-22": "Independence Day", + "1962-07-13": "Statehood Day", + "1962-07-14": "Statehood Day", + "1963-01-01": "New Year's Day", + "1963-01-02": "New Year's Day", + "1963-01-06": "Orthodox Christmas Eve", + "1963-01-07": "Orthodox Christmas", + "1963-04-12": "Orthodox Good Friday", + "1963-04-14": "Orthodox Easter Sunday", + "1963-04-15": "Orthodox Easter Monday", + "1963-05-01": "Labour Day", + "1963-05-02": "Labour Day", + "1963-05-21": "Independence Day", + "1963-05-22": "Independence Day", + "1963-07-13": "Statehood Day", + "1963-07-14": "Statehood Day", + "1963-07-15": "Statehood Day (Observed)", + "1964-01-01": "New Year's Day", + "1964-01-02": "New Year's Day", + "1964-01-06": "Orthodox Christmas Eve", + "1964-01-07": "Orthodox Christmas", + "1964-05-01": "Labour Day; Orthodox Good Friday", + "1964-05-02": "Labour Day", + "1964-05-03": "Orthodox Easter Sunday", + "1964-05-04": "Orthodox Easter Monday", + "1964-05-21": "Independence Day", + "1964-05-22": "Independence Day", + "1964-07-13": "Statehood Day", + "1964-07-14": "Statehood Day", + "1965-01-01": "New Year's Day", + "1965-01-02": "New Year's Day", + "1965-01-06": "Orthodox Christmas Eve", + "1965-01-07": "Orthodox Christmas", + "1965-04-23": "Orthodox Good Friday", + "1965-04-25": "Orthodox Easter Sunday", + "1965-04-26": "Orthodox Easter Monday", + "1965-05-01": "Labour Day", + "1965-05-02": "Labour Day", + "1965-05-03": "Labour Day (Observed)", + "1965-05-21": "Independence Day", + "1965-05-22": "Independence Day", + "1965-07-13": "Statehood Day", + "1965-07-14": "Statehood Day", + "1966-01-01": "New Year's Day", + "1966-01-02": "New Year's Day", + "1966-01-03": "New Year's Day (Observed)", + "1966-01-06": "Orthodox Christmas Eve", + "1966-01-07": "Orthodox Christmas", + "1966-04-08": "Orthodox Good Friday", + "1966-04-10": "Orthodox Easter Sunday", + "1966-04-11": "Orthodox Easter Monday", + "1966-05-01": "Labour Day", + "1966-05-02": "Labour Day", + "1966-05-03": "Labour Day (Observed)", + "1966-05-21": "Independence Day", + "1966-05-22": "Independence Day", + "1966-05-23": "Independence Day (Observed)", + "1966-07-13": "Statehood Day", + "1966-07-14": "Statehood Day", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day", + "1967-01-03": "New Year's Day (Observed)", + "1967-01-06": "Orthodox Christmas Eve", + "1967-01-07": "Orthodox Christmas", + "1967-04-28": "Orthodox Good Friday", + "1967-04-30": "Orthodox Easter Sunday", + "1967-05-01": "Labour Day; Orthodox Easter Monday", + "1967-05-02": "Labour Day", + "1967-05-21": "Independence Day", + "1967-05-22": "Independence Day", + "1967-05-23": "Independence Day (Observed)", + "1967-07-13": "Statehood Day", + "1967-07-14": "Statehood Day", + "1968-01-01": "New Year's Day", + "1968-01-02": "New Year's Day", + "1968-01-06": "Orthodox Christmas Eve", + "1968-01-07": "Orthodox Christmas", + "1968-04-19": "Orthodox Good Friday", + "1968-04-21": "Orthodox Easter Sunday", + "1968-04-22": "Orthodox Easter Monday", + "1968-05-01": "Labour Day", + "1968-05-02": "Labour Day", + "1968-05-21": "Independence Day", + "1968-05-22": "Independence Day", + "1968-07-13": "Statehood Day", + "1968-07-14": "Statehood Day", + "1968-07-15": "Statehood Day (Observed)", + "1969-01-01": "New Year's Day", + "1969-01-02": "New Year's Day", + "1969-01-06": "Orthodox Christmas Eve", + "1969-01-07": "Orthodox Christmas", + "1969-04-11": "Orthodox Good Friday", + "1969-04-13": "Orthodox Easter Sunday", + "1969-04-14": "Orthodox Easter Monday", + "1969-05-01": "Labour Day", + "1969-05-02": "Labour Day", + "1969-05-21": "Independence Day", + "1969-05-22": "Independence Day", + "1969-07-13": "Statehood Day", + "1969-07-14": "Statehood Day", + "1969-07-15": "Statehood Day (Observed)", + "1970-01-01": "New Year's Day", + "1970-01-02": "New Year's Day", + "1970-01-06": "Orthodox Christmas Eve", + "1970-01-07": "Orthodox Christmas", + "1970-04-24": "Orthodox Good Friday", + "1970-04-26": "Orthodox Easter Sunday", + "1970-04-27": "Orthodox Easter Monday", + "1970-05-01": "Labour Day", + "1970-05-02": "Labour Day", + "1970-05-21": "Independence Day", + "1970-05-22": "Independence Day", + "1970-07-13": "Statehood Day", + "1970-07-14": "Statehood Day", + "1971-01-01": "New Year's Day", + "1971-01-02": "New Year's Day", + "1971-01-06": "Orthodox Christmas Eve", + "1971-01-07": "Orthodox Christmas", + "1971-04-16": "Orthodox Good Friday", + "1971-04-18": "Orthodox Easter Sunday", + "1971-04-19": "Orthodox Easter Monday", + "1971-05-01": "Labour Day", + "1971-05-02": "Labour Day", + "1971-05-03": "Labour Day (Observed)", + "1971-05-21": "Independence Day", + "1971-05-22": "Independence Day", + "1971-07-13": "Statehood Day", + "1971-07-14": "Statehood Day", + "1972-01-01": "New Year's Day", + "1972-01-02": "New Year's Day", + "1972-01-03": "New Year's Day (Observed)", + "1972-01-06": "Orthodox Christmas Eve", + "1972-01-07": "Orthodox Christmas", + "1972-04-07": "Orthodox Good Friday", + "1972-04-09": "Orthodox Easter Sunday", + "1972-04-10": "Orthodox Easter Monday", + "1972-05-01": "Labour Day", + "1972-05-02": "Labour Day", + "1972-05-21": "Independence Day", + "1972-05-22": "Independence Day", + "1972-05-23": "Independence Day (Observed)", + "1972-07-13": "Statehood Day", + "1972-07-14": "Statehood Day", + "1973-01-01": "New Year's Day", + "1973-01-02": "New Year's Day", + "1973-01-06": "Orthodox Christmas Eve", + "1973-01-07": "Orthodox Christmas", + "1973-04-27": "Orthodox Good Friday", + "1973-04-29": "Orthodox Easter Sunday", + "1973-04-30": "Orthodox Easter Monday", + "1973-05-01": "Labour Day", + "1973-05-02": "Labour Day", + "1973-05-21": "Independence Day", + "1973-05-22": "Independence Day", + "1973-07-13": "Statehood Day", + "1973-07-14": "Statehood Day", + "1974-01-01": "New Year's Day", + "1974-01-02": "New Year's Day", + "1974-01-06": "Orthodox Christmas Eve", + "1974-01-07": "Orthodox Christmas", + "1974-04-12": "Orthodox Good Friday", + "1974-04-14": "Orthodox Easter Sunday", + "1974-04-15": "Orthodox Easter Monday", + "1974-05-01": "Labour Day", + "1974-05-02": "Labour Day", + "1974-05-21": "Independence Day", + "1974-05-22": "Independence Day", + "1974-07-13": "Statehood Day", + "1974-07-14": "Statehood Day", + "1974-07-15": "Statehood Day (Observed)", + "1975-01-01": "New Year's Day", + "1975-01-02": "New Year's Day", + "1975-01-06": "Orthodox Christmas Eve", + "1975-01-07": "Orthodox Christmas", + "1975-05-01": "Labour Day", + "1975-05-02": "Labour Day; Orthodox Good Friday", + "1975-05-04": "Orthodox Easter Sunday", + "1975-05-05": "Orthodox Easter Monday", + "1975-05-21": "Independence Day", + "1975-05-22": "Independence Day", + "1975-07-13": "Statehood Day", + "1975-07-14": "Statehood Day", + "1975-07-15": "Statehood Day (Observed)", + "1976-01-01": "New Year's Day", + "1976-01-02": "New Year's Day", + "1976-01-06": "Orthodox Christmas Eve", + "1976-01-07": "Orthodox Christmas", + "1976-04-23": "Orthodox Good Friday", + "1976-04-25": "Orthodox Easter Sunday", + "1976-04-26": "Orthodox Easter Monday", + "1976-05-01": "Labour Day", + "1976-05-02": "Labour Day", + "1976-05-03": "Labour Day (Observed)", + "1976-05-21": "Independence Day", + "1976-05-22": "Independence Day", + "1976-07-13": "Statehood Day", + "1976-07-14": "Statehood Day", + "1977-01-01": "New Year's Day", + "1977-01-02": "New Year's Day", + "1977-01-03": "New Year's Day (Observed)", + "1977-01-06": "Orthodox Christmas Eve", + "1977-01-07": "Orthodox Christmas", + "1977-04-08": "Orthodox Good Friday", + "1977-04-10": "Orthodox Easter Sunday", + "1977-04-11": "Orthodox Easter Monday", + "1977-05-01": "Labour Day", + "1977-05-02": "Labour Day", + "1977-05-03": "Labour Day (Observed)", + "1977-05-21": "Independence Day", + "1977-05-22": "Independence Day", + "1977-05-23": "Independence Day (Observed)", + "1977-07-13": "Statehood Day", + "1977-07-14": "Statehood Day", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day", + "1978-01-03": "New Year's Day (Observed)", + "1978-01-06": "Orthodox Christmas Eve", + "1978-01-07": "Orthodox Christmas", + "1978-04-28": "Orthodox Good Friday", + "1978-04-30": "Orthodox Easter Sunday", + "1978-05-01": "Labour Day; Orthodox Easter Monday", + "1978-05-02": "Labour Day", + "1978-05-21": "Independence Day", + "1978-05-22": "Independence Day", + "1978-05-23": "Independence Day (Observed)", + "1978-07-13": "Statehood Day", + "1978-07-14": "Statehood Day", + "1979-01-01": "New Year's Day", + "1979-01-02": "New Year's Day", + "1979-01-06": "Orthodox Christmas Eve", + "1979-01-07": "Orthodox Christmas", + "1979-04-20": "Orthodox Good Friday", + "1979-04-22": "Orthodox Easter Sunday", + "1979-04-23": "Orthodox Easter Monday", + "1979-05-01": "Labour Day", + "1979-05-02": "Labour Day", + "1979-05-21": "Independence Day", + "1979-05-22": "Independence Day", + "1979-07-13": "Statehood Day", + "1979-07-14": "Statehood Day", + "1980-01-01": "New Year's Day", + "1980-01-02": "New Year's Day", + "1980-01-06": "Orthodox Christmas Eve", + "1980-01-07": "Orthodox Christmas", + "1980-04-04": "Orthodox Good Friday", + "1980-04-06": "Orthodox Easter Sunday", + "1980-04-07": "Orthodox Easter Monday", + "1980-05-01": "Labour Day", + "1980-05-02": "Labour Day", + "1980-05-21": "Independence Day", + "1980-05-22": "Independence Day", + "1980-07-13": "Statehood Day", + "1980-07-14": "Statehood Day", + "1980-07-15": "Statehood Day (Observed)", + "1981-01-01": "New Year's Day", + "1981-01-02": "New Year's Day", + "1981-01-06": "Orthodox Christmas Eve", + "1981-01-07": "Orthodox Christmas", + "1981-04-24": "Orthodox Good Friday", + "1981-04-26": "Orthodox Easter Sunday", + "1981-04-27": "Orthodox Easter Monday", + "1981-05-01": "Labour Day", + "1981-05-02": "Labour Day", + "1981-05-21": "Independence Day", + "1981-05-22": "Independence Day", + "1981-07-13": "Statehood Day", + "1981-07-14": "Statehood Day", + "1982-01-01": "New Year's Day", + "1982-01-02": "New Year's Day", + "1982-01-06": "Orthodox Christmas Eve", + "1982-01-07": "Orthodox Christmas", + "1982-04-16": "Orthodox Good Friday", + "1982-04-18": "Orthodox Easter Sunday", + "1982-04-19": "Orthodox Easter Monday", + "1982-05-01": "Labour Day", + "1982-05-02": "Labour Day", + "1982-05-03": "Labour Day (Observed)", + "1982-05-21": "Independence Day", + "1982-05-22": "Independence Day", + "1982-07-13": "Statehood Day", + "1982-07-14": "Statehood Day", + "1983-01-01": "New Year's Day", + "1983-01-02": "New Year's Day", + "1983-01-03": "New Year's Day (Observed)", + "1983-01-06": "Orthodox Christmas Eve", + "1983-01-07": "Orthodox Christmas", + "1983-05-01": "Labour Day", + "1983-05-02": "Labour Day", + "1983-05-03": "Labour Day (Observed)", + "1983-05-06": "Orthodox Good Friday", + "1983-05-08": "Orthodox Easter Sunday", + "1983-05-09": "Orthodox Easter Monday", + "1983-05-21": "Independence Day", + "1983-05-22": "Independence Day", + "1983-05-23": "Independence Day (Observed)", + "1983-07-13": "Statehood Day", + "1983-07-14": "Statehood Day", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day", + "1984-01-03": "New Year's Day (Observed)", + "1984-01-06": "Orthodox Christmas Eve", + "1984-01-07": "Orthodox Christmas", + "1984-04-20": "Orthodox Good Friday", + "1984-04-22": "Orthodox Easter Sunday", + "1984-04-23": "Orthodox Easter Monday", + "1984-05-01": "Labour Day", + "1984-05-02": "Labour Day", + "1984-05-21": "Independence Day", + "1984-05-22": "Independence Day", + "1984-07-13": "Statehood Day", + "1984-07-14": "Statehood Day", + "1985-01-01": "New Year's Day", + "1985-01-02": "New Year's Day", + "1985-01-06": "Orthodox Christmas Eve", + "1985-01-07": "Orthodox Christmas", + "1985-04-12": "Orthodox Good Friday", + "1985-04-14": "Orthodox Easter Sunday", + "1985-04-15": "Orthodox Easter Monday", + "1985-05-01": "Labour Day", + "1985-05-02": "Labour Day", + "1985-05-21": "Independence Day", + "1985-05-22": "Independence Day", + "1985-07-13": "Statehood Day", + "1985-07-14": "Statehood Day", + "1985-07-15": "Statehood Day (Observed)", + "1986-01-01": "New Year's Day", + "1986-01-02": "New Year's Day", + "1986-01-06": "Orthodox Christmas Eve", + "1986-01-07": "Orthodox Christmas", + "1986-05-01": "Labour Day", + "1986-05-02": "Labour Day; Orthodox Good Friday", + "1986-05-04": "Orthodox Easter Sunday", + "1986-05-05": "Orthodox Easter Monday", + "1986-05-21": "Independence Day", + "1986-05-22": "Independence Day", + "1986-07-13": "Statehood Day", + "1986-07-14": "Statehood Day", + "1986-07-15": "Statehood Day (Observed)", + "1987-01-01": "New Year's Day", + "1987-01-02": "New Year's Day", + "1987-01-06": "Orthodox Christmas Eve", + "1987-01-07": "Orthodox Christmas", + "1987-04-17": "Orthodox Good Friday", + "1987-04-19": "Orthodox Easter Sunday", + "1987-04-20": "Orthodox Easter Monday", + "1987-05-01": "Labour Day", + "1987-05-02": "Labour Day", + "1987-05-21": "Independence Day", + "1987-05-22": "Independence Day", + "1987-07-13": "Statehood Day", + "1987-07-14": "Statehood Day", + "1988-01-01": "New Year's Day", + "1988-01-02": "New Year's Day", + "1988-01-06": "Orthodox Christmas Eve", + "1988-01-07": "Orthodox Christmas", + "1988-04-08": "Orthodox Good Friday", + "1988-04-10": "Orthodox Easter Sunday", + "1988-04-11": "Orthodox Easter Monday", + "1988-05-01": "Labour Day", + "1988-05-02": "Labour Day", + "1988-05-03": "Labour Day (Observed)", + "1988-05-21": "Independence Day", + "1988-05-22": "Independence Day", + "1988-05-23": "Independence Day (Observed)", + "1988-07-13": "Statehood Day", + "1988-07-14": "Statehood Day", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day", + "1989-01-03": "New Year's Day (Observed)", + "1989-01-06": "Orthodox Christmas Eve", + "1989-01-07": "Orthodox Christmas", + "1989-04-28": "Orthodox Good Friday", + "1989-04-30": "Orthodox Easter Sunday", + "1989-05-01": "Labour Day; Orthodox Easter Monday", + "1989-05-02": "Labour Day", + "1989-05-21": "Independence Day", + "1989-05-22": "Independence Day", + "1989-05-23": "Independence Day (Observed)", + "1989-07-13": "Statehood Day", + "1989-07-14": "Statehood Day", + "1990-01-01": "New Year's Day", + "1990-01-02": "New Year's Day", + "1990-01-06": "Orthodox Christmas Eve", + "1990-01-07": "Orthodox Christmas", + "1990-04-13": "Orthodox Good Friday", + "1990-04-15": "Orthodox Easter Sunday", + "1990-04-16": "Orthodox Easter Monday", + "1990-05-01": "Labour Day", + "1990-05-02": "Labour Day", + "1990-05-21": "Independence Day", + "1990-05-22": "Independence Day", + "1990-07-13": "Statehood Day", + "1990-07-14": "Statehood Day", + "1991-01-01": "New Year's Day", + "1991-01-02": "New Year's Day", + "1991-01-06": "Orthodox Christmas Eve", + "1991-01-07": "Orthodox Christmas", + "1991-04-05": "Orthodox Good Friday", + "1991-04-07": "Orthodox Easter Sunday", + "1991-04-08": "Orthodox Easter Monday", + "1991-05-01": "Labour Day", + "1991-05-02": "Labour Day", + "1991-05-21": "Independence Day", + "1991-05-22": "Independence Day", + "1991-07-13": "Statehood Day", + "1991-07-14": "Statehood Day", + "1991-07-15": "Statehood Day (Observed)", + "1992-01-01": "New Year's Day", + "1992-01-02": "New Year's Day", + "1992-01-06": "Orthodox Christmas Eve", + "1992-01-07": "Orthodox Christmas", + "1992-04-24": "Orthodox Good Friday", + "1992-04-26": "Orthodox Easter Sunday", + "1992-04-27": "Orthodox Easter Monday", + "1992-05-01": "Labour Day", + "1992-05-02": "Labour Day", + "1992-05-21": "Independence Day", + "1992-05-22": "Independence Day", + "1992-07-13": "Statehood Day", + "1992-07-14": "Statehood Day", + "1993-01-01": "New Year's Day", + "1993-01-02": "New Year's Day", + "1993-01-06": "Orthodox Christmas Eve", + "1993-01-07": "Orthodox Christmas", + "1993-04-16": "Orthodox Good Friday", + "1993-04-18": "Orthodox Easter Sunday", + "1993-04-19": "Orthodox Easter Monday", + "1993-05-01": "Labour Day", + "1993-05-02": "Labour Day", + "1993-05-03": "Labour Day (Observed)", + "1993-05-21": "Independence Day", + "1993-05-22": "Independence Day", + "1993-07-13": "Statehood Day", + "1993-07-14": "Statehood Day", + "1994-01-01": "New Year's Day", + "1994-01-02": "New Year's Day", + "1994-01-03": "New Year's Day (Observed)", + "1994-01-06": "Orthodox Christmas Eve", + "1994-01-07": "Orthodox Christmas", + "1994-04-29": "Orthodox Good Friday", + "1994-05-01": "Labour Day; Orthodox Easter Sunday", + "1994-05-02": "Labour Day; Orthodox Easter Monday", + "1994-05-03": "Labour Day (Observed)", + "1994-05-21": "Independence Day", + "1994-05-22": "Independence Day", + "1994-05-23": "Independence Day (Observed)", + "1994-07-13": "Statehood Day", + "1994-07-14": "Statehood Day", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day", + "1995-01-03": "New Year's Day (Observed)", + "1995-01-06": "Orthodox Christmas Eve", + "1995-01-07": "Orthodox Christmas", + "1995-04-21": "Orthodox Good Friday", + "1995-04-23": "Orthodox Easter Sunday", + "1995-04-24": "Orthodox Easter Monday", + "1995-05-01": "Labour Day", + "1995-05-02": "Labour Day", + "1995-05-21": "Independence Day", + "1995-05-22": "Independence Day", + "1995-05-23": "Independence Day (Observed)", + "1995-07-13": "Statehood Day", + "1995-07-14": "Statehood Day", + "1996-01-01": "New Year's Day", + "1996-01-02": "New Year's Day", + "1996-01-06": "Orthodox Christmas Eve", + "1996-01-07": "Orthodox Christmas", + "1996-04-12": "Orthodox Good Friday", + "1996-04-14": "Orthodox Easter Sunday", + "1996-04-15": "Orthodox Easter Monday", + "1996-05-01": "Labour Day", + "1996-05-02": "Labour Day", + "1996-05-21": "Independence Day", + "1996-05-22": "Independence Day", + "1996-07-13": "Statehood Day", + "1996-07-14": "Statehood Day", + "1996-07-15": "Statehood Day (Observed)", + "1997-01-01": "New Year's Day", + "1997-01-02": "New Year's Day", + "1997-01-06": "Orthodox Christmas Eve", + "1997-01-07": "Orthodox Christmas", + "1997-04-25": "Orthodox Good Friday", + "1997-04-27": "Orthodox Easter Sunday", + "1997-04-28": "Orthodox Easter Monday", + "1997-05-01": "Labour Day", + "1997-05-02": "Labour Day", + "1997-05-21": "Independence Day", + "1997-05-22": "Independence Day", + "1997-07-13": "Statehood Day", + "1997-07-14": "Statehood Day", + "1997-07-15": "Statehood Day (Observed)", + "1998-01-01": "New Year's Day", + "1998-01-02": "New Year's Day", + "1998-01-06": "Orthodox Christmas Eve", + "1998-01-07": "Orthodox Christmas", + "1998-04-17": "Orthodox Good Friday", + "1998-04-19": "Orthodox Easter Sunday", + "1998-04-20": "Orthodox Easter Monday", + "1998-05-01": "Labour Day", + "1998-05-02": "Labour Day", + "1998-05-21": "Independence Day", + "1998-05-22": "Independence Day", + "1998-07-13": "Statehood Day", + "1998-07-14": "Statehood Day", + "1999-01-01": "New Year's Day", + "1999-01-02": "New Year's Day", + "1999-01-06": "Orthodox Christmas Eve", + "1999-01-07": "Orthodox Christmas", + "1999-04-09": "Orthodox Good Friday", + "1999-04-11": "Orthodox Easter Sunday", + "1999-04-12": "Orthodox Easter Monday", + "1999-05-01": "Labour Day", + "1999-05-02": "Labour Day", + "1999-05-03": "Labour Day (Observed)", + "1999-05-21": "Independence Day", + "1999-05-22": "Independence Day", + "1999-07-13": "Statehood Day", + "1999-07-14": "Statehood Day", + "2000-01-01": "New Year's Day", + "2000-01-02": "New Year's Day", + "2000-01-03": "New Year's Day (Observed)", + "2000-01-06": "Orthodox Christmas Eve", + "2000-01-07": "Orthodox Christmas", + "2000-04-28": "Orthodox Good Friday", + "2000-04-30": "Orthodox Easter Sunday", + "2000-05-01": "Labour Day; Orthodox Easter Monday", + "2000-05-02": "Labour Day", + "2000-05-21": "Independence Day", + "2000-05-22": "Independence Day", + "2000-05-23": "Independence Day (Observed)", + "2000-07-13": "Statehood Day", + "2000-07-14": "Statehood Day", + "2001-01-01": "New Year's Day", + "2001-01-02": "New Year's Day", + "2001-01-06": "Orthodox Christmas Eve", + "2001-01-07": "Orthodox Christmas", + "2001-04-13": "Orthodox Good Friday", + "2001-04-15": "Orthodox Easter Sunday", + "2001-04-16": "Orthodox Easter Monday", + "2001-05-01": "Labour Day", + "2001-05-02": "Labour Day", + "2001-05-21": "Independence Day", + "2001-05-22": "Independence Day", + "2001-07-13": "Statehood Day", + "2001-07-14": "Statehood Day", + "2002-01-01": "New Year's Day", + "2002-01-02": "New Year's Day", + "2002-01-06": "Orthodox Christmas Eve", + "2002-01-07": "Orthodox Christmas", + "2002-05-01": "Labour Day", + "2002-05-02": "Labour Day", + "2002-05-03": "Orthodox Good Friday", + "2002-05-05": "Orthodox Easter Sunday", + "2002-05-06": "Orthodox Easter Monday", + "2002-05-21": "Independence Day", + "2002-05-22": "Independence Day", + "2002-07-13": "Statehood Day", + "2002-07-14": "Statehood Day", + "2002-07-15": "Statehood Day (Observed)", + "2003-01-01": "New Year's Day", + "2003-01-02": "New Year's Day", + "2003-01-06": "Orthodox Christmas Eve", + "2003-01-07": "Orthodox Christmas", + "2003-04-25": "Orthodox Good Friday", + "2003-04-27": "Orthodox Easter Sunday", + "2003-04-28": "Orthodox Easter Monday", + "2003-05-01": "Labour Day", + "2003-05-02": "Labour Day", + "2003-05-21": "Independence Day", + "2003-05-22": "Independence Day", + "2003-07-13": "Statehood Day", + "2003-07-14": "Statehood Day", + "2003-07-15": "Statehood Day (Observed)", + "2004-01-01": "New Year's Day", + "2004-01-02": "New Year's Day", + "2004-01-06": "Orthodox Christmas Eve", + "2004-01-07": "Orthodox Christmas", + "2004-04-09": "Orthodox Good Friday", + "2004-04-11": "Orthodox Easter Sunday", + "2004-04-12": "Orthodox Easter Monday", + "2004-05-01": "Labour Day", + "2004-05-02": "Labour Day", + "2004-05-03": "Labour Day (Observed)", + "2004-05-21": "Independence Day", + "2004-05-22": "Independence Day", + "2004-07-13": "Statehood Day", + "2004-07-14": "Statehood Day", + "2005-01-01": "New Year's Day", + "2005-01-02": "New Year's Day", + "2005-01-03": "New Year's Day (Observed)", + "2005-01-06": "Orthodox Christmas Eve", + "2005-01-07": "Orthodox Christmas", + "2005-04-29": "Orthodox Good Friday", + "2005-05-01": "Labour Day; Orthodox Easter Sunday", + "2005-05-02": "Labour Day; Orthodox Easter Monday", + "2005-05-03": "Labour Day (Observed)", + "2005-05-21": "Independence Day", + "2005-05-22": "Independence Day", + "2005-05-23": "Independence Day (Observed)", + "2005-07-13": "Statehood Day", + "2005-07-14": "Statehood Day", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day", + "2006-01-03": "New Year's Day (Observed)", + "2006-01-06": "Orthodox Christmas Eve", + "2006-01-07": "Orthodox Christmas", + "2006-04-21": "Orthodox Good Friday", + "2006-04-23": "Orthodox Easter Sunday", + "2006-04-24": "Orthodox Easter Monday", + "2006-05-01": "Labour Day", + "2006-05-02": "Labour Day", + "2006-05-21": "Independence Day", + "2006-05-22": "Independence Day", + "2006-05-23": "Independence Day (Observed)", + "2006-07-13": "Statehood Day", + "2006-07-14": "Statehood Day", + "2007-01-01": "New Year's Day", + "2007-01-02": "New Year's Day", + "2007-01-06": "Orthodox Christmas Eve", + "2007-01-07": "Orthodox Christmas", + "2007-04-06": "Orthodox Good Friday", + "2007-04-08": "Orthodox Easter Sunday", + "2007-04-09": "Orthodox Easter Monday", + "2007-05-01": "Labour Day", + "2007-05-02": "Labour Day", + "2007-05-21": "Independence Day", + "2007-05-22": "Independence Day", + "2007-07-13": "Statehood Day", + "2007-07-14": "Statehood Day", + "2008-01-01": "New Year's Day", + "2008-01-02": "New Year's Day", + "2008-01-06": "Orthodox Christmas Eve", + "2008-01-07": "Orthodox Christmas", + "2008-04-25": "Orthodox Good Friday", + "2008-04-27": "Orthodox Easter Sunday", + "2008-04-28": "Orthodox Easter Monday", + "2008-05-01": "Labour Day", + "2008-05-02": "Labour Day", + "2008-05-21": "Independence Day", + "2008-05-22": "Independence Day", + "2008-07-13": "Statehood Day", + "2008-07-14": "Statehood Day", + "2008-07-15": "Statehood Day (Observed)", + "2009-01-01": "New Year's Day", + "2009-01-02": "New Year's Day", + "2009-01-06": "Orthodox Christmas Eve", + "2009-01-07": "Orthodox Christmas", + "2009-04-17": "Orthodox Good Friday", + "2009-04-19": "Orthodox Easter Sunday", + "2009-04-20": "Orthodox Easter Monday", + "2009-05-01": "Labour Day", + "2009-05-02": "Labour Day", + "2009-05-21": "Independence Day", + "2009-05-22": "Independence Day", + "2009-07-13": "Statehood Day", + "2009-07-14": "Statehood Day", + "2010-01-01": "New Year's Day", + "2010-01-02": "New Year's Day", + "2010-01-06": "Orthodox Christmas Eve", + "2010-01-07": "Orthodox Christmas", + "2010-04-02": "Orthodox Good Friday", + "2010-04-04": "Orthodox Easter Sunday", + "2010-04-05": "Orthodox Easter Monday", + "2010-05-01": "Labour Day", + "2010-05-02": "Labour Day", + "2010-05-03": "Labour Day (Observed)", + "2010-05-21": "Independence Day", + "2010-05-22": "Independence Day", + "2010-07-13": "Statehood Day", + "2010-07-14": "Statehood Day", + "2011-01-01": "New Year's Day", + "2011-01-02": "New Year's Day", + "2011-01-03": "New Year's Day (Observed)", + "2011-01-06": "Orthodox Christmas Eve", + "2011-01-07": "Orthodox Christmas", + "2011-04-22": "Orthodox Good Friday", + "2011-04-24": "Orthodox Easter Sunday", + "2011-04-25": "Orthodox Easter Monday", + "2011-05-01": "Labour Day", + "2011-05-02": "Labour Day", + "2011-05-03": "Labour Day (Observed)", + "2011-05-21": "Independence Day", + "2011-05-22": "Independence Day", + "2011-05-23": "Independence Day (Observed)", + "2011-07-13": "Statehood Day", + "2011-07-14": "Statehood Day", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day", + "2012-01-03": "New Year's Day (Observed)", + "2012-01-06": "Orthodox Christmas Eve", + "2012-01-07": "Orthodox Christmas", + "2012-04-13": "Orthodox Good Friday", + "2012-04-15": "Orthodox Easter Sunday", + "2012-04-16": "Orthodox Easter Monday", + "2012-05-01": "Labour Day", + "2012-05-02": "Labour Day", + "2012-05-21": "Independence Day", + "2012-05-22": "Independence Day", + "2012-07-13": "Statehood Day", + "2012-07-14": "Statehood Day", + "2013-01-01": "New Year's Day", + "2013-01-02": "New Year's Day", + "2013-01-06": "Orthodox Christmas Eve", + "2013-01-07": "Orthodox Christmas", + "2013-05-01": "Labour Day", + "2013-05-02": "Labour Day", + "2013-05-03": "Orthodox Good Friday", + "2013-05-05": "Orthodox Easter Sunday", + "2013-05-06": "Orthodox Easter Monday", + "2013-05-21": "Independence Day", + "2013-05-22": "Independence Day", + "2013-07-13": "Statehood Day", + "2013-07-14": "Statehood Day", + "2013-07-15": "Statehood Day (Observed)", + "2014-01-01": "New Year's Day", + "2014-01-02": "New Year's Day", + "2014-01-06": "Orthodox Christmas Eve", + "2014-01-07": "Orthodox Christmas", + "2014-04-18": "Orthodox Good Friday", + "2014-04-20": "Orthodox Easter Sunday", + "2014-04-21": "Orthodox Easter Monday", + "2014-05-01": "Labour Day", + "2014-05-02": "Labour Day", + "2014-05-21": "Independence Day", + "2014-05-22": "Independence Day", + "2014-07-13": "Statehood Day", + "2014-07-14": "Statehood Day", + "2014-07-15": "Statehood Day (Observed)", + "2015-01-01": "New Year's Day", + "2015-01-02": "New Year's Day", + "2015-01-06": "Orthodox Christmas Eve", + "2015-01-07": "Orthodox Christmas", + "2015-04-10": "Orthodox Good Friday", + "2015-04-12": "Orthodox Easter Sunday", + "2015-04-13": "Orthodox Easter Monday", + "2015-05-01": "Labour Day", + "2015-05-02": "Labour Day", + "2015-05-21": "Independence Day", + "2015-05-22": "Independence Day", + "2015-07-13": "Statehood Day", + "2015-07-14": "Statehood Day", + "2016-01-01": "New Year's Day", + "2016-01-02": "New Year's Day", + "2016-01-06": "Orthodox Christmas Eve", + "2016-01-07": "Orthodox Christmas", + "2016-04-29": "Orthodox Good Friday", + "2016-05-01": "Labour Day; Orthodox Easter Sunday", + "2016-05-02": "Labour Day; Orthodox Easter Monday", + "2016-05-03": "Labour Day (Observed)", + "2016-05-21": "Independence Day", + "2016-05-22": "Independence Day", + "2016-05-23": "Independence Day (Observed)", + "2016-07-13": "Statehood Day", + "2016-07-14": "Statehood Day", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day", + "2017-01-03": "New Year's Day (Observed)", + "2017-01-06": "Orthodox Christmas Eve", + "2017-01-07": "Orthodox Christmas", + "2017-04-14": "Orthodox Good Friday", + "2017-04-16": "Orthodox Easter Sunday", + "2017-04-17": "Orthodox Easter Monday", + "2017-05-01": "Labour Day", + "2017-05-02": "Labour Day", + "2017-05-21": "Independence Day", + "2017-05-22": "Independence Day", + "2017-05-23": "Independence Day (Observed)", + "2017-07-13": "Statehood Day", + "2017-07-14": "Statehood Day", + "2018-01-01": "New Year's Day", + "2018-01-02": "New Year's Day", + "2018-01-06": "Orthodox Christmas Eve", + "2018-01-07": "Orthodox Christmas", + "2018-04-06": "Orthodox Good Friday", + "2018-04-08": "Orthodox Easter Sunday", + "2018-04-09": "Orthodox Easter Monday", + "2018-05-01": "Labour Day", + "2018-05-02": "Labour Day", + "2018-05-21": "Independence Day", + "2018-05-22": "Independence Day", + "2018-07-13": "Statehood Day", + "2018-07-14": "Statehood Day", + "2019-01-01": "New Year's Day", + "2019-01-02": "New Year's Day", + "2019-01-06": "Orthodox Christmas Eve", + "2019-01-07": "Orthodox Christmas", + "2019-04-26": "Orthodox Good Friday", + "2019-04-28": "Orthodox Easter Sunday", + "2019-04-29": "Orthodox Easter Monday", + "2019-05-01": "Labour Day", + "2019-05-02": "Labour Day", + "2019-05-21": "Independence Day", + "2019-05-22": "Independence Day", + "2019-07-13": "Statehood Day", + "2019-07-14": "Statehood Day", + "2019-07-15": "Statehood Day (Observed)", + "2020-01-01": "New Year's Day", + "2020-01-02": "New Year's Day", + "2020-01-06": "Orthodox Christmas Eve", + "2020-01-07": "Orthodox Christmas", + "2020-04-17": "Orthodox Good Friday", + "2020-04-19": "Orthodox Easter Sunday", + "2020-04-20": "Orthodox Easter Monday", + "2020-05-01": "Labour Day", + "2020-05-02": "Labour Day", + "2020-05-21": "Independence Day", + "2020-05-22": "Independence Day", + "2020-07-13": "Statehood Day", + "2020-07-14": "Statehood Day", + "2021-01-01": "New Year's Day", + "2021-01-02": "New Year's Day", + "2021-01-06": "Orthodox Christmas Eve", + "2021-01-07": "Orthodox Christmas", + "2021-04-30": "Orthodox Good Friday", + "2021-05-01": "Labour Day", + "2021-05-02": "Labour Day; Orthodox Easter Sunday", + "2021-05-03": "Labour Day (Observed); Orthodox Easter Monday", + "2021-05-21": "Independence Day", + "2021-05-22": "Independence Day", + "2021-07-13": "Statehood Day", + "2021-07-14": "Statehood Day", + "2022-01-01": "New Year's Day", + "2022-01-02": "New Year's Day", + "2022-01-03": "New Year's Day (Observed)", + "2022-01-06": "Orthodox Christmas Eve", + "2022-01-07": "Orthodox Christmas", + "2022-04-22": "Orthodox Good Friday", + "2022-04-24": "Orthodox Easter Sunday", + "2022-04-25": "Orthodox Easter Monday", + "2022-05-01": "Labour Day", + "2022-05-02": "Labour Day", + "2022-05-03": "Labour Day (Observed)", + "2022-05-21": "Independence Day", + "2022-05-22": "Independence Day", + "2022-05-23": "Independence Day (Observed)", + "2022-07-13": "Statehood Day", + "2022-07-14": "Statehood Day", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day", + "2023-01-03": "New Year's Day (Observed)", + "2023-01-06": "Orthodox Christmas Eve", + "2023-01-07": "Orthodox Christmas", + "2023-04-14": "Orthodox Good Friday", + "2023-04-16": "Orthodox Easter Sunday", + "2023-04-17": "Orthodox Easter Monday", + "2023-05-01": "Labour Day", + "2023-05-02": "Labour Day", + "2023-05-21": "Independence Day", + "2023-05-22": "Independence Day", + "2023-05-23": "Independence Day (Observed)", + "2023-07-13": "Statehood Day", + "2023-07-14": "Statehood Day", + "2024-01-01": "New Year's Day", + "2024-01-02": "New Year's Day", + "2024-01-06": "Orthodox Christmas Eve", + "2024-01-07": "Orthodox Christmas", + "2024-05-01": "Labour Day", + "2024-05-02": "Labour Day", + "2024-05-03": "Orthodox Good Friday", + "2024-05-05": "Orthodox Easter Sunday", + "2024-05-06": "Orthodox Easter Monday", + "2024-05-21": "Independence Day", + "2024-05-22": "Independence Day", + "2024-07-13": "Statehood Day", + "2024-07-14": "Statehood Day", + "2024-07-15": "Statehood Day (Observed)", + "2025-01-01": "New Year's Day", + "2025-01-02": "New Year's Day", + "2025-01-06": "Orthodox Christmas Eve", + "2025-01-07": "Orthodox Christmas", + "2025-04-18": "Orthodox Good Friday", + "2025-04-20": "Orthodox Easter Sunday", + "2025-04-21": "Orthodox Easter Monday", + "2025-05-01": "Labour Day", + "2025-05-02": "Labour Day", + "2025-05-21": "Independence Day", + "2025-05-22": "Independence Day", + "2025-07-13": "Statehood Day", + "2025-07-14": "Statehood Day", + "2025-07-15": "Statehood Day (Observed)", + "2026-01-01": "New Year's Day", + "2026-01-02": "New Year's Day", + "2026-01-06": "Orthodox Christmas Eve", + "2026-01-07": "Orthodox Christmas", + "2026-04-10": "Orthodox Good Friday", + "2026-04-12": "Orthodox Easter Sunday", + "2026-04-13": "Orthodox Easter Monday", + "2026-05-01": "Labour Day", + "2026-05-02": "Labour Day", + "2026-05-21": "Independence Day", + "2026-05-22": "Independence Day", + "2026-07-13": "Statehood Day", + "2026-07-14": "Statehood Day", + "2027-01-01": "New Year's Day", + "2027-01-02": "New Year's Day", + "2027-01-06": "Orthodox Christmas Eve", + "2027-01-07": "Orthodox Christmas", + "2027-04-30": "Orthodox Good Friday", + "2027-05-01": "Labour Day", + "2027-05-02": "Labour Day; Orthodox Easter Sunday", + "2027-05-03": "Labour Day (Observed); Orthodox Easter Monday", + "2027-05-21": "Independence Day", + "2027-05-22": "Independence Day", + "2027-07-13": "Statehood Day", + "2027-07-14": "Statehood Day", + "2028-01-01": "New Year's Day", + "2028-01-02": "New Year's Day", + "2028-01-03": "New Year's Day (Observed)", + "2028-01-06": "Orthodox Christmas Eve", + "2028-01-07": "Orthodox Christmas", + "2028-04-14": "Orthodox Good Friday", + "2028-04-16": "Orthodox Easter Sunday", + "2028-04-17": "Orthodox Easter Monday", + "2028-05-01": "Labour Day", + "2028-05-02": "Labour Day", + "2028-05-21": "Independence Day", + "2028-05-22": "Independence Day", + "2028-05-23": "Independence Day (Observed)", + "2028-07-13": "Statehood Day", + "2028-07-14": "Statehood Day", + "2029-01-01": "New Year's Day", + "2029-01-02": "New Year's Day", + "2029-01-06": "Orthodox Christmas Eve", + "2029-01-07": "Orthodox Christmas", + "2029-04-06": "Orthodox Good Friday", + "2029-04-08": "Orthodox Easter Sunday", + "2029-04-09": "Orthodox Easter Monday", + "2029-05-01": "Labour Day", + "2029-05-02": "Labour Day", + "2029-05-21": "Independence Day", + "2029-05-22": "Independence Day", + "2029-07-13": "Statehood Day", + "2029-07-14": "Statehood Day", + "2030-01-01": "New Year's Day", + "2030-01-02": "New Year's Day", + "2030-01-06": "Orthodox Christmas Eve", + "2030-01-07": "Orthodox Christmas", + "2030-04-26": "Orthodox Good Friday", + "2030-04-28": "Orthodox Easter Sunday", + "2030-04-29": "Orthodox Easter Monday", + "2030-05-01": "Labour Day", + "2030-05-02": "Labour Day", + "2030-05-21": "Independence Day", + "2030-05-22": "Independence Day", + "2030-07-13": "Statehood Day", + "2030-07-14": "Statehood Day", + "2030-07-15": "Statehood Day (Observed)", + "2031-01-01": "New Year's Day", + "2031-01-02": "New Year's Day", + "2031-01-06": "Orthodox Christmas Eve", + "2031-01-07": "Orthodox Christmas", + "2031-04-11": "Orthodox Good Friday", + "2031-04-13": "Orthodox Easter Sunday", + "2031-04-14": "Orthodox Easter Monday", + "2031-05-01": "Labour Day", + "2031-05-02": "Labour Day", + "2031-05-21": "Independence Day", + "2031-05-22": "Independence Day", + "2031-07-13": "Statehood Day", + "2031-07-14": "Statehood Day", + "2031-07-15": "Statehood Day (Observed)", + "2032-01-01": "New Year's Day", + "2032-01-02": "New Year's Day", + "2032-01-06": "Orthodox Christmas Eve", + "2032-01-07": "Orthodox Christmas", + "2032-04-30": "Orthodox Good Friday", + "2032-05-01": "Labour Day", + "2032-05-02": "Labour Day; Orthodox Easter Sunday", + "2032-05-03": "Labour Day (Observed); Orthodox Easter Monday", + "2032-05-21": "Independence Day", + "2032-05-22": "Independence Day", + "2032-07-13": "Statehood Day", + "2032-07-14": "Statehood Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "New Year's Day", + "2033-01-03": "New Year's Day (Observed)", + "2033-01-06": "Orthodox Christmas Eve", + "2033-01-07": "Orthodox Christmas", + "2033-04-22": "Orthodox Good Friday", + "2033-04-24": "Orthodox Easter Sunday", + "2033-04-25": "Orthodox Easter Monday", + "2033-05-01": "Labour Day", + "2033-05-02": "Labour Day", + "2033-05-03": "Labour Day (Observed)", + "2033-05-21": "Independence Day", + "2033-05-22": "Independence Day", + "2033-05-23": "Independence Day (Observed)", + "2033-07-13": "Statehood Day", + "2033-07-14": "Statehood Day", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day", + "2034-01-03": "New Year's Day (Observed)", + "2034-01-06": "Orthodox Christmas Eve", + "2034-01-07": "Orthodox Christmas", + "2034-04-07": "Orthodox Good Friday", + "2034-04-09": "Orthodox Easter Sunday", + "2034-04-10": "Orthodox Easter Monday", + "2034-05-01": "Labour Day", + "2034-05-02": "Labour Day", + "2034-05-21": "Independence Day", + "2034-05-22": "Independence Day", + "2034-05-23": "Independence Day (Observed)", + "2034-07-13": "Statehood Day", + "2034-07-14": "Statehood Day", + "2035-01-01": "New Year's Day", + "2035-01-02": "New Year's Day", + "2035-01-06": "Orthodox Christmas Eve", + "2035-01-07": "Orthodox Christmas", + "2035-04-27": "Orthodox Good Friday", + "2035-04-29": "Orthodox Easter Sunday", + "2035-04-30": "Orthodox Easter Monday", + "2035-05-01": "Labour Day", + "2035-05-02": "Labour Day", + "2035-05-21": "Independence Day", + "2035-05-22": "Independence Day", + "2035-07-13": "Statehood Day", + "2035-07-14": "Statehood Day", + "2036-01-01": "New Year's Day", + "2036-01-02": "New Year's Day", + "2036-01-06": "Orthodox Christmas Eve", + "2036-01-07": "Orthodox Christmas", + "2036-04-18": "Orthodox Good Friday", + "2036-04-20": "Orthodox Easter Sunday", + "2036-04-21": "Orthodox Easter Monday", + "2036-05-01": "Labour Day", + "2036-05-02": "Labour Day", + "2036-05-21": "Independence Day", + "2036-05-22": "Independence Day", + "2036-07-13": "Statehood Day", + "2036-07-14": "Statehood Day", + "2036-07-15": "Statehood Day (Observed)", + "2037-01-01": "New Year's Day", + "2037-01-02": "New Year's Day", + "2037-01-06": "Orthodox Christmas Eve", + "2037-01-07": "Orthodox Christmas", + "2037-04-03": "Orthodox Good Friday", + "2037-04-05": "Orthodox Easter Sunday", + "2037-04-06": "Orthodox Easter Monday", + "2037-05-01": "Labour Day", + "2037-05-02": "Labour Day", + "2037-05-21": "Independence Day", + "2037-05-22": "Independence Day", + "2037-07-13": "Statehood Day", + "2037-07-14": "Statehood Day", + "2038-01-01": "New Year's Day", + "2038-01-02": "New Year's Day", + "2038-01-06": "Orthodox Christmas Eve", + "2038-01-07": "Orthodox Christmas", + "2038-04-23": "Orthodox Good Friday", + "2038-04-25": "Orthodox Easter Sunday", + "2038-04-26": "Orthodox Easter Monday", + "2038-05-01": "Labour Day", + "2038-05-02": "Labour Day", + "2038-05-03": "Labour Day (Observed)", + "2038-05-21": "Independence Day", + "2038-05-22": "Independence Day", + "2038-07-13": "Statehood Day", + "2038-07-14": "Statehood Day", + "2039-01-01": "New Year's Day", + "2039-01-02": "New Year's Day", + "2039-01-03": "New Year's Day (Observed)", + "2039-01-06": "Orthodox Christmas Eve", + "2039-01-07": "Orthodox Christmas", + "2039-04-15": "Orthodox Good Friday", + "2039-04-17": "Orthodox Easter Sunday", + "2039-04-18": "Orthodox Easter Monday", + "2039-05-01": "Labour Day", + "2039-05-02": "Labour Day", + "2039-05-03": "Labour Day (Observed)", + "2039-05-21": "Independence Day", + "2039-05-22": "Independence Day", + "2039-05-23": "Independence Day (Observed)", + "2039-07-13": "Statehood Day", + "2039-07-14": "Statehood Day", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day", + "2040-01-03": "New Year's Day (Observed)", + "2040-01-06": "Orthodox Christmas Eve", + "2040-01-07": "Orthodox Christmas", + "2040-05-01": "Labour Day", + "2040-05-02": "Labour Day", + "2040-05-04": "Orthodox Good Friday", + "2040-05-06": "Orthodox Easter Sunday", + "2040-05-07": "Orthodox Easter Monday", + "2040-05-21": "Independence Day", + "2040-05-22": "Independence Day", + "2040-07-13": "Statehood Day", + "2040-07-14": "Statehood Day", + "2041-01-01": "New Year's Day", + "2041-01-02": "New Year's Day", + "2041-01-06": "Orthodox Christmas Eve", + "2041-01-07": "Orthodox Christmas", + "2041-04-19": "Orthodox Good Friday", + "2041-04-21": "Orthodox Easter Sunday", + "2041-04-22": "Orthodox Easter Monday", + "2041-05-01": "Labour Day", + "2041-05-02": "Labour Day", + "2041-05-21": "Independence Day", + "2041-05-22": "Independence Day", + "2041-07-13": "Statehood Day", + "2041-07-14": "Statehood Day", + "2041-07-15": "Statehood Day (Observed)", + "2042-01-01": "New Year's Day", + "2042-01-02": "New Year's Day", + "2042-01-06": "Orthodox Christmas Eve", + "2042-01-07": "Orthodox Christmas", + "2042-04-11": "Orthodox Good Friday", + "2042-04-13": "Orthodox Easter Sunday", + "2042-04-14": "Orthodox Easter Monday", + "2042-05-01": "Labour Day", + "2042-05-02": "Labour Day", + "2042-05-21": "Independence Day", + "2042-05-22": "Independence Day", + "2042-07-13": "Statehood Day", + "2042-07-14": "Statehood Day", + "2042-07-15": "Statehood Day (Observed)", + "2043-01-01": "New Year's Day", + "2043-01-02": "New Year's Day", + "2043-01-06": "Orthodox Christmas Eve", + "2043-01-07": "Orthodox Christmas", + "2043-05-01": "Labour Day; Orthodox Good Friday", + "2043-05-02": "Labour Day", + "2043-05-03": "Orthodox Easter Sunday", + "2043-05-04": "Orthodox Easter Monday", + "2043-05-21": "Independence Day", + "2043-05-22": "Independence Day", + "2043-07-13": "Statehood Day", + "2043-07-14": "Statehood Day", + "2044-01-01": "New Year's Day", + "2044-01-02": "New Year's Day", + "2044-01-06": "Orthodox Christmas Eve", + "2044-01-07": "Orthodox Christmas", + "2044-04-22": "Orthodox Good Friday", + "2044-04-24": "Orthodox Easter Sunday", + "2044-04-25": "Orthodox Easter Monday", + "2044-05-01": "Labour Day", + "2044-05-02": "Labour Day", + "2044-05-03": "Labour Day (Observed)", + "2044-05-21": "Independence Day", + "2044-05-22": "Independence Day", + "2044-05-23": "Independence Day (Observed)", + "2044-07-13": "Statehood Day", + "2044-07-14": "Statehood Day", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day", + "2045-01-03": "New Year's Day (Observed)", + "2045-01-06": "Orthodox Christmas Eve", + "2045-01-07": "Orthodox Christmas", + "2045-04-07": "Orthodox Good Friday", + "2045-04-09": "Orthodox Easter Sunday", + "2045-04-10": "Orthodox Easter Monday", + "2045-05-01": "Labour Day", + "2045-05-02": "Labour Day", + "2045-05-21": "Independence Day", + "2045-05-22": "Independence Day", + "2045-05-23": "Independence Day (Observed)", + "2045-07-13": "Statehood Day", + "2045-07-14": "Statehood Day", + "2046-01-01": "New Year's Day", + "2046-01-02": "New Year's Day", + "2046-01-06": "Orthodox Christmas Eve", + "2046-01-07": "Orthodox Christmas", + "2046-04-27": "Orthodox Good Friday", + "2046-04-29": "Orthodox Easter Sunday", + "2046-04-30": "Orthodox Easter Monday", + "2046-05-01": "Labour Day", + "2046-05-02": "Labour Day", + "2046-05-21": "Independence Day", + "2046-05-22": "Independence Day", + "2046-07-13": "Statehood Day", + "2046-07-14": "Statehood Day", + "2047-01-01": "New Year's Day", + "2047-01-02": "New Year's Day", + "2047-01-06": "Orthodox Christmas Eve", + "2047-01-07": "Orthodox Christmas", + "2047-04-19": "Orthodox Good Friday", + "2047-04-21": "Orthodox Easter Sunday", + "2047-04-22": "Orthodox Easter Monday", + "2047-05-01": "Labour Day", + "2047-05-02": "Labour Day", + "2047-05-21": "Independence Day", + "2047-05-22": "Independence Day", + "2047-07-13": "Statehood Day", + "2047-07-14": "Statehood Day", + "2047-07-15": "Statehood Day (Observed)", + "2048-01-01": "New Year's Day", + "2048-01-02": "New Year's Day", + "2048-01-06": "Orthodox Christmas Eve", + "2048-01-07": "Orthodox Christmas", + "2048-04-03": "Orthodox Good Friday", + "2048-04-05": "Orthodox Easter Sunday", + "2048-04-06": "Orthodox Easter Monday", + "2048-05-01": "Labour Day", + "2048-05-02": "Labour Day", + "2048-05-21": "Independence Day", + "2048-05-22": "Independence Day", + "2048-07-13": "Statehood Day", + "2048-07-14": "Statehood Day", + "2049-01-01": "New Year's Day", + "2049-01-02": "New Year's Day", + "2049-01-06": "Orthodox Christmas Eve", + "2049-01-07": "Orthodox Christmas", + "2049-04-23": "Orthodox Good Friday", + "2049-04-25": "Orthodox Easter Sunday", + "2049-04-26": "Orthodox Easter Monday", + "2049-05-01": "Labour Day", + "2049-05-02": "Labour Day", + "2049-05-03": "Labour Day (Observed)", + "2049-05-21": "Independence Day", + "2049-05-22": "Independence Day", + "2049-07-13": "Statehood Day", + "2049-07-14": "Statehood Day", + "2050-01-01": "New Year's Day", + "2050-01-02": "New Year's Day", + "2050-01-03": "New Year's Day (Observed)", + "2050-01-06": "Orthodox Christmas Eve", + "2050-01-07": "Orthodox Christmas", + "2050-04-15": "Orthodox Good Friday", + "2050-04-17": "Orthodox Easter Sunday", + "2050-04-18": "Orthodox Easter Monday", + "2050-05-01": "Labour Day", + "2050-05-02": "Labour Day", + "2050-05-03": "Labour Day (Observed)", + "2050-05-21": "Independence Day", + "2050-05-22": "Independence Day", + "2050-05-23": "Independence Day (Observed)", + "2050-07-13": "Statehood Day", + "2050-07-14": "Statehood Day" +} diff --git a/snapshots/countries/MG.json b/snapshots/countries/MG.json new file mode 100644 index 000000000..a3e8c7a4b --- /dev/null +++ b/snapshots/countries/MG.json @@ -0,0 +1,1540 @@ +{ + "1950-01-01": "New Year's Day", + "1950-03-08": "Women's Day", + "1950-03-29": "Martyrs' Day", + "1950-04-09": "Easter Sunday", + "1950-04-10": "Easter Monday", + "1950-05-01": "Labor Day", + "1950-05-18": "Ascension Day", + "1950-05-28": "Whit Sunday", + "1950-05-29": "Whit Monday", + "1950-06-04": "Mother's Day", + "1950-06-18": "Father's Day", + "1950-08-15": "Assumption Day", + "1950-11-01": "All Saints' Day", + "1950-12-25": "Christmas Day", + "1951-01-01": "New Year's Day", + "1951-03-08": "Women's Day", + "1951-03-25": "Easter Sunday", + "1951-03-26": "Easter Monday", + "1951-03-29": "Martyrs' Day", + "1951-05-01": "Labor Day", + "1951-05-03": "Ascension Day", + "1951-05-13": "Whit Sunday", + "1951-05-14": "Whit Monday", + "1951-05-27": "Mother's Day", + "1951-06-17": "Father's Day", + "1951-08-15": "Assumption Day", + "1951-11-01": "All Saints' Day", + "1951-12-25": "Christmas Day", + "1952-01-01": "New Year's Day", + "1952-03-08": "Women's Day", + "1952-03-29": "Martyrs' Day", + "1952-04-13": "Easter Sunday", + "1952-04-14": "Easter Monday", + "1952-05-01": "Labor Day", + "1952-05-22": "Ascension Day", + "1952-05-25": "Mother's Day", + "1952-06-01": "Whit Sunday", + "1952-06-02": "Whit Monday", + "1952-06-15": "Father's Day", + "1952-08-15": "Assumption Day", + "1952-11-01": "All Saints' Day", + "1952-12-25": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-03-08": "Women's Day", + "1953-03-29": "Martyrs' Day", + "1953-04-05": "Easter Sunday", + "1953-04-06": "Easter Monday", + "1953-05-01": "Labor Day", + "1953-05-14": "Ascension Day", + "1953-05-24": "Whit Sunday", + "1953-05-25": "Whit Monday", + "1953-05-31": "Mother's Day", + "1953-06-21": "Father's Day", + "1953-08-15": "Assumption Day", + "1953-11-01": "All Saints' Day", + "1953-12-25": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-03-08": "Women's Day", + "1954-03-29": "Martyrs' Day", + "1954-04-18": "Easter Sunday", + "1954-04-19": "Easter Monday", + "1954-05-01": "Labor Day", + "1954-05-27": "Ascension Day", + "1954-05-30": "Mother's Day", + "1954-06-06": "Whit Sunday", + "1954-06-07": "Whit Monday", + "1954-06-20": "Father's Day", + "1954-08-15": "Assumption Day", + "1954-11-01": "All Saints' Day", + "1954-12-25": "Christmas Day", + "1955-01-01": "New Year's Day", + "1955-03-08": "Women's Day", + "1955-03-29": "Martyrs' Day", + "1955-04-10": "Easter Sunday", + "1955-04-11": "Easter Monday", + "1955-05-01": "Labor Day", + "1955-05-19": "Ascension Day", + "1955-05-29": "Whit Sunday", + "1955-05-30": "Whit Monday", + "1955-06-05": "Mother's Day", + "1955-06-19": "Father's Day", + "1955-08-15": "Assumption Day", + "1955-11-01": "All Saints' Day", + "1955-12-25": "Christmas Day", + "1956-01-01": "New Year's Day", + "1956-03-08": "Women's Day", + "1956-03-29": "Martyrs' Day", + "1956-04-01": "Easter Sunday", + "1956-04-02": "Easter Monday", + "1956-05-01": "Labor Day", + "1956-05-10": "Ascension Day", + "1956-05-20": "Whit Sunday", + "1956-05-21": "Whit Monday", + "1956-05-27": "Mother's Day", + "1956-06-17": "Father's Day", + "1956-08-15": "Assumption Day", + "1956-11-01": "All Saints' Day", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-03-08": "Women's Day", + "1957-03-29": "Martyrs' Day", + "1957-04-21": "Easter Sunday", + "1957-04-22": "Easter Monday", + "1957-05-01": "Labor Day", + "1957-05-26": "Mother's Day", + "1957-05-30": "Ascension Day", + "1957-06-09": "Whit Sunday", + "1957-06-10": "Whit Monday", + "1957-06-16": "Father's Day", + "1957-08-15": "Assumption Day", + "1957-11-01": "All Saints' Day", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-03-08": "Women's Day", + "1958-03-29": "Martyrs' Day", + "1958-04-06": "Easter Sunday", + "1958-04-07": "Easter Monday", + "1958-05-01": "Labor Day", + "1958-05-15": "Ascension Day", + "1958-05-25": "Whit Sunday", + "1958-05-26": "Whit Monday", + "1958-06-01": "Mother's Day", + "1958-06-15": "Father's Day", + "1958-08-15": "Assumption Day", + "1958-11-01": "All Saints' Day", + "1958-12-25": "Christmas Day", + "1959-01-01": "New Year's Day", + "1959-03-08": "Women's Day", + "1959-03-29": "Easter Sunday; Martyrs' Day", + "1959-03-30": "Easter Monday", + "1959-05-01": "Labor Day", + "1959-05-07": "Ascension Day", + "1959-05-17": "Whit Sunday", + "1959-05-18": "Whit Monday", + "1959-05-31": "Mother's Day", + "1959-06-21": "Father's Day", + "1959-08-15": "Assumption Day", + "1959-11-01": "All Saints' Day", + "1959-12-25": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-03-08": "Women's Day", + "1960-03-29": "Martyrs' Day", + "1960-04-17": "Easter Sunday", + "1960-04-18": "Easter Monday", + "1960-05-01": "Labor Day", + "1960-05-26": "Ascension Day", + "1960-05-29": "Mother's Day", + "1960-06-05": "Whit Sunday", + "1960-06-06": "Whit Monday", + "1960-06-19": "Father's Day", + "1960-06-26": "Independence Day", + "1960-08-15": "Assumption Day", + "1960-11-01": "All Saints' Day", + "1960-12-25": "Christmas Day", + "1961-01-01": "New Year's Day", + "1961-03-08": "Women's Day", + "1961-03-29": "Martyrs' Day", + "1961-04-02": "Easter Sunday", + "1961-04-03": "Easter Monday", + "1961-05-01": "Labor Day", + "1961-05-11": "Ascension Day", + "1961-05-21": "Whit Sunday", + "1961-05-22": "Whit Monday", + "1961-05-28": "Mother's Day", + "1961-06-18": "Father's Day", + "1961-06-26": "Independence Day", + "1961-08-15": "Assumption Day", + "1961-11-01": "All Saints' Day", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-03-08": "Women's Day", + "1962-03-29": "Martyrs' Day", + "1962-04-22": "Easter Sunday", + "1962-04-23": "Easter Monday", + "1962-05-01": "Labor Day", + "1962-05-27": "Mother's Day", + "1962-05-31": "Ascension Day", + "1962-06-10": "Whit Sunday", + "1962-06-11": "Whit Monday", + "1962-06-17": "Father's Day", + "1962-06-26": "Independence Day", + "1962-08-15": "Assumption Day", + "1962-11-01": "All Saints' Day", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-03-08": "Women's Day", + "1963-03-29": "Martyrs' Day", + "1963-04-14": "Easter Sunday", + "1963-04-15": "Easter Monday", + "1963-05-01": "Labor Day", + "1963-05-23": "Ascension Day", + "1963-05-26": "Mother's Day", + "1963-06-02": "Whit Sunday", + "1963-06-03": "Whit Monday", + "1963-06-16": "Father's Day", + "1963-06-26": "Independence Day", + "1963-08-15": "Assumption Day", + "1963-11-01": "All Saints' Day", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-03-08": "Women's Day", + "1964-03-29": "Easter Sunday; Martyrs' Day", + "1964-03-30": "Easter Monday", + "1964-05-01": "Labor Day", + "1964-05-07": "Ascension Day", + "1964-05-17": "Whit Sunday", + "1964-05-18": "Whit Monday", + "1964-05-31": "Mother's Day", + "1964-06-21": "Father's Day", + "1964-06-26": "Independence Day", + "1964-08-15": "Assumption Day", + "1964-11-01": "All Saints' Day", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-03-08": "Women's Day", + "1965-03-29": "Martyrs' Day", + "1965-04-18": "Easter Sunday", + "1965-04-19": "Easter Monday", + "1965-05-01": "Labor Day", + "1965-05-27": "Ascension Day", + "1965-05-30": "Mother's Day", + "1965-06-06": "Whit Sunday", + "1965-06-07": "Whit Monday", + "1965-06-20": "Father's Day", + "1965-06-26": "Independence Day", + "1965-08-15": "Assumption Day", + "1965-11-01": "All Saints' Day", + "1965-12-25": "Christmas Day", + "1966-01-01": "New Year's Day", + "1966-03-08": "Women's Day", + "1966-03-29": "Martyrs' Day", + "1966-04-10": "Easter Sunday", + "1966-04-11": "Easter Monday", + "1966-05-01": "Labor Day", + "1966-05-19": "Ascension Day", + "1966-05-29": "Whit Sunday", + "1966-05-30": "Whit Monday", + "1966-06-05": "Mother's Day", + "1966-06-19": "Father's Day", + "1966-06-26": "Independence Day", + "1966-08-15": "Assumption Day", + "1966-11-01": "All Saints' Day", + "1966-12-25": "Christmas Day", + "1967-01-01": "New Year's Day", + "1967-03-08": "Women's Day", + "1967-03-26": "Easter Sunday", + "1967-03-27": "Easter Monday", + "1967-03-29": "Martyrs' Day", + "1967-05-01": "Labor Day", + "1967-05-04": "Ascension Day", + "1967-05-14": "Whit Sunday", + "1967-05-15": "Whit Monday", + "1967-05-28": "Mother's Day", + "1967-06-18": "Father's Day", + "1967-06-26": "Independence Day", + "1967-08-15": "Assumption Day", + "1967-11-01": "All Saints' Day", + "1967-12-25": "Christmas Day", + "1968-01-01": "New Year's Day", + "1968-03-08": "Women's Day", + "1968-03-29": "Martyrs' Day", + "1968-04-14": "Easter Sunday", + "1968-04-15": "Easter Monday", + "1968-05-01": "Labor Day", + "1968-05-23": "Ascension Day", + "1968-05-26": "Mother's Day", + "1968-06-02": "Whit Sunday", + "1968-06-03": "Whit Monday", + "1968-06-16": "Father's Day", + "1968-06-26": "Independence Day", + "1968-08-15": "Assumption Day", + "1968-11-01": "All Saints' Day", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-03-08": "Women's Day", + "1969-03-29": "Martyrs' Day", + "1969-04-06": "Easter Sunday", + "1969-04-07": "Easter Monday", + "1969-05-01": "Labor Day", + "1969-05-15": "Ascension Day", + "1969-05-25": "Whit Sunday", + "1969-05-26": "Whit Monday", + "1969-06-01": "Mother's Day", + "1969-06-15": "Father's Day", + "1969-06-26": "Independence Day", + "1969-08-15": "Assumption Day", + "1969-11-01": "All Saints' Day", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-03-08": "Women's Day", + "1970-03-29": "Easter Sunday; Martyrs' Day", + "1970-03-30": "Easter Monday", + "1970-05-01": "Labor Day", + "1970-05-07": "Ascension Day", + "1970-05-17": "Whit Sunday", + "1970-05-18": "Whit Monday", + "1970-05-31": "Mother's Day", + "1970-06-21": "Father's Day", + "1970-06-26": "Independence Day", + "1970-08-15": "Assumption Day", + "1970-11-01": "All Saints' Day", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-03-08": "Women's Day", + "1971-03-29": "Martyrs' Day", + "1971-04-11": "Easter Sunday", + "1971-04-12": "Easter Monday", + "1971-05-01": "Labor Day", + "1971-05-20": "Ascension Day", + "1971-05-30": "Whit Sunday", + "1971-05-31": "Whit Monday", + "1971-06-06": "Mother's Day", + "1971-06-20": "Father's Day", + "1971-06-26": "Independence Day", + "1971-08-15": "Assumption Day", + "1971-11-01": "All Saints' Day", + "1971-12-25": "Christmas Day", + "1972-01-01": "New Year's Day", + "1972-03-08": "Women's Day", + "1972-03-29": "Martyrs' Day", + "1972-04-02": "Easter Sunday", + "1972-04-03": "Easter Monday", + "1972-05-01": "Labor Day", + "1972-05-11": "Ascension Day", + "1972-05-21": "Whit Sunday", + "1972-05-22": "Whit Monday", + "1972-05-28": "Mother's Day", + "1972-06-18": "Father's Day", + "1972-06-26": "Independence Day", + "1972-08-15": "Assumption Day", + "1972-11-01": "All Saints' Day", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-03-08": "Women's Day", + "1973-03-29": "Martyrs' Day", + "1973-04-22": "Easter Sunday", + "1973-04-23": "Easter Monday", + "1973-05-01": "Labor Day", + "1973-05-27": "Mother's Day", + "1973-05-31": "Ascension Day", + "1973-06-10": "Whit Sunday", + "1973-06-11": "Whit Monday", + "1973-06-17": "Father's Day", + "1973-06-26": "Independence Day", + "1973-08-15": "Assumption Day", + "1973-11-01": "All Saints' Day", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-03-08": "Women's Day", + "1974-03-29": "Martyrs' Day", + "1974-04-14": "Easter Sunday", + "1974-04-15": "Easter Monday", + "1974-05-01": "Labor Day", + "1974-05-23": "Ascension Day", + "1974-05-26": "Mother's Day", + "1974-06-02": "Whit Sunday", + "1974-06-03": "Whit Monday", + "1974-06-16": "Father's Day", + "1974-06-26": "Independence Day", + "1974-08-15": "Assumption Day", + "1974-11-01": "All Saints' Day", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-03-08": "Women's Day", + "1975-03-29": "Martyrs' Day", + "1975-03-30": "Easter Sunday", + "1975-03-31": "Easter Monday", + "1975-05-01": "Labor Day", + "1975-05-08": "Ascension Day", + "1975-05-18": "Whit Sunday", + "1975-05-19": "Whit Monday", + "1975-05-25": "Mother's Day", + "1975-06-15": "Father's Day", + "1975-06-26": "Independence Day", + "1975-08-15": "Assumption Day", + "1975-11-01": "All Saints' Day", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-03-08": "Women's Day", + "1976-03-29": "Martyrs' Day", + "1976-04-18": "Easter Sunday", + "1976-04-19": "Easter Monday", + "1976-05-01": "Labor Day", + "1976-05-27": "Ascension Day", + "1976-05-30": "Mother's Day", + "1976-06-06": "Whit Sunday", + "1976-06-07": "Whit Monday", + "1976-06-20": "Father's Day", + "1976-06-26": "Independence Day", + "1976-08-15": "Assumption Day", + "1976-11-01": "All Saints' Day", + "1976-12-25": "Christmas Day", + "1977-01-01": "New Year's Day", + "1977-03-08": "Women's Day", + "1977-03-29": "Martyrs' Day", + "1977-04-10": "Easter Sunday", + "1977-04-11": "Easter Monday", + "1977-05-01": "Labor Day", + "1977-05-19": "Ascension Day", + "1977-05-29": "Whit Sunday", + "1977-05-30": "Whit Monday", + "1977-06-05": "Mother's Day", + "1977-06-19": "Father's Day", + "1977-06-26": "Independence Day", + "1977-08-15": "Assumption Day", + "1977-11-01": "All Saints' Day", + "1977-12-25": "Christmas Day", + "1978-01-01": "New Year's Day", + "1978-03-08": "Women's Day", + "1978-03-26": "Easter Sunday", + "1978-03-27": "Easter Monday", + "1978-03-29": "Martyrs' Day", + "1978-05-01": "Labor Day", + "1978-05-04": "Ascension Day", + "1978-05-14": "Whit Sunday", + "1978-05-15": "Whit Monday", + "1978-05-28": "Mother's Day", + "1978-06-18": "Father's Day", + "1978-06-26": "Independence Day", + "1978-08-15": "Assumption Day", + "1978-11-01": "All Saints' Day", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-03-08": "Women's Day", + "1979-03-29": "Martyrs' Day", + "1979-04-15": "Easter Sunday", + "1979-04-16": "Easter Monday", + "1979-05-01": "Labor Day", + "1979-05-24": "Ascension Day", + "1979-05-27": "Mother's Day", + "1979-06-03": "Whit Sunday", + "1979-06-04": "Whit Monday", + "1979-06-17": "Father's Day", + "1979-06-26": "Independence Day", + "1979-08-15": "Assumption Day", + "1979-11-01": "All Saints' Day", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-03-08": "Women's Day", + "1980-03-29": "Martyrs' Day", + "1980-04-06": "Easter Sunday", + "1980-04-07": "Easter Monday", + "1980-05-01": "Labor Day", + "1980-05-15": "Ascension Day", + "1980-05-25": "Whit Sunday", + "1980-05-26": "Whit Monday", + "1980-06-01": "Mother's Day", + "1980-06-15": "Father's Day", + "1980-06-26": "Independence Day", + "1980-08-15": "Assumption Day", + "1980-11-01": "All Saints' Day", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-03-08": "Women's Day", + "1981-03-29": "Martyrs' Day", + "1981-04-19": "Easter Sunday", + "1981-04-20": "Easter Monday", + "1981-05-01": "Labor Day", + "1981-05-28": "Ascension Day", + "1981-05-31": "Mother's Day", + "1981-06-07": "Whit Sunday", + "1981-06-08": "Whit Monday", + "1981-06-21": "Father's Day", + "1981-06-26": "Independence Day", + "1981-08-15": "Assumption Day", + "1981-11-01": "All Saints' Day", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-03-08": "Women's Day", + "1982-03-29": "Martyrs' Day", + "1982-04-11": "Easter Sunday", + "1982-04-12": "Easter Monday", + "1982-05-01": "Labor Day", + "1982-05-20": "Ascension Day", + "1982-05-30": "Whit Sunday", + "1982-05-31": "Whit Monday", + "1982-06-06": "Mother's Day", + "1982-06-20": "Father's Day", + "1982-06-26": "Independence Day", + "1982-08-15": "Assumption Day", + "1982-11-01": "All Saints' Day", + "1982-12-25": "Christmas Day", + "1983-01-01": "New Year's Day", + "1983-03-08": "Women's Day", + "1983-03-29": "Martyrs' Day", + "1983-04-03": "Easter Sunday", + "1983-04-04": "Easter Monday", + "1983-05-01": "Labor Day", + "1983-05-12": "Ascension Day", + "1983-05-22": "Whit Sunday", + "1983-05-23": "Whit Monday", + "1983-05-29": "Mother's Day", + "1983-06-19": "Father's Day", + "1983-06-26": "Independence Day", + "1983-08-15": "Assumption Day", + "1983-11-01": "All Saints' Day", + "1983-12-25": "Christmas Day", + "1984-01-01": "New Year's Day", + "1984-03-08": "Women's Day", + "1984-03-29": "Martyrs' Day", + "1984-04-22": "Easter Sunday", + "1984-04-23": "Easter Monday", + "1984-05-01": "Labor Day", + "1984-05-27": "Mother's Day", + "1984-05-31": "Ascension Day", + "1984-06-10": "Whit Sunday", + "1984-06-11": "Whit Monday", + "1984-06-17": "Father's Day", + "1984-06-26": "Independence Day", + "1984-08-15": "Assumption Day", + "1984-11-01": "All Saints' Day", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-03-08": "Women's Day", + "1985-03-29": "Martyrs' Day", + "1985-04-07": "Easter Sunday", + "1985-04-08": "Easter Monday", + "1985-05-01": "Labor Day", + "1985-05-16": "Ascension Day", + "1985-05-26": "Whit Sunday", + "1985-05-27": "Whit Monday", + "1985-06-02": "Mother's Day", + "1985-06-16": "Father's Day", + "1985-06-26": "Independence Day", + "1985-08-15": "Assumption Day", + "1985-11-01": "All Saints' Day", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-03-08": "Women's Day", + "1986-03-29": "Martyrs' Day", + "1986-03-30": "Easter Sunday", + "1986-03-31": "Easter Monday", + "1986-05-01": "Labor Day", + "1986-05-08": "Ascension Day", + "1986-05-18": "Whit Sunday", + "1986-05-19": "Whit Monday", + "1986-05-25": "Mother's Day", + "1986-06-15": "Father's Day", + "1986-06-26": "Independence Day", + "1986-08-15": "Assumption Day", + "1986-11-01": "All Saints' Day", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-03-08": "Women's Day", + "1987-03-29": "Martyrs' Day", + "1987-04-19": "Easter Sunday", + "1987-04-20": "Easter Monday", + "1987-05-01": "Labor Day", + "1987-05-28": "Ascension Day", + "1987-05-31": "Mother's Day", + "1987-06-07": "Whit Sunday", + "1987-06-08": "Whit Monday", + "1987-06-21": "Father's Day", + "1987-06-26": "Independence Day", + "1987-08-15": "Assumption Day", + "1987-11-01": "All Saints' Day", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-03-08": "Women's Day", + "1988-03-29": "Martyrs' Day", + "1988-04-03": "Easter Sunday", + "1988-04-04": "Easter Monday", + "1988-05-01": "Labor Day", + "1988-05-12": "Ascension Day", + "1988-05-22": "Whit Sunday", + "1988-05-23": "Whit Monday", + "1988-05-29": "Mother's Day", + "1988-06-19": "Father's Day", + "1988-06-26": "Independence Day", + "1988-08-15": "Assumption Day", + "1988-11-01": "All Saints' Day", + "1988-12-25": "Christmas Day", + "1989-01-01": "New Year's Day", + "1989-03-08": "Women's Day", + "1989-03-26": "Easter Sunday", + "1989-03-27": "Easter Monday", + "1989-03-29": "Martyrs' Day", + "1989-05-01": "Labor Day", + "1989-05-04": "Ascension Day", + "1989-05-14": "Whit Sunday", + "1989-05-15": "Whit Monday", + "1989-05-28": "Mother's Day", + "1989-06-18": "Father's Day", + "1989-06-26": "Independence Day", + "1989-08-15": "Assumption Day", + "1989-11-01": "All Saints' Day", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-03-08": "Women's Day", + "1990-03-29": "Martyrs' Day", + "1990-04-15": "Easter Sunday", + "1990-04-16": "Easter Monday", + "1990-05-01": "Labor Day", + "1990-05-24": "Ascension Day", + "1990-05-27": "Mother's Day", + "1990-06-03": "Whit Sunday", + "1990-06-04": "Whit Monday", + "1990-06-17": "Father's Day", + "1990-06-26": "Independence Day", + "1990-08-15": "Assumption Day", + "1990-11-01": "All Saints' Day", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-03-08": "Women's Day", + "1991-03-29": "Martyrs' Day", + "1991-03-31": "Easter Sunday", + "1991-04-01": "Easter Monday", + "1991-05-01": "Labor Day", + "1991-05-09": "Ascension Day", + "1991-05-19": "Whit Sunday", + "1991-05-20": "Whit Monday", + "1991-05-26": "Mother's Day", + "1991-06-16": "Father's Day", + "1991-06-26": "Independence Day", + "1991-08-15": "Assumption Day", + "1991-11-01": "All Saints' Day", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-03-08": "Women's Day", + "1992-03-29": "Martyrs' Day", + "1992-04-19": "Easter Sunday", + "1992-04-20": "Easter Monday", + "1992-05-01": "Labor Day", + "1992-05-28": "Ascension Day", + "1992-05-31": "Mother's Day", + "1992-06-07": "Whit Sunday", + "1992-06-08": "Whit Monday", + "1992-06-21": "Father's Day", + "1992-06-26": "Independence Day", + "1992-08-15": "Assumption Day", + "1992-11-01": "All Saints' Day", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-03-08": "Women's Day", + "1993-03-29": "Martyrs' Day", + "1993-04-11": "Easter Sunday", + "1993-04-12": "Easter Monday", + "1993-05-01": "Labor Day", + "1993-05-20": "Ascension Day", + "1993-05-30": "Whit Sunday", + "1993-05-31": "Whit Monday", + "1993-06-06": "Mother's Day", + "1993-06-20": "Father's Day", + "1993-06-26": "Independence Day", + "1993-08-15": "Assumption Day", + "1993-11-01": "All Saints' Day", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-03-08": "Women's Day", + "1994-03-29": "Martyrs' Day", + "1994-04-03": "Easter Sunday", + "1994-04-04": "Easter Monday", + "1994-05-01": "Labor Day", + "1994-05-12": "Ascension Day", + "1994-05-22": "Whit Sunday", + "1994-05-23": "Whit Monday", + "1994-05-29": "Mother's Day", + "1994-06-19": "Father's Day", + "1994-06-26": "Independence Day", + "1994-08-15": "Assumption Day", + "1994-11-01": "All Saints' Day", + "1994-12-25": "Christmas Day", + "1995-01-01": "New Year's Day", + "1995-03-08": "Women's Day", + "1995-03-29": "Martyrs' Day", + "1995-04-16": "Easter Sunday", + "1995-04-17": "Easter Monday", + "1995-05-01": "Labor Day", + "1995-05-25": "Ascension Day", + "1995-05-28": "Mother's Day", + "1995-06-04": "Whit Sunday", + "1995-06-05": "Whit Monday", + "1995-06-18": "Father's Day", + "1995-06-26": "Independence Day", + "1995-08-15": "Assumption Day", + "1995-11-01": "All Saints' Day", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-03-08": "Women's Day", + "1996-03-29": "Martyrs' Day", + "1996-04-07": "Easter Sunday", + "1996-04-08": "Easter Monday", + "1996-05-01": "Labor Day", + "1996-05-16": "Ascension Day", + "1996-05-26": "Whit Sunday", + "1996-05-27": "Whit Monday", + "1996-06-02": "Mother's Day", + "1996-06-16": "Father's Day", + "1996-06-26": "Independence Day", + "1996-08-15": "Assumption Day", + "1996-11-01": "All Saints' Day", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-03-08": "Women's Day", + "1997-03-29": "Martyrs' Day", + "1997-03-30": "Easter Sunday", + "1997-03-31": "Easter Monday", + "1997-05-01": "Labor Day", + "1997-05-08": "Ascension Day", + "1997-05-18": "Whit Sunday", + "1997-05-19": "Whit Monday", + "1997-05-25": "Mother's Day", + "1997-06-15": "Father's Day", + "1997-06-26": "Independence Day", + "1997-08-15": "Assumption Day", + "1997-11-01": "All Saints' Day", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-03-08": "Women's Day", + "1998-03-29": "Martyrs' Day", + "1998-04-12": "Easter Sunday", + "1998-04-13": "Easter Monday", + "1998-05-01": "Labor Day", + "1998-05-21": "Ascension Day", + "1998-05-31": "Whit Sunday", + "1998-06-01": "Whit Monday", + "1998-06-07": "Mother's Day", + "1998-06-21": "Father's Day", + "1998-06-26": "Independence Day", + "1998-08-15": "Assumption Day", + "1998-11-01": "All Saints' Day", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-03-08": "Women's Day", + "1999-03-29": "Martyrs' Day", + "1999-04-04": "Easter Sunday", + "1999-04-05": "Easter Monday", + "1999-05-01": "Labor Day", + "1999-05-13": "Ascension Day", + "1999-05-23": "Whit Sunday", + "1999-05-24": "Whit Monday", + "1999-05-30": "Mother's Day", + "1999-06-20": "Father's Day", + "1999-06-26": "Independence Day", + "1999-08-15": "Assumption Day", + "1999-11-01": "All Saints' Day", + "1999-12-25": "Christmas Day", + "2000-01-01": "New Year's Day", + "2000-03-08": "Women's Day", + "2000-03-29": "Martyrs' Day", + "2000-04-23": "Easter Sunday", + "2000-04-24": "Easter Monday", + "2000-05-01": "Labor Day", + "2000-05-28": "Mother's Day", + "2000-06-01": "Ascension Day", + "2000-06-11": "Whit Sunday", + "2000-06-12": "Whit Monday", + "2000-06-18": "Father's Day", + "2000-06-26": "Independence Day", + "2000-08-15": "Assumption Day", + "2000-11-01": "All Saints' Day", + "2000-12-25": "Christmas Day", + "2001-01-01": "New Year's Day", + "2001-03-08": "Women's Day", + "2001-03-29": "Martyrs' Day", + "2001-04-15": "Easter Sunday", + "2001-04-16": "Easter Monday", + "2001-05-01": "Labor Day", + "2001-05-24": "Ascension Day", + "2001-05-27": "Mother's Day", + "2001-06-03": "Whit Sunday", + "2001-06-04": "Whit Monday", + "2001-06-17": "Father's Day", + "2001-06-26": "Independence Day", + "2001-08-15": "Assumption Day", + "2001-11-01": "All Saints' Day", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-03-08": "Women's Day", + "2002-03-29": "Martyrs' Day", + "2002-03-31": "Easter Sunday", + "2002-04-01": "Easter Monday", + "2002-05-01": "Labor Day", + "2002-05-09": "Ascension Day", + "2002-05-19": "Whit Sunday", + "2002-05-20": "Whit Monday", + "2002-05-26": "Mother's Day", + "2002-06-16": "Father's Day", + "2002-06-26": "Independence Day", + "2002-08-15": "Assumption Day", + "2002-11-01": "All Saints' Day", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-03-08": "Women's Day", + "2003-03-29": "Martyrs' Day", + "2003-04-20": "Easter Sunday", + "2003-04-21": "Easter Monday", + "2003-05-01": "Labor Day", + "2003-05-25": "Mother's Day", + "2003-05-29": "Ascension Day", + "2003-06-08": "Whit Sunday", + "2003-06-09": "Whit Monday", + "2003-06-15": "Father's Day", + "2003-06-26": "Independence Day", + "2003-08-15": "Assumption Day", + "2003-11-01": "All Saints' Day", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-03-08": "Women's Day", + "2004-03-29": "Martyrs' Day", + "2004-04-11": "Easter Sunday", + "2004-04-12": "Easter Monday", + "2004-05-01": "Labor Day", + "2004-05-20": "Ascension Day", + "2004-05-30": "Whit Sunday", + "2004-05-31": "Whit Monday", + "2004-06-06": "Mother's Day", + "2004-06-20": "Father's Day", + "2004-06-26": "Independence Day", + "2004-08-15": "Assumption Day", + "2004-11-01": "All Saints' Day", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-03-08": "Women's Day", + "2005-03-27": "Easter Sunday", + "2005-03-28": "Easter Monday", + "2005-03-29": "Martyrs' Day", + "2005-05-01": "Labor Day", + "2005-05-05": "Ascension Day", + "2005-05-15": "Whit Sunday", + "2005-05-16": "Whit Monday", + "2005-05-29": "Mother's Day", + "2005-06-19": "Father's Day", + "2005-06-26": "Independence Day", + "2005-08-15": "Assumption Day", + "2005-11-01": "All Saints' Day", + "2005-12-25": "Christmas Day", + "2006-01-01": "New Year's Day", + "2006-03-08": "Women's Day", + "2006-03-29": "Martyrs' Day", + "2006-04-16": "Easter Sunday", + "2006-04-17": "Easter Monday", + "2006-05-01": "Labor Day", + "2006-05-25": "Ascension Day", + "2006-05-28": "Mother's Day", + "2006-06-04": "Whit Sunday", + "2006-06-05": "Whit Monday", + "2006-06-18": "Father's Day", + "2006-06-26": "Independence Day", + "2006-08-15": "Assumption Day", + "2006-11-01": "All Saints' Day", + "2006-12-25": "Christmas Day", + "2007-01-01": "New Year's Day", + "2007-03-08": "Women's Day", + "2007-03-29": "Martyrs' Day", + "2007-04-08": "Easter Sunday", + "2007-04-09": "Easter Monday", + "2007-05-01": "Labor Day", + "2007-05-17": "Ascension Day", + "2007-05-27": "Whit Sunday", + "2007-05-28": "Whit Monday", + "2007-06-03": "Mother's Day", + "2007-06-17": "Father's Day", + "2007-06-26": "Independence Day", + "2007-08-15": "Assumption Day", + "2007-11-01": "All Saints' Day", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-03-08": "Women's Day", + "2008-03-23": "Easter Sunday", + "2008-03-24": "Easter Monday", + "2008-03-29": "Martyrs' Day", + "2008-05-01": "Ascension Day; Labor Day", + "2008-05-11": "Whit Sunday", + "2008-05-12": "Whit Monday", + "2008-05-25": "Mother's Day", + "2008-06-15": "Father's Day", + "2008-06-26": "Independence Day", + "2008-08-15": "Assumption Day", + "2008-11-01": "All Saints' Day", + "2008-12-25": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-03-08": "Women's Day", + "2009-03-29": "Martyrs' Day", + "2009-04-12": "Easter Sunday", + "2009-04-13": "Easter Monday", + "2009-05-01": "Labor Day", + "2009-05-21": "Ascension Day", + "2009-05-31": "Whit Sunday", + "2009-06-01": "Whit Monday", + "2009-06-07": "Mother's Day", + "2009-06-21": "Father's Day", + "2009-06-26": "Independence Day", + "2009-08-15": "Assumption Day", + "2009-11-01": "All Saints' Day", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-03-08": "Women's Day", + "2010-03-29": "Martyrs' Day", + "2010-04-04": "Easter Sunday", + "2010-04-05": "Easter Monday", + "2010-05-01": "Labor Day", + "2010-05-13": "Ascension Day", + "2010-05-23": "Whit Sunday", + "2010-05-24": "Whit Monday", + "2010-05-30": "Mother's Day", + "2010-06-20": "Father's Day", + "2010-06-26": "Independence Day", + "2010-08-15": "Assumption Day", + "2010-11-01": "All Saints' Day", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-03-08": "Women's Day", + "2011-03-29": "Martyrs' Day", + "2011-04-24": "Easter Sunday", + "2011-04-25": "Easter Monday", + "2011-05-01": "Labor Day", + "2011-05-29": "Mother's Day", + "2011-06-02": "Ascension Day", + "2011-06-12": "Whit Sunday", + "2011-06-13": "Whit Monday", + "2011-06-19": "Father's Day", + "2011-06-26": "Independence Day", + "2011-08-15": "Assumption Day", + "2011-11-01": "All Saints' Day", + "2011-12-11": "Republic Day", + "2011-12-25": "Christmas Day", + "2012-01-01": "New Year's Day", + "2012-03-08": "Women's Day", + "2012-03-29": "Martyrs' Day", + "2012-04-08": "Easter Sunday", + "2012-04-09": "Easter Monday", + "2012-05-01": "Labor Day", + "2012-05-17": "Ascension Day", + "2012-05-27": "Whit Sunday", + "2012-05-28": "Whit Monday", + "2012-06-03": "Mother's Day", + "2012-06-17": "Father's Day", + "2012-06-26": "Independence Day", + "2012-08-15": "Assumption Day", + "2012-11-01": "All Saints' Day", + "2012-12-11": "Republic Day", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-03-08": "Women's Day", + "2013-03-29": "Martyrs' Day", + "2013-03-31": "Easter Sunday", + "2013-04-01": "Easter Monday", + "2013-05-01": "Labor Day", + "2013-05-09": "Ascension Day", + "2013-05-19": "Whit Sunday", + "2013-05-20": "Whit Monday", + "2013-05-26": "Mother's Day", + "2013-06-16": "Father's Day", + "2013-06-26": "Independence Day", + "2013-08-15": "Assumption Day", + "2013-11-01": "All Saints' Day", + "2013-12-11": "Republic Day", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-03-08": "Women's Day", + "2014-03-29": "Martyrs' Day", + "2014-04-20": "Easter Sunday", + "2014-04-21": "Easter Monday", + "2014-05-01": "Labor Day", + "2014-05-25": "Mother's Day", + "2014-05-29": "Ascension Day", + "2014-06-08": "Whit Sunday", + "2014-06-09": "Whit Monday", + "2014-06-15": "Father's Day", + "2014-06-26": "Independence Day", + "2014-08-15": "Assumption Day", + "2014-11-01": "All Saints' Day", + "2014-12-11": "Republic Day", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-03-08": "Women's Day", + "2015-03-29": "Martyrs' Day", + "2015-04-05": "Easter Sunday", + "2015-04-06": "Easter Monday", + "2015-05-01": "Labor Day", + "2015-05-14": "Ascension Day", + "2015-05-24": "Whit Sunday", + "2015-05-25": "Whit Monday", + "2015-05-31": "Mother's Day", + "2015-06-21": "Father's Day", + "2015-06-26": "Independence Day", + "2015-08-15": "Assumption Day", + "2015-11-01": "All Saints' Day", + "2015-12-11": "Republic Day", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-03-08": "Women's Day", + "2016-03-27": "Easter Sunday", + "2016-03-28": "Easter Monday", + "2016-03-29": "Martyrs' Day", + "2016-05-01": "Labor Day", + "2016-05-05": "Ascension Day", + "2016-05-15": "Whit Sunday", + "2016-05-16": "Whit Monday", + "2016-05-29": "Mother's Day", + "2016-06-19": "Father's Day", + "2016-06-26": "Independence Day", + "2016-08-15": "Assumption Day", + "2016-11-01": "All Saints' Day", + "2016-12-11": "Republic Day", + "2016-12-25": "Christmas Day", + "2017-01-01": "New Year's Day", + "2017-03-08": "Women's Day", + "2017-03-29": "Martyrs' Day", + "2017-04-16": "Easter Sunday", + "2017-04-17": "Easter Monday", + "2017-05-01": "Labor Day", + "2017-05-25": "Ascension Day", + "2017-05-28": "Mother's Day", + "2017-06-04": "Whit Sunday", + "2017-06-05": "Whit Monday", + "2017-06-18": "Father's Day", + "2017-06-26": "Independence Day", + "2017-08-15": "Assumption Day", + "2017-11-01": "All Saints' Day", + "2017-12-11": "Republic Day", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-03-08": "Women's Day", + "2018-03-29": "Martyrs' Day", + "2018-04-01": "Easter Sunday", + "2018-04-02": "Easter Monday", + "2018-05-01": "Labor Day", + "2018-05-10": "Ascension Day", + "2018-05-20": "Whit Sunday", + "2018-05-21": "Whit Monday", + "2018-05-27": "Mother's Day", + "2018-06-17": "Father's Day", + "2018-06-26": "Independence Day", + "2018-08-15": "Assumption Day", + "2018-11-01": "All Saints' Day", + "2018-12-11": "Republic Day", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-03-08": "Women's Day", + "2019-03-29": "Martyrs' Day", + "2019-04-21": "Easter Sunday", + "2019-04-22": "Easter Monday", + "2019-05-01": "Labor Day", + "2019-05-26": "Mother's Day", + "2019-05-30": "Ascension Day", + "2019-06-09": "Whit Sunday", + "2019-06-10": "Whit Monday", + "2019-06-16": "Father's Day", + "2019-06-26": "Independence Day", + "2019-08-15": "Assumption Day", + "2019-11-01": "All Saints' Day", + "2019-12-11": "Republic Day", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-03-08": "Women's Day", + "2020-03-29": "Martyrs' Day", + "2020-04-12": "Easter Sunday", + "2020-04-13": "Easter Monday", + "2020-05-01": "Labor Day", + "2020-05-21": "Ascension Day", + "2020-05-31": "Whit Sunday", + "2020-06-01": "Whit Monday", + "2020-06-07": "Mother's Day", + "2020-06-21": "Father's Day", + "2020-06-26": "Independence Day", + "2020-08-15": "Assumption Day", + "2020-11-01": "All Saints' Day", + "2020-12-11": "Republic Day", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-03-08": "Women's Day", + "2021-03-29": "Martyrs' Day", + "2021-04-04": "Easter Sunday", + "2021-04-05": "Easter Monday", + "2021-05-01": "Labor Day", + "2021-05-13": "Ascension Day", + "2021-05-23": "Whit Sunday", + "2021-05-24": "Whit Monday", + "2021-05-30": "Mother's Day", + "2021-06-20": "Father's Day", + "2021-06-26": "Independence Day", + "2021-08-15": "Assumption Day", + "2021-11-01": "All Saints' Day", + "2021-12-11": "Republic Day", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-03-08": "Women's Day", + "2022-03-29": "Martyrs' Day", + "2022-04-17": "Easter Sunday", + "2022-04-18": "Easter Monday", + "2022-05-01": "Labor Day", + "2022-05-26": "Ascension Day", + "2022-05-29": "Mother's Day", + "2022-06-05": "Whit Sunday", + "2022-06-06": "Whit Monday", + "2022-06-19": "Father's Day", + "2022-06-26": "Independence Day", + "2022-08-15": "Assumption Day", + "2022-11-01": "All Saints' Day", + "2022-12-11": "Republic Day", + "2022-12-25": "Christmas Day", + "2023-01-01": "New Year's Day", + "2023-03-08": "Women's Day", + "2023-03-29": "Martyrs' Day", + "2023-04-09": "Easter Sunday", + "2023-04-10": "Easter Monday", + "2023-05-01": "Labor Day", + "2023-05-18": "Ascension Day", + "2023-05-28": "Whit Sunday", + "2023-05-29": "Whit Monday", + "2023-06-04": "Mother's Day", + "2023-06-18": "Father's Day", + "2023-06-26": "Independence Day", + "2023-08-15": "Assumption Day", + "2023-11-01": "All Saints' Day", + "2023-12-11": "Republic Day", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-03-08": "Women's Day", + "2024-03-29": "Martyrs' Day", + "2024-03-31": "Easter Sunday", + "2024-04-01": "Easter Monday", + "2024-05-01": "Labor Day", + "2024-05-09": "Ascension Day", + "2024-05-19": "Whit Sunday", + "2024-05-20": "Whit Monday", + "2024-05-26": "Mother's Day", + "2024-06-16": "Father's Day", + "2024-06-26": "Independence Day", + "2024-08-15": "Assumption Day", + "2024-11-01": "All Saints' Day", + "2024-12-11": "Republic Day", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-03-08": "Women's Day", + "2025-03-29": "Martyrs' Day", + "2025-04-20": "Easter Sunday", + "2025-04-21": "Easter Monday", + "2025-05-01": "Labor Day", + "2025-05-25": "Mother's Day", + "2025-05-29": "Ascension Day", + "2025-06-08": "Whit Sunday", + "2025-06-09": "Whit Monday", + "2025-06-15": "Father's Day", + "2025-06-26": "Independence Day", + "2025-08-15": "Assumption Day", + "2025-11-01": "All Saints' Day", + "2025-12-11": "Republic Day", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-03-08": "Women's Day", + "2026-03-29": "Martyrs' Day", + "2026-04-05": "Easter Sunday", + "2026-04-06": "Easter Monday", + "2026-05-01": "Labor Day", + "2026-05-14": "Ascension Day", + "2026-05-24": "Whit Sunday", + "2026-05-25": "Whit Monday", + "2026-05-31": "Mother's Day", + "2026-06-21": "Father's Day", + "2026-06-26": "Independence Day", + "2026-08-15": "Assumption Day", + "2026-11-01": "All Saints' Day", + "2026-12-11": "Republic Day", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-03-08": "Women's Day", + "2027-03-28": "Easter Sunday", + "2027-03-29": "Easter Monday; Martyrs' Day", + "2027-05-01": "Labor Day", + "2027-05-06": "Ascension Day", + "2027-05-16": "Whit Sunday", + "2027-05-17": "Whit Monday", + "2027-05-30": "Mother's Day", + "2027-06-20": "Father's Day", + "2027-06-26": "Independence Day", + "2027-08-15": "Assumption Day", + "2027-11-01": "All Saints' Day", + "2027-12-11": "Republic Day", + "2027-12-25": "Christmas Day", + "2028-01-01": "New Year's Day", + "2028-03-08": "Women's Day", + "2028-03-29": "Martyrs' Day", + "2028-04-16": "Easter Sunday", + "2028-04-17": "Easter Monday", + "2028-05-01": "Labor Day", + "2028-05-25": "Ascension Day", + "2028-05-28": "Mother's Day", + "2028-06-04": "Whit Sunday", + "2028-06-05": "Whit Monday", + "2028-06-18": "Father's Day", + "2028-06-26": "Independence Day", + "2028-08-15": "Assumption Day", + "2028-11-01": "All Saints' Day", + "2028-12-11": "Republic Day", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-03-08": "Women's Day", + "2029-03-29": "Martyrs' Day", + "2029-04-01": "Easter Sunday", + "2029-04-02": "Easter Monday", + "2029-05-01": "Labor Day", + "2029-05-10": "Ascension Day", + "2029-05-20": "Whit Sunday", + "2029-05-21": "Whit Monday", + "2029-05-27": "Mother's Day", + "2029-06-17": "Father's Day", + "2029-06-26": "Independence Day", + "2029-08-15": "Assumption Day", + "2029-11-01": "All Saints' Day", + "2029-12-11": "Republic Day", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-03-08": "Women's Day", + "2030-03-29": "Martyrs' Day", + "2030-04-21": "Easter Sunday", + "2030-04-22": "Easter Monday", + "2030-05-01": "Labor Day", + "2030-05-26": "Mother's Day", + "2030-05-30": "Ascension Day", + "2030-06-09": "Whit Sunday", + "2030-06-10": "Whit Monday", + "2030-06-16": "Father's Day", + "2030-06-26": "Independence Day", + "2030-08-15": "Assumption Day", + "2030-11-01": "All Saints' Day", + "2030-12-11": "Republic Day", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-03-08": "Women's Day", + "2031-03-29": "Martyrs' Day", + "2031-04-13": "Easter Sunday", + "2031-04-14": "Easter Monday", + "2031-05-01": "Labor Day", + "2031-05-22": "Ascension Day", + "2031-05-25": "Mother's Day", + "2031-06-01": "Whit Sunday", + "2031-06-02": "Whit Monday", + "2031-06-15": "Father's Day", + "2031-06-26": "Independence Day", + "2031-08-15": "Assumption Day", + "2031-11-01": "All Saints' Day", + "2031-12-11": "Republic Day", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-03-08": "Women's Day", + "2032-03-28": "Easter Sunday", + "2032-03-29": "Easter Monday; Martyrs' Day", + "2032-05-01": "Labor Day", + "2032-05-06": "Ascension Day", + "2032-05-16": "Whit Sunday", + "2032-05-17": "Whit Monday", + "2032-05-30": "Mother's Day", + "2032-06-20": "Father's Day", + "2032-06-26": "Independence Day", + "2032-08-15": "Assumption Day", + "2032-11-01": "All Saints' Day", + "2032-12-11": "Republic Day", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-03-08": "Women's Day", + "2033-03-29": "Martyrs' Day", + "2033-04-17": "Easter Sunday", + "2033-04-18": "Easter Monday", + "2033-05-01": "Labor Day", + "2033-05-26": "Ascension Day", + "2033-05-29": "Mother's Day", + "2033-06-05": "Whit Sunday", + "2033-06-06": "Whit Monday", + "2033-06-19": "Father's Day", + "2033-06-26": "Independence Day", + "2033-08-15": "Assumption Day", + "2033-11-01": "All Saints' Day", + "2033-12-11": "Republic Day", + "2033-12-25": "Christmas Day", + "2034-01-01": "New Year's Day", + "2034-03-08": "Women's Day", + "2034-03-29": "Martyrs' Day", + "2034-04-09": "Easter Sunday", + "2034-04-10": "Easter Monday", + "2034-05-01": "Labor Day", + "2034-05-18": "Ascension Day", + "2034-05-28": "Whit Sunday", + "2034-05-29": "Whit Monday", + "2034-06-04": "Mother's Day", + "2034-06-18": "Father's Day", + "2034-06-26": "Independence Day", + "2034-08-15": "Assumption Day", + "2034-11-01": "All Saints' Day", + "2034-12-11": "Republic Day", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-03-08": "Women's Day", + "2035-03-25": "Easter Sunday", + "2035-03-26": "Easter Monday", + "2035-03-29": "Martyrs' Day", + "2035-05-01": "Labor Day", + "2035-05-03": "Ascension Day", + "2035-05-13": "Whit Sunday", + "2035-05-14": "Whit Monday", + "2035-05-27": "Mother's Day", + "2035-06-17": "Father's Day", + "2035-06-26": "Independence Day", + "2035-08-15": "Assumption Day", + "2035-11-01": "All Saints' Day", + "2035-12-11": "Republic Day", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-03-08": "Women's Day", + "2036-03-29": "Martyrs' Day", + "2036-04-13": "Easter Sunday", + "2036-04-14": "Easter Monday", + "2036-05-01": "Labor Day", + "2036-05-22": "Ascension Day", + "2036-05-25": "Mother's Day", + "2036-06-01": "Whit Sunday", + "2036-06-02": "Whit Monday", + "2036-06-15": "Father's Day", + "2036-06-26": "Independence Day", + "2036-08-15": "Assumption Day", + "2036-11-01": "All Saints' Day", + "2036-12-11": "Republic Day", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-03-08": "Women's Day", + "2037-03-29": "Martyrs' Day", + "2037-04-05": "Easter Sunday", + "2037-04-06": "Easter Monday", + "2037-05-01": "Labor Day", + "2037-05-14": "Ascension Day", + "2037-05-24": "Whit Sunday", + "2037-05-25": "Whit Monday", + "2037-05-31": "Mother's Day", + "2037-06-21": "Father's Day", + "2037-06-26": "Independence Day", + "2037-08-15": "Assumption Day", + "2037-11-01": "All Saints' Day", + "2037-12-11": "Republic Day", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-03-08": "Women's Day", + "2038-03-29": "Martyrs' Day", + "2038-04-25": "Easter Sunday", + "2038-04-26": "Easter Monday", + "2038-05-01": "Labor Day", + "2038-05-30": "Mother's Day", + "2038-06-03": "Ascension Day", + "2038-06-13": "Whit Sunday", + "2038-06-14": "Whit Monday", + "2038-06-20": "Father's Day", + "2038-06-26": "Independence Day", + "2038-08-15": "Assumption Day", + "2038-11-01": "All Saints' Day", + "2038-12-11": "Republic Day", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-03-08": "Women's Day", + "2039-03-29": "Martyrs' Day", + "2039-04-10": "Easter Sunday", + "2039-04-11": "Easter Monday", + "2039-05-01": "Labor Day", + "2039-05-19": "Ascension Day", + "2039-05-29": "Whit Sunday", + "2039-05-30": "Whit Monday", + "2039-06-05": "Mother's Day", + "2039-06-19": "Father's Day", + "2039-06-26": "Independence Day", + "2039-08-15": "Assumption Day", + "2039-11-01": "All Saints' Day", + "2039-12-11": "Republic Day", + "2039-12-25": "Christmas Day", + "2040-01-01": "New Year's Day", + "2040-03-08": "Women's Day", + "2040-03-29": "Martyrs' Day", + "2040-04-01": "Easter Sunday", + "2040-04-02": "Easter Monday", + "2040-05-01": "Labor Day", + "2040-05-10": "Ascension Day", + "2040-05-20": "Whit Sunday", + "2040-05-21": "Whit Monday", + "2040-05-27": "Mother's Day", + "2040-06-17": "Father's Day", + "2040-06-26": "Independence Day", + "2040-08-15": "Assumption Day", + "2040-11-01": "All Saints' Day", + "2040-12-11": "Republic Day", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-03-08": "Women's Day", + "2041-03-29": "Martyrs' Day", + "2041-04-21": "Easter Sunday", + "2041-04-22": "Easter Monday", + "2041-05-01": "Labor Day", + "2041-05-26": "Mother's Day", + "2041-05-30": "Ascension Day", + "2041-06-09": "Whit Sunday", + "2041-06-10": "Whit Monday", + "2041-06-16": "Father's Day", + "2041-06-26": "Independence Day", + "2041-08-15": "Assumption Day", + "2041-11-01": "All Saints' Day", + "2041-12-11": "Republic Day", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-03-08": "Women's Day", + "2042-03-29": "Martyrs' Day", + "2042-04-06": "Easter Sunday", + "2042-04-07": "Easter Monday", + "2042-05-01": "Labor Day", + "2042-05-15": "Ascension Day", + "2042-05-25": "Whit Sunday", + "2042-05-26": "Whit Monday", + "2042-06-01": "Mother's Day", + "2042-06-15": "Father's Day", + "2042-06-26": "Independence Day", + "2042-08-15": "Assumption Day", + "2042-11-01": "All Saints' Day", + "2042-12-11": "Republic Day", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-03-08": "Women's Day", + "2043-03-29": "Easter Sunday; Martyrs' Day", + "2043-03-30": "Easter Monday", + "2043-05-01": "Labor Day", + "2043-05-07": "Ascension Day", + "2043-05-17": "Whit Sunday", + "2043-05-18": "Whit Monday", + "2043-05-31": "Mother's Day", + "2043-06-21": "Father's Day", + "2043-06-26": "Independence Day", + "2043-08-15": "Assumption Day", + "2043-11-01": "All Saints' Day", + "2043-12-11": "Republic Day", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-03-08": "Women's Day", + "2044-03-29": "Martyrs' Day", + "2044-04-17": "Easter Sunday", + "2044-04-18": "Easter Monday", + "2044-05-01": "Labor Day", + "2044-05-26": "Ascension Day", + "2044-05-29": "Mother's Day", + "2044-06-05": "Whit Sunday", + "2044-06-06": "Whit Monday", + "2044-06-19": "Father's Day", + "2044-06-26": "Independence Day", + "2044-08-15": "Assumption Day", + "2044-11-01": "All Saints' Day", + "2044-12-11": "Republic Day", + "2044-12-25": "Christmas Day", + "2045-01-01": "New Year's Day", + "2045-03-08": "Women's Day", + "2045-03-29": "Martyrs' Day", + "2045-04-09": "Easter Sunday", + "2045-04-10": "Easter Monday", + "2045-05-01": "Labor Day", + "2045-05-18": "Ascension Day", + "2045-05-28": "Whit Sunday", + "2045-05-29": "Whit Monday", + "2045-06-04": "Mother's Day", + "2045-06-18": "Father's Day", + "2045-06-26": "Independence Day", + "2045-08-15": "Assumption Day", + "2045-11-01": "All Saints' Day", + "2045-12-11": "Republic Day", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-03-08": "Women's Day", + "2046-03-25": "Easter Sunday", + "2046-03-26": "Easter Monday", + "2046-03-29": "Martyrs' Day", + "2046-05-01": "Labor Day", + "2046-05-03": "Ascension Day", + "2046-05-13": "Whit Sunday", + "2046-05-14": "Whit Monday", + "2046-05-27": "Mother's Day", + "2046-06-17": "Father's Day", + "2046-06-26": "Independence Day", + "2046-08-15": "Assumption Day", + "2046-11-01": "All Saints' Day", + "2046-12-11": "Republic Day", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-03-08": "Women's Day", + "2047-03-29": "Martyrs' Day", + "2047-04-14": "Easter Sunday", + "2047-04-15": "Easter Monday", + "2047-05-01": "Labor Day", + "2047-05-23": "Ascension Day", + "2047-05-26": "Mother's Day", + "2047-06-02": "Whit Sunday", + "2047-06-03": "Whit Monday", + "2047-06-16": "Father's Day", + "2047-06-26": "Independence Day", + "2047-08-15": "Assumption Day", + "2047-11-01": "All Saints' Day", + "2047-12-11": "Republic Day", + "2047-12-25": "Christmas Day", + "2048-01-01": "New Year's Day", + "2048-03-08": "Women's Day", + "2048-03-29": "Martyrs' Day", + "2048-04-05": "Easter Sunday", + "2048-04-06": "Easter Monday", + "2048-05-01": "Labor Day", + "2048-05-14": "Ascension Day", + "2048-05-24": "Whit Sunday", + "2048-05-25": "Whit Monday", + "2048-05-31": "Mother's Day", + "2048-06-21": "Father's Day", + "2048-06-26": "Independence Day", + "2048-08-15": "Assumption Day", + "2048-11-01": "All Saints' Day", + "2048-12-11": "Republic Day", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-03-08": "Women's Day", + "2049-03-29": "Martyrs' Day", + "2049-04-18": "Easter Sunday", + "2049-04-19": "Easter Monday", + "2049-05-01": "Labor Day", + "2049-05-27": "Ascension Day", + "2049-05-30": "Mother's Day", + "2049-06-06": "Whit Sunday", + "2049-06-07": "Whit Monday", + "2049-06-20": "Father's Day", + "2049-06-26": "Independence Day", + "2049-08-15": "Assumption Day", + "2049-11-01": "All Saints' Day", + "2049-12-11": "Republic Day", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-03-08": "Women's Day", + "2050-03-29": "Martyrs' Day", + "2050-04-10": "Easter Sunday", + "2050-04-11": "Easter Monday", + "2050-05-01": "Labor Day", + "2050-05-19": "Ascension Day", + "2050-05-29": "Whit Sunday", + "2050-05-30": "Whit Monday", + "2050-06-05": "Mother's Day", + "2050-06-19": "Father's Day", + "2050-06-26": "Independence Day", + "2050-08-15": "Assumption Day", + "2050-11-01": "All Saints' Day", + "2050-12-11": "Republic Day", + "2050-12-25": "Christmas Day" +} diff --git a/snapshots/countries/MH.json b/snapshots/countries/MH.json new file mode 100644 index 000000000..fcea29b4d --- /dev/null +++ b/snapshots/countries/MH.json @@ -0,0 +1,1092 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-02": "New Year's Day Holiday", + "1950-03-01": "Nuclear Victims Remembrance Day", + "1950-04-07": "Good Friday", + "1950-05-01": "Constitution Day", + "1950-07-07": "Fisherman's Day", + "1950-09-01": "Dri-jerbal Day", + "1950-09-29": "Manit Day", + "1950-11-17": "President's Day", + "1950-12-01": "Gospel Day", + "1950-12-25": "Christmas Day", + "1951-01-01": "New Year's Day", + "1951-03-01": "Nuclear Victims Remembrance Day", + "1951-03-23": "Good Friday", + "1951-05-01": "Constitution Day", + "1951-07-06": "Fisherman's Day", + "1951-09-07": "Dri-jerbal Day", + "1951-09-28": "Manit Day", + "1951-11-17": "President's Day", + "1951-12-07": "Gospel Day", + "1951-12-25": "Christmas Day", + "1952-01-01": "New Year's Day", + "1952-03-01": "Nuclear Victims Remembrance Day", + "1952-04-11": "Good Friday", + "1952-05-01": "Constitution Day", + "1952-07-04": "Fisherman's Day", + "1952-09-05": "Dri-jerbal Day", + "1952-09-26": "Manit Day", + "1952-11-17": "President's Day", + "1952-12-05": "Gospel Day", + "1952-12-25": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-03-01": "Nuclear Victims Remembrance Day", + "1953-03-02": "Nuclear Victims Remembrance Day Holiday", + "1953-04-03": "Good Friday", + "1953-05-01": "Constitution Day", + "1953-07-03": "Fisherman's Day", + "1953-09-04": "Dri-jerbal Day", + "1953-09-25": "Manit Day", + "1953-11-17": "President's Day", + "1953-12-04": "Gospel Day", + "1953-12-25": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-03-01": "Nuclear Victims Remembrance Day", + "1954-04-16": "Good Friday", + "1954-05-01": "Constitution Day", + "1954-07-02": "Fisherman's Day", + "1954-09-03": "Dri-jerbal Day", + "1954-09-24": "Manit Day", + "1954-11-17": "President's Day", + "1954-12-03": "Gospel Day", + "1954-12-25": "Christmas Day", + "1955-01-01": "New Year's Day", + "1955-03-01": "Nuclear Victims Remembrance Day", + "1955-04-08": "Good Friday", + "1955-05-01": "Constitution Day", + "1955-05-02": "Constitution Day Holiday", + "1955-07-01": "Fisherman's Day", + "1955-09-02": "Dri-jerbal Day", + "1955-09-30": "Manit Day", + "1955-11-17": "President's Day", + "1955-12-02": "Gospel Day", + "1955-12-25": "Christmas Day", + "1955-12-26": "Christmas Day Holiday", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year's Day Holiday", + "1956-03-01": "Nuclear Victims Remembrance Day", + "1956-03-30": "Good Friday", + "1956-05-01": "Constitution Day", + "1956-07-06": "Fisherman's Day", + "1956-09-07": "Dri-jerbal Day", + "1956-09-28": "Manit Day", + "1956-11-17": "President's Day", + "1956-12-07": "Gospel Day", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-03-01": "Nuclear Victims Remembrance Day", + "1957-04-19": "Good Friday", + "1957-05-01": "Constitution Day", + "1957-07-05": "Fisherman's Day", + "1957-09-06": "Dri-jerbal Day", + "1957-09-27": "Manit Day", + "1957-11-17": "President's Day", + "1957-11-18": "President's Day Holiday", + "1957-12-06": "Gospel Day", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-03-01": "Nuclear Victims Remembrance Day", + "1958-04-04": "Good Friday", + "1958-05-01": "Constitution Day", + "1958-07-04": "Fisherman's Day", + "1958-09-05": "Dri-jerbal Day", + "1958-09-26": "Manit Day", + "1958-11-17": "President's Day", + "1958-12-05": "Gospel Day", + "1958-12-25": "Christmas Day", + "1959-01-01": "New Year's Day", + "1959-03-01": "Nuclear Victims Remembrance Day", + "1959-03-02": "Nuclear Victims Remembrance Day Holiday", + "1959-03-27": "Good Friday", + "1959-05-01": "Constitution Day", + "1959-07-03": "Fisherman's Day", + "1959-09-04": "Dri-jerbal Day", + "1959-09-25": "Manit Day", + "1959-11-17": "President's Day", + "1959-12-04": "Gospel Day", + "1959-12-25": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-03-01": "Nuclear Victims Remembrance Day", + "1960-04-15": "Good Friday", + "1960-05-01": "Constitution Day", + "1960-05-02": "Constitution Day Holiday", + "1960-07-01": "Fisherman's Day", + "1960-09-02": "Dri-jerbal Day", + "1960-09-30": "Manit Day", + "1960-11-17": "President's Day", + "1960-12-02": "Gospel Day", + "1960-12-25": "Christmas Day", + "1960-12-26": "Christmas Day Holiday", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day Holiday", + "1961-03-01": "Nuclear Victims Remembrance Day", + "1961-03-31": "Good Friday", + "1961-05-01": "Constitution Day", + "1961-07-07": "Fisherman's Day", + "1961-09-01": "Dri-jerbal Day", + "1961-09-29": "Manit Day", + "1961-11-17": "President's Day", + "1961-12-01": "Gospel Day", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-03-01": "Nuclear Victims Remembrance Day", + "1962-04-20": "Good Friday", + "1962-05-01": "Constitution Day", + "1962-07-06": "Fisherman's Day", + "1962-09-07": "Dri-jerbal Day", + "1962-09-28": "Manit Day", + "1962-11-17": "President's Day", + "1962-12-07": "Gospel Day", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-03-01": "Nuclear Victims Remembrance Day", + "1963-04-12": "Good Friday", + "1963-05-01": "Constitution Day", + "1963-07-05": "Fisherman's Day", + "1963-09-06": "Dri-jerbal Day", + "1963-09-27": "Manit Day", + "1963-11-17": "President's Day", + "1963-11-18": "President's Day Holiday", + "1963-12-06": "Gospel Day", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-03-01": "Nuclear Victims Remembrance Day", + "1964-03-02": "Nuclear Victims Remembrance Day Holiday", + "1964-03-27": "Good Friday", + "1964-05-01": "Constitution Day", + "1964-07-03": "Fisherman's Day", + "1964-09-04": "Dri-jerbal Day", + "1964-09-25": "Manit Day", + "1964-11-17": "President's Day", + "1964-12-04": "Gospel Day", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-03-01": "Nuclear Victims Remembrance Day", + "1965-04-16": "Good Friday", + "1965-05-01": "Constitution Day", + "1965-07-02": "Fisherman's Day", + "1965-09-03": "Dri-jerbal Day", + "1965-09-24": "Manit Day", + "1965-11-17": "President's Day", + "1965-12-03": "Gospel Day", + "1965-12-25": "Christmas Day", + "1966-01-01": "New Year's Day", + "1966-03-01": "Nuclear Victims Remembrance Day", + "1966-04-08": "Good Friday", + "1966-05-01": "Constitution Day", + "1966-05-02": "Constitution Day Holiday", + "1966-07-01": "Fisherman's Day", + "1966-09-02": "Dri-jerbal Day", + "1966-09-30": "Manit Day", + "1966-11-17": "President's Day", + "1966-12-02": "Gospel Day", + "1966-12-25": "Christmas Day", + "1966-12-26": "Christmas Day Holiday", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day Holiday", + "1967-03-01": "Nuclear Victims Remembrance Day", + "1967-03-24": "Good Friday", + "1967-05-01": "Constitution Day", + "1967-07-07": "Fisherman's Day", + "1967-09-01": "Dri-jerbal Day", + "1967-09-29": "Manit Day", + "1967-11-17": "President's Day", + "1967-12-01": "Gospel Day", + "1967-12-25": "Christmas Day", + "1968-01-01": "New Year's Day", + "1968-03-01": "Nuclear Victims Remembrance Day", + "1968-04-12": "Good Friday", + "1968-05-01": "Constitution Day", + "1968-07-05": "Fisherman's Day", + "1968-09-06": "Dri-jerbal Day", + "1968-09-27": "Manit Day", + "1968-11-17": "President's Day", + "1968-11-18": "President's Day Holiday", + "1968-12-06": "Gospel Day", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-03-01": "Nuclear Victims Remembrance Day", + "1969-04-04": "Good Friday", + "1969-05-01": "Constitution Day", + "1969-07-04": "Fisherman's Day", + "1969-09-05": "Dri-jerbal Day", + "1969-09-26": "Manit Day", + "1969-11-17": "President's Day", + "1969-12-05": "Gospel Day", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-03-01": "Nuclear Victims Remembrance Day", + "1970-03-02": "Nuclear Victims Remembrance Day Holiday", + "1970-03-27": "Good Friday", + "1970-05-01": "Constitution Day", + "1970-07-03": "Fisherman's Day", + "1970-09-04": "Dri-jerbal Day", + "1970-09-25": "Manit Day", + "1970-11-17": "President's Day", + "1970-12-04": "Gospel Day", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-03-01": "Nuclear Victims Remembrance Day", + "1971-04-09": "Good Friday", + "1971-05-01": "Constitution Day", + "1971-07-02": "Fisherman's Day", + "1971-09-03": "Dri-jerbal Day", + "1971-09-24": "Manit Day", + "1971-11-17": "President's Day", + "1971-12-03": "Gospel Day", + "1971-12-25": "Christmas Day", + "1972-01-01": "New Year's Day", + "1972-03-01": "Nuclear Victims Remembrance Day", + "1972-03-31": "Good Friday", + "1972-05-01": "Constitution Day", + "1972-07-07": "Fisherman's Day", + "1972-09-01": "Dri-jerbal Day", + "1972-09-29": "Manit Day", + "1972-11-17": "President's Day", + "1972-12-01": "Gospel Day", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-03-01": "Nuclear Victims Remembrance Day", + "1973-04-20": "Good Friday", + "1973-05-01": "Constitution Day", + "1973-07-06": "Fisherman's Day", + "1973-09-07": "Dri-jerbal Day", + "1973-09-28": "Manit Day", + "1973-11-17": "President's Day", + "1973-12-07": "Gospel Day", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-03-01": "Nuclear Victims Remembrance Day", + "1974-04-12": "Good Friday", + "1974-05-01": "Constitution Day", + "1974-07-05": "Fisherman's Day", + "1974-09-06": "Dri-jerbal Day", + "1974-09-27": "Manit Day", + "1974-11-17": "President's Day", + "1974-11-18": "President's Day Holiday", + "1974-12-06": "Gospel Day", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-03-01": "Nuclear Victims Remembrance Day", + "1975-03-28": "Good Friday", + "1975-05-01": "Constitution Day", + "1975-07-04": "Fisherman's Day", + "1975-09-05": "Dri-jerbal Day", + "1975-09-26": "Manit Day", + "1975-11-17": "President's Day", + "1975-12-05": "Gospel Day", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-03-01": "Nuclear Victims Remembrance Day", + "1976-04-16": "Good Friday", + "1976-05-01": "Constitution Day", + "1976-07-02": "Fisherman's Day", + "1976-09-03": "Dri-jerbal Day", + "1976-09-24": "Manit Day", + "1976-11-17": "President's Day", + "1976-12-03": "Gospel Day", + "1976-12-25": "Christmas Day", + "1977-01-01": "New Year's Day", + "1977-03-01": "Nuclear Victims Remembrance Day", + "1977-04-08": "Good Friday", + "1977-05-01": "Constitution Day", + "1977-05-02": "Constitution Day Holiday", + "1977-07-01": "Fisherman's Day", + "1977-09-02": "Dri-jerbal Day", + "1977-09-30": "Manit Day", + "1977-11-17": "President's Day", + "1977-12-02": "Gospel Day", + "1977-12-25": "Christmas Day", + "1977-12-26": "Christmas Day Holiday", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day Holiday", + "1978-03-01": "Nuclear Victims Remembrance Day", + "1978-03-24": "Good Friday", + "1978-05-01": "Constitution Day", + "1978-07-07": "Fisherman's Day", + "1978-09-01": "Dri-jerbal Day", + "1978-09-29": "Manit Day", + "1978-11-17": "President's Day", + "1978-12-01": "Gospel Day", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-03-01": "Nuclear Victims Remembrance Day", + "1979-04-13": "Good Friday", + "1979-05-01": "Constitution Day", + "1979-07-06": "Fisherman's Day", + "1979-09-07": "Dri-jerbal Day", + "1979-09-28": "Manit Day", + "1979-11-17": "President's Day", + "1979-12-07": "Gospel Day", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-03-01": "Nuclear Victims Remembrance Day", + "1980-04-04": "Good Friday", + "1980-05-01": "Constitution Day", + "1980-07-04": "Fisherman's Day", + "1980-09-05": "Dri-jerbal Day", + "1980-09-26": "Manit Day", + "1980-11-17": "President's Day", + "1980-12-05": "Gospel Day", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-03-01": "Nuclear Victims Remembrance Day", + "1981-03-02": "Nuclear Victims Remembrance Day Holiday", + "1981-04-17": "Good Friday", + "1981-05-01": "Constitution Day", + "1981-07-03": "Fisherman's Day", + "1981-09-04": "Dri-jerbal Day", + "1981-09-25": "Manit Day", + "1981-11-17": "President's Day", + "1981-12-04": "Gospel Day", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-03-01": "Nuclear Victims Remembrance Day", + "1982-04-09": "Good Friday", + "1982-05-01": "Constitution Day", + "1982-07-02": "Fisherman's Day", + "1982-09-03": "Dri-jerbal Day", + "1982-09-24": "Manit Day", + "1982-11-17": "President's Day", + "1982-12-03": "Gospel Day", + "1982-12-25": "Christmas Day", + "1983-01-01": "New Year's Day", + "1983-03-01": "Nuclear Victims Remembrance Day", + "1983-04-01": "Good Friday", + "1983-05-01": "Constitution Day", + "1983-05-02": "Constitution Day Holiday", + "1983-07-01": "Fisherman's Day", + "1983-09-02": "Dri-jerbal Day", + "1983-09-30": "Manit Day", + "1983-11-17": "President's Day", + "1983-12-02": "Gospel Day", + "1983-12-25": "Christmas Day", + "1983-12-26": "Christmas Day Holiday", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day Holiday", + "1984-03-01": "Nuclear Victims Remembrance Day", + "1984-04-20": "Good Friday", + "1984-05-01": "Constitution Day", + "1984-07-06": "Fisherman's Day", + "1984-09-07": "Dri-jerbal Day", + "1984-09-28": "Manit Day", + "1984-11-17": "President's Day", + "1984-12-07": "Gospel Day", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-03-01": "Nuclear Victims Remembrance Day", + "1985-04-05": "Good Friday", + "1985-05-01": "Constitution Day", + "1985-07-05": "Fisherman's Day", + "1985-09-06": "Dri-jerbal Day", + "1985-09-27": "Manit Day", + "1985-11-17": "President's Day", + "1985-11-18": "President's Day Holiday", + "1985-12-06": "Gospel Day", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-03-01": "Nuclear Victims Remembrance Day", + "1986-03-28": "Good Friday", + "1986-05-01": "Constitution Day", + "1986-07-04": "Fisherman's Day", + "1986-09-05": "Dri-jerbal Day", + "1986-09-26": "Manit Day", + "1986-11-17": "President's Day", + "1986-12-05": "Gospel Day", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-03-01": "Nuclear Victims Remembrance Day", + "1987-03-02": "Nuclear Victims Remembrance Day Holiday", + "1987-04-17": "Good Friday", + "1987-05-01": "Constitution Day", + "1987-07-03": "Fisherman's Day", + "1987-09-04": "Dri-jerbal Day", + "1987-09-25": "Manit Day", + "1987-11-17": "President's Day", + "1987-12-04": "Gospel Day", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-03-01": "Nuclear Victims Remembrance Day", + "1988-04-01": "Good Friday", + "1988-05-01": "Constitution Day", + "1988-05-02": "Constitution Day Holiday", + "1988-07-01": "Fisherman's Day", + "1988-09-02": "Dri-jerbal Day", + "1988-09-30": "Manit Day", + "1988-11-17": "President's Day", + "1988-12-02": "Gospel Day", + "1988-12-25": "Christmas Day", + "1988-12-26": "Christmas Day Holiday", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day Holiday", + "1989-03-01": "Nuclear Victims Remembrance Day", + "1989-03-24": "Good Friday", + "1989-05-01": "Constitution Day", + "1989-07-07": "Fisherman's Day", + "1989-09-01": "Dri-jerbal Day", + "1989-09-29": "Manit Day", + "1989-11-17": "President's Day", + "1989-12-01": "Gospel Day", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-03-01": "Nuclear Victims Remembrance Day", + "1990-04-13": "Good Friday", + "1990-05-01": "Constitution Day", + "1990-07-06": "Fisherman's Day", + "1990-09-07": "Dri-jerbal Day", + "1990-09-28": "Manit Day", + "1990-11-17": "President's Day", + "1990-12-07": "Gospel Day", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-03-01": "Nuclear Victims Remembrance Day", + "1991-03-29": "Good Friday", + "1991-05-01": "Constitution Day", + "1991-07-05": "Fisherman's Day", + "1991-09-06": "Dri-jerbal Day", + "1991-09-27": "Manit Day", + "1991-11-17": "President's Day", + "1991-11-18": "President's Day Holiday", + "1991-12-06": "Gospel Day", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-03-01": "Nuclear Victims Remembrance Day", + "1992-03-02": "Nuclear Victims Remembrance Day Holiday", + "1992-04-17": "Good Friday", + "1992-05-01": "Constitution Day", + "1992-07-03": "Fisherman's Day", + "1992-09-04": "Dri-jerbal Day", + "1992-09-25": "Manit Day", + "1992-11-17": "President's Day", + "1992-12-04": "Gospel Day", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-03-01": "Nuclear Victims Remembrance Day", + "1993-04-09": "Good Friday", + "1993-05-01": "Constitution Day", + "1993-07-02": "Fisherman's Day", + "1993-09-03": "Dri-jerbal Day", + "1993-09-24": "Manit Day", + "1993-11-17": "President's Day", + "1993-12-03": "Gospel Day", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-03-01": "Nuclear Victims Remembrance Day", + "1994-04-01": "Good Friday", + "1994-05-01": "Constitution Day", + "1994-05-02": "Constitution Day Holiday", + "1994-07-01": "Fisherman's Day", + "1994-09-02": "Dri-jerbal Day", + "1994-09-30": "Manit Day", + "1994-11-17": "President's Day", + "1994-12-02": "Gospel Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day Holiday", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day Holiday", + "1995-03-01": "Nuclear Victims Remembrance Day", + "1995-04-14": "Good Friday", + "1995-05-01": "Constitution Day", + "1995-07-07": "Fisherman's Day", + "1995-09-01": "Dri-jerbal Day", + "1995-09-29": "Manit Day", + "1995-11-17": "President's Day", + "1995-11-20": "General Election Day", + "1995-12-01": "Gospel Day", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-03-01": "Nuclear Victims Remembrance Day", + "1996-04-05": "Good Friday", + "1996-05-01": "Constitution Day", + "1996-07-05": "Fisherman's Day", + "1996-09-06": "Dri-jerbal Day", + "1996-09-27": "Manit Day", + "1996-11-17": "President's Day", + "1996-11-18": "President's Day Holiday", + "1996-12-06": "Gospel Day", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-03-01": "Nuclear Victims Remembrance Day", + "1997-03-28": "Good Friday", + "1997-05-01": "Constitution Day", + "1997-07-04": "Fisherman's Day", + "1997-09-05": "Dri-jerbal Day", + "1997-09-26": "Manit Day", + "1997-11-17": "President's Day", + "1997-12-05": "Gospel Day", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-03-01": "Nuclear Victims Remembrance Day", + "1998-03-02": "Nuclear Victims Remembrance Day Holiday", + "1998-04-10": "Good Friday", + "1998-05-01": "Constitution Day", + "1998-07-03": "Fisherman's Day", + "1998-09-04": "Dri-jerbal Day", + "1998-09-25": "Manit Day", + "1998-11-17": "President's Day", + "1998-12-04": "Gospel Day", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-03-01": "Nuclear Victims Remembrance Day", + "1999-04-02": "Good Friday", + "1999-05-01": "Constitution Day", + "1999-07-02": "Fisherman's Day", + "1999-09-03": "Dri-jerbal Day", + "1999-09-24": "Manit Day", + "1999-11-17": "President's Day", + "1999-11-22": "General Election Day", + "1999-12-03": "Gospel Day", + "1999-12-25": "Christmas Day", + "2000-01-01": "New Year's Day", + "2000-03-01": "Nuclear Victims Remembrance Day", + "2000-04-21": "Good Friday", + "2000-05-01": "Constitution Day", + "2000-07-07": "Fisherman's Day", + "2000-09-01": "Dri-jerbal Day", + "2000-09-29": "Manit Day", + "2000-11-17": "President's Day", + "2000-12-01": "Gospel Day", + "2000-12-25": "Christmas Day", + "2001-01-01": "New Year's Day", + "2001-03-01": "Nuclear Victims Remembrance Day", + "2001-04-13": "Good Friday", + "2001-05-01": "Constitution Day", + "2001-07-06": "Fisherman's Day", + "2001-09-07": "Dri-jerbal Day", + "2001-09-28": "Manit Day", + "2001-11-17": "President's Day", + "2001-12-07": "Gospel Day", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-03-01": "Nuclear Victims Remembrance Day", + "2002-03-29": "Good Friday", + "2002-05-01": "Constitution Day", + "2002-07-05": "Fisherman's Day", + "2002-09-06": "Dri-jerbal Day", + "2002-09-27": "Manit Day", + "2002-11-17": "President's Day", + "2002-11-18": "President's Day Holiday", + "2002-12-06": "Gospel Day", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-03-01": "Nuclear Victims Remembrance Day", + "2003-04-18": "Good Friday", + "2003-05-01": "Constitution Day", + "2003-07-04": "Fisherman's Day", + "2003-09-05": "Dri-jerbal Day", + "2003-09-26": "Manit Day", + "2003-11-17": "General Election Day; President's Day", + "2003-12-05": "Gospel Day", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-03-01": "Nuclear Victims Remembrance Day", + "2004-04-09": "Good Friday", + "2004-05-01": "Constitution Day", + "2004-07-02": "Fisherman's Day", + "2004-09-03": "Dri-jerbal Day", + "2004-09-24": "Manit Day", + "2004-11-17": "President's Day", + "2004-12-03": "Gospel Day", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-03-01": "Nuclear Victims Remembrance Day", + "2005-03-25": "Good Friday", + "2005-05-01": "Constitution Day", + "2005-05-02": "Constitution Day Holiday", + "2005-07-01": "Fisherman's Day", + "2005-09-02": "Dri-jerbal Day", + "2005-09-30": "Manit Day", + "2005-11-17": "President's Day", + "2005-12-02": "Gospel Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day Holiday", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day Holiday", + "2006-03-01": "Nuclear Victims Remembrance Day", + "2006-04-14": "Good Friday", + "2006-05-01": "Constitution Day", + "2006-07-07": "Fisherman's Day", + "2006-09-01": "Dri-jerbal Day", + "2006-09-29": "Manit Day", + "2006-11-17": "President's Day", + "2006-12-01": "Gospel Day", + "2006-12-25": "Christmas Day", + "2007-01-01": "New Year's Day", + "2007-03-01": "Nuclear Victims Remembrance Day", + "2007-04-06": "Good Friday", + "2007-05-01": "Constitution Day", + "2007-07-06": "Fisherman's Day", + "2007-09-07": "Dri-jerbal Day", + "2007-09-28": "Manit Day", + "2007-11-17": "President's Day", + "2007-11-19": "General Election Day", + "2007-12-07": "Gospel Day", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-03-01": "Nuclear Victims Remembrance Day", + "2008-03-21": "Good Friday", + "2008-05-01": "Constitution Day", + "2008-07-04": "Fisherman's Day", + "2008-09-05": "Dri-jerbal Day", + "2008-09-26": "Manit Day", + "2008-11-17": "President's Day", + "2008-12-05": "Gospel Day", + "2008-12-25": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-03-01": "Nuclear Victims Remembrance Day", + "2009-03-02": "Nuclear Victims Remembrance Day Holiday", + "2009-04-10": "Good Friday", + "2009-05-01": "Constitution Day", + "2009-07-03": "Fisherman's Day", + "2009-09-04": "Dri-jerbal Day", + "2009-09-25": "Manit Day", + "2009-11-17": "President's Day", + "2009-12-04": "Gospel Day", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-03-01": "Nuclear Victims Remembrance Day", + "2010-04-02": "Good Friday", + "2010-05-01": "Constitution Day", + "2010-07-02": "Fisherman's Day", + "2010-09-03": "Dri-jerbal Day", + "2010-09-24": "Manit Day", + "2010-11-17": "President's Day", + "2010-12-03": "Gospel Day", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-03-01": "Nuclear Victims Remembrance Day", + "2011-04-22": "Good Friday", + "2011-05-01": "Constitution Day", + "2011-05-02": "Constitution Day Holiday", + "2011-07-01": "Fisherman's Day", + "2011-09-02": "Dri-jerbal Day", + "2011-09-30": "Manit Day", + "2011-11-17": "President's Day", + "2011-11-21": "General Election Day", + "2011-12-02": "Gospel Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day Holiday", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day Holiday", + "2012-03-01": "Nuclear Victims Remembrance Day", + "2012-04-06": "Good Friday", + "2012-05-01": "Constitution Day", + "2012-07-06": "Fisherman's Day", + "2012-09-07": "Dri-jerbal Day", + "2012-09-28": "Manit Day", + "2012-11-17": "President's Day", + "2012-12-07": "Gospel Day", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-03-01": "Nuclear Victims Remembrance Day", + "2013-03-29": "Good Friday", + "2013-05-01": "Constitution Day", + "2013-07-05": "Fisherman's Day", + "2013-09-06": "Dri-jerbal Day", + "2013-09-27": "Manit Day", + "2013-11-17": "President's Day", + "2013-11-18": "President's Day Holiday", + "2013-12-06": "Gospel Day", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-03-01": "Nuclear Victims Remembrance Day", + "2014-04-18": "Good Friday", + "2014-05-01": "Constitution Day", + "2014-07-04": "Fisherman's Day", + "2014-09-05": "Dri-jerbal Day", + "2014-09-26": "Manit Day", + "2014-11-17": "President's Day", + "2014-12-05": "Gospel Day", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-03-01": "Nuclear Victims Remembrance Day", + "2015-03-02": "Nuclear Victims Remembrance Day Holiday", + "2015-04-03": "Good Friday", + "2015-05-01": "Constitution Day", + "2015-07-03": "Fisherman's Day", + "2015-09-04": "Dri-jerbal Day", + "2015-09-25": "Manit Day", + "2015-11-16": "General Election Day", + "2015-11-17": "President's Day", + "2015-12-04": "Gospel Day", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-03-01": "Nuclear Victims Remembrance Day", + "2016-03-25": "Good Friday", + "2016-05-01": "Constitution Day", + "2016-05-02": "Constitution Day Holiday", + "2016-07-01": "Fisherman's Day", + "2016-09-02": "Dri-jerbal Day", + "2016-09-30": "Manit Day", + "2016-11-17": "President's Day", + "2016-12-02": "Gospel Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day Holiday", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day Holiday", + "2017-03-01": "Nuclear Victims Remembrance Day", + "2017-04-14": "Good Friday", + "2017-05-01": "Constitution Day", + "2017-07-07": "Fisherman's Day", + "2017-09-01": "Dri-jerbal Day", + "2017-09-29": "Manit Day", + "2017-11-17": "President's Day", + "2017-12-01": "Gospel Day", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-03-01": "Nuclear Victims Remembrance Day", + "2018-03-30": "Good Friday", + "2018-05-01": "Constitution Day", + "2018-07-06": "Fisherman's Day", + "2018-09-07": "Dri-jerbal Day", + "2018-09-28": "Manit Day", + "2018-11-17": "President's Day", + "2018-12-07": "Gospel Day", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-03-01": "Nuclear Victims Remembrance Day", + "2019-04-19": "Good Friday", + "2019-05-01": "Constitution Day", + "2019-07-05": "Fisherman's Day", + "2019-09-06": "Dri-jerbal Day", + "2019-09-27": "Manit Day", + "2019-11-17": "President's Day", + "2019-11-18": "General Election Day; President's Day Holiday", + "2019-12-06": "Gospel Day", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-03-01": "Nuclear Victims Remembrance Day", + "2020-03-02": "Nuclear Victims Remembrance Day Holiday", + "2020-04-10": "Good Friday", + "2020-05-01": "Constitution Day", + "2020-07-03": "Fisherman's Day", + "2020-09-04": "Dri-jerbal Day", + "2020-09-25": "Manit Day", + "2020-11-17": "President's Day", + "2020-12-04": "Gospel Day", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-03-01": "Nuclear Victims Remembrance Day", + "2021-04-02": "Good Friday", + "2021-05-01": "Constitution Day", + "2021-07-02": "Fisherman's Day", + "2021-09-03": "Dri-jerbal Day", + "2021-09-24": "Manit Day", + "2021-11-17": "President's Day", + "2021-12-03": "Gospel Day", + "2021-12-24": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-03-01": "Nuclear Victims Remembrance Day", + "2022-04-15": "Good Friday", + "2022-05-01": "Constitution Day", + "2022-05-02": "Constitution Day Holiday", + "2022-07-01": "Fisherman's Day", + "2022-09-02": "Dri-jerbal Day", + "2022-09-30": "Manit Day", + "2022-11-17": "President's Day", + "2022-12-02": "Gospel Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day Holiday", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day Holiday", + "2023-03-01": "Nuclear Victims Remembrance Day", + "2023-04-07": "Good Friday", + "2023-05-01": "Constitution Day", + "2023-07-07": "Fisherman's Day", + "2023-09-01": "Dri-jerbal Day", + "2023-09-29": "Manit Day", + "2023-11-17": "President's Day", + "2023-11-20": "General Election Day", + "2023-12-01": "Gospel Day", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-03-01": "Nuclear Victims Remembrance Day", + "2024-03-29": "Good Friday", + "2024-05-01": "Constitution Day", + "2024-07-05": "Fisherman's Day", + "2024-09-06": "Dri-jerbal Day", + "2024-09-27": "Manit Day", + "2024-11-17": "President's Day", + "2024-11-18": "President's Day Holiday", + "2024-12-06": "Gospel Day", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-03-01": "Nuclear Victims Remembrance Day", + "2025-04-18": "Good Friday", + "2025-05-01": "Constitution Day", + "2025-07-04": "Fisherman's Day", + "2025-09-05": "Dri-jerbal Day", + "2025-09-26": "Manit Day", + "2025-11-17": "President's Day", + "2025-12-05": "Gospel Day", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-03-01": "Nuclear Victims Remembrance Day", + "2026-03-02": "Nuclear Victims Remembrance Day Holiday", + "2026-04-03": "Good Friday", + "2026-05-01": "Constitution Day", + "2026-07-03": "Fisherman's Day", + "2026-09-04": "Dri-jerbal Day", + "2026-09-25": "Manit Day", + "2026-11-17": "President's Day", + "2026-12-04": "Gospel Day", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-03-01": "Nuclear Victims Remembrance Day", + "2027-03-26": "Good Friday", + "2027-05-01": "Constitution Day", + "2027-07-02": "Fisherman's Day", + "2027-09-03": "Dri-jerbal Day", + "2027-09-24": "Manit Day", + "2027-11-17": "President's Day", + "2027-12-03": "Gospel Day", + "2027-12-25": "Christmas Day", + "2028-01-01": "New Year's Day", + "2028-03-01": "Nuclear Victims Remembrance Day", + "2028-04-14": "Good Friday", + "2028-05-01": "Constitution Day", + "2028-07-07": "Fisherman's Day", + "2028-09-01": "Dri-jerbal Day", + "2028-09-29": "Manit Day", + "2028-11-17": "President's Day", + "2028-12-01": "Gospel Day", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-03-01": "Nuclear Victims Remembrance Day", + "2029-03-30": "Good Friday", + "2029-05-01": "Constitution Day", + "2029-07-06": "Fisherman's Day", + "2029-09-07": "Dri-jerbal Day", + "2029-09-28": "Manit Day", + "2029-11-17": "President's Day", + "2029-12-07": "Gospel Day", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-03-01": "Nuclear Victims Remembrance Day", + "2030-04-19": "Good Friday", + "2030-05-01": "Constitution Day", + "2030-07-05": "Fisherman's Day", + "2030-09-06": "Dri-jerbal Day", + "2030-09-27": "Manit Day", + "2030-11-17": "President's Day", + "2030-11-18": "President's Day Holiday", + "2030-12-06": "Gospel Day", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-03-01": "Nuclear Victims Remembrance Day", + "2031-04-11": "Good Friday", + "2031-05-01": "Constitution Day", + "2031-07-04": "Fisherman's Day", + "2031-09-05": "Dri-jerbal Day", + "2031-09-26": "Manit Day", + "2031-11-17": "President's Day", + "2031-12-05": "Gospel Day", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-03-01": "Nuclear Victims Remembrance Day", + "2032-03-26": "Good Friday", + "2032-05-01": "Constitution Day", + "2032-07-02": "Fisherman's Day", + "2032-09-03": "Dri-jerbal Day", + "2032-09-24": "Manit Day", + "2032-11-17": "President's Day", + "2032-12-03": "Gospel Day", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-03-01": "Nuclear Victims Remembrance Day", + "2033-04-15": "Good Friday", + "2033-05-01": "Constitution Day", + "2033-05-02": "Constitution Day Holiday", + "2033-07-01": "Fisherman's Day", + "2033-09-02": "Dri-jerbal Day", + "2033-09-30": "Manit Day", + "2033-11-17": "President's Day", + "2033-12-02": "Gospel Day", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day Holiday", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day Holiday", + "2034-03-01": "Nuclear Victims Remembrance Day", + "2034-04-07": "Good Friday", + "2034-05-01": "Constitution Day", + "2034-07-07": "Fisherman's Day", + "2034-09-01": "Dri-jerbal Day", + "2034-09-29": "Manit Day", + "2034-11-17": "President's Day", + "2034-12-01": "Gospel Day", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-03-01": "Nuclear Victims Remembrance Day", + "2035-03-23": "Good Friday", + "2035-05-01": "Constitution Day", + "2035-07-06": "Fisherman's Day", + "2035-09-07": "Dri-jerbal Day", + "2035-09-28": "Manit Day", + "2035-11-17": "President's Day", + "2035-12-07": "Gospel Day", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-03-01": "Nuclear Victims Remembrance Day", + "2036-04-11": "Good Friday", + "2036-05-01": "Constitution Day", + "2036-07-04": "Fisherman's Day", + "2036-09-05": "Dri-jerbal Day", + "2036-09-26": "Manit Day", + "2036-11-17": "President's Day", + "2036-12-05": "Gospel Day", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-03-01": "Nuclear Victims Remembrance Day", + "2037-03-02": "Nuclear Victims Remembrance Day Holiday", + "2037-04-03": "Good Friday", + "2037-05-01": "Constitution Day", + "2037-07-03": "Fisherman's Day", + "2037-09-04": "Dri-jerbal Day", + "2037-09-25": "Manit Day", + "2037-11-17": "President's Day", + "2037-12-04": "Gospel Day", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-03-01": "Nuclear Victims Remembrance Day", + "2038-04-23": "Good Friday", + "2038-05-01": "Constitution Day", + "2038-07-02": "Fisherman's Day", + "2038-09-03": "Dri-jerbal Day", + "2038-09-24": "Manit Day", + "2038-11-17": "President's Day", + "2038-12-03": "Gospel Day", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-03-01": "Nuclear Victims Remembrance Day", + "2039-04-08": "Good Friday", + "2039-05-01": "Constitution Day", + "2039-05-02": "Constitution Day Holiday", + "2039-07-01": "Fisherman's Day", + "2039-09-02": "Dri-jerbal Day", + "2039-09-30": "Manit Day", + "2039-11-17": "President's Day", + "2039-12-02": "Gospel Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Christmas Day Holiday", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day Holiday", + "2040-03-01": "Nuclear Victims Remembrance Day", + "2040-03-30": "Good Friday", + "2040-05-01": "Constitution Day", + "2040-07-06": "Fisherman's Day", + "2040-09-07": "Dri-jerbal Day", + "2040-09-28": "Manit Day", + "2040-11-17": "President's Day", + "2040-12-07": "Gospel Day", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-03-01": "Nuclear Victims Remembrance Day", + "2041-04-19": "Good Friday", + "2041-05-01": "Constitution Day", + "2041-07-05": "Fisherman's Day", + "2041-09-06": "Dri-jerbal Day", + "2041-09-27": "Manit Day", + "2041-11-17": "President's Day", + "2041-11-18": "President's Day Holiday", + "2041-12-06": "Gospel Day", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-03-01": "Nuclear Victims Remembrance Day", + "2042-04-04": "Good Friday", + "2042-05-01": "Constitution Day", + "2042-07-04": "Fisherman's Day", + "2042-09-05": "Dri-jerbal Day", + "2042-09-26": "Manit Day", + "2042-11-17": "President's Day", + "2042-12-05": "Gospel Day", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-03-01": "Nuclear Victims Remembrance Day", + "2043-03-02": "Nuclear Victims Remembrance Day Holiday", + "2043-03-27": "Good Friday", + "2043-05-01": "Constitution Day", + "2043-07-03": "Fisherman's Day", + "2043-09-04": "Dri-jerbal Day", + "2043-09-25": "Manit Day", + "2043-11-17": "President's Day", + "2043-12-04": "Gospel Day", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-03-01": "Nuclear Victims Remembrance Day", + "2044-04-15": "Good Friday", + "2044-05-01": "Constitution Day", + "2044-05-02": "Constitution Day Holiday", + "2044-07-01": "Fisherman's Day", + "2044-09-02": "Dri-jerbal Day", + "2044-09-30": "Manit Day", + "2044-11-17": "President's Day", + "2044-12-02": "Gospel Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day Holiday", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day Holiday", + "2045-03-01": "Nuclear Victims Remembrance Day", + "2045-04-07": "Good Friday", + "2045-05-01": "Constitution Day", + "2045-07-07": "Fisherman's Day", + "2045-09-01": "Dri-jerbal Day", + "2045-09-29": "Manit Day", + "2045-11-17": "President's Day", + "2045-12-01": "Gospel Day", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-03-01": "Nuclear Victims Remembrance Day", + "2046-03-23": "Good Friday", + "2046-05-01": "Constitution Day", + "2046-07-06": "Fisherman's Day", + "2046-09-07": "Dri-jerbal Day", + "2046-09-28": "Manit Day", + "2046-11-17": "President's Day", + "2046-12-07": "Gospel Day", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-03-01": "Nuclear Victims Remembrance Day", + "2047-04-12": "Good Friday", + "2047-05-01": "Constitution Day", + "2047-07-05": "Fisherman's Day", + "2047-09-06": "Dri-jerbal Day", + "2047-09-27": "Manit Day", + "2047-11-17": "President's Day", + "2047-11-18": "President's Day Holiday", + "2047-12-06": "Gospel Day", + "2047-12-25": "Christmas Day", + "2048-01-01": "New Year's Day", + "2048-03-01": "Nuclear Victims Remembrance Day", + "2048-03-02": "Nuclear Victims Remembrance Day Holiday", + "2048-04-03": "Good Friday", + "2048-05-01": "Constitution Day", + "2048-07-03": "Fisherman's Day", + "2048-09-04": "Dri-jerbal Day", + "2048-09-25": "Manit Day", + "2048-11-17": "President's Day", + "2048-12-04": "Gospel Day", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-03-01": "Nuclear Victims Remembrance Day", + "2049-04-16": "Good Friday", + "2049-05-01": "Constitution Day", + "2049-07-02": "Fisherman's Day", + "2049-09-03": "Dri-jerbal Day", + "2049-09-24": "Manit Day", + "2049-11-17": "President's Day", + "2049-12-03": "Gospel Day", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-03-01": "Nuclear Victims Remembrance Day", + "2050-04-08": "Good Friday", + "2050-05-01": "Constitution Day", + "2050-05-02": "Constitution Day Holiday", + "2050-07-01": "Fisherman's Day", + "2050-09-02": "Dri-jerbal Day", + "2050-09-30": "Manit Day", + "2050-11-17": "President's Day", + "2050-12-02": "Gospel Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day Holiday" +} diff --git a/snapshots/countries/MK.json b/snapshots/countries/MK.json new file mode 100644 index 000000000..d5219ccc6 --- /dev/null +++ b/snapshots/countries/MK.json @@ -0,0 +1,1108 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-07": "Christmas Day (Orthodox)", + "1950-04-10": "Easter Monday (Orthodox)", + "1950-05-01": "Labour Day", + "1950-05-24": "Saints Cyril and Methodius Day", + "1950-07-16": "Eid al-Fitr* (*estimated)", + "1950-08-02": "Republic Day", + "1950-09-08": "Independence Day", + "1950-10-11": "Day of Macedonian Uprising in 1941", + "1950-10-23": "Day of the Macedonian Revolutionary Struggle", + "1950-12-08": "Saint Clement of Ohrid Day", + "1951-01-01": "New Year's Day", + "1951-01-07": "Christmas Day (Orthodox)", + "1951-04-30": "Easter Monday (Orthodox)", + "1951-05-01": "Labour Day", + "1951-05-24": "Saints Cyril and Methodius Day", + "1951-07-06": "Eid al-Fitr* (*estimated)", + "1951-08-02": "Republic Day", + "1951-09-08": "Independence Day", + "1951-10-11": "Day of Macedonian Uprising in 1941", + "1951-10-23": "Day of the Macedonian Revolutionary Struggle", + "1951-12-08": "Saint Clement of Ohrid Day", + "1952-01-01": "New Year's Day", + "1952-01-07": "Christmas Day (Orthodox)", + "1952-04-21": "Easter Monday (Orthodox)", + "1952-05-01": "Labour Day", + "1952-05-24": "Saints Cyril and Methodius Day", + "1952-06-23": "Eid al-Fitr* (*estimated)", + "1952-08-02": "Republic Day", + "1952-09-08": "Independence Day", + "1952-10-11": "Day of Macedonian Uprising in 1941", + "1952-10-23": "Day of the Macedonian Revolutionary Struggle", + "1952-12-08": "Saint Clement of Ohrid Day", + "1953-01-01": "New Year's Day", + "1953-01-07": "Christmas Day (Orthodox)", + "1953-04-06": "Easter Monday (Orthodox)", + "1953-05-01": "Labour Day", + "1953-05-24": "Saints Cyril and Methodius Day", + "1953-06-13": "Eid al-Fitr* (*estimated)", + "1953-08-02": "Republic Day", + "1953-09-08": "Independence Day", + "1953-10-11": "Day of Macedonian Uprising in 1941", + "1953-10-23": "Day of the Macedonian Revolutionary Struggle", + "1953-12-08": "Saint Clement of Ohrid Day", + "1954-01-01": "New Year's Day", + "1954-01-07": "Christmas Day (Orthodox)", + "1954-04-26": "Easter Monday (Orthodox)", + "1954-05-01": "Labour Day", + "1954-05-24": "Saints Cyril and Methodius Day", + "1954-06-02": "Eid al-Fitr* (*estimated)", + "1954-08-02": "Republic Day", + "1954-09-08": "Independence Day", + "1954-10-11": "Day of Macedonian Uprising in 1941", + "1954-10-23": "Day of the Macedonian Revolutionary Struggle", + "1954-12-08": "Saint Clement of Ohrid Day", + "1955-01-01": "New Year's Day", + "1955-01-07": "Christmas Day (Orthodox)", + "1955-04-18": "Easter Monday (Orthodox)", + "1955-05-01": "Labour Day", + "1955-05-23": "Eid al-Fitr* (*estimated)", + "1955-05-24": "Saints Cyril and Methodius Day", + "1955-08-02": "Republic Day", + "1955-09-08": "Independence Day", + "1955-10-11": "Day of Macedonian Uprising in 1941", + "1955-10-23": "Day of the Macedonian Revolutionary Struggle", + "1955-12-08": "Saint Clement of Ohrid Day", + "1956-01-01": "New Year's Day", + "1956-01-07": "Christmas Day (Orthodox)", + "1956-05-01": "Labour Day", + "1956-05-07": "Easter Monday (Orthodox)", + "1956-05-11": "Eid al-Fitr* (*estimated)", + "1956-05-24": "Saints Cyril and Methodius Day", + "1956-08-02": "Republic Day", + "1956-09-08": "Independence Day", + "1956-10-11": "Day of Macedonian Uprising in 1941", + "1956-10-23": "Day of the Macedonian Revolutionary Struggle", + "1956-12-08": "Saint Clement of Ohrid Day", + "1957-01-01": "New Year's Day", + "1957-01-07": "Christmas Day (Orthodox)", + "1957-04-22": "Easter Monday (Orthodox)", + "1957-05-01": "Eid al-Fitr* (*estimated); Labour Day", + "1957-05-24": "Saints Cyril and Methodius Day", + "1957-08-02": "Republic Day", + "1957-09-08": "Independence Day", + "1957-10-11": "Day of Macedonian Uprising in 1941", + "1957-10-23": "Day of the Macedonian Revolutionary Struggle", + "1957-12-08": "Saint Clement of Ohrid Day", + "1958-01-01": "New Year's Day", + "1958-01-07": "Christmas Day (Orthodox)", + "1958-04-14": "Easter Monday (Orthodox)", + "1958-04-20": "Eid al-Fitr* (*estimated)", + "1958-05-01": "Labour Day", + "1958-05-24": "Saints Cyril and Methodius Day", + "1958-08-02": "Republic Day", + "1958-09-08": "Independence Day", + "1958-10-11": "Day of Macedonian Uprising in 1941", + "1958-10-23": "Day of the Macedonian Revolutionary Struggle", + "1958-12-08": "Saint Clement of Ohrid Day", + "1959-01-01": "New Year's Day", + "1959-01-07": "Christmas Day (Orthodox)", + "1959-04-10": "Eid al-Fitr* (*estimated)", + "1959-05-01": "Labour Day", + "1959-05-04": "Easter Monday (Orthodox)", + "1959-05-24": "Saints Cyril and Methodius Day", + "1959-08-02": "Republic Day", + "1959-09-08": "Independence Day", + "1959-10-11": "Day of Macedonian Uprising in 1941", + "1959-10-23": "Day of the Macedonian Revolutionary Struggle", + "1959-12-08": "Saint Clement of Ohrid Day", + "1960-01-01": "New Year's Day", + "1960-01-07": "Christmas Day (Orthodox)", + "1960-03-28": "Eid al-Fitr* (*estimated)", + "1960-04-18": "Easter Monday (Orthodox)", + "1960-05-01": "Labour Day", + "1960-05-24": "Saints Cyril and Methodius Day", + "1960-08-02": "Republic Day", + "1960-09-08": "Independence Day", + "1960-10-11": "Day of Macedonian Uprising in 1941", + "1960-10-23": "Day of the Macedonian Revolutionary Struggle", + "1960-12-08": "Saint Clement of Ohrid Day", + "1961-01-01": "New Year's Day", + "1961-01-07": "Christmas Day (Orthodox)", + "1961-03-18": "Eid al-Fitr* (*estimated)", + "1961-04-10": "Easter Monday (Orthodox)", + "1961-05-01": "Labour Day", + "1961-05-24": "Saints Cyril and Methodius Day", + "1961-08-02": "Republic Day", + "1961-09-08": "Independence Day", + "1961-10-11": "Day of Macedonian Uprising in 1941", + "1961-10-23": "Day of the Macedonian Revolutionary Struggle", + "1961-12-08": "Saint Clement of Ohrid Day", + "1962-01-01": "New Year's Day", + "1962-01-07": "Christmas Day (Orthodox)", + "1962-03-07": "Eid al-Fitr* (*estimated)", + "1962-04-30": "Easter Monday (Orthodox)", + "1962-05-01": "Labour Day", + "1962-05-24": "Saints Cyril and Methodius Day", + "1962-08-02": "Republic Day", + "1962-09-08": "Independence Day", + "1962-10-11": "Day of Macedonian Uprising in 1941", + "1962-10-23": "Day of the Macedonian Revolutionary Struggle", + "1962-12-08": "Saint Clement of Ohrid Day", + "1963-01-01": "New Year's Day", + "1963-01-07": "Christmas Day (Orthodox)", + "1963-02-24": "Eid al-Fitr* (*estimated)", + "1963-04-15": "Easter Monday (Orthodox)", + "1963-05-01": "Labour Day", + "1963-05-24": "Saints Cyril and Methodius Day", + "1963-08-02": "Republic Day", + "1963-09-08": "Independence Day", + "1963-10-11": "Day of Macedonian Uprising in 1941", + "1963-10-23": "Day of the Macedonian Revolutionary Struggle", + "1963-12-08": "Saint Clement of Ohrid Day", + "1964-01-01": "New Year's Day", + "1964-01-07": "Christmas Day (Orthodox)", + "1964-02-14": "Eid al-Fitr* (*estimated)", + "1964-05-01": "Labour Day", + "1964-05-04": "Easter Monday (Orthodox)", + "1964-05-24": "Saints Cyril and Methodius Day", + "1964-08-02": "Republic Day", + "1964-09-08": "Independence Day", + "1964-10-11": "Day of Macedonian Uprising in 1941", + "1964-10-23": "Day of the Macedonian Revolutionary Struggle", + "1964-12-08": "Saint Clement of Ohrid Day", + "1965-01-01": "New Year's Day", + "1965-01-07": "Christmas Day (Orthodox)", + "1965-02-02": "Eid al-Fitr* (*estimated)", + "1965-04-26": "Easter Monday (Orthodox)", + "1965-05-01": "Labour Day", + "1965-05-24": "Saints Cyril and Methodius Day", + "1965-08-02": "Republic Day", + "1965-09-08": "Independence Day", + "1965-10-11": "Day of Macedonian Uprising in 1941", + "1965-10-23": "Day of the Macedonian Revolutionary Struggle", + "1965-12-08": "Saint Clement of Ohrid Day", + "1966-01-01": "New Year's Day", + "1966-01-07": "Christmas Day (Orthodox)", + "1966-01-22": "Eid al-Fitr* (*estimated)", + "1966-04-11": "Easter Monday (Orthodox)", + "1966-05-01": "Labour Day", + "1966-05-24": "Saints Cyril and Methodius Day", + "1966-08-02": "Republic Day", + "1966-09-08": "Independence Day", + "1966-10-11": "Day of Macedonian Uprising in 1941", + "1966-10-23": "Day of the Macedonian Revolutionary Struggle", + "1966-12-08": "Saint Clement of Ohrid Day", + "1967-01-01": "New Year's Day", + "1967-01-07": "Christmas Day (Orthodox)", + "1967-01-12": "Eid al-Fitr* (*estimated)", + "1967-05-01": "Easter Monday (Orthodox); Labour Day", + "1967-05-24": "Saints Cyril and Methodius Day", + "1967-08-02": "Republic Day", + "1967-09-08": "Independence Day", + "1967-10-11": "Day of Macedonian Uprising in 1941", + "1967-10-23": "Day of the Macedonian Revolutionary Struggle", + "1967-12-08": "Saint Clement of Ohrid Day", + "1968-01-01": "Eid al-Fitr* (*estimated); New Year's Day", + "1968-01-07": "Christmas Day (Orthodox)", + "1968-04-22": "Easter Monday (Orthodox)", + "1968-05-01": "Labour Day", + "1968-05-24": "Saints Cyril and Methodius Day", + "1968-08-02": "Republic Day", + "1968-09-08": "Independence Day", + "1968-10-11": "Day of Macedonian Uprising in 1941", + "1968-10-23": "Day of the Macedonian Revolutionary Struggle", + "1968-12-08": "Saint Clement of Ohrid Day", + "1968-12-21": "Eid al-Fitr* (*estimated)", + "1969-01-01": "New Year's Day", + "1969-01-07": "Christmas Day (Orthodox)", + "1969-04-14": "Easter Monday (Orthodox)", + "1969-05-01": "Labour Day", + "1969-05-24": "Saints Cyril and Methodius Day", + "1969-08-02": "Republic Day", + "1969-09-08": "Independence Day", + "1969-10-11": "Day of Macedonian Uprising in 1941", + "1969-10-23": "Day of the Macedonian Revolutionary Struggle", + "1969-12-08": "Saint Clement of Ohrid Day", + "1969-12-10": "Eid al-Fitr* (*estimated)", + "1970-01-01": "New Year's Day", + "1970-01-07": "Christmas Day (Orthodox)", + "1970-04-27": "Easter Monday (Orthodox)", + "1970-05-01": "Labour Day", + "1970-05-24": "Saints Cyril and Methodius Day", + "1970-08-02": "Republic Day", + "1970-09-08": "Independence Day", + "1970-10-11": "Day of Macedonian Uprising in 1941", + "1970-10-23": "Day of the Macedonian Revolutionary Struggle", + "1970-11-30": "Eid al-Fitr* (*estimated)", + "1970-12-08": "Saint Clement of Ohrid Day", + "1971-01-01": "New Year's Day", + "1971-01-07": "Christmas Day (Orthodox)", + "1971-04-19": "Easter Monday (Orthodox)", + "1971-05-01": "Labour Day", + "1971-05-24": "Saints Cyril and Methodius Day", + "1971-08-02": "Republic Day", + "1971-09-08": "Independence Day", + "1971-10-11": "Day of Macedonian Uprising in 1941", + "1971-10-23": "Day of the Macedonian Revolutionary Struggle", + "1971-11-19": "Eid al-Fitr* (*estimated)", + "1971-12-08": "Saint Clement of Ohrid Day", + "1972-01-01": "New Year's Day", + "1972-01-07": "Christmas Day (Orthodox)", + "1972-04-10": "Easter Monday (Orthodox)", + "1972-05-01": "Labour Day", + "1972-05-24": "Saints Cyril and Methodius Day", + "1972-08-02": "Republic Day", + "1972-09-08": "Independence Day", + "1972-10-11": "Day of Macedonian Uprising in 1941", + "1972-10-23": "Day of the Macedonian Revolutionary Struggle", + "1972-11-07": "Eid al-Fitr* (*estimated)", + "1972-12-08": "Saint Clement of Ohrid Day", + "1973-01-01": "New Year's Day", + "1973-01-07": "Christmas Day (Orthodox)", + "1973-04-30": "Easter Monday (Orthodox)", + "1973-05-01": "Labour Day", + "1973-05-24": "Saints Cyril and Methodius Day", + "1973-08-02": "Republic Day", + "1973-09-08": "Independence Day", + "1973-10-11": "Day of Macedonian Uprising in 1941", + "1973-10-23": "Day of the Macedonian Revolutionary Struggle", + "1973-10-27": "Eid al-Fitr* (*estimated)", + "1973-12-08": "Saint Clement of Ohrid Day", + "1974-01-01": "New Year's Day", + "1974-01-07": "Christmas Day (Orthodox)", + "1974-04-15": "Easter Monday (Orthodox)", + "1974-05-01": "Labour Day", + "1974-05-24": "Saints Cyril and Methodius Day", + "1974-08-02": "Republic Day", + "1974-09-08": "Independence Day", + "1974-10-11": "Day of Macedonian Uprising in 1941", + "1974-10-16": "Eid al-Fitr* (*estimated)", + "1974-10-23": "Day of the Macedonian Revolutionary Struggle", + "1974-12-08": "Saint Clement of Ohrid Day", + "1975-01-01": "New Year's Day", + "1975-01-07": "Christmas Day (Orthodox)", + "1975-05-01": "Labour Day", + "1975-05-05": "Easter Monday (Orthodox)", + "1975-05-24": "Saints Cyril and Methodius Day", + "1975-08-02": "Republic Day", + "1975-09-08": "Independence Day", + "1975-10-06": "Eid al-Fitr* (*estimated)", + "1975-10-11": "Day of Macedonian Uprising in 1941", + "1975-10-23": "Day of the Macedonian Revolutionary Struggle", + "1975-12-08": "Saint Clement of Ohrid Day", + "1976-01-01": "New Year's Day", + "1976-01-07": "Christmas Day (Orthodox)", + "1976-04-26": "Easter Monday (Orthodox)", + "1976-05-01": "Labour Day", + "1976-05-24": "Saints Cyril and Methodius Day", + "1976-08-02": "Republic Day", + "1976-09-08": "Independence Day", + "1976-09-24": "Eid al-Fitr* (*estimated)", + "1976-10-11": "Day of Macedonian Uprising in 1941", + "1976-10-23": "Day of the Macedonian Revolutionary Struggle", + "1976-12-08": "Saint Clement of Ohrid Day", + "1977-01-01": "New Year's Day", + "1977-01-07": "Christmas Day (Orthodox)", + "1977-04-11": "Easter Monday (Orthodox)", + "1977-05-01": "Labour Day", + "1977-05-24": "Saints Cyril and Methodius Day", + "1977-08-02": "Republic Day", + "1977-09-08": "Independence Day", + "1977-09-14": "Eid al-Fitr* (*estimated)", + "1977-10-11": "Day of Macedonian Uprising in 1941", + "1977-10-23": "Day of the Macedonian Revolutionary Struggle", + "1977-12-08": "Saint Clement of Ohrid Day", + "1978-01-01": "New Year's Day", + "1978-01-07": "Christmas Day (Orthodox)", + "1978-05-01": "Easter Monday (Orthodox); Labour Day", + "1978-05-24": "Saints Cyril and Methodius Day", + "1978-08-02": "Republic Day", + "1978-09-03": "Eid al-Fitr* (*estimated)", + "1978-09-08": "Independence Day", + "1978-10-11": "Day of Macedonian Uprising in 1941", + "1978-10-23": "Day of the Macedonian Revolutionary Struggle", + "1978-12-08": "Saint Clement of Ohrid Day", + "1979-01-01": "New Year's Day", + "1979-01-07": "Christmas Day (Orthodox)", + "1979-04-23": "Easter Monday (Orthodox)", + "1979-05-01": "Labour Day", + "1979-05-24": "Saints Cyril and Methodius Day", + "1979-08-02": "Republic Day", + "1979-08-23": "Eid al-Fitr* (*estimated)", + "1979-09-08": "Independence Day", + "1979-10-11": "Day of Macedonian Uprising in 1941", + "1979-10-23": "Day of the Macedonian Revolutionary Struggle", + "1979-12-08": "Saint Clement of Ohrid Day", + "1980-01-01": "New Year's Day", + "1980-01-07": "Christmas Day (Orthodox)", + "1980-04-07": "Easter Monday (Orthodox)", + "1980-05-01": "Labour Day", + "1980-05-24": "Saints Cyril and Methodius Day", + "1980-08-02": "Republic Day", + "1980-08-12": "Eid al-Fitr* (*estimated)", + "1980-09-08": "Independence Day", + "1980-10-11": "Day of Macedonian Uprising in 1941", + "1980-10-23": "Day of the Macedonian Revolutionary Struggle", + "1980-12-08": "Saint Clement of Ohrid Day", + "1981-01-01": "New Year's Day", + "1981-01-07": "Christmas Day (Orthodox)", + "1981-04-27": "Easter Monday (Orthodox)", + "1981-05-01": "Labour Day", + "1981-05-24": "Saints Cyril and Methodius Day", + "1981-08-01": "Eid al-Fitr* (*estimated)", + "1981-08-02": "Republic Day", + "1981-09-08": "Independence Day", + "1981-10-11": "Day of Macedonian Uprising in 1941", + "1981-10-23": "Day of the Macedonian Revolutionary Struggle", + "1981-12-08": "Saint Clement of Ohrid Day", + "1982-01-01": "New Year's Day", + "1982-01-07": "Christmas Day (Orthodox)", + "1982-04-19": "Easter Monday (Orthodox)", + "1982-05-01": "Labour Day", + "1982-05-24": "Saints Cyril and Methodius Day", + "1982-07-21": "Eid al-Fitr* (*estimated)", + "1982-08-02": "Republic Day", + "1982-09-08": "Independence Day", + "1982-10-11": "Day of Macedonian Uprising in 1941", + "1982-10-23": "Day of the Macedonian Revolutionary Struggle", + "1982-12-08": "Saint Clement of Ohrid Day", + "1983-01-01": "New Year's Day", + "1983-01-07": "Christmas Day (Orthodox)", + "1983-05-01": "Labour Day", + "1983-05-09": "Easter Monday (Orthodox)", + "1983-05-24": "Saints Cyril and Methodius Day", + "1983-07-11": "Eid al-Fitr* (*estimated)", + "1983-08-02": "Republic Day", + "1983-09-08": "Independence Day", + "1983-10-11": "Day of Macedonian Uprising in 1941", + "1983-10-23": "Day of the Macedonian Revolutionary Struggle", + "1983-12-08": "Saint Clement of Ohrid Day", + "1984-01-01": "New Year's Day", + "1984-01-07": "Christmas Day (Orthodox)", + "1984-04-23": "Easter Monday (Orthodox)", + "1984-05-01": "Labour Day", + "1984-05-24": "Saints Cyril and Methodius Day", + "1984-06-30": "Eid al-Fitr* (*estimated)", + "1984-08-02": "Republic Day", + "1984-09-08": "Independence Day", + "1984-10-11": "Day of Macedonian Uprising in 1941", + "1984-10-23": "Day of the Macedonian Revolutionary Struggle", + "1984-12-08": "Saint Clement of Ohrid Day", + "1985-01-01": "New Year's Day", + "1985-01-07": "Christmas Day (Orthodox)", + "1985-04-15": "Easter Monday (Orthodox)", + "1985-05-01": "Labour Day", + "1985-05-24": "Saints Cyril and Methodius Day", + "1985-06-19": "Eid al-Fitr* (*estimated)", + "1985-08-02": "Republic Day", + "1985-09-08": "Independence Day", + "1985-10-11": "Day of Macedonian Uprising in 1941", + "1985-10-23": "Day of the Macedonian Revolutionary Struggle", + "1985-12-08": "Saint Clement of Ohrid Day", + "1986-01-01": "New Year's Day", + "1986-01-07": "Christmas Day (Orthodox)", + "1986-05-01": "Labour Day", + "1986-05-05": "Easter Monday (Orthodox)", + "1986-05-24": "Saints Cyril and Methodius Day", + "1986-06-08": "Eid al-Fitr* (*estimated)", + "1986-08-02": "Republic Day", + "1986-09-08": "Independence Day", + "1986-10-11": "Day of Macedonian Uprising in 1941", + "1986-10-23": "Day of the Macedonian Revolutionary Struggle", + "1986-12-08": "Saint Clement of Ohrid Day", + "1987-01-01": "New Year's Day", + "1987-01-07": "Christmas Day (Orthodox)", + "1987-04-20": "Easter Monday (Orthodox)", + "1987-05-01": "Labour Day", + "1987-05-24": "Saints Cyril and Methodius Day", + "1987-05-28": "Eid al-Fitr* (*estimated)", + "1987-08-02": "Republic Day", + "1987-09-08": "Independence Day", + "1987-10-11": "Day of Macedonian Uprising in 1941", + "1987-10-23": "Day of the Macedonian Revolutionary Struggle", + "1987-12-08": "Saint Clement of Ohrid Day", + "1988-01-01": "New Year's Day", + "1988-01-07": "Christmas Day (Orthodox)", + "1988-04-11": "Easter Monday (Orthodox)", + "1988-05-01": "Labour Day", + "1988-05-16": "Eid al-Fitr* (*estimated)", + "1988-05-24": "Saints Cyril and Methodius Day", + "1988-08-02": "Republic Day", + "1988-09-08": "Independence Day", + "1988-10-11": "Day of Macedonian Uprising in 1941", + "1988-10-23": "Day of the Macedonian Revolutionary Struggle", + "1988-12-08": "Saint Clement of Ohrid Day", + "1989-01-01": "New Year's Day", + "1989-01-07": "Christmas Day (Orthodox)", + "1989-05-01": "Easter Monday (Orthodox); Labour Day", + "1989-05-06": "Eid al-Fitr* (*estimated)", + "1989-05-24": "Saints Cyril and Methodius Day", + "1989-08-02": "Republic Day", + "1989-09-08": "Independence Day", + "1989-10-11": "Day of Macedonian Uprising in 1941", + "1989-10-23": "Day of the Macedonian Revolutionary Struggle", + "1989-12-08": "Saint Clement of Ohrid Day", + "1990-01-01": "New Year's Day", + "1990-01-07": "Christmas Day (Orthodox)", + "1990-04-16": "Easter Monday (Orthodox)", + "1990-04-26": "Eid al-Fitr* (*estimated)", + "1990-05-01": "Labour Day", + "1990-05-24": "Saints Cyril and Methodius Day", + "1990-08-02": "Republic Day", + "1990-09-08": "Independence Day", + "1990-10-11": "Day of Macedonian Uprising in 1941", + "1990-10-23": "Day of the Macedonian Revolutionary Struggle", + "1990-12-08": "Saint Clement of Ohrid Day", + "1991-01-01": "New Year's Day", + "1991-01-07": "Christmas Day (Orthodox)", + "1991-04-08": "Easter Monday (Orthodox)", + "1991-04-15": "Eid al-Fitr* (*estimated)", + "1991-05-01": "Labour Day", + "1991-05-24": "Saints Cyril and Methodius Day", + "1991-08-02": "Republic Day", + "1991-09-08": "Independence Day", + "1991-10-11": "Day of Macedonian Uprising in 1941", + "1991-10-23": "Day of the Macedonian Revolutionary Struggle", + "1991-12-08": "Saint Clement of Ohrid Day", + "1992-01-01": "New Year's Day", + "1992-01-07": "Christmas Day (Orthodox)", + "1992-04-04": "Eid al-Fitr* (*estimated)", + "1992-04-27": "Easter Monday (Orthodox)", + "1992-05-01": "Labour Day", + "1992-05-24": "Saints Cyril and Methodius Day", + "1992-08-02": "Republic Day", + "1992-09-08": "Independence Day", + "1992-10-11": "Day of Macedonian Uprising in 1941", + "1992-10-23": "Day of the Macedonian Revolutionary Struggle", + "1992-12-08": "Saint Clement of Ohrid Day", + "1993-01-01": "New Year's Day", + "1993-01-07": "Christmas Day (Orthodox)", + "1993-03-24": "Eid al-Fitr* (*estimated)", + "1993-04-19": "Easter Monday (Orthodox)", + "1993-05-01": "Labour Day", + "1993-05-24": "Saints Cyril and Methodius Day", + "1993-08-02": "Republic Day", + "1993-09-08": "Independence Day", + "1993-10-11": "Day of Macedonian Uprising in 1941", + "1993-10-23": "Day of the Macedonian Revolutionary Struggle", + "1993-12-08": "Saint Clement of Ohrid Day", + "1994-01-01": "New Year's Day", + "1994-01-07": "Christmas Day (Orthodox)", + "1994-03-13": "Eid al-Fitr* (*estimated)", + "1994-05-01": "Labour Day", + "1994-05-02": "Easter Monday (Orthodox)", + "1994-05-24": "Saints Cyril and Methodius Day", + "1994-08-02": "Republic Day", + "1994-09-08": "Independence Day", + "1994-10-11": "Day of Macedonian Uprising in 1941", + "1994-10-23": "Day of the Macedonian Revolutionary Struggle", + "1994-12-08": "Saint Clement of Ohrid Day", + "1995-01-01": "New Year's Day", + "1995-01-07": "Christmas Day (Orthodox)", + "1995-03-02": "Eid al-Fitr* (*estimated)", + "1995-04-24": "Easter Monday (Orthodox)", + "1995-05-01": "Labour Day", + "1995-05-24": "Saints Cyril and Methodius Day", + "1995-08-02": "Republic Day", + "1995-09-08": "Independence Day", + "1995-10-11": "Day of Macedonian Uprising in 1941", + "1995-10-23": "Day of the Macedonian Revolutionary Struggle", + "1995-12-08": "Saint Clement of Ohrid Day", + "1996-01-01": "New Year's Day", + "1996-01-07": "Christmas Day (Orthodox)", + "1996-02-19": "Eid al-Fitr* (*estimated)", + "1996-04-15": "Easter Monday (Orthodox)", + "1996-05-01": "Labour Day", + "1996-05-24": "Saints Cyril and Methodius Day", + "1996-08-02": "Republic Day", + "1996-09-08": "Independence Day", + "1996-10-11": "Day of Macedonian Uprising in 1941", + "1996-10-23": "Day of the Macedonian Revolutionary Struggle", + "1996-12-08": "Saint Clement of Ohrid Day", + "1997-01-01": "New Year's Day", + "1997-01-07": "Christmas Day (Orthodox)", + "1997-02-08": "Eid al-Fitr* (*estimated)", + "1997-04-28": "Easter Monday (Orthodox)", + "1997-05-01": "Labour Day", + "1997-05-24": "Saints Cyril and Methodius Day", + "1997-08-02": "Republic Day", + "1997-09-08": "Independence Day", + "1997-10-11": "Day of Macedonian Uprising in 1941", + "1997-10-23": "Day of the Macedonian Revolutionary Struggle", + "1997-12-08": "Saint Clement of Ohrid Day", + "1998-01-01": "New Year's Day", + "1998-01-07": "Christmas Day (Orthodox)", + "1998-01-29": "Eid al-Fitr* (*estimated)", + "1998-04-20": "Easter Monday (Orthodox)", + "1998-05-01": "Labour Day", + "1998-05-24": "Saints Cyril and Methodius Day", + "1998-08-02": "Republic Day", + "1998-09-08": "Independence Day", + "1998-10-11": "Day of Macedonian Uprising in 1941", + "1998-10-23": "Day of the Macedonian Revolutionary Struggle", + "1998-12-08": "Saint Clement of Ohrid Day", + "1999-01-01": "New Year's Day", + "1999-01-07": "Christmas Day (Orthodox)", + "1999-01-18": "Eid al-Fitr* (*estimated)", + "1999-04-12": "Easter Monday (Orthodox)", + "1999-05-01": "Labour Day", + "1999-05-24": "Saints Cyril and Methodius Day", + "1999-08-02": "Republic Day", + "1999-09-08": "Independence Day", + "1999-10-11": "Day of Macedonian Uprising in 1941", + "1999-10-23": "Day of the Macedonian Revolutionary Struggle", + "1999-12-08": "Saint Clement of Ohrid Day", + "2000-01-01": "New Year's Day", + "2000-01-07": "Christmas Day (Orthodox)", + "2000-01-08": "Eid al-Fitr* (*estimated)", + "2000-05-01": "Easter Monday (Orthodox); Labour Day", + "2000-05-24": "Saints Cyril and Methodius Day", + "2000-08-02": "Republic Day", + "2000-09-08": "Independence Day", + "2000-10-11": "Day of Macedonian Uprising in 1941", + "2000-10-23": "Day of the Macedonian Revolutionary Struggle", + "2000-12-08": "Saint Clement of Ohrid Day", + "2000-12-27": "Eid al-Fitr* (*estimated)", + "2001-01-01": "New Year's Day", + "2001-01-07": "Christmas Day (Orthodox)", + "2001-04-16": "Easter Monday (Orthodox)", + "2001-05-01": "Labour Day", + "2001-05-24": "Saints Cyril and Methodius Day", + "2001-08-02": "Republic Day", + "2001-09-08": "Independence Day", + "2001-10-11": "Day of Macedonian Uprising in 1941", + "2001-10-23": "Day of the Macedonian Revolutionary Struggle", + "2001-12-08": "Saint Clement of Ohrid Day", + "2001-12-16": "Eid al-Fitr* (*estimated)", + "2002-01-01": "New Year's Day", + "2002-01-07": "Christmas Day (Orthodox)", + "2002-05-01": "Labour Day", + "2002-05-06": "Easter Monday (Orthodox)", + "2002-05-24": "Saints Cyril and Methodius Day", + "2002-08-02": "Republic Day", + "2002-09-08": "Independence Day", + "2002-10-11": "Day of Macedonian Uprising in 1941", + "2002-10-23": "Day of the Macedonian Revolutionary Struggle", + "2002-12-05": "Eid al-Fitr* (*estimated)", + "2002-12-08": "Saint Clement of Ohrid Day", + "2003-01-01": "New Year's Day", + "2003-01-07": "Christmas Day (Orthodox)", + "2003-04-28": "Easter Monday (Orthodox)", + "2003-05-01": "Labour Day", + "2003-05-24": "Saints Cyril and Methodius Day", + "2003-08-02": "Republic Day", + "2003-09-08": "Independence Day", + "2003-10-11": "Day of Macedonian Uprising in 1941", + "2003-10-23": "Day of the Macedonian Revolutionary Struggle", + "2003-11-25": "Eid al-Fitr* (*estimated)", + "2003-12-08": "Saint Clement of Ohrid Day", + "2004-01-01": "New Year's Day", + "2004-01-07": "Christmas Day (Orthodox)", + "2004-04-12": "Easter Monday (Orthodox)", + "2004-05-01": "Labour Day", + "2004-05-24": "Saints Cyril and Methodius Day", + "2004-08-02": "Republic Day", + "2004-09-08": "Independence Day", + "2004-10-11": "Day of Macedonian Uprising in 1941", + "2004-10-23": "Day of the Macedonian Revolutionary Struggle", + "2004-11-14": "Eid al-Fitr* (*estimated)", + "2004-12-08": "Saint Clement of Ohrid Day", + "2005-01-01": "New Year's Day", + "2005-01-07": "Christmas Day (Orthodox)", + "2005-05-01": "Labour Day", + "2005-05-02": "Easter Monday (Orthodox)", + "2005-05-24": "Saints Cyril and Methodius Day", + "2005-08-02": "Republic Day", + "2005-09-08": "Independence Day", + "2005-10-11": "Day of Macedonian Uprising in 1941", + "2005-10-23": "Day of the Macedonian Revolutionary Struggle", + "2005-11-03": "Eid al-Fitr* (*estimated)", + "2005-12-08": "Saint Clement of Ohrid Day", + "2006-01-01": "New Year's Day", + "2006-01-07": "Christmas Day (Orthodox)", + "2006-04-24": "Easter Monday (Orthodox)", + "2006-05-01": "Labour Day", + "2006-05-24": "Saints Cyril and Methodius Day", + "2006-08-02": "Republic Day", + "2006-09-08": "Independence Day", + "2006-10-11": "Day of Macedonian Uprising in 1941", + "2006-10-23": "Day of the Macedonian Revolutionary Struggle; Eid al-Fitr* (*estimated)", + "2006-12-08": "Saint Clement of Ohrid Day", + "2007-01-01": "New Year's Day", + "2007-01-07": "Christmas Day (Orthodox)", + "2007-04-09": "Easter Monday (Orthodox)", + "2007-05-01": "Labour Day", + "2007-05-24": "Saints Cyril and Methodius Day", + "2007-08-02": "Republic Day", + "2007-09-08": "Independence Day", + "2007-10-11": "Day of Macedonian Uprising in 1941", + "2007-10-13": "Eid al-Fitr* (*estimated)", + "2007-10-23": "Day of the Macedonian Revolutionary Struggle", + "2007-12-08": "Saint Clement of Ohrid Day", + "2008-01-01": "New Year's Day", + "2008-01-07": "Christmas Day (Orthodox)", + "2008-04-28": "Easter Monday (Orthodox)", + "2008-05-01": "Labour Day", + "2008-05-24": "Saints Cyril and Methodius Day", + "2008-08-02": "Republic Day", + "2008-09-08": "Independence Day", + "2008-10-01": "Eid al-Fitr* (*estimated)", + "2008-10-11": "Day of Macedonian Uprising in 1941", + "2008-10-23": "Day of the Macedonian Revolutionary Struggle", + "2008-12-08": "Saint Clement of Ohrid Day", + "2009-01-01": "New Year's Day", + "2009-01-07": "Christmas Day (Orthodox)", + "2009-04-20": "Easter Monday (Orthodox)", + "2009-05-01": "Labour Day", + "2009-05-24": "Saints Cyril and Methodius Day", + "2009-08-02": "Republic Day", + "2009-09-08": "Independence Day", + "2009-09-20": "Eid al-Fitr* (*estimated)", + "2009-10-11": "Day of Macedonian Uprising in 1941", + "2009-10-23": "Day of the Macedonian Revolutionary Struggle", + "2009-12-08": "Saint Clement of Ohrid Day", + "2010-01-01": "New Year's Day", + "2010-01-07": "Christmas Day (Orthodox)", + "2010-04-05": "Easter Monday (Orthodox)", + "2010-05-01": "Labour Day", + "2010-05-24": "Saints Cyril and Methodius Day", + "2010-08-02": "Republic Day", + "2010-09-08": "Independence Day", + "2010-09-10": "Eid al-Fitr* (*estimated)", + "2010-10-11": "Day of Macedonian Uprising in 1941", + "2010-10-23": "Day of the Macedonian Revolutionary Struggle", + "2010-12-08": "Saint Clement of Ohrid Day", + "2011-01-01": "New Year's Day", + "2011-01-07": "Christmas Day (Orthodox)", + "2011-04-25": "Easter Monday (Orthodox)", + "2011-05-01": "Labour Day", + "2011-05-24": "Saints Cyril and Methodius Day", + "2011-08-02": "Republic Day", + "2011-08-30": "Eid al-Fitr* (*estimated)", + "2011-09-08": "Independence Day", + "2011-10-11": "Day of Macedonian Uprising in 1941", + "2011-10-23": "Day of the Macedonian Revolutionary Struggle", + "2011-12-08": "Saint Clement of Ohrid Day", + "2012-01-01": "New Year's Day", + "2012-01-07": "Christmas Day (Orthodox)", + "2012-04-16": "Easter Monday (Orthodox)", + "2012-05-01": "Labour Day", + "2012-05-24": "Saints Cyril and Methodius Day", + "2012-08-02": "Republic Day", + "2012-08-19": "Eid al-Fitr* (*estimated)", + "2012-09-08": "Independence Day", + "2012-10-11": "Day of Macedonian Uprising in 1941", + "2012-10-23": "Day of the Macedonian Revolutionary Struggle", + "2012-12-08": "Saint Clement of Ohrid Day", + "2013-01-01": "New Year's Day", + "2013-01-07": "Christmas Day (Orthodox)", + "2013-05-01": "Labour Day", + "2013-05-06": "Easter Monday (Orthodox)", + "2013-05-24": "Saints Cyril and Methodius Day", + "2013-08-02": "Republic Day", + "2013-08-08": "Eid al-Fitr* (*estimated)", + "2013-09-08": "Independence Day", + "2013-10-11": "Day of Macedonian Uprising in 1941", + "2013-10-23": "Day of the Macedonian Revolutionary Struggle", + "2013-12-08": "Saint Clement of Ohrid Day", + "2014-01-01": "New Year's Day", + "2014-01-07": "Christmas Day (Orthodox)", + "2014-04-21": "Easter Monday (Orthodox)", + "2014-05-01": "Labour Day", + "2014-05-24": "Saints Cyril and Methodius Day", + "2014-07-28": "Eid al-Fitr* (*estimated)", + "2014-08-02": "Republic Day", + "2014-09-08": "Independence Day", + "2014-10-11": "Day of Macedonian Uprising in 1941", + "2014-10-23": "Day of the Macedonian Revolutionary Struggle", + "2014-12-08": "Saint Clement of Ohrid Day", + "2015-01-01": "New Year's Day", + "2015-01-07": "Christmas Day (Orthodox)", + "2015-04-13": "Easter Monday (Orthodox)", + "2015-05-01": "Labour Day", + "2015-05-24": "Saints Cyril and Methodius Day", + "2015-07-17": "Eid al-Fitr* (*estimated)", + "2015-08-02": "Republic Day", + "2015-09-08": "Independence Day", + "2015-10-11": "Day of Macedonian Uprising in 1941", + "2015-10-23": "Day of the Macedonian Revolutionary Struggle", + "2015-12-08": "Saint Clement of Ohrid Day", + "2016-01-01": "New Year's Day", + "2016-01-07": "Christmas Day (Orthodox)", + "2016-05-01": "Labour Day", + "2016-05-02": "Easter Monday (Orthodox)", + "2016-05-24": "Saints Cyril and Methodius Day", + "2016-07-06": "Eid al-Fitr* (*estimated)", + "2016-08-02": "Republic Day", + "2016-09-08": "Independence Day", + "2016-10-11": "Day of Macedonian Uprising in 1941", + "2016-10-23": "Day of the Macedonian Revolutionary Struggle", + "2016-12-08": "Saint Clement of Ohrid Day", + "2017-01-01": "New Year's Day", + "2017-01-07": "Christmas Day (Orthodox)", + "2017-04-17": "Easter Monday (Orthodox)", + "2017-05-01": "Labour Day", + "2017-05-24": "Saints Cyril and Methodius Day", + "2017-06-25": "Eid al-Fitr* (*estimated)", + "2017-08-02": "Republic Day", + "2017-09-08": "Independence Day", + "2017-10-11": "Day of Macedonian Uprising in 1941", + "2017-10-23": "Day of the Macedonian Revolutionary Struggle", + "2017-12-08": "Saint Clement of Ohrid Day", + "2018-01-01": "New Year's Day", + "2018-01-07": "Christmas Day (Orthodox)", + "2018-04-09": "Easter Monday (Orthodox)", + "2018-05-01": "Labour Day", + "2018-05-24": "Saints Cyril and Methodius Day", + "2018-06-15": "Eid al-Fitr* (*estimated)", + "2018-08-02": "Republic Day", + "2018-09-08": "Independence Day", + "2018-10-11": "Day of Macedonian Uprising in 1941", + "2018-10-23": "Day of the Macedonian Revolutionary Struggle", + "2018-12-08": "Saint Clement of Ohrid Day", + "2019-01-01": "New Year's Day", + "2019-01-07": "Christmas Day (Orthodox)", + "2019-04-29": "Easter Monday (Orthodox)", + "2019-05-01": "Labour Day", + "2019-05-24": "Saints Cyril and Methodius Day", + "2019-06-04": "Eid al-Fitr* (*estimated)", + "2019-08-02": "Republic Day", + "2019-09-08": "Independence Day", + "2019-10-11": "Day of Macedonian Uprising in 1941", + "2019-10-23": "Day of the Macedonian Revolutionary Struggle", + "2019-12-08": "Saint Clement of Ohrid Day", + "2020-01-01": "New Year's Day", + "2020-01-07": "Christmas Day (Orthodox)", + "2020-04-20": "Easter Monday (Orthodox)", + "2020-05-01": "Labour Day", + "2020-05-24": "Eid al-Fitr* (*estimated); Saints Cyril and Methodius Day", + "2020-08-02": "Republic Day", + "2020-09-08": "Independence Day", + "2020-10-11": "Day of Macedonian Uprising in 1941", + "2020-10-23": "Day of the Macedonian Revolutionary Struggle", + "2020-12-08": "Saint Clement of Ohrid Day", + "2021-01-01": "New Year's Day", + "2021-01-07": "Christmas Day (Orthodox)", + "2021-05-01": "Labour Day", + "2021-05-03": "Easter Monday (Orthodox)", + "2021-05-13": "Eid al-Fitr* (*estimated)", + "2021-05-24": "Saints Cyril and Methodius Day", + "2021-08-02": "Republic Day", + "2021-09-08": "Independence Day", + "2021-10-11": "Day of Macedonian Uprising in 1941", + "2021-10-23": "Day of the Macedonian Revolutionary Struggle", + "2021-12-08": "Saint Clement of Ohrid Day", + "2022-01-01": "New Year's Day", + "2022-01-07": "Christmas Day (Orthodox)", + "2022-04-25": "Easter Monday (Orthodox)", + "2022-05-01": "Labour Day", + "2022-05-02": "Eid al-Fitr* (*estimated)", + "2022-05-24": "Saints Cyril and Methodius Day", + "2022-08-02": "Republic Day", + "2022-09-08": "Independence Day", + "2022-10-11": "Day of Macedonian Uprising in 1941", + "2022-10-23": "Day of the Macedonian Revolutionary Struggle", + "2022-12-08": "Saint Clement of Ohrid Day", + "2023-01-01": "New Year's Day", + "2023-01-07": "Christmas Day (Orthodox)", + "2023-04-17": "Easter Monday (Orthodox)", + "2023-04-21": "Eid al-Fitr* (*estimated)", + "2023-05-01": "Labour Day", + "2023-05-24": "Saints Cyril and Methodius Day", + "2023-08-02": "Republic Day", + "2023-09-08": "Independence Day", + "2023-10-11": "Day of Macedonian Uprising in 1941", + "2023-10-23": "Day of the Macedonian Revolutionary Struggle", + "2023-12-08": "Saint Clement of Ohrid Day", + "2024-01-01": "New Year's Day", + "2024-01-07": "Christmas Day (Orthodox)", + "2024-04-10": "Eid al-Fitr* (*estimated)", + "2024-05-01": "Labour Day", + "2024-05-06": "Easter Monday (Orthodox)", + "2024-05-24": "Saints Cyril and Methodius Day", + "2024-08-02": "Republic Day", + "2024-09-08": "Independence Day", + "2024-10-11": "Day of Macedonian Uprising in 1941", + "2024-10-23": "Day of the Macedonian Revolutionary Struggle", + "2024-12-08": "Saint Clement of Ohrid Day", + "2025-01-01": "New Year's Day", + "2025-01-07": "Christmas Day (Orthodox)", + "2025-03-30": "Eid al-Fitr* (*estimated)", + "2025-04-21": "Easter Monday (Orthodox)", + "2025-05-01": "Labour Day", + "2025-05-24": "Saints Cyril and Methodius Day", + "2025-08-02": "Republic Day", + "2025-09-08": "Independence Day", + "2025-10-11": "Day of Macedonian Uprising in 1941", + "2025-10-23": "Day of the Macedonian Revolutionary Struggle", + "2025-12-08": "Saint Clement of Ohrid Day", + "2026-01-01": "New Year's Day", + "2026-01-07": "Christmas Day (Orthodox)", + "2026-03-20": "Eid al-Fitr* (*estimated)", + "2026-04-13": "Easter Monday (Orthodox)", + "2026-05-01": "Labour Day", + "2026-05-24": "Saints Cyril and Methodius Day", + "2026-08-02": "Republic Day", + "2026-09-08": "Independence Day", + "2026-10-11": "Day of Macedonian Uprising in 1941", + "2026-10-23": "Day of the Macedonian Revolutionary Struggle", + "2026-12-08": "Saint Clement of Ohrid Day", + "2027-01-01": "New Year's Day", + "2027-01-07": "Christmas Day (Orthodox)", + "2027-03-09": "Eid al-Fitr* (*estimated)", + "2027-05-01": "Labour Day", + "2027-05-03": "Easter Monday (Orthodox)", + "2027-05-24": "Saints Cyril and Methodius Day", + "2027-08-02": "Republic Day", + "2027-09-08": "Independence Day", + "2027-10-11": "Day of Macedonian Uprising in 1941", + "2027-10-23": "Day of the Macedonian Revolutionary Struggle", + "2027-12-08": "Saint Clement of Ohrid Day", + "2028-01-01": "New Year's Day", + "2028-01-07": "Christmas Day (Orthodox)", + "2028-02-26": "Eid al-Fitr* (*estimated)", + "2028-04-17": "Easter Monday (Orthodox)", + "2028-05-01": "Labour Day", + "2028-05-24": "Saints Cyril and Methodius Day", + "2028-08-02": "Republic Day", + "2028-09-08": "Independence Day", + "2028-10-11": "Day of Macedonian Uprising in 1941", + "2028-10-23": "Day of the Macedonian Revolutionary Struggle", + "2028-12-08": "Saint Clement of Ohrid Day", + "2029-01-01": "New Year's Day", + "2029-01-07": "Christmas Day (Orthodox)", + "2029-02-14": "Eid al-Fitr* (*estimated)", + "2029-04-09": "Easter Monday (Orthodox)", + "2029-05-01": "Labour Day", + "2029-05-24": "Saints Cyril and Methodius Day", + "2029-08-02": "Republic Day", + "2029-09-08": "Independence Day", + "2029-10-11": "Day of Macedonian Uprising in 1941", + "2029-10-23": "Day of the Macedonian Revolutionary Struggle", + "2029-12-08": "Saint Clement of Ohrid Day", + "2030-01-01": "New Year's Day", + "2030-01-07": "Christmas Day (Orthodox)", + "2030-02-04": "Eid al-Fitr* (*estimated)", + "2030-04-29": "Easter Monday (Orthodox)", + "2030-05-01": "Labour Day", + "2030-05-24": "Saints Cyril and Methodius Day", + "2030-08-02": "Republic Day", + "2030-09-08": "Independence Day", + "2030-10-11": "Day of Macedonian Uprising in 1941", + "2030-10-23": "Day of the Macedonian Revolutionary Struggle", + "2030-12-08": "Saint Clement of Ohrid Day", + "2031-01-01": "New Year's Day", + "2031-01-07": "Christmas Day (Orthodox)", + "2031-01-24": "Eid al-Fitr* (*estimated)", + "2031-04-14": "Easter Monday (Orthodox)", + "2031-05-01": "Labour Day", + "2031-05-24": "Saints Cyril and Methodius Day", + "2031-08-02": "Republic Day", + "2031-09-08": "Independence Day", + "2031-10-11": "Day of Macedonian Uprising in 1941", + "2031-10-23": "Day of the Macedonian Revolutionary Struggle", + "2031-12-08": "Saint Clement of Ohrid Day", + "2032-01-01": "New Year's Day", + "2032-01-07": "Christmas Day (Orthodox)", + "2032-01-14": "Eid al-Fitr* (*estimated)", + "2032-05-01": "Labour Day", + "2032-05-03": "Easter Monday (Orthodox)", + "2032-05-24": "Saints Cyril and Methodius Day", + "2032-08-02": "Republic Day", + "2032-09-08": "Independence Day", + "2032-10-11": "Day of Macedonian Uprising in 1941", + "2032-10-23": "Day of the Macedonian Revolutionary Struggle", + "2032-12-08": "Saint Clement of Ohrid Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "Eid al-Fitr* (*estimated)", + "2033-01-07": "Christmas Day (Orthodox)", + "2033-04-25": "Easter Monday (Orthodox)", + "2033-05-01": "Labour Day", + "2033-05-24": "Saints Cyril and Methodius Day", + "2033-08-02": "Republic Day", + "2033-09-08": "Independence Day", + "2033-10-11": "Day of Macedonian Uprising in 1941", + "2033-10-23": "Day of the Macedonian Revolutionary Struggle", + "2033-12-08": "Saint Clement of Ohrid Day", + "2033-12-23": "Eid al-Fitr* (*estimated)", + "2034-01-01": "New Year's Day", + "2034-01-07": "Christmas Day (Orthodox)", + "2034-04-10": "Easter Monday (Orthodox)", + "2034-05-01": "Labour Day", + "2034-05-24": "Saints Cyril and Methodius Day", + "2034-08-02": "Republic Day", + "2034-09-08": "Independence Day", + "2034-10-11": "Day of Macedonian Uprising in 1941", + "2034-10-23": "Day of the Macedonian Revolutionary Struggle", + "2034-12-08": "Saint Clement of Ohrid Day", + "2034-12-12": "Eid al-Fitr* (*estimated)", + "2035-01-01": "New Year's Day", + "2035-01-07": "Christmas Day (Orthodox)", + "2035-04-30": "Easter Monday (Orthodox)", + "2035-05-01": "Labour Day", + "2035-05-24": "Saints Cyril and Methodius Day", + "2035-08-02": "Republic Day", + "2035-09-08": "Independence Day", + "2035-10-11": "Day of Macedonian Uprising in 1941", + "2035-10-23": "Day of the Macedonian Revolutionary Struggle", + "2035-12-01": "Eid al-Fitr* (*estimated)", + "2035-12-08": "Saint Clement of Ohrid Day", + "2036-01-01": "New Year's Day", + "2036-01-07": "Christmas Day (Orthodox)", + "2036-04-21": "Easter Monday (Orthodox)", + "2036-05-01": "Labour Day", + "2036-05-24": "Saints Cyril and Methodius Day", + "2036-08-02": "Republic Day", + "2036-09-08": "Independence Day", + "2036-10-11": "Day of Macedonian Uprising in 1941", + "2036-10-23": "Day of the Macedonian Revolutionary Struggle", + "2036-11-19": "Eid al-Fitr* (*estimated)", + "2036-12-08": "Saint Clement of Ohrid Day", + "2037-01-01": "New Year's Day", + "2037-01-07": "Christmas Day (Orthodox)", + "2037-04-06": "Easter Monday (Orthodox)", + "2037-05-01": "Labour Day", + "2037-05-24": "Saints Cyril and Methodius Day", + "2037-08-02": "Republic Day", + "2037-09-08": "Independence Day", + "2037-10-11": "Day of Macedonian Uprising in 1941", + "2037-10-23": "Day of the Macedonian Revolutionary Struggle", + "2037-11-08": "Eid al-Fitr* (*estimated)", + "2037-12-08": "Saint Clement of Ohrid Day", + "2038-01-01": "New Year's Day", + "2038-01-07": "Christmas Day (Orthodox)", + "2038-04-26": "Easter Monday (Orthodox)", + "2038-05-01": "Labour Day", + "2038-05-24": "Saints Cyril and Methodius Day", + "2038-08-02": "Republic Day", + "2038-09-08": "Independence Day", + "2038-10-11": "Day of Macedonian Uprising in 1941", + "2038-10-23": "Day of the Macedonian Revolutionary Struggle", + "2038-10-29": "Eid al-Fitr* (*estimated)", + "2038-12-08": "Saint Clement of Ohrid Day", + "2039-01-01": "New Year's Day", + "2039-01-07": "Christmas Day (Orthodox)", + "2039-04-18": "Easter Monday (Orthodox)", + "2039-05-01": "Labour Day", + "2039-05-24": "Saints Cyril and Methodius Day", + "2039-08-02": "Republic Day", + "2039-09-08": "Independence Day", + "2039-10-11": "Day of Macedonian Uprising in 1941", + "2039-10-19": "Eid al-Fitr* (*estimated)", + "2039-10-23": "Day of the Macedonian Revolutionary Struggle", + "2039-12-08": "Saint Clement of Ohrid Day", + "2040-01-01": "New Year's Day", + "2040-01-07": "Christmas Day (Orthodox)", + "2040-05-01": "Labour Day", + "2040-05-07": "Easter Monday (Orthodox)", + "2040-05-24": "Saints Cyril and Methodius Day", + "2040-08-02": "Republic Day", + "2040-09-08": "Independence Day", + "2040-10-07": "Eid al-Fitr* (*estimated)", + "2040-10-11": "Day of Macedonian Uprising in 1941", + "2040-10-23": "Day of the Macedonian Revolutionary Struggle", + "2040-12-08": "Saint Clement of Ohrid Day", + "2041-01-01": "New Year's Day", + "2041-01-07": "Christmas Day (Orthodox)", + "2041-04-22": "Easter Monday (Orthodox)", + "2041-05-01": "Labour Day", + "2041-05-24": "Saints Cyril and Methodius Day", + "2041-08-02": "Republic Day", + "2041-09-08": "Independence Day", + "2041-09-26": "Eid al-Fitr* (*estimated)", + "2041-10-11": "Day of Macedonian Uprising in 1941", + "2041-10-23": "Day of the Macedonian Revolutionary Struggle", + "2041-12-08": "Saint Clement of Ohrid Day", + "2042-01-01": "New Year's Day", + "2042-01-07": "Christmas Day (Orthodox)", + "2042-04-14": "Easter Monday (Orthodox)", + "2042-05-01": "Labour Day", + "2042-05-24": "Saints Cyril and Methodius Day", + "2042-08-02": "Republic Day", + "2042-09-08": "Independence Day", + "2042-09-15": "Eid al-Fitr* (*estimated)", + "2042-10-11": "Day of Macedonian Uprising in 1941", + "2042-10-23": "Day of the Macedonian Revolutionary Struggle", + "2042-12-08": "Saint Clement of Ohrid Day", + "2043-01-01": "New Year's Day", + "2043-01-07": "Christmas Day (Orthodox)", + "2043-05-01": "Labour Day", + "2043-05-04": "Easter Monday (Orthodox)", + "2043-05-24": "Saints Cyril and Methodius Day", + "2043-08-02": "Republic Day", + "2043-09-04": "Eid al-Fitr* (*estimated)", + "2043-09-08": "Independence Day", + "2043-10-11": "Day of Macedonian Uprising in 1941", + "2043-10-23": "Day of the Macedonian Revolutionary Struggle", + "2043-12-08": "Saint Clement of Ohrid Day", + "2044-01-01": "New Year's Day", + "2044-01-07": "Christmas Day (Orthodox)", + "2044-04-25": "Easter Monday (Orthodox)", + "2044-05-01": "Labour Day", + "2044-05-24": "Saints Cyril and Methodius Day", + "2044-08-02": "Republic Day", + "2044-08-24": "Eid al-Fitr* (*estimated)", + "2044-09-08": "Independence Day", + "2044-10-11": "Day of Macedonian Uprising in 1941", + "2044-10-23": "Day of the Macedonian Revolutionary Struggle", + "2044-12-08": "Saint Clement of Ohrid Day", + "2045-01-01": "New Year's Day", + "2045-01-07": "Christmas Day (Orthodox)", + "2045-04-10": "Easter Monday (Orthodox)", + "2045-05-01": "Labour Day", + "2045-05-24": "Saints Cyril and Methodius Day", + "2045-08-02": "Republic Day", + "2045-08-14": "Eid al-Fitr* (*estimated)", + "2045-09-08": "Independence Day", + "2045-10-11": "Day of Macedonian Uprising in 1941", + "2045-10-23": "Day of the Macedonian Revolutionary Struggle", + "2045-12-08": "Saint Clement of Ohrid Day", + "2046-01-01": "New Year's Day", + "2046-01-07": "Christmas Day (Orthodox)", + "2046-04-30": "Easter Monday (Orthodox)", + "2046-05-01": "Labour Day", + "2046-05-24": "Saints Cyril and Methodius Day", + "2046-08-02": "Republic Day", + "2046-08-03": "Eid al-Fitr* (*estimated)", + "2046-09-08": "Independence Day", + "2046-10-11": "Day of Macedonian Uprising in 1941", + "2046-10-23": "Day of the Macedonian Revolutionary Struggle", + "2046-12-08": "Saint Clement of Ohrid Day", + "2047-01-01": "New Year's Day", + "2047-01-07": "Christmas Day (Orthodox)", + "2047-04-22": "Easter Monday (Orthodox)", + "2047-05-01": "Labour Day", + "2047-05-24": "Saints Cyril and Methodius Day", + "2047-07-24": "Eid al-Fitr* (*estimated)", + "2047-08-02": "Republic Day", + "2047-09-08": "Independence Day", + "2047-10-11": "Day of Macedonian Uprising in 1941", + "2047-10-23": "Day of the Macedonian Revolutionary Struggle", + "2047-12-08": "Saint Clement of Ohrid Day", + "2048-01-01": "New Year's Day", + "2048-01-07": "Christmas Day (Orthodox)", + "2048-04-06": "Easter Monday (Orthodox)", + "2048-05-01": "Labour Day", + "2048-05-24": "Saints Cyril and Methodius Day", + "2048-07-12": "Eid al-Fitr* (*estimated)", + "2048-08-02": "Republic Day", + "2048-09-08": "Independence Day", + "2048-10-11": "Day of Macedonian Uprising in 1941", + "2048-10-23": "Day of the Macedonian Revolutionary Struggle", + "2048-12-08": "Saint Clement of Ohrid Day", + "2049-01-01": "New Year's Day", + "2049-01-07": "Christmas Day (Orthodox)", + "2049-04-26": "Easter Monday (Orthodox)", + "2049-05-01": "Labour Day", + "2049-05-24": "Saints Cyril and Methodius Day", + "2049-07-01": "Eid al-Fitr* (*estimated)", + "2049-08-02": "Republic Day", + "2049-09-08": "Independence Day", + "2049-10-11": "Day of Macedonian Uprising in 1941", + "2049-10-23": "Day of the Macedonian Revolutionary Struggle", + "2049-12-08": "Saint Clement of Ohrid Day", + "2050-01-01": "New Year's Day", + "2050-01-07": "Christmas Day (Orthodox)", + "2050-04-18": "Easter Monday (Orthodox)", + "2050-05-01": "Labour Day", + "2050-05-24": "Saints Cyril and Methodius Day", + "2050-06-20": "Eid al-Fitr* (*estimated)", + "2050-08-02": "Republic Day", + "2050-09-08": "Independence Day", + "2050-10-11": "Day of Macedonian Uprising in 1941", + "2050-10-23": "Day of the Macedonian Revolutionary Struggle", + "2050-12-08": "Saint Clement of Ohrid Day" +} diff --git a/snapshots/countries/MP.json b/snapshots/countries/MP.json new file mode 100644 index 000000000..db00b678c --- /dev/null +++ b/snapshots/countries/MP.json @@ -0,0 +1,1650 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-02": "New Year's Day (Observed)", + "1950-02-22": "Washington's Birthday", + "1950-03-24": "Commonwealth Covenant Day", + "1950-04-07": "Good Friday", + "1950-05-30": "Memorial Day", + "1950-07-04": "Independence Day", + "1950-09-04": "Labor Day", + "1950-10-09": "Commonwealth Cultural Day", + "1950-10-12": "Columbus Day", + "1950-11-03": "Citizenship Day (Observed)", + "1950-11-04": "Citizenship Day", + "1950-11-10": "Armistice Day (Observed)", + "1950-11-11": "Armistice Day", + "1950-11-23": "Thanksgiving", + "1950-12-08": "Constitution Day", + "1950-12-25": "Christmas Day", + "1951-01-01": "New Year's Day", + "1951-02-22": "Washington's Birthday", + "1951-03-23": "Commonwealth Covenant Day (Observed); Good Friday", + "1951-03-24": "Commonwealth Covenant Day", + "1951-05-30": "Memorial Day", + "1951-07-04": "Independence Day", + "1951-09-03": "Labor Day", + "1951-10-08": "Commonwealth Cultural Day", + "1951-10-12": "Columbus Day", + "1951-11-04": "Citizenship Day", + "1951-11-05": "Citizenship Day (Observed)", + "1951-11-11": "Armistice Day", + "1951-11-12": "Armistice Day (Observed)", + "1951-11-22": "Thanksgiving", + "1951-12-07": "Constitution Day (Observed)", + "1951-12-08": "Constitution Day", + "1951-12-25": "Christmas Day", + "1952-01-01": "New Year's Day", + "1952-02-22": "Washington's Birthday", + "1952-03-24": "Commonwealth Covenant Day", + "1952-04-11": "Good Friday", + "1952-05-30": "Memorial Day", + "1952-07-04": "Independence Day", + "1952-09-01": "Labor Day", + "1952-10-12": "Columbus Day", + "1952-10-13": "Commonwealth Cultural Day", + "1952-11-04": "Citizenship Day", + "1952-11-11": "Armistice Day", + "1952-11-27": "Thanksgiving", + "1952-12-08": "Constitution Day", + "1952-12-25": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-02-22": "Washington's Birthday", + "1953-03-24": "Commonwealth Covenant Day", + "1953-04-03": "Good Friday", + "1953-05-30": "Memorial Day", + "1953-07-03": "Independence Day (Observed)", + "1953-07-04": "Independence Day", + "1953-09-07": "Labor Day", + "1953-10-12": "Columbus Day; Commonwealth Cultural Day", + "1953-11-04": "Citizenship Day", + "1953-11-11": "Armistice Day", + "1953-11-26": "Thanksgiving", + "1953-12-08": "Constitution Day", + "1953-12-25": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-02-22": "Washington's Birthday", + "1954-03-24": "Commonwealth Covenant Day", + "1954-04-16": "Good Friday", + "1954-05-30": "Memorial Day", + "1954-07-04": "Independence Day", + "1954-07-05": "Independence Day (Observed)", + "1954-09-06": "Labor Day", + "1954-10-11": "Commonwealth Cultural Day", + "1954-10-12": "Columbus Day", + "1954-11-04": "Citizenship Day", + "1954-11-11": "Veterans Day", + "1954-11-25": "Thanksgiving", + "1954-12-08": "Constitution Day", + "1954-12-24": "Christmas Day (Observed)", + "1954-12-25": "Christmas Day", + "1954-12-31": "New Year's Day (Observed)", + "1955-01-01": "New Year's Day", + "1955-02-22": "Washington's Birthday", + "1955-03-24": "Commonwealth Covenant Day", + "1955-04-08": "Good Friday", + "1955-05-30": "Memorial Day", + "1955-07-04": "Independence Day", + "1955-09-05": "Labor Day", + "1955-10-10": "Commonwealth Cultural Day", + "1955-10-12": "Columbus Day", + "1955-11-04": "Citizenship Day", + "1955-11-11": "Veterans Day", + "1955-11-24": "Thanksgiving", + "1955-12-08": "Constitution Day", + "1955-12-25": "Christmas Day", + "1955-12-26": "Christmas Day (Observed)", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year's Day (Observed)", + "1956-02-22": "Washington's Birthday", + "1956-03-23": "Commonwealth Covenant Day (Observed)", + "1956-03-24": "Commonwealth Covenant Day", + "1956-03-30": "Good Friday", + "1956-05-30": "Memorial Day", + "1956-07-04": "Independence Day", + "1956-09-03": "Labor Day", + "1956-10-08": "Commonwealth Cultural Day", + "1956-10-12": "Columbus Day", + "1956-11-04": "Citizenship Day", + "1956-11-05": "Citizenship Day (Observed)", + "1956-11-11": "Veterans Day", + "1956-11-12": "Veterans Day (Observed)", + "1956-11-22": "Thanksgiving", + "1956-12-07": "Constitution Day (Observed)", + "1956-12-08": "Constitution Day", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-02-22": "Washington's Birthday", + "1957-03-24": "Commonwealth Covenant Day", + "1957-03-25": "Commonwealth Covenant Day (Observed)", + "1957-04-19": "Good Friday", + "1957-05-30": "Memorial Day", + "1957-07-04": "Independence Day", + "1957-09-02": "Labor Day", + "1957-10-12": "Columbus Day", + "1957-10-14": "Commonwealth Cultural Day", + "1957-11-04": "Citizenship Day", + "1957-11-11": "Veterans Day", + "1957-11-28": "Thanksgiving", + "1957-12-08": "Constitution Day", + "1957-12-09": "Constitution Day (Observed)", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-02-22": "Washington's Birthday", + "1958-03-24": "Commonwealth Covenant Day", + "1958-04-04": "Good Friday", + "1958-05-30": "Memorial Day", + "1958-07-04": "Independence Day", + "1958-09-01": "Labor Day", + "1958-10-12": "Columbus Day", + "1958-10-13": "Commonwealth Cultural Day", + "1958-11-04": "Citizenship Day", + "1958-11-11": "Veterans Day", + "1958-11-27": "Thanksgiving", + "1958-12-08": "Constitution Day", + "1958-12-25": "Christmas Day", + "1959-01-01": "New Year's Day", + "1959-02-22": "Washington's Birthday", + "1959-03-24": "Commonwealth Covenant Day", + "1959-03-27": "Good Friday", + "1959-05-30": "Memorial Day", + "1959-07-03": "Independence Day (Observed)", + "1959-07-04": "Independence Day", + "1959-09-07": "Labor Day", + "1959-10-12": "Columbus Day; Commonwealth Cultural Day", + "1959-11-04": "Citizenship Day", + "1959-11-11": "Veterans Day", + "1959-11-26": "Thanksgiving", + "1959-12-08": "Constitution Day", + "1959-12-25": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-02-22": "Washington's Birthday", + "1960-03-24": "Commonwealth Covenant Day", + "1960-04-15": "Good Friday", + "1960-05-30": "Memorial Day", + "1960-07-04": "Independence Day", + "1960-09-05": "Labor Day", + "1960-10-10": "Commonwealth Cultural Day", + "1960-10-12": "Columbus Day", + "1960-11-04": "Citizenship Day", + "1960-11-11": "Veterans Day", + "1960-11-24": "Thanksgiving", + "1960-12-08": "Constitution Day", + "1960-12-25": "Christmas Day", + "1960-12-26": "Christmas Day (Observed)", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day (Observed)", + "1961-02-22": "Washington's Birthday", + "1961-03-24": "Commonwealth Covenant Day", + "1961-03-31": "Good Friday", + "1961-05-30": "Memorial Day", + "1961-07-04": "Independence Day", + "1961-09-04": "Labor Day", + "1961-10-09": "Commonwealth Cultural Day", + "1961-10-12": "Columbus Day", + "1961-11-03": "Citizenship Day (Observed)", + "1961-11-04": "Citizenship Day", + "1961-11-10": "Veterans Day (Observed)", + "1961-11-11": "Veterans Day", + "1961-11-23": "Thanksgiving", + "1961-12-08": "Constitution Day", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-02-22": "Washington's Birthday", + "1962-03-23": "Commonwealth Covenant Day (Observed)", + "1962-03-24": "Commonwealth Covenant Day", + "1962-04-20": "Good Friday", + "1962-05-30": "Memorial Day", + "1962-07-04": "Independence Day", + "1962-09-03": "Labor Day", + "1962-10-08": "Commonwealth Cultural Day", + "1962-10-12": "Columbus Day", + "1962-11-04": "Citizenship Day", + "1962-11-05": "Citizenship Day (Observed)", + "1962-11-11": "Veterans Day", + "1962-11-12": "Veterans Day (Observed)", + "1962-11-22": "Thanksgiving", + "1962-12-07": "Constitution Day (Observed)", + "1962-12-08": "Constitution Day", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-02-22": "Washington's Birthday", + "1963-03-24": "Commonwealth Covenant Day", + "1963-03-25": "Commonwealth Covenant Day (Observed)", + "1963-04-12": "Good Friday", + "1963-05-30": "Memorial Day", + "1963-07-04": "Independence Day", + "1963-09-02": "Labor Day", + "1963-10-12": "Columbus Day", + "1963-10-14": "Commonwealth Cultural Day", + "1963-11-04": "Citizenship Day", + "1963-11-11": "Veterans Day", + "1963-11-28": "Thanksgiving", + "1963-12-08": "Constitution Day", + "1963-12-09": "Constitution Day (Observed)", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-02-22": "Washington's Birthday", + "1964-03-24": "Commonwealth Covenant Day", + "1964-03-27": "Good Friday", + "1964-05-30": "Memorial Day", + "1964-07-03": "Independence Day (Observed)", + "1964-07-04": "Independence Day", + "1964-09-07": "Labor Day", + "1964-10-12": "Columbus Day; Commonwealth Cultural Day", + "1964-11-04": "Citizenship Day", + "1964-11-11": "Veterans Day", + "1964-11-26": "Thanksgiving", + "1964-12-08": "Constitution Day", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-02-22": "Washington's Birthday", + "1965-03-24": "Commonwealth Covenant Day", + "1965-04-16": "Good Friday", + "1965-05-30": "Memorial Day", + "1965-07-04": "Independence Day", + "1965-07-05": "Independence Day (Observed)", + "1965-09-06": "Labor Day", + "1965-10-11": "Commonwealth Cultural Day", + "1965-10-12": "Columbus Day", + "1965-11-04": "Citizenship Day", + "1965-11-11": "Veterans Day", + "1965-11-25": "Thanksgiving", + "1965-12-08": "Constitution Day", + "1965-12-24": "Christmas Day (Observed)", + "1965-12-25": "Christmas Day", + "1965-12-31": "New Year's Day (Observed)", + "1966-01-01": "New Year's Day", + "1966-02-22": "Washington's Birthday", + "1966-03-24": "Commonwealth Covenant Day", + "1966-04-08": "Good Friday", + "1966-05-30": "Memorial Day", + "1966-07-04": "Independence Day", + "1966-09-05": "Labor Day", + "1966-10-10": "Commonwealth Cultural Day", + "1966-10-12": "Columbus Day", + "1966-11-04": "Citizenship Day", + "1966-11-11": "Veterans Day", + "1966-11-24": "Thanksgiving", + "1966-12-08": "Constitution Day", + "1966-12-25": "Christmas Day", + "1966-12-26": "Christmas Day (Observed)", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day (Observed)", + "1967-02-22": "Washington's Birthday", + "1967-03-24": "Commonwealth Covenant Day; Good Friday", + "1967-05-30": "Memorial Day", + "1967-07-04": "Independence Day", + "1967-09-04": "Labor Day", + "1967-10-09": "Commonwealth Cultural Day", + "1967-10-12": "Columbus Day", + "1967-11-03": "Citizenship Day (Observed)", + "1967-11-04": "Citizenship Day", + "1967-11-10": "Veterans Day (Observed)", + "1967-11-11": "Veterans Day", + "1967-11-23": "Thanksgiving", + "1967-12-08": "Constitution Day", + "1967-12-25": "Christmas Day", + "1968-01-01": "New Year's Day", + "1968-02-22": "Washington's Birthday", + "1968-03-24": "Commonwealth Covenant Day", + "1968-03-25": "Commonwealth Covenant Day (Observed)", + "1968-04-12": "Good Friday", + "1968-05-30": "Memorial Day", + "1968-07-04": "Independence Day", + "1968-09-02": "Labor Day", + "1968-10-12": "Columbus Day", + "1968-10-14": "Commonwealth Cultural Day", + "1968-11-04": "Citizenship Day", + "1968-11-11": "Veterans Day", + "1968-11-28": "Thanksgiving", + "1968-12-08": "Constitution Day", + "1968-12-09": "Constitution Day (Observed)", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-02-22": "Washington's Birthday", + "1969-03-24": "Commonwealth Covenant Day", + "1969-04-04": "Good Friday", + "1969-05-30": "Memorial Day", + "1969-07-04": "Independence Day", + "1969-09-01": "Labor Day", + "1969-10-12": "Columbus Day", + "1969-10-13": "Commonwealth Cultural Day", + "1969-11-04": "Citizenship Day", + "1969-11-11": "Veterans Day", + "1969-11-27": "Thanksgiving", + "1969-12-08": "Constitution Day", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-02-22": "Washington's Birthday", + "1970-03-24": "Commonwealth Covenant Day", + "1970-03-27": "Good Friday", + "1970-05-30": "Memorial Day", + "1970-07-03": "Independence Day (Observed)", + "1970-07-04": "Independence Day", + "1970-09-07": "Labor Day", + "1970-10-12": "Columbus Day; Commonwealth Cultural Day", + "1970-11-04": "Citizenship Day", + "1970-11-11": "Veterans Day", + "1970-11-26": "Thanksgiving", + "1970-12-08": "Constitution Day", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-02-15": "Washington's Birthday", + "1971-03-24": "Commonwealth Covenant Day", + "1971-04-09": "Good Friday", + "1971-05-31": "Memorial Day", + "1971-07-04": "Independence Day", + "1971-07-05": "Independence Day (Observed)", + "1971-09-06": "Labor Day", + "1971-10-11": "Columbus Day; Commonwealth Cultural Day", + "1971-10-25": "Veterans Day", + "1971-11-04": "Citizenship Day", + "1971-11-25": "Thanksgiving", + "1971-12-08": "Constitution Day", + "1971-12-24": "Christmas Day (Observed)", + "1971-12-25": "Christmas Day", + "1971-12-31": "New Year's Day (Observed)", + "1972-01-01": "New Year's Day", + "1972-02-21": "Washington's Birthday", + "1972-03-24": "Commonwealth Covenant Day", + "1972-03-31": "Good Friday", + "1972-05-29": "Memorial Day", + "1972-07-04": "Independence Day", + "1972-09-04": "Labor Day", + "1972-10-09": "Columbus Day; Commonwealth Cultural Day", + "1972-10-23": "Veterans Day", + "1972-11-03": "Citizenship Day (Observed)", + "1972-11-04": "Citizenship Day", + "1972-11-23": "Thanksgiving", + "1972-12-08": "Constitution Day", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-02-19": "Washington's Birthday", + "1973-03-23": "Commonwealth Covenant Day (Observed)", + "1973-03-24": "Commonwealth Covenant Day", + "1973-04-20": "Good Friday", + "1973-05-28": "Memorial Day", + "1973-07-04": "Independence Day", + "1973-09-03": "Labor Day", + "1973-10-08": "Columbus Day; Commonwealth Cultural Day", + "1973-10-22": "Veterans Day", + "1973-11-04": "Citizenship Day", + "1973-11-05": "Citizenship Day (Observed)", + "1973-11-22": "Thanksgiving", + "1973-12-07": "Constitution Day (Observed)", + "1973-12-08": "Constitution Day", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-02-18": "Washington's Birthday", + "1974-03-24": "Commonwealth Covenant Day", + "1974-03-25": "Commonwealth Covenant Day (Observed)", + "1974-04-12": "Good Friday", + "1974-05-27": "Memorial Day", + "1974-07-04": "Independence Day", + "1974-09-02": "Labor Day", + "1974-10-14": "Columbus Day; Commonwealth Cultural Day", + "1974-10-28": "Veterans Day", + "1974-11-04": "Citizenship Day", + "1974-11-28": "Thanksgiving", + "1974-12-08": "Constitution Day", + "1974-12-09": "Constitution Day (Observed)", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-02-17": "Washington's Birthday", + "1975-03-24": "Commonwealth Covenant Day", + "1975-03-28": "Good Friday", + "1975-05-26": "Memorial Day", + "1975-07-04": "Independence Day", + "1975-09-01": "Labor Day", + "1975-10-13": "Columbus Day; Commonwealth Cultural Day", + "1975-10-27": "Veterans Day", + "1975-11-04": "Citizenship Day", + "1975-11-27": "Thanksgiving", + "1975-12-08": "Constitution Day", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-02-16": "Washington's Birthday", + "1976-03-24": "Commonwealth Covenant Day", + "1976-04-16": "Good Friday", + "1976-05-31": "Memorial Day", + "1976-07-04": "Independence Day", + "1976-07-05": "Independence Day (Observed)", + "1976-09-06": "Labor Day", + "1976-10-11": "Columbus Day; Commonwealth Cultural Day", + "1976-10-25": "Veterans Day", + "1976-11-04": "Citizenship Day", + "1976-11-25": "Thanksgiving", + "1976-12-08": "Constitution Day", + "1976-12-24": "Christmas Day (Observed)", + "1976-12-25": "Christmas Day", + "1976-12-31": "New Year's Day (Observed)", + "1977-01-01": "New Year's Day", + "1977-02-21": "Washington's Birthday", + "1977-03-24": "Commonwealth Covenant Day", + "1977-04-08": "Good Friday", + "1977-05-30": "Memorial Day", + "1977-07-04": "Independence Day", + "1977-09-05": "Labor Day", + "1977-10-10": "Columbus Day; Commonwealth Cultural Day", + "1977-10-24": "Veterans Day", + "1977-11-04": "Citizenship Day", + "1977-11-24": "Thanksgiving", + "1977-12-08": "Constitution Day", + "1977-12-25": "Christmas Day", + "1977-12-26": "Christmas Day (Observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day (Observed)", + "1978-02-20": "Washington's Birthday", + "1978-03-24": "Commonwealth Covenant Day; Good Friday", + "1978-05-29": "Memorial Day", + "1978-07-04": "Independence Day", + "1978-09-04": "Labor Day", + "1978-10-09": "Columbus Day; Commonwealth Cultural Day", + "1978-11-03": "Citizenship Day (Observed)", + "1978-11-04": "Citizenship Day", + "1978-11-10": "Veterans Day (Observed)", + "1978-11-11": "Veterans Day", + "1978-11-23": "Thanksgiving", + "1978-12-08": "Constitution Day", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-02-19": "Washington's Birthday", + "1979-03-23": "Commonwealth Covenant Day (Observed)", + "1979-03-24": "Commonwealth Covenant Day", + "1979-04-13": "Good Friday", + "1979-05-28": "Memorial Day", + "1979-07-04": "Independence Day", + "1979-09-03": "Labor Day", + "1979-10-08": "Columbus Day; Commonwealth Cultural Day", + "1979-11-04": "Citizenship Day", + "1979-11-05": "Citizenship Day (Observed)", + "1979-11-11": "Veterans Day", + "1979-11-12": "Veterans Day (Observed)", + "1979-11-22": "Thanksgiving", + "1979-12-07": "Constitution Day (Observed)", + "1979-12-08": "Constitution Day", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-02-18": "Washington's Birthday", + "1980-03-24": "Commonwealth Covenant Day", + "1980-04-04": "Good Friday", + "1980-05-26": "Memorial Day", + "1980-07-04": "Independence Day", + "1980-09-01": "Labor Day", + "1980-10-13": "Columbus Day; Commonwealth Cultural Day", + "1980-11-04": "Citizenship Day", + "1980-11-11": "Veterans Day", + "1980-11-27": "Thanksgiving", + "1980-12-08": "Constitution Day", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-02-16": "Washington's Birthday", + "1981-03-24": "Commonwealth Covenant Day", + "1981-04-17": "Good Friday", + "1981-05-25": "Memorial Day", + "1981-07-03": "Independence Day (Observed)", + "1981-07-04": "Independence Day", + "1981-09-07": "Labor Day", + "1981-10-12": "Columbus Day; Commonwealth Cultural Day", + "1981-11-04": "Citizenship Day", + "1981-11-11": "Veterans Day", + "1981-11-26": "Thanksgiving", + "1981-12-08": "Constitution Day", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-02-15": "Washington's Birthday", + "1982-03-24": "Commonwealth Covenant Day", + "1982-04-09": "Good Friday", + "1982-05-31": "Memorial Day", + "1982-07-04": "Independence Day", + "1982-07-05": "Independence Day (Observed)", + "1982-09-06": "Labor Day", + "1982-10-11": "Columbus Day; Commonwealth Cultural Day", + "1982-11-04": "Citizenship Day", + "1982-11-11": "Veterans Day", + "1982-11-25": "Thanksgiving", + "1982-12-08": "Constitution Day", + "1982-12-24": "Christmas Day (Observed)", + "1982-12-25": "Christmas Day", + "1982-12-31": "New Year's Day (Observed)", + "1983-01-01": "New Year's Day", + "1983-02-21": "Washington's Birthday", + "1983-03-24": "Commonwealth Covenant Day", + "1983-04-01": "Good Friday", + "1983-05-30": "Memorial Day", + "1983-07-04": "Independence Day", + "1983-09-05": "Labor Day", + "1983-10-10": "Columbus Day; Commonwealth Cultural Day", + "1983-11-04": "Citizenship Day", + "1983-11-11": "Veterans Day", + "1983-11-24": "Thanksgiving", + "1983-12-08": "Constitution Day", + "1983-12-25": "Christmas Day", + "1983-12-26": "Christmas Day (Observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (Observed)", + "1984-02-20": "Washington's Birthday", + "1984-03-23": "Commonwealth Covenant Day (Observed)", + "1984-03-24": "Commonwealth Covenant Day", + "1984-04-20": "Good Friday", + "1984-05-28": "Memorial Day", + "1984-07-04": "Independence Day", + "1984-09-03": "Labor Day", + "1984-10-08": "Columbus Day; Commonwealth Cultural Day", + "1984-11-04": "Citizenship Day", + "1984-11-05": "Citizenship Day (Observed)", + "1984-11-11": "Veterans Day", + "1984-11-12": "Veterans Day (Observed)", + "1984-11-22": "Thanksgiving", + "1984-12-07": "Constitution Day (Observed)", + "1984-12-08": "Constitution Day", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-02-18": "Washington's Birthday", + "1985-03-24": "Commonwealth Covenant Day", + "1985-03-25": "Commonwealth Covenant Day (Observed)", + "1985-04-05": "Good Friday", + "1985-05-27": "Memorial Day", + "1985-07-04": "Independence Day", + "1985-09-02": "Labor Day", + "1985-10-14": "Columbus Day; Commonwealth Cultural Day", + "1985-11-04": "Citizenship Day", + "1985-11-11": "Veterans Day", + "1985-11-28": "Thanksgiving", + "1985-12-08": "Constitution Day", + "1985-12-09": "Constitution Day (Observed)", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-01-20": "Martin Luther King Jr. Day", + "1986-02-17": "Washington's Birthday", + "1986-03-24": "Commonwealth Covenant Day", + "1986-03-28": "Good Friday", + "1986-05-26": "Memorial Day", + "1986-07-04": "Independence Day", + "1986-09-01": "Labor Day", + "1986-10-13": "Columbus Day; Commonwealth Cultural Day", + "1986-11-04": "Citizenship Day", + "1986-11-11": "Veterans Day", + "1986-11-27": "Thanksgiving", + "1986-12-08": "Constitution Day", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-01-19": "Martin Luther King Jr. Day", + "1987-02-16": "Washington's Birthday", + "1987-03-24": "Commonwealth Covenant Day", + "1987-04-17": "Good Friday", + "1987-05-25": "Memorial Day", + "1987-07-03": "Independence Day (Observed)", + "1987-07-04": "Independence Day", + "1987-09-07": "Labor Day", + "1987-10-12": "Columbus Day; Commonwealth Cultural Day", + "1987-11-04": "Citizenship Day", + "1987-11-11": "Veterans Day", + "1987-11-26": "Thanksgiving", + "1987-12-08": "Constitution Day", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-01-18": "Martin Luther King Jr. Day", + "1988-02-15": "Washington's Birthday", + "1988-03-24": "Commonwealth Covenant Day", + "1988-04-01": "Good Friday", + "1988-05-30": "Memorial Day", + "1988-07-04": "Independence Day", + "1988-09-05": "Labor Day", + "1988-10-10": "Columbus Day; Commonwealth Cultural Day", + "1988-11-04": "Citizenship Day", + "1988-11-11": "Veterans Day", + "1988-11-24": "Thanksgiving", + "1988-12-08": "Constitution Day", + "1988-12-25": "Christmas Day", + "1988-12-26": "Christmas Day (Observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (Observed)", + "1989-01-16": "Martin Luther King Jr. Day", + "1989-02-20": "Washington's Birthday", + "1989-03-24": "Commonwealth Covenant Day; Good Friday", + "1989-05-29": "Memorial Day", + "1989-07-04": "Independence Day", + "1989-09-04": "Labor Day", + "1989-10-09": "Columbus Day; Commonwealth Cultural Day", + "1989-11-03": "Citizenship Day (Observed)", + "1989-11-04": "Citizenship Day", + "1989-11-10": "Veterans Day (Observed)", + "1989-11-11": "Veterans Day", + "1989-11-23": "Thanksgiving", + "1989-12-08": "Constitution Day", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-01-15": "Martin Luther King Jr. Day", + "1990-02-19": "Washington's Birthday", + "1990-03-23": "Commonwealth Covenant Day (Observed)", + "1990-03-24": "Commonwealth Covenant Day", + "1990-04-13": "Good Friday", + "1990-05-28": "Memorial Day", + "1990-07-04": "Independence Day", + "1990-09-03": "Labor Day", + "1990-10-08": "Columbus Day; Commonwealth Cultural Day", + "1990-11-04": "Citizenship Day", + "1990-11-05": "Citizenship Day (Observed)", + "1990-11-11": "Veterans Day", + "1990-11-12": "Veterans Day (Observed)", + "1990-11-22": "Thanksgiving", + "1990-12-07": "Constitution Day (Observed)", + "1990-12-08": "Constitution Day", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-01-21": "Martin Luther King Jr. Day", + "1991-02-18": "Washington's Birthday", + "1991-03-24": "Commonwealth Covenant Day", + "1991-03-25": "Commonwealth Covenant Day (Observed)", + "1991-03-29": "Good Friday", + "1991-05-27": "Memorial Day", + "1991-07-04": "Independence Day", + "1991-09-02": "Labor Day", + "1991-10-14": "Columbus Day; Commonwealth Cultural Day", + "1991-11-04": "Citizenship Day", + "1991-11-11": "Veterans Day", + "1991-11-28": "Thanksgiving", + "1991-12-08": "Constitution Day", + "1991-12-09": "Constitution Day (Observed)", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-01-20": "Martin Luther King Jr. Day", + "1992-02-17": "Washington's Birthday", + "1992-03-24": "Commonwealth Covenant Day", + "1992-04-17": "Good Friday", + "1992-05-25": "Memorial Day", + "1992-07-03": "Independence Day (Observed)", + "1992-07-04": "Independence Day", + "1992-09-07": "Labor Day", + "1992-10-12": "Columbus Day; Commonwealth Cultural Day", + "1992-11-04": "Citizenship Day", + "1992-11-11": "Veterans Day", + "1992-11-26": "Thanksgiving", + "1992-12-08": "Constitution Day", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-01-18": "Martin Luther King Jr. Day", + "1993-02-15": "Washington's Birthday", + "1993-03-24": "Commonwealth Covenant Day", + "1993-04-09": "Good Friday", + "1993-05-31": "Memorial Day", + "1993-07-04": "Independence Day", + "1993-07-05": "Independence Day (Observed)", + "1993-09-06": "Labor Day", + "1993-10-11": "Columbus Day; Commonwealth Cultural Day", + "1993-11-04": "Citizenship Day", + "1993-11-11": "Veterans Day", + "1993-11-25": "Thanksgiving", + "1993-12-08": "Constitution Day", + "1993-12-24": "Christmas Day (Observed)", + "1993-12-25": "Christmas Day", + "1993-12-31": "New Year's Day (Observed)", + "1994-01-01": "New Year's Day", + "1994-01-17": "Martin Luther King Jr. Day", + "1994-02-21": "Washington's Birthday", + "1994-03-24": "Commonwealth Covenant Day", + "1994-04-01": "Good Friday", + "1994-05-30": "Memorial Day", + "1994-07-04": "Independence Day", + "1994-09-05": "Labor Day", + "1994-10-10": "Columbus Day; Commonwealth Cultural Day", + "1994-11-04": "Citizenship Day", + "1994-11-11": "Veterans Day", + "1994-11-24": "Thanksgiving", + "1994-12-08": "Constitution Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day (Observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (Observed)", + "1995-01-16": "Martin Luther King Jr. Day", + "1995-02-20": "Washington's Birthday", + "1995-03-24": "Commonwealth Covenant Day", + "1995-04-14": "Good Friday", + "1995-05-29": "Memorial Day", + "1995-07-04": "Independence Day", + "1995-09-04": "Labor Day", + "1995-10-09": "Columbus Day; Commonwealth Cultural Day", + "1995-11-03": "Citizenship Day (Observed)", + "1995-11-04": "Citizenship Day", + "1995-11-10": "Veterans Day (Observed)", + "1995-11-11": "Veterans Day", + "1995-11-23": "Thanksgiving", + "1995-12-08": "Constitution Day", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-01-15": "Martin Luther King Jr. Day", + "1996-02-19": "Washington's Birthday", + "1996-03-24": "Commonwealth Covenant Day", + "1996-03-25": "Commonwealth Covenant Day (Observed)", + "1996-04-05": "Good Friday", + "1996-05-27": "Memorial Day", + "1996-07-04": "Independence Day", + "1996-09-02": "Labor Day", + "1996-10-14": "Columbus Day; Commonwealth Cultural Day", + "1996-11-04": "Citizenship Day", + "1996-11-11": "Veterans Day", + "1996-11-28": "Thanksgiving", + "1996-12-08": "Constitution Day", + "1996-12-09": "Constitution Day (Observed)", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-01-20": "Martin Luther King Jr. Day", + "1997-02-17": "Washington's Birthday", + "1997-03-24": "Commonwealth Covenant Day", + "1997-03-28": "Good Friday", + "1997-05-26": "Memorial Day", + "1997-07-04": "Independence Day", + "1997-09-01": "Labor Day", + "1997-10-13": "Columbus Day; Commonwealth Cultural Day", + "1997-11-04": "Citizenship Day", + "1997-11-11": "Veterans Day", + "1997-11-27": "Thanksgiving", + "1997-12-08": "Constitution Day", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-01-19": "Martin Luther King Jr. Day", + "1998-02-16": "Washington's Birthday", + "1998-03-24": "Commonwealth Covenant Day", + "1998-04-10": "Good Friday", + "1998-05-25": "Memorial Day", + "1998-07-03": "Independence Day (Observed)", + "1998-07-04": "Independence Day", + "1998-09-07": "Labor Day", + "1998-10-12": "Columbus Day; Commonwealth Cultural Day", + "1998-11-04": "Citizenship Day", + "1998-11-11": "Veterans Day", + "1998-11-26": "Thanksgiving", + "1998-12-08": "Constitution Day", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-01-18": "Martin Luther King Jr. Day", + "1999-02-15": "Washington's Birthday", + "1999-03-24": "Commonwealth Covenant Day", + "1999-04-02": "Good Friday", + "1999-05-31": "Memorial Day", + "1999-07-04": "Independence Day", + "1999-07-05": "Independence Day (Observed)", + "1999-09-06": "Labor Day", + "1999-10-11": "Columbus Day; Commonwealth Cultural Day", + "1999-11-04": "Citizenship Day", + "1999-11-11": "Veterans Day", + "1999-11-25": "Thanksgiving", + "1999-12-08": "Constitution Day", + "1999-12-24": "Christmas Day (Observed)", + "1999-12-25": "Christmas Day", + "1999-12-31": "New Year's Day (Observed)", + "2000-01-01": "New Year's Day", + "2000-01-17": "Martin Luther King Jr. Day", + "2000-02-21": "Washington's Birthday", + "2000-03-24": "Commonwealth Covenant Day", + "2000-04-21": "Good Friday", + "2000-05-29": "Memorial Day", + "2000-07-04": "Independence Day", + "2000-09-04": "Labor Day", + "2000-10-09": "Columbus Day; Commonwealth Cultural Day", + "2000-11-03": "Citizenship Day (Observed)", + "2000-11-04": "Citizenship Day", + "2000-11-10": "Veterans Day (Observed)", + "2000-11-11": "Veterans Day", + "2000-11-23": "Thanksgiving", + "2000-12-08": "Constitution Day", + "2000-12-25": "Christmas Day", + "2001-01-01": "New Year's Day", + "2001-01-15": "Martin Luther King Jr. Day", + "2001-02-19": "Washington's Birthday", + "2001-03-23": "Commonwealth Covenant Day (Observed)", + "2001-03-24": "Commonwealth Covenant Day", + "2001-04-13": "Good Friday", + "2001-05-28": "Memorial Day", + "2001-07-04": "Independence Day", + "2001-09-03": "Labor Day", + "2001-10-08": "Columbus Day; Commonwealth Cultural Day", + "2001-11-04": "Citizenship Day", + "2001-11-05": "Citizenship Day (Observed)", + "2001-11-11": "Veterans Day", + "2001-11-12": "Veterans Day (Observed)", + "2001-11-22": "Thanksgiving", + "2001-12-07": "Constitution Day (Observed)", + "2001-12-08": "Constitution Day", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-01-21": "Martin Luther King Jr. Day", + "2002-02-18": "Washington's Birthday", + "2002-03-24": "Commonwealth Covenant Day", + "2002-03-25": "Commonwealth Covenant Day (Observed)", + "2002-03-29": "Good Friday", + "2002-05-27": "Memorial Day", + "2002-07-04": "Independence Day", + "2002-09-02": "Labor Day", + "2002-10-14": "Columbus Day; Commonwealth Cultural Day", + "2002-11-04": "Citizenship Day", + "2002-11-11": "Veterans Day", + "2002-11-28": "Thanksgiving", + "2002-12-08": "Constitution Day", + "2002-12-09": "Constitution Day (Observed)", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-01-20": "Martin Luther King Jr. Day", + "2003-02-17": "Washington's Birthday", + "2003-03-24": "Commonwealth Covenant Day", + "2003-04-18": "Good Friday", + "2003-05-26": "Memorial Day", + "2003-07-04": "Independence Day", + "2003-09-01": "Labor Day", + "2003-10-13": "Columbus Day; Commonwealth Cultural Day", + "2003-11-04": "Citizenship Day", + "2003-11-11": "Veterans Day", + "2003-11-27": "Thanksgiving", + "2003-12-08": "Constitution Day", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-01-19": "Martin Luther King Jr. Day", + "2004-02-16": "Washington's Birthday", + "2004-03-24": "Commonwealth Covenant Day", + "2004-04-09": "Good Friday", + "2004-05-31": "Memorial Day", + "2004-07-04": "Independence Day", + "2004-07-05": "Independence Day (Observed)", + "2004-09-06": "Labor Day", + "2004-10-11": "Columbus Day; Commonwealth Cultural Day", + "2004-11-04": "Citizenship Day", + "2004-11-11": "Veterans Day", + "2004-11-25": "Thanksgiving", + "2004-12-08": "Constitution Day", + "2004-12-24": "Christmas Day (Observed)", + "2004-12-25": "Christmas Day", + "2004-12-31": "New Year's Day (Observed)", + "2005-01-01": "New Year's Day", + "2005-01-17": "Martin Luther King Jr. Day", + "2005-02-21": "Washington's Birthday", + "2005-03-24": "Commonwealth Covenant Day", + "2005-03-25": "Good Friday", + "2005-05-30": "Memorial Day", + "2005-07-04": "Independence Day", + "2005-09-05": "Labor Day", + "2005-10-10": "Columbus Day; Commonwealth Cultural Day", + "2005-11-04": "Citizenship Day", + "2005-11-11": "Veterans Day", + "2005-11-24": "Thanksgiving", + "2005-12-08": "Constitution Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day (Observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (Observed)", + "2006-01-16": "Martin Luther King Jr. Day", + "2006-02-20": "Washington's Birthday", + "2006-03-24": "Commonwealth Covenant Day", + "2006-04-14": "Good Friday", + "2006-05-29": "Memorial Day", + "2006-07-04": "Independence Day", + "2006-09-04": "Labor Day", + "2006-10-09": "Columbus Day; Commonwealth Cultural Day", + "2006-11-03": "Citizenship Day (Observed)", + "2006-11-04": "Citizenship Day", + "2006-11-10": "Veterans Day (Observed)", + "2006-11-11": "Veterans Day", + "2006-11-23": "Thanksgiving", + "2006-12-08": "Constitution Day", + "2006-12-25": "Christmas Day", + "2007-01-01": "New Year's Day", + "2007-01-15": "Martin Luther King Jr. Day", + "2007-02-19": "Washington's Birthday", + "2007-03-23": "Commonwealth Covenant Day (Observed)", + "2007-03-24": "Commonwealth Covenant Day", + "2007-04-06": "Good Friday", + "2007-05-28": "Memorial Day", + "2007-07-04": "Independence Day", + "2007-09-03": "Labor Day", + "2007-10-08": "Columbus Day; Commonwealth Cultural Day", + "2007-11-04": "Citizenship Day", + "2007-11-05": "Citizenship Day (Observed)", + "2007-11-11": "Veterans Day", + "2007-11-12": "Veterans Day (Observed)", + "2007-11-22": "Thanksgiving", + "2007-12-07": "Constitution Day (Observed)", + "2007-12-08": "Constitution Day", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-01-21": "Martin Luther King Jr. Day", + "2008-02-18": "Washington's Birthday", + "2008-03-21": "Good Friday", + "2008-03-24": "Commonwealth Covenant Day", + "2008-05-26": "Memorial Day", + "2008-07-04": "Independence Day", + "2008-09-01": "Labor Day", + "2008-10-13": "Columbus Day; Commonwealth Cultural Day", + "2008-11-04": "Citizenship Day; Election Day", + "2008-11-11": "Veterans Day", + "2008-11-27": "Thanksgiving", + "2008-12-08": "Constitution Day", + "2008-12-25": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-01-19": "Martin Luther King Jr. Day", + "2009-02-16": "Washington's Birthday", + "2009-03-24": "Commonwealth Covenant Day", + "2009-04-10": "Good Friday", + "2009-05-25": "Memorial Day", + "2009-07-03": "Independence Day (Observed)", + "2009-07-04": "Independence Day", + "2009-09-07": "Labor Day", + "2009-10-12": "Columbus Day; Commonwealth Cultural Day", + "2009-11-04": "Citizenship Day", + "2009-11-11": "Veterans Day", + "2009-11-26": "Thanksgiving", + "2009-12-08": "Constitution Day", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-01-18": "Martin Luther King Jr. Day", + "2010-02-15": "Washington's Birthday", + "2010-03-24": "Commonwealth Covenant Day", + "2010-04-02": "Good Friday", + "2010-05-31": "Memorial Day", + "2010-07-04": "Independence Day", + "2010-07-05": "Independence Day (Observed)", + "2010-09-06": "Labor Day", + "2010-10-11": "Columbus Day; Commonwealth Cultural Day", + "2010-11-02": "Election Day", + "2010-11-04": "Citizenship Day", + "2010-11-11": "Veterans Day", + "2010-11-25": "Thanksgiving", + "2010-12-08": "Constitution Day", + "2010-12-24": "Christmas Day (Observed)", + "2010-12-25": "Christmas Day", + "2010-12-31": "New Year's Day (Observed)", + "2011-01-01": "New Year's Day", + "2011-01-17": "Martin Luther King Jr. Day", + "2011-02-21": "Washington's Birthday", + "2011-03-24": "Commonwealth Covenant Day", + "2011-04-22": "Good Friday", + "2011-05-30": "Memorial Day", + "2011-07-04": "Independence Day", + "2011-09-05": "Labor Day", + "2011-10-10": "Columbus Day; Commonwealth Cultural Day", + "2011-11-04": "Citizenship Day", + "2011-11-11": "Veterans Day", + "2011-11-24": "Thanksgiving", + "2011-12-08": "Constitution Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day (Observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (Observed)", + "2012-01-16": "Martin Luther King Jr. Day", + "2012-02-20": "Washington's Birthday", + "2012-03-23": "Commonwealth Covenant Day (Observed)", + "2012-03-24": "Commonwealth Covenant Day", + "2012-04-06": "Good Friday", + "2012-05-28": "Memorial Day", + "2012-07-04": "Independence Day", + "2012-09-03": "Labor Day", + "2012-10-08": "Columbus Day; Commonwealth Cultural Day", + "2012-11-04": "Citizenship Day", + "2012-11-05": "Citizenship Day (Observed)", + "2012-11-06": "Election Day", + "2012-11-11": "Veterans Day", + "2012-11-12": "Veterans Day (Observed)", + "2012-11-22": "Thanksgiving", + "2012-12-07": "Constitution Day (Observed)", + "2012-12-08": "Constitution Day", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-01-21": "Martin Luther King Jr. Day", + "2013-02-18": "Washington's Birthday", + "2013-03-24": "Commonwealth Covenant Day", + "2013-03-25": "Commonwealth Covenant Day (Observed)", + "2013-03-29": "Good Friday", + "2013-05-27": "Memorial Day", + "2013-07-04": "Independence Day", + "2013-09-02": "Labor Day", + "2013-10-14": "Columbus Day; Commonwealth Cultural Day", + "2013-11-04": "Citizenship Day", + "2013-11-11": "Veterans Day", + "2013-11-28": "Thanksgiving", + "2013-12-08": "Constitution Day", + "2013-12-09": "Constitution Day (Observed)", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-20": "Martin Luther King Jr. Day", + "2014-02-17": "Washington's Birthday", + "2014-03-24": "Commonwealth Covenant Day", + "2014-04-18": "Good Friday", + "2014-05-26": "Memorial Day", + "2014-07-04": "Independence Day", + "2014-09-01": "Labor Day", + "2014-10-13": "Columbus Day; Commonwealth Cultural Day", + "2014-11-04": "Citizenship Day; Election Day", + "2014-11-11": "Veterans Day", + "2014-11-27": "Thanksgiving", + "2014-12-08": "Constitution Day", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-01-19": "Martin Luther King Jr. Day", + "2015-02-16": "Washington's Birthday", + "2015-03-24": "Commonwealth Covenant Day", + "2015-04-03": "Good Friday", + "2015-05-25": "Memorial Day", + "2015-07-03": "Independence Day (Observed)", + "2015-07-04": "Independence Day", + "2015-09-07": "Labor Day", + "2015-10-12": "Columbus Day; Commonwealth Cultural Day", + "2015-11-04": "Citizenship Day", + "2015-11-11": "Veterans Day", + "2015-11-26": "Thanksgiving", + "2015-12-08": "Constitution Day", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-01-18": "Martin Luther King Jr. Day", + "2016-02-15": "Washington's Birthday", + "2016-03-24": "Commonwealth Covenant Day", + "2016-03-25": "Good Friday", + "2016-05-30": "Memorial Day", + "2016-07-04": "Independence Day", + "2016-09-05": "Labor Day", + "2016-10-10": "Columbus Day; Commonwealth Cultural Day", + "2016-11-04": "Citizenship Day", + "2016-11-08": "Election Day", + "2016-11-11": "Veterans Day", + "2016-11-24": "Thanksgiving", + "2016-12-08": "Constitution Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day (Observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (Observed)", + "2017-01-16": "Martin Luther King Jr. Day", + "2017-02-20": "Washington's Birthday", + "2017-03-24": "Commonwealth Covenant Day", + "2017-04-14": "Good Friday", + "2017-05-29": "Memorial Day", + "2017-07-04": "Independence Day", + "2017-09-04": "Labor Day", + "2017-10-09": "Columbus Day; Commonwealth Cultural Day", + "2017-11-03": "Citizenship Day (Observed)", + "2017-11-04": "Citizenship Day", + "2017-11-10": "Veterans Day (Observed)", + "2017-11-11": "Veterans Day", + "2017-11-23": "Thanksgiving", + "2017-12-08": "Constitution Day", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-01-15": "Martin Luther King Jr. Day", + "2018-02-19": "Washington's Birthday", + "2018-03-23": "Commonwealth Covenant Day (Observed)", + "2018-03-24": "Commonwealth Covenant Day", + "2018-03-30": "Good Friday", + "2018-05-28": "Memorial Day", + "2018-07-04": "Independence Day", + "2018-09-03": "Labor Day", + "2018-10-08": "Columbus Day; Commonwealth Cultural Day", + "2018-11-04": "Citizenship Day", + "2018-11-05": "Citizenship Day (Observed)", + "2018-11-06": "Election Day", + "2018-11-11": "Veterans Day", + "2018-11-12": "Veterans Day (Observed)", + "2018-11-22": "Thanksgiving", + "2018-12-07": "Constitution Day (Observed)", + "2018-12-08": "Constitution Day", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-01-21": "Martin Luther King Jr. Day", + "2019-02-18": "Washington's Birthday", + "2019-03-24": "Commonwealth Covenant Day", + "2019-03-25": "Commonwealth Covenant Day (Observed)", + "2019-04-19": "Good Friday", + "2019-05-27": "Memorial Day", + "2019-07-04": "Independence Day", + "2019-09-02": "Labor Day", + "2019-10-14": "Columbus Day; Commonwealth Cultural Day", + "2019-11-04": "Citizenship Day", + "2019-11-11": "Veterans Day", + "2019-11-28": "Thanksgiving", + "2019-12-08": "Constitution Day", + "2019-12-09": "Constitution Day (Observed)", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-01-20": "Martin Luther King Jr. Day", + "2020-02-17": "Washington's Birthday", + "2020-03-24": "Commonwealth Covenant Day", + "2020-04-10": "Good Friday", + "2020-05-25": "Memorial Day", + "2020-07-03": "Independence Day (Observed)", + "2020-07-04": "Independence Day", + "2020-09-07": "Labor Day", + "2020-10-12": "Columbus Day; Commonwealth Cultural Day", + "2020-11-03": "Election Day", + "2020-11-04": "Citizenship Day", + "2020-11-11": "Veterans Day", + "2020-11-26": "Thanksgiving", + "2020-12-08": "Constitution Day", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-01-18": "Martin Luther King Jr. Day", + "2021-02-15": "Washington's Birthday", + "2021-03-24": "Commonwealth Covenant Day", + "2021-04-02": "Good Friday", + "2021-05-31": "Memorial Day", + "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-19": "Juneteenth National Independence Day", + "2021-07-04": "Independence Day", + "2021-07-05": "Independence Day (Observed)", + "2021-09-06": "Labor Day", + "2021-10-11": "Columbus Day; Commonwealth Cultural Day", + "2021-11-04": "Citizenship Day", + "2021-11-11": "Veterans Day", + "2021-11-25": "Thanksgiving", + "2021-12-08": "Constitution Day", + "2021-12-24": "Christmas Day (Observed)", + "2021-12-25": "Christmas Day", + "2021-12-31": "New Year's Day (Observed)", + "2022-01-01": "New Year's Day", + "2022-01-17": "Martin Luther King Jr. Day", + "2022-02-21": "Washington's Birthday", + "2022-03-24": "Commonwealth Covenant Day", + "2022-04-15": "Good Friday", + "2022-05-30": "Memorial Day", + "2022-06-19": "Juneteenth National Independence Day", + "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-07-04": "Independence Day", + "2022-09-05": "Labor Day", + "2022-10-10": "Columbus Day; Commonwealth Cultural Day", + "2022-11-04": "Citizenship Day", + "2022-11-08": "Election Day", + "2022-11-11": "Veterans Day", + "2022-11-24": "Thanksgiving", + "2022-12-08": "Constitution Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day (Observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (Observed)", + "2023-01-16": "Martin Luther King Jr. Day", + "2023-02-20": "Washington's Birthday", + "2023-03-24": "Commonwealth Covenant Day", + "2023-04-07": "Good Friday", + "2023-05-29": "Memorial Day", + "2023-06-19": "Juneteenth National Independence Day", + "2023-07-04": "Independence Day", + "2023-09-04": "Labor Day", + "2023-10-09": "Columbus Day; Commonwealth Cultural Day", + "2023-11-03": "Citizenship Day (Observed)", + "2023-11-04": "Citizenship Day", + "2023-11-10": "Veterans Day (Observed)", + "2023-11-11": "Veterans Day", + "2023-11-23": "Thanksgiving", + "2023-12-08": "Constitution Day", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-01-15": "Martin Luther King Jr. Day", + "2024-02-19": "Washington's Birthday", + "2024-03-24": "Commonwealth Covenant Day", + "2024-03-25": "Commonwealth Covenant Day (Observed)", + "2024-03-29": "Good Friday", + "2024-05-27": "Memorial Day", + "2024-06-19": "Juneteenth National Independence Day", + "2024-07-04": "Independence Day", + "2024-09-02": "Labor Day", + "2024-10-14": "Columbus Day; Commonwealth Cultural Day", + "2024-11-04": "Citizenship Day", + "2024-11-05": "Election Day", + "2024-11-11": "Veterans Day", + "2024-11-28": "Thanksgiving", + "2024-12-08": "Constitution Day", + "2024-12-09": "Constitution Day (Observed)", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-01-20": "Martin Luther King Jr. Day", + "2025-02-17": "Washington's Birthday", + "2025-03-24": "Commonwealth Covenant Day", + "2025-04-18": "Good Friday", + "2025-05-26": "Memorial Day", + "2025-06-19": "Juneteenth National Independence Day", + "2025-07-04": "Independence Day", + "2025-09-01": "Labor Day", + "2025-10-13": "Columbus Day; Commonwealth Cultural Day", + "2025-11-04": "Citizenship Day", + "2025-11-11": "Veterans Day", + "2025-11-27": "Thanksgiving", + "2025-12-08": "Constitution Day", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-01-19": "Martin Luther King Jr. Day", + "2026-02-16": "Washington's Birthday", + "2026-03-24": "Commonwealth Covenant Day", + "2026-04-03": "Good Friday", + "2026-05-25": "Memorial Day", + "2026-06-19": "Juneteenth National Independence Day", + "2026-07-03": "Independence Day (Observed)", + "2026-07-04": "Independence Day", + "2026-09-07": "Labor Day", + "2026-10-12": "Columbus Day; Commonwealth Cultural Day", + "2026-11-03": "Election Day", + "2026-11-04": "Citizenship Day", + "2026-11-11": "Veterans Day", + "2026-11-26": "Thanksgiving", + "2026-12-08": "Constitution Day", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-01-18": "Martin Luther King Jr. Day", + "2027-02-15": "Washington's Birthday", + "2027-03-24": "Commonwealth Covenant Day", + "2027-03-26": "Good Friday", + "2027-05-31": "Memorial Day", + "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-19": "Juneteenth National Independence Day", + "2027-07-04": "Independence Day", + "2027-07-05": "Independence Day (Observed)", + "2027-09-06": "Labor Day", + "2027-10-11": "Columbus Day; Commonwealth Cultural Day", + "2027-11-04": "Citizenship Day", + "2027-11-11": "Veterans Day", + "2027-11-25": "Thanksgiving", + "2027-12-08": "Constitution Day", + "2027-12-24": "Christmas Day (Observed)", + "2027-12-25": "Christmas Day", + "2027-12-31": "New Year's Day (Observed)", + "2028-01-01": "New Year's Day", + "2028-01-17": "Martin Luther King Jr. Day", + "2028-02-21": "Washington's Birthday", + "2028-03-24": "Commonwealth Covenant Day", + "2028-04-14": "Good Friday", + "2028-05-29": "Memorial Day", + "2028-06-19": "Juneteenth National Independence Day", + "2028-07-04": "Independence Day", + "2028-09-04": "Labor Day", + "2028-10-09": "Columbus Day; Commonwealth Cultural Day", + "2028-11-03": "Citizenship Day (Observed)", + "2028-11-04": "Citizenship Day", + "2028-11-07": "Election Day", + "2028-11-10": "Veterans Day (Observed)", + "2028-11-11": "Veterans Day", + "2028-11-23": "Thanksgiving", + "2028-12-08": "Constitution Day", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-01-15": "Martin Luther King Jr. Day", + "2029-02-19": "Washington's Birthday", + "2029-03-23": "Commonwealth Covenant Day (Observed)", + "2029-03-24": "Commonwealth Covenant Day", + "2029-03-30": "Good Friday", + "2029-05-28": "Memorial Day", + "2029-06-19": "Juneteenth National Independence Day", + "2029-07-04": "Independence Day", + "2029-09-03": "Labor Day", + "2029-10-08": "Columbus Day; Commonwealth Cultural Day", + "2029-11-04": "Citizenship Day", + "2029-11-05": "Citizenship Day (Observed)", + "2029-11-11": "Veterans Day", + "2029-11-12": "Veterans Day (Observed)", + "2029-11-22": "Thanksgiving", + "2029-12-07": "Constitution Day (Observed)", + "2029-12-08": "Constitution Day", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-01-21": "Martin Luther King Jr. Day", + "2030-02-18": "Washington's Birthday", + "2030-03-24": "Commonwealth Covenant Day", + "2030-03-25": "Commonwealth Covenant Day (Observed)", + "2030-04-19": "Good Friday", + "2030-05-27": "Memorial Day", + "2030-06-19": "Juneteenth National Independence Day", + "2030-07-04": "Independence Day", + "2030-09-02": "Labor Day", + "2030-10-14": "Columbus Day; Commonwealth Cultural Day", + "2030-11-04": "Citizenship Day", + "2030-11-05": "Election Day", + "2030-11-11": "Veterans Day", + "2030-11-28": "Thanksgiving", + "2030-12-08": "Constitution Day", + "2030-12-09": "Constitution Day (Observed)", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-01-20": "Martin Luther King Jr. Day", + "2031-02-17": "Washington's Birthday", + "2031-03-24": "Commonwealth Covenant Day", + "2031-04-11": "Good Friday", + "2031-05-26": "Memorial Day", + "2031-06-19": "Juneteenth National Independence Day", + "2031-07-04": "Independence Day", + "2031-09-01": "Labor Day", + "2031-10-13": "Columbus Day; Commonwealth Cultural Day", + "2031-11-04": "Citizenship Day", + "2031-11-11": "Veterans Day", + "2031-11-27": "Thanksgiving", + "2031-12-08": "Constitution Day", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-01-19": "Martin Luther King Jr. Day", + "2032-02-16": "Washington's Birthday", + "2032-03-24": "Commonwealth Covenant Day", + "2032-03-26": "Good Friday", + "2032-05-31": "Memorial Day", + "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-19": "Juneteenth National Independence Day", + "2032-07-04": "Independence Day", + "2032-07-05": "Independence Day (Observed)", + "2032-09-06": "Labor Day", + "2032-10-11": "Columbus Day; Commonwealth Cultural Day", + "2032-11-02": "Election Day", + "2032-11-04": "Citizenship Day", + "2032-11-11": "Veterans Day", + "2032-11-25": "Thanksgiving", + "2032-12-08": "Constitution Day", + "2032-12-24": "Christmas Day (Observed)", + "2032-12-25": "Christmas Day", + "2032-12-31": "New Year's Day (Observed)", + "2033-01-01": "New Year's Day", + "2033-01-17": "Martin Luther King Jr. Day", + "2033-02-21": "Washington's Birthday", + "2033-03-24": "Commonwealth Covenant Day", + "2033-04-15": "Good Friday", + "2033-05-30": "Memorial Day", + "2033-06-19": "Juneteenth National Independence Day", + "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-07-04": "Independence Day", + "2033-09-05": "Labor Day", + "2033-10-10": "Columbus Day; Commonwealth Cultural Day", + "2033-11-04": "Citizenship Day", + "2033-11-11": "Veterans Day", + "2033-11-24": "Thanksgiving", + "2033-12-08": "Constitution Day", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day (Observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-01-16": "Martin Luther King Jr. Day", + "2034-02-20": "Washington's Birthday", + "2034-03-24": "Commonwealth Covenant Day", + "2034-04-07": "Good Friday", + "2034-05-29": "Memorial Day", + "2034-06-19": "Juneteenth National Independence Day", + "2034-07-04": "Independence Day", + "2034-09-04": "Labor Day", + "2034-10-09": "Columbus Day; Commonwealth Cultural Day", + "2034-11-03": "Citizenship Day (Observed)", + "2034-11-04": "Citizenship Day", + "2034-11-07": "Election Day", + "2034-11-10": "Veterans Day (Observed)", + "2034-11-11": "Veterans Day", + "2034-11-23": "Thanksgiving", + "2034-12-08": "Constitution Day", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-01-15": "Martin Luther King Jr. Day", + "2035-02-19": "Washington's Birthday", + "2035-03-23": "Commonwealth Covenant Day (Observed); Good Friday", + "2035-03-24": "Commonwealth Covenant Day", + "2035-05-28": "Memorial Day", + "2035-06-19": "Juneteenth National Independence Day", + "2035-07-04": "Independence Day", + "2035-09-03": "Labor Day", + "2035-10-08": "Columbus Day; Commonwealth Cultural Day", + "2035-11-04": "Citizenship Day", + "2035-11-05": "Citizenship Day (Observed)", + "2035-11-11": "Veterans Day", + "2035-11-12": "Veterans Day (Observed)", + "2035-11-22": "Thanksgiving", + "2035-12-07": "Constitution Day (Observed)", + "2035-12-08": "Constitution Day", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-01-21": "Martin Luther King Jr. Day", + "2036-02-18": "Washington's Birthday", + "2036-03-24": "Commonwealth Covenant Day", + "2036-04-11": "Good Friday", + "2036-05-26": "Memorial Day", + "2036-06-19": "Juneteenth National Independence Day", + "2036-07-04": "Independence Day", + "2036-09-01": "Labor Day", + "2036-10-13": "Columbus Day; Commonwealth Cultural Day", + "2036-11-04": "Citizenship Day; Election Day", + "2036-11-11": "Veterans Day", + "2036-11-27": "Thanksgiving", + "2036-12-08": "Constitution Day", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-19": "Martin Luther King Jr. Day", + "2037-02-16": "Washington's Birthday", + "2037-03-24": "Commonwealth Covenant Day", + "2037-04-03": "Good Friday", + "2037-05-25": "Memorial Day", + "2037-06-19": "Juneteenth National Independence Day", + "2037-07-03": "Independence Day (Observed)", + "2037-07-04": "Independence Day", + "2037-09-07": "Labor Day", + "2037-10-12": "Columbus Day; Commonwealth Cultural Day", + "2037-11-04": "Citizenship Day", + "2037-11-11": "Veterans Day", + "2037-11-26": "Thanksgiving", + "2037-12-08": "Constitution Day", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-01-18": "Martin Luther King Jr. Day", + "2038-02-15": "Washington's Birthday", + "2038-03-24": "Commonwealth Covenant Day", + "2038-04-23": "Good Friday", + "2038-05-31": "Memorial Day", + "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-19": "Juneteenth National Independence Day", + "2038-07-04": "Independence Day", + "2038-07-05": "Independence Day (Observed)", + "2038-09-06": "Labor Day", + "2038-10-11": "Columbus Day; Commonwealth Cultural Day", + "2038-11-02": "Election Day", + "2038-11-04": "Citizenship Day", + "2038-11-11": "Veterans Day", + "2038-11-25": "Thanksgiving", + "2038-12-08": "Constitution Day", + "2038-12-24": "Christmas Day (Observed)", + "2038-12-25": "Christmas Day", + "2038-12-31": "New Year's Day (Observed)", + "2039-01-01": "New Year's Day", + "2039-01-17": "Martin Luther King Jr. Day", + "2039-02-21": "Washington's Birthday", + "2039-03-24": "Commonwealth Covenant Day", + "2039-04-08": "Good Friday", + "2039-05-30": "Memorial Day", + "2039-06-19": "Juneteenth National Independence Day", + "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-07-04": "Independence Day", + "2039-09-05": "Labor Day", + "2039-10-10": "Columbus Day; Commonwealth Cultural Day", + "2039-11-04": "Citizenship Day", + "2039-11-11": "Veterans Day", + "2039-11-24": "Thanksgiving", + "2039-12-08": "Constitution Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Christmas Day (Observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (Observed)", + "2040-01-16": "Martin Luther King Jr. Day", + "2040-02-20": "Washington's Birthday", + "2040-03-23": "Commonwealth Covenant Day (Observed)", + "2040-03-24": "Commonwealth Covenant Day", + "2040-03-30": "Good Friday", + "2040-05-28": "Memorial Day", + "2040-06-19": "Juneteenth National Independence Day", + "2040-07-04": "Independence Day", + "2040-09-03": "Labor Day", + "2040-10-08": "Columbus Day; Commonwealth Cultural Day", + "2040-11-04": "Citizenship Day", + "2040-11-05": "Citizenship Day (Observed)", + "2040-11-06": "Election Day", + "2040-11-11": "Veterans Day", + "2040-11-12": "Veterans Day (Observed)", + "2040-11-22": "Thanksgiving", + "2040-12-07": "Constitution Day (Observed)", + "2040-12-08": "Constitution Day", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-01-21": "Martin Luther King Jr. Day", + "2041-02-18": "Washington's Birthday", + "2041-03-24": "Commonwealth Covenant Day", + "2041-03-25": "Commonwealth Covenant Day (Observed)", + "2041-04-19": "Good Friday", + "2041-05-27": "Memorial Day", + "2041-06-19": "Juneteenth National Independence Day", + "2041-07-04": "Independence Day", + "2041-09-02": "Labor Day", + "2041-10-14": "Columbus Day; Commonwealth Cultural Day", + "2041-11-04": "Citizenship Day", + "2041-11-11": "Veterans Day", + "2041-11-28": "Thanksgiving", + "2041-12-08": "Constitution Day", + "2041-12-09": "Constitution Day (Observed)", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-01-20": "Martin Luther King Jr. Day", + "2042-02-17": "Washington's Birthday", + "2042-03-24": "Commonwealth Covenant Day", + "2042-04-04": "Good Friday", + "2042-05-26": "Memorial Day", + "2042-06-19": "Juneteenth National Independence Day", + "2042-07-04": "Independence Day", + "2042-09-01": "Labor Day", + "2042-10-13": "Columbus Day; Commonwealth Cultural Day", + "2042-11-04": "Citizenship Day; Election Day", + "2042-11-11": "Veterans Day", + "2042-11-27": "Thanksgiving", + "2042-12-08": "Constitution Day", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-01-19": "Martin Luther King Jr. Day", + "2043-02-16": "Washington's Birthday", + "2043-03-24": "Commonwealth Covenant Day", + "2043-03-27": "Good Friday", + "2043-05-25": "Memorial Day", + "2043-06-19": "Juneteenth National Independence Day", + "2043-07-03": "Independence Day (Observed)", + "2043-07-04": "Independence Day", + "2043-09-07": "Labor Day", + "2043-10-12": "Columbus Day; Commonwealth Cultural Day", + "2043-11-04": "Citizenship Day", + "2043-11-11": "Veterans Day", + "2043-11-26": "Thanksgiving", + "2043-12-08": "Constitution Day", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-01-18": "Martin Luther King Jr. Day", + "2044-02-15": "Washington's Birthday", + "2044-03-24": "Commonwealth Covenant Day", + "2044-04-15": "Good Friday", + "2044-05-30": "Memorial Day", + "2044-06-19": "Juneteenth National Independence Day", + "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-07-04": "Independence Day", + "2044-09-05": "Labor Day", + "2044-10-10": "Columbus Day; Commonwealth Cultural Day", + "2044-11-04": "Citizenship Day", + "2044-11-08": "Election Day", + "2044-11-11": "Veterans Day", + "2044-11-24": "Thanksgiving", + "2044-12-08": "Constitution Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day (Observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (Observed)", + "2045-01-16": "Martin Luther King Jr. Day", + "2045-02-20": "Washington's Birthday", + "2045-03-24": "Commonwealth Covenant Day", + "2045-04-07": "Good Friday", + "2045-05-29": "Memorial Day", + "2045-06-19": "Juneteenth National Independence Day", + "2045-07-04": "Independence Day", + "2045-09-04": "Labor Day", + "2045-10-09": "Columbus Day; Commonwealth Cultural Day", + "2045-11-03": "Citizenship Day (Observed)", + "2045-11-04": "Citizenship Day", + "2045-11-10": "Veterans Day (Observed)", + "2045-11-11": "Veterans Day", + "2045-11-23": "Thanksgiving", + "2045-12-08": "Constitution Day", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-01-15": "Martin Luther King Jr. Day", + "2046-02-19": "Washington's Birthday", + "2046-03-23": "Commonwealth Covenant Day (Observed); Good Friday", + "2046-03-24": "Commonwealth Covenant Day", + "2046-05-28": "Memorial Day", + "2046-06-19": "Juneteenth National Independence Day", + "2046-07-04": "Independence Day", + "2046-09-03": "Labor Day", + "2046-10-08": "Columbus Day; Commonwealth Cultural Day", + "2046-11-04": "Citizenship Day", + "2046-11-05": "Citizenship Day (Observed)", + "2046-11-06": "Election Day", + "2046-11-11": "Veterans Day", + "2046-11-12": "Veterans Day (Observed)", + "2046-11-22": "Thanksgiving", + "2046-12-07": "Constitution Day (Observed)", + "2046-12-08": "Constitution Day", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-21": "Martin Luther King Jr. Day", + "2047-02-18": "Washington's Birthday", + "2047-03-24": "Commonwealth Covenant Day", + "2047-03-25": "Commonwealth Covenant Day (Observed)", + "2047-04-12": "Good Friday", + "2047-05-27": "Memorial Day", + "2047-06-19": "Juneteenth National Independence Day", + "2047-07-04": "Independence Day", + "2047-09-02": "Labor Day", + "2047-10-14": "Columbus Day; Commonwealth Cultural Day", + "2047-11-04": "Citizenship Day", + "2047-11-11": "Veterans Day", + "2047-11-28": "Thanksgiving", + "2047-12-08": "Constitution Day", + "2047-12-09": "Constitution Day (Observed)", + "2047-12-25": "Christmas Day", + "2048-01-01": "New Year's Day", + "2048-01-20": "Martin Luther King Jr. Day", + "2048-02-17": "Washington's Birthday", + "2048-03-24": "Commonwealth Covenant Day", + "2048-04-03": "Good Friday", + "2048-05-25": "Memorial Day", + "2048-06-19": "Juneteenth National Independence Day", + "2048-07-03": "Independence Day (Observed)", + "2048-07-04": "Independence Day", + "2048-09-07": "Labor Day", + "2048-10-12": "Columbus Day; Commonwealth Cultural Day", + "2048-11-03": "Election Day", + "2048-11-04": "Citizenship Day", + "2048-11-11": "Veterans Day", + "2048-11-26": "Thanksgiving", + "2048-12-08": "Constitution Day", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-01-18": "Martin Luther King Jr. Day", + "2049-02-15": "Washington's Birthday", + "2049-03-24": "Commonwealth Covenant Day", + "2049-04-16": "Good Friday", + "2049-05-31": "Memorial Day", + "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-19": "Juneteenth National Independence Day", + "2049-07-04": "Independence Day", + "2049-07-05": "Independence Day (Observed)", + "2049-09-06": "Labor Day", + "2049-10-11": "Columbus Day; Commonwealth Cultural Day", + "2049-11-04": "Citizenship Day", + "2049-11-11": "Veterans Day", + "2049-11-25": "Thanksgiving", + "2049-12-08": "Constitution Day", + "2049-12-24": "Christmas Day (Observed)", + "2049-12-25": "Christmas Day", + "2049-12-31": "New Year's Day (Observed)", + "2050-01-01": "New Year's Day", + "2050-01-17": "Martin Luther King Jr. Day", + "2050-02-21": "Washington's Birthday", + "2050-03-24": "Commonwealth Covenant Day", + "2050-04-08": "Good Friday", + "2050-05-30": "Memorial Day", + "2050-06-19": "Juneteenth National Independence Day", + "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-07-04": "Independence Day", + "2050-09-05": "Labor Day", + "2050-10-10": "Columbus Day; Commonwealth Cultural Day", + "2050-11-04": "Citizenship Day", + "2050-11-08": "Election Day", + "2050-11-11": "Veterans Day", + "2050-11-24": "Thanksgiving", + "2050-12-08": "Constitution Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day (Observed)" +} diff --git a/snapshots/countries/MT.json b/snapshots/countries/MT.json new file mode 100644 index 000000000..a770aabe3 --- /dev/null +++ b/snapshots/countries/MT.json @@ -0,0 +1,943 @@ +{ + "1980-01-01": "L-Ewwel tas-Sena", + "1980-03-31": "Jum il-\u0126elsien", + "1980-04-04": "Il-\u0120img\u0127a l-Kbira", + "1980-05-01": "Jum il-\u0126addiem", + "1980-08-15": "Il-Festa ta' Santa Marija", + "1980-12-13": "Jum ir-Repubblika", + "1980-12-25": "Il-Milied", + "1981-01-01": "L-Ewwel tas-Sena", + "1981-03-31": "Jum il-\u0126elsien", + "1981-04-17": "Il-\u0120img\u0127a l-Kbira", + "1981-05-01": "Jum il-\u0126addiem", + "1981-08-15": "Il-Festa ta' Santa Marija", + "1981-12-13": "Jum ir-Repubblika", + "1981-12-25": "Il-Milied", + "1982-01-01": "L-Ewwel tas-Sena", + "1982-03-31": "Jum il-\u0126elsien", + "1982-04-09": "Il-\u0120img\u0127a l-Kbira", + "1982-05-01": "Jum il-\u0126addiem", + "1982-08-15": "Il-Festa ta' Santa Marija", + "1982-12-13": "Jum ir-Repubblika", + "1982-12-25": "Il-Milied", + "1983-01-01": "L-Ewwel tas-Sena", + "1983-03-31": "Jum il-\u0126elsien", + "1983-04-01": "Il-\u0120img\u0127a l-Kbira", + "1983-05-01": "Jum il-\u0126addiem", + "1983-08-15": "Il-Festa ta' Santa Marija", + "1983-12-13": "Jum ir-Repubblika", + "1983-12-25": "Il-Milied", + "1984-01-01": "L-Ewwel tas-Sena", + "1984-03-31": "Jum il-\u0126elsien", + "1984-04-20": "Il-\u0120img\u0127a l-Kbira", + "1984-05-01": "Jum il-\u0126addiem", + "1984-08-15": "Il-Festa ta' Santa Marija", + "1984-12-13": "Jum ir-Repubblika", + "1984-12-25": "Il-Milied", + "1985-01-01": "L-Ewwel tas-Sena", + "1985-03-31": "Jum il-\u0126elsien", + "1985-04-05": "Il-\u0120img\u0127a l-Kbira", + "1985-05-01": "Jum il-\u0126addiem", + "1985-08-15": "Il-Festa ta' Santa Marija", + "1985-12-13": "Jum ir-Repubblika", + "1985-12-25": "Il-Milied", + "1986-01-01": "L-Ewwel tas-Sena", + "1986-03-28": "Il-\u0120img\u0127a l-Kbira", + "1986-03-31": "Jum il-\u0126elsien", + "1986-05-01": "Jum il-\u0126addiem", + "1986-08-15": "Il-Festa ta' Santa Marija", + "1986-12-13": "Jum ir-Repubblika", + "1986-12-25": "Il-Milied", + "1987-01-01": "L-Ewwel tas-Sena", + "1987-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "1987-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "1987-04-17": "Il-\u0120img\u0127a l-Kbira", + "1987-05-01": "Jum il-\u0126addiem", + "1987-06-29": "Il-Festa ta' San Pietru u San Pawl", + "1987-08-15": "Il-Festa ta' Santa Marija", + "1987-09-08": "Jum il-Vitorja", + "1987-09-21": "Jum l-Indipendenza", + "1987-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "1987-12-13": "Jum ir-Repubblika", + "1987-12-25": "Il-Milied", + "1988-01-01": "L-Ewwel tas-Sena", + "1988-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "1988-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "1988-04-01": "Il-\u0120img\u0127a l-Kbira", + "1988-05-01": "Jum il-\u0126addiem", + "1988-06-29": "Il-Festa ta' San Pietru u San Pawl", + "1988-08-15": "Il-Festa ta' Santa Marija", + "1988-09-08": "Jum il-Vitorja", + "1988-09-21": "Jum l-Indipendenza", + "1988-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "1988-12-13": "Jum ir-Repubblika", + "1988-12-25": "Il-Milied", + "1989-01-01": "L-Ewwel tas-Sena", + "1989-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "1989-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "1989-03-24": "Il-\u0120img\u0127a l-Kbira", + "1989-03-31": "Jum il-\u0126elsien", + "1989-05-01": "Jum il-\u0126addiem", + "1989-06-07": "Sette Giugno", + "1989-06-29": "Il-Festa ta' San Pietru u San Pawl", + "1989-08-15": "Il-Festa ta' Santa Marija", + "1989-09-08": "Jum il-Vitorja", + "1989-09-21": "Jum l-Indipendenza", + "1989-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "1989-12-13": "Jum ir-Repubblika", + "1989-12-25": "Il-Milied", + "1990-01-01": "L-Ewwel tas-Sena", + "1990-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "1990-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "1990-03-31": "Jum il-\u0126elsien", + "1990-04-13": "Il-\u0120img\u0127a l-Kbira", + "1990-05-01": "Jum il-\u0126addiem", + "1990-06-07": "Sette Giugno", + "1990-06-29": "Il-Festa ta' San Pietru u San Pawl", + "1990-08-15": "Il-Festa ta' Santa Marija", + "1990-09-08": "Jum il-Vitorja", + "1990-09-21": "Jum l-Indipendenza", + "1990-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "1990-12-13": "Jum ir-Repubblika", + "1990-12-25": "Il-Milied", + "1991-01-01": "L-Ewwel tas-Sena", + "1991-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "1991-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "1991-03-29": "Il-\u0120img\u0127a l-Kbira", + "1991-03-31": "Jum il-\u0126elsien", + "1991-05-01": "Jum il-\u0126addiem", + "1991-06-07": "Sette Giugno", + "1991-06-29": "Il-Festa ta' San Pietru u San Pawl", + "1991-08-15": "Il-Festa ta' Santa Marija", + "1991-09-08": "Jum il-Vitorja", + "1991-09-21": "Jum l-Indipendenza", + "1991-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "1991-12-13": "Jum ir-Repubblika", + "1991-12-25": "Il-Milied", + "1992-01-01": "L-Ewwel tas-Sena", + "1992-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "1992-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "1992-03-31": "Jum il-\u0126elsien", + "1992-04-17": "Il-\u0120img\u0127a l-Kbira", + "1992-05-01": "Jum il-\u0126addiem", + "1992-06-07": "Sette Giugno", + "1992-06-29": "Il-Festa ta' San Pietru u San Pawl", + "1992-08-15": "Il-Festa ta' Santa Marija", + "1992-09-08": "Jum il-Vitorja", + "1992-09-21": "Jum l-Indipendenza", + "1992-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "1992-12-13": "Jum ir-Repubblika", + "1992-12-25": "Il-Milied", + "1993-01-01": "L-Ewwel tas-Sena", + "1993-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "1993-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "1993-03-31": "Jum il-\u0126elsien", + "1993-04-09": "Il-\u0120img\u0127a l-Kbira", + "1993-05-01": "Jum il-\u0126addiem", + "1993-06-07": "Sette Giugno", + "1993-06-29": "Il-Festa ta' San Pietru u San Pawl", + "1993-08-15": "Il-Festa ta' Santa Marija", + "1993-09-08": "Jum il-Vitorja", + "1993-09-21": "Jum l-Indipendenza", + "1993-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "1993-12-13": "Jum ir-Repubblika", + "1993-12-25": "Il-Milied", + "1994-01-01": "L-Ewwel tas-Sena", + "1994-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "1994-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "1994-03-31": "Jum il-\u0126elsien", + "1994-04-01": "Il-\u0120img\u0127a l-Kbira", + "1994-05-01": "Jum il-\u0126addiem", + "1994-06-07": "Sette Giugno", + "1994-06-29": "Il-Festa ta' San Pietru u San Pawl", + "1994-08-15": "Il-Festa ta' Santa Marija", + "1994-09-08": "Jum il-Vitorja", + "1994-09-21": "Jum l-Indipendenza", + "1994-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "1994-12-13": "Jum ir-Repubblika", + "1994-12-25": "Il-Milied", + "1995-01-01": "L-Ewwel tas-Sena", + "1995-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "1995-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "1995-03-31": "Jum il-\u0126elsien", + "1995-04-14": "Il-\u0120img\u0127a l-Kbira", + "1995-05-01": "Jum il-\u0126addiem", + "1995-06-07": "Sette Giugno", + "1995-06-29": "Il-Festa ta' San Pietru u San Pawl", + "1995-08-15": "Il-Festa ta' Santa Marija", + "1995-09-08": "Jum il-Vitorja", + "1995-09-21": "Jum l-Indipendenza", + "1995-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "1995-12-13": "Jum ir-Repubblika", + "1995-12-25": "Il-Milied", + "1996-01-01": "L-Ewwel tas-Sena", + "1996-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "1996-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "1996-03-31": "Jum il-\u0126elsien", + "1996-04-05": "Il-\u0120img\u0127a l-Kbira", + "1996-05-01": "Jum il-\u0126addiem", + "1996-06-07": "Sette Giugno", + "1996-06-29": "Il-Festa ta' San Pietru u San Pawl", + "1996-08-15": "Il-Festa ta' Santa Marija", + "1996-09-08": "Jum il-Vitorja", + "1996-09-21": "Jum l-Indipendenza", + "1996-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "1996-12-13": "Jum ir-Repubblika", + "1996-12-25": "Il-Milied", + "1997-01-01": "L-Ewwel tas-Sena", + "1997-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "1997-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "1997-03-28": "Il-\u0120img\u0127a l-Kbira", + "1997-03-31": "Jum il-\u0126elsien", + "1997-05-01": "Jum il-\u0126addiem", + "1997-06-07": "Sette Giugno", + "1997-06-29": "Il-Festa ta' San Pietru u San Pawl", + "1997-08-15": "Il-Festa ta' Santa Marija", + "1997-09-08": "Jum il-Vitorja", + "1997-09-21": "Jum l-Indipendenza", + "1997-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "1997-12-13": "Jum ir-Repubblika", + "1997-12-25": "Il-Milied", + "1998-01-01": "L-Ewwel tas-Sena", + "1998-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "1998-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "1998-03-31": "Jum il-\u0126elsien", + "1998-04-10": "Il-\u0120img\u0127a l-Kbira", + "1998-05-01": "Jum il-\u0126addiem", + "1998-06-07": "Sette Giugno", + "1998-06-29": "Il-Festa ta' San Pietru u San Pawl", + "1998-08-15": "Il-Festa ta' Santa Marija", + "1998-09-08": "Jum il-Vitorja", + "1998-09-21": "Jum l-Indipendenza", + "1998-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "1998-12-13": "Jum ir-Repubblika", + "1998-12-25": "Il-Milied", + "1999-01-01": "L-Ewwel tas-Sena", + "1999-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "1999-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "1999-03-31": "Jum il-\u0126elsien", + "1999-04-02": "Il-\u0120img\u0127a l-Kbira", + "1999-05-01": "Jum il-\u0126addiem", + "1999-06-07": "Sette Giugno", + "1999-06-29": "Il-Festa ta' San Pietru u San Pawl", + "1999-08-15": "Il-Festa ta' Santa Marija", + "1999-09-08": "Jum il-Vitorja", + "1999-09-21": "Jum l-Indipendenza", + "1999-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "1999-12-13": "Jum ir-Repubblika", + "1999-12-25": "Il-Milied", + "2000-01-01": "L-Ewwel tas-Sena", + "2000-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2000-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2000-03-31": "Jum il-\u0126elsien", + "2000-04-21": "Il-\u0120img\u0127a l-Kbira", + "2000-05-01": "Jum il-\u0126addiem", + "2000-06-07": "Sette Giugno", + "2000-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2000-08-15": "Il-Festa ta' Santa Marija", + "2000-09-08": "Jum il-Vitorja", + "2000-09-21": "Jum l-Indipendenza", + "2000-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2000-12-13": "Jum ir-Repubblika", + "2000-12-25": "Il-Milied", + "2001-01-01": "L-Ewwel tas-Sena", + "2001-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2001-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2001-03-31": "Jum il-\u0126elsien", + "2001-04-13": "Il-\u0120img\u0127a l-Kbira", + "2001-05-01": "Jum il-\u0126addiem", + "2001-06-07": "Sette Giugno", + "2001-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2001-08-15": "Il-Festa ta' Santa Marija", + "2001-09-08": "Jum il-Vitorja", + "2001-09-21": "Jum l-Indipendenza", + "2001-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2001-12-13": "Jum ir-Repubblika", + "2001-12-25": "Il-Milied", + "2002-01-01": "L-Ewwel tas-Sena", + "2002-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2002-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2002-03-29": "Il-\u0120img\u0127a l-Kbira", + "2002-03-31": "Jum il-\u0126elsien", + "2002-05-01": "Jum il-\u0126addiem", + "2002-06-07": "Sette Giugno", + "2002-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2002-08-15": "Il-Festa ta' Santa Marija", + "2002-09-08": "Jum il-Vitorja", + "2002-09-21": "Jum l-Indipendenza", + "2002-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2002-12-13": "Jum ir-Repubblika", + "2002-12-25": "Il-Milied", + "2003-01-01": "L-Ewwel tas-Sena", + "2003-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2003-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2003-03-31": "Jum il-\u0126elsien", + "2003-04-18": "Il-\u0120img\u0127a l-Kbira", + "2003-05-01": "Jum il-\u0126addiem", + "2003-06-07": "Sette Giugno", + "2003-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2003-08-15": "Il-Festa ta' Santa Marija", + "2003-09-08": "Jum il-Vitorja", + "2003-09-21": "Jum l-Indipendenza", + "2003-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2003-12-13": "Jum ir-Repubblika", + "2003-12-25": "Il-Milied", + "2004-01-01": "L-Ewwel tas-Sena", + "2004-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2004-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2004-03-31": "Jum il-\u0126elsien", + "2004-04-09": "Il-\u0120img\u0127a l-Kbira", + "2004-05-01": "Jum il-\u0126addiem", + "2004-06-07": "Sette Giugno", + "2004-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2004-08-15": "Il-Festa ta' Santa Marija", + "2004-09-08": "Jum il-Vitorja", + "2004-09-21": "Jum l-Indipendenza", + "2004-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2004-12-13": "Jum ir-Repubblika", + "2004-12-25": "Il-Milied", + "2005-01-01": "L-Ewwel tas-Sena", + "2005-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2005-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2005-03-25": "Il-\u0120img\u0127a l-Kbira", + "2005-03-31": "Jum il-\u0126elsien", + "2005-05-01": "Jum il-\u0126addiem", + "2005-06-07": "Sette Giugno", + "2005-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2005-08-15": "Il-Festa ta' Santa Marija", + "2005-09-08": "Jum il-Vitorja", + "2005-09-21": "Jum l-Indipendenza", + "2005-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2005-12-13": "Jum ir-Repubblika", + "2005-12-25": "Il-Milied", + "2006-01-01": "L-Ewwel tas-Sena", + "2006-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2006-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2006-03-31": "Jum il-\u0126elsien", + "2006-04-14": "Il-\u0120img\u0127a l-Kbira", + "2006-05-01": "Jum il-\u0126addiem", + "2006-06-07": "Sette Giugno", + "2006-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2006-08-15": "Il-Festa ta' Santa Marija", + "2006-09-08": "Jum il-Vitorja", + "2006-09-21": "Jum l-Indipendenza", + "2006-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2006-12-13": "Jum ir-Repubblika", + "2006-12-25": "Il-Milied", + "2007-01-01": "L-Ewwel tas-Sena", + "2007-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2007-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2007-03-31": "Jum il-\u0126elsien", + "2007-04-06": "Il-\u0120img\u0127a l-Kbira", + "2007-05-01": "Jum il-\u0126addiem", + "2007-06-07": "Sette Giugno", + "2007-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2007-08-15": "Il-Festa ta' Santa Marija", + "2007-09-08": "Jum il-Vitorja", + "2007-09-21": "Jum l-Indipendenza", + "2007-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2007-12-13": "Jum ir-Repubblika", + "2007-12-25": "Il-Milied", + "2008-01-01": "L-Ewwel tas-Sena", + "2008-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2008-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2008-03-21": "Il-\u0120img\u0127a l-Kbira", + "2008-03-31": "Jum il-\u0126elsien", + "2008-05-01": "Jum il-\u0126addiem", + "2008-06-07": "Sette Giugno", + "2008-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2008-08-15": "Il-Festa ta' Santa Marija", + "2008-09-08": "Jum il-Vitorja", + "2008-09-21": "Jum l-Indipendenza", + "2008-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2008-12-13": "Jum ir-Repubblika", + "2008-12-25": "Il-Milied", + "2009-01-01": "L-Ewwel tas-Sena", + "2009-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2009-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2009-03-31": "Jum il-\u0126elsien", + "2009-04-10": "Il-\u0120img\u0127a l-Kbira", + "2009-05-01": "Jum il-\u0126addiem", + "2009-06-07": "Sette Giugno", + "2009-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2009-08-15": "Il-Festa ta' Santa Marija", + "2009-09-08": "Jum il-Vitorja", + "2009-09-21": "Jum l-Indipendenza", + "2009-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2009-12-13": "Jum ir-Repubblika", + "2009-12-25": "Il-Milied", + "2010-01-01": "L-Ewwel tas-Sena", + "2010-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2010-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2010-03-31": "Jum il-\u0126elsien", + "2010-04-02": "Il-\u0120img\u0127a l-Kbira", + "2010-05-01": "Jum il-\u0126addiem", + "2010-06-07": "Sette Giugno", + "2010-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2010-08-15": "Il-Festa ta' Santa Marija", + "2010-09-08": "Jum il-Vitorja", + "2010-09-21": "Jum l-Indipendenza", + "2010-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2010-12-13": "Jum ir-Repubblika", + "2010-12-25": "Il-Milied", + "2011-01-01": "L-Ewwel tas-Sena", + "2011-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2011-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2011-03-31": "Jum il-\u0126elsien", + "2011-04-22": "Il-\u0120img\u0127a l-Kbira", + "2011-05-01": "Jum il-\u0126addiem", + "2011-06-07": "Sette Giugno", + "2011-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2011-08-15": "Il-Festa ta' Santa Marija", + "2011-09-08": "Jum il-Vitorja", + "2011-09-21": "Jum l-Indipendenza", + "2011-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2011-12-13": "Jum ir-Repubblika", + "2011-12-25": "Il-Milied", + "2012-01-01": "L-Ewwel tas-Sena", + "2012-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2012-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2012-03-31": "Jum il-\u0126elsien", + "2012-04-06": "Il-\u0120img\u0127a l-Kbira", + "2012-05-01": "Jum il-\u0126addiem", + "2012-06-07": "Sette Giugno", + "2012-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2012-08-15": "Il-Festa ta' Santa Marija", + "2012-09-08": "Jum il-Vitorja", + "2012-09-21": "Jum l-Indipendenza", + "2012-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2012-12-13": "Jum ir-Repubblika", + "2012-12-25": "Il-Milied", + "2013-01-01": "L-Ewwel tas-Sena", + "2013-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2013-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2013-03-29": "Il-\u0120img\u0127a l-Kbira", + "2013-03-31": "Jum il-\u0126elsien", + "2013-05-01": "Jum il-\u0126addiem", + "2013-06-07": "Sette Giugno", + "2013-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2013-08-15": "Il-Festa ta' Santa Marija", + "2013-09-08": "Jum il-Vitorja", + "2013-09-21": "Jum l-Indipendenza", + "2013-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2013-12-13": "Jum ir-Repubblika", + "2013-12-25": "Il-Milied", + "2014-01-01": "L-Ewwel tas-Sena", + "2014-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2014-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2014-03-31": "Jum il-\u0126elsien", + "2014-04-18": "Il-\u0120img\u0127a l-Kbira", + "2014-05-01": "Jum il-\u0126addiem", + "2014-06-07": "Sette Giugno", + "2014-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2014-08-15": "Il-Festa ta' Santa Marija", + "2014-09-08": "Jum il-Vitorja", + "2014-09-21": "Jum l-Indipendenza", + "2014-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2014-12-13": "Jum ir-Repubblika", + "2014-12-25": "Il-Milied", + "2015-01-01": "L-Ewwel tas-Sena", + "2015-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2015-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2015-03-31": "Jum il-\u0126elsien", + "2015-04-03": "Il-\u0120img\u0127a l-Kbira", + "2015-05-01": "Jum il-\u0126addiem", + "2015-06-07": "Sette Giugno", + "2015-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2015-08-15": "Il-Festa ta' Santa Marija", + "2015-09-08": "Jum il-Vitorja", + "2015-09-21": "Jum l-Indipendenza", + "2015-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2015-12-13": "Jum ir-Repubblika", + "2015-12-25": "Il-Milied", + "2016-01-01": "L-Ewwel tas-Sena", + "2016-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2016-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2016-03-25": "Il-\u0120img\u0127a l-Kbira", + "2016-03-31": "Jum il-\u0126elsien", + "2016-05-01": "Jum il-\u0126addiem", + "2016-06-07": "Sette Giugno", + "2016-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2016-08-15": "Il-Festa ta' Santa Marija", + "2016-09-08": "Jum il-Vitorja", + "2016-09-21": "Jum l-Indipendenza", + "2016-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2016-12-13": "Jum ir-Repubblika", + "2016-12-25": "Il-Milied", + "2017-01-01": "L-Ewwel tas-Sena", + "2017-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2017-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2017-03-31": "Jum il-\u0126elsien", + "2017-04-14": "Il-\u0120img\u0127a l-Kbira", + "2017-05-01": "Jum il-\u0126addiem", + "2017-06-07": "Sette Giugno", + "2017-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2017-08-15": "Il-Festa ta' Santa Marija", + "2017-09-08": "Jum il-Vitorja", + "2017-09-21": "Jum l-Indipendenza", + "2017-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2017-12-13": "Jum ir-Repubblika", + "2017-12-25": "Il-Milied", + "2018-01-01": "L-Ewwel tas-Sena", + "2018-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2018-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2018-03-30": "Il-\u0120img\u0127a l-Kbira", + "2018-03-31": "Jum il-\u0126elsien", + "2018-05-01": "Jum il-\u0126addiem", + "2018-06-07": "Sette Giugno", + "2018-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2018-08-15": "Il-Festa ta' Santa Marija", + "2018-09-08": "Jum il-Vitorja", + "2018-09-21": "Jum l-Indipendenza", + "2018-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2018-12-13": "Jum ir-Repubblika", + "2018-12-25": "Il-Milied", + "2019-01-01": "L-Ewwel tas-Sena", + "2019-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2019-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2019-03-31": "Jum il-\u0126elsien", + "2019-04-19": "Il-\u0120img\u0127a l-Kbira", + "2019-05-01": "Jum il-\u0126addiem", + "2019-06-07": "Sette Giugno", + "2019-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2019-08-15": "Il-Festa ta' Santa Marija", + "2019-09-08": "Jum il-Vitorja", + "2019-09-21": "Jum l-Indipendenza", + "2019-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2019-12-13": "Jum ir-Repubblika", + "2019-12-25": "Il-Milied", + "2020-01-01": "L-Ewwel tas-Sena", + "2020-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2020-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2020-03-31": "Jum il-\u0126elsien", + "2020-04-10": "Il-\u0120img\u0127a l-Kbira", + "2020-05-01": "Jum il-\u0126addiem", + "2020-06-07": "Sette Giugno", + "2020-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2020-08-15": "Il-Festa ta' Santa Marija", + "2020-09-08": "Jum il-Vitorja", + "2020-09-21": "Jum l-Indipendenza", + "2020-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2020-12-13": "Jum ir-Repubblika", + "2020-12-25": "Il-Milied", + "2021-01-01": "L-Ewwel tas-Sena", + "2021-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2021-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2021-03-31": "Jum il-\u0126elsien", + "2021-04-02": "Il-\u0120img\u0127a l-Kbira", + "2021-05-01": "Jum il-\u0126addiem", + "2021-06-07": "Sette Giugno", + "2021-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2021-08-15": "Il-Festa ta' Santa Marija", + "2021-09-08": "Jum il-Vitorja", + "2021-09-21": "Jum l-Indipendenza", + "2021-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2021-12-13": "Jum ir-Repubblika", + "2021-12-25": "Il-Milied", + "2022-01-01": "L-Ewwel tas-Sena", + "2022-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2022-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2022-03-31": "Jum il-\u0126elsien", + "2022-04-15": "Il-\u0120img\u0127a l-Kbira", + "2022-05-01": "Jum il-\u0126addiem", + "2022-06-07": "Sette Giugno", + "2022-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2022-08-15": "Il-Festa ta' Santa Marija", + "2022-09-08": "Jum il-Vitorja", + "2022-09-21": "Jum l-Indipendenza", + "2022-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2022-12-13": "Jum ir-Repubblika", + "2022-12-25": "Il-Milied", + "2023-01-01": "L-Ewwel tas-Sena", + "2023-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2023-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2023-03-31": "Jum il-\u0126elsien", + "2023-04-07": "Il-\u0120img\u0127a l-Kbira", + "2023-05-01": "Jum il-\u0126addiem", + "2023-06-07": "Sette Giugno", + "2023-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2023-08-15": "Il-Festa ta' Santa Marija", + "2023-09-08": "Jum il-Vitorja", + "2023-09-21": "Jum l-Indipendenza", + "2023-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2023-12-13": "Jum ir-Repubblika", + "2023-12-25": "Il-Milied", + "2024-01-01": "L-Ewwel tas-Sena", + "2024-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2024-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2024-03-29": "Il-\u0120img\u0127a l-Kbira", + "2024-03-31": "Jum il-\u0126elsien", + "2024-05-01": "Jum il-\u0126addiem", + "2024-06-07": "Sette Giugno", + "2024-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2024-08-15": "Il-Festa ta' Santa Marija", + "2024-09-08": "Jum il-Vitorja", + "2024-09-21": "Jum l-Indipendenza", + "2024-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2024-12-13": "Jum ir-Repubblika", + "2024-12-25": "Il-Milied", + "2025-01-01": "L-Ewwel tas-Sena", + "2025-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2025-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2025-03-31": "Jum il-\u0126elsien", + "2025-04-18": "Il-\u0120img\u0127a l-Kbira", + "2025-05-01": "Jum il-\u0126addiem", + "2025-06-07": "Sette Giugno", + "2025-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2025-08-15": "Il-Festa ta' Santa Marija", + "2025-09-08": "Jum il-Vitorja", + "2025-09-21": "Jum l-Indipendenza", + "2025-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2025-12-13": "Jum ir-Repubblika", + "2025-12-25": "Il-Milied", + "2026-01-01": "L-Ewwel tas-Sena", + "2026-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2026-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2026-03-31": "Jum il-\u0126elsien", + "2026-04-03": "Il-\u0120img\u0127a l-Kbira", + "2026-05-01": "Jum il-\u0126addiem", + "2026-06-07": "Sette Giugno", + "2026-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2026-08-15": "Il-Festa ta' Santa Marija", + "2026-09-08": "Jum il-Vitorja", + "2026-09-21": "Jum l-Indipendenza", + "2026-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2026-12-13": "Jum ir-Repubblika", + "2026-12-25": "Il-Milied", + "2027-01-01": "L-Ewwel tas-Sena", + "2027-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2027-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2027-03-26": "Il-\u0120img\u0127a l-Kbira", + "2027-03-31": "Jum il-\u0126elsien", + "2027-05-01": "Jum il-\u0126addiem", + "2027-06-07": "Sette Giugno", + "2027-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2027-08-15": "Il-Festa ta' Santa Marija", + "2027-09-08": "Jum il-Vitorja", + "2027-09-21": "Jum l-Indipendenza", + "2027-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2027-12-13": "Jum ir-Repubblika", + "2027-12-25": "Il-Milied", + "2028-01-01": "L-Ewwel tas-Sena", + "2028-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2028-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2028-03-31": "Jum il-\u0126elsien", + "2028-04-14": "Il-\u0120img\u0127a l-Kbira", + "2028-05-01": "Jum il-\u0126addiem", + "2028-06-07": "Sette Giugno", + "2028-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2028-08-15": "Il-Festa ta' Santa Marija", + "2028-09-08": "Jum il-Vitorja", + "2028-09-21": "Jum l-Indipendenza", + "2028-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2028-12-13": "Jum ir-Repubblika", + "2028-12-25": "Il-Milied", + "2029-01-01": "L-Ewwel tas-Sena", + "2029-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2029-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2029-03-30": "Il-\u0120img\u0127a l-Kbira", + "2029-03-31": "Jum il-\u0126elsien", + "2029-05-01": "Jum il-\u0126addiem", + "2029-06-07": "Sette Giugno", + "2029-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2029-08-15": "Il-Festa ta' Santa Marija", + "2029-09-08": "Jum il-Vitorja", + "2029-09-21": "Jum l-Indipendenza", + "2029-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2029-12-13": "Jum ir-Repubblika", + "2029-12-25": "Il-Milied", + "2030-01-01": "L-Ewwel tas-Sena", + "2030-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2030-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2030-03-31": "Jum il-\u0126elsien", + "2030-04-19": "Il-\u0120img\u0127a l-Kbira", + "2030-05-01": "Jum il-\u0126addiem", + "2030-06-07": "Sette Giugno", + "2030-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2030-08-15": "Il-Festa ta' Santa Marija", + "2030-09-08": "Jum il-Vitorja", + "2030-09-21": "Jum l-Indipendenza", + "2030-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2030-12-13": "Jum ir-Repubblika", + "2030-12-25": "Il-Milied", + "2031-01-01": "L-Ewwel tas-Sena", + "2031-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2031-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2031-03-31": "Jum il-\u0126elsien", + "2031-04-11": "Il-\u0120img\u0127a l-Kbira", + "2031-05-01": "Jum il-\u0126addiem", + "2031-06-07": "Sette Giugno", + "2031-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2031-08-15": "Il-Festa ta' Santa Marija", + "2031-09-08": "Jum il-Vitorja", + "2031-09-21": "Jum l-Indipendenza", + "2031-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2031-12-13": "Jum ir-Repubblika", + "2031-12-25": "Il-Milied", + "2032-01-01": "L-Ewwel tas-Sena", + "2032-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2032-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2032-03-26": "Il-\u0120img\u0127a l-Kbira", + "2032-03-31": "Jum il-\u0126elsien", + "2032-05-01": "Jum il-\u0126addiem", + "2032-06-07": "Sette Giugno", + "2032-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2032-08-15": "Il-Festa ta' Santa Marija", + "2032-09-08": "Jum il-Vitorja", + "2032-09-21": "Jum l-Indipendenza", + "2032-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2032-12-13": "Jum ir-Repubblika", + "2032-12-25": "Il-Milied", + "2033-01-01": "L-Ewwel tas-Sena", + "2033-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2033-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2033-03-31": "Jum il-\u0126elsien", + "2033-04-15": "Il-\u0120img\u0127a l-Kbira", + "2033-05-01": "Jum il-\u0126addiem", + "2033-06-07": "Sette Giugno", + "2033-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2033-08-15": "Il-Festa ta' Santa Marija", + "2033-09-08": "Jum il-Vitorja", + "2033-09-21": "Jum l-Indipendenza", + "2033-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2033-12-13": "Jum ir-Repubblika", + "2033-12-25": "Il-Milied", + "2034-01-01": "L-Ewwel tas-Sena", + "2034-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2034-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2034-03-31": "Jum il-\u0126elsien", + "2034-04-07": "Il-\u0120img\u0127a l-Kbira", + "2034-05-01": "Jum il-\u0126addiem", + "2034-06-07": "Sette Giugno", + "2034-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2034-08-15": "Il-Festa ta' Santa Marija", + "2034-09-08": "Jum il-Vitorja", + "2034-09-21": "Jum l-Indipendenza", + "2034-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2034-12-13": "Jum ir-Repubblika", + "2034-12-25": "Il-Milied", + "2035-01-01": "L-Ewwel tas-Sena", + "2035-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2035-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2035-03-23": "Il-\u0120img\u0127a l-Kbira", + "2035-03-31": "Jum il-\u0126elsien", + "2035-05-01": "Jum il-\u0126addiem", + "2035-06-07": "Sette Giugno", + "2035-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2035-08-15": "Il-Festa ta' Santa Marija", + "2035-09-08": "Jum il-Vitorja", + "2035-09-21": "Jum l-Indipendenza", + "2035-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2035-12-13": "Jum ir-Repubblika", + "2035-12-25": "Il-Milied", + "2036-01-01": "L-Ewwel tas-Sena", + "2036-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2036-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2036-03-31": "Jum il-\u0126elsien", + "2036-04-11": "Il-\u0120img\u0127a l-Kbira", + "2036-05-01": "Jum il-\u0126addiem", + "2036-06-07": "Sette Giugno", + "2036-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2036-08-15": "Il-Festa ta' Santa Marija", + "2036-09-08": "Jum il-Vitorja", + "2036-09-21": "Jum l-Indipendenza", + "2036-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2036-12-13": "Jum ir-Repubblika", + "2036-12-25": "Il-Milied", + "2037-01-01": "L-Ewwel tas-Sena", + "2037-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2037-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2037-03-31": "Jum il-\u0126elsien", + "2037-04-03": "Il-\u0120img\u0127a l-Kbira", + "2037-05-01": "Jum il-\u0126addiem", + "2037-06-07": "Sette Giugno", + "2037-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2037-08-15": "Il-Festa ta' Santa Marija", + "2037-09-08": "Jum il-Vitorja", + "2037-09-21": "Jum l-Indipendenza", + "2037-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2037-12-13": "Jum ir-Repubblika", + "2037-12-25": "Il-Milied", + "2038-01-01": "L-Ewwel tas-Sena", + "2038-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2038-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2038-03-31": "Jum il-\u0126elsien", + "2038-04-23": "Il-\u0120img\u0127a l-Kbira", + "2038-05-01": "Jum il-\u0126addiem", + "2038-06-07": "Sette Giugno", + "2038-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2038-08-15": "Il-Festa ta' Santa Marija", + "2038-09-08": "Jum il-Vitorja", + "2038-09-21": "Jum l-Indipendenza", + "2038-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2038-12-13": "Jum ir-Repubblika", + "2038-12-25": "Il-Milied", + "2039-01-01": "L-Ewwel tas-Sena", + "2039-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2039-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2039-03-31": "Jum il-\u0126elsien", + "2039-04-08": "Il-\u0120img\u0127a l-Kbira", + "2039-05-01": "Jum il-\u0126addiem", + "2039-06-07": "Sette Giugno", + "2039-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2039-08-15": "Il-Festa ta' Santa Marija", + "2039-09-08": "Jum il-Vitorja", + "2039-09-21": "Jum l-Indipendenza", + "2039-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2039-12-13": "Jum ir-Repubblika", + "2039-12-25": "Il-Milied", + "2040-01-01": "L-Ewwel tas-Sena", + "2040-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2040-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2040-03-30": "Il-\u0120img\u0127a l-Kbira", + "2040-03-31": "Jum il-\u0126elsien", + "2040-05-01": "Jum il-\u0126addiem", + "2040-06-07": "Sette Giugno", + "2040-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2040-08-15": "Il-Festa ta' Santa Marija", + "2040-09-08": "Jum il-Vitorja", + "2040-09-21": "Jum l-Indipendenza", + "2040-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2040-12-13": "Jum ir-Repubblika", + "2040-12-25": "Il-Milied", + "2041-01-01": "L-Ewwel tas-Sena", + "2041-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2041-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2041-03-31": "Jum il-\u0126elsien", + "2041-04-19": "Il-\u0120img\u0127a l-Kbira", + "2041-05-01": "Jum il-\u0126addiem", + "2041-06-07": "Sette Giugno", + "2041-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2041-08-15": "Il-Festa ta' Santa Marija", + "2041-09-08": "Jum il-Vitorja", + "2041-09-21": "Jum l-Indipendenza", + "2041-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2041-12-13": "Jum ir-Repubblika", + "2041-12-25": "Il-Milied", + "2042-01-01": "L-Ewwel tas-Sena", + "2042-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2042-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2042-03-31": "Jum il-\u0126elsien", + "2042-04-04": "Il-\u0120img\u0127a l-Kbira", + "2042-05-01": "Jum il-\u0126addiem", + "2042-06-07": "Sette Giugno", + "2042-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2042-08-15": "Il-Festa ta' Santa Marija", + "2042-09-08": "Jum il-Vitorja", + "2042-09-21": "Jum l-Indipendenza", + "2042-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2042-12-13": "Jum ir-Repubblika", + "2042-12-25": "Il-Milied", + "2043-01-01": "L-Ewwel tas-Sena", + "2043-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2043-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2043-03-27": "Il-\u0120img\u0127a l-Kbira", + "2043-03-31": "Jum il-\u0126elsien", + "2043-05-01": "Jum il-\u0126addiem", + "2043-06-07": "Sette Giugno", + "2043-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2043-08-15": "Il-Festa ta' Santa Marija", + "2043-09-08": "Jum il-Vitorja", + "2043-09-21": "Jum l-Indipendenza", + "2043-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2043-12-13": "Jum ir-Repubblika", + "2043-12-25": "Il-Milied", + "2044-01-01": "L-Ewwel tas-Sena", + "2044-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2044-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2044-03-31": "Jum il-\u0126elsien", + "2044-04-15": "Il-\u0120img\u0127a l-Kbira", + "2044-05-01": "Jum il-\u0126addiem", + "2044-06-07": "Sette Giugno", + "2044-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2044-08-15": "Il-Festa ta' Santa Marija", + "2044-09-08": "Jum il-Vitorja", + "2044-09-21": "Jum l-Indipendenza", + "2044-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2044-12-13": "Jum ir-Repubblika", + "2044-12-25": "Il-Milied", + "2045-01-01": "L-Ewwel tas-Sena", + "2045-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2045-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2045-03-31": "Jum il-\u0126elsien", + "2045-04-07": "Il-\u0120img\u0127a l-Kbira", + "2045-05-01": "Jum il-\u0126addiem", + "2045-06-07": "Sette Giugno", + "2045-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2045-08-15": "Il-Festa ta' Santa Marija", + "2045-09-08": "Jum il-Vitorja", + "2045-09-21": "Jum l-Indipendenza", + "2045-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2045-12-13": "Jum ir-Repubblika", + "2045-12-25": "Il-Milied", + "2046-01-01": "L-Ewwel tas-Sena", + "2046-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2046-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2046-03-23": "Il-\u0120img\u0127a l-Kbira", + "2046-03-31": "Jum il-\u0126elsien", + "2046-05-01": "Jum il-\u0126addiem", + "2046-06-07": "Sette Giugno", + "2046-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2046-08-15": "Il-Festa ta' Santa Marija", + "2046-09-08": "Jum il-Vitorja", + "2046-09-21": "Jum l-Indipendenza", + "2046-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2046-12-13": "Jum ir-Repubblika", + "2046-12-25": "Il-Milied", + "2047-01-01": "L-Ewwel tas-Sena", + "2047-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2047-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2047-03-31": "Jum il-\u0126elsien", + "2047-04-12": "Il-\u0120img\u0127a l-Kbira", + "2047-05-01": "Jum il-\u0126addiem", + "2047-06-07": "Sette Giugno", + "2047-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2047-08-15": "Il-Festa ta' Santa Marija", + "2047-09-08": "Jum il-Vitorja", + "2047-09-21": "Jum l-Indipendenza", + "2047-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2047-12-13": "Jum ir-Repubblika", + "2047-12-25": "Il-Milied", + "2048-01-01": "L-Ewwel tas-Sena", + "2048-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2048-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2048-03-31": "Jum il-\u0126elsien", + "2048-04-03": "Il-\u0120img\u0127a l-Kbira", + "2048-05-01": "Jum il-\u0126addiem", + "2048-06-07": "Sette Giugno", + "2048-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2048-08-15": "Il-Festa ta' Santa Marija", + "2048-09-08": "Jum il-Vitorja", + "2048-09-21": "Jum l-Indipendenza", + "2048-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2048-12-13": "Jum ir-Repubblika", + "2048-12-25": "Il-Milied", + "2049-01-01": "L-Ewwel tas-Sena", + "2049-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2049-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2049-03-31": "Jum il-\u0126elsien", + "2049-04-16": "Il-\u0120img\u0127a l-Kbira", + "2049-05-01": "Jum il-\u0126addiem", + "2049-06-07": "Sette Giugno", + "2049-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2049-08-15": "Il-Festa ta' Santa Marija", + "2049-09-08": "Jum il-Vitorja", + "2049-09-21": "Jum l-Indipendenza", + "2049-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2049-12-13": "Jum ir-Repubblika", + "2049-12-25": "Il-Milied", + "2050-01-01": "L-Ewwel tas-Sena", + "2050-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", + "2050-03-19": "Il-Festa ta' San \u0120u\u017cepp", + "2050-03-31": "Jum il-\u0126elsien", + "2050-04-08": "Il-\u0120img\u0127a l-Kbira", + "2050-05-01": "Jum il-\u0126addiem", + "2050-06-07": "Sette Giugno", + "2050-06-29": "Il-Festa ta' San Pietru u San Pawl", + "2050-08-15": "Il-Festa ta' Santa Marija", + "2050-09-08": "Jum il-Vitorja", + "2050-09-21": "Jum l-Indipendenza", + "2050-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", + "2050-12-13": "Jum ir-Repubblika", + "2050-12-25": "Il-Milied" +} diff --git a/snapshots/countries/MW.json b/snapshots/countries/MW.json new file mode 100644 index 000000000..af97c2861 --- /dev/null +++ b/snapshots/countries/MW.json @@ -0,0 +1,696 @@ +{ + "2000-01-01": "New Year's Day", + "2000-01-03": "New Year's Day (Observed)", + "2000-01-15": "John Chilembwe Day", + "2000-01-17": "John Chilembwe Day (Observed)", + "2000-03-03": "Martyrs Day", + "2000-04-21": "Good Friday", + "2000-04-24": "Easter Monday", + "2000-05-01": "Labour Day", + "2000-05-14": "Kamuzu Day", + "2000-05-15": "Kamuzu Day (Observed)", + "2000-07-06": "Independence Day", + "2000-10-15": "Mother's Day", + "2000-10-16": "Mother's Day (Observed)", + "2000-12-25": "Christmas Day", + "2000-12-26": "Boxing Day", + "2001-01-01": "New Year's Day", + "2001-01-15": "John Chilembwe Day", + "2001-03-03": "Martyrs Day", + "2001-03-05": "Martyrs Day (Observed)", + "2001-04-13": "Good Friday", + "2001-04-16": "Easter Monday", + "2001-05-01": "Labour Day", + "2001-05-14": "Kamuzu Day", + "2001-07-06": "Independence Day", + "2001-10-15": "Mother's Day", + "2001-12-25": "Christmas Day", + "2001-12-26": "Boxing Day", + "2002-01-01": "New Year's Day", + "2002-01-15": "John Chilembwe Day", + "2002-03-03": "Martyrs Day", + "2002-03-04": "Martyrs Day (Observed)", + "2002-03-29": "Good Friday", + "2002-04-01": "Easter Monday", + "2002-05-01": "Labour Day", + "2002-05-14": "Kamuzu Day", + "2002-07-06": "Independence Day", + "2002-07-08": "Independence Day (Observed)", + "2002-10-15": "Mother's Day", + "2002-12-25": "Christmas Day", + "2002-12-26": "Boxing Day", + "2003-01-01": "New Year's Day", + "2003-01-15": "John Chilembwe Day", + "2003-03-03": "Martyrs Day", + "2003-04-18": "Good Friday", + "2003-04-21": "Easter Monday", + "2003-05-01": "Labour Day", + "2003-05-14": "Kamuzu Day", + "2003-07-06": "Independence Day", + "2003-07-07": "Independence Day (Observed)", + "2003-10-15": "Mother's Day", + "2003-12-25": "Christmas Day", + "2003-12-26": "Boxing Day", + "2004-01-01": "New Year's Day", + "2004-01-15": "John Chilembwe Day", + "2004-03-03": "Martyrs Day", + "2004-04-09": "Good Friday", + "2004-04-12": "Easter Monday", + "2004-05-01": "Labour Day", + "2004-05-03": "Labour Day (Observed)", + "2004-05-14": "Kamuzu Day", + "2004-07-06": "Independence Day", + "2004-10-15": "Mother's Day", + "2004-12-25": "Christmas Day", + "2004-12-26": "Boxing Day", + "2004-12-27": "Christmas Day (Observed)", + "2004-12-28": "Boxing Day (Observed)", + "2005-01-01": "New Year's Day", + "2005-01-03": "New Year's Day (Observed)", + "2005-01-15": "John Chilembwe Day", + "2005-01-17": "John Chilembwe Day (Observed)", + "2005-03-03": "Martyrs Day", + "2005-03-25": "Good Friday", + "2005-03-28": "Easter Monday", + "2005-05-01": "Labour Day", + "2005-05-02": "Labour Day (Observed)", + "2005-05-14": "Kamuzu Day", + "2005-05-16": "Kamuzu Day (Observed)", + "2005-07-06": "Independence Day", + "2005-10-15": "Mother's Day", + "2005-10-17": "Mother's Day (Observed)", + "2005-12-25": "Christmas Day", + "2005-12-26": "Boxing Day", + "2005-12-27": "Christmas Day (Observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (Observed)", + "2006-01-15": "John Chilembwe Day", + "2006-01-16": "John Chilembwe Day (Observed)", + "2006-03-03": "Martyrs Day", + "2006-04-14": "Good Friday", + "2006-04-17": "Easter Monday", + "2006-05-01": "Labour Day", + "2006-05-14": "Kamuzu Day", + "2006-05-15": "Kamuzu Day (Observed)", + "2006-07-06": "Independence Day", + "2006-10-15": "Mother's Day", + "2006-10-16": "Mother's Day (Observed)", + "2006-12-25": "Christmas Day", + "2006-12-26": "Boxing Day", + "2007-01-01": "New Year's Day", + "2007-01-15": "John Chilembwe Day", + "2007-03-03": "Martyrs Day", + "2007-03-05": "Martyrs Day (Observed)", + "2007-04-06": "Good Friday", + "2007-04-09": "Easter Monday", + "2007-05-01": "Labour Day", + "2007-05-14": "Kamuzu Day", + "2007-07-06": "Independence Day", + "2007-10-15": "Mother's Day", + "2007-12-25": "Christmas Day", + "2007-12-26": "Boxing Day", + "2008-01-01": "New Year's Day", + "2008-01-15": "John Chilembwe Day", + "2008-03-03": "Martyrs Day", + "2008-03-21": "Good Friday", + "2008-03-24": "Easter Monday", + "2008-05-01": "Labour Day", + "2008-05-14": "Kamuzu Day", + "2008-07-06": "Independence Day", + "2008-07-07": "Independence Day (Observed)", + "2008-10-15": "Mother's Day", + "2008-12-25": "Christmas Day", + "2008-12-26": "Boxing Day", + "2009-01-01": "New Year's Day", + "2009-01-15": "John Chilembwe Day", + "2009-03-03": "Martyrs Day", + "2009-04-10": "Good Friday", + "2009-04-13": "Easter Monday", + "2009-05-01": "Labour Day", + "2009-05-14": "Kamuzu Day", + "2009-07-06": "Independence Day", + "2009-10-15": "Mother's Day", + "2009-12-25": "Christmas Day", + "2009-12-26": "Boxing Day", + "2009-12-28": "Boxing Day (Observed)", + "2010-01-01": "New Year's Day", + "2010-01-15": "John Chilembwe Day", + "2010-03-03": "Martyrs Day", + "2010-04-02": "Good Friday", + "2010-04-05": "Easter Monday", + "2010-05-01": "Labour Day", + "2010-05-03": "Labour Day (Observed)", + "2010-05-14": "Kamuzu Day", + "2010-07-06": "Independence Day", + "2010-10-15": "Mother's Day", + "2010-12-25": "Christmas Day", + "2010-12-26": "Boxing Day", + "2010-12-27": "Christmas Day (Observed)", + "2010-12-28": "Boxing Day (Observed)", + "2011-01-01": "New Year's Day", + "2011-01-03": "New Year's Day (Observed)", + "2011-01-15": "John Chilembwe Day", + "2011-01-17": "John Chilembwe Day (Observed)", + "2011-03-03": "Martyrs Day", + "2011-04-22": "Good Friday", + "2011-04-25": "Easter Monday", + "2011-05-01": "Labour Day", + "2011-05-02": "Labour Day (Observed)", + "2011-05-14": "Kamuzu Day", + "2011-05-16": "Kamuzu Day (Observed)", + "2011-07-06": "Independence Day", + "2011-10-15": "Mother's Day", + "2011-10-17": "Mother's Day (Observed)", + "2011-12-25": "Christmas Day", + "2011-12-26": "Boxing Day", + "2011-12-27": "Christmas Day (Observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (Observed)", + "2012-01-15": "John Chilembwe Day", + "2012-01-16": "John Chilembwe Day (Observed)", + "2012-03-03": "Martyrs Day", + "2012-03-05": "Martyrs Day (Observed)", + "2012-04-06": "Good Friday", + "2012-04-09": "Easter Monday", + "2012-05-01": "Labour Day", + "2012-05-14": "Kamuzu Day", + "2012-07-06": "Independence Day", + "2012-10-15": "Mother's Day", + "2012-12-25": "Christmas Day", + "2012-12-26": "Boxing Day", + "2013-01-01": "New Year's Day", + "2013-01-15": "John Chilembwe Day", + "2013-03-03": "Martyrs Day", + "2013-03-04": "Martyrs Day (Observed)", + "2013-03-29": "Good Friday", + "2013-04-01": "Easter Monday", + "2013-05-01": "Labour Day", + "2013-05-14": "Kamuzu Day", + "2013-07-06": "Independence Day", + "2013-07-08": "Independence Day (Observed)", + "2013-10-15": "Mother's Day", + "2013-12-25": "Christmas Day", + "2013-12-26": "Boxing Day", + "2014-01-01": "New Year's Day", + "2014-01-15": "John Chilembwe Day", + "2014-03-03": "Martyrs Day", + "2014-04-18": "Good Friday", + "2014-04-21": "Easter Monday", + "2014-05-01": "Labour Day", + "2014-05-14": "Kamuzu Day", + "2014-07-06": "Independence Day", + "2014-07-07": "Independence Day (Observed)", + "2014-10-15": "Mother's Day", + "2014-12-25": "Christmas Day", + "2014-12-26": "Boxing Day", + "2015-01-01": "New Year's Day", + "2015-01-15": "John Chilembwe Day", + "2015-03-03": "Martyrs Day", + "2015-04-03": "Good Friday", + "2015-04-06": "Easter Monday", + "2015-05-01": "Labour Day", + "2015-05-14": "Kamuzu Day", + "2015-07-06": "Independence Day", + "2015-10-15": "Mother's Day", + "2015-12-25": "Christmas Day", + "2015-12-26": "Boxing Day", + "2015-12-28": "Boxing Day (Observed)", + "2016-01-01": "New Year's Day", + "2016-01-15": "John Chilembwe Day", + "2016-03-03": "Martyrs Day", + "2016-03-25": "Good Friday", + "2016-03-28": "Easter Monday", + "2016-05-01": "Labour Day", + "2016-05-02": "Labour Day (Observed)", + "2016-05-14": "Kamuzu Day", + "2016-05-16": "Kamuzu Day (Observed)", + "2016-07-06": "Independence Day", + "2016-10-15": "Mother's Day", + "2016-10-17": "Mother's Day (Observed)", + "2016-12-25": "Christmas Day", + "2016-12-26": "Boxing Day", + "2016-12-27": "Christmas Day (Observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (Observed)", + "2017-01-15": "John Chilembwe Day", + "2017-01-16": "John Chilembwe Day (Observed)", + "2017-03-03": "Martyrs Day", + "2017-04-14": "Good Friday", + "2017-04-17": "Easter Monday", + "2017-05-01": "Labour Day", + "2017-05-14": "Kamuzu Day", + "2017-05-15": "Kamuzu Day (Observed)", + "2017-07-06": "Independence Day", + "2017-10-15": "Mother's Day", + "2017-10-16": "Mother's Day (Observed)", + "2017-12-25": "Christmas Day", + "2017-12-26": "Boxing Day", + "2018-01-01": "New Year's Day", + "2018-01-15": "John Chilembwe Day", + "2018-03-03": "Martyrs Day", + "2018-03-05": "Martyrs Day (Observed)", + "2018-03-30": "Good Friday", + "2018-04-02": "Easter Monday", + "2018-05-01": "Labour Day", + "2018-05-14": "Kamuzu Day", + "2018-07-06": "Independence Day", + "2018-10-15": "Mother's Day", + "2018-12-25": "Christmas Day", + "2018-12-26": "Boxing Day", + "2019-01-01": "New Year's Day", + "2019-01-15": "John Chilembwe Day", + "2019-03-03": "Martyrs Day", + "2019-03-04": "Martyrs Day (Observed)", + "2019-04-19": "Good Friday", + "2019-04-22": "Easter Monday", + "2019-05-01": "Labour Day", + "2019-05-14": "Kamuzu Day", + "2019-07-06": "Independence Day", + "2019-07-08": "Independence Day (Observed)", + "2019-10-15": "Mother's Day", + "2019-12-25": "Christmas Day", + "2019-12-26": "Boxing Day", + "2020-01-01": "New Year's Day", + "2020-01-15": "John Chilembwe Day", + "2020-03-03": "Martyrs Day", + "2020-04-10": "Good Friday", + "2020-04-13": "Easter Monday", + "2020-05-01": "Labour Day", + "2020-05-14": "Kamuzu Day", + "2020-07-06": "Independence Day", + "2020-10-15": "Mother's Day", + "2020-12-25": "Christmas Day", + "2020-12-26": "Boxing Day", + "2020-12-28": "Boxing Day (Observed)", + "2021-01-01": "New Year's Day", + "2021-01-15": "John Chilembwe Day", + "2021-03-03": "Martyrs Day", + "2021-04-02": "Good Friday", + "2021-04-05": "Easter Monday", + "2021-05-01": "Labour Day", + "2021-05-03": "Labour Day (Observed)", + "2021-05-14": "Kamuzu Day", + "2021-07-06": "Independence Day", + "2021-10-15": "Mother's Day", + "2021-12-25": "Christmas Day", + "2021-12-26": "Boxing Day", + "2021-12-27": "Christmas Day (Observed)", + "2021-12-28": "Boxing Day (Observed)", + "2022-01-01": "New Year's Day", + "2022-01-03": "New Year's Day (Observed)", + "2022-01-15": "John Chilembwe Day", + "2022-01-17": "John Chilembwe Day (Observed)", + "2022-03-03": "Martyrs Day", + "2022-04-15": "Good Friday", + "2022-04-18": "Easter Monday", + "2022-05-01": "Labour Day", + "2022-05-02": "Labour Day (Observed)", + "2022-05-14": "Kamuzu Day", + "2022-05-16": "Kamuzu Day (Observed)", + "2022-07-06": "Independence Day", + "2022-10-15": "Mother's Day", + "2022-10-17": "Mother's Day (Observed)", + "2022-12-25": "Christmas Day", + "2022-12-26": "Boxing Day", + "2022-12-27": "Christmas Day (Observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (Observed)", + "2023-01-15": "John Chilembwe Day", + "2023-01-16": "John Chilembwe Day (Observed)", + "2023-03-03": "Martyrs Day", + "2023-04-07": "Good Friday", + "2023-04-10": "Easter Monday", + "2023-05-01": "Labour Day", + "2023-05-14": "Kamuzu Day", + "2023-05-15": "Kamuzu Day (Observed)", + "2023-07-06": "Independence Day", + "2023-10-15": "Mother's Day", + "2023-10-16": "Mother's Day (Observed)", + "2023-12-25": "Christmas Day", + "2023-12-26": "Boxing Day", + "2024-01-01": "New Year's Day", + "2024-01-15": "John Chilembwe Day", + "2024-03-03": "Martyrs Day", + "2024-03-04": "Martyrs Day (Observed)", + "2024-03-29": "Good Friday", + "2024-04-01": "Easter Monday", + "2024-05-01": "Labour Day", + "2024-05-14": "Kamuzu Day", + "2024-07-06": "Independence Day", + "2024-07-08": "Independence Day (Observed)", + "2024-10-15": "Mother's Day", + "2024-12-25": "Christmas Day", + "2024-12-26": "Boxing Day", + "2025-01-01": "New Year's Day", + "2025-01-15": "John Chilembwe Day", + "2025-03-03": "Martyrs Day", + "2025-04-18": "Good Friday", + "2025-04-21": "Easter Monday", + "2025-05-01": "Labour Day", + "2025-05-14": "Kamuzu Day", + "2025-07-06": "Independence Day", + "2025-07-07": "Independence Day (Observed)", + "2025-10-15": "Mother's Day", + "2025-12-25": "Christmas Day", + "2025-12-26": "Boxing Day", + "2026-01-01": "New Year's Day", + "2026-01-15": "John Chilembwe Day", + "2026-03-03": "Martyrs Day", + "2026-04-03": "Good Friday", + "2026-04-06": "Easter Monday", + "2026-05-01": "Labour Day", + "2026-05-14": "Kamuzu Day", + "2026-07-06": "Independence Day", + "2026-10-15": "Mother's Day", + "2026-12-25": "Christmas Day", + "2026-12-26": "Boxing Day", + "2026-12-28": "Boxing Day (Observed)", + "2027-01-01": "New Year's Day", + "2027-01-15": "John Chilembwe Day", + "2027-03-03": "Martyrs Day", + "2027-03-26": "Good Friday", + "2027-03-29": "Easter Monday", + "2027-05-01": "Labour Day", + "2027-05-03": "Labour Day (Observed)", + "2027-05-14": "Kamuzu Day", + "2027-07-06": "Independence Day", + "2027-10-15": "Mother's Day", + "2027-12-25": "Christmas Day", + "2027-12-26": "Boxing Day", + "2027-12-27": "Christmas Day (Observed)", + "2027-12-28": "Boxing Day (Observed)", + "2028-01-01": "New Year's Day", + "2028-01-03": "New Year's Day (Observed)", + "2028-01-15": "John Chilembwe Day", + "2028-01-17": "John Chilembwe Day (Observed)", + "2028-03-03": "Martyrs Day", + "2028-04-14": "Good Friday", + "2028-04-17": "Easter Monday", + "2028-05-01": "Labour Day", + "2028-05-14": "Kamuzu Day", + "2028-05-15": "Kamuzu Day (Observed)", + "2028-07-06": "Independence Day", + "2028-10-15": "Mother's Day", + "2028-10-16": "Mother's Day (Observed)", + "2028-12-25": "Christmas Day", + "2028-12-26": "Boxing Day", + "2029-01-01": "New Year's Day", + "2029-01-15": "John Chilembwe Day", + "2029-03-03": "Martyrs Day", + "2029-03-05": "Martyrs Day (Observed)", + "2029-03-30": "Good Friday", + "2029-04-02": "Easter Monday", + "2029-05-01": "Labour Day", + "2029-05-14": "Kamuzu Day", + "2029-07-06": "Independence Day", + "2029-10-15": "Mother's Day", + "2029-12-25": "Christmas Day", + "2029-12-26": "Boxing Day", + "2030-01-01": "New Year's Day", + "2030-01-15": "John Chilembwe Day", + "2030-03-03": "Martyrs Day", + "2030-03-04": "Martyrs Day (Observed)", + "2030-04-19": "Good Friday", + "2030-04-22": "Easter Monday", + "2030-05-01": "Labour Day", + "2030-05-14": "Kamuzu Day", + "2030-07-06": "Independence Day", + "2030-07-08": "Independence Day (Observed)", + "2030-10-15": "Mother's Day", + "2030-12-25": "Christmas Day", + "2030-12-26": "Boxing Day", + "2031-01-01": "New Year's Day", + "2031-01-15": "John Chilembwe Day", + "2031-03-03": "Martyrs Day", + "2031-04-11": "Good Friday", + "2031-04-14": "Easter Monday", + "2031-05-01": "Labour Day", + "2031-05-14": "Kamuzu Day", + "2031-07-06": "Independence Day", + "2031-07-07": "Independence Day (Observed)", + "2031-10-15": "Mother's Day", + "2031-12-25": "Christmas Day", + "2031-12-26": "Boxing Day", + "2032-01-01": "New Year's Day", + "2032-01-15": "John Chilembwe Day", + "2032-03-03": "Martyrs Day", + "2032-03-26": "Good Friday", + "2032-03-29": "Easter Monday", + "2032-05-01": "Labour Day", + "2032-05-03": "Labour Day (Observed)", + "2032-05-14": "Kamuzu Day", + "2032-07-06": "Independence Day", + "2032-10-15": "Mother's Day", + "2032-12-25": "Christmas Day", + "2032-12-26": "Boxing Day", + "2032-12-27": "Christmas Day (Observed)", + "2032-12-28": "Boxing Day (Observed)", + "2033-01-01": "New Year's Day", + "2033-01-03": "New Year's Day (Observed)", + "2033-01-15": "John Chilembwe Day", + "2033-01-17": "John Chilembwe Day (Observed)", + "2033-03-03": "Martyrs Day", + "2033-04-15": "Good Friday", + "2033-04-18": "Easter Monday", + "2033-05-01": "Labour Day", + "2033-05-02": "Labour Day (Observed)", + "2033-05-14": "Kamuzu Day", + "2033-05-16": "Kamuzu Day (Observed)", + "2033-07-06": "Independence Day", + "2033-10-15": "Mother's Day", + "2033-10-17": "Mother's Day (Observed)", + "2033-12-25": "Christmas Day", + "2033-12-26": "Boxing Day", + "2033-12-27": "Christmas Day (Observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-01-15": "John Chilembwe Day", + "2034-01-16": "John Chilembwe Day (Observed)", + "2034-03-03": "Martyrs Day", + "2034-04-07": "Good Friday", + "2034-04-10": "Easter Monday", + "2034-05-01": "Labour Day", + "2034-05-14": "Kamuzu Day", + "2034-05-15": "Kamuzu Day (Observed)", + "2034-07-06": "Independence Day", + "2034-10-15": "Mother's Day", + "2034-10-16": "Mother's Day (Observed)", + "2034-12-25": "Christmas Day", + "2034-12-26": "Boxing Day", + "2035-01-01": "New Year's Day", + "2035-01-15": "John Chilembwe Day", + "2035-03-03": "Martyrs Day", + "2035-03-05": "Martyrs Day (Observed)", + "2035-03-23": "Good Friday", + "2035-03-26": "Easter Monday", + "2035-05-01": "Labour Day", + "2035-05-14": "Kamuzu Day", + "2035-07-06": "Independence Day", + "2035-10-15": "Mother's Day", + "2035-12-25": "Christmas Day", + "2035-12-26": "Boxing Day", + "2036-01-01": "New Year's Day", + "2036-01-15": "John Chilembwe Day", + "2036-03-03": "Martyrs Day", + "2036-04-11": "Good Friday", + "2036-04-14": "Easter Monday", + "2036-05-01": "Labour Day", + "2036-05-14": "Kamuzu Day", + "2036-07-06": "Independence Day", + "2036-07-07": "Independence Day (Observed)", + "2036-10-15": "Mother's Day", + "2036-12-25": "Christmas Day", + "2036-12-26": "Boxing Day", + "2037-01-01": "New Year's Day", + "2037-01-15": "John Chilembwe Day", + "2037-03-03": "Martyrs Day", + "2037-04-03": "Good Friday", + "2037-04-06": "Easter Monday", + "2037-05-01": "Labour Day", + "2037-05-14": "Kamuzu Day", + "2037-07-06": "Independence Day", + "2037-10-15": "Mother's Day", + "2037-12-25": "Christmas Day", + "2037-12-26": "Boxing Day", + "2037-12-28": "Boxing Day (Observed)", + "2038-01-01": "New Year's Day", + "2038-01-15": "John Chilembwe Day", + "2038-03-03": "Martyrs Day", + "2038-04-23": "Good Friday", + "2038-04-26": "Easter Monday", + "2038-05-01": "Labour Day", + "2038-05-03": "Labour Day (Observed)", + "2038-05-14": "Kamuzu Day", + "2038-07-06": "Independence Day", + "2038-10-15": "Mother's Day", + "2038-12-25": "Christmas Day", + "2038-12-26": "Boxing Day", + "2038-12-27": "Christmas Day (Observed)", + "2038-12-28": "Boxing Day (Observed)", + "2039-01-01": "New Year's Day", + "2039-01-03": "New Year's Day (Observed)", + "2039-01-15": "John Chilembwe Day", + "2039-01-17": "John Chilembwe Day (Observed)", + "2039-03-03": "Martyrs Day", + "2039-04-08": "Good Friday", + "2039-04-11": "Easter Monday", + "2039-05-01": "Labour Day", + "2039-05-02": "Labour Day (Observed)", + "2039-05-14": "Kamuzu Day", + "2039-05-16": "Kamuzu Day (Observed)", + "2039-07-06": "Independence Day", + "2039-10-15": "Mother's Day", + "2039-10-17": "Mother's Day (Observed)", + "2039-12-25": "Christmas Day", + "2039-12-26": "Boxing Day", + "2039-12-27": "Christmas Day (Observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (Observed)", + "2040-01-15": "John Chilembwe Day", + "2040-01-16": "John Chilembwe Day (Observed)", + "2040-03-03": "Martyrs Day", + "2040-03-05": "Martyrs Day (Observed)", + "2040-03-30": "Good Friday", + "2040-04-02": "Easter Monday", + "2040-05-01": "Labour Day", + "2040-05-14": "Kamuzu Day", + "2040-07-06": "Independence Day", + "2040-10-15": "Mother's Day", + "2040-12-25": "Christmas Day", + "2040-12-26": "Boxing Day", + "2041-01-01": "New Year's Day", + "2041-01-15": "John Chilembwe Day", + "2041-03-03": "Martyrs Day", + "2041-03-04": "Martyrs Day (Observed)", + "2041-04-19": "Good Friday", + "2041-04-22": "Easter Monday", + "2041-05-01": "Labour Day", + "2041-05-14": "Kamuzu Day", + "2041-07-06": "Independence Day", + "2041-07-08": "Independence Day (Observed)", + "2041-10-15": "Mother's Day", + "2041-12-25": "Christmas Day", + "2041-12-26": "Boxing Day", + "2042-01-01": "New Year's Day", + "2042-01-15": "John Chilembwe Day", + "2042-03-03": "Martyrs Day", + "2042-04-04": "Good Friday", + "2042-04-07": "Easter Monday", + "2042-05-01": "Labour Day", + "2042-05-14": "Kamuzu Day", + "2042-07-06": "Independence Day", + "2042-07-07": "Independence Day (Observed)", + "2042-10-15": "Mother's Day", + "2042-12-25": "Christmas Day", + "2042-12-26": "Boxing Day", + "2043-01-01": "New Year's Day", + "2043-01-15": "John Chilembwe Day", + "2043-03-03": "Martyrs Day", + "2043-03-27": "Good Friday", + "2043-03-30": "Easter Monday", + "2043-05-01": "Labour Day", + "2043-05-14": "Kamuzu Day", + "2043-07-06": "Independence Day", + "2043-10-15": "Mother's Day", + "2043-12-25": "Christmas Day", + "2043-12-26": "Boxing Day", + "2043-12-28": "Boxing Day (Observed)", + "2044-01-01": "New Year's Day", + "2044-01-15": "John Chilembwe Day", + "2044-03-03": "Martyrs Day", + "2044-04-15": "Good Friday", + "2044-04-18": "Easter Monday", + "2044-05-01": "Labour Day", + "2044-05-02": "Labour Day (Observed)", + "2044-05-14": "Kamuzu Day", + "2044-05-16": "Kamuzu Day (Observed)", + "2044-07-06": "Independence Day", + "2044-10-15": "Mother's Day", + "2044-10-17": "Mother's Day (Observed)", + "2044-12-25": "Christmas Day", + "2044-12-26": "Boxing Day", + "2044-12-27": "Christmas Day (Observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (Observed)", + "2045-01-15": "John Chilembwe Day", + "2045-01-16": "John Chilembwe Day (Observed)", + "2045-03-03": "Martyrs Day", + "2045-04-07": "Good Friday", + "2045-04-10": "Easter Monday", + "2045-05-01": "Labour Day", + "2045-05-14": "Kamuzu Day", + "2045-05-15": "Kamuzu Day (Observed)", + "2045-07-06": "Independence Day", + "2045-10-15": "Mother's Day", + "2045-10-16": "Mother's Day (Observed)", + "2045-12-25": "Christmas Day", + "2045-12-26": "Boxing Day", + "2046-01-01": "New Year's Day", + "2046-01-15": "John Chilembwe Day", + "2046-03-03": "Martyrs Day", + "2046-03-05": "Martyrs Day (Observed)", + "2046-03-23": "Good Friday", + "2046-03-26": "Easter Monday", + "2046-05-01": "Labour Day", + "2046-05-14": "Kamuzu Day", + "2046-07-06": "Independence Day", + "2046-10-15": "Mother's Day", + "2046-12-25": "Christmas Day", + "2046-12-26": "Boxing Day", + "2047-01-01": "New Year's Day", + "2047-01-15": "John Chilembwe Day", + "2047-03-03": "Martyrs Day", + "2047-03-04": "Martyrs Day (Observed)", + "2047-04-12": "Good Friday", + "2047-04-15": "Easter Monday", + "2047-05-01": "Labour Day", + "2047-05-14": "Kamuzu Day", + "2047-07-06": "Independence Day", + "2047-07-08": "Independence Day (Observed)", + "2047-10-15": "Mother's Day", + "2047-12-25": "Christmas Day", + "2047-12-26": "Boxing Day", + "2048-01-01": "New Year's Day", + "2048-01-15": "John Chilembwe Day", + "2048-03-03": "Martyrs Day", + "2048-04-03": "Good Friday", + "2048-04-06": "Easter Monday", + "2048-05-01": "Labour Day", + "2048-05-14": "Kamuzu Day", + "2048-07-06": "Independence Day", + "2048-10-15": "Mother's Day", + "2048-12-25": "Christmas Day", + "2048-12-26": "Boxing Day", + "2048-12-28": "Boxing Day (Observed)", + "2049-01-01": "New Year's Day", + "2049-01-15": "John Chilembwe Day", + "2049-03-03": "Martyrs Day", + "2049-04-16": "Good Friday", + "2049-04-19": "Easter Monday", + "2049-05-01": "Labour Day", + "2049-05-03": "Labour Day (Observed)", + "2049-05-14": "Kamuzu Day", + "2049-07-06": "Independence Day", + "2049-10-15": "Mother's Day", + "2049-12-25": "Christmas Day", + "2049-12-26": "Boxing Day", + "2049-12-27": "Christmas Day (Observed)", + "2049-12-28": "Boxing Day (Observed)", + "2050-01-01": "New Year's Day", + "2050-01-03": "New Year's Day (Observed)", + "2050-01-15": "John Chilembwe Day", + "2050-01-17": "John Chilembwe Day (Observed)", + "2050-03-03": "Martyrs Day", + "2050-04-08": "Good Friday", + "2050-04-11": "Easter Monday", + "2050-05-01": "Labour Day", + "2050-05-02": "Labour Day (Observed)", + "2050-05-14": "Kamuzu Day", + "2050-05-16": "Kamuzu Day (Observed)", + "2050-07-06": "Independence Day", + "2050-10-15": "Mother's Day", + "2050-10-17": "Mother's Day (Observed)", + "2050-12-25": "Christmas Day", + "2050-12-26": "Boxing Day", + "2050-12-27": "Christmas Day (Observed)" +} diff --git a/snapshots/countries/MX.json b/snapshots/countries/MX.json new file mode 100644 index 000000000..1989a84b2 --- /dev/null +++ b/snapshots/countries/MX.json @@ -0,0 +1,723 @@ +{ + "1950-01-01": "New Year's Day", + "1950-02-05": "Constitution Day", + "1950-03-21": "Benito Ju\u00e1rez's birthday", + "1950-05-01": "Labour Day", + "1950-09-16": "Independence Day", + "1950-11-20": "Revolution Day", + "1950-12-25": "Christmas Day", + "1951-01-01": "New Year's Day", + "1951-02-05": "Constitution Day", + "1951-03-21": "Benito Ju\u00e1rez's birthday", + "1951-05-01": "Labour Day", + "1951-09-16": "Independence Day", + "1951-11-20": "Revolution Day", + "1951-12-25": "Christmas Day", + "1952-01-01": "New Year's Day", + "1952-02-05": "Constitution Day", + "1952-03-21": "Benito Ju\u00e1rez's birthday", + "1952-05-01": "Labour Day", + "1952-09-16": "Independence Day", + "1952-11-20": "Revolution Day", + "1952-12-25": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-02-05": "Constitution Day", + "1953-03-21": "Benito Ju\u00e1rez's birthday", + "1953-05-01": "Labour Day", + "1953-09-16": "Independence Day", + "1953-11-20": "Revolution Day", + "1953-12-25": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-02-05": "Constitution Day", + "1954-03-21": "Benito Ju\u00e1rez's birthday", + "1954-05-01": "Labour Day", + "1954-09-16": "Independence Day", + "1954-11-20": "Revolution Day", + "1954-12-25": "Christmas Day", + "1955-01-01": "New Year's Day", + "1955-02-05": "Constitution Day", + "1955-03-21": "Benito Ju\u00e1rez's birthday", + "1955-05-01": "Labour Day", + "1955-09-16": "Independence Day", + "1955-11-20": "Revolution Day", + "1955-12-25": "Christmas Day", + "1956-01-01": "New Year's Day", + "1956-02-05": "Constitution Day", + "1956-03-21": "Benito Ju\u00e1rez's birthday", + "1956-05-01": "Labour Day", + "1956-09-16": "Independence Day", + "1956-11-20": "Revolution Day", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-02-05": "Constitution Day", + "1957-03-21": "Benito Ju\u00e1rez's birthday", + "1957-05-01": "Labour Day", + "1957-09-16": "Independence Day", + "1957-11-20": "Revolution Day", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-02-05": "Constitution Day", + "1958-03-21": "Benito Ju\u00e1rez's birthday", + "1958-05-01": "Labour Day", + "1958-09-16": "Independence Day", + "1958-11-20": "Revolution Day", + "1958-12-25": "Christmas Day", + "1959-01-01": "New Year's Day", + "1959-02-05": "Constitution Day", + "1959-03-21": "Benito Ju\u00e1rez's birthday", + "1959-05-01": "Labour Day", + "1959-09-16": "Independence Day", + "1959-11-20": "Revolution Day", + "1959-12-25": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-02-05": "Constitution Day", + "1960-03-21": "Benito Ju\u00e1rez's birthday", + "1960-05-01": "Labour Day", + "1960-09-16": "Independence Day", + "1960-11-20": "Revolution Day", + "1960-12-25": "Christmas Day", + "1961-01-01": "New Year's Day", + "1961-02-05": "Constitution Day", + "1961-03-21": "Benito Ju\u00e1rez's birthday", + "1961-05-01": "Labour Day", + "1961-09-16": "Independence Day", + "1961-11-20": "Revolution Day", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-02-05": "Constitution Day", + "1962-03-21": "Benito Ju\u00e1rez's birthday", + "1962-05-01": "Labour Day", + "1962-09-16": "Independence Day", + "1962-11-20": "Revolution Day", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-02-05": "Constitution Day", + "1963-03-21": "Benito Ju\u00e1rez's birthday", + "1963-05-01": "Labour Day", + "1963-09-16": "Independence Day", + "1963-11-20": "Revolution Day", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-02-05": "Constitution Day", + "1964-03-21": "Benito Ju\u00e1rez's birthday", + "1964-05-01": "Labour Day", + "1964-09-16": "Independence Day", + "1964-11-20": "Revolution Day", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-02-05": "Constitution Day", + "1965-03-21": "Benito Ju\u00e1rez's birthday", + "1965-05-01": "Labour Day", + "1965-09-16": "Independence Day", + "1965-11-20": "Revolution Day", + "1965-12-25": "Christmas Day", + "1966-01-01": "New Year's Day", + "1966-02-05": "Constitution Day", + "1966-03-21": "Benito Ju\u00e1rez's birthday", + "1966-05-01": "Labour Day", + "1966-09-16": "Independence Day", + "1966-11-20": "Revolution Day", + "1966-12-25": "Christmas Day", + "1967-01-01": "New Year's Day", + "1967-02-05": "Constitution Day", + "1967-03-21": "Benito Ju\u00e1rez's birthday", + "1967-05-01": "Labour Day", + "1967-09-16": "Independence Day", + "1967-11-20": "Revolution Day", + "1967-12-25": "Christmas Day", + "1968-01-01": "New Year's Day", + "1968-02-05": "Constitution Day", + "1968-03-21": "Benito Ju\u00e1rez's birthday", + "1968-05-01": "Labour Day", + "1968-09-16": "Independence Day", + "1968-11-20": "Revolution Day", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-02-05": "Constitution Day", + "1969-03-21": "Benito Ju\u00e1rez's birthday", + "1969-05-01": "Labour Day", + "1969-09-16": "Independence Day", + "1969-11-20": "Revolution Day", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-02-05": "Constitution Day", + "1970-03-21": "Benito Ju\u00e1rez's birthday", + "1970-05-01": "Labour Day", + "1970-09-16": "Independence Day", + "1970-11-20": "Revolution Day", + "1970-12-01": "Change of Federal Government", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-02-05": "Constitution Day", + "1971-03-21": "Benito Ju\u00e1rez's birthday", + "1971-05-01": "Labour Day", + "1971-09-16": "Independence Day", + "1971-11-20": "Revolution Day", + "1971-12-25": "Christmas Day", + "1972-01-01": "New Year's Day", + "1972-02-05": "Constitution Day", + "1972-03-21": "Benito Ju\u00e1rez's birthday", + "1972-05-01": "Labour Day", + "1972-09-16": "Independence Day", + "1972-11-20": "Revolution Day", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-02-05": "Constitution Day", + "1973-03-21": "Benito Ju\u00e1rez's birthday", + "1973-05-01": "Labour Day", + "1973-09-16": "Independence Day", + "1973-11-20": "Revolution Day", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-02-05": "Constitution Day", + "1974-03-21": "Benito Ju\u00e1rez's birthday", + "1974-05-01": "Labour Day", + "1974-09-16": "Independence Day", + "1974-11-20": "Revolution Day", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-02-05": "Constitution Day", + "1975-03-21": "Benito Ju\u00e1rez's birthday", + "1975-05-01": "Labour Day", + "1975-09-16": "Independence Day", + "1975-11-20": "Revolution Day", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-02-05": "Constitution Day", + "1976-03-21": "Benito Ju\u00e1rez's birthday", + "1976-05-01": "Labour Day", + "1976-09-16": "Independence Day", + "1976-11-20": "Revolution Day", + "1976-12-01": "Change of Federal Government", + "1976-12-25": "Christmas Day", + "1977-01-01": "New Year's Day", + "1977-02-05": "Constitution Day", + "1977-03-21": "Benito Ju\u00e1rez's birthday", + "1977-05-01": "Labour Day", + "1977-09-16": "Independence Day", + "1977-11-20": "Revolution Day", + "1977-12-25": "Christmas Day", + "1978-01-01": "New Year's Day", + "1978-02-05": "Constitution Day", + "1978-03-21": "Benito Ju\u00e1rez's birthday", + "1978-05-01": "Labour Day", + "1978-09-16": "Independence Day", + "1978-11-20": "Revolution Day", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-02-05": "Constitution Day", + "1979-03-21": "Benito Ju\u00e1rez's birthday", + "1979-05-01": "Labour Day", + "1979-09-16": "Independence Day", + "1979-11-20": "Revolution Day", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-02-05": "Constitution Day", + "1980-03-21": "Benito Ju\u00e1rez's birthday", + "1980-05-01": "Labour Day", + "1980-09-16": "Independence Day", + "1980-11-20": "Revolution Day", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-02-05": "Constitution Day", + "1981-03-21": "Benito Ju\u00e1rez's birthday", + "1981-05-01": "Labour Day", + "1981-09-16": "Independence Day", + "1981-11-20": "Revolution Day", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-02-05": "Constitution Day", + "1982-03-21": "Benito Ju\u00e1rez's birthday", + "1982-05-01": "Labour Day", + "1982-09-16": "Independence Day", + "1982-11-20": "Revolution Day", + "1982-12-01": "Change of Federal Government", + "1982-12-25": "Christmas Day", + "1983-01-01": "New Year's Day", + "1983-02-05": "Constitution Day", + "1983-03-21": "Benito Ju\u00e1rez's birthday", + "1983-05-01": "Labour Day", + "1983-09-16": "Independence Day", + "1983-11-20": "Revolution Day", + "1983-12-25": "Christmas Day", + "1984-01-01": "New Year's Day", + "1984-02-05": "Constitution Day", + "1984-03-21": "Benito Ju\u00e1rez's birthday", + "1984-05-01": "Labour Day", + "1984-09-16": "Independence Day", + "1984-11-20": "Revolution Day", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-02-05": "Constitution Day", + "1985-03-21": "Benito Ju\u00e1rez's birthday", + "1985-05-01": "Labour Day", + "1985-09-16": "Independence Day", + "1985-11-20": "Revolution Day", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-02-05": "Constitution Day", + "1986-03-21": "Benito Ju\u00e1rez's birthday", + "1986-05-01": "Labour Day", + "1986-09-16": "Independence Day", + "1986-11-20": "Revolution Day", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-02-05": "Constitution Day", + "1987-03-21": "Benito Ju\u00e1rez's birthday", + "1987-05-01": "Labour Day", + "1987-09-16": "Independence Day", + "1987-11-20": "Revolution Day", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-02-05": "Constitution Day", + "1988-03-21": "Benito Ju\u00e1rez's birthday", + "1988-05-01": "Labour Day", + "1988-09-16": "Independence Day", + "1988-11-20": "Revolution Day", + "1988-12-01": "Change of Federal Government", + "1988-12-25": "Christmas Day", + "1989-01-01": "New Year's Day", + "1989-02-05": "Constitution Day", + "1989-03-21": "Benito Ju\u00e1rez's birthday", + "1989-05-01": "Labour Day", + "1989-09-16": "Independence Day", + "1989-11-20": "Revolution Day", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-02-05": "Constitution Day", + "1990-03-21": "Benito Ju\u00e1rez's birthday", + "1990-05-01": "Labour Day", + "1990-09-16": "Independence Day", + "1990-11-20": "Revolution Day", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-02-05": "Constitution Day", + "1991-03-21": "Benito Ju\u00e1rez's birthday", + "1991-05-01": "Labour Day", + "1991-09-16": "Independence Day", + "1991-11-20": "Revolution Day", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-02-05": "Constitution Day", + "1992-03-21": "Benito Ju\u00e1rez's birthday", + "1992-05-01": "Labour Day", + "1992-09-16": "Independence Day", + "1992-11-20": "Revolution Day", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-02-05": "Constitution Day", + "1993-03-21": "Benito Ju\u00e1rez's birthday", + "1993-05-01": "Labour Day", + "1993-09-16": "Independence Day", + "1993-11-20": "Revolution Day", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-02-05": "Constitution Day", + "1994-03-21": "Benito Ju\u00e1rez's birthday", + "1994-05-01": "Labour Day", + "1994-09-16": "Independence Day", + "1994-11-20": "Revolution Day", + "1994-12-01": "Change of Federal Government", + "1994-12-25": "Christmas Day", + "1995-01-01": "New Year's Day", + "1995-02-05": "Constitution Day", + "1995-03-21": "Benito Ju\u00e1rez's birthday", + "1995-05-01": "Labour Day", + "1995-09-16": "Independence Day", + "1995-11-20": "Revolution Day", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-02-05": "Constitution Day", + "1996-03-21": "Benito Ju\u00e1rez's birthday", + "1996-05-01": "Labour Day", + "1996-09-16": "Independence Day", + "1996-11-20": "Revolution Day", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-02-05": "Constitution Day", + "1997-03-21": "Benito Ju\u00e1rez's birthday", + "1997-05-01": "Labour Day", + "1997-09-16": "Independence Day", + "1997-11-20": "Revolution Day", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-02-05": "Constitution Day", + "1998-03-21": "Benito Ju\u00e1rez's birthday", + "1998-05-01": "Labour Day", + "1998-09-16": "Independence Day", + "1998-11-20": "Revolution Day", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-02-05": "Constitution Day", + "1999-03-21": "Benito Ju\u00e1rez's birthday", + "1999-05-01": "Labour Day", + "1999-09-16": "Independence Day", + "1999-11-20": "Revolution Day", + "1999-12-25": "Christmas Day", + "2000-01-01": "New Year's Day", + "2000-02-05": "Constitution Day", + "2000-03-21": "Benito Ju\u00e1rez's birthday", + "2000-05-01": "Labour Day", + "2000-09-16": "Independence Day", + "2000-11-20": "Revolution Day", + "2000-12-01": "Change of Federal Government", + "2000-12-25": "Christmas Day", + "2001-01-01": "New Year's Day", + "2001-02-05": "Constitution Day", + "2001-03-21": "Benito Ju\u00e1rez's birthday", + "2001-05-01": "Labour Day", + "2001-09-16": "Independence Day", + "2001-11-20": "Revolution Day", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-02-05": "Constitution Day", + "2002-03-21": "Benito Ju\u00e1rez's birthday", + "2002-05-01": "Labour Day", + "2002-09-16": "Independence Day", + "2002-11-20": "Revolution Day", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-02-05": "Constitution Day", + "2003-03-21": "Benito Ju\u00e1rez's birthday", + "2003-05-01": "Labour Day", + "2003-09-16": "Independence Day", + "2003-11-20": "Revolution Day", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-02-05": "Constitution Day", + "2004-03-21": "Benito Ju\u00e1rez's birthday", + "2004-05-01": "Labour Day", + "2004-09-16": "Independence Day", + "2004-11-20": "Revolution Day", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-02-05": "Constitution Day", + "2005-03-21": "Benito Ju\u00e1rez's birthday", + "2005-05-01": "Labour Day", + "2005-09-16": "Independence Day", + "2005-11-20": "Revolution Day", + "2005-12-25": "Christmas Day", + "2006-01-01": "New Year's Day", + "2006-02-06": "Constitution Day", + "2006-03-21": "Benito Ju\u00e1rez's birthday", + "2006-05-01": "Labour Day", + "2006-09-16": "Independence Day", + "2006-11-20": "Revolution Day", + "2006-12-01": "Change of Federal Government", + "2006-12-25": "Christmas Day", + "2007-01-01": "New Year's Day", + "2007-02-05": "Constitution Day", + "2007-03-19": "Benito Ju\u00e1rez's birthday", + "2007-05-01": "Labour Day", + "2007-09-16": "Independence Day", + "2007-11-19": "Revolution Day", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-02-04": "Constitution Day", + "2008-03-17": "Benito Ju\u00e1rez's birthday", + "2008-05-01": "Labour Day", + "2008-09-16": "Independence Day", + "2008-11-17": "Revolution Day", + "2008-12-25": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-02-02": "Constitution Day", + "2009-03-16": "Benito Ju\u00e1rez's birthday", + "2009-05-01": "Labour Day", + "2009-09-16": "Independence Day", + "2009-11-16": "Revolution Day", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-02-01": "Constitution Day", + "2010-03-15": "Benito Ju\u00e1rez's birthday", + "2010-05-01": "Labour Day", + "2010-09-16": "Independence Day", + "2010-11-15": "Revolution Day", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-02-07": "Constitution Day", + "2011-03-21": "Benito Ju\u00e1rez's birthday", + "2011-05-01": "Labour Day", + "2011-09-16": "Independence Day", + "2011-11-21": "Revolution Day", + "2011-12-25": "Christmas Day", + "2012-01-01": "New Year's Day", + "2012-02-06": "Constitution Day", + "2012-03-19": "Benito Ju\u00e1rez's birthday", + "2012-05-01": "Labour Day", + "2012-09-16": "Independence Day", + "2012-11-19": "Revolution Day", + "2012-12-01": "Change of Federal Government", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-02-04": "Constitution Day", + "2013-03-18": "Benito Ju\u00e1rez's birthday", + "2013-05-01": "Labour Day", + "2013-09-16": "Independence Day", + "2013-11-18": "Revolution Day", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-02-03": "Constitution Day", + "2014-03-17": "Benito Ju\u00e1rez's birthday", + "2014-05-01": "Labour Day", + "2014-09-16": "Independence Day", + "2014-11-17": "Revolution Day", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-02-02": "Constitution Day", + "2015-03-16": "Benito Ju\u00e1rez's birthday", + "2015-05-01": "Labour Day", + "2015-09-16": "Independence Day", + "2015-11-16": "Revolution Day", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-02-01": "Constitution Day", + "2016-03-21": "Benito Ju\u00e1rez's birthday", + "2016-05-01": "Labour Day", + "2016-09-16": "Independence Day", + "2016-11-21": "Revolution Day", + "2016-12-25": "Christmas Day", + "2017-01-01": "New Year's Day", + "2017-02-06": "Constitution Day", + "2017-03-20": "Benito Ju\u00e1rez's birthday", + "2017-05-01": "Labour Day", + "2017-09-16": "Independence Day", + "2017-11-20": "Revolution Day", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-02-05": "Constitution Day", + "2018-03-19": "Benito Ju\u00e1rez's birthday", + "2018-05-01": "Labour Day", + "2018-09-16": "Independence Day", + "2018-11-19": "Revolution Day", + "2018-12-01": "Change of Federal Government", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-02-04": "Constitution Day", + "2019-03-18": "Benito Ju\u00e1rez's birthday", + "2019-05-01": "Labour Day", + "2019-09-16": "Independence Day", + "2019-11-18": "Revolution Day", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-02-03": "Constitution Day", + "2020-03-16": "Benito Ju\u00e1rez's birthday", + "2020-05-01": "Labour Day", + "2020-09-16": "Independence Day", + "2020-11-16": "Revolution Day", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-02-01": "Constitution Day", + "2021-03-15": "Benito Ju\u00e1rez's birthday", + "2021-05-01": "Labour Day", + "2021-09-16": "Independence Day", + "2021-11-15": "Revolution Day", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-02-07": "Constitution Day", + "2022-03-21": "Benito Ju\u00e1rez's birthday", + "2022-05-01": "Labour Day", + "2022-09-16": "Independence Day", + "2022-11-21": "Revolution Day", + "2022-12-25": "Christmas Day", + "2023-01-01": "New Year's Day", + "2023-02-06": "Constitution Day", + "2023-03-20": "Benito Ju\u00e1rez's birthday", + "2023-05-01": "Labour Day", + "2023-09-16": "Independence Day", + "2023-11-20": "Revolution Day", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-02-05": "Constitution Day", + "2024-03-18": "Benito Ju\u00e1rez's birthday", + "2024-05-01": "Labour Day", + "2024-09-16": "Independence Day", + "2024-11-18": "Revolution Day", + "2024-12-01": "Change of Federal Government", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-02-03": "Constitution Day", + "2025-03-17": "Benito Ju\u00e1rez's birthday", + "2025-05-01": "Labour Day", + "2025-09-16": "Independence Day", + "2025-11-17": "Revolution Day", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-02-02": "Constitution Day", + "2026-03-16": "Benito Ju\u00e1rez's birthday", + "2026-05-01": "Labour Day", + "2026-09-16": "Independence Day", + "2026-11-16": "Revolution Day", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-02-01": "Constitution Day", + "2027-03-15": "Benito Ju\u00e1rez's birthday", + "2027-05-01": "Labour Day", + "2027-09-16": "Independence Day", + "2027-11-15": "Revolution Day", + "2027-12-25": "Christmas Day", + "2028-01-01": "New Year's Day", + "2028-02-07": "Constitution Day", + "2028-03-20": "Benito Ju\u00e1rez's birthday", + "2028-05-01": "Labour Day", + "2028-09-16": "Independence Day", + "2028-11-20": "Revolution Day", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-02-05": "Constitution Day", + "2029-03-19": "Benito Ju\u00e1rez's birthday", + "2029-05-01": "Labour Day", + "2029-09-16": "Independence Day", + "2029-11-19": "Revolution Day", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-02-04": "Constitution Day", + "2030-03-18": "Benito Ju\u00e1rez's birthday", + "2030-05-01": "Labour Day", + "2030-09-16": "Independence Day", + "2030-11-18": "Revolution Day", + "2030-12-01": "Change of Federal Government", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-02-03": "Constitution Day", + "2031-03-17": "Benito Ju\u00e1rez's birthday", + "2031-05-01": "Labour Day", + "2031-09-16": "Independence Day", + "2031-11-17": "Revolution Day", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-02-02": "Constitution Day", + "2032-03-15": "Benito Ju\u00e1rez's birthday", + "2032-05-01": "Labour Day", + "2032-09-16": "Independence Day", + "2032-11-15": "Revolution Day", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-02-07": "Constitution Day", + "2033-03-21": "Benito Ju\u00e1rez's birthday", + "2033-05-01": "Labour Day", + "2033-09-16": "Independence Day", + "2033-11-21": "Revolution Day", + "2033-12-25": "Christmas Day", + "2034-01-01": "New Year's Day", + "2034-02-06": "Constitution Day", + "2034-03-20": "Benito Ju\u00e1rez's birthday", + "2034-05-01": "Labour Day", + "2034-09-16": "Independence Day", + "2034-11-20": "Revolution Day", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-02-05": "Constitution Day", + "2035-03-19": "Benito Ju\u00e1rez's birthday", + "2035-05-01": "Labour Day", + "2035-09-16": "Independence Day", + "2035-11-19": "Revolution Day", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-02-04": "Constitution Day", + "2036-03-17": "Benito Ju\u00e1rez's birthday", + "2036-05-01": "Labour Day", + "2036-09-16": "Independence Day", + "2036-11-17": "Revolution Day", + "2036-12-01": "Change of Federal Government", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-02-02": "Constitution Day", + "2037-03-16": "Benito Ju\u00e1rez's birthday", + "2037-05-01": "Labour Day", + "2037-09-16": "Independence Day", + "2037-11-16": "Revolution Day", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-02-01": "Constitution Day", + "2038-03-15": "Benito Ju\u00e1rez's birthday", + "2038-05-01": "Labour Day", + "2038-09-16": "Independence Day", + "2038-11-15": "Revolution Day", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-02-07": "Constitution Day", + "2039-03-21": "Benito Ju\u00e1rez's birthday", + "2039-05-01": "Labour Day", + "2039-09-16": "Independence Day", + "2039-11-21": "Revolution Day", + "2039-12-25": "Christmas Day", + "2040-01-01": "New Year's Day", + "2040-02-06": "Constitution Day", + "2040-03-19": "Benito Ju\u00e1rez's birthday", + "2040-05-01": "Labour Day", + "2040-09-16": "Independence Day", + "2040-11-19": "Revolution Day", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-02-04": "Constitution Day", + "2041-03-18": "Benito Ju\u00e1rez's birthday", + "2041-05-01": "Labour Day", + "2041-09-16": "Independence Day", + "2041-11-18": "Revolution Day", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-02-03": "Constitution Day", + "2042-03-17": "Benito Ju\u00e1rez's birthday", + "2042-05-01": "Labour Day", + "2042-09-16": "Independence Day", + "2042-11-17": "Revolution Day", + "2042-12-01": "Change of Federal Government", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-02-02": "Constitution Day", + "2043-03-16": "Benito Ju\u00e1rez's birthday", + "2043-05-01": "Labour Day", + "2043-09-16": "Independence Day", + "2043-11-16": "Revolution Day", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-02-01": "Constitution Day", + "2044-03-21": "Benito Ju\u00e1rez's birthday", + "2044-05-01": "Labour Day", + "2044-09-16": "Independence Day", + "2044-11-21": "Revolution Day", + "2044-12-25": "Christmas Day", + "2045-01-01": "New Year's Day", + "2045-02-06": "Constitution Day", + "2045-03-20": "Benito Ju\u00e1rez's birthday", + "2045-05-01": "Labour Day", + "2045-09-16": "Independence Day", + "2045-11-20": "Revolution Day", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-02-05": "Constitution Day", + "2046-03-19": "Benito Ju\u00e1rez's birthday", + "2046-05-01": "Labour Day", + "2046-09-16": "Independence Day", + "2046-11-19": "Revolution Day", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-02-04": "Constitution Day", + "2047-03-18": "Benito Ju\u00e1rez's birthday", + "2047-05-01": "Labour Day", + "2047-09-16": "Independence Day", + "2047-11-18": "Revolution Day", + "2047-12-25": "Christmas Day", + "2048-01-01": "New Year's Day", + "2048-02-03": "Constitution Day", + "2048-03-16": "Benito Ju\u00e1rez's birthday", + "2048-05-01": "Labour Day", + "2048-09-16": "Independence Day", + "2048-11-16": "Revolution Day", + "2048-12-01": "Change of Federal Government", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-02-01": "Constitution Day", + "2049-03-15": "Benito Ju\u00e1rez's birthday", + "2049-05-01": "Labour Day", + "2049-09-16": "Independence Day", + "2049-11-15": "Revolution Day", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-02-07": "Constitution Day", + "2050-03-21": "Benito Ju\u00e1rez's birthday", + "2050-05-01": "Labour Day", + "2050-09-16": "Independence Day", + "2050-11-21": "Revolution Day", + "2050-12-25": "Christmas Day" +} diff --git a/snapshots/countries/MY.json b/snapshots/countries/MY.json new file mode 100644 index 000000000..6c6f0fdb1 --- /dev/null +++ b/snapshots/countries/MY.json @@ -0,0 +1,4572 @@ +{ + "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated); New Year's Day", + "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]; New Year's Day [In lieu]", + "1950-02-17": "Chinese New Year", + "1950-02-18": "Chinese New Year Holiday", + "1950-02-19": "Chinese New Year Holiday [In lieu]; Chinese New Year [In lieu]", + "1950-03-03": "Thaipusam", + "1950-03-05": "Thaipusam [In lieu]", + "1950-04-07": "Good Friday", + "1950-05-01": "Labour Day; Vesak Day", + "1950-05-14": "Isra and Mi'raj* (*estimated)", + "1950-05-15": "Isra and Mi'raj* (*estimated) [In lieu]", + "1950-05-30": "Pesta Kaamatan", + "1950-05-31": "Pesta Kaamatan (Second day)", + "1950-06-01": "Gawai Dayak", + "1950-06-02": "Gawai Dayak (Second day)", + "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", + "1950-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1950-06-17": "Beginning of Ramadan* (*estimated)", + "1950-07-03": "Nuzul Al-Quran Day* (*estimated)", + "1950-07-08": "Birthday of the Governor of Penang", + "1950-07-16": "Hari Raya Puasa* (*estimated)", + "1950-07-17": "Second day of Hari Raya Puasa* (*estimated)", + "1950-07-18": "Hari Raya Puasa* (*estimated) [In lieu]", + "1950-08-31": "National Day", + "1950-09-22": "Arafat Day* (*estimated)", + "1950-09-23": "Hari Raya Haji* (*estimated)", + "1950-09-24": "Hari Raya Haji* (*estimated)", + "1950-09-25": "Hari Raya Haji* (*estimated) [In lieu]", + "1950-10-07": "Birthday of the Governor of Sabah", + "1950-10-13": "Awal Muharram (Hijri New Year)* (*estimated); Birthday of the Governor of Malacca", + "1950-10-14": "Birthday of the Governor of Sarawak", + "1950-11-08": "Deepavali", + "1950-11-27": "Birthday of the Sultan of Perak", + "1950-12-11": "Birthday of The Sultan of Selangor", + "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1950-12-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1950-12-25": "Christmas Day", + "1951-01-01": "New Year's Day", + "1951-02-06": "Chinese New Year", + "1951-02-07": "Chinese New Year Holiday", + "1951-02-21": "Thaipusam", + "1951-03-23": "Good Friday", + "1951-05-01": "Labour Day", + "1951-05-04": "Isra and Mi'raj* (*estimated)", + "1951-05-06": "Isra and Mi'raj* (*estimated) [In lieu]", + "1951-05-20": "Vesak Day", + "1951-05-21": "Vesak Day [In lieu]", + "1951-05-30": "Pesta Kaamatan", + "1951-05-31": "Pesta Kaamatan (Second day)", + "1951-06-01": "Gawai Dayak", + "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", + "1951-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1951-06-06": "Beginning of Ramadan* (*estimated)", + "1951-06-22": "Nuzul Al-Quran Day* (*estimated)", + "1951-07-06": "Hari Raya Puasa* (*estimated)", + "1951-07-07": "Second day of Hari Raya Puasa* (*estimated)", + "1951-07-08": "Hari Raya Puasa* (*estimated) [In lieu]; Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1951-07-14": "Birthday of the Governor of Penang", + "1951-08-31": "National Day", + "1951-09-02": "National Day [In lieu]", + "1951-09-11": "Arafat Day* (*estimated)", + "1951-09-12": "Hari Raya Haji* (*estimated)", + "1951-09-13": "Hari Raya Haji* (*estimated)", + "1951-10-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1951-10-06": "Birthday of the Governor of Sabah", + "1951-10-12": "Birthday of the Governor of Malacca", + "1951-10-13": "Birthday of the Governor of Sarawak", + "1951-10-28": "Deepavali", + "1951-10-29": "Deepavali [In lieu]", + "1951-11-27": "Birthday of the Sultan of Perak", + "1951-12-11": "Birthday of The Sultan of Selangor; Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1951-12-25": "Christmas Day", + "1952-01-01": "New Year's Day", + "1952-01-12": "Thaipusam", + "1952-01-27": "Chinese New Year", + "1952-01-28": "Chinese New Year Holiday", + "1952-01-29": "Chinese New Year [In lieu]", + "1952-04-11": "Good Friday", + "1952-04-22": "Isra and Mi'raj* (*estimated)", + "1952-05-01": "Labour Day", + "1952-05-08": "Vesak Day", + "1952-05-25": "Beginning of Ramadan* (*estimated)", + "1952-05-26": "Beginning of Ramadan* (*estimated) [In lieu]", + "1952-05-30": "Pesta Kaamatan", + "1952-05-31": "Pesta Kaamatan (Second day)", + "1952-06-01": "Gawai Dayak", + "1952-06-02": "Gawai Dayak (Second day)", + "1952-06-03": "Gawai Dayak [In lieu]", + "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", + "1952-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1952-06-10": "Nuzul Al-Quran Day* (*estimated)", + "1952-06-23": "Hari Raya Puasa* (*estimated)", + "1952-06-24": "Second day of Hari Raya Puasa* (*estimated)", + "1952-07-12": "Birthday of the Governor of Penang", + "1952-08-30": "Arafat Day* (*estimated)", + "1952-08-31": "Hari Raya Haji* (*estimated); National Day", + "1952-09-01": "Hari Raya Haji* (*estimated); Hari Raya Haji* (*estimated) [In lieu]; National Day [In lieu]", + "1952-09-02": "Arafat Day* (*estimated) [In lieu]; Hari Raya Haji* (*estimated) [In lieu]; National Day [In lieu]", + "1952-09-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1952-10-04": "Birthday of the Governor of Sabah", + "1952-10-10": "Birthday of the Governor of Malacca", + "1952-10-11": "Birthday of the Governor of Sarawak", + "1952-11-15": "Deepavali", + "1952-11-16": "Deepavali [In lieu]", + "1952-11-27": "Birthday of the Sultan of Perak", + "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1952-12-11": "Birthday of The Sultan of Selangor", + "1952-12-25": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-02-14": "Chinese New Year", + "1953-02-15": "Chinese New Year Holiday", + "1953-02-16": "Chinese New Year Holiday [In lieu]; Chinese New Year [In lieu]", + "1953-02-28": "Thaipusam", + "1953-04-03": "Good Friday", + "1953-04-12": "Isra and Mi'raj* (*estimated)", + "1953-04-13": "Isra and Mi'raj* (*estimated) [In lieu]", + "1953-05-01": "Labour Day", + "1953-05-03": "Labour Day [In lieu]", + "1953-05-14": "Beginning of Ramadan* (*estimated)", + "1953-05-27": "Vesak Day", + "1953-05-30": "Nuzul Al-Quran Day* (*estimated); Pesta Kaamatan", + "1953-05-31": "Nuzul Al-Quran Day* (*estimated) [In lieu]; Pesta Kaamatan (Second day)", + "1953-06-01": "Gawai Dayak", + "1953-06-02": "Gawai Dayak (Second day)", + "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", + "1953-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1953-06-13": "Hari Raya Puasa* (*estimated)", + "1953-06-14": "Second day of Hari Raya Puasa* (*estimated)", + "1953-06-15": "Hari Raya Puasa* (*estimated) [In lieu]; Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1953-07-11": "Birthday of the Governor of Penang", + "1953-08-19": "Arafat Day* (*estimated)", + "1953-08-20": "Hari Raya Haji* (*estimated)", + "1953-08-21": "Hari Raya Haji* (*estimated)", + "1953-08-23": "Hari Raya Haji* (*estimated) [In lieu]", + "1953-08-31": "National Day", + "1953-09-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "1953-10-03": "Birthday of the Governor of Sabah", + "1953-10-09": "Birthday of the Governor of Malacca", + "1953-10-10": "Birthday of the Governor of Sarawak", + "1953-11-05": "Deepavali", + "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1953-11-27": "Birthday of the Sultan of Perak", + "1953-12-11": "Birthday of The Sultan of Selangor", + "1953-12-25": "Christmas Day", + "1953-12-27": "Christmas Day [In lieu]", + "1954-01-01": "New Year's Day", + "1954-02-03": "Chinese New Year", + "1954-02-04": "Chinese New Year Holiday", + "1954-02-18": "Thaipusam", + "1954-04-01": "Isra and Mi'raj* (*estimated)", + "1954-04-16": "Good Friday", + "1954-05-01": "Labour Day", + "1954-05-02": "Labour Day [In lieu]", + "1954-05-04": "Beginning of Ramadan* (*estimated)", + "1954-05-17": "Vesak Day", + "1954-05-20": "Nuzul Al-Quran Day* (*estimated)", + "1954-05-30": "Pesta Kaamatan", + "1954-05-31": "Pesta Kaamatan (Second day)", + "1954-06-01": "Gawai Dayak", + "1954-06-02": "Gawai Dayak (Second day); Hari Raya Puasa* (*estimated)", + "1954-06-03": "Second day of Hari Raya Puasa* (*estimated)", + "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", + "1954-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1954-07-10": "Birthday of the Governor of Penang", + "1954-08-08": "Arafat Day* (*estimated)", + "1954-08-09": "Hari Raya Haji* (*estimated)", + "1954-08-10": "Hari Raya Haji* (*estimated)", + "1954-08-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1954-08-31": "National Day", + "1954-10-02": "Birthday of the Governor of Sabah", + "1954-10-08": "Birthday of the Governor of Malacca", + "1954-10-09": "Birthday of the Governor of Sarawak", + "1954-10-25": "Deepavali", + "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1954-11-27": "Birthday of the Sultan of Perak", + "1954-12-11": "Birthday of The Sultan of Selangor", + "1954-12-25": "Christmas Day", + "1954-12-26": "Christmas Day [In lieu]", + "1955-01-01": "New Year's Day", + "1955-01-09": "Thaipusam", + "1955-01-10": "Thaipusam [In lieu]", + "1955-01-24": "Chinese New Year", + "1955-01-25": "Chinese New Year Holiday", + "1955-03-21": "Isra and Mi'raj* (*estimated)", + "1955-04-08": "Good Friday", + "1955-04-24": "Beginning of Ramadan* (*estimated)", + "1955-04-25": "Beginning of Ramadan* (*estimated) [In lieu]", + "1955-05-01": "Labour Day", + "1955-05-02": "Labour Day [In lieu]", + "1955-05-06": "Vesak Day", + "1955-05-08": "Vesak Day [In lieu]", + "1955-05-10": "Nuzul Al-Quran Day* (*estimated)", + "1955-05-23": "Hari Raya Puasa* (*estimated)", + "1955-05-24": "Second day of Hari Raya Puasa* (*estimated)", + "1955-05-30": "Pesta Kaamatan", + "1955-05-31": "Pesta Kaamatan (Second day)", + "1955-06-01": "Gawai Dayak", + "1955-06-02": "Gawai Dayak (Second day)", + "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", + "1955-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1955-07-09": "Birthday of the Governor of Penang", + "1955-07-29": "Arafat Day* (*estimated)", + "1955-07-30": "Hari Raya Haji* (*estimated)", + "1955-07-31": "Hari Raya Haji* (*estimated)", + "1955-08-01": "Hari Raya Haji* (*estimated) [In lieu]", + "1955-08-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1955-08-31": "National Day", + "1955-10-01": "Birthday of the Governor of Sabah", + "1955-10-08": "Birthday of the Governor of Sarawak", + "1955-10-14": "Birthday of the Governor of Malacca", + "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1955-10-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1955-11-12": "Deepavali", + "1955-11-13": "Deepavali [In lieu]", + "1955-11-27": "Birthday of the Sultan of Perak", + "1955-12-11": "Birthday of The Sultan of Selangor", + "1955-12-12": "Birthday of The Sultan of Selangor [In lieu]", + "1955-12-25": "Christmas Day", + "1955-12-26": "Christmas Day [In lieu]", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year's Day [In lieu]", + "1956-02-12": "Chinese New Year", + "1956-02-13": "Chinese New Year Holiday", + "1956-02-14": "Chinese New Year [In lieu]", + "1956-02-26": "Thaipusam", + "1956-02-27": "Thaipusam [In lieu]", + "1956-03-10": "Isra and Mi'raj* (*estimated)", + "1956-03-30": "Good Friday", + "1956-04-12": "Beginning of Ramadan* (*estimated)", + "1956-04-28": "Nuzul Al-Quran Day* (*estimated)", + "1956-04-29": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1956-05-01": "Labour Day", + "1956-05-11": "Hari Raya Puasa* (*estimated)", + "1956-05-12": "Second day of Hari Raya Puasa* (*estimated)", + "1956-05-13": "Hari Raya Puasa* (*estimated) [In lieu]; Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1956-05-24": "Vesak Day", + "1956-05-30": "Pesta Kaamatan", + "1956-05-31": "Pesta Kaamatan (Second day)", + "1956-06-01": "Gawai Dayak", + "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", + "1956-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1956-07-14": "Birthday of the Governor of Penang", + "1956-07-18": "Arafat Day* (*estimated)", + "1956-07-19": "Hari Raya Haji* (*estimated)", + "1956-07-20": "Hari Raya Haji* (*estimated)", + "1956-07-22": "Hari Raya Haji* (*estimated) [In lieu]", + "1956-08-08": "Awal Muharram (Hijri New Year)* (*estimated)", + "1956-08-31": "National Day", + "1956-09-02": "National Day [In lieu]", + "1956-10-06": "Birthday of the Governor of Sabah", + "1956-10-12": "Birthday of the Governor of Malacca", + "1956-10-13": "Birthday of the Governor of Sarawak", + "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1956-11-01": "Deepavali", + "1956-11-27": "Birthday of the Sultan of Perak", + "1956-12-11": "Birthday of The Sultan of Selangor", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-01-31": "Chinese New Year", + "1957-02-01": "Chinese New Year Holiday", + "1957-02-03": "Chinese New Year Holiday [In lieu]", + "1957-02-15": "Thaipusam", + "1957-02-17": "Thaipusam [In lieu]", + "1957-02-27": "Isra and Mi'raj* (*estimated)", + "1957-04-01": "Beginning of Ramadan* (*estimated)", + "1957-04-17": "Nuzul Al-Quran Day* (*estimated)", + "1957-04-19": "Good Friday", + "1957-05-01": "Hari Raya Puasa* (*estimated); Labour Day", + "1957-05-02": "Second day of Hari Raya Puasa* (*estimated)", + "1957-05-14": "Vesak Day", + "1957-05-30": "Pesta Kaamatan", + "1957-05-31": "Pesta Kaamatan (Second day)", + "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", + "1957-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]; Gawai Dayak (Second day)", + "1957-06-03": "Gawai Dayak (Second day) [In lieu]", + "1957-07-07": "Arafat Day* (*estimated)", + "1957-07-08": "Hari Raya Haji* (*estimated)", + "1957-07-09": "Hari Raya Haji* (*estimated)", + "1957-07-13": "Birthday of the Governor of Penang", + "1957-07-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1957-08-31": "National Day", + "1957-09-01": "National Day [In lieu]", + "1957-10-05": "Birthday of the Governor of Sabah", + "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1957-10-11": "Birthday of the Governor of Malacca", + "1957-10-12": "Birthday of the Governor of Sarawak", + "1957-11-20": "Deepavali", + "1957-11-27": "Birthday of the Sultan of Perak", + "1957-12-11": "Birthday of The Sultan of Selangor", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-02-16": "Isra and Mi'raj* (*estimated)", + "1958-02-17": "Isra and Mi'raj* (*estimated) [In lieu]", + "1958-02-18": "Chinese New Year", + "1958-02-19": "Chinese New Year Holiday", + "1958-03-05": "Thaipusam", + "1958-03-21": "Beginning of Ramadan* (*estimated)", + "1958-03-23": "Beginning of Ramadan* (*estimated) [In lieu]", + "1958-04-04": "Good Friday", + "1958-04-06": "Nuzul Al-Quran Day* (*estimated)", + "1958-04-07": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1958-04-20": "Hari Raya Puasa* (*estimated)", + "1958-04-21": "Second day of Hari Raya Puasa* (*estimated)", + "1958-04-22": "Hari Raya Puasa* (*estimated) [In lieu]", + "1958-05-01": "Labour Day", + "1958-05-03": "Vesak Day", + "1958-05-04": "Vesak Day [In lieu]", + "1958-05-30": "Pesta Kaamatan", + "1958-05-31": "Pesta Kaamatan (Second day)", + "1958-06-01": "Gawai Dayak", + "1958-06-02": "Gawai Dayak (Second day)", + "1958-06-03": "Gawai Dayak [In lieu]", + "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", + "1958-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1958-06-26": "Arafat Day* (*estimated)", + "1958-06-27": "Hari Raya Haji* (*estimated)", + "1958-06-28": "Hari Raya Haji* (*estimated)", + "1958-06-29": "Hari Raya Haji* (*estimated) [In lieu]", + "1958-07-12": "Birthday of the Governor of Penang", + "1958-07-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1958-08-31": "National Day", + "1958-09-01": "National Day [In lieu]", + "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1958-09-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1958-10-04": "Birthday of the Governor of Sabah", + "1958-10-10": "Birthday of the Governor of Malacca", + "1958-10-11": "Birthday of the Governor of Sarawak", + "1958-11-09": "Deepavali", + "1958-11-10": "Deepavali [In lieu]", + "1958-11-27": "Birthday of the Sultan of Perak", + "1958-12-11": "Birthday of The Sultan of Selangor", + "1958-12-25": "Christmas Day", + "1959-01-01": "New Year's Day", + "1959-02-06": "Isra and Mi'raj* (*estimated)", + "1959-02-08": "Chinese New Year", + "1959-02-09": "Chinese New Year Holiday", + "1959-02-10": "Chinese New Year [In lieu]; Isra and Mi'raj* (*estimated) [In lieu]", + "1959-02-22": "Thaipusam", + "1959-02-23": "Thaipusam [In lieu]", + "1959-03-11": "Beginning of Ramadan* (*estimated)", + "1959-03-27": "Good Friday; Nuzul Al-Quran Day* (*estimated)", + "1959-04-10": "Hari Raya Puasa* (*estimated)", + "1959-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "1959-04-12": "Hari Raya Puasa* (*estimated) [In lieu]; Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1959-05-01": "Labour Day", + "1959-05-03": "Labour Day [In lieu]", + "1959-05-22": "Vesak Day", + "1959-05-24": "Vesak Day [In lieu]", + "1959-05-30": "Pesta Kaamatan", + "1959-05-31": "Pesta Kaamatan (Second day)", + "1959-06-01": "Gawai Dayak", + "1959-06-02": "Gawai Dayak (Second day)", + "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", + "1959-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1959-06-16": "Arafat Day* (*estimated)", + "1959-06-17": "Hari Raya Haji* (*estimated)", + "1959-06-18": "Hari Raya Haji* (*estimated)", + "1959-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1959-07-11": "Birthday of the Governor of Penang", + "1959-08-31": "National Day", + "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1959-10-03": "Birthday of the Governor of Sabah", + "1959-10-09": "Birthday of the Governor of Malacca", + "1959-10-10": "Birthday of the Governor of Sarawak", + "1959-10-30": "Deepavali", + "1959-11-01": "Deepavali [In lieu]", + "1959-11-27": "Birthday of the Sultan of Perak", + "1959-12-11": "Birthday of The Sultan of Selangor", + "1959-12-25": "Christmas Day", + "1959-12-27": "Christmas Day [In lieu]", + "1960-01-01": "New Year's Day", + "1960-01-13": "Thaipusam", + "1960-01-26": "Isra and Mi'raj* (*estimated)", + "1960-01-28": "Chinese New Year", + "1960-01-29": "Chinese New Year Holiday", + "1960-01-31": "Chinese New Year Holiday [In lieu]", + "1960-02-28": "Beginning of Ramadan* (*estimated)", + "1960-02-29": "Beginning of Ramadan* (*estimated) [In lieu]", + "1960-03-15": "Nuzul Al-Quran Day* (*estimated)", + "1960-03-28": "Hari Raya Puasa* (*estimated)", + "1960-03-29": "Second day of Hari Raya Puasa* (*estimated)", + "1960-04-15": "Good Friday", + "1960-05-01": "Labour Day", + "1960-05-02": "Labour Day [In lieu]", + "1960-05-10": "Vesak Day", + "1960-05-30": "Pesta Kaamatan", + "1960-05-31": "Pesta Kaamatan (Second day)", + "1960-06-01": "Gawai Dayak", + "1960-06-02": "Gawai Dayak (Second day)", + "1960-06-03": "Arafat Day* (*estimated)", + "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji* (*estimated)", + "1960-06-05": "Hari Raya Haji* (*estimated)", + "1960-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]; Hari Raya Haji* (*estimated) [In lieu]", + "1960-06-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1960-07-09": "Birthday of the Governor of Penang", + "1960-08-31": "National Day", + "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1960-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1960-10-01": "Birthday of the Governor of Sabah", + "1960-10-08": "Birthday of the Governor of Sarawak", + "1960-10-14": "Birthday of the Governor of Malacca", + "1960-11-17": "Deepavali", + "1960-11-27": "Birthday of the Sultan of Perak", + "1960-12-11": "Birthday of The Sultan of Selangor", + "1960-12-12": "Birthday of The Sultan of Selangor [In lieu]", + "1960-12-25": "Christmas Day", + "1960-12-26": "Christmas Day [In lieu]", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day [In lieu]", + "1961-01-14": "Isra and Mi'raj* (*estimated)", + "1961-02-15": "Chinese New Year", + "1961-02-16": "Beginning of Ramadan* (*estimated); Chinese New Year Holiday", + "1961-03-02": "Thaipusam", + "1961-03-04": "Nuzul Al-Quran Day* (*estimated)", + "1961-03-05": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1961-03-18": "Hari Raya Puasa* (*estimated)", + "1961-03-19": "Second day of Hari Raya Puasa* (*estimated)", + "1961-03-20": "Hari Raya Puasa* (*estimated) [In lieu]; Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1961-03-31": "Good Friday", + "1961-05-01": "Labour Day", + "1961-05-24": "Arafat Day* (*estimated)", + "1961-05-25": "Hari Raya Haji* (*estimated)", + "1961-05-26": "Hari Raya Haji* (*estimated)", + "1961-05-28": "Hari Raya Haji* (*estimated) [In lieu]", + "1961-05-29": "Vesak Day", + "1961-05-30": "Pesta Kaamatan", + "1961-05-31": "Pesta Kaamatan (Second day)", + "1961-06-01": "Gawai Dayak", + "1961-06-02": "Gawai Dayak (Second day)", + "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", + "1961-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1961-06-14": "Awal Muharram (Hijri New Year)* (*estimated)", + "1961-07-08": "Birthday of the Governor of Penang", + "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1961-08-31": "National Day", + "1961-10-07": "Birthday of the Governor of Sabah", + "1961-10-13": "Birthday of the Governor of Malacca", + "1961-10-14": "Birthday of the Governor of Sarawak", + "1961-11-06": "Deepavali", + "1961-11-27": "Birthday of the Sultan of Perak", + "1961-12-11": "Birthday of The Sultan of Selangor", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-01-04": "Isra and Mi'raj* (*estimated)", + "1962-02-05": "Beginning of Ramadan* (*estimated); Chinese New Year", + "1962-02-06": "Chinese New Year Holiday", + "1962-02-19": "Thaipusam", + "1962-02-21": "Nuzul Al-Quran Day* (*estimated)", + "1962-03-07": "Hari Raya Puasa* (*estimated)", + "1962-03-08": "Second day of Hari Raya Puasa* (*estimated)", + "1962-04-20": "Good Friday", + "1962-05-01": "Labour Day", + "1962-05-13": "Arafat Day* (*estimated)", + "1962-05-14": "Hari Raya Haji* (*estimated)", + "1962-05-15": "Hari Raya Haji* (*estimated)", + "1962-05-18": "Vesak Day", + "1962-05-20": "Vesak Day [In lieu]", + "1962-05-30": "Pesta Kaamatan", + "1962-05-31": "Pesta Kaamatan (Second day)", + "1962-06-01": "Gawai Dayak", + "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", + "1962-06-03": "Awal Muharram (Hijri New Year)* (*estimated); Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1962-07-14": "Birthday of the Governor of Penang", + "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1962-08-31": "National Day", + "1962-09-02": "National Day [In lieu]", + "1962-10-06": "Birthday of the Governor of Sabah", + "1962-10-12": "Birthday of the Governor of Malacca", + "1962-10-13": "Birthday of the Governor of Sarawak", + "1962-10-26": "Deepavali", + "1962-10-28": "Deepavali [In lieu]", + "1962-11-27": "Birthday of the Sultan of Perak", + "1962-12-11": "Birthday of The Sultan of Selangor", + "1962-12-24": "Isra and Mi'raj* (*estimated)", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-01-10": "Thaipusam", + "1963-01-25": "Chinese New Year", + "1963-01-26": "Beginning of Ramadan* (*estimated); Chinese New Year Holiday", + "1963-01-27": "Chinese New Year Holiday [In lieu]; Chinese New Year [In lieu]", + "1963-02-11": "Nuzul Al-Quran Day* (*estimated)", + "1963-02-24": "Hari Raya Puasa* (*estimated)", + "1963-02-25": "Second day of Hari Raya Puasa* (*estimated)", + "1963-02-26": "Hari Raya Puasa* (*estimated) [In lieu]", + "1963-04-12": "Good Friday", + "1963-05-01": "Labour Day", + "1963-05-02": "Arafat Day* (*estimated)", + "1963-05-03": "Hari Raya Haji* (*estimated)", + "1963-05-04": "Hari Raya Haji* (*estimated)", + "1963-05-05": "Hari Raya Haji* (*estimated) [In lieu]", + "1963-05-08": "Vesak Day", + "1963-05-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "1963-05-30": "Pesta Kaamatan", + "1963-05-31": "Pesta Kaamatan (Second day)", + "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", + "1963-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]; Gawai Dayak (Second day)", + "1963-06-03": "Gawai Dayak (Second day) [In lieu]", + "1963-07-13": "Birthday of the Governor of Penang", + "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1963-08-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1963-08-31": "National Day", + "1963-09-01": "National Day [In lieu]", + "1963-10-05": "Birthday of the Governor of Sabah", + "1963-10-11": "Birthday of the Governor of Malacca", + "1963-10-12": "Birthday of the Governor of Sarawak", + "1963-11-14": "Deepavali", + "1963-11-27": "Birthday of the Sultan of Perak", + "1963-12-11": "Birthday of The Sultan of Selangor", + "1963-12-13": "Isra and Mi'raj* (*estimated)", + "1963-12-15": "Isra and Mi'raj* (*estimated) [In lieu]", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-01-15": "Beginning of Ramadan* (*estimated)", + "1964-01-31": "Nuzul Al-Quran Day* (*estimated)", + "1964-02-13": "Chinese New Year", + "1964-02-14": "Chinese New Year Holiday; Hari Raya Puasa* (*estimated)", + "1964-02-15": "Second day of Hari Raya Puasa* (*estimated)", + "1964-02-16": "Chinese New Year Holiday [In lieu]; Hari Raya Puasa* (*estimated) [In lieu]; Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1964-02-28": "Thaipusam", + "1964-03-01": "Thaipusam [In lieu]", + "1964-03-27": "Good Friday", + "1964-04-21": "Arafat Day* (*estimated)", + "1964-04-22": "Hari Raya Haji* (*estimated)", + "1964-04-23": "Hari Raya Haji* (*estimated)", + "1964-05-01": "Labour Day", + "1964-05-03": "Labour Day [In lieu]", + "1964-05-12": "Awal Muharram (Hijri New Year)* (*estimated)", + "1964-05-26": "Vesak Day", + "1964-05-30": "Pesta Kaamatan", + "1964-05-31": "Pesta Kaamatan (Second day)", + "1964-06-01": "Gawai Dayak", + "1964-06-02": "Gawai Dayak (Second day)", + "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", + "1964-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1964-07-11": "Birthday of the Governor of Penang", + "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1964-08-31": "National Day", + "1964-10-03": "Birthday of the Governor of Sabah", + "1964-10-09": "Birthday of the Governor of Malacca", + "1964-10-10": "Birthday of the Governor of Sarawak", + "1964-11-02": "Deepavali", + "1964-11-27": "Birthday of the Sultan of Perak", + "1964-12-01": "Isra and Mi'raj* (*estimated)", + "1964-12-11": "Birthday of The Sultan of Selangor", + "1964-12-25": "Christmas Day", + "1964-12-27": "Christmas Day [In lieu]", + "1965-01-01": "New Year's Day", + "1965-01-03": "Beginning of Ramadan* (*estimated)", + "1965-01-04": "Beginning of Ramadan* (*estimated) [In lieu]", + "1965-01-19": "Nuzul Al-Quran Day* (*estimated)", + "1965-02-02": "Chinese New Year; Hari Raya Puasa* (*estimated)", + "1965-02-03": "Chinese New Year Holiday; Second day of Hari Raya Puasa* (*estimated)", + "1965-02-16": "Thaipusam", + "1965-04-10": "Arafat Day* (*estimated)", + "1965-04-11": "Hari Raya Haji* (*estimated)", + "1965-04-12": "Hari Raya Haji* (*estimated); Hari Raya Haji* (*estimated) [In lieu]", + "1965-04-13": "Arafat Day* (*estimated) [In lieu]; Hari Raya Haji* (*estimated) [In lieu]", + "1965-04-16": "Good Friday", + "1965-05-01": "Awal Muharram (Hijri New Year)* (*estimated); Labour Day", + "1965-05-02": "Labour Day [In lieu]", + "1965-05-15": "Vesak Day", + "1965-05-16": "Vesak Day [In lieu]", + "1965-05-30": "Pesta Kaamatan", + "1965-05-31": "Pesta Kaamatan (Second day)", + "1965-06-01": "Gawai Dayak", + "1965-06-02": "Gawai Dayak (Second day)", + "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", + "1965-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1965-07-10": "Birthday of the Governor of Penang; Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1965-07-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1965-08-31": "National Day", + "1965-10-02": "Birthday of the Governor of Sabah", + "1965-10-08": "Birthday of the Governor of Malacca", + "1965-10-09": "Birthday of the Governor of Sarawak", + "1965-10-22": "Deepavali", + "1965-10-24": "Deepavali [In lieu]", + "1965-11-20": "Isra and Mi'raj* (*estimated)", + "1965-11-27": "Birthday of the Sultan of Perak", + "1965-12-11": "Birthday of The Sultan of Selangor", + "1965-12-23": "Beginning of Ramadan* (*estimated)", + "1965-12-25": "Christmas Day", + "1965-12-26": "Christmas Day [In lieu]", + "1966-01-01": "New Year's Day", + "1966-01-06": "Thaipusam", + "1966-01-08": "Nuzul Al-Quran Day* (*estimated)", + "1966-01-09": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1966-01-21": "Chinese New Year", + "1966-01-22": "Chinese New Year Holiday; Hari Raya Puasa* (*estimated)", + "1966-01-23": "Second day of Hari Raya Puasa* (*estimated)", + "1966-01-24": "Chinese New Year Holiday [In lieu]; Chinese New Year [In lieu]; Hari Raya Puasa* (*estimated) [In lieu]; Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1966-03-31": "Arafat Day* (*estimated)", + "1966-04-01": "Hari Raya Haji* (*estimated)", + "1966-04-02": "Hari Raya Haji* (*estimated)", + "1966-04-03": "Hari Raya Haji* (*estimated) [In lieu]", + "1966-04-08": "Good Friday", + "1966-04-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1966-05-01": "Labour Day", + "1966-05-02": "Labour Day [In lieu]", + "1966-05-05": "Vesak Day", + "1966-05-30": "Pesta Kaamatan", + "1966-05-31": "Pesta Kaamatan (Second day)", + "1966-06-01": "Gawai Dayak", + "1966-06-02": "Gawai Dayak (Second day)", + "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", + "1966-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1966-07-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1966-07-09": "Birthday of the Governor of Penang", + "1966-08-31": "National Day", + "1966-10-01": "Birthday of the Governor of Sabah", + "1966-10-08": "Birthday of the Governor of Sarawak", + "1966-10-14": "Birthday of the Governor of Malacca", + "1966-11-10": "Deepavali; Isra and Mi'raj* (*estimated)", + "1966-11-27": "Birthday of the Sultan of Perak", + "1966-12-11": "Birthday of The Sultan of Selangor", + "1966-12-12": "Birthday of The Sultan of Selangor [In lieu]", + "1966-12-13": "Beginning of Ramadan* (*estimated)", + "1966-12-25": "Christmas Day", + "1966-12-26": "Christmas Day [In lieu]", + "1966-12-29": "Nuzul Al-Quran Day* (*estimated)", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day [In lieu]", + "1967-01-12": "Hari Raya Puasa* (*estimated)", + "1967-01-13": "Second day of Hari Raya Puasa* (*estimated)", + "1967-01-15": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1967-02-09": "Chinese New Year", + "1967-02-10": "Chinese New Year Holiday", + "1967-02-12": "Chinese New Year Holiday [In lieu]", + "1967-02-24": "Thaipusam", + "1967-02-26": "Thaipusam [In lieu]", + "1967-03-20": "Arafat Day* (*estimated)", + "1967-03-21": "Hari Raya Haji* (*estimated)", + "1967-03-22": "Hari Raya Haji* (*estimated)", + "1967-03-24": "Good Friday", + "1967-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1967-05-01": "Labour Day", + "1967-05-23": "Vesak Day", + "1967-05-30": "Pesta Kaamatan", + "1967-05-31": "Pesta Kaamatan (Second day)", + "1967-06-01": "Gawai Dayak", + "1967-06-02": "Gawai Dayak (Second day)", + "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", + "1967-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1967-07-08": "Birthday of the Governor of Penang", + "1967-08-31": "National Day", + "1967-10-07": "Birthday of the Governor of Sabah", + "1967-10-13": "Birthday of the Governor of Malacca", + "1967-10-14": "Birthday of the Governor of Sarawak", + "1967-10-30": "Isra and Mi'raj* (*estimated)", + "1967-10-31": "Deepavali", + "1967-11-27": "Birthday of the Sultan of Perak", + "1967-12-02": "Beginning of Ramadan* (*estimated)", + "1967-12-11": "Birthday of The Sultan of Selangor", + "1967-12-18": "Nuzul Al-Quran Day* (*estimated)", + "1967-12-25": "Christmas Day", + "1968-01-01": "Hari Raya Puasa* (*estimated); New Year's Day", + "1968-01-02": "Second day of Hari Raya Puasa* (*estimated)", + "1968-01-30": "Chinese New Year", + "1968-01-31": "Chinese New Year Holiday", + "1968-02-13": "Thaipusam", + "1968-03-08": "Arafat Day* (*estimated)", + "1968-03-09": "Hari Raya Haji* (*estimated)", + "1968-03-10": "Hari Raya Haji* (*estimated)", + "1968-03-11": "Hari Raya Haji* (*estimated) [In lieu]", + "1968-03-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1968-04-12": "Good Friday", + "1968-05-01": "Labour Day", + "1968-05-11": "Vesak Day", + "1968-05-12": "Vesak Day [In lieu]", + "1968-05-30": "Pesta Kaamatan", + "1968-05-31": "Pesta Kaamatan (Second day)", + "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", + "1968-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]; Gawai Dayak (Second day)", + "1968-06-03": "Gawai Dayak (Second day) [In lieu]", + "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1968-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1968-07-13": "Birthday of the Governor of Penang", + "1968-08-31": "National Day", + "1968-09-01": "National Day [In lieu]", + "1968-10-05": "Birthday of the Governor of Sabah", + "1968-10-11": "Birthday of the Governor of Malacca", + "1968-10-12": "Birthday of the Governor of Sarawak", + "1968-10-19": "Isra and Mi'raj* (*estimated)", + "1968-11-18": "Deepavali", + "1968-11-21": "Beginning of Ramadan* (*estimated)", + "1968-11-27": "Birthday of the Sultan of Perak", + "1968-12-07": "Nuzul Al-Quran Day* (*estimated)", + "1968-12-08": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1968-12-11": "Birthday of The Sultan of Selangor", + "1968-12-21": "Hari Raya Puasa* (*estimated)", + "1968-12-22": "Second day of Hari Raya Puasa* (*estimated)", + "1968-12-23": "Hari Raya Puasa* (*estimated) [In lieu]; Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-02-17": "Chinese New Year", + "1969-02-18": "Chinese New Year Holiday", + "1969-02-26": "Arafat Day* (*estimated)", + "1969-02-27": "Hari Raya Haji* (*estimated)", + "1969-02-28": "Hari Raya Haji* (*estimated)", + "1969-03-02": "Hari Raya Haji* (*estimated) [In lieu]", + "1969-03-03": "Thaipusam", + "1969-03-19": "Awal Muharram (Hijri New Year)* (*estimated)", + "1969-04-04": "Good Friday", + "1969-05-01": "Labour Day; Vesak Day", + "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1969-05-30": "Pesta Kaamatan", + "1969-05-31": "Pesta Kaamatan (Second day)", + "1969-06-01": "Gawai Dayak", + "1969-06-02": "Gawai Dayak (Second day)", + "1969-06-03": "Gawai Dayak [In lieu]", + "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", + "1969-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1969-07-12": "Birthday of the Governor of Penang", + "1969-08-31": "National Day", + "1969-09-01": "National Day [In lieu]", + "1969-10-04": "Birthday of the Governor of Sabah", + "1969-10-08": "Isra and Mi'raj* (*estimated)", + "1969-10-10": "Birthday of the Governor of Malacca", + "1969-10-11": "Birthday of the Governor of Sarawak", + "1969-11-08": "Deepavali", + "1969-11-09": "Deepavali [In lieu]", + "1969-11-10": "Beginning of Ramadan* (*estimated)", + "1969-11-26": "Nuzul Al-Quran Day* (*estimated)", + "1969-11-27": "Birthday of the Sultan of Perak", + "1969-12-10": "Hari Raya Puasa* (*estimated)", + "1969-12-11": "Birthday of The Sultan of Selangor; Second day of Hari Raya Puasa* (*estimated)", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-02-06": "Chinese New Year", + "1970-02-07": "Chinese New Year Holiday", + "1970-02-08": "Chinese New Year Holiday [In lieu]; Chinese New Year [In lieu]", + "1970-02-15": "Arafat Day* (*estimated)", + "1970-02-16": "Hari Raya Haji* (*estimated)", + "1970-02-17": "Hari Raya Haji* (*estimated)", + "1970-02-21": "Thaipusam", + "1970-03-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1970-03-27": "Good Friday", + "1970-05-01": "Labour Day", + "1970-05-03": "Labour Day [In lieu]", + "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1970-05-19": "Vesak Day", + "1970-05-30": "Pesta Kaamatan", + "1970-05-31": "Pesta Kaamatan (Second day)", + "1970-06-01": "Gawai Dayak", + "1970-06-02": "Gawai Dayak (Second day)", + "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", + "1970-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1970-07-11": "Birthday of the Governor of Penang", + "1970-08-31": "National Day", + "1970-09-28": "Isra and Mi'raj* (*estimated)", + "1970-10-03": "Birthday of the Governor of Sabah", + "1970-10-09": "Birthday of the Governor of Malacca", + "1970-10-10": "Birthday of the Governor of Sarawak", + "1970-10-28": "Deepavali", + "1970-11-01": "Beginning of Ramadan* (*estimated)", + "1970-11-02": "Beginning of Ramadan* (*estimated) [In lieu]", + "1970-11-17": "Nuzul Al-Quran Day* (*estimated)", + "1970-11-27": "Birthday of the Sultan of Perak", + "1970-11-30": "Hari Raya Puasa* (*estimated)", + "1970-12-01": "Second day of Hari Raya Puasa* (*estimated)", + "1970-12-11": "Birthday of The Sultan of Selangor", + "1970-12-25": "Christmas Day", + "1970-12-27": "Christmas Day [In lieu]", + "1971-01-01": "New Year's Day", + "1971-01-12": "Thaipusam", + "1971-01-27": "Chinese New Year", + "1971-01-28": "Chinese New Year Holiday", + "1971-02-05": "Arafat Day* (*estimated)", + "1971-02-06": "Hari Raya Haji* (*estimated)", + "1971-02-07": "Hari Raya Haji* (*estimated)", + "1971-02-08": "Hari Raya Haji* (*estimated) [In lieu]", + "1971-02-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1971-04-09": "Good Friday", + "1971-05-01": "Labour Day", + "1971-05-02": "Labour Day [In lieu]", + "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1971-05-09": "Vesak Day", + "1971-05-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]; Vesak Day [In lieu]", + "1971-05-30": "Pesta Kaamatan", + "1971-05-31": "Pesta Kaamatan (Second day)", + "1971-06-01": "Gawai Dayak", + "1971-06-02": "Gawai Dayak (Second day)", + "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", + "1971-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1971-07-10": "Birthday of the Governor of Penang", + "1971-08-31": "National Day", + "1971-09-17": "Isra and Mi'raj* (*estimated)", + "1971-09-19": "Isra and Mi'raj* (*estimated) [In lieu]", + "1971-10-02": "Birthday of the Governor of Sabah", + "1971-10-08": "Birthday of the Governor of Malacca", + "1971-10-09": "Birthday of the Governor of Sarawak", + "1971-10-20": "Beginning of Ramadan* (*estimated)", + "1971-11-05": "Nuzul Al-Quran Day* (*estimated)", + "1971-11-16": "Deepavali", + "1971-11-19": "Hari Raya Puasa* (*estimated)", + "1971-11-20": "Second day of Hari Raya Puasa* (*estimated)", + "1971-11-21": "Hari Raya Puasa* (*estimated) [In lieu]; Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1971-11-27": "Birthday of the Sultan of Perak", + "1971-12-11": "Birthday of The Sultan of Selangor", + "1971-12-25": "Christmas Day", + "1971-12-26": "Christmas Day [In lieu]", + "1972-01-01": "New Year's Day", + "1972-01-25": "Arafat Day* (*estimated)", + "1972-01-26": "Hari Raya Haji* (*estimated)", + "1972-01-27": "Hari Raya Haji* (*estimated)", + "1972-02-15": "Chinese New Year", + "1972-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday", + "1972-02-29": "Thaipusam", + "1972-03-31": "Good Friday", + "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1972-05-01": "Labour Day", + "1972-05-27": "Vesak Day", + "1972-05-28": "Vesak Day [In lieu]", + "1972-05-30": "Pesta Kaamatan", + "1972-05-31": "Pesta Kaamatan (Second day)", + "1972-06-01": "Gawai Dayak", + "1972-06-02": "Gawai Dayak (Second day)", + "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", + "1972-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1972-07-08": "Birthday of the Governor of Penang", + "1972-08-31": "National Day", + "1972-09-05": "Isra and Mi'raj* (*estimated)", + "1972-10-07": "Birthday of the Governor of Sabah", + "1972-10-08": "Beginning of Ramadan* (*estimated)", + "1972-10-09": "Beginning of Ramadan* (*estimated) [In lieu]", + "1972-10-13": "Birthday of the Governor of Malacca", + "1972-10-14": "Birthday of the Governor of Sarawak", + "1972-10-24": "Nuzul Al-Quran Day* (*estimated)", + "1972-11-04": "Deepavali", + "1972-11-05": "Deepavali [In lieu]", + "1972-11-07": "Hari Raya Puasa* (*estimated)", + "1972-11-08": "Second day of Hari Raya Puasa* (*estimated)", + "1972-11-27": "Birthday of the Sultan of Perak", + "1972-12-11": "Birthday of The Sultan of Selangor", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-01-13": "Arafat Day* (*estimated)", + "1973-01-14": "Hari Raya Haji* (*estimated)", + "1973-01-15": "Hari Raya Haji* (*estimated); Hari Raya Haji* (*estimated) [In lieu]", + "1973-01-16": "Arafat Day* (*estimated) [In lieu]; Hari Raya Haji* (*estimated) [In lieu]", + "1973-02-03": "Chinese New Year", + "1973-02-04": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday", + "1973-02-05": "Chinese New Year Holiday [In lieu]; Chinese New Year [In lieu]", + "1973-02-18": "Thaipusam", + "1973-02-19": "Thaipusam [In lieu]", + "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1973-04-20": "Good Friday", + "1973-05-01": "Labour Day", + "1973-05-17": "Vesak Day", + "1973-05-30": "Pesta Kaamatan", + "1973-05-31": "Pesta Kaamatan (Second day)", + "1973-06-01": "Gawai Dayak", + "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", + "1973-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1973-07-14": "Birthday of the Governor of Penang", + "1973-08-25": "Isra and Mi'raj* (*estimated)", + "1973-08-31": "National Day", + "1973-09-02": "National Day [In lieu]", + "1973-09-27": "Beginning of Ramadan* (*estimated)", + "1973-10-06": "Birthday of the Governor of Sabah", + "1973-10-12": "Birthday of the Governor of Malacca", + "1973-10-13": "Birthday of the Governor of Sarawak; Nuzul Al-Quran Day* (*estimated)", + "1973-10-14": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1973-10-24": "Deepavali", + "1973-10-27": "Hari Raya Puasa* (*estimated)", + "1973-10-28": "Second day of Hari Raya Puasa* (*estimated)", + "1973-10-29": "Hari Raya Puasa* (*estimated) [In lieu]; Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1973-11-27": "Birthday of the Sultan of Perak", + "1973-12-11": "Birthday of The Sultan of Selangor", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-01-02": "Arafat Day* (*estimated)", + "1974-01-03": "Hari Raya Haji* (*estimated)", + "1974-01-04": "Hari Raya Haji* (*estimated)", + "1974-01-06": "Hari Raya Haji* (*estimated) [In lieu]", + "1974-01-08": "Thaipusam", + "1974-01-23": "Chinese New Year", + "1974-01-24": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday", + "1974-02-01": "Federal Territory Day", + "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1974-04-12": "Good Friday", + "1974-05-01": "Labour Day", + "1974-05-06": "Vesak Day", + "1974-05-30": "Pesta Kaamatan", + "1974-05-31": "Pesta Kaamatan (Second day)", + "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", + "1974-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]; Gawai Dayak (Second day)", + "1974-06-03": "Gawai Dayak (Second day) [In lieu]", + "1974-07-13": "Birthday of the Governor of Penang", + "1974-08-15": "Isra and Mi'raj* (*estimated)", + "1974-08-31": "National Day", + "1974-09-01": "National Day [In lieu]", + "1974-09-17": "Beginning of Ramadan* (*estimated)", + "1974-10-03": "Nuzul Al-Quran Day* (*estimated)", + "1974-10-05": "Birthday of the Governor of Sabah", + "1974-10-11": "Birthday of the Governor of Malacca", + "1974-10-12": "Birthday of the Governor of Sarawak", + "1974-10-16": "Hari Raya Puasa* (*estimated)", + "1974-10-17": "Second day of Hari Raya Puasa* (*estimated)", + "1974-11-12": "Deepavali", + "1974-11-27": "Birthday of the Sultan of Perak", + "1974-12-11": "Birthday of The Sultan of Selangor", + "1974-12-23": "Arafat Day* (*estimated)", + "1974-12-24": "Hari Raya Haji* (*estimated)", + "1974-12-25": "Christmas Day; Hari Raya Haji* (*estimated)", + "1975-01-01": "New Year's Day", + "1975-01-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1975-02-01": "Federal Territory Day", + "1975-02-11": "Chinese New Year", + "1975-02-12": "Chinese New Year Holiday", + "1975-02-26": "Thaipusam", + "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1975-03-28": "Good Friday", + "1975-05-01": "Labour Day", + "1975-05-07": "Hari Hol of Pahang", + "1975-05-25": "Vesak Day", + "1975-05-26": "Vesak Day [In lieu]", + "1975-05-30": "Pesta Kaamatan", + "1975-05-31": "Pesta Kaamatan (Second day)", + "1975-06-01": "Gawai Dayak", + "1975-06-02": "Gawai Dayak (Second day)", + "1975-06-03": "Gawai Dayak [In lieu]", + "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", + "1975-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1975-07-12": "Birthday of the Governor of Penang", + "1975-08-05": "Isra and Mi'raj* (*estimated)", + "1975-08-31": "National Day", + "1975-09-01": "National Day [In lieu]", + "1975-09-06": "Beginning of Ramadan* (*estimated)", + "1975-09-22": "Nuzul Al-Quran Day* (*estimated)", + "1975-10-04": "Birthday of the Governor of Sabah", + "1975-10-06": "Hari Raya Puasa* (*estimated)", + "1975-10-07": "Second day of Hari Raya Puasa* (*estimated)", + "1975-10-10": "Birthday of the Governor of Malacca", + "1975-10-11": "Birthday of the Governor of Sarawak", + "1975-10-24": "Birthday of the Sultan of Pahang", + "1975-11-01": "Deepavali", + "1975-11-02": "Deepavali [In lieu]", + "1975-11-27": "Birthday of the Sultan of Perak", + "1975-12-11": "Birthday of The Sultan of Selangor", + "1975-12-12": "Arafat Day* (*estimated)", + "1975-12-13": "Hari Raya Haji* (*estimated)", + "1975-12-14": "Hari Raya Haji* (*estimated)", + "1975-12-15": "Hari Raya Haji* (*estimated) [In lieu]", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-01-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1976-01-31": "Chinese New Year", + "1976-02-01": "Chinese New Year Holiday; Federal Territory Day", + "1976-02-02": "Chinese New Year Holiday [In lieu]; Chinese New Year [In lieu]; Federal Territory Day [In lieu]", + "1976-02-15": "Thaipusam", + "1976-02-16": "Thaipusam [In lieu]", + "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1976-03-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1976-04-16": "Good Friday", + "1976-05-01": "Labour Day", + "1976-05-02": "Labour Day [In lieu]", + "1976-05-07": "Hari Hol of Pahang", + "1976-05-13": "Vesak Day", + "1976-05-30": "Pesta Kaamatan", + "1976-05-31": "Pesta Kaamatan (Second day)", + "1976-06-01": "Gawai Dayak", + "1976-06-02": "Gawai Dayak (Second day)", + "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", + "1976-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1976-07-10": "Birthday of the Governor of Penang", + "1976-07-24": "Isra and Mi'raj* (*estimated)", + "1976-08-26": "Beginning of Ramadan* (*estimated)", + "1976-08-31": "National Day", + "1976-09-11": "Nuzul Al-Quran Day* (*estimated)", + "1976-09-12": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1976-09-24": "Hari Raya Puasa* (*estimated)", + "1976-09-25": "Second day of Hari Raya Puasa* (*estimated)", + "1976-09-26": "Hari Raya Puasa* (*estimated) [In lieu]; Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1976-10-02": "Birthday of the Governor of Sabah", + "1976-10-08": "Birthday of the Governor of Malacca", + "1976-10-09": "Birthday of the Governor of Sarawak", + "1976-10-24": "Birthday of the Sultan of Pahang", + "1976-10-25": "Birthday of the Sultan of Pahang [In lieu]", + "1976-11-19": "Deepavali", + "1976-11-21": "Deepavali [In lieu]", + "1976-11-27": "Birthday of the Sultan of Perak", + "1976-11-30": "Arafat Day* (*estimated)", + "1976-12-01": "Hari Raya Haji* (*estimated)", + "1976-12-02": "Hari Raya Haji* (*estimated)", + "1976-12-11": "Birthday of The Sultan of Selangor", + "1976-12-22": "Awal Muharram (Hijri New Year)* (*estimated)", + "1976-12-25": "Christmas Day", + "1976-12-26": "Christmas Day [In lieu]", + "1977-01-01": "New Year's Day", + "1977-02-01": "Federal Territory Day", + "1977-02-18": "Chinese New Year", + "1977-02-19": "Chinese New Year Holiday", + "1977-02-20": "Chinese New Year Holiday [In lieu]; Chinese New Year [In lieu]", + "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1977-03-05": "Thaipusam", + "1977-04-08": "Good Friday", + "1977-05-01": "Labour Day", + "1977-05-02": "Vesak Day", + "1977-05-03": "Labour Day [In lieu]", + "1977-05-07": "Hari Hol of Pahang", + "1977-05-30": "Pesta Kaamatan", + "1977-05-31": "Pesta Kaamatan (Second day)", + "1977-06-01": "Gawai Dayak", + "1977-06-02": "Gawai Dayak (Second day)", + "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", + "1977-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1977-07-09": "Birthday of the Governor of Penang", + "1977-07-13": "Isra and Mi'raj* (*estimated)", + "1977-08-15": "Beginning of Ramadan* (*estimated)", + "1977-08-31": "National Day; Nuzul Al-Quran Day* (*estimated)", + "1977-09-14": "Hari Raya Puasa* (*estimated)", + "1977-09-15": "Second day of Hari Raya Puasa* (*estimated)", + "1977-10-01": "Birthday of the Governor of Sabah", + "1977-10-08": "Birthday of the Governor of Sarawak", + "1977-10-14": "Birthday of the Governor of Malacca", + "1977-10-24": "Birthday of the Sultan of Pahang", + "1977-11-09": "Deepavali", + "1977-11-20": "Arafat Day* (*estimated)", + "1977-11-21": "Hari Raya Haji* (*estimated)", + "1977-11-22": "Hari Raya Haji* (*estimated)", + "1977-11-27": "Birthday of the Sultan of Perak", + "1977-12-11": "Awal Muharram (Hijri New Year)* (*estimated); Birthday of The Sultan of Selangor", + "1977-12-12": "Birthday of The Sultan of Selangor [In lieu]", + "1977-12-25": "Christmas Day", + "1977-12-26": "Christmas Day [In lieu]", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day [In lieu]", + "1978-02-01": "Federal Territory Day", + "1978-02-07": "Chinese New Year", + "1978-02-08": "Chinese New Year Holiday", + "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1978-02-22": "Thaipusam", + "1978-03-24": "Good Friday", + "1978-05-01": "Labour Day", + "1978-05-07": "Hari Hol of Pahang", + "1978-05-08": "Hari Hol of Pahang [In lieu]", + "1978-05-21": "Vesak Day", + "1978-05-22": "Vesak Day [In lieu]", + "1978-05-30": "Pesta Kaamatan", + "1978-05-31": "Pesta Kaamatan (Second day)", + "1978-06-01": "Gawai Dayak", + "1978-06-02": "Gawai Dayak (Second day)", + "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", + "1978-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1978-07-02": "Isra and Mi'raj* (*estimated)", + "1978-07-03": "Isra and Mi'raj* (*estimated) [In lieu]", + "1978-07-08": "Birthday of the Governor of Penang", + "1978-08-05": "Beginning of Ramadan* (*estimated)", + "1978-08-21": "Nuzul Al-Quran Day* (*estimated)", + "1978-08-31": "National Day", + "1978-09-03": "Hari Raya Puasa* (*estimated)", + "1978-09-04": "Second day of Hari Raya Puasa* (*estimated)", + "1978-09-05": "Hari Raya Puasa* (*estimated) [In lieu]", + "1978-10-07": "Birthday of the Governor of Sabah", + "1978-10-13": "Birthday of the Governor of Malacca", + "1978-10-14": "Birthday of the Governor of Sarawak", + "1978-10-24": "Birthday of the Sultan of Pahang", + "1978-10-30": "Deepavali", + "1978-11-09": "Arafat Day* (*estimated)", + "1978-11-10": "Hari Raya Haji* (*estimated)", + "1978-11-11": "Hari Raya Haji* (*estimated)", + "1978-11-12": "Hari Raya Haji* (*estimated) [In lieu]", + "1978-11-27": "Birthday of the Sultan of Perak", + "1978-12-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1978-12-11": "Birthday of The Sultan of Selangor", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-01-13": "Thaipusam", + "1979-01-28": "Chinese New Year", + "1979-01-29": "Chinese New Year Holiday", + "1979-01-30": "Chinese New Year [In lieu]", + "1979-02-01": "Federal Territory Day", + "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1979-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1979-04-13": "Good Friday", + "1979-05-01": "Labour Day", + "1979-05-07": "Hari Hol of Pahang", + "1979-05-10": "Vesak Day", + "1979-05-30": "Pesta Kaamatan", + "1979-05-31": "Pesta Kaamatan (Second day)", + "1979-06-01": "Gawai Dayak", + "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", + "1979-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1979-06-22": "Isra and Mi'raj* (*estimated)", + "1979-06-24": "Isra and Mi'raj* (*estimated) [In lieu]", + "1979-07-14": "Birthday of the Governor of Penang", + "1979-07-25": "Beginning of Ramadan* (*estimated)", + "1979-08-10": "Nuzul Al-Quran Day* (*estimated)", + "1979-08-23": "Hari Raya Puasa* (*estimated)", + "1979-08-24": "Second day of Hari Raya Puasa* (*estimated)", + "1979-08-26": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1979-08-31": "National Day", + "1979-09-02": "National Day [In lieu]", + "1979-10-06": "Birthday of the Governor of Sabah", + "1979-10-12": "Birthday of the Governor of Malacca", + "1979-10-13": "Birthday of the Governor of Sarawak", + "1979-10-24": "Birthday of the Sultan of Pahang", + "1979-10-30": "Arafat Day* (*estimated)", + "1979-10-31": "Hari Raya Haji* (*estimated)", + "1979-11-01": "Hari Raya Haji* (*estimated)", + "1979-11-18": "Deepavali", + "1979-11-19": "Deepavali [In lieu]", + "1979-11-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1979-11-27": "Birthday of the Sultan of Perak", + "1979-12-11": "Birthday of The Sultan of Selangor", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1980-02-01": "Federal Territory Day", + "1980-02-16": "Chinese New Year", + "1980-02-17": "Chinese New Year Holiday", + "1980-02-18": "Chinese New Year Holiday [In lieu]; Chinese New Year [In lieu]", + "1980-03-02": "Thaipusam", + "1980-03-03": "Thaipusam [In lieu]", + "1980-04-04": "Good Friday", + "1980-05-01": "Labour Day", + "1980-05-07": "Hari Hol of Pahang", + "1980-05-28": "Vesak Day", + "1980-05-30": "Pesta Kaamatan", + "1980-05-31": "Pesta Kaamatan (Second day)", + "1980-06-01": "Gawai Dayak", + "1980-06-02": "Gawai Dayak (Second day)", + "1980-06-03": "Gawai Dayak [In lieu]", + "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", + "1980-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1980-06-10": "Isra and Mi'raj* (*estimated)", + "1980-07-12": "Birthday of the Governor of Penang", + "1980-07-13": "Beginning of Ramadan* (*estimated)", + "1980-07-14": "Beginning of Ramadan* (*estimated) [In lieu]", + "1980-07-29": "Nuzul Al-Quran Day* (*estimated)", + "1980-08-12": "Hari Raya Puasa* (*estimated)", + "1980-08-13": "Second day of Hari Raya Puasa* (*estimated)", + "1980-08-31": "National Day", + "1980-09-01": "National Day [In lieu]", + "1980-10-04": "Birthday of the Governor of Sabah", + "1980-10-10": "Birthday of the Governor of Malacca", + "1980-10-11": "Birthday of the Governor of Sarawak", + "1980-10-18": "Arafat Day* (*estimated)", + "1980-10-19": "Hari Raya Haji* (*estimated)", + "1980-10-20": "Hari Raya Haji* (*estimated); Hari Raya Haji* (*estimated) [In lieu]", + "1980-10-21": "Arafat Day* (*estimated) [In lieu]; Hari Raya Haji* (*estimated) [In lieu]", + "1980-10-24": "Birthday of the Sultan of Pahang", + "1980-11-06": "Deepavali", + "1980-11-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1980-11-27": "Birthday of the Sultan of Perak", + "1980-12-11": "Birthday of The Sultan of Selangor", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1981-02-01": "Federal Territory Day", + "1981-02-02": "Federal Territory Day [In lieu]", + "1981-02-05": "Chinese New Year", + "1981-02-06": "Chinese New Year Holiday", + "1981-02-08": "Chinese New Year Holiday [In lieu]", + "1981-02-19": "Thaipusam", + "1981-04-17": "Good Friday", + "1981-05-01": "Labour Day", + "1981-05-03": "Labour Day [In lieu]", + "1981-05-07": "Hari Hol of Pahang", + "1981-05-18": "Vesak Day", + "1981-05-30": "Pesta Kaamatan", + "1981-05-31": "Isra and Mi'raj* (*estimated); Pesta Kaamatan (Second day)", + "1981-06-01": "Gawai Dayak; Isra and Mi'raj* (*estimated) [In lieu]", + "1981-06-02": "Gawai Dayak (Second day)", + "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", + "1981-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1981-07-02": "Beginning of Ramadan* (*estimated)", + "1981-07-11": "Birthday of the Governor of Penang", + "1981-07-18": "Nuzul Al-Quran Day* (*estimated)", + "1981-07-19": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1981-08-01": "Hari Raya Puasa* (*estimated)", + "1981-08-02": "Second day of Hari Raya Puasa* (*estimated)", + "1981-08-03": "Hari Raya Puasa* (*estimated) [In lieu]; Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1981-08-31": "National Day", + "1981-10-03": "Birthday of the Governor of Sabah", + "1981-10-07": "Arafat Day* (*estimated)", + "1981-10-08": "Hari Raya Haji* (*estimated)", + "1981-10-09": "Birthday of the Governor of Malacca; Hari Raya Haji* (*estimated)", + "1981-10-10": "Birthday of the Governor of Sarawak", + "1981-10-11": "Hari Raya Haji* (*estimated) [In lieu]", + "1981-10-24": "Birthday of the Sultan of Pahang", + "1981-10-26": "Deepavali", + "1981-10-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1981-11-27": "Birthday of the Sultan of Perak", + "1981-12-11": "Birthday of The Sultan of Selangor", + "1981-12-25": "Christmas Day", + "1981-12-27": "Christmas Day [In lieu]", + "1982-01-01": "New Year's Day", + "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1982-01-10": "Thaipusam", + "1982-01-11": "Thaipusam [In lieu]", + "1982-01-25": "Chinese New Year", + "1982-01-26": "Chinese New Year Holiday", + "1982-02-01": "Federal Territory Day", + "1982-04-09": "Good Friday", + "1982-05-01": "Labour Day", + "1982-05-02": "Labour Day [In lieu]", + "1982-05-07": "Hari Hol of Pahang", + "1982-05-08": "Vesak Day", + "1982-05-09": "Vesak Day [In lieu]", + "1982-05-20": "Isra and Mi'raj* (*estimated)", + "1982-05-30": "Pesta Kaamatan", + "1982-05-31": "Pesta Kaamatan (Second day)", + "1982-06-01": "Gawai Dayak", + "1982-06-02": "Gawai Dayak (Second day)", + "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", + "1982-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1982-06-22": "Beginning of Ramadan* (*estimated)", + "1982-07-08": "Nuzul Al-Quran Day* (*estimated)", + "1982-07-10": "Birthday of the Governor of Penang", + "1982-07-21": "Hari Raya Puasa* (*estimated)", + "1982-07-22": "Second day of Hari Raya Puasa* (*estimated)", + "1982-08-31": "National Day", + "1982-09-26": "Arafat Day* (*estimated)", + "1982-09-27": "Hari Raya Haji* (*estimated)", + "1982-09-28": "Hari Raya Haji* (*estimated)", + "1982-10-02": "Birthday of the Governor of Sabah", + "1982-10-08": "Birthday of the Governor of Malacca", + "1982-10-09": "Birthday of the Governor of Sarawak", + "1982-10-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1982-10-24": "Birthday of the Sultan of Pahang", + "1982-10-25": "Birthday of the Sultan of Pahang [In lieu]", + "1982-11-13": "Deepavali", + "1982-11-14": "Deepavali [In lieu]", + "1982-11-27": "Birthday of the Sultan of Perak", + "1982-12-11": "Birthday of The Sultan of Selangor", + "1982-12-25": "Christmas Day", + "1982-12-26": "Christmas Day [In lieu]", + "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1983-01-01": "New Year's Day", + "1983-02-01": "Federal Territory Day", + "1983-02-13": "Chinese New Year", + "1983-02-14": "Chinese New Year Holiday", + "1983-02-15": "Chinese New Year [In lieu]", + "1983-02-28": "Thaipusam", + "1983-04-01": "Good Friday", + "1983-05-01": "Labour Day", + "1983-05-02": "Labour Day [In lieu]", + "1983-05-07": "Hari Hol of Pahang", + "1983-05-10": "Isra and Mi'raj* (*estimated)", + "1983-05-27": "Vesak Day", + "1983-05-29": "Vesak Day [In lieu]", + "1983-05-30": "Pesta Kaamatan", + "1983-05-31": "Pesta Kaamatan (Second day)", + "1983-06-01": "Gawai Dayak", + "1983-06-02": "Gawai Dayak (Second day)", + "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", + "1983-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1983-06-12": "Beginning of Ramadan* (*estimated)", + "1983-06-13": "Beginning of Ramadan* (*estimated) [In lieu]", + "1983-06-28": "Nuzul Al-Quran Day* (*estimated)", + "1983-07-09": "Birthday of the Governor of Penang", + "1983-07-11": "Hari Raya Puasa* (*estimated)", + "1983-07-12": "Second day of Hari Raya Puasa* (*estimated)", + "1983-08-31": "National Day", + "1983-09-16": "Arafat Day* (*estimated)", + "1983-09-17": "Hari Raya Haji* (*estimated)", + "1983-09-18": "Hari Raya Haji* (*estimated)", + "1983-09-19": "Hari Raya Haji* (*estimated) [In lieu]", + "1983-10-01": "Birthday of the Governor of Sabah", + "1983-10-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1983-10-08": "Birthday of the Governor of Sarawak", + "1983-10-14": "Birthday of the Governor of Malacca", + "1983-10-24": "Birthday of the Sultan of Pahang", + "1983-11-03": "Deepavali", + "1983-11-27": "Birthday of the Sultan of Perak", + "1983-12-11": "Birthday of The Sultan of Selangor", + "1983-12-12": "Birthday of The Sultan of Selangor [In lieu]", + "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1983-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1983-12-25": "Christmas Day", + "1983-12-26": "Christmas Day [In lieu]", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day [In lieu]", + "1984-02-01": "Federal Territory Day", + "1984-02-02": "Chinese New Year", + "1984-02-03": "Chinese New Year Holiday", + "1984-02-05": "Chinese New Year Holiday [In lieu]", + "1984-02-17": "Thaipusam", + "1984-02-19": "Thaipusam [In lieu]", + "1984-04-20": "Good Friday", + "1984-04-28": "Isra and Mi'raj* (*estimated)", + "1984-05-01": "Labour Day", + "1984-05-07": "Hari Hol of Pahang", + "1984-05-15": "Vesak Day", + "1984-05-30": "Pesta Kaamatan", + "1984-05-31": "Beginning of Ramadan* (*estimated); Pesta Kaamatan (Second day)", + "1984-06-01": "Gawai Dayak", + "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", + "1984-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1984-06-16": "Nuzul Al-Quran Day* (*estimated)", + "1984-06-17": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1984-06-30": "Hari Raya Puasa* (*estimated)", + "1984-07-01": "Second day of Hari Raya Puasa* (*estimated)", + "1984-07-02": "Hari Raya Puasa* (*estimated) [In lieu]; Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1984-07-14": "Birthday of the Governor of Penang", + "1984-08-31": "National Day", + "1984-09-02": "National Day [In lieu]", + "1984-09-04": "Arafat Day* (*estimated)", + "1984-09-05": "Hari Raya Haji* (*estimated)", + "1984-09-06": "Hari Raya Haji* (*estimated)", + "1984-09-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1984-10-06": "Birthday of the Governor of Sabah", + "1984-10-12": "Birthday of the Governor of Malacca", + "1984-10-13": "Birthday of the Governor of Sarawak", + "1984-10-22": "Deepavali", + "1984-10-24": "Birthday of the Sultan of Pahang", + "1984-11-27": "Birthday of the Sultan of Perak", + "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1984-12-11": "Birthday of The Sultan of Selangor", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-02-01": "Federal Territory Day", + "1985-02-20": "Chinese New Year", + "1985-02-21": "Chinese New Year Holiday", + "1985-03-06": "Thaipusam", + "1985-04-05": "Good Friday", + "1985-04-17": "Isra and Mi'raj* (*estimated)", + "1985-05-01": "Labour Day", + "1985-05-04": "Vesak Day", + "1985-05-05": "Vesak Day [In lieu]", + "1985-05-07": "Hari Hol of Pahang", + "1985-05-20": "Beginning of Ramadan* (*estimated)", + "1985-05-30": "Pesta Kaamatan", + "1985-05-31": "Pesta Kaamatan (Second day)", + "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", + "1985-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]; Gawai Dayak (Second day)", + "1985-06-03": "Gawai Dayak (Second day) [In lieu]", + "1985-06-05": "Nuzul Al-Quran Day* (*estimated)", + "1985-06-19": "Hari Raya Puasa* (*estimated)", + "1985-06-20": "Second day of Hari Raya Puasa* (*estimated)", + "1985-07-13": "Birthday of the Governor of Penang", + "1985-08-25": "Arafat Day* (*estimated)", + "1985-08-26": "Hari Raya Haji* (*estimated)", + "1985-08-27": "Hari Raya Haji* (*estimated)", + "1985-08-31": "National Day", + "1985-09-01": "National Day [In lieu]", + "1985-09-15": "Awal Muharram (Hijri New Year)* (*estimated)", + "1985-10-05": "Birthday of the Governor of Sabah", + "1985-10-11": "Birthday of the Governor of Malacca", + "1985-10-12": "Birthday of the Governor of Sarawak", + "1985-10-24": "Birthday of the Sultan of Pahang", + "1985-11-10": "Deepavali", + "1985-11-11": "Deepavali [In lieu]", + "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1985-11-27": "Birthday of the Sultan of Perak", + "1985-12-11": "Birthday of The Sultan of Selangor", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-02-01": "Federal Territory Day", + "1986-02-09": "Chinese New Year", + "1986-02-10": "Chinese New Year Holiday", + "1986-02-11": "Chinese New Year [In lieu]", + "1986-02-23": "Thaipusam", + "1986-02-24": "Thaipusam [In lieu]", + "1986-03-28": "Good Friday", + "1986-04-06": "Isra and Mi'raj* (*estimated)", + "1986-04-07": "Isra and Mi'raj* (*estimated) [In lieu]", + "1986-05-01": "Labour Day", + "1986-05-07": "Hari Hol of Pahang", + "1986-05-09": "Beginning of Ramadan* (*estimated)", + "1986-05-11": "Beginning of Ramadan* (*estimated) [In lieu]", + "1986-05-23": "Vesak Day", + "1986-05-25": "Nuzul Al-Quran Day* (*estimated); Vesak Day [In lieu]", + "1986-05-26": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1986-05-30": "Pesta Kaamatan", + "1986-05-31": "Pesta Kaamatan (Second day)", + "1986-06-01": "Gawai Dayak", + "1986-06-02": "Gawai Dayak (Second day)", + "1986-06-03": "Gawai Dayak [In lieu]", + "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", + "1986-06-08": "Hari Raya Puasa* (*estimated)", + "1986-06-09": "Second day of Hari Raya Puasa* (*estimated)", + "1986-06-10": "Birthday of SPB Yang di-Pertuan Agong [In lieu]; Hari Raya Puasa* (*estimated) [In lieu]", + "1986-07-12": "Birthday of the Governor of Penang", + "1986-08-14": "Arafat Day* (*estimated)", + "1986-08-15": "Hari Raya Haji* (*estimated)", + "1986-08-16": "Hari Raya Haji* (*estimated)", + "1986-08-17": "Hari Raya Haji* (*estimated) [In lieu]", + "1986-08-31": "National Day", + "1986-09-01": "National Day [In lieu]", + "1986-09-05": "Awal Muharram (Hijri New Year)* (*estimated)", + "1986-10-04": "Birthday of the Governor of Sabah", + "1986-10-10": "Birthday of the Governor of Malacca", + "1986-10-11": "Birthday of the Governor of Sarawak", + "1986-10-24": "Birthday of the Sultan of Pahang", + "1986-10-31": "Deepavali", + "1986-11-02": "Deepavali [In lieu]", + "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1986-11-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1986-11-27": "Birthday of the Sultan of Perak", + "1986-12-11": "Birthday of The Sultan of Selangor", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-01-14": "Thaipusam", + "1987-01-29": "Chinese New Year", + "1987-01-30": "Chinese New Year Holiday", + "1987-02-01": "Chinese New Year Holiday [In lieu]; Federal Territory Day", + "1987-02-02": "Federal Territory Day [In lieu]", + "1987-03-27": "Isra and Mi'raj* (*estimated)", + "1987-03-29": "Isra and Mi'raj* (*estimated) [In lieu]", + "1987-04-17": "Good Friday", + "1987-04-29": "Beginning of Ramadan* (*estimated)", + "1987-05-01": "Labour Day", + "1987-05-03": "Labour Day [In lieu]", + "1987-05-07": "Hari Hol of Pahang", + "1987-05-12": "Vesak Day", + "1987-05-15": "Nuzul Al-Quran Day* (*estimated)", + "1987-05-28": "Hari Raya Puasa* (*estimated)", + "1987-05-29": "Second day of Hari Raya Puasa* (*estimated)", + "1987-05-30": "Pesta Kaamatan", + "1987-05-31": "Pesta Kaamatan (Second day); Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1987-06-01": "Gawai Dayak", + "1987-06-02": "Gawai Dayak (Second day)", + "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", + "1987-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1987-07-11": "Birthday of the Governor of Penang", + "1987-08-03": "Arafat Day* (*estimated)", + "1987-08-04": "Hari Raya Haji* (*estimated)", + "1987-08-05": "Hari Raya Haji* (*estimated)", + "1987-08-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1987-08-31": "National Day", + "1987-10-03": "Birthday of the Governor of Sabah", + "1987-10-09": "Birthday of the Governor of Malacca", + "1987-10-10": "Birthday of the Governor of Sarawak", + "1987-10-24": "Birthday of the Sultan of Pahang", + "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1987-11-19": "Deepavali", + "1987-11-27": "Birthday of the Sultan of Perak", + "1987-12-11": "Birthday of The Sultan of Selangor", + "1987-12-25": "Christmas Day", + "1987-12-27": "Christmas Day [In lieu]", + "1988-01-01": "New Year's Day", + "1988-02-01": "Federal Territory Day", + "1988-02-17": "Chinese New Year", + "1988-02-18": "Chinese New Year Holiday", + "1988-03-03": "Thaipusam", + "1988-03-15": "Isra and Mi'raj* (*estimated)", + "1988-04-01": "Good Friday", + "1988-04-17": "Beginning of Ramadan* (*estimated)", + "1988-04-18": "Beginning of Ramadan* (*estimated) [In lieu]", + "1988-05-01": "Labour Day", + "1988-05-02": "Labour Day [In lieu]", + "1988-05-03": "Nuzul Al-Quran Day* (*estimated)", + "1988-05-07": "Hari Hol of Pahang", + "1988-05-16": "Hari Raya Puasa* (*estimated)", + "1988-05-17": "Second day of Hari Raya Puasa* (*estimated)", + "1988-05-30": "Pesta Kaamatan; Vesak Day", + "1988-05-31": "Pesta Kaamatan (Second day)", + "1988-06-01": "Gawai Dayak", + "1988-06-02": "Gawai Dayak (Second day)", + "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", + "1988-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1988-07-09": "Birthday of the Governor of Penang", + "1988-07-22": "Arafat Day* (*estimated)", + "1988-07-23": "Hari Raya Haji* (*estimated)", + "1988-07-24": "Hari Raya Haji* (*estimated)", + "1988-07-25": "Hari Raya Haji* (*estimated) [In lieu]", + "1988-08-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1988-08-31": "National Day", + "1988-10-01": "Birthday of the Governor of Sabah", + "1988-10-08": "Birthday of the Governor of Sarawak", + "1988-10-14": "Birthday of the Governor of Malacca", + "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1988-10-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1988-10-24": "Birthday of the Sultan of Pahang", + "1988-11-07": "Deepavali", + "1988-11-27": "Birthday of the Sultan of Perak", + "1988-12-11": "Birthday of The Sultan of Selangor", + "1988-12-12": "Birthday of The Sultan of Selangor [In lieu]", + "1988-12-25": "Christmas Day", + "1988-12-26": "Christmas Day [In lieu]", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day [In lieu]", + "1989-02-01": "Federal Territory Day", + "1989-02-06": "Chinese New Year", + "1989-02-07": "Chinese New Year Holiday", + "1989-02-21": "Thaipusam", + "1989-03-05": "Isra and Mi'raj* (*estimated)", + "1989-03-06": "Isra and Mi'raj* (*estimated) [In lieu]", + "1989-03-24": "Good Friday", + "1989-04-07": "Beginning of Ramadan* (*estimated)", + "1989-04-09": "Beginning of Ramadan* (*estimated) [In lieu]", + "1989-04-15": "Declaration of Malacca as a Historical City", + "1989-04-23": "Nuzul Al-Quran Day* (*estimated)", + "1989-04-24": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1989-05-01": "Labour Day", + "1989-05-06": "Hari Raya Puasa* (*estimated)", + "1989-05-07": "Hari Hol of Pahang; Second day of Hari Raya Puasa* (*estimated)", + "1989-05-08": "Hari Hol of Pahang [In lieu]; Hari Raya Puasa* (*estimated) [In lieu]; Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1989-05-19": "Vesak Day", + "1989-05-21": "Vesak Day [In lieu]", + "1989-05-30": "Pesta Kaamatan", + "1989-05-31": "Pesta Kaamatan (Second day)", + "1989-06-01": "Gawai Dayak", + "1989-06-02": "Gawai Dayak (Second day)", + "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", + "1989-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1989-07-08": "Birthday of the Governor of Penang", + "1989-07-12": "Arafat Day* (*estimated)", + "1989-07-13": "Hari Raya Haji* (*estimated)", + "1989-07-14": "Hari Raya Haji* (*estimated)", + "1989-07-16": "Hari Raya Haji* (*estimated) [In lieu]", + "1989-08-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1989-08-31": "National Day", + "1989-10-07": "Birthday of the Governor of Sabah", + "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1989-10-13": "Birthday of the Governor of Malacca", + "1989-10-14": "Birthday of the Governor of Sarawak", + "1989-10-24": "Birthday of the Sultan of Pahang", + "1989-10-27": "Deepavali", + "1989-10-29": "Deepavali [In lieu]", + "1989-11-27": "Birthday of the Sultan of Perak", + "1989-12-11": "Birthday of The Sultan of Selangor", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-01-12": "Thaipusam", + "1990-01-14": "Thaipusam [In lieu]", + "1990-01-27": "Chinese New Year", + "1990-01-28": "Chinese New Year Holiday", + "1990-01-29": "Chinese New Year Holiday [In lieu]; Chinese New Year [In lieu]", + "1990-02-01": "Federal Territory Day", + "1990-02-22": "Isra and Mi'raj* (*estimated)", + "1990-03-27": "Beginning of Ramadan* (*estimated)", + "1990-04-12": "Nuzul Al-Quran Day* (*estimated)", + "1990-04-13": "Good Friday", + "1990-04-15": "Declaration of Malacca as a Historical City", + "1990-04-16": "Declaration of Malacca as a Historical City [In lieu]", + "1990-04-26": "Hari Raya Puasa* (*estimated)", + "1990-04-27": "Second day of Hari Raya Puasa* (*estimated)", + "1990-04-29": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1990-05-01": "Labour Day", + "1990-05-07": "Hari Hol of Pahang", + "1990-05-09": "Vesak Day", + "1990-05-30": "Pesta Kaamatan", + "1990-05-31": "Pesta Kaamatan (Second day)", + "1990-06-01": "Gawai Dayak", + "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", + "1990-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1990-07-01": "Arafat Day* (*estimated)", + "1990-07-02": "Hari Raya Haji* (*estimated)", + "1990-07-03": "Hari Raya Haji* (*estimated)", + "1990-07-14": "Birthday of the Governor of Penang", + "1990-07-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "1990-08-31": "National Day", + "1990-09-02": "National Day [In lieu]", + "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1990-10-06": "Birthday of the Governor of Sabah", + "1990-10-12": "Birthday of the Governor of Malacca", + "1990-10-13": "Birthday of the Governor of Sarawak", + "1990-10-24": "Birthday of the Sultan of Pahang", + "1990-11-15": "Deepavali", + "1990-11-27": "Birthday of the Sultan of Perak", + "1990-12-11": "Birthday of The Sultan of Selangor", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-02-01": "Federal Territory Day", + "1991-02-11": "Isra and Mi'raj* (*estimated)", + "1991-02-15": "Chinese New Year", + "1991-02-16": "Chinese New Year Holiday", + "1991-02-17": "Chinese New Year Holiday [In lieu]; Chinese New Year [In lieu]", + "1991-03-01": "Thaipusam", + "1991-03-03": "Thaipusam [In lieu]", + "1991-03-17": "Beginning of Ramadan* (*estimated)", + "1991-03-18": "Beginning of Ramadan* (*estimated) [In lieu]", + "1991-03-29": "Good Friday", + "1991-04-02": "Nuzul Al-Quran Day* (*estimated)", + "1991-04-15": "Declaration of Malacca as a Historical City; Hari Raya Puasa* (*estimated)", + "1991-04-16": "Second day of Hari Raya Puasa* (*estimated)", + "1991-05-01": "Labour Day", + "1991-05-07": "Hari Hol of Pahang", + "1991-05-28": "Vesak Day", + "1991-05-30": "Pesta Kaamatan", + "1991-05-31": "Pesta Kaamatan (Second day)", + "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", + "1991-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]; Gawai Dayak (Second day)", + "1991-06-03": "Gawai Dayak (Second day) [In lieu]", + "1991-06-21": "Arafat Day* (*estimated)", + "1991-06-22": "Hari Raya Haji* (*estimated)", + "1991-06-23": "Hari Raya Haji* (*estimated)", + "1991-06-24": "Hari Raya Haji* (*estimated) [In lieu]", + "1991-07-12": "Awal Muharram (Hijri New Year)* (*estimated)", + "1991-07-13": "Birthday of the Governor of Penang", + "1991-08-31": "National Day", + "1991-09-01": "National Day [In lieu]", + "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1991-09-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1991-10-05": "Birthday of the Governor of Sabah", + "1991-10-11": "Birthday of the Governor of Malacca", + "1991-10-12": "Birthday of the Governor of Sarawak", + "1991-10-24": "Birthday of the Sultan of Pahang", + "1991-11-04": "Deepavali", + "1991-11-27": "Birthday of the Sultan of Perak", + "1991-12-11": "Birthday of The Sultan of Selangor", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-01-31": "Isra and Mi'raj* (*estimated)", + "1992-02-01": "Federal Territory Day", + "1992-02-02": "Isra and Mi'raj* (*estimated) [In lieu]", + "1992-02-04": "Chinese New Year", + "1992-02-05": "Chinese New Year Holiday", + "1992-02-18": "Thaipusam", + "1992-03-05": "Beginning of Ramadan* (*estimated)", + "1992-03-21": "Nuzul Al-Quran Day* (*estimated)", + "1992-03-22": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1992-04-04": "Hari Raya Puasa* (*estimated)", + "1992-04-05": "Second day of Hari Raya Puasa* (*estimated)", + "1992-04-06": "Hari Raya Puasa* (*estimated) [In lieu]; Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1992-04-15": "Declaration of Malacca as a Historical City", + "1992-04-17": "Good Friday", + "1992-05-01": "Labour Day", + "1992-05-03": "Labour Day [In lieu]", + "1992-05-07": "Hari Hol of Pahang", + "1992-05-17": "Vesak Day", + "1992-05-18": "Vesak Day [In lieu]", + "1992-05-30": "Pesta Kaamatan", + "1992-05-31": "Pesta Kaamatan (Second day)", + "1992-06-01": "Gawai Dayak", + "1992-06-02": "Gawai Dayak (Second day)", + "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", + "1992-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1992-06-10": "Arafat Day* (*estimated)", + "1992-06-11": "Hari Raya Haji* (*estimated)", + "1992-06-12": "Hari Raya Haji* (*estimated)", + "1992-06-14": "Hari Raya Haji* (*estimated) [In lieu]", + "1992-07-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1992-07-11": "Birthday of the Governor of Penang", + "1992-08-31": "National Day", + "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1992-10-03": "Birthday of the Governor of Sabah", + "1992-10-09": "Birthday of the Governor of Malacca", + "1992-10-10": "Birthday of the Governor of Sarawak", + "1992-10-24": "Birthday of the Sultan of Pahang; Deepavali", + "1992-10-25": "Deepavali [In lieu]", + "1992-11-27": "Birthday of the Sultan of Perak", + "1992-12-11": "Birthday of The Sultan of Selangor", + "1992-12-25": "Christmas Day", + "1992-12-27": "Christmas Day [In lieu]", + "1993-01-01": "New Year's Day", + "1993-01-08": "Thaipusam", + "1993-01-10": "Thaipusam [In lieu]", + "1993-01-20": "Isra and Mi'raj* (*estimated)", + "1993-01-23": "Chinese New Year", + "1993-01-24": "Chinese New Year Holiday", + "1993-01-25": "Chinese New Year Holiday [In lieu]; Chinese New Year [In lieu]", + "1993-02-01": "Federal Territory Day", + "1993-02-22": "Beginning of Ramadan* (*estimated)", + "1993-03-10": "Nuzul Al-Quran Day* (*estimated)", + "1993-03-24": "Hari Raya Puasa* (*estimated)", + "1993-03-25": "Second day of Hari Raya Puasa* (*estimated)", + "1993-04-09": "Good Friday", + "1993-04-15": "Declaration of Malacca as a Historical City", + "1993-05-01": "Labour Day", + "1993-05-02": "Labour Day [In lieu]", + "1993-05-06": "Vesak Day", + "1993-05-07": "Hari Hol of Pahang", + "1993-05-30": "Arafat Day* (*estimated); Pesta Kaamatan", + "1993-05-31": "Hari Raya Haji* (*estimated); Pesta Kaamatan (Second day)", + "1993-06-01": "Gawai Dayak; Hari Raya Haji* (*estimated)", + "1993-06-02": "Gawai Dayak (Second day)", + "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", + "1993-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1993-06-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1993-07-10": "Birthday of the Governor of Penang", + "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1993-08-31": "National Day", + "1993-10-02": "Birthday of the Governor of Sabah", + "1993-10-08": "Birthday of the Governor of Malacca", + "1993-10-09": "Birthday of the Governor of Sarawak", + "1993-10-24": "Birthday of the Sultan of Pahang", + "1993-10-25": "Birthday of the Sultan of Pahang [In lieu]", + "1993-11-12": "Deepavali", + "1993-11-14": "Deepavali [In lieu]", + "1993-11-27": "Birthday of the Sultan of Perak", + "1993-12-11": "Birthday of The Sultan of Selangor", + "1993-12-25": "Christmas Day", + "1993-12-26": "Christmas Day [In lieu]", + "1994-01-01": "New Year's Day", + "1994-01-09": "Isra and Mi'raj* (*estimated)", + "1994-01-10": "Isra and Mi'raj* (*estimated) [In lieu]", + "1994-02-01": "Federal Territory Day", + "1994-02-10": "Chinese New Year", + "1994-02-11": "Beginning of Ramadan* (*estimated); Chinese New Year Holiday", + "1994-02-13": "Beginning of Ramadan* (*estimated) [In lieu]; Chinese New Year Holiday [In lieu]", + "1994-02-25": "Thaipusam", + "1994-02-27": "Nuzul Al-Quran Day* (*estimated); Thaipusam [In lieu]", + "1994-02-28": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1994-03-13": "Hari Raya Puasa* (*estimated)", + "1994-03-14": "Second day of Hari Raya Puasa* (*estimated)", + "1994-03-15": "Hari Raya Puasa* (*estimated) [In lieu]", + "1994-04-01": "Good Friday", + "1994-04-15": "Declaration of Malacca as a Historical City", + "1994-05-01": "Labour Day", + "1994-05-02": "Labour Day [In lieu]", + "1994-05-07": "Hari Hol of Pahang", + "1994-05-19": "Arafat Day* (*estimated)", + "1994-05-20": "Hari Raya Haji* (*estimated)", + "1994-05-21": "Hari Raya Haji* (*estimated)", + "1994-05-22": "Hari Raya Haji* (*estimated) [In lieu]", + "1994-05-25": "Vesak Day", + "1994-05-30": "Pesta Kaamatan", + "1994-05-31": "Pesta Kaamatan (Second day)", + "1994-06-01": "Gawai Dayak", + "1994-06-02": "Gawai Dayak (Second day)", + "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", + "1994-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1994-06-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "1994-07-09": "Birthday of the Governor of Penang", + "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1994-08-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1994-08-31": "National Day", + "1994-10-01": "Birthday of the Governor of Sabah", + "1994-10-08": "Birthday of the Governor of Sarawak", + "1994-10-14": "Birthday of the Governor of Malacca", + "1994-10-24": "Birthday of the Sultan of Pahang", + "1994-11-01": "Deepavali", + "1994-11-27": "Birthday of the Sultan of Perak", + "1994-12-11": "Birthday of The Sultan of Selangor", + "1994-12-12": "Birthday of The Sultan of Selangor [In lieu]", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day [In lieu]", + "1994-12-29": "Isra and Mi'raj* (*estimated)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day [In lieu]", + "1995-01-31": "Beginning of Ramadan* (*estimated); Chinese New Year", + "1995-02-01": "Chinese New Year Holiday; Federal Territory Day", + "1995-02-14": "Thaipusam", + "1995-02-16": "Nuzul Al-Quran Day* (*estimated)", + "1995-03-02": "Hari Raya Puasa* (*estimated)", + "1995-03-03": "Second day of Hari Raya Puasa* (*estimated)", + "1995-03-05": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1995-04-14": "Good Friday", + "1995-04-15": "Declaration of Malacca as a Historical City", + "1995-05-01": "Labour Day", + "1995-05-07": "Hari Hol of Pahang", + "1995-05-08": "Arafat Day* (*estimated); Hari Hol of Pahang [In lieu]", + "1995-05-09": "Hari Raya Haji* (*estimated)", + "1995-05-10": "Hari Raya Haji* (*estimated)", + "1995-05-14": "Vesak Day", + "1995-05-15": "Vesak Day [In lieu]", + "1995-05-30": "Awal Muharram (Hijri New Year)* (*estimated); Pesta Kaamatan", + "1995-05-31": "Pesta Kaamatan (Second day)", + "1995-06-01": "Gawai Dayak", + "1995-06-02": "Gawai Dayak (Second day)", + "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", + "1995-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1995-07-08": "Birthday of the Governor of Penang", + "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1995-08-31": "National Day", + "1995-10-07": "Birthday of the Governor of Sabah", + "1995-10-13": "Birthday of the Governor of Malacca", + "1995-10-14": "Birthday of the Governor of Sarawak", + "1995-10-24": "Birthday of the Sultan of Pahang", + "1995-11-20": "Deepavali", + "1995-11-27": "Birthday of the Sultan of Perak", + "1995-12-11": "Birthday of The Sultan of Selangor", + "1995-12-19": "Isra and Mi'raj* (*estimated)", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-01-21": "Beginning of Ramadan* (*estimated)", + "1996-01-22": "Beginning of Ramadan* (*estimated) [In lieu]", + "1996-02-01": "Federal Territory Day", + "1996-02-06": "Nuzul Al-Quran Day* (*estimated)", + "1996-02-19": "Chinese New Year; Hari Raya Puasa* (*estimated)", + "1996-02-20": "Chinese New Year Holiday; Second day of Hari Raya Puasa* (*estimated)", + "1996-03-04": "Thaipusam", + "1996-04-05": "Good Friday", + "1996-04-15": "Declaration of Malacca as a Historical City", + "1996-04-26": "Arafat Day* (*estimated)", + "1996-04-27": "Hari Raya Haji* (*estimated)", + "1996-04-28": "Hari Raya Haji* (*estimated)", + "1996-04-29": "Hari Raya Haji* (*estimated) [In lieu]", + "1996-05-01": "Labour Day", + "1996-05-02": "Vesak Day", + "1996-05-07": "Hari Hol of Pahang", + "1996-05-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1996-05-30": "Pesta Kaamatan", + "1996-05-31": "Pesta Kaamatan (Second day)", + "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", + "1996-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]; Gawai Dayak (Second day)", + "1996-06-03": "Gawai Dayak (Second day) [In lieu]", + "1996-07-13": "Birthday of the Governor of Penang", + "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1996-07-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1996-08-31": "National Day", + "1996-09-01": "National Day [In lieu]", + "1996-10-05": "Birthday of the Governor of Sabah", + "1996-10-11": "Birthday of the Governor of Malacca", + "1996-10-12": "Birthday of the Governor of Sarawak", + "1996-10-24": "Birthday of the Sultan of Pahang", + "1996-11-09": "Deepavali", + "1996-11-10": "Deepavali [In lieu]", + "1996-11-27": "Birthday of the Sultan of Perak", + "1996-12-08": "Isra and Mi'raj* (*estimated)", + "1996-12-09": "Isra and Mi'raj* (*estimated) [In lieu]", + "1996-12-11": "Birthday of The Sultan of Selangor", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-01-10": "Beginning of Ramadan* (*estimated)", + "1997-01-12": "Beginning of Ramadan* (*estimated) [In lieu]", + "1997-01-26": "Nuzul Al-Quran Day* (*estimated)", + "1997-01-27": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1997-02-01": "Federal Territory Day", + "1997-02-07": "Chinese New Year", + "1997-02-08": "Chinese New Year Holiday; Hari Raya Puasa* (*estimated)", + "1997-02-09": "Second day of Hari Raya Puasa* (*estimated)", + "1997-02-10": "Chinese New Year Holiday [In lieu]; Chinese New Year [In lieu]; Hari Raya Puasa* (*estimated) [In lieu]; Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1997-02-22": "Thaipusam", + "1997-03-28": "Good Friday", + "1997-04-15": "Declaration of Malacca as a Historical City", + "1997-04-16": "Arafat Day* (*estimated)", + "1997-04-17": "Hari Raya Haji* (*estimated)", + "1997-04-18": "Hari Raya Haji* (*estimated)", + "1997-04-20": "Hari Raya Haji* (*estimated) [In lieu]", + "1997-05-01": "Labour Day", + "1997-05-07": "Awal Muharram (Hijri New Year)* (*estimated); Hari Hol of Pahang", + "1997-05-21": "Vesak Day", + "1997-05-30": "Pesta Kaamatan", + "1997-05-31": "Pesta Kaamatan (Second day)", + "1997-06-01": "Gawai Dayak", + "1997-06-02": "Gawai Dayak (Second day)", + "1997-06-03": "Gawai Dayak [In lieu]", + "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", + "1997-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1997-07-12": "Birthday of the Governor of Penang", + "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1997-08-31": "National Day", + "1997-09-01": "National Day [In lieu]", + "1997-10-04": "Birthday of the Governor of Sabah", + "1997-10-10": "Birthday of the Governor of Malacca", + "1997-10-11": "Birthday of the Governor of Sarawak", + "1997-10-24": "Birthday of the Sultan of Pahang", + "1997-10-29": "Deepavali", + "1997-11-27": "Birthday of the Sultan of Perak; Isra and Mi'raj* (*estimated)", + "1997-12-11": "Birthday of The Sultan of Selangor", + "1997-12-25": "Christmas Day", + "1997-12-30": "Beginning of Ramadan* (*estimated)", + "1998-01-01": "New Year's Day", + "1998-01-13": "Thaipusam", + "1998-01-15": "Nuzul Al-Quran Day* (*estimated)", + "1998-01-28": "Chinese New Year", + "1998-01-29": "Chinese New Year Holiday; Hari Raya Puasa* (*estimated)", + "1998-01-30": "Second day of Hari Raya Puasa* (*estimated)", + "1998-02-01": "Federal Territory Day; Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1998-02-02": "Federal Territory Day [In lieu]", + "1998-04-06": "Arafat Day* (*estimated)", + "1998-04-07": "Hari Raya Haji* (*estimated)", + "1998-04-08": "Hari Raya Haji* (*estimated)", + "1998-04-10": "Good Friday", + "1998-04-15": "Declaration of Malacca as a Historical City", + "1998-04-27": "Awal Muharram (Hijri New Year)* (*estimated)", + "1998-05-01": "Labour Day", + "1998-05-03": "Labour Day [In lieu]", + "1998-05-07": "Hari Hol of Pahang", + "1998-05-10": "Vesak Day", + "1998-05-11": "Vesak Day [In lieu]", + "1998-05-30": "Pesta Kaamatan", + "1998-05-31": "Pesta Kaamatan (Second day)", + "1998-06-01": "Gawai Dayak", + "1998-06-02": "Gawai Dayak (Second day)", + "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", + "1998-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1998-07-11": "Birthday of the Governor of Penang", + "1998-08-31": "National Day", + "1998-10-03": "Birthday of the Governor of Sabah", + "1998-10-09": "Birthday of the Governor of Malacca", + "1998-10-10": "Birthday of the Governor of Sarawak", + "1998-10-24": "Birthday of the Sultan of Pahang", + "1998-11-16": "Isra and Mi'raj* (*estimated)", + "1998-11-17": "Deepavali", + "1998-11-27": "Birthday of the Sultan of Perak", + "1998-12-11": "Birthday of The Sultan of Selangor", + "1998-12-19": "Beginning of Ramadan* (*estimated)", + "1998-12-25": "Christmas Day", + "1998-12-27": "Christmas Day [In lieu]", + "1999-01-01": "New Year's Day", + "1999-01-04": "Nuzul Al-Quran Day* (*estimated)", + "1999-01-18": "Hari Raya Puasa* (*estimated)", + "1999-01-19": "Second day of Hari Raya Puasa* (*estimated)", + "1999-02-01": "Federal Territory Day", + "1999-02-16": "Chinese New Year", + "1999-02-17": "Chinese New Year Holiday", + "1999-03-03": "Thaipusam", + "1999-03-26": "Arafat Day* (*estimated)", + "1999-03-27": "Hari Raya Haji* (*estimated)", + "1999-03-28": "Hari Raya Haji* (*estimated)", + "1999-03-29": "Hari Raya Haji* (*estimated) [In lieu]", + "1999-04-02": "Good Friday", + "1999-04-15": "Declaration of Malacca as a Historical City", + "1999-04-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "1999-05-01": "Labour Day", + "1999-05-02": "Labour Day [In lieu]", + "1999-05-07": "Hari Hol of Pahang", + "1999-05-29": "Vesak Day", + "1999-05-30": "Pesta Kaamatan; Vesak Day [In lieu]", + "1999-05-31": "Pesta Kaamatan (Second day)", + "1999-06-01": "Gawai Dayak", + "1999-06-02": "Gawai Dayak (Second day)", + "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", + "1999-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1999-06-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1999-07-10": "Birthday of the Governor of Penang", + "1999-08-31": "National Day", + "1999-10-02": "Birthday of the Governor of Sabah", + "1999-10-08": "Birthday of the Governor of Malacca", + "1999-10-09": "Birthday of the Governor of Sarawak", + "1999-10-24": "Birthday of the Sultan of Pahang", + "1999-10-25": "Birthday of the Sultan of Pahang [In lieu]", + "1999-11-05": "Isra and Mi'raj* (*estimated)", + "1999-11-06": "Deepavali", + "1999-11-07": "Deepavali [In lieu]; Isra and Mi'raj* (*estimated) [In lieu]", + "1999-11-27": "Birthday of the Sultan of Perak", + "1999-11-29": "Malaysia General Election Holiday", + "1999-12-09": "Beginning of Ramadan* (*estimated)", + "1999-12-11": "Birthday of The Sultan of Selangor", + "1999-12-25": "Christmas Day; Nuzul Al-Quran Day* (*estimated)", + "1999-12-26": "Christmas Day [In lieu]; Nuzul Al-Quran Day* (*estimated) [In lieu]", + "2000-01-01": "New Year's Day", + "2000-01-08": "Hari Raya Puasa* (*estimated)", + "2000-01-09": "Second day of Hari Raya Puasa* (*estimated)", + "2000-01-10": "Hari Raya Puasa* (*estimated) [In lieu]; Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2000-02-01": "Federal Territory Day", + "2000-02-05": "Chinese New Year", + "2000-02-06": "Chinese New Year Holiday", + "2000-02-07": "Chinese New Year Holiday [In lieu]; Chinese New Year [In lieu]", + "2000-02-20": "Thaipusam", + "2000-02-21": "Thaipusam [In lieu]", + "2000-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2000-03-05": "Anniversary of the Installation of the Sultan of Terengganu [In lieu]", + "2000-03-15": "Arafat Day* (*estimated)", + "2000-03-16": "Hari Raya Haji* (*estimated)", + "2000-03-17": "Hari Raya Haji* (*estimated)", + "2000-03-19": "Hari Raya Haji* (*estimated) [In lieu]", + "2000-04-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2000-04-15": "Declaration of Malacca as a Historical City", + "2000-04-21": "Good Friday", + "2000-04-26": "Birthday of the Sultan of Terengganu", + "2000-05-01": "Labour Day", + "2000-05-07": "Hari Hol of Pahang", + "2000-05-08": "Hari Hol of Pahang [In lieu]", + "2000-05-17": "Birthday of The Raja of Perlis", + "2000-05-18": "Vesak Day", + "2000-05-30": "Pesta Kaamatan", + "2000-05-31": "Pesta Kaamatan (Second day)", + "2000-06-01": "Gawai Dayak", + "2000-06-02": "Gawai Dayak (Second day)", + "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", + "2000-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2000-07-08": "Birthday of the Governor of Penang", + "2000-08-31": "National Day", + "2000-10-07": "Birthday of the Governor of Sabah", + "2000-10-13": "Birthday of the Governor of Malacca", + "2000-10-14": "Birthday of the Governor of Sarawak", + "2000-10-24": "Birthday of the Sultan of Pahang; Isra and Mi'raj* (*estimated)", + "2000-10-25": "Deepavali", + "2000-11-27": "Beginning of Ramadan* (*estimated); Birthday of the Sultan of Perak", + "2000-12-11": "Birthday of The Sultan of Selangor", + "2000-12-13": "Nuzul Al-Quran Day* (*estimated)", + "2000-12-25": "Christmas Day", + "2000-12-27": "Hari Raya Puasa* (*estimated)", + "2000-12-28": "Second day of Hari Raya Puasa* (*estimated)", + "2001-01-01": "New Year's Day", + "2001-01-09": "Thaipusam", + "2001-01-24": "Chinese New Year", + "2001-01-25": "Chinese New Year Holiday", + "2001-02-01": "Federal Territory Day", + "2001-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2001-03-05": "Arafat Day", + "2001-03-06": "Hari Raya Haji", + "2001-03-07": "Hari Raya Haji", + "2001-03-26": "Awal Muharram (Hijri New Year)", + "2001-04-13": "Good Friday", + "2001-04-15": "Declaration of Malacca as a Historical City", + "2001-04-16": "Declaration of Malacca as a Historical City [In lieu]", + "2001-04-26": "Birthday of the Sultan of Terengganu", + "2001-05-01": "Labour Day", + "2001-05-07": "Hari Hol of Pahang; Vesak Day", + "2001-05-17": "Birthday of The Raja of Perlis", + "2001-05-30": "Pesta Kaamatan", + "2001-05-31": "Pesta Kaamatan (Second day)", + "2001-06-01": "Gawai Dayak", + "2001-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", + "2001-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2001-06-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2001-07-14": "Birthday of the Governor of Penang", + "2001-08-31": "National Day", + "2001-09-02": "National Day [In lieu]", + "2001-10-06": "Birthday of the Governor of Sabah", + "2001-10-12": "Birthday of the Governor of Malacca", + "2001-10-13": "Birthday of the Governor of Sarawak", + "2001-10-15": "Isra and Mi'raj", + "2001-10-24": "Birthday of the Sultan of Pahang", + "2001-11-14": "Deepavali", + "2001-11-17": "Beginning of Ramadan", + "2001-11-27": "Birthday of the Sultan of Perak", + "2001-12-03": "Nuzul Al-Quran Day", + "2001-12-11": "Birthday of The Sultan of Selangor", + "2001-12-17": "Hari Raya Puasa", + "2001-12-18": "Second day of Hari Raya Puasa", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-02-01": "Federal Territory Day", + "2002-02-12": "Chinese New Year", + "2002-02-13": "Chinese New Year Holiday", + "2002-02-22": "Arafat Day", + "2002-02-23": "Hari Raya Haji", + "2002-02-24": "Hari Raya Haji", + "2002-02-25": "Hari Raya Haji [In lieu]", + "2002-02-27": "Thaipusam", + "2002-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2002-03-15": "Awal Muharram (Hijri New Year)", + "2002-03-29": "Good Friday", + "2002-04-15": "Declaration of Malacca as a Historical City", + "2002-04-26": "Birthday of the Sultan of Terengganu", + "2002-05-01": "Labour Day", + "2002-05-07": "Hari Hol of Pahang", + "2002-05-17": "Birthday of The Raja of Perlis", + "2002-05-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2002-05-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2002-05-27": "Vesak Day", + "2002-05-30": "Pesta Kaamatan", + "2002-05-31": "Pesta Kaamatan (Second day)", + "2002-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", + "2002-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]; Gawai Dayak (Second day)", + "2002-06-03": "Gawai Dayak (Second day) [In lieu]", + "2002-07-13": "Birthday of the Governor of Penang", + "2002-08-31": "National Day", + "2002-09-01": "National Day [In lieu]", + "2002-10-04": "Isra and Mi'raj", + "2002-10-05": "Birthday of the Governor of Sabah", + "2002-10-06": "Isra and Mi'raj [In lieu]", + "2002-10-11": "Birthday of the Governor of Malacca", + "2002-10-12": "Birthday of the Governor of Sarawak", + "2002-10-24": "Birthday of the Sultan of Pahang", + "2002-11-03": "Deepavali", + "2002-11-04": "Deepavali [In lieu]", + "2002-11-06": "Beginning of Ramadan", + "2002-11-22": "Nuzul Al-Quran Day", + "2002-11-27": "Birthday of the Sultan of Perak", + "2002-12-06": "Hari Raya Puasa", + "2002-12-07": "Second day of Hari Raya Puasa", + "2002-12-08": "Hari Raya Puasa [In lieu]; Second day of Hari Raya Puasa [In lieu]", + "2002-12-11": "Birthday of The Sultan of Selangor", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-02-01": "Chinese New Year; Federal Territory Day", + "2003-02-02": "Chinese New Year Holiday", + "2003-02-03": "Chinese New Year Holiday [In lieu]; Chinese New Year [In lieu]", + "2003-02-11": "Arafat Day", + "2003-02-12": "Hari Raya Haji", + "2003-02-13": "Hari Raya Haji", + "2003-02-16": "Thaipusam", + "2003-02-17": "Thaipusam [In lieu]", + "2003-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2003-03-05": "Awal Muharram (Hijri New Year)", + "2003-04-15": "Declaration of Malacca as a Historical City", + "2003-04-18": "Good Friday", + "2003-04-26": "Birthday of the Sultan of Terengganu", + "2003-04-27": "Birthday of the Sultan of Terengganu [In lieu]", + "2003-05-01": "Labour Day", + "2003-05-07": "Hari Hol of Pahang", + "2003-05-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2003-05-15": "Vesak Day", + "2003-05-17": "Birthday of The Raja of Perlis", + "2003-05-30": "Pesta Kaamatan", + "2003-05-31": "Pesta Kaamatan (Second day)", + "2003-06-01": "Gawai Dayak", + "2003-06-02": "Gawai Dayak (Second day)", + "2003-06-03": "Gawai Dayak [In lieu]", + "2003-06-07": "Birthday of SPB Yang di-Pertuan Agong", + "2003-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2003-07-12": "Birthday of the Governor of Penang", + "2003-08-31": "National Day", + "2003-09-01": "National Day [In lieu]", + "2003-09-24": "Isra and Mi'raj", + "2003-10-04": "Birthday of the Governor of Sabah", + "2003-10-10": "Birthday of the Governor of Malacca", + "2003-10-11": "Birthday of the Governor of Sarawak", + "2003-10-23": "Deepavali", + "2003-10-24": "Birthday of the Sultan of Pahang", + "2003-10-27": "Beginning of Ramadan", + "2003-11-12": "Nuzul Al-Quran Day", + "2003-11-26": "Hari Raya Puasa", + "2003-11-27": "Birthday of the Sultan of Perak; Second day of Hari Raya Puasa", + "2003-12-11": "Birthday of The Sultan of Selangor", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-01-07": "Thaipusam", + "2004-01-22": "Chinese New Year", + "2004-01-23": "Chinese New Year Holiday", + "2004-01-25": "Chinese New Year Holiday [In lieu]", + "2004-02-01": "Arafat Day; Federal Territory Day", + "2004-02-02": "Hari Raya Haji", + "2004-02-03": "Federal Territory Day [In lieu]; Hari Raya Haji", + "2004-02-22": "Awal Muharram (Hijri New Year)", + "2004-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2004-04-09": "Good Friday", + "2004-04-15": "Declaration of Malacca as a Historical City", + "2004-04-26": "Birthday of the Sultan of Terengganu", + "2004-05-01": "Labour Day", + "2004-05-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2004-05-03": "Vesak Day", + "2004-05-04": "Labour Day [In lieu]; Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2004-05-07": "Hari Hol of Pahang", + "2004-05-17": "Birthday of The Raja of Perlis", + "2004-05-30": "Pesta Kaamatan", + "2004-05-31": "Pesta Kaamatan (Second day)", + "2004-06-01": "Gawai Dayak", + "2004-06-02": "Gawai Dayak (Second day)", + "2004-06-05": "Birthday of SPB Yang di-Pertuan Agong", + "2004-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2004-07-10": "Birthday of the Governor of Penang", + "2004-08-31": "National Day", + "2004-09-12": "Isra and Mi'raj", + "2004-09-13": "Isra and Mi'raj [In lieu]", + "2004-10-02": "Birthday of the Governor of Sabah", + "2004-10-08": "Birthday of the Governor of Malacca", + "2004-10-09": "Birthday of the Governor of Sarawak", + "2004-10-16": "Beginning of Ramadan", + "2004-10-24": "Birthday of the Sultan of Pahang", + "2004-10-25": "Birthday of the Sultan of Pahang [In lieu]", + "2004-11-01": "Nuzul Al-Quran Day", + "2004-11-11": "Deepavali", + "2004-11-14": "Hari Raya Puasa", + "2004-11-15": "Second day of Hari Raya Puasa", + "2004-11-16": "Hari Raya Puasa [In lieu]", + "2004-11-27": "Birthday of the Sultan of Perak", + "2004-12-11": "Birthday of The Sultan of Selangor", + "2004-12-25": "Christmas Day", + "2004-12-26": "Christmas Day [In lieu]", + "2005-01-01": "New Year's Day", + "2005-01-20": "Arafat Day", + "2005-01-21": "Hari Raya Haji", + "2005-01-22": "Hari Raya Haji", + "2005-01-23": "Hari Raya Haji [In lieu]", + "2005-02-01": "Federal Territory Day", + "2005-02-09": "Chinese New Year", + "2005-02-10": "Awal Muharram (Hijri New Year); Chinese New Year Holiday", + "2005-02-23": "Thaipusam", + "2005-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2005-03-25": "Good Friday", + "2005-04-15": "Declaration of Malacca as a Historical City", + "2005-04-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2005-04-26": "Birthday of the Sultan of Terengganu", + "2005-05-01": "Labour Day", + "2005-05-02": "Labour Day [In lieu]", + "2005-05-07": "Hari Hol of Pahang", + "2005-05-17": "Birthday of The Raja of Perlis", + "2005-05-22": "Vesak Day", + "2005-05-23": "Vesak Day [In lieu]", + "2005-05-30": "Pesta Kaamatan", + "2005-05-31": "Pesta Kaamatan (Second day)", + "2005-06-01": "Gawai Dayak", + "2005-06-02": "Gawai Dayak (Second day)", + "2005-06-04": "Birthday of SPB Yang di-Pertuan Agong", + "2005-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2005-07-09": "Birthday of the Governor of Penang", + "2005-08-31": "National Day", + "2005-09-01": "Isra and Mi'raj", + "2005-10-01": "Birthday of the Governor of Sabah", + "2005-10-05": "Beginning of Ramadan", + "2005-10-08": "Birthday of the Governor of Sarawak", + "2005-10-14": "Birthday of the Governor of Malacca", + "2005-10-21": "Nuzul Al-Quran Day", + "2005-10-24": "Birthday of the Sultan of Pahang", + "2005-11-01": "Deepavali", + "2005-11-03": "Hari Raya Puasa", + "2005-11-04": "Second day of Hari Raya Puasa", + "2005-11-06": "Second day of Hari Raya Puasa [In lieu]", + "2005-11-27": "Birthday of the Sultan of Perak", + "2005-12-11": "Birthday of The Sultan of Selangor", + "2005-12-12": "Birthday of The Sultan of Selangor [In lieu]", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day [In lieu]", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day [In lieu]", + "2006-01-09": "Arafat Day", + "2006-01-10": "Hari Raya Haji", + "2006-01-11": "Hari Raya Haji", + "2006-01-29": "Chinese New Year", + "2006-01-30": "Chinese New Year Holiday", + "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year [In lieu]", + "2006-02-01": "Federal Territory Day", + "2006-02-13": "Thaipusam", + "2006-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2006-03-05": "Anniversary of the Installation of the Sultan of Terengganu [In lieu]", + "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2006-04-14": "Good Friday", + "2006-04-15": "Declaration of Malacca as a Historical City", + "2006-04-26": "Birthday of the Sultan of Terengganu", + "2006-05-01": "Labour Day", + "2006-05-07": "Hari Hol of Pahang", + "2006-05-08": "Hari Hol of Pahang [In lieu]", + "2006-05-12": "Vesak Day", + "2006-05-14": "Vesak Day [In lieu]", + "2006-05-17": "Birthday of The Raja of Perlis", + "2006-05-30": "Pesta Kaamatan", + "2006-05-31": "Pesta Kaamatan (Second day)", + "2006-06-01": "Gawai Dayak", + "2006-06-02": "Gawai Dayak (Second day)", + "2006-06-03": "Birthday of SPB Yang di-Pertuan Agong", + "2006-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2006-07-08": "Birthday of the Governor of Penang", + "2006-08-22": "Isra and Mi'raj", + "2006-08-31": "National Day", + "2006-09-24": "Beginning of Ramadan", + "2006-09-25": "Beginning of Ramadan [In lieu]", + "2006-10-07": "Birthday of the Governor of Sabah", + "2006-10-10": "Nuzul Al-Quran Day", + "2006-10-13": "Birthday of the Governor of Malacca", + "2006-10-14": "Birthday of the Governor of Sarawak", + "2006-10-21": "Deepavali", + "2006-10-22": "Deepavali [In lieu]", + "2006-10-24": "Birthday of the Sultan of Pahang; Hari Raya Puasa", + "2006-10-25": "Second day of Hari Raya Puasa", + "2006-11-27": "Birthday of the Sultan of Perak", + "2006-12-11": "Birthday of The Sultan of Selangor", + "2006-12-25": "Christmas Day", + "2006-12-30": "Arafat Day", + "2006-12-31": "Hari Raya Haji", + "2007-01-01": "Hari Raya Haji; New Year's Day", + "2007-01-02": "Arafat Day [In lieu]; Hari Raya Haji [In lieu]", + "2007-01-20": "Awal Muharram (Hijri New Year)", + "2007-02-01": "Federal Territory Day", + "2007-02-18": "Chinese New Year", + "2007-02-19": "Chinese New Year Holiday", + "2007-02-20": "Chinese New Year [In lieu]", + "2007-03-04": "Anniversary of the Installation of the Sultan of Terengganu; Thaipusam", + "2007-03-05": "Thaipusam [In lieu]", + "2007-03-31": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2007-04-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2007-04-06": "Good Friday", + "2007-04-15": "Declaration of Malacca as a Historical City", + "2007-04-16": "Declaration of Malacca as a Historical City [In lieu]", + "2007-04-26": "Birthday of the Sultan of Terengganu", + "2007-05-01": "Labour Day; Vesak Day", + "2007-05-07": "Hari Hol of Pahang", + "2007-05-17": "Birthday of The Raja of Perlis", + "2007-05-30": "Pesta Kaamatan", + "2007-05-31": "Pesta Kaamatan (Second day)", + "2007-06-01": "Gawai Dayak", + "2007-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", + "2007-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2007-07-14": "Birthday of the Governor of Penang", + "2007-08-11": "Isra and Mi'raj", + "2007-08-31": "National Day", + "2007-09-02": "National Day [In lieu]", + "2007-09-13": "Beginning of Ramadan", + "2007-09-29": "Nuzul Al-Quran Day", + "2007-09-30": "Nuzul Al-Quran Day [In lieu]", + "2007-10-06": "Birthday of the Governor of Sabah", + "2007-10-12": "Birthday of the Governor of Malacca", + "2007-10-13": "Birthday of the Governor of Sarawak; Hari Raya Puasa", + "2007-10-14": "Second day of Hari Raya Puasa", + "2007-10-15": "Hari Raya Puasa [In lieu]; Second day of Hari Raya Puasa [In lieu]", + "2007-10-24": "Birthday of the Sultan of Pahang", + "2007-11-08": "Deepavali", + "2007-11-27": "Birthday of the Sultan of Perak", + "2007-12-11": "Birthday of The Sultan of Selangor", + "2007-12-19": "Arafat Day", + "2007-12-20": "Hari Raya Haji", + "2007-12-21": "Hari Raya Haji", + "2007-12-23": "Hari Raya Haji [In lieu]", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-01-10": "Awal Muharram (Hijri New Year)", + "2008-02-01": "Federal Territory Day", + "2008-02-07": "Chinese New Year", + "2008-02-08": "Chinese New Year Holiday", + "2008-02-10": "Chinese New Year Holiday [In lieu]", + "2008-02-22": "Thaipusam", + "2008-02-24": "Thaipusam [In lieu]", + "2008-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2008-03-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2008-03-21": "Good Friday", + "2008-04-15": "Declaration of Malacca as a Historical City", + "2008-04-26": "Birthday of the Sultan of Terengganu", + "2008-04-27": "Birthday of the Sultan of Terengganu [In lieu]", + "2008-05-01": "Labour Day", + "2008-05-07": "Hari Hol of Pahang", + "2008-05-17": "Birthday of The Raja of Perlis", + "2008-05-19": "Vesak Day", + "2008-05-30": "Pesta Kaamatan", + "2008-05-31": "Pesta Kaamatan (Second day)", + "2008-06-01": "Gawai Dayak", + "2008-06-02": "Gawai Dayak (Second day)", + "2008-06-03": "Gawai Dayak [In lieu]", + "2008-06-07": "Birthday of SPB Yang di-Pertuan Agong", + "2008-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2008-07-12": "Birthday of the Governor of Penang", + "2008-07-31": "Isra and Mi'raj", + "2008-08-31": "National Day", + "2008-09-01": "National Day [In lieu]", + "2008-09-02": "Beginning of Ramadan", + "2008-09-18": "Nuzul Al-Quran Day", + "2008-10-01": "Hari Raya Puasa", + "2008-10-02": "Second day of Hari Raya Puasa", + "2008-10-04": "Birthday of the Governor of Sabah", + "2008-10-10": "Birthday of the Governor of Malacca", + "2008-10-11": "Birthday of the Governor of Sarawak", + "2008-10-24": "Birthday of the Sultan of Pahang", + "2008-10-27": "Deepavali", + "2008-11-27": "Birthday of the Sultan of Perak", + "2008-12-08": "Arafat Day", + "2008-12-09": "Hari Raya Haji", + "2008-12-10": "Hari Raya Haji", + "2008-12-11": "Birthday of The Sultan of Selangor", + "2008-12-25": "Christmas Day", + "2008-12-29": "Awal Muharram (Hijri New Year)", + "2009-01-01": "New Year's Day", + "2009-01-11": "Thaipusam", + "2009-01-12": "Thaipusam [In lieu]", + "2009-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2009-01-26": "Chinese New Year", + "2009-01-27": "Chinese New Year Holiday", + "2009-02-01": "Federal Territory Day", + "2009-02-02": "Federal Territory Day [In lieu]", + "2009-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2009-03-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2009-04-10": "Good Friday", + "2009-04-15": "Declaration of Malacca as a Historical City", + "2009-04-26": "Birthday of the Sultan of Terengganu", + "2009-05-01": "Labour Day", + "2009-05-03": "Labour Day [In lieu]", + "2009-05-07": "Hari Hol of Pahang", + "2009-05-09": "Vesak Day", + "2009-05-10": "Vesak Day [In lieu]", + "2009-05-17": "Birthday of The Raja of Perlis", + "2009-05-18": "Birthday of The Raja of Perlis [In lieu]", + "2009-05-30": "Pesta Kaamatan", + "2009-05-31": "Pesta Kaamatan (Second day)", + "2009-06-01": "Gawai Dayak", + "2009-06-02": "Gawai Dayak (Second day)", + "2009-06-06": "Birthday of SPB Yang di-Pertuan Agong", + "2009-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2009-07-07": "George Town Heritage Day", + "2009-07-11": "Birthday of the Governor of Penang", + "2009-07-20": "Isra and Mi'raj", + "2009-08-22": "Beginning of Ramadan", + "2009-08-31": "National Day", + "2009-09-07": "Nuzul Al-Quran Day", + "2009-09-20": "Hari Raya Puasa", + "2009-09-21": "Second day of Hari Raya Puasa", + "2009-09-22": "Hari Raya Puasa [In lieu]", + "2009-10-03": "Birthday of the Governor of Sabah", + "2009-10-09": "Birthday of the Governor of Malacca", + "2009-10-10": "Birthday of the Governor of Sarawak", + "2009-10-17": "Deepavali", + "2009-10-18": "Deepavali [In lieu]", + "2009-10-24": "Birthday of the Sultan of Pahang", + "2009-11-27": "Arafat Day; Birthday of the Sultan of Perak", + "2009-11-28": "Hari Raya Haji", + "2009-11-29": "Hari Raya Haji", + "2009-11-30": "Hari Raya Haji [In lieu]", + "2009-12-11": "Birthday of The Sultan of Selangor", + "2009-12-18": "Awal Muharram (Hijri New Year)", + "2009-12-25": "Christmas Day", + "2009-12-27": "Christmas Day [In lieu]", + "2010-01-01": "New Year's Day", + "2010-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2010-02-01": "Federal Territory Day", + "2010-02-14": "Chinese New Year", + "2010-02-15": "Chinese New Year Holiday", + "2010-02-16": "Chinese New Year [In lieu]", + "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2010-02-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2010-03-01": "Thaipusam", + "2010-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2010-04-02": "Good Friday", + "2010-04-15": "Declaration of Malacca as a Historical City", + "2010-04-26": "Birthday of the Sultan of Terengganu", + "2010-05-01": "Labour Day", + "2010-05-02": "Labour Day [In lieu]", + "2010-05-07": "Hari Hol of Pahang", + "2010-05-17": "Birthday of The Raja of Perlis", + "2010-05-28": "Vesak Day", + "2010-05-30": "Pesta Kaamatan; Vesak Day [In lieu]", + "2010-05-31": "Pesta Kaamatan (Second day)", + "2010-06-01": "Gawai Dayak", + "2010-06-02": "Gawai Dayak (Second day)", + "2010-06-05": "Birthday of SPB Yang di-Pertuan Agong", + "2010-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2010-07-07": "George Town Heritage Day", + "2010-07-09": "Isra and Mi'raj", + "2010-07-10": "Birthday of the Governor of Penang", + "2010-07-11": "Isra and Mi'raj [In lieu]", + "2010-08-11": "Beginning of Ramadan", + "2010-08-27": "Nuzul Al-Quran Day", + "2010-08-31": "National Day", + "2010-09-10": "Hari Raya Puasa", + "2010-09-11": "Second day of Hari Raya Puasa", + "2010-09-12": "Hari Raya Puasa [In lieu]; Second day of Hari Raya Puasa [In lieu]", + "2010-09-16": "Malaysia Day", + "2010-10-02": "Birthday of the Governor of Sabah", + "2010-10-08": "Birthday of the Governor of Malacca", + "2010-10-09": "Birthday of the Governor of Sarawak", + "2010-10-24": "Birthday of the Sultan of Pahang", + "2010-10-25": "Birthday of the Sultan of Pahang [In lieu]", + "2010-11-05": "Deepavali", + "2010-11-07": "Deepavali [In lieu]", + "2010-11-11": "Birthday of the Sultan of Kelantan", + "2010-11-12": "Birthday of the Sultan of Kelantan", + "2010-11-16": "Arafat Day", + "2010-11-17": "Hari Raya Haji", + "2010-11-18": "Hari Raya Haji", + "2010-11-27": "Birthday of the Sultan of Perak", + "2010-12-08": "Awal Muharram (Hijri New Year)", + "2010-12-11": "Birthday of The Sultan of Selangor", + "2010-12-25": "Christmas Day", + "2010-12-26": "Christmas Day [In lieu]", + "2011-01-01": "New Year's Day", + "2011-01-12": "Hari Hol of Sultan Iskandar of Johor", + "2011-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2011-02-01": "Federal Territory Day", + "2011-02-03": "Chinese New Year", + "2011-02-04": "Chinese New Year Holiday", + "2011-02-06": "Chinese New Year Holiday [In lieu]", + "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2011-02-18": "Thaipusam", + "2011-02-20": "Thaipusam [In lieu]", + "2011-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2011-04-15": "Declaration of Malacca as a Historical City", + "2011-04-22": "Good Friday", + "2011-04-26": "Birthday of the Sultan of Terengganu", + "2011-05-01": "Labour Day", + "2011-05-02": "Labour Day [In lieu]", + "2011-05-07": "Hari Hol of Pahang", + "2011-05-17": "Birthday of The Raja of Perlis; Vesak Day", + "2011-05-30": "Pesta Kaamatan", + "2011-05-31": "Pesta Kaamatan (Second day)", + "2011-06-01": "Gawai Dayak", + "2011-06-02": "Gawai Dayak (Second day)", + "2011-06-04": "Birthday of SPB Yang di-Pertuan Agong", + "2011-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2011-06-29": "Isra and Mi'raj", + "2011-07-07": "George Town Heritage Day", + "2011-07-09": "Birthday of the Governor of Penang", + "2011-08-01": "Beginning of Ramadan", + "2011-08-17": "Nuzul Al-Quran Day", + "2011-08-31": "Hari Raya Puasa; National Day", + "2011-09-01": "Second day of Hari Raya Puasa", + "2011-09-16": "Malaysia Day", + "2011-09-18": "Malaysia Day [In lieu]", + "2011-10-01": "Birthday of the Governor of Sabah", + "2011-10-08": "Birthday of the Governor of Sarawak", + "2011-10-14": "Birthday of the Governor of Malacca", + "2011-10-24": "Birthday of the Sultan of Pahang", + "2011-10-26": "Deepavali", + "2011-11-06": "Arafat Day", + "2011-11-07": "Hari Raya Haji", + "2011-11-08": "Hari Raya Haji", + "2011-11-11": "Birthday of the Sultan of Kelantan", + "2011-11-12": "Birthday of the Sultan of Kelantan", + "2011-11-27": "Awal Muharram (Hijri New Year); Birthday of the Sultan of Perak", + "2011-12-11": "Birthday of The Sultan of Selangor", + "2011-12-12": "Birthday of The Sultan of Selangor [In lieu]", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day [In lieu]", + "2012-01-01": "Hari Hol of Sultan Iskandar of Johor; New Year's Day", + "2012-01-02": "New Year's Day [In lieu]", + "2012-01-08": "Thaipusam", + "2012-01-09": "Thaipusam [In lieu]", + "2012-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2012-01-23": "Chinese New Year", + "2012-01-24": "Chinese New Year Holiday", + "2012-02-01": "Federal Territory Day", + "2012-02-05": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2012-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2012-04-06": "Good Friday", + "2012-04-15": "Declaration of Malacca as a Historical City", + "2012-04-16": "Declaration of Malacca as a Historical City [In lieu]", + "2012-04-26": "Birthday of the Sultan of Terengganu", + "2012-05-01": "Labour Day", + "2012-05-05": "Vesak Day", + "2012-05-06": "Vesak Day [In lieu]", + "2012-05-07": "Hari Hol of Pahang", + "2012-05-17": "Birthday of The Raja of Perlis", + "2012-05-30": "Pesta Kaamatan", + "2012-05-31": "Pesta Kaamatan (Second day)", + "2012-06-01": "Gawai Dayak", + "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", + "2012-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2012-06-17": "Isra and Mi'raj", + "2012-06-18": "Isra and Mi'raj [In lieu]", + "2012-07-07": "George Town Heritage Day", + "2012-07-14": "Birthday of the Governor of Penang", + "2012-07-20": "Beginning of Ramadan", + "2012-07-22": "Beginning of Ramadan [In lieu]", + "2012-08-05": "Nuzul Al-Quran Day", + "2012-08-06": "Nuzul Al-Quran Day [In lieu]", + "2012-08-19": "Hari Raya Puasa", + "2012-08-20": "Second day of Hari Raya Puasa", + "2012-08-21": "Hari Raya Puasa [In lieu]", + "2012-08-31": "National Day", + "2012-09-02": "National Day [In lieu]", + "2012-09-16": "Malaysia Day", + "2012-09-17": "Malaysia Day [In lieu]", + "2012-10-06": "Birthday of the Governor of Sabah", + "2012-10-12": "Birthday of the Governor of Malacca", + "2012-10-13": "Birthday of the Governor of Sarawak", + "2012-10-24": "Birthday of the Sultan of Pahang", + "2012-10-25": "Arafat Day", + "2012-10-26": "Hari Raya Haji", + "2012-10-27": "Hari Raya Haji", + "2012-10-28": "Hari Raya Haji [In lieu]", + "2012-11-11": "Birthday of the Sultan of Kelantan", + "2012-11-12": "Birthday of the Sultan of Kelantan", + "2012-11-13": "Deepavali", + "2012-11-15": "Awal Muharram (Hijri New Year)", + "2012-11-27": "Birthday of the Sultan of Perak", + "2012-12-11": "Birthday of The Sultan of Selangor", + "2012-12-20": "Hari Hol of Sultan Iskandar of Johor", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2013-01-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2013-02-01": "Federal Territory Day", + "2013-02-10": "Chinese New Year", + "2013-02-11": "Chinese New Year Holiday", + "2013-02-12": "Chinese New Year [In lieu]", + "2013-02-25": "Thaipusam", + "2013-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2013-03-29": "Good Friday", + "2013-04-15": "Declaration of Malacca as a Historical City", + "2013-04-26": "Birthday of the Sultan of Terengganu", + "2013-05-01": "Labour Day", + "2013-05-07": "Hari Hol of Pahang", + "2013-05-17": "Birthday of The Raja of Perlis", + "2013-05-24": "Vesak Day", + "2013-05-26": "Vesak Day [In lieu]", + "2013-05-30": "Pesta Kaamatan", + "2013-05-31": "Pesta Kaamatan (Second day)", + "2013-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", + "2013-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]; Gawai Dayak (Second day)", + "2013-06-03": "Gawai Dayak (Second day) [In lieu]", + "2013-06-06": "Isra and Mi'raj", + "2013-07-07": "George Town Heritage Day", + "2013-07-08": "George Town Heritage Day [In lieu]", + "2013-07-09": "Beginning of Ramadan", + "2013-07-13": "Birthday of the Governor of Penang", + "2013-07-25": "Nuzul Al-Quran Day", + "2013-08-08": "Hari Raya Puasa", + "2013-08-09": "Second day of Hari Raya Puasa", + "2013-08-11": "Second day of Hari Raya Puasa [In lieu]", + "2013-08-31": "National Day", + "2013-09-01": "National Day [In lieu]", + "2013-09-16": "Malaysia Day", + "2013-10-05": "Birthday of the Governor of Sabah", + "2013-10-11": "Birthday of the Governor of Malacca", + "2013-10-12": "Birthday of the Governor of Sarawak", + "2013-10-14": "Arafat Day", + "2013-10-15": "Hari Raya Haji", + "2013-10-16": "Hari Raya Haji", + "2013-10-24": "Birthday of the Sultan of Pahang", + "2013-11-02": "Deepavali", + "2013-11-03": "Deepavali [In lieu]", + "2013-11-05": "Awal Muharram (Hijri New Year)", + "2013-11-11": "Birthday of the Sultan of Kelantan", + "2013-11-12": "Birthday of the Sultan of Kelantan", + "2013-11-27": "Birthday of the Sultan of Perak", + "2013-12-10": "Hari Hol of Sultan Iskandar of Johor", + "2013-12-11": "Birthday of The Sultan of Selangor", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-14": "Birthday of the Sultan of Negeri Sembilan; Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2014-01-31": "Chinese New Year", + "2014-02-01": "Chinese New Year Holiday; Federal Territory Day", + "2014-02-02": "Chinese New Year Holiday [In lieu]; Chinese New Year [In lieu]", + "2014-02-14": "Thaipusam", + "2014-02-16": "Thaipusam [In lieu]", + "2014-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2014-04-15": "Declaration of Malacca as a Historical City", + "2014-04-18": "Good Friday", + "2014-04-26": "Birthday of the Sultan of Terengganu", + "2014-04-27": "Birthday of the Sultan of Terengganu [In lieu]", + "2014-05-01": "Labour Day", + "2014-05-07": "Hari Hol of Pahang", + "2014-05-13": "Vesak Day", + "2014-05-17": "Birthday of The Raja of Perlis", + "2014-05-27": "Isra and Mi'raj", + "2014-05-30": "Pesta Kaamatan", + "2014-05-31": "Pesta Kaamatan (Second day)", + "2014-06-01": "Gawai Dayak", + "2014-06-02": "Gawai Dayak (Second day)", + "2014-06-03": "Gawai Dayak [In lieu]", + "2014-06-07": "Birthday of SPB Yang di-Pertuan Agong", + "2014-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2014-06-29": "Beginning of Ramadan", + "2014-06-30": "Beginning of Ramadan [In lieu]", + "2014-07-07": "George Town Heritage Day", + "2014-07-12": "Birthday of the Governor of Penang", + "2014-07-15": "Nuzul Al-Quran Day", + "2014-07-28": "Hari Raya Puasa", + "2014-07-29": "Second day of Hari Raya Puasa", + "2014-08-31": "National Day", + "2014-09-01": "National Day [In lieu]", + "2014-09-16": "Malaysia Day", + "2014-10-04": "Arafat Day; Birthday of the Governor of Sabah", + "2014-10-05": "Hari Raya Haji", + "2014-10-06": "Hari Raya Haji; Hari Raya Haji [In lieu]", + "2014-10-07": "Arafat Day [In lieu]; Hari Raya Haji [In lieu]", + "2014-10-10": "Birthday of the Governor of Malacca", + "2014-10-11": "Birthday of the Governor of Sarawak", + "2014-10-22": "Deepavali", + "2014-10-24": "Birthday of the Sultan of Pahang", + "2014-10-25": "Awal Muharram (Hijri New Year)", + "2014-11-11": "Birthday of the Sultan of Kelantan", + "2014-11-12": "Birthday of the Sultan of Kelantan", + "2014-11-27": "Birthday of the Sultan of Perak", + "2014-11-29": "Hari Hol of Sultan Iskandar of Johor", + "2014-12-11": "Birthday of The Sultan of Selangor", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-01-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2015-01-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2015-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2015-02-01": "Federal Territory Day", + "2015-02-02": "Federal Territory Day [In lieu]", + "2015-02-19": "Chinese New Year", + "2015-02-20": "Chinese New Year Holiday", + "2015-02-22": "Chinese New Year Holiday [In lieu]", + "2015-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2015-03-05": "Thaipusam", + "2015-03-23": "Birthday of the Sultan of Johor", + "2015-04-03": "Good Friday", + "2015-04-15": "Declaration of Malacca as a Historical City", + "2015-04-26": "Birthday of the Sultan of Terengganu", + "2015-05-01": "Labour Day", + "2015-05-03": "Vesak Day", + "2015-05-04": "Labour Day [In lieu]; Vesak Day [In lieu]", + "2015-05-07": "Hari Hol of Pahang", + "2015-05-16": "Isra and Mi'raj", + "2015-05-17": "Birthday of The Raja of Perlis", + "2015-05-18": "Birthday of The Raja of Perlis [In lieu]", + "2015-05-30": "Pesta Kaamatan", + "2015-05-31": "Pesta Kaamatan (Second day)", + "2015-06-01": "Gawai Dayak", + "2015-06-02": "Gawai Dayak (Second day)", + "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", + "2015-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2015-06-18": "Beginning of Ramadan", + "2015-07-04": "Nuzul Al-Quran Day", + "2015-07-05": "Nuzul Al-Quran Day [In lieu]", + "2015-07-07": "George Town Heritage Day", + "2015-07-11": "Birthday of the Governor of Penang", + "2015-07-17": "Hari Raya Puasa", + "2015-07-18": "Second day of Hari Raya Puasa", + "2015-07-19": "Hari Raya Puasa [In lieu]; Second day of Hari Raya Puasa [In lieu]", + "2015-08-31": "National Day", + "2015-09-16": "Malaysia Day", + "2015-09-23": "Arafat Day", + "2015-09-24": "Hari Raya Haji", + "2015-09-25": "Hari Raya Haji", + "2015-09-27": "Hari Raya Haji [In lieu]", + "2015-10-03": "Birthday of the Governor of Sabah", + "2015-10-09": "Birthday of the Governor of Malacca", + "2015-10-10": "Birthday of the Governor of Sarawak", + "2015-10-14": "Awal Muharram (Hijri New Year)", + "2015-10-24": "Birthday of the Sultan of Pahang", + "2015-11-10": "Deepavali", + "2015-11-11": "Birthday of the Sultan of Kelantan", + "2015-11-12": "Birthday of the Sultan of Kelantan", + "2015-11-19": "Hari Hol of Sultan Iskandar of Johor", + "2015-11-27": "Birthday of the Sultan of Perak", + "2015-12-11": "Birthday of The Sultan of Selangor", + "2015-12-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2015-12-25": "Christmas Day", + "2015-12-27": "Christmas Day [In lieu]", + "2016-01-01": "New Year's Day", + "2016-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2016-02-01": "Federal Territory Day", + "2016-02-08": "Chinese New Year", + "2016-02-09": "Chinese New Year Holiday", + "2016-02-23": "Thaipusam", + "2016-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2016-03-23": "Birthday of the Sultan of Johor", + "2016-03-25": "Good Friday", + "2016-04-15": "Declaration of Malacca as a Historical City", + "2016-04-26": "Birthday of the Sultan of Terengganu", + "2016-05-01": "Labour Day", + "2016-05-02": "Labour Day [In lieu]", + "2016-05-05": "Isra and Mi'raj", + "2016-05-07": "Hari Hol of Pahang", + "2016-05-17": "Birthday of The Raja of Perlis", + "2016-05-21": "Vesak Day", + "2016-05-22": "Vesak Day [In lieu]", + "2016-05-30": "Pesta Kaamatan", + "2016-05-31": "Pesta Kaamatan (Second day)", + "2016-06-01": "Gawai Dayak", + "2016-06-02": "Gawai Dayak (Second day)", + "2016-06-04": "Birthday of SPB Yang di-Pertuan Agong", + "2016-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2016-06-07": "Beginning of Ramadan", + "2016-06-22": "Nuzul Al-Quran Day", + "2016-07-06": "Hari Raya Puasa", + "2016-07-07": "George Town Heritage Day; Second day of Hari Raya Puasa", + "2016-07-09": "Birthday of the Governor of Penang", + "2016-08-31": "National Day", + "2016-09-11": "Arafat Day", + "2016-09-12": "Hari Raya Haji", + "2016-09-13": "Hari Raya Haji", + "2016-09-16": "Malaysia Day", + "2016-09-18": "Malaysia Day [In lieu]", + "2016-10-01": "Birthday of the Governor of Sabah", + "2016-10-02": "Awal Muharram (Hijri New Year)", + "2016-10-08": "Birthday of the Governor of Sarawak", + "2016-10-14": "Birthday of the Governor of Malacca", + "2016-10-24": "Birthday of the Sultan of Pahang", + "2016-10-29": "Deepavali", + "2016-10-30": "Deepavali [In lieu]", + "2016-11-07": "Hari Hol of Sultan Iskandar of Johor", + "2016-11-11": "Birthday of the Sultan of Kelantan", + "2016-11-12": "Birthday of the Sultan of Kelantan", + "2016-11-27": "Birthday of the Sultan of Perak", + "2016-12-11": "Birthday of The Sultan of Selangor", + "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2016-12-13": "Birthday of The Sultan of Selangor [In lieu]", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day [In lieu]", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day [In lieu]", + "2017-01-13": "Thaipusam", + "2017-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2017-01-15": "Thaipusam [In lieu]", + "2017-01-28": "Chinese New Year", + "2017-01-29": "Chinese New Year Holiday", + "2017-01-30": "Chinese New Year Holiday [In lieu]; Chinese New Year [In lieu]", + "2017-02-01": "Federal Territory Day", + "2017-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2017-03-05": "Anniversary of the Installation of the Sultan of Terengganu [In lieu]", + "2017-03-23": "Birthday of the Sultan of Johor", + "2017-04-14": "Good Friday", + "2017-04-15": "Declaration of Malacca as a Historical City", + "2017-04-24": "Isra and Mi'raj", + "2017-04-26": "Birthday of the Sultan of Terengganu", + "2017-05-01": "Labour Day", + "2017-05-07": "Hari Hol of Pahang", + "2017-05-08": "Hari Hol of Pahang [In lieu]", + "2017-05-10": "Vesak Day", + "2017-05-17": "Birthday of The Raja of Perlis", + "2017-05-27": "Beginning of Ramadan", + "2017-05-30": "Pesta Kaamatan", + "2017-05-31": "Pesta Kaamatan (Second day)", + "2017-06-01": "Gawai Dayak", + "2017-06-02": "Gawai Dayak (Second day)", + "2017-06-03": "Birthday of SPB Yang di-Pertuan Agong", + "2017-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2017-06-12": "Nuzul Al-Quran Day", + "2017-06-25": "Hari Raya Puasa", + "2017-06-26": "Second day of Hari Raya Puasa", + "2017-06-27": "Hari Raya Puasa [In lieu]", + "2017-07-07": "George Town Heritage Day", + "2017-07-08": "Birthday of the Governor of Penang", + "2017-07-22": "Sarawak Day", + "2017-08-31": "Arafat Day; National Day", + "2017-09-01": "Hari Raya Haji", + "2017-09-02": "Hari Raya Haji", + "2017-09-03": "Hari Raya Haji [In lieu]", + "2017-09-16": "Malaysia Day", + "2017-09-17": "Malaysia Day [In lieu]", + "2017-09-22": "Awal Muharram (Hijri New Year)", + "2017-10-07": "Birthday of the Governor of Sabah", + "2017-10-13": "Birthday of the Governor of Malacca", + "2017-10-14": "Birthday of the Governor of Sarawak", + "2017-10-18": "Deepavali", + "2017-10-24": "Birthday of the Sultan of Pahang", + "2017-10-27": "Hari Hol of Sultan Iskandar of Johor", + "2017-11-11": "Birthday of the Sultan of Kelantan", + "2017-11-12": "Birthday of the Sultan of Kelantan", + "2017-11-27": "Birthday of the Sultan of Perak", + "2017-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2017-12-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2017-12-11": "Birthday of The Sultan of Selangor", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2018-01-15": "Birthday of the Sultan of Negeri Sembilan [In lieu]", + "2018-01-31": "Thaipusam", + "2018-02-01": "Federal Territory Day", + "2018-02-16": "Chinese New Year", + "2018-02-17": "Chinese New Year Holiday", + "2018-02-18": "Chinese New Year Holiday [In lieu]; Chinese New Year [In lieu]", + "2018-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2018-03-23": "Birthday of the Sultan of Johor", + "2018-03-30": "Good Friday", + "2018-04-14": "Isra and Mi'raj", + "2018-04-15": "Declaration of Malacca as a Historical City", + "2018-04-16": "Declaration of Malacca as a Historical City [In lieu]", + "2018-04-26": "Birthday of the Sultan of Terengganu", + "2018-05-01": "Labour Day", + "2018-05-07": "Hari Hol of Pahang", + "2018-05-09": "Malaysia General Election Holiday", + "2018-05-17": "Beginning of Ramadan", + "2018-05-29": "Vesak Day", + "2018-05-30": "Pesta Kaamatan", + "2018-05-31": "Pesta Kaamatan (Second day)", + "2018-06-01": "Gawai Dayak", + "2018-06-02": "Gawai Dayak (Second day); Nuzul Al-Quran Day", + "2018-06-03": "Nuzul Al-Quran Day [In lieu]", + "2018-06-15": "Hari Raya Puasa", + "2018-06-16": "Second day of Hari Raya Puasa", + "2018-06-17": "Hari Raya Puasa [In lieu]; Second day of Hari Raya Puasa [In lieu]", + "2018-07-07": "George Town Heritage Day", + "2018-07-14": "Birthday of the Governor of Penang", + "2018-07-17": "Birthday of The Raja of Perlis", + "2018-07-22": "Sarawak Day", + "2018-07-23": "Sarawak Day [In lieu]", + "2018-08-21": "Arafat Day", + "2018-08-22": "Hari Raya Haji", + "2018-08-23": "Hari Raya Haji", + "2018-08-31": "National Day", + "2018-09-02": "National Day [In lieu]", + "2018-09-09": "Birthday of SPB Yang di-Pertuan Agong", + "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2018-09-11": "Awal Muharram (Hijri New Year)", + "2018-09-16": "Malaysia Day", + "2018-09-17": "Malaysia Day [In lieu]", + "2018-10-06": "Birthday of the Governor of Sabah", + "2018-10-12": "Birthday of the Governor of Malacca", + "2018-10-13": "Birthday of the Governor of Sarawak", + "2018-10-15": "Hari Hol of Sultan Iskandar of Johor", + "2018-10-24": "Birthday of the Sultan of Pahang", + "2018-11-02": "Birthday of the Sultan of Perak", + "2018-11-06": "Deepavali", + "2018-11-11": "Birthday of the Sultan of Kelantan", + "2018-11-12": "Birthday of the Sultan of Kelantan", + "2018-11-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2018-12-11": "Birthday of The Sultan of Selangor", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2019-01-21": "Thaipusam", + "2019-02-01": "Federal Territory Day", + "2019-02-05": "Chinese New Year", + "2019-02-06": "Chinese New Year Holiday", + "2019-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2019-03-23": "Birthday of the Sultan of Johor", + "2019-04-03": "Isra and Mi'raj", + "2019-04-15": "Declaration of Malacca as a Historical City", + "2019-04-19": "Good Friday", + "2019-04-26": "Birthday of the Sultan of Terengganu", + "2019-05-01": "Labour Day", + "2019-05-06": "Beginning of Ramadan", + "2019-05-07": "Hari Hol of Pahang", + "2019-05-19": "Vesak Day", + "2019-05-20": "Vesak Day [In lieu]", + "2019-05-22": "Nuzul Al-Quran Day", + "2019-05-30": "Pesta Kaamatan", + "2019-05-31": "Pesta Kaamatan (Second day)", + "2019-06-01": "Gawai Dayak", + "2019-06-02": "Gawai Dayak (Second day)", + "2019-06-03": "Birthday of SPB Yang di-Pertuan Agong", + "2019-06-04": "Gawai Dayak (Second day) [In lieu]", + "2019-06-05": "Hari Raya Puasa", + "2019-06-06": "Second day of Hari Raya Puasa", + "2019-07-07": "George Town Heritage Day", + "2019-07-08": "George Town Heritage Day [In lieu]", + "2019-07-13": "Birthday of the Governor of Penang", + "2019-07-17": "Birthday of The Raja of Perlis", + "2019-07-22": "Sarawak Day", + "2019-07-30": "Birthday of the Sultan of Pahang; Installation of New King", + "2019-08-10": "Arafat Day", + "2019-08-11": "Hari Raya Haji", + "2019-08-12": "Hari Raya Haji; Hari Raya Haji [In lieu]", + "2019-08-13": "Arafat Day [In lieu]; Hari Raya Haji [In lieu]", + "2019-08-31": "National Day", + "2019-09-01": "Awal Muharram (Hijri New Year); National Day [In lieu]", + "2019-09-16": "Malaysia Day", + "2019-10-05": "Birthday of the Governor of Sabah; Hari Hol of Sultan Iskandar of Johor", + "2019-10-11": "Birthday of the Governor of Malacca", + "2019-10-12": "Birthday of the Governor of Sarawak", + "2019-10-27": "Deepavali", + "2019-10-28": "Deepavali [In lieu]", + "2019-11-01": "Birthday of the Sultan of Perak", + "2019-11-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2019-11-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2019-11-11": "Birthday of the Sultan of Kelantan", + "2019-11-12": "Birthday of the Sultan of Kelantan", + "2019-12-11": "Birthday of The Sultan of Selangor", + "2019-12-24": "Christmas Eve", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2020-01-25": "Chinese New Year", + "2020-01-26": "Chinese New Year Holiday", + "2020-01-27": "Chinese New Year Holiday [In lieu]; Chinese New Year [In lieu]", + "2020-02-01": "Federal Territory Day", + "2020-02-08": "Thaipusam", + "2020-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2020-03-22": "Isra and Mi'raj", + "2020-03-23": "Birthday of the Sultan of Johor; Isra and Mi'raj [In lieu]", + "2020-04-10": "Good Friday", + "2020-04-15": "Declaration of Malacca as a Historical City", + "2020-04-24": "Beginning of Ramadan", + "2020-04-26": "Beginning of Ramadan [In lieu]; Birthday of the Sultan of Terengganu", + "2020-05-01": "Labour Day", + "2020-05-03": "Labour Day [In lieu]", + "2020-05-07": "Hari Hol of Pahang; Vesak Day", + "2020-05-10": "Nuzul Al-Quran Day", + "2020-05-11": "Nuzul Al-Quran Day [In lieu]", + "2020-05-24": "Hari Raya Puasa", + "2020-05-25": "Second day of Hari Raya Puasa", + "2020-05-26": "Hari Raya Puasa [In lieu]", + "2020-05-30": "Pesta Kaamatan", + "2020-05-31": "Pesta Kaamatan (Second day)", + "2020-06-01": "Gawai Dayak", + "2020-06-02": "Gawai Dayak (Second day)", + "2020-06-08": "Birthday of SPB Yang di-Pertuan Agong", + "2020-06-21": "Birthday of The Sultan of Kedah", + "2020-07-07": "George Town Heritage Day", + "2020-07-11": "Birthday of the Governor of Penang", + "2020-07-17": "Birthday of The Raja of Perlis", + "2020-07-22": "Sarawak Day", + "2020-07-30": "Arafat Day; Birthday of the Sultan of Pahang", + "2020-07-31": "Hari Raya Haji", + "2020-08-01": "Hari Raya Haji", + "2020-08-02": "Hari Raya Haji [In lieu]", + "2020-08-20": "Awal Muharram (Hijri New Year)", + "2020-08-24": "Birthday of the Governor of Malacca", + "2020-08-31": "National Day", + "2020-09-16": "Malaysia Day", + "2020-09-24": "Hari Hol of Sultan Iskandar of Johor", + "2020-10-03": "Birthday of the Governor of Sabah", + "2020-10-10": "Birthday of the Governor of Sarawak", + "2020-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2020-11-06": "Birthday of the Sultan of Perak", + "2020-11-11": "Birthday of the Sultan of Kelantan", + "2020-11-12": "Birthday of the Sultan of Kelantan", + "2020-11-14": "Deepavali", + "2020-11-15": "Deepavali [In lieu]", + "2020-12-11": "Birthday of The Sultan of Selangor", + "2020-12-24": "Christmas Eve", + "2020-12-25": "Christmas Day", + "2020-12-27": "Christmas Day [In lieu]", + "2021-01-01": "New Year's Day", + "2021-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2021-01-28": "Thaipusam", + "2021-02-01": "Federal Territory Day", + "2021-02-12": "Chinese New Year", + "2021-02-13": "Chinese New Year Holiday", + "2021-02-14": "Chinese New Year Holiday [In lieu]; Chinese New Year [In lieu]", + "2021-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2021-03-11": "Isra and Mi'raj", + "2021-03-23": "Birthday of the Sultan of Johor", + "2021-04-02": "Good Friday", + "2021-04-13": "Beginning of Ramadan", + "2021-04-15": "Declaration of Malacca as a Historical City", + "2021-04-26": "Birthday of the Sultan of Terengganu", + "2021-04-29": "Nuzul Al-Quran Day", + "2021-05-01": "Labour Day", + "2021-05-02": "Labour Day [In lieu]", + "2021-05-13": "Hari Raya Puasa", + "2021-05-14": "Second day of Hari Raya Puasa", + "2021-05-16": "Second day of Hari Raya Puasa [In lieu]", + "2021-05-22": "Hari Hol of Pahang", + "2021-05-26": "Vesak Day", + "2021-05-30": "Pesta Kaamatan", + "2021-05-31": "Pesta Kaamatan (Second day)", + "2021-06-01": "Gawai Dayak", + "2021-06-02": "Gawai Dayak (Second day)", + "2021-06-07": "Birthday of SPB Yang di-Pertuan Agong", + "2021-06-20": "Birthday of The Sultan of Kedah", + "2021-07-07": "George Town Heritage Day", + "2021-07-10": "Birthday of the Governor of Penang", + "2021-07-17": "Birthday of The Raja of Perlis", + "2021-07-19": "Arafat Day", + "2021-07-20": "Hari Raya Haji", + "2021-07-21": "Hari Raya Haji", + "2021-07-22": "Sarawak Day", + "2021-07-30": "Birthday of the Sultan of Pahang", + "2021-08-10": "Awal Muharram (Hijri New Year)", + "2021-08-24": "Birthday of the Governor of Malacca", + "2021-08-31": "National Day", + "2021-09-13": "Hari Hol of Sultan Iskandar of Johor", + "2021-09-16": "Malaysia Day", + "2021-10-02": "Birthday of the Governor of Sabah", + "2021-10-09": "Birthday of the Governor of Sarawak", + "2021-10-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2021-11-04": "Deepavali", + "2021-11-05": "Birthday of the Sultan of Perak", + "2021-11-11": "Birthday of the Sultan of Kelantan", + "2021-11-12": "Birthday of the Sultan of Kelantan", + "2021-12-03": "Malaysia Cup Holiday", + "2021-12-11": "Birthday of The Sultan of Selangor", + "2021-12-24": "Christmas Eve", + "2021-12-25": "Christmas Day", + "2021-12-26": "Christmas Day [In lieu]", + "2022-01-01": "New Year's Day", + "2022-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2022-01-18": "Thaipusam", + "2022-02-01": "Chinese New Year; Federal Territory Day", + "2022-02-02": "Chinese New Year Holiday", + "2022-03-01": "Isra and Mi'raj", + "2022-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2022-03-23": "Birthday of the Sultan of Johor", + "2022-04-03": "Beginning of Ramadan", + "2022-04-04": "Beginning of Ramadan [In lieu]", + "2022-04-15": "Declaration of Malacca as a Historical City; Good Friday", + "2022-04-19": "Nuzul Al-Quran Day", + "2022-04-26": "Birthday of the Sultan of Terengganu", + "2022-05-01": "Labour Day", + "2022-05-02": "Hari Raya Puasa", + "2022-05-03": "Second day of Hari Raya Puasa", + "2022-05-04": "Labour Day Holiday; Labour Day [In lieu]", + "2022-05-15": "Vesak Day", + "2022-05-16": "Vesak Day [In lieu]", + "2022-05-22": "Hari Hol of Pahang", + "2022-05-23": "Hari Hol of Pahang [In lieu]", + "2022-05-30": "Pesta Kaamatan", + "2022-05-31": "Pesta Kaamatan (Second day)", + "2022-06-01": "Gawai Dayak", + "2022-06-02": "Gawai Dayak (Second day)", + "2022-06-06": "Birthday of SPB Yang di-Pertuan Agong", + "2022-06-19": "Birthday of The Sultan of Kedah", + "2022-07-07": "George Town Heritage Day", + "2022-07-09": "Arafat Day; Birthday of the Governor of Penang", + "2022-07-10": "Hari Raya Haji", + "2022-07-11": "Hari Raya Haji; Hari Raya Haji [In lieu]", + "2022-07-12": "Arafat Day [In lieu]; Hari Raya Haji [In lieu]", + "2022-07-17": "Birthday of The Raja of Perlis", + "2022-07-18": "Birthday of The Raja of Perlis [In lieu]", + "2022-07-22": "Sarawak Day", + "2022-07-30": "Awal Muharram (Hijri New Year); Birthday of the Sultan of Pahang", + "2022-08-24": "Birthday of the Governor of Malacca", + "2022-08-31": "National Day", + "2022-09-03": "Hari Hol of Sultan Iskandar of Johor", + "2022-09-16": "Malaysia Day", + "2022-09-18": "Malaysia Day [In lieu]", + "2022-10-01": "Birthday of the Governor of Sabah", + "2022-10-08": "Birthday of the Governor of Sarawak", + "2022-10-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2022-10-24": "Deepavali", + "2022-11-04": "Birthday of the Sultan of Perak", + "2022-11-11": "Birthday of the Sultan of Kelantan", + "2022-11-12": "Birthday of the Sultan of Kelantan", + "2022-12-11": "Birthday of The Sultan of Selangor", + "2022-12-12": "Birthday of The Sultan of Selangor [In lieu]", + "2022-12-24": "Christmas Eve", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day [In lieu]", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day [In lieu]", + "2023-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2023-01-22": "Chinese New Year", + "2023-01-23": "Chinese New Year Holiday", + "2023-01-24": "Chinese New Year [In lieu]", + "2023-02-01": "Federal Territory Day", + "2023-02-05": "Thaipusam", + "2023-02-06": "Thaipusam [In lieu]", + "2023-02-18": "Isra and Mi'raj", + "2023-02-19": "Isra and Mi'raj [In lieu]", + "2023-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2023-03-05": "Anniversary of the Installation of the Sultan of Terengganu [In lieu]", + "2023-03-23": "Beginning of Ramadan; Birthday of the Sultan of Johor", + "2023-04-07": "Good Friday", + "2023-04-08": "Nuzul Al-Quran Day", + "2023-04-09": "Nuzul Al-Quran Day [In lieu]", + "2023-04-15": "Declaration of Malacca as a Historical City", + "2023-04-22": "Hari Raya Puasa", + "2023-04-23": "Second day of Hari Raya Puasa", + "2023-04-24": "Hari Raya Puasa [In lieu]; Second day of Hari Raya Puasa [In lieu]", + "2023-04-26": "Birthday of the Sultan of Terengganu", + "2023-05-01": "Labour Day", + "2023-05-04": "Vesak Day", + "2023-05-22": "Hari Hol of Pahang", + "2023-05-30": "Pesta Kaamatan", + "2023-05-31": "Pesta Kaamatan (Second day)", + "2023-06-01": "Gawai Dayak", + "2023-06-02": "Gawai Dayak (Second day)", + "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", + "2023-06-18": "Birthday of The Sultan of Kedah", + "2023-06-28": "Arafat Day", + "2023-06-29": "Hari Raya Haji", + "2023-06-30": "Hari Raya Haji", + "2023-07-02": "Hari Raya Haji [In lieu]", + "2023-07-07": "George Town Heritage Day", + "2023-07-08": "Birthday of the Governor of Penang", + "2023-07-17": "Birthday of The Raja of Perlis", + "2023-07-19": "Awal Muharram (Hijri New Year)* (*estimated)", + "2023-07-22": "Sarawak Day", + "2023-07-30": "Birthday of the Sultan of Pahang", + "2023-07-31": "Birthday of the Sultan of Pahang [In lieu]", + "2023-08-22": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2023-08-24": "Birthday of the Governor of Malacca", + "2023-08-31": "National Day", + "2023-09-16": "Malaysia Day", + "2023-09-17": "Malaysia Day [In lieu]", + "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2023-10-07": "Birthday of the Governor of Sabah", + "2023-10-14": "Birthday of the Governor of Sarawak", + "2023-11-03": "Birthday of the Sultan of Perak", + "2023-11-11": "Birthday of the Sultan of Kelantan", + "2023-11-12": "Birthday of the Sultan of Kelantan; Deepavali", + "2023-11-13": "Deepavali [In lieu]", + "2023-12-11": "Birthday of The Sultan of Selangor", + "2023-12-24": "Christmas Eve", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2024-01-15": "Birthday of the Sultan of Negeri Sembilan [In lieu]", + "2024-01-25": "Thaipusam", + "2024-02-01": "Federal Territory Day", + "2024-02-08": "Isra and Mi'raj* (*estimated)", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year Holiday", + "2024-02-12": "Chinese New Year Holiday [In lieu]; Chinese New Year [In lieu]", + "2024-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2024-03-11": "Beginning of Ramadan* (*estimated)", + "2024-03-23": "Birthday of the Sultan of Johor", + "2024-03-27": "Nuzul Al-Quran Day* (*estimated)", + "2024-03-29": "Good Friday", + "2024-04-10": "Hari Raya Puasa* (*estimated)", + "2024-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "2024-04-15": "Declaration of Malacca as a Historical City", + "2024-04-26": "Birthday of the Sultan of Terengganu", + "2024-05-01": "Labour Day", + "2024-05-22": "Hari Hol of Pahang; Vesak Day", + "2024-05-30": "Pesta Kaamatan", + "2024-05-31": "Pesta Kaamatan (Second day)", + "2024-06-01": "Gawai Dayak", + "2024-06-02": "Gawai Dayak (Second day)", + "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", + "2024-06-04": "Gawai Dayak (Second day) [In lieu]", + "2024-06-15": "Arafat Day* (*estimated)", + "2024-06-16": "Birthday of The Sultan of Kedah; Hari Raya Haji* (*estimated)", + "2024-06-17": "Hari Raya Haji* (*estimated); Hari Raya Haji* (*estimated) [In lieu]", + "2024-06-18": "Arafat Day* (*estimated) [In lieu]; Hari Raya Haji* (*estimated) [In lieu]", + "2024-07-07": "Awal Muharram (Hijri New Year)* (*estimated); George Town Heritage Day", + "2024-07-08": "George Town Heritage Day [In lieu]", + "2024-07-13": "Birthday of the Governor of Penang", + "2024-07-17": "Birthday of The Raja of Perlis", + "2024-07-22": "Sarawak Day", + "2024-07-30": "Birthday of the Sultan of Pahang", + "2024-08-10": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2024-08-24": "Birthday of the Governor of Malacca", + "2024-08-31": "National Day", + "2024-09-01": "National Day [In lieu]", + "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2024-09-16": "Malaysia Day", + "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2024-10-05": "Birthday of the Governor of Sabah", + "2024-10-12": "Birthday of the Governor of Sarawak", + "2024-10-30": "Deepavali", + "2024-11-01": "Birthday of the Sultan of Perak", + "2024-11-11": "Birthday of the Sultan of Kelantan", + "2024-11-12": "Birthday of the Sultan of Kelantan", + "2024-12-11": "Birthday of The Sultan of Selangor", + "2024-12-24": "Christmas Eve", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2025-01-27": "Isra and Mi'raj* (*estimated)", + "2025-01-29": "Chinese New Year", + "2025-01-30": "Chinese New Year Holiday", + "2025-02-01": "Federal Territory Day", + "2025-02-11": "Thaipusam", + "2025-03-01": "Beginning of Ramadan* (*estimated)", + "2025-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2025-03-17": "Nuzul Al-Quran Day* (*estimated)", + "2025-03-23": "Birthday of the Sultan of Johor", + "2025-03-30": "Hari Raya Puasa* (*estimated)", + "2025-03-31": "Second day of Hari Raya Puasa* (*estimated)", + "2025-04-01": "Hari Raya Puasa* (*estimated) [In lieu]", + "2025-04-15": "Declaration of Malacca as a Historical City", + "2025-04-18": "Good Friday", + "2025-04-26": "Birthday of the Sultan of Terengganu", + "2025-04-27": "Birthday of the Sultan of Terengganu [In lieu]", + "2025-05-01": "Labour Day", + "2025-05-11": "Vesak Day", + "2025-05-12": "Vesak Day [In lieu]", + "2025-05-22": "Hari Hol of Pahang", + "2025-05-30": "Pesta Kaamatan", + "2025-05-31": "Pesta Kaamatan (Second day)", + "2025-06-01": "Gawai Dayak", + "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", + "2025-06-03": "Gawai Dayak [In lieu]", + "2025-06-05": "Arafat Day* (*estimated)", + "2025-06-06": "Hari Raya Haji* (*estimated)", + "2025-06-07": "Hari Raya Haji* (*estimated)", + "2025-06-08": "Hari Raya Haji* (*estimated) [In lieu]", + "2025-06-15": "Birthday of The Sultan of Kedah", + "2025-06-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "2025-07-07": "George Town Heritage Day", + "2025-07-12": "Birthday of the Governor of Penang", + "2025-07-17": "Birthday of The Raja of Perlis", + "2025-07-22": "Sarawak Day", + "2025-07-30": "Birthday of the Sultan of Pahang", + "2025-07-31": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2025-08-24": "Birthday of the Governor of Malacca", + "2025-08-25": "Birthday of the Governor of Malacca [In lieu]", + "2025-08-31": "National Day", + "2025-09-01": "National Day [In lieu]", + "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2025-09-16": "Malaysia Day", + "2025-10-04": "Birthday of the Governor of Sabah", + "2025-10-11": "Birthday of the Governor of Sarawak", + "2025-11-07": "Birthday of the Sultan of Perak", + "2025-11-11": "Birthday of the Sultan of Kelantan", + "2025-11-12": "Birthday of the Sultan of Kelantan", + "2025-11-18": "Deepavali", + "2025-12-11": "Birthday of The Sultan of Selangor", + "2025-12-24": "Christmas Eve", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2026-01-16": "Isra and Mi'raj* (*estimated)", + "2026-01-18": "Isra and Mi'raj* (*estimated) [In lieu]", + "2026-02-01": "Federal Territory Day; Thaipusam", + "2026-02-02": "Federal Territory Day [In lieu]; Thaipusam [In lieu]", + "2026-02-17": "Chinese New Year", + "2026-02-18": "Beginning of Ramadan* (*estimated); Chinese New Year Holiday", + "2026-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2026-03-06": "Nuzul Al-Quran Day* (*estimated)", + "2026-03-20": "Hari Raya Puasa* (*estimated)", + "2026-03-21": "Second day of Hari Raya Puasa* (*estimated)", + "2026-03-22": "Hari Raya Puasa* (*estimated) [In lieu]; Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2026-03-23": "Birthday of the Sultan of Johor", + "2026-04-03": "Good Friday", + "2026-04-15": "Declaration of Malacca as a Historical City", + "2026-04-26": "Birthday of the Sultan of Terengganu", + "2026-05-01": "Labour Day; Vesak Day", + "2026-05-03": "Labour Day [In lieu]; Vesak Day [In lieu]", + "2026-05-22": "Hari Hol of Pahang", + "2026-05-26": "Arafat Day* (*estimated)", + "2026-05-27": "Hari Raya Haji* (*estimated)", + "2026-05-28": "Hari Raya Haji* (*estimated)", + "2026-05-30": "Pesta Kaamatan", + "2026-05-31": "Pesta Kaamatan (Second day)", + "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", + "2026-06-02": "Gawai Dayak (Second day)", + "2026-06-16": "Awal Muharram (Hijri New Year)* (*estimated)", + "2026-06-21": "Birthday of The Sultan of Kedah", + "2026-07-07": "George Town Heritage Day", + "2026-07-11": "Birthday of the Governor of Penang", + "2026-07-17": "Birthday of The Raja of Perlis", + "2026-07-20": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2026-07-22": "Sarawak Day", + "2026-07-30": "Birthday of the Sultan of Pahang", + "2026-08-24": "Birthday of the Governor of Malacca", + "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2026-08-31": "National Day", + "2026-09-16": "Malaysia Day", + "2026-10-03": "Birthday of the Governor of Sabah", + "2026-10-10": "Birthday of the Governor of Sarawak", + "2026-11-06": "Birthday of the Sultan of Perak", + "2026-11-07": "Deepavali", + "2026-11-08": "Deepavali [In lieu]", + "2026-11-11": "Birthday of the Sultan of Kelantan", + "2026-11-12": "Birthday of the Sultan of Kelantan", + "2026-12-11": "Birthday of The Sultan of Selangor", + "2026-12-24": "Christmas Eve", + "2026-12-25": "Christmas Day", + "2026-12-27": "Christmas Day [In lieu]", + "2027-01-01": "New Year's Day", + "2027-01-05": "Isra and Mi'raj* (*estimated)", + "2027-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2027-01-22": "Thaipusam", + "2027-01-24": "Thaipusam [In lieu]", + "2027-02-01": "Federal Territory Day", + "2027-02-06": "Chinese New Year", + "2027-02-07": "Chinese New Year Holiday", + "2027-02-08": "Beginning of Ramadan* (*estimated); Chinese New Year Holiday [In lieu]; Chinese New Year [In lieu]", + "2027-02-09": "Chinese New Year Holiday [In lieu]", + "2027-02-24": "Nuzul Al-Quran Day* (*estimated)", + "2027-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2027-03-09": "Hari Raya Puasa* (*estimated)", + "2027-03-10": "Second day of Hari Raya Puasa* (*estimated)", + "2027-03-23": "Birthday of the Sultan of Johor", + "2027-03-26": "Good Friday", + "2027-04-15": "Declaration of Malacca as a Historical City", + "2027-04-26": "Birthday of the Sultan of Terengganu", + "2027-05-01": "Labour Day", + "2027-05-02": "Labour Day [In lieu]", + "2027-05-15": "Arafat Day* (*estimated)", + "2027-05-16": "Hari Raya Haji* (*estimated)", + "2027-05-17": "Hari Raya Haji* (*estimated); Hari Raya Haji* (*estimated) [In lieu]", + "2027-05-18": "Arafat Day* (*estimated) [In lieu]; Hari Raya Haji* (*estimated) [In lieu]", + "2027-05-20": "Vesak Day", + "2027-05-22": "Hari Hol of Pahang", + "2027-05-30": "Pesta Kaamatan", + "2027-05-31": "Pesta Kaamatan (Second day)", + "2027-06-01": "Gawai Dayak", + "2027-06-02": "Gawai Dayak (Second day)", + "2027-06-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", + "2027-06-20": "Birthday of The Sultan of Kedah", + "2027-07-07": "George Town Heritage Day", + "2027-07-10": "Birthday of the Governor of Penang; Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2027-07-17": "Birthday of The Raja of Perlis", + "2027-07-22": "Sarawak Day", + "2027-07-30": "Birthday of the Sultan of Pahang", + "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2027-08-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2027-08-24": "Birthday of the Governor of Malacca", + "2027-08-31": "National Day", + "2027-09-16": "Malaysia Day", + "2027-10-02": "Birthday of the Governor of Sabah", + "2027-10-09": "Birthday of the Governor of Sarawak", + "2027-10-27": "Deepavali", + "2027-11-05": "Birthday of the Sultan of Perak", + "2027-11-11": "Birthday of the Sultan of Kelantan", + "2027-11-12": "Birthday of the Sultan of Kelantan", + "2027-12-11": "Birthday of The Sultan of Selangor", + "2027-12-24": "Christmas Eve", + "2027-12-25": "Christmas Day; Isra and Mi'raj* (*estimated)", + "2027-12-26": "Christmas Day [In lieu]; Isra and Mi'raj* (*estimated) [In lieu]", + "2028-01-01": "New Year's Day", + "2028-01-11": "Thaipusam", + "2028-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2028-01-26": "Chinese New Year", + "2028-01-27": "Chinese New Year Holiday", + "2028-01-28": "Beginning of Ramadan* (*estimated)", + "2028-01-30": "Beginning of Ramadan* (*estimated) [In lieu]", + "2028-02-01": "Federal Territory Day", + "2028-02-13": "Nuzul Al-Quran Day* (*estimated)", + "2028-02-14": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "2028-02-26": "Hari Raya Puasa* (*estimated)", + "2028-02-27": "Second day of Hari Raya Puasa* (*estimated)", + "2028-02-28": "Hari Raya Puasa* (*estimated) [In lieu]; Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2028-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2028-03-05": "Anniversary of the Installation of the Sultan of Terengganu [In lieu]", + "2028-03-23": "Birthday of the Sultan of Johor", + "2028-04-14": "Good Friday", + "2028-04-15": "Declaration of Malacca as a Historical City", + "2028-04-26": "Birthday of the Sultan of Terengganu", + "2028-05-01": "Labour Day", + "2028-05-04": "Arafat Day* (*estimated)", + "2028-05-05": "Hari Raya Haji* (*estimated)", + "2028-05-06": "Hari Raya Haji* (*estimated)", + "2028-05-07": "Hari Raya Haji* (*estimated) [In lieu]", + "2028-05-09": "Vesak Day", + "2028-05-22": "Hari Hol of Pahang", + "2028-05-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "2028-05-30": "Pesta Kaamatan", + "2028-05-31": "Pesta Kaamatan (Second day)", + "2028-06-01": "Gawai Dayak", + "2028-06-02": "Gawai Dayak (Second day)", + "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", + "2028-06-18": "Birthday of The Sultan of Kedah", + "2028-06-29": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2028-07-07": "George Town Heritage Day", + "2028-07-08": "Birthday of the Governor of Penang", + "2028-07-17": "Birthday of The Raja of Perlis", + "2028-07-22": "Sarawak Day", + "2028-07-30": "Birthday of the Sultan of Pahang", + "2028-07-31": "Birthday of the Sultan of Pahang [In lieu]", + "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2028-08-24": "Birthday of the Governor of Malacca", + "2028-08-31": "National Day", + "2028-09-16": "Malaysia Day", + "2028-09-17": "Malaysia Day [In lieu]", + "2028-10-07": "Birthday of the Governor of Sabah", + "2028-10-14": "Birthday of the Governor of Sarawak", + "2028-11-03": "Birthday of the Sultan of Perak", + "2028-11-11": "Birthday of the Sultan of Kelantan", + "2028-11-12": "Birthday of the Sultan of Kelantan", + "2028-11-14": "Deepavali", + "2028-12-11": "Birthday of The Sultan of Selangor", + "2028-12-14": "Isra and Mi'raj* (*estimated)", + "2028-12-24": "Christmas Eve", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2029-01-15": "Birthday of the Sultan of Negeri Sembilan [In lieu]", + "2029-01-16": "Beginning of Ramadan* (*estimated)", + "2029-02-01": "Federal Territory Day; Nuzul Al-Quran Day* (*estimated)", + "2029-02-13": "Chinese New Year", + "2029-02-14": "Chinese New Year Holiday; Hari Raya Puasa* (*estimated)", + "2029-02-15": "Second day of Hari Raya Puasa* (*estimated)", + "2029-02-28": "Thaipusam", + "2029-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2029-03-23": "Birthday of the Sultan of Johor", + "2029-03-30": "Good Friday", + "2029-04-15": "Declaration of Malacca as a Historical City", + "2029-04-16": "Declaration of Malacca as a Historical City [In lieu]", + "2029-04-23": "Arafat Day* (*estimated)", + "2029-04-24": "Hari Raya Haji* (*estimated)", + "2029-04-25": "Hari Raya Haji* (*estimated)", + "2029-04-26": "Birthday of the Sultan of Terengganu", + "2029-05-01": "Labour Day", + "2029-05-14": "Awal Muharram (Hijri New Year)* (*estimated)", + "2029-05-22": "Hari Hol of Pahang", + "2029-05-27": "Vesak Day", + "2029-05-28": "Vesak Day [In lieu]", + "2029-05-30": "Pesta Kaamatan", + "2029-05-31": "Pesta Kaamatan (Second day)", + "2029-06-01": "Gawai Dayak", + "2029-06-02": "Gawai Dayak (Second day)", + "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", + "2029-06-17": "Birthday of The Sultan of Kedah", + "2029-06-18": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2029-07-07": "George Town Heritage Day", + "2029-07-14": "Birthday of the Governor of Penang", + "2029-07-17": "Birthday of The Raja of Perlis", + "2029-07-22": "Sarawak Day", + "2029-07-23": "Sarawak Day [In lieu]", + "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2029-07-30": "Birthday of the Sultan of Pahang", + "2029-08-24": "Birthday of the Governor of Malacca", + "2029-08-31": "National Day", + "2029-09-02": "National Day [In lieu]", + "2029-09-16": "Malaysia Day", + "2029-09-17": "Malaysia Day [In lieu]", + "2029-10-06": "Birthday of the Governor of Sabah", + "2029-10-13": "Birthday of the Governor of Sarawak", + "2029-11-02": "Birthday of the Sultan of Perak", + "2029-11-04": "Deepavali", + "2029-11-05": "Deepavali [In lieu]", + "2029-11-11": "Birthday of the Sultan of Kelantan", + "2029-11-12": "Birthday of the Sultan of Kelantan", + "2029-12-03": "Isra and Mi'raj* (*estimated)", + "2029-12-11": "Birthday of The Sultan of Selangor", + "2029-12-24": "Christmas Eve", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-01-05": "Beginning of Ramadan* (*estimated)", + "2030-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2030-01-21": "Nuzul Al-Quran Day* (*estimated)", + "2030-02-01": "Federal Territory Day", + "2030-02-03": "Chinese New Year", + "2030-02-04": "Chinese New Year Holiday; Hari Raya Puasa* (*estimated)", + "2030-02-05": "Second day of Hari Raya Puasa* (*estimated)", + "2030-02-06": "Chinese New Year [In lieu]", + "2030-02-17": "Thaipusam", + "2030-02-18": "Thaipusam [In lieu]", + "2030-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2030-03-23": "Birthday of the Sultan of Johor", + "2030-04-12": "Arafat Day* (*estimated)", + "2030-04-13": "Hari Raya Haji* (*estimated)", + "2030-04-14": "Hari Raya Haji* (*estimated)", + "2030-04-15": "Declaration of Malacca as a Historical City; Hari Raya Haji* (*estimated) [In lieu]", + "2030-04-19": "Good Friday", + "2030-04-26": "Birthday of the Sultan of Terengganu", + "2030-05-01": "Labour Day", + "2030-05-03": "Awal Muharram (Hijri New Year)* (*estimated)", + "2030-05-16": "Vesak Day", + "2030-05-22": "Hari Hol of Pahang", + "2030-05-30": "Pesta Kaamatan", + "2030-05-31": "Pesta Kaamatan (Second day)", + "2030-06-01": "Gawai Dayak", + "2030-06-02": "Gawai Dayak (Second day)", + "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", + "2030-06-04": "Gawai Dayak (Second day) [In lieu]", + "2030-06-07": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2030-06-16": "Birthday of The Sultan of Kedah", + "2030-07-07": "George Town Heritage Day", + "2030-07-08": "George Town Heritage Day [In lieu]", + "2030-07-13": "Birthday of the Governor of Penang; Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2030-07-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2030-07-17": "Birthday of The Raja of Perlis", + "2030-07-22": "Sarawak Day", + "2030-07-30": "Birthday of the Sultan of Pahang", + "2030-08-24": "Birthday of the Governor of Malacca", + "2030-08-31": "National Day", + "2030-09-01": "National Day [In lieu]", + "2030-09-16": "Malaysia Day", + "2030-10-05": "Birthday of the Governor of Sabah", + "2030-10-12": "Birthday of the Governor of Sarawak", + "2030-10-25": "Deepavali", + "2030-10-27": "Deepavali [In lieu]", + "2030-11-01": "Birthday of the Sultan of Perak", + "2030-11-11": "Birthday of the Sultan of Kelantan", + "2030-11-12": "Birthday of the Sultan of Kelantan", + "2030-11-23": "Isra and Mi'raj* (*estimated)", + "2030-11-24": "Isra and Mi'raj* (*estimated) [In lieu]", + "2030-12-11": "Birthday of The Sultan of Selangor", + "2030-12-24": "Christmas Eve", + "2030-12-25": "Christmas Day", + "2030-12-26": "Beginning of Ramadan* (*estimated)", + "2031-01-01": "New Year's Day", + "2031-01-08": "Thaipusam", + "2031-01-11": "Nuzul Al-Quran Day* (*estimated)", + "2031-01-12": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "2031-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2031-01-23": "Chinese New Year", + "2031-01-24": "Chinese New Year Holiday; Hari Raya Puasa* (*estimated)", + "2031-01-25": "Second day of Hari Raya Puasa* (*estimated)", + "2031-01-26": "Chinese New Year Holiday [In lieu]; Hari Raya Puasa* (*estimated) [In lieu]; Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2031-02-01": "Federal Territory Day", + "2031-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2031-03-23": "Birthday of the Sultan of Johor", + "2031-04-01": "Arafat Day* (*estimated)", + "2031-04-02": "Hari Raya Haji* (*estimated)", + "2031-04-03": "Hari Raya Haji* (*estimated)", + "2031-04-11": "Good Friday", + "2031-04-15": "Declaration of Malacca as a Historical City", + "2031-04-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "2031-04-26": "Birthday of the Sultan of Terengganu", + "2031-04-27": "Birthday of the Sultan of Terengganu [In lieu]", + "2031-05-01": "Labour Day", + "2031-05-06": "Vesak Day", + "2031-05-22": "Hari Hol of Pahang", + "2031-05-27": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2031-05-30": "Pesta Kaamatan", + "2031-05-31": "Pesta Kaamatan (Second day)", + "2031-06-01": "Gawai Dayak", + "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", + "2031-06-03": "Gawai Dayak [In lieu]", + "2031-06-15": "Birthday of The Sultan of Kedah", + "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2031-07-07": "George Town Heritage Day", + "2031-07-12": "Birthday of the Governor of Penang", + "2031-07-17": "Birthday of The Raja of Perlis", + "2031-07-22": "Sarawak Day", + "2031-07-30": "Birthday of the Sultan of Pahang", + "2031-08-24": "Birthday of the Governor of Malacca", + "2031-08-25": "Birthday of the Governor of Malacca [In lieu]", + "2031-08-31": "National Day", + "2031-09-01": "National Day [In lieu]", + "2031-09-16": "Malaysia Day", + "2031-10-04": "Birthday of the Governor of Sabah", + "2031-10-11": "Birthday of the Governor of Sarawak", + "2031-11-07": "Birthday of the Sultan of Perak", + "2031-11-11": "Birthday of the Sultan of Kelantan", + "2031-11-12": "Birthday of the Sultan of Kelantan; Isra and Mi'raj* (*estimated)", + "2031-11-13": "Deepavali", + "2031-12-11": "Birthday of The Sultan of Selangor", + "2031-12-15": "Beginning of Ramadan* (*estimated)", + "2031-12-24": "Christmas Eve", + "2031-12-25": "Christmas Day", + "2031-12-31": "Nuzul Al-Quran Day* (*estimated)", + "2032-01-01": "New Year's Day", + "2032-01-14": "Birthday of the Sultan of Negeri Sembilan; Hari Raya Puasa* (*estimated)", + "2032-01-15": "Second day of Hari Raya Puasa* (*estimated)", + "2032-02-01": "Federal Territory Day", + "2032-02-02": "Federal Territory Day [In lieu]", + "2032-02-11": "Chinese New Year", + "2032-02-12": "Chinese New Year Holiday", + "2032-02-26": "Thaipusam", + "2032-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2032-03-21": "Arafat Day* (*estimated)", + "2032-03-22": "Hari Raya Haji* (*estimated)", + "2032-03-23": "Birthday of the Sultan of Johor; Hari Raya Haji* (*estimated)", + "2032-03-26": "Good Friday", + "2032-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2032-04-15": "Declaration of Malacca as a Historical City", + "2032-04-26": "Birthday of the Sultan of Terengganu", + "2032-05-01": "Labour Day", + "2032-05-02": "Labour Day [In lieu]", + "2032-05-15": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2032-05-22": "Hari Hol of Pahang", + "2032-05-23": "Vesak Day", + "2032-05-24": "Vesak Day [In lieu]", + "2032-05-30": "Pesta Kaamatan", + "2032-05-31": "Pesta Kaamatan (Second day)", + "2032-06-01": "Gawai Dayak", + "2032-06-02": "Gawai Dayak (Second day)", + "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", + "2032-06-20": "Birthday of The Sultan of Kedah; Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2032-07-07": "George Town Heritage Day", + "2032-07-10": "Birthday of the Governor of Penang", + "2032-07-17": "Birthday of The Raja of Perlis", + "2032-07-22": "Sarawak Day", + "2032-07-30": "Birthday of the Sultan of Pahang", + "2032-08-24": "Birthday of the Governor of Malacca", + "2032-08-31": "National Day", + "2032-09-16": "Malaysia Day", + "2032-10-02": "Birthday of the Governor of Sabah", + "2032-10-09": "Birthday of the Governor of Sarawak", + "2032-11-01": "Deepavali; Isra and Mi'raj* (*estimated)", + "2032-11-05": "Birthday of the Sultan of Perak", + "2032-11-11": "Birthday of the Sultan of Kelantan", + "2032-11-12": "Birthday of the Sultan of Kelantan", + "2032-12-04": "Beginning of Ramadan* (*estimated)", + "2032-12-11": "Birthday of The Sultan of Selangor", + "2032-12-20": "Nuzul Al-Quran Day* (*estimated)", + "2032-12-24": "Christmas Eve", + "2032-12-25": "Christmas Day", + "2032-12-26": "Christmas Day [In lieu]", + "2033-01-01": "New Year's Day", + "2033-01-02": "Hari Raya Puasa* (*estimated)", + "2033-01-03": "Second day of Hari Raya Puasa* (*estimated)", + "2033-01-04": "Hari Raya Puasa* (*estimated) [In lieu]", + "2033-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2033-01-31": "Chinese New Year", + "2033-02-01": "Chinese New Year Holiday; Federal Territory Day", + "2033-02-14": "Thaipusam", + "2033-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2033-03-10": "Arafat Day* (*estimated)", + "2033-03-11": "Hari Raya Haji* (*estimated)", + "2033-03-12": "Hari Raya Haji* (*estimated)", + "2033-03-13": "Hari Raya Haji* (*estimated) [In lieu]", + "2033-03-23": "Birthday of the Sultan of Johor", + "2033-04-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "2033-04-15": "Declaration of Malacca as a Historical City; Good Friday", + "2033-04-26": "Birthday of the Sultan of Terengganu", + "2033-05-01": "Labour Day", + "2033-05-02": "Labour Day [In lieu]", + "2033-05-05": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2033-05-13": "Vesak Day", + "2033-05-15": "Vesak Day [In lieu]", + "2033-05-22": "Hari Hol of Pahang", + "2033-05-23": "Hari Hol of Pahang [In lieu]", + "2033-05-30": "Pesta Kaamatan", + "2033-05-31": "Pesta Kaamatan (Second day)", + "2033-06-01": "Gawai Dayak", + "2033-06-02": "Gawai Dayak (Second day)", + "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", + "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2033-06-19": "Birthday of The Sultan of Kedah", + "2033-07-07": "George Town Heritage Day", + "2033-07-09": "Birthday of the Governor of Penang", + "2033-07-17": "Birthday of The Raja of Perlis", + "2033-07-18": "Birthday of The Raja of Perlis [In lieu]", + "2033-07-22": "Sarawak Day", + "2033-07-30": "Birthday of the Sultan of Pahang", + "2033-08-24": "Birthday of the Governor of Malacca", + "2033-08-31": "National Day", + "2033-09-16": "Malaysia Day", + "2033-09-18": "Malaysia Day [In lieu]", + "2033-10-01": "Birthday of the Governor of Sabah", + "2033-10-08": "Birthday of the Governor of Sarawak", + "2033-10-21": "Deepavali; Isra and Mi'raj* (*estimated)", + "2033-10-23": "Deepavali [In lieu]; Isra and Mi'raj* (*estimated) [In lieu]", + "2033-11-04": "Birthday of the Sultan of Perak", + "2033-11-11": "Birthday of the Sultan of Kelantan", + "2033-11-12": "Birthday of the Sultan of Kelantan", + "2033-11-23": "Beginning of Ramadan* (*estimated)", + "2033-12-09": "Nuzul Al-Quran Day* (*estimated)", + "2033-12-11": "Birthday of The Sultan of Selangor", + "2033-12-12": "Birthday of The Sultan of Selangor [In lieu]", + "2033-12-23": "Hari Raya Puasa* (*estimated)", + "2033-12-24": "Christmas Eve; Second day of Hari Raya Puasa* (*estimated)", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day [In lieu]; Hari Raya Puasa* (*estimated) [In lieu]; Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day [In lieu]", + "2034-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2034-02-01": "Federal Territory Day", + "2034-02-19": "Chinese New Year", + "2034-02-20": "Chinese New Year Holiday", + "2034-02-21": "Chinese New Year [In lieu]", + "2034-02-28": "Arafat Day* (*estimated)", + "2034-03-01": "Hari Raya Haji* (*estimated)", + "2034-03-02": "Hari Raya Haji* (*estimated)", + "2034-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2034-03-05": "Anniversary of the Installation of the Sultan of Terengganu [In lieu]; Thaipusam", + "2034-03-06": "Thaipusam [In lieu]", + "2034-03-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2034-03-23": "Birthday of the Sultan of Johor", + "2034-04-07": "Good Friday", + "2034-04-15": "Declaration of Malacca as a Historical City", + "2034-04-25": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2034-04-26": "Birthday of the Sultan of Terengganu", + "2034-05-01": "Labour Day", + "2034-05-03": "Vesak Day", + "2034-05-22": "Hari Hol of Pahang", + "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated); Pesta Kaamatan", + "2034-05-31": "Pesta Kaamatan (Second day)", + "2034-06-01": "Gawai Dayak", + "2034-06-02": "Gawai Dayak (Second day)", + "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", + "2034-06-18": "Birthday of The Sultan of Kedah", + "2034-07-07": "George Town Heritage Day", + "2034-07-08": "Birthday of the Governor of Penang", + "2034-07-17": "Birthday of The Raja of Perlis", + "2034-07-22": "Sarawak Day", + "2034-07-30": "Birthday of the Sultan of Pahang", + "2034-07-31": "Birthday of the Sultan of Pahang [In lieu]", + "2034-08-24": "Birthday of the Governor of Malacca", + "2034-08-31": "National Day", + "2034-09-16": "Malaysia Day", + "2034-09-17": "Malaysia Day [In lieu]", + "2034-10-07": "Birthday of the Governor of Sabah", + "2034-10-10": "Isra and Mi'raj* (*estimated)", + "2034-10-14": "Birthday of the Governor of Sarawak", + "2034-11-03": "Birthday of the Sultan of Perak", + "2034-11-09": "Deepavali", + "2034-11-11": "Birthday of the Sultan of Kelantan", + "2034-11-12": "Beginning of Ramadan* (*estimated); Birthday of the Sultan of Kelantan", + "2034-11-13": "Beginning of Ramadan* (*estimated) [In lieu]", + "2034-11-28": "Nuzul Al-Quran Day* (*estimated)", + "2034-12-11": "Birthday of The Sultan of Selangor", + "2034-12-12": "Hari Raya Puasa* (*estimated)", + "2034-12-13": "Second day of Hari Raya Puasa* (*estimated)", + "2034-12-24": "Christmas Eve", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2035-01-15": "Birthday of the Sultan of Negeri Sembilan [In lieu]", + "2035-02-01": "Federal Territory Day", + "2035-02-08": "Chinese New Year", + "2035-02-09": "Chinese New Year Holiday", + "2035-02-11": "Chinese New Year Holiday [In lieu]", + "2035-02-17": "Arafat Day* (*estimated)", + "2035-02-18": "Hari Raya Haji* (*estimated)", + "2035-02-19": "Hari Raya Haji* (*estimated); Hari Raya Haji* (*estimated) [In lieu]", + "2035-02-20": "Arafat Day* (*estimated) [In lieu]; Hari Raya Haji* (*estimated) [In lieu]", + "2035-02-23": "Thaipusam", + "2035-02-25": "Thaipusam [In lieu]", + "2035-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2035-03-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2035-03-23": "Birthday of the Sultan of Johor; Good Friday", + "2035-04-14": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2035-04-15": "Declaration of Malacca as a Historical City", + "2035-04-16": "Declaration of Malacca as a Historical City [In lieu]", + "2035-04-26": "Birthday of the Sultan of Terengganu", + "2035-05-01": "Labour Day", + "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2035-05-22": "Hari Hol of Pahang; Vesak Day", + "2035-05-30": "Pesta Kaamatan", + "2035-05-31": "Pesta Kaamatan (Second day)", + "2035-06-01": "Gawai Dayak", + "2035-06-02": "Gawai Dayak (Second day)", + "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", + "2035-06-17": "Birthday of The Sultan of Kedah", + "2035-07-07": "George Town Heritage Day", + "2035-07-14": "Birthday of the Governor of Penang", + "2035-07-17": "Birthday of The Raja of Perlis", + "2035-07-22": "Sarawak Day", + "2035-07-23": "Sarawak Day [In lieu]", + "2035-07-30": "Birthday of the Sultan of Pahang", + "2035-08-24": "Birthday of the Governor of Malacca", + "2035-08-31": "National Day", + "2035-09-02": "National Day [In lieu]", + "2035-09-16": "Malaysia Day", + "2035-09-17": "Malaysia Day [In lieu]", + "2035-09-29": "Isra and Mi'raj* (*estimated)", + "2035-09-30": "Isra and Mi'raj* (*estimated) [In lieu]", + "2035-10-06": "Birthday of the Governor of Sabah", + "2035-10-13": "Birthday of the Governor of Sarawak", + "2035-10-29": "Deepavali", + "2035-11-01": "Beginning of Ramadan* (*estimated)", + "2035-11-02": "Birthday of the Sultan of Perak", + "2035-11-11": "Birthday of the Sultan of Kelantan", + "2035-11-12": "Birthday of the Sultan of Kelantan", + "2035-11-17": "Nuzul Al-Quran Day* (*estimated)", + "2035-11-18": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "2035-12-01": "Hari Raya Puasa* (*estimated)", + "2035-12-02": "Second day of Hari Raya Puasa* (*estimated)", + "2035-12-03": "Hari Raya Puasa* (*estimated) [In lieu]; Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2035-12-11": "Birthday of The Sultan of Selangor", + "2035-12-24": "Christmas Eve", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-01-13": "Thaipusam", + "2036-01-14": "Birthday of the Sultan of Negeri Sembilan; Thaipusam [In lieu]", + "2036-01-15": "Thaipusam [In lieu]", + "2036-01-28": "Chinese New Year", + "2036-01-29": "Chinese New Year Holiday", + "2036-02-01": "Federal Territory Day", + "2036-02-06": "Arafat Day* (*estimated)", + "2036-02-07": "Hari Raya Haji* (*estimated)", + "2036-02-08": "Hari Raya Haji* (*estimated)", + "2036-02-10": "Hari Raya Haji* (*estimated) [In lieu]", + "2036-02-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2036-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2036-03-23": "Birthday of the Sultan of Johor", + "2036-04-03": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2036-04-11": "Good Friday", + "2036-04-15": "Declaration of Malacca as a Historical City", + "2036-04-26": "Birthday of the Sultan of Terengganu", + "2036-04-27": "Birthday of the Sultan of Terengganu [In lieu]", + "2036-05-01": "Labour Day", + "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2036-05-10": "Vesak Day", + "2036-05-11": "Vesak Day [In lieu]", + "2036-05-22": "Hari Hol of Pahang", + "2036-05-30": "Pesta Kaamatan", + "2036-05-31": "Pesta Kaamatan (Second day)", + "2036-06-01": "Gawai Dayak", + "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", + "2036-06-03": "Gawai Dayak [In lieu]", + "2036-06-15": "Birthday of The Sultan of Kedah", + "2036-07-07": "George Town Heritage Day", + "2036-07-12": "Birthday of the Governor of Penang", + "2036-07-17": "Birthday of The Raja of Perlis", + "2036-07-22": "Sarawak Day", + "2036-07-30": "Birthday of the Sultan of Pahang", + "2036-08-24": "Birthday of the Governor of Malacca", + "2036-08-25": "Birthday of the Governor of Malacca [In lieu]", + "2036-08-31": "National Day", + "2036-09-01": "National Day [In lieu]", + "2036-09-16": "Malaysia Day", + "2036-09-18": "Isra and Mi'raj* (*estimated)", + "2036-10-04": "Birthday of the Governor of Sabah", + "2036-10-11": "Birthday of the Governor of Sarawak", + "2036-10-20": "Beginning of Ramadan* (*estimated)", + "2036-11-05": "Nuzul Al-Quran Day* (*estimated)", + "2036-11-07": "Birthday of the Sultan of Perak", + "2036-11-11": "Birthday of the Sultan of Kelantan", + "2036-11-12": "Birthday of the Sultan of Kelantan", + "2036-11-16": "Deepavali", + "2036-11-17": "Deepavali [In lieu]", + "2036-11-19": "Hari Raya Puasa* (*estimated)", + "2036-11-20": "Second day of Hari Raya Puasa* (*estimated)", + "2036-12-11": "Birthday of The Sultan of Selangor", + "2036-12-24": "Christmas Eve", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2037-01-25": "Arafat Day* (*estimated)", + "2037-01-26": "Hari Raya Haji* (*estimated)", + "2037-01-27": "Hari Raya Haji* (*estimated)", + "2037-02-01": "Federal Territory Day", + "2037-02-02": "Federal Territory Day [In lieu]", + "2037-02-15": "Chinese New Year", + "2037-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday", + "2037-02-17": "Chinese New Year [In lieu]", + "2037-03-02": "Thaipusam", + "2037-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2037-03-23": "Birthday of the Sultan of Johor; Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2037-04-03": "Good Friday", + "2037-04-15": "Declaration of Malacca as a Historical City", + "2037-04-26": "Birthday of the Sultan of Terengganu", + "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2037-05-01": "Labour Day", + "2037-05-03": "Labour Day [In lieu]", + "2037-05-22": "Hari Hol of Pahang", + "2037-05-29": "Vesak Day", + "2037-05-30": "Pesta Kaamatan", + "2037-05-31": "Pesta Kaamatan (Second day); Vesak Day [In lieu]", + "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", + "2037-06-02": "Gawai Dayak (Second day)", + "2037-06-21": "Birthday of The Sultan of Kedah", + "2037-07-07": "George Town Heritage Day", + "2037-07-11": "Birthday of the Governor of Penang", + "2037-07-17": "Birthday of The Raja of Perlis", + "2037-07-22": "Sarawak Day", + "2037-07-30": "Birthday of the Sultan of Pahang", + "2037-08-24": "Birthday of the Governor of Malacca", + "2037-08-31": "National Day", + "2037-09-07": "Isra and Mi'raj* (*estimated)", + "2037-09-16": "Malaysia Day", + "2037-10-03": "Birthday of the Governor of Sabah", + "2037-10-10": "Beginning of Ramadan* (*estimated); Birthday of the Governor of Sarawak", + "2037-10-26": "Nuzul Al-Quran Day* (*estimated)", + "2037-11-05": "Deepavali", + "2037-11-06": "Birthday of the Sultan of Perak", + "2037-11-08": "Hari Raya Puasa* (*estimated)", + "2037-11-09": "Second day of Hari Raya Puasa* (*estimated)", + "2037-11-10": "Hari Raya Puasa* (*estimated) [In lieu]", + "2037-11-11": "Birthday of the Sultan of Kelantan", + "2037-11-12": "Birthday of the Sultan of Kelantan", + "2037-12-11": "Birthday of The Sultan of Selangor", + "2037-12-24": "Christmas Eve", + "2037-12-25": "Christmas Day", + "2037-12-27": "Christmas Day [In lieu]", + "2038-01-01": "New Year's Day", + "2038-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2038-01-15": "Arafat Day* (*estimated)", + "2038-01-16": "Hari Raya Haji* (*estimated)", + "2038-01-17": "Hari Raya Haji* (*estimated)", + "2038-01-18": "Hari Raya Haji* (*estimated) [In lieu]", + "2038-02-01": "Federal Territory Day", + "2038-02-04": "Chinese New Year", + "2038-02-05": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday", + "2038-02-07": "Chinese New Year Holiday [In lieu]", + "2038-02-19": "Thaipusam", + "2038-02-21": "Thaipusam [In lieu]", + "2038-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2038-03-12": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2038-03-23": "Birthday of the Sultan of Johor", + "2038-04-15": "Declaration of Malacca as a Historical City", + "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2038-04-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2038-04-23": "Good Friday", + "2038-04-26": "Birthday of the Sultan of Terengganu", + "2038-05-01": "Labour Day", + "2038-05-02": "Labour Day [In lieu]", + "2038-05-18": "Vesak Day", + "2038-05-22": "Hari Hol of Pahang", + "2038-05-30": "Pesta Kaamatan", + "2038-05-31": "Pesta Kaamatan (Second day)", + "2038-06-01": "Gawai Dayak", + "2038-06-02": "Gawai Dayak (Second day)", + "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", + "2038-06-20": "Birthday of The Sultan of Kedah", + "2038-07-07": "George Town Heritage Day", + "2038-07-10": "Birthday of the Governor of Penang", + "2038-07-17": "Birthday of The Raja of Perlis", + "2038-07-22": "Sarawak Day", + "2038-07-30": "Birthday of the Sultan of Pahang", + "2038-08-24": "Birthday of the Governor of Malacca", + "2038-08-28": "Isra and Mi'raj* (*estimated)", + "2038-08-29": "Isra and Mi'raj* (*estimated) [In lieu]", + "2038-08-31": "National Day", + "2038-09-16": "Malaysia Day", + "2038-09-30": "Beginning of Ramadan* (*estimated)", + "2038-10-02": "Birthday of the Governor of Sabah", + "2038-10-09": "Birthday of the Governor of Sarawak", + "2038-10-16": "Nuzul Al-Quran Day* (*estimated)", + "2038-10-17": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "2038-10-26": "Deepavali", + "2038-10-29": "Hari Raya Puasa* (*estimated)", + "2038-10-30": "Second day of Hari Raya Puasa* (*estimated)", + "2038-10-31": "Hari Raya Puasa* (*estimated) [In lieu]; Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2038-11-05": "Birthday of the Sultan of Perak", + "2038-11-11": "Birthday of the Sultan of Kelantan", + "2038-11-12": "Birthday of the Sultan of Kelantan", + "2038-12-11": "Birthday of The Sultan of Selangor", + "2038-12-24": "Christmas Eve", + "2038-12-25": "Christmas Day", + "2038-12-26": "Christmas Day [In lieu]", + "2039-01-01": "New Year's Day", + "2039-01-04": "Arafat Day* (*estimated)", + "2039-01-05": "Hari Raya Haji* (*estimated)", + "2039-01-06": "Hari Raya Haji* (*estimated)", + "2039-01-09": "Thaipusam", + "2039-01-10": "Thaipusam [In lieu]", + "2039-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2039-01-24": "Chinese New Year", + "2039-01-25": "Chinese New Year Holiday", + "2039-01-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "2039-02-01": "Federal Territory Day", + "2039-03-01": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2039-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2039-03-23": "Birthday of the Sultan of Johor", + "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2039-04-08": "Good Friday", + "2039-04-15": "Declaration of Malacca as a Historical City", + "2039-04-26": "Birthday of the Sultan of Terengganu", + "2039-05-01": "Labour Day", + "2039-05-02": "Labour Day [In lieu]", + "2039-05-07": "Vesak Day", + "2039-05-08": "Vesak Day [In lieu]", + "2039-05-22": "Hari Hol of Pahang", + "2039-05-23": "Hari Hol of Pahang [In lieu]", + "2039-05-30": "Pesta Kaamatan", + "2039-05-31": "Pesta Kaamatan (Second day)", + "2039-06-01": "Gawai Dayak", + "2039-06-02": "Gawai Dayak (Second day)", + "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", + "2039-06-19": "Birthday of The Sultan of Kedah", + "2039-07-07": "George Town Heritage Day", + "2039-07-09": "Birthday of the Governor of Penang", + "2039-07-17": "Birthday of The Raja of Perlis", + "2039-07-18": "Birthday of The Raja of Perlis [In lieu]", + "2039-07-22": "Sarawak Day", + "2039-07-30": "Birthday of the Sultan of Pahang", + "2039-08-17": "Isra and Mi'raj* (*estimated)", + "2039-08-24": "Birthday of the Governor of Malacca", + "2039-08-31": "National Day", + "2039-09-16": "Malaysia Day", + "2039-09-18": "Malaysia Day [In lieu]", + "2039-09-19": "Beginning of Ramadan* (*estimated)", + "2039-10-01": "Birthday of the Governor of Sabah", + "2039-10-05": "Nuzul Al-Quran Day* (*estimated)", + "2039-10-08": "Birthday of the Governor of Sarawak", + "2039-10-19": "Hari Raya Puasa* (*estimated)", + "2039-10-20": "Second day of Hari Raya Puasa* (*estimated)", + "2039-11-04": "Birthday of the Sultan of Perak", + "2039-11-11": "Birthday of the Sultan of Kelantan", + "2039-11-12": "Birthday of the Sultan of Kelantan", + "2039-11-14": "Deepavali", + "2039-12-11": "Birthday of The Sultan of Selangor", + "2039-12-12": "Birthday of The Sultan of Selangor [In lieu]", + "2039-12-24": "Christmas Eve", + "2039-12-25": "Arafat Day* (*estimated); Christmas Day", + "2039-12-26": "Hari Raya Haji* (*estimated)", + "2039-12-27": "Christmas Day [In lieu]; Hari Raya Haji* (*estimated)", + "2039-12-28": "Christmas Day [In lieu]", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day [In lieu]", + "2040-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2040-01-15": "Awal Muharram (Hijri New Year)* (*estimated)", + "2040-02-01": "Federal Territory Day", + "2040-02-12": "Chinese New Year", + "2040-02-13": "Chinese New Year Holiday", + "2040-02-14": "Chinese New Year [In lieu]", + "2040-02-19": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2040-02-27": "Thaipusam", + "2040-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2040-03-23": "Birthday of the Sultan of Johor", + "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2040-03-30": "Good Friday", + "2040-04-15": "Declaration of Malacca as a Historical City", + "2040-04-16": "Declaration of Malacca as a Historical City [In lieu]", + "2040-04-26": "Birthday of the Sultan of Terengganu", + "2040-05-01": "Labour Day", + "2040-05-22": "Hari Hol of Pahang", + "2040-05-25": "Vesak Day", + "2040-05-27": "Vesak Day [In lieu]", + "2040-05-30": "Pesta Kaamatan", + "2040-05-31": "Pesta Kaamatan (Second day)", + "2040-06-01": "Gawai Dayak", + "2040-06-02": "Gawai Dayak (Second day)", + "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", + "2040-06-17": "Birthday of The Sultan of Kedah", + "2040-07-07": "George Town Heritage Day", + "2040-07-14": "Birthday of the Governor of Penang", + "2040-07-17": "Birthday of The Raja of Perlis", + "2040-07-22": "Sarawak Day", + "2040-07-23": "Sarawak Day [In lieu]", + "2040-07-30": "Birthday of the Sultan of Pahang", + "2040-08-05": "Isra and Mi'raj* (*estimated)", + "2040-08-06": "Isra and Mi'raj* (*estimated) [In lieu]", + "2040-08-24": "Birthday of the Governor of Malacca", + "2040-08-31": "National Day", + "2040-09-02": "National Day [In lieu]", + "2040-09-07": "Beginning of Ramadan* (*estimated)", + "2040-09-09": "Beginning of Ramadan* (*estimated) [In lieu]", + "2040-09-16": "Malaysia Day", + "2040-09-17": "Malaysia Day [In lieu]", + "2040-09-23": "Nuzul Al-Quran Day* (*estimated)", + "2040-09-24": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "2040-10-06": "Birthday of the Governor of Sabah", + "2040-10-07": "Hari Raya Puasa* (*estimated)", + "2040-10-08": "Second day of Hari Raya Puasa* (*estimated)", + "2040-10-09": "Hari Raya Puasa* (*estimated) [In lieu]", + "2040-10-13": "Birthday of the Governor of Sarawak", + "2040-11-02": "Birthday of the Sultan of Perak", + "2040-11-03": "Deepavali", + "2040-11-04": "Deepavali [In lieu]", + "2040-11-11": "Birthday of the Sultan of Kelantan", + "2040-11-12": "Birthday of the Sultan of Kelantan", + "2040-12-11": "Birthday of The Sultan of Selangor", + "2040-12-13": "Arafat Day* (*estimated)", + "2040-12-14": "Hari Raya Haji* (*estimated)", + "2040-12-15": "Hari Raya Haji* (*estimated)", + "2040-12-16": "Hari Raya Haji* (*estimated) [In lieu]", + "2040-12-24": "Christmas Eve", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-01-04": "Awal Muharram (Hijri New Year)* (*estimated)", + "2041-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2041-02-01": "Chinese New Year; Federal Territory Day", + "2041-02-02": "Chinese New Year Holiday", + "2041-02-03": "Chinese New Year Holiday [In lieu]; Chinese New Year [In lieu]", + "2041-02-07": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2041-02-15": "Thaipusam", + "2041-02-17": "Thaipusam [In lieu]", + "2041-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2041-03-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2041-03-23": "Birthday of the Sultan of Johor", + "2041-04-15": "Declaration of Malacca as a Historical City", + "2041-04-19": "Good Friday", + "2041-04-26": "Birthday of the Sultan of Terengganu", + "2041-05-01": "Labour Day", + "2041-05-14": "Vesak Day", + "2041-05-22": "Hari Hol of Pahang", + "2041-05-30": "Pesta Kaamatan", + "2041-05-31": "Pesta Kaamatan (Second day)", + "2041-06-01": "Gawai Dayak", + "2041-06-02": "Gawai Dayak (Second day)", + "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", + "2041-06-04": "Gawai Dayak (Second day) [In lieu]", + "2041-06-16": "Birthday of The Sultan of Kedah", + "2041-07-07": "George Town Heritage Day", + "2041-07-08": "George Town Heritage Day [In lieu]", + "2041-07-13": "Birthday of the Governor of Penang", + "2041-07-17": "Birthday of The Raja of Perlis", + "2041-07-22": "Sarawak Day", + "2041-07-25": "Isra and Mi'raj* (*estimated)", + "2041-07-30": "Birthday of the Sultan of Pahang", + "2041-08-24": "Birthday of the Governor of Malacca", + "2041-08-28": "Beginning of Ramadan* (*estimated)", + "2041-08-31": "National Day", + "2041-09-01": "National Day [In lieu]", + "2041-09-13": "Nuzul Al-Quran Day* (*estimated)", + "2041-09-16": "Malaysia Day", + "2041-09-26": "Hari Raya Puasa* (*estimated)", + "2041-09-27": "Second day of Hari Raya Puasa* (*estimated)", + "2041-09-29": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2041-10-05": "Birthday of the Governor of Sabah", + "2041-10-12": "Birthday of the Governor of Sarawak", + "2041-10-23": "Deepavali", + "2041-11-01": "Birthday of the Sultan of Perak", + "2041-11-11": "Birthday of the Sultan of Kelantan", + "2041-11-12": "Birthday of the Sultan of Kelantan", + "2041-12-03": "Arafat Day* (*estimated)", + "2041-12-04": "Hari Raya Haji* (*estimated)", + "2041-12-05": "Hari Raya Haji* (*estimated)", + "2041-12-11": "Birthday of The Sultan of Selangor", + "2041-12-24": "Awal Muharram (Hijri New Year)* (*estimated); Christmas Eve", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-01-07": "Thaipusam", + "2042-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2042-01-22": "Chinese New Year", + "2042-01-23": "Chinese New Year Holiday", + "2042-01-28": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2042-02-01": "Federal Territory Day", + "2042-03-04": "Anniversary of the Installation of the Sultan of Terengganu; Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2042-03-23": "Birthday of the Sultan of Johor", + "2042-04-04": "Good Friday", + "2042-04-15": "Declaration of Malacca as a Historical City", + "2042-04-26": "Birthday of the Sultan of Terengganu", + "2042-04-27": "Birthday of the Sultan of Terengganu [In lieu]", + "2042-05-01": "Labour Day", + "2042-05-04": "Vesak Day", + "2042-05-05": "Vesak Day [In lieu]", + "2042-05-22": "Hari Hol of Pahang", + "2042-05-30": "Pesta Kaamatan", + "2042-05-31": "Pesta Kaamatan (Second day)", + "2042-06-01": "Gawai Dayak", + "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", + "2042-06-03": "Gawai Dayak [In lieu]", + "2042-06-15": "Birthday of The Sultan of Kedah", + "2042-07-07": "George Town Heritage Day", + "2042-07-12": "Birthday of the Governor of Penang", + "2042-07-15": "Isra and Mi'raj* (*estimated)", + "2042-07-17": "Birthday of The Raja of Perlis", + "2042-07-22": "Sarawak Day", + "2042-07-30": "Birthday of the Sultan of Pahang", + "2042-08-17": "Beginning of Ramadan* (*estimated)", + "2042-08-18": "Beginning of Ramadan* (*estimated) [In lieu]", + "2042-08-24": "Birthday of the Governor of Malacca", + "2042-08-25": "Birthday of the Governor of Malacca [In lieu]", + "2042-08-31": "National Day", + "2042-09-01": "National Day [In lieu]", + "2042-09-02": "Nuzul Al-Quran Day* (*estimated)", + "2042-09-15": "Hari Raya Puasa* (*estimated)", + "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa* (*estimated)", + "2042-10-04": "Birthday of the Governor of Sabah", + "2042-10-11": "Birthday of the Governor of Sarawak", + "2042-11-07": "Birthday of the Sultan of Perak", + "2042-11-11": "Birthday of the Sultan of Kelantan; Deepavali", + "2042-11-12": "Birthday of the Sultan of Kelantan", + "2042-11-22": "Arafat Day* (*estimated)", + "2042-11-23": "Hari Raya Haji* (*estimated)", + "2042-11-24": "Hari Raya Haji* (*estimated); Hari Raya Haji* (*estimated) [In lieu]", + "2042-11-25": "Arafat Day* (*estimated) [In lieu]; Hari Raya Haji* (*estimated) [In lieu]", + "2042-12-11": "Birthday of The Sultan of Selangor", + "2042-12-14": "Awal Muharram (Hijri New Year)* (*estimated)", + "2042-12-24": "Christmas Eve", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2043-01-17": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2043-02-01": "Federal Territory Day", + "2043-02-02": "Federal Territory Day [In lieu]", + "2043-02-10": "Chinese New Year", + "2043-02-11": "Chinese New Year Holiday", + "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2043-02-24": "Thaipusam", + "2043-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2043-03-23": "Birthday of the Sultan of Johor", + "2043-03-27": "Good Friday", + "2043-04-15": "Declaration of Malacca as a Historical City", + "2043-04-26": "Birthday of the Sultan of Terengganu", + "2043-05-01": "Labour Day", + "2043-05-03": "Labour Day [In lieu]", + "2043-05-22": "Hari Hol of Pahang", + "2043-05-23": "Vesak Day", + "2043-05-24": "Vesak Day [In lieu]", + "2043-05-30": "Pesta Kaamatan", + "2043-05-31": "Pesta Kaamatan (Second day)", + "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", + "2043-06-02": "Gawai Dayak (Second day)", + "2043-06-21": "Birthday of The Sultan of Kedah", + "2043-07-04": "Isra and Mi'raj* (*estimated)", + "2043-07-05": "Isra and Mi'raj* (*estimated) [In lieu]", + "2043-07-07": "George Town Heritage Day", + "2043-07-11": "Birthday of the Governor of Penang", + "2043-07-17": "Birthday of The Raja of Perlis", + "2043-07-22": "Sarawak Day", + "2043-07-30": "Birthday of the Sultan of Pahang", + "2043-08-06": "Beginning of Ramadan* (*estimated)", + "2043-08-22": "Nuzul Al-Quran Day* (*estimated)", + "2043-08-23": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "2043-08-24": "Birthday of the Governor of Malacca", + "2043-08-31": "National Day", + "2043-09-04": "Hari Raya Puasa* (*estimated)", + "2043-09-05": "Second day of Hari Raya Puasa* (*estimated)", + "2043-09-06": "Hari Raya Puasa* (*estimated) [In lieu]; Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2043-09-16": "Malaysia Day", + "2043-10-03": "Birthday of the Governor of Sabah", + "2043-10-10": "Birthday of the Governor of Sarawak", + "2043-10-31": "Deepavali", + "2043-11-01": "Deepavali [In lieu]", + "2043-11-06": "Birthday of the Sultan of Perak", + "2043-11-11": "Arafat Day* (*estimated); Birthday of the Sultan of Kelantan", + "2043-11-12": "Birthday of the Sultan of Kelantan; Hari Raya Haji* (*estimated)", + "2043-11-13": "Hari Raya Haji* (*estimated)", + "2043-11-15": "Hari Raya Haji* (*estimated) [In lieu]", + "2043-12-03": "Awal Muharram (Hijri New Year)* (*estimated)", + "2043-12-11": "Birthday of The Sultan of Selangor", + "2043-12-24": "Christmas Eve", + "2043-12-25": "Christmas Day", + "2043-12-27": "Christmas Day [In lieu]", + "2044-01-01": "New Year's Day", + "2044-01-07": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2044-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2044-01-30": "Chinese New Year", + "2044-01-31": "Chinese New Year Holiday", + "2044-02-01": "Chinese New Year Holiday [In lieu]; Chinese New Year [In lieu]; Federal Territory Day", + "2044-02-02": "Chinese New Year Holiday [In lieu]", + "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2044-02-14": "Thaipusam", + "2044-02-15": "Thaipusam [In lieu]", + "2044-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2044-03-23": "Birthday of the Sultan of Johor", + "2044-04-15": "Declaration of Malacca as a Historical City; Good Friday", + "2044-04-26": "Birthday of the Sultan of Terengganu", + "2044-05-01": "Labour Day", + "2044-05-02": "Labour Day [In lieu]", + "2044-05-12": "Vesak Day", + "2044-05-22": "Hari Hol of Pahang", + "2044-05-23": "Hari Hol of Pahang [In lieu]", + "2044-05-30": "Pesta Kaamatan", + "2044-05-31": "Pesta Kaamatan (Second day)", + "2044-06-01": "Gawai Dayak", + "2044-06-02": "Gawai Dayak (Second day)", + "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", + "2044-06-19": "Birthday of The Sultan of Kedah", + "2044-06-23": "Isra and Mi'raj* (*estimated)", + "2044-07-07": "George Town Heritage Day", + "2044-07-09": "Birthday of the Governor of Penang", + "2044-07-17": "Birthday of The Raja of Perlis", + "2044-07-18": "Birthday of The Raja of Perlis [In lieu]", + "2044-07-22": "Sarawak Day", + "2044-07-26": "Beginning of Ramadan* (*estimated)", + "2044-07-30": "Birthday of the Sultan of Pahang", + "2044-08-11": "Nuzul Al-Quran Day* (*estimated)", + "2044-08-24": "Birthday of the Governor of Malacca; Hari Raya Puasa* (*estimated)", + "2044-08-25": "Second day of Hari Raya Puasa* (*estimated)", + "2044-08-31": "National Day", + "2044-09-16": "Malaysia Day", + "2044-09-18": "Malaysia Day [In lieu]", + "2044-10-01": "Birthday of the Governor of Sabah", + "2044-10-08": "Birthday of the Governor of Sarawak", + "2044-10-30": "Arafat Day* (*estimated)", + "2044-10-31": "Hari Raya Haji* (*estimated)", + "2044-11-01": "Hari Raya Haji* (*estimated)", + "2044-11-04": "Birthday of the Sultan of Perak", + "2044-11-11": "Birthday of the Sultan of Kelantan", + "2044-11-12": "Birthday of the Sultan of Kelantan", + "2044-11-17": "Deepavali", + "2044-11-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2044-12-11": "Birthday of The Sultan of Selangor", + "2044-12-12": "Birthday of The Sultan of Selangor [In lieu]", + "2044-12-24": "Christmas Eve", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day [In lieu]; Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day [In lieu]", + "2045-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2045-02-01": "Federal Territory Day", + "2045-02-17": "Chinese New Year", + "2045-02-18": "Chinese New Year Holiday", + "2045-02-19": "Chinese New Year Holiday [In lieu]; Chinese New Year [In lieu]", + "2045-03-04": "Anniversary of the Installation of the Sultan of Terengganu; Thaipusam", + "2045-03-05": "Anniversary of the Installation of the Sultan of Terengganu [In lieu]", + "2045-03-23": "Birthday of the Sultan of Johor", + "2045-04-07": "Good Friday", + "2045-04-15": "Declaration of Malacca as a Historical City", + "2045-04-26": "Birthday of the Sultan of Terengganu", + "2045-05-01": "Labour Day; Vesak Day", + "2045-05-22": "Hari Hol of Pahang", + "2045-05-30": "Pesta Kaamatan", + "2045-05-31": "Pesta Kaamatan (Second day)", + "2045-06-01": "Gawai Dayak", + "2045-06-02": "Gawai Dayak (Second day)", + "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", + "2045-06-13": "Isra and Mi'raj* (*estimated)", + "2045-06-18": "Birthday of The Sultan of Kedah", + "2045-07-07": "George Town Heritage Day", + "2045-07-08": "Birthday of the Governor of Penang", + "2045-07-15": "Beginning of Ramadan* (*estimated)", + "2045-07-17": "Birthday of The Raja of Perlis", + "2045-07-22": "Sarawak Day", + "2045-07-30": "Birthday of the Sultan of Pahang", + "2045-07-31": "Nuzul Al-Quran Day* (*estimated)", + "2045-08-01": "Birthday of the Sultan of Pahang [In lieu]", + "2045-08-14": "Hari Raya Puasa* (*estimated)", + "2045-08-15": "Second day of Hari Raya Puasa* (*estimated)", + "2045-08-24": "Birthday of the Governor of Malacca", + "2045-08-31": "National Day", + "2045-09-16": "Malaysia Day", + "2045-09-17": "Malaysia Day [In lieu]", + "2045-10-07": "Birthday of the Governor of Sabah", + "2045-10-14": "Birthday of the Governor of Sarawak", + "2045-10-20": "Arafat Day* (*estimated)", + "2045-10-21": "Hari Raya Haji* (*estimated)", + "2045-10-22": "Hari Raya Haji* (*estimated)", + "2045-10-23": "Hari Raya Haji* (*estimated) [In lieu]", + "2045-11-03": "Birthday of the Sultan of Perak", + "2045-11-07": "Deepavali", + "2045-11-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "2045-11-11": "Birthday of the Sultan of Kelantan", + "2045-11-12": "Birthday of the Sultan of Kelantan", + "2045-12-11": "Birthday of The Sultan of Selangor", + "2045-12-15": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2045-12-24": "Christmas Eve", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2046-01-15": "Birthday of the Sultan of Negeri Sembilan [In lieu]", + "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2046-01-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2046-02-01": "Federal Territory Day", + "2046-02-06": "Chinese New Year", + "2046-02-07": "Chinese New Year Holiday", + "2046-02-21": "Thaipusam", + "2046-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2046-03-23": "Birthday of the Sultan of Johor; Good Friday", + "2046-04-15": "Declaration of Malacca as a Historical City", + "2046-04-16": "Declaration of Malacca as a Historical City [In lieu]", + "2046-04-26": "Birthday of the Sultan of Terengganu", + "2046-05-01": "Labour Day", + "2046-05-20": "Vesak Day", + "2046-05-21": "Vesak Day [In lieu]", + "2046-05-22": "Hari Hol of Pahang", + "2046-05-30": "Pesta Kaamatan", + "2046-05-31": "Pesta Kaamatan (Second day)", + "2046-06-01": "Gawai Dayak", + "2046-06-02": "Gawai Dayak (Second day); Isra and Mi'raj* (*estimated)", + "2046-06-03": "Isra and Mi'raj* (*estimated) [In lieu]", + "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", + "2046-06-17": "Birthday of The Sultan of Kedah", + "2046-07-05": "Beginning of Ramadan* (*estimated)", + "2046-07-07": "George Town Heritage Day", + "2046-07-14": "Birthday of the Governor of Penang", + "2046-07-17": "Birthday of The Raja of Perlis", + "2046-07-21": "Nuzul Al-Quran Day* (*estimated)", + "2046-07-22": "Nuzul Al-Quran Day* (*estimated) [In lieu]; Sarawak Day", + "2046-07-23": "Sarawak Day [In lieu]", + "2046-07-30": "Birthday of the Sultan of Pahang", + "2046-08-03": "Hari Raya Puasa* (*estimated)", + "2046-08-04": "Second day of Hari Raya Puasa* (*estimated)", + "2046-08-05": "Hari Raya Puasa* (*estimated) [In lieu]; Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2046-08-24": "Birthday of the Governor of Malacca", + "2046-08-31": "National Day", + "2046-09-02": "National Day [In lieu]", + "2046-09-16": "Malaysia Day", + "2046-09-17": "Malaysia Day [In lieu]", + "2046-10-06": "Birthday of the Governor of Sabah", + "2046-10-09": "Arafat Day* (*estimated)", + "2046-10-10": "Hari Raya Haji* (*estimated)", + "2046-10-11": "Hari Raya Haji* (*estimated)", + "2046-10-13": "Birthday of the Governor of Sarawak", + "2046-10-27": "Deepavali", + "2046-10-28": "Deepavali [In lieu]", + "2046-10-31": "Awal Muharram (Hijri New Year)* (*estimated)", + "2046-11-02": "Birthday of the Sultan of Perak", + "2046-11-11": "Birthday of the Sultan of Kelantan", + "2046-11-12": "Birthday of the Sultan of Kelantan", + "2046-12-04": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2046-12-11": "Birthday of The Sultan of Selangor", + "2046-12-24": "Christmas Eve", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2047-01-11": "Thaipusam", + "2047-01-13": "Thaipusam [In lieu]", + "2047-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2047-01-26": "Chinese New Year", + "2047-01-27": "Chinese New Year Holiday", + "2047-01-28": "Chinese New Year Holiday [In lieu]; Chinese New Year [In lieu]", + "2047-02-01": "Federal Territory Day", + "2047-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2047-03-23": "Birthday of the Sultan of Johor", + "2047-04-12": "Good Friday", + "2047-04-15": "Declaration of Malacca as a Historical City", + "2047-04-26": "Birthday of the Sultan of Terengganu", + "2047-05-01": "Labour Day", + "2047-05-09": "Vesak Day", + "2047-05-22": "Hari Hol of Pahang; Isra and Mi'raj* (*estimated)", + "2047-05-30": "Pesta Kaamatan", + "2047-05-31": "Pesta Kaamatan (Second day)", + "2047-06-01": "Gawai Dayak", + "2047-06-02": "Gawai Dayak (Second day)", + "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", + "2047-06-04": "Gawai Dayak (Second day) [In lieu]", + "2047-06-16": "Birthday of The Sultan of Kedah", + "2047-06-24": "Beginning of Ramadan* (*estimated)", + "2047-07-07": "George Town Heritage Day", + "2047-07-08": "George Town Heritage Day [In lieu]", + "2047-07-10": "Nuzul Al-Quran Day* (*estimated)", + "2047-07-13": "Birthday of the Governor of Penang", + "2047-07-17": "Birthday of The Raja of Perlis", + "2047-07-22": "Sarawak Day", + "2047-07-24": "Hari Raya Puasa* (*estimated)", + "2047-07-25": "Second day of Hari Raya Puasa* (*estimated)", + "2047-07-30": "Birthday of the Sultan of Pahang", + "2047-08-24": "Birthday of the Governor of Malacca", + "2047-08-31": "National Day", + "2047-09-01": "National Day [In lieu]", + "2047-09-16": "Malaysia Day", + "2047-09-29": "Arafat Day* (*estimated)", + "2047-09-30": "Hari Raya Haji* (*estimated)", + "2047-10-01": "Hari Raya Haji* (*estimated)", + "2047-10-05": "Birthday of the Governor of Sabah", + "2047-10-12": "Birthday of the Governor of Sarawak", + "2047-10-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "2047-11-01": "Birthday of the Sultan of Perak", + "2047-11-11": "Birthday of the Sultan of Kelantan", + "2047-11-12": "Birthday of the Sultan of Kelantan", + "2047-11-15": "Deepavali", + "2047-11-17": "Deepavali [In lieu]", + "2047-11-24": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2047-12-11": "Birthday of The Sultan of Selangor", + "2047-12-24": "Christmas Eve", + "2047-12-25": "Christmas Day", + "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2048-01-01": "New Year's Day", + "2048-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2048-02-01": "Federal Territory Day", + "2048-02-14": "Chinese New Year", + "2048-02-15": "Chinese New Year Holiday", + "2048-02-16": "Chinese New Year Holiday [In lieu]; Chinese New Year [In lieu]", + "2048-02-28": "Thaipusam", + "2048-03-01": "Thaipusam [In lieu]", + "2048-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2048-03-23": "Birthday of the Sultan of Johor", + "2048-04-03": "Good Friday", + "2048-04-15": "Declaration of Malacca as a Historical City", + "2048-04-26": "Birthday of the Sultan of Terengganu", + "2048-05-01": "Labour Day", + "2048-05-03": "Labour Day [In lieu]", + "2048-05-10": "Isra and Mi'raj* (*estimated)", + "2048-05-11": "Isra and Mi'raj* (*estimated) [In lieu]", + "2048-05-22": "Hari Hol of Pahang", + "2048-05-27": "Vesak Day", + "2048-05-30": "Pesta Kaamatan", + "2048-05-31": "Pesta Kaamatan (Second day)", + "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", + "2048-06-02": "Gawai Dayak (Second day)", + "2048-06-12": "Beginning of Ramadan* (*estimated)", + "2048-06-14": "Beginning of Ramadan* (*estimated) [In lieu]", + "2048-06-21": "Birthday of The Sultan of Kedah", + "2048-06-28": "Nuzul Al-Quran Day* (*estimated)", + "2048-06-29": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "2048-07-07": "George Town Heritage Day", + "2048-07-11": "Birthday of the Governor of Penang", + "2048-07-12": "Hari Raya Puasa* (*estimated)", + "2048-07-13": "Second day of Hari Raya Puasa* (*estimated)", + "2048-07-14": "Hari Raya Puasa* (*estimated) [In lieu]", + "2048-07-17": "Birthday of The Raja of Perlis", + "2048-07-22": "Sarawak Day", + "2048-07-30": "Birthday of the Sultan of Pahang", + "2048-08-24": "Birthday of the Governor of Malacca", + "2048-08-31": "National Day", + "2048-09-16": "Malaysia Day", + "2048-09-18": "Arafat Day* (*estimated)", + "2048-09-19": "Hari Raya Haji* (*estimated)", + "2048-09-20": "Hari Raya Haji* (*estimated)", + "2048-09-21": "Hari Raya Haji* (*estimated) [In lieu]", + "2048-10-03": "Birthday of the Governor of Sabah", + "2048-10-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "2048-10-10": "Birthday of the Governor of Sarawak", + "2048-11-04": "Deepavali", + "2048-11-06": "Birthday of the Sultan of Perak", + "2048-11-11": "Birthday of the Sultan of Kelantan", + "2048-11-12": "Birthday of the Sultan of Kelantan; Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2048-12-11": "Birthday of The Sultan of Selangor", + "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2048-12-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2048-12-24": "Christmas Eve", + "2048-12-25": "Christmas Day", + "2048-12-27": "Christmas Day [In lieu]", + "2049-01-01": "New Year's Day", + "2049-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2049-02-01": "Federal Territory Day", + "2049-02-02": "Chinese New Year", + "2049-02-03": "Chinese New Year Holiday", + "2049-02-17": "Thaipusam", + "2049-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2049-03-23": "Birthday of the Sultan of Johor", + "2049-04-15": "Declaration of Malacca as a Historical City", + "2049-04-16": "Good Friday", + "2049-04-26": "Birthday of the Sultan of Terengganu", + "2049-04-29": "Isra and Mi'raj* (*estimated)", + "2049-05-01": "Labour Day", + "2049-05-02": "Labour Day [In lieu]", + "2049-05-16": "Vesak Day", + "2049-05-17": "Vesak Day [In lieu]", + "2049-05-22": "Hari Hol of Pahang", + "2049-05-30": "Pesta Kaamatan", + "2049-05-31": "Pesta Kaamatan (Second day)", + "2049-06-01": "Gawai Dayak", + "2049-06-02": "Beginning of Ramadan* (*estimated); Gawai Dayak (Second day)", + "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", + "2049-06-18": "Nuzul Al-Quran Day* (*estimated)", + "2049-06-20": "Birthday of The Sultan of Kedah", + "2049-07-01": "Hari Raya Puasa* (*estimated)", + "2049-07-02": "Second day of Hari Raya Puasa* (*estimated)", + "2049-07-04": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2049-07-07": "George Town Heritage Day", + "2049-07-10": "Birthday of the Governor of Penang", + "2049-07-17": "Birthday of The Raja of Perlis", + "2049-07-22": "Sarawak Day", + "2049-07-30": "Birthday of the Sultan of Pahang", + "2049-08-24": "Birthday of the Governor of Malacca", + "2049-08-31": "National Day", + "2049-09-07": "Arafat Day* (*estimated)", + "2049-09-08": "Hari Raya Haji* (*estimated)", + "2049-09-09": "Hari Raya Haji* (*estimated)", + "2049-09-16": "Malaysia Day", + "2049-09-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2049-10-02": "Birthday of the Governor of Sabah", + "2049-10-09": "Birthday of the Governor of Sarawak", + "2049-10-25": "Deepavali", + "2049-11-02": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2049-11-05": "Birthday of the Sultan of Perak", + "2049-11-11": "Birthday of the Sultan of Kelantan", + "2049-11-12": "Birthday of the Sultan of Kelantan", + "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2049-12-11": "Birthday of The Sultan of Selangor", + "2049-12-24": "Christmas Eve", + "2049-12-25": "Christmas Day", + "2049-12-26": "Christmas Day [In lieu]", + "2050-01-01": "New Year's Day", + "2050-01-08": "Thaipusam", + "2050-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2050-01-23": "Chinese New Year", + "2050-01-24": "Chinese New Year Holiday", + "2050-01-25": "Chinese New Year [In lieu]", + "2050-02-01": "Federal Territory Day", + "2050-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2050-03-23": "Birthday of the Sultan of Johor", + "2050-04-08": "Good Friday", + "2050-04-15": "Declaration of Malacca as a Historical City", + "2050-04-19": "Isra and Mi'raj* (*estimated)", + "2050-04-26": "Birthday of the Sultan of Terengganu", + "2050-05-01": "Labour Day", + "2050-05-02": "Labour Day [In lieu]", + "2050-05-05": "Vesak Day", + "2050-05-22": "Beginning of Ramadan* (*estimated); Hari Hol of Pahang", + "2050-05-23": "Beginning of Ramadan* (*estimated) [In lieu]; Hari Hol of Pahang [In lieu]", + "2050-05-30": "Pesta Kaamatan", + "2050-05-31": "Pesta Kaamatan (Second day)", + "2050-06-01": "Gawai Dayak", + "2050-06-02": "Gawai Dayak (Second day)", + "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", + "2050-06-07": "Nuzul Al-Quran Day* (*estimated)", + "2050-06-19": "Birthday of The Sultan of Kedah", + "2050-06-20": "Hari Raya Puasa* (*estimated)", + "2050-06-21": "Second day of Hari Raya Puasa* (*estimated)", + "2050-07-07": "George Town Heritage Day", + "2050-07-09": "Birthday of the Governor of Penang", + "2050-07-17": "Birthday of The Raja of Perlis", + "2050-07-18": "Birthday of The Raja of Perlis [In lieu]", + "2050-07-22": "Sarawak Day", + "2050-07-30": "Birthday of the Sultan of Pahang", + "2050-08-24": "Birthday of the Governor of Malacca", + "2050-08-27": "Arafat Day* (*estimated)", + "2050-08-28": "Hari Raya Haji* (*estimated)", + "2050-08-29": "Hari Raya Haji* (*estimated); Hari Raya Haji* (*estimated) [In lieu]", + "2050-08-30": "Arafat Day* (*estimated) [In lieu]; Hari Raya Haji* (*estimated) [In lieu]", + "2050-08-31": "National Day", + "2050-09-16": "Malaysia Day", + "2050-09-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "2050-09-18": "Malaysia Day [In lieu]", + "2050-10-01": "Birthday of the Governor of Sabah", + "2050-10-08": "Birthday of the Governor of Sarawak", + "2050-10-22": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2050-11-04": "Birthday of the Sultan of Perak", + "2050-11-11": "Birthday of the Sultan of Kelantan", + "2050-11-12": "Birthday of the Sultan of Kelantan; Deepavali", + "2050-11-13": "Deepavali [In lieu]", + "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2050-11-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2050-12-11": "Birthday of The Sultan of Selangor", + "2050-12-12": "Birthday of The Sultan of Selangor [In lieu]", + "2050-12-24": "Christmas Eve", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day [In lieu]" +} diff --git a/snapshots/countries/MZ.json b/snapshots/countries/MZ.json new file mode 100644 index 000000000..19b374c09 --- /dev/null +++ b/snapshots/countries/MZ.json @@ -0,0 +1,765 @@ +{ + "1975-01-01": "International Fraternalism Day", + "1975-02-03": "Heroes' Day", + "1975-04-07": "Women's Day", + "1975-05-01": "International Workers' Day", + "1975-06-25": "Independence Day", + "1975-09-07": "Victory Day", + "1975-09-08": "Victory Day (Observed)", + "1975-09-25": "Armed Forces Day", + "1975-12-25": "Family Day", + "1976-01-01": "International Fraternalism Day", + "1976-02-03": "Heroes' Day", + "1976-04-07": "Women's Day", + "1976-05-01": "International Workers' Day", + "1976-06-25": "Independence Day", + "1976-09-07": "Victory Day", + "1976-09-25": "Armed Forces Day", + "1976-12-25": "Family Day", + "1977-01-01": "International Fraternalism Day", + "1977-02-03": "Heroes' Day", + "1977-04-07": "Women's Day", + "1977-05-01": "International Workers' Day", + "1977-05-02": "International Workers' Day (Observed)", + "1977-06-25": "Independence Day", + "1977-09-07": "Victory Day", + "1977-09-25": "Armed Forces Day", + "1977-09-26": "Armed Forces Day (Observed)", + "1977-12-25": "Family Day", + "1977-12-26": "Family Day (Observed)", + "1978-01-01": "International Fraternalism Day", + "1978-01-02": "International Fraternalism Day (Observed)", + "1978-02-03": "Heroes' Day", + "1978-04-07": "Women's Day", + "1978-05-01": "International Workers' Day", + "1978-06-25": "Independence Day", + "1978-06-26": "Independence Day (Observed)", + "1978-09-07": "Victory Day", + "1978-09-25": "Armed Forces Day", + "1978-12-25": "Family Day", + "1979-01-01": "International Fraternalism Day", + "1979-02-03": "Heroes' Day", + "1979-04-07": "Women's Day", + "1979-05-01": "International Workers' Day", + "1979-06-25": "Independence Day", + "1979-09-07": "Victory Day", + "1979-09-25": "Armed Forces Day", + "1979-12-25": "Family Day", + "1980-01-01": "International Fraternalism Day", + "1980-02-03": "Heroes' Day", + "1980-02-04": "Heroes' Day (Observed)", + "1980-04-07": "Women's Day", + "1980-05-01": "International Workers' Day", + "1980-06-25": "Independence Day", + "1980-09-07": "Victory Day", + "1980-09-08": "Victory Day (Observed)", + "1980-09-25": "Armed Forces Day", + "1980-12-25": "Family Day", + "1981-01-01": "International Fraternalism Day", + "1981-02-03": "Heroes' Day", + "1981-04-07": "Women's Day", + "1981-05-01": "International Workers' Day", + "1981-06-25": "Independence Day", + "1981-09-07": "Victory Day", + "1981-09-25": "Armed Forces Day", + "1981-12-25": "Family Day", + "1982-01-01": "International Fraternalism Day", + "1982-02-03": "Heroes' Day", + "1982-04-07": "Women's Day", + "1982-05-01": "International Workers' Day", + "1982-06-25": "Independence Day", + "1982-09-07": "Victory Day", + "1982-09-25": "Armed Forces Day", + "1982-12-25": "Family Day", + "1983-01-01": "International Fraternalism Day", + "1983-02-03": "Heroes' Day", + "1983-04-07": "Women's Day", + "1983-05-01": "International Workers' Day", + "1983-05-02": "International Workers' Day (Observed)", + "1983-06-25": "Independence Day", + "1983-09-07": "Victory Day", + "1983-09-25": "Armed Forces Day", + "1983-09-26": "Armed Forces Day (Observed)", + "1983-12-25": "Family Day", + "1983-12-26": "Family Day (Observed)", + "1984-01-01": "International Fraternalism Day", + "1984-01-02": "International Fraternalism Day (Observed)", + "1984-02-03": "Heroes' Day", + "1984-04-07": "Women's Day", + "1984-05-01": "International Workers' Day", + "1984-06-25": "Independence Day", + "1984-09-07": "Victory Day", + "1984-09-25": "Armed Forces Day", + "1984-12-25": "Family Day", + "1985-01-01": "International Fraternalism Day", + "1985-02-03": "Heroes' Day", + "1985-02-04": "Heroes' Day (Observed)", + "1985-04-07": "Women's Day", + "1985-04-08": "Women's Day (Observed)", + "1985-05-01": "International Workers' Day", + "1985-06-25": "Independence Day", + "1985-09-07": "Victory Day", + "1985-09-25": "Armed Forces Day", + "1985-12-25": "Family Day", + "1986-01-01": "International Fraternalism Day", + "1986-02-03": "Heroes' Day", + "1986-04-07": "Women's Day", + "1986-05-01": "International Workers' Day", + "1986-06-25": "Independence Day", + "1986-09-07": "Victory Day", + "1986-09-08": "Victory Day (Observed)", + "1986-09-25": "Armed Forces Day", + "1986-12-25": "Family Day", + "1987-01-01": "International Fraternalism Day", + "1987-02-03": "Heroes' Day", + "1987-04-07": "Women's Day", + "1987-05-01": "International Workers' Day", + "1987-06-25": "Independence Day", + "1987-09-07": "Victory Day", + "1987-09-25": "Armed Forces Day", + "1987-12-25": "Family Day", + "1988-01-01": "International Fraternalism Day", + "1988-02-03": "Heroes' Day", + "1988-04-07": "Women's Day", + "1988-05-01": "International Workers' Day", + "1988-05-02": "International Workers' Day (Observed)", + "1988-06-25": "Independence Day", + "1988-09-07": "Victory Day", + "1988-09-25": "Armed Forces Day", + "1988-09-26": "Armed Forces Day (Observed)", + "1988-12-25": "Family Day", + "1988-12-26": "Family Day (Observed)", + "1989-01-01": "International Fraternalism Day", + "1989-01-02": "International Fraternalism Day (Observed)", + "1989-02-03": "Heroes' Day", + "1989-04-07": "Women's Day", + "1989-05-01": "International Workers' Day", + "1989-06-25": "Independence Day", + "1989-06-26": "Independence Day (Observed)", + "1989-09-07": "Victory Day", + "1989-09-25": "Armed Forces Day", + "1989-12-25": "Family Day", + "1990-01-01": "International Fraternalism Day", + "1990-02-03": "Heroes' Day", + "1990-04-07": "Women's Day", + "1990-05-01": "International Workers' Day", + "1990-06-25": "Independence Day", + "1990-09-07": "Victory Day", + "1990-09-25": "Armed Forces Day", + "1990-12-25": "Family Day", + "1991-01-01": "International Fraternalism Day", + "1991-02-03": "Heroes' Day", + "1991-02-04": "Heroes' Day (Observed)", + "1991-04-07": "Women's Day", + "1991-04-08": "Women's Day (Observed)", + "1991-05-01": "International Workers' Day", + "1991-06-25": "Independence Day", + "1991-09-07": "Victory Day", + "1991-09-25": "Armed Forces Day", + "1991-12-25": "Family Day", + "1992-01-01": "International Fraternalism Day", + "1992-02-03": "Heroes' Day", + "1992-04-07": "Women's Day", + "1992-05-01": "International Workers' Day", + "1992-06-25": "Independence Day", + "1992-09-07": "Victory Day", + "1992-09-25": "Armed Forces Day", + "1992-12-25": "Family Day", + "1993-01-01": "International Fraternalism Day", + "1993-02-03": "Heroes' Day", + "1993-04-07": "Women's Day", + "1993-05-01": "International Workers' Day", + "1993-06-25": "Independence Day", + "1993-09-07": "Victory Day", + "1993-09-25": "Armed Forces Day", + "1993-10-04": "Peace and Reconciliation Day", + "1993-12-25": "Family Day", + "1994-01-01": "International Fraternalism Day", + "1994-02-03": "Heroes' Day", + "1994-04-07": "Women's Day", + "1994-05-01": "International Workers' Day", + "1994-05-02": "International Workers' Day (Observed)", + "1994-06-25": "Independence Day", + "1994-09-07": "Victory Day", + "1994-09-25": "Armed Forces Day", + "1994-09-26": "Armed Forces Day (Observed)", + "1994-10-04": "Peace and Reconciliation Day", + "1994-12-25": "Family Day", + "1994-12-26": "Family Day (Observed)", + "1995-01-01": "International Fraternalism Day", + "1995-01-02": "International Fraternalism Day (Observed)", + "1995-02-03": "Heroes' Day", + "1995-04-07": "Women's Day", + "1995-05-01": "International Workers' Day", + "1995-06-25": "Independence Day", + "1995-06-26": "Independence Day (Observed)", + "1995-09-07": "Victory Day", + "1995-09-25": "Armed Forces Day", + "1995-10-04": "Peace and Reconciliation Day", + "1995-12-25": "Family Day", + "1996-01-01": "International Fraternalism Day", + "1996-02-03": "Heroes' Day", + "1996-04-07": "Women's Day", + "1996-04-08": "Women's Day (Observed)", + "1996-05-01": "International Workers' Day", + "1996-06-25": "Independence Day", + "1996-09-07": "Victory Day", + "1996-09-25": "Armed Forces Day", + "1996-10-04": "Peace and Reconciliation Day", + "1996-12-25": "Family Day", + "1997-01-01": "International Fraternalism Day", + "1997-02-03": "Heroes' Day", + "1997-04-07": "Women's Day", + "1997-05-01": "International Workers' Day", + "1997-06-25": "Independence Day", + "1997-09-07": "Victory Day", + "1997-09-08": "Victory Day (Observed)", + "1997-09-25": "Armed Forces Day", + "1997-10-04": "Peace and Reconciliation Day", + "1997-12-25": "Family Day", + "1998-01-01": "International Fraternalism Day", + "1998-02-03": "Heroes' Day", + "1998-04-07": "Women's Day", + "1998-05-01": "International Workers' Day", + "1998-06-25": "Independence Day", + "1998-09-07": "Victory Day", + "1998-09-25": "Armed Forces Day", + "1998-10-04": "Peace and Reconciliation Day", + "1998-10-05": "Peace and Reconciliation Day (Observed)", + "1998-12-25": "Family Day", + "1999-01-01": "International Fraternalism Day", + "1999-02-03": "Heroes' Day", + "1999-04-07": "Women's Day", + "1999-05-01": "International Workers' Day", + "1999-06-25": "Independence Day", + "1999-09-07": "Victory Day", + "1999-09-25": "Armed Forces Day", + "1999-10-04": "Peace and Reconciliation Day", + "1999-12-25": "Family Day", + "2000-01-01": "International Fraternalism Day", + "2000-02-03": "Heroes' Day", + "2000-04-07": "Women's Day", + "2000-05-01": "International Workers' Day", + "2000-06-25": "Independence Day", + "2000-06-26": "Independence Day (Observed)", + "2000-09-07": "Victory Day", + "2000-09-25": "Armed Forces Day", + "2000-10-04": "Peace and Reconciliation Day", + "2000-12-25": "Family Day", + "2001-01-01": "International Fraternalism Day", + "2001-02-03": "Heroes' Day", + "2001-04-07": "Women's Day", + "2001-05-01": "International Workers' Day", + "2001-06-25": "Independence Day", + "2001-09-07": "Victory Day", + "2001-09-25": "Armed Forces Day", + "2001-10-04": "Peace and Reconciliation Day", + "2001-12-25": "Family Day", + "2002-01-01": "International Fraternalism Day", + "2002-02-03": "Heroes' Day", + "2002-02-04": "Heroes' Day (Observed)", + "2002-04-07": "Women's Day", + "2002-04-08": "Women's Day (Observed)", + "2002-05-01": "International Workers' Day", + "2002-06-25": "Independence Day", + "2002-09-07": "Victory Day", + "2002-09-25": "Armed Forces Day", + "2002-10-04": "Peace and Reconciliation Day", + "2002-12-25": "Family Day", + "2003-01-01": "International Fraternalism Day", + "2003-02-03": "Heroes' Day", + "2003-04-07": "Women's Day", + "2003-05-01": "International Workers' Day", + "2003-06-25": "Independence Day", + "2003-09-07": "Victory Day", + "2003-09-08": "Victory Day (Observed)", + "2003-09-25": "Armed Forces Day", + "2003-10-04": "Peace and Reconciliation Day", + "2003-12-25": "Family Day", + "2004-01-01": "International Fraternalism Day", + "2004-02-03": "Heroes' Day", + "2004-04-07": "Women's Day", + "2004-05-01": "International Workers' Day", + "2004-06-25": "Independence Day", + "2004-09-07": "Victory Day", + "2004-09-25": "Armed Forces Day", + "2004-10-04": "Peace and Reconciliation Day", + "2004-12-25": "Family Day", + "2005-01-01": "International Fraternalism Day", + "2005-02-03": "Heroes' Day", + "2005-04-07": "Women's Day", + "2005-05-01": "International Workers' Day", + "2005-05-02": "International Workers' Day (Observed)", + "2005-06-25": "Independence Day", + "2005-09-07": "Victory Day", + "2005-09-25": "Armed Forces Day", + "2005-09-26": "Armed Forces Day (Observed)", + "2005-10-04": "Peace and Reconciliation Day", + "2005-12-25": "Family Day", + "2005-12-26": "Family Day (Observed)", + "2006-01-01": "International Fraternalism Day", + "2006-01-02": "International Fraternalism Day (Observed)", + "2006-02-03": "Heroes' Day", + "2006-04-07": "Women's Day", + "2006-05-01": "International Workers' Day", + "2006-06-25": "Independence Day", + "2006-06-26": "Independence Day (Observed)", + "2006-09-07": "Victory Day", + "2006-09-25": "Armed Forces Day", + "2006-10-04": "Peace and Reconciliation Day", + "2006-12-25": "Family Day", + "2007-01-01": "International Fraternalism Day", + "2007-02-03": "Heroes' Day", + "2007-04-07": "Women's Day", + "2007-05-01": "International Workers' Day", + "2007-06-25": "Independence Day", + "2007-09-07": "Victory Day", + "2007-09-25": "Armed Forces Day", + "2007-10-04": "Peace and Reconciliation Day", + "2007-12-25": "Family Day", + "2008-01-01": "International Fraternalism Day", + "2008-02-03": "Heroes' Day", + "2008-02-04": "Heroes' Day (Observed)", + "2008-04-07": "Women's Day", + "2008-05-01": "International Workers' Day", + "2008-06-25": "Independence Day", + "2008-09-07": "Victory Day", + "2008-09-08": "Victory Day (Observed)", + "2008-09-25": "Armed Forces Day", + "2008-10-04": "Peace and Reconciliation Day", + "2008-12-25": "Family Day", + "2009-01-01": "International Fraternalism Day", + "2009-02-03": "Heroes' Day", + "2009-04-07": "Women's Day", + "2009-05-01": "International Workers' Day", + "2009-06-25": "Independence Day", + "2009-09-07": "Victory Day", + "2009-09-25": "Armed Forces Day", + "2009-10-04": "Peace and Reconciliation Day", + "2009-10-05": "Peace and Reconciliation Day (Observed)", + "2009-12-25": "Family Day", + "2010-01-01": "International Fraternalism Day", + "2010-02-03": "Heroes' Day", + "2010-04-07": "Women's Day", + "2010-05-01": "International Workers' Day", + "2010-06-25": "Independence Day", + "2010-09-07": "Victory Day", + "2010-09-25": "Armed Forces Day", + "2010-10-04": "Peace and Reconciliation Day", + "2010-12-25": "Family Day", + "2011-01-01": "International Fraternalism Day", + "2011-02-03": "Heroes' Day", + "2011-04-07": "Women's Day", + "2011-05-01": "International Workers' Day", + "2011-05-02": "International Workers' Day (Observed)", + "2011-06-25": "Independence Day", + "2011-09-07": "Victory Day", + "2011-09-25": "Armed Forces Day", + "2011-09-26": "Armed Forces Day (Observed)", + "2011-10-04": "Peace and Reconciliation Day", + "2011-12-25": "Family Day", + "2011-12-26": "Family Day (Observed)", + "2012-01-01": "International Fraternalism Day", + "2012-01-02": "International Fraternalism Day (Observed)", + "2012-02-03": "Heroes' Day", + "2012-04-07": "Women's Day", + "2012-05-01": "International Workers' Day", + "2012-06-25": "Independence Day", + "2012-09-07": "Victory Day", + "2012-09-25": "Armed Forces Day", + "2012-10-04": "Peace and Reconciliation Day", + "2012-12-25": "Family Day", + "2013-01-01": "International Fraternalism Day", + "2013-02-03": "Heroes' Day", + "2013-02-04": "Heroes' Day (Observed)", + "2013-04-07": "Women's Day", + "2013-04-08": "Women's Day (Observed)", + "2013-05-01": "International Workers' Day", + "2013-06-25": "Independence Day", + "2013-09-07": "Victory Day", + "2013-09-25": "Armed Forces Day", + "2013-10-04": "Peace and Reconciliation Day", + "2013-12-25": "Family Day", + "2014-01-01": "International Fraternalism Day", + "2014-02-03": "Heroes' Day", + "2014-04-07": "Women's Day", + "2014-05-01": "International Workers' Day", + "2014-06-25": "Independence Day", + "2014-09-07": "Victory Day", + "2014-09-08": "Victory Day (Observed)", + "2014-09-25": "Armed Forces Day", + "2014-10-04": "Peace and Reconciliation Day", + "2014-12-25": "Family Day", + "2015-01-01": "International Fraternalism Day", + "2015-02-03": "Heroes' Day", + "2015-04-07": "Women's Day", + "2015-05-01": "International Workers' Day", + "2015-06-25": "Independence Day", + "2015-09-07": "Victory Day", + "2015-09-25": "Armed Forces Day", + "2015-10-04": "Peace and Reconciliation Day", + "2015-10-05": "Peace and Reconciliation Day (Observed)", + "2015-12-25": "Family Day", + "2016-01-01": "International Fraternalism Day", + "2016-02-03": "Heroes' Day", + "2016-04-07": "Women's Day", + "2016-05-01": "International Workers' Day", + "2016-05-02": "International Workers' Day (Observed)", + "2016-06-25": "Independence Day", + "2016-09-07": "Victory Day", + "2016-09-25": "Armed Forces Day", + "2016-09-26": "Armed Forces Day (Observed)", + "2016-10-04": "Peace and Reconciliation Day", + "2016-12-25": "Family Day", + "2016-12-26": "Family Day (Observed)", + "2017-01-01": "International Fraternalism Day", + "2017-01-02": "International Fraternalism Day (Observed)", + "2017-02-03": "Heroes' Day", + "2017-04-07": "Women's Day", + "2017-05-01": "International Workers' Day", + "2017-06-25": "Independence Day", + "2017-06-26": "Independence Day (Observed)", + "2017-09-07": "Victory Day", + "2017-09-25": "Armed Forces Day", + "2017-10-04": "Peace and Reconciliation Day", + "2017-12-25": "Family Day", + "2018-01-01": "International Fraternalism Day", + "2018-02-03": "Heroes' Day", + "2018-04-07": "Women's Day", + "2018-05-01": "International Workers' Day", + "2018-06-25": "Independence Day", + "2018-09-07": "Victory Day", + "2018-09-25": "Armed Forces Day", + "2018-10-04": "Peace and Reconciliation Day", + "2018-12-25": "Family Day", + "2019-01-01": "International Fraternalism Day", + "2019-02-03": "Heroes' Day", + "2019-02-04": "Heroes' Day (Observed)", + "2019-04-07": "Women's Day", + "2019-04-08": "Women's Day (Observed)", + "2019-05-01": "International Workers' Day", + "2019-06-25": "Independence Day", + "2019-09-07": "Victory Day", + "2019-09-25": "Armed Forces Day", + "2019-10-04": "Peace and Reconciliation Day", + "2019-12-25": "Family Day", + "2020-01-01": "International Fraternalism Day", + "2020-02-03": "Heroes' Day", + "2020-04-07": "Women's Day", + "2020-05-01": "International Workers' Day", + "2020-06-25": "Independence Day", + "2020-09-07": "Victory Day", + "2020-09-25": "Armed Forces Day", + "2020-10-04": "Peace and Reconciliation Day", + "2020-10-05": "Peace and Reconciliation Day (Observed)", + "2020-12-25": "Family Day", + "2021-01-01": "International Fraternalism Day", + "2021-02-03": "Heroes' Day", + "2021-04-07": "Women's Day", + "2021-05-01": "International Workers' Day", + "2021-06-25": "Independence Day", + "2021-09-07": "Victory Day", + "2021-09-25": "Armed Forces Day", + "2021-10-04": "Peace and Reconciliation Day", + "2021-12-25": "Family Day", + "2022-01-01": "International Fraternalism Day", + "2022-02-03": "Heroes' Day", + "2022-04-07": "Women's Day", + "2022-05-01": "International Workers' Day", + "2022-05-02": "International Workers' Day (Observed)", + "2022-06-25": "Independence Day", + "2022-09-07": "Victory Day", + "2022-09-25": "Armed Forces Day", + "2022-09-26": "Armed Forces Day (Observed)", + "2022-10-04": "Peace and Reconciliation Day", + "2022-12-25": "Family Day", + "2022-12-26": "Family Day (Observed)", + "2023-01-01": "International Fraternalism Day", + "2023-01-02": "International Fraternalism Day (Observed)", + "2023-02-03": "Heroes' Day", + "2023-04-07": "Women's Day", + "2023-05-01": "International Workers' Day", + "2023-06-25": "Independence Day", + "2023-06-26": "Independence Day (Observed)", + "2023-09-07": "Victory Day", + "2023-09-25": "Armed Forces Day", + "2023-10-04": "Peace and Reconciliation Day", + "2023-12-25": "Family Day", + "2024-01-01": "International Fraternalism Day", + "2024-02-03": "Heroes' Day", + "2024-04-07": "Women's Day", + "2024-04-08": "Women's Day (Observed)", + "2024-05-01": "International Workers' Day", + "2024-06-25": "Independence Day", + "2024-09-07": "Victory Day", + "2024-09-25": "Armed Forces Day", + "2024-10-04": "Peace and Reconciliation Day", + "2024-12-25": "Family Day", + "2025-01-01": "International Fraternalism Day", + "2025-02-03": "Heroes' Day", + "2025-04-07": "Women's Day", + "2025-05-01": "International Workers' Day", + "2025-06-25": "Independence Day", + "2025-09-07": "Victory Day", + "2025-09-08": "Victory Day (Observed)", + "2025-09-25": "Armed Forces Day", + "2025-10-04": "Peace and Reconciliation Day", + "2025-12-25": "Family Day", + "2026-01-01": "International Fraternalism Day", + "2026-02-03": "Heroes' Day", + "2026-04-07": "Women's Day", + "2026-05-01": "International Workers' Day", + "2026-06-25": "Independence Day", + "2026-09-07": "Victory Day", + "2026-09-25": "Armed Forces Day", + "2026-10-04": "Peace and Reconciliation Day", + "2026-10-05": "Peace and Reconciliation Day (Observed)", + "2026-12-25": "Family Day", + "2027-01-01": "International Fraternalism Day", + "2027-02-03": "Heroes' Day", + "2027-04-07": "Women's Day", + "2027-05-01": "International Workers' Day", + "2027-06-25": "Independence Day", + "2027-09-07": "Victory Day", + "2027-09-25": "Armed Forces Day", + "2027-10-04": "Peace and Reconciliation Day", + "2027-12-25": "Family Day", + "2028-01-01": "International Fraternalism Day", + "2028-02-03": "Heroes' Day", + "2028-04-07": "Women's Day", + "2028-05-01": "International Workers' Day", + "2028-06-25": "Independence Day", + "2028-06-26": "Independence Day (Observed)", + "2028-09-07": "Victory Day", + "2028-09-25": "Armed Forces Day", + "2028-10-04": "Peace and Reconciliation Day", + "2028-12-25": "Family Day", + "2029-01-01": "International Fraternalism Day", + "2029-02-03": "Heroes' Day", + "2029-04-07": "Women's Day", + "2029-05-01": "International Workers' Day", + "2029-06-25": "Independence Day", + "2029-09-07": "Victory Day", + "2029-09-25": "Armed Forces Day", + "2029-10-04": "Peace and Reconciliation Day", + "2029-12-25": "Family Day", + "2030-01-01": "International Fraternalism Day", + "2030-02-03": "Heroes' Day", + "2030-02-04": "Heroes' Day (Observed)", + "2030-04-07": "Women's Day", + "2030-04-08": "Women's Day (Observed)", + "2030-05-01": "International Workers' Day", + "2030-06-25": "Independence Day", + "2030-09-07": "Victory Day", + "2030-09-25": "Armed Forces Day", + "2030-10-04": "Peace and Reconciliation Day", + "2030-12-25": "Family Day", + "2031-01-01": "International Fraternalism Day", + "2031-02-03": "Heroes' Day", + "2031-04-07": "Women's Day", + "2031-05-01": "International Workers' Day", + "2031-06-25": "Independence Day", + "2031-09-07": "Victory Day", + "2031-09-08": "Victory Day (Observed)", + "2031-09-25": "Armed Forces Day", + "2031-10-04": "Peace and Reconciliation Day", + "2031-12-25": "Family Day", + "2032-01-01": "International Fraternalism Day", + "2032-02-03": "Heroes' Day", + "2032-04-07": "Women's Day", + "2032-05-01": "International Workers' Day", + "2032-06-25": "Independence Day", + "2032-09-07": "Victory Day", + "2032-09-25": "Armed Forces Day", + "2032-10-04": "Peace and Reconciliation Day", + "2032-12-25": "Family Day", + "2033-01-01": "International Fraternalism Day", + "2033-02-03": "Heroes' Day", + "2033-04-07": "Women's Day", + "2033-05-01": "International Workers' Day", + "2033-05-02": "International Workers' Day (Observed)", + "2033-06-25": "Independence Day", + "2033-09-07": "Victory Day", + "2033-09-25": "Armed Forces Day", + "2033-09-26": "Armed Forces Day (Observed)", + "2033-10-04": "Peace and Reconciliation Day", + "2033-12-25": "Family Day", + "2033-12-26": "Family Day (Observed)", + "2034-01-01": "International Fraternalism Day", + "2034-01-02": "International Fraternalism Day (Observed)", + "2034-02-03": "Heroes' Day", + "2034-04-07": "Women's Day", + "2034-05-01": "International Workers' Day", + "2034-06-25": "Independence Day", + "2034-06-26": "Independence Day (Observed)", + "2034-09-07": "Victory Day", + "2034-09-25": "Armed Forces Day", + "2034-10-04": "Peace and Reconciliation Day", + "2034-12-25": "Family Day", + "2035-01-01": "International Fraternalism Day", + "2035-02-03": "Heroes' Day", + "2035-04-07": "Women's Day", + "2035-05-01": "International Workers' Day", + "2035-06-25": "Independence Day", + "2035-09-07": "Victory Day", + "2035-09-25": "Armed Forces Day", + "2035-10-04": "Peace and Reconciliation Day", + "2035-12-25": "Family Day", + "2036-01-01": "International Fraternalism Day", + "2036-02-03": "Heroes' Day", + "2036-02-04": "Heroes' Day (Observed)", + "2036-04-07": "Women's Day", + "2036-05-01": "International Workers' Day", + "2036-06-25": "Independence Day", + "2036-09-07": "Victory Day", + "2036-09-08": "Victory Day (Observed)", + "2036-09-25": "Armed Forces Day", + "2036-10-04": "Peace and Reconciliation Day", + "2036-12-25": "Family Day", + "2037-01-01": "International Fraternalism Day", + "2037-02-03": "Heroes' Day", + "2037-04-07": "Women's Day", + "2037-05-01": "International Workers' Day", + "2037-06-25": "Independence Day", + "2037-09-07": "Victory Day", + "2037-09-25": "Armed Forces Day", + "2037-10-04": "Peace and Reconciliation Day", + "2037-10-05": "Peace and Reconciliation Day (Observed)", + "2037-12-25": "Family Day", + "2038-01-01": "International Fraternalism Day", + "2038-02-03": "Heroes' Day", + "2038-04-07": "Women's Day", + "2038-05-01": "International Workers' Day", + "2038-06-25": "Independence Day", + "2038-09-07": "Victory Day", + "2038-09-25": "Armed Forces Day", + "2038-10-04": "Peace and Reconciliation Day", + "2038-12-25": "Family Day", + "2039-01-01": "International Fraternalism Day", + "2039-02-03": "Heroes' Day", + "2039-04-07": "Women's Day", + "2039-05-01": "International Workers' Day", + "2039-05-02": "International Workers' Day (Observed)", + "2039-06-25": "Independence Day", + "2039-09-07": "Victory Day", + "2039-09-25": "Armed Forces Day", + "2039-09-26": "Armed Forces Day (Observed)", + "2039-10-04": "Peace and Reconciliation Day", + "2039-12-25": "Family Day", + "2039-12-26": "Family Day (Observed)", + "2040-01-01": "International Fraternalism Day", + "2040-01-02": "International Fraternalism Day (Observed)", + "2040-02-03": "Heroes' Day", + "2040-04-07": "Women's Day", + "2040-05-01": "International Workers' Day", + "2040-06-25": "Independence Day", + "2040-09-07": "Victory Day", + "2040-09-25": "Armed Forces Day", + "2040-10-04": "Peace and Reconciliation Day", + "2040-12-25": "Family Day", + "2041-01-01": "International Fraternalism Day", + "2041-02-03": "Heroes' Day", + "2041-02-04": "Heroes' Day (Observed)", + "2041-04-07": "Women's Day", + "2041-04-08": "Women's Day (Observed)", + "2041-05-01": "International Workers' Day", + "2041-06-25": "Independence Day", + "2041-09-07": "Victory Day", + "2041-09-25": "Armed Forces Day", + "2041-10-04": "Peace and Reconciliation Day", + "2041-12-25": "Family Day", + "2042-01-01": "International Fraternalism Day", + "2042-02-03": "Heroes' Day", + "2042-04-07": "Women's Day", + "2042-05-01": "International Workers' Day", + "2042-06-25": "Independence Day", + "2042-09-07": "Victory Day", + "2042-09-08": "Victory Day (Observed)", + "2042-09-25": "Armed Forces Day", + "2042-10-04": "Peace and Reconciliation Day", + "2042-12-25": "Family Day", + "2043-01-01": "International Fraternalism Day", + "2043-02-03": "Heroes' Day", + "2043-04-07": "Women's Day", + "2043-05-01": "International Workers' Day", + "2043-06-25": "Independence Day", + "2043-09-07": "Victory Day", + "2043-09-25": "Armed Forces Day", + "2043-10-04": "Peace and Reconciliation Day", + "2043-10-05": "Peace and Reconciliation Day (Observed)", + "2043-12-25": "Family Day", + "2044-01-01": "International Fraternalism Day", + "2044-02-03": "Heroes' Day", + "2044-04-07": "Women's Day", + "2044-05-01": "International Workers' Day", + "2044-05-02": "International Workers' Day (Observed)", + "2044-06-25": "Independence Day", + "2044-09-07": "Victory Day", + "2044-09-25": "Armed Forces Day", + "2044-09-26": "Armed Forces Day (Observed)", + "2044-10-04": "Peace and Reconciliation Day", + "2044-12-25": "Family Day", + "2044-12-26": "Family Day (Observed)", + "2045-01-01": "International Fraternalism Day", + "2045-01-02": "International Fraternalism Day (Observed)", + "2045-02-03": "Heroes' Day", + "2045-04-07": "Women's Day", + "2045-05-01": "International Workers' Day", + "2045-06-25": "Independence Day", + "2045-06-26": "Independence Day (Observed)", + "2045-09-07": "Victory Day", + "2045-09-25": "Armed Forces Day", + "2045-10-04": "Peace and Reconciliation Day", + "2045-12-25": "Family Day", + "2046-01-01": "International Fraternalism Day", + "2046-02-03": "Heroes' Day", + "2046-04-07": "Women's Day", + "2046-05-01": "International Workers' Day", + "2046-06-25": "Independence Day", + "2046-09-07": "Victory Day", + "2046-09-25": "Armed Forces Day", + "2046-10-04": "Peace and Reconciliation Day", + "2046-12-25": "Family Day", + "2047-01-01": "International Fraternalism Day", + "2047-02-03": "Heroes' Day", + "2047-02-04": "Heroes' Day (Observed)", + "2047-04-07": "Women's Day", + "2047-04-08": "Women's Day (Observed)", + "2047-05-01": "International Workers' Day", + "2047-06-25": "Independence Day", + "2047-09-07": "Victory Day", + "2047-09-25": "Armed Forces Day", + "2047-10-04": "Peace and Reconciliation Day", + "2047-12-25": "Family Day", + "2048-01-01": "International Fraternalism Day", + "2048-02-03": "Heroes' Day", + "2048-04-07": "Women's Day", + "2048-05-01": "International Workers' Day", + "2048-06-25": "Independence Day", + "2048-09-07": "Victory Day", + "2048-09-25": "Armed Forces Day", + "2048-10-04": "Peace and Reconciliation Day", + "2048-10-05": "Peace and Reconciliation Day (Observed)", + "2048-12-25": "Family Day", + "2049-01-01": "International Fraternalism Day", + "2049-02-03": "Heroes' Day", + "2049-04-07": "Women's Day", + "2049-05-01": "International Workers' Day", + "2049-06-25": "Independence Day", + "2049-09-07": "Victory Day", + "2049-09-25": "Armed Forces Day", + "2049-10-04": "Peace and Reconciliation Day", + "2049-12-25": "Family Day", + "2050-01-01": "International Fraternalism Day", + "2050-02-03": "Heroes' Day", + "2050-04-07": "Women's Day", + "2050-05-01": "International Workers' Day", + "2050-05-02": "International Workers' Day (Observed)", + "2050-06-25": "Independence Day", + "2050-09-07": "Victory Day", + "2050-09-25": "Armed Forces Day", + "2050-09-26": "Armed Forces Day (Observed)", + "2050-10-04": "Peace and Reconciliation Day", + "2050-12-25": "Family Day", + "2050-12-26": "Family Day (Observed)" +} diff --git a/snapshots/countries/NA.json b/snapshots/countries/NA.json new file mode 100644 index 000000000..a2efcf821 --- /dev/null +++ b/snapshots/countries/NA.json @@ -0,0 +1,797 @@ +{ + "1990-01-01": "New Year's Day", + "1990-03-21": "Independence Day", + "1990-04-13": "Good Friday", + "1990-04-16": "Easter Monday", + "1990-05-01": "Workers' Day", + "1990-05-04": "Cassinga Day", + "1990-05-24": "Ascension Day", + "1990-05-25": "Africa Day", + "1990-08-26": "Heroes' Day", + "1990-09-10": "International Human Rights Day", + "1990-12-25": "Christmas Day", + "1990-12-26": "Family Day", + "1991-01-01": "New Year's Day", + "1991-03-21": "Independence Day", + "1991-03-29": "Good Friday", + "1991-04-01": "Easter Monday", + "1991-05-01": "Workers' Day", + "1991-05-04": "Cassinga Day", + "1991-05-09": "Ascension Day", + "1991-05-25": "Africa Day", + "1991-08-26": "Heroes' Day", + "1991-09-10": "International Human Rights Day", + "1991-12-25": "Christmas Day", + "1991-12-26": "Family Day", + "1992-01-01": "New Year's Day", + "1992-03-21": "Independence Day", + "1992-04-17": "Good Friday", + "1992-04-20": "Easter Monday", + "1992-05-01": "Workers' Day", + "1992-05-04": "Cassinga Day", + "1992-05-25": "Africa Day", + "1992-05-28": "Ascension Day", + "1992-08-26": "Heroes' Day", + "1992-09-10": "International Human Rights Day", + "1992-12-25": "Christmas Day", + "1992-12-26": "Family Day", + "1993-01-01": "New Year's Day", + "1993-03-21": "Independence Day", + "1993-03-22": "Independence Day (Observed)", + "1993-04-09": "Good Friday", + "1993-04-12": "Easter Monday", + "1993-05-01": "Workers' Day", + "1993-05-04": "Cassinga Day", + "1993-05-20": "Ascension Day", + "1993-05-25": "Africa Day", + "1993-08-26": "Heroes' Day", + "1993-09-10": "International Human Rights Day", + "1993-12-25": "Christmas Day", + "1993-12-26": "Family Day", + "1993-12-27": "Family Day (Observed)", + "1994-01-01": "New Year's Day", + "1994-03-21": "Independence Day", + "1994-04-01": "Good Friday", + "1994-04-04": "Easter Monday", + "1994-05-01": "Workers' Day", + "1994-05-02": "Workers' Day (Observed)", + "1994-05-04": "Cassinga Day", + "1994-05-12": "Ascension Day", + "1994-05-25": "Africa Day", + "1994-08-26": "Heroes' Day", + "1994-09-10": "International Human Rights Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Family Day", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (Observed)", + "1995-03-21": "Independence Day", + "1995-04-14": "Good Friday", + "1995-04-17": "Easter Monday", + "1995-05-01": "Workers' Day", + "1995-05-04": "Cassinga Day", + "1995-05-25": "Africa Day; Ascension Day", + "1995-08-26": "Heroes' Day", + "1995-09-10": "International Human Rights Day", + "1995-09-11": "International Human Rights Day (Observed)", + "1995-12-25": "Christmas Day", + "1995-12-26": "Family Day", + "1996-01-01": "New Year's Day", + "1996-03-21": "Independence Day", + "1996-04-05": "Good Friday", + "1996-04-08": "Easter Monday", + "1996-05-01": "Workers' Day", + "1996-05-04": "Cassinga Day", + "1996-05-16": "Ascension Day", + "1996-05-25": "Africa Day", + "1996-08-26": "Heroes' Day", + "1996-09-10": "International Human Rights Day", + "1996-12-25": "Christmas Day", + "1996-12-26": "Family Day", + "1997-01-01": "New Year's Day", + "1997-03-21": "Independence Day", + "1997-03-28": "Good Friday", + "1997-03-31": "Easter Monday", + "1997-05-01": "Workers' Day", + "1997-05-04": "Cassinga Day", + "1997-05-05": "Cassinga Day (Observed)", + "1997-05-08": "Ascension Day", + "1997-05-25": "Africa Day", + "1997-05-26": "Africa Day (Observed)", + "1997-08-26": "Heroes' Day", + "1997-09-10": "International Human Rights Day", + "1997-12-25": "Christmas Day", + "1997-12-26": "Family Day", + "1998-01-01": "New Year's Day", + "1998-03-21": "Independence Day", + "1998-04-10": "Good Friday", + "1998-04-13": "Easter Monday", + "1998-05-01": "Workers' Day", + "1998-05-04": "Cassinga Day", + "1998-05-21": "Ascension Day", + "1998-05-25": "Africa Day", + "1998-08-26": "Heroes' Day", + "1998-09-10": "International Human Rights Day", + "1998-12-25": "Christmas Day", + "1998-12-26": "Family Day", + "1999-01-01": "New Year's Day", + "1999-03-21": "Independence Day", + "1999-03-22": "Independence Day (Observed)", + "1999-04-02": "Good Friday", + "1999-04-05": "Easter Monday", + "1999-05-01": "Workers' Day", + "1999-05-04": "Cassinga Day", + "1999-05-13": "Ascension Day", + "1999-05-25": "Africa Day", + "1999-08-26": "Heroes' Day", + "1999-09-10": "International Human Rights Day", + "1999-12-25": "Christmas Day", + "1999-12-26": "Family Day", + "1999-12-27": "Family Day (Observed)", + "1999-12-31": "Y2K changeover", + "2000-01-01": "New Year's Day", + "2000-01-03": "Y2K changeover", + "2000-03-21": "Independence Day", + "2000-04-21": "Good Friday", + "2000-04-24": "Easter Monday", + "2000-05-01": "Workers' Day", + "2000-05-04": "Cassinga Day", + "2000-05-25": "Africa Day", + "2000-06-01": "Ascension Day", + "2000-08-26": "Heroes' Day", + "2000-09-10": "International Human Rights Day", + "2000-09-11": "International Human Rights Day (Observed)", + "2000-12-25": "Christmas Day", + "2000-12-26": "Family Day", + "2001-01-01": "New Year's Day", + "2001-03-21": "Independence Day", + "2001-04-13": "Good Friday", + "2001-04-16": "Easter Monday", + "2001-05-01": "Workers' Day", + "2001-05-04": "Cassinga Day", + "2001-05-24": "Ascension Day", + "2001-05-25": "Africa Day", + "2001-08-26": "Heroes' Day", + "2001-08-27": "Heroes' Day (Observed)", + "2001-09-10": "International Human Rights Day", + "2001-12-25": "Christmas Day", + "2001-12-26": "Family Day", + "2002-01-01": "New Year's Day", + "2002-03-21": "Independence Day", + "2002-03-29": "Good Friday", + "2002-04-01": "Easter Monday", + "2002-05-01": "Workers' Day", + "2002-05-04": "Cassinga Day", + "2002-05-09": "Ascension Day", + "2002-05-25": "Africa Day", + "2002-08-26": "Heroes' Day", + "2002-09-10": "International Human Rights Day", + "2002-12-25": "Christmas Day", + "2002-12-26": "Family Day", + "2003-01-01": "New Year's Day", + "2003-03-21": "Independence Day", + "2003-04-18": "Good Friday", + "2003-04-21": "Easter Monday", + "2003-05-01": "Workers' Day", + "2003-05-04": "Cassinga Day", + "2003-05-05": "Cassinga Day (Observed)", + "2003-05-25": "Africa Day", + "2003-05-26": "Africa Day (Observed)", + "2003-05-29": "Ascension Day", + "2003-08-26": "Heroes' Day", + "2003-09-10": "International Human Rights Day", + "2003-12-25": "Christmas Day", + "2003-12-26": "Family Day", + "2004-01-01": "New Year's Day", + "2004-03-21": "Independence Day", + "2004-03-22": "Independence Day (Observed)", + "2004-04-09": "Good Friday", + "2004-04-12": "Easter Monday", + "2004-05-01": "Workers' Day", + "2004-05-04": "Cassinga Day", + "2004-05-20": "Ascension Day", + "2004-05-25": "Africa Day", + "2004-08-26": "Heroes' Day", + "2004-09-10": "International Human Rights Day", + "2004-12-25": "Christmas Day", + "2004-12-26": "Family Day", + "2004-12-27": "Family Day (Observed)", + "2005-01-01": "New Year's Day", + "2005-03-21": "Independence Day", + "2005-03-25": "Good Friday", + "2005-03-28": "Easter Monday", + "2005-05-01": "Workers' Day", + "2005-05-02": "Workers' Day (Observed)", + "2005-05-04": "Cassinga Day", + "2005-05-05": "Ascension Day", + "2005-05-25": "Africa Day", + "2005-08-26": "Heroes' Day", + "2005-09-10": "Day of the Namibian Women and International Human Rights Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "Family Day", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (Observed)", + "2006-03-21": "Independence Day", + "2006-04-14": "Good Friday", + "2006-04-17": "Easter Monday", + "2006-05-01": "Workers' Day", + "2006-05-04": "Cassinga Day", + "2006-05-25": "Africa Day; Ascension Day", + "2006-08-26": "Heroes' Day", + "2006-09-10": "Day of the Namibian Women and International Human Rights Day", + "2006-09-11": "Day of the Namibian Women and International Human Rights Day (Observed)", + "2006-12-25": "Christmas Day", + "2006-12-26": "Family Day", + "2007-01-01": "New Year's Day", + "2007-03-21": "Independence Day", + "2007-04-06": "Good Friday", + "2007-04-09": "Easter Monday", + "2007-05-01": "Workers' Day", + "2007-05-04": "Cassinga Day", + "2007-05-17": "Ascension Day", + "2007-05-25": "Africa Day", + "2007-08-26": "Heroes' Day", + "2007-08-27": "Heroes' Day (Observed)", + "2007-09-10": "Day of the Namibian Women and International Human Rights Day", + "2007-12-25": "Christmas Day", + "2007-12-26": "Family Day", + "2008-01-01": "New Year's Day", + "2008-03-21": "Good Friday; Independence Day", + "2008-03-24": "Easter Monday", + "2008-05-01": "Ascension Day; Workers' Day", + "2008-05-04": "Cassinga Day", + "2008-05-05": "Cassinga Day (Observed)", + "2008-05-25": "Africa Day", + "2008-05-26": "Africa Day (Observed)", + "2008-08-26": "Heroes' Day", + "2008-09-10": "Day of the Namibian Women and International Human Rights Day", + "2008-12-25": "Christmas Day", + "2008-12-26": "Family Day", + "2009-01-01": "New Year's Day", + "2009-03-21": "Independence Day", + "2009-04-10": "Good Friday", + "2009-04-13": "Easter Monday", + "2009-05-01": "Workers' Day", + "2009-05-04": "Cassinga Day", + "2009-05-21": "Ascension Day", + "2009-05-25": "Africa Day", + "2009-08-26": "Heroes' Day", + "2009-09-10": "Day of the Namibian Women and International Human Rights Day", + "2009-12-25": "Christmas Day", + "2009-12-26": "Family Day", + "2010-01-01": "New Year's Day", + "2010-03-21": "Independence Day", + "2010-03-22": "Independence Day (Observed)", + "2010-04-02": "Good Friday", + "2010-04-05": "Easter Monday", + "2010-05-01": "Workers' Day", + "2010-05-04": "Cassinga Day", + "2010-05-13": "Ascension Day", + "2010-05-25": "Africa Day", + "2010-08-26": "Heroes' Day", + "2010-09-10": "Day of the Namibian Women and International Human Rights Day", + "2010-12-25": "Christmas Day", + "2010-12-26": "Family Day", + "2010-12-27": "Family Day (Observed)", + "2011-01-01": "New Year's Day", + "2011-03-21": "Independence Day", + "2011-04-22": "Good Friday", + "2011-04-25": "Easter Monday", + "2011-05-01": "Workers' Day", + "2011-05-02": "Workers' Day (Observed)", + "2011-05-04": "Cassinga Day", + "2011-05-25": "Africa Day", + "2011-06-02": "Ascension Day", + "2011-08-26": "Heroes' Day", + "2011-09-10": "Day of the Namibian Women and International Human Rights Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "Family Day", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (Observed)", + "2012-03-21": "Independence Day", + "2012-04-06": "Good Friday", + "2012-04-09": "Easter Monday", + "2012-05-01": "Workers' Day", + "2012-05-04": "Cassinga Day", + "2012-05-17": "Ascension Day", + "2012-05-25": "Africa Day", + "2012-08-26": "Heroes' Day", + "2012-08-27": "Heroes' Day (Observed)", + "2012-09-10": "Day of the Namibian Women and International Human Rights Day", + "2012-12-25": "Christmas Day", + "2012-12-26": "Family Day", + "2013-01-01": "New Year's Day", + "2013-03-21": "Independence Day", + "2013-03-29": "Good Friday", + "2013-04-01": "Easter Monday", + "2013-05-01": "Workers' Day", + "2013-05-04": "Cassinga Day", + "2013-05-09": "Ascension Day", + "2013-05-25": "Africa Day", + "2013-08-26": "Heroes' Day", + "2013-09-10": "Day of the Namibian Women and International Human Rights Day", + "2013-12-25": "Christmas Day", + "2013-12-26": "Family Day", + "2014-01-01": "New Year's Day", + "2014-03-21": "Independence Day", + "2014-04-18": "Good Friday", + "2014-04-21": "Easter Monday", + "2014-05-01": "Workers' Day", + "2014-05-04": "Cassinga Day", + "2014-05-05": "Cassinga Day (Observed)", + "2014-05-25": "Africa Day", + "2014-05-26": "Africa Day (Observed)", + "2014-05-29": "Ascension Day", + "2014-08-26": "Heroes' Day", + "2014-09-10": "Day of the Namibian Women and International Human Rights Day", + "2014-12-25": "Christmas Day", + "2014-12-26": "Family Day", + "2015-01-01": "New Year's Day", + "2015-03-21": "Independence Day", + "2015-04-03": "Good Friday", + "2015-04-06": "Easter Monday", + "2015-05-01": "Workers' Day", + "2015-05-04": "Cassinga Day", + "2015-05-14": "Ascension Day", + "2015-05-25": "Africa Day", + "2015-08-26": "Heroes' Day", + "2015-09-10": "Day of the Namibian Women and International Human Rights Day", + "2015-12-25": "Christmas Day", + "2015-12-26": "Family Day", + "2016-01-01": "New Year's Day", + "2016-03-21": "Independence Day", + "2016-03-25": "Good Friday", + "2016-03-28": "Easter Monday", + "2016-05-01": "Workers' Day", + "2016-05-02": "Workers' Day (Observed)", + "2016-05-04": "Cassinga Day", + "2016-05-05": "Ascension Day", + "2016-05-25": "Africa Day", + "2016-08-26": "Heroes' Day", + "2016-09-10": "Day of the Namibian Women and International Human Rights Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "Family Day", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (Observed)", + "2017-03-21": "Independence Day", + "2017-04-14": "Good Friday", + "2017-04-17": "Easter Monday", + "2017-05-01": "Workers' Day", + "2017-05-04": "Cassinga Day", + "2017-05-25": "Africa Day; Ascension Day", + "2017-08-26": "Heroes' Day", + "2017-09-10": "Day of the Namibian Women and International Human Rights Day", + "2017-09-11": "Day of the Namibian Women and International Human Rights Day (Observed)", + "2017-12-25": "Christmas Day", + "2017-12-26": "Family Day", + "2018-01-01": "New Year's Day", + "2018-03-21": "Independence Day", + "2018-03-30": "Good Friday", + "2018-04-02": "Easter Monday", + "2018-05-01": "Workers' Day", + "2018-05-04": "Cassinga Day", + "2018-05-10": "Ascension Day", + "2018-05-25": "Africa Day", + "2018-08-26": "Heroes' Day", + "2018-08-27": "Heroes' Day (Observed)", + "2018-09-10": "Day of the Namibian Women and International Human Rights Day", + "2018-12-25": "Christmas Day", + "2018-12-26": "Family Day", + "2019-01-01": "New Year's Day", + "2019-03-21": "Independence Day", + "2019-04-19": "Good Friday", + "2019-04-22": "Easter Monday", + "2019-05-01": "Workers' Day", + "2019-05-04": "Cassinga Day", + "2019-05-25": "Africa Day", + "2019-05-30": "Ascension Day", + "2019-08-26": "Heroes' Day", + "2019-09-10": "Day of the Namibian Women and International Human Rights Day", + "2019-12-25": "Christmas Day", + "2019-12-26": "Family Day", + "2020-01-01": "New Year's Day", + "2020-03-21": "Independence Day", + "2020-04-10": "Good Friday", + "2020-04-13": "Easter Monday", + "2020-05-01": "Workers' Day", + "2020-05-04": "Cassinga Day", + "2020-05-21": "Ascension Day", + "2020-05-25": "Africa Day", + "2020-08-26": "Heroes' Day", + "2020-09-10": "Day of the Namibian Women and International Human Rights Day", + "2020-12-25": "Christmas Day", + "2020-12-26": "Family Day", + "2021-01-01": "New Year's Day", + "2021-03-21": "Independence Day", + "2021-03-22": "Independence Day (Observed)", + "2021-04-02": "Good Friday", + "2021-04-05": "Easter Monday", + "2021-05-01": "Workers' Day", + "2021-05-04": "Cassinga Day", + "2021-05-13": "Ascension Day", + "2021-05-25": "Africa Day", + "2021-08-26": "Heroes' Day", + "2021-09-10": "Day of the Namibian Women and International Human Rights Day", + "2021-12-25": "Christmas Day", + "2021-12-26": "Family Day", + "2021-12-27": "Family Day (Observed)", + "2022-01-01": "New Year's Day", + "2022-03-21": "Independence Day", + "2022-04-15": "Good Friday", + "2022-04-18": "Easter Monday", + "2022-05-01": "Workers' Day", + "2022-05-02": "Workers' Day (Observed)", + "2022-05-04": "Cassinga Day", + "2022-05-25": "Africa Day", + "2022-05-26": "Ascension Day", + "2022-08-26": "Heroes' Day", + "2022-09-10": "Day of the Namibian Women and International Human Rights Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "Family Day", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (Observed)", + "2023-03-21": "Independence Day", + "2023-04-07": "Good Friday", + "2023-04-10": "Easter Monday", + "2023-05-01": "Workers' Day", + "2023-05-04": "Cassinga Day", + "2023-05-18": "Ascension Day", + "2023-05-25": "Africa Day", + "2023-08-26": "Heroes' Day", + "2023-09-10": "Day of the Namibian Women and International Human Rights Day", + "2023-09-11": "Day of the Namibian Women and International Human Rights Day (Observed)", + "2023-12-25": "Christmas Day", + "2023-12-26": "Family Day", + "2024-01-01": "New Year's Day", + "2024-03-21": "Independence Day", + "2024-03-29": "Good Friday", + "2024-04-01": "Easter Monday", + "2024-05-01": "Workers' Day", + "2024-05-04": "Cassinga Day", + "2024-05-09": "Ascension Day", + "2024-05-25": "Africa Day", + "2024-08-26": "Heroes' Day", + "2024-09-10": "Day of the Namibian Women and International Human Rights Day", + "2024-12-25": "Christmas Day", + "2024-12-26": "Family Day", + "2025-01-01": "New Year's Day", + "2025-03-21": "Independence Day", + "2025-04-18": "Good Friday", + "2025-04-21": "Easter Monday", + "2025-05-01": "Workers' Day", + "2025-05-04": "Cassinga Day", + "2025-05-05": "Cassinga Day (Observed)", + "2025-05-25": "Africa Day", + "2025-05-26": "Africa Day (Observed)", + "2025-05-29": "Ascension Day", + "2025-08-26": "Heroes' Day", + "2025-09-10": "Day of the Namibian Women and International Human Rights Day", + "2025-12-25": "Christmas Day", + "2025-12-26": "Family Day", + "2026-01-01": "New Year's Day", + "2026-03-21": "Independence Day", + "2026-04-03": "Good Friday", + "2026-04-06": "Easter Monday", + "2026-05-01": "Workers' Day", + "2026-05-04": "Cassinga Day", + "2026-05-14": "Ascension Day", + "2026-05-25": "Africa Day", + "2026-08-26": "Heroes' Day", + "2026-09-10": "Day of the Namibian Women and International Human Rights Day", + "2026-12-25": "Christmas Day", + "2026-12-26": "Family Day", + "2027-01-01": "New Year's Day", + "2027-03-21": "Independence Day", + "2027-03-22": "Independence Day (Observed)", + "2027-03-26": "Good Friday", + "2027-03-29": "Easter Monday", + "2027-05-01": "Workers' Day", + "2027-05-04": "Cassinga Day", + "2027-05-06": "Ascension Day", + "2027-05-25": "Africa Day", + "2027-08-26": "Heroes' Day", + "2027-09-10": "Day of the Namibian Women and International Human Rights Day", + "2027-12-25": "Christmas Day", + "2027-12-26": "Family Day", + "2027-12-27": "Family Day (Observed)", + "2028-01-01": "New Year's Day", + "2028-03-21": "Independence Day", + "2028-04-14": "Good Friday", + "2028-04-17": "Easter Monday", + "2028-05-01": "Workers' Day", + "2028-05-04": "Cassinga Day", + "2028-05-25": "Africa Day; Ascension Day", + "2028-08-26": "Heroes' Day", + "2028-09-10": "Day of the Namibian Women and International Human Rights Day", + "2028-09-11": "Day of the Namibian Women and International Human Rights Day (Observed)", + "2028-12-25": "Christmas Day", + "2028-12-26": "Family Day", + "2029-01-01": "New Year's Day", + "2029-03-21": "Independence Day", + "2029-03-30": "Good Friday", + "2029-04-02": "Easter Monday", + "2029-05-01": "Workers' Day", + "2029-05-04": "Cassinga Day", + "2029-05-10": "Ascension Day", + "2029-05-25": "Africa Day", + "2029-08-26": "Heroes' Day", + "2029-08-27": "Heroes' Day (Observed)", + "2029-09-10": "Day of the Namibian Women and International Human Rights Day", + "2029-12-25": "Christmas Day", + "2029-12-26": "Family Day", + "2030-01-01": "New Year's Day", + "2030-03-21": "Independence Day", + "2030-04-19": "Good Friday", + "2030-04-22": "Easter Monday", + "2030-05-01": "Workers' Day", + "2030-05-04": "Cassinga Day", + "2030-05-25": "Africa Day", + "2030-05-30": "Ascension Day", + "2030-08-26": "Heroes' Day", + "2030-09-10": "Day of the Namibian Women and International Human Rights Day", + "2030-12-25": "Christmas Day", + "2030-12-26": "Family Day", + "2031-01-01": "New Year's Day", + "2031-03-21": "Independence Day", + "2031-04-11": "Good Friday", + "2031-04-14": "Easter Monday", + "2031-05-01": "Workers' Day", + "2031-05-04": "Cassinga Day", + "2031-05-05": "Cassinga Day (Observed)", + "2031-05-22": "Ascension Day", + "2031-05-25": "Africa Day", + "2031-05-26": "Africa Day (Observed)", + "2031-08-26": "Heroes' Day", + "2031-09-10": "Day of the Namibian Women and International Human Rights Day", + "2031-12-25": "Christmas Day", + "2031-12-26": "Family Day", + "2032-01-01": "New Year's Day", + "2032-03-21": "Independence Day", + "2032-03-22": "Independence Day (Observed)", + "2032-03-26": "Good Friday", + "2032-03-29": "Easter Monday", + "2032-05-01": "Workers' Day", + "2032-05-04": "Cassinga Day", + "2032-05-06": "Ascension Day", + "2032-05-25": "Africa Day", + "2032-08-26": "Heroes' Day", + "2032-09-10": "Day of the Namibian Women and International Human Rights Day", + "2032-12-25": "Christmas Day", + "2032-12-26": "Family Day", + "2032-12-27": "Family Day (Observed)", + "2033-01-01": "New Year's Day", + "2033-03-21": "Independence Day", + "2033-04-15": "Good Friday", + "2033-04-18": "Easter Monday", + "2033-05-01": "Workers' Day", + "2033-05-02": "Workers' Day (Observed)", + "2033-05-04": "Cassinga Day", + "2033-05-25": "Africa Day", + "2033-05-26": "Ascension Day", + "2033-08-26": "Heroes' Day", + "2033-09-10": "Day of the Namibian Women and International Human Rights Day", + "2033-12-25": "Christmas Day", + "2033-12-26": "Family Day", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-03-21": "Independence Day", + "2034-04-07": "Good Friday", + "2034-04-10": "Easter Monday", + "2034-05-01": "Workers' Day", + "2034-05-04": "Cassinga Day", + "2034-05-18": "Ascension Day", + "2034-05-25": "Africa Day", + "2034-08-26": "Heroes' Day", + "2034-09-10": "Day of the Namibian Women and International Human Rights Day", + "2034-09-11": "Day of the Namibian Women and International Human Rights Day (Observed)", + "2034-12-25": "Christmas Day", + "2034-12-26": "Family Day", + "2035-01-01": "New Year's Day", + "2035-03-21": "Independence Day", + "2035-03-23": "Good Friday", + "2035-03-26": "Easter Monday", + "2035-05-01": "Workers' Day", + "2035-05-03": "Ascension Day", + "2035-05-04": "Cassinga Day", + "2035-05-25": "Africa Day", + "2035-08-26": "Heroes' Day", + "2035-08-27": "Heroes' Day (Observed)", + "2035-09-10": "Day of the Namibian Women and International Human Rights Day", + "2035-12-25": "Christmas Day", + "2035-12-26": "Family Day", + "2036-01-01": "New Year's Day", + "2036-03-21": "Independence Day", + "2036-04-11": "Good Friday", + "2036-04-14": "Easter Monday", + "2036-05-01": "Workers' Day", + "2036-05-04": "Cassinga Day", + "2036-05-05": "Cassinga Day (Observed)", + "2036-05-22": "Ascension Day", + "2036-05-25": "Africa Day", + "2036-05-26": "Africa Day (Observed)", + "2036-08-26": "Heroes' Day", + "2036-09-10": "Day of the Namibian Women and International Human Rights Day", + "2036-12-25": "Christmas Day", + "2036-12-26": "Family Day", + "2037-01-01": "New Year's Day", + "2037-03-21": "Independence Day", + "2037-04-03": "Good Friday", + "2037-04-06": "Easter Monday", + "2037-05-01": "Workers' Day", + "2037-05-04": "Cassinga Day", + "2037-05-14": "Ascension Day", + "2037-05-25": "Africa Day", + "2037-08-26": "Heroes' Day", + "2037-09-10": "Day of the Namibian Women and International Human Rights Day", + "2037-12-25": "Christmas Day", + "2037-12-26": "Family Day", + "2038-01-01": "New Year's Day", + "2038-03-21": "Independence Day", + "2038-03-22": "Independence Day (Observed)", + "2038-04-23": "Good Friday", + "2038-04-26": "Easter Monday", + "2038-05-01": "Workers' Day", + "2038-05-04": "Cassinga Day", + "2038-05-25": "Africa Day", + "2038-06-03": "Ascension Day", + "2038-08-26": "Heroes' Day", + "2038-09-10": "Day of the Namibian Women and International Human Rights Day", + "2038-12-25": "Christmas Day", + "2038-12-26": "Family Day", + "2038-12-27": "Family Day (Observed)", + "2039-01-01": "New Year's Day", + "2039-03-21": "Independence Day", + "2039-04-08": "Good Friday", + "2039-04-11": "Easter Monday", + "2039-05-01": "Workers' Day", + "2039-05-02": "Workers' Day (Observed)", + "2039-05-04": "Cassinga Day", + "2039-05-19": "Ascension Day", + "2039-05-25": "Africa Day", + "2039-08-26": "Heroes' Day", + "2039-09-10": "Day of the Namibian Women and International Human Rights Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Family Day", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (Observed)", + "2040-03-21": "Independence Day", + "2040-03-30": "Good Friday", + "2040-04-02": "Easter Monday", + "2040-05-01": "Workers' Day", + "2040-05-04": "Cassinga Day", + "2040-05-10": "Ascension Day", + "2040-05-25": "Africa Day", + "2040-08-26": "Heroes' Day", + "2040-08-27": "Heroes' Day (Observed)", + "2040-09-10": "Day of the Namibian Women and International Human Rights Day", + "2040-12-25": "Christmas Day", + "2040-12-26": "Family Day", + "2041-01-01": "New Year's Day", + "2041-03-21": "Independence Day", + "2041-04-19": "Good Friday", + "2041-04-22": "Easter Monday", + "2041-05-01": "Workers' Day", + "2041-05-04": "Cassinga Day", + "2041-05-25": "Africa Day", + "2041-05-30": "Ascension Day", + "2041-08-26": "Heroes' Day", + "2041-09-10": "Day of the Namibian Women and International Human Rights Day", + "2041-12-25": "Christmas Day", + "2041-12-26": "Family Day", + "2042-01-01": "New Year's Day", + "2042-03-21": "Independence Day", + "2042-04-04": "Good Friday", + "2042-04-07": "Easter Monday", + "2042-05-01": "Workers' Day", + "2042-05-04": "Cassinga Day", + "2042-05-05": "Cassinga Day (Observed)", + "2042-05-15": "Ascension Day", + "2042-05-25": "Africa Day", + "2042-05-26": "Africa Day (Observed)", + "2042-08-26": "Heroes' Day", + "2042-09-10": "Day of the Namibian Women and International Human Rights Day", + "2042-12-25": "Christmas Day", + "2042-12-26": "Family Day", + "2043-01-01": "New Year's Day", + "2043-03-21": "Independence Day", + "2043-03-27": "Good Friday", + "2043-03-30": "Easter Monday", + "2043-05-01": "Workers' Day", + "2043-05-04": "Cassinga Day", + "2043-05-07": "Ascension Day", + "2043-05-25": "Africa Day", + "2043-08-26": "Heroes' Day", + "2043-09-10": "Day of the Namibian Women and International Human Rights Day", + "2043-12-25": "Christmas Day", + "2043-12-26": "Family Day", + "2044-01-01": "New Year's Day", + "2044-03-21": "Independence Day", + "2044-04-15": "Good Friday", + "2044-04-18": "Easter Monday", + "2044-05-01": "Workers' Day", + "2044-05-02": "Workers' Day (Observed)", + "2044-05-04": "Cassinga Day", + "2044-05-25": "Africa Day", + "2044-05-26": "Ascension Day", + "2044-08-26": "Heroes' Day", + "2044-09-10": "Day of the Namibian Women and International Human Rights Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "Family Day", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (Observed)", + "2045-03-21": "Independence Day", + "2045-04-07": "Good Friday", + "2045-04-10": "Easter Monday", + "2045-05-01": "Workers' Day", + "2045-05-04": "Cassinga Day", + "2045-05-18": "Ascension Day", + "2045-05-25": "Africa Day", + "2045-08-26": "Heroes' Day", + "2045-09-10": "Day of the Namibian Women and International Human Rights Day", + "2045-09-11": "Day of the Namibian Women and International Human Rights Day (Observed)", + "2045-12-25": "Christmas Day", + "2045-12-26": "Family Day", + "2046-01-01": "New Year's Day", + "2046-03-21": "Independence Day", + "2046-03-23": "Good Friday", + "2046-03-26": "Easter Monday", + "2046-05-01": "Workers' Day", + "2046-05-03": "Ascension Day", + "2046-05-04": "Cassinga Day", + "2046-05-25": "Africa Day", + "2046-08-26": "Heroes' Day", + "2046-08-27": "Heroes' Day (Observed)", + "2046-09-10": "Day of the Namibian Women and International Human Rights Day", + "2046-12-25": "Christmas Day", + "2046-12-26": "Family Day", + "2047-01-01": "New Year's Day", + "2047-03-21": "Independence Day", + "2047-04-12": "Good Friday", + "2047-04-15": "Easter Monday", + "2047-05-01": "Workers' Day", + "2047-05-04": "Cassinga Day", + "2047-05-23": "Ascension Day", + "2047-05-25": "Africa Day", + "2047-08-26": "Heroes' Day", + "2047-09-10": "Day of the Namibian Women and International Human Rights Day", + "2047-12-25": "Christmas Day", + "2047-12-26": "Family Day", + "2048-01-01": "New Year's Day", + "2048-03-21": "Independence Day", + "2048-04-03": "Good Friday", + "2048-04-06": "Easter Monday", + "2048-05-01": "Workers' Day", + "2048-05-04": "Cassinga Day", + "2048-05-14": "Ascension Day", + "2048-05-25": "Africa Day", + "2048-08-26": "Heroes' Day", + "2048-09-10": "Day of the Namibian Women and International Human Rights Day", + "2048-12-25": "Christmas Day", + "2048-12-26": "Family Day", + "2049-01-01": "New Year's Day", + "2049-03-21": "Independence Day", + "2049-03-22": "Independence Day (Observed)", + "2049-04-16": "Good Friday", + "2049-04-19": "Easter Monday", + "2049-05-01": "Workers' Day", + "2049-05-04": "Cassinga Day", + "2049-05-25": "Africa Day", + "2049-05-27": "Ascension Day", + "2049-08-26": "Heroes' Day", + "2049-09-10": "Day of the Namibian Women and International Human Rights Day", + "2049-12-25": "Christmas Day", + "2049-12-26": "Family Day", + "2049-12-27": "Family Day (Observed)", + "2050-01-01": "New Year's Day", + "2050-03-21": "Independence Day", + "2050-04-08": "Good Friday", + "2050-04-11": "Easter Monday", + "2050-05-01": "Workers' Day", + "2050-05-02": "Workers' Day (Observed)", + "2050-05-04": "Cassinga Day", + "2050-05-19": "Ascension Day", + "2050-05-25": "Africa Day", + "2050-08-26": "Heroes' Day", + "2050-09-10": "Day of the Namibian Women and International Human Rights Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "Family Day" +} diff --git a/snapshots/countries/NG.json b/snapshots/countries/NG.json new file mode 100644 index 000000000..5b4c61ee5 --- /dev/null +++ b/snapshots/countries/NG.json @@ -0,0 +1,1041 @@ +{ + "1979-01-01": "New Year's Day", + "1979-02-09": "Eid-el-Mawlid* (*estimated)", + "1979-04-13": "Good Friday", + "1979-04-16": "Easter Monday", + "1979-08-23": "Eid-el-Fitr* (*estimated)", + "1979-08-24": "Eid-el-Fitr Holiday* (*estimated)", + "1979-10-01": "Independence Day", + "1979-10-31": "Eid-el-Kabir* (*estimated)", + "1979-11-01": "Eid-el-Kabir Holiday* (*estimated)", + "1979-12-25": "Christmas Day", + "1979-12-26": "Boxing Day", + "1980-01-01": "New Year's Day", + "1980-01-30": "Eid-el-Mawlid* (*estimated)", + "1980-04-04": "Good Friday", + "1980-04-07": "Easter Monday", + "1980-08-12": "Eid-el-Fitr* (*estimated)", + "1980-08-13": "Eid-el-Fitr Holiday* (*estimated)", + "1980-10-01": "Independence Day", + "1980-10-19": "Eid-el-Kabir* (*estimated)", + "1980-10-20": "Eid-el-Kabir Holiday* (*estimated)", + "1980-12-25": "Christmas Day", + "1980-12-26": "Boxing Day", + "1981-01-01": "New Year's Day", + "1981-01-18": "Eid-el-Mawlid* (*estimated)", + "1981-04-17": "Good Friday", + "1981-04-20": "Easter Monday", + "1981-05-01": "Workers' Day", + "1981-08-01": "Eid-el-Fitr* (*estimated)", + "1981-08-02": "Eid-el-Fitr Holiday* (*estimated)", + "1981-10-01": "Independence Day", + "1981-10-08": "Eid-el-Kabir* (*estimated)", + "1981-10-09": "Eid-el-Kabir Holiday* (*estimated)", + "1981-12-25": "Christmas Day", + "1981-12-26": "Boxing Day", + "1982-01-01": "New Year's Day", + "1982-01-07": "Eid-el-Mawlid* (*estimated)", + "1982-04-09": "Good Friday", + "1982-04-12": "Easter Monday", + "1982-05-01": "Workers' Day", + "1982-07-21": "Eid-el-Fitr* (*estimated)", + "1982-07-22": "Eid-el-Fitr Holiday* (*estimated)", + "1982-09-27": "Eid-el-Kabir* (*estimated)", + "1982-09-28": "Eid-el-Kabir Holiday* (*estimated)", + "1982-10-01": "Independence Day", + "1982-12-25": "Christmas Day", + "1982-12-26": "Boxing Day", + "1982-12-27": "Eid-el-Mawlid* (*estimated)", + "1983-01-01": "New Year's Day", + "1983-04-01": "Good Friday", + "1983-04-04": "Easter Monday", + "1983-05-01": "Workers' Day", + "1983-07-11": "Eid-el-Fitr* (*estimated)", + "1983-07-12": "Eid-el-Fitr Holiday* (*estimated)", + "1983-09-17": "Eid-el-Kabir* (*estimated)", + "1983-09-18": "Eid-el-Kabir Holiday* (*estimated)", + "1983-10-01": "Independence Day", + "1983-12-16": "Eid-el-Mawlid* (*estimated)", + "1983-12-25": "Christmas Day", + "1983-12-26": "Boxing Day", + "1984-01-01": "New Year's Day", + "1984-04-20": "Good Friday", + "1984-04-23": "Easter Monday", + "1984-05-01": "Workers' Day", + "1984-06-30": "Eid-el-Fitr* (*estimated)", + "1984-07-01": "Eid-el-Fitr Holiday* (*estimated)", + "1984-09-05": "Eid-el-Kabir* (*estimated)", + "1984-09-06": "Eid-el-Kabir Holiday* (*estimated)", + "1984-10-01": "Independence Day", + "1984-12-04": "Eid-el-Mawlid* (*estimated)", + "1984-12-25": "Christmas Day", + "1984-12-26": "Boxing Day", + "1985-01-01": "New Year's Day", + "1985-04-05": "Good Friday", + "1985-04-08": "Easter Monday", + "1985-05-01": "Workers' Day", + "1985-06-19": "Eid-el-Fitr* (*estimated)", + "1985-06-20": "Eid-el-Fitr Holiday* (*estimated)", + "1985-08-26": "Eid-el-Kabir* (*estimated)", + "1985-08-27": "Eid-el-Kabir Holiday* (*estimated)", + "1985-10-01": "Independence Day", + "1985-11-24": "Eid-el-Mawlid* (*estimated)", + "1985-12-25": "Christmas Day", + "1985-12-26": "Boxing Day", + "1986-01-01": "New Year's Day", + "1986-03-28": "Good Friday", + "1986-03-31": "Easter Monday", + "1986-05-01": "Workers' Day", + "1986-06-08": "Eid-el-Fitr* (*estimated)", + "1986-06-09": "Eid-el-Fitr Holiday* (*estimated)", + "1986-08-15": "Eid-el-Kabir* (*estimated)", + "1986-08-16": "Eid-el-Kabir Holiday* (*estimated)", + "1986-10-01": "Independence Day", + "1986-11-14": "Eid-el-Mawlid* (*estimated)", + "1986-12-25": "Christmas Day", + "1986-12-26": "Boxing Day", + "1987-01-01": "New Year's Day", + "1987-04-17": "Good Friday", + "1987-04-20": "Easter Monday", + "1987-05-01": "Workers' Day", + "1987-05-28": "Eid-el-Fitr* (*estimated)", + "1987-05-29": "Eid-el-Fitr Holiday* (*estimated)", + "1987-08-04": "Eid-el-Kabir* (*estimated)", + "1987-08-05": "Eid-el-Kabir Holiday* (*estimated)", + "1987-10-01": "Independence Day", + "1987-11-03": "Eid-el-Mawlid* (*estimated)", + "1987-12-25": "Christmas Day", + "1987-12-26": "Boxing Day", + "1988-01-01": "New Year's Day", + "1988-04-01": "Good Friday", + "1988-04-04": "Easter Monday", + "1988-05-01": "Workers' Day", + "1988-05-16": "Eid-el-Fitr* (*estimated)", + "1988-05-17": "Eid-el-Fitr Holiday* (*estimated)", + "1988-07-23": "Eid-el-Kabir* (*estimated)", + "1988-07-24": "Eid-el-Kabir Holiday* (*estimated)", + "1988-10-01": "Independence Day", + "1988-10-22": "Eid-el-Mawlid* (*estimated)", + "1988-12-25": "Christmas Day", + "1988-12-26": "Boxing Day", + "1989-01-01": "New Year's Day", + "1989-03-24": "Good Friday", + "1989-03-27": "Easter Monday", + "1989-05-01": "Workers' Day", + "1989-05-06": "Eid-el-Fitr* (*estimated)", + "1989-05-07": "Eid-el-Fitr Holiday* (*estimated)", + "1989-07-13": "Eid-el-Kabir* (*estimated)", + "1989-07-14": "Eid-el-Kabir Holiday* (*estimated)", + "1989-10-01": "Independence Day", + "1989-10-11": "Eid-el-Mawlid* (*estimated)", + "1989-12-25": "Christmas Day", + "1989-12-26": "Boxing Day", + "1990-01-01": "New Year's Day", + "1990-04-13": "Good Friday", + "1990-04-16": "Easter Monday", + "1990-04-26": "Eid-el-Fitr* (*estimated)", + "1990-04-27": "Eid-el-Fitr Holiday* (*estimated)", + "1990-05-01": "Workers' Day", + "1990-07-02": "Eid-el-Kabir* (*estimated)", + "1990-07-03": "Eid-el-Kabir Holiday* (*estimated)", + "1990-10-01": "Eid-el-Mawlid* (*estimated); Independence Day", + "1990-12-25": "Christmas Day", + "1990-12-26": "Boxing Day", + "1991-01-01": "New Year's Day", + "1991-03-29": "Good Friday", + "1991-04-01": "Easter Monday", + "1991-04-15": "Eid-el-Fitr* (*estimated)", + "1991-04-16": "Eid-el-Fitr Holiday* (*estimated)", + "1991-05-01": "Workers' Day", + "1991-06-22": "Eid-el-Kabir* (*estimated)", + "1991-06-23": "Eid-el-Kabir Holiday* (*estimated)", + "1991-09-20": "Eid-el-Mawlid* (*estimated)", + "1991-10-01": "Independence Day", + "1991-12-25": "Christmas Day", + "1991-12-26": "Boxing Day", + "1992-01-01": "New Year's Day", + "1992-04-04": "Eid-el-Fitr* (*estimated)", + "1992-04-05": "Eid-el-Fitr Holiday* (*estimated)", + "1992-04-17": "Good Friday", + "1992-04-20": "Easter Monday", + "1992-05-01": "Workers' Day", + "1992-06-11": "Eid-el-Kabir* (*estimated)", + "1992-06-12": "Eid-el-Kabir Holiday* (*estimated)", + "1992-09-09": "Eid-el-Mawlid* (*estimated)", + "1992-10-01": "Independence Day", + "1992-12-25": "Christmas Day", + "1992-12-26": "Boxing Day", + "1993-01-01": "New Year's Day", + "1993-03-24": "Eid-el-Fitr* (*estimated)", + "1993-03-25": "Eid-el-Fitr Holiday* (*estimated)", + "1993-04-09": "Good Friday", + "1993-04-12": "Easter Monday", + "1993-05-01": "Workers' Day", + "1993-05-31": "Eid-el-Kabir* (*estimated)", + "1993-06-01": "Eid-el-Kabir Holiday* (*estimated)", + "1993-08-29": "Eid-el-Mawlid* (*estimated)", + "1993-10-01": "Independence Day", + "1993-12-25": "Christmas Day", + "1993-12-26": "Boxing Day", + "1994-01-01": "New Year's Day", + "1994-03-13": "Eid-el-Fitr* (*estimated)", + "1994-03-14": "Eid-el-Fitr Holiday* (*estimated)", + "1994-04-01": "Good Friday", + "1994-04-04": "Easter Monday", + "1994-05-01": "Workers' Day", + "1994-05-20": "Eid-el-Kabir* (*estimated)", + "1994-05-21": "Eid-el-Kabir Holiday* (*estimated)", + "1994-08-19": "Eid-el-Mawlid* (*estimated)", + "1994-10-01": "Independence Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Boxing Day", + "1995-01-01": "New Year's Day", + "1995-03-02": "Eid-el-Fitr* (*estimated)", + "1995-03-03": "Eid-el-Fitr Holiday* (*estimated)", + "1995-04-14": "Good Friday", + "1995-04-17": "Easter Monday", + "1995-05-01": "Workers' Day", + "1995-05-09": "Eid-el-Kabir* (*estimated)", + "1995-05-10": "Eid-el-Kabir Holiday* (*estimated)", + "1995-08-08": "Eid-el-Mawlid* (*estimated)", + "1995-10-01": "Independence Day", + "1995-12-25": "Christmas Day", + "1995-12-26": "Boxing Day", + "1996-01-01": "New Year's Day", + "1996-02-19": "Eid-el-Fitr* (*estimated)", + "1996-02-20": "Eid-el-Fitr Holiday* (*estimated)", + "1996-04-05": "Good Friday", + "1996-04-08": "Easter Monday", + "1996-04-27": "Eid-el-Kabir* (*estimated)", + "1996-04-28": "Eid-el-Kabir Holiday* (*estimated)", + "1996-05-01": "Workers' Day", + "1996-07-27": "Eid-el-Mawlid* (*estimated)", + "1996-10-01": "Independence Day", + "1996-12-25": "Christmas Day", + "1996-12-26": "Boxing Day", + "1997-01-01": "New Year's Day", + "1997-02-08": "Eid-el-Fitr* (*estimated)", + "1997-02-09": "Eid-el-Fitr Holiday* (*estimated)", + "1997-03-28": "Good Friday", + "1997-03-31": "Easter Monday", + "1997-04-17": "Eid-el-Kabir* (*estimated)", + "1997-04-18": "Eid-el-Kabir Holiday* (*estimated)", + "1997-05-01": "Workers' Day", + "1997-07-16": "Eid-el-Mawlid* (*estimated)", + "1997-10-01": "Independence Day", + "1997-12-25": "Christmas Day", + "1997-12-26": "Boxing Day", + "1998-01-01": "New Year's Day", + "1998-01-29": "Eid-el-Fitr* (*estimated)", + "1998-01-30": "Eid-el-Fitr Holiday* (*estimated)", + "1998-04-07": "Eid-el-Kabir* (*estimated)", + "1998-04-08": "Eid-el-Kabir Holiday* (*estimated)", + "1998-04-10": "Good Friday", + "1998-04-13": "Easter Monday", + "1998-05-01": "Workers' Day", + "1998-07-06": "Eid-el-Mawlid* (*estimated)", + "1998-10-01": "Independence Day", + "1998-12-25": "Christmas Day", + "1998-12-26": "Boxing Day", + "1999-01-01": "New Year's Day", + "1999-01-18": "Eid-el-Fitr* (*estimated)", + "1999-01-19": "Eid-el-Fitr Holiday* (*estimated)", + "1999-03-27": "Eid-el-Kabir* (*estimated)", + "1999-03-28": "Eid-el-Kabir Holiday* (*estimated)", + "1999-04-02": "Good Friday", + "1999-04-05": "Easter Monday", + "1999-05-01": "Workers' Day", + "1999-06-26": "Eid-el-Mawlid* (*estimated)", + "1999-10-01": "Independence Day", + "1999-12-25": "Christmas Day", + "1999-12-26": "Boxing Day", + "2000-01-01": "New Year's Day", + "2000-01-08": "Eid-el-Fitr* (*estimated)", + "2000-01-09": "Eid-el-Fitr Holiday* (*estimated)", + "2000-03-16": "Eid-el-Kabir* (*estimated)", + "2000-03-17": "Eid-el-Kabir Holiday* (*estimated)", + "2000-04-21": "Good Friday", + "2000-04-24": "Easter Monday", + "2000-05-01": "Workers' Day", + "2000-05-29": "Democracy Day", + "2000-06-14": "Eid-el-Mawlid* (*estimated)", + "2000-10-01": "Independence Day", + "2000-12-25": "Christmas Day", + "2000-12-26": "Boxing Day", + "2000-12-27": "Eid-el-Fitr* (*estimated)", + "2000-12-28": "Eid-el-Fitr Holiday* (*estimated)", + "2001-01-01": "New Year's Day", + "2001-03-05": "Eid-el-Kabir* (*estimated)", + "2001-03-06": "Eid-el-Kabir Holiday* (*estimated)", + "2001-04-13": "Good Friday", + "2001-04-16": "Easter Monday", + "2001-05-01": "Workers' Day", + "2001-05-29": "Democracy Day", + "2001-06-04": "Eid-el-Mawlid* (*estimated)", + "2001-10-01": "Independence Day", + "2001-12-16": "Eid-el-Fitr* (*estimated)", + "2001-12-17": "Eid-el-Fitr Holiday* (*estimated)", + "2001-12-25": "Christmas Day", + "2001-12-26": "Boxing Day", + "2002-01-01": "New Year's Day", + "2002-02-22": "Eid-el-Kabir* (*estimated)", + "2002-02-23": "Eid-el-Kabir Holiday* (*estimated)", + "2002-03-29": "Good Friday", + "2002-04-01": "Easter Monday", + "2002-05-01": "Workers' Day", + "2002-05-24": "Eid-el-Mawlid* (*estimated)", + "2002-05-29": "Democracy Day", + "2002-10-01": "Independence Day", + "2002-12-05": "Eid-el-Fitr* (*estimated)", + "2002-12-06": "Eid-el-Fitr Holiday* (*estimated)", + "2002-12-25": "Christmas Day", + "2002-12-26": "Boxing Day", + "2003-01-01": "New Year's Day", + "2003-02-11": "Eid-el-Kabir* (*estimated)", + "2003-02-12": "Eid-el-Kabir Holiday* (*estimated)", + "2003-04-18": "Good Friday", + "2003-04-21": "Easter Monday", + "2003-05-01": "Workers' Day", + "2003-05-13": "Eid-el-Mawlid* (*estimated)", + "2003-05-29": "Democracy Day", + "2003-10-01": "Independence Day", + "2003-11-25": "Eid-el-Fitr* (*estimated)", + "2003-11-26": "Eid-el-Fitr Holiday* (*estimated)", + "2003-12-25": "Christmas Day", + "2003-12-26": "Boxing Day", + "2004-01-01": "New Year's Day", + "2004-02-01": "Eid-el-Kabir* (*estimated)", + "2004-02-02": "Eid-el-Kabir Holiday* (*estimated)", + "2004-04-09": "Good Friday", + "2004-04-12": "Easter Monday", + "2004-05-01": "Eid-el-Mawlid* (*estimated); Workers' Day", + "2004-05-29": "Democracy Day", + "2004-10-01": "Independence Day", + "2004-11-14": "Eid-el-Fitr* (*estimated)", + "2004-11-15": "Eid-el-Fitr Holiday* (*estimated)", + "2004-12-25": "Christmas Day", + "2004-12-26": "Boxing Day", + "2005-01-01": "New Year's Day", + "2005-01-21": "Eid-el-Kabir* (*estimated)", + "2005-01-22": "Eid-el-Kabir Holiday* (*estimated)", + "2005-03-25": "Good Friday", + "2005-03-28": "Easter Monday", + "2005-04-21": "Eid-el-Mawlid* (*estimated)", + "2005-05-01": "Workers' Day", + "2005-05-29": "Democracy Day", + "2005-10-01": "Independence Day", + "2005-11-03": "Eid-el-Fitr* (*estimated)", + "2005-11-04": "Eid-el-Fitr Holiday* (*estimated)", + "2005-12-25": "Christmas Day", + "2005-12-26": "Boxing Day", + "2006-01-01": "New Year's Day", + "2006-01-10": "Eid-el-Kabir* (*estimated)", + "2006-01-11": "Eid-el-Kabir Holiday* (*estimated)", + "2006-04-10": "Eid-el-Mawlid* (*estimated)", + "2006-04-14": "Good Friday", + "2006-04-17": "Easter Monday", + "2006-05-01": "Workers' Day", + "2006-05-29": "Democracy Day", + "2006-10-01": "Independence Day", + "2006-10-23": "Eid-el-Fitr* (*estimated)", + "2006-10-24": "Eid-el-Fitr Holiday* (*estimated)", + "2006-12-25": "Christmas Day", + "2006-12-26": "Boxing Day", + "2006-12-31": "Eid-el-Kabir* (*estimated)", + "2007-01-01": "Eid-el-Kabir Holiday* (*estimated); New Year's Day", + "2007-03-31": "Eid-el-Mawlid* (*estimated)", + "2007-04-06": "Good Friday", + "2007-04-09": "Easter Monday", + "2007-05-01": "Workers' Day", + "2007-05-29": "Democracy Day", + "2007-10-01": "Independence Day", + "2007-10-13": "Eid-el-Fitr* (*estimated)", + "2007-10-14": "Eid-el-Fitr Holiday* (*estimated)", + "2007-12-20": "Eid-el-Kabir* (*estimated)", + "2007-12-21": "Eid-el-Kabir Holiday* (*estimated)", + "2007-12-25": "Christmas Day", + "2007-12-26": "Boxing Day", + "2008-01-01": "New Year's Day", + "2008-03-20": "Eid-el-Mawlid* (*estimated)", + "2008-03-21": "Good Friday", + "2008-03-24": "Easter Monday", + "2008-05-01": "Workers' Day", + "2008-05-29": "Democracy Day", + "2008-10-01": "Eid-el-Fitr* (*estimated); Independence Day", + "2008-10-02": "Eid-el-Fitr Holiday* (*estimated)", + "2008-12-08": "Eid-el-Kabir* (*estimated)", + "2008-12-09": "Eid-el-Kabir Holiday* (*estimated)", + "2008-12-25": "Christmas Day", + "2008-12-26": "Boxing Day", + "2009-01-01": "New Year's Day", + "2009-03-09": "Eid-el-Mawlid* (*estimated)", + "2009-04-10": "Good Friday", + "2009-04-13": "Easter Monday", + "2009-05-01": "Workers' Day", + "2009-05-29": "Democracy Day", + "2009-09-20": "Eid-el-Fitr* (*estimated)", + "2009-09-21": "Eid-el-Fitr Holiday* (*estimated)", + "2009-10-01": "Independence Day", + "2009-11-27": "Eid-el-Kabir* (*estimated)", + "2009-11-28": "Eid-el-Kabir Holiday* (*estimated)", + "2009-12-25": "Christmas Day", + "2009-12-26": "Boxing Day", + "2010-01-01": "New Year's Day", + "2010-02-26": "Eid-el-Mawlid* (*estimated)", + "2010-04-02": "Good Friday", + "2010-04-05": "Easter Monday", + "2010-05-01": "Workers' Day", + "2010-05-29": "Democracy Day", + "2010-09-10": "Eid-el-Fitr* (*estimated)", + "2010-09-11": "Eid-el-Fitr Holiday* (*estimated)", + "2010-10-01": "Independence Day", + "2010-11-16": "Eid-el-Kabir* (*estimated)", + "2010-11-17": "Eid-el-Kabir Holiday* (*estimated)", + "2010-12-25": "Christmas Day", + "2010-12-26": "Boxing Day", + "2011-01-01": "New Year's Day", + "2011-02-15": "Eid-el-Mawlid* (*estimated)", + "2011-04-22": "Good Friday", + "2011-04-25": "Easter Monday", + "2011-05-01": "Workers' Day", + "2011-05-29": "Democracy Day", + "2011-08-30": "Eid-el-Fitr* (*estimated)", + "2011-08-31": "Eid-el-Fitr Holiday* (*estimated)", + "2011-10-01": "Independence Day", + "2011-11-06": "Eid-el-Kabir* (*estimated)", + "2011-11-07": "Eid-el-Kabir Holiday* (*estimated)", + "2011-12-25": "Christmas Day", + "2011-12-26": "Boxing Day", + "2012-01-01": "New Year's Day", + "2012-02-04": "Eid-el-Mawlid* (*estimated)", + "2012-04-06": "Good Friday", + "2012-04-09": "Easter Monday", + "2012-05-01": "Workers' Day", + "2012-05-29": "Democracy Day", + "2012-08-19": "Eid-el-Fitr* (*estimated)", + "2012-08-20": "Eid-el-Fitr Holiday* (*estimated)", + "2012-10-01": "Independence Day", + "2012-10-26": "Eid-el-Kabir* (*estimated)", + "2012-10-27": "Eid-el-Kabir Holiday* (*estimated)", + "2012-12-25": "Christmas Day", + "2012-12-26": "Boxing Day", + "2013-01-01": "New Year's Day", + "2013-01-24": "Eid-el-Mawlid* (*estimated)", + "2013-03-29": "Good Friday", + "2013-04-01": "Easter Monday", + "2013-05-01": "Workers' Day", + "2013-05-29": "Democracy Day", + "2013-08-08": "Eid-el-Fitr* (*estimated)", + "2013-08-09": "Eid-el-Fitr Holiday* (*estimated)", + "2013-10-01": "Independence Day", + "2013-10-15": "Eid-el-Kabir* (*estimated)", + "2013-10-16": "Eid-el-Kabir Holiday* (*estimated)", + "2013-12-25": "Christmas Day", + "2013-12-26": "Boxing Day", + "2014-01-01": "New Year's Day", + "2014-01-13": "Eid-el-Mawlid* (*estimated)", + "2014-04-18": "Good Friday", + "2014-04-21": "Easter Monday", + "2014-05-01": "Workers' Day", + "2014-05-29": "Democracy Day", + "2014-07-28": "Eid-el-Fitr* (*estimated)", + "2014-07-29": "Eid-el-Fitr Holiday* (*estimated)", + "2014-10-01": "Independence Day", + "2014-10-04": "Eid-el-Kabir* (*estimated)", + "2014-10-05": "Eid-el-Kabir Holiday* (*estimated)", + "2014-12-25": "Christmas Day", + "2014-12-26": "Boxing Day", + "2015-01-01": "New Year's Day", + "2015-01-03": "Eid-el-Mawlid* (*estimated)", + "2015-04-03": "Good Friday", + "2015-04-06": "Easter Monday", + "2015-05-01": "Workers' Day", + "2015-05-29": "Democracy Day", + "2015-07-17": "Eid-el-Fitr* (*estimated)", + "2015-07-18": "Eid-el-Fitr Holiday* (*estimated)", + "2015-09-23": "Eid-el-Kabir* (*estimated)", + "2015-09-24": "Eid-el-Kabir Holiday* (*estimated)", + "2015-10-01": "Independence Day", + "2015-12-23": "Eid-el-Mawlid* (*estimated)", + "2015-12-25": "Christmas Day", + "2015-12-26": "Boxing Day", + "2016-01-01": "New Year's Day", + "2016-03-25": "Good Friday", + "2016-03-28": "Easter Monday", + "2016-05-01": "Workers' Day", + "2016-05-02": "Workers' Day (Observed)", + "2016-05-29": "Democracy Day", + "2016-05-30": "Democracy Day (Observed)", + "2016-07-06": "Eid-el-Fitr* (*estimated)", + "2016-07-07": "Eid-el-Fitr Holiday* (*estimated)", + "2016-09-11": "Eid-el-Kabir* (*estimated)", + "2016-09-12": "Eid-el-Kabir Holiday* (*estimated)", + "2016-09-13": "Eid-el-Kabir* (*estimated) (Observed)", + "2016-10-01": "Independence Day", + "2016-10-03": "Independence Day (Observed)", + "2016-12-11": "Eid-el-Mawlid* (*estimated)", + "2016-12-12": "Eid-el-Mawlid* (*estimated) (Observed)", + "2016-12-25": "Christmas Day", + "2016-12-26": "Boxing Day", + "2016-12-27": "Christmas Day (Observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (Observed)", + "2017-04-14": "Good Friday", + "2017-04-17": "Easter Monday", + "2017-05-01": "Workers' Day", + "2017-05-29": "Democracy Day", + "2017-06-25": "Eid-el-Fitr* (*estimated)", + "2017-06-26": "Eid-el-Fitr Holiday* (*estimated)", + "2017-06-27": "Eid-el-Fitr* (*estimated) (Observed)", + "2017-09-01": "Eid-el-Kabir* (*estimated)", + "2017-09-02": "Eid-el-Kabir Holiday* (*estimated)", + "2017-09-04": "Eid-el-Kabir Holiday* (*estimated) (Observed)", + "2017-10-01": "Independence Day", + "2017-10-02": "Independence Day (Observed)", + "2017-11-30": "Eid-el-Mawlid* (*estimated)", + "2017-12-25": "Christmas Day", + "2017-12-26": "Boxing Day", + "2018-01-01": "New Year's Day", + "2018-03-30": "Good Friday", + "2018-04-02": "Easter Monday", + "2018-05-01": "Workers' Day", + "2018-05-29": "Democracy Day", + "2018-06-15": "Eid-el-Fitr* (*estimated)", + "2018-06-16": "Eid-el-Fitr Holiday* (*estimated)", + "2018-06-18": "Eid-el-Fitr Holiday* (*estimated) (Observed)", + "2018-08-21": "Eid-el-Kabir* (*estimated)", + "2018-08-22": "Eid-el-Kabir Holiday* (*estimated)", + "2018-10-01": "Independence Day", + "2018-11-20": "Eid-el-Mawlid* (*estimated)", + "2018-12-25": "Christmas Day", + "2018-12-26": "Boxing Day", + "2019-01-01": "New Year's Day", + "2019-02-22": "Public Holiday for Elections", + "2019-04-19": "Good Friday", + "2019-04-22": "Easter Monday", + "2019-05-01": "Workers' Day", + "2019-05-29": "Presidential Inauguration Day", + "2019-06-04": "Eid-el-Fitr* (*estimated)", + "2019-06-05": "Eid-el-Fitr Holiday* (*estimated)", + "2019-06-12": "Democracy Day", + "2019-08-11": "Eid-el-Kabir* (*estimated)", + "2019-08-12": "Eid-el-Kabir Holiday* (*estimated)", + "2019-08-13": "Eid-el-Kabir* (*estimated) (Observed)", + "2019-10-01": "Independence Day", + "2019-11-09": "Eid-el-Mawlid* (*estimated)", + "2019-11-11": "Eid-el-Mawlid* (*estimated) (Observed)", + "2019-12-25": "Christmas Day", + "2019-12-26": "Boxing Day", + "2020-01-01": "New Year's Day", + "2020-04-10": "Good Friday", + "2020-04-13": "Easter Monday", + "2020-05-01": "Workers' Day", + "2020-05-24": "Eid-el-Fitr* (*estimated)", + "2020-05-25": "Eid-el-Fitr Holiday* (*estimated)", + "2020-05-26": "Eid-el-Fitr* (*estimated) (Observed)", + "2020-06-12": "Democracy Day", + "2020-07-31": "Eid-el-Kabir* (*estimated)", + "2020-08-01": "Eid-el-Kabir Holiday* (*estimated)", + "2020-08-03": "Eid-el-Kabir Holiday* (*estimated) (Observed)", + "2020-10-01": "Independence Day", + "2020-10-29": "Eid-el-Mawlid* (*estimated)", + "2020-12-25": "Christmas Day", + "2020-12-26": "Boxing Day", + "2020-12-28": "Boxing Day (Observed)", + "2021-01-01": "New Year's Day", + "2021-04-02": "Good Friday", + "2021-04-05": "Easter Monday", + "2021-05-01": "Workers' Day", + "2021-05-03": "Workers' Day (Observed)", + "2021-05-13": "Eid-el-Fitr* (*estimated)", + "2021-05-14": "Eid-el-Fitr Holiday* (*estimated)", + "2021-06-12": "Democracy Day", + "2021-06-14": "Democracy Day (Observed)", + "2021-07-20": "Eid-el-Kabir* (*estimated)", + "2021-07-21": "Eid-el-Kabir Holiday* (*estimated)", + "2021-10-01": "Independence Day", + "2021-10-18": "Eid-el-Mawlid* (*estimated)", + "2021-12-25": "Christmas Day", + "2021-12-26": "Boxing Day", + "2021-12-27": "Christmas Day (Observed)", + "2021-12-28": "Boxing Day (Observed)", + "2022-01-01": "New Year's Day", + "2022-01-03": "New Year's Day (Observed)", + "2022-04-15": "Good Friday", + "2022-04-18": "Easter Monday", + "2022-05-01": "Workers' Day", + "2022-05-02": "Eid-el-Fitr* (*estimated)", + "2022-05-03": "Eid-el-Fitr Holiday* (*estimated)", + "2022-05-04": "Workers' Day (Observed)", + "2022-06-12": "Democracy Day", + "2022-06-13": "Democracy Day (Observed)", + "2022-07-09": "Eid-el-Kabir* (*estimated)", + "2022-07-10": "Eid-el-Kabir Holiday* (*estimated)", + "2022-07-11": "Eid-el-Kabir* (*estimated) (Observed)", + "2022-07-12": "Eid-el-Kabir Holiday* (*estimated) (Observed)", + "2022-10-01": "Independence Day", + "2022-10-03": "Independence Day (Observed)", + "2022-10-08": "Eid-el-Mawlid* (*estimated)", + "2022-10-10": "Eid-el-Mawlid* (*estimated) (Observed)", + "2022-12-25": "Christmas Day", + "2022-12-26": "Boxing Day", + "2022-12-27": "Christmas Day (Observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (Observed)", + "2023-04-07": "Good Friday", + "2023-04-10": "Easter Monday", + "2023-04-21": "Eid-el-Fitr* (*estimated)", + "2023-04-22": "Eid-el-Fitr Holiday* (*estimated)", + "2023-04-24": "Eid-el-Fitr Holiday* (*estimated) (Observed)", + "2023-05-01": "Workers' Day", + "2023-06-12": "Democracy Day", + "2023-06-28": "Eid-el-Kabir* (*estimated)", + "2023-06-29": "Eid-el-Kabir Holiday* (*estimated)", + "2023-09-27": "Eid-el-Mawlid* (*estimated)", + "2023-10-01": "Independence Day", + "2023-10-02": "Independence Day (Observed)", + "2023-12-25": "Christmas Day", + "2023-12-26": "Boxing Day", + "2024-01-01": "New Year's Day", + "2024-03-29": "Good Friday", + "2024-04-01": "Easter Monday", + "2024-04-10": "Eid-el-Fitr* (*estimated)", + "2024-04-11": "Eid-el-Fitr Holiday* (*estimated)", + "2024-05-01": "Workers' Day", + "2024-06-12": "Democracy Day", + "2024-06-16": "Eid-el-Kabir* (*estimated)", + "2024-06-17": "Eid-el-Kabir Holiday* (*estimated)", + "2024-06-18": "Eid-el-Kabir* (*estimated) (Observed)", + "2024-09-15": "Eid-el-Mawlid* (*estimated)", + "2024-09-16": "Eid-el-Mawlid* (*estimated) (Observed)", + "2024-10-01": "Independence Day", + "2024-12-25": "Christmas Day", + "2024-12-26": "Boxing Day", + "2025-01-01": "New Year's Day", + "2025-03-30": "Eid-el-Fitr* (*estimated)", + "2025-03-31": "Eid-el-Fitr Holiday* (*estimated)", + "2025-04-01": "Eid-el-Fitr* (*estimated) (Observed)", + "2025-04-18": "Good Friday", + "2025-04-21": "Easter Monday", + "2025-05-01": "Workers' Day", + "2025-06-06": "Eid-el-Kabir* (*estimated)", + "2025-06-07": "Eid-el-Kabir Holiday* (*estimated)", + "2025-06-09": "Eid-el-Kabir Holiday* (*estimated) (Observed)", + "2025-06-12": "Democracy Day", + "2025-09-04": "Eid-el-Mawlid* (*estimated)", + "2025-10-01": "Independence Day", + "2025-12-25": "Christmas Day", + "2025-12-26": "Boxing Day", + "2026-01-01": "New Year's Day", + "2026-03-20": "Eid-el-Fitr* (*estimated)", + "2026-03-21": "Eid-el-Fitr Holiday* (*estimated)", + "2026-03-23": "Eid-el-Fitr Holiday* (*estimated) (Observed)", + "2026-04-03": "Good Friday", + "2026-04-06": "Easter Monday", + "2026-05-01": "Workers' Day", + "2026-05-27": "Eid-el-Kabir* (*estimated)", + "2026-05-28": "Eid-el-Kabir Holiday* (*estimated)", + "2026-06-12": "Democracy Day", + "2026-08-25": "Eid-el-Mawlid* (*estimated)", + "2026-10-01": "Independence Day", + "2026-12-25": "Christmas Day", + "2026-12-26": "Boxing Day", + "2026-12-28": "Boxing Day (Observed)", + "2027-01-01": "New Year's Day", + "2027-03-09": "Eid-el-Fitr* (*estimated)", + "2027-03-10": "Eid-el-Fitr Holiday* (*estimated)", + "2027-03-26": "Good Friday", + "2027-03-29": "Easter Monday", + "2027-05-01": "Workers' Day", + "2027-05-03": "Workers' Day (Observed)", + "2027-05-16": "Eid-el-Kabir* (*estimated)", + "2027-05-17": "Eid-el-Kabir Holiday* (*estimated)", + "2027-05-18": "Eid-el-Kabir* (*estimated) (Observed)", + "2027-06-12": "Democracy Day", + "2027-06-14": "Democracy Day (Observed)", + "2027-08-14": "Eid-el-Mawlid* (*estimated)", + "2027-08-16": "Eid-el-Mawlid* (*estimated) (Observed)", + "2027-10-01": "Independence Day", + "2027-12-25": "Christmas Day", + "2027-12-26": "Boxing Day", + "2027-12-27": "Christmas Day (Observed)", + "2027-12-28": "Boxing Day (Observed)", + "2028-01-01": "New Year's Day", + "2028-01-03": "New Year's Day (Observed)", + "2028-02-26": "Eid-el-Fitr* (*estimated)", + "2028-02-27": "Eid-el-Fitr Holiday* (*estimated)", + "2028-02-28": "Eid-el-Fitr* (*estimated) (Observed)", + "2028-02-29": "Eid-el-Fitr Holiday* (*estimated) (Observed)", + "2028-04-14": "Good Friday", + "2028-04-17": "Easter Monday", + "2028-05-01": "Workers' Day", + "2028-05-05": "Eid-el-Kabir* (*estimated)", + "2028-05-06": "Eid-el-Kabir Holiday* (*estimated)", + "2028-05-08": "Eid-el-Kabir Holiday* (*estimated) (Observed)", + "2028-06-12": "Democracy Day", + "2028-08-03": "Eid-el-Mawlid* (*estimated)", + "2028-10-01": "Independence Day", + "2028-10-02": "Independence Day (Observed)", + "2028-12-25": "Christmas Day", + "2028-12-26": "Boxing Day", + "2029-01-01": "New Year's Day", + "2029-02-14": "Eid-el-Fitr* (*estimated)", + "2029-02-15": "Eid-el-Fitr Holiday* (*estimated)", + "2029-03-30": "Good Friday", + "2029-04-02": "Easter Monday", + "2029-04-24": "Eid-el-Kabir* (*estimated)", + "2029-04-25": "Eid-el-Kabir Holiday* (*estimated)", + "2029-05-01": "Workers' Day", + "2029-06-12": "Democracy Day", + "2029-07-24": "Eid-el-Mawlid* (*estimated)", + "2029-10-01": "Independence Day", + "2029-12-25": "Christmas Day", + "2029-12-26": "Boxing Day", + "2030-01-01": "New Year's Day", + "2030-02-04": "Eid-el-Fitr* (*estimated)", + "2030-02-05": "Eid-el-Fitr Holiday* (*estimated)", + "2030-04-13": "Eid-el-Kabir* (*estimated)", + "2030-04-14": "Eid-el-Kabir Holiday* (*estimated)", + "2030-04-15": "Eid-el-Kabir* (*estimated) (Observed)", + "2030-04-16": "Eid-el-Kabir Holiday* (*estimated) (Observed)", + "2030-04-19": "Good Friday", + "2030-04-22": "Easter Monday", + "2030-05-01": "Workers' Day", + "2030-06-12": "Democracy Day", + "2030-07-13": "Eid-el-Mawlid* (*estimated)", + "2030-07-15": "Eid-el-Mawlid* (*estimated) (Observed)", + "2030-10-01": "Independence Day", + "2030-12-25": "Christmas Day", + "2030-12-26": "Boxing Day", + "2031-01-01": "New Year's Day", + "2031-01-24": "Eid-el-Fitr* (*estimated)", + "2031-01-25": "Eid-el-Fitr Holiday* (*estimated)", + "2031-01-27": "Eid-el-Fitr Holiday* (*estimated) (Observed)", + "2031-04-02": "Eid-el-Kabir* (*estimated)", + "2031-04-03": "Eid-el-Kabir Holiday* (*estimated)", + "2031-04-11": "Good Friday", + "2031-04-14": "Easter Monday", + "2031-05-01": "Workers' Day", + "2031-06-12": "Democracy Day", + "2031-07-02": "Eid-el-Mawlid* (*estimated)", + "2031-10-01": "Independence Day", + "2031-12-25": "Christmas Day", + "2031-12-26": "Boxing Day", + "2032-01-01": "New Year's Day", + "2032-01-14": "Eid-el-Fitr* (*estimated)", + "2032-01-15": "Eid-el-Fitr Holiday* (*estimated)", + "2032-03-22": "Eid-el-Kabir* (*estimated)", + "2032-03-23": "Eid-el-Kabir Holiday* (*estimated)", + "2032-03-26": "Good Friday", + "2032-03-29": "Easter Monday", + "2032-05-01": "Workers' Day", + "2032-05-03": "Workers' Day (Observed)", + "2032-06-12": "Democracy Day", + "2032-06-14": "Democracy Day (Observed)", + "2032-06-20": "Eid-el-Mawlid* (*estimated)", + "2032-06-21": "Eid-el-Mawlid* (*estimated) (Observed)", + "2032-10-01": "Independence Day", + "2032-12-25": "Christmas Day", + "2032-12-26": "Boxing Day", + "2032-12-27": "Christmas Day (Observed)", + "2032-12-28": "Boxing Day (Observed)", + "2033-01-01": "New Year's Day", + "2033-01-02": "Eid-el-Fitr* (*estimated)", + "2033-01-03": "Eid-el-Fitr Holiday* (*estimated)", + "2033-01-04": "New Year's Day (Observed)", + "2033-01-05": "Eid-el-Fitr* (*estimated) (Observed)", + "2033-03-11": "Eid-el-Kabir* (*estimated)", + "2033-03-12": "Eid-el-Kabir Holiday* (*estimated)", + "2033-03-14": "Eid-el-Kabir Holiday* (*estimated) (Observed)", + "2033-04-15": "Good Friday", + "2033-04-18": "Easter Monday", + "2033-05-01": "Workers' Day", + "2033-05-02": "Workers' Day (Observed)", + "2033-06-09": "Eid-el-Mawlid* (*estimated)", + "2033-06-12": "Democracy Day", + "2033-06-13": "Democracy Day (Observed)", + "2033-10-01": "Independence Day", + "2033-10-03": "Independence Day (Observed)", + "2033-12-23": "Eid-el-Fitr* (*estimated)", + "2033-12-24": "Eid-el-Fitr Holiday* (*estimated)", + "2033-12-25": "Christmas Day", + "2033-12-26": "Boxing Day", + "2033-12-27": "Eid-el-Fitr Holiday* (*estimated) (Observed)", + "2033-12-28": "Christmas Day (Observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-03-01": "Eid-el-Kabir* (*estimated)", + "2034-03-02": "Eid-el-Kabir Holiday* (*estimated)", + "2034-04-07": "Good Friday", + "2034-04-10": "Easter Monday", + "2034-05-01": "Workers' Day", + "2034-05-30": "Eid-el-Mawlid* (*estimated)", + "2034-06-12": "Democracy Day", + "2034-10-01": "Independence Day", + "2034-10-02": "Independence Day (Observed)", + "2034-12-12": "Eid-el-Fitr* (*estimated)", + "2034-12-13": "Eid-el-Fitr Holiday* (*estimated)", + "2034-12-25": "Christmas Day", + "2034-12-26": "Boxing Day", + "2035-01-01": "New Year's Day", + "2035-02-18": "Eid-el-Kabir* (*estimated)", + "2035-02-19": "Eid-el-Kabir Holiday* (*estimated)", + "2035-02-20": "Eid-el-Kabir* (*estimated) (Observed)", + "2035-03-23": "Good Friday", + "2035-03-26": "Easter Monday", + "2035-05-01": "Workers' Day", + "2035-05-20": "Eid-el-Mawlid* (*estimated)", + "2035-05-21": "Eid-el-Mawlid* (*estimated) (Observed)", + "2035-06-12": "Democracy Day", + "2035-10-01": "Independence Day", + "2035-12-01": "Eid-el-Fitr* (*estimated)", + "2035-12-02": "Eid-el-Fitr Holiday* (*estimated)", + "2035-12-03": "Eid-el-Fitr* (*estimated) (Observed)", + "2035-12-04": "Eid-el-Fitr Holiday* (*estimated) (Observed)", + "2035-12-25": "Christmas Day", + "2035-12-26": "Boxing Day", + "2036-01-01": "New Year's Day", + "2036-02-07": "Eid-el-Kabir* (*estimated)", + "2036-02-08": "Eid-el-Kabir Holiday* (*estimated)", + "2036-04-11": "Good Friday", + "2036-04-14": "Easter Monday", + "2036-05-01": "Workers' Day", + "2036-05-08": "Eid-el-Mawlid* (*estimated)", + "2036-06-12": "Democracy Day", + "2036-10-01": "Independence Day", + "2036-11-19": "Eid-el-Fitr* (*estimated)", + "2036-11-20": "Eid-el-Fitr Holiday* (*estimated)", + "2036-12-25": "Christmas Day", + "2036-12-26": "Boxing Day", + "2037-01-01": "New Year's Day", + "2037-01-26": "Eid-el-Kabir* (*estimated)", + "2037-01-27": "Eid-el-Kabir Holiday* (*estimated)", + "2037-04-03": "Good Friday", + "2037-04-06": "Easter Monday", + "2037-04-28": "Eid-el-Mawlid* (*estimated)", + "2037-05-01": "Workers' Day", + "2037-06-12": "Democracy Day", + "2037-10-01": "Independence Day", + "2037-11-08": "Eid-el-Fitr* (*estimated)", + "2037-11-09": "Eid-el-Fitr Holiday* (*estimated)", + "2037-11-10": "Eid-el-Fitr* (*estimated) (Observed)", + "2037-12-25": "Christmas Day", + "2037-12-26": "Boxing Day", + "2037-12-28": "Boxing Day (Observed)", + "2038-01-01": "New Year's Day", + "2038-01-16": "Eid-el-Kabir* (*estimated)", + "2038-01-17": "Eid-el-Kabir Holiday* (*estimated)", + "2038-01-18": "Eid-el-Kabir* (*estimated) (Observed)", + "2038-01-19": "Eid-el-Kabir Holiday* (*estimated) (Observed)", + "2038-04-17": "Eid-el-Mawlid* (*estimated)", + "2038-04-19": "Eid-el-Mawlid* (*estimated) (Observed)", + "2038-04-23": "Good Friday", + "2038-04-26": "Easter Monday", + "2038-05-01": "Workers' Day", + "2038-05-03": "Workers' Day (Observed)", + "2038-06-12": "Democracy Day", + "2038-06-14": "Democracy Day (Observed)", + "2038-10-01": "Independence Day", + "2038-10-29": "Eid-el-Fitr* (*estimated)", + "2038-10-30": "Eid-el-Fitr Holiday* (*estimated)", + "2038-11-01": "Eid-el-Fitr Holiday* (*estimated) (Observed)", + "2038-12-25": "Christmas Day", + "2038-12-26": "Boxing Day", + "2038-12-27": "Christmas Day (Observed)", + "2038-12-28": "Boxing Day (Observed)", + "2039-01-01": "New Year's Day", + "2039-01-03": "New Year's Day (Observed)", + "2039-01-05": "Eid-el-Kabir* (*estimated)", + "2039-01-06": "Eid-el-Kabir Holiday* (*estimated)", + "2039-04-06": "Eid-el-Mawlid* (*estimated)", + "2039-04-08": "Good Friday", + "2039-04-11": "Easter Monday", + "2039-05-01": "Workers' Day", + "2039-05-02": "Workers' Day (Observed)", + "2039-06-12": "Democracy Day", + "2039-06-13": "Democracy Day (Observed)", + "2039-10-01": "Independence Day", + "2039-10-03": "Independence Day (Observed)", + "2039-10-19": "Eid-el-Fitr* (*estimated)", + "2039-10-20": "Eid-el-Fitr Holiday* (*estimated)", + "2039-12-25": "Christmas Day", + "2039-12-26": "Boxing Day; Eid-el-Kabir* (*estimated)", + "2039-12-27": "Eid-el-Kabir Holiday* (*estimated)", + "2039-12-28": "Christmas Day (Observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (Observed)", + "2040-03-25": "Eid-el-Mawlid* (*estimated)", + "2040-03-26": "Eid-el-Mawlid* (*estimated) (Observed)", + "2040-03-30": "Good Friday", + "2040-04-02": "Easter Monday", + "2040-05-01": "Workers' Day", + "2040-06-12": "Democracy Day", + "2040-10-01": "Independence Day", + "2040-10-07": "Eid-el-Fitr* (*estimated)", + "2040-10-08": "Eid-el-Fitr Holiday* (*estimated)", + "2040-10-09": "Eid-el-Fitr* (*estimated) (Observed)", + "2040-12-14": "Eid-el-Kabir* (*estimated)", + "2040-12-15": "Eid-el-Kabir Holiday* (*estimated)", + "2040-12-17": "Eid-el-Kabir Holiday* (*estimated) (Observed)", + "2040-12-25": "Christmas Day", + "2040-12-26": "Boxing Day", + "2041-01-01": "New Year's Day", + "2041-03-15": "Eid-el-Mawlid* (*estimated)", + "2041-04-19": "Good Friday", + "2041-04-22": "Easter Monday", + "2041-05-01": "Workers' Day", + "2041-06-12": "Democracy Day", + "2041-09-26": "Eid-el-Fitr* (*estimated)", + "2041-09-27": "Eid-el-Fitr Holiday* (*estimated)", + "2041-10-01": "Independence Day", + "2041-12-04": "Eid-el-Kabir* (*estimated)", + "2041-12-05": "Eid-el-Kabir Holiday* (*estimated)", + "2041-12-25": "Christmas Day", + "2041-12-26": "Boxing Day", + "2042-01-01": "New Year's Day", + "2042-03-04": "Eid-el-Mawlid* (*estimated)", + "2042-04-04": "Good Friday", + "2042-04-07": "Easter Monday", + "2042-05-01": "Workers' Day", + "2042-06-12": "Democracy Day", + "2042-09-15": "Eid-el-Fitr* (*estimated)", + "2042-09-16": "Eid-el-Fitr Holiday* (*estimated)", + "2042-10-01": "Independence Day", + "2042-11-23": "Eid-el-Kabir* (*estimated)", + "2042-11-24": "Eid-el-Kabir Holiday* (*estimated)", + "2042-11-25": "Eid-el-Kabir* (*estimated) (Observed)", + "2042-12-25": "Christmas Day", + "2042-12-26": "Boxing Day", + "2043-01-01": "New Year's Day", + "2043-02-22": "Eid-el-Mawlid* (*estimated)", + "2043-02-23": "Eid-el-Mawlid* (*estimated) (Observed)", + "2043-03-27": "Good Friday", + "2043-03-30": "Easter Monday", + "2043-05-01": "Workers' Day", + "2043-06-12": "Democracy Day", + "2043-09-04": "Eid-el-Fitr* (*estimated)", + "2043-09-05": "Eid-el-Fitr Holiday* (*estimated)", + "2043-09-07": "Eid-el-Fitr Holiday* (*estimated) (Observed)", + "2043-10-01": "Independence Day", + "2043-11-12": "Eid-el-Kabir* (*estimated)", + "2043-11-13": "Eid-el-Kabir Holiday* (*estimated)", + "2043-12-25": "Christmas Day", + "2043-12-26": "Boxing Day", + "2043-12-28": "Boxing Day (Observed)", + "2044-01-01": "New Year's Day", + "2044-02-11": "Eid-el-Mawlid* (*estimated)", + "2044-04-15": "Good Friday", + "2044-04-18": "Easter Monday", + "2044-05-01": "Workers' Day", + "2044-05-02": "Workers' Day (Observed)", + "2044-06-12": "Democracy Day", + "2044-06-13": "Democracy Day (Observed)", + "2044-08-24": "Eid-el-Fitr* (*estimated)", + "2044-08-25": "Eid-el-Fitr Holiday* (*estimated)", + "2044-10-01": "Independence Day", + "2044-10-03": "Independence Day (Observed)", + "2044-10-31": "Eid-el-Kabir* (*estimated)", + "2044-11-01": "Eid-el-Kabir Holiday* (*estimated)", + "2044-12-25": "Christmas Day", + "2044-12-26": "Boxing Day", + "2044-12-27": "Christmas Day (Observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (Observed)", + "2045-01-30": "Eid-el-Mawlid* (*estimated)", + "2045-04-07": "Good Friday", + "2045-04-10": "Easter Monday", + "2045-05-01": "Workers' Day", + "2045-06-12": "Democracy Day", + "2045-08-14": "Eid-el-Fitr* (*estimated)", + "2045-08-15": "Eid-el-Fitr Holiday* (*estimated)", + "2045-10-01": "Independence Day", + "2045-10-02": "Independence Day (Observed)", + "2045-10-21": "Eid-el-Kabir* (*estimated)", + "2045-10-22": "Eid-el-Kabir Holiday* (*estimated)", + "2045-10-23": "Eid-el-Kabir* (*estimated) (Observed)", + "2045-10-24": "Eid-el-Kabir Holiday* (*estimated) (Observed)", + "2045-12-25": "Christmas Day", + "2045-12-26": "Boxing Day", + "2046-01-01": "New Year's Day", + "2046-01-19": "Eid-el-Mawlid* (*estimated)", + "2046-03-23": "Good Friday", + "2046-03-26": "Easter Monday", + "2046-05-01": "Workers' Day", + "2046-06-12": "Democracy Day", + "2046-08-03": "Eid-el-Fitr* (*estimated)", + "2046-08-04": "Eid-el-Fitr Holiday* (*estimated)", + "2046-08-06": "Eid-el-Fitr Holiday* (*estimated) (Observed)", + "2046-10-01": "Independence Day", + "2046-10-10": "Eid-el-Kabir* (*estimated)", + "2046-10-11": "Eid-el-Kabir Holiday* (*estimated)", + "2046-12-25": "Christmas Day", + "2046-12-26": "Boxing Day", + "2047-01-01": "New Year's Day", + "2047-01-08": "Eid-el-Mawlid* (*estimated)", + "2047-04-12": "Good Friday", + "2047-04-15": "Easter Monday", + "2047-05-01": "Workers' Day", + "2047-06-12": "Democracy Day", + "2047-07-24": "Eid-el-Fitr* (*estimated)", + "2047-07-25": "Eid-el-Fitr Holiday* (*estimated)", + "2047-09-30": "Eid-el-Kabir* (*estimated)", + "2047-10-01": "Eid-el-Kabir Holiday* (*estimated); Independence Day", + "2047-12-25": "Christmas Day", + "2047-12-26": "Boxing Day", + "2047-12-29": "Eid-el-Mawlid* (*estimated)", + "2047-12-30": "Eid-el-Mawlid* (*estimated) (Observed)", + "2048-01-01": "New Year's Day", + "2048-04-03": "Good Friday", + "2048-04-06": "Easter Monday", + "2048-05-01": "Workers' Day", + "2048-06-12": "Democracy Day", + "2048-07-12": "Eid-el-Fitr* (*estimated)", + "2048-07-13": "Eid-el-Fitr Holiday* (*estimated)", + "2048-07-14": "Eid-el-Fitr* (*estimated) (Observed)", + "2048-09-19": "Eid-el-Kabir* (*estimated)", + "2048-09-20": "Eid-el-Kabir Holiday* (*estimated)", + "2048-09-21": "Eid-el-Kabir* (*estimated) (Observed)", + "2048-09-22": "Eid-el-Kabir Holiday* (*estimated) (Observed)", + "2048-10-01": "Independence Day", + "2048-12-18": "Eid-el-Mawlid* (*estimated)", + "2048-12-25": "Christmas Day", + "2048-12-26": "Boxing Day", + "2048-12-28": "Boxing Day (Observed)", + "2049-01-01": "New Year's Day", + "2049-04-16": "Good Friday", + "2049-04-19": "Easter Monday", + "2049-05-01": "Workers' Day", + "2049-05-03": "Workers' Day (Observed)", + "2049-06-12": "Democracy Day", + "2049-06-14": "Democracy Day (Observed)", + "2049-07-01": "Eid-el-Fitr* (*estimated)", + "2049-07-02": "Eid-el-Fitr Holiday* (*estimated)", + "2049-09-08": "Eid-el-Kabir* (*estimated)", + "2049-09-09": "Eid-el-Kabir Holiday* (*estimated)", + "2049-10-01": "Independence Day", + "2049-12-07": "Eid-el-Mawlid* (*estimated)", + "2049-12-25": "Christmas Day", + "2049-12-26": "Boxing Day", + "2049-12-27": "Christmas Day (Observed)", + "2049-12-28": "Boxing Day (Observed)", + "2050-01-01": "New Year's Day", + "2050-01-03": "New Year's Day (Observed)", + "2050-04-08": "Good Friday", + "2050-04-11": "Easter Monday", + "2050-05-01": "Workers' Day", + "2050-05-02": "Workers' Day (Observed)", + "2050-06-12": "Democracy Day", + "2050-06-13": "Democracy Day (Observed)", + "2050-06-20": "Eid-el-Fitr* (*estimated)", + "2050-06-21": "Eid-el-Fitr Holiday* (*estimated)", + "2050-08-28": "Eid-el-Kabir* (*estimated)", + "2050-08-29": "Eid-el-Kabir Holiday* (*estimated)", + "2050-08-30": "Eid-el-Kabir* (*estimated) (Observed)", + "2050-10-01": "Independence Day", + "2050-10-03": "Independence Day (Observed)", + "2050-11-26": "Eid-el-Mawlid* (*estimated)", + "2050-11-28": "Eid-el-Mawlid* (*estimated) (Observed)", + "2050-12-25": "Christmas Day", + "2050-12-26": "Boxing Day", + "2050-12-27": "Christmas Day (Observed)" +} diff --git a/snapshots/countries/NI.json b/snapshots/countries/NI.json new file mode 100644 index 000000000..49cf2426b --- /dev/null +++ b/snapshots/countries/NI.json @@ -0,0 +1,1084 @@ +{ + "1950-01-01": "New Year's Day", + "1950-04-06": "Maundy Thursday", + "1950-04-07": "Good Friday", + "1950-05-01": "Labor Day", + "1950-08-01": "Descent of Saint Dominic", + "1950-08-10": "Ascent of Saint Dominic", + "1950-09-14": "Battle of San Jacinto Day", + "1950-09-15": "Independence Day", + "1950-12-08": "Virgin's Day", + "1950-12-25": "Christmas", + "1951-01-01": "New Year's Day", + "1951-03-22": "Maundy Thursday", + "1951-03-23": "Good Friday", + "1951-05-01": "Labor Day", + "1951-08-01": "Descent of Saint Dominic", + "1951-08-10": "Ascent of Saint Dominic", + "1951-09-14": "Battle of San Jacinto Day", + "1951-09-15": "Independence Day", + "1951-12-08": "Virgin's Day", + "1951-12-25": "Christmas", + "1952-01-01": "New Year's Day", + "1952-04-10": "Maundy Thursday", + "1952-04-11": "Good Friday", + "1952-05-01": "Labor Day", + "1952-08-01": "Descent of Saint Dominic", + "1952-08-10": "Ascent of Saint Dominic", + "1952-09-14": "Battle of San Jacinto Day", + "1952-09-15": "Independence Day", + "1952-12-08": "Virgin's Day", + "1952-12-25": "Christmas", + "1953-01-01": "New Year's Day", + "1953-04-02": "Maundy Thursday", + "1953-04-03": "Good Friday", + "1953-05-01": "Labor Day", + "1953-08-01": "Descent of Saint Dominic", + "1953-08-10": "Ascent of Saint Dominic", + "1953-09-14": "Battle of San Jacinto Day", + "1953-09-15": "Independence Day", + "1953-12-08": "Virgin's Day", + "1953-12-25": "Christmas", + "1954-01-01": "New Year's Day", + "1954-04-15": "Maundy Thursday", + "1954-04-16": "Good Friday", + "1954-05-01": "Labor Day", + "1954-08-01": "Descent of Saint Dominic", + "1954-08-10": "Ascent of Saint Dominic", + "1954-09-14": "Battle of San Jacinto Day", + "1954-09-15": "Independence Day", + "1954-12-08": "Virgin's Day", + "1954-12-25": "Christmas", + "1955-01-01": "New Year's Day", + "1955-04-07": "Maundy Thursday", + "1955-04-08": "Good Friday", + "1955-05-01": "Labor Day", + "1955-08-01": "Descent of Saint Dominic", + "1955-08-10": "Ascent of Saint Dominic", + "1955-09-14": "Battle of San Jacinto Day", + "1955-09-15": "Independence Day", + "1955-12-08": "Virgin's Day", + "1955-12-25": "Christmas", + "1956-01-01": "New Year's Day", + "1956-03-29": "Maundy Thursday", + "1956-03-30": "Good Friday", + "1956-05-01": "Labor Day", + "1956-08-01": "Descent of Saint Dominic", + "1956-08-10": "Ascent of Saint Dominic", + "1956-09-14": "Battle of San Jacinto Day", + "1956-09-15": "Independence Day", + "1956-12-08": "Virgin's Day", + "1956-12-25": "Christmas", + "1957-01-01": "New Year's Day", + "1957-04-18": "Maundy Thursday", + "1957-04-19": "Good Friday", + "1957-05-01": "Labor Day", + "1957-08-01": "Descent of Saint Dominic", + "1957-08-10": "Ascent of Saint Dominic", + "1957-09-14": "Battle of San Jacinto Day", + "1957-09-15": "Independence Day", + "1957-12-08": "Virgin's Day", + "1957-12-25": "Christmas", + "1958-01-01": "New Year's Day", + "1958-04-03": "Maundy Thursday", + "1958-04-04": "Good Friday", + "1958-05-01": "Labor Day", + "1958-08-01": "Descent of Saint Dominic", + "1958-08-10": "Ascent of Saint Dominic", + "1958-09-14": "Battle of San Jacinto Day", + "1958-09-15": "Independence Day", + "1958-12-08": "Virgin's Day", + "1958-12-25": "Christmas", + "1959-01-01": "New Year's Day", + "1959-03-26": "Maundy Thursday", + "1959-03-27": "Good Friday", + "1959-05-01": "Labor Day", + "1959-08-01": "Descent of Saint Dominic", + "1959-08-10": "Ascent of Saint Dominic", + "1959-09-14": "Battle of San Jacinto Day", + "1959-09-15": "Independence Day", + "1959-12-08": "Virgin's Day", + "1959-12-25": "Christmas", + "1960-01-01": "New Year's Day", + "1960-04-14": "Maundy Thursday", + "1960-04-15": "Good Friday", + "1960-05-01": "Labor Day", + "1960-08-01": "Descent of Saint Dominic", + "1960-08-10": "Ascent of Saint Dominic", + "1960-09-14": "Battle of San Jacinto Day", + "1960-09-15": "Independence Day", + "1960-12-08": "Virgin's Day", + "1960-12-25": "Christmas", + "1961-01-01": "New Year's Day", + "1961-03-30": "Maundy Thursday", + "1961-03-31": "Good Friday", + "1961-05-01": "Labor Day", + "1961-08-01": "Descent of Saint Dominic", + "1961-08-10": "Ascent of Saint Dominic", + "1961-09-14": "Battle of San Jacinto Day", + "1961-09-15": "Independence Day", + "1961-12-08": "Virgin's Day", + "1961-12-25": "Christmas", + "1962-01-01": "New Year's Day", + "1962-04-19": "Maundy Thursday", + "1962-04-20": "Good Friday", + "1962-05-01": "Labor Day", + "1962-08-01": "Descent of Saint Dominic", + "1962-08-10": "Ascent of Saint Dominic", + "1962-09-14": "Battle of San Jacinto Day", + "1962-09-15": "Independence Day", + "1962-12-08": "Virgin's Day", + "1962-12-25": "Christmas", + "1963-01-01": "New Year's Day", + "1963-04-11": "Maundy Thursday", + "1963-04-12": "Good Friday", + "1963-05-01": "Labor Day", + "1963-08-01": "Descent of Saint Dominic", + "1963-08-10": "Ascent of Saint Dominic", + "1963-09-14": "Battle of San Jacinto Day", + "1963-09-15": "Independence Day", + "1963-12-08": "Virgin's Day", + "1963-12-25": "Christmas", + "1964-01-01": "New Year's Day", + "1964-03-26": "Maundy Thursday", + "1964-03-27": "Good Friday", + "1964-05-01": "Labor Day", + "1964-08-01": "Descent of Saint Dominic", + "1964-08-10": "Ascent of Saint Dominic", + "1964-09-14": "Battle of San Jacinto Day", + "1964-09-15": "Independence Day", + "1964-12-08": "Virgin's Day", + "1964-12-25": "Christmas", + "1965-01-01": "New Year's Day", + "1965-04-15": "Maundy Thursday", + "1965-04-16": "Good Friday", + "1965-05-01": "Labor Day", + "1965-08-01": "Descent of Saint Dominic", + "1965-08-10": "Ascent of Saint Dominic", + "1965-09-14": "Battle of San Jacinto Day", + "1965-09-15": "Independence Day", + "1965-12-08": "Virgin's Day", + "1965-12-25": "Christmas", + "1966-01-01": "New Year's Day", + "1966-04-07": "Maundy Thursday", + "1966-04-08": "Good Friday", + "1966-05-01": "Labor Day", + "1966-08-01": "Descent of Saint Dominic", + "1966-08-10": "Ascent of Saint Dominic", + "1966-09-14": "Battle of San Jacinto Day", + "1966-09-15": "Independence Day", + "1966-12-08": "Virgin's Day", + "1966-12-25": "Christmas", + "1967-01-01": "New Year's Day", + "1967-03-23": "Maundy Thursday", + "1967-03-24": "Good Friday", + "1967-05-01": "Labor Day", + "1967-08-01": "Descent of Saint Dominic", + "1967-08-10": "Ascent of Saint Dominic", + "1967-09-14": "Battle of San Jacinto Day", + "1967-09-15": "Independence Day", + "1967-12-08": "Virgin's Day", + "1967-12-25": "Christmas", + "1968-01-01": "New Year's Day", + "1968-04-11": "Maundy Thursday", + "1968-04-12": "Good Friday", + "1968-05-01": "Labor Day", + "1968-08-01": "Descent of Saint Dominic", + "1968-08-10": "Ascent of Saint Dominic", + "1968-09-14": "Battle of San Jacinto Day", + "1968-09-15": "Independence Day", + "1968-12-08": "Virgin's Day", + "1968-12-25": "Christmas", + "1969-01-01": "New Year's Day", + "1969-04-03": "Maundy Thursday", + "1969-04-04": "Good Friday", + "1969-05-01": "Labor Day", + "1969-08-01": "Descent of Saint Dominic", + "1969-08-10": "Ascent of Saint Dominic", + "1969-09-14": "Battle of San Jacinto Day", + "1969-09-15": "Independence Day", + "1969-12-08": "Virgin's Day", + "1969-12-25": "Christmas", + "1970-01-01": "New Year's Day", + "1970-03-26": "Maundy Thursday", + "1970-03-27": "Good Friday", + "1970-05-01": "Labor Day", + "1970-08-01": "Descent of Saint Dominic", + "1970-08-10": "Ascent of Saint Dominic", + "1970-09-14": "Battle of San Jacinto Day", + "1970-09-15": "Independence Day", + "1970-12-08": "Virgin's Day", + "1970-12-25": "Christmas", + "1971-01-01": "New Year's Day", + "1971-04-08": "Maundy Thursday", + "1971-04-09": "Good Friday", + "1971-05-01": "Labor Day", + "1971-08-01": "Descent of Saint Dominic", + "1971-08-10": "Ascent of Saint Dominic", + "1971-09-14": "Battle of San Jacinto Day", + "1971-09-15": "Independence Day", + "1971-12-08": "Virgin's Day", + "1971-12-25": "Christmas", + "1972-01-01": "New Year's Day", + "1972-03-30": "Maundy Thursday", + "1972-03-31": "Good Friday", + "1972-05-01": "Labor Day", + "1972-08-01": "Descent of Saint Dominic", + "1972-08-10": "Ascent of Saint Dominic", + "1972-09-14": "Battle of San Jacinto Day", + "1972-09-15": "Independence Day", + "1972-12-08": "Virgin's Day", + "1972-12-25": "Christmas", + "1973-01-01": "New Year's Day", + "1973-04-19": "Maundy Thursday", + "1973-04-20": "Good Friday", + "1973-05-01": "Labor Day", + "1973-08-01": "Descent of Saint Dominic", + "1973-08-10": "Ascent of Saint Dominic", + "1973-09-14": "Battle of San Jacinto Day", + "1973-09-15": "Independence Day", + "1973-12-08": "Virgin's Day", + "1973-12-25": "Christmas", + "1974-01-01": "New Year's Day", + "1974-04-11": "Maundy Thursday", + "1974-04-12": "Good Friday", + "1974-05-01": "Labor Day", + "1974-08-01": "Descent of Saint Dominic", + "1974-08-10": "Ascent of Saint Dominic", + "1974-09-14": "Battle of San Jacinto Day", + "1974-09-15": "Independence Day", + "1974-12-08": "Virgin's Day", + "1974-12-25": "Christmas", + "1975-01-01": "New Year's Day", + "1975-03-27": "Maundy Thursday", + "1975-03-28": "Good Friday", + "1975-05-01": "Labor Day", + "1975-08-01": "Descent of Saint Dominic", + "1975-08-10": "Ascent of Saint Dominic", + "1975-09-14": "Battle of San Jacinto Day", + "1975-09-15": "Independence Day", + "1975-12-08": "Virgin's Day", + "1975-12-25": "Christmas", + "1976-01-01": "New Year's Day", + "1976-04-15": "Maundy Thursday", + "1976-04-16": "Good Friday", + "1976-05-01": "Labor Day", + "1976-08-01": "Descent of Saint Dominic", + "1976-08-10": "Ascent of Saint Dominic", + "1976-09-14": "Battle of San Jacinto Day", + "1976-09-15": "Independence Day", + "1976-12-08": "Virgin's Day", + "1976-12-25": "Christmas", + "1977-01-01": "New Year's Day", + "1977-04-07": "Maundy Thursday", + "1977-04-08": "Good Friday", + "1977-05-01": "Labor Day", + "1977-08-01": "Descent of Saint Dominic", + "1977-08-10": "Ascent of Saint Dominic", + "1977-09-14": "Battle of San Jacinto Day", + "1977-09-15": "Independence Day", + "1977-12-08": "Virgin's Day", + "1977-12-25": "Christmas", + "1978-01-01": "New Year's Day", + "1978-03-23": "Maundy Thursday", + "1978-03-24": "Good Friday", + "1978-05-01": "Labor Day", + "1978-08-01": "Descent of Saint Dominic", + "1978-08-10": "Ascent of Saint Dominic", + "1978-09-14": "Battle of San Jacinto Day", + "1978-09-15": "Independence Day", + "1978-12-08": "Virgin's Day", + "1978-12-25": "Christmas", + "1979-01-01": "New Year's Day", + "1979-04-12": "Maundy Thursday", + "1979-04-13": "Good Friday", + "1979-05-01": "Labor Day", + "1979-07-19": "Revolution Day", + "1979-08-01": "Descent of Saint Dominic", + "1979-08-10": "Ascent of Saint Dominic", + "1979-09-14": "Battle of San Jacinto Day", + "1979-09-15": "Independence Day", + "1979-12-08": "Virgin's Day", + "1979-12-25": "Christmas", + "1980-01-01": "New Year's Day", + "1980-04-03": "Maundy Thursday", + "1980-04-04": "Good Friday", + "1980-05-01": "Labor Day", + "1980-07-19": "Revolution Day", + "1980-08-01": "Descent of Saint Dominic", + "1980-08-10": "Ascent of Saint Dominic", + "1980-09-14": "Battle of San Jacinto Day", + "1980-09-15": "Independence Day", + "1980-12-08": "Virgin's Day", + "1980-12-25": "Christmas", + "1981-01-01": "New Year's Day", + "1981-04-16": "Maundy Thursday", + "1981-04-17": "Good Friday", + "1981-05-01": "Labor Day", + "1981-07-19": "Revolution Day", + "1981-08-01": "Descent of Saint Dominic", + "1981-08-10": "Ascent of Saint Dominic", + "1981-09-14": "Battle of San Jacinto Day", + "1981-09-15": "Independence Day", + "1981-12-08": "Virgin's Day", + "1981-12-25": "Christmas", + "1982-01-01": "New Year's Day", + "1982-04-08": "Maundy Thursday", + "1982-04-09": "Good Friday", + "1982-05-01": "Labor Day", + "1982-07-19": "Revolution Day", + "1982-08-01": "Descent of Saint Dominic", + "1982-08-10": "Ascent of Saint Dominic", + "1982-09-14": "Battle of San Jacinto Day", + "1982-09-15": "Independence Day", + "1982-12-08": "Virgin's Day", + "1982-12-25": "Christmas", + "1983-01-01": "New Year's Day", + "1983-03-31": "Maundy Thursday", + "1983-04-01": "Good Friday", + "1983-05-01": "Labor Day", + "1983-07-19": "Revolution Day", + "1983-08-01": "Descent of Saint Dominic", + "1983-08-10": "Ascent of Saint Dominic", + "1983-09-14": "Battle of San Jacinto Day", + "1983-09-15": "Independence Day", + "1983-12-08": "Virgin's Day", + "1983-12-25": "Christmas", + "1984-01-01": "New Year's Day", + "1984-04-19": "Maundy Thursday", + "1984-04-20": "Good Friday", + "1984-05-01": "Labor Day", + "1984-07-19": "Revolution Day", + "1984-08-01": "Descent of Saint Dominic", + "1984-08-10": "Ascent of Saint Dominic", + "1984-09-14": "Battle of San Jacinto Day", + "1984-09-15": "Independence Day", + "1984-12-08": "Virgin's Day", + "1984-12-25": "Christmas", + "1985-01-01": "New Year's Day", + "1985-04-04": "Maundy Thursday", + "1985-04-05": "Good Friday", + "1985-05-01": "Labor Day", + "1985-07-19": "Revolution Day", + "1985-08-01": "Descent of Saint Dominic", + "1985-08-10": "Ascent of Saint Dominic", + "1985-09-14": "Battle of San Jacinto Day", + "1985-09-15": "Independence Day", + "1985-12-08": "Virgin's Day", + "1985-12-25": "Christmas", + "1986-01-01": "New Year's Day", + "1986-03-27": "Maundy Thursday", + "1986-03-28": "Good Friday", + "1986-05-01": "Labor Day", + "1986-07-19": "Revolution Day", + "1986-08-01": "Descent of Saint Dominic", + "1986-08-10": "Ascent of Saint Dominic", + "1986-09-14": "Battle of San Jacinto Day", + "1986-09-15": "Independence Day", + "1986-12-08": "Virgin's Day", + "1986-12-25": "Christmas", + "1987-01-01": "New Year's Day", + "1987-04-16": "Maundy Thursday", + "1987-04-17": "Good Friday", + "1987-05-01": "Labor Day", + "1987-07-19": "Revolution Day", + "1987-08-01": "Descent of Saint Dominic", + "1987-08-10": "Ascent of Saint Dominic", + "1987-09-14": "Battle of San Jacinto Day", + "1987-09-15": "Independence Day", + "1987-12-08": "Virgin's Day", + "1987-12-25": "Christmas", + "1988-01-01": "New Year's Day", + "1988-03-31": "Maundy Thursday", + "1988-04-01": "Good Friday", + "1988-05-01": "Labor Day", + "1988-07-19": "Revolution Day", + "1988-08-01": "Descent of Saint Dominic", + "1988-08-10": "Ascent of Saint Dominic", + "1988-09-14": "Battle of San Jacinto Day", + "1988-09-15": "Independence Day", + "1988-12-08": "Virgin's Day", + "1988-12-25": "Christmas", + "1989-01-01": "New Year's Day", + "1989-03-23": "Maundy Thursday", + "1989-03-24": "Good Friday", + "1989-05-01": "Labor Day", + "1989-07-19": "Revolution Day", + "1989-08-01": "Descent of Saint Dominic", + "1989-08-10": "Ascent of Saint Dominic", + "1989-09-14": "Battle of San Jacinto Day", + "1989-09-15": "Independence Day", + "1989-12-08": "Virgin's Day", + "1989-12-25": "Christmas", + "1990-01-01": "New Year's Day", + "1990-04-12": "Maundy Thursday", + "1990-04-13": "Good Friday", + "1990-05-01": "Labor Day", + "1990-07-19": "Revolution Day", + "1990-08-01": "Descent of Saint Dominic", + "1990-08-10": "Ascent of Saint Dominic", + "1990-09-14": "Battle of San Jacinto Day", + "1990-09-15": "Independence Day", + "1990-12-08": "Virgin's Day", + "1990-12-25": "Christmas", + "1991-01-01": "New Year's Day", + "1991-03-28": "Maundy Thursday", + "1991-03-29": "Good Friday", + "1991-05-01": "Labor Day", + "1991-07-19": "Revolution Day", + "1991-08-01": "Descent of Saint Dominic", + "1991-08-10": "Ascent of Saint Dominic", + "1991-09-14": "Battle of San Jacinto Day", + "1991-09-15": "Independence Day", + "1991-12-08": "Virgin's Day", + "1991-12-25": "Christmas", + "1992-01-01": "New Year's Day", + "1992-04-16": "Maundy Thursday", + "1992-04-17": "Good Friday", + "1992-05-01": "Labor Day", + "1992-07-19": "Revolution Day", + "1992-08-01": "Descent of Saint Dominic", + "1992-08-10": "Ascent of Saint Dominic", + "1992-09-14": "Battle of San Jacinto Day", + "1992-09-15": "Independence Day", + "1992-12-08": "Virgin's Day", + "1992-12-25": "Christmas", + "1993-01-01": "New Year's Day", + "1993-04-08": "Maundy Thursday", + "1993-04-09": "Good Friday", + "1993-05-01": "Labor Day", + "1993-07-19": "Revolution Day", + "1993-08-01": "Descent of Saint Dominic", + "1993-08-10": "Ascent of Saint Dominic", + "1993-09-14": "Battle of San Jacinto Day", + "1993-09-15": "Independence Day", + "1993-12-08": "Virgin's Day", + "1993-12-25": "Christmas", + "1994-01-01": "New Year's Day", + "1994-03-31": "Maundy Thursday", + "1994-04-01": "Good Friday", + "1994-05-01": "Labor Day", + "1994-07-19": "Revolution Day", + "1994-08-01": "Descent of Saint Dominic", + "1994-08-10": "Ascent of Saint Dominic", + "1994-09-14": "Battle of San Jacinto Day", + "1994-09-15": "Independence Day", + "1994-12-08": "Virgin's Day", + "1994-12-25": "Christmas", + "1995-01-01": "New Year's Day", + "1995-04-13": "Maundy Thursday", + "1995-04-14": "Good Friday", + "1995-05-01": "Labor Day", + "1995-07-19": "Revolution Day", + "1995-08-01": "Descent of Saint Dominic", + "1995-08-10": "Ascent of Saint Dominic", + "1995-09-14": "Battle of San Jacinto Day", + "1995-09-15": "Independence Day", + "1995-12-08": "Virgin's Day", + "1995-12-25": "Christmas", + "1996-01-01": "New Year's Day", + "1996-04-04": "Maundy Thursday", + "1996-04-05": "Good Friday", + "1996-05-01": "Labor Day", + "1996-07-19": "Revolution Day", + "1996-08-01": "Descent of Saint Dominic", + "1996-08-10": "Ascent of Saint Dominic", + "1996-09-14": "Battle of San Jacinto Day", + "1996-09-15": "Independence Day", + "1996-12-08": "Virgin's Day", + "1996-12-25": "Christmas", + "1997-01-01": "New Year's Day", + "1997-03-27": "Maundy Thursday", + "1997-03-28": "Good Friday", + "1997-05-01": "Labor Day", + "1997-07-19": "Revolution Day", + "1997-08-01": "Descent of Saint Dominic", + "1997-08-10": "Ascent of Saint Dominic", + "1997-09-14": "Battle of San Jacinto Day", + "1997-09-15": "Independence Day", + "1997-12-08": "Virgin's Day", + "1997-12-25": "Christmas", + "1998-01-01": "New Year's Day", + "1998-04-09": "Maundy Thursday", + "1998-04-10": "Good Friday", + "1998-05-01": "Labor Day", + "1998-07-19": "Revolution Day", + "1998-08-01": "Descent of Saint Dominic", + "1998-08-10": "Ascent of Saint Dominic", + "1998-09-14": "Battle of San Jacinto Day", + "1998-09-15": "Independence Day", + "1998-12-08": "Virgin's Day", + "1998-12-25": "Christmas", + "1999-01-01": "New Year's Day", + "1999-04-01": "Maundy Thursday", + "1999-04-02": "Good Friday", + "1999-05-01": "Labor Day", + "1999-07-19": "Revolution Day", + "1999-08-01": "Descent of Saint Dominic", + "1999-08-10": "Ascent of Saint Dominic", + "1999-09-14": "Battle of San Jacinto Day", + "1999-09-15": "Independence Day", + "1999-12-08": "Virgin's Day", + "1999-12-25": "Christmas", + "2000-01-01": "New Year's Day", + "2000-04-20": "Maundy Thursday", + "2000-04-21": "Good Friday", + "2000-05-01": "Labor Day", + "2000-07-19": "Revolution Day", + "2000-08-01": "Descent of Saint Dominic", + "2000-08-10": "Ascent of Saint Dominic", + "2000-09-14": "Battle of San Jacinto Day", + "2000-09-15": "Independence Day", + "2000-12-08": "Virgin's Day", + "2000-12-25": "Christmas", + "2001-01-01": "New Year's Day", + "2001-04-12": "Maundy Thursday", + "2001-04-13": "Good Friday", + "2001-05-01": "Labor Day", + "2001-07-19": "Revolution Day", + "2001-08-01": "Descent of Saint Dominic", + "2001-08-10": "Ascent of Saint Dominic", + "2001-09-14": "Battle of San Jacinto Day", + "2001-09-15": "Independence Day", + "2001-12-08": "Virgin's Day", + "2001-12-25": "Christmas", + "2002-01-01": "New Year's Day", + "2002-03-28": "Maundy Thursday", + "2002-03-29": "Good Friday", + "2002-05-01": "Labor Day", + "2002-07-19": "Revolution Day", + "2002-08-01": "Descent of Saint Dominic", + "2002-08-10": "Ascent of Saint Dominic", + "2002-09-14": "Battle of San Jacinto Day", + "2002-09-15": "Independence Day", + "2002-12-08": "Virgin's Day", + "2002-12-25": "Christmas", + "2003-01-01": "New Year's Day", + "2003-04-17": "Maundy Thursday", + "2003-04-18": "Good Friday", + "2003-05-01": "Labor Day", + "2003-07-19": "Revolution Day", + "2003-08-01": "Descent of Saint Dominic", + "2003-08-10": "Ascent of Saint Dominic", + "2003-09-14": "Battle of San Jacinto Day", + "2003-09-15": "Independence Day", + "2003-12-08": "Virgin's Day", + "2003-12-25": "Christmas", + "2004-01-01": "New Year's Day", + "2004-04-08": "Maundy Thursday", + "2004-04-09": "Good Friday", + "2004-05-01": "Labor Day", + "2004-07-19": "Revolution Day", + "2004-08-01": "Descent of Saint Dominic", + "2004-08-10": "Ascent of Saint Dominic", + "2004-09-14": "Battle of San Jacinto Day", + "2004-09-15": "Independence Day", + "2004-12-08": "Virgin's Day", + "2004-12-25": "Christmas", + "2005-01-01": "New Year's Day", + "2005-03-24": "Maundy Thursday", + "2005-03-25": "Good Friday", + "2005-05-01": "Labor Day", + "2005-07-19": "Revolution Day", + "2005-08-01": "Descent of Saint Dominic", + "2005-08-10": "Ascent of Saint Dominic", + "2005-09-14": "Battle of San Jacinto Day", + "2005-09-15": "Independence Day", + "2005-12-08": "Virgin's Day", + "2005-12-25": "Christmas", + "2006-01-01": "New Year's Day", + "2006-04-13": "Maundy Thursday", + "2006-04-14": "Good Friday", + "2006-05-01": "Labor Day", + "2006-07-19": "Revolution Day", + "2006-08-01": "Descent of Saint Dominic", + "2006-08-10": "Ascent of Saint Dominic", + "2006-09-14": "Battle of San Jacinto Day", + "2006-09-15": "Independence Day", + "2006-12-08": "Virgin's Day", + "2006-12-25": "Christmas", + "2007-01-01": "New Year's Day", + "2007-04-05": "Maundy Thursday", + "2007-04-06": "Good Friday", + "2007-05-01": "Labor Day", + "2007-07-19": "Revolution Day", + "2007-08-01": "Descent of Saint Dominic", + "2007-08-10": "Ascent of Saint Dominic", + "2007-09-14": "Battle of San Jacinto Day", + "2007-09-15": "Independence Day", + "2007-12-08": "Virgin's Day", + "2007-12-25": "Christmas", + "2008-01-01": "New Year's Day", + "2008-03-20": "Maundy Thursday", + "2008-03-21": "Good Friday", + "2008-05-01": "Labor Day", + "2008-07-19": "Revolution Day", + "2008-08-01": "Descent of Saint Dominic", + "2008-08-10": "Ascent of Saint Dominic", + "2008-09-14": "Battle of San Jacinto Day", + "2008-09-15": "Independence Day", + "2008-12-08": "Virgin's Day", + "2008-12-25": "Christmas", + "2009-01-01": "New Year's Day", + "2009-04-09": "Maundy Thursday", + "2009-04-10": "Good Friday", + "2009-05-01": "Labor Day", + "2009-07-19": "Revolution Day", + "2009-08-01": "Descent of Saint Dominic", + "2009-08-10": "Ascent of Saint Dominic", + "2009-09-14": "Battle of San Jacinto Day", + "2009-09-15": "Independence Day", + "2009-12-08": "Virgin's Day", + "2009-12-25": "Christmas", + "2010-01-01": "New Year's Day", + "2010-04-01": "Maundy Thursday", + "2010-04-02": "Good Friday", + "2010-05-01": "Labor Day", + "2010-07-19": "Revolution Day", + "2010-08-01": "Descent of Saint Dominic", + "2010-08-10": "Ascent of Saint Dominic", + "2010-09-14": "Battle of San Jacinto Day", + "2010-09-15": "Independence Day", + "2010-12-08": "Virgin's Day", + "2010-12-25": "Christmas", + "2011-01-01": "New Year's Day", + "2011-04-21": "Maundy Thursday", + "2011-04-22": "Good Friday", + "2011-05-01": "Labor Day", + "2011-07-19": "Revolution Day", + "2011-08-01": "Descent of Saint Dominic", + "2011-08-10": "Ascent of Saint Dominic", + "2011-09-14": "Battle of San Jacinto Day", + "2011-09-15": "Independence Day", + "2011-12-08": "Virgin's Day", + "2011-12-25": "Christmas", + "2012-01-01": "New Year's Day", + "2012-04-05": "Maundy Thursday", + "2012-04-06": "Good Friday", + "2012-05-01": "Labor Day", + "2012-07-19": "Revolution Day", + "2012-08-01": "Descent of Saint Dominic", + "2012-08-10": "Ascent of Saint Dominic", + "2012-09-14": "Battle of San Jacinto Day", + "2012-09-15": "Independence Day", + "2012-12-08": "Virgin's Day", + "2012-12-25": "Christmas", + "2013-01-01": "New Year's Day", + "2013-03-28": "Maundy Thursday", + "2013-03-29": "Good Friday", + "2013-05-01": "Labor Day", + "2013-07-19": "Revolution Day", + "2013-08-01": "Descent of Saint Dominic", + "2013-08-10": "Ascent of Saint Dominic", + "2013-09-14": "Battle of San Jacinto Day", + "2013-09-15": "Independence Day", + "2013-12-08": "Virgin's Day", + "2013-12-25": "Christmas", + "2014-01-01": "New Year's Day", + "2014-04-17": "Maundy Thursday", + "2014-04-18": "Good Friday", + "2014-05-01": "Labor Day", + "2014-07-19": "Revolution Day", + "2014-08-01": "Descent of Saint Dominic", + "2014-08-10": "Ascent of Saint Dominic", + "2014-09-14": "Battle of San Jacinto Day", + "2014-09-15": "Independence Day", + "2014-12-08": "Virgin's Day", + "2014-12-25": "Christmas", + "2015-01-01": "New Year's Day", + "2015-04-02": "Maundy Thursday", + "2015-04-03": "Good Friday", + "2015-05-01": "Labor Day", + "2015-07-19": "Revolution Day", + "2015-08-01": "Descent of Saint Dominic", + "2015-08-10": "Ascent of Saint Dominic", + "2015-09-14": "Battle of San Jacinto Day", + "2015-09-15": "Independence Day", + "2015-12-08": "Virgin's Day", + "2015-12-25": "Christmas", + "2016-01-01": "New Year's Day", + "2016-03-24": "Maundy Thursday", + "2016-03-25": "Good Friday", + "2016-05-01": "Labor Day", + "2016-07-19": "Revolution Day", + "2016-08-01": "Descent of Saint Dominic", + "2016-08-10": "Ascent of Saint Dominic", + "2016-09-14": "Battle of San Jacinto Day", + "2016-09-15": "Independence Day", + "2016-12-08": "Virgin's Day", + "2016-12-25": "Christmas", + "2017-01-01": "New Year's Day", + "2017-04-13": "Maundy Thursday", + "2017-04-14": "Good Friday", + "2017-05-01": "Labor Day", + "2017-07-19": "Revolution Day", + "2017-08-01": "Descent of Saint Dominic", + "2017-08-10": "Ascent of Saint Dominic", + "2017-09-14": "Battle of San Jacinto Day", + "2017-09-15": "Independence Day", + "2017-12-08": "Virgin's Day", + "2017-12-25": "Christmas", + "2018-01-01": "New Year's Day", + "2018-03-29": "Maundy Thursday", + "2018-03-30": "Good Friday", + "2018-05-01": "Labor Day", + "2018-07-19": "Revolution Day", + "2018-08-01": "Descent of Saint Dominic", + "2018-08-10": "Ascent of Saint Dominic", + "2018-09-14": "Battle of San Jacinto Day", + "2018-09-15": "Independence Day", + "2018-12-08": "Virgin's Day", + "2018-12-25": "Christmas", + "2019-01-01": "New Year's Day", + "2019-04-18": "Maundy Thursday", + "2019-04-19": "Good Friday", + "2019-05-01": "Labor Day", + "2019-07-19": "Revolution Day", + "2019-08-01": "Descent of Saint Dominic", + "2019-08-10": "Ascent of Saint Dominic", + "2019-09-14": "Battle of San Jacinto Day", + "2019-09-15": "Independence Day", + "2019-12-08": "Virgin's Day", + "2019-12-25": "Christmas", + "2020-01-01": "New Year's Day", + "2020-04-09": "Maundy Thursday", + "2020-04-10": "Good Friday", + "2020-05-01": "Labor Day", + "2020-07-19": "Revolution Day", + "2020-08-01": "Descent of Saint Dominic", + "2020-08-10": "Ascent of Saint Dominic", + "2020-09-14": "Battle of San Jacinto Day", + "2020-09-15": "Independence Day", + "2020-12-08": "Virgin's Day", + "2020-12-25": "Christmas", + "2021-01-01": "New Year's Day", + "2021-04-01": "Maundy Thursday", + "2021-04-02": "Good Friday", + "2021-05-01": "Labor Day", + "2021-07-19": "Revolution Day", + "2021-08-01": "Descent of Saint Dominic", + "2021-08-10": "Ascent of Saint Dominic", + "2021-09-14": "Battle of San Jacinto Day", + "2021-09-15": "Independence Day", + "2021-12-08": "Virgin's Day", + "2021-12-25": "Christmas", + "2022-01-01": "New Year's Day", + "2022-04-14": "Maundy Thursday", + "2022-04-15": "Good Friday", + "2022-05-01": "Labor Day", + "2022-07-19": "Revolution Day", + "2022-08-01": "Descent of Saint Dominic", + "2022-08-10": "Ascent of Saint Dominic", + "2022-09-14": "Battle of San Jacinto Day", + "2022-09-15": "Independence Day", + "2022-12-08": "Virgin's Day", + "2022-12-25": "Christmas", + "2023-01-01": "New Year's Day", + "2023-04-06": "Maundy Thursday", + "2023-04-07": "Good Friday", + "2023-05-01": "Labor Day", + "2023-07-19": "Revolution Day", + "2023-08-01": "Descent of Saint Dominic", + "2023-08-10": "Ascent of Saint Dominic", + "2023-09-14": "Battle of San Jacinto Day", + "2023-09-15": "Independence Day", + "2023-12-08": "Virgin's Day", + "2023-12-25": "Christmas", + "2024-01-01": "New Year's Day", + "2024-03-28": "Maundy Thursday", + "2024-03-29": "Good Friday", + "2024-05-01": "Labor Day", + "2024-07-19": "Revolution Day", + "2024-08-01": "Descent of Saint Dominic", + "2024-08-10": "Ascent of Saint Dominic", + "2024-09-14": "Battle of San Jacinto Day", + "2024-09-15": "Independence Day", + "2024-12-08": "Virgin's Day", + "2024-12-25": "Christmas", + "2025-01-01": "New Year's Day", + "2025-04-17": "Maundy Thursday", + "2025-04-18": "Good Friday", + "2025-05-01": "Labor Day", + "2025-07-19": "Revolution Day", + "2025-08-01": "Descent of Saint Dominic", + "2025-08-10": "Ascent of Saint Dominic", + "2025-09-14": "Battle of San Jacinto Day", + "2025-09-15": "Independence Day", + "2025-12-08": "Virgin's Day", + "2025-12-25": "Christmas", + "2026-01-01": "New Year's Day", + "2026-04-02": "Maundy Thursday", + "2026-04-03": "Good Friday", + "2026-05-01": "Labor Day", + "2026-07-19": "Revolution Day", + "2026-08-01": "Descent of Saint Dominic", + "2026-08-10": "Ascent of Saint Dominic", + "2026-09-14": "Battle of San Jacinto Day", + "2026-09-15": "Independence Day", + "2026-12-08": "Virgin's Day", + "2026-12-25": "Christmas", + "2027-01-01": "New Year's Day", + "2027-03-25": "Maundy Thursday", + "2027-03-26": "Good Friday", + "2027-05-01": "Labor Day", + "2027-07-19": "Revolution Day", + "2027-08-01": "Descent of Saint Dominic", + "2027-08-10": "Ascent of Saint Dominic", + "2027-09-14": "Battle of San Jacinto Day", + "2027-09-15": "Independence Day", + "2027-12-08": "Virgin's Day", + "2027-12-25": "Christmas", + "2028-01-01": "New Year's Day", + "2028-04-13": "Maundy Thursday", + "2028-04-14": "Good Friday", + "2028-05-01": "Labor Day", + "2028-07-19": "Revolution Day", + "2028-08-01": "Descent of Saint Dominic", + "2028-08-10": "Ascent of Saint Dominic", + "2028-09-14": "Battle of San Jacinto Day", + "2028-09-15": "Independence Day", + "2028-12-08": "Virgin's Day", + "2028-12-25": "Christmas", + "2029-01-01": "New Year's Day", + "2029-03-29": "Maundy Thursday", + "2029-03-30": "Good Friday", + "2029-05-01": "Labor Day", + "2029-07-19": "Revolution Day", + "2029-08-01": "Descent of Saint Dominic", + "2029-08-10": "Ascent of Saint Dominic", + "2029-09-14": "Battle of San Jacinto Day", + "2029-09-15": "Independence Day", + "2029-12-08": "Virgin's Day", + "2029-12-25": "Christmas", + "2030-01-01": "New Year's Day", + "2030-04-18": "Maundy Thursday", + "2030-04-19": "Good Friday", + "2030-05-01": "Labor Day", + "2030-07-19": "Revolution Day", + "2030-08-01": "Descent of Saint Dominic", + "2030-08-10": "Ascent of Saint Dominic", + "2030-09-14": "Battle of San Jacinto Day", + "2030-09-15": "Independence Day", + "2030-12-08": "Virgin's Day", + "2030-12-25": "Christmas", + "2031-01-01": "New Year's Day", + "2031-04-10": "Maundy Thursday", + "2031-04-11": "Good Friday", + "2031-05-01": "Labor Day", + "2031-07-19": "Revolution Day", + "2031-08-01": "Descent of Saint Dominic", + "2031-08-10": "Ascent of Saint Dominic", + "2031-09-14": "Battle of San Jacinto Day", + "2031-09-15": "Independence Day", + "2031-12-08": "Virgin's Day", + "2031-12-25": "Christmas", + "2032-01-01": "New Year's Day", + "2032-03-25": "Maundy Thursday", + "2032-03-26": "Good Friday", + "2032-05-01": "Labor Day", + "2032-07-19": "Revolution Day", + "2032-08-01": "Descent of Saint Dominic", + "2032-08-10": "Ascent of Saint Dominic", + "2032-09-14": "Battle of San Jacinto Day", + "2032-09-15": "Independence Day", + "2032-12-08": "Virgin's Day", + "2032-12-25": "Christmas", + "2033-01-01": "New Year's Day", + "2033-04-14": "Maundy Thursday", + "2033-04-15": "Good Friday", + "2033-05-01": "Labor Day", + "2033-07-19": "Revolution Day", + "2033-08-01": "Descent of Saint Dominic", + "2033-08-10": "Ascent of Saint Dominic", + "2033-09-14": "Battle of San Jacinto Day", + "2033-09-15": "Independence Day", + "2033-12-08": "Virgin's Day", + "2033-12-25": "Christmas", + "2034-01-01": "New Year's Day", + "2034-04-06": "Maundy Thursday", + "2034-04-07": "Good Friday", + "2034-05-01": "Labor Day", + "2034-07-19": "Revolution Day", + "2034-08-01": "Descent of Saint Dominic", + "2034-08-10": "Ascent of Saint Dominic", + "2034-09-14": "Battle of San Jacinto Day", + "2034-09-15": "Independence Day", + "2034-12-08": "Virgin's Day", + "2034-12-25": "Christmas", + "2035-01-01": "New Year's Day", + "2035-03-22": "Maundy Thursday", + "2035-03-23": "Good Friday", + "2035-05-01": "Labor Day", + "2035-07-19": "Revolution Day", + "2035-08-01": "Descent of Saint Dominic", + "2035-08-10": "Ascent of Saint Dominic", + "2035-09-14": "Battle of San Jacinto Day", + "2035-09-15": "Independence Day", + "2035-12-08": "Virgin's Day", + "2035-12-25": "Christmas", + "2036-01-01": "New Year's Day", + "2036-04-10": "Maundy Thursday", + "2036-04-11": "Good Friday", + "2036-05-01": "Labor Day", + "2036-07-19": "Revolution Day", + "2036-08-01": "Descent of Saint Dominic", + "2036-08-10": "Ascent of Saint Dominic", + "2036-09-14": "Battle of San Jacinto Day", + "2036-09-15": "Independence Day", + "2036-12-08": "Virgin's Day", + "2036-12-25": "Christmas", + "2037-01-01": "New Year's Day", + "2037-04-02": "Maundy Thursday", + "2037-04-03": "Good Friday", + "2037-05-01": "Labor Day", + "2037-07-19": "Revolution Day", + "2037-08-01": "Descent of Saint Dominic", + "2037-08-10": "Ascent of Saint Dominic", + "2037-09-14": "Battle of San Jacinto Day", + "2037-09-15": "Independence Day", + "2037-12-08": "Virgin's Day", + "2037-12-25": "Christmas", + "2038-01-01": "New Year's Day", + "2038-04-22": "Maundy Thursday", + "2038-04-23": "Good Friday", + "2038-05-01": "Labor Day", + "2038-07-19": "Revolution Day", + "2038-08-01": "Descent of Saint Dominic", + "2038-08-10": "Ascent of Saint Dominic", + "2038-09-14": "Battle of San Jacinto Day", + "2038-09-15": "Independence Day", + "2038-12-08": "Virgin's Day", + "2038-12-25": "Christmas", + "2039-01-01": "New Year's Day", + "2039-04-07": "Maundy Thursday", + "2039-04-08": "Good Friday", + "2039-05-01": "Labor Day", + "2039-07-19": "Revolution Day", + "2039-08-01": "Descent of Saint Dominic", + "2039-08-10": "Ascent of Saint Dominic", + "2039-09-14": "Battle of San Jacinto Day", + "2039-09-15": "Independence Day", + "2039-12-08": "Virgin's Day", + "2039-12-25": "Christmas", + "2040-01-01": "New Year's Day", + "2040-03-29": "Maundy Thursday", + "2040-03-30": "Good Friday", + "2040-05-01": "Labor Day", + "2040-07-19": "Revolution Day", + "2040-08-01": "Descent of Saint Dominic", + "2040-08-10": "Ascent of Saint Dominic", + "2040-09-14": "Battle of San Jacinto Day", + "2040-09-15": "Independence Day", + "2040-12-08": "Virgin's Day", + "2040-12-25": "Christmas", + "2041-01-01": "New Year's Day", + "2041-04-18": "Maundy Thursday", + "2041-04-19": "Good Friday", + "2041-05-01": "Labor Day", + "2041-07-19": "Revolution Day", + "2041-08-01": "Descent of Saint Dominic", + "2041-08-10": "Ascent of Saint Dominic", + "2041-09-14": "Battle of San Jacinto Day", + "2041-09-15": "Independence Day", + "2041-12-08": "Virgin's Day", + "2041-12-25": "Christmas", + "2042-01-01": "New Year's Day", + "2042-04-03": "Maundy Thursday", + "2042-04-04": "Good Friday", + "2042-05-01": "Labor Day", + "2042-07-19": "Revolution Day", + "2042-08-01": "Descent of Saint Dominic", + "2042-08-10": "Ascent of Saint Dominic", + "2042-09-14": "Battle of San Jacinto Day", + "2042-09-15": "Independence Day", + "2042-12-08": "Virgin's Day", + "2042-12-25": "Christmas", + "2043-01-01": "New Year's Day", + "2043-03-26": "Maundy Thursday", + "2043-03-27": "Good Friday", + "2043-05-01": "Labor Day", + "2043-07-19": "Revolution Day", + "2043-08-01": "Descent of Saint Dominic", + "2043-08-10": "Ascent of Saint Dominic", + "2043-09-14": "Battle of San Jacinto Day", + "2043-09-15": "Independence Day", + "2043-12-08": "Virgin's Day", + "2043-12-25": "Christmas", + "2044-01-01": "New Year's Day", + "2044-04-14": "Maundy Thursday", + "2044-04-15": "Good Friday", + "2044-05-01": "Labor Day", + "2044-07-19": "Revolution Day", + "2044-08-01": "Descent of Saint Dominic", + "2044-08-10": "Ascent of Saint Dominic", + "2044-09-14": "Battle of San Jacinto Day", + "2044-09-15": "Independence Day", + "2044-12-08": "Virgin's Day", + "2044-12-25": "Christmas", + "2045-01-01": "New Year's Day", + "2045-04-06": "Maundy Thursday", + "2045-04-07": "Good Friday", + "2045-05-01": "Labor Day", + "2045-07-19": "Revolution Day", + "2045-08-01": "Descent of Saint Dominic", + "2045-08-10": "Ascent of Saint Dominic", + "2045-09-14": "Battle of San Jacinto Day", + "2045-09-15": "Independence Day", + "2045-12-08": "Virgin's Day", + "2045-12-25": "Christmas", + "2046-01-01": "New Year's Day", + "2046-03-22": "Maundy Thursday", + "2046-03-23": "Good Friday", + "2046-05-01": "Labor Day", + "2046-07-19": "Revolution Day", + "2046-08-01": "Descent of Saint Dominic", + "2046-08-10": "Ascent of Saint Dominic", + "2046-09-14": "Battle of San Jacinto Day", + "2046-09-15": "Independence Day", + "2046-12-08": "Virgin's Day", + "2046-12-25": "Christmas", + "2047-01-01": "New Year's Day", + "2047-04-11": "Maundy Thursday", + "2047-04-12": "Good Friday", + "2047-05-01": "Labor Day", + "2047-07-19": "Revolution Day", + "2047-08-01": "Descent of Saint Dominic", + "2047-08-10": "Ascent of Saint Dominic", + "2047-09-14": "Battle of San Jacinto Day", + "2047-09-15": "Independence Day", + "2047-12-08": "Virgin's Day", + "2047-12-25": "Christmas", + "2048-01-01": "New Year's Day", + "2048-04-02": "Maundy Thursday", + "2048-04-03": "Good Friday", + "2048-05-01": "Labor Day", + "2048-07-19": "Revolution Day", + "2048-08-01": "Descent of Saint Dominic", + "2048-08-10": "Ascent of Saint Dominic", + "2048-09-14": "Battle of San Jacinto Day", + "2048-09-15": "Independence Day", + "2048-12-08": "Virgin's Day", + "2048-12-25": "Christmas", + "2049-01-01": "New Year's Day", + "2049-04-15": "Maundy Thursday", + "2049-04-16": "Good Friday", + "2049-05-01": "Labor Day", + "2049-07-19": "Revolution Day", + "2049-08-01": "Descent of Saint Dominic", + "2049-08-10": "Ascent of Saint Dominic", + "2049-09-14": "Battle of San Jacinto Day", + "2049-09-15": "Independence Day", + "2049-12-08": "Virgin's Day", + "2049-12-25": "Christmas", + "2050-01-01": "New Year's Day", + "2050-04-07": "Maundy Thursday", + "2050-04-08": "Good Friday", + "2050-05-01": "Labor Day", + "2050-07-19": "Revolution Day", + "2050-08-01": "Descent of Saint Dominic", + "2050-08-10": "Ascent of Saint Dominic", + "2050-09-14": "Battle of San Jacinto Day", + "2050-09-15": "Independence Day", + "2050-12-08": "Virgin's Day", + "2050-12-25": "Christmas" +} diff --git a/snapshots/countries/NL.json b/snapshots/countries/NL.json new file mode 100644 index 000000000..9b8c220db --- /dev/null +++ b/snapshots/countries/NL.json @@ -0,0 +1,1032 @@ +{ + "1950-01-01": "New Year's Day", + "1950-04-07": "Good Friday", + "1950-04-09": "Easter Sunday", + "1950-04-10": "Easter Monday", + "1950-05-01": "Queen's Day", + "1950-05-05": "Liberation Day", + "1950-05-18": "Ascension Day", + "1950-05-28": "Whit Sunday", + "1950-05-29": "Whit Monday", + "1950-12-25": "Christmas Day", + "1950-12-26": "Second Day of Christmas", + "1951-01-01": "New Year's Day", + "1951-03-23": "Good Friday", + "1951-03-25": "Easter Sunday", + "1951-03-26": "Easter Monday", + "1951-04-30": "Queen's Day", + "1951-05-03": "Ascension Day", + "1951-05-13": "Whit Sunday", + "1951-05-14": "Whit Monday", + "1951-12-25": "Christmas Day", + "1951-12-26": "Second Day of Christmas", + "1952-01-01": "New Year's Day", + "1952-04-11": "Good Friday", + "1952-04-13": "Easter Sunday", + "1952-04-14": "Easter Monday", + "1952-04-30": "Queen's Day", + "1952-05-22": "Ascension Day", + "1952-06-01": "Whit Sunday", + "1952-06-02": "Whit Monday", + "1952-12-25": "Christmas Day", + "1952-12-26": "Second Day of Christmas", + "1953-01-01": "New Year's Day", + "1953-04-03": "Good Friday", + "1953-04-05": "Easter Sunday", + "1953-04-06": "Easter Monday", + "1953-04-30": "Queen's Day", + "1953-05-14": "Ascension Day", + "1953-05-24": "Whit Sunday", + "1953-05-25": "Whit Monday", + "1953-12-25": "Christmas Day", + "1953-12-26": "Second Day of Christmas", + "1954-01-01": "New Year's Day", + "1954-04-16": "Good Friday", + "1954-04-18": "Easter Sunday", + "1954-04-19": "Easter Monday", + "1954-04-30": "Queen's Day", + "1954-05-27": "Ascension Day", + "1954-06-06": "Whit Sunday", + "1954-06-07": "Whit Monday", + "1954-12-25": "Christmas Day", + "1954-12-26": "Second Day of Christmas", + "1955-01-01": "New Year's Day", + "1955-04-08": "Good Friday", + "1955-04-10": "Easter Sunday", + "1955-04-11": "Easter Monday", + "1955-04-30": "Queen's Day", + "1955-05-05": "Liberation Day", + "1955-05-19": "Ascension Day", + "1955-05-29": "Whit Sunday", + "1955-05-30": "Whit Monday", + "1955-12-25": "Christmas Day", + "1955-12-26": "Second Day of Christmas", + "1956-01-01": "New Year's Day", + "1956-03-30": "Good Friday", + "1956-04-01": "Easter Sunday", + "1956-04-02": "Easter Monday", + "1956-04-30": "Queen's Day", + "1956-05-10": "Ascension Day", + "1956-05-20": "Whit Sunday", + "1956-05-21": "Whit Monday", + "1956-12-25": "Christmas Day", + "1956-12-26": "Second Day of Christmas", + "1957-01-01": "New Year's Day", + "1957-04-19": "Good Friday", + "1957-04-21": "Easter Sunday", + "1957-04-22": "Easter Monday", + "1957-04-30": "Queen's Day", + "1957-05-30": "Ascension Day", + "1957-06-09": "Whit Sunday", + "1957-06-10": "Whit Monday", + "1957-12-25": "Christmas Day", + "1957-12-26": "Second Day of Christmas", + "1958-01-01": "New Year's Day", + "1958-04-04": "Good Friday", + "1958-04-06": "Easter Sunday", + "1958-04-07": "Easter Monday", + "1958-04-30": "Queen's Day", + "1958-05-15": "Ascension Day", + "1958-05-25": "Whit Sunday", + "1958-05-26": "Whit Monday", + "1958-12-25": "Christmas Day", + "1958-12-26": "Second Day of Christmas", + "1959-01-01": "New Year's Day", + "1959-03-27": "Good Friday", + "1959-03-29": "Easter Sunday", + "1959-03-30": "Easter Monday", + "1959-04-30": "Queen's Day", + "1959-05-07": "Ascension Day", + "1959-05-17": "Whit Sunday", + "1959-05-18": "Whit Monday", + "1959-12-25": "Christmas Day", + "1959-12-26": "Second Day of Christmas", + "1960-01-01": "New Year's Day", + "1960-04-15": "Good Friday", + "1960-04-17": "Easter Sunday", + "1960-04-18": "Easter Monday", + "1960-04-30": "Queen's Day", + "1960-05-05": "Liberation Day", + "1960-05-26": "Ascension Day", + "1960-06-05": "Whit Sunday", + "1960-06-06": "Whit Monday", + "1960-12-25": "Christmas Day", + "1960-12-26": "Second Day of Christmas", + "1961-01-01": "New Year's Day", + "1961-03-31": "Good Friday", + "1961-04-02": "Easter Sunday", + "1961-04-03": "Easter Monday", + "1961-05-01": "Queen's Day", + "1961-05-11": "Ascension Day", + "1961-05-21": "Whit Sunday", + "1961-05-22": "Whit Monday", + "1961-12-25": "Christmas Day", + "1961-12-26": "Second Day of Christmas", + "1962-01-01": "New Year's Day", + "1962-04-20": "Good Friday", + "1962-04-22": "Easter Sunday", + "1962-04-23": "Easter Monday", + "1962-04-30": "Queen's Day", + "1962-05-31": "Ascension Day", + "1962-06-10": "Whit Sunday", + "1962-06-11": "Whit Monday", + "1962-12-25": "Christmas Day", + "1962-12-26": "Second Day of Christmas", + "1963-01-01": "New Year's Day", + "1963-04-12": "Good Friday", + "1963-04-14": "Easter Sunday", + "1963-04-15": "Easter Monday", + "1963-04-30": "Queen's Day", + "1963-05-23": "Ascension Day", + "1963-06-02": "Whit Sunday", + "1963-06-03": "Whit Monday", + "1963-12-25": "Christmas Day", + "1963-12-26": "Second Day of Christmas", + "1964-01-01": "New Year's Day", + "1964-03-27": "Good Friday", + "1964-03-29": "Easter Sunday", + "1964-03-30": "Easter Monday", + "1964-04-30": "Queen's Day", + "1964-05-07": "Ascension Day", + "1964-05-17": "Whit Sunday", + "1964-05-18": "Whit Monday", + "1964-12-25": "Christmas Day", + "1964-12-26": "Second Day of Christmas", + "1965-01-01": "New Year's Day", + "1965-04-16": "Good Friday", + "1965-04-18": "Easter Sunday", + "1965-04-19": "Easter Monday", + "1965-04-30": "Queen's Day", + "1965-05-05": "Liberation Day", + "1965-05-27": "Ascension Day", + "1965-06-06": "Whit Sunday", + "1965-06-07": "Whit Monday", + "1965-12-25": "Christmas Day", + "1965-12-26": "Second Day of Christmas", + "1966-01-01": "New Year's Day", + "1966-04-08": "Good Friday", + "1966-04-10": "Easter Sunday", + "1966-04-11": "Easter Monday", + "1966-04-30": "Queen's Day", + "1966-05-19": "Ascension Day", + "1966-05-29": "Whit Sunday", + "1966-05-30": "Whit Monday", + "1966-12-25": "Christmas Day", + "1966-12-26": "Second Day of Christmas", + "1967-01-01": "New Year's Day", + "1967-03-24": "Good Friday", + "1967-03-26": "Easter Sunday", + "1967-03-27": "Easter Monday", + "1967-05-01": "Queen's Day", + "1967-05-04": "Ascension Day", + "1967-05-14": "Whit Sunday", + "1967-05-15": "Whit Monday", + "1967-12-25": "Christmas Day", + "1967-12-26": "Second Day of Christmas", + "1968-01-01": "New Year's Day", + "1968-04-12": "Good Friday", + "1968-04-14": "Easter Sunday", + "1968-04-15": "Easter Monday", + "1968-04-30": "Queen's Day", + "1968-05-23": "Ascension Day", + "1968-06-02": "Whit Sunday", + "1968-06-03": "Whit Monday", + "1968-12-25": "Christmas Day", + "1968-12-26": "Second Day of Christmas", + "1969-01-01": "New Year's Day", + "1969-04-04": "Good Friday", + "1969-04-06": "Easter Sunday", + "1969-04-07": "Easter Monday", + "1969-04-30": "Queen's Day", + "1969-05-15": "Ascension Day", + "1969-05-25": "Whit Sunday", + "1969-05-26": "Whit Monday", + "1969-12-25": "Christmas Day", + "1969-12-26": "Second Day of Christmas", + "1970-01-01": "New Year's Day", + "1970-03-27": "Good Friday", + "1970-03-29": "Easter Sunday", + "1970-03-30": "Easter Monday", + "1970-04-30": "Queen's Day", + "1970-05-05": "Liberation Day", + "1970-05-07": "Ascension Day", + "1970-05-17": "Whit Sunday", + "1970-05-18": "Whit Monday", + "1970-12-25": "Christmas Day", + "1970-12-26": "Second Day of Christmas", + "1971-01-01": "New Year's Day", + "1971-04-09": "Good Friday", + "1971-04-11": "Easter Sunday", + "1971-04-12": "Easter Monday", + "1971-04-30": "Queen's Day", + "1971-05-20": "Ascension Day", + "1971-05-30": "Whit Sunday", + "1971-05-31": "Whit Monday", + "1971-12-25": "Christmas Day", + "1971-12-26": "Second Day of Christmas", + "1972-01-01": "New Year's Day", + "1972-03-31": "Good Friday", + "1972-04-02": "Easter Sunday", + "1972-04-03": "Easter Monday", + "1972-05-01": "Queen's Day", + "1972-05-11": "Ascension Day", + "1972-05-21": "Whit Sunday", + "1972-05-22": "Whit Monday", + "1972-12-25": "Christmas Day", + "1972-12-26": "Second Day of Christmas", + "1973-01-01": "New Year's Day", + "1973-04-20": "Good Friday", + "1973-04-22": "Easter Sunday", + "1973-04-23": "Easter Monday", + "1973-04-30": "Queen's Day", + "1973-05-31": "Ascension Day", + "1973-06-10": "Whit Sunday", + "1973-06-11": "Whit Monday", + "1973-12-25": "Christmas Day", + "1973-12-26": "Second Day of Christmas", + "1974-01-01": "New Year's Day", + "1974-04-12": "Good Friday", + "1974-04-14": "Easter Sunday", + "1974-04-15": "Easter Monday", + "1974-04-30": "Queen's Day", + "1974-05-23": "Ascension Day", + "1974-06-02": "Whit Sunday", + "1974-06-03": "Whit Monday", + "1974-12-25": "Christmas Day", + "1974-12-26": "Second Day of Christmas", + "1975-01-01": "New Year's Day", + "1975-03-28": "Good Friday", + "1975-03-30": "Easter Sunday", + "1975-03-31": "Easter Monday", + "1975-04-30": "Queen's Day", + "1975-05-05": "Liberation Day", + "1975-05-08": "Ascension Day", + "1975-05-18": "Whit Sunday", + "1975-05-19": "Whit Monday", + "1975-12-25": "Christmas Day", + "1975-12-26": "Second Day of Christmas", + "1976-01-01": "New Year's Day", + "1976-04-16": "Good Friday", + "1976-04-18": "Easter Sunday", + "1976-04-19": "Easter Monday", + "1976-04-30": "Queen's Day", + "1976-05-27": "Ascension Day", + "1976-06-06": "Whit Sunday", + "1976-06-07": "Whit Monday", + "1976-12-25": "Christmas Day", + "1976-12-26": "Second Day of Christmas", + "1977-01-01": "New Year's Day", + "1977-04-08": "Good Friday", + "1977-04-10": "Easter Sunday", + "1977-04-11": "Easter Monday", + "1977-04-30": "Queen's Day", + "1977-05-19": "Ascension Day", + "1977-05-29": "Whit Sunday", + "1977-05-30": "Whit Monday", + "1977-12-25": "Christmas Day", + "1977-12-26": "Second Day of Christmas", + "1978-01-01": "New Year's Day", + "1978-03-24": "Good Friday", + "1978-03-26": "Easter Sunday", + "1978-03-27": "Easter Monday", + "1978-05-01": "Queen's Day", + "1978-05-04": "Ascension Day", + "1978-05-14": "Whit Sunday", + "1978-05-15": "Whit Monday", + "1978-12-25": "Christmas Day", + "1978-12-26": "Second Day of Christmas", + "1979-01-01": "New Year's Day", + "1979-04-13": "Good Friday", + "1979-04-15": "Easter Sunday", + "1979-04-16": "Easter Monday", + "1979-04-30": "Queen's Day", + "1979-05-24": "Ascension Day", + "1979-06-03": "Whit Sunday", + "1979-06-04": "Whit Monday", + "1979-12-25": "Christmas Day", + "1979-12-26": "Second Day of Christmas", + "1980-01-01": "New Year's Day", + "1980-04-04": "Good Friday", + "1980-04-06": "Easter Sunday", + "1980-04-07": "Easter Monday", + "1980-04-30": "Queen's Day", + "1980-05-05": "Liberation Day", + "1980-05-15": "Ascension Day", + "1980-05-25": "Whit Sunday", + "1980-05-26": "Whit Monday", + "1980-12-25": "Christmas Day", + "1980-12-26": "Second Day of Christmas", + "1981-01-01": "New Year's Day", + "1981-04-17": "Good Friday", + "1981-04-19": "Easter Sunday", + "1981-04-20": "Easter Monday", + "1981-04-30": "Queen's Day", + "1981-05-28": "Ascension Day", + "1981-06-07": "Whit Sunday", + "1981-06-08": "Whit Monday", + "1981-12-25": "Christmas Day", + "1981-12-26": "Second Day of Christmas", + "1982-01-01": "New Year's Day", + "1982-04-09": "Good Friday", + "1982-04-11": "Easter Sunday", + "1982-04-12": "Easter Monday", + "1982-04-30": "Queen's Day", + "1982-05-20": "Ascension Day", + "1982-05-30": "Whit Sunday", + "1982-05-31": "Whit Monday", + "1982-12-25": "Christmas Day", + "1982-12-26": "Second Day of Christmas", + "1983-01-01": "New Year's Day", + "1983-04-01": "Good Friday", + "1983-04-03": "Easter Sunday", + "1983-04-04": "Easter Monday", + "1983-04-30": "Queen's Day", + "1983-05-12": "Ascension Day", + "1983-05-22": "Whit Sunday", + "1983-05-23": "Whit Monday", + "1983-12-25": "Christmas Day", + "1983-12-26": "Second Day of Christmas", + "1984-01-01": "New Year's Day", + "1984-04-20": "Good Friday", + "1984-04-22": "Easter Sunday", + "1984-04-23": "Easter Monday", + "1984-04-30": "Queen's Day", + "1984-05-31": "Ascension Day", + "1984-06-10": "Whit Sunday", + "1984-06-11": "Whit Monday", + "1984-12-25": "Christmas Day", + "1984-12-26": "Second Day of Christmas", + "1985-01-01": "New Year's Day", + "1985-04-05": "Good Friday", + "1985-04-07": "Easter Sunday", + "1985-04-08": "Easter Monday", + "1985-04-30": "Queen's Day", + "1985-05-05": "Liberation Day", + "1985-05-16": "Ascension Day", + "1985-05-26": "Whit Sunday", + "1985-05-27": "Whit Monday", + "1985-12-25": "Christmas Day", + "1985-12-26": "Second Day of Christmas", + "1986-01-01": "New Year's Day", + "1986-03-28": "Good Friday", + "1986-03-30": "Easter Sunday", + "1986-03-31": "Easter Monday", + "1986-04-30": "Queen's Day", + "1986-05-08": "Ascension Day", + "1986-05-18": "Whit Sunday", + "1986-05-19": "Whit Monday", + "1986-12-25": "Christmas Day", + "1986-12-26": "Second Day of Christmas", + "1987-01-01": "New Year's Day", + "1987-04-17": "Good Friday", + "1987-04-19": "Easter Sunday", + "1987-04-20": "Easter Monday", + "1987-04-30": "Queen's Day", + "1987-05-28": "Ascension Day", + "1987-06-07": "Whit Sunday", + "1987-06-08": "Whit Monday", + "1987-12-25": "Christmas Day", + "1987-12-26": "Second Day of Christmas", + "1988-01-01": "New Year's Day", + "1988-04-01": "Good Friday", + "1988-04-03": "Easter Sunday", + "1988-04-04": "Easter Monday", + "1988-04-30": "Queen's Day", + "1988-05-12": "Ascension Day", + "1988-05-22": "Whit Sunday", + "1988-05-23": "Whit Monday", + "1988-12-25": "Christmas Day", + "1988-12-26": "Second Day of Christmas", + "1989-01-01": "New Year's Day", + "1989-03-24": "Good Friday", + "1989-03-26": "Easter Sunday", + "1989-03-27": "Easter Monday", + "1989-04-29": "Queen's Day", + "1989-05-04": "Ascension Day", + "1989-05-14": "Whit Sunday", + "1989-05-15": "Whit Monday", + "1989-12-25": "Christmas Day", + "1989-12-26": "Second Day of Christmas", + "1990-01-01": "New Year's Day", + "1990-04-13": "Good Friday", + "1990-04-15": "Easter Sunday", + "1990-04-16": "Easter Monday", + "1990-04-30": "Queen's Day", + "1990-05-05": "Liberation Day", + "1990-05-24": "Ascension Day", + "1990-06-03": "Whit Sunday", + "1990-06-04": "Whit Monday", + "1990-12-25": "Christmas Day", + "1990-12-26": "Second Day of Christmas", + "1991-01-01": "New Year's Day", + "1991-03-29": "Good Friday", + "1991-03-31": "Easter Sunday", + "1991-04-01": "Easter Monday", + "1991-04-30": "Queen's Day", + "1991-05-09": "Ascension Day", + "1991-05-19": "Whit Sunday", + "1991-05-20": "Whit Monday", + "1991-12-25": "Christmas Day", + "1991-12-26": "Second Day of Christmas", + "1992-01-01": "New Year's Day", + "1992-04-17": "Good Friday", + "1992-04-19": "Easter Sunday", + "1992-04-20": "Easter Monday", + "1992-04-30": "Queen's Day", + "1992-05-28": "Ascension Day", + "1992-06-07": "Whit Sunday", + "1992-06-08": "Whit Monday", + "1992-12-25": "Christmas Day", + "1992-12-26": "Second Day of Christmas", + "1993-01-01": "New Year's Day", + "1993-04-09": "Good Friday", + "1993-04-11": "Easter Sunday", + "1993-04-12": "Easter Monday", + "1993-04-30": "Queen's Day", + "1993-05-20": "Ascension Day", + "1993-05-30": "Whit Sunday", + "1993-05-31": "Whit Monday", + "1993-12-25": "Christmas Day", + "1993-12-26": "Second Day of Christmas", + "1994-01-01": "New Year's Day", + "1994-04-01": "Good Friday", + "1994-04-03": "Easter Sunday", + "1994-04-04": "Easter Monday", + "1994-04-30": "Queen's Day", + "1994-05-12": "Ascension Day", + "1994-05-22": "Whit Sunday", + "1994-05-23": "Whit Monday", + "1994-12-25": "Christmas Day", + "1994-12-26": "Second Day of Christmas", + "1995-01-01": "New Year's Day", + "1995-04-14": "Good Friday", + "1995-04-16": "Easter Sunday", + "1995-04-17": "Easter Monday", + "1995-04-29": "Queen's Day", + "1995-05-05": "Liberation Day", + "1995-05-25": "Ascension Day", + "1995-06-04": "Whit Sunday", + "1995-06-05": "Whit Monday", + "1995-12-25": "Christmas Day", + "1995-12-26": "Second Day of Christmas", + "1996-01-01": "New Year's Day", + "1996-04-05": "Good Friday", + "1996-04-07": "Easter Sunday", + "1996-04-08": "Easter Monday", + "1996-04-30": "Queen's Day", + "1996-05-16": "Ascension Day", + "1996-05-26": "Whit Sunday", + "1996-05-27": "Whit Monday", + "1996-12-25": "Christmas Day", + "1996-12-26": "Second Day of Christmas", + "1997-01-01": "New Year's Day", + "1997-03-28": "Good Friday", + "1997-03-30": "Easter Sunday", + "1997-03-31": "Easter Monday", + "1997-04-30": "Queen's Day", + "1997-05-08": "Ascension Day", + "1997-05-18": "Whit Sunday", + "1997-05-19": "Whit Monday", + "1997-12-25": "Christmas Day", + "1997-12-26": "Second Day of Christmas", + "1998-01-01": "New Year's Day", + "1998-04-10": "Good Friday", + "1998-04-12": "Easter Sunday", + "1998-04-13": "Easter Monday", + "1998-04-30": "Queen's Day", + "1998-05-21": "Ascension Day", + "1998-05-31": "Whit Sunday", + "1998-06-01": "Whit Monday", + "1998-12-25": "Christmas Day", + "1998-12-26": "Second Day of Christmas", + "1999-01-01": "New Year's Day", + "1999-04-02": "Good Friday", + "1999-04-04": "Easter Sunday", + "1999-04-05": "Easter Monday", + "1999-04-30": "Queen's Day", + "1999-05-13": "Ascension Day", + "1999-05-23": "Whit Sunday", + "1999-05-24": "Whit Monday", + "1999-12-25": "Christmas Day", + "1999-12-26": "Second Day of Christmas", + "2000-01-01": "New Year's Day", + "2000-04-21": "Good Friday", + "2000-04-23": "Easter Sunday", + "2000-04-24": "Easter Monday", + "2000-04-29": "Queen's Day", + "2000-05-05": "Liberation Day", + "2000-06-01": "Ascension Day", + "2000-06-11": "Whit Sunday", + "2000-06-12": "Whit Monday", + "2000-12-25": "Christmas Day", + "2000-12-26": "Second Day of Christmas", + "2001-01-01": "New Year's Day", + "2001-04-13": "Good Friday", + "2001-04-15": "Easter Sunday", + "2001-04-16": "Easter Monday", + "2001-04-30": "Queen's Day", + "2001-05-24": "Ascension Day", + "2001-06-03": "Whit Sunday", + "2001-06-04": "Whit Monday", + "2001-12-25": "Christmas Day", + "2001-12-26": "Second Day of Christmas", + "2002-01-01": "New Year's Day", + "2002-03-29": "Good Friday", + "2002-03-31": "Easter Sunday", + "2002-04-01": "Easter Monday", + "2002-04-30": "Queen's Day", + "2002-05-09": "Ascension Day", + "2002-05-19": "Whit Sunday", + "2002-05-20": "Whit Monday", + "2002-12-25": "Christmas Day", + "2002-12-26": "Second Day of Christmas", + "2003-01-01": "New Year's Day", + "2003-04-18": "Good Friday", + "2003-04-20": "Easter Sunday", + "2003-04-21": "Easter Monday", + "2003-04-30": "Queen's Day", + "2003-05-29": "Ascension Day", + "2003-06-08": "Whit Sunday", + "2003-06-09": "Whit Monday", + "2003-12-25": "Christmas Day", + "2003-12-26": "Second Day of Christmas", + "2004-01-01": "New Year's Day", + "2004-04-09": "Good Friday", + "2004-04-11": "Easter Sunday", + "2004-04-12": "Easter Monday", + "2004-04-30": "Queen's Day", + "2004-05-20": "Ascension Day", + "2004-05-30": "Whit Sunday", + "2004-05-31": "Whit Monday", + "2004-12-25": "Christmas Day", + "2004-12-26": "Second Day of Christmas", + "2005-01-01": "New Year's Day", + "2005-03-25": "Good Friday", + "2005-03-27": "Easter Sunday", + "2005-03-28": "Easter Monday", + "2005-04-30": "Queen's Day", + "2005-05-05": "Ascension Day; Liberation Day", + "2005-05-15": "Whit Sunday", + "2005-05-16": "Whit Monday", + "2005-12-25": "Christmas Day", + "2005-12-26": "Second Day of Christmas", + "2006-01-01": "New Year's Day", + "2006-04-14": "Good Friday", + "2006-04-16": "Easter Sunday", + "2006-04-17": "Easter Monday", + "2006-04-29": "Queen's Day", + "2006-05-25": "Ascension Day", + "2006-06-04": "Whit Sunday", + "2006-06-05": "Whit Monday", + "2006-12-25": "Christmas Day", + "2006-12-26": "Second Day of Christmas", + "2007-01-01": "New Year's Day", + "2007-04-06": "Good Friday", + "2007-04-08": "Easter Sunday", + "2007-04-09": "Easter Monday", + "2007-04-30": "Queen's Day", + "2007-05-17": "Ascension Day", + "2007-05-27": "Whit Sunday", + "2007-05-28": "Whit Monday", + "2007-12-25": "Christmas Day", + "2007-12-26": "Second Day of Christmas", + "2008-01-01": "New Year's Day", + "2008-03-21": "Good Friday", + "2008-03-23": "Easter Sunday", + "2008-03-24": "Easter Monday", + "2008-04-30": "Queen's Day", + "2008-05-01": "Ascension Day", + "2008-05-11": "Whit Sunday", + "2008-05-12": "Whit Monday", + "2008-12-25": "Christmas Day", + "2008-12-26": "Second Day of Christmas", + "2009-01-01": "New Year's Day", + "2009-04-10": "Good Friday", + "2009-04-12": "Easter Sunday", + "2009-04-13": "Easter Monday", + "2009-04-30": "Queen's Day", + "2009-05-21": "Ascension Day", + "2009-05-31": "Whit Sunday", + "2009-06-01": "Whit Monday", + "2009-12-25": "Christmas Day", + "2009-12-26": "Second Day of Christmas", + "2010-01-01": "New Year's Day", + "2010-04-02": "Good Friday", + "2010-04-04": "Easter Sunday", + "2010-04-05": "Easter Monday", + "2010-04-30": "Queen's Day", + "2010-05-05": "Liberation Day", + "2010-05-13": "Ascension Day", + "2010-05-23": "Whit Sunday", + "2010-05-24": "Whit Monday", + "2010-12-25": "Christmas Day", + "2010-12-26": "Second Day of Christmas", + "2011-01-01": "New Year's Day", + "2011-04-22": "Good Friday", + "2011-04-24": "Easter Sunday", + "2011-04-25": "Easter Monday", + "2011-04-30": "Queen's Day", + "2011-06-02": "Ascension Day", + "2011-06-12": "Whit Sunday", + "2011-06-13": "Whit Monday", + "2011-12-25": "Christmas Day", + "2011-12-26": "Second Day of Christmas", + "2012-01-01": "New Year's Day", + "2012-04-06": "Good Friday", + "2012-04-08": "Easter Sunday", + "2012-04-09": "Easter Monday", + "2012-04-30": "Queen's Day", + "2012-05-17": "Ascension Day", + "2012-05-27": "Whit Sunday", + "2012-05-28": "Whit Monday", + "2012-12-25": "Christmas Day", + "2012-12-26": "Second Day of Christmas", + "2013-01-01": "New Year's Day", + "2013-03-29": "Good Friday", + "2013-03-31": "Easter Sunday", + "2013-04-01": "Easter Monday", + "2013-04-30": "Queen's Day", + "2013-05-09": "Ascension Day", + "2013-05-19": "Whit Sunday", + "2013-05-20": "Whit Monday", + "2013-12-25": "Christmas Day", + "2013-12-26": "Second Day of Christmas", + "2014-01-01": "New Year's Day", + "2014-04-18": "Good Friday", + "2014-04-20": "Easter Sunday", + "2014-04-21": "Easter Monday", + "2014-04-26": "King's Day", + "2014-05-29": "Ascension Day", + "2014-06-08": "Whit Sunday", + "2014-06-09": "Whit Monday", + "2014-12-25": "Christmas Day", + "2014-12-26": "Second Day of Christmas", + "2015-01-01": "New Year's Day", + "2015-04-03": "Good Friday", + "2015-04-05": "Easter Sunday", + "2015-04-06": "Easter Monday", + "2015-04-27": "King's Day", + "2015-05-05": "Liberation Day", + "2015-05-14": "Ascension Day", + "2015-05-24": "Whit Sunday", + "2015-05-25": "Whit Monday", + "2015-12-25": "Christmas Day", + "2015-12-26": "Second Day of Christmas", + "2016-01-01": "New Year's Day", + "2016-03-25": "Good Friday", + "2016-03-27": "Easter Sunday", + "2016-03-28": "Easter Monday", + "2016-04-27": "King's Day", + "2016-05-05": "Ascension Day", + "2016-05-15": "Whit Sunday", + "2016-05-16": "Whit Monday", + "2016-12-25": "Christmas Day", + "2016-12-26": "Second Day of Christmas", + "2017-01-01": "New Year's Day", + "2017-04-14": "Good Friday", + "2017-04-16": "Easter Sunday", + "2017-04-17": "Easter Monday", + "2017-04-27": "King's Day", + "2017-05-25": "Ascension Day", + "2017-06-04": "Whit Sunday", + "2017-06-05": "Whit Monday", + "2017-12-25": "Christmas Day", + "2017-12-26": "Second Day of Christmas", + "2018-01-01": "New Year's Day", + "2018-03-30": "Good Friday", + "2018-04-01": "Easter Sunday", + "2018-04-02": "Easter Monday", + "2018-04-27": "King's Day", + "2018-05-10": "Ascension Day", + "2018-05-20": "Whit Sunday", + "2018-05-21": "Whit Monday", + "2018-12-25": "Christmas Day", + "2018-12-26": "Second Day of Christmas", + "2019-01-01": "New Year's Day", + "2019-04-19": "Good Friday", + "2019-04-21": "Easter Sunday", + "2019-04-22": "Easter Monday", + "2019-04-27": "King's Day", + "2019-05-30": "Ascension Day", + "2019-06-09": "Whit Sunday", + "2019-06-10": "Whit Monday", + "2019-12-25": "Christmas Day", + "2019-12-26": "Second Day of Christmas", + "2020-01-01": "New Year's Day", + "2020-04-10": "Good Friday", + "2020-04-12": "Easter Sunday", + "2020-04-13": "Easter Monday", + "2020-04-27": "King's Day", + "2020-05-05": "Liberation Day", + "2020-05-21": "Ascension Day", + "2020-05-31": "Whit Sunday", + "2020-06-01": "Whit Monday", + "2020-12-25": "Christmas Day", + "2020-12-26": "Second Day of Christmas", + "2021-01-01": "New Year's Day", + "2021-04-02": "Good Friday", + "2021-04-04": "Easter Sunday", + "2021-04-05": "Easter Monday", + "2021-04-27": "King's Day", + "2021-05-13": "Ascension Day", + "2021-05-23": "Whit Sunday", + "2021-05-24": "Whit Monday", + "2021-12-25": "Christmas Day", + "2021-12-26": "Second Day of Christmas", + "2022-01-01": "New Year's Day", + "2022-04-15": "Good Friday", + "2022-04-17": "Easter Sunday", + "2022-04-18": "Easter Monday", + "2022-04-27": "King's Day", + "2022-05-26": "Ascension Day", + "2022-06-05": "Whit Sunday", + "2022-06-06": "Whit Monday", + "2022-12-25": "Christmas Day", + "2022-12-26": "Second Day of Christmas", + "2023-01-01": "New Year's Day", + "2023-04-07": "Good Friday", + "2023-04-09": "Easter Sunday", + "2023-04-10": "Easter Monday", + "2023-04-27": "King's Day", + "2023-05-18": "Ascension Day", + "2023-05-28": "Whit Sunday", + "2023-05-29": "Whit Monday", + "2023-12-25": "Christmas Day", + "2023-12-26": "Second Day of Christmas", + "2024-01-01": "New Year's Day", + "2024-03-29": "Good Friday", + "2024-03-31": "Easter Sunday", + "2024-04-01": "Easter Monday", + "2024-04-27": "King's Day", + "2024-05-09": "Ascension Day", + "2024-05-19": "Whit Sunday", + "2024-05-20": "Whit Monday", + "2024-12-25": "Christmas Day", + "2024-12-26": "Second Day of Christmas", + "2025-01-01": "New Year's Day", + "2025-04-18": "Good Friday", + "2025-04-20": "Easter Sunday", + "2025-04-21": "Easter Monday", + "2025-04-26": "King's Day", + "2025-05-05": "Liberation Day", + "2025-05-29": "Ascension Day", + "2025-06-08": "Whit Sunday", + "2025-06-09": "Whit Monday", + "2025-12-25": "Christmas Day", + "2025-12-26": "Second Day of Christmas", + "2026-01-01": "New Year's Day", + "2026-04-03": "Good Friday", + "2026-04-05": "Easter Sunday", + "2026-04-06": "Easter Monday", + "2026-04-27": "King's Day", + "2026-05-14": "Ascension Day", + "2026-05-24": "Whit Sunday", + "2026-05-25": "Whit Monday", + "2026-12-25": "Christmas Day", + "2026-12-26": "Second Day of Christmas", + "2027-01-01": "New Year's Day", + "2027-03-26": "Good Friday", + "2027-03-28": "Easter Sunday", + "2027-03-29": "Easter Monday", + "2027-04-27": "King's Day", + "2027-05-06": "Ascension Day", + "2027-05-16": "Whit Sunday", + "2027-05-17": "Whit Monday", + "2027-12-25": "Christmas Day", + "2027-12-26": "Second Day of Christmas", + "2028-01-01": "New Year's Day", + "2028-04-14": "Good Friday", + "2028-04-16": "Easter Sunday", + "2028-04-17": "Easter Monday", + "2028-04-27": "King's Day", + "2028-05-25": "Ascension Day", + "2028-06-04": "Whit Sunday", + "2028-06-05": "Whit Monday", + "2028-12-25": "Christmas Day", + "2028-12-26": "Second Day of Christmas", + "2029-01-01": "New Year's Day", + "2029-03-30": "Good Friday", + "2029-04-01": "Easter Sunday", + "2029-04-02": "Easter Monday", + "2029-04-27": "King's Day", + "2029-05-10": "Ascension Day", + "2029-05-20": "Whit Sunday", + "2029-05-21": "Whit Monday", + "2029-12-25": "Christmas Day", + "2029-12-26": "Second Day of Christmas", + "2030-01-01": "New Year's Day", + "2030-04-19": "Good Friday", + "2030-04-21": "Easter Sunday", + "2030-04-22": "Easter Monday", + "2030-04-27": "King's Day", + "2030-05-05": "Liberation Day", + "2030-05-30": "Ascension Day", + "2030-06-09": "Whit Sunday", + "2030-06-10": "Whit Monday", + "2030-12-25": "Christmas Day", + "2030-12-26": "Second Day of Christmas", + "2031-01-01": "New Year's Day", + "2031-04-11": "Good Friday", + "2031-04-13": "Easter Sunday", + "2031-04-14": "Easter Monday", + "2031-04-26": "King's Day", + "2031-05-22": "Ascension Day", + "2031-06-01": "Whit Sunday", + "2031-06-02": "Whit Monday", + "2031-12-25": "Christmas Day", + "2031-12-26": "Second Day of Christmas", + "2032-01-01": "New Year's Day", + "2032-03-26": "Good Friday", + "2032-03-28": "Easter Sunday", + "2032-03-29": "Easter Monday", + "2032-04-27": "King's Day", + "2032-05-06": "Ascension Day", + "2032-05-16": "Whit Sunday", + "2032-05-17": "Whit Monday", + "2032-12-25": "Christmas Day", + "2032-12-26": "Second Day of Christmas", + "2033-01-01": "New Year's Day", + "2033-04-15": "Good Friday", + "2033-04-17": "Easter Sunday", + "2033-04-18": "Easter Monday", + "2033-04-27": "King's Day", + "2033-05-26": "Ascension Day", + "2033-06-05": "Whit Sunday", + "2033-06-06": "Whit Monday", + "2033-12-25": "Christmas Day", + "2033-12-26": "Second Day of Christmas", + "2034-01-01": "New Year's Day", + "2034-04-07": "Good Friday", + "2034-04-09": "Easter Sunday", + "2034-04-10": "Easter Monday", + "2034-04-27": "King's Day", + "2034-05-18": "Ascension Day", + "2034-05-28": "Whit Sunday", + "2034-05-29": "Whit Monday", + "2034-12-25": "Christmas Day", + "2034-12-26": "Second Day of Christmas", + "2035-01-01": "New Year's Day", + "2035-03-23": "Good Friday", + "2035-03-25": "Easter Sunday", + "2035-03-26": "Easter Monday", + "2035-04-27": "King's Day", + "2035-05-03": "Ascension Day", + "2035-05-05": "Liberation Day", + "2035-05-13": "Whit Sunday", + "2035-05-14": "Whit Monday", + "2035-12-25": "Christmas Day", + "2035-12-26": "Second Day of Christmas", + "2036-01-01": "New Year's Day", + "2036-04-11": "Good Friday", + "2036-04-13": "Easter Sunday", + "2036-04-14": "Easter Monday", + "2036-04-26": "King's Day", + "2036-05-22": "Ascension Day", + "2036-06-01": "Whit Sunday", + "2036-06-02": "Whit Monday", + "2036-12-25": "Christmas Day", + "2036-12-26": "Second Day of Christmas", + "2037-01-01": "New Year's Day", + "2037-04-03": "Good Friday", + "2037-04-05": "Easter Sunday", + "2037-04-06": "Easter Monday", + "2037-04-27": "King's Day", + "2037-05-14": "Ascension Day", + "2037-05-24": "Whit Sunday", + "2037-05-25": "Whit Monday", + "2037-12-25": "Christmas Day", + "2037-12-26": "Second Day of Christmas", + "2038-01-01": "New Year's Day", + "2038-04-23": "Good Friday", + "2038-04-25": "Easter Sunday", + "2038-04-26": "Easter Monday", + "2038-04-27": "King's Day", + "2038-06-03": "Ascension Day", + "2038-06-13": "Whit Sunday", + "2038-06-14": "Whit Monday", + "2038-12-25": "Christmas Day", + "2038-12-26": "Second Day of Christmas", + "2039-01-01": "New Year's Day", + "2039-04-08": "Good Friday", + "2039-04-10": "Easter Sunday", + "2039-04-11": "Easter Monday", + "2039-04-27": "King's Day", + "2039-05-19": "Ascension Day", + "2039-05-29": "Whit Sunday", + "2039-05-30": "Whit Monday", + "2039-12-25": "Christmas Day", + "2039-12-26": "Second Day of Christmas", + "2040-01-01": "New Year's Day", + "2040-03-30": "Good Friday", + "2040-04-01": "Easter Sunday", + "2040-04-02": "Easter Monday", + "2040-04-27": "King's Day", + "2040-05-05": "Liberation Day", + "2040-05-10": "Ascension Day", + "2040-05-20": "Whit Sunday", + "2040-05-21": "Whit Monday", + "2040-12-25": "Christmas Day", + "2040-12-26": "Second Day of Christmas", + "2041-01-01": "New Year's Day", + "2041-04-19": "Good Friday", + "2041-04-21": "Easter Sunday", + "2041-04-22": "Easter Monday", + "2041-04-27": "King's Day", + "2041-05-30": "Ascension Day", + "2041-06-09": "Whit Sunday", + "2041-06-10": "Whit Monday", + "2041-12-25": "Christmas Day", + "2041-12-26": "Second Day of Christmas", + "2042-01-01": "New Year's Day", + "2042-04-04": "Good Friday", + "2042-04-06": "Easter Sunday", + "2042-04-07": "Easter Monday", + "2042-04-26": "King's Day", + "2042-05-15": "Ascension Day", + "2042-05-25": "Whit Sunday", + "2042-05-26": "Whit Monday", + "2042-12-25": "Christmas Day", + "2042-12-26": "Second Day of Christmas", + "2043-01-01": "New Year's Day", + "2043-03-27": "Good Friday", + "2043-03-29": "Easter Sunday", + "2043-03-30": "Easter Monday", + "2043-04-27": "King's Day", + "2043-05-07": "Ascension Day", + "2043-05-17": "Whit Sunday", + "2043-05-18": "Whit Monday", + "2043-12-25": "Christmas Day", + "2043-12-26": "Second Day of Christmas", + "2044-01-01": "New Year's Day", + "2044-04-15": "Good Friday", + "2044-04-17": "Easter Sunday", + "2044-04-18": "Easter Monday", + "2044-04-27": "King's Day", + "2044-05-26": "Ascension Day", + "2044-06-05": "Whit Sunday", + "2044-06-06": "Whit Monday", + "2044-12-25": "Christmas Day", + "2044-12-26": "Second Day of Christmas", + "2045-01-01": "New Year's Day", + "2045-04-07": "Good Friday", + "2045-04-09": "Easter Sunday", + "2045-04-10": "Easter Monday", + "2045-04-27": "King's Day", + "2045-05-05": "Liberation Day", + "2045-05-18": "Ascension Day", + "2045-05-28": "Whit Sunday", + "2045-05-29": "Whit Monday", + "2045-12-25": "Christmas Day", + "2045-12-26": "Second Day of Christmas", + "2046-01-01": "New Year's Day", + "2046-03-23": "Good Friday", + "2046-03-25": "Easter Sunday", + "2046-03-26": "Easter Monday", + "2046-04-27": "King's Day", + "2046-05-03": "Ascension Day", + "2046-05-13": "Whit Sunday", + "2046-05-14": "Whit Monday", + "2046-12-25": "Christmas Day", + "2046-12-26": "Second Day of Christmas", + "2047-01-01": "New Year's Day", + "2047-04-12": "Good Friday", + "2047-04-14": "Easter Sunday", + "2047-04-15": "Easter Monday", + "2047-04-27": "King's Day", + "2047-05-23": "Ascension Day", + "2047-06-02": "Whit Sunday", + "2047-06-03": "Whit Monday", + "2047-12-25": "Christmas Day", + "2047-12-26": "Second Day of Christmas", + "2048-01-01": "New Year's Day", + "2048-04-03": "Good Friday", + "2048-04-05": "Easter Sunday", + "2048-04-06": "Easter Monday", + "2048-04-27": "King's Day", + "2048-05-14": "Ascension Day", + "2048-05-24": "Whit Sunday", + "2048-05-25": "Whit Monday", + "2048-12-25": "Christmas Day", + "2048-12-26": "Second Day of Christmas", + "2049-01-01": "New Year's Day", + "2049-04-16": "Good Friday", + "2049-04-18": "Easter Sunday", + "2049-04-19": "Easter Monday", + "2049-04-27": "King's Day", + "2049-05-27": "Ascension Day", + "2049-06-06": "Whit Sunday", + "2049-06-07": "Whit Monday", + "2049-12-25": "Christmas Day", + "2049-12-26": "Second Day of Christmas", + "2050-01-01": "New Year's Day", + "2050-04-08": "Good Friday", + "2050-04-10": "Easter Sunday", + "2050-04-11": "Easter Monday", + "2050-04-27": "King's Day", + "2050-05-05": "Liberation Day", + "2050-05-19": "Ascension Day", + "2050-05-29": "Whit Sunday", + "2050-05-30": "Whit Monday", + "2050-12-25": "Christmas Day", + "2050-12-26": "Second Day of Christmas" +} diff --git a/snapshots/countries/NO.json b/snapshots/countries/NO.json new file mode 100644 index 000000000..32ba3004f --- /dev/null +++ b/snapshots/countries/NO.json @@ -0,0 +1,1205 @@ +{ + "1950-01-01": "New Year's Day", + "1950-04-06": "Maundy Thursday", + "1950-04-07": "Good Friday", + "1950-04-09": "Easter Sunday", + "1950-04-10": "Easter Monday", + "1950-05-01": "Labor Day", + "1950-05-17": "Constitution Day", + "1950-05-18": "Ascension Day", + "1950-05-28": "Whit Sunday", + "1950-05-29": "Whit Monday", + "1950-12-25": "Christmas Day", + "1950-12-26": "Second Day of Christmas", + "1951-01-01": "New Year's Day", + "1951-03-22": "Maundy Thursday", + "1951-03-23": "Good Friday", + "1951-03-25": "Easter Sunday", + "1951-03-26": "Easter Monday", + "1951-05-01": "Labor Day", + "1951-05-03": "Ascension Day", + "1951-05-13": "Whit Sunday", + "1951-05-14": "Whit Monday", + "1951-05-17": "Constitution Day", + "1951-12-25": "Christmas Day", + "1951-12-26": "Second Day of Christmas", + "1952-01-01": "New Year's Day", + "1952-04-10": "Maundy Thursday", + "1952-04-11": "Good Friday", + "1952-04-13": "Easter Sunday", + "1952-04-14": "Easter Monday", + "1952-05-01": "Labor Day", + "1952-05-17": "Constitution Day", + "1952-05-22": "Ascension Day", + "1952-06-01": "Whit Sunday", + "1952-06-02": "Whit Monday", + "1952-12-25": "Christmas Day", + "1952-12-26": "Second Day of Christmas", + "1953-01-01": "New Year's Day", + "1953-04-02": "Maundy Thursday", + "1953-04-03": "Good Friday", + "1953-04-05": "Easter Sunday", + "1953-04-06": "Easter Monday", + "1953-05-01": "Labor Day", + "1953-05-14": "Ascension Day", + "1953-05-17": "Constitution Day", + "1953-05-24": "Whit Sunday", + "1953-05-25": "Whit Monday", + "1953-12-25": "Christmas Day", + "1953-12-26": "Second Day of Christmas", + "1954-01-01": "New Year's Day", + "1954-04-15": "Maundy Thursday", + "1954-04-16": "Good Friday", + "1954-04-18": "Easter Sunday", + "1954-04-19": "Easter Monday", + "1954-05-01": "Labor Day", + "1954-05-17": "Constitution Day", + "1954-05-27": "Ascension Day", + "1954-06-06": "Whit Sunday", + "1954-06-07": "Whit Monday", + "1954-12-25": "Christmas Day", + "1954-12-26": "Second Day of Christmas", + "1955-01-01": "New Year's Day", + "1955-04-07": "Maundy Thursday", + "1955-04-08": "Good Friday", + "1955-04-10": "Easter Sunday", + "1955-04-11": "Easter Monday", + "1955-05-01": "Labor Day", + "1955-05-17": "Constitution Day", + "1955-05-19": "Ascension Day", + "1955-05-29": "Whit Sunday", + "1955-05-30": "Whit Monday", + "1955-12-25": "Christmas Day", + "1955-12-26": "Second Day of Christmas", + "1956-01-01": "New Year's Day", + "1956-03-29": "Maundy Thursday", + "1956-03-30": "Good Friday", + "1956-04-01": "Easter Sunday", + "1956-04-02": "Easter Monday", + "1956-05-01": "Labor Day", + "1956-05-10": "Ascension Day", + "1956-05-17": "Constitution Day", + "1956-05-20": "Whit Sunday", + "1956-05-21": "Whit Monday", + "1956-12-25": "Christmas Day", + "1956-12-26": "Second Day of Christmas", + "1957-01-01": "New Year's Day", + "1957-04-18": "Maundy Thursday", + "1957-04-19": "Good Friday", + "1957-04-21": "Easter Sunday", + "1957-04-22": "Easter Monday", + "1957-05-01": "Labor Day", + "1957-05-17": "Constitution Day", + "1957-05-30": "Ascension Day", + "1957-06-09": "Whit Sunday", + "1957-06-10": "Whit Monday", + "1957-12-25": "Christmas Day", + "1957-12-26": "Second Day of Christmas", + "1958-01-01": "New Year's Day", + "1958-04-03": "Maundy Thursday", + "1958-04-04": "Good Friday", + "1958-04-06": "Easter Sunday", + "1958-04-07": "Easter Monday", + "1958-05-01": "Labor Day", + "1958-05-15": "Ascension Day", + "1958-05-17": "Constitution Day", + "1958-05-25": "Whit Sunday", + "1958-05-26": "Whit Monday", + "1958-12-25": "Christmas Day", + "1958-12-26": "Second Day of Christmas", + "1959-01-01": "New Year's Day", + "1959-03-26": "Maundy Thursday", + "1959-03-27": "Good Friday", + "1959-03-29": "Easter Sunday", + "1959-03-30": "Easter Monday", + "1959-05-01": "Labor Day", + "1959-05-07": "Ascension Day", + "1959-05-17": "Constitution Day; Whit Sunday", + "1959-05-18": "Whit Monday", + "1959-12-25": "Christmas Day", + "1959-12-26": "Second Day of Christmas", + "1960-01-01": "New Year's Day", + "1960-04-14": "Maundy Thursday", + "1960-04-15": "Good Friday", + "1960-04-17": "Easter Sunday", + "1960-04-18": "Easter Monday", + "1960-05-01": "Labor Day", + "1960-05-17": "Constitution Day", + "1960-05-26": "Ascension Day", + "1960-06-05": "Whit Sunday", + "1960-06-06": "Whit Monday", + "1960-12-25": "Christmas Day", + "1960-12-26": "Second Day of Christmas", + "1961-01-01": "New Year's Day", + "1961-03-30": "Maundy Thursday", + "1961-03-31": "Good Friday", + "1961-04-02": "Easter Sunday", + "1961-04-03": "Easter Monday", + "1961-05-01": "Labor Day", + "1961-05-11": "Ascension Day", + "1961-05-17": "Constitution Day", + "1961-05-21": "Whit Sunday", + "1961-05-22": "Whit Monday", + "1961-12-25": "Christmas Day", + "1961-12-26": "Second Day of Christmas", + "1962-01-01": "New Year's Day", + "1962-04-19": "Maundy Thursday", + "1962-04-20": "Good Friday", + "1962-04-22": "Easter Sunday", + "1962-04-23": "Easter Monday", + "1962-05-01": "Labor Day", + "1962-05-17": "Constitution Day", + "1962-05-31": "Ascension Day", + "1962-06-10": "Whit Sunday", + "1962-06-11": "Whit Monday", + "1962-12-25": "Christmas Day", + "1962-12-26": "Second Day of Christmas", + "1963-01-01": "New Year's Day", + "1963-04-11": "Maundy Thursday", + "1963-04-12": "Good Friday", + "1963-04-14": "Easter Sunday", + "1963-04-15": "Easter Monday", + "1963-05-01": "Labor Day", + "1963-05-17": "Constitution Day", + "1963-05-23": "Ascension Day", + "1963-06-02": "Whit Sunday", + "1963-06-03": "Whit Monday", + "1963-12-25": "Christmas Day", + "1963-12-26": "Second Day of Christmas", + "1964-01-01": "New Year's Day", + "1964-03-26": "Maundy Thursday", + "1964-03-27": "Good Friday", + "1964-03-29": "Easter Sunday", + "1964-03-30": "Easter Monday", + "1964-05-01": "Labor Day", + "1964-05-07": "Ascension Day", + "1964-05-17": "Constitution Day; Whit Sunday", + "1964-05-18": "Whit Monday", + "1964-12-25": "Christmas Day", + "1964-12-26": "Second Day of Christmas", + "1965-01-01": "New Year's Day", + "1965-04-15": "Maundy Thursday", + "1965-04-16": "Good Friday", + "1965-04-18": "Easter Sunday", + "1965-04-19": "Easter Monday", + "1965-05-01": "Labor Day", + "1965-05-17": "Constitution Day", + "1965-05-27": "Ascension Day", + "1965-06-06": "Whit Sunday", + "1965-06-07": "Whit Monday", + "1965-12-25": "Christmas Day", + "1965-12-26": "Second Day of Christmas", + "1966-01-01": "New Year's Day", + "1966-04-07": "Maundy Thursday", + "1966-04-08": "Good Friday", + "1966-04-10": "Easter Sunday", + "1966-04-11": "Easter Monday", + "1966-05-01": "Labor Day", + "1966-05-17": "Constitution Day", + "1966-05-19": "Ascension Day", + "1966-05-29": "Whit Sunday", + "1966-05-30": "Whit Monday", + "1966-12-25": "Christmas Day", + "1966-12-26": "Second Day of Christmas", + "1967-01-01": "New Year's Day", + "1967-03-23": "Maundy Thursday", + "1967-03-24": "Good Friday", + "1967-03-26": "Easter Sunday", + "1967-03-27": "Easter Monday", + "1967-05-01": "Labor Day", + "1967-05-04": "Ascension Day", + "1967-05-14": "Whit Sunday", + "1967-05-15": "Whit Monday", + "1967-05-17": "Constitution Day", + "1967-12-25": "Christmas Day", + "1967-12-26": "Second Day of Christmas", + "1968-01-01": "New Year's Day", + "1968-04-11": "Maundy Thursday", + "1968-04-12": "Good Friday", + "1968-04-14": "Easter Sunday", + "1968-04-15": "Easter Monday", + "1968-05-01": "Labor Day", + "1968-05-17": "Constitution Day", + "1968-05-23": "Ascension Day", + "1968-06-02": "Whit Sunday", + "1968-06-03": "Whit Monday", + "1968-12-25": "Christmas Day", + "1968-12-26": "Second Day of Christmas", + "1969-01-01": "New Year's Day", + "1969-04-03": "Maundy Thursday", + "1969-04-04": "Good Friday", + "1969-04-06": "Easter Sunday", + "1969-04-07": "Easter Monday", + "1969-05-01": "Labor Day", + "1969-05-15": "Ascension Day", + "1969-05-17": "Constitution Day", + "1969-05-25": "Whit Sunday", + "1969-05-26": "Whit Monday", + "1969-12-25": "Christmas Day", + "1969-12-26": "Second Day of Christmas", + "1970-01-01": "New Year's Day", + "1970-03-26": "Maundy Thursday", + "1970-03-27": "Good Friday", + "1970-03-29": "Easter Sunday", + "1970-03-30": "Easter Monday", + "1970-05-01": "Labor Day", + "1970-05-07": "Ascension Day", + "1970-05-17": "Constitution Day; Whit Sunday", + "1970-05-18": "Whit Monday", + "1970-12-25": "Christmas Day", + "1970-12-26": "Second Day of Christmas", + "1971-01-01": "New Year's Day", + "1971-04-08": "Maundy Thursday", + "1971-04-09": "Good Friday", + "1971-04-11": "Easter Sunday", + "1971-04-12": "Easter Monday", + "1971-05-01": "Labor Day", + "1971-05-17": "Constitution Day", + "1971-05-20": "Ascension Day", + "1971-05-30": "Whit Sunday", + "1971-05-31": "Whit Monday", + "1971-12-25": "Christmas Day", + "1971-12-26": "Second Day of Christmas", + "1972-01-01": "New Year's Day", + "1972-03-30": "Maundy Thursday", + "1972-03-31": "Good Friday", + "1972-04-02": "Easter Sunday", + "1972-04-03": "Easter Monday", + "1972-05-01": "Labor Day", + "1972-05-11": "Ascension Day", + "1972-05-17": "Constitution Day", + "1972-05-21": "Whit Sunday", + "1972-05-22": "Whit Monday", + "1972-12-25": "Christmas Day", + "1972-12-26": "Second Day of Christmas", + "1973-01-01": "New Year's Day", + "1973-04-19": "Maundy Thursday", + "1973-04-20": "Good Friday", + "1973-04-22": "Easter Sunday", + "1973-04-23": "Easter Monday", + "1973-05-01": "Labor Day", + "1973-05-17": "Constitution Day", + "1973-05-31": "Ascension Day", + "1973-06-10": "Whit Sunday", + "1973-06-11": "Whit Monday", + "1973-12-25": "Christmas Day", + "1973-12-26": "Second Day of Christmas", + "1974-01-01": "New Year's Day", + "1974-04-11": "Maundy Thursday", + "1974-04-12": "Good Friday", + "1974-04-14": "Easter Sunday", + "1974-04-15": "Easter Monday", + "1974-05-01": "Labor Day", + "1974-05-17": "Constitution Day", + "1974-05-23": "Ascension Day", + "1974-06-02": "Whit Sunday", + "1974-06-03": "Whit Monday", + "1974-12-25": "Christmas Day", + "1974-12-26": "Second Day of Christmas", + "1975-01-01": "New Year's Day", + "1975-03-27": "Maundy Thursday", + "1975-03-28": "Good Friday", + "1975-03-30": "Easter Sunday", + "1975-03-31": "Easter Monday", + "1975-05-01": "Labor Day", + "1975-05-08": "Ascension Day", + "1975-05-17": "Constitution Day", + "1975-05-18": "Whit Sunday", + "1975-05-19": "Whit Monday", + "1975-12-25": "Christmas Day", + "1975-12-26": "Second Day of Christmas", + "1976-01-01": "New Year's Day", + "1976-04-15": "Maundy Thursday", + "1976-04-16": "Good Friday", + "1976-04-18": "Easter Sunday", + "1976-04-19": "Easter Monday", + "1976-05-01": "Labor Day", + "1976-05-17": "Constitution Day", + "1976-05-27": "Ascension Day", + "1976-06-06": "Whit Sunday", + "1976-06-07": "Whit Monday", + "1976-12-25": "Christmas Day", + "1976-12-26": "Second Day of Christmas", + "1977-01-01": "New Year's Day", + "1977-04-07": "Maundy Thursday", + "1977-04-08": "Good Friday", + "1977-04-10": "Easter Sunday", + "1977-04-11": "Easter Monday", + "1977-05-01": "Labor Day", + "1977-05-17": "Constitution Day", + "1977-05-19": "Ascension Day", + "1977-05-29": "Whit Sunday", + "1977-05-30": "Whit Monday", + "1977-12-25": "Christmas Day", + "1977-12-26": "Second Day of Christmas", + "1978-01-01": "New Year's Day", + "1978-03-23": "Maundy Thursday", + "1978-03-24": "Good Friday", + "1978-03-26": "Easter Sunday", + "1978-03-27": "Easter Monday", + "1978-05-01": "Labor Day", + "1978-05-04": "Ascension Day", + "1978-05-14": "Whit Sunday", + "1978-05-15": "Whit Monday", + "1978-05-17": "Constitution Day", + "1978-12-25": "Christmas Day", + "1978-12-26": "Second Day of Christmas", + "1979-01-01": "New Year's Day", + "1979-04-12": "Maundy Thursday", + "1979-04-13": "Good Friday", + "1979-04-15": "Easter Sunday", + "1979-04-16": "Easter Monday", + "1979-05-01": "Labor Day", + "1979-05-17": "Constitution Day", + "1979-05-24": "Ascension Day", + "1979-06-03": "Whit Sunday", + "1979-06-04": "Whit Monday", + "1979-12-25": "Christmas Day", + "1979-12-26": "Second Day of Christmas", + "1980-01-01": "New Year's Day", + "1980-04-03": "Maundy Thursday", + "1980-04-04": "Good Friday", + "1980-04-06": "Easter Sunday", + "1980-04-07": "Easter Monday", + "1980-05-01": "Labor Day", + "1980-05-15": "Ascension Day", + "1980-05-17": "Constitution Day", + "1980-05-25": "Whit Sunday", + "1980-05-26": "Whit Monday", + "1980-12-25": "Christmas Day", + "1980-12-26": "Second Day of Christmas", + "1981-01-01": "New Year's Day", + "1981-04-16": "Maundy Thursday", + "1981-04-17": "Good Friday", + "1981-04-19": "Easter Sunday", + "1981-04-20": "Easter Monday", + "1981-05-01": "Labor Day", + "1981-05-17": "Constitution Day", + "1981-05-28": "Ascension Day", + "1981-06-07": "Whit Sunday", + "1981-06-08": "Whit Monday", + "1981-12-25": "Christmas Day", + "1981-12-26": "Second Day of Christmas", + "1982-01-01": "New Year's Day", + "1982-04-08": "Maundy Thursday", + "1982-04-09": "Good Friday", + "1982-04-11": "Easter Sunday", + "1982-04-12": "Easter Monday", + "1982-05-01": "Labor Day", + "1982-05-17": "Constitution Day", + "1982-05-20": "Ascension Day", + "1982-05-30": "Whit Sunday", + "1982-05-31": "Whit Monday", + "1982-12-25": "Christmas Day", + "1982-12-26": "Second Day of Christmas", + "1983-01-01": "New Year's Day", + "1983-03-31": "Maundy Thursday", + "1983-04-01": "Good Friday", + "1983-04-03": "Easter Sunday", + "1983-04-04": "Easter Monday", + "1983-05-01": "Labor Day", + "1983-05-12": "Ascension Day", + "1983-05-17": "Constitution Day", + "1983-05-22": "Whit Sunday", + "1983-05-23": "Whit Monday", + "1983-12-25": "Christmas Day", + "1983-12-26": "Second Day of Christmas", + "1984-01-01": "New Year's Day", + "1984-04-19": "Maundy Thursday", + "1984-04-20": "Good Friday", + "1984-04-22": "Easter Sunday", + "1984-04-23": "Easter Monday", + "1984-05-01": "Labor Day", + "1984-05-17": "Constitution Day", + "1984-05-31": "Ascension Day", + "1984-06-10": "Whit Sunday", + "1984-06-11": "Whit Monday", + "1984-12-25": "Christmas Day", + "1984-12-26": "Second Day of Christmas", + "1985-01-01": "New Year's Day", + "1985-04-04": "Maundy Thursday", + "1985-04-05": "Good Friday", + "1985-04-07": "Easter Sunday", + "1985-04-08": "Easter Monday", + "1985-05-01": "Labor Day", + "1985-05-16": "Ascension Day", + "1985-05-17": "Constitution Day", + "1985-05-26": "Whit Sunday", + "1985-05-27": "Whit Monday", + "1985-12-25": "Christmas Day", + "1985-12-26": "Second Day of Christmas", + "1986-01-01": "New Year's Day", + "1986-03-27": "Maundy Thursday", + "1986-03-28": "Good Friday", + "1986-03-30": "Easter Sunday", + "1986-03-31": "Easter Monday", + "1986-05-01": "Labor Day", + "1986-05-08": "Ascension Day", + "1986-05-17": "Constitution Day", + "1986-05-18": "Whit Sunday", + "1986-05-19": "Whit Monday", + "1986-12-25": "Christmas Day", + "1986-12-26": "Second Day of Christmas", + "1987-01-01": "New Year's Day", + "1987-04-16": "Maundy Thursday", + "1987-04-17": "Good Friday", + "1987-04-19": "Easter Sunday", + "1987-04-20": "Easter Monday", + "1987-05-01": "Labor Day", + "1987-05-17": "Constitution Day", + "1987-05-28": "Ascension Day", + "1987-06-07": "Whit Sunday", + "1987-06-08": "Whit Monday", + "1987-12-25": "Christmas Day", + "1987-12-26": "Second Day of Christmas", + "1988-01-01": "New Year's Day", + "1988-03-31": "Maundy Thursday", + "1988-04-01": "Good Friday", + "1988-04-03": "Easter Sunday", + "1988-04-04": "Easter Monday", + "1988-05-01": "Labor Day", + "1988-05-12": "Ascension Day", + "1988-05-17": "Constitution Day", + "1988-05-22": "Whit Sunday", + "1988-05-23": "Whit Monday", + "1988-12-25": "Christmas Day", + "1988-12-26": "Second Day of Christmas", + "1989-01-01": "New Year's Day", + "1989-03-23": "Maundy Thursday", + "1989-03-24": "Good Friday", + "1989-03-26": "Easter Sunday", + "1989-03-27": "Easter Monday", + "1989-05-01": "Labor Day", + "1989-05-04": "Ascension Day", + "1989-05-14": "Whit Sunday", + "1989-05-15": "Whit Monday", + "1989-05-17": "Constitution Day", + "1989-12-25": "Christmas Day", + "1989-12-26": "Second Day of Christmas", + "1990-01-01": "New Year's Day", + "1990-04-12": "Maundy Thursday", + "1990-04-13": "Good Friday", + "1990-04-15": "Easter Sunday", + "1990-04-16": "Easter Monday", + "1990-05-01": "Labor Day", + "1990-05-17": "Constitution Day", + "1990-05-24": "Ascension Day", + "1990-06-03": "Whit Sunday", + "1990-06-04": "Whit Monday", + "1990-12-25": "Christmas Day", + "1990-12-26": "Second Day of Christmas", + "1991-01-01": "New Year's Day", + "1991-03-28": "Maundy Thursday", + "1991-03-29": "Good Friday", + "1991-03-31": "Easter Sunday", + "1991-04-01": "Easter Monday", + "1991-05-01": "Labor Day", + "1991-05-09": "Ascension Day", + "1991-05-17": "Constitution Day", + "1991-05-19": "Whit Sunday", + "1991-05-20": "Whit Monday", + "1991-12-25": "Christmas Day", + "1991-12-26": "Second Day of Christmas", + "1992-01-01": "New Year's Day", + "1992-04-16": "Maundy Thursday", + "1992-04-17": "Good Friday", + "1992-04-19": "Easter Sunday", + "1992-04-20": "Easter Monday", + "1992-05-01": "Labor Day", + "1992-05-17": "Constitution Day", + "1992-05-28": "Ascension Day", + "1992-06-07": "Whit Sunday", + "1992-06-08": "Whit Monday", + "1992-12-25": "Christmas Day", + "1992-12-26": "Second Day of Christmas", + "1993-01-01": "New Year's Day", + "1993-04-08": "Maundy Thursday", + "1993-04-09": "Good Friday", + "1993-04-11": "Easter Sunday", + "1993-04-12": "Easter Monday", + "1993-05-01": "Labor Day", + "1993-05-17": "Constitution Day", + "1993-05-20": "Ascension Day", + "1993-05-30": "Whit Sunday", + "1993-05-31": "Whit Monday", + "1993-12-25": "Christmas Day", + "1993-12-26": "Second Day of Christmas", + "1994-01-01": "New Year's Day", + "1994-03-31": "Maundy Thursday", + "1994-04-01": "Good Friday", + "1994-04-03": "Easter Sunday", + "1994-04-04": "Easter Monday", + "1994-05-01": "Labor Day", + "1994-05-12": "Ascension Day", + "1994-05-17": "Constitution Day", + "1994-05-22": "Whit Sunday", + "1994-05-23": "Whit Monday", + "1994-12-25": "Christmas Day", + "1994-12-26": "Second Day of Christmas", + "1995-01-01": "New Year's Day", + "1995-04-13": "Maundy Thursday", + "1995-04-14": "Good Friday", + "1995-04-16": "Easter Sunday", + "1995-04-17": "Easter Monday", + "1995-05-01": "Labor Day", + "1995-05-17": "Constitution Day", + "1995-05-25": "Ascension Day", + "1995-06-04": "Whit Sunday", + "1995-06-05": "Whit Monday", + "1995-12-25": "Christmas Day", + "1995-12-26": "Second Day of Christmas", + "1996-01-01": "New Year's Day", + "1996-04-04": "Maundy Thursday", + "1996-04-05": "Good Friday", + "1996-04-07": "Easter Sunday", + "1996-04-08": "Easter Monday", + "1996-05-01": "Labor Day", + "1996-05-16": "Ascension Day", + "1996-05-17": "Constitution Day", + "1996-05-26": "Whit Sunday", + "1996-05-27": "Whit Monday", + "1996-12-25": "Christmas Day", + "1996-12-26": "Second Day of Christmas", + "1997-01-01": "New Year's Day", + "1997-03-27": "Maundy Thursday", + "1997-03-28": "Good Friday", + "1997-03-30": "Easter Sunday", + "1997-03-31": "Easter Monday", + "1997-05-01": "Labor Day", + "1997-05-08": "Ascension Day", + "1997-05-17": "Constitution Day", + "1997-05-18": "Whit Sunday", + "1997-05-19": "Whit Monday", + "1997-12-25": "Christmas Day", + "1997-12-26": "Second Day of Christmas", + "1998-01-01": "New Year's Day", + "1998-04-09": "Maundy Thursday", + "1998-04-10": "Good Friday", + "1998-04-12": "Easter Sunday", + "1998-04-13": "Easter Monday", + "1998-05-01": "Labor Day", + "1998-05-17": "Constitution Day", + "1998-05-21": "Ascension Day", + "1998-05-31": "Whit Sunday", + "1998-06-01": "Whit Monday", + "1998-12-25": "Christmas Day", + "1998-12-26": "Second Day of Christmas", + "1999-01-01": "New Year's Day", + "1999-04-01": "Maundy Thursday", + "1999-04-02": "Good Friday", + "1999-04-04": "Easter Sunday", + "1999-04-05": "Easter Monday", + "1999-05-01": "Labor Day", + "1999-05-13": "Ascension Day", + "1999-05-17": "Constitution Day", + "1999-05-23": "Whit Sunday", + "1999-05-24": "Whit Monday", + "1999-12-25": "Christmas Day", + "1999-12-26": "Second Day of Christmas", + "2000-01-01": "New Year's Day", + "2000-04-20": "Maundy Thursday", + "2000-04-21": "Good Friday", + "2000-04-23": "Easter Sunday", + "2000-04-24": "Easter Monday", + "2000-05-01": "Labor Day", + "2000-05-17": "Constitution Day", + "2000-06-01": "Ascension Day", + "2000-06-11": "Whit Sunday", + "2000-06-12": "Whit Monday", + "2000-12-25": "Christmas Day", + "2000-12-26": "Second Day of Christmas", + "2001-01-01": "New Year's Day", + "2001-04-12": "Maundy Thursday", + "2001-04-13": "Good Friday", + "2001-04-15": "Easter Sunday", + "2001-04-16": "Easter Monday", + "2001-05-01": "Labor Day", + "2001-05-17": "Constitution Day", + "2001-05-24": "Ascension Day", + "2001-06-03": "Whit Sunday", + "2001-06-04": "Whit Monday", + "2001-12-25": "Christmas Day", + "2001-12-26": "Second Day of Christmas", + "2002-01-01": "New Year's Day", + "2002-03-28": "Maundy Thursday", + "2002-03-29": "Good Friday", + "2002-03-31": "Easter Sunday", + "2002-04-01": "Easter Monday", + "2002-05-01": "Labor Day", + "2002-05-09": "Ascension Day", + "2002-05-17": "Constitution Day", + "2002-05-19": "Whit Sunday", + "2002-05-20": "Whit Monday", + "2002-12-25": "Christmas Day", + "2002-12-26": "Second Day of Christmas", + "2003-01-01": "New Year's Day", + "2003-04-17": "Maundy Thursday", + "2003-04-18": "Good Friday", + "2003-04-20": "Easter Sunday", + "2003-04-21": "Easter Monday", + "2003-05-01": "Labor Day", + "2003-05-17": "Constitution Day", + "2003-05-29": "Ascension Day", + "2003-06-08": "Whit Sunday", + "2003-06-09": "Whit Monday", + "2003-12-25": "Christmas Day", + "2003-12-26": "Second Day of Christmas", + "2004-01-01": "New Year's Day", + "2004-04-08": "Maundy Thursday", + "2004-04-09": "Good Friday", + "2004-04-11": "Easter Sunday", + "2004-04-12": "Easter Monday", + "2004-05-01": "Labor Day", + "2004-05-17": "Constitution Day", + "2004-05-20": "Ascension Day", + "2004-05-30": "Whit Sunday", + "2004-05-31": "Whit Monday", + "2004-12-25": "Christmas Day", + "2004-12-26": "Second Day of Christmas", + "2005-01-01": "New Year's Day", + "2005-03-24": "Maundy Thursday", + "2005-03-25": "Good Friday", + "2005-03-27": "Easter Sunday", + "2005-03-28": "Easter Monday", + "2005-05-01": "Labor Day", + "2005-05-05": "Ascension Day", + "2005-05-15": "Whit Sunday", + "2005-05-16": "Whit Monday", + "2005-05-17": "Constitution Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "Second Day of Christmas", + "2006-01-01": "New Year's Day", + "2006-04-13": "Maundy Thursday", + "2006-04-14": "Good Friday", + "2006-04-16": "Easter Sunday", + "2006-04-17": "Easter Monday", + "2006-05-01": "Labor Day", + "2006-05-17": "Constitution Day", + "2006-05-25": "Ascension Day", + "2006-06-04": "Whit Sunday", + "2006-06-05": "Whit Monday", + "2006-12-25": "Christmas Day", + "2006-12-26": "Second Day of Christmas", + "2007-01-01": "New Year's Day", + "2007-04-05": "Maundy Thursday", + "2007-04-06": "Good Friday", + "2007-04-08": "Easter Sunday", + "2007-04-09": "Easter Monday", + "2007-05-01": "Labor Day", + "2007-05-17": "Ascension Day; Constitution Day", + "2007-05-27": "Whit Sunday", + "2007-05-28": "Whit Monday", + "2007-12-25": "Christmas Day", + "2007-12-26": "Second Day of Christmas", + "2008-01-01": "New Year's Day", + "2008-03-20": "Maundy Thursday", + "2008-03-21": "Good Friday", + "2008-03-23": "Easter Sunday", + "2008-03-24": "Easter Monday", + "2008-05-01": "Ascension Day; Labor Day", + "2008-05-11": "Whit Sunday", + "2008-05-12": "Whit Monday", + "2008-05-17": "Constitution Day", + "2008-12-25": "Christmas Day", + "2008-12-26": "Second Day of Christmas", + "2009-01-01": "New Year's Day", + "2009-04-09": "Maundy Thursday", + "2009-04-10": "Good Friday", + "2009-04-12": "Easter Sunday", + "2009-04-13": "Easter Monday", + "2009-05-01": "Labor Day", + "2009-05-17": "Constitution Day", + "2009-05-21": "Ascension Day", + "2009-05-31": "Whit Sunday", + "2009-06-01": "Whit Monday", + "2009-12-25": "Christmas Day", + "2009-12-26": "Second Day of Christmas", + "2010-01-01": "New Year's Day", + "2010-04-01": "Maundy Thursday", + "2010-04-02": "Good Friday", + "2010-04-04": "Easter Sunday", + "2010-04-05": "Easter Monday", + "2010-05-01": "Labor Day", + "2010-05-13": "Ascension Day", + "2010-05-17": "Constitution Day", + "2010-05-23": "Whit Sunday", + "2010-05-24": "Whit Monday", + "2010-12-25": "Christmas Day", + "2010-12-26": "Second Day of Christmas", + "2011-01-01": "New Year's Day", + "2011-04-21": "Maundy Thursday", + "2011-04-22": "Good Friday", + "2011-04-24": "Easter Sunday", + "2011-04-25": "Easter Monday", + "2011-05-01": "Labor Day", + "2011-05-17": "Constitution Day", + "2011-06-02": "Ascension Day", + "2011-06-12": "Whit Sunday", + "2011-06-13": "Whit Monday", + "2011-12-25": "Christmas Day", + "2011-12-26": "Second Day of Christmas", + "2012-01-01": "New Year's Day", + "2012-04-05": "Maundy Thursday", + "2012-04-06": "Good Friday", + "2012-04-08": "Easter Sunday", + "2012-04-09": "Easter Monday", + "2012-05-01": "Labor Day", + "2012-05-17": "Ascension Day; Constitution Day", + "2012-05-27": "Whit Sunday", + "2012-05-28": "Whit Monday", + "2012-12-25": "Christmas Day", + "2012-12-26": "Second Day of Christmas", + "2013-01-01": "New Year's Day", + "2013-03-28": "Maundy Thursday", + "2013-03-29": "Good Friday", + "2013-03-31": "Easter Sunday", + "2013-04-01": "Easter Monday", + "2013-05-01": "Labor Day", + "2013-05-09": "Ascension Day", + "2013-05-17": "Constitution Day", + "2013-05-19": "Whit Sunday", + "2013-05-20": "Whit Monday", + "2013-12-25": "Christmas Day", + "2013-12-26": "Second Day of Christmas", + "2014-01-01": "New Year's Day", + "2014-04-17": "Maundy Thursday", + "2014-04-18": "Good Friday", + "2014-04-20": "Easter Sunday", + "2014-04-21": "Easter Monday", + "2014-05-01": "Labor Day", + "2014-05-17": "Constitution Day", + "2014-05-29": "Ascension Day", + "2014-06-08": "Whit Sunday", + "2014-06-09": "Whit Monday", + "2014-12-25": "Christmas Day", + "2014-12-26": "Second Day of Christmas", + "2015-01-01": "New Year's Day", + "2015-04-02": "Maundy Thursday", + "2015-04-03": "Good Friday", + "2015-04-05": "Easter Sunday", + "2015-04-06": "Easter Monday", + "2015-05-01": "Labor Day", + "2015-05-14": "Ascension Day", + "2015-05-17": "Constitution Day", + "2015-05-24": "Whit Sunday", + "2015-05-25": "Whit Monday", + "2015-12-25": "Christmas Day", + "2015-12-26": "Second Day of Christmas", + "2016-01-01": "New Year's Day", + "2016-03-24": "Maundy Thursday", + "2016-03-25": "Good Friday", + "2016-03-27": "Easter Sunday", + "2016-03-28": "Easter Monday", + "2016-05-01": "Labor Day", + "2016-05-05": "Ascension Day", + "2016-05-15": "Whit Sunday", + "2016-05-16": "Whit Monday", + "2016-05-17": "Constitution Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "Second Day of Christmas", + "2017-01-01": "New Year's Day", + "2017-04-13": "Maundy Thursday", + "2017-04-14": "Good Friday", + "2017-04-16": "Easter Sunday", + "2017-04-17": "Easter Monday", + "2017-05-01": "Labor Day", + "2017-05-17": "Constitution Day", + "2017-05-25": "Ascension Day", + "2017-06-04": "Whit Sunday", + "2017-06-05": "Whit Monday", + "2017-12-25": "Christmas Day", + "2017-12-26": "Second Day of Christmas", + "2018-01-01": "New Year's Day", + "2018-03-29": "Maundy Thursday", + "2018-03-30": "Good Friday", + "2018-04-01": "Easter Sunday", + "2018-04-02": "Easter Monday", + "2018-05-01": "Labor Day", + "2018-05-10": "Ascension Day", + "2018-05-17": "Constitution Day", + "2018-05-20": "Whit Sunday", + "2018-05-21": "Whit Monday", + "2018-12-25": "Christmas Day", + "2018-12-26": "Second Day of Christmas", + "2019-01-01": "New Year's Day", + "2019-04-18": "Maundy Thursday", + "2019-04-19": "Good Friday", + "2019-04-21": "Easter Sunday", + "2019-04-22": "Easter Monday", + "2019-05-01": "Labor Day", + "2019-05-17": "Constitution Day", + "2019-05-30": "Ascension Day", + "2019-06-09": "Whit Sunday", + "2019-06-10": "Whit Monday", + "2019-12-25": "Christmas Day", + "2019-12-26": "Second Day of Christmas", + "2020-01-01": "New Year's Day", + "2020-04-09": "Maundy Thursday", + "2020-04-10": "Good Friday", + "2020-04-12": "Easter Sunday", + "2020-04-13": "Easter Monday", + "2020-05-01": "Labor Day", + "2020-05-17": "Constitution Day", + "2020-05-21": "Ascension Day", + "2020-05-31": "Whit Sunday", + "2020-06-01": "Whit Monday", + "2020-12-25": "Christmas Day", + "2020-12-26": "Second Day of Christmas", + "2021-01-01": "New Year's Day", + "2021-04-01": "Maundy Thursday", + "2021-04-02": "Good Friday", + "2021-04-04": "Easter Sunday", + "2021-04-05": "Easter Monday", + "2021-05-01": "Labor Day", + "2021-05-13": "Ascension Day", + "2021-05-17": "Constitution Day", + "2021-05-23": "Whit Sunday", + "2021-05-24": "Whit Monday", + "2021-12-25": "Christmas Day", + "2021-12-26": "Second Day of Christmas", + "2022-01-01": "New Year's Day", + "2022-04-14": "Maundy Thursday", + "2022-04-15": "Good Friday", + "2022-04-17": "Easter Sunday", + "2022-04-18": "Easter Monday", + "2022-05-01": "Labor Day", + "2022-05-17": "Constitution Day", + "2022-05-26": "Ascension Day", + "2022-06-05": "Whit Sunday", + "2022-06-06": "Whit Monday", + "2022-12-25": "Christmas Day", + "2022-12-26": "Second Day of Christmas", + "2023-01-01": "New Year's Day", + "2023-04-06": "Maundy Thursday", + "2023-04-07": "Good Friday", + "2023-04-09": "Easter Sunday", + "2023-04-10": "Easter Monday", + "2023-05-01": "Labor Day", + "2023-05-17": "Constitution Day", + "2023-05-18": "Ascension Day", + "2023-05-28": "Whit Sunday", + "2023-05-29": "Whit Monday", + "2023-12-25": "Christmas Day", + "2023-12-26": "Second Day of Christmas", + "2024-01-01": "New Year's Day", + "2024-03-28": "Maundy Thursday", + "2024-03-29": "Good Friday", + "2024-03-31": "Easter Sunday", + "2024-04-01": "Easter Monday", + "2024-05-01": "Labor Day", + "2024-05-09": "Ascension Day", + "2024-05-17": "Constitution Day", + "2024-05-19": "Whit Sunday", + "2024-05-20": "Whit Monday", + "2024-12-25": "Christmas Day", + "2024-12-26": "Second Day of Christmas", + "2025-01-01": "New Year's Day", + "2025-04-17": "Maundy Thursday", + "2025-04-18": "Good Friday", + "2025-04-20": "Easter Sunday", + "2025-04-21": "Easter Monday", + "2025-05-01": "Labor Day", + "2025-05-17": "Constitution Day", + "2025-05-29": "Ascension Day", + "2025-06-08": "Whit Sunday", + "2025-06-09": "Whit Monday", + "2025-12-25": "Christmas Day", + "2025-12-26": "Second Day of Christmas", + "2026-01-01": "New Year's Day", + "2026-04-02": "Maundy Thursday", + "2026-04-03": "Good Friday", + "2026-04-05": "Easter Sunday", + "2026-04-06": "Easter Monday", + "2026-05-01": "Labor Day", + "2026-05-14": "Ascension Day", + "2026-05-17": "Constitution Day", + "2026-05-24": "Whit Sunday", + "2026-05-25": "Whit Monday", + "2026-12-25": "Christmas Day", + "2026-12-26": "Second Day of Christmas", + "2027-01-01": "New Year's Day", + "2027-03-25": "Maundy Thursday", + "2027-03-26": "Good Friday", + "2027-03-28": "Easter Sunday", + "2027-03-29": "Easter Monday", + "2027-05-01": "Labor Day", + "2027-05-06": "Ascension Day", + "2027-05-16": "Whit Sunday", + "2027-05-17": "Constitution Day; Whit Monday", + "2027-12-25": "Christmas Day", + "2027-12-26": "Second Day of Christmas", + "2028-01-01": "New Year's Day", + "2028-04-13": "Maundy Thursday", + "2028-04-14": "Good Friday", + "2028-04-16": "Easter Sunday", + "2028-04-17": "Easter Monday", + "2028-05-01": "Labor Day", + "2028-05-17": "Constitution Day", + "2028-05-25": "Ascension Day", + "2028-06-04": "Whit Sunday", + "2028-06-05": "Whit Monday", + "2028-12-25": "Christmas Day", + "2028-12-26": "Second Day of Christmas", + "2029-01-01": "New Year's Day", + "2029-03-29": "Maundy Thursday", + "2029-03-30": "Good Friday", + "2029-04-01": "Easter Sunday", + "2029-04-02": "Easter Monday", + "2029-05-01": "Labor Day", + "2029-05-10": "Ascension Day", + "2029-05-17": "Constitution Day", + "2029-05-20": "Whit Sunday", + "2029-05-21": "Whit Monday", + "2029-12-25": "Christmas Day", + "2029-12-26": "Second Day of Christmas", + "2030-01-01": "New Year's Day", + "2030-04-18": "Maundy Thursday", + "2030-04-19": "Good Friday", + "2030-04-21": "Easter Sunday", + "2030-04-22": "Easter Monday", + "2030-05-01": "Labor Day", + "2030-05-17": "Constitution Day", + "2030-05-30": "Ascension Day", + "2030-06-09": "Whit Sunday", + "2030-06-10": "Whit Monday", + "2030-12-25": "Christmas Day", + "2030-12-26": "Second Day of Christmas", + "2031-01-01": "New Year's Day", + "2031-04-10": "Maundy Thursday", + "2031-04-11": "Good Friday", + "2031-04-13": "Easter Sunday", + "2031-04-14": "Easter Monday", + "2031-05-01": "Labor Day", + "2031-05-17": "Constitution Day", + "2031-05-22": "Ascension Day", + "2031-06-01": "Whit Sunday", + "2031-06-02": "Whit Monday", + "2031-12-25": "Christmas Day", + "2031-12-26": "Second Day of Christmas", + "2032-01-01": "New Year's Day", + "2032-03-25": "Maundy Thursday", + "2032-03-26": "Good Friday", + "2032-03-28": "Easter Sunday", + "2032-03-29": "Easter Monday", + "2032-05-01": "Labor Day", + "2032-05-06": "Ascension Day", + "2032-05-16": "Whit Sunday", + "2032-05-17": "Constitution Day; Whit Monday", + "2032-12-25": "Christmas Day", + "2032-12-26": "Second Day of Christmas", + "2033-01-01": "New Year's Day", + "2033-04-14": "Maundy Thursday", + "2033-04-15": "Good Friday", + "2033-04-17": "Easter Sunday", + "2033-04-18": "Easter Monday", + "2033-05-01": "Labor Day", + "2033-05-17": "Constitution Day", + "2033-05-26": "Ascension Day", + "2033-06-05": "Whit Sunday", + "2033-06-06": "Whit Monday", + "2033-12-25": "Christmas Day", + "2033-12-26": "Second Day of Christmas", + "2034-01-01": "New Year's Day", + "2034-04-06": "Maundy Thursday", + "2034-04-07": "Good Friday", + "2034-04-09": "Easter Sunday", + "2034-04-10": "Easter Monday", + "2034-05-01": "Labor Day", + "2034-05-17": "Constitution Day", + "2034-05-18": "Ascension Day", + "2034-05-28": "Whit Sunday", + "2034-05-29": "Whit Monday", + "2034-12-25": "Christmas Day", + "2034-12-26": "Second Day of Christmas", + "2035-01-01": "New Year's Day", + "2035-03-22": "Maundy Thursday", + "2035-03-23": "Good Friday", + "2035-03-25": "Easter Sunday", + "2035-03-26": "Easter Monday", + "2035-05-01": "Labor Day", + "2035-05-03": "Ascension Day", + "2035-05-13": "Whit Sunday", + "2035-05-14": "Whit Monday", + "2035-05-17": "Constitution Day", + "2035-12-25": "Christmas Day", + "2035-12-26": "Second Day of Christmas", + "2036-01-01": "New Year's Day", + "2036-04-10": "Maundy Thursday", + "2036-04-11": "Good Friday", + "2036-04-13": "Easter Sunday", + "2036-04-14": "Easter Monday", + "2036-05-01": "Labor Day", + "2036-05-17": "Constitution Day", + "2036-05-22": "Ascension Day", + "2036-06-01": "Whit Sunday", + "2036-06-02": "Whit Monday", + "2036-12-25": "Christmas Day", + "2036-12-26": "Second Day of Christmas", + "2037-01-01": "New Year's Day", + "2037-04-02": "Maundy Thursday", + "2037-04-03": "Good Friday", + "2037-04-05": "Easter Sunday", + "2037-04-06": "Easter Monday", + "2037-05-01": "Labor Day", + "2037-05-14": "Ascension Day", + "2037-05-17": "Constitution Day", + "2037-05-24": "Whit Sunday", + "2037-05-25": "Whit Monday", + "2037-12-25": "Christmas Day", + "2037-12-26": "Second Day of Christmas", + "2038-01-01": "New Year's Day", + "2038-04-22": "Maundy Thursday", + "2038-04-23": "Good Friday", + "2038-04-25": "Easter Sunday", + "2038-04-26": "Easter Monday", + "2038-05-01": "Labor Day", + "2038-05-17": "Constitution Day", + "2038-06-03": "Ascension Day", + "2038-06-13": "Whit Sunday", + "2038-06-14": "Whit Monday", + "2038-12-25": "Christmas Day", + "2038-12-26": "Second Day of Christmas", + "2039-01-01": "New Year's Day", + "2039-04-07": "Maundy Thursday", + "2039-04-08": "Good Friday", + "2039-04-10": "Easter Sunday", + "2039-04-11": "Easter Monday", + "2039-05-01": "Labor Day", + "2039-05-17": "Constitution Day", + "2039-05-19": "Ascension Day", + "2039-05-29": "Whit Sunday", + "2039-05-30": "Whit Monday", + "2039-12-25": "Christmas Day", + "2039-12-26": "Second Day of Christmas", + "2040-01-01": "New Year's Day", + "2040-03-29": "Maundy Thursday", + "2040-03-30": "Good Friday", + "2040-04-01": "Easter Sunday", + "2040-04-02": "Easter Monday", + "2040-05-01": "Labor Day", + "2040-05-10": "Ascension Day", + "2040-05-17": "Constitution Day", + "2040-05-20": "Whit Sunday", + "2040-05-21": "Whit Monday", + "2040-12-25": "Christmas Day", + "2040-12-26": "Second Day of Christmas", + "2041-01-01": "New Year's Day", + "2041-04-18": "Maundy Thursday", + "2041-04-19": "Good Friday", + "2041-04-21": "Easter Sunday", + "2041-04-22": "Easter Monday", + "2041-05-01": "Labor Day", + "2041-05-17": "Constitution Day", + "2041-05-30": "Ascension Day", + "2041-06-09": "Whit Sunday", + "2041-06-10": "Whit Monday", + "2041-12-25": "Christmas Day", + "2041-12-26": "Second Day of Christmas", + "2042-01-01": "New Year's Day", + "2042-04-03": "Maundy Thursday", + "2042-04-04": "Good Friday", + "2042-04-06": "Easter Sunday", + "2042-04-07": "Easter Monday", + "2042-05-01": "Labor Day", + "2042-05-15": "Ascension Day", + "2042-05-17": "Constitution Day", + "2042-05-25": "Whit Sunday", + "2042-05-26": "Whit Monday", + "2042-12-25": "Christmas Day", + "2042-12-26": "Second Day of Christmas", + "2043-01-01": "New Year's Day", + "2043-03-26": "Maundy Thursday", + "2043-03-27": "Good Friday", + "2043-03-29": "Easter Sunday", + "2043-03-30": "Easter Monday", + "2043-05-01": "Labor Day", + "2043-05-07": "Ascension Day", + "2043-05-17": "Constitution Day; Whit Sunday", + "2043-05-18": "Whit Monday", + "2043-12-25": "Christmas Day", + "2043-12-26": "Second Day of Christmas", + "2044-01-01": "New Year's Day", + "2044-04-14": "Maundy Thursday", + "2044-04-15": "Good Friday", + "2044-04-17": "Easter Sunday", + "2044-04-18": "Easter Monday", + "2044-05-01": "Labor Day", + "2044-05-17": "Constitution Day", + "2044-05-26": "Ascension Day", + "2044-06-05": "Whit Sunday", + "2044-06-06": "Whit Monday", + "2044-12-25": "Christmas Day", + "2044-12-26": "Second Day of Christmas", + "2045-01-01": "New Year's Day", + "2045-04-06": "Maundy Thursday", + "2045-04-07": "Good Friday", + "2045-04-09": "Easter Sunday", + "2045-04-10": "Easter Monday", + "2045-05-01": "Labor Day", + "2045-05-17": "Constitution Day", + "2045-05-18": "Ascension Day", + "2045-05-28": "Whit Sunday", + "2045-05-29": "Whit Monday", + "2045-12-25": "Christmas Day", + "2045-12-26": "Second Day of Christmas", + "2046-01-01": "New Year's Day", + "2046-03-22": "Maundy Thursday", + "2046-03-23": "Good Friday", + "2046-03-25": "Easter Sunday", + "2046-03-26": "Easter Monday", + "2046-05-01": "Labor Day", + "2046-05-03": "Ascension Day", + "2046-05-13": "Whit Sunday", + "2046-05-14": "Whit Monday", + "2046-05-17": "Constitution Day", + "2046-12-25": "Christmas Day", + "2046-12-26": "Second Day of Christmas", + "2047-01-01": "New Year's Day", + "2047-04-11": "Maundy Thursday", + "2047-04-12": "Good Friday", + "2047-04-14": "Easter Sunday", + "2047-04-15": "Easter Monday", + "2047-05-01": "Labor Day", + "2047-05-17": "Constitution Day", + "2047-05-23": "Ascension Day", + "2047-06-02": "Whit Sunday", + "2047-06-03": "Whit Monday", + "2047-12-25": "Christmas Day", + "2047-12-26": "Second Day of Christmas", + "2048-01-01": "New Year's Day", + "2048-04-02": "Maundy Thursday", + "2048-04-03": "Good Friday", + "2048-04-05": "Easter Sunday", + "2048-04-06": "Easter Monday", + "2048-05-01": "Labor Day", + "2048-05-14": "Ascension Day", + "2048-05-17": "Constitution Day", + "2048-05-24": "Whit Sunday", + "2048-05-25": "Whit Monday", + "2048-12-25": "Christmas Day", + "2048-12-26": "Second Day of Christmas", + "2049-01-01": "New Year's Day", + "2049-04-15": "Maundy Thursday", + "2049-04-16": "Good Friday", + "2049-04-18": "Easter Sunday", + "2049-04-19": "Easter Monday", + "2049-05-01": "Labor Day", + "2049-05-17": "Constitution Day", + "2049-05-27": "Ascension Day", + "2049-06-06": "Whit Sunday", + "2049-06-07": "Whit Monday", + "2049-12-25": "Christmas Day", + "2049-12-26": "Second Day of Christmas", + "2050-01-01": "New Year's Day", + "2050-04-07": "Maundy Thursday", + "2050-04-08": "Good Friday", + "2050-04-10": "Easter Sunday", + "2050-04-11": "Easter Monday", + "2050-05-01": "Labor Day", + "2050-05-17": "Constitution Day", + "2050-05-19": "Ascension Day", + "2050-05-29": "Whit Sunday", + "2050-05-30": "Whit Monday", + "2050-12-25": "Christmas Day", + "2050-12-26": "Second Day of Christmas" +} diff --git a/snapshots/countries/NZ.json b/snapshots/countries/NZ.json new file mode 100644 index 000000000..b29f46dec --- /dev/null +++ b/snapshots/countries/NZ.json @@ -0,0 +1,2110 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-02": "Day after New Year's Day", + "1950-01-03": "New Year's Day (Observed)", + "1950-01-16": "Southland Anniversary Day", + "1950-01-23": "Wellington Anniversary Day", + "1950-01-30": "Auckland Anniversary Day; Nelson Anniversary Day", + "1950-03-13": "Taranaki Anniversary Day", + "1950-03-20": "Otago Anniversary Day", + "1950-04-07": "Good Friday", + "1950-04-10": "Easter Monday", + "1950-04-25": "Anzac Day", + "1950-06-05": "King's Birthday", + "1950-10-20": "Hawke's Bay Anniversary Day", + "1950-10-23": "Labour Day", + "1950-10-30": "Marlborough Anniversary Day", + "1950-11-17": "Canterbury Anniversary Day", + "1950-11-27": "Chatham Islands Anniversary Day", + "1950-12-04": "West Coast Anniversary Day", + "1950-12-25": "Christmas Day", + "1950-12-26": "Boxing Day", + "1951-01-01": "New Year's Day", + "1951-01-02": "Day after New Year's Day", + "1951-01-15": "Southland Anniversary Day", + "1951-01-22": "Wellington Anniversary Day", + "1951-01-29": "Auckland Anniversary Day; Nelson Anniversary Day", + "1951-03-12": "Taranaki Anniversary Day", + "1951-03-23": "Good Friday", + "1951-03-26": "Easter Monday", + "1951-03-27": "Otago Anniversary Day", + "1951-04-25": "Anzac Day", + "1951-06-04": "King's Birthday", + "1951-10-19": "Hawke's Bay Anniversary Day", + "1951-10-22": "Labour Day", + "1951-10-29": "Marlborough Anniversary Day", + "1951-11-16": "Canterbury Anniversary Day", + "1951-12-03": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1951-12-25": "Christmas Day", + "1951-12-26": "Boxing Day", + "1952-01-01": "New Year's Day", + "1952-01-02": "Day after New Year's Day", + "1952-01-14": "Southland Anniversary Day", + "1952-01-21": "Wellington Anniversary Day", + "1952-01-28": "Auckland Anniversary Day", + "1952-02-04": "Nelson Anniversary Day", + "1952-03-10": "Taranaki Anniversary Day", + "1952-03-24": "Otago Anniversary Day", + "1952-04-11": "Good Friday", + "1952-04-14": "Easter Monday", + "1952-04-25": "Anzac Day", + "1952-06-02": "Queen's Birthday", + "1952-10-24": "Hawke's Bay Anniversary Day", + "1952-10-27": "Labour Day", + "1952-11-03": "Marlborough Anniversary Day", + "1952-11-14": "Canterbury Anniversary Day", + "1952-12-01": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1952-12-25": "Christmas Day", + "1952-12-26": "Boxing Day", + "1953-01-01": "New Year's Day", + "1953-01-02": "Day after New Year's Day", + "1953-01-19": "Southland Anniversary Day; Wellington Anniversary Day", + "1953-01-26": "Auckland Anniversary Day", + "1953-02-02": "Nelson Anniversary Day", + "1953-03-09": "Taranaki Anniversary Day", + "1953-03-23": "Otago Anniversary Day", + "1953-04-03": "Good Friday", + "1953-04-06": "Easter Monday", + "1953-04-25": "Anzac Day", + "1953-06-01": "Queen's Birthday", + "1953-10-23": "Hawke's Bay Anniversary Day", + "1953-10-26": "Labour Day", + "1953-11-02": "Marlborough Anniversary Day", + "1953-11-13": "Canterbury Anniversary Day", + "1953-11-30": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1953-12-25": "Christmas Day", + "1953-12-26": "Boxing Day", + "1953-12-28": "Boxing Day (Observed)", + "1954-01-01": "New Year's Day", + "1954-01-02": "Day after New Year's Day", + "1954-01-04": "Day after New Year's Day (Observed)", + "1954-01-18": "Southland Anniversary Day", + "1954-01-25": "Wellington Anniversary Day", + "1954-02-01": "Auckland Anniversary Day; Nelson Anniversary Day", + "1954-03-08": "Taranaki Anniversary Day", + "1954-03-22": "Otago Anniversary Day", + "1954-04-16": "Good Friday", + "1954-04-19": "Easter Monday", + "1954-04-25": "Anzac Day", + "1954-06-07": "Queen's Birthday", + "1954-10-22": "Hawke's Bay Anniversary Day", + "1954-10-25": "Labour Day", + "1954-11-01": "Marlborough Anniversary Day", + "1954-11-12": "Canterbury Anniversary Day", + "1954-11-29": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1954-12-25": "Christmas Day", + "1954-12-26": "Boxing Day", + "1954-12-27": "Christmas Day (Observed)", + "1954-12-28": "Boxing Day (Observed)", + "1955-01-01": "New Year's Day", + "1955-01-02": "Day after New Year's Day", + "1955-01-03": "New Year's Day (Observed)", + "1955-01-04": "Day after New Year's Day (Observed)", + "1955-01-17": "Southland Anniversary Day", + "1955-01-24": "Wellington Anniversary Day", + "1955-01-31": "Auckland Anniversary Day; Nelson Anniversary Day", + "1955-03-14": "Taranaki Anniversary Day", + "1955-03-21": "Otago Anniversary Day", + "1955-04-08": "Good Friday", + "1955-04-11": "Easter Monday", + "1955-04-25": "Anzac Day", + "1955-06-06": "Queen's Birthday", + "1955-10-21": "Hawke's Bay Anniversary Day", + "1955-10-24": "Labour Day", + "1955-10-31": "Marlborough Anniversary Day", + "1955-11-11": "Canterbury Anniversary Day", + "1955-11-28": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1955-12-25": "Christmas Day", + "1955-12-26": "Boxing Day", + "1955-12-27": "Christmas Day (Observed)", + "1956-01-01": "New Year's Day", + "1956-01-02": "Day after New Year's Day", + "1956-01-03": "New Year's Day (Observed)", + "1956-01-16": "Southland Anniversary Day", + "1956-01-23": "Wellington Anniversary Day", + "1956-01-30": "Auckland Anniversary Day; Nelson Anniversary Day", + "1956-03-12": "Taranaki Anniversary Day", + "1956-03-26": "Otago Anniversary Day", + "1956-03-30": "Good Friday", + "1956-04-02": "Easter Monday", + "1956-04-25": "Anzac Day", + "1956-06-04": "Queen's Birthday", + "1956-10-19": "Hawke's Bay Anniversary Day", + "1956-10-22": "Labour Day", + "1956-10-29": "Marlborough Anniversary Day", + "1956-11-16": "Canterbury Anniversary Day", + "1956-12-03": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1956-12-25": "Christmas Day", + "1956-12-26": "Boxing Day", + "1957-01-01": "New Year's Day", + "1957-01-02": "Day after New Year's Day", + "1957-01-14": "Southland Anniversary Day", + "1957-01-21": "Wellington Anniversary Day", + "1957-01-28": "Auckland Anniversary Day", + "1957-02-04": "Nelson Anniversary Day", + "1957-03-11": "Taranaki Anniversary Day", + "1957-03-25": "Otago Anniversary Day", + "1957-04-19": "Good Friday", + "1957-04-22": "Easter Monday", + "1957-04-25": "Anzac Day", + "1957-06-03": "Queen's Birthday", + "1957-10-25": "Hawke's Bay Anniversary Day", + "1957-10-28": "Labour Day", + "1957-11-04": "Marlborough Anniversary Day", + "1957-11-15": "Canterbury Anniversary Day", + "1957-12-02": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1957-12-25": "Christmas Day", + "1957-12-26": "Boxing Day", + "1958-01-01": "New Year's Day", + "1958-01-02": "Day after New Year's Day", + "1958-01-20": "Southland Anniversary Day; Wellington Anniversary Day", + "1958-01-27": "Auckland Anniversary Day", + "1958-02-03": "Nelson Anniversary Day", + "1958-03-10": "Taranaki Anniversary Day", + "1958-03-24": "Otago Anniversary Day", + "1958-04-04": "Good Friday", + "1958-04-07": "Easter Monday", + "1958-04-25": "Anzac Day", + "1958-06-02": "Queen's Birthday", + "1958-10-24": "Hawke's Bay Anniversary Day", + "1958-10-27": "Labour Day", + "1958-11-03": "Marlborough Anniversary Day", + "1958-11-14": "Canterbury Anniversary Day", + "1958-12-01": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1958-12-25": "Christmas Day", + "1958-12-26": "Boxing Day", + "1959-01-01": "New Year's Day", + "1959-01-02": "Day after New Year's Day", + "1959-01-19": "Southland Anniversary Day; Wellington Anniversary Day", + "1959-01-26": "Auckland Anniversary Day", + "1959-02-02": "Nelson Anniversary Day", + "1959-03-09": "Taranaki Anniversary Day", + "1959-03-23": "Otago Anniversary Day", + "1959-03-27": "Good Friday", + "1959-03-30": "Easter Monday", + "1959-04-25": "Anzac Day", + "1959-06-01": "Queen's Birthday", + "1959-10-23": "Hawke's Bay Anniversary Day", + "1959-10-26": "Labour Day", + "1959-11-02": "Marlborough Anniversary Day", + "1959-11-13": "Canterbury Anniversary Day", + "1959-11-30": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1959-12-25": "Christmas Day", + "1959-12-26": "Boxing Day", + "1959-12-28": "Boxing Day (Observed)", + "1960-01-01": "New Year's Day", + "1960-01-02": "Day after New Year's Day", + "1960-01-04": "Day after New Year's Day (Observed)", + "1960-01-18": "Southland Anniversary Day", + "1960-01-25": "Wellington Anniversary Day", + "1960-02-01": "Auckland Anniversary Day; Nelson Anniversary Day", + "1960-03-14": "Taranaki Anniversary Day", + "1960-03-21": "Otago Anniversary Day", + "1960-04-15": "Good Friday", + "1960-04-18": "Easter Monday", + "1960-04-25": "Anzac Day", + "1960-06-06": "Queen's Birthday", + "1960-10-21": "Hawke's Bay Anniversary Day", + "1960-10-24": "Labour Day", + "1960-10-31": "Marlborough Anniversary Day", + "1960-11-11": "Canterbury Anniversary Day", + "1960-11-28": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1960-12-25": "Christmas Day", + "1960-12-26": "Boxing Day", + "1960-12-27": "Christmas Day (Observed)", + "1961-01-01": "New Year's Day", + "1961-01-02": "Day after New Year's Day", + "1961-01-03": "New Year's Day (Observed)", + "1961-01-16": "Southland Anniversary Day", + "1961-01-23": "Wellington Anniversary Day", + "1961-01-30": "Auckland Anniversary Day; Nelson Anniversary Day", + "1961-03-13": "Taranaki Anniversary Day", + "1961-03-20": "Otago Anniversary Day", + "1961-03-31": "Good Friday", + "1961-04-03": "Easter Monday", + "1961-04-25": "Anzac Day", + "1961-06-05": "Queen's Birthday", + "1961-10-20": "Hawke's Bay Anniversary Day", + "1961-10-23": "Labour Day", + "1961-10-30": "Marlborough Anniversary Day", + "1961-11-17": "Canterbury Anniversary Day", + "1961-11-27": "Chatham Islands Anniversary Day", + "1961-12-04": "West Coast Anniversary Day", + "1961-12-25": "Christmas Day", + "1961-12-26": "Boxing Day", + "1962-01-01": "New Year's Day", + "1962-01-02": "Day after New Year's Day", + "1962-01-15": "Southland Anniversary Day", + "1962-01-22": "Wellington Anniversary Day", + "1962-01-29": "Auckland Anniversary Day; Nelson Anniversary Day", + "1962-03-12": "Taranaki Anniversary Day", + "1962-03-26": "Otago Anniversary Day", + "1962-04-20": "Good Friday", + "1962-04-23": "Easter Monday", + "1962-04-25": "Anzac Day", + "1962-06-04": "Queen's Birthday", + "1962-10-19": "Hawke's Bay Anniversary Day", + "1962-10-22": "Labour Day", + "1962-10-29": "Marlborough Anniversary Day", + "1962-11-16": "Canterbury Anniversary Day", + "1962-12-03": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1962-12-25": "Christmas Day", + "1962-12-26": "Boxing Day", + "1963-01-01": "New Year's Day", + "1963-01-02": "Day after New Year's Day", + "1963-01-14": "Southland Anniversary Day", + "1963-01-21": "Wellington Anniversary Day", + "1963-01-28": "Auckland Anniversary Day", + "1963-02-04": "Nelson Anniversary Day", + "1963-03-11": "Taranaki Anniversary Day", + "1963-03-25": "Otago Anniversary Day", + "1963-04-12": "Good Friday", + "1963-04-15": "Easter Monday", + "1963-04-25": "Anzac Day", + "1963-06-03": "Queen's Birthday", + "1963-10-25": "Hawke's Bay Anniversary Day", + "1963-10-28": "Labour Day", + "1963-11-04": "Marlborough Anniversary Day", + "1963-11-15": "Canterbury Anniversary Day", + "1963-12-02": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1963-12-25": "Christmas Day", + "1963-12-26": "Boxing Day", + "1964-01-01": "New Year's Day", + "1964-01-02": "Day after New Year's Day", + "1964-01-20": "Southland Anniversary Day; Wellington Anniversary Day", + "1964-01-27": "Auckland Anniversary Day", + "1964-02-03": "Nelson Anniversary Day; Waitangi Day", + "1964-03-09": "Taranaki Anniversary Day", + "1964-03-23": "Otago Anniversary Day", + "1964-03-27": "Good Friday", + "1964-03-30": "Easter Monday", + "1964-04-25": "Anzac Day", + "1964-06-01": "Queen's Birthday", + "1964-10-23": "Hawke's Bay Anniversary Day", + "1964-10-26": "Labour Day", + "1964-11-02": "Marlborough Anniversary Day", + "1964-11-13": "Canterbury Anniversary Day", + "1964-11-30": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1964-12-25": "Christmas Day", + "1964-12-26": "Boxing Day", + "1964-12-28": "Boxing Day (Observed)", + "1965-01-01": "New Year's Day", + "1965-01-02": "Day after New Year's Day", + "1965-01-04": "Day after New Year's Day (Observed)", + "1965-01-18": "Southland Anniversary Day", + "1965-01-25": "Wellington Anniversary Day", + "1965-02-01": "Auckland Anniversary Day; Nelson Anniversary Day", + "1965-02-08": "Waitangi Day", + "1965-03-08": "Taranaki Anniversary Day", + "1965-03-22": "Otago Anniversary Day", + "1965-04-16": "Good Friday", + "1965-04-19": "Easter Monday", + "1965-04-25": "Anzac Day", + "1965-06-07": "Queen's Birthday", + "1965-10-22": "Hawke's Bay Anniversary Day", + "1965-10-25": "Labour Day", + "1965-11-01": "Marlborough Anniversary Day", + "1965-11-12": "Canterbury Anniversary Day", + "1965-11-29": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1965-12-25": "Christmas Day", + "1965-12-26": "Boxing Day", + "1965-12-27": "Christmas Day (Observed)", + "1965-12-28": "Boxing Day (Observed)", + "1966-01-01": "New Year's Day", + "1966-01-02": "Day after New Year's Day", + "1966-01-03": "New Year's Day (Observed)", + "1966-01-04": "Day after New Year's Day (Observed)", + "1966-01-17": "Southland Anniversary Day", + "1966-01-24": "Wellington Anniversary Day", + "1966-01-31": "Auckland Anniversary Day; Nelson Anniversary Day", + "1966-02-07": "Waitangi Day", + "1966-03-14": "Taranaki Anniversary Day", + "1966-03-21": "Otago Anniversary Day", + "1966-04-08": "Good Friday", + "1966-04-11": "Easter Monday", + "1966-04-25": "Anzac Day", + "1966-06-06": "Queen's Birthday", + "1966-10-21": "Hawke's Bay Anniversary Day", + "1966-10-24": "Labour Day", + "1966-10-31": "Marlborough Anniversary Day", + "1966-11-11": "Canterbury Anniversary Day", + "1966-11-28": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1966-12-25": "Christmas Day", + "1966-12-26": "Boxing Day", + "1966-12-27": "Christmas Day (Observed)", + "1967-01-01": "New Year's Day", + "1967-01-02": "Day after New Year's Day", + "1967-01-03": "New Year's Day (Observed)", + "1967-01-16": "Southland Anniversary Day", + "1967-01-23": "Wellington Anniversary Day", + "1967-01-30": "Auckland Anniversary Day; Nelson Anniversary Day", + "1967-02-06": "Waitangi Day", + "1967-03-13": "Taranaki Anniversary Day", + "1967-03-20": "Otago Anniversary Day", + "1967-03-24": "Good Friday", + "1967-03-27": "Easter Monday", + "1967-04-25": "Anzac Day", + "1967-06-05": "Queen's Birthday", + "1967-10-20": "Hawke's Bay Anniversary Day", + "1967-10-23": "Labour Day", + "1967-10-30": "Marlborough Anniversary Day", + "1967-11-17": "Canterbury Anniversary Day", + "1967-11-27": "Chatham Islands Anniversary Day", + "1967-12-04": "West Coast Anniversary Day", + "1967-12-25": "Christmas Day", + "1967-12-26": "Boxing Day", + "1968-01-01": "New Year's Day", + "1968-01-02": "Day after New Year's Day", + "1968-01-15": "Southland Anniversary Day", + "1968-01-22": "Wellington Anniversary Day", + "1968-01-29": "Auckland Anniversary Day; Nelson Anniversary Day", + "1968-02-05": "Waitangi Day", + "1968-03-11": "Taranaki Anniversary Day", + "1968-03-25": "Otago Anniversary Day", + "1968-04-12": "Good Friday", + "1968-04-15": "Easter Monday", + "1968-04-25": "Anzac Day", + "1968-06-03": "Queen's Birthday", + "1968-10-25": "Hawke's Bay Anniversary Day", + "1968-10-28": "Labour Day", + "1968-11-04": "Marlborough Anniversary Day", + "1968-11-15": "Canterbury Anniversary Day", + "1968-12-02": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1968-12-25": "Christmas Day", + "1968-12-26": "Boxing Day", + "1969-01-01": "New Year's Day", + "1969-01-02": "Day after New Year's Day", + "1969-01-20": "Southland Anniversary Day; Wellington Anniversary Day", + "1969-01-27": "Auckland Anniversary Day", + "1969-02-03": "Nelson Anniversary Day; Waitangi Day", + "1969-03-10": "Taranaki Anniversary Day", + "1969-03-24": "Otago Anniversary Day", + "1969-04-04": "Good Friday", + "1969-04-07": "Easter Monday", + "1969-04-25": "Anzac Day", + "1969-06-02": "Queen's Birthday", + "1969-10-24": "Hawke's Bay Anniversary Day", + "1969-10-27": "Labour Day", + "1969-11-03": "Marlborough Anniversary Day", + "1969-11-14": "Canterbury Anniversary Day", + "1969-12-01": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1969-12-25": "Christmas Day", + "1969-12-26": "Boxing Day", + "1970-01-01": "New Year's Day", + "1970-01-02": "Day after New Year's Day", + "1970-01-19": "Southland Anniversary Day; Wellington Anniversary Day", + "1970-01-26": "Auckland Anniversary Day", + "1970-02-02": "Nelson Anniversary Day", + "1970-02-09": "Waitangi Day", + "1970-03-09": "Taranaki Anniversary Day", + "1970-03-23": "Otago Anniversary Day", + "1970-03-27": "Good Friday", + "1970-03-30": "Easter Monday", + "1970-04-25": "Anzac Day", + "1970-06-01": "Queen's Birthday", + "1970-10-23": "Hawke's Bay Anniversary Day", + "1970-10-26": "Labour Day", + "1970-11-02": "Marlborough Anniversary Day", + "1970-11-13": "Canterbury Anniversary Day", + "1970-11-30": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1970-12-25": "Christmas Day", + "1970-12-26": "Boxing Day", + "1970-12-28": "Boxing Day (Observed)", + "1971-01-01": "New Year's Day", + "1971-01-02": "Day after New Year's Day", + "1971-01-04": "Day after New Year's Day (Observed)", + "1971-01-18": "Southland Anniversary Day", + "1971-01-25": "Wellington Anniversary Day", + "1971-02-01": "Auckland Anniversary Day; Nelson Anniversary Day", + "1971-02-08": "Waitangi Day", + "1971-03-08": "Taranaki Anniversary Day", + "1971-03-22": "Otago Anniversary Day", + "1971-04-09": "Good Friday", + "1971-04-12": "Easter Monday", + "1971-04-25": "Anzac Day", + "1971-06-07": "Queen's Birthday", + "1971-10-22": "Hawke's Bay Anniversary Day", + "1971-10-25": "Labour Day", + "1971-11-01": "Marlborough Anniversary Day", + "1971-11-12": "Canterbury Anniversary Day", + "1971-11-29": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1971-12-25": "Christmas Day", + "1971-12-26": "Boxing Day", + "1971-12-27": "Christmas Day (Observed)", + "1971-12-28": "Boxing Day (Observed)", + "1972-01-01": "New Year's Day", + "1972-01-02": "Day after New Year's Day", + "1972-01-03": "New Year's Day (Observed)", + "1972-01-04": "Day after New Year's Day (Observed)", + "1972-01-17": "Southland Anniversary Day", + "1972-01-24": "Wellington Anniversary Day", + "1972-01-31": "Auckland Anniversary Day; Nelson Anniversary Day", + "1972-02-07": "Waitangi Day", + "1972-03-13": "Taranaki Anniversary Day", + "1972-03-20": "Otago Anniversary Day", + "1972-03-31": "Good Friday", + "1972-04-03": "Easter Monday", + "1972-04-25": "Anzac Day", + "1972-06-05": "Queen's Birthday", + "1972-10-20": "Hawke's Bay Anniversary Day", + "1972-10-23": "Labour Day", + "1972-10-30": "Marlborough Anniversary Day", + "1972-11-17": "Canterbury Anniversary Day", + "1972-11-27": "Chatham Islands Anniversary Day", + "1972-12-04": "West Coast Anniversary Day", + "1972-12-25": "Christmas Day", + "1972-12-26": "Boxing Day", + "1973-01-01": "New Year's Day", + "1973-01-02": "Day after New Year's Day", + "1973-01-15": "Southland Anniversary Day", + "1973-01-22": "Wellington Anniversary Day", + "1973-01-29": "Auckland Anniversary Day; Nelson Anniversary Day", + "1973-02-05": "Waitangi Day", + "1973-03-12": "Taranaki Anniversary Day", + "1973-03-26": "Otago Anniversary Day", + "1973-04-20": "Good Friday", + "1973-04-23": "Easter Monday", + "1973-04-25": "Anzac Day", + "1973-06-04": "Queen's Birthday", + "1973-10-19": "Hawke's Bay Anniversary Day", + "1973-10-22": "Labour Day", + "1973-10-29": "Marlborough Anniversary Day", + "1973-11-16": "Canterbury Anniversary Day", + "1973-12-03": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1973-12-25": "Christmas Day", + "1973-12-26": "Boxing Day", + "1974-01-01": "New Year's Day", + "1974-01-02": "Day after New Year's Day", + "1974-01-14": "Southland Anniversary Day", + "1974-01-21": "Wellington Anniversary Day", + "1974-01-28": "Auckland Anniversary Day", + "1974-02-04": "Nelson Anniversary Day", + "1974-02-06": "New Zealand Day", + "1974-03-11": "Taranaki Anniversary Day", + "1974-03-25": "Otago Anniversary Day", + "1974-04-12": "Good Friday", + "1974-04-15": "Easter Monday", + "1974-04-25": "Anzac Day", + "1974-06-03": "Queen's Birthday", + "1974-10-25": "Hawke's Bay Anniversary Day", + "1974-10-28": "Labour Day", + "1974-11-04": "Marlborough Anniversary Day", + "1974-11-15": "Canterbury Anniversary Day", + "1974-12-02": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1974-12-25": "Christmas Day", + "1974-12-26": "Boxing Day", + "1975-01-01": "New Year's Day", + "1975-01-02": "Day after New Year's Day", + "1975-01-20": "Southland Anniversary Day; Wellington Anniversary Day", + "1975-01-27": "Auckland Anniversary Day", + "1975-02-03": "Nelson Anniversary Day", + "1975-02-06": "New Zealand Day", + "1975-03-10": "Taranaki Anniversary Day", + "1975-03-24": "Otago Anniversary Day", + "1975-03-28": "Good Friday", + "1975-03-31": "Easter Monday", + "1975-04-25": "Anzac Day", + "1975-06-02": "Queen's Birthday", + "1975-10-24": "Hawke's Bay Anniversary Day", + "1975-10-27": "Labour Day", + "1975-11-03": "Marlborough Anniversary Day", + "1975-11-14": "Canterbury Anniversary Day", + "1975-12-01": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1975-12-25": "Christmas Day", + "1975-12-26": "Boxing Day", + "1976-01-01": "New Year's Day", + "1976-01-02": "Day after New Year's Day", + "1976-01-19": "Southland Anniversary Day; Wellington Anniversary Day", + "1976-01-26": "Auckland Anniversary Day", + "1976-02-02": "Nelson Anniversary Day", + "1976-02-06": "New Zealand Day", + "1976-03-08": "Taranaki Anniversary Day", + "1976-03-22": "Otago Anniversary Day", + "1976-04-16": "Good Friday", + "1976-04-19": "Easter Monday", + "1976-04-25": "Anzac Day", + "1976-06-07": "Queen's Birthday", + "1976-10-22": "Hawke's Bay Anniversary Day", + "1976-10-25": "Labour Day", + "1976-11-01": "Marlborough Anniversary Day", + "1976-11-12": "Canterbury Anniversary Day", + "1976-11-29": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1976-12-25": "Christmas Day", + "1976-12-26": "Boxing Day", + "1976-12-27": "Christmas Day (Observed)", + "1976-12-28": "Boxing Day (Observed)", + "1977-01-01": "New Year's Day", + "1977-01-02": "Day after New Year's Day", + "1977-01-03": "New Year's Day (Observed)", + "1977-01-04": "Day after New Year's Day (Observed)", + "1977-01-17": "Southland Anniversary Day", + "1977-01-24": "Wellington Anniversary Day", + "1977-01-31": "Auckland Anniversary Day; Nelson Anniversary Day", + "1977-02-06": "Waitangi Day", + "1977-03-14": "Taranaki Anniversary Day", + "1977-03-21": "Otago Anniversary Day", + "1977-04-08": "Good Friday", + "1977-04-11": "Easter Monday", + "1977-04-25": "Anzac Day", + "1977-06-06": "Queen's Birthday", + "1977-10-21": "Hawke's Bay Anniversary Day", + "1977-10-24": "Labour Day", + "1977-10-31": "Marlborough Anniversary Day", + "1977-11-11": "Canterbury Anniversary Day", + "1977-11-28": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1977-12-25": "Christmas Day", + "1977-12-26": "Boxing Day", + "1977-12-27": "Christmas Day (Observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "Day after New Year's Day", + "1978-01-03": "New Year's Day (Observed)", + "1978-01-16": "Southland Anniversary Day", + "1978-01-23": "Wellington Anniversary Day", + "1978-01-30": "Auckland Anniversary Day; Nelson Anniversary Day", + "1978-02-06": "Waitangi Day", + "1978-03-13": "Taranaki Anniversary Day", + "1978-03-20": "Otago Anniversary Day", + "1978-03-24": "Good Friday", + "1978-03-27": "Easter Monday", + "1978-04-25": "Anzac Day", + "1978-06-05": "Queen's Birthday", + "1978-10-20": "Hawke's Bay Anniversary Day", + "1978-10-23": "Labour Day", + "1978-10-30": "Marlborough Anniversary Day", + "1978-11-17": "Canterbury Anniversary Day", + "1978-11-27": "Chatham Islands Anniversary Day", + "1978-12-04": "West Coast Anniversary Day", + "1978-12-25": "Christmas Day", + "1978-12-26": "Boxing Day", + "1979-01-01": "New Year's Day", + "1979-01-02": "Day after New Year's Day", + "1979-01-15": "Southland Anniversary Day", + "1979-01-22": "Wellington Anniversary Day", + "1979-01-29": "Auckland Anniversary Day; Nelson Anniversary Day", + "1979-02-06": "Waitangi Day", + "1979-03-12": "Taranaki Anniversary Day", + "1979-03-26": "Otago Anniversary Day", + "1979-04-13": "Good Friday", + "1979-04-16": "Easter Monday", + "1979-04-25": "Anzac Day", + "1979-06-04": "Queen's Birthday", + "1979-10-19": "Hawke's Bay Anniversary Day", + "1979-10-22": "Labour Day", + "1979-10-29": "Marlborough Anniversary Day", + "1979-11-16": "Canterbury Anniversary Day", + "1979-12-03": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1979-12-25": "Christmas Day", + "1979-12-26": "Boxing Day", + "1980-01-01": "New Year's Day", + "1980-01-02": "Day after New Year's Day", + "1980-01-14": "Southland Anniversary Day", + "1980-01-21": "Wellington Anniversary Day", + "1980-01-28": "Auckland Anniversary Day", + "1980-02-04": "Nelson Anniversary Day", + "1980-02-06": "Waitangi Day", + "1980-03-10": "Taranaki Anniversary Day", + "1980-03-24": "Otago Anniversary Day", + "1980-04-04": "Good Friday", + "1980-04-07": "Easter Monday", + "1980-04-25": "Anzac Day", + "1980-06-02": "Queen's Birthday", + "1980-10-24": "Hawke's Bay Anniversary Day", + "1980-10-27": "Labour Day", + "1980-11-03": "Marlborough Anniversary Day", + "1980-11-14": "Canterbury Anniversary Day", + "1980-12-01": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1980-12-25": "Christmas Day", + "1980-12-26": "Boxing Day", + "1981-01-01": "New Year's Day", + "1981-01-02": "Day after New Year's Day", + "1981-01-19": "Southland Anniversary Day; Wellington Anniversary Day", + "1981-01-26": "Auckland Anniversary Day", + "1981-02-02": "Nelson Anniversary Day", + "1981-02-06": "Waitangi Day", + "1981-03-09": "Taranaki Anniversary Day", + "1981-03-23": "Otago Anniversary Day", + "1981-04-17": "Good Friday", + "1981-04-20": "Easter Monday", + "1981-04-25": "Anzac Day", + "1981-06-01": "Queen's Birthday", + "1981-10-23": "Hawke's Bay Anniversary Day", + "1981-10-26": "Labour Day", + "1981-11-02": "Marlborough Anniversary Day", + "1981-11-13": "Canterbury Anniversary Day", + "1981-11-30": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1981-12-25": "Christmas Day", + "1981-12-26": "Boxing Day", + "1981-12-28": "Boxing Day (Observed)", + "1982-01-01": "New Year's Day", + "1982-01-02": "Day after New Year's Day", + "1982-01-04": "Day after New Year's Day (Observed)", + "1982-01-18": "Southland Anniversary Day", + "1982-01-25": "Wellington Anniversary Day", + "1982-02-01": "Auckland Anniversary Day; Nelson Anniversary Day", + "1982-02-06": "Waitangi Day", + "1982-03-08": "Taranaki Anniversary Day", + "1982-03-22": "Otago Anniversary Day", + "1982-04-09": "Good Friday", + "1982-04-12": "Easter Monday", + "1982-04-25": "Anzac Day", + "1982-06-07": "Queen's Birthday", + "1982-10-22": "Hawke's Bay Anniversary Day", + "1982-10-25": "Labour Day", + "1982-11-01": "Marlborough Anniversary Day", + "1982-11-12": "Canterbury Anniversary Day", + "1982-11-29": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1982-12-25": "Christmas Day", + "1982-12-26": "Boxing Day", + "1982-12-27": "Christmas Day (Observed)", + "1982-12-28": "Boxing Day (Observed)", + "1983-01-01": "New Year's Day", + "1983-01-02": "Day after New Year's Day", + "1983-01-03": "New Year's Day (Observed)", + "1983-01-04": "Day after New Year's Day (Observed)", + "1983-01-17": "Southland Anniversary Day", + "1983-01-24": "Wellington Anniversary Day", + "1983-01-31": "Auckland Anniversary Day; Nelson Anniversary Day", + "1983-02-06": "Waitangi Day", + "1983-03-14": "Taranaki Anniversary Day", + "1983-03-21": "Otago Anniversary Day", + "1983-04-01": "Good Friday", + "1983-04-04": "Easter Monday", + "1983-04-25": "Anzac Day", + "1983-06-06": "Queen's Birthday", + "1983-10-21": "Hawke's Bay Anniversary Day", + "1983-10-24": "Labour Day", + "1983-10-31": "Marlborough Anniversary Day", + "1983-11-11": "Canterbury Anniversary Day", + "1983-11-28": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1983-12-25": "Christmas Day", + "1983-12-26": "Boxing Day", + "1983-12-27": "Christmas Day (Observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "Day after New Year's Day", + "1984-01-03": "New Year's Day (Observed)", + "1984-01-16": "Southland Anniversary Day", + "1984-01-23": "Wellington Anniversary Day", + "1984-01-30": "Auckland Anniversary Day; Nelson Anniversary Day", + "1984-02-06": "Waitangi Day", + "1984-03-12": "Taranaki Anniversary Day", + "1984-03-26": "Otago Anniversary Day", + "1984-04-20": "Good Friday", + "1984-04-23": "Easter Monday", + "1984-04-25": "Anzac Day", + "1984-06-04": "Queen's Birthday", + "1984-10-19": "Hawke's Bay Anniversary Day", + "1984-10-22": "Labour Day", + "1984-10-29": "Marlborough Anniversary Day", + "1984-11-16": "Canterbury Anniversary Day", + "1984-12-03": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1984-12-25": "Christmas Day", + "1984-12-26": "Boxing Day", + "1985-01-01": "New Year's Day", + "1985-01-02": "Day after New Year's Day", + "1985-01-14": "Southland Anniversary Day", + "1985-01-21": "Wellington Anniversary Day", + "1985-01-28": "Auckland Anniversary Day", + "1985-02-04": "Nelson Anniversary Day", + "1985-02-06": "Waitangi Day", + "1985-03-11": "Taranaki Anniversary Day", + "1985-03-25": "Otago Anniversary Day", + "1985-04-05": "Good Friday", + "1985-04-08": "Easter Monday", + "1985-04-25": "Anzac Day", + "1985-06-03": "Queen's Birthday", + "1985-10-25": "Hawke's Bay Anniversary Day", + "1985-10-28": "Labour Day", + "1985-11-04": "Marlborough Anniversary Day", + "1985-11-15": "Canterbury Anniversary Day", + "1985-12-02": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1985-12-25": "Christmas Day", + "1985-12-26": "Boxing Day", + "1986-01-01": "New Year's Day", + "1986-01-02": "Day after New Year's Day", + "1986-01-20": "Southland Anniversary Day; Wellington Anniversary Day", + "1986-01-27": "Auckland Anniversary Day", + "1986-02-03": "Nelson Anniversary Day", + "1986-02-06": "Waitangi Day", + "1986-03-10": "Taranaki Anniversary Day", + "1986-03-24": "Otago Anniversary Day", + "1986-03-28": "Good Friday", + "1986-03-31": "Easter Monday", + "1986-04-25": "Anzac Day", + "1986-06-02": "Queen's Birthday", + "1986-10-24": "Hawke's Bay Anniversary Day", + "1986-10-27": "Labour Day", + "1986-11-03": "Marlborough Anniversary Day", + "1986-11-14": "Canterbury Anniversary Day", + "1986-12-01": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1986-12-25": "Christmas Day", + "1986-12-26": "Boxing Day", + "1987-01-01": "New Year's Day", + "1987-01-02": "Day after New Year's Day", + "1987-01-19": "Southland Anniversary Day; Wellington Anniversary Day", + "1987-01-26": "Auckland Anniversary Day", + "1987-02-02": "Nelson Anniversary Day", + "1987-02-06": "Waitangi Day", + "1987-03-09": "Taranaki Anniversary Day", + "1987-03-23": "Otago Anniversary Day", + "1987-04-17": "Good Friday", + "1987-04-20": "Easter Monday", + "1987-04-25": "Anzac Day", + "1987-06-01": "Queen's Birthday", + "1987-10-23": "Hawke's Bay Anniversary Day", + "1987-10-26": "Labour Day", + "1987-11-02": "Marlborough Anniversary Day", + "1987-11-13": "Canterbury Anniversary Day", + "1987-11-30": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1987-12-25": "Christmas Day", + "1987-12-26": "Boxing Day", + "1987-12-28": "Boxing Day (Observed)", + "1988-01-01": "New Year's Day", + "1988-01-02": "Day after New Year's Day", + "1988-01-04": "Day after New Year's Day (Observed)", + "1988-01-18": "Southland Anniversary Day", + "1988-01-25": "Wellington Anniversary Day", + "1988-02-01": "Auckland Anniversary Day; Nelson Anniversary Day", + "1988-02-06": "Waitangi Day", + "1988-03-14": "Taranaki Anniversary Day", + "1988-03-21": "Otago Anniversary Day", + "1988-04-01": "Good Friday", + "1988-04-04": "Easter Monday", + "1988-04-25": "Anzac Day", + "1988-06-06": "Queen's Birthday", + "1988-10-21": "Hawke's Bay Anniversary Day", + "1988-10-24": "Labour Day", + "1988-10-31": "Marlborough Anniversary Day", + "1988-11-11": "Canterbury Anniversary Day", + "1988-11-28": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1988-12-25": "Christmas Day", + "1988-12-26": "Boxing Day", + "1988-12-27": "Christmas Day (Observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "Day after New Year's Day", + "1989-01-03": "New Year's Day (Observed)", + "1989-01-16": "Southland Anniversary Day", + "1989-01-23": "Wellington Anniversary Day", + "1989-01-30": "Auckland Anniversary Day; Nelson Anniversary Day", + "1989-02-06": "Waitangi Day", + "1989-03-13": "Taranaki Anniversary Day", + "1989-03-20": "Otago Anniversary Day", + "1989-03-24": "Good Friday", + "1989-03-27": "Easter Monday", + "1989-04-25": "Anzac Day", + "1989-06-05": "Queen's Birthday", + "1989-10-20": "Hawke's Bay Anniversary Day", + "1989-10-23": "Labour Day", + "1989-10-30": "Marlborough Anniversary Day", + "1989-11-17": "Canterbury Anniversary Day", + "1989-11-27": "Chatham Islands Anniversary Day", + "1989-12-04": "West Coast Anniversary Day", + "1989-12-25": "Christmas Day", + "1989-12-26": "Boxing Day", + "1990-01-01": "New Year's Day", + "1990-01-02": "Day after New Year's Day", + "1990-01-15": "Southland Anniversary Day", + "1990-01-22": "Wellington Anniversary Day", + "1990-01-29": "Auckland Anniversary Day; Nelson Anniversary Day", + "1990-02-06": "Waitangi Day", + "1990-03-12": "Taranaki Anniversary Day", + "1990-03-26": "Otago Anniversary Day", + "1990-04-13": "Good Friday", + "1990-04-16": "Easter Monday", + "1990-04-25": "Anzac Day", + "1990-06-04": "Queen's Birthday", + "1990-10-19": "Hawke's Bay Anniversary Day", + "1990-10-22": "Labour Day", + "1990-10-29": "Marlborough Anniversary Day", + "1990-11-16": "Canterbury Anniversary Day", + "1990-12-03": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1990-12-25": "Christmas Day", + "1990-12-26": "Boxing Day", + "1991-01-01": "New Year's Day", + "1991-01-02": "Day after New Year's Day", + "1991-01-14": "Southland Anniversary Day", + "1991-01-21": "Wellington Anniversary Day", + "1991-01-28": "Auckland Anniversary Day", + "1991-02-04": "Nelson Anniversary Day", + "1991-02-06": "Waitangi Day", + "1991-03-11": "Taranaki Anniversary Day", + "1991-03-25": "Otago Anniversary Day", + "1991-03-29": "Good Friday", + "1991-04-01": "Easter Monday", + "1991-04-25": "Anzac Day", + "1991-06-03": "Queen's Birthday", + "1991-10-25": "Hawke's Bay Anniversary Day", + "1991-10-28": "Labour Day", + "1991-11-04": "Marlborough Anniversary Day", + "1991-11-15": "Canterbury Anniversary Day", + "1991-12-02": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1991-12-25": "Christmas Day", + "1991-12-26": "Boxing Day", + "1992-01-01": "New Year's Day", + "1992-01-02": "Day after New Year's Day", + "1992-01-20": "Southland Anniversary Day; Wellington Anniversary Day", + "1992-01-27": "Auckland Anniversary Day", + "1992-02-03": "Nelson Anniversary Day", + "1992-02-06": "Waitangi Day", + "1992-03-09": "Taranaki Anniversary Day", + "1992-03-23": "Otago Anniversary Day", + "1992-04-17": "Good Friday", + "1992-04-20": "Easter Monday", + "1992-04-25": "Anzac Day", + "1992-06-01": "Queen's Birthday", + "1992-10-23": "Hawke's Bay Anniversary Day", + "1992-10-26": "Labour Day", + "1992-11-02": "Marlborough Anniversary Day", + "1992-11-13": "Canterbury Anniversary Day", + "1992-11-30": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1992-12-25": "Christmas Day", + "1992-12-26": "Boxing Day", + "1992-12-28": "Boxing Day (Observed)", + "1993-01-01": "New Year's Day", + "1993-01-02": "Day after New Year's Day", + "1993-01-04": "Day after New Year's Day (Observed)", + "1993-01-18": "Southland Anniversary Day", + "1993-01-25": "Wellington Anniversary Day", + "1993-02-01": "Auckland Anniversary Day; Nelson Anniversary Day", + "1993-02-06": "Waitangi Day", + "1993-03-08": "Taranaki Anniversary Day", + "1993-03-22": "Otago Anniversary Day", + "1993-04-09": "Good Friday", + "1993-04-12": "Easter Monday", + "1993-04-25": "Anzac Day", + "1993-06-07": "Queen's Birthday", + "1993-10-22": "Hawke's Bay Anniversary Day", + "1993-10-25": "Labour Day", + "1993-11-01": "Marlborough Anniversary Day", + "1993-11-12": "Canterbury Anniversary Day", + "1993-11-29": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1993-12-25": "Christmas Day", + "1993-12-26": "Boxing Day", + "1993-12-27": "Christmas Day (Observed)", + "1993-12-28": "Boxing Day (Observed)", + "1994-01-01": "New Year's Day", + "1994-01-02": "Day after New Year's Day", + "1994-01-03": "New Year's Day (Observed)", + "1994-01-04": "Day after New Year's Day (Observed)", + "1994-01-17": "Southland Anniversary Day", + "1994-01-24": "Wellington Anniversary Day", + "1994-01-31": "Auckland Anniversary Day; Nelson Anniversary Day", + "1994-02-06": "Waitangi Day", + "1994-03-14": "Taranaki Anniversary Day", + "1994-03-21": "Otago Anniversary Day", + "1994-04-01": "Good Friday", + "1994-04-04": "Easter Monday", + "1994-04-25": "Anzac Day", + "1994-06-06": "Queen's Birthday", + "1994-10-21": "Hawke's Bay Anniversary Day", + "1994-10-24": "Labour Day", + "1994-10-31": "Marlborough Anniversary Day", + "1994-11-11": "Canterbury Anniversary Day", + "1994-11-28": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Boxing Day", + "1994-12-27": "Christmas Day (Observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "Day after New Year's Day", + "1995-01-03": "New Year's Day (Observed)", + "1995-01-16": "Southland Anniversary Day", + "1995-01-23": "Wellington Anniversary Day", + "1995-01-30": "Auckland Anniversary Day; Nelson Anniversary Day", + "1995-02-06": "Waitangi Day", + "1995-03-13": "Taranaki Anniversary Day", + "1995-03-20": "Otago Anniversary Day", + "1995-04-14": "Good Friday", + "1995-04-17": "Easter Monday", + "1995-04-25": "Anzac Day", + "1995-06-05": "Queen's Birthday", + "1995-10-20": "Hawke's Bay Anniversary Day", + "1995-10-23": "Labour Day", + "1995-10-30": "Marlborough Anniversary Day", + "1995-11-17": "Canterbury Anniversary Day", + "1995-11-27": "Chatham Islands Anniversary Day", + "1995-12-04": "West Coast Anniversary Day", + "1995-12-25": "Christmas Day", + "1995-12-26": "Boxing Day", + "1996-01-01": "New Year's Day", + "1996-01-02": "Day after New Year's Day", + "1996-01-15": "Southland Anniversary Day", + "1996-01-22": "Wellington Anniversary Day", + "1996-01-29": "Auckland Anniversary Day; Nelson Anniversary Day", + "1996-02-06": "Waitangi Day", + "1996-03-11": "Taranaki Anniversary Day", + "1996-03-25": "Otago Anniversary Day", + "1996-04-05": "Good Friday", + "1996-04-08": "Easter Monday", + "1996-04-25": "Anzac Day", + "1996-06-03": "Queen's Birthday", + "1996-10-25": "Hawke's Bay Anniversary Day", + "1996-10-28": "Labour Day", + "1996-11-04": "Marlborough Anniversary Day", + "1996-11-15": "Canterbury Anniversary Day", + "1996-12-02": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1996-12-25": "Christmas Day", + "1996-12-26": "Boxing Day", + "1997-01-01": "New Year's Day", + "1997-01-02": "Day after New Year's Day", + "1997-01-20": "Southland Anniversary Day; Wellington Anniversary Day", + "1997-01-27": "Auckland Anniversary Day", + "1997-02-03": "Nelson Anniversary Day", + "1997-02-06": "Waitangi Day", + "1997-03-10": "Taranaki Anniversary Day", + "1997-03-24": "Otago Anniversary Day", + "1997-03-28": "Good Friday", + "1997-03-31": "Easter Monday", + "1997-04-25": "Anzac Day", + "1997-06-02": "Queen's Birthday", + "1997-10-24": "Hawke's Bay Anniversary Day", + "1997-10-27": "Labour Day", + "1997-11-03": "Marlborough Anniversary Day", + "1997-11-14": "Canterbury Anniversary Day", + "1997-12-01": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1997-12-25": "Christmas Day", + "1997-12-26": "Boxing Day", + "1998-01-01": "New Year's Day", + "1998-01-02": "Day after New Year's Day", + "1998-01-19": "Southland Anniversary Day; Wellington Anniversary Day", + "1998-01-26": "Auckland Anniversary Day", + "1998-02-02": "Nelson Anniversary Day", + "1998-02-06": "Waitangi Day", + "1998-03-09": "Taranaki Anniversary Day", + "1998-03-23": "Otago Anniversary Day", + "1998-04-10": "Good Friday", + "1998-04-13": "Easter Monday", + "1998-04-25": "Anzac Day", + "1998-06-01": "Queen's Birthday", + "1998-10-23": "Hawke's Bay Anniversary Day", + "1998-10-26": "Labour Day", + "1998-11-02": "Marlborough Anniversary Day", + "1998-11-13": "Canterbury Anniversary Day", + "1998-11-30": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1998-12-25": "Christmas Day", + "1998-12-26": "Boxing Day", + "1998-12-28": "Boxing Day (Observed)", + "1999-01-01": "New Year's Day", + "1999-01-02": "Day after New Year's Day", + "1999-01-04": "Day after New Year's Day (Observed)", + "1999-01-18": "Southland Anniversary Day", + "1999-01-25": "Wellington Anniversary Day", + "1999-02-01": "Auckland Anniversary Day; Nelson Anniversary Day", + "1999-02-06": "Waitangi Day", + "1999-03-08": "Taranaki Anniversary Day", + "1999-03-22": "Otago Anniversary Day", + "1999-04-02": "Good Friday", + "1999-04-05": "Easter Monday", + "1999-04-25": "Anzac Day", + "1999-06-07": "Queen's Birthday", + "1999-10-22": "Hawke's Bay Anniversary Day", + "1999-10-25": "Labour Day", + "1999-11-01": "Marlborough Anniversary Day", + "1999-11-12": "Canterbury Anniversary Day", + "1999-11-29": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "1999-12-25": "Christmas Day", + "1999-12-26": "Boxing Day", + "1999-12-27": "Christmas Day (Observed)", + "1999-12-28": "Boxing Day (Observed)", + "2000-01-01": "New Year's Day", + "2000-01-02": "Day after New Year's Day", + "2000-01-03": "New Year's Day (Observed)", + "2000-01-04": "Day after New Year's Day (Observed)", + "2000-01-17": "Southland Anniversary Day", + "2000-01-24": "Wellington Anniversary Day", + "2000-01-31": "Auckland Anniversary Day; Nelson Anniversary Day", + "2000-02-06": "Waitangi Day", + "2000-03-13": "Taranaki Anniversary Day", + "2000-03-20": "Otago Anniversary Day", + "2000-04-21": "Good Friday", + "2000-04-24": "Easter Monday", + "2000-04-25": "Anzac Day", + "2000-06-05": "Queen's Birthday", + "2000-10-20": "Hawke's Bay Anniversary Day", + "2000-10-23": "Labour Day", + "2000-10-30": "Marlborough Anniversary Day", + "2000-11-17": "Canterbury Anniversary Day", + "2000-11-27": "Chatham Islands Anniversary Day", + "2000-12-04": "West Coast Anniversary Day", + "2000-12-25": "Christmas Day", + "2000-12-26": "Boxing Day", + "2001-01-01": "New Year's Day", + "2001-01-02": "Day after New Year's Day", + "2001-01-15": "Southland Anniversary Day", + "2001-01-22": "Wellington Anniversary Day", + "2001-01-29": "Auckland Anniversary Day; Nelson Anniversary Day", + "2001-02-06": "Waitangi Day", + "2001-03-12": "Taranaki Anniversary Day", + "2001-03-26": "Otago Anniversary Day", + "2001-04-13": "Good Friday", + "2001-04-16": "Easter Monday", + "2001-04-25": "Anzac Day", + "2001-06-04": "Queen's Birthday", + "2001-10-19": "Hawke's Bay Anniversary Day", + "2001-10-22": "Labour Day", + "2001-10-29": "Marlborough Anniversary Day", + "2001-11-16": "Canterbury Anniversary Day", + "2001-12-03": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2001-12-25": "Christmas Day", + "2001-12-26": "Boxing Day", + "2002-01-01": "New Year's Day", + "2002-01-02": "Day after New Year's Day", + "2002-01-14": "Southland Anniversary Day", + "2002-01-21": "Wellington Anniversary Day", + "2002-01-28": "Auckland Anniversary Day", + "2002-02-04": "Nelson Anniversary Day", + "2002-02-06": "Waitangi Day", + "2002-03-11": "Taranaki Anniversary Day", + "2002-03-25": "Otago Anniversary Day", + "2002-03-29": "Good Friday", + "2002-04-01": "Easter Monday", + "2002-04-25": "Anzac Day", + "2002-06-03": "Queen's Birthday", + "2002-10-25": "Hawke's Bay Anniversary Day", + "2002-10-28": "Labour Day", + "2002-11-04": "Marlborough Anniversary Day", + "2002-11-15": "Canterbury Anniversary Day", + "2002-12-02": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2002-12-25": "Christmas Day", + "2002-12-26": "Boxing Day", + "2003-01-01": "New Year's Day", + "2003-01-02": "Day after New Year's Day", + "2003-01-20": "Southland Anniversary Day; Wellington Anniversary Day", + "2003-01-27": "Auckland Anniversary Day", + "2003-02-03": "Nelson Anniversary Day", + "2003-02-06": "Waitangi Day", + "2003-03-10": "Taranaki Anniversary Day", + "2003-03-24": "Otago Anniversary Day", + "2003-04-18": "Good Friday", + "2003-04-21": "Easter Monday", + "2003-04-25": "Anzac Day", + "2003-06-02": "Queen's Birthday", + "2003-10-24": "Hawke's Bay Anniversary Day", + "2003-10-27": "Labour Day", + "2003-11-03": "Marlborough Anniversary Day", + "2003-11-14": "Canterbury Anniversary Day", + "2003-12-01": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2003-12-25": "Christmas Day", + "2003-12-26": "Boxing Day", + "2004-01-01": "New Year's Day", + "2004-01-02": "Day after New Year's Day", + "2004-01-19": "Southland Anniversary Day; Wellington Anniversary Day", + "2004-01-26": "Auckland Anniversary Day", + "2004-02-02": "Nelson Anniversary Day", + "2004-02-06": "Waitangi Day", + "2004-03-08": "Taranaki Anniversary Day", + "2004-03-22": "Otago Anniversary Day", + "2004-04-09": "Good Friday", + "2004-04-12": "Easter Monday", + "2004-04-25": "Anzac Day", + "2004-06-07": "Queen's Birthday", + "2004-10-22": "Hawke's Bay Anniversary Day", + "2004-10-25": "Labour Day", + "2004-11-01": "Marlborough Anniversary Day", + "2004-11-12": "Canterbury Anniversary Day", + "2004-11-29": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2004-12-25": "Christmas Day", + "2004-12-26": "Boxing Day", + "2004-12-27": "Christmas Day (Observed)", + "2004-12-28": "Boxing Day (Observed)", + "2005-01-01": "New Year's Day", + "2005-01-02": "Day after New Year's Day", + "2005-01-03": "New Year's Day (Observed)", + "2005-01-04": "Day after New Year's Day (Observed)", + "2005-01-17": "Southland Anniversary Day", + "2005-01-24": "Wellington Anniversary Day", + "2005-01-31": "Auckland Anniversary Day; Nelson Anniversary Day", + "2005-02-06": "Waitangi Day", + "2005-03-14": "Taranaki Anniversary Day", + "2005-03-21": "Otago Anniversary Day", + "2005-03-25": "Good Friday", + "2005-03-28": "Easter Monday", + "2005-04-25": "Anzac Day", + "2005-06-06": "Queen's Birthday", + "2005-10-21": "Hawke's Bay Anniversary Day", + "2005-10-24": "Labour Day", + "2005-10-31": "Marlborough Anniversary Day", + "2005-11-11": "Canterbury Anniversary Day", + "2005-11-28": "Chatham Islands Anniversary Day", + "2005-12-05": "West Coast Anniversary Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "Boxing Day", + "2005-12-27": "Christmas Day (Observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "Day after New Year's Day", + "2006-01-03": "New Year's Day (Observed)", + "2006-01-16": "Southland Anniversary Day", + "2006-01-23": "Wellington Anniversary Day", + "2006-01-30": "Auckland Anniversary Day; Nelson Anniversary Day", + "2006-02-06": "Waitangi Day", + "2006-03-13": "Taranaki Anniversary Day", + "2006-03-20": "Otago Anniversary Day", + "2006-04-14": "Good Friday", + "2006-04-17": "Easter Monday", + "2006-04-25": "Anzac Day", + "2006-06-05": "Queen's Birthday", + "2006-10-20": "Hawke's Bay Anniversary Day", + "2006-10-23": "Labour Day", + "2006-10-30": "Marlborough Anniversary Day", + "2006-11-17": "Canterbury Anniversary Day", + "2006-11-27": "Chatham Islands Anniversary Day", + "2006-12-04": "West Coast Anniversary Day", + "2006-12-25": "Christmas Day", + "2006-12-26": "Boxing Day", + "2007-01-01": "New Year's Day", + "2007-01-02": "Day after New Year's Day", + "2007-01-15": "Southland Anniversary Day", + "2007-01-22": "Wellington Anniversary Day", + "2007-01-29": "Auckland Anniversary Day; Nelson Anniversary Day", + "2007-02-06": "Waitangi Day", + "2007-03-12": "Taranaki Anniversary Day", + "2007-03-26": "Otago Anniversary Day", + "2007-04-06": "Good Friday", + "2007-04-09": "Easter Monday", + "2007-04-25": "Anzac Day", + "2007-06-04": "Queen's Birthday", + "2007-10-19": "Hawke's Bay Anniversary Day", + "2007-10-22": "Labour Day", + "2007-10-29": "Marlborough Anniversary Day", + "2007-11-16": "Canterbury Anniversary Day", + "2007-12-03": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2007-12-25": "Christmas Day", + "2007-12-26": "Boxing Day", + "2008-01-01": "New Year's Day", + "2008-01-02": "Day after New Year's Day", + "2008-01-14": "Southland Anniversary Day", + "2008-01-21": "Wellington Anniversary Day", + "2008-01-28": "Auckland Anniversary Day", + "2008-02-04": "Nelson Anniversary Day", + "2008-02-06": "Waitangi Day", + "2008-03-10": "Taranaki Anniversary Day", + "2008-03-21": "Good Friday", + "2008-03-24": "Easter Monday", + "2008-03-25": "Otago Anniversary Day", + "2008-04-25": "Anzac Day", + "2008-06-02": "Queen's Birthday", + "2008-10-24": "Hawke's Bay Anniversary Day", + "2008-10-27": "Labour Day", + "2008-11-03": "Marlborough Anniversary Day", + "2008-11-14": "Canterbury Anniversary Day", + "2008-12-01": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2008-12-25": "Christmas Day", + "2008-12-26": "Boxing Day", + "2009-01-01": "New Year's Day", + "2009-01-02": "Day after New Year's Day", + "2009-01-19": "Southland Anniversary Day; Wellington Anniversary Day", + "2009-01-26": "Auckland Anniversary Day", + "2009-02-02": "Nelson Anniversary Day", + "2009-02-06": "Waitangi Day", + "2009-03-09": "Taranaki Anniversary Day", + "2009-03-23": "Otago Anniversary Day", + "2009-04-10": "Good Friday", + "2009-04-13": "Easter Monday", + "2009-04-25": "Anzac Day", + "2009-06-01": "Queen's Birthday", + "2009-10-23": "Hawke's Bay Anniversary Day", + "2009-10-26": "Labour Day", + "2009-11-02": "Marlborough Anniversary Day", + "2009-11-13": "Canterbury Anniversary Day", + "2009-11-30": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2009-12-25": "Christmas Day", + "2009-12-26": "Boxing Day", + "2009-12-28": "Boxing Day (Observed)", + "2010-01-01": "New Year's Day", + "2010-01-02": "Day after New Year's Day", + "2010-01-04": "Day after New Year's Day (Observed)", + "2010-01-18": "Southland Anniversary Day", + "2010-01-25": "Wellington Anniversary Day", + "2010-02-01": "Auckland Anniversary Day; Nelson Anniversary Day", + "2010-02-06": "Waitangi Day", + "2010-03-08": "Taranaki Anniversary Day", + "2010-03-22": "Otago Anniversary Day", + "2010-04-02": "Good Friday", + "2010-04-05": "Easter Monday", + "2010-04-25": "Anzac Day", + "2010-06-07": "Queen's Birthday", + "2010-10-22": "Hawke's Bay Anniversary Day", + "2010-10-25": "Labour Day", + "2010-11-01": "Marlborough Anniversary Day", + "2010-11-12": "Canterbury Anniversary Day", + "2010-11-29": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2010-12-25": "Christmas Day", + "2010-12-26": "Boxing Day", + "2010-12-27": "Christmas Day (Observed)", + "2010-12-28": "Boxing Day (Observed)", + "2011-01-01": "New Year's Day", + "2011-01-02": "Day after New Year's Day", + "2011-01-03": "New Year's Day (Observed)", + "2011-01-04": "Day after New Year's Day (Observed)", + "2011-01-17": "Southland Anniversary Day", + "2011-01-24": "Wellington Anniversary Day", + "2011-01-31": "Auckland Anniversary Day; Nelson Anniversary Day", + "2011-02-06": "Waitangi Day", + "2011-03-14": "Taranaki Anniversary Day", + "2011-03-21": "Otago Anniversary Day", + "2011-04-22": "Good Friday", + "2011-04-25": "Anzac Day; Easter Monday", + "2011-06-06": "Queen's Birthday", + "2011-10-21": "Hawke's Bay Anniversary Day", + "2011-10-24": "Labour Day", + "2011-10-31": "Marlborough Anniversary Day", + "2011-11-11": "Canterbury Anniversary Day", + "2011-11-28": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "Boxing Day", + "2011-12-27": "Christmas Day (Observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "Day after New Year's Day", + "2012-01-03": "New Year's Day (Observed)", + "2012-01-23": "Wellington Anniversary Day", + "2012-01-30": "Auckland Anniversary Day; Nelson Anniversary Day", + "2012-02-06": "Waitangi Day", + "2012-03-12": "Taranaki Anniversary Day", + "2012-03-26": "Otago Anniversary Day", + "2012-04-06": "Good Friday", + "2012-04-09": "Easter Monday", + "2012-04-10": "Southland Anniversary Day", + "2012-04-25": "Anzac Day", + "2012-06-04": "Queen's Birthday", + "2012-10-19": "Hawke's Bay Anniversary Day", + "2012-10-22": "Labour Day", + "2012-10-29": "Marlborough Anniversary Day", + "2012-11-16": "Canterbury Anniversary Day", + "2012-12-03": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2012-12-25": "Christmas Day", + "2012-12-26": "Boxing Day", + "2013-01-01": "New Year's Day", + "2013-01-02": "Day after New Year's Day", + "2013-01-21": "Wellington Anniversary Day", + "2013-01-28": "Auckland Anniversary Day", + "2013-02-04": "Nelson Anniversary Day", + "2013-02-06": "Waitangi Day", + "2013-03-11": "Taranaki Anniversary Day", + "2013-03-25": "Otago Anniversary Day", + "2013-03-29": "Good Friday", + "2013-04-01": "Easter Monday", + "2013-04-02": "Southland Anniversary Day", + "2013-04-25": "Anzac Day", + "2013-06-03": "Queen's Birthday", + "2013-10-25": "Hawke's Bay Anniversary Day", + "2013-10-28": "Labour Day", + "2013-11-04": "Marlborough Anniversary Day", + "2013-11-15": "Canterbury Anniversary Day", + "2013-12-02": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2013-12-25": "Christmas Day", + "2013-12-26": "Boxing Day", + "2014-01-01": "New Year's Day", + "2014-01-02": "Day after New Year's Day", + "2014-01-20": "Wellington Anniversary Day", + "2014-01-27": "Auckland Anniversary Day", + "2014-02-03": "Nelson Anniversary Day", + "2014-02-06": "Waitangi Day", + "2014-03-10": "Taranaki Anniversary Day", + "2014-03-24": "Otago Anniversary Day", + "2014-04-18": "Good Friday", + "2014-04-21": "Easter Monday", + "2014-04-22": "Southland Anniversary Day", + "2014-04-25": "Anzac Day", + "2014-06-02": "Queen's Birthday", + "2014-10-24": "Hawke's Bay Anniversary Day", + "2014-10-27": "Labour Day", + "2014-11-03": "Marlborough Anniversary Day", + "2014-11-14": "Canterbury Anniversary Day", + "2014-12-01": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2014-12-25": "Christmas Day", + "2014-12-26": "Boxing Day", + "2015-01-01": "New Year's Day", + "2015-01-02": "Day after New Year's Day", + "2015-01-19": "Wellington Anniversary Day", + "2015-01-26": "Auckland Anniversary Day", + "2015-02-02": "Nelson Anniversary Day", + "2015-02-06": "Waitangi Day", + "2015-03-09": "Taranaki Anniversary Day", + "2015-03-23": "Otago Anniversary Day", + "2015-04-03": "Good Friday", + "2015-04-06": "Easter Monday", + "2015-04-07": "Southland Anniversary Day", + "2015-04-25": "Anzac Day", + "2015-04-27": "Anzac Day (Observed)", + "2015-06-01": "Queen's Birthday", + "2015-10-23": "Hawke's Bay Anniversary Day", + "2015-10-26": "Labour Day", + "2015-11-02": "Marlborough Anniversary Day", + "2015-11-13": "Canterbury Anniversary Day", + "2015-11-30": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2015-12-25": "Christmas Day", + "2015-12-26": "Boxing Day", + "2015-12-28": "Boxing Day (Observed)", + "2016-01-01": "New Year's Day", + "2016-01-02": "Day after New Year's Day", + "2016-01-04": "Day after New Year's Day (Observed)", + "2016-01-25": "Wellington Anniversary Day", + "2016-02-01": "Auckland Anniversary Day; Nelson Anniversary Day", + "2016-02-06": "Waitangi Day", + "2016-02-08": "Waitangi Day (Observed)", + "2016-03-14": "Taranaki Anniversary Day", + "2016-03-21": "Otago Anniversary Day", + "2016-03-25": "Good Friday", + "2016-03-28": "Easter Monday", + "2016-03-29": "Southland Anniversary Day", + "2016-04-25": "Anzac Day", + "2016-06-06": "Queen's Birthday", + "2016-10-21": "Hawke's Bay Anniversary Day", + "2016-10-24": "Labour Day", + "2016-10-31": "Marlborough Anniversary Day", + "2016-11-11": "Canterbury Anniversary Day", + "2016-11-28": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "Boxing Day", + "2016-12-27": "Christmas Day (Observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "Day after New Year's Day", + "2017-01-03": "New Year's Day (Observed)", + "2017-01-23": "Wellington Anniversary Day", + "2017-01-30": "Auckland Anniversary Day; Nelson Anniversary Day", + "2017-02-06": "Waitangi Day", + "2017-03-13": "Taranaki Anniversary Day", + "2017-03-20": "Otago Anniversary Day", + "2017-04-14": "Good Friday", + "2017-04-17": "Easter Monday", + "2017-04-18": "Southland Anniversary Day", + "2017-04-25": "Anzac Day", + "2017-06-05": "Queen's Birthday", + "2017-10-20": "Hawke's Bay Anniversary Day", + "2017-10-23": "Labour Day", + "2017-10-30": "Marlborough Anniversary Day", + "2017-11-17": "Canterbury Anniversary Day", + "2017-11-27": "Chatham Islands Anniversary Day", + "2017-12-04": "West Coast Anniversary Day", + "2017-12-25": "Christmas Day", + "2017-12-26": "Boxing Day", + "2018-01-01": "New Year's Day", + "2018-01-02": "Day after New Year's Day", + "2018-01-22": "Wellington Anniversary Day", + "2018-01-29": "Auckland Anniversary Day; Nelson Anniversary Day", + "2018-02-06": "Waitangi Day", + "2018-03-12": "Taranaki Anniversary Day", + "2018-03-26": "Otago Anniversary Day", + "2018-03-30": "Good Friday", + "2018-04-02": "Easter Monday", + "2018-04-03": "Southland Anniversary Day", + "2018-04-25": "Anzac Day", + "2018-06-04": "Queen's Birthday", + "2018-10-19": "Hawke's Bay Anniversary Day", + "2018-10-22": "Labour Day", + "2018-10-29": "Marlborough Anniversary Day", + "2018-11-16": "Canterbury Anniversary Day", + "2018-12-03": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2018-12-25": "Christmas Day", + "2018-12-26": "Boxing Day", + "2019-01-01": "New Year's Day", + "2019-01-02": "Day after New Year's Day", + "2019-01-21": "Wellington Anniversary Day", + "2019-01-28": "Auckland Anniversary Day", + "2019-02-04": "Nelson Anniversary Day", + "2019-02-06": "Waitangi Day", + "2019-03-11": "Taranaki Anniversary Day", + "2019-03-25": "Otago Anniversary Day", + "2019-04-19": "Good Friday", + "2019-04-22": "Easter Monday", + "2019-04-23": "Southland Anniversary Day", + "2019-04-25": "Anzac Day", + "2019-06-03": "Queen's Birthday", + "2019-10-25": "Hawke's Bay Anniversary Day", + "2019-10-28": "Labour Day", + "2019-11-04": "Marlborough Anniversary Day", + "2019-11-15": "Canterbury Anniversary Day", + "2019-12-02": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2019-12-25": "Christmas Day", + "2019-12-26": "Boxing Day", + "2020-01-01": "New Year's Day", + "2020-01-02": "Day after New Year's Day", + "2020-01-20": "Wellington Anniversary Day", + "2020-01-27": "Auckland Anniversary Day", + "2020-02-03": "Nelson Anniversary Day", + "2020-02-06": "Waitangi Day", + "2020-03-09": "Taranaki Anniversary Day", + "2020-03-23": "Otago Anniversary Day", + "2020-04-10": "Good Friday", + "2020-04-13": "Easter Monday", + "2020-04-14": "Southland Anniversary Day", + "2020-04-25": "Anzac Day", + "2020-04-27": "Anzac Day (Observed)", + "2020-06-01": "Queen's Birthday", + "2020-10-23": "Hawke's Bay Anniversary Day", + "2020-10-26": "Labour Day", + "2020-11-02": "Marlborough Anniversary Day", + "2020-11-13": "Canterbury Anniversary Day", + "2020-11-30": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2020-12-25": "Christmas Day", + "2020-12-26": "Boxing Day", + "2020-12-28": "Boxing Day (Observed)", + "2021-01-01": "New Year's Day", + "2021-01-02": "Day after New Year's Day", + "2021-01-04": "Day after New Year's Day (Observed)", + "2021-01-25": "Wellington Anniversary Day", + "2021-02-01": "Auckland Anniversary Day; Nelson Anniversary Day", + "2021-02-06": "Waitangi Day", + "2021-02-08": "Waitangi Day (Observed)", + "2021-03-08": "Taranaki Anniversary Day", + "2021-03-22": "Otago Anniversary Day", + "2021-04-02": "Good Friday", + "2021-04-05": "Easter Monday", + "2021-04-06": "Southland Anniversary Day", + "2021-04-25": "Anzac Day", + "2021-04-26": "Anzac Day (Observed)", + "2021-06-07": "Queen's Birthday", + "2021-10-22": "Hawke's Bay Anniversary Day", + "2021-10-25": "Labour Day", + "2021-11-01": "Marlborough Anniversary Day", + "2021-11-12": "Canterbury Anniversary Day", + "2021-11-29": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2021-12-25": "Christmas Day", + "2021-12-26": "Boxing Day", + "2021-12-27": "Christmas Day (Observed)", + "2021-12-28": "Boxing Day (Observed)", + "2022-01-01": "New Year's Day", + "2022-01-02": "Day after New Year's Day", + "2022-01-03": "New Year's Day (Observed)", + "2022-01-04": "Day after New Year's Day (Observed)", + "2022-01-24": "Wellington Anniversary Day", + "2022-01-31": "Auckland Anniversary Day; Nelson Anniversary Day", + "2022-02-06": "Waitangi Day", + "2022-02-07": "Waitangi Day (Observed)", + "2022-03-14": "Taranaki Anniversary Day", + "2022-03-21": "Otago Anniversary Day", + "2022-04-15": "Good Friday", + "2022-04-18": "Easter Monday", + "2022-04-19": "Southland Anniversary Day", + "2022-04-25": "Anzac Day", + "2022-06-06": "Queen's Birthday", + "2022-06-24": "Matariki", + "2022-09-26": "Queen Elizabeth II Memorial Day", + "2022-10-21": "Hawke's Bay Anniversary Day", + "2022-10-24": "Labour Day", + "2022-10-31": "Marlborough Anniversary Day", + "2022-11-11": "Canterbury Anniversary Day", + "2022-11-28": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "Boxing Day", + "2022-12-27": "Christmas Day (Observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "Day after New Year's Day", + "2023-01-03": "New Year's Day (Observed)", + "2023-01-23": "Wellington Anniversary Day", + "2023-01-30": "Auckland Anniversary Day; Nelson Anniversary Day", + "2023-02-06": "Waitangi Day", + "2023-03-13": "Taranaki Anniversary Day", + "2023-03-20": "Otago Anniversary Day", + "2023-04-07": "Good Friday", + "2023-04-10": "Easter Monday", + "2023-04-11": "Southland Anniversary Day", + "2023-04-25": "Anzac Day", + "2023-06-05": "King's Birthday", + "2023-07-14": "Matariki", + "2023-10-20": "Hawke's Bay Anniversary Day", + "2023-10-23": "Labour Day", + "2023-10-30": "Marlborough Anniversary Day", + "2023-11-17": "Canterbury Anniversary Day", + "2023-11-27": "Chatham Islands Anniversary Day", + "2023-12-04": "West Coast Anniversary Day", + "2023-12-25": "Christmas Day", + "2023-12-26": "Boxing Day", + "2024-01-01": "New Year's Day", + "2024-01-02": "Day after New Year's Day", + "2024-01-22": "Wellington Anniversary Day", + "2024-01-29": "Auckland Anniversary Day; Nelson Anniversary Day", + "2024-02-06": "Waitangi Day", + "2024-03-11": "Taranaki Anniversary Day", + "2024-03-25": "Otago Anniversary Day", + "2024-03-29": "Good Friday", + "2024-04-01": "Easter Monday", + "2024-04-02": "Southland Anniversary Day", + "2024-04-25": "Anzac Day", + "2024-06-03": "King's Birthday", + "2024-06-28": "Matariki", + "2024-10-25": "Hawke's Bay Anniversary Day", + "2024-10-28": "Labour Day", + "2024-11-04": "Marlborough Anniversary Day", + "2024-11-15": "Canterbury Anniversary Day", + "2024-12-02": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2024-12-25": "Christmas Day", + "2024-12-26": "Boxing Day", + "2025-01-01": "New Year's Day", + "2025-01-02": "Day after New Year's Day", + "2025-01-20": "Wellington Anniversary Day", + "2025-01-27": "Auckland Anniversary Day", + "2025-02-03": "Nelson Anniversary Day", + "2025-02-06": "Waitangi Day", + "2025-03-10": "Taranaki Anniversary Day", + "2025-03-24": "Otago Anniversary Day", + "2025-04-18": "Good Friday", + "2025-04-21": "Easter Monday", + "2025-04-22": "Southland Anniversary Day", + "2025-04-25": "Anzac Day", + "2025-06-02": "King's Birthday", + "2025-06-20": "Matariki", + "2025-10-24": "Hawke's Bay Anniversary Day", + "2025-10-27": "Labour Day", + "2025-11-03": "Marlborough Anniversary Day", + "2025-11-14": "Canterbury Anniversary Day", + "2025-12-01": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2025-12-25": "Christmas Day", + "2025-12-26": "Boxing Day", + "2026-01-01": "New Year's Day", + "2026-01-02": "Day after New Year's Day", + "2026-01-19": "Wellington Anniversary Day", + "2026-01-26": "Auckland Anniversary Day", + "2026-02-02": "Nelson Anniversary Day", + "2026-02-06": "Waitangi Day", + "2026-03-09": "Taranaki Anniversary Day", + "2026-03-23": "Otago Anniversary Day", + "2026-04-03": "Good Friday", + "2026-04-06": "Easter Monday", + "2026-04-07": "Southland Anniversary Day", + "2026-04-25": "Anzac Day", + "2026-04-27": "Anzac Day (Observed)", + "2026-06-01": "King's Birthday", + "2026-07-10": "Matariki", + "2026-10-23": "Hawke's Bay Anniversary Day", + "2026-10-26": "Labour Day", + "2026-11-02": "Marlborough Anniversary Day", + "2026-11-13": "Canterbury Anniversary Day", + "2026-11-30": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2026-12-25": "Christmas Day", + "2026-12-26": "Boxing Day", + "2026-12-28": "Boxing Day (Observed)", + "2027-01-01": "New Year's Day", + "2027-01-02": "Day after New Year's Day", + "2027-01-04": "Day after New Year's Day (Observed)", + "2027-01-25": "Wellington Anniversary Day", + "2027-02-01": "Auckland Anniversary Day; Nelson Anniversary Day", + "2027-02-06": "Waitangi Day", + "2027-02-08": "Waitangi Day (Observed)", + "2027-03-08": "Taranaki Anniversary Day", + "2027-03-22": "Otago Anniversary Day", + "2027-03-26": "Good Friday", + "2027-03-29": "Easter Monday", + "2027-03-30": "Southland Anniversary Day", + "2027-04-25": "Anzac Day", + "2027-04-26": "Anzac Day (Observed)", + "2027-06-07": "King's Birthday", + "2027-06-25": "Matariki", + "2027-10-22": "Hawke's Bay Anniversary Day", + "2027-10-25": "Labour Day", + "2027-11-01": "Marlborough Anniversary Day", + "2027-11-12": "Canterbury Anniversary Day", + "2027-11-29": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2027-12-25": "Christmas Day", + "2027-12-26": "Boxing Day", + "2027-12-27": "Christmas Day (Observed)", + "2027-12-28": "Boxing Day (Observed)", + "2028-01-01": "New Year's Day", + "2028-01-02": "Day after New Year's Day", + "2028-01-03": "New Year's Day (Observed)", + "2028-01-04": "Day after New Year's Day (Observed)", + "2028-01-24": "Wellington Anniversary Day", + "2028-01-31": "Auckland Anniversary Day; Nelson Anniversary Day", + "2028-02-06": "Waitangi Day", + "2028-02-07": "Waitangi Day (Observed)", + "2028-03-13": "Taranaki Anniversary Day", + "2028-03-20": "Otago Anniversary Day", + "2028-04-14": "Good Friday", + "2028-04-17": "Easter Monday", + "2028-04-18": "Southland Anniversary Day", + "2028-04-25": "Anzac Day", + "2028-06-05": "King's Birthday", + "2028-07-14": "Matariki", + "2028-10-20": "Hawke's Bay Anniversary Day", + "2028-10-23": "Labour Day", + "2028-10-30": "Marlborough Anniversary Day", + "2028-11-17": "Canterbury Anniversary Day", + "2028-11-27": "Chatham Islands Anniversary Day", + "2028-12-04": "West Coast Anniversary Day", + "2028-12-25": "Christmas Day", + "2028-12-26": "Boxing Day", + "2029-01-01": "New Year's Day", + "2029-01-02": "Day after New Year's Day", + "2029-01-22": "Wellington Anniversary Day", + "2029-01-29": "Auckland Anniversary Day; Nelson Anniversary Day", + "2029-02-06": "Waitangi Day", + "2029-03-12": "Taranaki Anniversary Day", + "2029-03-26": "Otago Anniversary Day", + "2029-03-30": "Good Friday", + "2029-04-02": "Easter Monday", + "2029-04-03": "Southland Anniversary Day", + "2029-04-25": "Anzac Day", + "2029-06-04": "King's Birthday", + "2029-07-06": "Matariki", + "2029-10-19": "Hawke's Bay Anniversary Day", + "2029-10-22": "Labour Day", + "2029-10-29": "Marlborough Anniversary Day", + "2029-11-16": "Canterbury Anniversary Day", + "2029-12-03": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2029-12-25": "Christmas Day", + "2029-12-26": "Boxing Day", + "2030-01-01": "New Year's Day", + "2030-01-02": "Day after New Year's Day", + "2030-01-21": "Wellington Anniversary Day", + "2030-01-28": "Auckland Anniversary Day", + "2030-02-04": "Nelson Anniversary Day", + "2030-02-06": "Waitangi Day", + "2030-03-11": "Taranaki Anniversary Day", + "2030-03-25": "Otago Anniversary Day", + "2030-04-19": "Good Friday", + "2030-04-22": "Easter Monday", + "2030-04-23": "Southland Anniversary Day", + "2030-04-25": "Anzac Day", + "2030-06-03": "King's Birthday", + "2030-06-21": "Matariki", + "2030-10-25": "Hawke's Bay Anniversary Day", + "2030-10-28": "Labour Day", + "2030-11-04": "Marlborough Anniversary Day", + "2030-11-15": "Canterbury Anniversary Day", + "2030-12-02": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2030-12-25": "Christmas Day", + "2030-12-26": "Boxing Day", + "2031-01-01": "New Year's Day", + "2031-01-02": "Day after New Year's Day", + "2031-01-20": "Wellington Anniversary Day", + "2031-01-27": "Auckland Anniversary Day", + "2031-02-03": "Nelson Anniversary Day", + "2031-02-06": "Waitangi Day", + "2031-03-10": "Taranaki Anniversary Day", + "2031-03-24": "Otago Anniversary Day", + "2031-04-11": "Good Friday", + "2031-04-14": "Easter Monday", + "2031-04-15": "Southland Anniversary Day", + "2031-04-25": "Anzac Day", + "2031-06-02": "King's Birthday", + "2031-07-11": "Matariki", + "2031-10-24": "Hawke's Bay Anniversary Day", + "2031-10-27": "Labour Day", + "2031-11-03": "Marlborough Anniversary Day", + "2031-11-14": "Canterbury Anniversary Day", + "2031-12-01": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2031-12-25": "Christmas Day", + "2031-12-26": "Boxing Day", + "2032-01-01": "New Year's Day", + "2032-01-02": "Day after New Year's Day", + "2032-01-19": "Wellington Anniversary Day", + "2032-01-26": "Auckland Anniversary Day", + "2032-02-02": "Nelson Anniversary Day", + "2032-02-06": "Waitangi Day", + "2032-03-08": "Taranaki Anniversary Day", + "2032-03-22": "Otago Anniversary Day", + "2032-03-26": "Good Friday", + "2032-03-29": "Easter Monday", + "2032-03-30": "Southland Anniversary Day", + "2032-04-25": "Anzac Day", + "2032-04-26": "Anzac Day (Observed)", + "2032-06-07": "King's Birthday", + "2032-07-02": "Matariki", + "2032-10-22": "Hawke's Bay Anniversary Day", + "2032-10-25": "Labour Day", + "2032-11-01": "Marlborough Anniversary Day", + "2032-11-12": "Canterbury Anniversary Day", + "2032-11-29": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2032-12-25": "Christmas Day", + "2032-12-26": "Boxing Day", + "2032-12-27": "Christmas Day (Observed)", + "2032-12-28": "Boxing Day (Observed)", + "2033-01-01": "New Year's Day", + "2033-01-02": "Day after New Year's Day", + "2033-01-03": "New Year's Day (Observed)", + "2033-01-04": "Day after New Year's Day (Observed)", + "2033-01-24": "Wellington Anniversary Day", + "2033-01-31": "Auckland Anniversary Day; Nelson Anniversary Day", + "2033-02-06": "Waitangi Day", + "2033-02-07": "Waitangi Day (Observed)", + "2033-03-14": "Taranaki Anniversary Day", + "2033-03-21": "Otago Anniversary Day", + "2033-04-15": "Good Friday", + "2033-04-18": "Easter Monday", + "2033-04-19": "Southland Anniversary Day", + "2033-04-25": "Anzac Day", + "2033-06-06": "King's Birthday", + "2033-06-24": "Matariki", + "2033-10-21": "Hawke's Bay Anniversary Day", + "2033-10-24": "Labour Day", + "2033-10-31": "Marlborough Anniversary Day", + "2033-11-11": "Canterbury Anniversary Day", + "2033-11-28": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2033-12-25": "Christmas Day", + "2033-12-26": "Boxing Day", + "2033-12-27": "Christmas Day (Observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "Day after New Year's Day", + "2034-01-03": "New Year's Day (Observed)", + "2034-01-23": "Wellington Anniversary Day", + "2034-01-30": "Auckland Anniversary Day; Nelson Anniversary Day", + "2034-02-06": "Waitangi Day", + "2034-03-13": "Taranaki Anniversary Day", + "2034-03-20": "Otago Anniversary Day", + "2034-04-07": "Good Friday", + "2034-04-10": "Easter Monday", + "2034-04-11": "Southland Anniversary Day", + "2034-04-25": "Anzac Day", + "2034-06-05": "King's Birthday", + "2034-07-07": "Matariki", + "2034-10-20": "Hawke's Bay Anniversary Day", + "2034-10-23": "Labour Day", + "2034-10-30": "Marlborough Anniversary Day", + "2034-11-17": "Canterbury Anniversary Day", + "2034-11-27": "Chatham Islands Anniversary Day", + "2034-12-04": "West Coast Anniversary Day", + "2034-12-25": "Christmas Day", + "2034-12-26": "Boxing Day", + "2035-01-01": "New Year's Day", + "2035-01-02": "Day after New Year's Day", + "2035-01-22": "Wellington Anniversary Day", + "2035-01-29": "Auckland Anniversary Day; Nelson Anniversary Day", + "2035-02-06": "Waitangi Day", + "2035-03-12": "Taranaki Anniversary Day", + "2035-03-23": "Good Friday", + "2035-03-26": "Easter Monday", + "2035-03-27": "Otago Anniversary Day; Southland Anniversary Day", + "2035-04-25": "Anzac Day", + "2035-06-04": "King's Birthday", + "2035-06-29": "Matariki", + "2035-10-19": "Hawke's Bay Anniversary Day", + "2035-10-22": "Labour Day", + "2035-10-29": "Marlborough Anniversary Day", + "2035-11-16": "Canterbury Anniversary Day", + "2035-12-03": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2035-12-25": "Christmas Day", + "2035-12-26": "Boxing Day", + "2036-01-01": "New Year's Day", + "2036-01-02": "Day after New Year's Day", + "2036-01-21": "Wellington Anniversary Day", + "2036-01-28": "Auckland Anniversary Day", + "2036-02-04": "Nelson Anniversary Day", + "2036-02-06": "Waitangi Day", + "2036-03-10": "Taranaki Anniversary Day", + "2036-03-24": "Otago Anniversary Day", + "2036-04-11": "Good Friday", + "2036-04-14": "Easter Monday", + "2036-04-15": "Southland Anniversary Day", + "2036-04-25": "Anzac Day", + "2036-06-02": "King's Birthday", + "2036-07-18": "Matariki", + "2036-10-24": "Hawke's Bay Anniversary Day", + "2036-10-27": "Labour Day", + "2036-11-03": "Marlborough Anniversary Day", + "2036-11-14": "Canterbury Anniversary Day", + "2036-12-01": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2036-12-25": "Christmas Day", + "2036-12-26": "Boxing Day", + "2037-01-01": "New Year's Day", + "2037-01-02": "Day after New Year's Day", + "2037-01-19": "Wellington Anniversary Day", + "2037-01-26": "Auckland Anniversary Day", + "2037-02-02": "Nelson Anniversary Day", + "2037-02-06": "Waitangi Day", + "2037-03-09": "Taranaki Anniversary Day", + "2037-03-23": "Otago Anniversary Day", + "2037-04-03": "Good Friday", + "2037-04-06": "Easter Monday", + "2037-04-07": "Southland Anniversary Day", + "2037-04-25": "Anzac Day", + "2037-04-27": "Anzac Day (Observed)", + "2037-06-01": "King's Birthday", + "2037-07-10": "Matariki", + "2037-10-23": "Hawke's Bay Anniversary Day", + "2037-10-26": "Labour Day", + "2037-11-02": "Marlborough Anniversary Day", + "2037-11-13": "Canterbury Anniversary Day", + "2037-11-30": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2037-12-25": "Christmas Day", + "2037-12-26": "Boxing Day", + "2037-12-28": "Boxing Day (Observed)", + "2038-01-01": "New Year's Day", + "2038-01-02": "Day after New Year's Day", + "2038-01-04": "Day after New Year's Day (Observed)", + "2038-01-25": "Wellington Anniversary Day", + "2038-02-01": "Auckland Anniversary Day; Nelson Anniversary Day", + "2038-02-06": "Waitangi Day", + "2038-02-08": "Waitangi Day (Observed)", + "2038-03-08": "Taranaki Anniversary Day", + "2038-03-22": "Otago Anniversary Day", + "2038-04-23": "Good Friday", + "2038-04-25": "Anzac Day", + "2038-04-26": "Anzac Day (Observed); Easter Monday", + "2038-04-27": "Southland Anniversary Day", + "2038-06-07": "King's Birthday", + "2038-06-25": "Matariki", + "2038-10-22": "Hawke's Bay Anniversary Day", + "2038-10-25": "Labour Day", + "2038-11-01": "Marlborough Anniversary Day", + "2038-11-12": "Canterbury Anniversary Day", + "2038-11-29": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2038-12-25": "Christmas Day", + "2038-12-26": "Boxing Day", + "2038-12-27": "Christmas Day (Observed)", + "2038-12-28": "Boxing Day (Observed)", + "2039-01-01": "New Year's Day", + "2039-01-02": "Day after New Year's Day", + "2039-01-03": "New Year's Day (Observed)", + "2039-01-04": "Day after New Year's Day (Observed)", + "2039-01-24": "Wellington Anniversary Day", + "2039-01-31": "Auckland Anniversary Day; Nelson Anniversary Day", + "2039-02-06": "Waitangi Day", + "2039-02-07": "Waitangi Day (Observed)", + "2039-03-14": "Taranaki Anniversary Day", + "2039-03-21": "Otago Anniversary Day", + "2039-04-08": "Good Friday", + "2039-04-11": "Easter Monday", + "2039-04-12": "Southland Anniversary Day", + "2039-04-25": "Anzac Day", + "2039-06-06": "King's Birthday", + "2039-07-15": "Matariki", + "2039-10-21": "Hawke's Bay Anniversary Day", + "2039-10-24": "Labour Day", + "2039-10-31": "Marlborough Anniversary Day", + "2039-11-11": "Canterbury Anniversary Day", + "2039-11-28": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Boxing Day", + "2039-12-27": "Christmas Day (Observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "Day after New Year's Day", + "2040-01-03": "New Year's Day (Observed)", + "2040-01-23": "Wellington Anniversary Day", + "2040-01-30": "Auckland Anniversary Day; Nelson Anniversary Day", + "2040-02-06": "Waitangi Day", + "2040-03-12": "Taranaki Anniversary Day", + "2040-03-26": "Otago Anniversary Day", + "2040-03-30": "Good Friday", + "2040-04-02": "Easter Monday", + "2040-04-03": "Southland Anniversary Day", + "2040-04-25": "Anzac Day", + "2040-06-04": "King's Birthday", + "2040-07-06": "Matariki", + "2040-10-19": "Hawke's Bay Anniversary Day", + "2040-10-22": "Labour Day", + "2040-10-29": "Marlborough Anniversary Day", + "2040-11-16": "Canterbury Anniversary Day", + "2040-12-03": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2040-12-25": "Christmas Day", + "2040-12-26": "Boxing Day", + "2041-01-01": "New Year's Day", + "2041-01-02": "Day after New Year's Day", + "2041-01-21": "Wellington Anniversary Day", + "2041-01-28": "Auckland Anniversary Day", + "2041-02-04": "Nelson Anniversary Day", + "2041-02-06": "Waitangi Day", + "2041-03-11": "Taranaki Anniversary Day", + "2041-03-25": "Otago Anniversary Day", + "2041-04-19": "Good Friday", + "2041-04-22": "Easter Monday", + "2041-04-23": "Southland Anniversary Day", + "2041-04-25": "Anzac Day", + "2041-06-03": "King's Birthday", + "2041-07-19": "Matariki", + "2041-10-25": "Hawke's Bay Anniversary Day", + "2041-10-28": "Labour Day", + "2041-11-04": "Marlborough Anniversary Day", + "2041-11-15": "Canterbury Anniversary Day", + "2041-12-02": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2041-12-25": "Christmas Day", + "2041-12-26": "Boxing Day", + "2042-01-01": "New Year's Day", + "2042-01-02": "Day after New Year's Day", + "2042-01-20": "Wellington Anniversary Day", + "2042-01-27": "Auckland Anniversary Day", + "2042-02-03": "Nelson Anniversary Day", + "2042-02-06": "Waitangi Day", + "2042-03-10": "Taranaki Anniversary Day", + "2042-03-24": "Otago Anniversary Day", + "2042-04-04": "Good Friday", + "2042-04-07": "Easter Monday", + "2042-04-08": "Southland Anniversary Day", + "2042-04-25": "Anzac Day", + "2042-06-02": "King's Birthday", + "2042-07-11": "Matariki", + "2042-10-24": "Hawke's Bay Anniversary Day", + "2042-10-27": "Labour Day", + "2042-11-03": "Marlborough Anniversary Day", + "2042-11-14": "Canterbury Anniversary Day", + "2042-12-01": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2042-12-25": "Christmas Day", + "2042-12-26": "Boxing Day", + "2043-01-01": "New Year's Day", + "2043-01-02": "Day after New Year's Day", + "2043-01-19": "Wellington Anniversary Day", + "2043-01-26": "Auckland Anniversary Day", + "2043-02-02": "Nelson Anniversary Day", + "2043-02-06": "Waitangi Day", + "2043-03-09": "Taranaki Anniversary Day", + "2043-03-23": "Otago Anniversary Day", + "2043-03-27": "Good Friday", + "2043-03-30": "Easter Monday", + "2043-03-31": "Southland Anniversary Day", + "2043-04-25": "Anzac Day", + "2043-04-27": "Anzac Day (Observed)", + "2043-06-01": "King's Birthday", + "2043-07-03": "Matariki", + "2043-10-23": "Hawke's Bay Anniversary Day", + "2043-10-26": "Labour Day", + "2043-11-02": "Marlborough Anniversary Day", + "2043-11-13": "Canterbury Anniversary Day", + "2043-11-30": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2043-12-25": "Christmas Day", + "2043-12-26": "Boxing Day", + "2043-12-28": "Boxing Day (Observed)", + "2044-01-01": "New Year's Day", + "2044-01-02": "Day after New Year's Day", + "2044-01-04": "Day after New Year's Day (Observed)", + "2044-01-25": "Wellington Anniversary Day", + "2044-02-01": "Auckland Anniversary Day; Nelson Anniversary Day", + "2044-02-06": "Waitangi Day", + "2044-02-08": "Waitangi Day (Observed)", + "2044-03-14": "Taranaki Anniversary Day", + "2044-03-21": "Otago Anniversary Day", + "2044-04-15": "Good Friday", + "2044-04-18": "Easter Monday", + "2044-04-19": "Southland Anniversary Day", + "2044-04-25": "Anzac Day", + "2044-06-06": "King's Birthday", + "2044-06-24": "Matariki", + "2044-10-21": "Hawke's Bay Anniversary Day", + "2044-10-24": "Labour Day", + "2044-10-31": "Marlborough Anniversary Day", + "2044-11-11": "Canterbury Anniversary Day", + "2044-11-28": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "Boxing Day", + "2044-12-27": "Christmas Day (Observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "Day after New Year's Day", + "2045-01-03": "New Year's Day (Observed)", + "2045-01-23": "Wellington Anniversary Day", + "2045-01-30": "Auckland Anniversary Day; Nelson Anniversary Day", + "2045-02-06": "Waitangi Day", + "2045-03-13": "Taranaki Anniversary Day", + "2045-03-20": "Otago Anniversary Day", + "2045-04-07": "Good Friday", + "2045-04-10": "Easter Monday", + "2045-04-11": "Southland Anniversary Day", + "2045-04-25": "Anzac Day", + "2045-06-05": "King's Birthday", + "2045-07-07": "Matariki", + "2045-10-20": "Hawke's Bay Anniversary Day", + "2045-10-23": "Labour Day", + "2045-10-30": "Marlborough Anniversary Day", + "2045-11-17": "Canterbury Anniversary Day", + "2045-11-27": "Chatham Islands Anniversary Day", + "2045-12-04": "West Coast Anniversary Day", + "2045-12-25": "Christmas Day", + "2045-12-26": "Boxing Day", + "2046-01-01": "New Year's Day", + "2046-01-02": "Day after New Year's Day", + "2046-01-22": "Wellington Anniversary Day", + "2046-01-29": "Auckland Anniversary Day; Nelson Anniversary Day", + "2046-02-06": "Waitangi Day", + "2046-03-12": "Taranaki Anniversary Day", + "2046-03-23": "Good Friday", + "2046-03-26": "Easter Monday", + "2046-03-27": "Otago Anniversary Day; Southland Anniversary Day", + "2046-04-25": "Anzac Day", + "2046-06-04": "King's Birthday", + "2046-06-29": "Matariki", + "2046-10-19": "Hawke's Bay Anniversary Day", + "2046-10-22": "Labour Day", + "2046-10-29": "Marlborough Anniversary Day", + "2046-11-16": "Canterbury Anniversary Day", + "2046-12-03": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2046-12-25": "Christmas Day", + "2046-12-26": "Boxing Day", + "2047-01-01": "New Year's Day", + "2047-01-02": "Day after New Year's Day", + "2047-01-21": "Wellington Anniversary Day", + "2047-01-28": "Auckland Anniversary Day", + "2047-02-04": "Nelson Anniversary Day", + "2047-02-06": "Waitangi Day", + "2047-03-11": "Taranaki Anniversary Day", + "2047-03-25": "Otago Anniversary Day", + "2047-04-12": "Good Friday", + "2047-04-15": "Easter Monday", + "2047-04-16": "Southland Anniversary Day", + "2047-04-25": "Anzac Day", + "2047-06-03": "King's Birthday", + "2047-07-19": "Matariki", + "2047-10-25": "Hawke's Bay Anniversary Day", + "2047-10-28": "Labour Day", + "2047-11-04": "Marlborough Anniversary Day", + "2047-11-15": "Canterbury Anniversary Day", + "2047-12-02": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2047-12-25": "Christmas Day", + "2047-12-26": "Boxing Day", + "2048-01-01": "New Year's Day", + "2048-01-02": "Day after New Year's Day", + "2048-01-20": "Wellington Anniversary Day", + "2048-01-27": "Auckland Anniversary Day", + "2048-02-03": "Nelson Anniversary Day", + "2048-02-06": "Waitangi Day", + "2048-03-09": "Taranaki Anniversary Day", + "2048-03-23": "Otago Anniversary Day", + "2048-04-03": "Good Friday", + "2048-04-06": "Easter Monday", + "2048-04-07": "Southland Anniversary Day", + "2048-04-25": "Anzac Day", + "2048-04-27": "Anzac Day (Observed)", + "2048-06-01": "King's Birthday", + "2048-07-03": "Matariki", + "2048-10-23": "Hawke's Bay Anniversary Day", + "2048-10-26": "Labour Day", + "2048-11-02": "Marlborough Anniversary Day", + "2048-11-13": "Canterbury Anniversary Day", + "2048-11-30": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2048-12-25": "Christmas Day", + "2048-12-26": "Boxing Day", + "2048-12-28": "Boxing Day (Observed)", + "2049-01-01": "New Year's Day", + "2049-01-02": "Day after New Year's Day", + "2049-01-04": "Day after New Year's Day (Observed)", + "2049-01-25": "Wellington Anniversary Day", + "2049-02-01": "Auckland Anniversary Day; Nelson Anniversary Day", + "2049-02-06": "Waitangi Day", + "2049-02-08": "Waitangi Day (Observed)", + "2049-03-08": "Taranaki Anniversary Day", + "2049-03-22": "Otago Anniversary Day", + "2049-04-16": "Good Friday", + "2049-04-19": "Easter Monday", + "2049-04-20": "Southland Anniversary Day", + "2049-04-25": "Anzac Day", + "2049-04-26": "Anzac Day (Observed)", + "2049-06-07": "King's Birthday", + "2049-06-25": "Matariki", + "2049-10-22": "Hawke's Bay Anniversary Day", + "2049-10-25": "Labour Day", + "2049-11-01": "Marlborough Anniversary Day", + "2049-11-12": "Canterbury Anniversary Day", + "2049-11-29": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2049-12-25": "Christmas Day", + "2049-12-26": "Boxing Day", + "2049-12-27": "Christmas Day (Observed)", + "2049-12-28": "Boxing Day (Observed)", + "2050-01-01": "New Year's Day", + "2050-01-02": "Day after New Year's Day", + "2050-01-03": "New Year's Day (Observed)", + "2050-01-04": "Day after New Year's Day (Observed)", + "2050-01-24": "Wellington Anniversary Day", + "2050-01-31": "Auckland Anniversary Day; Nelson Anniversary Day", + "2050-02-06": "Waitangi Day", + "2050-02-07": "Waitangi Day (Observed)", + "2050-03-14": "Taranaki Anniversary Day", + "2050-03-21": "Otago Anniversary Day", + "2050-04-08": "Good Friday", + "2050-04-11": "Easter Monday", + "2050-04-12": "Southland Anniversary Day", + "2050-04-25": "Anzac Day", + "2050-06-06": "King's Birthday", + "2050-07-15": "Matariki", + "2050-10-21": "Hawke's Bay Anniversary Day", + "2050-10-24": "Labour Day", + "2050-10-31": "Marlborough Anniversary Day", + "2050-11-11": "Canterbury Anniversary Day", + "2050-11-28": "Chatham Islands Anniversary Day; West Coast Anniversary Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "Boxing Day", + "2050-12-27": "Christmas Day (Observed)" +} diff --git a/snapshots/countries/PA.json b/snapshots/countries/PA.json new file mode 100644 index 000000000..cd44aa86c --- /dev/null +++ b/snapshots/countries/PA.json @@ -0,0 +1,1334 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-02": "New Year's Day (Observed)", + "1950-01-09": "Martyrs' Day", + "1950-02-21": "Carnival", + "1950-04-07": "Good Friday", + "1950-05-01": "Labour Day", + "1950-11-03": "Separation Day", + "1950-11-04": "National Symbols Day", + "1950-11-05": "Colon Day", + "1950-11-10": "Los Santos Uprising Day", + "1950-11-28": "Independence Day", + "1950-12-08": "Mother's Day", + "1950-12-25": "Christmas Day", + "1951-01-01": "New Year's Day", + "1951-01-09": "Martyrs' Day", + "1951-02-06": "Carnival", + "1951-03-23": "Good Friday", + "1951-05-01": "Labour Day", + "1951-11-03": "Separation Day", + "1951-11-04": "National Symbols Day", + "1951-11-05": "Colon Day", + "1951-11-10": "Los Santos Uprising Day", + "1951-11-28": "Independence Day", + "1951-12-08": "Mother's Day", + "1951-12-25": "Christmas Day", + "1952-01-01": "New Year's Day", + "1952-01-09": "Martyrs' Day", + "1952-02-26": "Carnival", + "1952-04-11": "Good Friday", + "1952-05-01": "Labour Day", + "1952-11-03": "Separation Day", + "1952-11-04": "National Symbols Day", + "1952-11-05": "Colon Day", + "1952-11-10": "Los Santos Uprising Day", + "1952-11-28": "Independence Day", + "1952-12-08": "Mother's Day", + "1952-12-25": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-01-09": "Martyrs' Day", + "1953-02-17": "Carnival", + "1953-04-03": "Good Friday", + "1953-05-01": "Labour Day", + "1953-11-03": "Separation Day", + "1953-11-04": "National Symbols Day", + "1953-11-05": "Colon Day", + "1953-11-10": "Los Santos Uprising Day", + "1953-11-28": "Independence Day", + "1953-12-08": "Mother's Day", + "1953-12-25": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-01-09": "Martyrs' Day", + "1954-03-02": "Carnival", + "1954-04-16": "Good Friday", + "1954-05-01": "Labour Day", + "1954-11-03": "Separation Day", + "1954-11-04": "National Symbols Day", + "1954-11-05": "Colon Day", + "1954-11-10": "Los Santos Uprising Day", + "1954-11-28": "Independence Day", + "1954-11-29": "Independence Day (Observed)", + "1954-12-08": "Mother's Day", + "1954-12-25": "Christmas Day", + "1955-01-01": "New Year's Day", + "1955-01-09": "Martyrs' Day", + "1955-01-10": "Martyrs' Day (Observed)", + "1955-02-22": "Carnival", + "1955-04-08": "Good Friday", + "1955-05-01": "Labour Day", + "1955-05-02": "Labour Day (Observed)", + "1955-11-03": "Separation Day", + "1955-11-04": "National Symbols Day", + "1955-11-05": "Colon Day", + "1955-11-10": "Los Santos Uprising Day", + "1955-11-28": "Independence Day", + "1955-12-08": "Mother's Day", + "1955-12-25": "Christmas Day", + "1955-12-26": "Christmas Day (Observed)", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year's Day (Observed)", + "1956-01-09": "Martyrs' Day", + "1956-02-14": "Carnival", + "1956-03-30": "Good Friday", + "1956-05-01": "Labour Day", + "1956-11-03": "Separation Day", + "1956-11-04": "National Symbols Day", + "1956-11-05": "Colon Day", + "1956-11-10": "Los Santos Uprising Day", + "1956-11-28": "Independence Day", + "1956-12-08": "Mother's Day", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-01-09": "Martyrs' Day", + "1957-03-05": "Carnival", + "1957-04-19": "Good Friday", + "1957-05-01": "Labour Day", + "1957-11-03": "Separation Day", + "1957-11-04": "National Symbols Day", + "1957-11-05": "Colon Day", + "1957-11-10": "Los Santos Uprising Day", + "1957-11-28": "Independence Day", + "1957-12-08": "Mother's Day", + "1957-12-09": "Mother's Day (Observed)", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-01-09": "Martyrs' Day", + "1958-02-18": "Carnival", + "1958-04-04": "Good Friday", + "1958-05-01": "Labour Day", + "1958-11-03": "Separation Day", + "1958-11-04": "National Symbols Day", + "1958-11-05": "Colon Day", + "1958-11-10": "Los Santos Uprising Day", + "1958-11-28": "Independence Day", + "1958-12-08": "Mother's Day", + "1958-12-25": "Christmas Day", + "1959-01-01": "New Year's Day", + "1959-01-09": "Martyrs' Day", + "1959-02-10": "Carnival", + "1959-03-27": "Good Friday", + "1959-05-01": "Labour Day", + "1959-11-03": "Separation Day", + "1959-11-04": "National Symbols Day", + "1959-11-05": "Colon Day", + "1959-11-10": "Los Santos Uprising Day", + "1959-11-28": "Independence Day", + "1959-12-08": "Mother's Day", + "1959-12-25": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-01-09": "Martyrs' Day", + "1960-03-01": "Carnival", + "1960-04-15": "Good Friday", + "1960-05-01": "Labour Day", + "1960-05-02": "Labour Day (Observed)", + "1960-11-03": "Separation Day", + "1960-11-04": "National Symbols Day", + "1960-11-05": "Colon Day", + "1960-11-10": "Los Santos Uprising Day", + "1960-11-28": "Independence Day", + "1960-12-08": "Mother's Day", + "1960-12-25": "Christmas Day", + "1960-12-26": "Christmas Day (Observed)", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day (Observed)", + "1961-01-09": "Martyrs' Day", + "1961-02-14": "Carnival", + "1961-03-31": "Good Friday", + "1961-05-01": "Labour Day", + "1961-11-03": "Separation Day", + "1961-11-04": "National Symbols Day", + "1961-11-05": "Colon Day", + "1961-11-10": "Los Santos Uprising Day", + "1961-11-28": "Independence Day", + "1961-12-08": "Mother's Day", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-01-09": "Martyrs' Day", + "1962-03-06": "Carnival", + "1962-04-20": "Good Friday", + "1962-05-01": "Labour Day", + "1962-11-03": "Separation Day", + "1962-11-04": "National Symbols Day", + "1962-11-05": "Colon Day", + "1962-11-10": "Los Santos Uprising Day", + "1962-11-28": "Independence Day", + "1962-12-08": "Mother's Day", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-01-09": "Martyrs' Day", + "1963-02-26": "Carnival", + "1963-04-12": "Good Friday", + "1963-05-01": "Labour Day", + "1963-11-03": "Separation Day", + "1963-11-04": "National Symbols Day", + "1963-11-05": "Colon Day", + "1963-11-10": "Los Santos Uprising Day", + "1963-11-28": "Independence Day", + "1963-12-08": "Mother's Day", + "1963-12-09": "Mother's Day (Observed)", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-01-09": "Martyrs' Day", + "1964-02-11": "Carnival", + "1964-03-27": "Good Friday", + "1964-05-01": "Labour Day", + "1964-11-03": "Separation Day", + "1964-11-04": "National Symbols Day", + "1964-11-05": "Colon Day", + "1964-11-10": "Los Santos Uprising Day", + "1964-11-28": "Independence Day", + "1964-12-08": "Mother's Day", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-01-09": "Martyrs' Day", + "1965-03-02": "Carnival", + "1965-04-16": "Good Friday", + "1965-05-01": "Labour Day", + "1965-11-03": "Separation Day", + "1965-11-04": "National Symbols Day", + "1965-11-05": "Colon Day", + "1965-11-10": "Los Santos Uprising Day", + "1965-11-28": "Independence Day", + "1965-11-29": "Independence Day (Observed)", + "1965-12-08": "Mother's Day", + "1965-12-25": "Christmas Day", + "1966-01-01": "New Year's Day", + "1966-01-09": "Martyrs' Day", + "1966-01-10": "Martyrs' Day (Observed)", + "1966-02-22": "Carnival", + "1966-04-08": "Good Friday", + "1966-05-01": "Labour Day", + "1966-05-02": "Labour Day (Observed)", + "1966-11-03": "Separation Day", + "1966-11-04": "National Symbols Day", + "1966-11-05": "Colon Day", + "1966-11-10": "Los Santos Uprising Day", + "1966-11-28": "Independence Day", + "1966-12-08": "Mother's Day", + "1966-12-25": "Christmas Day", + "1966-12-26": "Christmas Day (Observed)", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day (Observed)", + "1967-01-09": "Martyrs' Day", + "1967-02-07": "Carnival", + "1967-03-24": "Good Friday", + "1967-05-01": "Labour Day", + "1967-11-03": "Separation Day", + "1967-11-04": "National Symbols Day", + "1967-11-05": "Colon Day", + "1967-11-10": "Los Santos Uprising Day", + "1967-11-28": "Independence Day", + "1967-12-08": "Mother's Day", + "1967-12-25": "Christmas Day", + "1968-01-01": "New Year's Day", + "1968-01-09": "Martyrs' Day", + "1968-02-27": "Carnival", + "1968-04-12": "Good Friday", + "1968-05-01": "Labour Day", + "1968-11-03": "Separation Day", + "1968-11-04": "National Symbols Day", + "1968-11-05": "Colon Day", + "1968-11-10": "Los Santos Uprising Day", + "1968-11-28": "Independence Day", + "1968-12-08": "Mother's Day", + "1968-12-09": "Mother's Day (Observed)", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-01-09": "Martyrs' Day", + "1969-02-18": "Carnival", + "1969-04-04": "Good Friday", + "1969-05-01": "Labour Day", + "1969-11-03": "Separation Day", + "1969-11-04": "National Symbols Day", + "1969-11-05": "Colon Day", + "1969-11-10": "Los Santos Uprising Day", + "1969-11-28": "Independence Day", + "1969-12-08": "Mother's Day", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-01-09": "Martyrs' Day", + "1970-02-10": "Carnival", + "1970-03-27": "Good Friday", + "1970-05-01": "Labour Day", + "1970-11-03": "Separation Day", + "1970-11-04": "National Symbols Day", + "1970-11-05": "Colon Day", + "1970-11-10": "Los Santos Uprising Day", + "1970-11-28": "Independence Day", + "1970-12-08": "Mother's Day", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-01-09": "Martyrs' Day", + "1971-02-23": "Carnival", + "1971-04-09": "Good Friday", + "1971-05-01": "Labour Day", + "1971-11-03": "Separation Day", + "1971-11-04": "National Symbols Day", + "1971-11-05": "Colon Day", + "1971-11-10": "Los Santos Uprising Day", + "1971-11-28": "Independence Day", + "1971-11-29": "Independence Day (Observed)", + "1971-12-08": "Mother's Day", + "1971-12-25": "Christmas Day", + "1972-01-01": "New Year's Day", + "1972-01-09": "Martyrs' Day", + "1972-01-10": "Martyrs' Day (Observed)", + "1972-02-15": "Carnival", + "1972-03-31": "Good Friday", + "1972-05-01": "Labour Day", + "1972-11-03": "Separation Day", + "1972-11-04": "National Symbols Day", + "1972-11-05": "Colon Day", + "1972-11-10": "Los Santos Uprising Day", + "1972-11-28": "Independence Day", + "1972-12-08": "Mother's Day", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-01-09": "Martyrs' Day", + "1973-03-06": "Carnival", + "1973-04-20": "Good Friday", + "1973-05-01": "Labour Day", + "1973-11-03": "Separation Day", + "1973-11-04": "National Symbols Day", + "1973-11-05": "Colon Day", + "1973-11-10": "Los Santos Uprising Day", + "1973-11-28": "Independence Day", + "1973-12-08": "Mother's Day", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-01-09": "Martyrs' Day", + "1974-02-26": "Carnival", + "1974-04-12": "Good Friday", + "1974-05-01": "Labour Day", + "1974-11-03": "Separation Day", + "1974-11-04": "National Symbols Day", + "1974-11-05": "Colon Day", + "1974-11-10": "Los Santos Uprising Day", + "1974-11-28": "Independence Day", + "1974-12-08": "Mother's Day", + "1974-12-09": "Mother's Day (Observed)", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-01-09": "Martyrs' Day", + "1975-02-11": "Carnival", + "1975-03-28": "Good Friday", + "1975-05-01": "Labour Day", + "1975-11-03": "Separation Day", + "1975-11-04": "National Symbols Day", + "1975-11-05": "Colon Day", + "1975-11-10": "Los Santos Uprising Day", + "1975-11-28": "Independence Day", + "1975-12-08": "Mother's Day", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-01-09": "Martyrs' Day", + "1976-03-02": "Carnival", + "1976-04-16": "Good Friday", + "1976-05-01": "Labour Day", + "1976-11-03": "Separation Day", + "1976-11-04": "National Symbols Day", + "1976-11-05": "Colon Day", + "1976-11-10": "Los Santos Uprising Day", + "1976-11-28": "Independence Day", + "1976-11-29": "Independence Day (Observed)", + "1976-12-08": "Mother's Day", + "1976-12-25": "Christmas Day", + "1977-01-01": "New Year's Day", + "1977-01-09": "Martyrs' Day", + "1977-01-10": "Martyrs' Day (Observed)", + "1977-02-22": "Carnival", + "1977-04-08": "Good Friday", + "1977-05-01": "Labour Day", + "1977-05-02": "Labour Day (Observed)", + "1977-11-03": "Separation Day", + "1977-11-04": "National Symbols Day", + "1977-11-05": "Colon Day", + "1977-11-10": "Los Santos Uprising Day", + "1977-11-28": "Independence Day", + "1977-12-08": "Mother's Day", + "1977-12-25": "Christmas Day", + "1977-12-26": "Christmas Day (Observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day (Observed)", + "1978-01-09": "Martyrs' Day", + "1978-02-07": "Carnival", + "1978-03-24": "Good Friday", + "1978-05-01": "Labour Day", + "1978-11-03": "Separation Day", + "1978-11-04": "National Symbols Day", + "1978-11-05": "Colon Day", + "1978-11-10": "Los Santos Uprising Day", + "1978-11-28": "Independence Day", + "1978-12-08": "Mother's Day", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-01-09": "Martyrs' Day", + "1979-02-27": "Carnival", + "1979-04-13": "Good Friday", + "1979-05-01": "Labour Day", + "1979-11-03": "Separation Day", + "1979-11-04": "National Symbols Day", + "1979-11-05": "Colon Day", + "1979-11-10": "Los Santos Uprising Day", + "1979-11-28": "Independence Day", + "1979-12-08": "Mother's Day", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-01-09": "Martyrs' Day", + "1980-02-19": "Carnival", + "1980-04-04": "Good Friday", + "1980-05-01": "Labour Day", + "1980-11-03": "Separation Day", + "1980-11-04": "National Symbols Day", + "1980-11-05": "Colon Day", + "1980-11-10": "Los Santos Uprising Day", + "1980-11-28": "Independence Day", + "1980-12-08": "Mother's Day", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-01-09": "Martyrs' Day", + "1981-03-03": "Carnival", + "1981-04-17": "Good Friday", + "1981-05-01": "Labour Day", + "1981-11-03": "Separation Day", + "1981-11-04": "National Symbols Day", + "1981-11-05": "Colon Day", + "1981-11-10": "Los Santos Uprising Day", + "1981-11-28": "Independence Day", + "1981-12-08": "Mother's Day", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-01-09": "Martyrs' Day", + "1982-02-23": "Carnival", + "1982-04-09": "Good Friday", + "1982-05-01": "Labour Day", + "1982-11-03": "Separation Day", + "1982-11-04": "National Symbols Day", + "1982-11-05": "Colon Day", + "1982-11-10": "Los Santos Uprising Day", + "1982-11-28": "Independence Day", + "1982-11-29": "Independence Day (Observed)", + "1982-12-08": "Mother's Day", + "1982-12-25": "Christmas Day", + "1983-01-01": "New Year's Day", + "1983-01-09": "Martyrs' Day", + "1983-01-10": "Martyrs' Day (Observed)", + "1983-02-15": "Carnival", + "1983-04-01": "Good Friday", + "1983-05-01": "Labour Day", + "1983-05-02": "Labour Day (Observed)", + "1983-11-03": "Separation Day", + "1983-11-04": "National Symbols Day", + "1983-11-05": "Colon Day", + "1983-11-10": "Los Santos Uprising Day", + "1983-11-28": "Independence Day", + "1983-12-08": "Mother's Day", + "1983-12-25": "Christmas Day", + "1983-12-26": "Christmas Day (Observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (Observed)", + "1984-01-09": "Martyrs' Day", + "1984-03-06": "Carnival", + "1984-04-20": "Good Friday", + "1984-05-01": "Labour Day", + "1984-11-03": "Separation Day", + "1984-11-04": "National Symbols Day", + "1984-11-05": "Colon Day", + "1984-11-10": "Los Santos Uprising Day", + "1984-11-28": "Independence Day", + "1984-12-08": "Mother's Day", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-01-09": "Martyrs' Day", + "1985-02-19": "Carnival", + "1985-04-05": "Good Friday", + "1985-05-01": "Labour Day", + "1985-11-03": "Separation Day", + "1985-11-04": "National Symbols Day", + "1985-11-05": "Colon Day", + "1985-11-10": "Los Santos Uprising Day", + "1985-11-28": "Independence Day", + "1985-12-08": "Mother's Day", + "1985-12-09": "Mother's Day (Observed)", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-01-09": "Martyrs' Day", + "1986-02-11": "Carnival", + "1986-03-28": "Good Friday", + "1986-05-01": "Labour Day", + "1986-11-03": "Separation Day", + "1986-11-04": "National Symbols Day", + "1986-11-05": "Colon Day", + "1986-11-10": "Los Santos Uprising Day", + "1986-11-28": "Independence Day", + "1986-12-08": "Mother's Day", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-01-09": "Martyrs' Day", + "1987-03-03": "Carnival", + "1987-04-17": "Good Friday", + "1987-05-01": "Labour Day", + "1987-11-03": "Separation Day", + "1987-11-04": "National Symbols Day", + "1987-11-05": "Colon Day", + "1987-11-10": "Los Santos Uprising Day", + "1987-11-28": "Independence Day", + "1987-12-08": "Mother's Day", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-01-09": "Martyrs' Day", + "1988-02-16": "Carnival", + "1988-04-01": "Good Friday", + "1988-05-01": "Labour Day", + "1988-05-02": "Labour Day (Observed)", + "1988-11-03": "Separation Day", + "1988-11-04": "National Symbols Day", + "1988-11-05": "Colon Day", + "1988-11-10": "Los Santos Uprising Day", + "1988-11-28": "Independence Day", + "1988-12-08": "Mother's Day", + "1988-12-25": "Christmas Day", + "1988-12-26": "Christmas Day (Observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (Observed)", + "1989-01-09": "Martyrs' Day", + "1989-02-07": "Carnival", + "1989-03-24": "Good Friday", + "1989-05-01": "Labour Day", + "1989-11-03": "Separation Day", + "1989-11-04": "National Symbols Day", + "1989-11-05": "Colon Day", + "1989-11-10": "Los Santos Uprising Day", + "1989-11-28": "Independence Day", + "1989-12-08": "Mother's Day", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-01-09": "Martyrs' Day", + "1990-02-27": "Carnival", + "1990-04-13": "Good Friday", + "1990-05-01": "Labour Day", + "1990-11-03": "Separation Day", + "1990-11-04": "National Symbols Day", + "1990-11-05": "Colon Day", + "1990-11-10": "Los Santos Uprising Day", + "1990-11-28": "Independence Day", + "1990-12-08": "Mother's Day", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-01-09": "Martyrs' Day", + "1991-02-12": "Carnival", + "1991-03-29": "Good Friday", + "1991-05-01": "Labour Day", + "1991-11-03": "Separation Day", + "1991-11-04": "National Symbols Day", + "1991-11-05": "Colon Day", + "1991-11-10": "Los Santos Uprising Day", + "1991-11-28": "Independence Day", + "1991-12-08": "Mother's Day", + "1991-12-09": "Mother's Day (Observed)", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-01-09": "Martyrs' Day", + "1992-03-03": "Carnival", + "1992-04-17": "Good Friday", + "1992-05-01": "Labour Day", + "1992-11-03": "Separation Day", + "1992-11-04": "National Symbols Day", + "1992-11-05": "Colon Day", + "1992-11-10": "Los Santos Uprising Day", + "1992-11-28": "Independence Day", + "1992-12-08": "Mother's Day", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-01-09": "Martyrs' Day", + "1993-02-23": "Carnival", + "1993-04-09": "Good Friday", + "1993-05-01": "Labour Day", + "1993-11-03": "Separation Day", + "1993-11-04": "National Symbols Day", + "1993-11-05": "Colon Day", + "1993-11-10": "Los Santos Uprising Day", + "1993-11-28": "Independence Day", + "1993-11-29": "Independence Day (Observed)", + "1993-12-08": "Mother's Day", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-01-09": "Martyrs' Day", + "1994-01-10": "Martyrs' Day (Observed)", + "1994-02-15": "Carnival", + "1994-04-01": "Good Friday", + "1994-05-01": "Labour Day", + "1994-05-02": "Labour Day (Observed)", + "1994-11-03": "Separation Day", + "1994-11-04": "National Symbols Day", + "1994-11-05": "Colon Day", + "1994-11-10": "Los Santos Uprising Day", + "1994-11-28": "Independence Day", + "1994-12-08": "Mother's Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day (Observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (Observed)", + "1995-01-09": "Martyrs' Day", + "1995-02-28": "Carnival", + "1995-04-14": "Good Friday", + "1995-05-01": "Labour Day", + "1995-11-03": "Separation Day", + "1995-11-04": "National Symbols Day", + "1995-11-05": "Colon Day", + "1995-11-10": "Los Santos Uprising Day", + "1995-11-28": "Independence Day", + "1995-12-08": "Mother's Day", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-01-09": "Martyrs' Day", + "1996-02-20": "Carnival", + "1996-04-05": "Good Friday", + "1996-05-01": "Labour Day", + "1996-11-03": "Separation Day", + "1996-11-04": "National Symbols Day", + "1996-11-05": "Colon Day", + "1996-11-10": "Los Santos Uprising Day", + "1996-11-28": "Independence Day", + "1996-12-08": "Mother's Day", + "1996-12-09": "Mother's Day (Observed)", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-01-09": "Martyrs' Day", + "1997-02-11": "Carnival", + "1997-03-28": "Good Friday", + "1997-05-01": "Labour Day", + "1997-11-03": "Separation Day", + "1997-11-04": "National Symbols Day", + "1997-11-05": "Colon Day", + "1997-11-10": "Los Santos Uprising Day", + "1997-11-28": "Independence Day", + "1997-12-08": "Mother's Day", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-01-09": "Martyrs' Day", + "1998-02-24": "Carnival", + "1998-04-10": "Good Friday", + "1998-05-01": "Labour Day", + "1998-11-03": "Separation Day", + "1998-11-04": "National Symbols Day", + "1998-11-05": "Colon Day", + "1998-11-10": "Los Santos Uprising Day", + "1998-11-28": "Independence Day", + "1998-12-08": "Mother's Day", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-01-09": "Martyrs' Day", + "1999-02-16": "Carnival", + "1999-04-02": "Good Friday", + "1999-05-01": "Labour Day", + "1999-11-03": "Separation Day", + "1999-11-04": "National Symbols Day", + "1999-11-05": "Colon Day", + "1999-11-10": "Los Santos Uprising Day", + "1999-11-28": "Independence Day", + "1999-11-29": "Independence Day (Observed)", + "1999-12-08": "Mother's Day", + "1999-12-25": "Christmas Day", + "2000-01-01": "New Year's Day", + "2000-01-09": "Martyrs' Day", + "2000-01-10": "Martyrs' Day (Observed)", + "2000-03-07": "Carnival", + "2000-04-21": "Good Friday", + "2000-05-01": "Labour Day", + "2000-11-03": "Separation Day", + "2000-11-04": "National Symbols Day", + "2000-11-05": "Colon Day", + "2000-11-10": "Los Santos Uprising Day", + "2000-11-28": "Independence Day", + "2000-12-08": "Mother's Day", + "2000-12-25": "Christmas Day", + "2001-01-01": "New Year's Day", + "2001-01-09": "Martyrs' Day", + "2001-02-27": "Carnival", + "2001-04-13": "Good Friday", + "2001-05-01": "Labour Day", + "2001-11-03": "Separation Day", + "2001-11-04": "National Symbols Day", + "2001-11-05": "Colon Day", + "2001-11-10": "Los Santos Uprising Day", + "2001-11-28": "Independence Day", + "2001-12-08": "Mother's Day", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-01-09": "Martyrs' Day", + "2002-02-12": "Carnival", + "2002-03-29": "Good Friday", + "2002-05-01": "Labour Day", + "2002-11-03": "Separation Day", + "2002-11-04": "National Symbols Day", + "2002-11-05": "Colon Day", + "2002-11-10": "Los Santos Uprising Day", + "2002-11-28": "Independence Day", + "2002-12-08": "Mother's Day", + "2002-12-09": "Mother's Day (Observed)", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-01-09": "Martyrs' Day", + "2003-03-04": "Carnival", + "2003-04-18": "Good Friday", + "2003-05-01": "Labour Day", + "2003-11-03": "Separation Day", + "2003-11-04": "National Symbols Day", + "2003-11-05": "Colon Day", + "2003-11-10": "Los Santos Uprising Day", + "2003-11-28": "Independence Day", + "2003-12-08": "Mother's Day", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-01-09": "Martyrs' Day", + "2004-02-24": "Carnival", + "2004-04-09": "Good Friday", + "2004-05-01": "Labour Day", + "2004-11-03": "Separation Day", + "2004-11-04": "National Symbols Day", + "2004-11-05": "Colon Day", + "2004-11-10": "Los Santos Uprising Day", + "2004-11-28": "Independence Day", + "2004-11-29": "Independence Day (Observed)", + "2004-12-08": "Mother's Day", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-01-09": "Martyrs' Day", + "2005-01-10": "Martyrs' Day (Observed)", + "2005-02-08": "Carnival", + "2005-03-25": "Good Friday", + "2005-05-01": "Labour Day", + "2005-05-02": "Labour Day (Observed)", + "2005-11-03": "Separation Day", + "2005-11-04": "National Symbols Day", + "2005-11-05": "Colon Day", + "2005-11-10": "Los Santos Uprising Day", + "2005-11-28": "Independence Day", + "2005-12-08": "Mother's Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day (Observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (Observed)", + "2006-01-09": "Martyrs' Day", + "2006-02-28": "Carnival", + "2006-04-14": "Good Friday", + "2006-05-01": "Labour Day", + "2006-11-03": "Separation Day", + "2006-11-04": "National Symbols Day", + "2006-11-05": "Colon Day", + "2006-11-10": "Los Santos Uprising Day", + "2006-11-28": "Independence Day", + "2006-12-08": "Mother's Day", + "2006-12-25": "Christmas Day", + "2007-01-01": "New Year's Day", + "2007-01-09": "Martyrs' Day", + "2007-02-20": "Carnival", + "2007-04-06": "Good Friday", + "2007-05-01": "Labour Day", + "2007-11-03": "Separation Day", + "2007-11-04": "National Symbols Day", + "2007-11-05": "Colon Day", + "2007-11-10": "Los Santos Uprising Day", + "2007-11-28": "Independence Day", + "2007-12-08": "Mother's Day", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-01-09": "Martyrs' Day", + "2008-02-05": "Carnival", + "2008-03-21": "Good Friday", + "2008-05-01": "Labour Day", + "2008-11-03": "Separation Day", + "2008-11-04": "National Symbols Day", + "2008-11-05": "Colon Day", + "2008-11-10": "Los Santos Uprising Day", + "2008-11-28": "Independence Day", + "2008-12-08": "Mother's Day", + "2008-12-25": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-01-09": "Martyrs' Day", + "2009-02-24": "Carnival", + "2009-04-10": "Good Friday", + "2009-05-01": "Labour Day", + "2009-11-03": "Separation Day", + "2009-11-04": "National Symbols Day", + "2009-11-05": "Colon Day", + "2009-11-10": "Los Santos Uprising Day", + "2009-11-28": "Independence Day", + "2009-12-08": "Mother's Day", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-01-09": "Martyrs' Day", + "2010-02-16": "Carnival", + "2010-04-02": "Good Friday", + "2010-05-01": "Labour Day", + "2010-11-03": "Separation Day", + "2010-11-04": "National Symbols Day", + "2010-11-05": "Colon Day", + "2010-11-10": "Los Santos Uprising Day", + "2010-11-28": "Independence Day", + "2010-11-29": "Independence Day (Observed)", + "2010-12-08": "Mother's Day", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-01-09": "Martyrs' Day", + "2011-01-10": "Martyrs' Day (Observed)", + "2011-03-08": "Carnival", + "2011-04-22": "Good Friday", + "2011-05-01": "Labour Day", + "2011-05-02": "Labour Day (Observed)", + "2011-11-03": "Separation Day", + "2011-11-04": "National Symbols Day", + "2011-11-05": "Colon Day", + "2011-11-10": "Los Santos Uprising Day", + "2011-11-28": "Independence Day", + "2011-12-08": "Mother's Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day (Observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (Observed)", + "2012-01-09": "Martyrs' Day", + "2012-02-21": "Carnival", + "2012-04-06": "Good Friday", + "2012-05-01": "Labour Day", + "2012-11-03": "Separation Day", + "2012-11-04": "National Symbols Day", + "2012-11-05": "Colon Day", + "2012-11-10": "Los Santos Uprising Day", + "2012-11-28": "Independence Day", + "2012-12-08": "Mother's Day", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-01-09": "Martyrs' Day", + "2013-02-12": "Carnival", + "2013-03-29": "Good Friday", + "2013-05-01": "Labour Day", + "2013-11-03": "Separation Day", + "2013-11-04": "National Symbols Day", + "2013-11-05": "Colon Day", + "2013-11-10": "Los Santos Uprising Day", + "2013-11-28": "Independence Day", + "2013-12-08": "Mother's Day", + "2013-12-09": "Mother's Day (Observed)", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-09": "Martyrs' Day", + "2014-03-04": "Carnival", + "2014-04-18": "Good Friday", + "2014-05-01": "Labour Day", + "2014-11-03": "Separation Day", + "2014-11-04": "National Symbols Day", + "2014-11-05": "Colon Day", + "2014-11-10": "Los Santos Uprising Day", + "2014-11-28": "Independence Day", + "2014-12-08": "Mother's Day", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-01-09": "Martyrs' Day", + "2015-02-17": "Carnival", + "2015-04-03": "Good Friday", + "2015-05-01": "Labour Day", + "2015-11-03": "Separation Day", + "2015-11-04": "National Symbols Day", + "2015-11-05": "Colon Day", + "2015-11-10": "Los Santos Uprising Day", + "2015-11-28": "Independence Day", + "2015-12-08": "Mother's Day", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-01-09": "Martyrs' Day", + "2016-02-09": "Carnival", + "2016-03-25": "Good Friday", + "2016-05-01": "Labour Day", + "2016-05-02": "Labour Day (Observed)", + "2016-11-03": "Separation Day", + "2016-11-04": "National Symbols Day", + "2016-11-05": "Colon Day", + "2016-11-10": "Los Santos Uprising Day", + "2016-11-28": "Independence Day", + "2016-12-08": "Mother's Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day (Observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (Observed)", + "2017-01-09": "Martyrs' Day", + "2017-02-28": "Carnival", + "2017-04-14": "Good Friday", + "2017-05-01": "Labour Day", + "2017-11-03": "Separation Day", + "2017-11-04": "National Symbols Day", + "2017-11-05": "Colon Day", + "2017-11-10": "Los Santos Uprising Day", + "2017-11-28": "Independence Day", + "2017-12-08": "Mother's Day", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-01-09": "Martyrs' Day", + "2018-02-13": "Carnival", + "2018-03-30": "Good Friday", + "2018-05-01": "Labour Day", + "2018-11-03": "Separation Day", + "2018-11-04": "National Symbols Day", + "2018-11-05": "Colon Day", + "2018-11-10": "Los Santos Uprising Day", + "2018-11-28": "Independence Day", + "2018-12-08": "Mother's Day", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-01-09": "Martyrs' Day", + "2019-03-05": "Carnival", + "2019-04-19": "Good Friday", + "2019-05-01": "Labour Day", + "2019-11-03": "Separation Day", + "2019-11-04": "National Symbols Day", + "2019-11-05": "Colon Day", + "2019-11-10": "Los Santos Uprising Day", + "2019-11-28": "Independence Day", + "2019-12-08": "Mother's Day", + "2019-12-09": "Mother's Day (Observed)", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-01-09": "Martyrs' Day", + "2020-02-25": "Carnival", + "2020-04-10": "Good Friday", + "2020-05-01": "Labour Day", + "2020-11-03": "Separation Day", + "2020-11-04": "National Symbols Day", + "2020-11-05": "Colon Day", + "2020-11-10": "Los Santos Uprising Day", + "2020-11-28": "Independence Day", + "2020-12-08": "Mother's Day", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-01-09": "Martyrs' Day", + "2021-02-16": "Carnival", + "2021-04-02": "Good Friday", + "2021-05-01": "Labour Day", + "2021-11-03": "Separation Day", + "2021-11-04": "National Symbols Day", + "2021-11-05": "Colon Day", + "2021-11-10": "Los Santos Uprising Day", + "2021-11-28": "Independence Day", + "2021-11-29": "Independence Day (Observed)", + "2021-12-08": "Mother's Day", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-01-09": "Martyrs' Day", + "2022-01-10": "Martyrs' Day (Observed)", + "2022-03-01": "Carnival", + "2022-04-15": "Good Friday", + "2022-05-01": "Labour Day", + "2022-05-02": "Labour Day (Observed)", + "2022-11-03": "Separation Day", + "2022-11-04": "National Symbols Day", + "2022-11-05": "Colon Day", + "2022-11-10": "Los Santos Uprising Day", + "2022-11-28": "Independence Day", + "2022-12-08": "Mother's Day", + "2022-12-20": "National Mourning Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day (Observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (Observed)", + "2023-01-09": "Martyrs' Day", + "2023-02-21": "Carnival", + "2023-04-07": "Good Friday", + "2023-05-01": "Labour Day", + "2023-11-03": "Separation Day", + "2023-11-04": "National Symbols Day", + "2023-11-05": "Colon Day", + "2023-11-10": "Los Santos Uprising Day", + "2023-11-28": "Independence Day", + "2023-12-08": "Mother's Day", + "2023-12-20": "National Mourning Day", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-01-09": "Martyrs' Day", + "2024-02-13": "Carnival", + "2024-03-29": "Good Friday", + "2024-05-01": "Labour Day", + "2024-11-03": "Separation Day", + "2024-11-04": "National Symbols Day", + "2024-11-05": "Colon Day", + "2024-11-10": "Los Santos Uprising Day", + "2024-11-28": "Independence Day", + "2024-12-08": "Mother's Day", + "2024-12-09": "Mother's Day (Observed)", + "2024-12-20": "National Mourning Day", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-01-09": "Martyrs' Day", + "2025-03-04": "Carnival", + "2025-04-18": "Good Friday", + "2025-05-01": "Labour Day", + "2025-11-03": "Separation Day", + "2025-11-04": "National Symbols Day", + "2025-11-05": "Colon Day", + "2025-11-10": "Los Santos Uprising Day", + "2025-11-28": "Independence Day", + "2025-12-08": "Mother's Day", + "2025-12-20": "National Mourning Day", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-01-09": "Martyrs' Day", + "2026-02-17": "Carnival", + "2026-04-03": "Good Friday", + "2026-05-01": "Labour Day", + "2026-11-03": "Separation Day", + "2026-11-04": "National Symbols Day", + "2026-11-05": "Colon Day", + "2026-11-10": "Los Santos Uprising Day", + "2026-11-28": "Independence Day", + "2026-12-08": "Mother's Day", + "2026-12-20": "National Mourning Day", + "2026-12-21": "National Mourning Day (Observed)", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-01-09": "Martyrs' Day", + "2027-02-09": "Carnival", + "2027-03-26": "Good Friday", + "2027-05-01": "Labour Day", + "2027-11-03": "Separation Day", + "2027-11-04": "National Symbols Day", + "2027-11-05": "Colon Day", + "2027-11-10": "Los Santos Uprising Day", + "2027-11-28": "Independence Day", + "2027-11-29": "Independence Day (Observed)", + "2027-12-08": "Mother's Day", + "2027-12-20": "National Mourning Day", + "2027-12-25": "Christmas Day", + "2028-01-01": "New Year's Day", + "2028-01-09": "Martyrs' Day", + "2028-01-10": "Martyrs' Day (Observed)", + "2028-02-29": "Carnival", + "2028-04-14": "Good Friday", + "2028-05-01": "Labour Day", + "2028-11-03": "Separation Day", + "2028-11-04": "National Symbols Day", + "2028-11-05": "Colon Day", + "2028-11-10": "Los Santos Uprising Day", + "2028-11-28": "Independence Day", + "2028-12-08": "Mother's Day", + "2028-12-20": "National Mourning Day", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-01-09": "Martyrs' Day", + "2029-02-13": "Carnival", + "2029-03-30": "Good Friday", + "2029-05-01": "Labour Day", + "2029-11-03": "Separation Day", + "2029-11-04": "National Symbols Day", + "2029-11-05": "Colon Day", + "2029-11-10": "Los Santos Uprising Day", + "2029-11-28": "Independence Day", + "2029-12-08": "Mother's Day", + "2029-12-20": "National Mourning Day", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-01-09": "Martyrs' Day", + "2030-03-05": "Carnival", + "2030-04-19": "Good Friday", + "2030-05-01": "Labour Day", + "2030-11-03": "Separation Day", + "2030-11-04": "National Symbols Day", + "2030-11-05": "Colon Day", + "2030-11-10": "Los Santos Uprising Day", + "2030-11-28": "Independence Day", + "2030-12-08": "Mother's Day", + "2030-12-09": "Mother's Day (Observed)", + "2030-12-20": "National Mourning Day", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-01-09": "Martyrs' Day", + "2031-02-25": "Carnival", + "2031-04-11": "Good Friday", + "2031-05-01": "Labour Day", + "2031-11-03": "Separation Day", + "2031-11-04": "National Symbols Day", + "2031-11-05": "Colon Day", + "2031-11-10": "Los Santos Uprising Day", + "2031-11-28": "Independence Day", + "2031-12-08": "Mother's Day", + "2031-12-20": "National Mourning Day", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-01-09": "Martyrs' Day", + "2032-02-10": "Carnival", + "2032-03-26": "Good Friday", + "2032-05-01": "Labour Day", + "2032-11-03": "Separation Day", + "2032-11-04": "National Symbols Day", + "2032-11-05": "Colon Day", + "2032-11-10": "Los Santos Uprising Day", + "2032-11-28": "Independence Day", + "2032-11-29": "Independence Day (Observed)", + "2032-12-08": "Mother's Day", + "2032-12-20": "National Mourning Day", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-01-09": "Martyrs' Day", + "2033-01-10": "Martyrs' Day (Observed)", + "2033-03-01": "Carnival", + "2033-04-15": "Good Friday", + "2033-05-01": "Labour Day", + "2033-05-02": "Labour Day (Observed)", + "2033-11-03": "Separation Day", + "2033-11-04": "National Symbols Day", + "2033-11-05": "Colon Day", + "2033-11-10": "Los Santos Uprising Day", + "2033-11-28": "Independence Day", + "2033-12-08": "Mother's Day", + "2033-12-20": "National Mourning Day", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day (Observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-01-09": "Martyrs' Day", + "2034-02-21": "Carnival", + "2034-04-07": "Good Friday", + "2034-05-01": "Labour Day", + "2034-11-03": "Separation Day", + "2034-11-04": "National Symbols Day", + "2034-11-05": "Colon Day", + "2034-11-10": "Los Santos Uprising Day", + "2034-11-28": "Independence Day", + "2034-12-08": "Mother's Day", + "2034-12-20": "National Mourning Day", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-01-09": "Martyrs' Day", + "2035-02-06": "Carnival", + "2035-03-23": "Good Friday", + "2035-05-01": "Labour Day", + "2035-11-03": "Separation Day", + "2035-11-04": "National Symbols Day", + "2035-11-05": "Colon Day", + "2035-11-10": "Los Santos Uprising Day", + "2035-11-28": "Independence Day", + "2035-12-08": "Mother's Day", + "2035-12-20": "National Mourning Day", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-01-09": "Martyrs' Day", + "2036-02-26": "Carnival", + "2036-04-11": "Good Friday", + "2036-05-01": "Labour Day", + "2036-11-03": "Separation Day", + "2036-11-04": "National Symbols Day", + "2036-11-05": "Colon Day", + "2036-11-10": "Los Santos Uprising Day", + "2036-11-28": "Independence Day", + "2036-12-08": "Mother's Day", + "2036-12-20": "National Mourning Day", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-09": "Martyrs' Day", + "2037-02-17": "Carnival", + "2037-04-03": "Good Friday", + "2037-05-01": "Labour Day", + "2037-11-03": "Separation Day", + "2037-11-04": "National Symbols Day", + "2037-11-05": "Colon Day", + "2037-11-10": "Los Santos Uprising Day", + "2037-11-28": "Independence Day", + "2037-12-08": "Mother's Day", + "2037-12-20": "National Mourning Day", + "2037-12-21": "National Mourning Day (Observed)", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-01-09": "Martyrs' Day", + "2038-03-09": "Carnival", + "2038-04-23": "Good Friday", + "2038-05-01": "Labour Day", + "2038-11-03": "Separation Day", + "2038-11-04": "National Symbols Day", + "2038-11-05": "Colon Day", + "2038-11-10": "Los Santos Uprising Day", + "2038-11-28": "Independence Day", + "2038-11-29": "Independence Day (Observed)", + "2038-12-08": "Mother's Day", + "2038-12-20": "National Mourning Day", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-01-09": "Martyrs' Day", + "2039-01-10": "Martyrs' Day (Observed)", + "2039-02-22": "Carnival", + "2039-04-08": "Good Friday", + "2039-05-01": "Labour Day", + "2039-05-02": "Labour Day (Observed)", + "2039-11-03": "Separation Day", + "2039-11-04": "National Symbols Day", + "2039-11-05": "Colon Day", + "2039-11-10": "Los Santos Uprising Day", + "2039-11-28": "Independence Day", + "2039-12-08": "Mother's Day", + "2039-12-20": "National Mourning Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Christmas Day (Observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (Observed)", + "2040-01-09": "Martyrs' Day", + "2040-02-14": "Carnival", + "2040-03-30": "Good Friday", + "2040-05-01": "Labour Day", + "2040-11-03": "Separation Day", + "2040-11-04": "National Symbols Day", + "2040-11-05": "Colon Day", + "2040-11-10": "Los Santos Uprising Day", + "2040-11-28": "Independence Day", + "2040-12-08": "Mother's Day", + "2040-12-20": "National Mourning Day", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-01-09": "Martyrs' Day", + "2041-03-05": "Carnival", + "2041-04-19": "Good Friday", + "2041-05-01": "Labour Day", + "2041-11-03": "Separation Day", + "2041-11-04": "National Symbols Day", + "2041-11-05": "Colon Day", + "2041-11-10": "Los Santos Uprising Day", + "2041-11-28": "Independence Day", + "2041-12-08": "Mother's Day", + "2041-12-09": "Mother's Day (Observed)", + "2041-12-20": "National Mourning Day", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-01-09": "Martyrs' Day", + "2042-02-18": "Carnival", + "2042-04-04": "Good Friday", + "2042-05-01": "Labour Day", + "2042-11-03": "Separation Day", + "2042-11-04": "National Symbols Day", + "2042-11-05": "Colon Day", + "2042-11-10": "Los Santos Uprising Day", + "2042-11-28": "Independence Day", + "2042-12-08": "Mother's Day", + "2042-12-20": "National Mourning Day", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-01-09": "Martyrs' Day", + "2043-02-10": "Carnival", + "2043-03-27": "Good Friday", + "2043-05-01": "Labour Day", + "2043-11-03": "Separation Day", + "2043-11-04": "National Symbols Day", + "2043-11-05": "Colon Day", + "2043-11-10": "Los Santos Uprising Day", + "2043-11-28": "Independence Day", + "2043-12-08": "Mother's Day", + "2043-12-20": "National Mourning Day", + "2043-12-21": "National Mourning Day (Observed)", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-01-09": "Martyrs' Day", + "2044-03-01": "Carnival", + "2044-04-15": "Good Friday", + "2044-05-01": "Labour Day", + "2044-05-02": "Labour Day (Observed)", + "2044-11-03": "Separation Day", + "2044-11-04": "National Symbols Day", + "2044-11-05": "Colon Day", + "2044-11-10": "Los Santos Uprising Day", + "2044-11-28": "Independence Day", + "2044-12-08": "Mother's Day", + "2044-12-20": "National Mourning Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day (Observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (Observed)", + "2045-01-09": "Martyrs' Day", + "2045-02-21": "Carnival", + "2045-04-07": "Good Friday", + "2045-05-01": "Labour Day", + "2045-11-03": "Separation Day", + "2045-11-04": "National Symbols Day", + "2045-11-05": "Colon Day", + "2045-11-10": "Los Santos Uprising Day", + "2045-11-28": "Independence Day", + "2045-12-08": "Mother's Day", + "2045-12-20": "National Mourning Day", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-01-09": "Martyrs' Day", + "2046-02-06": "Carnival", + "2046-03-23": "Good Friday", + "2046-05-01": "Labour Day", + "2046-11-03": "Separation Day", + "2046-11-04": "National Symbols Day", + "2046-11-05": "Colon Day", + "2046-11-10": "Los Santos Uprising Day", + "2046-11-28": "Independence Day", + "2046-12-08": "Mother's Day", + "2046-12-20": "National Mourning Day", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-09": "Martyrs' Day", + "2047-02-26": "Carnival", + "2047-04-12": "Good Friday", + "2047-05-01": "Labour Day", + "2047-11-03": "Separation Day", + "2047-11-04": "National Symbols Day", + "2047-11-05": "Colon Day", + "2047-11-10": "Los Santos Uprising Day", + "2047-11-28": "Independence Day", + "2047-12-08": "Mother's Day", + "2047-12-09": "Mother's Day (Observed)", + "2047-12-20": "National Mourning Day", + "2047-12-25": "Christmas Day", + "2048-01-01": "New Year's Day", + "2048-01-09": "Martyrs' Day", + "2048-02-18": "Carnival", + "2048-04-03": "Good Friday", + "2048-05-01": "Labour Day", + "2048-11-03": "Separation Day", + "2048-11-04": "National Symbols Day", + "2048-11-05": "Colon Day", + "2048-11-10": "Los Santos Uprising Day", + "2048-11-28": "Independence Day", + "2048-12-08": "Mother's Day", + "2048-12-20": "National Mourning Day", + "2048-12-21": "National Mourning Day (Observed)", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-01-09": "Martyrs' Day", + "2049-03-02": "Carnival", + "2049-04-16": "Good Friday", + "2049-05-01": "Labour Day", + "2049-11-03": "Separation Day", + "2049-11-04": "National Symbols Day", + "2049-11-05": "Colon Day", + "2049-11-10": "Los Santos Uprising Day", + "2049-11-28": "Independence Day", + "2049-11-29": "Independence Day (Observed)", + "2049-12-08": "Mother's Day", + "2049-12-20": "National Mourning Day", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-01-09": "Martyrs' Day", + "2050-01-10": "Martyrs' Day (Observed)", + "2050-02-22": "Carnival", + "2050-04-08": "Good Friday", + "2050-05-01": "Labour Day", + "2050-05-02": "Labour Day (Observed)", + "2050-11-03": "Separation Day", + "2050-11-04": "National Symbols Day", + "2050-11-05": "Colon Day", + "2050-11-10": "Los Santos Uprising Day", + "2050-11-28": "Independence Day", + "2050-12-08": "Mother's Day", + "2050-12-20": "National Mourning Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day (Observed)" +} diff --git a/snapshots/countries/PE.json b/snapshots/countries/PE.json new file mode 100644 index 000000000..48fca48d5 --- /dev/null +++ b/snapshots/countries/PE.json @@ -0,0 +1,1373 @@ +{ + "1950-01-01": "New Year's Day", + "1950-04-06": "Maundy Thursday", + "1950-04-07": "Good Friday", + "1950-04-09": "Easter Sunday", + "1950-05-01": "Labour Day", + "1950-06-29": "Saint Peter and Saint Paul", + "1950-07-28": "Independence Day", + "1950-07-29": "Great Military Parade Day", + "1950-08-30": "Rose of Lima Day", + "1950-10-08": "Battle of Angamos Day", + "1950-11-01": "All Saints' Day", + "1950-12-08": "Immaculate Conception Day", + "1950-12-25": "Christmas Day", + "1951-01-01": "New Year's Day", + "1951-03-22": "Maundy Thursday", + "1951-03-23": "Good Friday", + "1951-03-25": "Easter Sunday", + "1951-05-01": "Labour Day", + "1951-06-29": "Saint Peter and Saint Paul", + "1951-07-28": "Independence Day", + "1951-07-29": "Great Military Parade Day", + "1951-08-30": "Rose of Lima Day", + "1951-10-08": "Battle of Angamos Day", + "1951-11-01": "All Saints' Day", + "1951-12-08": "Immaculate Conception Day", + "1951-12-25": "Christmas Day", + "1952-01-01": "New Year's Day", + "1952-04-10": "Maundy Thursday", + "1952-04-11": "Good Friday", + "1952-04-13": "Easter Sunday", + "1952-05-01": "Labour Day", + "1952-06-29": "Saint Peter and Saint Paul", + "1952-07-28": "Independence Day", + "1952-07-29": "Great Military Parade Day", + "1952-08-30": "Rose of Lima Day", + "1952-10-08": "Battle of Angamos Day", + "1952-11-01": "All Saints' Day", + "1952-12-08": "Immaculate Conception Day", + "1952-12-25": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-04-02": "Maundy Thursday", + "1953-04-03": "Good Friday", + "1953-04-05": "Easter Sunday", + "1953-05-01": "Labour Day", + "1953-06-29": "Saint Peter and Saint Paul", + "1953-07-28": "Independence Day", + "1953-07-29": "Great Military Parade Day", + "1953-08-30": "Rose of Lima Day", + "1953-10-08": "Battle of Angamos Day", + "1953-11-01": "All Saints' Day", + "1953-12-08": "Immaculate Conception Day", + "1953-12-25": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-04-15": "Maundy Thursday", + "1954-04-16": "Good Friday", + "1954-04-18": "Easter Sunday", + "1954-05-01": "Labour Day", + "1954-06-29": "Saint Peter and Saint Paul", + "1954-07-28": "Independence Day", + "1954-07-29": "Great Military Parade Day", + "1954-08-30": "Rose of Lima Day", + "1954-10-08": "Battle of Angamos Day", + "1954-11-01": "All Saints' Day", + "1954-12-08": "Immaculate Conception Day", + "1954-12-25": "Christmas Day", + "1955-01-01": "New Year's Day", + "1955-04-07": "Maundy Thursday", + "1955-04-08": "Good Friday", + "1955-04-10": "Easter Sunday", + "1955-05-01": "Labour Day", + "1955-06-29": "Saint Peter and Saint Paul", + "1955-07-28": "Independence Day", + "1955-07-29": "Great Military Parade Day", + "1955-08-30": "Rose of Lima Day", + "1955-10-08": "Battle of Angamos Day", + "1955-11-01": "All Saints' Day", + "1955-12-08": "Immaculate Conception Day", + "1955-12-25": "Christmas Day", + "1956-01-01": "New Year's Day", + "1956-03-29": "Maundy Thursday", + "1956-03-30": "Good Friday", + "1956-04-01": "Easter Sunday", + "1956-05-01": "Labour Day", + "1956-06-29": "Saint Peter and Saint Paul", + "1956-07-28": "Independence Day", + "1956-07-29": "Great Military Parade Day", + "1956-08-30": "Rose of Lima Day", + "1956-10-08": "Battle of Angamos Day", + "1956-11-01": "All Saints' Day", + "1956-12-08": "Immaculate Conception Day", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-04-18": "Maundy Thursday", + "1957-04-19": "Good Friday", + "1957-04-21": "Easter Sunday", + "1957-05-01": "Labour Day", + "1957-06-29": "Saint Peter and Saint Paul", + "1957-07-28": "Independence Day", + "1957-07-29": "Great Military Parade Day", + "1957-08-30": "Rose of Lima Day", + "1957-10-08": "Battle of Angamos Day", + "1957-11-01": "All Saints' Day", + "1957-12-08": "Immaculate Conception Day", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-04-03": "Maundy Thursday", + "1958-04-04": "Good Friday", + "1958-04-06": "Easter Sunday", + "1958-05-01": "Labour Day", + "1958-06-29": "Saint Peter and Saint Paul", + "1958-07-28": "Independence Day", + "1958-07-29": "Great Military Parade Day", + "1958-08-30": "Rose of Lima Day", + "1958-10-08": "Battle of Angamos Day", + "1958-11-01": "All Saints' Day", + "1958-12-08": "Immaculate Conception Day", + "1958-12-25": "Christmas Day", + "1959-01-01": "New Year's Day", + "1959-03-26": "Maundy Thursday", + "1959-03-27": "Good Friday", + "1959-03-29": "Easter Sunday", + "1959-05-01": "Labour Day", + "1959-06-29": "Saint Peter and Saint Paul", + "1959-07-28": "Independence Day", + "1959-07-29": "Great Military Parade Day", + "1959-08-30": "Rose of Lima Day", + "1959-10-08": "Battle of Angamos Day", + "1959-11-01": "All Saints' Day", + "1959-12-08": "Immaculate Conception Day", + "1959-12-25": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-04-14": "Maundy Thursday", + "1960-04-15": "Good Friday", + "1960-04-17": "Easter Sunday", + "1960-05-01": "Labour Day", + "1960-06-29": "Saint Peter and Saint Paul", + "1960-07-28": "Independence Day", + "1960-07-29": "Great Military Parade Day", + "1960-08-30": "Rose of Lima Day", + "1960-10-08": "Battle of Angamos Day", + "1960-11-01": "All Saints' Day", + "1960-12-08": "Immaculate Conception Day", + "1960-12-25": "Christmas Day", + "1961-01-01": "New Year's Day", + "1961-03-30": "Maundy Thursday", + "1961-03-31": "Good Friday", + "1961-04-02": "Easter Sunday", + "1961-05-01": "Labour Day", + "1961-06-29": "Saint Peter and Saint Paul", + "1961-07-28": "Independence Day", + "1961-07-29": "Great Military Parade Day", + "1961-08-30": "Rose of Lima Day", + "1961-10-08": "Battle of Angamos Day", + "1961-11-01": "All Saints' Day", + "1961-12-08": "Immaculate Conception Day", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-04-19": "Maundy Thursday", + "1962-04-20": "Good Friday", + "1962-04-22": "Easter Sunday", + "1962-05-01": "Labour Day", + "1962-06-29": "Saint Peter and Saint Paul", + "1962-07-28": "Independence Day", + "1962-07-29": "Great Military Parade Day", + "1962-08-30": "Rose of Lima Day", + "1962-10-08": "Battle of Angamos Day", + "1962-11-01": "All Saints' Day", + "1962-12-08": "Immaculate Conception Day", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-04-11": "Maundy Thursday", + "1963-04-12": "Good Friday", + "1963-04-14": "Easter Sunday", + "1963-05-01": "Labour Day", + "1963-06-29": "Saint Peter and Saint Paul", + "1963-07-28": "Independence Day", + "1963-07-29": "Great Military Parade Day", + "1963-08-30": "Rose of Lima Day", + "1963-10-08": "Battle of Angamos Day", + "1963-11-01": "All Saints' Day", + "1963-12-08": "Immaculate Conception Day", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-03-26": "Maundy Thursday", + "1964-03-27": "Good Friday", + "1964-03-29": "Easter Sunday", + "1964-05-01": "Labour Day", + "1964-06-29": "Saint Peter and Saint Paul", + "1964-07-28": "Independence Day", + "1964-07-29": "Great Military Parade Day", + "1964-08-30": "Rose of Lima Day", + "1964-10-08": "Battle of Angamos Day", + "1964-11-01": "All Saints' Day", + "1964-12-08": "Immaculate Conception Day", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-04-15": "Maundy Thursday", + "1965-04-16": "Good Friday", + "1965-04-18": "Easter Sunday", + "1965-05-01": "Labour Day", + "1965-06-29": "Saint Peter and Saint Paul", + "1965-07-28": "Independence Day", + "1965-07-29": "Great Military Parade Day", + "1965-08-30": "Rose of Lima Day", + "1965-10-08": "Battle of Angamos Day", + "1965-11-01": "All Saints' Day", + "1965-12-08": "Immaculate Conception Day", + "1965-12-25": "Christmas Day", + "1966-01-01": "New Year's Day", + "1966-04-07": "Maundy Thursday", + "1966-04-08": "Good Friday", + "1966-04-10": "Easter Sunday", + "1966-05-01": "Labour Day", + "1966-06-29": "Saint Peter and Saint Paul", + "1966-07-28": "Independence Day", + "1966-07-29": "Great Military Parade Day", + "1966-08-30": "Rose of Lima Day", + "1966-10-08": "Battle of Angamos Day", + "1966-11-01": "All Saints' Day", + "1966-12-08": "Immaculate Conception Day", + "1966-12-25": "Christmas Day", + "1967-01-01": "New Year's Day", + "1967-03-23": "Maundy Thursday", + "1967-03-24": "Good Friday", + "1967-03-26": "Easter Sunday", + "1967-05-01": "Labour Day", + "1967-06-29": "Saint Peter and Saint Paul", + "1967-07-28": "Independence Day", + "1967-07-29": "Great Military Parade Day", + "1967-08-30": "Rose of Lima Day", + "1967-10-08": "Battle of Angamos Day", + "1967-11-01": "All Saints' Day", + "1967-12-08": "Immaculate Conception Day", + "1967-12-25": "Christmas Day", + "1968-01-01": "New Year's Day", + "1968-04-11": "Maundy Thursday", + "1968-04-12": "Good Friday", + "1968-04-14": "Easter Sunday", + "1968-05-01": "Labour Day", + "1968-06-29": "Saint Peter and Saint Paul", + "1968-07-28": "Independence Day", + "1968-07-29": "Great Military Parade Day", + "1968-08-30": "Rose of Lima Day", + "1968-10-08": "Battle of Angamos Day", + "1968-11-01": "All Saints' Day", + "1968-12-08": "Immaculate Conception Day", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-04-03": "Maundy Thursday", + "1969-04-04": "Good Friday", + "1969-04-06": "Easter Sunday", + "1969-05-01": "Labour Day", + "1969-06-29": "Saint Peter and Saint Paul", + "1969-07-28": "Independence Day", + "1969-07-29": "Great Military Parade Day", + "1969-08-30": "Rose of Lima Day", + "1969-10-08": "Battle of Angamos Day", + "1969-11-01": "All Saints' Day", + "1969-12-08": "Immaculate Conception Day", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-03-26": "Maundy Thursday", + "1970-03-27": "Good Friday", + "1970-03-29": "Easter Sunday", + "1970-05-01": "Labour Day", + "1970-06-29": "Saint Peter and Saint Paul", + "1970-07-28": "Independence Day", + "1970-07-29": "Great Military Parade Day", + "1970-08-30": "Rose of Lima Day", + "1970-10-08": "Battle of Angamos Day", + "1970-11-01": "All Saints' Day", + "1970-12-08": "Immaculate Conception Day", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-04-08": "Maundy Thursday", + "1971-04-09": "Good Friday", + "1971-04-11": "Easter Sunday", + "1971-05-01": "Labour Day", + "1971-06-29": "Saint Peter and Saint Paul", + "1971-07-28": "Independence Day", + "1971-07-29": "Great Military Parade Day", + "1971-08-30": "Rose of Lima Day", + "1971-10-08": "Battle of Angamos Day", + "1971-11-01": "All Saints' Day", + "1971-12-08": "Immaculate Conception Day", + "1971-12-25": "Christmas Day", + "1972-01-01": "New Year's Day", + "1972-03-30": "Maundy Thursday", + "1972-03-31": "Good Friday", + "1972-04-02": "Easter Sunday", + "1972-05-01": "Labour Day", + "1972-06-29": "Saint Peter and Saint Paul", + "1972-07-28": "Independence Day", + "1972-07-29": "Great Military Parade Day", + "1972-08-30": "Rose of Lima Day", + "1972-10-08": "Battle of Angamos Day", + "1972-11-01": "All Saints' Day", + "1972-12-08": "Immaculate Conception Day", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-04-19": "Maundy Thursday", + "1973-04-20": "Good Friday", + "1973-04-22": "Easter Sunday", + "1973-05-01": "Labour Day", + "1973-06-29": "Saint Peter and Saint Paul", + "1973-07-28": "Independence Day", + "1973-07-29": "Great Military Parade Day", + "1973-08-30": "Rose of Lima Day", + "1973-10-08": "Battle of Angamos Day", + "1973-11-01": "All Saints' Day", + "1973-12-08": "Immaculate Conception Day", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-04-11": "Maundy Thursday", + "1974-04-12": "Good Friday", + "1974-04-14": "Easter Sunday", + "1974-05-01": "Labour Day", + "1974-06-29": "Saint Peter and Saint Paul", + "1974-07-28": "Independence Day", + "1974-07-29": "Great Military Parade Day", + "1974-08-30": "Rose of Lima Day", + "1974-10-08": "Battle of Angamos Day", + "1974-11-01": "All Saints' Day", + "1974-12-08": "Immaculate Conception Day", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-03-27": "Maundy Thursday", + "1975-03-28": "Good Friday", + "1975-03-30": "Easter Sunday", + "1975-05-01": "Labour Day", + "1975-06-29": "Saint Peter and Saint Paul", + "1975-07-28": "Independence Day", + "1975-07-29": "Great Military Parade Day", + "1975-08-30": "Rose of Lima Day", + "1975-10-08": "Battle of Angamos Day", + "1975-11-01": "All Saints' Day", + "1975-12-08": "Immaculate Conception Day", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-04-15": "Maundy Thursday", + "1976-04-16": "Good Friday", + "1976-04-18": "Easter Sunday", + "1976-05-01": "Labour Day", + "1976-06-29": "Saint Peter and Saint Paul", + "1976-07-28": "Independence Day", + "1976-07-29": "Great Military Parade Day", + "1976-08-30": "Rose of Lima Day", + "1976-10-08": "Battle of Angamos Day", + "1976-11-01": "All Saints' Day", + "1976-12-08": "Immaculate Conception Day", + "1976-12-25": "Christmas Day", + "1977-01-01": "New Year's Day", + "1977-04-07": "Maundy Thursday", + "1977-04-08": "Good Friday", + "1977-04-10": "Easter Sunday", + "1977-05-01": "Labour Day", + "1977-06-29": "Saint Peter and Saint Paul", + "1977-07-28": "Independence Day", + "1977-07-29": "Great Military Parade Day", + "1977-08-30": "Rose of Lima Day", + "1977-10-08": "Battle of Angamos Day", + "1977-11-01": "All Saints' Day", + "1977-12-08": "Immaculate Conception Day", + "1977-12-25": "Christmas Day", + "1978-01-01": "New Year's Day", + "1978-03-23": "Maundy Thursday", + "1978-03-24": "Good Friday", + "1978-03-26": "Easter Sunday", + "1978-05-01": "Labour Day", + "1978-06-29": "Saint Peter and Saint Paul", + "1978-07-28": "Independence Day", + "1978-07-29": "Great Military Parade Day", + "1978-08-30": "Rose of Lima Day", + "1978-10-08": "Battle of Angamos Day", + "1978-11-01": "All Saints' Day", + "1978-12-08": "Immaculate Conception Day", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-04-12": "Maundy Thursday", + "1979-04-13": "Good Friday", + "1979-04-15": "Easter Sunday", + "1979-05-01": "Labour Day", + "1979-06-29": "Saint Peter and Saint Paul", + "1979-07-28": "Independence Day", + "1979-07-29": "Great Military Parade Day", + "1979-08-30": "Rose of Lima Day", + "1979-10-08": "Battle of Angamos Day", + "1979-11-01": "All Saints' Day", + "1979-12-08": "Immaculate Conception Day", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-04-03": "Maundy Thursday", + "1980-04-04": "Good Friday", + "1980-04-06": "Easter Sunday", + "1980-05-01": "Labour Day", + "1980-06-29": "Saint Peter and Saint Paul", + "1980-07-28": "Independence Day", + "1980-07-29": "Great Military Parade Day", + "1980-08-30": "Rose of Lima Day", + "1980-10-08": "Battle of Angamos Day", + "1980-11-01": "All Saints' Day", + "1980-12-08": "Immaculate Conception Day", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-04-16": "Maundy Thursday", + "1981-04-17": "Good Friday", + "1981-04-19": "Easter Sunday", + "1981-05-01": "Labour Day", + "1981-06-29": "Saint Peter and Saint Paul", + "1981-07-28": "Independence Day", + "1981-07-29": "Great Military Parade Day", + "1981-08-30": "Rose of Lima Day", + "1981-10-08": "Battle of Angamos Day", + "1981-11-01": "All Saints' Day", + "1981-12-08": "Immaculate Conception Day", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-04-08": "Maundy Thursday", + "1982-04-09": "Good Friday", + "1982-04-11": "Easter Sunday", + "1982-05-01": "Labour Day", + "1982-06-29": "Saint Peter and Saint Paul", + "1982-07-28": "Independence Day", + "1982-07-29": "Great Military Parade Day", + "1982-08-30": "Rose of Lima Day", + "1982-10-08": "Battle of Angamos Day", + "1982-11-01": "All Saints' Day", + "1982-12-08": "Immaculate Conception Day", + "1982-12-25": "Christmas Day", + "1983-01-01": "New Year's Day", + "1983-03-31": "Maundy Thursday", + "1983-04-01": "Good Friday", + "1983-04-03": "Easter Sunday", + "1983-05-01": "Labour Day", + "1983-06-29": "Saint Peter and Saint Paul", + "1983-07-28": "Independence Day", + "1983-07-29": "Great Military Parade Day", + "1983-08-30": "Rose of Lima Day", + "1983-10-08": "Battle of Angamos Day", + "1983-11-01": "All Saints' Day", + "1983-12-08": "Immaculate Conception Day", + "1983-12-25": "Christmas Day", + "1984-01-01": "New Year's Day", + "1984-04-19": "Maundy Thursday", + "1984-04-20": "Good Friday", + "1984-04-22": "Easter Sunday", + "1984-05-01": "Labour Day", + "1984-06-29": "Saint Peter and Saint Paul", + "1984-07-28": "Independence Day", + "1984-07-29": "Great Military Parade Day", + "1984-08-30": "Rose of Lima Day", + "1984-10-08": "Battle of Angamos Day", + "1984-11-01": "All Saints' Day", + "1984-12-08": "Immaculate Conception Day", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-04-04": "Maundy Thursday", + "1985-04-05": "Good Friday", + "1985-04-07": "Easter Sunday", + "1985-05-01": "Labour Day", + "1985-06-29": "Saint Peter and Saint Paul", + "1985-07-28": "Independence Day", + "1985-07-29": "Great Military Parade Day", + "1985-08-30": "Rose of Lima Day", + "1985-10-08": "Battle of Angamos Day", + "1985-11-01": "All Saints' Day", + "1985-12-08": "Immaculate Conception Day", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-03-27": "Maundy Thursday", + "1986-03-28": "Good Friday", + "1986-03-30": "Easter Sunday", + "1986-05-01": "Labour Day", + "1986-06-29": "Saint Peter and Saint Paul", + "1986-07-28": "Independence Day", + "1986-07-29": "Great Military Parade Day", + "1986-08-30": "Rose of Lima Day", + "1986-10-08": "Battle of Angamos Day", + "1986-11-01": "All Saints' Day", + "1986-12-08": "Immaculate Conception Day", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-04-16": "Maundy Thursday", + "1987-04-17": "Good Friday", + "1987-04-19": "Easter Sunday", + "1987-05-01": "Labour Day", + "1987-06-29": "Saint Peter and Saint Paul", + "1987-07-28": "Independence Day", + "1987-07-29": "Great Military Parade Day", + "1987-08-30": "Rose of Lima Day", + "1987-10-08": "Battle of Angamos Day", + "1987-11-01": "All Saints' Day", + "1987-12-08": "Immaculate Conception Day", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-03-31": "Maundy Thursday", + "1988-04-01": "Good Friday", + "1988-04-03": "Easter Sunday", + "1988-05-01": "Labour Day", + "1988-06-29": "Saint Peter and Saint Paul", + "1988-07-28": "Independence Day", + "1988-07-29": "Great Military Parade Day", + "1988-08-30": "Rose of Lima Day", + "1988-10-08": "Battle of Angamos Day", + "1988-11-01": "All Saints' Day", + "1988-12-08": "Immaculate Conception Day", + "1988-12-25": "Christmas Day", + "1989-01-01": "New Year's Day", + "1989-03-23": "Maundy Thursday", + "1989-03-24": "Good Friday", + "1989-03-26": "Easter Sunday", + "1989-05-01": "Labour Day", + "1989-06-29": "Saint Peter and Saint Paul", + "1989-07-28": "Independence Day", + "1989-07-29": "Great Military Parade Day", + "1989-08-30": "Rose of Lima Day", + "1989-10-08": "Battle of Angamos Day", + "1989-11-01": "All Saints' Day", + "1989-12-08": "Immaculate Conception Day", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-04-12": "Maundy Thursday", + "1990-04-13": "Good Friday", + "1990-04-15": "Easter Sunday", + "1990-05-01": "Labour Day", + "1990-06-29": "Saint Peter and Saint Paul", + "1990-07-28": "Independence Day", + "1990-07-29": "Great Military Parade Day", + "1990-08-30": "Rose of Lima Day", + "1990-10-08": "Battle of Angamos Day", + "1990-11-01": "All Saints' Day", + "1990-12-08": "Immaculate Conception Day", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-03-28": "Maundy Thursday", + "1991-03-29": "Good Friday", + "1991-03-31": "Easter Sunday", + "1991-05-01": "Labour Day", + "1991-06-29": "Saint Peter and Saint Paul", + "1991-07-28": "Independence Day", + "1991-07-29": "Great Military Parade Day", + "1991-08-30": "Rose of Lima Day", + "1991-10-08": "Battle of Angamos Day", + "1991-11-01": "All Saints' Day", + "1991-12-08": "Immaculate Conception Day", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-04-16": "Maundy Thursday", + "1992-04-17": "Good Friday", + "1992-04-19": "Easter Sunday", + "1992-05-01": "Labour Day", + "1992-06-29": "Saint Peter and Saint Paul", + "1992-07-28": "Independence Day", + "1992-07-29": "Great Military Parade Day", + "1992-08-30": "Rose of Lima Day", + "1992-10-08": "Battle of Angamos Day", + "1992-11-01": "All Saints' Day", + "1992-12-08": "Immaculate Conception Day", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-04-08": "Maundy Thursday", + "1993-04-09": "Good Friday", + "1993-04-11": "Easter Sunday", + "1993-05-01": "Labour Day", + "1993-06-29": "Saint Peter and Saint Paul", + "1993-07-28": "Independence Day", + "1993-07-29": "Great Military Parade Day", + "1993-08-30": "Rose of Lima Day", + "1993-10-08": "Battle of Angamos Day", + "1993-11-01": "All Saints' Day", + "1993-12-08": "Immaculate Conception Day", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-03-31": "Maundy Thursday", + "1994-04-01": "Good Friday", + "1994-04-03": "Easter Sunday", + "1994-05-01": "Labour Day", + "1994-06-29": "Saint Peter and Saint Paul", + "1994-07-28": "Independence Day", + "1994-07-29": "Great Military Parade Day", + "1994-08-30": "Rose of Lima Day", + "1994-10-08": "Battle of Angamos Day", + "1994-11-01": "All Saints' Day", + "1994-12-08": "Immaculate Conception Day", + "1994-12-25": "Christmas Day", + "1995-01-01": "New Year's Day", + "1995-04-13": "Maundy Thursday", + "1995-04-14": "Good Friday", + "1995-04-16": "Easter Sunday", + "1995-05-01": "Labour Day", + "1995-06-29": "Saint Peter and Saint Paul", + "1995-07-28": "Independence Day", + "1995-07-29": "Great Military Parade Day", + "1995-08-30": "Rose of Lima Day", + "1995-10-08": "Battle of Angamos Day", + "1995-11-01": "All Saints' Day", + "1995-12-08": "Immaculate Conception Day", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-04-04": "Maundy Thursday", + "1996-04-05": "Good Friday", + "1996-04-07": "Easter Sunday", + "1996-05-01": "Labour Day", + "1996-06-29": "Saint Peter and Saint Paul", + "1996-07-28": "Independence Day", + "1996-07-29": "Great Military Parade Day", + "1996-08-30": "Rose of Lima Day", + "1996-10-08": "Battle of Angamos Day", + "1996-11-01": "All Saints' Day", + "1996-12-08": "Immaculate Conception Day", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-03-27": "Maundy Thursday", + "1997-03-28": "Good Friday", + "1997-03-30": "Easter Sunday", + "1997-05-01": "Labour Day", + "1997-06-29": "Saint Peter and Saint Paul", + "1997-07-28": "Independence Day", + "1997-07-29": "Great Military Parade Day", + "1997-08-30": "Rose of Lima Day", + "1997-10-08": "Battle of Angamos Day", + "1997-11-01": "All Saints' Day", + "1997-12-08": "Immaculate Conception Day", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-04-09": "Maundy Thursday", + "1998-04-10": "Good Friday", + "1998-04-12": "Easter Sunday", + "1998-05-01": "Labour Day", + "1998-06-29": "Saint Peter and Saint Paul", + "1998-07-28": "Independence Day", + "1998-07-29": "Great Military Parade Day", + "1998-08-30": "Rose of Lima Day", + "1998-10-08": "Battle of Angamos Day", + "1998-11-01": "All Saints' Day", + "1998-12-08": "Immaculate Conception Day", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-04-01": "Maundy Thursday", + "1999-04-02": "Good Friday", + "1999-04-04": "Easter Sunday", + "1999-05-01": "Labour Day", + "1999-06-29": "Saint Peter and Saint Paul", + "1999-07-28": "Independence Day", + "1999-07-29": "Great Military Parade Day", + "1999-08-30": "Rose of Lima Day", + "1999-10-08": "Battle of Angamos Day", + "1999-11-01": "All Saints' Day", + "1999-12-08": "Immaculate Conception Day", + "1999-12-25": "Christmas Day", + "2000-01-01": "New Year's Day", + "2000-04-20": "Maundy Thursday", + "2000-04-21": "Good Friday", + "2000-04-23": "Easter Sunday", + "2000-05-01": "Labour Day", + "2000-06-29": "Saint Peter and Saint Paul", + "2000-07-28": "Independence Day", + "2000-07-29": "Great Military Parade Day", + "2000-08-30": "Rose of Lima Day", + "2000-10-08": "Battle of Angamos Day", + "2000-11-01": "All Saints' Day", + "2000-12-08": "Immaculate Conception Day", + "2000-12-25": "Christmas Day", + "2001-01-01": "New Year's Day", + "2001-04-12": "Maundy Thursday", + "2001-04-13": "Good Friday", + "2001-04-15": "Easter Sunday", + "2001-05-01": "Labour Day", + "2001-06-29": "Saint Peter and Saint Paul", + "2001-07-28": "Independence Day", + "2001-07-29": "Great Military Parade Day", + "2001-08-30": "Rose of Lima Day", + "2001-10-08": "Battle of Angamos Day", + "2001-11-01": "All Saints' Day", + "2001-12-08": "Immaculate Conception Day", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-03-28": "Maundy Thursday", + "2002-03-29": "Good Friday", + "2002-03-31": "Easter Sunday", + "2002-05-01": "Labour Day", + "2002-06-29": "Saint Peter and Saint Paul", + "2002-07-28": "Independence Day", + "2002-07-29": "Great Military Parade Day", + "2002-08-30": "Rose of Lima Day", + "2002-10-08": "Battle of Angamos Day", + "2002-11-01": "All Saints' Day", + "2002-12-08": "Immaculate Conception Day", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-04-17": "Maundy Thursday", + "2003-04-18": "Good Friday", + "2003-04-20": "Easter Sunday", + "2003-05-01": "Labour Day", + "2003-06-29": "Saint Peter and Saint Paul", + "2003-07-28": "Independence Day", + "2003-07-29": "Great Military Parade Day", + "2003-08-30": "Rose of Lima Day", + "2003-10-08": "Battle of Angamos Day", + "2003-11-01": "All Saints' Day", + "2003-12-08": "Immaculate Conception Day", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-04-08": "Maundy Thursday", + "2004-04-09": "Good Friday", + "2004-04-11": "Easter Sunday", + "2004-05-01": "Labour Day", + "2004-06-29": "Saint Peter and Saint Paul", + "2004-07-28": "Independence Day", + "2004-07-29": "Great Military Parade Day", + "2004-08-30": "Rose of Lima Day", + "2004-10-08": "Battle of Angamos Day", + "2004-11-01": "All Saints' Day", + "2004-12-08": "Immaculate Conception Day", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-03-24": "Maundy Thursday", + "2005-03-25": "Good Friday", + "2005-03-27": "Easter Sunday", + "2005-05-01": "Labour Day", + "2005-06-29": "Saint Peter and Saint Paul", + "2005-07-28": "Independence Day", + "2005-07-29": "Great Military Parade Day", + "2005-08-30": "Rose of Lima Day", + "2005-10-08": "Battle of Angamos Day", + "2005-11-01": "All Saints' Day", + "2005-12-08": "Immaculate Conception Day", + "2005-12-25": "Christmas Day", + "2006-01-01": "New Year's Day", + "2006-04-13": "Maundy Thursday", + "2006-04-14": "Good Friday", + "2006-04-16": "Easter Sunday", + "2006-05-01": "Labour Day", + "2006-06-29": "Saint Peter and Saint Paul", + "2006-07-28": "Independence Day", + "2006-07-29": "Great Military Parade Day", + "2006-08-30": "Rose of Lima Day", + "2006-10-08": "Battle of Angamos Day", + "2006-11-01": "All Saints' Day", + "2006-12-08": "Immaculate Conception Day", + "2006-12-25": "Christmas Day", + "2007-01-01": "New Year's Day", + "2007-04-05": "Maundy Thursday", + "2007-04-06": "Good Friday", + "2007-04-08": "Easter Sunday", + "2007-05-01": "Labour Day", + "2007-06-29": "Saint Peter and Saint Paul", + "2007-07-28": "Independence Day", + "2007-07-29": "Great Military Parade Day", + "2007-08-30": "Rose of Lima Day", + "2007-10-08": "Battle of Angamos Day", + "2007-11-01": "All Saints' Day", + "2007-12-08": "Immaculate Conception Day", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-03-20": "Maundy Thursday", + "2008-03-21": "Good Friday", + "2008-03-23": "Easter Sunday", + "2008-05-01": "Labour Day", + "2008-06-29": "Saint Peter and Saint Paul", + "2008-07-28": "Independence Day", + "2008-07-29": "Great Military Parade Day", + "2008-08-30": "Rose of Lima Day", + "2008-10-08": "Battle of Angamos Day", + "2008-11-01": "All Saints' Day", + "2008-12-08": "Immaculate Conception Day", + "2008-12-25": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-04-09": "Maundy Thursday", + "2009-04-10": "Good Friday", + "2009-04-12": "Easter Sunday", + "2009-05-01": "Labour Day", + "2009-06-29": "Saint Peter and Saint Paul", + "2009-07-28": "Independence Day", + "2009-07-29": "Great Military Parade Day", + "2009-08-30": "Rose of Lima Day", + "2009-10-08": "Battle of Angamos Day", + "2009-11-01": "All Saints' Day", + "2009-12-08": "Immaculate Conception Day", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-04-01": "Maundy Thursday", + "2010-04-02": "Good Friday", + "2010-04-04": "Easter Sunday", + "2010-05-01": "Labour Day", + "2010-06-29": "Saint Peter and Saint Paul", + "2010-07-28": "Independence Day", + "2010-07-29": "Great Military Parade Day", + "2010-08-30": "Rose of Lima Day", + "2010-10-08": "Battle of Angamos Day", + "2010-11-01": "All Saints' Day", + "2010-12-08": "Immaculate Conception Day", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-04-21": "Maundy Thursday", + "2011-04-22": "Good Friday", + "2011-04-24": "Easter Sunday", + "2011-05-01": "Labour Day", + "2011-06-29": "Saint Peter and Saint Paul", + "2011-07-28": "Independence Day", + "2011-07-29": "Great Military Parade Day", + "2011-08-30": "Rose of Lima Day", + "2011-10-08": "Battle of Angamos Day", + "2011-11-01": "All Saints' Day", + "2011-12-08": "Immaculate Conception Day", + "2011-12-25": "Christmas Day", + "2012-01-01": "New Year's Day", + "2012-04-05": "Maundy Thursday", + "2012-04-06": "Good Friday", + "2012-04-08": "Easter Sunday", + "2012-05-01": "Labour Day", + "2012-06-29": "Saint Peter and Saint Paul", + "2012-07-28": "Independence Day", + "2012-07-29": "Great Military Parade Day", + "2012-08-30": "Rose of Lima Day", + "2012-10-08": "Battle of Angamos Day", + "2012-11-01": "All Saints' Day", + "2012-12-08": "Immaculate Conception Day", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-03-28": "Maundy Thursday", + "2013-03-29": "Good Friday", + "2013-03-31": "Easter Sunday", + "2013-05-01": "Labour Day", + "2013-06-29": "Saint Peter and Saint Paul", + "2013-07-28": "Independence Day", + "2013-07-29": "Great Military Parade Day", + "2013-08-30": "Rose of Lima Day", + "2013-10-08": "Battle of Angamos Day", + "2013-11-01": "All Saints' Day", + "2013-12-08": "Immaculate Conception Day", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-04-17": "Maundy Thursday", + "2014-04-18": "Good Friday", + "2014-04-20": "Easter Sunday", + "2014-05-01": "Labour Day", + "2014-06-29": "Saint Peter and Saint Paul", + "2014-07-28": "Independence Day", + "2014-07-29": "Great Military Parade Day", + "2014-08-30": "Rose of Lima Day", + "2014-10-08": "Battle of Angamos Day", + "2014-11-01": "All Saints' Day", + "2014-12-08": "Immaculate Conception Day", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-04-02": "Maundy Thursday", + "2015-04-03": "Good Friday", + "2015-04-05": "Easter Sunday", + "2015-05-01": "Labour Day", + "2015-06-29": "Saint Peter and Saint Paul", + "2015-07-28": "Independence Day", + "2015-07-29": "Great Military Parade Day", + "2015-08-30": "Rose of Lima Day", + "2015-10-08": "Battle of Angamos Day", + "2015-11-01": "All Saints' Day", + "2015-12-08": "Immaculate Conception Day", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-03-24": "Maundy Thursday", + "2016-03-25": "Good Friday", + "2016-03-27": "Easter Sunday", + "2016-05-01": "Labour Day", + "2016-06-29": "Saint Peter and Saint Paul", + "2016-07-28": "Independence Day", + "2016-07-29": "Great Military Parade Day", + "2016-08-30": "Rose of Lima Day", + "2016-10-08": "Battle of Angamos Day", + "2016-11-01": "All Saints' Day", + "2016-12-08": "Immaculate Conception Day", + "2016-12-25": "Christmas Day", + "2017-01-01": "New Year's Day", + "2017-04-13": "Maundy Thursday", + "2017-04-14": "Good Friday", + "2017-04-16": "Easter Sunday", + "2017-05-01": "Labour Day", + "2017-06-29": "Saint Peter and Saint Paul", + "2017-07-28": "Independence Day", + "2017-07-29": "Great Military Parade Day", + "2017-08-30": "Rose of Lima Day", + "2017-10-08": "Battle of Angamos Day", + "2017-11-01": "All Saints' Day", + "2017-12-08": "Immaculate Conception Day", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-03-29": "Maundy Thursday", + "2018-03-30": "Good Friday", + "2018-04-01": "Easter Sunday", + "2018-05-01": "Labour Day", + "2018-06-29": "Saint Peter and Saint Paul", + "2018-07-28": "Independence Day", + "2018-07-29": "Great Military Parade Day", + "2018-08-30": "Rose of Lima Day", + "2018-10-08": "Battle of Angamos Day", + "2018-11-01": "All Saints' Day", + "2018-12-08": "Immaculate Conception Day", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-04-18": "Maundy Thursday", + "2019-04-19": "Good Friday", + "2019-04-21": "Easter Sunday", + "2019-05-01": "Labour Day", + "2019-06-29": "Saint Peter and Saint Paul", + "2019-07-28": "Independence Day", + "2019-07-29": "Great Military Parade Day", + "2019-08-30": "Rose of Lima Day", + "2019-10-08": "Battle of Angamos Day", + "2019-11-01": "All Saints' Day", + "2019-12-08": "Immaculate Conception Day", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-04-09": "Maundy Thursday", + "2020-04-10": "Good Friday", + "2020-04-12": "Easter Sunday", + "2020-05-01": "Labour Day", + "2020-06-29": "Saint Peter and Saint Paul", + "2020-07-28": "Independence Day", + "2020-07-29": "Great Military Parade Day", + "2020-08-30": "Rose of Lima Day", + "2020-10-08": "Battle of Angamos Day", + "2020-11-01": "All Saints' Day", + "2020-12-08": "Immaculate Conception Day", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-04-01": "Maundy Thursday", + "2021-04-02": "Good Friday", + "2021-04-04": "Easter Sunday", + "2021-05-01": "Labour Day", + "2021-06-29": "Saint Peter and Saint Paul", + "2021-07-28": "Independence Day", + "2021-07-29": "Great Military Parade Day", + "2021-08-30": "Rose of Lima Day", + "2021-10-08": "Battle of Angamos Day", + "2021-11-01": "All Saints' Day", + "2021-12-08": "Immaculate Conception Day", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-04-14": "Maundy Thursday", + "2022-04-15": "Good Friday", + "2022-04-17": "Easter Sunday", + "2022-05-01": "Labour Day", + "2022-06-29": "Saint Peter and Saint Paul", + "2022-07-28": "Independence Day", + "2022-07-29": "Great Military Parade Day", + "2022-08-06": "Battle of Jun\u00edn Day", + "2022-08-30": "Rose of Lima Day", + "2022-10-08": "Battle of Angamos Day", + "2022-11-01": "All Saints' Day", + "2022-12-08": "Immaculate Conception Day", + "2022-12-09": "Battle of Ayacucho Day", + "2022-12-25": "Christmas Day", + "2023-01-01": "New Year's Day", + "2023-04-06": "Maundy Thursday", + "2023-04-07": "Good Friday", + "2023-04-09": "Easter Sunday", + "2023-05-01": "Labour Day", + "2023-06-29": "Saint Peter and Saint Paul", + "2023-07-28": "Independence Day", + "2023-07-29": "Great Military Parade Day", + "2023-08-06": "Battle of Jun\u00edn Day", + "2023-08-30": "Rose of Lima Day", + "2023-10-08": "Battle of Angamos Day", + "2023-11-01": "All Saints' Day", + "2023-12-08": "Immaculate Conception Day", + "2023-12-09": "Battle of Ayacucho Day", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-03-28": "Maundy Thursday", + "2024-03-29": "Good Friday", + "2024-03-31": "Easter Sunday", + "2024-05-01": "Labour Day", + "2024-06-29": "Saint Peter and Saint Paul", + "2024-07-28": "Independence Day", + "2024-07-29": "Great Military Parade Day", + "2024-08-06": "Battle of Jun\u00edn Day", + "2024-08-30": "Rose of Lima Day", + "2024-10-08": "Battle of Angamos Day", + "2024-11-01": "All Saints' Day", + "2024-12-08": "Immaculate Conception Day", + "2024-12-09": "Battle of Ayacucho Day", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-04-17": "Maundy Thursday", + "2025-04-18": "Good Friday", + "2025-04-20": "Easter Sunday", + "2025-05-01": "Labour Day", + "2025-06-29": "Saint Peter and Saint Paul", + "2025-07-28": "Independence Day", + "2025-07-29": "Great Military Parade Day", + "2025-08-06": "Battle of Jun\u00edn Day", + "2025-08-30": "Rose of Lima Day", + "2025-10-08": "Battle of Angamos Day", + "2025-11-01": "All Saints' Day", + "2025-12-08": "Immaculate Conception Day", + "2025-12-09": "Battle of Ayacucho Day", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-04-02": "Maundy Thursday", + "2026-04-03": "Good Friday", + "2026-04-05": "Easter Sunday", + "2026-05-01": "Labour Day", + "2026-06-29": "Saint Peter and Saint Paul", + "2026-07-28": "Independence Day", + "2026-07-29": "Great Military Parade Day", + "2026-08-06": "Battle of Jun\u00edn Day", + "2026-08-30": "Rose of Lima Day", + "2026-10-08": "Battle of Angamos Day", + "2026-11-01": "All Saints' Day", + "2026-12-08": "Immaculate Conception Day", + "2026-12-09": "Battle of Ayacucho Day", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-03-25": "Maundy Thursday", + "2027-03-26": "Good Friday", + "2027-03-28": "Easter Sunday", + "2027-05-01": "Labour Day", + "2027-06-29": "Saint Peter and Saint Paul", + "2027-07-28": "Independence Day", + "2027-07-29": "Great Military Parade Day", + "2027-08-06": "Battle of Jun\u00edn Day", + "2027-08-30": "Rose of Lima Day", + "2027-10-08": "Battle of Angamos Day", + "2027-11-01": "All Saints' Day", + "2027-12-08": "Immaculate Conception Day", + "2027-12-09": "Battle of Ayacucho Day", + "2027-12-25": "Christmas Day", + "2028-01-01": "New Year's Day", + "2028-04-13": "Maundy Thursday", + "2028-04-14": "Good Friday", + "2028-04-16": "Easter Sunday", + "2028-05-01": "Labour Day", + "2028-06-29": "Saint Peter and Saint Paul", + "2028-07-28": "Independence Day", + "2028-07-29": "Great Military Parade Day", + "2028-08-06": "Battle of Jun\u00edn Day", + "2028-08-30": "Rose of Lima Day", + "2028-10-08": "Battle of Angamos Day", + "2028-11-01": "All Saints' Day", + "2028-12-08": "Immaculate Conception Day", + "2028-12-09": "Battle of Ayacucho Day", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-03-29": "Maundy Thursday", + "2029-03-30": "Good Friday", + "2029-04-01": "Easter Sunday", + "2029-05-01": "Labour Day", + "2029-06-29": "Saint Peter and Saint Paul", + "2029-07-28": "Independence Day", + "2029-07-29": "Great Military Parade Day", + "2029-08-06": "Battle of Jun\u00edn Day", + "2029-08-30": "Rose of Lima Day", + "2029-10-08": "Battle of Angamos Day", + "2029-11-01": "All Saints' Day", + "2029-12-08": "Immaculate Conception Day", + "2029-12-09": "Battle of Ayacucho Day", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-04-18": "Maundy Thursday", + "2030-04-19": "Good Friday", + "2030-04-21": "Easter Sunday", + "2030-05-01": "Labour Day", + "2030-06-29": "Saint Peter and Saint Paul", + "2030-07-28": "Independence Day", + "2030-07-29": "Great Military Parade Day", + "2030-08-06": "Battle of Jun\u00edn Day", + "2030-08-30": "Rose of Lima Day", + "2030-10-08": "Battle of Angamos Day", + "2030-11-01": "All Saints' Day", + "2030-12-08": "Immaculate Conception Day", + "2030-12-09": "Battle of Ayacucho Day", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-04-10": "Maundy Thursday", + "2031-04-11": "Good Friday", + "2031-04-13": "Easter Sunday", + "2031-05-01": "Labour Day", + "2031-06-29": "Saint Peter and Saint Paul", + "2031-07-28": "Independence Day", + "2031-07-29": "Great Military Parade Day", + "2031-08-06": "Battle of Jun\u00edn Day", + "2031-08-30": "Rose of Lima Day", + "2031-10-08": "Battle of Angamos Day", + "2031-11-01": "All Saints' Day", + "2031-12-08": "Immaculate Conception Day", + "2031-12-09": "Battle of Ayacucho Day", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-03-25": "Maundy Thursday", + "2032-03-26": "Good Friday", + "2032-03-28": "Easter Sunday", + "2032-05-01": "Labour Day", + "2032-06-29": "Saint Peter and Saint Paul", + "2032-07-28": "Independence Day", + "2032-07-29": "Great Military Parade Day", + "2032-08-06": "Battle of Jun\u00edn Day", + "2032-08-30": "Rose of Lima Day", + "2032-10-08": "Battle of Angamos Day", + "2032-11-01": "All Saints' Day", + "2032-12-08": "Immaculate Conception Day", + "2032-12-09": "Battle of Ayacucho Day", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-04-14": "Maundy Thursday", + "2033-04-15": "Good Friday", + "2033-04-17": "Easter Sunday", + "2033-05-01": "Labour Day", + "2033-06-29": "Saint Peter and Saint Paul", + "2033-07-28": "Independence Day", + "2033-07-29": "Great Military Parade Day", + "2033-08-06": "Battle of Jun\u00edn Day", + "2033-08-30": "Rose of Lima Day", + "2033-10-08": "Battle of Angamos Day", + "2033-11-01": "All Saints' Day", + "2033-12-08": "Immaculate Conception Day", + "2033-12-09": "Battle of Ayacucho Day", + "2033-12-25": "Christmas Day", + "2034-01-01": "New Year's Day", + "2034-04-06": "Maundy Thursday", + "2034-04-07": "Good Friday", + "2034-04-09": "Easter Sunday", + "2034-05-01": "Labour Day", + "2034-06-29": "Saint Peter and Saint Paul", + "2034-07-28": "Independence Day", + "2034-07-29": "Great Military Parade Day", + "2034-08-06": "Battle of Jun\u00edn Day", + "2034-08-30": "Rose of Lima Day", + "2034-10-08": "Battle of Angamos Day", + "2034-11-01": "All Saints' Day", + "2034-12-08": "Immaculate Conception Day", + "2034-12-09": "Battle of Ayacucho Day", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-03-22": "Maundy Thursday", + "2035-03-23": "Good Friday", + "2035-03-25": "Easter Sunday", + "2035-05-01": "Labour Day", + "2035-06-29": "Saint Peter and Saint Paul", + "2035-07-28": "Independence Day", + "2035-07-29": "Great Military Parade Day", + "2035-08-06": "Battle of Jun\u00edn Day", + "2035-08-30": "Rose of Lima Day", + "2035-10-08": "Battle of Angamos Day", + "2035-11-01": "All Saints' Day", + "2035-12-08": "Immaculate Conception Day", + "2035-12-09": "Battle of Ayacucho Day", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-04-10": "Maundy Thursday", + "2036-04-11": "Good Friday", + "2036-04-13": "Easter Sunday", + "2036-05-01": "Labour Day", + "2036-06-29": "Saint Peter and Saint Paul", + "2036-07-28": "Independence Day", + "2036-07-29": "Great Military Parade Day", + "2036-08-06": "Battle of Jun\u00edn Day", + "2036-08-30": "Rose of Lima Day", + "2036-10-08": "Battle of Angamos Day", + "2036-11-01": "All Saints' Day", + "2036-12-08": "Immaculate Conception Day", + "2036-12-09": "Battle of Ayacucho Day", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-04-02": "Maundy Thursday", + "2037-04-03": "Good Friday", + "2037-04-05": "Easter Sunday", + "2037-05-01": "Labour Day", + "2037-06-29": "Saint Peter and Saint Paul", + "2037-07-28": "Independence Day", + "2037-07-29": "Great Military Parade Day", + "2037-08-06": "Battle of Jun\u00edn Day", + "2037-08-30": "Rose of Lima Day", + "2037-10-08": "Battle of Angamos Day", + "2037-11-01": "All Saints' Day", + "2037-12-08": "Immaculate Conception Day", + "2037-12-09": "Battle of Ayacucho Day", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-04-22": "Maundy Thursday", + "2038-04-23": "Good Friday", + "2038-04-25": "Easter Sunday", + "2038-05-01": "Labour Day", + "2038-06-29": "Saint Peter and Saint Paul", + "2038-07-28": "Independence Day", + "2038-07-29": "Great Military Parade Day", + "2038-08-06": "Battle of Jun\u00edn Day", + "2038-08-30": "Rose of Lima Day", + "2038-10-08": "Battle of Angamos Day", + "2038-11-01": "All Saints' Day", + "2038-12-08": "Immaculate Conception Day", + "2038-12-09": "Battle of Ayacucho Day", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-04-07": "Maundy Thursday", + "2039-04-08": "Good Friday", + "2039-04-10": "Easter Sunday", + "2039-05-01": "Labour Day", + "2039-06-29": "Saint Peter and Saint Paul", + "2039-07-28": "Independence Day", + "2039-07-29": "Great Military Parade Day", + "2039-08-06": "Battle of Jun\u00edn Day", + "2039-08-30": "Rose of Lima Day", + "2039-10-08": "Battle of Angamos Day", + "2039-11-01": "All Saints' Day", + "2039-12-08": "Immaculate Conception Day", + "2039-12-09": "Battle of Ayacucho Day", + "2039-12-25": "Christmas Day", + "2040-01-01": "New Year's Day", + "2040-03-29": "Maundy Thursday", + "2040-03-30": "Good Friday", + "2040-04-01": "Easter Sunday", + "2040-05-01": "Labour Day", + "2040-06-29": "Saint Peter and Saint Paul", + "2040-07-28": "Independence Day", + "2040-07-29": "Great Military Parade Day", + "2040-08-06": "Battle of Jun\u00edn Day", + "2040-08-30": "Rose of Lima Day", + "2040-10-08": "Battle of Angamos Day", + "2040-11-01": "All Saints' Day", + "2040-12-08": "Immaculate Conception Day", + "2040-12-09": "Battle of Ayacucho Day", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-04-18": "Maundy Thursday", + "2041-04-19": "Good Friday", + "2041-04-21": "Easter Sunday", + "2041-05-01": "Labour Day", + "2041-06-29": "Saint Peter and Saint Paul", + "2041-07-28": "Independence Day", + "2041-07-29": "Great Military Parade Day", + "2041-08-06": "Battle of Jun\u00edn Day", + "2041-08-30": "Rose of Lima Day", + "2041-10-08": "Battle of Angamos Day", + "2041-11-01": "All Saints' Day", + "2041-12-08": "Immaculate Conception Day", + "2041-12-09": "Battle of Ayacucho Day", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-04-03": "Maundy Thursday", + "2042-04-04": "Good Friday", + "2042-04-06": "Easter Sunday", + "2042-05-01": "Labour Day", + "2042-06-29": "Saint Peter and Saint Paul", + "2042-07-28": "Independence Day", + "2042-07-29": "Great Military Parade Day", + "2042-08-06": "Battle of Jun\u00edn Day", + "2042-08-30": "Rose of Lima Day", + "2042-10-08": "Battle of Angamos Day", + "2042-11-01": "All Saints' Day", + "2042-12-08": "Immaculate Conception Day", + "2042-12-09": "Battle of Ayacucho Day", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-03-26": "Maundy Thursday", + "2043-03-27": "Good Friday", + "2043-03-29": "Easter Sunday", + "2043-05-01": "Labour Day", + "2043-06-29": "Saint Peter and Saint Paul", + "2043-07-28": "Independence Day", + "2043-07-29": "Great Military Parade Day", + "2043-08-06": "Battle of Jun\u00edn Day", + "2043-08-30": "Rose of Lima Day", + "2043-10-08": "Battle of Angamos Day", + "2043-11-01": "All Saints' Day", + "2043-12-08": "Immaculate Conception Day", + "2043-12-09": "Battle of Ayacucho Day", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-04-14": "Maundy Thursday", + "2044-04-15": "Good Friday", + "2044-04-17": "Easter Sunday", + "2044-05-01": "Labour Day", + "2044-06-29": "Saint Peter and Saint Paul", + "2044-07-28": "Independence Day", + "2044-07-29": "Great Military Parade Day", + "2044-08-06": "Battle of Jun\u00edn Day", + "2044-08-30": "Rose of Lima Day", + "2044-10-08": "Battle of Angamos Day", + "2044-11-01": "All Saints' Day", + "2044-12-08": "Immaculate Conception Day", + "2044-12-09": "Battle of Ayacucho Day", + "2044-12-25": "Christmas Day", + "2045-01-01": "New Year's Day", + "2045-04-06": "Maundy Thursday", + "2045-04-07": "Good Friday", + "2045-04-09": "Easter Sunday", + "2045-05-01": "Labour Day", + "2045-06-29": "Saint Peter and Saint Paul", + "2045-07-28": "Independence Day", + "2045-07-29": "Great Military Parade Day", + "2045-08-06": "Battle of Jun\u00edn Day", + "2045-08-30": "Rose of Lima Day", + "2045-10-08": "Battle of Angamos Day", + "2045-11-01": "All Saints' Day", + "2045-12-08": "Immaculate Conception Day", + "2045-12-09": "Battle of Ayacucho Day", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-03-22": "Maundy Thursday", + "2046-03-23": "Good Friday", + "2046-03-25": "Easter Sunday", + "2046-05-01": "Labour Day", + "2046-06-29": "Saint Peter and Saint Paul", + "2046-07-28": "Independence Day", + "2046-07-29": "Great Military Parade Day", + "2046-08-06": "Battle of Jun\u00edn Day", + "2046-08-30": "Rose of Lima Day", + "2046-10-08": "Battle of Angamos Day", + "2046-11-01": "All Saints' Day", + "2046-12-08": "Immaculate Conception Day", + "2046-12-09": "Battle of Ayacucho Day", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-04-11": "Maundy Thursday", + "2047-04-12": "Good Friday", + "2047-04-14": "Easter Sunday", + "2047-05-01": "Labour Day", + "2047-06-29": "Saint Peter and Saint Paul", + "2047-07-28": "Independence Day", + "2047-07-29": "Great Military Parade Day", + "2047-08-06": "Battle of Jun\u00edn Day", + "2047-08-30": "Rose of Lima Day", + "2047-10-08": "Battle of Angamos Day", + "2047-11-01": "All Saints' Day", + "2047-12-08": "Immaculate Conception Day", + "2047-12-09": "Battle of Ayacucho Day", + "2047-12-25": "Christmas Day", + "2048-01-01": "New Year's Day", + "2048-04-02": "Maundy Thursday", + "2048-04-03": "Good Friday", + "2048-04-05": "Easter Sunday", + "2048-05-01": "Labour Day", + "2048-06-29": "Saint Peter and Saint Paul", + "2048-07-28": "Independence Day", + "2048-07-29": "Great Military Parade Day", + "2048-08-06": "Battle of Jun\u00edn Day", + "2048-08-30": "Rose of Lima Day", + "2048-10-08": "Battle of Angamos Day", + "2048-11-01": "All Saints' Day", + "2048-12-08": "Immaculate Conception Day", + "2048-12-09": "Battle of Ayacucho Day", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-04-15": "Maundy Thursday", + "2049-04-16": "Good Friday", + "2049-04-18": "Easter Sunday", + "2049-05-01": "Labour Day", + "2049-06-29": "Saint Peter and Saint Paul", + "2049-07-28": "Independence Day", + "2049-07-29": "Great Military Parade Day", + "2049-08-06": "Battle of Jun\u00edn Day", + "2049-08-30": "Rose of Lima Day", + "2049-10-08": "Battle of Angamos Day", + "2049-11-01": "All Saints' Day", + "2049-12-08": "Immaculate Conception Day", + "2049-12-09": "Battle of Ayacucho Day", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-04-07": "Maundy Thursday", + "2050-04-08": "Good Friday", + "2050-04-10": "Easter Sunday", + "2050-05-01": "Labour Day", + "2050-06-29": "Saint Peter and Saint Paul", + "2050-07-28": "Independence Day", + "2050-07-29": "Great Military Parade Day", + "2050-08-06": "Battle of Jun\u00edn Day", + "2050-08-30": "Rose of Lima Day", + "2050-10-08": "Battle of Angamos Day", + "2050-11-01": "All Saints' Day", + "2050-12-08": "Immaculate Conception Day", + "2050-12-09": "Battle of Ayacucho Day", + "2050-12-25": "Christmas Day" +} diff --git a/snapshots/countries/PH.json b/snapshots/countries/PH.json new file mode 100644 index 000000000..e7a366544 --- /dev/null +++ b/snapshots/countries/PH.json @@ -0,0 +1,1906 @@ +{ + "1950-01-01": "New Year's Day", + "1950-02-17": "Chinese New Year", + "1950-02-25": "EDSA Revolution Anniversary", + "1950-04-06": "Maundy Thursday", + "1950-04-07": "Good Friday", + "1950-04-08": "Black Saturday", + "1950-04-09": "Day of Valor", + "1950-05-01": "Labour Day", + "1950-06-12": "Independence Day", + "1950-07-16": "Eid'l Fitr* (*estimated)", + "1950-08-21": "Ninoy Aquino Day", + "1950-08-28": "National Heroes Day", + "1950-09-23": "Eid'l Adha* (*estimated)", + "1950-11-01": "All Saints' Day", + "1950-11-30": "Bonifacio Day", + "1950-12-08": "Immaculate Conception Day", + "1950-12-25": "Christmas Day", + "1950-12-30": "Rizal Day", + "1950-12-31": "New Year's Eve", + "1951-01-01": "New Year's Day", + "1951-02-06": "Chinese New Year", + "1951-02-25": "EDSA Revolution Anniversary", + "1951-03-22": "Maundy Thursday", + "1951-03-23": "Good Friday", + "1951-03-24": "Black Saturday", + "1951-04-09": "Day of Valor", + "1951-05-01": "Labour Day", + "1951-06-12": "Independence Day", + "1951-07-06": "Eid'l Fitr* (*estimated)", + "1951-08-21": "Ninoy Aquino Day", + "1951-08-27": "National Heroes Day", + "1951-09-12": "Eid'l Adha* (*estimated)", + "1951-11-01": "All Saints' Day", + "1951-11-30": "Bonifacio Day", + "1951-12-08": "Immaculate Conception Day", + "1951-12-25": "Christmas Day", + "1951-12-30": "Rizal Day", + "1951-12-31": "New Year's Eve", + "1952-01-01": "New Year's Day", + "1952-01-27": "Chinese New Year", + "1952-02-25": "EDSA Revolution Anniversary", + "1952-04-09": "Day of Valor", + "1952-04-10": "Maundy Thursday", + "1952-04-11": "Good Friday", + "1952-04-12": "Black Saturday", + "1952-05-01": "Labour Day", + "1952-06-12": "Independence Day", + "1952-06-23": "Eid'l Fitr* (*estimated)", + "1952-08-21": "Ninoy Aquino Day", + "1952-08-25": "National Heroes Day", + "1952-08-31": "Eid'l Adha* (*estimated)", + "1952-11-01": "All Saints' Day", + "1952-11-30": "Bonifacio Day", + "1952-12-08": "Immaculate Conception Day", + "1952-12-25": "Christmas Day", + "1952-12-30": "Rizal Day", + "1952-12-31": "New Year's Eve", + "1953-01-01": "New Year's Day", + "1953-02-14": "Chinese New Year", + "1953-02-25": "EDSA Revolution Anniversary", + "1953-04-02": "Maundy Thursday", + "1953-04-03": "Good Friday", + "1953-04-04": "Black Saturday", + "1953-04-09": "Day of Valor", + "1953-05-01": "Labour Day", + "1953-06-12": "Independence Day", + "1953-06-13": "Eid'l Fitr* (*estimated)", + "1953-08-20": "Eid'l Adha* (*estimated)", + "1953-08-21": "Ninoy Aquino Day", + "1953-08-31": "National Heroes Day", + "1953-11-01": "All Saints' Day", + "1953-11-30": "Bonifacio Day", + "1953-12-08": "Immaculate Conception Day", + "1953-12-25": "Christmas Day", + "1953-12-30": "Rizal Day", + "1953-12-31": "New Year's Eve", + "1954-01-01": "New Year's Day", + "1954-02-03": "Chinese New Year", + "1954-02-25": "EDSA Revolution Anniversary", + "1954-04-09": "Day of Valor", + "1954-04-15": "Maundy Thursday", + "1954-04-16": "Good Friday", + "1954-04-17": "Black Saturday", + "1954-05-01": "Labour Day", + "1954-06-02": "Eid'l Fitr* (*estimated)", + "1954-06-12": "Independence Day", + "1954-08-09": "Eid'l Adha* (*estimated)", + "1954-08-21": "Ninoy Aquino Day", + "1954-08-30": "National Heroes Day", + "1954-11-01": "All Saints' Day", + "1954-11-30": "Bonifacio Day", + "1954-12-08": "Immaculate Conception Day", + "1954-12-25": "Christmas Day", + "1954-12-30": "Rizal Day", + "1954-12-31": "New Year's Eve", + "1955-01-01": "New Year's Day", + "1955-01-24": "Chinese New Year", + "1955-02-25": "EDSA Revolution Anniversary", + "1955-04-07": "Maundy Thursday", + "1955-04-08": "Good Friday", + "1955-04-09": "Black Saturday; Day of Valor", + "1955-05-01": "Labour Day", + "1955-05-23": "Eid'l Fitr* (*estimated)", + "1955-06-12": "Independence Day", + "1955-07-30": "Eid'l Adha* (*estimated)", + "1955-08-21": "Ninoy Aquino Day", + "1955-08-29": "National Heroes Day", + "1955-11-01": "All Saints' Day", + "1955-11-30": "Bonifacio Day", + "1955-12-08": "Immaculate Conception Day", + "1955-12-25": "Christmas Day", + "1955-12-30": "Rizal Day", + "1955-12-31": "New Year's Eve", + "1956-01-01": "New Year's Day", + "1956-02-12": "Chinese New Year", + "1956-02-25": "EDSA Revolution Anniversary", + "1956-03-29": "Maundy Thursday", + "1956-03-30": "Good Friday", + "1956-03-31": "Black Saturday", + "1956-04-09": "Day of Valor", + "1956-05-01": "Labour Day", + "1956-05-11": "Eid'l Fitr* (*estimated)", + "1956-06-12": "Independence Day", + "1956-07-19": "Eid'l Adha* (*estimated)", + "1956-08-21": "Ninoy Aquino Day", + "1956-08-27": "National Heroes Day", + "1956-11-01": "All Saints' Day", + "1956-11-30": "Bonifacio Day", + "1956-12-08": "Immaculate Conception Day", + "1956-12-25": "Christmas Day", + "1956-12-30": "Rizal Day", + "1956-12-31": "New Year's Eve", + "1957-01-01": "New Year's Day", + "1957-01-31": "Chinese New Year", + "1957-02-25": "EDSA Revolution Anniversary", + "1957-04-09": "Day of Valor", + "1957-04-18": "Maundy Thursday", + "1957-04-19": "Good Friday", + "1957-04-20": "Black Saturday", + "1957-05-01": "Eid'l Fitr* (*estimated); Labour Day", + "1957-06-12": "Independence Day", + "1957-07-08": "Eid'l Adha* (*estimated)", + "1957-08-21": "Ninoy Aquino Day", + "1957-08-26": "National Heroes Day", + "1957-11-01": "All Saints' Day", + "1957-11-30": "Bonifacio Day", + "1957-12-08": "Immaculate Conception Day", + "1957-12-25": "Christmas Day", + "1957-12-30": "Rizal Day", + "1957-12-31": "New Year's Eve", + "1958-01-01": "New Year's Day", + "1958-02-18": "Chinese New Year", + "1958-02-25": "EDSA Revolution Anniversary", + "1958-04-03": "Maundy Thursday", + "1958-04-04": "Good Friday", + "1958-04-05": "Black Saturday", + "1958-04-09": "Day of Valor", + "1958-04-20": "Eid'l Fitr* (*estimated)", + "1958-05-01": "Labour Day", + "1958-06-12": "Independence Day", + "1958-06-27": "Eid'l Adha* (*estimated)", + "1958-08-21": "Ninoy Aquino Day", + "1958-08-25": "National Heroes Day", + "1958-11-01": "All Saints' Day", + "1958-11-30": "Bonifacio Day", + "1958-12-08": "Immaculate Conception Day", + "1958-12-25": "Christmas Day", + "1958-12-30": "Rizal Day", + "1958-12-31": "New Year's Eve", + "1959-01-01": "New Year's Day", + "1959-02-08": "Chinese New Year", + "1959-02-25": "EDSA Revolution Anniversary", + "1959-03-26": "Maundy Thursday", + "1959-03-27": "Good Friday", + "1959-03-28": "Black Saturday", + "1959-04-09": "Day of Valor", + "1959-04-10": "Eid'l Fitr* (*estimated)", + "1959-05-01": "Labour Day", + "1959-06-12": "Independence Day", + "1959-06-17": "Eid'l Adha* (*estimated)", + "1959-08-21": "Ninoy Aquino Day", + "1959-08-31": "National Heroes Day", + "1959-11-01": "All Saints' Day", + "1959-11-30": "Bonifacio Day", + "1959-12-08": "Immaculate Conception Day", + "1959-12-25": "Christmas Day", + "1959-12-30": "Rizal Day", + "1959-12-31": "New Year's Eve", + "1960-01-01": "New Year's Day", + "1960-01-28": "Chinese New Year", + "1960-02-25": "EDSA Revolution Anniversary", + "1960-03-28": "Eid'l Fitr* (*estimated)", + "1960-04-09": "Day of Valor", + "1960-04-14": "Maundy Thursday", + "1960-04-15": "Good Friday", + "1960-04-16": "Black Saturday", + "1960-05-01": "Labour Day", + "1960-06-04": "Eid'l Adha* (*estimated)", + "1960-06-12": "Independence Day", + "1960-08-21": "Ninoy Aquino Day", + "1960-08-29": "National Heroes Day", + "1960-11-01": "All Saints' Day", + "1960-11-30": "Bonifacio Day", + "1960-12-08": "Immaculate Conception Day", + "1960-12-25": "Christmas Day", + "1960-12-30": "Rizal Day", + "1960-12-31": "New Year's Eve", + "1961-01-01": "New Year's Day", + "1961-02-15": "Chinese New Year", + "1961-02-25": "EDSA Revolution Anniversary", + "1961-03-18": "Eid'l Fitr* (*estimated)", + "1961-03-30": "Maundy Thursday", + "1961-03-31": "Good Friday", + "1961-04-01": "Black Saturday", + "1961-04-09": "Day of Valor", + "1961-05-01": "Labour Day", + "1961-05-25": "Eid'l Adha* (*estimated)", + "1961-06-12": "Independence Day", + "1961-08-21": "Ninoy Aquino Day", + "1961-08-28": "National Heroes Day", + "1961-11-01": "All Saints' Day", + "1961-11-30": "Bonifacio Day", + "1961-12-08": "Immaculate Conception Day", + "1961-12-25": "Christmas Day", + "1961-12-30": "Rizal Day", + "1961-12-31": "New Year's Eve", + "1962-01-01": "New Year's Day", + "1962-02-05": "Chinese New Year", + "1962-02-25": "EDSA Revolution Anniversary", + "1962-03-07": "Eid'l Fitr* (*estimated)", + "1962-04-09": "Day of Valor", + "1962-04-19": "Maundy Thursday", + "1962-04-20": "Good Friday", + "1962-04-21": "Black Saturday", + "1962-05-01": "Labour Day", + "1962-05-14": "Eid'l Adha* (*estimated)", + "1962-06-12": "Independence Day", + "1962-08-21": "Ninoy Aquino Day", + "1962-08-27": "National Heroes Day", + "1962-11-01": "All Saints' Day", + "1962-11-30": "Bonifacio Day", + "1962-12-08": "Immaculate Conception Day", + "1962-12-25": "Christmas Day", + "1962-12-30": "Rizal Day", + "1962-12-31": "New Year's Eve", + "1963-01-01": "New Year's Day", + "1963-01-25": "Chinese New Year", + "1963-02-24": "Eid'l Fitr* (*estimated)", + "1963-02-25": "EDSA Revolution Anniversary", + "1963-04-09": "Day of Valor", + "1963-04-11": "Maundy Thursday", + "1963-04-12": "Good Friday", + "1963-04-13": "Black Saturday", + "1963-05-01": "Labour Day", + "1963-05-03": "Eid'l Adha* (*estimated)", + "1963-06-12": "Independence Day", + "1963-08-21": "Ninoy Aquino Day", + "1963-08-26": "National Heroes Day", + "1963-11-01": "All Saints' Day", + "1963-11-30": "Bonifacio Day", + "1963-12-08": "Immaculate Conception Day", + "1963-12-25": "Christmas Day", + "1963-12-30": "Rizal Day", + "1963-12-31": "New Year's Eve", + "1964-01-01": "New Year's Day", + "1964-02-13": "Chinese New Year", + "1964-02-14": "Eid'l Fitr* (*estimated)", + "1964-02-25": "EDSA Revolution Anniversary", + "1964-03-26": "Maundy Thursday", + "1964-03-27": "Good Friday", + "1964-03-28": "Black Saturday", + "1964-04-09": "Day of Valor", + "1964-04-22": "Eid'l Adha* (*estimated)", + "1964-05-01": "Labour Day", + "1964-06-12": "Independence Day", + "1964-08-21": "Ninoy Aquino Day", + "1964-08-31": "National Heroes Day", + "1964-11-01": "All Saints' Day", + "1964-11-30": "Bonifacio Day", + "1964-12-08": "Immaculate Conception Day", + "1964-12-25": "Christmas Day", + "1964-12-30": "Rizal Day", + "1964-12-31": "New Year's Eve", + "1965-01-01": "New Year's Day", + "1965-02-02": "Chinese New Year; Eid'l Fitr* (*estimated)", + "1965-02-25": "EDSA Revolution Anniversary", + "1965-04-09": "Day of Valor", + "1965-04-11": "Eid'l Adha* (*estimated)", + "1965-04-15": "Maundy Thursday", + "1965-04-16": "Good Friday", + "1965-04-17": "Black Saturday", + "1965-05-01": "Labour Day", + "1965-06-12": "Independence Day", + "1965-08-21": "Ninoy Aquino Day", + "1965-08-30": "National Heroes Day", + "1965-11-01": "All Saints' Day", + "1965-11-30": "Bonifacio Day", + "1965-12-08": "Immaculate Conception Day", + "1965-12-25": "Christmas Day", + "1965-12-30": "Rizal Day", + "1965-12-31": "New Year's Eve", + "1966-01-01": "New Year's Day", + "1966-01-21": "Chinese New Year", + "1966-01-22": "Eid'l Fitr* (*estimated)", + "1966-02-25": "EDSA Revolution Anniversary", + "1966-04-01": "Eid'l Adha* (*estimated)", + "1966-04-07": "Maundy Thursday", + "1966-04-08": "Good Friday", + "1966-04-09": "Black Saturday; Day of Valor", + "1966-05-01": "Labour Day", + "1966-06-12": "Independence Day", + "1966-08-21": "Ninoy Aquino Day", + "1966-08-29": "National Heroes Day", + "1966-11-01": "All Saints' Day", + "1966-11-30": "Bonifacio Day", + "1966-12-08": "Immaculate Conception Day", + "1966-12-25": "Christmas Day", + "1966-12-30": "Rizal Day", + "1966-12-31": "New Year's Eve", + "1967-01-01": "New Year's Day", + "1967-01-12": "Eid'l Fitr* (*estimated)", + "1967-02-09": "Chinese New Year", + "1967-02-25": "EDSA Revolution Anniversary", + "1967-03-21": "Eid'l Adha* (*estimated)", + "1967-03-23": "Maundy Thursday", + "1967-03-24": "Good Friday", + "1967-03-25": "Black Saturday", + "1967-04-09": "Day of Valor", + "1967-05-01": "Labour Day", + "1967-06-12": "Independence Day", + "1967-08-21": "Ninoy Aquino Day", + "1967-08-28": "National Heroes Day", + "1967-11-01": "All Saints' Day", + "1967-11-30": "Bonifacio Day", + "1967-12-08": "Immaculate Conception Day", + "1967-12-25": "Christmas Day", + "1967-12-30": "Rizal Day", + "1967-12-31": "New Year's Eve", + "1968-01-01": "Eid'l Fitr* (*estimated); New Year's Day", + "1968-01-30": "Chinese New Year", + "1968-02-25": "EDSA Revolution Anniversary", + "1968-03-09": "Eid'l Adha* (*estimated)", + "1968-04-09": "Day of Valor", + "1968-04-11": "Maundy Thursday", + "1968-04-12": "Good Friday", + "1968-04-13": "Black Saturday", + "1968-05-01": "Labour Day", + "1968-06-12": "Independence Day", + "1968-08-21": "Ninoy Aquino Day", + "1968-08-26": "National Heroes Day", + "1968-11-01": "All Saints' Day", + "1968-11-30": "Bonifacio Day", + "1968-12-08": "Immaculate Conception Day", + "1968-12-21": "Eid'l Fitr* (*estimated)", + "1968-12-25": "Christmas Day", + "1968-12-30": "Rizal Day", + "1968-12-31": "New Year's Eve", + "1969-01-01": "New Year's Day", + "1969-02-17": "Chinese New Year", + "1969-02-25": "EDSA Revolution Anniversary", + "1969-02-27": "Eid'l Adha* (*estimated)", + "1969-04-03": "Maundy Thursday", + "1969-04-04": "Good Friday", + "1969-04-05": "Black Saturday", + "1969-04-09": "Day of Valor", + "1969-05-01": "Labour Day", + "1969-06-12": "Independence Day", + "1969-08-21": "Ninoy Aquino Day", + "1969-08-25": "National Heroes Day", + "1969-11-01": "All Saints' Day", + "1969-11-30": "Bonifacio Day", + "1969-12-08": "Immaculate Conception Day", + "1969-12-10": "Eid'l Fitr* (*estimated)", + "1969-12-25": "Christmas Day", + "1969-12-30": "Rizal Day", + "1969-12-31": "New Year's Eve", + "1970-01-01": "New Year's Day", + "1970-02-06": "Chinese New Year", + "1970-02-16": "Eid'l Adha* (*estimated)", + "1970-02-25": "EDSA Revolution Anniversary", + "1970-03-26": "Maundy Thursday", + "1970-03-27": "Good Friday", + "1970-03-28": "Black Saturday", + "1970-04-09": "Day of Valor", + "1970-05-01": "Labour Day", + "1970-06-12": "Independence Day", + "1970-08-21": "Ninoy Aquino Day", + "1970-08-31": "National Heroes Day", + "1970-11-01": "All Saints' Day", + "1970-11-30": "Bonifacio Day; Eid'l Fitr* (*estimated)", + "1970-12-08": "Immaculate Conception Day", + "1970-12-25": "Christmas Day", + "1970-12-30": "Rizal Day", + "1970-12-31": "New Year's Eve", + "1971-01-01": "New Year's Day", + "1971-01-27": "Chinese New Year", + "1971-02-06": "Eid'l Adha* (*estimated)", + "1971-02-25": "EDSA Revolution Anniversary", + "1971-04-08": "Maundy Thursday", + "1971-04-09": "Day of Valor; Good Friday", + "1971-04-10": "Black Saturday", + "1971-05-01": "Labour Day", + "1971-06-12": "Independence Day", + "1971-08-21": "Ninoy Aquino Day", + "1971-08-30": "National Heroes Day", + "1971-11-01": "All Saints' Day", + "1971-11-19": "Eid'l Fitr* (*estimated)", + "1971-11-30": "Bonifacio Day", + "1971-12-08": "Immaculate Conception Day", + "1971-12-25": "Christmas Day", + "1971-12-30": "Rizal Day", + "1971-12-31": "New Year's Eve", + "1972-01-01": "New Year's Day", + "1972-01-26": "Eid'l Adha* (*estimated)", + "1972-02-15": "Chinese New Year", + "1972-02-25": "EDSA Revolution Anniversary", + "1972-03-30": "Maundy Thursday", + "1972-03-31": "Good Friday", + "1972-04-01": "Black Saturday", + "1972-04-09": "Day of Valor", + "1972-05-01": "Labour Day", + "1972-06-12": "Independence Day", + "1972-08-21": "Ninoy Aquino Day", + "1972-08-28": "National Heroes Day", + "1972-11-01": "All Saints' Day", + "1972-11-07": "Eid'l Fitr* (*estimated)", + "1972-11-30": "Bonifacio Day", + "1972-12-08": "Immaculate Conception Day", + "1972-12-25": "Christmas Day", + "1972-12-30": "Rizal Day", + "1972-12-31": "New Year's Eve", + "1973-01-01": "New Year's Day", + "1973-01-14": "Eid'l Adha* (*estimated)", + "1973-02-03": "Chinese New Year", + "1973-02-25": "EDSA Revolution Anniversary", + "1973-04-09": "Day of Valor", + "1973-04-19": "Maundy Thursday", + "1973-04-20": "Good Friday", + "1973-04-21": "Black Saturday", + "1973-05-01": "Labour Day", + "1973-06-12": "Independence Day", + "1973-08-21": "Ninoy Aquino Day", + "1973-08-27": "National Heroes Day", + "1973-10-27": "Eid'l Fitr* (*estimated)", + "1973-11-01": "All Saints' Day", + "1973-11-30": "Bonifacio Day", + "1973-12-08": "Immaculate Conception Day", + "1973-12-25": "Christmas Day", + "1973-12-30": "Rizal Day", + "1973-12-31": "New Year's Eve", + "1974-01-01": "New Year's Day", + "1974-01-03": "Eid'l Adha* (*estimated)", + "1974-01-23": "Chinese New Year", + "1974-02-25": "EDSA Revolution Anniversary", + "1974-04-09": "Day of Valor", + "1974-04-11": "Maundy Thursday", + "1974-04-12": "Good Friday", + "1974-04-13": "Black Saturday", + "1974-05-01": "Labour Day", + "1974-06-12": "Independence Day", + "1974-08-21": "Ninoy Aquino Day", + "1974-08-26": "National Heroes Day", + "1974-10-16": "Eid'l Fitr* (*estimated)", + "1974-11-01": "All Saints' Day", + "1974-11-30": "Bonifacio Day", + "1974-12-08": "Immaculate Conception Day", + "1974-12-24": "Eid'l Adha* (*estimated)", + "1974-12-25": "Christmas Day", + "1974-12-30": "Rizal Day", + "1974-12-31": "New Year's Eve", + "1975-01-01": "New Year's Day", + "1975-02-11": "Chinese New Year", + "1975-02-25": "EDSA Revolution Anniversary", + "1975-03-27": "Maundy Thursday", + "1975-03-28": "Good Friday", + "1975-03-29": "Black Saturday", + "1975-04-09": "Day of Valor", + "1975-05-01": "Labour Day", + "1975-06-12": "Independence Day", + "1975-08-21": "Ninoy Aquino Day", + "1975-08-25": "National Heroes Day", + "1975-10-06": "Eid'l Fitr* (*estimated)", + "1975-11-01": "All Saints' Day", + "1975-11-30": "Bonifacio Day", + "1975-12-08": "Immaculate Conception Day", + "1975-12-13": "Eid'l Adha* (*estimated)", + "1975-12-25": "Christmas Day", + "1975-12-30": "Rizal Day", + "1975-12-31": "New Year's Eve", + "1976-01-01": "New Year's Day", + "1976-01-31": "Chinese New Year", + "1976-02-25": "EDSA Revolution Anniversary", + "1976-04-09": "Day of Valor", + "1976-04-15": "Maundy Thursday", + "1976-04-16": "Good Friday", + "1976-04-17": "Black Saturday", + "1976-05-01": "Labour Day", + "1976-06-12": "Independence Day", + "1976-08-21": "Ninoy Aquino Day", + "1976-08-30": "National Heroes Day", + "1976-09-24": "Eid'l Fitr* (*estimated)", + "1976-11-01": "All Saints' Day", + "1976-11-30": "Bonifacio Day", + "1976-12-01": "Eid'l Adha* (*estimated)", + "1976-12-08": "Immaculate Conception Day", + "1976-12-25": "Christmas Day", + "1976-12-30": "Rizal Day", + "1976-12-31": "New Year's Eve", + "1977-01-01": "New Year's Day", + "1977-02-18": "Chinese New Year", + "1977-02-25": "EDSA Revolution Anniversary", + "1977-04-07": "Maundy Thursday", + "1977-04-08": "Good Friday", + "1977-04-09": "Black Saturday; Day of Valor", + "1977-05-01": "Labour Day", + "1977-06-12": "Independence Day", + "1977-08-21": "Ninoy Aquino Day", + "1977-08-29": "National Heroes Day", + "1977-09-14": "Eid'l Fitr* (*estimated)", + "1977-11-01": "All Saints' Day", + "1977-11-21": "Eid'l Adha* (*estimated)", + "1977-11-30": "Bonifacio Day", + "1977-12-08": "Immaculate Conception Day", + "1977-12-25": "Christmas Day", + "1977-12-30": "Rizal Day", + "1977-12-31": "New Year's Eve", + "1978-01-01": "New Year's Day", + "1978-02-07": "Chinese New Year", + "1978-02-25": "EDSA Revolution Anniversary", + "1978-03-23": "Maundy Thursday", + "1978-03-24": "Good Friday", + "1978-03-25": "Black Saturday", + "1978-04-09": "Day of Valor", + "1978-05-01": "Labour Day", + "1978-06-12": "Independence Day", + "1978-08-21": "Ninoy Aquino Day", + "1978-08-28": "National Heroes Day", + "1978-09-03": "Eid'l Fitr* (*estimated)", + "1978-11-01": "All Saints' Day", + "1978-11-10": "Eid'l Adha* (*estimated)", + "1978-11-30": "Bonifacio Day", + "1978-12-08": "Immaculate Conception Day", + "1978-12-25": "Christmas Day", + "1978-12-30": "Rizal Day", + "1978-12-31": "New Year's Eve", + "1979-01-01": "New Year's Day", + "1979-01-28": "Chinese New Year", + "1979-02-25": "EDSA Revolution Anniversary", + "1979-04-09": "Day of Valor", + "1979-04-12": "Maundy Thursday", + "1979-04-13": "Good Friday", + "1979-04-14": "Black Saturday", + "1979-05-01": "Labour Day", + "1979-06-12": "Independence Day", + "1979-08-21": "Ninoy Aquino Day", + "1979-08-23": "Eid'l Fitr* (*estimated)", + "1979-08-27": "National Heroes Day", + "1979-10-31": "Eid'l Adha* (*estimated)", + "1979-11-01": "All Saints' Day", + "1979-11-30": "Bonifacio Day", + "1979-12-08": "Immaculate Conception Day", + "1979-12-25": "Christmas Day", + "1979-12-30": "Rizal Day", + "1979-12-31": "New Year's Eve", + "1980-01-01": "New Year's Day", + "1980-02-16": "Chinese New Year", + "1980-02-25": "EDSA Revolution Anniversary", + "1980-04-03": "Maundy Thursday", + "1980-04-04": "Good Friday", + "1980-04-05": "Black Saturday", + "1980-04-09": "Day of Valor", + "1980-05-01": "Labour Day", + "1980-06-12": "Independence Day", + "1980-08-12": "Eid'l Fitr* (*estimated)", + "1980-08-21": "Ninoy Aquino Day", + "1980-08-25": "National Heroes Day", + "1980-10-19": "Eid'l Adha* (*estimated)", + "1980-11-01": "All Saints' Day", + "1980-11-30": "Bonifacio Day", + "1980-12-08": "Immaculate Conception Day", + "1980-12-25": "Christmas Day", + "1980-12-30": "Rizal Day", + "1980-12-31": "New Year's Eve", + "1981-01-01": "New Year's Day", + "1981-02-05": "Chinese New Year", + "1981-02-25": "EDSA Revolution Anniversary", + "1981-04-09": "Day of Valor", + "1981-04-16": "Maundy Thursday", + "1981-04-17": "Good Friday", + "1981-04-18": "Black Saturday", + "1981-05-01": "Labour Day", + "1981-06-12": "Independence Day", + "1981-08-01": "Eid'l Fitr* (*estimated)", + "1981-08-21": "Ninoy Aquino Day", + "1981-08-31": "National Heroes Day", + "1981-10-08": "Eid'l Adha* (*estimated)", + "1981-11-01": "All Saints' Day", + "1981-11-30": "Bonifacio Day", + "1981-12-08": "Immaculate Conception Day", + "1981-12-25": "Christmas Day", + "1981-12-30": "Rizal Day", + "1981-12-31": "New Year's Eve", + "1982-01-01": "New Year's Day", + "1982-01-25": "Chinese New Year", + "1982-02-25": "EDSA Revolution Anniversary", + "1982-04-08": "Maundy Thursday", + "1982-04-09": "Day of Valor; Good Friday", + "1982-04-10": "Black Saturday", + "1982-05-01": "Labour Day", + "1982-06-12": "Independence Day", + "1982-07-21": "Eid'l Fitr* (*estimated)", + "1982-08-21": "Ninoy Aquino Day", + "1982-08-30": "National Heroes Day", + "1982-09-27": "Eid'l Adha* (*estimated)", + "1982-11-01": "All Saints' Day", + "1982-11-30": "Bonifacio Day", + "1982-12-08": "Immaculate Conception Day", + "1982-12-25": "Christmas Day", + "1982-12-30": "Rizal Day", + "1982-12-31": "New Year's Eve", + "1983-01-01": "New Year's Day", + "1983-02-13": "Chinese New Year", + "1983-02-25": "EDSA Revolution Anniversary", + "1983-03-31": "Maundy Thursday", + "1983-04-01": "Good Friday", + "1983-04-02": "Black Saturday", + "1983-04-09": "Day of Valor", + "1983-05-01": "Labour Day", + "1983-06-12": "Independence Day", + "1983-07-11": "Eid'l Fitr* (*estimated)", + "1983-08-21": "Ninoy Aquino Day", + "1983-08-29": "National Heroes Day", + "1983-09-17": "Eid'l Adha* (*estimated)", + "1983-11-01": "All Saints' Day", + "1983-11-30": "Bonifacio Day", + "1983-12-08": "Immaculate Conception Day", + "1983-12-25": "Christmas Day", + "1983-12-30": "Rizal Day", + "1983-12-31": "New Year's Eve", + "1984-01-01": "New Year's Day", + "1984-02-02": "Chinese New Year", + "1984-02-25": "EDSA Revolution Anniversary", + "1984-04-09": "Day of Valor", + "1984-04-19": "Maundy Thursday", + "1984-04-20": "Good Friday", + "1984-04-21": "Black Saturday", + "1984-05-01": "Labour Day", + "1984-06-12": "Independence Day", + "1984-06-30": "Eid'l Fitr* (*estimated)", + "1984-08-21": "Ninoy Aquino Day", + "1984-08-27": "National Heroes Day", + "1984-09-05": "Eid'l Adha* (*estimated)", + "1984-11-01": "All Saints' Day", + "1984-11-30": "Bonifacio Day", + "1984-12-08": "Immaculate Conception Day", + "1984-12-25": "Christmas Day", + "1984-12-30": "Rizal Day", + "1984-12-31": "New Year's Eve", + "1985-01-01": "New Year's Day", + "1985-02-20": "Chinese New Year", + "1985-02-25": "EDSA Revolution Anniversary", + "1985-04-04": "Maundy Thursday", + "1985-04-05": "Good Friday", + "1985-04-06": "Black Saturday", + "1985-04-09": "Day of Valor", + "1985-05-01": "Labour Day", + "1985-06-12": "Independence Day", + "1985-06-19": "Eid'l Fitr* (*estimated)", + "1985-08-21": "Ninoy Aquino Day", + "1985-08-26": "Eid'l Adha* (*estimated); National Heroes Day", + "1985-11-01": "All Saints' Day", + "1985-11-30": "Bonifacio Day", + "1985-12-08": "Immaculate Conception Day", + "1985-12-25": "Christmas Day", + "1985-12-30": "Rizal Day", + "1985-12-31": "New Year's Eve", + "1986-01-01": "New Year's Day", + "1986-02-09": "Chinese New Year", + "1986-02-25": "EDSA Revolution Anniversary", + "1986-03-27": "Maundy Thursday", + "1986-03-28": "Good Friday", + "1986-03-29": "Black Saturday", + "1986-04-09": "Day of Valor", + "1986-05-01": "Labour Day", + "1986-06-08": "Eid'l Fitr* (*estimated)", + "1986-06-12": "Independence Day", + "1986-08-15": "Eid'l Adha* (*estimated)", + "1986-08-21": "Ninoy Aquino Day", + "1986-08-25": "National Heroes Day", + "1986-11-01": "All Saints' Day", + "1986-11-30": "Bonifacio Day", + "1986-12-08": "Immaculate Conception Day", + "1986-12-25": "Christmas Day", + "1986-12-30": "Rizal Day", + "1986-12-31": "New Year's Eve", + "1987-01-01": "New Year's Day", + "1987-01-29": "Chinese New Year", + "1987-02-25": "EDSA Revolution Anniversary", + "1987-04-09": "Day of Valor", + "1987-04-16": "Maundy Thursday", + "1987-04-17": "Good Friday", + "1987-04-18": "Black Saturday", + "1987-05-01": "Labour Day", + "1987-05-28": "Eid'l Fitr* (*estimated)", + "1987-06-12": "Independence Day", + "1987-08-04": "Eid'l Adha* (*estimated)", + "1987-08-21": "Ninoy Aquino Day", + "1987-08-31": "National Heroes Day", + "1987-11-01": "All Saints' Day", + "1987-11-30": "Bonifacio Day", + "1987-12-08": "Immaculate Conception Day", + "1987-12-25": "Christmas Day", + "1987-12-30": "Rizal Day", + "1987-12-31": "New Year's Eve", + "1988-01-01": "New Year's Day", + "1988-02-17": "Chinese New Year", + "1988-02-25": "EDSA Revolution Anniversary", + "1988-03-31": "Maundy Thursday", + "1988-04-01": "Good Friday", + "1988-04-02": "Black Saturday", + "1988-04-09": "Day of Valor", + "1988-05-01": "Labour Day", + "1988-05-16": "Eid'l Fitr* (*estimated)", + "1988-06-12": "Independence Day", + "1988-07-23": "Eid'l Adha* (*estimated)", + "1988-08-21": "Ninoy Aquino Day", + "1988-08-29": "National Heroes Day", + "1988-11-01": "All Saints' Day", + "1988-11-30": "Bonifacio Day", + "1988-12-08": "Immaculate Conception Day", + "1988-12-25": "Christmas Day", + "1988-12-30": "Rizal Day", + "1988-12-31": "New Year's Eve", + "1989-01-01": "New Year's Day", + "1989-02-06": "Chinese New Year", + "1989-02-25": "EDSA Revolution Anniversary", + "1989-03-23": "Maundy Thursday", + "1989-03-24": "Good Friday", + "1989-03-25": "Black Saturday", + "1989-04-09": "Day of Valor", + "1989-05-01": "Labour Day", + "1989-05-06": "Eid'l Fitr* (*estimated)", + "1989-06-12": "Independence Day", + "1989-07-13": "Eid'l Adha* (*estimated)", + "1989-08-21": "Ninoy Aquino Day", + "1989-08-28": "National Heroes Day", + "1989-11-01": "All Saints' Day", + "1989-11-30": "Bonifacio Day", + "1989-12-08": "Immaculate Conception Day", + "1989-12-25": "Christmas Day", + "1989-12-30": "Rizal Day", + "1989-12-31": "New Year's Eve", + "1990-01-01": "New Year's Day", + "1990-01-27": "Chinese New Year", + "1990-02-25": "EDSA Revolution Anniversary", + "1990-04-09": "Day of Valor", + "1990-04-12": "Maundy Thursday", + "1990-04-13": "Good Friday", + "1990-04-14": "Black Saturday", + "1990-04-26": "Eid'l Fitr* (*estimated)", + "1990-05-01": "Labour Day", + "1990-06-12": "Independence Day", + "1990-07-02": "Eid'l Adha* (*estimated)", + "1990-08-21": "Ninoy Aquino Day", + "1990-08-27": "National Heroes Day", + "1990-11-01": "All Saints' Day", + "1990-11-30": "Bonifacio Day", + "1990-12-08": "Immaculate Conception Day", + "1990-12-25": "Christmas Day", + "1990-12-30": "Rizal Day", + "1990-12-31": "New Year's Eve", + "1991-01-01": "New Year's Day", + "1991-02-15": "Chinese New Year", + "1991-02-25": "EDSA Revolution Anniversary", + "1991-03-28": "Maundy Thursday", + "1991-03-29": "Good Friday", + "1991-03-30": "Black Saturday", + "1991-04-09": "Day of Valor", + "1991-04-15": "Eid'l Fitr* (*estimated)", + "1991-05-01": "Labour Day", + "1991-06-12": "Independence Day", + "1991-06-22": "Eid'l Adha* (*estimated)", + "1991-08-21": "Ninoy Aquino Day", + "1991-08-26": "National Heroes Day", + "1991-11-01": "All Saints' Day", + "1991-11-30": "Bonifacio Day", + "1991-12-08": "Immaculate Conception Day", + "1991-12-25": "Christmas Day", + "1991-12-30": "Rizal Day", + "1991-12-31": "New Year's Eve", + "1992-01-01": "New Year's Day", + "1992-02-04": "Chinese New Year", + "1992-02-25": "EDSA Revolution Anniversary", + "1992-04-04": "Eid'l Fitr* (*estimated)", + "1992-04-09": "Day of Valor", + "1992-04-16": "Maundy Thursday", + "1992-04-17": "Good Friday", + "1992-04-18": "Black Saturday", + "1992-05-01": "Labour Day", + "1992-06-11": "Eid'l Adha* (*estimated)", + "1992-06-12": "Independence Day", + "1992-08-21": "Ninoy Aquino Day", + "1992-08-31": "National Heroes Day", + "1992-11-01": "All Saints' Day", + "1992-11-30": "Bonifacio Day", + "1992-12-08": "Immaculate Conception Day", + "1992-12-25": "Christmas Day", + "1992-12-30": "Rizal Day", + "1992-12-31": "New Year's Eve", + "1993-01-01": "New Year's Day", + "1993-01-23": "Chinese New Year", + "1993-02-25": "EDSA Revolution Anniversary", + "1993-03-24": "Eid'l Fitr* (*estimated)", + "1993-04-08": "Maundy Thursday", + "1993-04-09": "Day of Valor; Good Friday", + "1993-04-10": "Black Saturday", + "1993-05-01": "Labour Day", + "1993-05-31": "Eid'l Adha* (*estimated)", + "1993-06-12": "Independence Day", + "1993-08-21": "Ninoy Aquino Day", + "1993-08-30": "National Heroes Day", + "1993-11-01": "All Saints' Day", + "1993-11-30": "Bonifacio Day", + "1993-12-08": "Immaculate Conception Day", + "1993-12-25": "Christmas Day", + "1993-12-30": "Rizal Day", + "1993-12-31": "New Year's Eve", + "1994-01-01": "New Year's Day", + "1994-02-10": "Chinese New Year", + "1994-02-25": "EDSA Revolution Anniversary", + "1994-03-13": "Eid'l Fitr* (*estimated)", + "1994-03-31": "Maundy Thursday", + "1994-04-01": "Good Friday", + "1994-04-02": "Black Saturday", + "1994-04-09": "Day of Valor", + "1994-05-01": "Labour Day", + "1994-05-20": "Eid'l Adha* (*estimated)", + "1994-06-12": "Independence Day", + "1994-08-21": "Ninoy Aquino Day", + "1994-08-29": "National Heroes Day", + "1994-11-01": "All Saints' Day", + "1994-11-30": "Bonifacio Day", + "1994-12-08": "Immaculate Conception Day", + "1994-12-25": "Christmas Day", + "1994-12-30": "Rizal Day", + "1994-12-31": "New Year's Eve", + "1995-01-01": "New Year's Day", + "1995-01-31": "Chinese New Year", + "1995-02-25": "EDSA Revolution Anniversary", + "1995-03-02": "Eid'l Fitr* (*estimated)", + "1995-04-09": "Day of Valor", + "1995-04-13": "Maundy Thursday", + "1995-04-14": "Good Friday", + "1995-04-15": "Black Saturday", + "1995-05-01": "Labour Day", + "1995-05-09": "Eid'l Adha* (*estimated)", + "1995-06-12": "Independence Day", + "1995-08-21": "Ninoy Aquino Day", + "1995-08-28": "National Heroes Day", + "1995-11-01": "All Saints' Day", + "1995-11-30": "Bonifacio Day", + "1995-12-08": "Immaculate Conception Day", + "1995-12-25": "Christmas Day", + "1995-12-30": "Rizal Day", + "1995-12-31": "New Year's Eve", + "1996-01-01": "New Year's Day", + "1996-02-19": "Chinese New Year; Eid'l Fitr* (*estimated)", + "1996-02-25": "EDSA Revolution Anniversary", + "1996-04-04": "Maundy Thursday", + "1996-04-05": "Good Friday", + "1996-04-06": "Black Saturday", + "1996-04-09": "Day of Valor", + "1996-04-27": "Eid'l Adha* (*estimated)", + "1996-05-01": "Labour Day", + "1996-06-12": "Independence Day", + "1996-08-21": "Ninoy Aquino Day", + "1996-08-26": "National Heroes Day", + "1996-11-01": "All Saints' Day", + "1996-11-30": "Bonifacio Day", + "1996-12-08": "Immaculate Conception Day", + "1996-12-25": "Christmas Day", + "1996-12-30": "Rizal Day", + "1996-12-31": "New Year's Eve", + "1997-01-01": "New Year's Day", + "1997-02-07": "Chinese New Year", + "1997-02-08": "Eid'l Fitr* (*estimated)", + "1997-02-25": "EDSA Revolution Anniversary", + "1997-03-27": "Maundy Thursday", + "1997-03-28": "Good Friday", + "1997-03-29": "Black Saturday", + "1997-04-09": "Day of Valor", + "1997-04-17": "Eid'l Adha* (*estimated)", + "1997-05-01": "Labour Day", + "1997-06-12": "Independence Day", + "1997-08-21": "Ninoy Aquino Day", + "1997-08-25": "National Heroes Day", + "1997-11-01": "All Saints' Day", + "1997-11-30": "Bonifacio Day", + "1997-12-08": "Immaculate Conception Day", + "1997-12-25": "Christmas Day", + "1997-12-30": "Rizal Day", + "1997-12-31": "New Year's Eve", + "1998-01-01": "New Year's Day", + "1998-01-28": "Chinese New Year", + "1998-01-29": "Eid'l Fitr* (*estimated)", + "1998-02-25": "EDSA Revolution Anniversary", + "1998-04-07": "Eid'l Adha* (*estimated)", + "1998-04-09": "Day of Valor; Maundy Thursday", + "1998-04-10": "Good Friday", + "1998-04-11": "Black Saturday", + "1998-05-01": "Labour Day", + "1998-06-12": "Independence Day", + "1998-08-21": "Ninoy Aquino Day", + "1998-08-31": "National Heroes Day", + "1998-11-01": "All Saints' Day", + "1998-11-30": "Bonifacio Day", + "1998-12-08": "Immaculate Conception Day", + "1998-12-25": "Christmas Day", + "1998-12-30": "Rizal Day", + "1998-12-31": "New Year's Eve", + "1999-01-01": "New Year's Day", + "1999-01-18": "Eid'l Fitr* (*estimated)", + "1999-02-16": "Chinese New Year", + "1999-02-25": "EDSA Revolution Anniversary", + "1999-03-27": "Eid'l Adha* (*estimated)", + "1999-04-01": "Maundy Thursday", + "1999-04-02": "Good Friday", + "1999-04-03": "Black Saturday", + "1999-04-09": "Day of Valor", + "1999-05-01": "Labour Day", + "1999-06-12": "Independence Day", + "1999-08-21": "Ninoy Aquino Day", + "1999-08-30": "National Heroes Day", + "1999-11-01": "All Saints' Day", + "1999-11-30": "Bonifacio Day", + "1999-12-08": "Immaculate Conception Day", + "1999-12-25": "Christmas Day", + "1999-12-30": "Rizal Day", + "1999-12-31": "New Year's Eve", + "2000-01-01": "New Year's Day", + "2000-01-08": "Eid'l Fitr* (*estimated)", + "2000-02-05": "Chinese New Year", + "2000-02-25": "EDSA Revolution Anniversary", + "2000-03-16": "Eid'l Adha* (*estimated)", + "2000-04-09": "Day of Valor", + "2000-04-20": "Maundy Thursday", + "2000-04-21": "Good Friday", + "2000-04-22": "Black Saturday", + "2000-05-01": "Labour Day", + "2000-06-12": "Independence Day", + "2000-08-21": "Ninoy Aquino Day", + "2000-08-28": "National Heroes Day", + "2000-11-01": "All Saints' Day", + "2000-11-30": "Bonifacio Day", + "2000-12-08": "Immaculate Conception Day", + "2000-12-25": "Christmas Day", + "2000-12-27": "Eid'l Fitr* (*estimated)", + "2000-12-30": "Rizal Day", + "2000-12-31": "New Year's Eve", + "2001-01-01": "New Year's Day", + "2001-01-24": "Chinese New Year", + "2001-02-25": "EDSA Revolution Anniversary", + "2001-03-05": "Eid'l Adha* (*estimated)", + "2001-04-09": "Day of Valor", + "2001-04-12": "Maundy Thursday", + "2001-04-13": "Good Friday", + "2001-04-14": "Black Saturday", + "2001-05-01": "Labour Day", + "2001-06-12": "Independence Day", + "2001-08-21": "Ninoy Aquino Day", + "2001-08-27": "National Heroes Day", + "2001-11-01": "All Saints' Day", + "2001-11-30": "Bonifacio Day", + "2001-12-08": "Immaculate Conception Day", + "2001-12-16": "Eid'l Fitr* (*estimated)", + "2001-12-25": "Christmas Day", + "2001-12-30": "Rizal Day", + "2001-12-31": "New Year's Eve", + "2002-01-01": "New Year's Day", + "2002-02-12": "Chinese New Year", + "2002-02-22": "Eid'l Adha* (*estimated)", + "2002-02-25": "EDSA Revolution Anniversary", + "2002-03-28": "Maundy Thursday", + "2002-03-29": "Good Friday", + "2002-03-30": "Black Saturday", + "2002-04-09": "Day of Valor", + "2002-05-01": "Labour Day", + "2002-06-12": "Independence Day", + "2002-08-21": "Ninoy Aquino Day", + "2002-08-26": "National Heroes Day", + "2002-11-01": "All Saints' Day", + "2002-11-30": "Bonifacio Day", + "2002-12-05": "Eid'l Fitr* (*estimated)", + "2002-12-08": "Immaculate Conception Day", + "2002-12-25": "Christmas Day", + "2002-12-30": "Rizal Day", + "2002-12-31": "New Year's Eve", + "2003-01-01": "New Year's Day", + "2003-02-01": "Chinese New Year", + "2003-02-11": "Eid'l Adha* (*estimated)", + "2003-02-25": "EDSA Revolution Anniversary", + "2003-04-09": "Day of Valor", + "2003-04-17": "Maundy Thursday", + "2003-04-18": "Good Friday", + "2003-04-19": "Black Saturday", + "2003-05-01": "Labour Day", + "2003-06-12": "Independence Day", + "2003-08-21": "Ninoy Aquino Day", + "2003-08-25": "National Heroes Day", + "2003-11-01": "All Saints' Day", + "2003-11-25": "Eid'l Fitr* (*estimated)", + "2003-11-30": "Bonifacio Day", + "2003-12-08": "Immaculate Conception Day", + "2003-12-25": "Christmas Day", + "2003-12-30": "Rizal Day", + "2003-12-31": "New Year's Eve", + "2004-01-01": "New Year's Day", + "2004-01-22": "Chinese New Year", + "2004-02-01": "Eid'l Adha* (*estimated)", + "2004-02-25": "EDSA Revolution Anniversary", + "2004-04-08": "Maundy Thursday", + "2004-04-09": "Day of Valor; Good Friday", + "2004-04-10": "Black Saturday", + "2004-05-01": "Labour Day", + "2004-06-12": "Independence Day", + "2004-08-21": "Ninoy Aquino Day", + "2004-08-30": "National Heroes Day", + "2004-11-01": "All Saints' Day", + "2004-11-14": "Eid'l Fitr* (*estimated)", + "2004-11-30": "Bonifacio Day", + "2004-12-08": "Immaculate Conception Day", + "2004-12-25": "Christmas Day", + "2004-12-30": "Rizal Day", + "2004-12-31": "New Year's Eve", + "2005-01-01": "New Year's Day", + "2005-01-21": "Eid'l Adha* (*estimated)", + "2005-02-09": "Chinese New Year", + "2005-02-25": "EDSA Revolution Anniversary", + "2005-03-24": "Maundy Thursday", + "2005-03-25": "Good Friday", + "2005-03-26": "Black Saturday", + "2005-04-09": "Day of Valor", + "2005-05-01": "Labour Day", + "2005-06-12": "Independence Day", + "2005-08-21": "Ninoy Aquino Day", + "2005-08-29": "National Heroes Day", + "2005-11-01": "All Saints' Day", + "2005-11-03": "Eid'l Fitr* (*estimated)", + "2005-11-30": "Bonifacio Day", + "2005-12-08": "Immaculate Conception Day", + "2005-12-25": "Christmas Day", + "2005-12-30": "Rizal Day", + "2005-12-31": "New Year's Eve", + "2006-01-01": "New Year's Day", + "2006-01-10": "Eid'l Adha* (*estimated)", + "2006-01-29": "Chinese New Year", + "2006-02-25": "EDSA Revolution Anniversary", + "2006-04-09": "Day of Valor", + "2006-04-13": "Maundy Thursday", + "2006-04-14": "Good Friday", + "2006-04-15": "Black Saturday", + "2006-05-01": "Labour Day", + "2006-06-12": "Independence Day", + "2006-08-21": "Ninoy Aquino Day", + "2006-08-28": "National Heroes Day", + "2006-10-23": "Eid'l Fitr* (*estimated)", + "2006-11-01": "All Saints' Day", + "2006-11-30": "Bonifacio Day", + "2006-12-08": "Immaculate Conception Day", + "2006-12-25": "Christmas Day", + "2006-12-30": "Rizal Day", + "2006-12-31": "Eid'l Adha* (*estimated); New Year's Eve", + "2007-01-01": "New Year's Day", + "2007-02-18": "Chinese New Year", + "2007-02-25": "EDSA Revolution Anniversary", + "2007-04-05": "Maundy Thursday", + "2007-04-06": "Good Friday", + "2007-04-07": "Black Saturday", + "2007-04-09": "Day of Valor", + "2007-05-01": "Labour Day", + "2007-06-12": "Independence Day", + "2007-08-21": "Ninoy Aquino Day", + "2007-08-27": "National Heroes Day", + "2007-10-13": "Eid'l Fitr* (*estimated)", + "2007-11-01": "All Saints' Day", + "2007-11-30": "Bonifacio Day", + "2007-12-08": "Immaculate Conception Day", + "2007-12-20": "Eid'l Adha* (*estimated)", + "2007-12-25": "Christmas Day", + "2007-12-30": "Rizal Day", + "2007-12-31": "New Year's Eve", + "2008-01-01": "New Year's Day", + "2008-02-07": "Chinese New Year", + "2008-02-25": "EDSA Revolution Anniversary", + "2008-03-20": "Maundy Thursday", + "2008-03-21": "Good Friday", + "2008-03-22": "Black Saturday", + "2008-04-09": "Day of Valor", + "2008-05-01": "Labour Day", + "2008-06-12": "Independence Day", + "2008-08-21": "Ninoy Aquino Day", + "2008-08-25": "National Heroes Day", + "2008-10-01": "Eid'l Fitr* (*estimated)", + "2008-11-01": "All Saints' Day", + "2008-11-30": "Bonifacio Day", + "2008-12-08": "Eid'l Adha* (*estimated); Immaculate Conception Day", + "2008-12-25": "Christmas Day", + "2008-12-30": "Rizal Day", + "2008-12-31": "New Year's Eve", + "2009-01-01": "New Year's Day", + "2009-01-26": "Chinese New Year", + "2009-02-25": "EDSA Revolution Anniversary", + "2009-04-09": "Day of Valor; Maundy Thursday", + "2009-04-10": "Good Friday", + "2009-04-11": "Black Saturday", + "2009-05-01": "Labour Day", + "2009-06-12": "Independence Day", + "2009-08-21": "Ninoy Aquino Day", + "2009-08-31": "National Heroes Day", + "2009-09-20": "Eid'l Fitr* (*estimated)", + "2009-11-01": "All Saints' Day", + "2009-11-27": "Eid'l Adha* (*estimated)", + "2009-11-30": "Bonifacio Day", + "2009-12-08": "Immaculate Conception Day", + "2009-12-25": "Christmas Day", + "2009-12-30": "Rizal Day", + "2009-12-31": "New Year's Eve", + "2010-01-01": "New Year's Day", + "2010-02-14": "Chinese New Year", + "2010-02-25": "EDSA Revolution Anniversary", + "2010-04-01": "Maundy Thursday", + "2010-04-02": "Good Friday", + "2010-04-03": "Black Saturday", + "2010-04-09": "Day of Valor", + "2010-05-01": "Labour Day", + "2010-06-12": "Independence Day", + "2010-08-21": "Ninoy Aquino Day", + "2010-08-30": "National Heroes Day", + "2010-09-10": "Eid'l Fitr* (*estimated)", + "2010-11-01": "All Saints' Day", + "2010-11-16": "Eid'l Adha* (*estimated)", + "2010-11-30": "Bonifacio Day", + "2010-12-08": "Immaculate Conception Day", + "2010-12-25": "Christmas Day", + "2010-12-30": "Rizal Day", + "2010-12-31": "New Year's Eve", + "2011-01-01": "New Year's Day", + "2011-02-03": "Chinese New Year", + "2011-02-25": "EDSA Revolution Anniversary", + "2011-04-09": "Day of Valor", + "2011-04-21": "Maundy Thursday", + "2011-04-22": "Good Friday", + "2011-04-23": "Black Saturday", + "2011-05-01": "Labour Day", + "2011-06-12": "Independence Day", + "2011-08-21": "Ninoy Aquino Day", + "2011-08-29": "National Heroes Day", + "2011-08-30": "Eid'l Fitr* (*estimated)", + "2011-11-01": "All Saints' Day", + "2011-11-06": "Eid'l Adha* (*estimated)", + "2011-11-30": "Bonifacio Day", + "2011-12-08": "Immaculate Conception Day", + "2011-12-25": "Christmas Day", + "2011-12-30": "Rizal Day", + "2011-12-31": "New Year's Eve", + "2012-01-01": "New Year's Day", + "2012-01-23": "Chinese New Year", + "2012-02-25": "EDSA Revolution Anniversary", + "2012-04-05": "Maundy Thursday", + "2012-04-06": "Good Friday", + "2012-04-07": "Black Saturday", + "2012-04-09": "Day of Valor", + "2012-05-01": "Labour Day", + "2012-06-12": "Independence Day", + "2012-08-19": "Eid'l Fitr* (*estimated)", + "2012-08-21": "Ninoy Aquino Day", + "2012-08-27": "National Heroes Day", + "2012-10-26": "Eid'l Adha* (*estimated)", + "2012-11-01": "All Saints' Day", + "2012-11-30": "Bonifacio Day", + "2012-12-08": "Immaculate Conception Day", + "2012-12-25": "Christmas Day", + "2012-12-30": "Rizal Day", + "2012-12-31": "New Year's Eve", + "2013-01-01": "New Year's Day", + "2013-02-10": "Chinese New Year", + "2013-02-25": "EDSA Revolution Anniversary", + "2013-03-28": "Maundy Thursday", + "2013-03-29": "Good Friday", + "2013-03-30": "Black Saturday", + "2013-04-09": "Day of Valor", + "2013-05-01": "Labour Day", + "2013-06-12": "Independence Day", + "2013-08-08": "Eid'l Fitr* (*estimated)", + "2013-08-21": "Ninoy Aquino Day", + "2013-08-26": "National Heroes Day", + "2013-10-15": "Eid'l Adha* (*estimated)", + "2013-11-01": "All Saints' Day", + "2013-11-30": "Bonifacio Day", + "2013-12-08": "Immaculate Conception Day", + "2013-12-25": "Christmas Day", + "2013-12-30": "Rizal Day", + "2013-12-31": "New Year's Eve", + "2014-01-01": "New Year's Day", + "2014-01-31": "Chinese New Year", + "2014-02-25": "EDSA Revolution Anniversary", + "2014-04-09": "Day of Valor", + "2014-04-17": "Maundy Thursday", + "2014-04-18": "Good Friday", + "2014-04-19": "Black Saturday", + "2014-05-01": "Labour Day", + "2014-06-12": "Independence Day", + "2014-07-28": "Eid'l Fitr* (*estimated)", + "2014-08-21": "Ninoy Aquino Day", + "2014-08-25": "National Heroes Day", + "2014-10-04": "Eid'l Adha* (*estimated)", + "2014-11-01": "All Saints' Day", + "2014-11-30": "Bonifacio Day", + "2014-12-08": "Immaculate Conception Day", + "2014-12-25": "Christmas Day", + "2014-12-30": "Rizal Day", + "2014-12-31": "New Year's Eve", + "2015-01-01": "New Year's Day", + "2015-02-19": "Chinese New Year", + "2015-02-25": "EDSA Revolution Anniversary", + "2015-04-02": "Maundy Thursday", + "2015-04-03": "Good Friday", + "2015-04-04": "Black Saturday", + "2015-04-09": "Day of Valor", + "2015-05-01": "Labour Day", + "2015-06-12": "Independence Day", + "2015-07-17": "Eid'l Fitr* (*estimated)", + "2015-08-21": "Ninoy Aquino Day", + "2015-08-31": "National Heroes Day", + "2015-09-23": "Eid'l Adha* (*estimated)", + "2015-11-01": "All Saints' Day", + "2015-11-30": "Bonifacio Day", + "2015-12-08": "Immaculate Conception Day", + "2015-12-25": "Christmas Day", + "2015-12-30": "Rizal Day", + "2015-12-31": "New Year's Eve", + "2016-01-01": "New Year's Day", + "2016-02-08": "Chinese New Year", + "2016-02-25": "EDSA Revolution Anniversary", + "2016-03-24": "Maundy Thursday", + "2016-03-25": "Good Friday", + "2016-03-26": "Black Saturday", + "2016-04-09": "Day of Valor", + "2016-05-01": "Labour Day", + "2016-06-12": "Independence Day", + "2016-07-06": "Eid'l Fitr* (*estimated)", + "2016-08-21": "Ninoy Aquino Day", + "2016-08-29": "National Heroes Day", + "2016-09-11": "Eid'l Adha* (*estimated)", + "2016-11-01": "All Saints' Day", + "2016-11-30": "Bonifacio Day", + "2016-12-08": "Immaculate Conception Day", + "2016-12-25": "Christmas Day", + "2016-12-30": "Rizal Day", + "2016-12-31": "New Year's Eve", + "2017-01-01": "New Year's Day", + "2017-01-28": "Chinese New Year", + "2017-02-25": "EDSA Revolution Anniversary", + "2017-04-09": "Day of Valor", + "2017-04-13": "Maundy Thursday", + "2017-04-14": "Good Friday", + "2017-04-15": "Black Saturday", + "2017-05-01": "Labour Day", + "2017-06-12": "Independence Day", + "2017-06-25": "Eid'l Fitr* (*estimated)", + "2017-08-21": "Ninoy Aquino Day", + "2017-08-28": "National Heroes Day", + "2017-09-01": "Eid'l Adha* (*estimated)", + "2017-11-01": "All Saints' Day", + "2017-11-30": "Bonifacio Day", + "2017-12-08": "Immaculate Conception Day", + "2017-12-25": "Christmas Day", + "2017-12-30": "Rizal Day", + "2017-12-31": "New Year's Eve", + "2018-01-01": "New Year's Day", + "2018-02-16": "Chinese New Year", + "2018-02-25": "EDSA Revolution Anniversary", + "2018-03-29": "Maundy Thursday", + "2018-03-30": "Good Friday", + "2018-03-31": "Black Saturday", + "2018-04-09": "Day of Valor", + "2018-05-01": "Labour Day", + "2018-06-12": "Independence Day", + "2018-06-15": "Eid'l Fitr* (*estimated)", + "2018-08-21": "Eid'l Adha* (*estimated); Ninoy Aquino Day", + "2018-08-27": "National Heroes Day", + "2018-11-01": "All Saints' Day", + "2018-11-30": "Bonifacio Day", + "2018-12-08": "Immaculate Conception Day", + "2018-12-25": "Christmas Day", + "2018-12-30": "Rizal Day", + "2018-12-31": "New Year's Eve", + "2019-01-01": "New Year's Day", + "2019-02-05": "Chinese New Year", + "2019-02-25": "EDSA Revolution Anniversary", + "2019-04-09": "Day of Valor", + "2019-04-18": "Maundy Thursday", + "2019-04-19": "Good Friday", + "2019-04-20": "Black Saturday", + "2019-05-01": "Labour Day", + "2019-06-04": "Eid'l Fitr* (*estimated)", + "2019-06-12": "Independence Day", + "2019-08-11": "Eid'l Adha* (*estimated)", + "2019-08-21": "Ninoy Aquino Day", + "2019-08-26": "National Heroes Day", + "2019-11-01": "All Saints' Day", + "2019-11-30": "Bonifacio Day", + "2019-12-08": "Immaculate Conception Day", + "2019-12-25": "Christmas Day", + "2019-12-30": "Rizal Day", + "2019-12-31": "New Year's Eve", + "2020-01-01": "New Year's Day", + "2020-01-25": "Chinese New Year", + "2020-02-25": "EDSA Revolution Anniversary", + "2020-04-09": "Day of Valor; Maundy Thursday", + "2020-04-10": "Good Friday", + "2020-04-11": "Black Saturday", + "2020-05-01": "Labour Day", + "2020-05-24": "Eid'l Fitr* (*estimated)", + "2020-06-12": "Independence Day", + "2020-07-31": "Eid'l Adha* (*estimated)", + "2020-08-21": "Ninoy Aquino Day", + "2020-08-31": "National Heroes Day", + "2020-11-01": "All Saints' Day", + "2020-11-30": "Bonifacio Day", + "2020-12-08": "Immaculate Conception Day", + "2020-12-25": "Christmas Day", + "2020-12-30": "Rizal Day", + "2020-12-31": "New Year's Eve", + "2021-01-01": "New Year's Day", + "2021-02-12": "Chinese New Year", + "2021-02-25": "EDSA Revolution Anniversary", + "2021-04-01": "Maundy Thursday", + "2021-04-02": "Good Friday", + "2021-04-03": "Black Saturday", + "2021-04-09": "Day of Valor", + "2021-05-01": "Labour Day", + "2021-05-13": "Eid'l Fitr* (*estimated)", + "2021-06-12": "Independence Day", + "2021-07-20": "Eid'l Adha* (*estimated)", + "2021-08-21": "Ninoy Aquino Day", + "2021-08-30": "National Heroes Day", + "2021-11-01": "All Saints' Day", + "2021-11-30": "Bonifacio Day", + "2021-12-08": "Immaculate Conception Day", + "2021-12-25": "Christmas Day", + "2021-12-30": "Rizal Day", + "2021-12-31": "New Year's Eve", + "2022-01-01": "New Year's Day", + "2022-02-01": "Chinese New Year", + "2022-02-25": "EDSA Revolution Anniversary", + "2022-04-09": "Day of Valor", + "2022-04-14": "Maundy Thursday", + "2022-04-15": "Good Friday", + "2022-04-16": "Black Saturday", + "2022-05-01": "Labour Day", + "2022-05-02": "Eid'l Fitr* (*estimated)", + "2022-06-12": "Independence Day", + "2022-07-09": "Eid'l Adha* (*estimated)", + "2022-08-21": "Ninoy Aquino Day", + "2022-08-29": "National Heroes Day", + "2022-11-01": "All Saints' Day", + "2022-11-30": "Bonifacio Day", + "2022-12-08": "Immaculate Conception Day", + "2022-12-25": "Christmas Day", + "2022-12-30": "Rizal Day", + "2022-12-31": "New Year's Eve", + "2023-01-01": "New Year's Day", + "2023-01-22": "Chinese New Year", + "2023-02-25": "EDSA Revolution Anniversary", + "2023-04-06": "Maundy Thursday", + "2023-04-07": "Good Friday", + "2023-04-08": "Black Saturday", + "2023-04-09": "Day of Valor", + "2023-04-21": "Eid'l Fitr* (*estimated)", + "2023-05-01": "Labour Day", + "2023-06-12": "Independence Day", + "2023-06-28": "Eid'l Adha* (*estimated)", + "2023-08-21": "Ninoy Aquino Day", + "2023-08-28": "National Heroes Day", + "2023-11-01": "All Saints' Day", + "2023-11-30": "Bonifacio Day", + "2023-12-08": "Immaculate Conception Day", + "2023-12-25": "Christmas Day", + "2023-12-30": "Rizal Day", + "2023-12-31": "New Year's Eve", + "2024-01-01": "New Year's Day", + "2024-02-10": "Chinese New Year", + "2024-02-25": "EDSA Revolution Anniversary", + "2024-03-28": "Maundy Thursday", + "2024-03-29": "Good Friday", + "2024-03-30": "Black Saturday", + "2024-04-09": "Day of Valor", + "2024-04-10": "Eid'l Fitr* (*estimated)", + "2024-05-01": "Labour Day", + "2024-06-12": "Independence Day", + "2024-06-16": "Eid'l Adha* (*estimated)", + "2024-08-21": "Ninoy Aquino Day", + "2024-08-26": "National Heroes Day", + "2024-11-01": "All Saints' Day", + "2024-11-30": "Bonifacio Day", + "2024-12-08": "Immaculate Conception Day", + "2024-12-25": "Christmas Day", + "2024-12-30": "Rizal Day", + "2024-12-31": "New Year's Eve", + "2025-01-01": "New Year's Day", + "2025-01-29": "Chinese New Year", + "2025-02-25": "EDSA Revolution Anniversary", + "2025-03-30": "Eid'l Fitr* (*estimated)", + "2025-04-09": "Day of Valor", + "2025-04-17": "Maundy Thursday", + "2025-04-18": "Good Friday", + "2025-04-19": "Black Saturday", + "2025-05-01": "Labour Day", + "2025-06-06": "Eid'l Adha* (*estimated)", + "2025-06-12": "Independence Day", + "2025-08-21": "Ninoy Aquino Day", + "2025-08-25": "National Heroes Day", + "2025-11-01": "All Saints' Day", + "2025-11-30": "Bonifacio Day", + "2025-12-08": "Immaculate Conception Day", + "2025-12-25": "Christmas Day", + "2025-12-30": "Rizal Day", + "2025-12-31": "New Year's Eve", + "2026-01-01": "New Year's Day", + "2026-02-17": "Chinese New Year", + "2026-02-25": "EDSA Revolution Anniversary", + "2026-03-20": "Eid'l Fitr* (*estimated)", + "2026-04-02": "Maundy Thursday", + "2026-04-03": "Good Friday", + "2026-04-04": "Black Saturday", + "2026-04-09": "Day of Valor", + "2026-05-01": "Labour Day", + "2026-05-27": "Eid'l Adha* (*estimated)", + "2026-06-12": "Independence Day", + "2026-08-21": "Ninoy Aquino Day", + "2026-08-31": "National Heroes Day", + "2026-11-01": "All Saints' Day", + "2026-11-30": "Bonifacio Day", + "2026-12-08": "Immaculate Conception Day", + "2026-12-25": "Christmas Day", + "2026-12-30": "Rizal Day", + "2026-12-31": "New Year's Eve", + "2027-01-01": "New Year's Day", + "2027-02-06": "Chinese New Year", + "2027-02-25": "EDSA Revolution Anniversary", + "2027-03-09": "Eid'l Fitr* (*estimated)", + "2027-03-25": "Maundy Thursday", + "2027-03-26": "Good Friday", + "2027-03-27": "Black Saturday", + "2027-04-09": "Day of Valor", + "2027-05-01": "Labour Day", + "2027-05-16": "Eid'l Adha* (*estimated)", + "2027-06-12": "Independence Day", + "2027-08-21": "Ninoy Aquino Day", + "2027-08-30": "National Heroes Day", + "2027-11-01": "All Saints' Day", + "2027-11-30": "Bonifacio Day", + "2027-12-08": "Immaculate Conception Day", + "2027-12-25": "Christmas Day", + "2027-12-30": "Rizal Day", + "2027-12-31": "New Year's Eve", + "2028-01-01": "New Year's Day", + "2028-01-26": "Chinese New Year", + "2028-02-25": "EDSA Revolution Anniversary", + "2028-02-26": "Eid'l Fitr* (*estimated)", + "2028-04-09": "Day of Valor", + "2028-04-13": "Maundy Thursday", + "2028-04-14": "Good Friday", + "2028-04-15": "Black Saturday", + "2028-05-01": "Labour Day", + "2028-05-05": "Eid'l Adha* (*estimated)", + "2028-06-12": "Independence Day", + "2028-08-21": "Ninoy Aquino Day", + "2028-08-28": "National Heroes Day", + "2028-11-01": "All Saints' Day", + "2028-11-30": "Bonifacio Day", + "2028-12-08": "Immaculate Conception Day", + "2028-12-25": "Christmas Day", + "2028-12-30": "Rizal Day", + "2028-12-31": "New Year's Eve", + "2029-01-01": "New Year's Day", + "2029-02-13": "Chinese New Year", + "2029-02-14": "Eid'l Fitr* (*estimated)", + "2029-02-25": "EDSA Revolution Anniversary", + "2029-03-29": "Maundy Thursday", + "2029-03-30": "Good Friday", + "2029-03-31": "Black Saturday", + "2029-04-09": "Day of Valor", + "2029-04-24": "Eid'l Adha* (*estimated)", + "2029-05-01": "Labour Day", + "2029-06-12": "Independence Day", + "2029-08-21": "Ninoy Aquino Day", + "2029-08-27": "National Heroes Day", + "2029-11-01": "All Saints' Day", + "2029-11-30": "Bonifacio Day", + "2029-12-08": "Immaculate Conception Day", + "2029-12-25": "Christmas Day", + "2029-12-30": "Rizal Day", + "2029-12-31": "New Year's Eve", + "2030-01-01": "New Year's Day", + "2030-02-03": "Chinese New Year", + "2030-02-04": "Eid'l Fitr* (*estimated)", + "2030-02-25": "EDSA Revolution Anniversary", + "2030-04-09": "Day of Valor", + "2030-04-13": "Eid'l Adha* (*estimated)", + "2030-04-18": "Maundy Thursday", + "2030-04-19": "Good Friday", + "2030-04-20": "Black Saturday", + "2030-05-01": "Labour Day", + "2030-06-12": "Independence Day", + "2030-08-21": "Ninoy Aquino Day", + "2030-08-26": "National Heroes Day", + "2030-11-01": "All Saints' Day", + "2030-11-30": "Bonifacio Day", + "2030-12-08": "Immaculate Conception Day", + "2030-12-25": "Christmas Day", + "2030-12-30": "Rizal Day", + "2030-12-31": "New Year's Eve", + "2031-01-01": "New Year's Day", + "2031-01-23": "Chinese New Year", + "2031-01-24": "Eid'l Fitr* (*estimated)", + "2031-02-25": "EDSA Revolution Anniversary", + "2031-04-02": "Eid'l Adha* (*estimated)", + "2031-04-09": "Day of Valor", + "2031-04-10": "Maundy Thursday", + "2031-04-11": "Good Friday", + "2031-04-12": "Black Saturday", + "2031-05-01": "Labour Day", + "2031-06-12": "Independence Day", + "2031-08-21": "Ninoy Aquino Day", + "2031-08-25": "National Heroes Day", + "2031-11-01": "All Saints' Day", + "2031-11-30": "Bonifacio Day", + "2031-12-08": "Immaculate Conception Day", + "2031-12-25": "Christmas Day", + "2031-12-30": "Rizal Day", + "2031-12-31": "New Year's Eve", + "2032-01-01": "New Year's Day", + "2032-01-14": "Eid'l Fitr* (*estimated)", + "2032-02-11": "Chinese New Year", + "2032-02-25": "EDSA Revolution Anniversary", + "2032-03-22": "Eid'l Adha* (*estimated)", + "2032-03-25": "Maundy Thursday", + "2032-03-26": "Good Friday", + "2032-03-27": "Black Saturday", + "2032-04-09": "Day of Valor", + "2032-05-01": "Labour Day", + "2032-06-12": "Independence Day", + "2032-08-21": "Ninoy Aquino Day", + "2032-08-30": "National Heroes Day", + "2032-11-01": "All Saints' Day", + "2032-11-30": "Bonifacio Day", + "2032-12-08": "Immaculate Conception Day", + "2032-12-25": "Christmas Day", + "2032-12-30": "Rizal Day", + "2032-12-31": "New Year's Eve", + "2033-01-01": "New Year's Day", + "2033-01-02": "Eid'l Fitr* (*estimated)", + "2033-01-31": "Chinese New Year", + "2033-02-25": "EDSA Revolution Anniversary", + "2033-03-11": "Eid'l Adha* (*estimated)", + "2033-04-09": "Day of Valor", + "2033-04-14": "Maundy Thursday", + "2033-04-15": "Good Friday", + "2033-04-16": "Black Saturday", + "2033-05-01": "Labour Day", + "2033-06-12": "Independence Day", + "2033-08-21": "Ninoy Aquino Day", + "2033-08-29": "National Heroes Day", + "2033-11-01": "All Saints' Day", + "2033-11-30": "Bonifacio Day", + "2033-12-08": "Immaculate Conception Day", + "2033-12-23": "Eid'l Fitr* (*estimated)", + "2033-12-25": "Christmas Day", + "2033-12-30": "Rizal Day", + "2033-12-31": "New Year's Eve", + "2034-01-01": "New Year's Day", + "2034-02-19": "Chinese New Year", + "2034-02-25": "EDSA Revolution Anniversary", + "2034-03-01": "Eid'l Adha* (*estimated)", + "2034-04-06": "Maundy Thursday", + "2034-04-07": "Good Friday", + "2034-04-08": "Black Saturday", + "2034-04-09": "Day of Valor", + "2034-05-01": "Labour Day", + "2034-06-12": "Independence Day", + "2034-08-21": "Ninoy Aquino Day", + "2034-08-28": "National Heroes Day", + "2034-11-01": "All Saints' Day", + "2034-11-30": "Bonifacio Day", + "2034-12-08": "Immaculate Conception Day", + "2034-12-12": "Eid'l Fitr* (*estimated)", + "2034-12-25": "Christmas Day", + "2034-12-30": "Rizal Day", + "2034-12-31": "New Year's Eve", + "2035-01-01": "New Year's Day", + "2035-02-08": "Chinese New Year", + "2035-02-18": "Eid'l Adha* (*estimated)", + "2035-02-25": "EDSA Revolution Anniversary", + "2035-03-22": "Maundy Thursday", + "2035-03-23": "Good Friday", + "2035-03-24": "Black Saturday", + "2035-04-09": "Day of Valor", + "2035-05-01": "Labour Day", + "2035-06-12": "Independence Day", + "2035-08-21": "Ninoy Aquino Day", + "2035-08-27": "National Heroes Day", + "2035-11-01": "All Saints' Day", + "2035-11-30": "Bonifacio Day", + "2035-12-01": "Eid'l Fitr* (*estimated)", + "2035-12-08": "Immaculate Conception Day", + "2035-12-25": "Christmas Day", + "2035-12-30": "Rizal Day", + "2035-12-31": "New Year's Eve", + "2036-01-01": "New Year's Day", + "2036-01-28": "Chinese New Year", + "2036-02-07": "Eid'l Adha* (*estimated)", + "2036-02-25": "EDSA Revolution Anniversary", + "2036-04-09": "Day of Valor", + "2036-04-10": "Maundy Thursday", + "2036-04-11": "Good Friday", + "2036-04-12": "Black Saturday", + "2036-05-01": "Labour Day", + "2036-06-12": "Independence Day", + "2036-08-21": "Ninoy Aquino Day", + "2036-08-25": "National Heroes Day", + "2036-11-01": "All Saints' Day", + "2036-11-19": "Eid'l Fitr* (*estimated)", + "2036-11-30": "Bonifacio Day", + "2036-12-08": "Immaculate Conception Day", + "2036-12-25": "Christmas Day", + "2036-12-30": "Rizal Day", + "2036-12-31": "New Year's Eve", + "2037-01-01": "New Year's Day", + "2037-01-26": "Eid'l Adha* (*estimated)", + "2037-02-15": "Chinese New Year", + "2037-02-25": "EDSA Revolution Anniversary", + "2037-04-02": "Maundy Thursday", + "2037-04-03": "Good Friday", + "2037-04-04": "Black Saturday", + "2037-04-09": "Day of Valor", + "2037-05-01": "Labour Day", + "2037-06-12": "Independence Day", + "2037-08-21": "Ninoy Aquino Day", + "2037-08-31": "National Heroes Day", + "2037-11-01": "All Saints' Day", + "2037-11-08": "Eid'l Fitr* (*estimated)", + "2037-11-30": "Bonifacio Day", + "2037-12-08": "Immaculate Conception Day", + "2037-12-25": "Christmas Day", + "2037-12-30": "Rizal Day", + "2037-12-31": "New Year's Eve", + "2038-01-01": "New Year's Day", + "2038-01-16": "Eid'l Adha* (*estimated)", + "2038-02-04": "Chinese New Year", + "2038-02-25": "EDSA Revolution Anniversary", + "2038-04-09": "Day of Valor", + "2038-04-22": "Maundy Thursday", + "2038-04-23": "Good Friday", + "2038-04-24": "Black Saturday", + "2038-05-01": "Labour Day", + "2038-06-12": "Independence Day", + "2038-08-21": "Ninoy Aquino Day", + "2038-08-30": "National Heroes Day", + "2038-10-29": "Eid'l Fitr* (*estimated)", + "2038-11-01": "All Saints' Day", + "2038-11-30": "Bonifacio Day", + "2038-12-08": "Immaculate Conception Day", + "2038-12-25": "Christmas Day", + "2038-12-30": "Rizal Day", + "2038-12-31": "New Year's Eve", + "2039-01-01": "New Year's Day", + "2039-01-05": "Eid'l Adha* (*estimated)", + "2039-01-24": "Chinese New Year", + "2039-02-25": "EDSA Revolution Anniversary", + "2039-04-07": "Maundy Thursday", + "2039-04-08": "Good Friday", + "2039-04-09": "Black Saturday; Day of Valor", + "2039-05-01": "Labour Day", + "2039-06-12": "Independence Day", + "2039-08-21": "Ninoy Aquino Day", + "2039-08-29": "National Heroes Day", + "2039-10-19": "Eid'l Fitr* (*estimated)", + "2039-11-01": "All Saints' Day", + "2039-11-30": "Bonifacio Day", + "2039-12-08": "Immaculate Conception Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Eid'l Adha* (*estimated)", + "2039-12-30": "Rizal Day", + "2039-12-31": "New Year's Eve", + "2040-01-01": "New Year's Day", + "2040-02-12": "Chinese New Year", + "2040-02-25": "EDSA Revolution Anniversary", + "2040-03-29": "Maundy Thursday", + "2040-03-30": "Good Friday", + "2040-03-31": "Black Saturday", + "2040-04-09": "Day of Valor", + "2040-05-01": "Labour Day", + "2040-06-12": "Independence Day", + "2040-08-21": "Ninoy Aquino Day", + "2040-08-27": "National Heroes Day", + "2040-10-07": "Eid'l Fitr* (*estimated)", + "2040-11-01": "All Saints' Day", + "2040-11-30": "Bonifacio Day", + "2040-12-08": "Immaculate Conception Day", + "2040-12-14": "Eid'l Adha* (*estimated)", + "2040-12-25": "Christmas Day", + "2040-12-30": "Rizal Day", + "2040-12-31": "New Year's Eve", + "2041-01-01": "New Year's Day", + "2041-02-01": "Chinese New Year", + "2041-02-25": "EDSA Revolution Anniversary", + "2041-04-09": "Day of Valor", + "2041-04-18": "Maundy Thursday", + "2041-04-19": "Good Friday", + "2041-04-20": "Black Saturday", + "2041-05-01": "Labour Day", + "2041-06-12": "Independence Day", + "2041-08-21": "Ninoy Aquino Day", + "2041-08-26": "National Heroes Day", + "2041-09-26": "Eid'l Fitr* (*estimated)", + "2041-11-01": "All Saints' Day", + "2041-11-30": "Bonifacio Day", + "2041-12-04": "Eid'l Adha* (*estimated)", + "2041-12-08": "Immaculate Conception Day", + "2041-12-25": "Christmas Day", + "2041-12-30": "Rizal Day", + "2041-12-31": "New Year's Eve", + "2042-01-01": "New Year's Day", + "2042-01-22": "Chinese New Year", + "2042-02-25": "EDSA Revolution Anniversary", + "2042-04-03": "Maundy Thursday", + "2042-04-04": "Good Friday", + "2042-04-05": "Black Saturday", + "2042-04-09": "Day of Valor", + "2042-05-01": "Labour Day", + "2042-06-12": "Independence Day", + "2042-08-21": "Ninoy Aquino Day", + "2042-08-25": "National Heroes Day", + "2042-09-15": "Eid'l Fitr* (*estimated)", + "2042-11-01": "All Saints' Day", + "2042-11-23": "Eid'l Adha* (*estimated)", + "2042-11-30": "Bonifacio Day", + "2042-12-08": "Immaculate Conception Day", + "2042-12-25": "Christmas Day", + "2042-12-30": "Rizal Day", + "2042-12-31": "New Year's Eve", + "2043-01-01": "New Year's Day", + "2043-02-10": "Chinese New Year", + "2043-02-25": "EDSA Revolution Anniversary", + "2043-03-26": "Maundy Thursday", + "2043-03-27": "Good Friday", + "2043-03-28": "Black Saturday", + "2043-04-09": "Day of Valor", + "2043-05-01": "Labour Day", + "2043-06-12": "Independence Day", + "2043-08-21": "Ninoy Aquino Day", + "2043-08-31": "National Heroes Day", + "2043-09-04": "Eid'l Fitr* (*estimated)", + "2043-11-01": "All Saints' Day", + "2043-11-12": "Eid'l Adha* (*estimated)", + "2043-11-30": "Bonifacio Day", + "2043-12-08": "Immaculate Conception Day", + "2043-12-25": "Christmas Day", + "2043-12-30": "Rizal Day", + "2043-12-31": "New Year's Eve", + "2044-01-01": "New Year's Day", + "2044-01-30": "Chinese New Year", + "2044-02-25": "EDSA Revolution Anniversary", + "2044-04-09": "Day of Valor", + "2044-04-14": "Maundy Thursday", + "2044-04-15": "Good Friday", + "2044-04-16": "Black Saturday", + "2044-05-01": "Labour Day", + "2044-06-12": "Independence Day", + "2044-08-21": "Ninoy Aquino Day", + "2044-08-24": "Eid'l Fitr* (*estimated)", + "2044-08-29": "National Heroes Day", + "2044-10-31": "Eid'l Adha* (*estimated)", + "2044-11-01": "All Saints' Day", + "2044-11-30": "Bonifacio Day", + "2044-12-08": "Immaculate Conception Day", + "2044-12-25": "Christmas Day", + "2044-12-30": "Rizal Day", + "2044-12-31": "New Year's Eve", + "2045-01-01": "New Year's Day", + "2045-02-17": "Chinese New Year", + "2045-02-25": "EDSA Revolution Anniversary", + "2045-04-06": "Maundy Thursday", + "2045-04-07": "Good Friday", + "2045-04-08": "Black Saturday", + "2045-04-09": "Day of Valor", + "2045-05-01": "Labour Day", + "2045-06-12": "Independence Day", + "2045-08-14": "Eid'l Fitr* (*estimated)", + "2045-08-21": "Ninoy Aquino Day", + "2045-08-28": "National Heroes Day", + "2045-10-21": "Eid'l Adha* (*estimated)", + "2045-11-01": "All Saints' Day", + "2045-11-30": "Bonifacio Day", + "2045-12-08": "Immaculate Conception Day", + "2045-12-25": "Christmas Day", + "2045-12-30": "Rizal Day", + "2045-12-31": "New Year's Eve", + "2046-01-01": "New Year's Day", + "2046-02-06": "Chinese New Year", + "2046-02-25": "EDSA Revolution Anniversary", + "2046-03-22": "Maundy Thursday", + "2046-03-23": "Good Friday", + "2046-03-24": "Black Saturday", + "2046-04-09": "Day of Valor", + "2046-05-01": "Labour Day", + "2046-06-12": "Independence Day", + "2046-08-03": "Eid'l Fitr* (*estimated)", + "2046-08-21": "Ninoy Aquino Day", + "2046-08-27": "National Heroes Day", + "2046-10-10": "Eid'l Adha* (*estimated)", + "2046-11-01": "All Saints' Day", + "2046-11-30": "Bonifacio Day", + "2046-12-08": "Immaculate Conception Day", + "2046-12-25": "Christmas Day", + "2046-12-30": "Rizal Day", + "2046-12-31": "New Year's Eve", + "2047-01-01": "New Year's Day", + "2047-01-26": "Chinese New Year", + "2047-02-25": "EDSA Revolution Anniversary", + "2047-04-09": "Day of Valor", + "2047-04-11": "Maundy Thursday", + "2047-04-12": "Good Friday", + "2047-04-13": "Black Saturday", + "2047-05-01": "Labour Day", + "2047-06-12": "Independence Day", + "2047-07-24": "Eid'l Fitr* (*estimated)", + "2047-08-21": "Ninoy Aquino Day", + "2047-08-26": "National Heroes Day", + "2047-09-30": "Eid'l Adha* (*estimated)", + "2047-11-01": "All Saints' Day", + "2047-11-30": "Bonifacio Day", + "2047-12-08": "Immaculate Conception Day", + "2047-12-25": "Christmas Day", + "2047-12-30": "Rizal Day", + "2047-12-31": "New Year's Eve", + "2048-01-01": "New Year's Day", + "2048-02-14": "Chinese New Year", + "2048-02-25": "EDSA Revolution Anniversary", + "2048-04-02": "Maundy Thursday", + "2048-04-03": "Good Friday", + "2048-04-04": "Black Saturday", + "2048-04-09": "Day of Valor", + "2048-05-01": "Labour Day", + "2048-06-12": "Independence Day", + "2048-07-12": "Eid'l Fitr* (*estimated)", + "2048-08-21": "Ninoy Aquino Day", + "2048-08-31": "National Heroes Day", + "2048-09-19": "Eid'l Adha* (*estimated)", + "2048-11-01": "All Saints' Day", + "2048-11-30": "Bonifacio Day", + "2048-12-08": "Immaculate Conception Day", + "2048-12-25": "Christmas Day", + "2048-12-30": "Rizal Day", + "2048-12-31": "New Year's Eve", + "2049-01-01": "New Year's Day", + "2049-02-02": "Chinese New Year", + "2049-02-25": "EDSA Revolution Anniversary", + "2049-04-09": "Day of Valor", + "2049-04-15": "Maundy Thursday", + "2049-04-16": "Good Friday", + "2049-04-17": "Black Saturday", + "2049-05-01": "Labour Day", + "2049-06-12": "Independence Day", + "2049-07-01": "Eid'l Fitr* (*estimated)", + "2049-08-21": "Ninoy Aquino Day", + "2049-08-30": "National Heroes Day", + "2049-09-08": "Eid'l Adha* (*estimated)", + "2049-11-01": "All Saints' Day", + "2049-11-30": "Bonifacio Day", + "2049-12-08": "Immaculate Conception Day", + "2049-12-25": "Christmas Day", + "2049-12-30": "Rizal Day", + "2049-12-31": "New Year's Eve", + "2050-01-01": "New Year's Day", + "2050-01-23": "Chinese New Year", + "2050-02-25": "EDSA Revolution Anniversary", + "2050-04-07": "Maundy Thursday", + "2050-04-08": "Good Friday", + "2050-04-09": "Black Saturday; Day of Valor", + "2050-05-01": "Labour Day", + "2050-06-12": "Independence Day", + "2050-06-20": "Eid'l Fitr* (*estimated)", + "2050-08-21": "Ninoy Aquino Day", + "2050-08-28": "Eid'l Adha* (*estimated)", + "2050-08-29": "National Heroes Day", + "2050-11-01": "All Saints' Day", + "2050-11-30": "Bonifacio Day", + "2050-12-08": "Immaculate Conception Day", + "2050-12-25": "Christmas Day", + "2050-12-30": "Rizal Day", + "2050-12-31": "New Year's Eve" +} diff --git a/snapshots/countries/PK.json b/snapshots/countries/PK.json new file mode 100644 index 000000000..07c94bda8 --- /dev/null +++ b/snapshots/countries/PK.json @@ -0,0 +1,1451 @@ +{ + "1950-01-01": "Eid Milad-un-Nabi* (*estimated)", + "1950-07-16": "Eid-ul-Fitr* (*estimated)", + "1950-07-17": "Eid-ul-Fitr* (*estimated)", + "1950-07-18": "Eid-ul-Fitr* (*estimated)", + "1950-08-14": "Independence Day", + "1950-09-23": "Eid-ul-Adha* (*estimated)", + "1950-09-24": "Eid-ul-Adha* (*estimated)", + "1950-09-25": "Eid-ul-Adha* (*estimated)", + "1950-10-21": "Ashura* (*estimated)", + "1950-10-22": "Ashura* (*estimated)", + "1950-11-09": "Iqbal Day", + "1950-12-22": "Eid Milad-un-Nabi* (*estimated)", + "1950-12-25": "Quaid-e-Azam Day", + "1951-07-06": "Eid-ul-Fitr* (*estimated)", + "1951-07-07": "Eid-ul-Fitr* (*estimated)", + "1951-07-08": "Eid-ul-Fitr* (*estimated)", + "1951-08-14": "Independence Day", + "1951-09-12": "Eid-ul-Adha* (*estimated)", + "1951-09-13": "Eid-ul-Adha* (*estimated)", + "1951-09-14": "Eid-ul-Adha* (*estimated)", + "1951-10-10": "Ashura* (*estimated)", + "1951-10-11": "Ashura* (*estimated)", + "1951-11-09": "Iqbal Day", + "1951-12-11": "Eid Milad-un-Nabi* (*estimated)", + "1951-12-25": "Quaid-e-Azam Day", + "1952-06-23": "Eid-ul-Fitr* (*estimated)", + "1952-06-24": "Eid-ul-Fitr* (*estimated)", + "1952-06-25": "Eid-ul-Fitr* (*estimated)", + "1952-08-14": "Independence Day", + "1952-08-31": "Eid-ul-Adha* (*estimated)", + "1952-09-01": "Eid-ul-Adha* (*estimated)", + "1952-09-02": "Eid-ul-Adha* (*estimated)", + "1952-09-29": "Ashura* (*estimated)", + "1952-09-30": "Ashura* (*estimated)", + "1952-11-09": "Iqbal Day", + "1952-11-30": "Eid Milad-un-Nabi* (*estimated)", + "1952-12-25": "Quaid-e-Azam Day", + "1953-06-13": "Eid-ul-Fitr* (*estimated)", + "1953-06-14": "Eid-ul-Fitr* (*estimated)", + "1953-06-15": "Eid-ul-Fitr* (*estimated)", + "1953-08-14": "Independence Day", + "1953-08-20": "Eid-ul-Adha* (*estimated)", + "1953-08-21": "Eid-ul-Adha* (*estimated)", + "1953-08-22": "Eid-ul-Adha* (*estimated)", + "1953-09-18": "Ashura* (*estimated)", + "1953-09-19": "Ashura* (*estimated)", + "1953-11-09": "Iqbal Day", + "1953-11-19": "Eid Milad-un-Nabi* (*estimated)", + "1953-12-25": "Quaid-e-Azam Day", + "1954-06-02": "Eid-ul-Fitr* (*estimated)", + "1954-06-03": "Eid-ul-Fitr* (*estimated)", + "1954-06-04": "Eid-ul-Fitr* (*estimated)", + "1954-08-09": "Eid-ul-Adha* (*estimated)", + "1954-08-10": "Eid-ul-Adha* (*estimated)", + "1954-08-11": "Eid-ul-Adha* (*estimated)", + "1954-08-14": "Independence Day", + "1954-09-07": "Ashura* (*estimated)", + "1954-09-08": "Ashura* (*estimated)", + "1954-11-08": "Eid Milad-un-Nabi* (*estimated)", + "1954-11-09": "Iqbal Day", + "1954-12-25": "Quaid-e-Azam Day", + "1955-05-23": "Eid-ul-Fitr* (*estimated)", + "1955-05-24": "Eid-ul-Fitr* (*estimated)", + "1955-05-25": "Eid-ul-Fitr* (*estimated)", + "1955-07-30": "Eid-ul-Adha* (*estimated)", + "1955-07-31": "Eid-ul-Adha* (*estimated)", + "1955-08-01": "Eid-ul-Adha* (*estimated)", + "1955-08-14": "Independence Day", + "1955-08-28": "Ashura* (*estimated)", + "1955-08-29": "Ashura* (*estimated)", + "1955-10-29": "Eid Milad-un-Nabi* (*estimated)", + "1955-11-09": "Iqbal Day", + "1955-12-25": "Quaid-e-Azam Day", + "1956-03-23": "Pakistan Day", + "1956-05-11": "Eid-ul-Fitr* (*estimated)", + "1956-05-12": "Eid-ul-Fitr* (*estimated)", + "1956-05-13": "Eid-ul-Fitr* (*estimated)", + "1956-07-19": "Eid-ul-Adha* (*estimated)", + "1956-07-20": "Eid-ul-Adha* (*estimated)", + "1956-07-21": "Eid-ul-Adha* (*estimated)", + "1956-08-14": "Independence Day", + "1956-08-16": "Ashura* (*estimated)", + "1956-08-17": "Ashura* (*estimated)", + "1956-10-17": "Eid Milad-un-Nabi* (*estimated)", + "1956-11-09": "Iqbal Day", + "1956-12-25": "Quaid-e-Azam Day", + "1957-03-23": "Pakistan Day", + "1957-05-01": "Eid-ul-Fitr* (*estimated)", + "1957-05-02": "Eid-ul-Fitr* (*estimated)", + "1957-05-03": "Eid-ul-Fitr* (*estimated)", + "1957-07-08": "Eid-ul-Adha* (*estimated)", + "1957-07-09": "Eid-ul-Adha* (*estimated)", + "1957-07-10": "Eid-ul-Adha* (*estimated)", + "1957-08-05": "Ashura* (*estimated)", + "1957-08-06": "Ashura* (*estimated)", + "1957-08-14": "Independence Day", + "1957-10-06": "Eid Milad-un-Nabi* (*estimated)", + "1957-11-09": "Iqbal Day", + "1957-12-25": "Quaid-e-Azam Day", + "1958-03-23": "Pakistan Day", + "1958-04-20": "Eid-ul-Fitr* (*estimated)", + "1958-04-21": "Eid-ul-Fitr* (*estimated)", + "1958-04-22": "Eid-ul-Fitr* (*estimated)", + "1958-06-27": "Eid-ul-Adha* (*estimated)", + "1958-06-28": "Eid-ul-Adha* (*estimated)", + "1958-06-29": "Eid-ul-Adha* (*estimated)", + "1958-07-26": "Ashura* (*estimated)", + "1958-07-27": "Ashura* (*estimated)", + "1958-08-14": "Independence Day", + "1958-09-26": "Eid Milad-un-Nabi* (*estimated)", + "1958-11-09": "Iqbal Day", + "1958-12-25": "Quaid-e-Azam Day", + "1959-03-23": "Pakistan Day", + "1959-04-10": "Eid-ul-Fitr* (*estimated)", + "1959-04-11": "Eid-ul-Fitr* (*estimated)", + "1959-04-12": "Eid-ul-Fitr* (*estimated)", + "1959-06-17": "Eid-ul-Adha* (*estimated)", + "1959-06-18": "Eid-ul-Adha* (*estimated)", + "1959-06-19": "Eid-ul-Adha* (*estimated)", + "1959-07-15": "Ashura* (*estimated)", + "1959-07-16": "Ashura* (*estimated)", + "1959-08-14": "Independence Day", + "1959-09-15": "Eid Milad-un-Nabi* (*estimated)", + "1959-11-09": "Iqbal Day", + "1959-12-25": "Quaid-e-Azam Day", + "1960-03-23": "Pakistan Day", + "1960-03-28": "Eid-ul-Fitr* (*estimated)", + "1960-03-29": "Eid-ul-Fitr* (*estimated)", + "1960-03-30": "Eid-ul-Fitr* (*estimated)", + "1960-06-04": "Eid-ul-Adha* (*estimated)", + "1960-06-05": "Eid-ul-Adha* (*estimated)", + "1960-06-06": "Eid-ul-Adha* (*estimated)", + "1960-07-03": "Ashura* (*estimated)", + "1960-07-04": "Ashura* (*estimated)", + "1960-08-14": "Independence Day", + "1960-09-03": "Eid Milad-un-Nabi* (*estimated)", + "1960-11-09": "Iqbal Day", + "1960-12-25": "Quaid-e-Azam Day", + "1961-03-18": "Eid-ul-Fitr* (*estimated)", + "1961-03-19": "Eid-ul-Fitr* (*estimated)", + "1961-03-20": "Eid-ul-Fitr* (*estimated)", + "1961-03-23": "Pakistan Day", + "1961-05-25": "Eid-ul-Adha* (*estimated)", + "1961-05-26": "Eid-ul-Adha* (*estimated)", + "1961-05-27": "Eid-ul-Adha* (*estimated)", + "1961-06-22": "Ashura* (*estimated)", + "1961-06-23": "Ashura* (*estimated)", + "1961-08-14": "Independence Day", + "1961-08-23": "Eid Milad-un-Nabi* (*estimated)", + "1961-11-09": "Iqbal Day", + "1961-12-25": "Quaid-e-Azam Day", + "1962-03-07": "Eid-ul-Fitr* (*estimated)", + "1962-03-08": "Eid-ul-Fitr* (*estimated)", + "1962-03-09": "Eid-ul-Fitr* (*estimated)", + "1962-03-23": "Pakistan Day", + "1962-05-14": "Eid-ul-Adha* (*estimated)", + "1962-05-15": "Eid-ul-Adha* (*estimated)", + "1962-05-16": "Eid-ul-Adha* (*estimated)", + "1962-06-11": "Ashura* (*estimated)", + "1962-06-12": "Ashura* (*estimated)", + "1962-08-12": "Eid Milad-un-Nabi* (*estimated)", + "1962-08-14": "Independence Day", + "1962-11-09": "Iqbal Day", + "1962-12-25": "Quaid-e-Azam Day", + "1963-02-24": "Eid-ul-Fitr* (*estimated)", + "1963-02-25": "Eid-ul-Fitr* (*estimated)", + "1963-02-26": "Eid-ul-Fitr* (*estimated)", + "1963-03-23": "Pakistan Day", + "1963-05-03": "Eid-ul-Adha* (*estimated)", + "1963-05-04": "Eid-ul-Adha* (*estimated)", + "1963-05-05": "Eid-ul-Adha* (*estimated)", + "1963-06-01": "Ashura* (*estimated)", + "1963-06-02": "Ashura* (*estimated)", + "1963-08-02": "Eid Milad-un-Nabi* (*estimated)", + "1963-08-14": "Independence Day", + "1963-11-09": "Iqbal Day", + "1963-12-25": "Quaid-e-Azam Day", + "1964-02-14": "Eid-ul-Fitr* (*estimated)", + "1964-02-15": "Eid-ul-Fitr* (*estimated)", + "1964-02-16": "Eid-ul-Fitr* (*estimated)", + "1964-03-23": "Pakistan Day", + "1964-04-22": "Eid-ul-Adha* (*estimated)", + "1964-04-23": "Eid-ul-Adha* (*estimated)", + "1964-04-24": "Eid-ul-Adha* (*estimated)", + "1964-05-20": "Ashura* (*estimated)", + "1964-05-21": "Ashura* (*estimated)", + "1964-07-21": "Eid Milad-un-Nabi* (*estimated)", + "1964-08-14": "Independence Day", + "1964-11-09": "Iqbal Day", + "1964-12-25": "Quaid-e-Azam Day", + "1965-02-02": "Eid-ul-Fitr* (*estimated)", + "1965-02-03": "Eid-ul-Fitr* (*estimated)", + "1965-02-04": "Eid-ul-Fitr* (*estimated)", + "1965-03-23": "Pakistan Day", + "1965-04-11": "Eid-ul-Adha* (*estimated)", + "1965-04-12": "Eid-ul-Adha* (*estimated)", + "1965-04-13": "Eid-ul-Adha* (*estimated)", + "1965-05-09": "Ashura* (*estimated)", + "1965-05-10": "Ashura* (*estimated)", + "1965-07-10": "Eid Milad-un-Nabi* (*estimated)", + "1965-08-14": "Independence Day", + "1965-11-09": "Iqbal Day", + "1965-12-25": "Quaid-e-Azam Day", + "1966-01-22": "Eid-ul-Fitr* (*estimated)", + "1966-01-23": "Eid-ul-Fitr* (*estimated)", + "1966-01-24": "Eid-ul-Fitr* (*estimated)", + "1966-03-23": "Pakistan Day", + "1966-04-01": "Eid-ul-Adha* (*estimated)", + "1966-04-02": "Eid-ul-Adha* (*estimated)", + "1966-04-03": "Eid-ul-Adha* (*estimated)", + "1966-04-29": "Ashura* (*estimated)", + "1966-04-30": "Ashura* (*estimated)", + "1966-07-01": "Eid Milad-un-Nabi* (*estimated)", + "1966-08-14": "Independence Day", + "1966-11-09": "Iqbal Day", + "1966-12-25": "Quaid-e-Azam Day", + "1967-01-12": "Eid-ul-Fitr* (*estimated)", + "1967-01-13": "Eid-ul-Fitr* (*estimated)", + "1967-01-14": "Eid-ul-Fitr* (*estimated)", + "1967-03-21": "Eid-ul-Adha* (*estimated)", + "1967-03-22": "Eid-ul-Adha* (*estimated)", + "1967-03-23": "Eid-ul-Adha* (*estimated); Pakistan Day", + "1967-04-19": "Ashura* (*estimated)", + "1967-04-20": "Ashura* (*estimated)", + "1967-06-19": "Eid Milad-un-Nabi* (*estimated)", + "1967-08-14": "Independence Day", + "1967-11-09": "Iqbal Day", + "1967-12-25": "Quaid-e-Azam Day", + "1968-01-01": "Eid-ul-Fitr* (*estimated)", + "1968-01-02": "Eid-ul-Fitr* (*estimated)", + "1968-01-03": "Eid-ul-Fitr* (*estimated)", + "1968-03-09": "Eid-ul-Adha* (*estimated)", + "1968-03-10": "Eid-ul-Adha* (*estimated)", + "1968-03-11": "Eid-ul-Adha* (*estimated)", + "1968-03-23": "Pakistan Day", + "1968-04-07": "Ashura* (*estimated)", + "1968-04-08": "Ashura* (*estimated)", + "1968-06-08": "Eid Milad-un-Nabi* (*estimated)", + "1968-08-14": "Independence Day", + "1968-11-09": "Iqbal Day", + "1968-12-21": "Eid-ul-Fitr* (*estimated)", + "1968-12-22": "Eid-ul-Fitr* (*estimated)", + "1968-12-23": "Eid-ul-Fitr* (*estimated)", + "1968-12-25": "Quaid-e-Azam Day", + "1969-02-27": "Eid-ul-Adha* (*estimated)", + "1969-02-28": "Eid-ul-Adha* (*estimated)", + "1969-03-01": "Eid-ul-Adha* (*estimated)", + "1969-03-23": "Pakistan Day", + "1969-03-27": "Ashura* (*estimated)", + "1969-03-28": "Ashura* (*estimated)", + "1969-05-28": "Eid Milad-un-Nabi* (*estimated)", + "1969-08-14": "Independence Day", + "1969-11-09": "Iqbal Day", + "1969-12-10": "Eid-ul-Fitr* (*estimated)", + "1969-12-11": "Eid-ul-Fitr* (*estimated)", + "1969-12-12": "Eid-ul-Fitr* (*estimated)", + "1969-12-25": "Quaid-e-Azam Day", + "1970-02-16": "Eid-ul-Adha* (*estimated)", + "1970-02-17": "Eid-ul-Adha* (*estimated)", + "1970-02-18": "Eid-ul-Adha* (*estimated)", + "1970-03-17": "Ashura* (*estimated)", + "1970-03-18": "Ashura* (*estimated)", + "1970-03-23": "Pakistan Day", + "1970-05-18": "Eid Milad-un-Nabi* (*estimated)", + "1970-08-14": "Independence Day", + "1970-11-09": "Iqbal Day", + "1970-11-30": "Eid-ul-Fitr* (*estimated)", + "1970-12-01": "Eid-ul-Fitr* (*estimated)", + "1970-12-02": "Eid-ul-Fitr* (*estimated)", + "1970-12-25": "Quaid-e-Azam Day", + "1971-02-06": "Eid-ul-Adha* (*estimated)", + "1971-02-07": "Eid-ul-Adha* (*estimated)", + "1971-02-08": "Eid-ul-Adha* (*estimated)", + "1971-03-06": "Ashura* (*estimated)", + "1971-03-07": "Ashura* (*estimated)", + "1971-03-23": "Pakistan Day", + "1971-05-07": "Eid Milad-un-Nabi* (*estimated)", + "1971-08-14": "Independence Day", + "1971-11-09": "Iqbal Day", + "1971-11-19": "Eid-ul-Fitr* (*estimated)", + "1971-11-20": "Eid-ul-Fitr* (*estimated)", + "1971-11-21": "Eid-ul-Fitr* (*estimated)", + "1971-12-25": "Quaid-e-Azam Day", + "1972-01-26": "Eid-ul-Adha* (*estimated)", + "1972-01-27": "Eid-ul-Adha* (*estimated)", + "1972-01-28": "Eid-ul-Adha* (*estimated)", + "1972-02-24": "Ashura* (*estimated)", + "1972-02-25": "Ashura* (*estimated)", + "1972-03-23": "Pakistan Day", + "1972-04-25": "Eid Milad-un-Nabi* (*estimated)", + "1972-05-01": "Labour Day", + "1972-08-14": "Independence Day", + "1972-11-07": "Eid-ul-Fitr* (*estimated)", + "1972-11-08": "Eid-ul-Fitr* (*estimated)", + "1972-11-09": "Eid-ul-Fitr* (*estimated); Iqbal Day", + "1972-12-25": "Quaid-e-Azam Day", + "1973-01-14": "Eid-ul-Adha* (*estimated)", + "1973-01-15": "Eid-ul-Adha* (*estimated)", + "1973-01-16": "Eid-ul-Adha* (*estimated)", + "1973-02-12": "Ashura* (*estimated)", + "1973-02-13": "Ashura* (*estimated)", + "1973-03-23": "Pakistan Day", + "1973-04-15": "Eid Milad-un-Nabi* (*estimated)", + "1973-05-01": "Labour Day", + "1973-08-14": "Independence Day", + "1973-10-27": "Eid-ul-Fitr* (*estimated)", + "1973-10-28": "Eid-ul-Fitr* (*estimated)", + "1973-10-29": "Eid-ul-Fitr* (*estimated)", + "1973-11-09": "Iqbal Day", + "1973-12-25": "Quaid-e-Azam Day", + "1974-01-03": "Eid-ul-Adha* (*estimated)", + "1974-01-04": "Eid-ul-Adha* (*estimated)", + "1974-01-05": "Eid-ul-Adha* (*estimated)", + "1974-02-01": "Ashura* (*estimated)", + "1974-02-02": "Ashura* (*estimated)", + "1974-03-23": "Pakistan Day", + "1974-04-04": "Eid Milad-un-Nabi* (*estimated)", + "1974-05-01": "Labour Day", + "1974-08-14": "Independence Day", + "1974-10-16": "Eid-ul-Fitr* (*estimated)", + "1974-10-17": "Eid-ul-Fitr* (*estimated)", + "1974-10-18": "Eid-ul-Fitr* (*estimated)", + "1974-11-09": "Iqbal Day", + "1974-12-24": "Eid-ul-Adha* (*estimated)", + "1974-12-25": "Eid-ul-Adha* (*estimated); Quaid-e-Azam Day", + "1974-12-26": "Eid-ul-Adha* (*estimated)", + "1975-01-21": "Ashura* (*estimated)", + "1975-01-22": "Ashura* (*estimated)", + "1975-03-23": "Pakistan Day", + "1975-03-24": "Eid Milad-un-Nabi* (*estimated)", + "1975-05-01": "Labour Day", + "1975-08-14": "Independence Day", + "1975-10-06": "Eid-ul-Fitr* (*estimated)", + "1975-10-07": "Eid-ul-Fitr* (*estimated)", + "1975-10-08": "Eid-ul-Fitr* (*estimated)", + "1975-11-09": "Iqbal Day", + "1975-12-13": "Eid-ul-Adha* (*estimated)", + "1975-12-14": "Eid-ul-Adha* (*estimated)", + "1975-12-15": "Eid-ul-Adha* (*estimated)", + "1975-12-25": "Quaid-e-Azam Day", + "1976-01-10": "Ashura* (*estimated)", + "1976-01-11": "Ashura* (*estimated)", + "1976-03-12": "Eid Milad-un-Nabi* (*estimated)", + "1976-03-23": "Pakistan Day", + "1976-05-01": "Labour Day", + "1976-08-14": "Independence Day", + "1976-09-24": "Eid-ul-Fitr* (*estimated)", + "1976-09-25": "Eid-ul-Fitr* (*estimated)", + "1976-09-26": "Eid-ul-Fitr* (*estimated)", + "1976-11-09": "Iqbal Day", + "1976-12-01": "Eid-ul-Adha* (*estimated)", + "1976-12-02": "Eid-ul-Adha* (*estimated)", + "1976-12-03": "Eid-ul-Adha* (*estimated)", + "1976-12-25": "Quaid-e-Azam Day", + "1976-12-30": "Ashura* (*estimated)", + "1976-12-31": "Ashura* (*estimated)", + "1977-03-02": "Eid Milad-un-Nabi* (*estimated)", + "1977-03-23": "Pakistan Day", + "1977-05-01": "Labour Day", + "1977-08-14": "Independence Day", + "1977-09-14": "Eid-ul-Fitr* (*estimated)", + "1977-09-15": "Eid-ul-Fitr* (*estimated)", + "1977-09-16": "Eid-ul-Fitr* (*estimated)", + "1977-11-09": "Iqbal Day", + "1977-11-21": "Eid-ul-Adha* (*estimated)", + "1977-11-22": "Eid-ul-Adha* (*estimated)", + "1977-11-23": "Eid-ul-Adha* (*estimated)", + "1977-12-19": "Ashura* (*estimated)", + "1977-12-20": "Ashura* (*estimated)", + "1977-12-25": "Quaid-e-Azam Day", + "1978-02-19": "Eid Milad-un-Nabi* (*estimated)", + "1978-03-23": "Pakistan Day", + "1978-05-01": "Labour Day", + "1978-08-14": "Independence Day", + "1978-09-03": "Eid-ul-Fitr* (*estimated)", + "1978-09-04": "Eid-ul-Fitr* (*estimated)", + "1978-09-05": "Eid-ul-Fitr* (*estimated)", + "1978-11-09": "Iqbal Day", + "1978-11-10": "Eid-ul-Adha* (*estimated)", + "1978-11-11": "Eid-ul-Adha* (*estimated)", + "1978-11-12": "Eid-ul-Adha* (*estimated)", + "1978-12-09": "Ashura* (*estimated)", + "1978-12-10": "Ashura* (*estimated)", + "1978-12-25": "Quaid-e-Azam Day", + "1979-02-09": "Eid Milad-un-Nabi* (*estimated)", + "1979-03-23": "Pakistan Day", + "1979-05-01": "Labour Day", + "1979-08-14": "Independence Day", + "1979-08-23": "Eid-ul-Fitr* (*estimated)", + "1979-08-24": "Eid-ul-Fitr* (*estimated)", + "1979-08-25": "Eid-ul-Fitr* (*estimated)", + "1979-10-31": "Eid-ul-Adha* (*estimated)", + "1979-11-01": "Eid-ul-Adha* (*estimated)", + "1979-11-02": "Eid-ul-Adha* (*estimated)", + "1979-11-09": "Iqbal Day", + "1979-11-28": "Ashura* (*estimated)", + "1979-11-29": "Ashura* (*estimated)", + "1979-12-25": "Quaid-e-Azam Day", + "1980-01-30": "Eid Milad-un-Nabi* (*estimated)", + "1980-03-23": "Pakistan Day", + "1980-05-01": "Labour Day", + "1980-08-12": "Eid-ul-Fitr* (*estimated)", + "1980-08-13": "Eid-ul-Fitr* (*estimated)", + "1980-08-14": "Eid-ul-Fitr* (*estimated); Independence Day", + "1980-10-19": "Eid-ul-Adha* (*estimated)", + "1980-10-20": "Eid-ul-Adha* (*estimated)", + "1980-10-21": "Eid-ul-Adha* (*estimated)", + "1980-11-09": "Iqbal Day", + "1980-11-17": "Ashura* (*estimated)", + "1980-11-18": "Ashura* (*estimated)", + "1980-12-25": "Quaid-e-Azam Day", + "1981-01-18": "Eid Milad-un-Nabi* (*estimated)", + "1981-03-23": "Pakistan Day", + "1981-05-01": "Labour Day", + "1981-08-01": "Eid-ul-Fitr* (*estimated)", + "1981-08-02": "Eid-ul-Fitr* (*estimated)", + "1981-08-03": "Eid-ul-Fitr* (*estimated)", + "1981-08-14": "Independence Day", + "1981-10-08": "Eid-ul-Adha* (*estimated)", + "1981-10-09": "Eid-ul-Adha* (*estimated)", + "1981-10-10": "Eid-ul-Adha* (*estimated)", + "1981-11-05": "Ashura* (*estimated)", + "1981-11-06": "Ashura* (*estimated)", + "1981-11-09": "Iqbal Day", + "1981-12-25": "Quaid-e-Azam Day", + "1982-01-07": "Eid Milad-un-Nabi* (*estimated)", + "1982-03-23": "Pakistan Day", + "1982-05-01": "Labour Day", + "1982-07-21": "Eid-ul-Fitr* (*estimated)", + "1982-07-22": "Eid-ul-Fitr* (*estimated)", + "1982-07-23": "Eid-ul-Fitr* (*estimated)", + "1982-08-14": "Independence Day", + "1982-09-27": "Eid-ul-Adha* (*estimated)", + "1982-09-28": "Eid-ul-Adha* (*estimated)", + "1982-09-29": "Eid-ul-Adha* (*estimated)", + "1982-10-26": "Ashura* (*estimated)", + "1982-10-27": "Ashura* (*estimated)", + "1982-11-09": "Iqbal Day", + "1982-12-25": "Quaid-e-Azam Day", + "1982-12-27": "Eid Milad-un-Nabi* (*estimated)", + "1983-03-23": "Pakistan Day", + "1983-05-01": "Labour Day", + "1983-07-11": "Eid-ul-Fitr* (*estimated)", + "1983-07-12": "Eid-ul-Fitr* (*estimated)", + "1983-07-13": "Eid-ul-Fitr* (*estimated)", + "1983-08-14": "Independence Day", + "1983-09-17": "Eid-ul-Adha* (*estimated)", + "1983-09-18": "Eid-ul-Adha* (*estimated)", + "1983-09-19": "Eid-ul-Adha* (*estimated)", + "1983-10-15": "Ashura* (*estimated)", + "1983-10-16": "Ashura* (*estimated)", + "1983-11-09": "Iqbal Day", + "1983-12-16": "Eid Milad-un-Nabi* (*estimated)", + "1983-12-25": "Quaid-e-Azam Day", + "1984-03-23": "Pakistan Day", + "1984-05-01": "Labour Day", + "1984-06-30": "Eid-ul-Fitr* (*estimated)", + "1984-07-01": "Eid-ul-Fitr* (*estimated)", + "1984-07-02": "Eid-ul-Fitr* (*estimated)", + "1984-08-14": "Independence Day", + "1984-09-05": "Eid-ul-Adha* (*estimated)", + "1984-09-06": "Eid-ul-Adha* (*estimated)", + "1984-09-07": "Eid-ul-Adha* (*estimated)", + "1984-10-04": "Ashura* (*estimated)", + "1984-10-05": "Ashura* (*estimated)", + "1984-11-09": "Iqbal Day", + "1984-12-04": "Eid Milad-un-Nabi* (*estimated)", + "1984-12-25": "Quaid-e-Azam Day", + "1985-03-23": "Pakistan Day", + "1985-05-01": "Labour Day", + "1985-06-19": "Eid-ul-Fitr* (*estimated)", + "1985-06-20": "Eid-ul-Fitr* (*estimated)", + "1985-06-21": "Eid-ul-Fitr* (*estimated)", + "1985-08-14": "Independence Day", + "1985-08-26": "Eid-ul-Adha* (*estimated)", + "1985-08-27": "Eid-ul-Adha* (*estimated)", + "1985-08-28": "Eid-ul-Adha* (*estimated)", + "1985-09-23": "Ashura* (*estimated)", + "1985-09-24": "Ashura* (*estimated)", + "1985-11-09": "Iqbal Day", + "1985-11-24": "Eid Milad-un-Nabi* (*estimated)", + "1985-12-25": "Quaid-e-Azam Day", + "1986-03-23": "Pakistan Day", + "1986-05-01": "Labour Day", + "1986-06-08": "Eid-ul-Fitr* (*estimated)", + "1986-06-09": "Eid-ul-Fitr* (*estimated)", + "1986-06-10": "Eid-ul-Fitr* (*estimated)", + "1986-08-14": "Independence Day", + "1986-08-15": "Eid-ul-Adha* (*estimated)", + "1986-08-16": "Eid-ul-Adha* (*estimated)", + "1986-08-17": "Eid-ul-Adha* (*estimated)", + "1986-09-13": "Ashura* (*estimated)", + "1986-09-14": "Ashura* (*estimated)", + "1986-11-09": "Iqbal Day", + "1986-11-14": "Eid Milad-un-Nabi* (*estimated)", + "1986-12-25": "Quaid-e-Azam Day", + "1987-03-23": "Pakistan Day", + "1987-05-01": "Labour Day", + "1987-05-28": "Eid-ul-Fitr* (*estimated)", + "1987-05-29": "Eid-ul-Fitr* (*estimated)", + "1987-05-30": "Eid-ul-Fitr* (*estimated)", + "1987-08-04": "Eid-ul-Adha* (*estimated)", + "1987-08-05": "Eid-ul-Adha* (*estimated)", + "1987-08-06": "Eid-ul-Adha* (*estimated)", + "1987-08-14": "Independence Day", + "1987-09-02": "Ashura* (*estimated)", + "1987-09-03": "Ashura* (*estimated)", + "1987-11-03": "Eid Milad-un-Nabi* (*estimated)", + "1987-11-09": "Iqbal Day", + "1987-12-25": "Quaid-e-Azam Day", + "1988-03-23": "Pakistan Day", + "1988-05-01": "Labour Day", + "1988-05-16": "Eid-ul-Fitr* (*estimated)", + "1988-05-17": "Eid-ul-Fitr* (*estimated)", + "1988-05-18": "Eid-ul-Fitr* (*estimated)", + "1988-07-23": "Eid-ul-Adha* (*estimated)", + "1988-07-24": "Eid-ul-Adha* (*estimated)", + "1988-07-25": "Eid-ul-Adha* (*estimated)", + "1988-08-14": "Independence Day", + "1988-08-21": "Ashura* (*estimated)", + "1988-08-22": "Ashura* (*estimated)", + "1988-10-22": "Eid Milad-un-Nabi* (*estimated)", + "1988-11-09": "Iqbal Day", + "1988-12-25": "Quaid-e-Azam Day", + "1989-03-23": "Pakistan Day", + "1989-05-01": "Labour Day", + "1989-05-06": "Eid-ul-Fitr* (*estimated)", + "1989-05-07": "Eid-ul-Fitr* (*estimated)", + "1989-05-08": "Eid-ul-Fitr* (*estimated)", + "1989-07-13": "Eid-ul-Adha* (*estimated)", + "1989-07-14": "Eid-ul-Adha* (*estimated)", + "1989-07-15": "Eid-ul-Adha* (*estimated)", + "1989-08-10": "Ashura* (*estimated)", + "1989-08-11": "Ashura* (*estimated)", + "1989-08-14": "Independence Day", + "1989-10-11": "Eid Milad-un-Nabi* (*estimated)", + "1989-11-09": "Iqbal Day", + "1989-12-25": "Quaid-e-Azam Day", + "1990-02-05": "Kashmir Solidarity Day", + "1990-03-23": "Pakistan Day", + "1990-04-26": "Eid-ul-Fitr* (*estimated)", + "1990-04-27": "Eid-ul-Fitr* (*estimated)", + "1990-04-28": "Eid-ul-Fitr* (*estimated)", + "1990-05-01": "Labour Day", + "1990-07-02": "Eid-ul-Adha* (*estimated)", + "1990-07-03": "Eid-ul-Adha* (*estimated)", + "1990-07-04": "Eid-ul-Adha* (*estimated)", + "1990-07-31": "Ashura* (*estimated)", + "1990-08-01": "Ashura* (*estimated)", + "1990-08-14": "Independence Day", + "1990-10-01": "Eid Milad-un-Nabi* (*estimated)", + "1990-11-09": "Iqbal Day", + "1990-12-25": "Quaid-e-Azam Day", + "1991-02-05": "Kashmir Solidarity Day", + "1991-03-23": "Pakistan Day", + "1991-04-15": "Eid-ul-Fitr* (*estimated)", + "1991-04-16": "Eid-ul-Fitr* (*estimated)", + "1991-04-17": "Eid-ul-Fitr* (*estimated)", + "1991-05-01": "Labour Day", + "1991-06-22": "Eid-ul-Adha* (*estimated)", + "1991-06-23": "Eid-ul-Adha* (*estimated)", + "1991-06-24": "Eid-ul-Adha* (*estimated)", + "1991-07-20": "Ashura* (*estimated)", + "1991-07-21": "Ashura* (*estimated)", + "1991-08-14": "Independence Day", + "1991-09-20": "Eid Milad-un-Nabi* (*estimated)", + "1991-11-09": "Iqbal Day", + "1991-12-25": "Quaid-e-Azam Day", + "1992-02-05": "Kashmir Solidarity Day", + "1992-03-23": "Pakistan Day", + "1992-04-04": "Eid-ul-Fitr* (*estimated)", + "1992-04-05": "Eid-ul-Fitr* (*estimated)", + "1992-04-06": "Eid-ul-Fitr* (*estimated)", + "1992-05-01": "Labour Day", + "1992-06-11": "Eid-ul-Adha* (*estimated)", + "1992-06-12": "Eid-ul-Adha* (*estimated)", + "1992-06-13": "Eid-ul-Adha* (*estimated)", + "1992-07-09": "Ashura* (*estimated)", + "1992-07-10": "Ashura* (*estimated)", + "1992-08-14": "Independence Day", + "1992-09-09": "Eid Milad-un-Nabi* (*estimated)", + "1992-11-09": "Iqbal Day", + "1992-12-25": "Quaid-e-Azam Day", + "1993-02-05": "Kashmir Solidarity Day", + "1993-03-23": "Pakistan Day", + "1993-03-24": "Eid-ul-Fitr* (*estimated)", + "1993-03-25": "Eid-ul-Fitr* (*estimated)", + "1993-03-26": "Eid-ul-Fitr* (*estimated)", + "1993-05-01": "Labour Day", + "1993-05-31": "Eid-ul-Adha* (*estimated)", + "1993-06-01": "Eid-ul-Adha* (*estimated)", + "1993-06-02": "Eid-ul-Adha* (*estimated)", + "1993-06-29": "Ashura* (*estimated)", + "1993-06-30": "Ashura* (*estimated)", + "1993-08-14": "Independence Day", + "1993-08-29": "Eid Milad-un-Nabi* (*estimated)", + "1993-11-09": "Iqbal Day", + "1993-12-25": "Quaid-e-Azam Day", + "1994-02-05": "Kashmir Solidarity Day", + "1994-03-13": "Eid-ul-Fitr* (*estimated)", + "1994-03-14": "Eid-ul-Fitr* (*estimated)", + "1994-03-15": "Eid-ul-Fitr* (*estimated)", + "1994-03-23": "Pakistan Day", + "1994-05-01": "Labour Day", + "1994-05-20": "Eid-ul-Adha* (*estimated)", + "1994-05-21": "Eid-ul-Adha* (*estimated)", + "1994-05-22": "Eid-ul-Adha* (*estimated)", + "1994-06-18": "Ashura* (*estimated)", + "1994-06-19": "Ashura* (*estimated)", + "1994-08-14": "Independence Day", + "1994-08-19": "Eid Milad-un-Nabi* (*estimated)", + "1994-11-09": "Iqbal Day", + "1994-12-25": "Quaid-e-Azam Day", + "1995-02-05": "Kashmir Solidarity Day", + "1995-03-02": "Eid-ul-Fitr* (*estimated)", + "1995-03-03": "Eid-ul-Fitr* (*estimated)", + "1995-03-04": "Eid-ul-Fitr* (*estimated)", + "1995-03-23": "Pakistan Day", + "1995-05-01": "Labour Day", + "1995-05-09": "Eid-ul-Adha* (*estimated)", + "1995-05-10": "Eid-ul-Adha* (*estimated)", + "1995-05-11": "Eid-ul-Adha* (*estimated)", + "1995-06-07": "Ashura* (*estimated)", + "1995-06-08": "Ashura* (*estimated)", + "1995-08-08": "Eid Milad-un-Nabi* (*estimated)", + "1995-08-14": "Independence Day", + "1995-11-09": "Iqbal Day", + "1995-12-25": "Quaid-e-Azam Day", + "1996-02-05": "Kashmir Solidarity Day", + "1996-02-19": "Eid-ul-Fitr* (*estimated)", + "1996-02-20": "Eid-ul-Fitr* (*estimated)", + "1996-02-21": "Eid-ul-Fitr* (*estimated)", + "1996-03-23": "Pakistan Day", + "1996-04-27": "Eid-ul-Adha* (*estimated)", + "1996-04-28": "Eid-ul-Adha* (*estimated)", + "1996-04-29": "Eid-ul-Adha* (*estimated)", + "1996-05-01": "Labour Day", + "1996-05-26": "Ashura* (*estimated)", + "1996-05-27": "Ashura* (*estimated)", + "1996-07-27": "Eid Milad-un-Nabi* (*estimated)", + "1996-08-14": "Independence Day", + "1996-11-09": "Iqbal Day", + "1996-12-25": "Quaid-e-Azam Day", + "1997-02-05": "Kashmir Solidarity Day", + "1997-02-08": "Eid-ul-Fitr* (*estimated)", + "1997-02-09": "Eid-ul-Fitr* (*estimated)", + "1997-02-10": "Eid-ul-Fitr* (*estimated)", + "1997-03-23": "Pakistan Day", + "1997-04-17": "Eid-ul-Adha* (*estimated)", + "1997-04-18": "Eid-ul-Adha* (*estimated)", + "1997-04-19": "Eid-ul-Adha* (*estimated)", + "1997-05-01": "Labour Day", + "1997-05-15": "Ashura* (*estimated)", + "1997-05-16": "Ashura* (*estimated)", + "1997-07-16": "Eid Milad-un-Nabi* (*estimated)", + "1997-08-14": "Independence Day", + "1997-11-09": "Iqbal Day", + "1997-12-25": "Quaid-e-Azam Day", + "1998-01-29": "Eid-ul-Fitr* (*estimated)", + "1998-01-30": "Eid-ul-Fitr* (*estimated)", + "1998-01-31": "Eid-ul-Fitr* (*estimated)", + "1998-02-05": "Kashmir Solidarity Day", + "1998-03-23": "Pakistan Day", + "1998-04-07": "Eid-ul-Adha* (*estimated)", + "1998-04-08": "Eid-ul-Adha* (*estimated)", + "1998-04-09": "Eid-ul-Adha* (*estimated)", + "1998-05-01": "Labour Day", + "1998-05-05": "Ashura* (*estimated)", + "1998-05-06": "Ashura* (*estimated)", + "1998-07-06": "Eid Milad-un-Nabi* (*estimated)", + "1998-08-14": "Independence Day", + "1998-11-09": "Iqbal Day", + "1998-12-25": "Quaid-e-Azam Day", + "1999-01-18": "Eid-ul-Fitr* (*estimated)", + "1999-01-19": "Eid-ul-Fitr* (*estimated)", + "1999-01-20": "Eid-ul-Fitr* (*estimated)", + "1999-02-05": "Kashmir Solidarity Day", + "1999-03-23": "Pakistan Day", + "1999-03-27": "Eid-ul-Adha* (*estimated)", + "1999-03-28": "Eid-ul-Adha* (*estimated)", + "1999-03-29": "Eid-ul-Adha* (*estimated)", + "1999-04-25": "Ashura* (*estimated)", + "1999-04-26": "Ashura* (*estimated)", + "1999-05-01": "Labour Day", + "1999-06-26": "Eid Milad-un-Nabi* (*estimated)", + "1999-08-14": "Independence Day", + "1999-11-09": "Iqbal Day", + "1999-12-25": "Quaid-e-Azam Day", + "2000-01-08": "Eid-ul-Fitr* (*estimated)", + "2000-01-09": "Eid-ul-Fitr* (*estimated)", + "2000-01-10": "Eid-ul-Fitr* (*estimated)", + "2000-02-05": "Kashmir Solidarity Day", + "2000-03-16": "Eid-ul-Adha* (*estimated)", + "2000-03-17": "Eid-ul-Adha* (*estimated)", + "2000-03-18": "Eid-ul-Adha* (*estimated)", + "2000-03-23": "Pakistan Day", + "2000-04-14": "Ashura* (*estimated)", + "2000-04-15": "Ashura* (*estimated)", + "2000-05-01": "Labour Day", + "2000-06-14": "Eid Milad-un-Nabi* (*estimated)", + "2000-08-14": "Independence Day", + "2000-11-09": "Iqbal Day", + "2000-12-25": "Quaid-e-Azam Day", + "2000-12-27": "Eid-ul-Fitr* (*estimated)", + "2000-12-28": "Eid-ul-Fitr* (*estimated)", + "2000-12-29": "Eid-ul-Fitr* (*estimated)", + "2001-02-05": "Kashmir Solidarity Day", + "2001-03-05": "Eid-ul-Adha* (*estimated)", + "2001-03-06": "Eid-ul-Adha* (*estimated)", + "2001-03-07": "Eid-ul-Adha* (*estimated)", + "2001-03-23": "Pakistan Day", + "2001-04-03": "Ashura* (*estimated)", + "2001-04-04": "Ashura* (*estimated)", + "2001-05-01": "Labour Day", + "2001-06-04": "Eid Milad-un-Nabi* (*estimated)", + "2001-08-14": "Independence Day", + "2001-11-09": "Iqbal Day", + "2001-12-16": "Eid-ul-Fitr* (*estimated)", + "2001-12-17": "Eid-ul-Fitr* (*estimated)", + "2001-12-18": "Eid-ul-Fitr* (*estimated)", + "2001-12-25": "Quaid-e-Azam Day", + "2002-02-05": "Kashmir Solidarity Day", + "2002-02-22": "Eid-ul-Adha* (*estimated)", + "2002-02-23": "Eid-ul-Adha* (*estimated)", + "2002-02-24": "Eid-ul-Adha* (*estimated)", + "2002-03-23": "Ashura* (*estimated); Pakistan Day", + "2002-03-24": "Ashura* (*estimated)", + "2002-05-01": "Labour Day", + "2002-05-24": "Eid Milad-un-Nabi* (*estimated)", + "2002-08-14": "Independence Day", + "2002-11-09": "Iqbal Day", + "2002-12-05": "Eid-ul-Fitr* (*estimated)", + "2002-12-06": "Eid-ul-Fitr* (*estimated)", + "2002-12-07": "Eid-ul-Fitr* (*estimated)", + "2002-12-25": "Quaid-e-Azam Day", + "2003-02-05": "Kashmir Solidarity Day", + "2003-02-11": "Eid-ul-Adha* (*estimated)", + "2003-02-12": "Eid-ul-Adha* (*estimated)", + "2003-02-13": "Eid-ul-Adha* (*estimated)", + "2003-03-12": "Ashura* (*estimated)", + "2003-03-13": "Ashura* (*estimated)", + "2003-03-23": "Pakistan Day", + "2003-05-01": "Labour Day", + "2003-05-13": "Eid Milad-un-Nabi* (*estimated)", + "2003-08-14": "Independence Day", + "2003-11-09": "Iqbal Day", + "2003-11-25": "Eid-ul-Fitr* (*estimated)", + "2003-11-26": "Eid-ul-Fitr* (*estimated)", + "2003-11-27": "Eid-ul-Fitr* (*estimated)", + "2003-12-25": "Quaid-e-Azam Day", + "2004-02-01": "Eid-ul-Adha* (*estimated)", + "2004-02-02": "Eid-ul-Adha* (*estimated)", + "2004-02-03": "Eid-ul-Adha* (*estimated)", + "2004-02-05": "Kashmir Solidarity Day", + "2004-02-29": "Ashura* (*estimated)", + "2004-03-01": "Ashura* (*estimated)", + "2004-03-23": "Pakistan Day", + "2004-05-01": "Eid Milad-un-Nabi* (*estimated); Labour Day", + "2004-08-14": "Independence Day", + "2004-11-09": "Iqbal Day", + "2004-11-14": "Eid-ul-Fitr* (*estimated)", + "2004-11-15": "Eid-ul-Fitr* (*estimated)", + "2004-11-16": "Eid-ul-Fitr* (*estimated)", + "2004-12-25": "Quaid-e-Azam Day", + "2005-01-21": "Eid-ul-Adha", + "2005-01-22": "Eid-ul-Adha", + "2005-01-23": "Eid-ul-Adha", + "2005-02-05": "Kashmir Solidarity Day", + "2005-02-17": "Ashura", + "2005-02-18": "Ashura", + "2005-03-23": "Pakistan Day", + "2005-04-22": "Eid Milad-un-Nabi", + "2005-05-01": "Labour Day", + "2005-08-14": "Independence Day", + "2005-11-04": "Eid-ul-Fitr", + "2005-11-05": "Eid-ul-Fitr", + "2005-11-06": "Eid-ul-Fitr", + "2005-11-09": "Iqbal Day", + "2005-12-25": "Quaid-e-Azam Day", + "2006-01-10": "Eid-ul-Adha", + "2006-01-11": "Eid-ul-Adha", + "2006-01-12": "Eid-ul-Adha", + "2006-02-05": "Kashmir Solidarity Day", + "2006-02-07": "Ashura", + "2006-02-08": "Ashura", + "2006-03-23": "Pakistan Day", + "2006-04-11": "Eid Milad-un-Nabi", + "2006-05-01": "Labour Day", + "2006-08-14": "Independence Day", + "2006-10-24": "Eid-ul-Fitr", + "2006-10-25": "Eid-ul-Fitr", + "2006-10-26": "Eid-ul-Fitr", + "2006-11-09": "Iqbal Day", + "2006-12-25": "Quaid-e-Azam Day", + "2006-12-31": "Eid-ul-Adha", + "2007-01-01": "Eid-ul-Adha", + "2007-01-02": "Eid-ul-Adha", + "2007-01-27": "Ashura", + "2007-01-28": "Ashura", + "2007-02-05": "Kashmir Solidarity Day", + "2007-03-23": "Pakistan Day", + "2007-03-31": "Eid Milad-un-Nabi", + "2007-05-01": "Labour Day", + "2007-08-14": "Independence Day", + "2007-10-13": "Eid-ul-Fitr", + "2007-10-14": "Eid-ul-Fitr", + "2007-10-15": "Eid-ul-Fitr", + "2007-11-09": "Iqbal Day", + "2007-12-20": "Eid-ul-Adha", + "2007-12-21": "Eid-ul-Adha", + "2007-12-22": "Eid-ul-Adha", + "2007-12-25": "Quaid-e-Azam Day", + "2008-01-17": "Ashura", + "2008-01-18": "Ashura", + "2008-02-05": "Kashmir Solidarity Day", + "2008-03-21": "Eid Milad-un-Nabi", + "2008-03-23": "Pakistan Day", + "2008-05-01": "Labour Day", + "2008-08-14": "Independence Day", + "2008-10-02": "Eid-ul-Fitr", + "2008-10-03": "Eid-ul-Fitr", + "2008-10-04": "Eid-ul-Fitr", + "2008-11-09": "Iqbal Day", + "2008-12-09": "Eid-ul-Adha", + "2008-12-10": "Eid-ul-Adha", + "2008-12-11": "Eid-ul-Adha", + "2008-12-25": "Quaid-e-Azam Day", + "2009-01-05": "Ashura", + "2009-01-06": "Ashura", + "2009-02-05": "Kashmir Solidarity Day", + "2009-03-09": "Eid Milad-un-Nabi", + "2009-03-23": "Pakistan Day", + "2009-05-01": "Labour Day", + "2009-08-14": "Independence Day", + "2009-09-21": "Eid-ul-Fitr", + "2009-09-22": "Eid-ul-Fitr", + "2009-09-23": "Eid-ul-Fitr", + "2009-11-09": "Iqbal Day", + "2009-11-28": "Eid-ul-Adha", + "2009-11-29": "Eid-ul-Adha", + "2009-11-30": "Eid-ul-Adha", + "2009-12-25": "Ashura; Quaid-e-Azam Day", + "2009-12-26": "Ashura", + "2010-02-05": "Kashmir Solidarity Day", + "2010-03-01": "Eid Milad-un-Nabi", + "2010-03-23": "Pakistan Day", + "2010-05-01": "Labour Day", + "2010-08-14": "Independence Day", + "2010-09-10": "Eid-ul-Fitr", + "2010-09-11": "Eid-ul-Fitr", + "2010-09-12": "Eid-ul-Fitr", + "2010-11-09": "Iqbal Day", + "2010-11-17": "Eid-ul-Adha", + "2010-11-18": "Eid-ul-Adha", + "2010-11-19": "Eid-ul-Adha", + "2010-12-15": "Ashura", + "2010-12-16": "Ashura", + "2010-12-25": "Quaid-e-Azam Day", + "2011-02-05": "Kashmir Solidarity Day", + "2011-02-17": "Eid Milad-un-Nabi", + "2011-03-23": "Pakistan Day", + "2011-05-01": "Labour Day", + "2011-08-14": "Independence Day", + "2011-08-31": "Eid-ul-Fitr", + "2011-09-01": "Eid-ul-Fitr", + "2011-09-02": "Eid-ul-Fitr", + "2011-11-07": "Eid-ul-Adha", + "2011-11-08": "Eid-ul-Adha", + "2011-11-09": "Eid-ul-Adha; Iqbal Day", + "2011-12-04": "Ashura", + "2011-12-05": "Ashura", + "2011-12-25": "Quaid-e-Azam Day", + "2012-02-05": "Eid Milad-un-Nabi; Kashmir Solidarity Day", + "2012-03-23": "Pakistan Day", + "2012-05-01": "Labour Day", + "2012-08-14": "Independence Day", + "2012-08-19": "Eid-ul-Fitr", + "2012-08-20": "Eid-ul-Fitr", + "2012-08-21": "Eid-ul-Fitr", + "2012-10-26": "Eid-ul-Adha", + "2012-10-27": "Eid-ul-Adha", + "2012-10-28": "Eid-ul-Adha", + "2012-11-09": "Iqbal Day", + "2012-11-22": "Ashura", + "2012-11-23": "Ashura", + "2012-12-25": "Quaid-e-Azam Day", + "2013-01-24": "Eid Milad-un-Nabi", + "2013-02-05": "Kashmir Solidarity Day", + "2013-03-23": "Pakistan Day", + "2013-05-01": "Labour Day", + "2013-08-08": "Eid-ul-Fitr", + "2013-08-09": "Eid-ul-Fitr", + "2013-08-10": "Eid-ul-Fitr", + "2013-08-14": "Independence Day", + "2013-10-15": "Eid-ul-Adha", + "2013-10-16": "Eid-ul-Adha", + "2013-10-17": "Eid-ul-Adha", + "2013-11-09": "Iqbal Day", + "2013-11-12": "Ashura", + "2013-11-13": "Ashura", + "2013-12-25": "Quaid-e-Azam Day", + "2014-01-14": "Eid Milad-un-Nabi", + "2014-02-05": "Kashmir Solidarity Day", + "2014-03-23": "Pakistan Day", + "2014-05-01": "Labour Day", + "2014-07-29": "Eid-ul-Fitr", + "2014-07-30": "Eid-ul-Fitr", + "2014-07-31": "Eid-ul-Fitr", + "2014-08-14": "Independence Day", + "2014-10-06": "Eid-ul-Adha", + "2014-10-07": "Eid-ul-Adha", + "2014-10-08": "Eid-ul-Adha", + "2014-11-02": "Ashura", + "2014-11-03": "Ashura", + "2014-11-09": "Iqbal Day", + "2014-12-25": "Quaid-e-Azam Day", + "2015-01-04": "Eid Milad-un-Nabi", + "2015-02-05": "Kashmir Solidarity Day", + "2015-03-23": "Pakistan Day", + "2015-05-01": "Labour Day", + "2015-07-17": "Eid-ul-Fitr", + "2015-07-18": "Eid-ul-Fitr", + "2015-07-19": "Eid-ul-Fitr", + "2015-08-14": "Independence Day", + "2015-09-24": "Eid-ul-Adha", + "2015-09-25": "Eid-ul-Adha", + "2015-09-26": "Eid-ul-Adha", + "2015-10-22": "Ashura", + "2015-10-23": "Ashura", + "2015-12-25": "Quaid-e-Azam Day", + "2016-02-05": "Kashmir Solidarity Day", + "2016-03-23": "Pakistan Day", + "2016-05-01": "Labour Day", + "2016-07-06": "Eid-ul-Fitr", + "2016-07-07": "Eid-ul-Fitr", + "2016-07-08": "Eid-ul-Fitr", + "2016-08-14": "Independence Day", + "2016-09-12": "Eid-ul-Adha", + "2016-09-13": "Eid-ul-Adha", + "2016-09-14": "Eid-ul-Adha", + "2016-10-10": "Ashura", + "2016-10-11": "Ashura", + "2016-12-12": "Eid Milad-un-Nabi", + "2016-12-25": "Quaid-e-Azam Day", + "2017-02-05": "Kashmir Solidarity Day", + "2017-03-23": "Pakistan Day", + "2017-05-01": "Labour Day", + "2017-06-26": "Eid-ul-Fitr", + "2017-06-27": "Eid-ul-Fitr", + "2017-06-28": "Eid-ul-Fitr", + "2017-08-14": "Independence Day", + "2017-09-02": "Eid-ul-Adha", + "2017-09-03": "Eid-ul-Adha", + "2017-09-04": "Eid-ul-Adha", + "2017-09-29": "Ashura", + "2017-09-30": "Ashura", + "2017-12-01": "Eid Milad-un-Nabi", + "2017-12-25": "Quaid-e-Azam Day", + "2018-02-05": "Kashmir Solidarity Day", + "2018-03-23": "Pakistan Day", + "2018-05-01": "Labour Day", + "2018-06-16": "Eid-ul-Fitr", + "2018-06-17": "Eid-ul-Fitr", + "2018-06-18": "Eid-ul-Fitr", + "2018-08-14": "Independence Day", + "2018-08-22": "Eid-ul-Adha", + "2018-08-23": "Eid-ul-Adha", + "2018-08-24": "Eid-ul-Adha", + "2018-09-20": "Ashura", + "2018-09-21": "Ashura", + "2018-11-21": "Eid Milad-un-Nabi", + "2018-12-25": "Quaid-e-Azam Day", + "2019-02-05": "Kashmir Solidarity Day", + "2019-03-23": "Pakistan Day", + "2019-05-01": "Labour Day", + "2019-06-05": "Eid-ul-Fitr", + "2019-06-06": "Eid-ul-Fitr", + "2019-06-07": "Eid-ul-Fitr", + "2019-08-12": "Eid-ul-Adha", + "2019-08-13": "Eid-ul-Adha", + "2019-08-14": "Eid-ul-Adha; Independence Day", + "2019-09-08": "Ashura", + "2019-09-09": "Ashura", + "2019-11-10": "Eid Milad-un-Nabi", + "2019-12-25": "Quaid-e-Azam Day", + "2020-02-05": "Kashmir Solidarity Day", + "2020-03-23": "Pakistan Day", + "2020-05-01": "Labour Day", + "2020-05-24": "Eid-ul-Fitr", + "2020-05-25": "Eid-ul-Fitr", + "2020-05-26": "Eid-ul-Fitr", + "2020-07-31": "Eid-ul-Adha", + "2020-08-01": "Eid-ul-Adha", + "2020-08-02": "Eid-ul-Adha", + "2020-08-14": "Independence Day", + "2020-08-28": "Ashura", + "2020-08-29": "Ashura", + "2020-10-30": "Eid Milad-un-Nabi", + "2020-12-25": "Quaid-e-Azam Day", + "2021-02-05": "Kashmir Solidarity Day", + "2021-03-23": "Pakistan Day", + "2021-05-01": "Labour Day", + "2021-05-13": "Eid-ul-Fitr", + "2021-05-14": "Eid-ul-Fitr", + "2021-05-15": "Eid-ul-Fitr", + "2021-07-21": "Eid-ul-Adha", + "2021-07-22": "Eid-ul-Adha", + "2021-07-23": "Eid-ul-Adha", + "2021-08-14": "Independence Day", + "2021-08-17": "Ashura", + "2021-08-18": "Ashura", + "2021-10-19": "Eid Milad-un-Nabi", + "2021-12-25": "Quaid-e-Azam Day", + "2022-02-05": "Kashmir Solidarity Day", + "2022-03-23": "Pakistan Day", + "2022-05-01": "Labour Day", + "2022-05-03": "Eid-ul-Fitr", + "2022-05-04": "Eid-ul-Fitr", + "2022-05-05": "Eid-ul-Fitr", + "2022-07-10": "Eid-ul-Adha", + "2022-07-11": "Eid-ul-Adha", + "2022-07-12": "Eid-ul-Adha", + "2022-08-08": "Ashura", + "2022-08-09": "Ashura", + "2022-08-14": "Independence Day", + "2022-10-09": "Eid Milad-un-Nabi", + "2022-11-09": "Iqbal Day", + "2022-12-25": "Quaid-e-Azam Day", + "2023-02-05": "Kashmir Solidarity Day", + "2023-03-23": "Pakistan Day", + "2023-04-22": "Eid-ul-Fitr", + "2023-04-23": "Eid-ul-Fitr", + "2023-04-24": "Eid-ul-Fitr", + "2023-05-01": "Labour Day", + "2023-06-29": "Eid-ul-Adha", + "2023-06-30": "Eid-ul-Adha", + "2023-07-01": "Eid-ul-Adha", + "2023-07-27": "Ashura* (*estimated)", + "2023-07-28": "Ashura* (*estimated)", + "2023-08-14": "Independence Day", + "2023-09-27": "Eid Milad-un-Nabi* (*estimated)", + "2023-11-09": "Iqbal Day", + "2023-12-25": "Quaid-e-Azam Day", + "2024-02-05": "Kashmir Solidarity Day", + "2024-03-23": "Pakistan Day", + "2024-04-10": "Eid-ul-Fitr* (*estimated)", + "2024-04-11": "Eid-ul-Fitr* (*estimated)", + "2024-04-12": "Eid-ul-Fitr* (*estimated)", + "2024-05-01": "Labour Day", + "2024-06-16": "Eid-ul-Adha* (*estimated)", + "2024-06-17": "Eid-ul-Adha* (*estimated)", + "2024-06-18": "Eid-ul-Adha* (*estimated)", + "2024-07-15": "Ashura* (*estimated)", + "2024-07-16": "Ashura* (*estimated)", + "2024-08-14": "Independence Day", + "2024-09-15": "Eid Milad-un-Nabi* (*estimated)", + "2024-11-09": "Iqbal Day", + "2024-12-25": "Quaid-e-Azam Day", + "2025-02-05": "Kashmir Solidarity Day", + "2025-03-23": "Pakistan Day", + "2025-03-30": "Eid-ul-Fitr* (*estimated)", + "2025-03-31": "Eid-ul-Fitr* (*estimated)", + "2025-04-01": "Eid-ul-Fitr* (*estimated)", + "2025-05-01": "Labour Day", + "2025-06-06": "Eid-ul-Adha* (*estimated)", + "2025-06-07": "Eid-ul-Adha* (*estimated)", + "2025-06-08": "Eid-ul-Adha* (*estimated)", + "2025-07-04": "Ashura* (*estimated)", + "2025-07-05": "Ashura* (*estimated)", + "2025-08-14": "Independence Day", + "2025-09-04": "Eid Milad-un-Nabi* (*estimated)", + "2025-11-09": "Iqbal Day", + "2025-12-25": "Quaid-e-Azam Day", + "2026-02-05": "Kashmir Solidarity Day", + "2026-03-20": "Eid-ul-Fitr* (*estimated)", + "2026-03-21": "Eid-ul-Fitr* (*estimated)", + "2026-03-22": "Eid-ul-Fitr* (*estimated)", + "2026-03-23": "Pakistan Day", + "2026-05-01": "Labour Day", + "2026-05-27": "Eid-ul-Adha* (*estimated)", + "2026-05-28": "Eid-ul-Adha* (*estimated)", + "2026-05-29": "Eid-ul-Adha* (*estimated)", + "2026-06-24": "Ashura* (*estimated)", + "2026-06-25": "Ashura* (*estimated)", + "2026-08-14": "Independence Day", + "2026-08-25": "Eid Milad-un-Nabi* (*estimated)", + "2026-11-09": "Iqbal Day", + "2026-12-25": "Quaid-e-Azam Day", + "2027-02-05": "Kashmir Solidarity Day", + "2027-03-09": "Eid-ul-Fitr* (*estimated)", + "2027-03-10": "Eid-ul-Fitr* (*estimated)", + "2027-03-11": "Eid-ul-Fitr* (*estimated)", + "2027-03-23": "Pakistan Day", + "2027-05-01": "Labour Day", + "2027-05-16": "Eid-ul-Adha* (*estimated)", + "2027-05-17": "Eid-ul-Adha* (*estimated)", + "2027-05-18": "Eid-ul-Adha* (*estimated)", + "2027-06-14": "Ashura* (*estimated)", + "2027-06-15": "Ashura* (*estimated)", + "2027-08-14": "Eid Milad-un-Nabi* (*estimated); Independence Day", + "2027-11-09": "Iqbal Day", + "2027-12-25": "Quaid-e-Azam Day", + "2028-02-05": "Kashmir Solidarity Day", + "2028-02-26": "Eid-ul-Fitr* (*estimated)", + "2028-02-27": "Eid-ul-Fitr* (*estimated)", + "2028-02-28": "Eid-ul-Fitr* (*estimated)", + "2028-03-23": "Pakistan Day", + "2028-05-01": "Labour Day", + "2028-05-05": "Eid-ul-Adha* (*estimated)", + "2028-05-06": "Eid-ul-Adha* (*estimated)", + "2028-05-07": "Eid-ul-Adha* (*estimated)", + "2028-06-02": "Ashura* (*estimated)", + "2028-06-03": "Ashura* (*estimated)", + "2028-08-03": "Eid Milad-un-Nabi* (*estimated)", + "2028-08-14": "Independence Day", + "2028-11-09": "Iqbal Day", + "2028-12-25": "Quaid-e-Azam Day", + "2029-02-05": "Kashmir Solidarity Day", + "2029-02-14": "Eid-ul-Fitr* (*estimated)", + "2029-02-15": "Eid-ul-Fitr* (*estimated)", + "2029-02-16": "Eid-ul-Fitr* (*estimated)", + "2029-03-23": "Pakistan Day", + "2029-04-24": "Eid-ul-Adha* (*estimated)", + "2029-04-25": "Eid-ul-Adha* (*estimated)", + "2029-04-26": "Eid-ul-Adha* (*estimated)", + "2029-05-01": "Labour Day", + "2029-05-22": "Ashura* (*estimated)", + "2029-05-23": "Ashura* (*estimated)", + "2029-07-24": "Eid Milad-un-Nabi* (*estimated)", + "2029-08-14": "Independence Day", + "2029-11-09": "Iqbal Day", + "2029-12-25": "Quaid-e-Azam Day", + "2030-02-04": "Eid-ul-Fitr* (*estimated)", + "2030-02-05": "Eid-ul-Fitr* (*estimated); Kashmir Solidarity Day", + "2030-02-06": "Eid-ul-Fitr* (*estimated)", + "2030-03-23": "Pakistan Day", + "2030-04-13": "Eid-ul-Adha* (*estimated)", + "2030-04-14": "Eid-ul-Adha* (*estimated)", + "2030-04-15": "Eid-ul-Adha* (*estimated)", + "2030-05-01": "Labour Day", + "2030-05-11": "Ashura* (*estimated)", + "2030-05-12": "Ashura* (*estimated)", + "2030-07-13": "Eid Milad-un-Nabi* (*estimated)", + "2030-08-14": "Independence Day", + "2030-11-09": "Iqbal Day", + "2030-12-25": "Quaid-e-Azam Day", + "2031-01-24": "Eid-ul-Fitr* (*estimated)", + "2031-01-25": "Eid-ul-Fitr* (*estimated)", + "2031-01-26": "Eid-ul-Fitr* (*estimated)", + "2031-02-05": "Kashmir Solidarity Day", + "2031-03-23": "Pakistan Day", + "2031-04-02": "Eid-ul-Adha* (*estimated)", + "2031-04-03": "Eid-ul-Adha* (*estimated)", + "2031-04-04": "Eid-ul-Adha* (*estimated)", + "2031-05-01": "Ashura* (*estimated); Labour Day", + "2031-05-02": "Ashura* (*estimated)", + "2031-07-02": "Eid Milad-un-Nabi* (*estimated)", + "2031-08-14": "Independence Day", + "2031-11-09": "Iqbal Day", + "2031-12-25": "Quaid-e-Azam Day", + "2032-01-14": "Eid-ul-Fitr* (*estimated)", + "2032-01-15": "Eid-ul-Fitr* (*estimated)", + "2032-01-16": "Eid-ul-Fitr* (*estimated)", + "2032-02-05": "Kashmir Solidarity Day", + "2032-03-22": "Eid-ul-Adha* (*estimated)", + "2032-03-23": "Eid-ul-Adha* (*estimated); Pakistan Day", + "2032-03-24": "Eid-ul-Adha* (*estimated)", + "2032-04-19": "Ashura* (*estimated)", + "2032-04-20": "Ashura* (*estimated)", + "2032-05-01": "Labour Day", + "2032-06-20": "Eid Milad-un-Nabi* (*estimated)", + "2032-08-14": "Independence Day", + "2032-11-09": "Iqbal Day", + "2032-12-25": "Quaid-e-Azam Day", + "2033-01-02": "Eid-ul-Fitr* (*estimated)", + "2033-01-03": "Eid-ul-Fitr* (*estimated)", + "2033-01-04": "Eid-ul-Fitr* (*estimated)", + "2033-02-05": "Kashmir Solidarity Day", + "2033-03-11": "Eid-ul-Adha* (*estimated)", + "2033-03-12": "Eid-ul-Adha* (*estimated)", + "2033-03-13": "Eid-ul-Adha* (*estimated)", + "2033-03-23": "Pakistan Day", + "2033-04-09": "Ashura* (*estimated)", + "2033-04-10": "Ashura* (*estimated)", + "2033-05-01": "Labour Day", + "2033-06-09": "Eid Milad-un-Nabi* (*estimated)", + "2033-08-14": "Independence Day", + "2033-11-09": "Iqbal Day", + "2033-12-23": "Eid-ul-Fitr* (*estimated)", + "2033-12-24": "Eid-ul-Fitr* (*estimated)", + "2033-12-25": "Eid-ul-Fitr* (*estimated); Quaid-e-Azam Day", + "2034-02-05": "Kashmir Solidarity Day", + "2034-03-01": "Eid-ul-Adha* (*estimated)", + "2034-03-02": "Eid-ul-Adha* (*estimated)", + "2034-03-03": "Eid-ul-Adha* (*estimated)", + "2034-03-23": "Pakistan Day", + "2034-03-29": "Ashura* (*estimated)", + "2034-03-30": "Ashura* (*estimated)", + "2034-05-01": "Labour Day", + "2034-05-30": "Eid Milad-un-Nabi* (*estimated)", + "2034-08-14": "Independence Day", + "2034-11-09": "Iqbal Day", + "2034-12-12": "Eid-ul-Fitr* (*estimated)", + "2034-12-13": "Eid-ul-Fitr* (*estimated)", + "2034-12-14": "Eid-ul-Fitr* (*estimated)", + "2034-12-25": "Quaid-e-Azam Day", + "2035-02-05": "Kashmir Solidarity Day", + "2035-02-18": "Eid-ul-Adha* (*estimated)", + "2035-02-19": "Eid-ul-Adha* (*estimated)", + "2035-02-20": "Eid-ul-Adha* (*estimated)", + "2035-03-19": "Ashura* (*estimated)", + "2035-03-20": "Ashura* (*estimated)", + "2035-03-23": "Pakistan Day", + "2035-05-01": "Labour Day", + "2035-05-20": "Eid Milad-un-Nabi* (*estimated)", + "2035-08-14": "Independence Day", + "2035-11-09": "Iqbal Day", + "2035-12-01": "Eid-ul-Fitr* (*estimated)", + "2035-12-02": "Eid-ul-Fitr* (*estimated)", + "2035-12-03": "Eid-ul-Fitr* (*estimated)", + "2035-12-25": "Quaid-e-Azam Day", + "2036-02-05": "Kashmir Solidarity Day", + "2036-02-07": "Eid-ul-Adha* (*estimated)", + "2036-02-08": "Eid-ul-Adha* (*estimated)", + "2036-02-09": "Eid-ul-Adha* (*estimated)", + "2036-03-07": "Ashura* (*estimated)", + "2036-03-08": "Ashura* (*estimated)", + "2036-03-23": "Pakistan Day", + "2036-05-01": "Labour Day", + "2036-05-08": "Eid Milad-un-Nabi* (*estimated)", + "2036-08-14": "Independence Day", + "2036-11-09": "Iqbal Day", + "2036-11-19": "Eid-ul-Fitr* (*estimated)", + "2036-11-20": "Eid-ul-Fitr* (*estimated)", + "2036-11-21": "Eid-ul-Fitr* (*estimated)", + "2036-12-25": "Quaid-e-Azam Day", + "2037-01-26": "Eid-ul-Adha* (*estimated)", + "2037-01-27": "Eid-ul-Adha* (*estimated)", + "2037-01-28": "Eid-ul-Adha* (*estimated)", + "2037-02-05": "Kashmir Solidarity Day", + "2037-02-24": "Ashura* (*estimated)", + "2037-02-25": "Ashura* (*estimated)", + "2037-03-23": "Pakistan Day", + "2037-04-28": "Eid Milad-un-Nabi* (*estimated)", + "2037-05-01": "Labour Day", + "2037-08-14": "Independence Day", + "2037-11-08": "Eid-ul-Fitr* (*estimated)", + "2037-11-09": "Eid-ul-Fitr* (*estimated); Iqbal Day", + "2037-11-10": "Eid-ul-Fitr* (*estimated)", + "2037-12-25": "Quaid-e-Azam Day", + "2038-01-16": "Eid-ul-Adha* (*estimated)", + "2038-01-17": "Eid-ul-Adha* (*estimated)", + "2038-01-18": "Eid-ul-Adha* (*estimated)", + "2038-02-05": "Kashmir Solidarity Day", + "2038-02-13": "Ashura* (*estimated)", + "2038-02-14": "Ashura* (*estimated)", + "2038-03-23": "Pakistan Day", + "2038-04-17": "Eid Milad-un-Nabi* (*estimated)", + "2038-05-01": "Labour Day", + "2038-08-14": "Independence Day", + "2038-10-29": "Eid-ul-Fitr* (*estimated)", + "2038-10-30": "Eid-ul-Fitr* (*estimated)", + "2038-10-31": "Eid-ul-Fitr* (*estimated)", + "2038-11-09": "Iqbal Day", + "2038-12-25": "Quaid-e-Azam Day", + "2039-01-05": "Eid-ul-Adha* (*estimated)", + "2039-01-06": "Eid-ul-Adha* (*estimated)", + "2039-01-07": "Eid-ul-Adha* (*estimated)", + "2039-02-03": "Ashura* (*estimated)", + "2039-02-04": "Ashura* (*estimated)", + "2039-02-05": "Kashmir Solidarity Day", + "2039-03-23": "Pakistan Day", + "2039-04-06": "Eid Milad-un-Nabi* (*estimated)", + "2039-05-01": "Labour Day", + "2039-08-14": "Independence Day", + "2039-10-19": "Eid-ul-Fitr* (*estimated)", + "2039-10-20": "Eid-ul-Fitr* (*estimated)", + "2039-10-21": "Eid-ul-Fitr* (*estimated)", + "2039-11-09": "Iqbal Day", + "2039-12-25": "Quaid-e-Azam Day", + "2039-12-26": "Eid-ul-Adha* (*estimated)", + "2039-12-27": "Eid-ul-Adha* (*estimated)", + "2039-12-28": "Eid-ul-Adha* (*estimated)", + "2040-01-23": "Ashura* (*estimated)", + "2040-01-24": "Ashura* (*estimated)", + "2040-02-05": "Kashmir Solidarity Day", + "2040-03-23": "Pakistan Day", + "2040-03-25": "Eid Milad-un-Nabi* (*estimated)", + "2040-05-01": "Labour Day", + "2040-08-14": "Independence Day", + "2040-10-07": "Eid-ul-Fitr* (*estimated)", + "2040-10-08": "Eid-ul-Fitr* (*estimated)", + "2040-10-09": "Eid-ul-Fitr* (*estimated)", + "2040-11-09": "Iqbal Day", + "2040-12-14": "Eid-ul-Adha* (*estimated)", + "2040-12-15": "Eid-ul-Adha* (*estimated)", + "2040-12-16": "Eid-ul-Adha* (*estimated)", + "2040-12-25": "Quaid-e-Azam Day", + "2041-01-12": "Ashura* (*estimated)", + "2041-01-13": "Ashura* (*estimated)", + "2041-02-05": "Kashmir Solidarity Day", + "2041-03-15": "Eid Milad-un-Nabi* (*estimated)", + "2041-03-23": "Pakistan Day", + "2041-05-01": "Labour Day", + "2041-08-14": "Independence Day", + "2041-09-26": "Eid-ul-Fitr* (*estimated)", + "2041-09-27": "Eid-ul-Fitr* (*estimated)", + "2041-09-28": "Eid-ul-Fitr* (*estimated)", + "2041-11-09": "Iqbal Day", + "2041-12-04": "Eid-ul-Adha* (*estimated)", + "2041-12-05": "Eid-ul-Adha* (*estimated)", + "2041-12-06": "Eid-ul-Adha* (*estimated)", + "2041-12-25": "Quaid-e-Azam Day", + "2042-01-01": "Ashura* (*estimated)", + "2042-01-02": "Ashura* (*estimated)", + "2042-02-05": "Kashmir Solidarity Day", + "2042-03-04": "Eid Milad-un-Nabi* (*estimated)", + "2042-03-23": "Pakistan Day", + "2042-05-01": "Labour Day", + "2042-08-14": "Independence Day", + "2042-09-15": "Eid-ul-Fitr* (*estimated)", + "2042-09-16": "Eid-ul-Fitr* (*estimated)", + "2042-09-17": "Eid-ul-Fitr* (*estimated)", + "2042-11-09": "Iqbal Day", + "2042-11-23": "Eid-ul-Adha* (*estimated)", + "2042-11-24": "Eid-ul-Adha* (*estimated)", + "2042-11-25": "Eid-ul-Adha* (*estimated)", + "2042-12-22": "Ashura* (*estimated)", + "2042-12-23": "Ashura* (*estimated)", + "2042-12-25": "Quaid-e-Azam Day", + "2043-02-05": "Kashmir Solidarity Day", + "2043-02-22": "Eid Milad-un-Nabi* (*estimated)", + "2043-03-23": "Pakistan Day", + "2043-05-01": "Labour Day", + "2043-08-14": "Independence Day", + "2043-09-04": "Eid-ul-Fitr* (*estimated)", + "2043-09-05": "Eid-ul-Fitr* (*estimated)", + "2043-09-06": "Eid-ul-Fitr* (*estimated)", + "2043-11-09": "Iqbal Day", + "2043-11-12": "Eid-ul-Adha* (*estimated)", + "2043-11-13": "Eid-ul-Adha* (*estimated)", + "2043-11-14": "Eid-ul-Adha* (*estimated)", + "2043-12-11": "Ashura* (*estimated)", + "2043-12-12": "Ashura* (*estimated)", + "2043-12-25": "Quaid-e-Azam Day", + "2044-02-05": "Kashmir Solidarity Day", + "2044-02-11": "Eid Milad-un-Nabi* (*estimated)", + "2044-03-23": "Pakistan Day", + "2044-05-01": "Labour Day", + "2044-08-14": "Independence Day", + "2044-08-24": "Eid-ul-Fitr* (*estimated)", + "2044-08-25": "Eid-ul-Fitr* (*estimated)", + "2044-08-26": "Eid-ul-Fitr* (*estimated)", + "2044-10-31": "Eid-ul-Adha* (*estimated)", + "2044-11-01": "Eid-ul-Adha* (*estimated)", + "2044-11-02": "Eid-ul-Adha* (*estimated)", + "2044-11-09": "Iqbal Day", + "2044-11-29": "Ashura* (*estimated)", + "2044-11-30": "Ashura* (*estimated)", + "2044-12-25": "Quaid-e-Azam Day", + "2045-01-30": "Eid Milad-un-Nabi* (*estimated)", + "2045-02-05": "Kashmir Solidarity Day", + "2045-03-23": "Pakistan Day", + "2045-05-01": "Labour Day", + "2045-08-14": "Eid-ul-Fitr* (*estimated); Independence Day", + "2045-08-15": "Eid-ul-Fitr* (*estimated)", + "2045-08-16": "Eid-ul-Fitr* (*estimated)", + "2045-10-21": "Eid-ul-Adha* (*estimated)", + "2045-10-22": "Eid-ul-Adha* (*estimated)", + "2045-10-23": "Eid-ul-Adha* (*estimated)", + "2045-11-09": "Iqbal Day", + "2045-11-18": "Ashura* (*estimated)", + "2045-11-19": "Ashura* (*estimated)", + "2045-12-25": "Quaid-e-Azam Day", + "2046-01-19": "Eid Milad-un-Nabi* (*estimated)", + "2046-02-05": "Kashmir Solidarity Day", + "2046-03-23": "Pakistan Day", + "2046-05-01": "Labour Day", + "2046-08-03": "Eid-ul-Fitr* (*estimated)", + "2046-08-04": "Eid-ul-Fitr* (*estimated)", + "2046-08-05": "Eid-ul-Fitr* (*estimated)", + "2046-08-14": "Independence Day", + "2046-10-10": "Eid-ul-Adha* (*estimated)", + "2046-10-11": "Eid-ul-Adha* (*estimated)", + "2046-10-12": "Eid-ul-Adha* (*estimated)", + "2046-11-08": "Ashura* (*estimated)", + "2046-11-09": "Ashura* (*estimated); Iqbal Day", + "2046-12-25": "Quaid-e-Azam Day", + "2047-01-08": "Eid Milad-un-Nabi* (*estimated)", + "2047-02-05": "Kashmir Solidarity Day", + "2047-03-23": "Pakistan Day", + "2047-05-01": "Labour Day", + "2047-07-24": "Eid-ul-Fitr* (*estimated)", + "2047-07-25": "Eid-ul-Fitr* (*estimated)", + "2047-07-26": "Eid-ul-Fitr* (*estimated)", + "2047-08-14": "Independence Day", + "2047-09-30": "Eid-ul-Adha* (*estimated)", + "2047-10-01": "Eid-ul-Adha* (*estimated)", + "2047-10-02": "Eid-ul-Adha* (*estimated)", + "2047-10-28": "Ashura* (*estimated)", + "2047-10-29": "Ashura* (*estimated)", + "2047-11-09": "Iqbal Day", + "2047-12-25": "Quaid-e-Azam Day", + "2047-12-29": "Eid Milad-un-Nabi* (*estimated)", + "2048-02-05": "Kashmir Solidarity Day", + "2048-03-23": "Pakistan Day", + "2048-05-01": "Labour Day", + "2048-07-12": "Eid-ul-Fitr* (*estimated)", + "2048-07-13": "Eid-ul-Fitr* (*estimated)", + "2048-07-14": "Eid-ul-Fitr* (*estimated)", + "2048-08-14": "Independence Day", + "2048-09-19": "Eid-ul-Adha* (*estimated)", + "2048-09-20": "Eid-ul-Adha* (*estimated)", + "2048-09-21": "Eid-ul-Adha* (*estimated)", + "2048-10-17": "Ashura* (*estimated)", + "2048-10-18": "Ashura* (*estimated)", + "2048-11-09": "Iqbal Day", + "2048-12-18": "Eid Milad-un-Nabi* (*estimated)", + "2048-12-25": "Quaid-e-Azam Day", + "2049-02-05": "Kashmir Solidarity Day", + "2049-03-23": "Pakistan Day", + "2049-05-01": "Labour Day", + "2049-07-01": "Eid-ul-Fitr* (*estimated)", + "2049-07-02": "Eid-ul-Fitr* (*estimated)", + "2049-07-03": "Eid-ul-Fitr* (*estimated)", + "2049-08-14": "Independence Day", + "2049-09-08": "Eid-ul-Adha* (*estimated)", + "2049-09-09": "Eid-ul-Adha* (*estimated)", + "2049-09-10": "Eid-ul-Adha* (*estimated)", + "2049-10-06": "Ashura* (*estimated)", + "2049-10-07": "Ashura* (*estimated)", + "2049-11-09": "Iqbal Day", + "2049-12-07": "Eid Milad-un-Nabi* (*estimated)", + "2049-12-25": "Quaid-e-Azam Day", + "2050-02-05": "Kashmir Solidarity Day", + "2050-03-23": "Pakistan Day", + "2050-05-01": "Labour Day", + "2050-06-20": "Eid-ul-Fitr* (*estimated)", + "2050-06-21": "Eid-ul-Fitr* (*estimated)", + "2050-06-22": "Eid-ul-Fitr* (*estimated)", + "2050-08-14": "Independence Day", + "2050-08-28": "Eid-ul-Adha* (*estimated)", + "2050-08-29": "Eid-ul-Adha* (*estimated)", + "2050-08-30": "Eid-ul-Adha* (*estimated)", + "2050-09-25": "Ashura* (*estimated)", + "2050-09-26": "Ashura* (*estimated)", + "2050-11-09": "Iqbal Day", + "2050-11-26": "Eid Milad-un-Nabi* (*estimated)", + "2050-12-25": "Quaid-e-Azam Day" +} diff --git a/snapshots/countries/PL.json b/snapshots/countries/PL.json new file mode 100644 index 000000000..40fcaa474 --- /dev/null +++ b/snapshots/countries/PL.json @@ -0,0 +1,1206 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-06": "Epiphany", + "1950-02-02": "Purification of the Blessed Virgin Mary", + "1950-04-09": "Easter Sunday", + "1950-04-10": "Easter Monday", + "1950-05-01": "National Day", + "1950-05-03": "National Day of the Third of May", + "1950-05-09": "National Victory and Freedom Day", + "1950-05-19": "Ascension Day", + "1950-05-28": "Pentecost", + "1950-05-29": "Pentecost (Day 2)", + "1950-06-08": "Corpus Christi", + "1950-06-29": "Saints Peter and Paul Day", + "1950-07-22": "National Day of Rebirth of Poland", + "1950-08-15": "Assumption of the Virgin Mary", + "1950-11-01": "All Saints' Day", + "1950-12-08": "Immaculate Conception of the Blessed Virgin Mary", + "1950-12-25": "Christmas (Day 1)", + "1950-12-26": "Christmas (Day 2)", + "1951-01-01": "New Year's Day", + "1951-01-06": "Epiphany", + "1951-03-25": "Easter Sunday", + "1951-03-26": "Easter Monday", + "1951-05-01": "National Day", + "1951-05-13": "Pentecost", + "1951-05-24": "Corpus Christi", + "1951-07-22": "National Day of Rebirth of Poland", + "1951-08-15": "Assumption of the Virgin Mary", + "1951-11-01": "All Saints' Day", + "1951-12-25": "Christmas (Day 1)", + "1951-12-26": "Christmas (Day 2)", + "1952-01-01": "New Year's Day", + "1952-01-06": "Epiphany", + "1952-04-13": "Easter Sunday", + "1952-04-14": "Easter Monday", + "1952-05-01": "National Day", + "1952-06-01": "Pentecost", + "1952-06-12": "Corpus Christi", + "1952-07-22": "National Day of Rebirth of Poland", + "1952-08-15": "Assumption of the Virgin Mary", + "1952-11-01": "All Saints' Day", + "1952-12-25": "Christmas (Day 1)", + "1952-12-26": "Christmas (Day 2)", + "1953-01-01": "New Year's Day", + "1953-01-06": "Epiphany", + "1953-04-05": "Easter Sunday", + "1953-04-06": "Easter Monday", + "1953-05-01": "National Day", + "1953-05-24": "Pentecost", + "1953-06-04": "Corpus Christi", + "1953-07-22": "National Day of Rebirth of Poland", + "1953-08-15": "Assumption of the Virgin Mary", + "1953-11-01": "All Saints' Day", + "1953-12-25": "Christmas (Day 1)", + "1953-12-26": "Christmas (Day 2)", + "1954-01-01": "New Year's Day", + "1954-01-06": "Epiphany", + "1954-04-18": "Easter Sunday", + "1954-04-19": "Easter Monday", + "1954-05-01": "National Day", + "1954-06-06": "Pentecost", + "1954-06-17": "Corpus Christi", + "1954-07-22": "National Day of Rebirth of Poland", + "1954-08-15": "Assumption of the Virgin Mary", + "1954-11-01": "All Saints' Day", + "1954-12-25": "Christmas (Day 1)", + "1954-12-26": "Christmas (Day 2)", + "1955-01-01": "New Year's Day", + "1955-01-06": "Epiphany", + "1955-04-10": "Easter Sunday", + "1955-04-11": "Easter Monday", + "1955-05-01": "National Day", + "1955-05-29": "Pentecost", + "1955-06-09": "Corpus Christi", + "1955-07-22": "National Day of Rebirth of Poland", + "1955-08-15": "Assumption of the Virgin Mary", + "1955-11-01": "All Saints' Day", + "1955-12-25": "Christmas (Day 1)", + "1955-12-26": "Christmas (Day 2)", + "1956-01-01": "New Year's Day", + "1956-01-06": "Epiphany", + "1956-04-01": "Easter Sunday", + "1956-04-02": "Easter Monday", + "1956-05-01": "National Day", + "1956-05-20": "Pentecost", + "1956-05-31": "Corpus Christi", + "1956-07-22": "National Day of Rebirth of Poland", + "1956-08-15": "Assumption of the Virgin Mary", + "1956-11-01": "All Saints' Day", + "1956-12-25": "Christmas (Day 1)", + "1956-12-26": "Christmas (Day 2)", + "1957-01-01": "New Year's Day", + "1957-01-06": "Epiphany", + "1957-04-21": "Easter Sunday", + "1957-04-22": "Easter Monday", + "1957-05-01": "National Day", + "1957-06-09": "Pentecost", + "1957-06-20": "Corpus Christi", + "1957-07-22": "National Day of Rebirth of Poland", + "1957-08-15": "Assumption of the Virgin Mary", + "1957-11-01": "All Saints' Day", + "1957-12-25": "Christmas (Day 1)", + "1957-12-26": "Christmas (Day 2)", + "1958-01-01": "New Year's Day", + "1958-01-06": "Epiphany", + "1958-04-06": "Easter Sunday", + "1958-04-07": "Easter Monday", + "1958-05-01": "National Day", + "1958-05-25": "Pentecost", + "1958-06-05": "Corpus Christi", + "1958-07-22": "National Day of Rebirth of Poland", + "1958-08-15": "Assumption of the Virgin Mary", + "1958-11-01": "All Saints' Day", + "1958-12-25": "Christmas (Day 1)", + "1958-12-26": "Christmas (Day 2)", + "1959-01-01": "New Year's Day", + "1959-01-06": "Epiphany", + "1959-03-29": "Easter Sunday", + "1959-03-30": "Easter Monday", + "1959-05-01": "National Day", + "1959-05-17": "Pentecost", + "1959-05-28": "Corpus Christi", + "1959-07-22": "National Day of Rebirth of Poland", + "1959-08-15": "Assumption of the Virgin Mary", + "1959-11-01": "All Saints' Day", + "1959-12-25": "Christmas (Day 1)", + "1959-12-26": "Christmas (Day 2)", + "1960-01-01": "New Year's Day", + "1960-01-06": "Epiphany", + "1960-04-17": "Easter Sunday", + "1960-04-18": "Easter Monday", + "1960-05-01": "National Day", + "1960-06-05": "Pentecost", + "1960-06-16": "Corpus Christi", + "1960-07-22": "National Day of Rebirth of Poland", + "1960-08-15": "Assumption of the Virgin Mary", + "1960-11-01": "All Saints' Day", + "1960-12-25": "Christmas (Day 1)", + "1960-12-26": "Christmas (Day 2)", + "1961-01-01": "New Year's Day", + "1961-04-02": "Easter Sunday", + "1961-04-03": "Easter Monday", + "1961-05-01": "National Day", + "1961-05-21": "Pentecost", + "1961-06-01": "Corpus Christi", + "1961-07-22": "National Day of Rebirth of Poland", + "1961-11-01": "All Saints' Day", + "1961-12-25": "Christmas (Day 1)", + "1961-12-26": "Christmas (Day 2)", + "1962-01-01": "New Year's Day", + "1962-04-22": "Easter Sunday", + "1962-04-23": "Easter Monday", + "1962-05-01": "National Day", + "1962-06-10": "Pentecost", + "1962-06-21": "Corpus Christi", + "1962-07-22": "National Day of Rebirth of Poland", + "1962-11-01": "All Saints' Day", + "1962-12-25": "Christmas (Day 1)", + "1962-12-26": "Christmas (Day 2)", + "1963-01-01": "New Year's Day", + "1963-04-14": "Easter Sunday", + "1963-04-15": "Easter Monday", + "1963-05-01": "National Day", + "1963-06-02": "Pentecost", + "1963-06-13": "Corpus Christi", + "1963-07-22": "National Day of Rebirth of Poland", + "1963-11-01": "All Saints' Day", + "1963-12-25": "Christmas (Day 1)", + "1963-12-26": "Christmas (Day 2)", + "1964-01-01": "New Year's Day", + "1964-03-29": "Easter Sunday", + "1964-03-30": "Easter Monday", + "1964-05-01": "National Day", + "1964-05-17": "Pentecost", + "1964-05-28": "Corpus Christi", + "1964-07-22": "National Day of Rebirth of Poland", + "1964-11-01": "All Saints' Day", + "1964-12-25": "Christmas (Day 1)", + "1964-12-26": "Christmas (Day 2)", + "1965-01-01": "New Year's Day", + "1965-04-18": "Easter Sunday", + "1965-04-19": "Easter Monday", + "1965-05-01": "National Day", + "1965-06-06": "Pentecost", + "1965-06-17": "Corpus Christi", + "1965-07-22": "National Day of Rebirth of Poland", + "1965-11-01": "All Saints' Day", + "1965-12-25": "Christmas (Day 1)", + "1965-12-26": "Christmas (Day 2)", + "1966-01-01": "New Year's Day", + "1966-04-10": "Easter Sunday", + "1966-04-11": "Easter Monday", + "1966-05-01": "National Day", + "1966-05-29": "Pentecost", + "1966-06-09": "Corpus Christi", + "1966-07-22": "National Day of Rebirth of Poland", + "1966-11-01": "All Saints' Day", + "1966-12-25": "Christmas (Day 1)", + "1966-12-26": "Christmas (Day 2)", + "1967-01-01": "New Year's Day", + "1967-03-26": "Easter Sunday", + "1967-03-27": "Easter Monday", + "1967-05-01": "National Day", + "1967-05-14": "Pentecost", + "1967-05-25": "Corpus Christi", + "1967-07-22": "National Day of Rebirth of Poland", + "1967-11-01": "All Saints' Day", + "1967-12-25": "Christmas (Day 1)", + "1967-12-26": "Christmas (Day 2)", + "1968-01-01": "New Year's Day", + "1968-04-14": "Easter Sunday", + "1968-04-15": "Easter Monday", + "1968-05-01": "National Day", + "1968-06-02": "Pentecost", + "1968-06-13": "Corpus Christi", + "1968-07-22": "National Day of Rebirth of Poland", + "1968-11-01": "All Saints' Day", + "1968-12-25": "Christmas (Day 1)", + "1968-12-26": "Christmas (Day 2)", + "1969-01-01": "New Year's Day", + "1969-04-06": "Easter Sunday", + "1969-04-07": "Easter Monday", + "1969-05-01": "National Day", + "1969-05-25": "Pentecost", + "1969-06-05": "Corpus Christi", + "1969-07-22": "National Day of Rebirth of Poland", + "1969-11-01": "All Saints' Day", + "1969-12-25": "Christmas (Day 1)", + "1969-12-26": "Christmas (Day 2)", + "1970-01-01": "New Year's Day", + "1970-03-29": "Easter Sunday", + "1970-03-30": "Easter Monday", + "1970-05-01": "National Day", + "1970-05-17": "Pentecost", + "1970-05-28": "Corpus Christi", + "1970-07-22": "National Day of Rebirth of Poland", + "1970-11-01": "All Saints' Day", + "1970-12-25": "Christmas (Day 1)", + "1970-12-26": "Christmas (Day 2)", + "1971-01-01": "New Year's Day", + "1971-04-11": "Easter Sunday", + "1971-04-12": "Easter Monday", + "1971-05-01": "National Day", + "1971-05-30": "Pentecost", + "1971-06-10": "Corpus Christi", + "1971-07-22": "National Day of Rebirth of Poland", + "1971-11-01": "All Saints' Day", + "1971-12-25": "Christmas (Day 1)", + "1971-12-26": "Christmas (Day 2)", + "1972-01-01": "New Year's Day", + "1972-04-02": "Easter Sunday", + "1972-04-03": "Easter Monday", + "1972-05-01": "National Day", + "1972-05-21": "Pentecost", + "1972-06-01": "Corpus Christi", + "1972-07-22": "National Day of Rebirth of Poland", + "1972-11-01": "All Saints' Day", + "1972-12-25": "Christmas (Day 1)", + "1972-12-26": "Christmas (Day 2)", + "1973-01-01": "New Year's Day", + "1973-04-22": "Easter Sunday", + "1973-04-23": "Easter Monday", + "1973-05-01": "National Day", + "1973-06-10": "Pentecost", + "1973-06-21": "Corpus Christi", + "1973-07-22": "National Day of Rebirth of Poland", + "1973-11-01": "All Saints' Day", + "1973-12-25": "Christmas (Day 1)", + "1973-12-26": "Christmas (Day 2)", + "1974-01-01": "New Year's Day", + "1974-04-14": "Easter Sunday", + "1974-04-15": "Easter Monday", + "1974-05-01": "National Day", + "1974-06-02": "Pentecost", + "1974-06-13": "Corpus Christi", + "1974-07-22": "National Day of Rebirth of Poland", + "1974-11-01": "All Saints' Day", + "1974-12-25": "Christmas (Day 1)", + "1974-12-26": "Christmas (Day 2)", + "1975-01-01": "New Year's Day", + "1975-03-30": "Easter Sunday", + "1975-03-31": "Easter Monday", + "1975-05-01": "National Day", + "1975-05-18": "Pentecost", + "1975-05-29": "Corpus Christi", + "1975-07-22": "National Day of Rebirth of Poland", + "1975-11-01": "All Saints' Day", + "1975-12-25": "Christmas (Day 1)", + "1975-12-26": "Christmas (Day 2)", + "1976-01-01": "New Year's Day", + "1976-04-18": "Easter Sunday", + "1976-04-19": "Easter Monday", + "1976-05-01": "National Day", + "1976-06-06": "Pentecost", + "1976-06-17": "Corpus Christi", + "1976-07-22": "National Day of Rebirth of Poland", + "1976-11-01": "All Saints' Day", + "1976-12-25": "Christmas (Day 1)", + "1976-12-26": "Christmas (Day 2)", + "1977-01-01": "New Year's Day", + "1977-04-10": "Easter Sunday", + "1977-04-11": "Easter Monday", + "1977-05-01": "National Day", + "1977-05-29": "Pentecost", + "1977-06-09": "Corpus Christi", + "1977-07-22": "National Day of Rebirth of Poland", + "1977-11-01": "All Saints' Day", + "1977-12-25": "Christmas (Day 1)", + "1977-12-26": "Christmas (Day 2)", + "1978-01-01": "New Year's Day", + "1978-03-26": "Easter Sunday", + "1978-03-27": "Easter Monday", + "1978-05-01": "National Day", + "1978-05-14": "Pentecost", + "1978-05-25": "Corpus Christi", + "1978-07-22": "National Day of Rebirth of Poland", + "1978-11-01": "All Saints' Day", + "1978-12-25": "Christmas (Day 1)", + "1978-12-26": "Christmas (Day 2)", + "1979-01-01": "New Year's Day", + "1979-04-15": "Easter Sunday", + "1979-04-16": "Easter Monday", + "1979-05-01": "National Day", + "1979-06-03": "Pentecost", + "1979-06-14": "Corpus Christi", + "1979-07-22": "National Day of Rebirth of Poland", + "1979-11-01": "All Saints' Day", + "1979-12-25": "Christmas (Day 1)", + "1979-12-26": "Christmas (Day 2)", + "1980-01-01": "New Year's Day", + "1980-04-06": "Easter Sunday", + "1980-04-07": "Easter Monday", + "1980-05-01": "National Day", + "1980-05-25": "Pentecost", + "1980-06-05": "Corpus Christi", + "1980-07-22": "National Day of Rebirth of Poland", + "1980-11-01": "All Saints' Day", + "1980-12-25": "Christmas (Day 1)", + "1980-12-26": "Christmas (Day 2)", + "1981-01-01": "New Year's Day", + "1981-04-19": "Easter Sunday", + "1981-04-20": "Easter Monday", + "1981-05-01": "National Day", + "1981-06-07": "Pentecost", + "1981-06-18": "Corpus Christi", + "1981-07-22": "National Day of Rebirth of Poland", + "1981-11-01": "All Saints' Day", + "1981-12-25": "Christmas (Day 1)", + "1981-12-26": "Christmas (Day 2)", + "1982-01-01": "New Year's Day", + "1982-04-11": "Easter Sunday", + "1982-04-12": "Easter Monday", + "1982-05-01": "National Day", + "1982-05-30": "Pentecost", + "1982-06-10": "Corpus Christi", + "1982-07-22": "National Day of Rebirth of Poland", + "1982-11-01": "All Saints' Day", + "1982-12-25": "Christmas (Day 1)", + "1982-12-26": "Christmas (Day 2)", + "1983-01-01": "New Year's Day", + "1983-04-03": "Easter Sunday", + "1983-04-04": "Easter Monday", + "1983-05-01": "National Day", + "1983-05-22": "Pentecost", + "1983-06-02": "Corpus Christi", + "1983-07-22": "National Day of Rebirth of Poland", + "1983-11-01": "All Saints' Day", + "1983-12-25": "Christmas (Day 1)", + "1983-12-26": "Christmas (Day 2)", + "1984-01-01": "New Year's Day", + "1984-04-22": "Easter Sunday", + "1984-04-23": "Easter Monday", + "1984-05-01": "National Day", + "1984-06-10": "Pentecost", + "1984-06-21": "Corpus Christi", + "1984-07-22": "National Day of Rebirth of Poland", + "1984-11-01": "All Saints' Day", + "1984-12-25": "Christmas (Day 1)", + "1984-12-26": "Christmas (Day 2)", + "1985-01-01": "New Year's Day", + "1985-04-07": "Easter Sunday", + "1985-04-08": "Easter Monday", + "1985-05-01": "National Day", + "1985-05-26": "Pentecost", + "1985-06-06": "Corpus Christi", + "1985-07-22": "National Day of Rebirth of Poland", + "1985-11-01": "All Saints' Day", + "1985-12-25": "Christmas (Day 1)", + "1985-12-26": "Christmas (Day 2)", + "1986-01-01": "New Year's Day", + "1986-03-30": "Easter Sunday", + "1986-03-31": "Easter Monday", + "1986-05-01": "National Day", + "1986-05-18": "Pentecost", + "1986-05-29": "Corpus Christi", + "1986-07-22": "National Day of Rebirth of Poland", + "1986-11-01": "All Saints' Day", + "1986-12-25": "Christmas (Day 1)", + "1986-12-26": "Christmas (Day 2)", + "1987-01-01": "New Year's Day", + "1987-04-19": "Easter Sunday", + "1987-04-20": "Easter Monday", + "1987-05-01": "National Day", + "1987-06-07": "Pentecost", + "1987-06-18": "Corpus Christi", + "1987-07-22": "National Day of Rebirth of Poland", + "1987-11-01": "All Saints' Day", + "1987-12-25": "Christmas (Day 1)", + "1987-12-26": "Christmas (Day 2)", + "1988-01-01": "New Year's Day", + "1988-04-03": "Easter Sunday", + "1988-04-04": "Easter Monday", + "1988-05-01": "National Day", + "1988-05-22": "Pentecost", + "1988-06-02": "Corpus Christi", + "1988-07-22": "National Day of Rebirth of Poland", + "1988-11-01": "All Saints' Day", + "1988-12-25": "Christmas (Day 1)", + "1988-12-26": "Christmas (Day 2)", + "1989-01-01": "New Year's Day", + "1989-03-26": "Easter Sunday", + "1989-03-27": "Easter Monday", + "1989-05-01": "National Day", + "1989-05-14": "Pentecost", + "1989-05-25": "Corpus Christi", + "1989-07-22": "National Day of Rebirth of Poland", + "1989-08-15": "Assumption of the Virgin Mary", + "1989-11-01": "All Saints' Day", + "1989-11-11": "National Independence Day", + "1989-12-25": "Christmas (Day 1)", + "1989-12-26": "Christmas (Day 2)", + "1990-01-01": "New Year's Day", + "1990-04-15": "Easter Sunday", + "1990-04-16": "Easter Monday", + "1990-05-01": "National Day", + "1990-05-03": "National Day of the Third of May", + "1990-06-03": "Pentecost", + "1990-06-14": "Corpus Christi", + "1990-08-15": "Assumption of the Virgin Mary", + "1990-11-01": "All Saints' Day", + "1990-11-11": "National Independence Day", + "1990-12-25": "Christmas (Day 1)", + "1990-12-26": "Christmas (Day 2)", + "1991-01-01": "New Year's Day", + "1991-03-31": "Easter Sunday", + "1991-04-01": "Easter Monday", + "1991-05-01": "National Day", + "1991-05-03": "National Day of the Third of May", + "1991-05-19": "Pentecost", + "1991-05-30": "Corpus Christi", + "1991-08-15": "Assumption of the Virgin Mary", + "1991-11-01": "All Saints' Day", + "1991-11-11": "National Independence Day", + "1991-12-25": "Christmas (Day 1)", + "1991-12-26": "Christmas (Day 2)", + "1992-01-01": "New Year's Day", + "1992-04-19": "Easter Sunday", + "1992-04-20": "Easter Monday", + "1992-05-01": "National Day", + "1992-05-03": "National Day of the Third of May", + "1992-06-07": "Pentecost", + "1992-06-18": "Corpus Christi", + "1992-08-15": "Assumption of the Virgin Mary", + "1992-11-01": "All Saints' Day", + "1992-11-11": "National Independence Day", + "1992-12-25": "Christmas (Day 1)", + "1992-12-26": "Christmas (Day 2)", + "1993-01-01": "New Year's Day", + "1993-04-11": "Easter Sunday", + "1993-04-12": "Easter Monday", + "1993-05-01": "National Day", + "1993-05-03": "National Day of the Third of May", + "1993-05-30": "Pentecost", + "1993-06-10": "Corpus Christi", + "1993-08-15": "Assumption of the Virgin Mary", + "1993-11-01": "All Saints' Day", + "1993-11-11": "National Independence Day", + "1993-12-25": "Christmas (Day 1)", + "1993-12-26": "Christmas (Day 2)", + "1994-01-01": "New Year's Day", + "1994-04-03": "Easter Sunday", + "1994-04-04": "Easter Monday", + "1994-05-01": "National Day", + "1994-05-03": "National Day of the Third of May", + "1994-05-22": "Pentecost", + "1994-06-02": "Corpus Christi", + "1994-08-15": "Assumption of the Virgin Mary", + "1994-11-01": "All Saints' Day", + "1994-11-11": "National Independence Day", + "1994-12-25": "Christmas (Day 1)", + "1994-12-26": "Christmas (Day 2)", + "1995-01-01": "New Year's Day", + "1995-04-16": "Easter Sunday", + "1995-04-17": "Easter Monday", + "1995-05-01": "National Day", + "1995-05-03": "National Day of the Third of May", + "1995-06-04": "Pentecost", + "1995-06-15": "Corpus Christi", + "1995-08-15": "Assumption of the Virgin Mary", + "1995-11-01": "All Saints' Day", + "1995-11-11": "National Independence Day", + "1995-12-25": "Christmas (Day 1)", + "1995-12-26": "Christmas (Day 2)", + "1996-01-01": "New Year's Day", + "1996-04-07": "Easter Sunday", + "1996-04-08": "Easter Monday", + "1996-05-01": "National Day", + "1996-05-03": "National Day of the Third of May", + "1996-05-26": "Pentecost", + "1996-06-06": "Corpus Christi", + "1996-08-15": "Assumption of the Virgin Mary", + "1996-11-01": "All Saints' Day", + "1996-11-11": "National Independence Day", + "1996-12-25": "Christmas (Day 1)", + "1996-12-26": "Christmas (Day 2)", + "1997-01-01": "New Year's Day", + "1997-03-30": "Easter Sunday", + "1997-03-31": "Easter Monday", + "1997-05-01": "National Day", + "1997-05-03": "National Day of the Third of May", + "1997-05-18": "Pentecost", + "1997-05-29": "Corpus Christi", + "1997-08-15": "Assumption of the Virgin Mary", + "1997-11-01": "All Saints' Day", + "1997-11-11": "National Independence Day", + "1997-12-25": "Christmas (Day 1)", + "1997-12-26": "Christmas (Day 2)", + "1998-01-01": "New Year's Day", + "1998-04-12": "Easter Sunday", + "1998-04-13": "Easter Monday", + "1998-05-01": "National Day", + "1998-05-03": "National Day of the Third of May", + "1998-05-31": "Pentecost", + "1998-06-11": "Corpus Christi", + "1998-08-15": "Assumption of the Virgin Mary", + "1998-11-01": "All Saints' Day", + "1998-11-11": "National Independence Day", + "1998-12-25": "Christmas (Day 1)", + "1998-12-26": "Christmas (Day 2)", + "1999-01-01": "New Year's Day", + "1999-04-04": "Easter Sunday", + "1999-04-05": "Easter Monday", + "1999-05-01": "National Day", + "1999-05-03": "National Day of the Third of May", + "1999-05-23": "Pentecost", + "1999-06-03": "Corpus Christi", + "1999-08-15": "Assumption of the Virgin Mary", + "1999-11-01": "All Saints' Day", + "1999-11-11": "National Independence Day", + "1999-12-25": "Christmas (Day 1)", + "1999-12-26": "Christmas (Day 2)", + "2000-01-01": "New Year's Day", + "2000-04-23": "Easter Sunday", + "2000-04-24": "Easter Monday", + "2000-05-01": "National Day", + "2000-05-03": "National Day of the Third of May", + "2000-06-11": "Pentecost", + "2000-06-22": "Corpus Christi", + "2000-08-15": "Assumption of the Virgin Mary", + "2000-11-01": "All Saints' Day", + "2000-11-11": "National Independence Day", + "2000-12-25": "Christmas (Day 1)", + "2000-12-26": "Christmas (Day 2)", + "2001-01-01": "New Year's Day", + "2001-04-15": "Easter Sunday", + "2001-04-16": "Easter Monday", + "2001-05-01": "National Day", + "2001-05-03": "National Day of the Third of May", + "2001-06-03": "Pentecost", + "2001-06-14": "Corpus Christi", + "2001-08-15": "Assumption of the Virgin Mary", + "2001-11-01": "All Saints' Day", + "2001-11-11": "National Independence Day", + "2001-12-25": "Christmas (Day 1)", + "2001-12-26": "Christmas (Day 2)", + "2002-01-01": "New Year's Day", + "2002-03-31": "Easter Sunday", + "2002-04-01": "Easter Monday", + "2002-05-01": "National Day", + "2002-05-03": "National Day of the Third of May", + "2002-05-19": "Pentecost", + "2002-05-30": "Corpus Christi", + "2002-08-15": "Assumption of the Virgin Mary", + "2002-11-01": "All Saints' Day", + "2002-11-11": "National Independence Day", + "2002-12-25": "Christmas (Day 1)", + "2002-12-26": "Christmas (Day 2)", + "2003-01-01": "New Year's Day", + "2003-04-20": "Easter Sunday", + "2003-04-21": "Easter Monday", + "2003-05-01": "National Day", + "2003-05-03": "National Day of the Third of May", + "2003-06-08": "Pentecost", + "2003-06-19": "Corpus Christi", + "2003-08-15": "Assumption of the Virgin Mary", + "2003-11-01": "All Saints' Day", + "2003-11-11": "National Independence Day", + "2003-12-25": "Christmas (Day 1)", + "2003-12-26": "Christmas (Day 2)", + "2004-01-01": "New Year's Day", + "2004-04-11": "Easter Sunday", + "2004-04-12": "Easter Monday", + "2004-05-01": "National Day", + "2004-05-03": "National Day of the Third of May", + "2004-05-30": "Pentecost", + "2004-06-10": "Corpus Christi", + "2004-08-15": "Assumption of the Virgin Mary", + "2004-11-01": "All Saints' Day", + "2004-11-11": "National Independence Day", + "2004-12-25": "Christmas (Day 1)", + "2004-12-26": "Christmas (Day 2)", + "2005-01-01": "New Year's Day", + "2005-03-27": "Easter Sunday", + "2005-03-28": "Easter Monday", + "2005-05-01": "National Day", + "2005-05-03": "National Day of the Third of May", + "2005-05-15": "Pentecost", + "2005-05-26": "Corpus Christi", + "2005-08-15": "Assumption of the Virgin Mary", + "2005-11-01": "All Saints' Day", + "2005-11-11": "National Independence Day", + "2005-12-25": "Christmas (Day 1)", + "2005-12-26": "Christmas (Day 2)", + "2006-01-01": "New Year's Day", + "2006-04-16": "Easter Sunday", + "2006-04-17": "Easter Monday", + "2006-05-01": "National Day", + "2006-05-03": "National Day of the Third of May", + "2006-06-04": "Pentecost", + "2006-06-15": "Corpus Christi", + "2006-08-15": "Assumption of the Virgin Mary", + "2006-11-01": "All Saints' Day", + "2006-11-11": "National Independence Day", + "2006-12-25": "Christmas (Day 1)", + "2006-12-26": "Christmas (Day 2)", + "2007-01-01": "New Year's Day", + "2007-04-08": "Easter Sunday", + "2007-04-09": "Easter Monday", + "2007-05-01": "National Day", + "2007-05-03": "National Day of the Third of May", + "2007-05-27": "Pentecost", + "2007-06-07": "Corpus Christi", + "2007-08-15": "Assumption of the Virgin Mary", + "2007-11-01": "All Saints' Day", + "2007-11-11": "National Independence Day", + "2007-12-25": "Christmas (Day 1)", + "2007-12-26": "Christmas (Day 2)", + "2008-01-01": "New Year's Day", + "2008-03-23": "Easter Sunday", + "2008-03-24": "Easter Monday", + "2008-05-01": "National Day", + "2008-05-03": "National Day of the Third of May", + "2008-05-11": "Pentecost", + "2008-05-22": "Corpus Christi", + "2008-08-15": "Assumption of the Virgin Mary", + "2008-11-01": "All Saints' Day", + "2008-11-11": "National Independence Day", + "2008-12-25": "Christmas (Day 1)", + "2008-12-26": "Christmas (Day 2)", + "2009-01-01": "New Year's Day", + "2009-04-12": "Easter Sunday", + "2009-04-13": "Easter Monday", + "2009-05-01": "National Day", + "2009-05-03": "National Day of the Third of May", + "2009-05-31": "Pentecost", + "2009-06-11": "Corpus Christi", + "2009-08-15": "Assumption of the Virgin Mary", + "2009-11-01": "All Saints' Day", + "2009-11-11": "National Independence Day", + "2009-12-25": "Christmas (Day 1)", + "2009-12-26": "Christmas (Day 2)", + "2010-01-01": "New Year's Day", + "2010-04-04": "Easter Sunday", + "2010-04-05": "Easter Monday", + "2010-05-01": "National Day", + "2010-05-03": "National Day of the Third of May", + "2010-05-23": "Pentecost", + "2010-06-03": "Corpus Christi", + "2010-08-15": "Assumption of the Virgin Mary", + "2010-11-01": "All Saints' Day", + "2010-11-11": "National Independence Day", + "2010-12-25": "Christmas (Day 1)", + "2010-12-26": "Christmas (Day 2)", + "2011-01-01": "New Year's Day", + "2011-01-06": "Epiphany", + "2011-04-24": "Easter Sunday", + "2011-04-25": "Easter Monday", + "2011-05-01": "National Day", + "2011-05-03": "National Day of the Third of May", + "2011-06-12": "Pentecost", + "2011-06-23": "Corpus Christi", + "2011-08-15": "Assumption of the Virgin Mary", + "2011-11-01": "All Saints' Day", + "2011-11-11": "National Independence Day", + "2011-12-25": "Christmas (Day 1)", + "2011-12-26": "Christmas (Day 2)", + "2012-01-01": "New Year's Day", + "2012-01-06": "Epiphany", + "2012-04-08": "Easter Sunday", + "2012-04-09": "Easter Monday", + "2012-05-01": "National Day", + "2012-05-03": "National Day of the Third of May", + "2012-05-27": "Pentecost", + "2012-06-07": "Corpus Christi", + "2012-08-15": "Assumption of the Virgin Mary", + "2012-11-01": "All Saints' Day", + "2012-11-11": "National Independence Day", + "2012-12-25": "Christmas (Day 1)", + "2012-12-26": "Christmas (Day 2)", + "2013-01-01": "New Year's Day", + "2013-01-06": "Epiphany", + "2013-03-31": "Easter Sunday", + "2013-04-01": "Easter Monday", + "2013-05-01": "National Day", + "2013-05-03": "National Day of the Third of May", + "2013-05-19": "Pentecost", + "2013-05-30": "Corpus Christi", + "2013-08-15": "Assumption of the Virgin Mary", + "2013-11-01": "All Saints' Day", + "2013-11-11": "National Independence Day", + "2013-12-25": "Christmas (Day 1)", + "2013-12-26": "Christmas (Day 2)", + "2014-01-01": "New Year's Day", + "2014-01-06": "Epiphany", + "2014-04-20": "Easter Sunday", + "2014-04-21": "Easter Monday", + "2014-05-01": "National Day", + "2014-05-03": "National Day of the Third of May", + "2014-06-08": "Pentecost", + "2014-06-19": "Corpus Christi", + "2014-08-15": "Assumption of the Virgin Mary", + "2014-11-01": "All Saints' Day", + "2014-11-11": "National Independence Day", + "2014-12-25": "Christmas (Day 1)", + "2014-12-26": "Christmas (Day 2)", + "2015-01-01": "New Year's Day", + "2015-01-06": "Epiphany", + "2015-04-05": "Easter Sunday", + "2015-04-06": "Easter Monday", + "2015-05-01": "National Day", + "2015-05-03": "National Day of the Third of May", + "2015-05-24": "Pentecost", + "2015-06-04": "Corpus Christi", + "2015-08-15": "Assumption of the Virgin Mary", + "2015-11-01": "All Saints' Day", + "2015-11-11": "National Independence Day", + "2015-12-25": "Christmas (Day 1)", + "2015-12-26": "Christmas (Day 2)", + "2016-01-01": "New Year's Day", + "2016-01-06": "Epiphany", + "2016-03-27": "Easter Sunday", + "2016-03-28": "Easter Monday", + "2016-05-01": "National Day", + "2016-05-03": "National Day of the Third of May", + "2016-05-15": "Pentecost", + "2016-05-26": "Corpus Christi", + "2016-08-15": "Assumption of the Virgin Mary", + "2016-11-01": "All Saints' Day", + "2016-11-11": "National Independence Day", + "2016-12-25": "Christmas (Day 1)", + "2016-12-26": "Christmas (Day 2)", + "2017-01-01": "New Year's Day", + "2017-01-06": "Epiphany", + "2017-04-16": "Easter Sunday", + "2017-04-17": "Easter Monday", + "2017-05-01": "National Day", + "2017-05-03": "National Day of the Third of May", + "2017-06-04": "Pentecost", + "2017-06-15": "Corpus Christi", + "2017-08-15": "Assumption of the Virgin Mary", + "2017-11-01": "All Saints' Day", + "2017-11-11": "National Independence Day", + "2017-12-25": "Christmas (Day 1)", + "2017-12-26": "Christmas (Day 2)", + "2018-01-01": "New Year's Day", + "2018-01-06": "Epiphany", + "2018-04-01": "Easter Sunday", + "2018-04-02": "Easter Monday", + "2018-05-01": "National Day", + "2018-05-03": "National Day of the Third of May", + "2018-05-20": "Pentecost", + "2018-05-31": "Corpus Christi", + "2018-08-15": "Assumption of the Virgin Mary", + "2018-11-01": "All Saints' Day", + "2018-11-11": "National Independence Day", + "2018-11-12": "National Independence Day - 100th anniversary", + "2018-12-25": "Christmas (Day 1)", + "2018-12-26": "Christmas (Day 2)", + "2019-01-01": "New Year's Day", + "2019-01-06": "Epiphany", + "2019-04-21": "Easter Sunday", + "2019-04-22": "Easter Monday", + "2019-05-01": "National Day", + "2019-05-03": "National Day of the Third of May", + "2019-06-09": "Pentecost", + "2019-06-20": "Corpus Christi", + "2019-08-15": "Assumption of the Virgin Mary", + "2019-11-01": "All Saints' Day", + "2019-11-11": "National Independence Day", + "2019-12-25": "Christmas (Day 1)", + "2019-12-26": "Christmas (Day 2)", + "2020-01-01": "New Year's Day", + "2020-01-06": "Epiphany", + "2020-04-12": "Easter Sunday", + "2020-04-13": "Easter Monday", + "2020-05-01": "National Day", + "2020-05-03": "National Day of the Third of May", + "2020-05-31": "Pentecost", + "2020-06-11": "Corpus Christi", + "2020-08-15": "Assumption of the Virgin Mary", + "2020-11-01": "All Saints' Day", + "2020-11-11": "National Independence Day", + "2020-12-25": "Christmas (Day 1)", + "2020-12-26": "Christmas (Day 2)", + "2021-01-01": "New Year's Day", + "2021-01-06": "Epiphany", + "2021-04-04": "Easter Sunday", + "2021-04-05": "Easter Monday", + "2021-05-01": "National Day", + "2021-05-03": "National Day of the Third of May", + "2021-05-23": "Pentecost", + "2021-06-03": "Corpus Christi", + "2021-08-15": "Assumption of the Virgin Mary", + "2021-11-01": "All Saints' Day", + "2021-11-11": "National Independence Day", + "2021-12-25": "Christmas (Day 1)", + "2021-12-26": "Christmas (Day 2)", + "2022-01-01": "New Year's Day", + "2022-01-06": "Epiphany", + "2022-04-17": "Easter Sunday", + "2022-04-18": "Easter Monday", + "2022-05-01": "National Day", + "2022-05-03": "National Day of the Third of May", + "2022-06-05": "Pentecost", + "2022-06-16": "Corpus Christi", + "2022-08-15": "Assumption of the Virgin Mary", + "2022-11-01": "All Saints' Day", + "2022-11-11": "National Independence Day", + "2022-12-25": "Christmas (Day 1)", + "2022-12-26": "Christmas (Day 2)", + "2023-01-01": "New Year's Day", + "2023-01-06": "Epiphany", + "2023-04-09": "Easter Sunday", + "2023-04-10": "Easter Monday", + "2023-05-01": "National Day", + "2023-05-03": "National Day of the Third of May", + "2023-05-28": "Pentecost", + "2023-06-08": "Corpus Christi", + "2023-08-15": "Assumption of the Virgin Mary", + "2023-11-01": "All Saints' Day", + "2023-11-11": "National Independence Day", + "2023-12-25": "Christmas (Day 1)", + "2023-12-26": "Christmas (Day 2)", + "2024-01-01": "New Year's Day", + "2024-01-06": "Epiphany", + "2024-03-31": "Easter Sunday", + "2024-04-01": "Easter Monday", + "2024-05-01": "National Day", + "2024-05-03": "National Day of the Third of May", + "2024-05-19": "Pentecost", + "2024-05-30": "Corpus Christi", + "2024-08-15": "Assumption of the Virgin Mary", + "2024-11-01": "All Saints' Day", + "2024-11-11": "National Independence Day", + "2024-12-25": "Christmas (Day 1)", + "2024-12-26": "Christmas (Day 2)", + "2025-01-01": "New Year's Day", + "2025-01-06": "Epiphany", + "2025-04-20": "Easter Sunday", + "2025-04-21": "Easter Monday", + "2025-05-01": "National Day", + "2025-05-03": "National Day of the Third of May", + "2025-06-08": "Pentecost", + "2025-06-19": "Corpus Christi", + "2025-08-15": "Assumption of the Virgin Mary", + "2025-11-01": "All Saints' Day", + "2025-11-11": "National Independence Day", + "2025-12-25": "Christmas (Day 1)", + "2025-12-26": "Christmas (Day 2)", + "2026-01-01": "New Year's Day", + "2026-01-06": "Epiphany", + "2026-04-05": "Easter Sunday", + "2026-04-06": "Easter Monday", + "2026-05-01": "National Day", + "2026-05-03": "National Day of the Third of May", + "2026-05-24": "Pentecost", + "2026-06-04": "Corpus Christi", + "2026-08-15": "Assumption of the Virgin Mary", + "2026-11-01": "All Saints' Day", + "2026-11-11": "National Independence Day", + "2026-12-25": "Christmas (Day 1)", + "2026-12-26": "Christmas (Day 2)", + "2027-01-01": "New Year's Day", + "2027-01-06": "Epiphany", + "2027-03-28": "Easter Sunday", + "2027-03-29": "Easter Monday", + "2027-05-01": "National Day", + "2027-05-03": "National Day of the Third of May", + "2027-05-16": "Pentecost", + "2027-05-27": "Corpus Christi", + "2027-08-15": "Assumption of the Virgin Mary", + "2027-11-01": "All Saints' Day", + "2027-11-11": "National Independence Day", + "2027-12-25": "Christmas (Day 1)", + "2027-12-26": "Christmas (Day 2)", + "2028-01-01": "New Year's Day", + "2028-01-06": "Epiphany", + "2028-04-16": "Easter Sunday", + "2028-04-17": "Easter Monday", + "2028-05-01": "National Day", + "2028-05-03": "National Day of the Third of May", + "2028-06-04": "Pentecost", + "2028-06-15": "Corpus Christi", + "2028-08-15": "Assumption of the Virgin Mary", + "2028-11-01": "All Saints' Day", + "2028-11-11": "National Independence Day", + "2028-12-25": "Christmas (Day 1)", + "2028-12-26": "Christmas (Day 2)", + "2029-01-01": "New Year's Day", + "2029-01-06": "Epiphany", + "2029-04-01": "Easter Sunday", + "2029-04-02": "Easter Monday", + "2029-05-01": "National Day", + "2029-05-03": "National Day of the Third of May", + "2029-05-20": "Pentecost", + "2029-05-31": "Corpus Christi", + "2029-08-15": "Assumption of the Virgin Mary", + "2029-11-01": "All Saints' Day", + "2029-11-11": "National Independence Day", + "2029-12-25": "Christmas (Day 1)", + "2029-12-26": "Christmas (Day 2)", + "2030-01-01": "New Year's Day", + "2030-01-06": "Epiphany", + "2030-04-21": "Easter Sunday", + "2030-04-22": "Easter Monday", + "2030-05-01": "National Day", + "2030-05-03": "National Day of the Third of May", + "2030-06-09": "Pentecost", + "2030-06-20": "Corpus Christi", + "2030-08-15": "Assumption of the Virgin Mary", + "2030-11-01": "All Saints' Day", + "2030-11-11": "National Independence Day", + "2030-12-25": "Christmas (Day 1)", + "2030-12-26": "Christmas (Day 2)", + "2031-01-01": "New Year's Day", + "2031-01-06": "Epiphany", + "2031-04-13": "Easter Sunday", + "2031-04-14": "Easter Monday", + "2031-05-01": "National Day", + "2031-05-03": "National Day of the Third of May", + "2031-06-01": "Pentecost", + "2031-06-12": "Corpus Christi", + "2031-08-15": "Assumption of the Virgin Mary", + "2031-11-01": "All Saints' Day", + "2031-11-11": "National Independence Day", + "2031-12-25": "Christmas (Day 1)", + "2031-12-26": "Christmas (Day 2)", + "2032-01-01": "New Year's Day", + "2032-01-06": "Epiphany", + "2032-03-28": "Easter Sunday", + "2032-03-29": "Easter Monday", + "2032-05-01": "National Day", + "2032-05-03": "National Day of the Third of May", + "2032-05-16": "Pentecost", + "2032-05-27": "Corpus Christi", + "2032-08-15": "Assumption of the Virgin Mary", + "2032-11-01": "All Saints' Day", + "2032-11-11": "National Independence Day", + "2032-12-25": "Christmas (Day 1)", + "2032-12-26": "Christmas (Day 2)", + "2033-01-01": "New Year's Day", + "2033-01-06": "Epiphany", + "2033-04-17": "Easter Sunday", + "2033-04-18": "Easter Monday", + "2033-05-01": "National Day", + "2033-05-03": "National Day of the Third of May", + "2033-06-05": "Pentecost", + "2033-06-16": "Corpus Christi", + "2033-08-15": "Assumption of the Virgin Mary", + "2033-11-01": "All Saints' Day", + "2033-11-11": "National Independence Day", + "2033-12-25": "Christmas (Day 1)", + "2033-12-26": "Christmas (Day 2)", + "2034-01-01": "New Year's Day", + "2034-01-06": "Epiphany", + "2034-04-09": "Easter Sunday", + "2034-04-10": "Easter Monday", + "2034-05-01": "National Day", + "2034-05-03": "National Day of the Third of May", + "2034-05-28": "Pentecost", + "2034-06-08": "Corpus Christi", + "2034-08-15": "Assumption of the Virgin Mary", + "2034-11-01": "All Saints' Day", + "2034-11-11": "National Independence Day", + "2034-12-25": "Christmas (Day 1)", + "2034-12-26": "Christmas (Day 2)", + "2035-01-01": "New Year's Day", + "2035-01-06": "Epiphany", + "2035-03-25": "Easter Sunday", + "2035-03-26": "Easter Monday", + "2035-05-01": "National Day", + "2035-05-03": "National Day of the Third of May", + "2035-05-13": "Pentecost", + "2035-05-24": "Corpus Christi", + "2035-08-15": "Assumption of the Virgin Mary", + "2035-11-01": "All Saints' Day", + "2035-11-11": "National Independence Day", + "2035-12-25": "Christmas (Day 1)", + "2035-12-26": "Christmas (Day 2)", + "2036-01-01": "New Year's Day", + "2036-01-06": "Epiphany", + "2036-04-13": "Easter Sunday", + "2036-04-14": "Easter Monday", + "2036-05-01": "National Day", + "2036-05-03": "National Day of the Third of May", + "2036-06-01": "Pentecost", + "2036-06-12": "Corpus Christi", + "2036-08-15": "Assumption of the Virgin Mary", + "2036-11-01": "All Saints' Day", + "2036-11-11": "National Independence Day", + "2036-12-25": "Christmas (Day 1)", + "2036-12-26": "Christmas (Day 2)", + "2037-01-01": "New Year's Day", + "2037-01-06": "Epiphany", + "2037-04-05": "Easter Sunday", + "2037-04-06": "Easter Monday", + "2037-05-01": "National Day", + "2037-05-03": "National Day of the Third of May", + "2037-05-24": "Pentecost", + "2037-06-04": "Corpus Christi", + "2037-08-15": "Assumption of the Virgin Mary", + "2037-11-01": "All Saints' Day", + "2037-11-11": "National Independence Day", + "2037-12-25": "Christmas (Day 1)", + "2037-12-26": "Christmas (Day 2)", + "2038-01-01": "New Year's Day", + "2038-01-06": "Epiphany", + "2038-04-25": "Easter Sunday", + "2038-04-26": "Easter Monday", + "2038-05-01": "National Day", + "2038-05-03": "National Day of the Third of May", + "2038-06-13": "Pentecost", + "2038-06-24": "Corpus Christi", + "2038-08-15": "Assumption of the Virgin Mary", + "2038-11-01": "All Saints' Day", + "2038-11-11": "National Independence Day", + "2038-12-25": "Christmas (Day 1)", + "2038-12-26": "Christmas (Day 2)", + "2039-01-01": "New Year's Day", + "2039-01-06": "Epiphany", + "2039-04-10": "Easter Sunday", + "2039-04-11": "Easter Monday", + "2039-05-01": "National Day", + "2039-05-03": "National Day of the Third of May", + "2039-05-29": "Pentecost", + "2039-06-09": "Corpus Christi", + "2039-08-15": "Assumption of the Virgin Mary", + "2039-11-01": "All Saints' Day", + "2039-11-11": "National Independence Day", + "2039-12-25": "Christmas (Day 1)", + "2039-12-26": "Christmas (Day 2)", + "2040-01-01": "New Year's Day", + "2040-01-06": "Epiphany", + "2040-04-01": "Easter Sunday", + "2040-04-02": "Easter Monday", + "2040-05-01": "National Day", + "2040-05-03": "National Day of the Third of May", + "2040-05-20": "Pentecost", + "2040-05-31": "Corpus Christi", + "2040-08-15": "Assumption of the Virgin Mary", + "2040-11-01": "All Saints' Day", + "2040-11-11": "National Independence Day", + "2040-12-25": "Christmas (Day 1)", + "2040-12-26": "Christmas (Day 2)", + "2041-01-01": "New Year's Day", + "2041-01-06": "Epiphany", + "2041-04-21": "Easter Sunday", + "2041-04-22": "Easter Monday", + "2041-05-01": "National Day", + "2041-05-03": "National Day of the Third of May", + "2041-06-09": "Pentecost", + "2041-06-20": "Corpus Christi", + "2041-08-15": "Assumption of the Virgin Mary", + "2041-11-01": "All Saints' Day", + "2041-11-11": "National Independence Day", + "2041-12-25": "Christmas (Day 1)", + "2041-12-26": "Christmas (Day 2)", + "2042-01-01": "New Year's Day", + "2042-01-06": "Epiphany", + "2042-04-06": "Easter Sunday", + "2042-04-07": "Easter Monday", + "2042-05-01": "National Day", + "2042-05-03": "National Day of the Third of May", + "2042-05-25": "Pentecost", + "2042-06-05": "Corpus Christi", + "2042-08-15": "Assumption of the Virgin Mary", + "2042-11-01": "All Saints' Day", + "2042-11-11": "National Independence Day", + "2042-12-25": "Christmas (Day 1)", + "2042-12-26": "Christmas (Day 2)", + "2043-01-01": "New Year's Day", + "2043-01-06": "Epiphany", + "2043-03-29": "Easter Sunday", + "2043-03-30": "Easter Monday", + "2043-05-01": "National Day", + "2043-05-03": "National Day of the Third of May", + "2043-05-17": "Pentecost", + "2043-05-28": "Corpus Christi", + "2043-08-15": "Assumption of the Virgin Mary", + "2043-11-01": "All Saints' Day", + "2043-11-11": "National Independence Day", + "2043-12-25": "Christmas (Day 1)", + "2043-12-26": "Christmas (Day 2)", + "2044-01-01": "New Year's Day", + "2044-01-06": "Epiphany", + "2044-04-17": "Easter Sunday", + "2044-04-18": "Easter Monday", + "2044-05-01": "National Day", + "2044-05-03": "National Day of the Third of May", + "2044-06-05": "Pentecost", + "2044-06-16": "Corpus Christi", + "2044-08-15": "Assumption of the Virgin Mary", + "2044-11-01": "All Saints' Day", + "2044-11-11": "National Independence Day", + "2044-12-25": "Christmas (Day 1)", + "2044-12-26": "Christmas (Day 2)", + "2045-01-01": "New Year's Day", + "2045-01-06": "Epiphany", + "2045-04-09": "Easter Sunday", + "2045-04-10": "Easter Monday", + "2045-05-01": "National Day", + "2045-05-03": "National Day of the Third of May", + "2045-05-28": "Pentecost", + "2045-06-08": "Corpus Christi", + "2045-08-15": "Assumption of the Virgin Mary", + "2045-11-01": "All Saints' Day", + "2045-11-11": "National Independence Day", + "2045-12-25": "Christmas (Day 1)", + "2045-12-26": "Christmas (Day 2)", + "2046-01-01": "New Year's Day", + "2046-01-06": "Epiphany", + "2046-03-25": "Easter Sunday", + "2046-03-26": "Easter Monday", + "2046-05-01": "National Day", + "2046-05-03": "National Day of the Third of May", + "2046-05-13": "Pentecost", + "2046-05-24": "Corpus Christi", + "2046-08-15": "Assumption of the Virgin Mary", + "2046-11-01": "All Saints' Day", + "2046-11-11": "National Independence Day", + "2046-12-25": "Christmas (Day 1)", + "2046-12-26": "Christmas (Day 2)", + "2047-01-01": "New Year's Day", + "2047-01-06": "Epiphany", + "2047-04-14": "Easter Sunday", + "2047-04-15": "Easter Monday", + "2047-05-01": "National Day", + "2047-05-03": "National Day of the Third of May", + "2047-06-02": "Pentecost", + "2047-06-13": "Corpus Christi", + "2047-08-15": "Assumption of the Virgin Mary", + "2047-11-01": "All Saints' Day", + "2047-11-11": "National Independence Day", + "2047-12-25": "Christmas (Day 1)", + "2047-12-26": "Christmas (Day 2)", + "2048-01-01": "New Year's Day", + "2048-01-06": "Epiphany", + "2048-04-05": "Easter Sunday", + "2048-04-06": "Easter Monday", + "2048-05-01": "National Day", + "2048-05-03": "National Day of the Third of May", + "2048-05-24": "Pentecost", + "2048-06-04": "Corpus Christi", + "2048-08-15": "Assumption of the Virgin Mary", + "2048-11-01": "All Saints' Day", + "2048-11-11": "National Independence Day", + "2048-12-25": "Christmas (Day 1)", + "2048-12-26": "Christmas (Day 2)", + "2049-01-01": "New Year's Day", + "2049-01-06": "Epiphany", + "2049-04-18": "Easter Sunday", + "2049-04-19": "Easter Monday", + "2049-05-01": "National Day", + "2049-05-03": "National Day of the Third of May", + "2049-06-06": "Pentecost", + "2049-06-17": "Corpus Christi", + "2049-08-15": "Assumption of the Virgin Mary", + "2049-11-01": "All Saints' Day", + "2049-11-11": "National Independence Day", + "2049-12-25": "Christmas (Day 1)", + "2049-12-26": "Christmas (Day 2)", + "2050-01-01": "New Year's Day", + "2050-01-06": "Epiphany", + "2050-04-10": "Easter Sunday", + "2050-04-11": "Easter Monday", + "2050-05-01": "National Day", + "2050-05-03": "National Day of the Third of May", + "2050-05-29": "Pentecost", + "2050-06-09": "Corpus Christi", + "2050-08-15": "Assumption of the Virgin Mary", + "2050-11-01": "All Saints' Day", + "2050-11-11": "National Independence Day", + "2050-12-25": "Christmas (Day 1)", + "2050-12-26": "Christmas (Day 2)" +} diff --git a/snapshots/countries/PR.json b/snapshots/countries/PR.json new file mode 100644 index 000000000..722a66bd2 --- /dev/null +++ b/snapshots/countries/PR.json @@ -0,0 +1,1678 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-02": "New Year's Day (Observed)", + "1950-01-06": "Epiphany", + "1950-02-20": "Presidents' Day", + "1950-03-22": "Emancipation Day", + "1950-04-07": "Good Friday", + "1950-05-30": "Memorial Day", + "1950-07-04": "Independence Day", + "1950-07-25": "Constitution Day", + "1950-09-04": "Labor Day", + "1950-10-12": "Columbus Day", + "1950-11-10": "Armistice Day (Observed)", + "1950-11-11": "Armistice Day", + "1950-11-19": "Discovery Day", + "1950-11-20": "Discovery Day (Observed)", + "1950-11-23": "Thanksgiving", + "1950-12-25": "Christmas Day", + "1951-01-01": "New Year's Day", + "1951-01-06": "Epiphany", + "1951-02-19": "Presidents' Day", + "1951-03-22": "Emancipation Day", + "1951-03-23": "Good Friday", + "1951-05-30": "Memorial Day", + "1951-07-04": "Independence Day", + "1951-07-25": "Constitution Day", + "1951-09-03": "Labor Day", + "1951-10-12": "Columbus Day", + "1951-11-11": "Armistice Day", + "1951-11-12": "Armistice Day (Observed)", + "1951-11-19": "Discovery Day", + "1951-11-22": "Thanksgiving", + "1951-12-25": "Christmas Day", + "1952-01-01": "New Year's Day", + "1952-01-06": "Epiphany", + "1952-02-18": "Presidents' Day", + "1952-03-22": "Emancipation Day", + "1952-04-11": "Good Friday", + "1952-05-30": "Memorial Day", + "1952-07-04": "Independence Day", + "1952-07-25": "Constitution Day", + "1952-09-01": "Labor Day", + "1952-10-12": "Columbus Day", + "1952-11-11": "Armistice Day", + "1952-11-19": "Discovery Day", + "1952-11-27": "Thanksgiving", + "1952-12-25": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-01-06": "Epiphany", + "1953-02-16": "Presidents' Day", + "1953-03-22": "Emancipation Day", + "1953-03-23": "Emancipation Day (Observed)", + "1953-04-03": "Good Friday", + "1953-05-30": "Memorial Day", + "1953-07-03": "Independence Day (Observed)", + "1953-07-04": "Independence Day", + "1953-07-25": "Constitution Day", + "1953-09-07": "Labor Day", + "1953-10-12": "Columbus Day", + "1953-11-11": "Armistice Day", + "1953-11-19": "Discovery Day", + "1953-11-26": "Thanksgiving", + "1953-12-25": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-01-06": "Epiphany", + "1954-02-15": "Presidents' Day", + "1954-03-22": "Emancipation Day", + "1954-04-16": "Good Friday", + "1954-05-30": "Memorial Day", + "1954-07-04": "Independence Day", + "1954-07-05": "Independence Day (Observed)", + "1954-07-25": "Constitution Day", + "1954-07-26": "Constitution Day (Observed)", + "1954-09-06": "Labor Day", + "1954-10-12": "Columbus Day", + "1954-11-11": "Veterans Day", + "1954-11-19": "Discovery Day", + "1954-11-25": "Thanksgiving", + "1954-12-24": "Christmas Day (Observed)", + "1954-12-25": "Christmas Day", + "1954-12-31": "New Year's Day (Observed)", + "1955-01-01": "New Year's Day", + "1955-01-06": "Epiphany", + "1955-02-21": "Presidents' Day", + "1955-03-22": "Emancipation Day", + "1955-04-08": "Good Friday", + "1955-05-30": "Memorial Day", + "1955-07-04": "Independence Day", + "1955-07-25": "Constitution Day", + "1955-09-05": "Labor Day", + "1955-10-12": "Columbus Day", + "1955-11-11": "Veterans Day", + "1955-11-19": "Discovery Day", + "1955-11-24": "Thanksgiving", + "1955-12-25": "Christmas Day", + "1955-12-26": "Christmas Day (Observed)", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year's Day (Observed)", + "1956-01-06": "Epiphany", + "1956-02-20": "Presidents' Day", + "1956-03-22": "Emancipation Day", + "1956-03-30": "Good Friday", + "1956-05-30": "Memorial Day", + "1956-07-04": "Independence Day", + "1956-07-25": "Constitution Day", + "1956-09-03": "Labor Day", + "1956-10-12": "Columbus Day", + "1956-11-11": "Veterans Day", + "1956-11-12": "Veterans Day (Observed)", + "1956-11-19": "Discovery Day", + "1956-11-22": "Thanksgiving", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-01-06": "Epiphany", + "1957-02-18": "Presidents' Day", + "1957-03-22": "Emancipation Day", + "1957-04-19": "Good Friday", + "1957-05-30": "Memorial Day", + "1957-07-04": "Independence Day", + "1957-07-25": "Constitution Day", + "1957-09-02": "Labor Day", + "1957-10-12": "Columbus Day", + "1957-11-11": "Veterans Day", + "1957-11-19": "Discovery Day", + "1957-11-28": "Thanksgiving", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-01-06": "Epiphany", + "1958-02-17": "Presidents' Day", + "1958-03-22": "Emancipation Day", + "1958-04-04": "Good Friday", + "1958-05-30": "Memorial Day", + "1958-07-04": "Independence Day", + "1958-07-25": "Constitution Day", + "1958-09-01": "Labor Day", + "1958-10-12": "Columbus Day", + "1958-11-11": "Veterans Day", + "1958-11-19": "Discovery Day", + "1958-11-27": "Thanksgiving", + "1958-12-25": "Christmas Day", + "1959-01-01": "New Year's Day", + "1959-01-06": "Epiphany", + "1959-02-16": "Presidents' Day", + "1959-03-22": "Emancipation Day", + "1959-03-23": "Emancipation Day (Observed)", + "1959-03-27": "Good Friday", + "1959-05-30": "Memorial Day", + "1959-07-03": "Independence Day (Observed)", + "1959-07-04": "Independence Day", + "1959-07-25": "Constitution Day", + "1959-09-07": "Labor Day", + "1959-10-12": "Columbus Day", + "1959-11-11": "Veterans Day", + "1959-11-19": "Discovery Day", + "1959-11-26": "Thanksgiving", + "1959-12-25": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-01-06": "Epiphany", + "1960-02-15": "Presidents' Day", + "1960-03-22": "Emancipation Day", + "1960-04-15": "Good Friday", + "1960-05-30": "Memorial Day", + "1960-07-04": "Independence Day", + "1960-07-25": "Constitution Day", + "1960-09-05": "Labor Day", + "1960-10-12": "Columbus Day", + "1960-11-11": "Veterans Day", + "1960-11-19": "Discovery Day", + "1960-11-24": "Thanksgiving", + "1960-12-25": "Christmas Day", + "1960-12-26": "Christmas Day (Observed)", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day (Observed)", + "1961-01-06": "Epiphany", + "1961-02-20": "Presidents' Day", + "1961-03-22": "Emancipation Day", + "1961-03-31": "Good Friday", + "1961-05-30": "Memorial Day", + "1961-07-04": "Independence Day", + "1961-07-25": "Constitution Day", + "1961-09-04": "Labor Day", + "1961-10-12": "Columbus Day", + "1961-11-10": "Veterans Day (Observed)", + "1961-11-11": "Veterans Day", + "1961-11-19": "Discovery Day", + "1961-11-20": "Discovery Day (Observed)", + "1961-11-23": "Thanksgiving", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-01-06": "Epiphany", + "1962-02-19": "Presidents' Day", + "1962-03-22": "Emancipation Day", + "1962-04-20": "Good Friday", + "1962-05-30": "Memorial Day", + "1962-07-04": "Independence Day", + "1962-07-25": "Constitution Day", + "1962-09-03": "Labor Day", + "1962-10-12": "Columbus Day", + "1962-11-11": "Veterans Day", + "1962-11-12": "Veterans Day (Observed)", + "1962-11-19": "Discovery Day", + "1962-11-22": "Thanksgiving", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-01-06": "Epiphany", + "1963-02-18": "Presidents' Day", + "1963-03-22": "Emancipation Day", + "1963-04-12": "Good Friday", + "1963-05-30": "Memorial Day", + "1963-07-04": "Independence Day", + "1963-07-25": "Constitution Day", + "1963-09-02": "Labor Day", + "1963-10-12": "Columbus Day", + "1963-11-11": "Veterans Day", + "1963-11-19": "Discovery Day", + "1963-11-28": "Thanksgiving", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-01-06": "Epiphany", + "1964-02-17": "Presidents' Day", + "1964-03-22": "Emancipation Day", + "1964-03-23": "Emancipation Day (Observed)", + "1964-03-27": "Good Friday", + "1964-05-30": "Memorial Day", + "1964-07-03": "Independence Day (Observed)", + "1964-07-04": "Independence Day", + "1964-07-25": "Constitution Day", + "1964-09-07": "Labor Day", + "1964-10-12": "Columbus Day", + "1964-11-11": "Veterans Day", + "1964-11-19": "Discovery Day", + "1964-11-26": "Thanksgiving", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-01-06": "Epiphany", + "1965-02-15": "Presidents' Day", + "1965-03-22": "Emancipation Day", + "1965-04-16": "Good Friday", + "1965-05-30": "Memorial Day", + "1965-07-04": "Independence Day", + "1965-07-05": "Independence Day (Observed)", + "1965-07-25": "Constitution Day", + "1965-07-26": "Constitution Day (Observed)", + "1965-09-06": "Labor Day", + "1965-10-12": "Columbus Day", + "1965-11-11": "Veterans Day", + "1965-11-19": "Discovery Day", + "1965-11-25": "Thanksgiving", + "1965-12-24": "Christmas Day (Observed)", + "1965-12-25": "Christmas Day", + "1965-12-31": "New Year's Day (Observed)", + "1966-01-01": "New Year's Day", + "1966-01-06": "Epiphany", + "1966-02-21": "Presidents' Day", + "1966-03-22": "Emancipation Day", + "1966-04-08": "Good Friday", + "1966-05-30": "Memorial Day", + "1966-07-04": "Independence Day", + "1966-07-25": "Constitution Day", + "1966-09-05": "Labor Day", + "1966-10-12": "Columbus Day", + "1966-11-11": "Veterans Day", + "1966-11-19": "Discovery Day", + "1966-11-24": "Thanksgiving", + "1966-12-25": "Christmas Day", + "1966-12-26": "Christmas Day (Observed)", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day (Observed)", + "1967-01-06": "Epiphany", + "1967-02-20": "Presidents' Day", + "1967-03-22": "Emancipation Day", + "1967-03-24": "Good Friday", + "1967-05-30": "Memorial Day", + "1967-07-04": "Independence Day", + "1967-07-25": "Constitution Day", + "1967-09-04": "Labor Day", + "1967-10-12": "Columbus Day", + "1967-11-10": "Veterans Day (Observed)", + "1967-11-11": "Veterans Day", + "1967-11-19": "Discovery Day", + "1967-11-20": "Discovery Day (Observed)", + "1967-11-23": "Thanksgiving", + "1967-12-25": "Christmas Day", + "1968-01-01": "New Year's Day", + "1968-01-06": "Epiphany", + "1968-02-19": "Presidents' Day", + "1968-03-22": "Emancipation Day", + "1968-04-12": "Good Friday", + "1968-05-30": "Memorial Day", + "1968-07-04": "Independence Day", + "1968-07-25": "Constitution Day", + "1968-09-02": "Labor Day", + "1968-10-12": "Columbus Day", + "1968-11-11": "Veterans Day", + "1968-11-19": "Discovery Day", + "1968-11-28": "Thanksgiving", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-01-06": "Epiphany", + "1969-02-17": "Presidents' Day", + "1969-03-22": "Emancipation Day", + "1969-04-04": "Good Friday", + "1969-05-30": "Memorial Day", + "1969-07-04": "Independence Day", + "1969-07-25": "Constitution Day", + "1969-09-01": "Labor Day", + "1969-10-12": "Columbus Day", + "1969-11-11": "Veterans Day", + "1969-11-19": "Discovery Day", + "1969-11-27": "Thanksgiving", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-01-06": "Epiphany", + "1970-02-16": "Presidents' Day", + "1970-03-22": "Emancipation Day", + "1970-03-23": "Emancipation Day (Observed)", + "1970-03-27": "Good Friday", + "1970-05-30": "Memorial Day", + "1970-07-03": "Independence Day (Observed)", + "1970-07-04": "Independence Day", + "1970-07-25": "Constitution Day", + "1970-09-07": "Labor Day", + "1970-10-12": "Columbus Day", + "1970-11-11": "Veterans Day", + "1970-11-19": "Discovery Day", + "1970-11-26": "Thanksgiving", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-01-06": "Epiphany", + "1971-02-15": "Presidents' Day", + "1971-03-22": "Emancipation Day", + "1971-04-09": "Good Friday", + "1971-05-31": "Memorial Day", + "1971-07-04": "Independence Day", + "1971-07-05": "Independence Day (Observed)", + "1971-07-25": "Constitution Day", + "1971-07-26": "Constitution Day (Observed)", + "1971-09-06": "Labor Day", + "1971-10-11": "Columbus Day", + "1971-10-25": "Veterans Day", + "1971-11-19": "Discovery Day", + "1971-11-25": "Thanksgiving", + "1971-12-24": "Christmas Day (Observed)", + "1971-12-25": "Christmas Day", + "1971-12-31": "New Year's Day (Observed)", + "1972-01-01": "New Year's Day", + "1972-01-06": "Epiphany", + "1972-02-21": "Presidents' Day", + "1972-03-22": "Emancipation Day", + "1972-03-31": "Good Friday", + "1972-05-29": "Memorial Day", + "1972-07-04": "Independence Day", + "1972-07-25": "Constitution Day", + "1972-09-04": "Labor Day", + "1972-10-09": "Columbus Day", + "1972-10-23": "Veterans Day", + "1972-11-19": "Discovery Day", + "1972-11-20": "Discovery Day (Observed)", + "1972-11-23": "Thanksgiving", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-01-06": "Epiphany", + "1973-02-19": "Presidents' Day", + "1973-03-22": "Emancipation Day", + "1973-04-20": "Good Friday", + "1973-05-28": "Memorial Day", + "1973-07-04": "Independence Day", + "1973-07-25": "Constitution Day", + "1973-09-03": "Labor Day", + "1973-10-08": "Columbus Day", + "1973-10-22": "Veterans Day", + "1973-11-19": "Discovery Day", + "1973-11-22": "Thanksgiving", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-01-06": "Epiphany", + "1974-02-18": "Presidents' Day", + "1974-03-22": "Emancipation Day", + "1974-04-12": "Good Friday", + "1974-05-27": "Memorial Day", + "1974-07-04": "Independence Day", + "1974-07-25": "Constitution Day", + "1974-09-02": "Labor Day", + "1974-10-14": "Columbus Day", + "1974-10-28": "Veterans Day", + "1974-11-19": "Discovery Day", + "1974-11-28": "Thanksgiving", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-01-06": "Epiphany", + "1975-02-17": "Presidents' Day", + "1975-03-22": "Emancipation Day", + "1975-03-28": "Good Friday", + "1975-05-26": "Memorial Day", + "1975-07-04": "Independence Day", + "1975-07-25": "Constitution Day", + "1975-09-01": "Labor Day", + "1975-10-13": "Columbus Day", + "1975-10-27": "Veterans Day", + "1975-11-19": "Discovery Day", + "1975-11-27": "Thanksgiving", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-01-06": "Epiphany", + "1976-02-16": "Presidents' Day", + "1976-03-22": "Emancipation Day", + "1976-04-16": "Good Friday", + "1976-05-31": "Memorial Day", + "1976-07-04": "Independence Day", + "1976-07-05": "Independence Day (Observed)", + "1976-07-25": "Constitution Day", + "1976-07-26": "Constitution Day (Observed)", + "1976-09-06": "Labor Day", + "1976-10-11": "Columbus Day", + "1976-10-25": "Veterans Day", + "1976-11-19": "Discovery Day", + "1976-11-25": "Thanksgiving", + "1976-12-24": "Christmas Day (Observed)", + "1976-12-25": "Christmas Day", + "1976-12-31": "New Year's Day (Observed)", + "1977-01-01": "New Year's Day", + "1977-01-06": "Epiphany", + "1977-02-21": "Presidents' Day", + "1977-03-22": "Emancipation Day", + "1977-04-08": "Good Friday", + "1977-05-30": "Memorial Day", + "1977-07-04": "Independence Day", + "1977-07-25": "Constitution Day", + "1977-09-05": "Labor Day", + "1977-10-10": "Columbus Day", + "1977-10-24": "Veterans Day", + "1977-11-19": "Discovery Day", + "1977-11-24": "Thanksgiving", + "1977-12-25": "Christmas Day", + "1977-12-26": "Christmas Day (Observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day (Observed)", + "1978-01-06": "Epiphany", + "1978-02-20": "Presidents' Day", + "1978-03-22": "Emancipation Day", + "1978-03-24": "Good Friday", + "1978-05-29": "Memorial Day", + "1978-07-04": "Independence Day", + "1978-07-25": "Constitution Day", + "1978-09-04": "Labor Day", + "1978-10-09": "Columbus Day", + "1978-11-10": "Veterans Day (Observed)", + "1978-11-11": "Veterans Day", + "1978-11-19": "Discovery Day", + "1978-11-20": "Discovery Day (Observed)", + "1978-11-23": "Thanksgiving", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-01-06": "Epiphany", + "1979-02-19": "Presidents' Day", + "1979-03-22": "Emancipation Day", + "1979-04-13": "Good Friday", + "1979-05-28": "Memorial Day", + "1979-07-04": "Independence Day", + "1979-07-25": "Constitution Day", + "1979-09-03": "Labor Day", + "1979-10-08": "Columbus Day", + "1979-11-11": "Veterans Day", + "1979-11-12": "Veterans Day (Observed)", + "1979-11-19": "Discovery Day", + "1979-11-22": "Thanksgiving", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-01-06": "Epiphany", + "1980-02-18": "Presidents' Day", + "1980-03-22": "Emancipation Day", + "1980-04-04": "Good Friday", + "1980-05-26": "Memorial Day", + "1980-07-04": "Independence Day", + "1980-07-25": "Constitution Day", + "1980-09-01": "Labor Day", + "1980-10-13": "Columbus Day", + "1980-11-11": "Veterans Day", + "1980-11-19": "Discovery Day", + "1980-11-27": "Thanksgiving", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-01-06": "Epiphany", + "1981-02-16": "Presidents' Day", + "1981-03-22": "Emancipation Day", + "1981-03-23": "Emancipation Day (Observed)", + "1981-04-17": "Good Friday", + "1981-05-25": "Memorial Day", + "1981-07-03": "Independence Day (Observed)", + "1981-07-04": "Independence Day", + "1981-07-25": "Constitution Day", + "1981-09-07": "Labor Day", + "1981-10-12": "Columbus Day", + "1981-11-11": "Veterans Day", + "1981-11-19": "Discovery Day", + "1981-11-26": "Thanksgiving", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-01-06": "Epiphany", + "1982-02-15": "Presidents' Day", + "1982-03-22": "Emancipation Day", + "1982-04-09": "Good Friday", + "1982-05-31": "Memorial Day", + "1982-07-04": "Independence Day", + "1982-07-05": "Independence Day (Observed)", + "1982-07-25": "Constitution Day", + "1982-07-26": "Constitution Day (Observed)", + "1982-09-06": "Labor Day", + "1982-10-11": "Columbus Day", + "1982-11-11": "Veterans Day", + "1982-11-19": "Discovery Day", + "1982-11-25": "Thanksgiving", + "1982-12-24": "Christmas Day (Observed)", + "1982-12-25": "Christmas Day", + "1982-12-31": "New Year's Day (Observed)", + "1983-01-01": "New Year's Day", + "1983-01-06": "Epiphany", + "1983-02-21": "Presidents' Day", + "1983-03-22": "Emancipation Day", + "1983-04-01": "Good Friday", + "1983-05-30": "Memorial Day", + "1983-07-04": "Independence Day", + "1983-07-25": "Constitution Day", + "1983-09-05": "Labor Day", + "1983-10-10": "Columbus Day", + "1983-11-11": "Veterans Day", + "1983-11-19": "Discovery Day", + "1983-11-24": "Thanksgiving", + "1983-12-25": "Christmas Day", + "1983-12-26": "Christmas Day (Observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (Observed)", + "1984-01-06": "Epiphany", + "1984-02-20": "Presidents' Day", + "1984-03-22": "Emancipation Day", + "1984-04-20": "Good Friday", + "1984-05-28": "Memorial Day", + "1984-07-04": "Independence Day", + "1984-07-25": "Constitution Day", + "1984-09-03": "Labor Day", + "1984-10-08": "Columbus Day", + "1984-11-11": "Veterans Day", + "1984-11-12": "Veterans Day (Observed)", + "1984-11-19": "Discovery Day", + "1984-11-22": "Thanksgiving", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-01-06": "Epiphany", + "1985-02-18": "Presidents' Day", + "1985-03-22": "Emancipation Day", + "1985-04-05": "Good Friday", + "1985-05-27": "Memorial Day", + "1985-07-04": "Independence Day", + "1985-07-25": "Constitution Day", + "1985-09-02": "Labor Day", + "1985-10-14": "Columbus Day", + "1985-11-11": "Veterans Day", + "1985-11-19": "Discovery Day", + "1985-11-28": "Thanksgiving", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-01-06": "Epiphany", + "1986-01-20": "Martin Luther King Jr. Day", + "1986-02-17": "Presidents' Day", + "1986-03-22": "Emancipation Day", + "1986-03-28": "Good Friday", + "1986-05-26": "Memorial Day", + "1986-07-04": "Independence Day", + "1986-07-25": "Constitution Day", + "1986-09-01": "Labor Day", + "1986-10-13": "Columbus Day", + "1986-11-11": "Veterans Day", + "1986-11-19": "Discovery Day", + "1986-11-27": "Thanksgiving", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-01-06": "Epiphany", + "1987-01-19": "Martin Luther King Jr. Day", + "1987-02-16": "Presidents' Day", + "1987-03-22": "Emancipation Day", + "1987-03-23": "Emancipation Day (Observed)", + "1987-04-17": "Good Friday", + "1987-05-25": "Memorial Day", + "1987-07-03": "Independence Day (Observed)", + "1987-07-04": "Independence Day", + "1987-07-25": "Constitution Day", + "1987-09-07": "Labor Day", + "1987-10-12": "Columbus Day", + "1987-11-11": "Veterans Day", + "1987-11-19": "Discovery Day", + "1987-11-26": "Thanksgiving", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-01-06": "Epiphany", + "1988-01-18": "Martin Luther King Jr. Day", + "1988-02-15": "Presidents' Day", + "1988-03-22": "Emancipation Day", + "1988-04-01": "Good Friday", + "1988-05-30": "Memorial Day", + "1988-07-04": "Independence Day", + "1988-07-25": "Constitution Day", + "1988-09-05": "Labor Day", + "1988-10-10": "Columbus Day", + "1988-11-11": "Veterans Day", + "1988-11-19": "Discovery Day", + "1988-11-24": "Thanksgiving", + "1988-12-25": "Christmas Day", + "1988-12-26": "Christmas Day (Observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (Observed)", + "1989-01-06": "Epiphany", + "1989-01-16": "Martin Luther King Jr. Day", + "1989-02-20": "Presidents' Day", + "1989-03-22": "Emancipation Day", + "1989-03-24": "Good Friday", + "1989-05-29": "Memorial Day", + "1989-07-04": "Independence Day", + "1989-07-25": "Constitution Day", + "1989-09-04": "Labor Day", + "1989-10-09": "Columbus Day", + "1989-11-10": "Veterans Day (Observed)", + "1989-11-11": "Veterans Day", + "1989-11-19": "Discovery Day", + "1989-11-20": "Discovery Day (Observed)", + "1989-11-23": "Thanksgiving", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-01-06": "Epiphany", + "1990-01-15": "Martin Luther King Jr. Day", + "1990-02-19": "Presidents' Day", + "1990-03-22": "Emancipation Day", + "1990-04-13": "Good Friday", + "1990-05-28": "Memorial Day", + "1990-07-04": "Independence Day", + "1990-07-25": "Constitution Day", + "1990-09-03": "Labor Day", + "1990-10-08": "Columbus Day", + "1990-11-11": "Veterans Day", + "1990-11-12": "Veterans Day (Observed)", + "1990-11-19": "Discovery Day", + "1990-11-22": "Thanksgiving", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-01-06": "Epiphany", + "1991-01-21": "Martin Luther King Jr. Day", + "1991-02-18": "Presidents' Day", + "1991-03-22": "Emancipation Day", + "1991-03-29": "Good Friday", + "1991-05-27": "Memorial Day", + "1991-07-04": "Independence Day", + "1991-07-25": "Constitution Day", + "1991-09-02": "Labor Day", + "1991-10-14": "Columbus Day", + "1991-11-11": "Veterans Day", + "1991-11-19": "Discovery Day", + "1991-11-28": "Thanksgiving", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-01-06": "Epiphany", + "1992-01-20": "Martin Luther King Jr. Day", + "1992-02-17": "Presidents' Day", + "1992-03-22": "Emancipation Day", + "1992-03-23": "Emancipation Day (Observed)", + "1992-04-17": "Good Friday", + "1992-05-25": "Memorial Day", + "1992-07-03": "Independence Day (Observed)", + "1992-07-04": "Independence Day", + "1992-07-25": "Constitution Day", + "1992-09-07": "Labor Day", + "1992-10-12": "Columbus Day", + "1992-11-11": "Veterans Day", + "1992-11-19": "Discovery Day", + "1992-11-26": "Thanksgiving", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-01-06": "Epiphany", + "1993-01-18": "Martin Luther King Jr. Day", + "1993-02-15": "Presidents' Day", + "1993-03-22": "Emancipation Day", + "1993-04-09": "Good Friday", + "1993-05-31": "Memorial Day", + "1993-07-04": "Independence Day", + "1993-07-05": "Independence Day (Observed)", + "1993-07-25": "Constitution Day", + "1993-07-26": "Constitution Day (Observed)", + "1993-09-06": "Labor Day", + "1993-10-11": "Columbus Day", + "1993-11-11": "Veterans Day", + "1993-11-19": "Discovery Day", + "1993-11-25": "Thanksgiving", + "1993-12-24": "Christmas Day (Observed)", + "1993-12-25": "Christmas Day", + "1993-12-31": "New Year's Day (Observed)", + "1994-01-01": "New Year's Day", + "1994-01-06": "Epiphany", + "1994-01-17": "Martin Luther King Jr. Day", + "1994-02-21": "Presidents' Day", + "1994-03-22": "Emancipation Day", + "1994-04-01": "Good Friday", + "1994-05-30": "Memorial Day", + "1994-07-04": "Independence Day", + "1994-07-25": "Constitution Day", + "1994-09-05": "Labor Day", + "1994-10-10": "Columbus Day", + "1994-11-11": "Veterans Day", + "1994-11-19": "Discovery Day", + "1994-11-24": "Thanksgiving", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day (Observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (Observed)", + "1995-01-06": "Epiphany", + "1995-01-16": "Martin Luther King Jr. Day", + "1995-02-20": "Presidents' Day", + "1995-03-22": "Emancipation Day", + "1995-04-14": "Good Friday", + "1995-05-29": "Memorial Day", + "1995-07-04": "Independence Day", + "1995-07-25": "Constitution Day", + "1995-09-04": "Labor Day", + "1995-10-09": "Columbus Day", + "1995-11-10": "Veterans Day (Observed)", + "1995-11-11": "Veterans Day", + "1995-11-19": "Discovery Day", + "1995-11-20": "Discovery Day (Observed)", + "1995-11-23": "Thanksgiving", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-01-06": "Epiphany", + "1996-01-15": "Martin Luther King Jr. Day", + "1996-02-19": "Presidents' Day", + "1996-03-22": "Emancipation Day", + "1996-04-05": "Good Friday", + "1996-05-27": "Memorial Day", + "1996-07-04": "Independence Day", + "1996-07-25": "Constitution Day", + "1996-09-02": "Labor Day", + "1996-10-14": "Columbus Day", + "1996-11-11": "Veterans Day", + "1996-11-19": "Discovery Day", + "1996-11-28": "Thanksgiving", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-01-06": "Epiphany", + "1997-01-20": "Martin Luther King Jr. Day", + "1997-02-17": "Presidents' Day", + "1997-03-22": "Emancipation Day", + "1997-03-28": "Good Friday", + "1997-05-26": "Memorial Day", + "1997-07-04": "Independence Day", + "1997-07-25": "Constitution Day", + "1997-09-01": "Labor Day", + "1997-10-13": "Columbus Day", + "1997-11-11": "Veterans Day", + "1997-11-19": "Discovery Day", + "1997-11-27": "Thanksgiving", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-01-06": "Epiphany", + "1998-01-19": "Martin Luther King Jr. Day", + "1998-02-16": "Presidents' Day", + "1998-03-22": "Emancipation Day", + "1998-03-23": "Emancipation Day (Observed)", + "1998-04-10": "Good Friday", + "1998-05-25": "Memorial Day", + "1998-07-03": "Independence Day (Observed)", + "1998-07-04": "Independence Day", + "1998-07-25": "Constitution Day", + "1998-09-07": "Labor Day", + "1998-10-12": "Columbus Day", + "1998-11-11": "Veterans Day", + "1998-11-19": "Discovery Day", + "1998-11-26": "Thanksgiving", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-01-06": "Epiphany", + "1999-01-18": "Martin Luther King Jr. Day", + "1999-02-15": "Presidents' Day", + "1999-03-22": "Emancipation Day", + "1999-04-02": "Good Friday", + "1999-05-31": "Memorial Day", + "1999-07-04": "Independence Day", + "1999-07-05": "Independence Day (Observed)", + "1999-07-25": "Constitution Day", + "1999-07-26": "Constitution Day (Observed)", + "1999-09-06": "Labor Day", + "1999-10-11": "Columbus Day", + "1999-11-11": "Veterans Day", + "1999-11-19": "Discovery Day", + "1999-11-25": "Thanksgiving", + "1999-12-24": "Christmas Day (Observed)", + "1999-12-25": "Christmas Day", + "1999-12-31": "New Year's Day (Observed)", + "2000-01-01": "New Year's Day", + "2000-01-06": "Epiphany", + "2000-01-17": "Martin Luther King Jr. Day", + "2000-02-21": "Presidents' Day", + "2000-03-22": "Emancipation Day", + "2000-04-21": "Good Friday", + "2000-05-29": "Memorial Day", + "2000-07-04": "Independence Day", + "2000-07-25": "Constitution Day", + "2000-09-04": "Labor Day", + "2000-10-09": "Columbus Day", + "2000-11-10": "Veterans Day (Observed)", + "2000-11-11": "Veterans Day", + "2000-11-19": "Discovery Day", + "2000-11-20": "Discovery Day (Observed)", + "2000-11-23": "Thanksgiving", + "2000-12-25": "Christmas Day", + "2001-01-01": "New Year's Day", + "2001-01-06": "Epiphany", + "2001-01-15": "Martin Luther King Jr. Day", + "2001-02-19": "Presidents' Day", + "2001-03-22": "Emancipation Day", + "2001-04-13": "Good Friday", + "2001-05-28": "Memorial Day", + "2001-07-04": "Independence Day", + "2001-07-25": "Constitution Day", + "2001-09-03": "Labor Day", + "2001-10-08": "Columbus Day", + "2001-11-11": "Veterans Day", + "2001-11-12": "Veterans Day (Observed)", + "2001-11-19": "Discovery Day", + "2001-11-22": "Thanksgiving", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-01-06": "Epiphany", + "2002-01-21": "Martin Luther King Jr. Day", + "2002-02-18": "Presidents' Day", + "2002-03-22": "Emancipation Day", + "2002-03-29": "Good Friday", + "2002-05-27": "Memorial Day", + "2002-07-04": "Independence Day", + "2002-07-25": "Constitution Day", + "2002-09-02": "Labor Day", + "2002-10-14": "Columbus Day", + "2002-11-11": "Veterans Day", + "2002-11-19": "Discovery Day", + "2002-11-28": "Thanksgiving", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-01-06": "Epiphany", + "2003-01-20": "Martin Luther King Jr. Day", + "2003-02-17": "Presidents' Day", + "2003-03-22": "Emancipation Day", + "2003-04-18": "Good Friday", + "2003-05-26": "Memorial Day", + "2003-07-04": "Independence Day", + "2003-07-25": "Constitution Day", + "2003-09-01": "Labor Day", + "2003-10-13": "Columbus Day", + "2003-11-11": "Veterans Day", + "2003-11-19": "Discovery Day", + "2003-11-27": "Thanksgiving", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-01-06": "Epiphany", + "2004-01-19": "Martin Luther King Jr. Day", + "2004-02-16": "Presidents' Day", + "2004-03-22": "Emancipation Day", + "2004-04-09": "Good Friday", + "2004-05-31": "Memorial Day", + "2004-07-04": "Independence Day", + "2004-07-05": "Independence Day (Observed)", + "2004-07-25": "Constitution Day", + "2004-07-26": "Constitution Day (Observed)", + "2004-09-06": "Labor Day", + "2004-10-11": "Columbus Day", + "2004-11-11": "Veterans Day", + "2004-11-19": "Discovery Day", + "2004-11-25": "Thanksgiving", + "2004-12-24": "Christmas Day (Observed)", + "2004-12-25": "Christmas Day", + "2004-12-31": "New Year's Day (Observed)", + "2005-01-01": "New Year's Day", + "2005-01-06": "Epiphany", + "2005-01-17": "Martin Luther King Jr. Day", + "2005-02-21": "Presidents' Day", + "2005-03-22": "Emancipation Day", + "2005-03-25": "Good Friday", + "2005-05-30": "Memorial Day", + "2005-07-04": "Independence Day", + "2005-07-25": "Constitution Day", + "2005-09-05": "Labor Day", + "2005-10-10": "Columbus Day", + "2005-11-11": "Veterans Day", + "2005-11-19": "Discovery Day", + "2005-11-24": "Thanksgiving", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day (Observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (Observed)", + "2006-01-06": "Epiphany", + "2006-01-16": "Martin Luther King Jr. Day", + "2006-02-20": "Presidents' Day", + "2006-03-22": "Emancipation Day", + "2006-04-14": "Good Friday", + "2006-05-29": "Memorial Day", + "2006-07-04": "Independence Day", + "2006-07-25": "Constitution Day", + "2006-09-04": "Labor Day", + "2006-10-09": "Columbus Day", + "2006-11-10": "Veterans Day (Observed)", + "2006-11-11": "Veterans Day", + "2006-11-19": "Discovery Day", + "2006-11-20": "Discovery Day (Observed)", + "2006-11-23": "Thanksgiving", + "2006-12-25": "Christmas Day", + "2007-01-01": "New Year's Day", + "2007-01-06": "Epiphany", + "2007-01-15": "Martin Luther King Jr. Day", + "2007-02-19": "Presidents' Day", + "2007-03-22": "Emancipation Day", + "2007-04-06": "Good Friday", + "2007-05-28": "Memorial Day", + "2007-07-04": "Independence Day", + "2007-07-25": "Constitution Day", + "2007-09-03": "Labor Day", + "2007-10-08": "Columbus Day", + "2007-11-11": "Veterans Day", + "2007-11-12": "Veterans Day (Observed)", + "2007-11-19": "Discovery Day", + "2007-11-22": "Thanksgiving", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-01-06": "Epiphany", + "2008-01-21": "Martin Luther King Jr. Day", + "2008-02-18": "Presidents' Day", + "2008-03-21": "Good Friday", + "2008-03-22": "Emancipation Day", + "2008-05-26": "Memorial Day", + "2008-07-04": "Independence Day", + "2008-07-25": "Constitution Day", + "2008-09-01": "Labor Day", + "2008-10-13": "Columbus Day", + "2008-11-11": "Veterans Day", + "2008-11-19": "Discovery Day", + "2008-11-27": "Thanksgiving", + "2008-12-25": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-01-06": "Epiphany", + "2009-01-19": "Martin Luther King Jr. Day", + "2009-02-16": "Presidents' Day", + "2009-03-22": "Emancipation Day", + "2009-03-23": "Emancipation Day (Observed)", + "2009-04-10": "Good Friday", + "2009-05-25": "Memorial Day", + "2009-07-03": "Independence Day (Observed)", + "2009-07-04": "Independence Day", + "2009-07-25": "Constitution Day", + "2009-09-07": "Labor Day", + "2009-10-12": "Columbus Day", + "2009-11-11": "Veterans Day", + "2009-11-19": "Discovery Day", + "2009-11-26": "Thanksgiving", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-01-06": "Epiphany", + "2010-01-18": "Martin Luther King Jr. Day", + "2010-02-15": "Presidents' Day", + "2010-03-22": "Emancipation Day", + "2010-04-02": "Good Friday", + "2010-05-31": "Memorial Day", + "2010-07-04": "Independence Day", + "2010-07-05": "Independence Day (Observed)", + "2010-07-25": "Constitution Day", + "2010-07-26": "Constitution Day (Observed)", + "2010-09-06": "Labor Day", + "2010-10-11": "Columbus Day", + "2010-11-11": "Veterans Day", + "2010-11-19": "Discovery Day", + "2010-11-25": "Thanksgiving", + "2010-12-24": "Christmas Day (Observed)", + "2010-12-25": "Christmas Day", + "2010-12-31": "New Year's Day (Observed)", + "2011-01-01": "New Year's Day", + "2011-01-06": "Epiphany", + "2011-01-17": "Martin Luther King Jr. Day", + "2011-02-21": "Presidents' Day", + "2011-03-22": "Emancipation Day", + "2011-04-22": "Good Friday", + "2011-05-30": "Memorial Day", + "2011-07-04": "Independence Day", + "2011-07-25": "Constitution Day", + "2011-09-05": "Labor Day", + "2011-10-10": "Columbus Day", + "2011-11-11": "Veterans Day", + "2011-11-19": "Discovery Day", + "2011-11-24": "Thanksgiving", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day (Observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (Observed)", + "2012-01-06": "Epiphany", + "2012-01-16": "Martin Luther King Jr. Day", + "2012-02-20": "Presidents' Day", + "2012-03-22": "Emancipation Day", + "2012-04-06": "Good Friday", + "2012-05-28": "Memorial Day", + "2012-07-04": "Independence Day", + "2012-07-25": "Constitution Day", + "2012-09-03": "Labor Day", + "2012-10-08": "Columbus Day", + "2012-11-11": "Veterans Day", + "2012-11-12": "Veterans Day (Observed)", + "2012-11-19": "Discovery Day", + "2012-11-22": "Thanksgiving", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-01-06": "Epiphany", + "2013-01-21": "Martin Luther King Jr. Day", + "2013-02-18": "Presidents' Day", + "2013-03-22": "Emancipation Day", + "2013-03-29": "Good Friday", + "2013-05-27": "Memorial Day", + "2013-07-04": "Independence Day", + "2013-07-25": "Constitution Day", + "2013-09-02": "Labor Day", + "2013-10-14": "Columbus Day", + "2013-11-11": "Veterans Day", + "2013-11-19": "Discovery Day", + "2013-11-28": "Thanksgiving", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-06": "Epiphany", + "2014-01-20": "Martin Luther King Jr. Day", + "2014-02-17": "Presidents' Day", + "2014-03-22": "Emancipation Day", + "2014-04-18": "Good Friday", + "2014-05-26": "Memorial Day", + "2014-07-04": "Independence Day", + "2014-07-25": "Constitution Day", + "2014-09-01": "Labor Day", + "2014-10-13": "Columbus Day", + "2014-11-11": "Veterans Day", + "2014-11-19": "Discovery Day", + "2014-11-27": "Thanksgiving", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-01-06": "Epiphany", + "2015-01-19": "Martin Luther King Jr. Day", + "2015-02-16": "Presidents' Day", + "2015-03-22": "Emancipation Day", + "2015-03-23": "Emancipation Day (Observed)", + "2015-04-03": "Good Friday", + "2015-05-25": "Memorial Day", + "2015-07-03": "Independence Day (Observed)", + "2015-07-04": "Independence Day", + "2015-07-25": "Constitution Day", + "2015-09-07": "Labor Day", + "2015-10-12": "Columbus Day", + "2015-11-11": "Veterans Day", + "2015-11-19": "Discovery Day", + "2015-11-26": "Thanksgiving", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-01-06": "Epiphany", + "2016-01-18": "Martin Luther King Jr. Day", + "2016-02-15": "Presidents' Day", + "2016-03-22": "Emancipation Day", + "2016-03-25": "Good Friday", + "2016-05-30": "Memorial Day", + "2016-07-04": "Independence Day", + "2016-07-25": "Constitution Day", + "2016-09-05": "Labor Day", + "2016-10-10": "Columbus Day", + "2016-11-11": "Veterans Day", + "2016-11-19": "Discovery Day", + "2016-11-24": "Thanksgiving", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day (Observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (Observed)", + "2017-01-06": "Epiphany", + "2017-01-16": "Martin Luther King Jr. Day", + "2017-02-20": "Presidents' Day", + "2017-03-22": "Emancipation Day", + "2017-04-14": "Good Friday", + "2017-05-29": "Memorial Day", + "2017-07-04": "Independence Day", + "2017-07-25": "Constitution Day", + "2017-09-04": "Labor Day", + "2017-10-09": "Columbus Day", + "2017-11-10": "Veterans Day (Observed)", + "2017-11-11": "Veterans Day", + "2017-11-19": "Discovery Day", + "2017-11-20": "Discovery Day (Observed)", + "2017-11-23": "Thanksgiving", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-01-06": "Epiphany", + "2018-01-15": "Martin Luther King Jr. Day", + "2018-02-19": "Presidents' Day", + "2018-03-22": "Emancipation Day", + "2018-03-30": "Good Friday", + "2018-05-28": "Memorial Day", + "2018-07-04": "Independence Day", + "2018-07-25": "Constitution Day", + "2018-09-03": "Labor Day", + "2018-10-08": "Columbus Day", + "2018-11-11": "Veterans Day", + "2018-11-12": "Veterans Day (Observed)", + "2018-11-19": "Discovery Day", + "2018-11-22": "Thanksgiving", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-01-06": "Epiphany", + "2019-01-21": "Martin Luther King Jr. Day", + "2019-02-18": "Presidents' Day", + "2019-03-22": "Emancipation Day", + "2019-04-19": "Good Friday", + "2019-05-27": "Memorial Day", + "2019-07-04": "Independence Day", + "2019-07-25": "Constitution Day", + "2019-09-02": "Labor Day", + "2019-10-14": "Columbus Day", + "2019-11-11": "Veterans Day", + "2019-11-19": "Discovery Day", + "2019-11-28": "Thanksgiving", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-01-06": "Epiphany", + "2020-01-20": "Martin Luther King Jr. Day", + "2020-02-17": "Presidents' Day", + "2020-03-22": "Emancipation Day", + "2020-03-23": "Emancipation Day (Observed)", + "2020-04-10": "Good Friday", + "2020-05-25": "Memorial Day", + "2020-07-03": "Independence Day (Observed)", + "2020-07-04": "Independence Day", + "2020-07-25": "Constitution Day", + "2020-09-07": "Labor Day", + "2020-10-12": "Columbus Day", + "2020-11-11": "Veterans Day", + "2020-11-19": "Discovery Day", + "2020-11-26": "Thanksgiving", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-01-06": "Epiphany", + "2021-01-18": "Martin Luther King Jr. Day", + "2021-02-15": "Presidents' Day", + "2021-03-22": "Emancipation Day", + "2021-04-02": "Good Friday", + "2021-05-31": "Memorial Day", + "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-19": "Juneteenth National Independence Day", + "2021-07-04": "Independence Day", + "2021-07-05": "Independence Day (Observed)", + "2021-07-25": "Constitution Day", + "2021-07-26": "Constitution Day (Observed)", + "2021-09-06": "Labor Day", + "2021-10-11": "Columbus Day", + "2021-11-11": "Veterans Day", + "2021-11-19": "Discovery Day", + "2021-11-25": "Thanksgiving", + "2021-12-24": "Christmas Day (Observed)", + "2021-12-25": "Christmas Day", + "2021-12-31": "New Year's Day (Observed)", + "2022-01-01": "New Year's Day", + "2022-01-06": "Epiphany", + "2022-01-17": "Martin Luther King Jr. Day", + "2022-02-21": "Presidents' Day", + "2022-03-22": "Emancipation Day", + "2022-04-15": "Good Friday", + "2022-05-30": "Memorial Day", + "2022-06-19": "Juneteenth National Independence Day", + "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-07-04": "Independence Day", + "2022-07-25": "Constitution Day", + "2022-09-05": "Labor Day", + "2022-10-10": "Columbus Day", + "2022-11-11": "Veterans Day", + "2022-11-19": "Discovery Day", + "2022-11-24": "Thanksgiving", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day (Observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (Observed)", + "2023-01-06": "Epiphany", + "2023-01-16": "Martin Luther King Jr. Day", + "2023-02-20": "Presidents' Day", + "2023-03-22": "Emancipation Day", + "2023-04-07": "Good Friday", + "2023-05-29": "Memorial Day", + "2023-06-19": "Juneteenth National Independence Day", + "2023-07-04": "Independence Day", + "2023-07-25": "Constitution Day", + "2023-09-04": "Labor Day", + "2023-10-09": "Columbus Day", + "2023-11-10": "Veterans Day (Observed)", + "2023-11-11": "Veterans Day", + "2023-11-19": "Discovery Day", + "2023-11-20": "Discovery Day (Observed)", + "2023-11-23": "Thanksgiving", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-01-06": "Epiphany", + "2024-01-15": "Martin Luther King Jr. Day", + "2024-02-19": "Presidents' Day", + "2024-03-22": "Emancipation Day", + "2024-03-29": "Good Friday", + "2024-05-27": "Memorial Day", + "2024-06-19": "Juneteenth National Independence Day", + "2024-07-04": "Independence Day", + "2024-07-25": "Constitution Day", + "2024-09-02": "Labor Day", + "2024-10-14": "Columbus Day", + "2024-11-11": "Veterans Day", + "2024-11-19": "Discovery Day", + "2024-11-28": "Thanksgiving", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-01-06": "Epiphany", + "2025-01-20": "Martin Luther King Jr. Day", + "2025-02-17": "Presidents' Day", + "2025-03-22": "Emancipation Day", + "2025-04-18": "Good Friday", + "2025-05-26": "Memorial Day", + "2025-06-19": "Juneteenth National Independence Day", + "2025-07-04": "Independence Day", + "2025-07-25": "Constitution Day", + "2025-09-01": "Labor Day", + "2025-10-13": "Columbus Day", + "2025-11-11": "Veterans Day", + "2025-11-19": "Discovery Day", + "2025-11-27": "Thanksgiving", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-01-06": "Epiphany", + "2026-01-19": "Martin Luther King Jr. Day", + "2026-02-16": "Presidents' Day", + "2026-03-22": "Emancipation Day", + "2026-03-23": "Emancipation Day (Observed)", + "2026-04-03": "Good Friday", + "2026-05-25": "Memorial Day", + "2026-06-19": "Juneteenth National Independence Day", + "2026-07-03": "Independence Day (Observed)", + "2026-07-04": "Independence Day", + "2026-07-25": "Constitution Day", + "2026-09-07": "Labor Day", + "2026-10-12": "Columbus Day", + "2026-11-11": "Veterans Day", + "2026-11-19": "Discovery Day", + "2026-11-26": "Thanksgiving", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-01-06": "Epiphany", + "2027-01-18": "Martin Luther King Jr. Day", + "2027-02-15": "Presidents' Day", + "2027-03-22": "Emancipation Day", + "2027-03-26": "Good Friday", + "2027-05-31": "Memorial Day", + "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-19": "Juneteenth National Independence Day", + "2027-07-04": "Independence Day", + "2027-07-05": "Independence Day (Observed)", + "2027-07-25": "Constitution Day", + "2027-07-26": "Constitution Day (Observed)", + "2027-09-06": "Labor Day", + "2027-10-11": "Columbus Day", + "2027-11-11": "Veterans Day", + "2027-11-19": "Discovery Day", + "2027-11-25": "Thanksgiving", + "2027-12-24": "Christmas Day (Observed)", + "2027-12-25": "Christmas Day", + "2027-12-31": "New Year's Day (Observed)", + "2028-01-01": "New Year's Day", + "2028-01-06": "Epiphany", + "2028-01-17": "Martin Luther King Jr. Day", + "2028-02-21": "Presidents' Day", + "2028-03-22": "Emancipation Day", + "2028-04-14": "Good Friday", + "2028-05-29": "Memorial Day", + "2028-06-19": "Juneteenth National Independence Day", + "2028-07-04": "Independence Day", + "2028-07-25": "Constitution Day", + "2028-09-04": "Labor Day", + "2028-10-09": "Columbus Day", + "2028-11-10": "Veterans Day (Observed)", + "2028-11-11": "Veterans Day", + "2028-11-19": "Discovery Day", + "2028-11-20": "Discovery Day (Observed)", + "2028-11-23": "Thanksgiving", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-01-06": "Epiphany", + "2029-01-15": "Martin Luther King Jr. Day", + "2029-02-19": "Presidents' Day", + "2029-03-22": "Emancipation Day", + "2029-03-30": "Good Friday", + "2029-05-28": "Memorial Day", + "2029-06-19": "Juneteenth National Independence Day", + "2029-07-04": "Independence Day", + "2029-07-25": "Constitution Day", + "2029-09-03": "Labor Day", + "2029-10-08": "Columbus Day", + "2029-11-11": "Veterans Day", + "2029-11-12": "Veterans Day (Observed)", + "2029-11-19": "Discovery Day", + "2029-11-22": "Thanksgiving", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-01-06": "Epiphany", + "2030-01-21": "Martin Luther King Jr. Day", + "2030-02-18": "Presidents' Day", + "2030-03-22": "Emancipation Day", + "2030-04-19": "Good Friday", + "2030-05-27": "Memorial Day", + "2030-06-19": "Juneteenth National Independence Day", + "2030-07-04": "Independence Day", + "2030-07-25": "Constitution Day", + "2030-09-02": "Labor Day", + "2030-10-14": "Columbus Day", + "2030-11-11": "Veterans Day", + "2030-11-19": "Discovery Day", + "2030-11-28": "Thanksgiving", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-01-06": "Epiphany", + "2031-01-20": "Martin Luther King Jr. Day", + "2031-02-17": "Presidents' Day", + "2031-03-22": "Emancipation Day", + "2031-04-11": "Good Friday", + "2031-05-26": "Memorial Day", + "2031-06-19": "Juneteenth National Independence Day", + "2031-07-04": "Independence Day", + "2031-07-25": "Constitution Day", + "2031-09-01": "Labor Day", + "2031-10-13": "Columbus Day", + "2031-11-11": "Veterans Day", + "2031-11-19": "Discovery Day", + "2031-11-27": "Thanksgiving", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-01-06": "Epiphany", + "2032-01-19": "Martin Luther King Jr. Day", + "2032-02-16": "Presidents' Day", + "2032-03-22": "Emancipation Day", + "2032-03-26": "Good Friday", + "2032-05-31": "Memorial Day", + "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-19": "Juneteenth National Independence Day", + "2032-07-04": "Independence Day", + "2032-07-05": "Independence Day (Observed)", + "2032-07-25": "Constitution Day", + "2032-07-26": "Constitution Day (Observed)", + "2032-09-06": "Labor Day", + "2032-10-11": "Columbus Day", + "2032-11-11": "Veterans Day", + "2032-11-19": "Discovery Day", + "2032-11-25": "Thanksgiving", + "2032-12-24": "Christmas Day (Observed)", + "2032-12-25": "Christmas Day", + "2032-12-31": "New Year's Day (Observed)", + "2033-01-01": "New Year's Day", + "2033-01-06": "Epiphany", + "2033-01-17": "Martin Luther King Jr. Day", + "2033-02-21": "Presidents' Day", + "2033-03-22": "Emancipation Day", + "2033-04-15": "Good Friday", + "2033-05-30": "Memorial Day", + "2033-06-19": "Juneteenth National Independence Day", + "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-07-04": "Independence Day", + "2033-07-25": "Constitution Day", + "2033-09-05": "Labor Day", + "2033-10-10": "Columbus Day", + "2033-11-11": "Veterans Day", + "2033-11-19": "Discovery Day", + "2033-11-24": "Thanksgiving", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day (Observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-01-06": "Epiphany", + "2034-01-16": "Martin Luther King Jr. Day", + "2034-02-20": "Presidents' Day", + "2034-03-22": "Emancipation Day", + "2034-04-07": "Good Friday", + "2034-05-29": "Memorial Day", + "2034-06-19": "Juneteenth National Independence Day", + "2034-07-04": "Independence Day", + "2034-07-25": "Constitution Day", + "2034-09-04": "Labor Day", + "2034-10-09": "Columbus Day", + "2034-11-10": "Veterans Day (Observed)", + "2034-11-11": "Veterans Day", + "2034-11-19": "Discovery Day", + "2034-11-20": "Discovery Day (Observed)", + "2034-11-23": "Thanksgiving", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-01-06": "Epiphany", + "2035-01-15": "Martin Luther King Jr. Day", + "2035-02-19": "Presidents' Day", + "2035-03-22": "Emancipation Day", + "2035-03-23": "Good Friday", + "2035-05-28": "Memorial Day", + "2035-06-19": "Juneteenth National Independence Day", + "2035-07-04": "Independence Day", + "2035-07-25": "Constitution Day", + "2035-09-03": "Labor Day", + "2035-10-08": "Columbus Day", + "2035-11-11": "Veterans Day", + "2035-11-12": "Veterans Day (Observed)", + "2035-11-19": "Discovery Day", + "2035-11-22": "Thanksgiving", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-01-06": "Epiphany", + "2036-01-21": "Martin Luther King Jr. Day", + "2036-02-18": "Presidents' Day", + "2036-03-22": "Emancipation Day", + "2036-04-11": "Good Friday", + "2036-05-26": "Memorial Day", + "2036-06-19": "Juneteenth National Independence Day", + "2036-07-04": "Independence Day", + "2036-07-25": "Constitution Day", + "2036-09-01": "Labor Day", + "2036-10-13": "Columbus Day", + "2036-11-11": "Veterans Day", + "2036-11-19": "Discovery Day", + "2036-11-27": "Thanksgiving", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-06": "Epiphany", + "2037-01-19": "Martin Luther King Jr. Day", + "2037-02-16": "Presidents' Day", + "2037-03-22": "Emancipation Day", + "2037-03-23": "Emancipation Day (Observed)", + "2037-04-03": "Good Friday", + "2037-05-25": "Memorial Day", + "2037-06-19": "Juneteenth National Independence Day", + "2037-07-03": "Independence Day (Observed)", + "2037-07-04": "Independence Day", + "2037-07-25": "Constitution Day", + "2037-09-07": "Labor Day", + "2037-10-12": "Columbus Day", + "2037-11-11": "Veterans Day", + "2037-11-19": "Discovery Day", + "2037-11-26": "Thanksgiving", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-01-06": "Epiphany", + "2038-01-18": "Martin Luther King Jr. Day", + "2038-02-15": "Presidents' Day", + "2038-03-22": "Emancipation Day", + "2038-04-23": "Good Friday", + "2038-05-31": "Memorial Day", + "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-19": "Juneteenth National Independence Day", + "2038-07-04": "Independence Day", + "2038-07-05": "Independence Day (Observed)", + "2038-07-25": "Constitution Day", + "2038-07-26": "Constitution Day (Observed)", + "2038-09-06": "Labor Day", + "2038-10-11": "Columbus Day", + "2038-11-11": "Veterans Day", + "2038-11-19": "Discovery Day", + "2038-11-25": "Thanksgiving", + "2038-12-24": "Christmas Day (Observed)", + "2038-12-25": "Christmas Day", + "2038-12-31": "New Year's Day (Observed)", + "2039-01-01": "New Year's Day", + "2039-01-06": "Epiphany", + "2039-01-17": "Martin Luther King Jr. Day", + "2039-02-21": "Presidents' Day", + "2039-03-22": "Emancipation Day", + "2039-04-08": "Good Friday", + "2039-05-30": "Memorial Day", + "2039-06-19": "Juneteenth National Independence Day", + "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-07-04": "Independence Day", + "2039-07-25": "Constitution Day", + "2039-09-05": "Labor Day", + "2039-10-10": "Columbus Day", + "2039-11-11": "Veterans Day", + "2039-11-19": "Discovery Day", + "2039-11-24": "Thanksgiving", + "2039-12-25": "Christmas Day", + "2039-12-26": "Christmas Day (Observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (Observed)", + "2040-01-06": "Epiphany", + "2040-01-16": "Martin Luther King Jr. Day", + "2040-02-20": "Presidents' Day", + "2040-03-22": "Emancipation Day", + "2040-03-30": "Good Friday", + "2040-05-28": "Memorial Day", + "2040-06-19": "Juneteenth National Independence Day", + "2040-07-04": "Independence Day", + "2040-07-25": "Constitution Day", + "2040-09-03": "Labor Day", + "2040-10-08": "Columbus Day", + "2040-11-11": "Veterans Day", + "2040-11-12": "Veterans Day (Observed)", + "2040-11-19": "Discovery Day", + "2040-11-22": "Thanksgiving", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-01-06": "Epiphany", + "2041-01-21": "Martin Luther King Jr. Day", + "2041-02-18": "Presidents' Day", + "2041-03-22": "Emancipation Day", + "2041-04-19": "Good Friday", + "2041-05-27": "Memorial Day", + "2041-06-19": "Juneteenth National Independence Day", + "2041-07-04": "Independence Day", + "2041-07-25": "Constitution Day", + "2041-09-02": "Labor Day", + "2041-10-14": "Columbus Day", + "2041-11-11": "Veterans Day", + "2041-11-19": "Discovery Day", + "2041-11-28": "Thanksgiving", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-01-06": "Epiphany", + "2042-01-20": "Martin Luther King Jr. Day", + "2042-02-17": "Presidents' Day", + "2042-03-22": "Emancipation Day", + "2042-04-04": "Good Friday", + "2042-05-26": "Memorial Day", + "2042-06-19": "Juneteenth National Independence Day", + "2042-07-04": "Independence Day", + "2042-07-25": "Constitution Day", + "2042-09-01": "Labor Day", + "2042-10-13": "Columbus Day", + "2042-11-11": "Veterans Day", + "2042-11-19": "Discovery Day", + "2042-11-27": "Thanksgiving", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-01-06": "Epiphany", + "2043-01-19": "Martin Luther King Jr. Day", + "2043-02-16": "Presidents' Day", + "2043-03-22": "Emancipation Day", + "2043-03-23": "Emancipation Day (Observed)", + "2043-03-27": "Good Friday", + "2043-05-25": "Memorial Day", + "2043-06-19": "Juneteenth National Independence Day", + "2043-07-03": "Independence Day (Observed)", + "2043-07-04": "Independence Day", + "2043-07-25": "Constitution Day", + "2043-09-07": "Labor Day", + "2043-10-12": "Columbus Day", + "2043-11-11": "Veterans Day", + "2043-11-19": "Discovery Day", + "2043-11-26": "Thanksgiving", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-01-06": "Epiphany", + "2044-01-18": "Martin Luther King Jr. Day", + "2044-02-15": "Presidents' Day", + "2044-03-22": "Emancipation Day", + "2044-04-15": "Good Friday", + "2044-05-30": "Memorial Day", + "2044-06-19": "Juneteenth National Independence Day", + "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-07-04": "Independence Day", + "2044-07-25": "Constitution Day", + "2044-09-05": "Labor Day", + "2044-10-10": "Columbus Day", + "2044-11-11": "Veterans Day", + "2044-11-19": "Discovery Day", + "2044-11-24": "Thanksgiving", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day (Observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (Observed)", + "2045-01-06": "Epiphany", + "2045-01-16": "Martin Luther King Jr. Day", + "2045-02-20": "Presidents' Day", + "2045-03-22": "Emancipation Day", + "2045-04-07": "Good Friday", + "2045-05-29": "Memorial Day", + "2045-06-19": "Juneteenth National Independence Day", + "2045-07-04": "Independence Day", + "2045-07-25": "Constitution Day", + "2045-09-04": "Labor Day", + "2045-10-09": "Columbus Day", + "2045-11-10": "Veterans Day (Observed)", + "2045-11-11": "Veterans Day", + "2045-11-19": "Discovery Day", + "2045-11-20": "Discovery Day (Observed)", + "2045-11-23": "Thanksgiving", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-01-06": "Epiphany", + "2046-01-15": "Martin Luther King Jr. Day", + "2046-02-19": "Presidents' Day", + "2046-03-22": "Emancipation Day", + "2046-03-23": "Good Friday", + "2046-05-28": "Memorial Day", + "2046-06-19": "Juneteenth National Independence Day", + "2046-07-04": "Independence Day", + "2046-07-25": "Constitution Day", + "2046-09-03": "Labor Day", + "2046-10-08": "Columbus Day", + "2046-11-11": "Veterans Day", + "2046-11-12": "Veterans Day (Observed)", + "2046-11-19": "Discovery Day", + "2046-11-22": "Thanksgiving", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-06": "Epiphany", + "2047-01-21": "Martin Luther King Jr. Day", + "2047-02-18": "Presidents' Day", + "2047-03-22": "Emancipation Day", + "2047-04-12": "Good Friday", + "2047-05-27": "Memorial Day", + "2047-06-19": "Juneteenth National Independence Day", + "2047-07-04": "Independence Day", + "2047-07-25": "Constitution Day", + "2047-09-02": "Labor Day", + "2047-10-14": "Columbus Day", + "2047-11-11": "Veterans Day", + "2047-11-19": "Discovery Day", + "2047-11-28": "Thanksgiving", + "2047-12-25": "Christmas Day", + "2048-01-01": "New Year's Day", + "2048-01-06": "Epiphany", + "2048-01-20": "Martin Luther King Jr. Day", + "2048-02-17": "Presidents' Day", + "2048-03-22": "Emancipation Day", + "2048-03-23": "Emancipation Day (Observed)", + "2048-04-03": "Good Friday", + "2048-05-25": "Memorial Day", + "2048-06-19": "Juneteenth National Independence Day", + "2048-07-03": "Independence Day (Observed)", + "2048-07-04": "Independence Day", + "2048-07-25": "Constitution Day", + "2048-09-07": "Labor Day", + "2048-10-12": "Columbus Day", + "2048-11-11": "Veterans Day", + "2048-11-19": "Discovery Day", + "2048-11-26": "Thanksgiving", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-01-06": "Epiphany", + "2049-01-18": "Martin Luther King Jr. Day", + "2049-02-15": "Presidents' Day", + "2049-03-22": "Emancipation Day", + "2049-04-16": "Good Friday", + "2049-05-31": "Memorial Day", + "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-19": "Juneteenth National Independence Day", + "2049-07-04": "Independence Day", + "2049-07-05": "Independence Day (Observed)", + "2049-07-25": "Constitution Day", + "2049-07-26": "Constitution Day (Observed)", + "2049-09-06": "Labor Day", + "2049-10-11": "Columbus Day", + "2049-11-11": "Veterans Day", + "2049-11-19": "Discovery Day", + "2049-11-25": "Thanksgiving", + "2049-12-24": "Christmas Day (Observed)", + "2049-12-25": "Christmas Day", + "2049-12-31": "New Year's Day (Observed)", + "2050-01-01": "New Year's Day", + "2050-01-06": "Epiphany", + "2050-01-17": "Martin Luther King Jr. Day", + "2050-02-21": "Presidents' Day", + "2050-03-22": "Emancipation Day", + "2050-04-08": "Good Friday", + "2050-05-30": "Memorial Day", + "2050-06-19": "Juneteenth National Independence Day", + "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-07-04": "Independence Day", + "2050-07-25": "Constitution Day", + "2050-09-05": "Labor Day", + "2050-10-10": "Columbus Day", + "2050-11-11": "Veterans Day", + "2050-11-19": "Discovery Day", + "2050-11-24": "Thanksgiving", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day (Observed)" +} diff --git a/snapshots/countries/PT.json b/snapshots/countries/PT.json new file mode 100644 index 000000000..bfb9c182f --- /dev/null +++ b/snapshots/countries/PT.json @@ -0,0 +1,3381 @@ +{ + "1950-01-01": "New Year's Day", + "1950-02-20": "Carnival", + "1950-03-19": "St. Joseph's Day", + "1950-04-07": "Good Friday", + "1950-04-09": "Easter Sunday", + "1950-04-25": "Feast of Our Lady of M\u00e9rcoles", + "1950-05-12": "St. Joanna's Day", + "1950-05-18": "Ascension of Jesus", + "1950-05-22": "Municipal Holiday (Leiria)", + "1950-05-23": "Municipal Holiday (Portalegre)", + "1950-06-08": "Corpus Christi", + "1950-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", + "1950-06-13": "St. Anthony's Day", + "1950-06-24": "St. John's Day", + "1950-06-29": "St. Peter's Day", + "1950-07-04": "St. Elizabeth's Day", + "1950-08-15": "Assumption Day", + "1950-08-20": "Feast of Our Lady of Sorrows", + "1950-08-22": "Feast of Our Lady of Graces", + "1950-09-07": "Municipal Holiday (Faro)", + "1950-09-15": "Bocage Day", + "1950-09-21": "St. Matthew's Day", + "1950-10-05": "Republic Day", + "1950-11-01": "All Saints Day", + "1950-11-27": "Municipal Holiday (Guarda)", + "1950-12-01": "Restoration of Independence Day", + "1950-12-08": "Immaculate Conception", + "1950-12-24": "Christmas Eve", + "1950-12-25": "Christmas", + "1950-12-26": "Boxing Day", + "1950-12-31": "New Year's Eve", + "1951-01-01": "New Year's Day", + "1951-02-05": "Carnival", + "1951-03-19": "St. Joseph's Day", + "1951-03-23": "Good Friday", + "1951-03-25": "Easter Sunday", + "1951-04-10": "Feast of Our Lady of M\u00e9rcoles", + "1951-05-03": "Ascension of Jesus", + "1951-05-12": "St. Joanna's Day", + "1951-05-22": "Municipal Holiday (Leiria)", + "1951-05-23": "Municipal Holiday (Portalegre)", + "1951-05-24": "Corpus Christi", + "1951-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", + "1951-06-13": "St. Anthony's Day", + "1951-06-24": "St. John's Day", + "1951-06-29": "St. Peter's Day", + "1951-07-04": "St. Elizabeth's Day", + "1951-08-15": "Assumption Day", + "1951-08-20": "Feast of Our Lady of Sorrows", + "1951-08-22": "Feast of Our Lady of Graces", + "1951-09-07": "Municipal Holiday (Faro)", + "1951-09-15": "Bocage Day", + "1951-09-21": "St. Matthew's Day", + "1951-10-05": "Republic Day", + "1951-11-01": "All Saints Day", + "1951-11-27": "Municipal Holiday (Guarda)", + "1951-12-01": "Restoration of Independence Day", + "1951-12-08": "Immaculate Conception", + "1951-12-24": "Christmas Eve", + "1951-12-25": "Christmas", + "1951-12-26": "Boxing Day", + "1951-12-31": "New Year's Eve", + "1952-01-01": "New Year's Day", + "1952-02-25": "Carnival", + "1952-03-19": "St. Joseph's Day", + "1952-04-11": "Good Friday", + "1952-04-13": "Easter Sunday", + "1952-04-29": "Feast of Our Lady of M\u00e9rcoles", + "1952-05-12": "St. Joanna's Day", + "1952-05-22": "Ascension of Jesus; Municipal Holiday (Leiria)", + "1952-05-23": "Municipal Holiday (Portalegre)", + "1952-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", + "1952-06-12": "Corpus Christi", + "1952-06-13": "St. Anthony's Day", + "1952-06-24": "St. John's Day", + "1952-06-29": "St. Peter's Day", + "1952-07-04": "St. Elizabeth's Day", + "1952-08-15": "Assumption Day", + "1952-08-20": "Feast of Our Lady of Sorrows", + "1952-08-22": "Feast of Our Lady of Graces", + "1952-09-07": "Municipal Holiday (Faro)", + "1952-09-15": "Bocage Day", + "1952-09-21": "St. Matthew's Day", + "1952-10-05": "Republic Day", + "1952-11-01": "All Saints Day", + "1952-11-27": "Municipal Holiday (Guarda)", + "1952-12-01": "Restoration of Independence Day", + "1952-12-08": "Immaculate Conception", + "1952-12-24": "Christmas Eve", + "1952-12-25": "Christmas", + "1952-12-26": "Boxing Day", + "1952-12-31": "New Year's Eve", + "1953-01-01": "New Year's Day", + "1953-02-16": "Carnival", + "1953-03-19": "St. Joseph's Day", + "1953-04-03": "Good Friday", + "1953-04-05": "Easter Sunday", + "1953-04-21": "Feast of Our Lady of M\u00e9rcoles", + "1953-05-12": "St. Joanna's Day", + "1953-05-14": "Ascension of Jesus", + "1953-05-22": "Municipal Holiday (Leiria)", + "1953-05-23": "Municipal Holiday (Portalegre)", + "1953-06-04": "Corpus Christi", + "1953-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", + "1953-06-13": "St. Anthony's Day", + "1953-06-24": "St. John's Day", + "1953-06-29": "St. Peter's Day", + "1953-07-04": "St. Elizabeth's Day", + "1953-08-15": "Assumption Day", + "1953-08-20": "Feast of Our Lady of Sorrows", + "1953-08-22": "Feast of Our Lady of Graces", + "1953-09-07": "Municipal Holiday (Faro)", + "1953-09-15": "Bocage Day", + "1953-09-21": "St. Matthew's Day", + "1953-10-05": "Republic Day", + "1953-11-01": "All Saints Day", + "1953-11-27": "Municipal Holiday (Guarda)", + "1953-12-01": "Restoration of Independence Day", + "1953-12-08": "Immaculate Conception", + "1953-12-24": "Christmas Eve", + "1953-12-25": "Christmas", + "1953-12-26": "Boxing Day", + "1953-12-31": "New Year's Eve", + "1954-01-01": "New Year's Day", + "1954-03-01": "Carnival", + "1954-03-19": "St. Joseph's Day", + "1954-04-16": "Good Friday", + "1954-04-18": "Easter Sunday", + "1954-05-04": "Feast of Our Lady of M\u00e9rcoles", + "1954-05-12": "St. Joanna's Day", + "1954-05-22": "Municipal Holiday (Leiria)", + "1954-05-23": "Municipal Holiday (Portalegre)", + "1954-05-27": "Ascension of Jesus", + "1954-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", + "1954-06-13": "St. Anthony's Day", + "1954-06-17": "Corpus Christi", + "1954-06-24": "St. John's Day", + "1954-06-29": "St. Peter's Day", + "1954-07-04": "St. Elizabeth's Day", + "1954-08-15": "Assumption Day", + "1954-08-20": "Feast of Our Lady of Sorrows", + "1954-08-22": "Feast of Our Lady of Graces", + "1954-09-07": "Municipal Holiday (Faro)", + "1954-09-15": "Bocage Day", + "1954-09-21": "St. Matthew's Day", + "1954-10-05": "Republic Day", + "1954-11-01": "All Saints Day", + "1954-11-27": "Municipal Holiday (Guarda)", + "1954-12-01": "Restoration of Independence Day", + "1954-12-08": "Immaculate Conception", + "1954-12-24": "Christmas Eve", + "1954-12-25": "Christmas", + "1954-12-26": "Boxing Day", + "1954-12-31": "New Year's Eve", + "1955-01-01": "New Year's Day", + "1955-02-21": "Carnival", + "1955-03-19": "St. Joseph's Day", + "1955-04-08": "Good Friday", + "1955-04-10": "Easter Sunday", + "1955-04-26": "Feast of Our Lady of M\u00e9rcoles", + "1955-05-12": "St. Joanna's Day", + "1955-05-19": "Ascension of Jesus", + "1955-05-22": "Municipal Holiday (Leiria)", + "1955-05-23": "Municipal Holiday (Portalegre)", + "1955-06-09": "Corpus Christi", + "1955-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", + "1955-06-13": "St. Anthony's Day", + "1955-06-24": "St. John's Day", + "1955-06-29": "St. Peter's Day", + "1955-07-04": "St. Elizabeth's Day", + "1955-08-15": "Assumption Day", + "1955-08-20": "Feast of Our Lady of Sorrows", + "1955-08-22": "Feast of Our Lady of Graces", + "1955-09-07": "Municipal Holiday (Faro)", + "1955-09-15": "Bocage Day", + "1955-09-21": "St. Matthew's Day", + "1955-10-05": "Republic Day", + "1955-11-01": "All Saints Day", + "1955-11-27": "Municipal Holiday (Guarda)", + "1955-12-01": "Restoration of Independence Day", + "1955-12-08": "Immaculate Conception", + "1955-12-24": "Christmas Eve", + "1955-12-25": "Christmas", + "1955-12-26": "Boxing Day", + "1955-12-31": "New Year's Eve", + "1956-01-01": "New Year's Day", + "1956-02-13": "Carnival", + "1956-03-19": "St. Joseph's Day", + "1956-03-30": "Good Friday", + "1956-04-01": "Easter Sunday", + "1956-04-17": "Feast of Our Lady of M\u00e9rcoles", + "1956-05-10": "Ascension of Jesus", + "1956-05-12": "St. Joanna's Day", + "1956-05-22": "Municipal Holiday (Leiria)", + "1956-05-23": "Municipal Holiday (Portalegre)", + "1956-05-31": "Corpus Christi", + "1956-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", + "1956-06-13": "St. Anthony's Day", + "1956-06-24": "St. John's Day", + "1956-06-29": "St. Peter's Day", + "1956-07-04": "St. Elizabeth's Day", + "1956-08-15": "Assumption Day", + "1956-08-20": "Feast of Our Lady of Sorrows", + "1956-08-22": "Feast of Our Lady of Graces", + "1956-09-07": "Municipal Holiday (Faro)", + "1956-09-15": "Bocage Day", + "1956-09-21": "St. Matthew's Day", + "1956-10-05": "Republic Day", + "1956-11-01": "All Saints Day", + "1956-11-27": "Municipal Holiday (Guarda)", + "1956-12-01": "Restoration of Independence Day", + "1956-12-08": "Immaculate Conception", + "1956-12-24": "Christmas Eve", + "1956-12-25": "Christmas", + "1956-12-26": "Boxing Day", + "1956-12-31": "New Year's Eve", + "1957-01-01": "New Year's Day", + "1957-03-04": "Carnival", + "1957-03-19": "St. Joseph's Day", + "1957-04-19": "Good Friday", + "1957-04-21": "Easter Sunday", + "1957-05-07": "Feast of Our Lady of M\u00e9rcoles", + "1957-05-12": "St. Joanna's Day", + "1957-05-22": "Municipal Holiday (Leiria)", + "1957-05-23": "Municipal Holiday (Portalegre)", + "1957-05-30": "Ascension of Jesus", + "1957-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", + "1957-06-13": "St. Anthony's Day", + "1957-06-20": "Corpus Christi", + "1957-06-24": "St. John's Day", + "1957-06-29": "St. Peter's Day", + "1957-07-04": "St. Elizabeth's Day", + "1957-08-15": "Assumption Day", + "1957-08-20": "Feast of Our Lady of Sorrows", + "1957-08-22": "Feast of Our Lady of Graces", + "1957-09-07": "Municipal Holiday (Faro)", + "1957-09-15": "Bocage Day", + "1957-09-21": "St. Matthew's Day", + "1957-10-05": "Republic Day", + "1957-11-01": "All Saints Day", + "1957-11-27": "Municipal Holiday (Guarda)", + "1957-12-01": "Restoration of Independence Day", + "1957-12-08": "Immaculate Conception", + "1957-12-24": "Christmas Eve", + "1957-12-25": "Christmas", + "1957-12-26": "Boxing Day", + "1957-12-31": "New Year's Eve", + "1958-01-01": "New Year's Day", + "1958-02-17": "Carnival", + "1958-03-19": "St. Joseph's Day", + "1958-04-04": "Good Friday", + "1958-04-06": "Easter Sunday", + "1958-04-22": "Feast of Our Lady of M\u00e9rcoles", + "1958-05-12": "St. Joanna's Day", + "1958-05-15": "Ascension of Jesus", + "1958-05-22": "Municipal Holiday (Leiria)", + "1958-05-23": "Municipal Holiday (Portalegre)", + "1958-06-05": "Corpus Christi", + "1958-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", + "1958-06-13": "St. Anthony's Day", + "1958-06-24": "St. John's Day", + "1958-06-29": "St. Peter's Day", + "1958-07-04": "St. Elizabeth's Day", + "1958-08-15": "Assumption Day", + "1958-08-20": "Feast of Our Lady of Sorrows", + "1958-08-22": "Feast of Our Lady of Graces", + "1958-09-07": "Municipal Holiday (Faro)", + "1958-09-15": "Bocage Day", + "1958-09-21": "St. Matthew's Day", + "1958-10-05": "Republic Day", + "1958-11-01": "All Saints Day", + "1958-11-27": "Municipal Holiday (Guarda)", + "1958-12-01": "Restoration of Independence Day", + "1958-12-08": "Immaculate Conception", + "1958-12-24": "Christmas Eve", + "1958-12-25": "Christmas", + "1958-12-26": "Boxing Day", + "1958-12-31": "New Year's Eve", + "1959-01-01": "New Year's Day", + "1959-02-09": "Carnival", + "1959-03-19": "St. Joseph's Day", + "1959-03-27": "Good Friday", + "1959-03-29": "Easter Sunday", + "1959-04-14": "Feast of Our Lady of M\u00e9rcoles", + "1959-05-07": "Ascension of Jesus", + "1959-05-12": "St. Joanna's Day", + "1959-05-22": "Municipal Holiday (Leiria)", + "1959-05-23": "Municipal Holiday (Portalegre)", + "1959-05-28": "Corpus Christi", + "1959-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", + "1959-06-13": "St. Anthony's Day", + "1959-06-24": "St. John's Day", + "1959-06-29": "St. Peter's Day", + "1959-07-04": "St. Elizabeth's Day", + "1959-08-15": "Assumption Day", + "1959-08-20": "Feast of Our Lady of Sorrows", + "1959-08-22": "Feast of Our Lady of Graces", + "1959-09-07": "Municipal Holiday (Faro)", + "1959-09-15": "Bocage Day", + "1959-09-21": "St. Matthew's Day", + "1959-10-05": "Republic Day", + "1959-11-01": "All Saints Day", + "1959-11-27": "Municipal Holiday (Guarda)", + "1959-12-01": "Restoration of Independence Day", + "1959-12-08": "Immaculate Conception", + "1959-12-24": "Christmas Eve", + "1959-12-25": "Christmas", + "1959-12-26": "Boxing Day", + "1959-12-31": "New Year's Eve", + "1960-01-01": "New Year's Day", + "1960-02-29": "Carnival", + "1960-03-19": "St. Joseph's Day", + "1960-04-15": "Good Friday", + "1960-04-17": "Easter Sunday", + "1960-05-03": "Feast of Our Lady of M\u00e9rcoles", + "1960-05-12": "St. Joanna's Day", + "1960-05-22": "Municipal Holiday (Leiria)", + "1960-05-23": "Municipal Holiday (Portalegre)", + "1960-05-26": "Ascension of Jesus", + "1960-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", + "1960-06-13": "St. Anthony's Day", + "1960-06-16": "Corpus Christi", + "1960-06-24": "St. John's Day", + "1960-06-29": "St. Peter's Day", + "1960-07-04": "St. Elizabeth's Day", + "1960-08-15": "Assumption Day", + "1960-08-20": "Feast of Our Lady of Sorrows", + "1960-08-22": "Feast of Our Lady of Graces", + "1960-09-07": "Municipal Holiday (Faro)", + "1960-09-15": "Bocage Day", + "1960-09-21": "St. Matthew's Day", + "1960-10-05": "Republic Day", + "1960-11-01": "All Saints Day", + "1960-11-27": "Municipal Holiday (Guarda)", + "1960-12-01": "Restoration of Independence Day", + "1960-12-08": "Immaculate Conception", + "1960-12-24": "Christmas Eve", + "1960-12-25": "Christmas", + "1960-12-26": "Boxing Day", + "1960-12-31": "New Year's Eve", + "1961-01-01": "New Year's Day", + "1961-02-13": "Carnival", + "1961-03-19": "St. Joseph's Day", + "1961-03-31": "Good Friday", + "1961-04-02": "Easter Sunday", + "1961-04-18": "Feast of Our Lady of M\u00e9rcoles", + "1961-05-11": "Ascension of Jesus", + "1961-05-12": "St. Joanna's Day", + "1961-05-22": "Municipal Holiday (Leiria)", + "1961-05-23": "Municipal Holiday (Portalegre)", + "1961-06-01": "Corpus Christi", + "1961-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", + "1961-06-13": "St. Anthony's Day", + "1961-06-24": "St. John's Day", + "1961-06-29": "St. Peter's Day", + "1961-07-04": "St. Elizabeth's Day", + "1961-08-15": "Assumption Day", + "1961-08-20": "Feast of Our Lady of Sorrows", + "1961-08-22": "Feast of Our Lady of Graces", + "1961-09-07": "Municipal Holiday (Faro)", + "1961-09-15": "Bocage Day", + "1961-09-21": "St. Matthew's Day", + "1961-10-05": "Republic Day", + "1961-11-01": "All Saints Day", + "1961-11-27": "Municipal Holiday (Guarda)", + "1961-12-01": "Restoration of Independence Day", + "1961-12-08": "Immaculate Conception", + "1961-12-24": "Christmas Eve", + "1961-12-25": "Christmas", + "1961-12-26": "Boxing Day", + "1961-12-31": "New Year's Eve", + "1962-01-01": "New Year's Day", + "1962-03-05": "Carnival", + "1962-03-19": "St. Joseph's Day", + "1962-04-20": "Good Friday", + "1962-04-22": "Easter Sunday", + "1962-05-08": "Feast of Our Lady of M\u00e9rcoles", + "1962-05-12": "St. Joanna's Day", + "1962-05-22": "Municipal Holiday (Leiria)", + "1962-05-23": "Municipal Holiday (Portalegre)", + "1962-05-31": "Ascension of Jesus", + "1962-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", + "1962-06-13": "St. Anthony's Day", + "1962-06-21": "Corpus Christi", + "1962-06-24": "St. John's Day", + "1962-06-29": "St. Peter's Day", + "1962-07-04": "St. Elizabeth's Day", + "1962-08-15": "Assumption Day", + "1962-08-20": "Feast of Our Lady of Sorrows", + "1962-08-22": "Feast of Our Lady of Graces", + "1962-09-07": "Municipal Holiday (Faro)", + "1962-09-15": "Bocage Day", + "1962-09-21": "St. Matthew's Day", + "1962-10-05": "Republic Day", + "1962-11-01": "All Saints Day", + "1962-11-27": "Municipal Holiday (Guarda)", + "1962-12-01": "Restoration of Independence Day", + "1962-12-08": "Immaculate Conception", + "1962-12-24": "Christmas Eve", + "1962-12-25": "Christmas", + "1962-12-26": "Boxing Day", + "1962-12-31": "New Year's Eve", + "1963-01-01": "New Year's Day", + "1963-02-25": "Carnival", + "1963-03-19": "St. Joseph's Day", + "1963-04-12": "Good Friday", + "1963-04-14": "Easter Sunday", + "1963-04-30": "Feast of Our Lady of M\u00e9rcoles", + "1963-05-12": "St. Joanna's Day", + "1963-05-22": "Municipal Holiday (Leiria)", + "1963-05-23": "Ascension of Jesus; Municipal Holiday (Portalegre)", + "1963-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", + "1963-06-13": "Corpus Christi; St. Anthony's Day", + "1963-06-24": "St. John's Day", + "1963-06-29": "St. Peter's Day", + "1963-07-04": "St. Elizabeth's Day", + "1963-08-15": "Assumption Day", + "1963-08-20": "Feast of Our Lady of Sorrows", + "1963-08-22": "Feast of Our Lady of Graces", + "1963-09-07": "Municipal Holiday (Faro)", + "1963-09-15": "Bocage Day", + "1963-09-21": "St. Matthew's Day", + "1963-10-05": "Republic Day", + "1963-11-01": "All Saints Day", + "1963-11-27": "Municipal Holiday (Guarda)", + "1963-12-01": "Restoration of Independence Day", + "1963-12-08": "Immaculate Conception", + "1963-12-24": "Christmas Eve", + "1963-12-25": "Christmas", + "1963-12-26": "Boxing Day", + "1963-12-31": "New Year's Eve", + "1964-01-01": "New Year's Day", + "1964-02-10": "Carnival", + "1964-03-19": "St. Joseph's Day", + "1964-03-27": "Good Friday", + "1964-03-29": "Easter Sunday", + "1964-04-14": "Feast of Our Lady of M\u00e9rcoles", + "1964-05-07": "Ascension of Jesus", + "1964-05-12": "St. Joanna's Day", + "1964-05-22": "Municipal Holiday (Leiria)", + "1964-05-23": "Municipal Holiday (Portalegre)", + "1964-05-28": "Corpus Christi", + "1964-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", + "1964-06-13": "St. Anthony's Day", + "1964-06-24": "St. John's Day", + "1964-06-29": "St. Peter's Day", + "1964-07-04": "St. Elizabeth's Day", + "1964-08-15": "Assumption Day", + "1964-08-20": "Feast of Our Lady of Sorrows", + "1964-08-22": "Feast of Our Lady of Graces", + "1964-09-07": "Municipal Holiday (Faro)", + "1964-09-15": "Bocage Day", + "1964-09-21": "St. Matthew's Day", + "1964-10-05": "Republic Day", + "1964-11-01": "All Saints Day", + "1964-11-27": "Municipal Holiday (Guarda)", + "1964-12-01": "Restoration of Independence Day", + "1964-12-08": "Immaculate Conception", + "1964-12-24": "Christmas Eve", + "1964-12-25": "Christmas", + "1964-12-26": "Boxing Day", + "1964-12-31": "New Year's Eve", + "1965-01-01": "New Year's Day", + "1965-03-01": "Carnival", + "1965-03-19": "St. Joseph's Day", + "1965-04-16": "Good Friday", + "1965-04-18": "Easter Sunday", + "1965-05-04": "Feast of Our Lady of M\u00e9rcoles", + "1965-05-12": "St. Joanna's Day", + "1965-05-22": "Municipal Holiday (Leiria)", + "1965-05-23": "Municipal Holiday (Portalegre)", + "1965-05-27": "Ascension of Jesus", + "1965-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", + "1965-06-13": "St. Anthony's Day", + "1965-06-17": "Corpus Christi", + "1965-06-24": "St. John's Day", + "1965-06-29": "St. Peter's Day", + "1965-07-04": "St. Elizabeth's Day", + "1965-08-15": "Assumption Day", + "1965-08-20": "Feast of Our Lady of Sorrows", + "1965-08-22": "Feast of Our Lady of Graces", + "1965-09-07": "Municipal Holiday (Faro)", + "1965-09-15": "Bocage Day", + "1965-09-21": "St. Matthew's Day", + "1965-10-05": "Republic Day", + "1965-11-01": "All Saints Day", + "1965-11-27": "Municipal Holiday (Guarda)", + "1965-12-01": "Restoration of Independence Day", + "1965-12-08": "Immaculate Conception", + "1965-12-24": "Christmas Eve", + "1965-12-25": "Christmas", + "1965-12-26": "Boxing Day", + "1965-12-31": "New Year's Eve", + "1966-01-01": "New Year's Day", + "1966-02-21": "Carnival", + "1966-03-19": "St. Joseph's Day", + "1966-04-08": "Good Friday", + "1966-04-10": "Easter Sunday", + "1966-04-26": "Feast of Our Lady of M\u00e9rcoles", + "1966-05-12": "St. Joanna's Day", + "1966-05-19": "Ascension of Jesus", + "1966-05-22": "Municipal Holiday (Leiria)", + "1966-05-23": "Municipal Holiday (Portalegre)", + "1966-06-09": "Corpus Christi", + "1966-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", + "1966-06-13": "St. Anthony's Day", + "1966-06-24": "St. John's Day", + "1966-06-29": "St. Peter's Day", + "1966-07-04": "St. Elizabeth's Day", + "1966-08-15": "Assumption Day", + "1966-08-20": "Feast of Our Lady of Sorrows", + "1966-08-22": "Feast of Our Lady of Graces", + "1966-09-07": "Municipal Holiday (Faro)", + "1966-09-15": "Bocage Day", + "1966-09-21": "St. Matthew's Day", + "1966-10-05": "Republic Day", + "1966-11-01": "All Saints Day", + "1966-11-27": "Municipal Holiday (Guarda)", + "1966-12-01": "Restoration of Independence Day", + "1966-12-08": "Immaculate Conception", + "1966-12-24": "Christmas Eve", + "1966-12-25": "Christmas", + "1966-12-26": "Boxing Day", + "1966-12-31": "New Year's Eve", + "1967-01-01": "New Year's Day", + "1967-02-06": "Carnival", + "1967-03-19": "St. Joseph's Day", + "1967-03-24": "Good Friday", + "1967-03-26": "Easter Sunday", + "1967-04-11": "Feast of Our Lady of M\u00e9rcoles", + "1967-05-04": "Ascension of Jesus", + "1967-05-12": "St. Joanna's Day", + "1967-05-22": "Municipal Holiday (Leiria)", + "1967-05-23": "Municipal Holiday (Portalegre)", + "1967-05-25": "Corpus Christi", + "1967-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", + "1967-06-13": "St. Anthony's Day", + "1967-06-24": "St. John's Day", + "1967-06-29": "St. Peter's Day", + "1967-07-04": "St. Elizabeth's Day", + "1967-08-15": "Assumption Day", + "1967-08-20": "Feast of Our Lady of Sorrows", + "1967-08-22": "Feast of Our Lady of Graces", + "1967-09-07": "Municipal Holiday (Faro)", + "1967-09-15": "Bocage Day", + "1967-09-21": "St. Matthew's Day", + "1967-10-05": "Republic Day", + "1967-11-01": "All Saints Day", + "1967-11-27": "Municipal Holiday (Guarda)", + "1967-12-01": "Restoration of Independence Day", + "1967-12-08": "Immaculate Conception", + "1967-12-24": "Christmas Eve", + "1967-12-25": "Christmas", + "1967-12-26": "Boxing Day", + "1967-12-31": "New Year's Eve", + "1968-01-01": "New Year's Day", + "1968-02-26": "Carnival", + "1968-03-19": "St. Joseph's Day", + "1968-04-12": "Good Friday", + "1968-04-14": "Easter Sunday", + "1968-04-30": "Feast of Our Lady of M\u00e9rcoles", + "1968-05-12": "St. Joanna's Day", + "1968-05-22": "Municipal Holiday (Leiria)", + "1968-05-23": "Ascension of Jesus; Municipal Holiday (Portalegre)", + "1968-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", + "1968-06-13": "Corpus Christi; St. Anthony's Day", + "1968-06-24": "St. John's Day", + "1968-06-29": "St. Peter's Day", + "1968-07-04": "St. Elizabeth's Day", + "1968-08-15": "Assumption Day", + "1968-08-20": "Feast of Our Lady of Sorrows", + "1968-08-22": "Feast of Our Lady of Graces", + "1968-09-07": "Municipal Holiday (Faro)", + "1968-09-15": "Bocage Day", + "1968-09-21": "St. Matthew's Day", + "1968-10-05": "Republic Day", + "1968-11-01": "All Saints Day", + "1968-11-27": "Municipal Holiday (Guarda)", + "1968-12-01": "Restoration of Independence Day", + "1968-12-08": "Immaculate Conception", + "1968-12-24": "Christmas Eve", + "1968-12-25": "Christmas", + "1968-12-26": "Boxing Day", + "1968-12-31": "New Year's Eve", + "1969-01-01": "New Year's Day", + "1969-02-17": "Carnival", + "1969-03-19": "St. Joseph's Day", + "1969-04-04": "Good Friday", + "1969-04-06": "Easter Sunday", + "1969-04-22": "Feast of Our Lady of M\u00e9rcoles", + "1969-05-12": "St. Joanna's Day", + "1969-05-15": "Ascension of Jesus", + "1969-05-22": "Municipal Holiday (Leiria)", + "1969-05-23": "Municipal Holiday (Portalegre)", + "1969-06-05": "Corpus Christi", + "1969-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", + "1969-06-13": "St. Anthony's Day", + "1969-06-24": "St. John's Day", + "1969-06-29": "St. Peter's Day", + "1969-07-04": "St. Elizabeth's Day", + "1969-08-15": "Assumption Day", + "1969-08-20": "Feast of Our Lady of Sorrows", + "1969-08-22": "Feast of Our Lady of Graces", + "1969-09-07": "Municipal Holiday (Faro)", + "1969-09-15": "Bocage Day", + "1969-09-21": "St. Matthew's Day", + "1969-10-05": "Republic Day", + "1969-11-01": "All Saints Day", + "1969-11-27": "Municipal Holiday (Guarda)", + "1969-12-01": "Restoration of Independence Day", + "1969-12-08": "Immaculate Conception", + "1969-12-24": "Christmas Eve", + "1969-12-25": "Christmas", + "1969-12-26": "Boxing Day", + "1969-12-31": "New Year's Eve", + "1970-01-01": "New Year's Day", + "1970-02-09": "Carnival", + "1970-03-19": "St. Joseph's Day", + "1970-03-27": "Good Friday", + "1970-03-29": "Easter Sunday", + "1970-04-14": "Feast of Our Lady of M\u00e9rcoles", + "1970-05-07": "Ascension of Jesus", + "1970-05-12": "St. Joanna's Day", + "1970-05-22": "Municipal Holiday (Leiria)", + "1970-05-23": "Municipal Holiday (Portalegre)", + "1970-05-28": "Corpus Christi", + "1970-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", + "1970-06-13": "St. Anthony's Day", + "1970-06-24": "St. John's Day", + "1970-06-29": "St. Peter's Day", + "1970-07-04": "St. Elizabeth's Day", + "1970-08-15": "Assumption Day", + "1970-08-20": "Feast of Our Lady of Sorrows", + "1970-08-22": "Feast of Our Lady of Graces", + "1970-09-07": "Municipal Holiday (Faro)", + "1970-09-15": "Bocage Day", + "1970-09-21": "St. Matthew's Day", + "1970-10-05": "Republic Day", + "1970-11-01": "All Saints Day", + "1970-11-27": "Municipal Holiday (Guarda)", + "1970-12-01": "Restoration of Independence Day", + "1970-12-08": "Immaculate Conception", + "1970-12-24": "Christmas Eve", + "1970-12-25": "Christmas", + "1970-12-26": "Boxing Day", + "1970-12-31": "New Year's Eve", + "1971-01-01": "New Year's Day", + "1971-02-22": "Carnival", + "1971-03-19": "St. Joseph's Day", + "1971-04-09": "Good Friday", + "1971-04-11": "Easter Sunday", + "1971-04-27": "Feast of Our Lady of M\u00e9rcoles", + "1971-05-12": "St. Joanna's Day", + "1971-05-20": "Ascension of Jesus", + "1971-05-22": "Municipal Holiday (Leiria)", + "1971-05-23": "Municipal Holiday (Portalegre)", + "1971-06-10": "Corpus Christi; Day of Cam\u00f5es, Portugal, and the Portuguese Race", + "1971-06-13": "St. Anthony's Day", + "1971-06-24": "St. John's Day", + "1971-06-29": "St. Peter's Day", + "1971-07-04": "St. Elizabeth's Day", + "1971-08-15": "Assumption Day", + "1971-08-20": "Feast of Our Lady of Sorrows", + "1971-08-22": "Feast of Our Lady of Graces", + "1971-09-07": "Municipal Holiday (Faro)", + "1971-09-15": "Bocage Day", + "1971-09-21": "St. Matthew's Day", + "1971-10-05": "Republic Day", + "1971-11-01": "All Saints Day", + "1971-11-27": "Municipal Holiday (Guarda)", + "1971-12-01": "Restoration of Independence Day", + "1971-12-08": "Immaculate Conception", + "1971-12-24": "Christmas Eve", + "1971-12-25": "Christmas", + "1971-12-26": "Boxing Day", + "1971-12-31": "New Year's Eve", + "1972-01-01": "New Year's Day", + "1972-02-14": "Carnival", + "1972-03-19": "St. Joseph's Day", + "1972-03-31": "Good Friday", + "1972-04-02": "Easter Sunday", + "1972-04-18": "Feast of Our Lady of M\u00e9rcoles", + "1972-05-11": "Ascension of Jesus", + "1972-05-12": "St. Joanna's Day", + "1972-05-22": "Municipal Holiday (Leiria)", + "1972-05-23": "Municipal Holiday (Portalegre)", + "1972-06-01": "Corpus Christi", + "1972-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", + "1972-06-13": "St. Anthony's Day", + "1972-06-24": "St. John's Day", + "1972-06-29": "St. Peter's Day", + "1972-07-04": "St. Elizabeth's Day", + "1972-08-15": "Assumption Day", + "1972-08-20": "Feast of Our Lady of Sorrows", + "1972-08-22": "Feast of Our Lady of Graces", + "1972-09-07": "Municipal Holiday (Faro)", + "1972-09-15": "Bocage Day", + "1972-09-21": "St. Matthew's Day", + "1972-10-05": "Republic Day", + "1972-11-01": "All Saints Day", + "1972-11-27": "Municipal Holiday (Guarda)", + "1972-12-01": "Restoration of Independence Day", + "1972-12-08": "Immaculate Conception", + "1972-12-24": "Christmas Eve", + "1972-12-25": "Christmas", + "1972-12-26": "Boxing Day", + "1972-12-31": "New Year's Eve", + "1973-01-01": "New Year's Day", + "1973-03-05": "Carnival", + "1973-03-19": "St. Joseph's Day", + "1973-04-20": "Good Friday", + "1973-04-22": "Easter Sunday", + "1973-05-08": "Feast of Our Lady of M\u00e9rcoles", + "1973-05-12": "St. Joanna's Day", + "1973-05-22": "Municipal Holiday (Leiria)", + "1973-05-23": "Municipal Holiday (Portalegre)", + "1973-05-31": "Ascension of Jesus", + "1973-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", + "1973-06-13": "St. Anthony's Day", + "1973-06-21": "Corpus Christi", + "1973-06-24": "St. John's Day", + "1973-06-29": "St. Peter's Day", + "1973-07-04": "St. Elizabeth's Day", + "1973-08-15": "Assumption Day", + "1973-08-20": "Feast of Our Lady of Sorrows", + "1973-08-22": "Feast of Our Lady of Graces", + "1973-09-07": "Municipal Holiday (Faro)", + "1973-09-15": "Bocage Day", + "1973-09-21": "St. Matthew's Day", + "1973-10-05": "Republic Day", + "1973-11-01": "All Saints Day", + "1973-11-27": "Municipal Holiday (Guarda)", + "1973-12-01": "Restoration of Independence Day", + "1973-12-08": "Immaculate Conception", + "1973-12-24": "Christmas Eve", + "1973-12-25": "Christmas", + "1973-12-26": "Boxing Day", + "1973-12-31": "New Year's Eve", + "1974-01-01": "New Year's Day", + "1974-02-25": "Carnival", + "1974-03-19": "St. Joseph's Day", + "1974-04-12": "Good Friday", + "1974-04-14": "Easter Sunday", + "1974-04-25": "Freedom Day", + "1974-04-30": "Feast of Our Lady of M\u00e9rcoles", + "1974-05-01": "Labour Day", + "1974-05-12": "St. Joanna's Day", + "1974-05-22": "Municipal Holiday (Leiria)", + "1974-05-23": "Ascension of Jesus; Municipal Holiday (Portalegre)", + "1974-06-10": "Portugal Day", + "1974-06-13": "Corpus Christi; St. Anthony's Day", + "1974-06-24": "St. John's Day", + "1974-06-29": "St. Peter's Day", + "1974-07-04": "St. Elizabeth's Day", + "1974-08-15": "Assumption Day", + "1974-08-20": "Feast of Our Lady of Sorrows", + "1974-08-22": "Feast of Our Lady of Graces", + "1974-09-07": "Municipal Holiday (Faro)", + "1974-09-15": "Bocage Day", + "1974-09-21": "St. Matthew's Day", + "1974-10-05": "Republic Day", + "1974-11-01": "All Saints Day", + "1974-11-27": "Municipal Holiday (Guarda)", + "1974-12-01": "Restoration of Independence Day", + "1974-12-08": "Immaculate Conception", + "1974-12-24": "Christmas Eve", + "1974-12-25": "Christmas", + "1974-12-26": "Boxing Day", + "1974-12-31": "New Year's Eve", + "1975-01-01": "New Year's Day", + "1975-02-10": "Carnival", + "1975-03-19": "St. Joseph's Day", + "1975-03-28": "Good Friday", + "1975-03-30": "Easter Sunday", + "1975-04-15": "Feast of Our Lady of M\u00e9rcoles", + "1975-04-25": "Freedom Day", + "1975-05-01": "Labour Day", + "1975-05-08": "Ascension of Jesus", + "1975-05-12": "St. Joanna's Day", + "1975-05-22": "Municipal Holiday (Leiria)", + "1975-05-23": "Municipal Holiday (Portalegre)", + "1975-05-29": "Corpus Christi", + "1975-06-10": "Portugal Day", + "1975-06-13": "St. Anthony's Day", + "1975-06-24": "St. John's Day", + "1975-06-29": "St. Peter's Day", + "1975-07-04": "St. Elizabeth's Day", + "1975-08-15": "Assumption Day", + "1975-08-20": "Feast of Our Lady of Sorrows", + "1975-08-22": "Feast of Our Lady of Graces", + "1975-09-07": "Municipal Holiday (Faro)", + "1975-09-15": "Bocage Day", + "1975-09-21": "St. Matthew's Day", + "1975-10-05": "Republic Day", + "1975-11-01": "All Saints Day", + "1975-11-27": "Municipal Holiday (Guarda)", + "1975-12-01": "Restoration of Independence Day", + "1975-12-08": "Immaculate Conception", + "1975-12-24": "Christmas Eve", + "1975-12-25": "Christmas", + "1975-12-26": "Boxing Day", + "1975-12-31": "New Year's Eve", + "1976-01-01": "New Year's Day", + "1976-03-01": "Carnival", + "1976-03-19": "St. Joseph's Day", + "1976-04-16": "Good Friday", + "1976-04-18": "Easter Sunday", + "1976-04-25": "Freedom Day", + "1976-05-01": "Labour Day", + "1976-05-04": "Feast of Our Lady of M\u00e9rcoles", + "1976-05-12": "St. Joanna's Day", + "1976-05-22": "Municipal Holiday (Leiria)", + "1976-05-23": "Municipal Holiday (Portalegre)", + "1976-05-27": "Ascension of Jesus", + "1976-06-10": "Portugal Day", + "1976-06-13": "St. Anthony's Day", + "1976-06-17": "Corpus Christi", + "1976-06-24": "St. John's Day", + "1976-06-29": "St. Peter's Day", + "1976-07-04": "St. Elizabeth's Day", + "1976-08-15": "Assumption Day", + "1976-08-20": "Feast of Our Lady of Sorrows", + "1976-08-22": "Feast of Our Lady of Graces", + "1976-09-07": "Municipal Holiday (Faro)", + "1976-09-15": "Bocage Day", + "1976-09-21": "St. Matthew's Day", + "1976-10-05": "Republic Day", + "1976-11-01": "All Saints Day", + "1976-11-27": "Municipal Holiday (Guarda)", + "1976-12-01": "Restoration of Independence Day", + "1976-12-08": "Immaculate Conception", + "1976-12-24": "Christmas Eve", + "1976-12-25": "Christmas", + "1976-12-26": "Boxing Day", + "1976-12-31": "New Year's Eve", + "1977-01-01": "New Year's Day", + "1977-02-21": "Carnival", + "1977-03-19": "St. Joseph's Day", + "1977-04-08": "Good Friday", + "1977-04-10": "Easter Sunday", + "1977-04-25": "Freedom Day", + "1977-04-26": "Feast of Our Lady of M\u00e9rcoles", + "1977-05-01": "Labour Day", + "1977-05-12": "St. Joanna's Day", + "1977-05-19": "Ascension of Jesus", + "1977-05-22": "Municipal Holiday (Leiria)", + "1977-05-23": "Municipal Holiday (Portalegre)", + "1977-06-09": "Corpus Christi", + "1977-06-10": "Portugal Day", + "1977-06-13": "St. Anthony's Day", + "1977-06-24": "St. John's Day", + "1977-06-29": "St. Peter's Day", + "1977-07-04": "St. Elizabeth's Day", + "1977-08-15": "Assumption Day", + "1977-08-20": "Feast of Our Lady of Sorrows", + "1977-08-22": "Feast of Our Lady of Graces", + "1977-09-07": "Municipal Holiday (Faro)", + "1977-09-15": "Bocage Day", + "1977-09-21": "St. Matthew's Day", + "1977-10-05": "Republic Day", + "1977-11-01": "All Saints Day", + "1977-11-27": "Municipal Holiday (Guarda)", + "1977-12-01": "Restoration of Independence Day", + "1977-12-08": "Immaculate Conception", + "1977-12-24": "Christmas Eve", + "1977-12-25": "Christmas", + "1977-12-26": "Boxing Day", + "1977-12-31": "New Year's Eve", + "1978-01-01": "New Year's Day", + "1978-02-06": "Carnival", + "1978-03-19": "St. Joseph's Day", + "1978-03-24": "Good Friday", + "1978-03-26": "Easter Sunday", + "1978-04-11": "Feast of Our Lady of M\u00e9rcoles", + "1978-04-25": "Freedom Day", + "1978-05-01": "Labour Day", + "1978-05-04": "Ascension of Jesus", + "1978-05-12": "St. Joanna's Day", + "1978-05-22": "Municipal Holiday (Leiria)", + "1978-05-23": "Municipal Holiday (Portalegre)", + "1978-05-25": "Corpus Christi", + "1978-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "1978-06-13": "St. Anthony's Day", + "1978-06-24": "St. John's Day", + "1978-06-29": "St. Peter's Day", + "1978-07-04": "St. Elizabeth's Day", + "1978-08-15": "Assumption Day", + "1978-08-20": "Feast of Our Lady of Sorrows", + "1978-08-22": "Feast of Our Lady of Graces", + "1978-09-07": "Municipal Holiday (Faro)", + "1978-09-15": "Bocage Day", + "1978-09-21": "St. Matthew's Day", + "1978-10-05": "Republic Day", + "1978-11-01": "All Saints Day", + "1978-11-27": "Municipal Holiday (Guarda)", + "1978-12-01": "Restoration of Independence Day", + "1978-12-08": "Immaculate Conception", + "1978-12-24": "Christmas Eve", + "1978-12-25": "Christmas", + "1978-12-26": "Boxing Day", + "1978-12-31": "New Year's Eve", + "1979-01-01": "New Year's Day", + "1979-02-26": "Carnival", + "1979-03-19": "St. Joseph's Day", + "1979-04-13": "Good Friday", + "1979-04-15": "Easter Sunday", + "1979-04-25": "Freedom Day", + "1979-05-01": "Feast of Our Lady of M\u00e9rcoles; Labour Day", + "1979-05-12": "St. Joanna's Day", + "1979-05-22": "Municipal Holiday (Leiria)", + "1979-05-23": "Municipal Holiday (Portalegre)", + "1979-05-24": "Ascension of Jesus", + "1979-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "1979-06-13": "St. Anthony's Day", + "1979-06-14": "Corpus Christi", + "1979-06-24": "St. John's Day", + "1979-06-29": "St. Peter's Day", + "1979-07-01": "Day of the Autonomous Region of Madeira", + "1979-07-04": "St. Elizabeth's Day", + "1979-08-15": "Assumption Day", + "1979-08-20": "Feast of Our Lady of Sorrows", + "1979-08-22": "Feast of Our Lady of Graces", + "1979-09-07": "Municipal Holiday (Faro)", + "1979-09-15": "Bocage Day", + "1979-09-21": "St. Matthew's Day", + "1979-10-05": "Republic Day", + "1979-11-01": "All Saints Day", + "1979-11-27": "Municipal Holiday (Guarda)", + "1979-12-01": "Restoration of Independence Day", + "1979-12-08": "Immaculate Conception", + "1979-12-24": "Christmas Eve", + "1979-12-25": "Christmas", + "1979-12-26": "Boxing Day", + "1979-12-31": "New Year's Eve", + "1980-01-01": "New Year's Day", + "1980-02-18": "Carnival", + "1980-03-19": "St. Joseph's Day", + "1980-04-04": "Good Friday", + "1980-04-06": "Easter Sunday", + "1980-04-22": "Feast of Our Lady of M\u00e9rcoles", + "1980-04-25": "Freedom Day", + "1980-05-01": "Labour Day", + "1980-05-12": "St. Joanna's Day", + "1980-05-15": "Ascension of Jesus", + "1980-05-22": "Municipal Holiday (Leiria)", + "1980-05-23": "Municipal Holiday (Portalegre)", + "1980-06-05": "Corpus Christi", + "1980-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "1980-06-13": "St. Anthony's Day", + "1980-06-24": "St. John's Day", + "1980-06-29": "St. Peter's Day", + "1980-07-01": "Day of the Autonomous Region of Madeira", + "1980-07-04": "St. Elizabeth's Day", + "1980-08-15": "Assumption Day", + "1980-08-20": "Feast of Our Lady of Sorrows", + "1980-08-22": "Feast of Our Lady of Graces", + "1980-09-07": "Municipal Holiday (Faro)", + "1980-09-15": "Bocage Day", + "1980-09-21": "St. Matthew's Day", + "1980-10-05": "Republic Day", + "1980-11-01": "All Saints Day", + "1980-11-27": "Municipal Holiday (Guarda)", + "1980-12-01": "Restoration of Independence Day", + "1980-12-08": "Immaculate Conception", + "1980-12-24": "Christmas Eve", + "1980-12-25": "Christmas", + "1980-12-26": "Boxing Day", + "1980-12-31": "New Year's Eve", + "1981-01-01": "New Year's Day", + "1981-03-02": "Carnival", + "1981-03-19": "St. Joseph's Day", + "1981-04-17": "Good Friday", + "1981-04-19": "Easter Sunday", + "1981-04-25": "Freedom Day", + "1981-05-01": "Labour Day", + "1981-05-05": "Feast of Our Lady of M\u00e9rcoles", + "1981-05-12": "St. Joanna's Day", + "1981-05-22": "Municipal Holiday (Leiria)", + "1981-05-23": "Municipal Holiday (Portalegre)", + "1981-05-28": "Ascension of Jesus", + "1981-06-08": "Day of the Autonomous Region of the Azores", + "1981-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "1981-06-13": "St. Anthony's Day", + "1981-06-18": "Corpus Christi", + "1981-06-24": "St. John's Day", + "1981-06-29": "St. Peter's Day", + "1981-07-01": "Day of the Autonomous Region of Madeira", + "1981-07-04": "St. Elizabeth's Day", + "1981-08-15": "Assumption Day", + "1981-08-20": "Feast of Our Lady of Sorrows", + "1981-08-22": "Feast of Our Lady of Graces", + "1981-09-07": "Municipal Holiday (Faro)", + "1981-09-15": "Bocage Day", + "1981-09-21": "St. Matthew's Day", + "1981-10-05": "Republic Day", + "1981-11-01": "All Saints Day", + "1981-11-27": "Municipal Holiday (Guarda)", + "1981-12-01": "Restoration of Independence Day", + "1981-12-08": "Immaculate Conception", + "1981-12-24": "Christmas Eve", + "1981-12-25": "Christmas", + "1981-12-26": "Boxing Day", + "1981-12-31": "New Year's Eve", + "1982-01-01": "New Year's Day", + "1982-02-22": "Carnival", + "1982-03-19": "St. Joseph's Day", + "1982-04-09": "Good Friday", + "1982-04-11": "Easter Sunday", + "1982-04-25": "Freedom Day", + "1982-04-27": "Feast of Our Lady of M\u00e9rcoles", + "1982-05-01": "Labour Day", + "1982-05-12": "St. Joanna's Day", + "1982-05-20": "Ascension of Jesus", + "1982-05-22": "Municipal Holiday (Leiria)", + "1982-05-23": "Municipal Holiday (Portalegre)", + "1982-05-31": "Day of the Autonomous Region of the Azores", + "1982-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "1982-06-13": "St. Anthony's Day", + "1982-06-24": "St. John's Day", + "1982-06-29": "St. Peter's Day", + "1982-07-01": "Day of the Autonomous Region of Madeira", + "1982-07-04": "St. Elizabeth's Day", + "1982-08-15": "Assumption Day", + "1982-08-20": "Feast of Our Lady of Sorrows", + "1982-08-22": "Feast of Our Lady of Graces", + "1982-09-07": "Municipal Holiday (Faro)", + "1982-09-15": "Bocage Day", + "1982-09-21": "St. Matthew's Day", + "1982-10-05": "Republic Day", + "1982-11-01": "All Saints Day", + "1982-11-27": "Municipal Holiday (Guarda)", + "1982-12-01": "Restoration of Independence Day", + "1982-12-08": "Immaculate Conception", + "1982-12-24": "Christmas Eve", + "1982-12-25": "Christmas", + "1982-12-26": "Boxing Day", + "1982-12-31": "New Year's Eve", + "1983-01-01": "New Year's Day", + "1983-02-14": "Carnival", + "1983-03-19": "St. Joseph's Day", + "1983-04-01": "Good Friday", + "1983-04-03": "Easter Sunday", + "1983-04-19": "Feast of Our Lady of M\u00e9rcoles", + "1983-04-25": "Freedom Day", + "1983-05-01": "Labour Day", + "1983-05-12": "Ascension of Jesus; St. Joanna's Day", + "1983-05-22": "Municipal Holiday (Leiria)", + "1983-05-23": "Day of the Autonomous Region of the Azores; Municipal Holiday (Portalegre)", + "1983-06-02": "Corpus Christi", + "1983-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "1983-06-13": "St. Anthony's Day", + "1983-06-24": "St. John's Day", + "1983-06-29": "St. Peter's Day", + "1983-07-01": "Day of the Autonomous Region of Madeira", + "1983-07-04": "St. Elizabeth's Day", + "1983-08-15": "Assumption Day", + "1983-08-20": "Feast of Our Lady of Sorrows", + "1983-08-22": "Feast of Our Lady of Graces", + "1983-09-07": "Municipal Holiday (Faro)", + "1983-09-15": "Bocage Day", + "1983-09-21": "St. Matthew's Day", + "1983-10-05": "Republic Day", + "1983-11-01": "All Saints Day", + "1983-11-27": "Municipal Holiday (Guarda)", + "1983-12-01": "Restoration of Independence Day", + "1983-12-08": "Immaculate Conception", + "1983-12-24": "Christmas Eve", + "1983-12-25": "Christmas", + "1983-12-26": "Boxing Day", + "1983-12-31": "New Year's Eve", + "1984-01-01": "New Year's Day", + "1984-03-05": "Carnival", + "1984-03-19": "St. Joseph's Day", + "1984-04-20": "Good Friday", + "1984-04-22": "Easter Sunday", + "1984-04-25": "Freedom Day", + "1984-05-01": "Labour Day", + "1984-05-08": "Feast of Our Lady of M\u00e9rcoles", + "1984-05-12": "St. Joanna's Day", + "1984-05-22": "Municipal Holiday (Leiria)", + "1984-05-23": "Municipal Holiday (Portalegre)", + "1984-05-31": "Ascension of Jesus", + "1984-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "1984-06-11": "Day of the Autonomous Region of the Azores", + "1984-06-13": "St. Anthony's Day", + "1984-06-21": "Corpus Christi", + "1984-06-24": "St. John's Day", + "1984-06-29": "St. Peter's Day", + "1984-07-01": "Day of the Autonomous Region of Madeira", + "1984-07-04": "St. Elizabeth's Day", + "1984-08-15": "Assumption Day", + "1984-08-20": "Feast of Our Lady of Sorrows", + "1984-08-22": "Feast of Our Lady of Graces", + "1984-09-07": "Municipal Holiday (Faro)", + "1984-09-15": "Bocage Day", + "1984-09-21": "St. Matthew's Day", + "1984-10-05": "Republic Day", + "1984-11-01": "All Saints Day", + "1984-11-27": "Municipal Holiday (Guarda)", + "1984-12-01": "Restoration of Independence Day", + "1984-12-08": "Immaculate Conception", + "1984-12-24": "Christmas Eve", + "1984-12-25": "Christmas", + "1984-12-26": "Boxing Day", + "1984-12-31": "New Year's Eve", + "1985-01-01": "New Year's Day", + "1985-02-18": "Carnival", + "1985-03-19": "St. Joseph's Day", + "1985-04-05": "Good Friday", + "1985-04-07": "Easter Sunday", + "1985-04-23": "Feast of Our Lady of M\u00e9rcoles", + "1985-04-25": "Freedom Day", + "1985-05-01": "Labour Day", + "1985-05-12": "St. Joanna's Day", + "1985-05-16": "Ascension of Jesus", + "1985-05-22": "Municipal Holiday (Leiria)", + "1985-05-23": "Municipal Holiday (Portalegre)", + "1985-05-27": "Day of the Autonomous Region of the Azores", + "1985-06-06": "Corpus Christi", + "1985-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "1985-06-13": "St. Anthony's Day", + "1985-06-24": "St. John's Day", + "1985-06-29": "St. Peter's Day", + "1985-07-01": "Day of the Autonomous Region of Madeira", + "1985-07-04": "St. Elizabeth's Day", + "1985-08-15": "Assumption Day", + "1985-08-20": "Feast of Our Lady of Sorrows", + "1985-08-22": "Feast of Our Lady of Graces", + "1985-09-07": "Municipal Holiday (Faro)", + "1985-09-15": "Bocage Day", + "1985-09-21": "St. Matthew's Day", + "1985-10-05": "Republic Day", + "1985-11-01": "All Saints Day", + "1985-11-27": "Municipal Holiday (Guarda)", + "1985-12-01": "Restoration of Independence Day", + "1985-12-08": "Immaculate Conception", + "1985-12-24": "Christmas Eve", + "1985-12-25": "Christmas", + "1985-12-26": "Boxing Day", + "1985-12-31": "New Year's Eve", + "1986-01-01": "New Year's Day", + "1986-02-10": "Carnival", + "1986-03-19": "St. Joseph's Day", + "1986-03-28": "Good Friday", + "1986-03-30": "Easter Sunday", + "1986-04-15": "Feast of Our Lady of M\u00e9rcoles", + "1986-04-25": "Freedom Day", + "1986-05-01": "Labour Day", + "1986-05-08": "Ascension of Jesus", + "1986-05-12": "St. Joanna's Day", + "1986-05-19": "Day of the Autonomous Region of the Azores", + "1986-05-22": "Municipal Holiday (Leiria)", + "1986-05-23": "Municipal Holiday (Portalegre)", + "1986-05-29": "Corpus Christi", + "1986-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "1986-06-13": "St. Anthony's Day", + "1986-06-24": "St. John's Day", + "1986-06-29": "St. Peter's Day", + "1986-07-01": "Day of the Autonomous Region of Madeira", + "1986-07-04": "St. Elizabeth's Day", + "1986-08-15": "Assumption Day", + "1986-08-20": "Feast of Our Lady of Sorrows", + "1986-08-22": "Feast of Our Lady of Graces", + "1986-09-07": "Municipal Holiday (Faro)", + "1986-09-15": "Bocage Day", + "1986-09-21": "St. Matthew's Day", + "1986-10-05": "Republic Day", + "1986-11-01": "All Saints Day", + "1986-11-27": "Municipal Holiday (Guarda)", + "1986-12-01": "Restoration of Independence Day", + "1986-12-08": "Immaculate Conception", + "1986-12-24": "Christmas Eve", + "1986-12-25": "Christmas", + "1986-12-26": "Boxing Day", + "1986-12-31": "New Year's Eve", + "1987-01-01": "New Year's Day", + "1987-03-02": "Carnival", + "1987-03-19": "St. Joseph's Day", + "1987-04-17": "Good Friday", + "1987-04-19": "Easter Sunday", + "1987-04-25": "Freedom Day", + "1987-05-01": "Labour Day", + "1987-05-05": "Feast of Our Lady of M\u00e9rcoles", + "1987-05-12": "St. Joanna's Day", + "1987-05-22": "Municipal Holiday (Leiria)", + "1987-05-23": "Municipal Holiday (Portalegre)", + "1987-05-28": "Ascension of Jesus", + "1987-06-08": "Day of the Autonomous Region of the Azores", + "1987-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "1987-06-13": "St. Anthony's Day", + "1987-06-18": "Corpus Christi", + "1987-06-24": "St. John's Day", + "1987-06-29": "St. Peter's Day", + "1987-07-01": "Day of the Autonomous Region of Madeira", + "1987-07-04": "St. Elizabeth's Day", + "1987-08-15": "Assumption Day", + "1987-08-20": "Feast of Our Lady of Sorrows", + "1987-08-22": "Feast of Our Lady of Graces", + "1987-09-07": "Municipal Holiday (Faro)", + "1987-09-15": "Bocage Day", + "1987-09-21": "St. Matthew's Day", + "1987-10-05": "Republic Day", + "1987-11-01": "All Saints Day", + "1987-11-27": "Municipal Holiday (Guarda)", + "1987-12-01": "Restoration of Independence Day", + "1987-12-08": "Immaculate Conception", + "1987-12-24": "Christmas Eve", + "1987-12-25": "Christmas", + "1987-12-26": "Boxing Day", + "1987-12-31": "New Year's Eve", + "1988-01-01": "New Year's Day", + "1988-02-15": "Carnival", + "1988-03-19": "St. Joseph's Day", + "1988-04-01": "Good Friday", + "1988-04-03": "Easter Sunday", + "1988-04-19": "Feast of Our Lady of M\u00e9rcoles", + "1988-04-25": "Freedom Day", + "1988-05-01": "Labour Day", + "1988-05-12": "Ascension of Jesus; St. Joanna's Day", + "1988-05-22": "Municipal Holiday (Leiria)", + "1988-05-23": "Day of the Autonomous Region of the Azores; Municipal Holiday (Portalegre)", + "1988-06-02": "Corpus Christi", + "1988-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "1988-06-13": "St. Anthony's Day", + "1988-06-24": "St. John's Day", + "1988-06-29": "St. Peter's Day", + "1988-07-01": "Day of the Autonomous Region of Madeira", + "1988-07-04": "St. Elizabeth's Day", + "1988-08-15": "Assumption Day", + "1988-08-20": "Feast of Our Lady of Sorrows", + "1988-08-22": "Feast of Our Lady of Graces", + "1988-09-07": "Municipal Holiday (Faro)", + "1988-09-15": "Bocage Day", + "1988-09-21": "St. Matthew's Day", + "1988-10-05": "Republic Day", + "1988-11-01": "All Saints Day", + "1988-11-27": "Municipal Holiday (Guarda)", + "1988-12-01": "Restoration of Independence Day", + "1988-12-08": "Immaculate Conception", + "1988-12-24": "Christmas Eve", + "1988-12-25": "Christmas", + "1988-12-26": "Boxing Day", + "1988-12-31": "New Year's Eve", + "1989-01-01": "New Year's Day", + "1989-02-06": "Carnival", + "1989-03-19": "St. Joseph's Day", + "1989-03-24": "Good Friday", + "1989-03-26": "Easter Sunday", + "1989-04-11": "Feast of Our Lady of M\u00e9rcoles", + "1989-04-25": "Freedom Day", + "1989-05-01": "Labour Day", + "1989-05-04": "Ascension of Jesus", + "1989-05-12": "St. Joanna's Day", + "1989-05-15": "Day of the Autonomous Region of the Azores", + "1989-05-22": "Municipal Holiday (Leiria)", + "1989-05-23": "Municipal Holiday (Portalegre)", + "1989-05-25": "Corpus Christi", + "1989-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "1989-06-13": "St. Anthony's Day", + "1989-06-24": "St. John's Day", + "1989-06-29": "St. Peter's Day", + "1989-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "1989-07-04": "St. Elizabeth's Day", + "1989-08-15": "Assumption Day", + "1989-08-20": "Feast of Our Lady of Sorrows", + "1989-08-22": "Feast of Our Lady of Graces", + "1989-09-07": "Municipal Holiday (Faro)", + "1989-09-15": "Bocage Day", + "1989-09-21": "St. Matthew's Day", + "1989-10-05": "Republic Day", + "1989-11-01": "All Saints Day", + "1989-11-27": "Municipal Holiday (Guarda)", + "1989-12-01": "Restoration of Independence Day", + "1989-12-08": "Immaculate Conception", + "1989-12-24": "Christmas Eve", + "1989-12-25": "Christmas", + "1989-12-26": "Boxing Day", + "1989-12-31": "New Year's Eve", + "1990-01-01": "New Year's Day", + "1990-02-26": "Carnival", + "1990-03-19": "St. Joseph's Day", + "1990-04-13": "Good Friday", + "1990-04-15": "Easter Sunday", + "1990-04-25": "Freedom Day", + "1990-05-01": "Feast of Our Lady of M\u00e9rcoles; Labour Day", + "1990-05-12": "St. Joanna's Day", + "1990-05-22": "Municipal Holiday (Leiria)", + "1990-05-23": "Municipal Holiday (Portalegre)", + "1990-05-24": "Ascension of Jesus", + "1990-06-04": "Day of the Autonomous Region of the Azores", + "1990-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "1990-06-13": "St. Anthony's Day", + "1990-06-14": "Corpus Christi", + "1990-06-24": "St. John's Day", + "1990-06-29": "St. Peter's Day", + "1990-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "1990-07-04": "St. Elizabeth's Day", + "1990-08-15": "Assumption Day", + "1990-08-20": "Feast of Our Lady of Sorrows", + "1990-08-22": "Feast of Our Lady of Graces", + "1990-09-07": "Municipal Holiday (Faro)", + "1990-09-15": "Bocage Day", + "1990-09-21": "St. Matthew's Day", + "1990-10-05": "Republic Day", + "1990-11-01": "All Saints Day", + "1990-11-27": "Municipal Holiday (Guarda)", + "1990-12-01": "Restoration of Independence Day", + "1990-12-08": "Immaculate Conception", + "1990-12-24": "Christmas Eve", + "1990-12-25": "Christmas", + "1990-12-26": "Boxing Day", + "1990-12-31": "New Year's Eve", + "1991-01-01": "New Year's Day", + "1991-02-11": "Carnival", + "1991-03-19": "St. Joseph's Day", + "1991-03-29": "Good Friday", + "1991-03-31": "Easter Sunday", + "1991-04-16": "Feast of Our Lady of M\u00e9rcoles", + "1991-04-25": "Freedom Day", + "1991-05-01": "Labour Day", + "1991-05-09": "Ascension of Jesus", + "1991-05-12": "St. Joanna's Day", + "1991-05-20": "Day of the Autonomous Region of the Azores", + "1991-05-22": "Municipal Holiday (Leiria)", + "1991-05-23": "Municipal Holiday (Portalegre)", + "1991-05-30": "Corpus Christi", + "1991-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "1991-06-13": "St. Anthony's Day", + "1991-06-24": "St. John's Day", + "1991-06-29": "St. Peter's Day", + "1991-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "1991-07-04": "St. Elizabeth's Day", + "1991-08-15": "Assumption Day", + "1991-08-20": "Feast of Our Lady of Sorrows", + "1991-08-22": "Feast of Our Lady of Graces", + "1991-09-07": "Municipal Holiday (Faro)", + "1991-09-15": "Bocage Day", + "1991-09-21": "St. Matthew's Day", + "1991-10-05": "Republic Day", + "1991-11-01": "All Saints Day", + "1991-11-27": "Municipal Holiday (Guarda)", + "1991-12-01": "Restoration of Independence Day", + "1991-12-08": "Immaculate Conception", + "1991-12-24": "Christmas Eve", + "1991-12-25": "Christmas", + "1991-12-26": "Boxing Day", + "1991-12-31": "New Year's Eve", + "1992-01-01": "New Year's Day", + "1992-03-02": "Carnival", + "1992-03-19": "St. Joseph's Day", + "1992-04-17": "Good Friday", + "1992-04-19": "Easter Sunday", + "1992-04-25": "Freedom Day", + "1992-05-01": "Labour Day", + "1992-05-05": "Feast of Our Lady of M\u00e9rcoles", + "1992-05-12": "St. Joanna's Day", + "1992-05-22": "Municipal Holiday (Leiria)", + "1992-05-23": "Municipal Holiday (Portalegre)", + "1992-05-28": "Ascension of Jesus", + "1992-06-08": "Day of the Autonomous Region of the Azores", + "1992-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "1992-06-13": "St. Anthony's Day", + "1992-06-18": "Corpus Christi", + "1992-06-24": "St. John's Day", + "1992-06-29": "St. Peter's Day", + "1992-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "1992-07-04": "St. Elizabeth's Day", + "1992-08-15": "Assumption Day", + "1992-08-20": "Feast of Our Lady of Sorrows", + "1992-08-22": "Feast of Our Lady of Graces", + "1992-09-07": "Municipal Holiday (Faro)", + "1992-09-15": "Bocage Day", + "1992-09-21": "St. Matthew's Day", + "1992-10-05": "Republic Day", + "1992-11-01": "All Saints Day", + "1992-11-27": "Municipal Holiday (Guarda)", + "1992-12-01": "Restoration of Independence Day", + "1992-12-08": "Immaculate Conception", + "1992-12-24": "Christmas Eve", + "1992-12-25": "Christmas", + "1992-12-26": "Boxing Day", + "1992-12-31": "New Year's Eve", + "1993-01-01": "New Year's Day", + "1993-02-22": "Carnival", + "1993-03-19": "St. Joseph's Day", + "1993-04-09": "Good Friday", + "1993-04-11": "Easter Sunday", + "1993-04-25": "Freedom Day", + "1993-04-27": "Feast of Our Lady of M\u00e9rcoles", + "1993-05-01": "Labour Day", + "1993-05-12": "St. Joanna's Day", + "1993-05-20": "Ascension of Jesus", + "1993-05-22": "Municipal Holiday (Leiria)", + "1993-05-23": "Municipal Holiday (Portalegre)", + "1993-05-31": "Day of the Autonomous Region of the Azores", + "1993-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "1993-06-13": "St. Anthony's Day", + "1993-06-24": "St. John's Day", + "1993-06-29": "St. Peter's Day", + "1993-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "1993-07-04": "St. Elizabeth's Day", + "1993-08-15": "Assumption Day", + "1993-08-20": "Feast of Our Lady of Sorrows", + "1993-08-22": "Feast of Our Lady of Graces", + "1993-09-07": "Municipal Holiday (Faro)", + "1993-09-15": "Bocage Day", + "1993-09-21": "St. Matthew's Day", + "1993-10-05": "Republic Day", + "1993-11-01": "All Saints Day", + "1993-11-27": "Municipal Holiday (Guarda)", + "1993-12-01": "Restoration of Independence Day", + "1993-12-08": "Immaculate Conception", + "1993-12-24": "Christmas Eve", + "1993-12-25": "Christmas", + "1993-12-26": "Boxing Day", + "1993-12-31": "New Year's Eve", + "1994-01-01": "New Year's Day", + "1994-02-14": "Carnival", + "1994-03-19": "St. Joseph's Day", + "1994-04-01": "Good Friday", + "1994-04-03": "Easter Sunday", + "1994-04-19": "Feast of Our Lady of M\u00e9rcoles", + "1994-04-25": "Freedom Day", + "1994-05-01": "Labour Day", + "1994-05-12": "Ascension of Jesus; St. Joanna's Day", + "1994-05-22": "Municipal Holiday (Leiria)", + "1994-05-23": "Day of the Autonomous Region of the Azores; Municipal Holiday (Portalegre)", + "1994-06-02": "Corpus Christi", + "1994-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "1994-06-13": "St. Anthony's Day", + "1994-06-24": "St. John's Day", + "1994-06-29": "St. Peter's Day", + "1994-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "1994-07-04": "St. Elizabeth's Day", + "1994-08-15": "Assumption Day", + "1994-08-20": "Feast of Our Lady of Sorrows", + "1994-08-22": "Feast of Our Lady of Graces", + "1994-09-07": "Municipal Holiday (Faro)", + "1994-09-15": "Bocage Day", + "1994-09-21": "St. Matthew's Day", + "1994-10-05": "Republic Day", + "1994-11-01": "All Saints Day", + "1994-11-27": "Municipal Holiday (Guarda)", + "1994-12-01": "Restoration of Independence Day", + "1994-12-08": "Immaculate Conception", + "1994-12-24": "Christmas Eve", + "1994-12-25": "Christmas", + "1994-12-26": "Boxing Day", + "1994-12-31": "New Year's Eve", + "1995-01-01": "New Year's Day", + "1995-02-27": "Carnival", + "1995-03-19": "St. Joseph's Day", + "1995-04-14": "Good Friday", + "1995-04-16": "Easter Sunday", + "1995-04-25": "Freedom Day", + "1995-05-01": "Labour Day", + "1995-05-02": "Feast of Our Lady of M\u00e9rcoles", + "1995-05-12": "St. Joanna's Day", + "1995-05-22": "Municipal Holiday (Leiria)", + "1995-05-23": "Municipal Holiday (Portalegre)", + "1995-05-25": "Ascension of Jesus", + "1995-06-05": "Day of the Autonomous Region of the Azores", + "1995-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "1995-06-13": "St. Anthony's Day", + "1995-06-15": "Corpus Christi", + "1995-06-24": "St. John's Day", + "1995-06-29": "St. Peter's Day", + "1995-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "1995-07-04": "St. Elizabeth's Day", + "1995-08-15": "Assumption Day", + "1995-08-20": "Feast of Our Lady of Sorrows", + "1995-08-22": "Feast of Our Lady of Graces", + "1995-09-07": "Municipal Holiday (Faro)", + "1995-09-15": "Bocage Day", + "1995-09-21": "St. Matthew's Day", + "1995-10-05": "Republic Day", + "1995-11-01": "All Saints Day", + "1995-11-27": "Municipal Holiday (Guarda)", + "1995-12-01": "Restoration of Independence Day", + "1995-12-08": "Immaculate Conception", + "1995-12-24": "Christmas Eve", + "1995-12-25": "Christmas", + "1995-12-26": "Boxing Day", + "1995-12-31": "New Year's Eve", + "1996-01-01": "New Year's Day", + "1996-02-19": "Carnival", + "1996-03-19": "St. Joseph's Day", + "1996-04-05": "Good Friday", + "1996-04-07": "Easter Sunday", + "1996-04-23": "Feast of Our Lady of M\u00e9rcoles", + "1996-04-25": "Freedom Day", + "1996-05-01": "Labour Day", + "1996-05-12": "St. Joanna's Day", + "1996-05-16": "Ascension of Jesus", + "1996-05-22": "Municipal Holiday (Leiria)", + "1996-05-23": "Municipal Holiday (Portalegre)", + "1996-05-27": "Day of the Autonomous Region of the Azores", + "1996-06-06": "Corpus Christi", + "1996-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "1996-06-13": "St. Anthony's Day", + "1996-06-24": "St. John's Day", + "1996-06-29": "St. Peter's Day", + "1996-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "1996-07-04": "St. Elizabeth's Day", + "1996-08-15": "Assumption Day", + "1996-08-20": "Feast of Our Lady of Sorrows", + "1996-08-22": "Feast of Our Lady of Graces", + "1996-09-07": "Municipal Holiday (Faro)", + "1996-09-15": "Bocage Day", + "1996-09-21": "St. Matthew's Day", + "1996-10-05": "Republic Day", + "1996-11-01": "All Saints Day", + "1996-11-27": "Municipal Holiday (Guarda)", + "1996-12-01": "Restoration of Independence Day", + "1996-12-08": "Immaculate Conception", + "1996-12-24": "Christmas Eve", + "1996-12-25": "Christmas", + "1996-12-26": "Boxing Day", + "1996-12-31": "New Year's Eve", + "1997-01-01": "New Year's Day", + "1997-02-10": "Carnival", + "1997-03-19": "St. Joseph's Day", + "1997-03-28": "Good Friday", + "1997-03-30": "Easter Sunday", + "1997-04-15": "Feast of Our Lady of M\u00e9rcoles", + "1997-04-25": "Freedom Day", + "1997-05-01": "Labour Day", + "1997-05-08": "Ascension of Jesus", + "1997-05-12": "St. Joanna's Day", + "1997-05-19": "Day of the Autonomous Region of the Azores", + "1997-05-22": "Municipal Holiday (Leiria)", + "1997-05-23": "Municipal Holiday (Portalegre)", + "1997-05-29": "Corpus Christi", + "1997-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "1997-06-13": "St. Anthony's Day", + "1997-06-24": "St. John's Day", + "1997-06-29": "St. Peter's Day", + "1997-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "1997-07-04": "St. Elizabeth's Day", + "1997-08-15": "Assumption Day", + "1997-08-20": "Feast of Our Lady of Sorrows", + "1997-08-22": "Feast of Our Lady of Graces", + "1997-09-07": "Municipal Holiday (Faro)", + "1997-09-15": "Bocage Day", + "1997-09-21": "St. Matthew's Day", + "1997-10-05": "Republic Day", + "1997-11-01": "All Saints Day", + "1997-11-27": "Municipal Holiday (Guarda)", + "1997-12-01": "Restoration of Independence Day", + "1997-12-08": "Immaculate Conception", + "1997-12-24": "Christmas Eve", + "1997-12-25": "Christmas", + "1997-12-26": "Boxing Day", + "1997-12-31": "New Year's Eve", + "1998-01-01": "New Year's Day", + "1998-02-23": "Carnival", + "1998-03-19": "St. Joseph's Day", + "1998-04-10": "Good Friday", + "1998-04-12": "Easter Sunday", + "1998-04-25": "Freedom Day", + "1998-04-28": "Feast of Our Lady of M\u00e9rcoles", + "1998-05-01": "Labour Day", + "1998-05-12": "St. Joanna's Day", + "1998-05-21": "Ascension of Jesus", + "1998-05-22": "Municipal Holiday (Leiria)", + "1998-05-23": "Municipal Holiday (Portalegre)", + "1998-06-01": "Day of the Autonomous Region of the Azores", + "1998-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "1998-06-11": "Corpus Christi", + "1998-06-13": "St. Anthony's Day", + "1998-06-24": "St. John's Day", + "1998-06-29": "St. Peter's Day", + "1998-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "1998-07-04": "St. Elizabeth's Day", + "1998-08-15": "Assumption Day", + "1998-08-20": "Feast of Our Lady of Sorrows", + "1998-08-22": "Feast of Our Lady of Graces", + "1998-09-07": "Municipal Holiday (Faro)", + "1998-09-15": "Bocage Day", + "1998-09-21": "St. Matthew's Day", + "1998-10-05": "Republic Day", + "1998-11-01": "All Saints Day", + "1998-11-27": "Municipal Holiday (Guarda)", + "1998-12-01": "Restoration of Independence Day", + "1998-12-08": "Immaculate Conception", + "1998-12-24": "Christmas Eve", + "1998-12-25": "Christmas", + "1998-12-26": "Boxing Day", + "1998-12-31": "New Year's Eve", + "1999-01-01": "New Year's Day", + "1999-02-15": "Carnival", + "1999-03-19": "St. Joseph's Day", + "1999-04-02": "Good Friday", + "1999-04-04": "Easter Sunday", + "1999-04-20": "Feast of Our Lady of M\u00e9rcoles", + "1999-04-25": "Freedom Day", + "1999-05-01": "Labour Day", + "1999-05-12": "St. Joanna's Day", + "1999-05-13": "Ascension of Jesus", + "1999-05-22": "Municipal Holiday (Leiria)", + "1999-05-23": "Municipal Holiday (Portalegre)", + "1999-05-24": "Day of the Autonomous Region of the Azores", + "1999-06-03": "Corpus Christi", + "1999-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "1999-06-13": "St. Anthony's Day", + "1999-06-24": "St. John's Day", + "1999-06-29": "St. Peter's Day", + "1999-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "1999-07-04": "St. Elizabeth's Day", + "1999-08-15": "Assumption Day", + "1999-08-20": "Feast of Our Lady of Sorrows", + "1999-08-22": "Feast of Our Lady of Graces", + "1999-09-07": "Municipal Holiday (Faro)", + "1999-09-15": "Bocage Day", + "1999-09-21": "St. Matthew's Day", + "1999-10-05": "Republic Day", + "1999-11-01": "All Saints Day", + "1999-11-27": "Municipal Holiday (Guarda)", + "1999-12-01": "Restoration of Independence Day", + "1999-12-08": "Immaculate Conception", + "1999-12-24": "Christmas Eve", + "1999-12-25": "Christmas", + "1999-12-26": "Boxing Day", + "1999-12-31": "New Year's Eve", + "2000-01-01": "New Year's Day", + "2000-03-06": "Carnival", + "2000-03-19": "St. Joseph's Day", + "2000-04-21": "Good Friday", + "2000-04-23": "Easter Sunday", + "2000-04-25": "Freedom Day", + "2000-05-01": "Labour Day", + "2000-05-09": "Feast of Our Lady of M\u00e9rcoles", + "2000-05-12": "St. Joanna's Day", + "2000-05-22": "Municipal Holiday (Leiria)", + "2000-05-23": "Municipal Holiday (Portalegre)", + "2000-06-01": "Ascension of Jesus", + "2000-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2000-06-12": "Day of the Autonomous Region of the Azores", + "2000-06-13": "St. Anthony's Day", + "2000-06-22": "Corpus Christi", + "2000-06-24": "St. John's Day", + "2000-06-29": "St. Peter's Day", + "2000-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2000-07-04": "St. Elizabeth's Day", + "2000-08-15": "Assumption Day", + "2000-08-20": "Feast of Our Lady of Sorrows", + "2000-08-22": "Feast of Our Lady of Graces", + "2000-09-07": "Municipal Holiday (Faro)", + "2000-09-15": "Bocage Day", + "2000-09-21": "St. Matthew's Day", + "2000-10-05": "Republic Day", + "2000-11-01": "All Saints Day", + "2000-11-27": "Municipal Holiday (Guarda)", + "2000-12-01": "Restoration of Independence Day", + "2000-12-08": "Immaculate Conception", + "2000-12-24": "Christmas Eve", + "2000-12-25": "Christmas", + "2000-12-26": "Boxing Day", + "2000-12-31": "New Year's Eve", + "2001-01-01": "New Year's Day", + "2001-02-26": "Carnival", + "2001-03-19": "St. Joseph's Day", + "2001-04-13": "Good Friday", + "2001-04-15": "Easter Sunday", + "2001-04-25": "Freedom Day", + "2001-05-01": "Feast of Our Lady of M\u00e9rcoles; Labour Day", + "2001-05-12": "St. Joanna's Day", + "2001-05-22": "Municipal Holiday (Leiria)", + "2001-05-23": "Municipal Holiday (Portalegre)", + "2001-05-24": "Ascension of Jesus", + "2001-06-04": "Day of the Autonomous Region of the Azores", + "2001-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2001-06-13": "St. Anthony's Day", + "2001-06-14": "Corpus Christi", + "2001-06-24": "St. John's Day", + "2001-06-29": "St. Peter's Day", + "2001-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2001-07-04": "St. Elizabeth's Day", + "2001-08-15": "Assumption Day", + "2001-08-20": "Feast of Our Lady of Sorrows", + "2001-08-22": "Feast of Our Lady of Graces", + "2001-09-07": "Municipal Holiday (Faro)", + "2001-09-15": "Bocage Day", + "2001-09-21": "St. Matthew's Day", + "2001-10-05": "Republic Day", + "2001-11-01": "All Saints Day", + "2001-11-27": "Municipal Holiday (Guarda)", + "2001-12-01": "Restoration of Independence Day", + "2001-12-08": "Immaculate Conception", + "2001-12-24": "Christmas Eve", + "2001-12-25": "Christmas", + "2001-12-26": "Boxing Day", + "2001-12-31": "New Year's Eve", + "2002-01-01": "New Year's Day", + "2002-02-11": "Carnival", + "2002-03-19": "St. Joseph's Day", + "2002-03-29": "Good Friday", + "2002-03-31": "Easter Sunday", + "2002-04-16": "Feast of Our Lady of M\u00e9rcoles", + "2002-04-25": "Freedom Day", + "2002-05-01": "Labour Day", + "2002-05-09": "Ascension of Jesus", + "2002-05-12": "St. Joanna's Day", + "2002-05-20": "Day of the Autonomous Region of the Azores", + "2002-05-22": "Municipal Holiday (Leiria)", + "2002-05-23": "Municipal Holiday (Portalegre)", + "2002-05-30": "Corpus Christi", + "2002-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2002-06-13": "St. Anthony's Day", + "2002-06-24": "St. John's Day", + "2002-06-29": "St. Peter's Day", + "2002-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2002-07-04": "St. Elizabeth's Day", + "2002-08-15": "Assumption Day", + "2002-08-20": "Feast of Our Lady of Sorrows", + "2002-08-22": "Feast of Our Lady of Graces", + "2002-09-07": "Municipal Holiday (Faro)", + "2002-09-15": "Bocage Day", + "2002-09-21": "St. Matthew's Day", + "2002-10-05": "Republic Day", + "2002-11-01": "All Saints Day", + "2002-11-27": "Municipal Holiday (Guarda)", + "2002-12-01": "Restoration of Independence Day", + "2002-12-08": "Immaculate Conception", + "2002-12-24": "Christmas Eve", + "2002-12-25": "Christmas", + "2002-12-26": "1st Octave; Boxing Day", + "2002-12-31": "New Year's Eve", + "2003-01-01": "New Year's Day", + "2003-03-03": "Carnival", + "2003-03-19": "St. Joseph's Day", + "2003-04-18": "Good Friday", + "2003-04-20": "Easter Sunday", + "2003-04-25": "Freedom Day", + "2003-05-01": "Labour Day", + "2003-05-06": "Feast of Our Lady of M\u00e9rcoles", + "2003-05-12": "St. Joanna's Day", + "2003-05-22": "Municipal Holiday (Leiria)", + "2003-05-23": "Municipal Holiday (Portalegre)", + "2003-05-29": "Ascension of Jesus", + "2003-06-09": "Day of the Autonomous Region of the Azores", + "2003-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2003-06-13": "St. Anthony's Day", + "2003-06-19": "Corpus Christi", + "2003-06-24": "St. John's Day", + "2003-06-29": "St. Peter's Day", + "2003-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2003-07-04": "St. Elizabeth's Day", + "2003-08-15": "Assumption Day", + "2003-08-20": "Feast of Our Lady of Sorrows", + "2003-08-22": "Feast of Our Lady of Graces", + "2003-09-07": "Municipal Holiday (Faro)", + "2003-09-15": "Bocage Day", + "2003-09-21": "St. Matthew's Day", + "2003-10-05": "Republic Day", + "2003-11-01": "All Saints Day", + "2003-11-27": "Municipal Holiday (Guarda)", + "2003-12-01": "Restoration of Independence Day", + "2003-12-08": "Immaculate Conception", + "2003-12-24": "Christmas Eve", + "2003-12-25": "Christmas", + "2003-12-26": "1st Octave; Boxing Day", + "2003-12-31": "New Year's Eve", + "2004-01-01": "New Year's Day", + "2004-02-23": "Carnival", + "2004-03-19": "St. Joseph's Day", + "2004-04-09": "Good Friday", + "2004-04-11": "Easter Sunday", + "2004-04-25": "Freedom Day", + "2004-04-27": "Feast of Our Lady of M\u00e9rcoles", + "2004-05-01": "Labour Day", + "2004-05-12": "St. Joanna's Day", + "2004-05-20": "Ascension of Jesus", + "2004-05-22": "Municipal Holiday (Leiria)", + "2004-05-23": "Municipal Holiday (Portalegre)", + "2004-05-31": "Day of the Autonomous Region of the Azores", + "2004-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2004-06-13": "St. Anthony's Day", + "2004-06-24": "St. John's Day", + "2004-06-29": "St. Peter's Day", + "2004-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2004-07-04": "St. Elizabeth's Day", + "2004-08-15": "Assumption Day", + "2004-08-20": "Feast of Our Lady of Sorrows", + "2004-08-22": "Feast of Our Lady of Graces", + "2004-09-07": "Municipal Holiday (Faro)", + "2004-09-15": "Bocage Day", + "2004-09-21": "St. Matthew's Day", + "2004-10-05": "Republic Day", + "2004-11-01": "All Saints Day", + "2004-11-27": "Municipal Holiday (Guarda)", + "2004-12-01": "Restoration of Independence Day", + "2004-12-08": "Immaculate Conception", + "2004-12-24": "Christmas Eve", + "2004-12-25": "Christmas", + "2004-12-26": "1st Octave; Boxing Day", + "2004-12-31": "New Year's Eve", + "2005-01-01": "New Year's Day", + "2005-02-07": "Carnival", + "2005-03-19": "St. Joseph's Day", + "2005-03-25": "Good Friday", + "2005-03-27": "Easter Sunday", + "2005-04-12": "Feast of Our Lady of M\u00e9rcoles", + "2005-04-25": "Freedom Day", + "2005-05-01": "Labour Day", + "2005-05-05": "Ascension of Jesus", + "2005-05-12": "St. Joanna's Day", + "2005-05-16": "Day of the Autonomous Region of the Azores", + "2005-05-22": "Municipal Holiday (Leiria)", + "2005-05-23": "Municipal Holiday (Portalegre)", + "2005-05-26": "Corpus Christi", + "2005-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2005-06-13": "St. Anthony's Day", + "2005-06-24": "St. John's Day", + "2005-06-29": "St. Peter's Day", + "2005-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2005-07-04": "St. Elizabeth's Day", + "2005-08-15": "Assumption Day", + "2005-08-20": "Feast of Our Lady of Sorrows", + "2005-08-22": "Feast of Our Lady of Graces", + "2005-09-07": "Municipal Holiday (Faro)", + "2005-09-15": "Bocage Day", + "2005-09-21": "St. Matthew's Day", + "2005-10-05": "Republic Day", + "2005-11-01": "All Saints Day", + "2005-11-27": "Municipal Holiday (Guarda)", + "2005-12-01": "Restoration of Independence Day", + "2005-12-08": "Immaculate Conception", + "2005-12-24": "Christmas Eve", + "2005-12-25": "Christmas", + "2005-12-26": "1st Octave; Boxing Day", + "2005-12-31": "New Year's Eve", + "2006-01-01": "New Year's Day", + "2006-02-27": "Carnival", + "2006-03-19": "St. Joseph's Day", + "2006-04-14": "Good Friday", + "2006-04-16": "Easter Sunday", + "2006-04-25": "Freedom Day", + "2006-05-01": "Labour Day", + "2006-05-02": "Feast of Our Lady of M\u00e9rcoles", + "2006-05-12": "St. Joanna's Day", + "2006-05-22": "Municipal Holiday (Leiria)", + "2006-05-23": "Municipal Holiday (Portalegre)", + "2006-05-25": "Ascension of Jesus", + "2006-06-05": "Day of the Autonomous Region of the Azores", + "2006-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2006-06-13": "St. Anthony's Day", + "2006-06-15": "Corpus Christi", + "2006-06-24": "St. John's Day", + "2006-06-29": "St. Peter's Day", + "2006-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2006-07-04": "St. Elizabeth's Day", + "2006-08-15": "Assumption Day", + "2006-08-20": "Feast of Our Lady of Sorrows", + "2006-08-22": "Feast of Our Lady of Graces", + "2006-09-07": "Municipal Holiday (Faro)", + "2006-09-15": "Bocage Day", + "2006-09-21": "St. Matthew's Day", + "2006-10-05": "Republic Day", + "2006-11-01": "All Saints Day", + "2006-11-27": "Municipal Holiday (Guarda)", + "2006-12-01": "Restoration of Independence Day", + "2006-12-08": "Immaculate Conception", + "2006-12-24": "Christmas Eve", + "2006-12-25": "Christmas", + "2006-12-26": "1st Octave; Boxing Day", + "2006-12-31": "New Year's Eve", + "2007-01-01": "New Year's Day", + "2007-02-19": "Carnival", + "2007-03-19": "St. Joseph's Day", + "2007-04-06": "Good Friday", + "2007-04-08": "Easter Sunday", + "2007-04-24": "Feast of Our Lady of M\u00e9rcoles", + "2007-04-25": "Freedom Day", + "2007-05-01": "Labour Day", + "2007-05-12": "St. Joanna's Day", + "2007-05-17": "Ascension of Jesus", + "2007-05-22": "Municipal Holiday (Leiria)", + "2007-05-23": "Municipal Holiday (Portalegre)", + "2007-05-28": "Day of the Autonomous Region of the Azores", + "2007-06-07": "Corpus Christi", + "2007-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2007-06-13": "St. Anthony's Day", + "2007-06-24": "St. John's Day", + "2007-06-29": "St. Peter's Day", + "2007-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2007-07-04": "St. Elizabeth's Day", + "2007-08-15": "Assumption Day", + "2007-08-20": "Feast of Our Lady of Sorrows", + "2007-08-22": "Feast of Our Lady of Graces", + "2007-09-07": "Municipal Holiday (Faro)", + "2007-09-15": "Bocage Day", + "2007-09-21": "St. Matthew's Day", + "2007-10-05": "Republic Day", + "2007-11-01": "All Saints Day", + "2007-11-27": "Municipal Holiday (Guarda)", + "2007-12-01": "Restoration of Independence Day", + "2007-12-08": "Immaculate Conception", + "2007-12-24": "Christmas Eve", + "2007-12-25": "Christmas", + "2007-12-26": "1st Octave; Boxing Day", + "2007-12-31": "New Year's Eve", + "2008-01-01": "New Year's Day", + "2008-02-04": "Carnival", + "2008-03-19": "St. Joseph's Day", + "2008-03-21": "Good Friday", + "2008-03-23": "Easter Sunday", + "2008-04-08": "Feast of Our Lady of M\u00e9rcoles", + "2008-04-25": "Freedom Day", + "2008-05-01": "Ascension of Jesus; Labour Day", + "2008-05-12": "Day of the Autonomous Region of the Azores; St. Joanna's Day", + "2008-05-22": "Corpus Christi; Municipal Holiday (Leiria)", + "2008-05-23": "Municipal Holiday (Portalegre)", + "2008-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2008-06-13": "St. Anthony's Day", + "2008-06-24": "St. John's Day", + "2008-06-29": "St. Peter's Day", + "2008-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2008-07-04": "St. Elizabeth's Day", + "2008-08-15": "Assumption Day", + "2008-08-20": "Feast of Our Lady of Sorrows", + "2008-08-22": "Feast of Our Lady of Graces", + "2008-09-07": "Municipal Holiday (Faro)", + "2008-09-15": "Bocage Day", + "2008-09-21": "St. Matthew's Day", + "2008-10-05": "Republic Day", + "2008-11-01": "All Saints Day", + "2008-11-27": "Municipal Holiday (Guarda)", + "2008-12-01": "Restoration of Independence Day", + "2008-12-08": "Immaculate Conception", + "2008-12-24": "Christmas Eve", + "2008-12-25": "Christmas", + "2008-12-26": "1st Octave; Boxing Day", + "2008-12-31": "New Year's Eve", + "2009-01-01": "New Year's Day", + "2009-02-23": "Carnival", + "2009-03-19": "St. Joseph's Day", + "2009-04-10": "Good Friday", + "2009-04-12": "Easter Sunday", + "2009-04-25": "Freedom Day", + "2009-04-28": "Feast of Our Lady of M\u00e9rcoles", + "2009-05-01": "Labour Day", + "2009-05-12": "St. Joanna's Day", + "2009-05-21": "Ascension of Jesus", + "2009-05-22": "Municipal Holiday (Leiria)", + "2009-05-23": "Municipal Holiday (Portalegre)", + "2009-06-01": "Day of the Autonomous Region of the Azores", + "2009-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2009-06-11": "Corpus Christi", + "2009-06-13": "St. Anthony's Day", + "2009-06-24": "St. John's Day", + "2009-06-29": "St. Peter's Day", + "2009-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2009-07-04": "St. Elizabeth's Day", + "2009-08-15": "Assumption Day", + "2009-08-20": "Feast of Our Lady of Sorrows", + "2009-08-22": "Feast of Our Lady of Graces", + "2009-09-07": "Municipal Holiday (Faro)", + "2009-09-15": "Bocage Day", + "2009-09-21": "St. Matthew's Day", + "2009-10-05": "Republic Day", + "2009-11-01": "All Saints Day", + "2009-11-27": "Municipal Holiday (Guarda)", + "2009-12-01": "Restoration of Independence Day", + "2009-12-08": "Immaculate Conception", + "2009-12-24": "Christmas Eve", + "2009-12-25": "Christmas", + "2009-12-26": "1st Octave; Boxing Day", + "2009-12-31": "New Year's Eve", + "2010-01-01": "New Year's Day", + "2010-02-15": "Carnival", + "2010-03-19": "St. Joseph's Day", + "2010-04-02": "Good Friday", + "2010-04-04": "Easter Sunday", + "2010-04-20": "Feast of Our Lady of M\u00e9rcoles", + "2010-04-25": "Freedom Day", + "2010-05-01": "Labour Day", + "2010-05-12": "St. Joanna's Day", + "2010-05-13": "Ascension of Jesus", + "2010-05-22": "Municipal Holiday (Leiria)", + "2010-05-23": "Municipal Holiday (Portalegre)", + "2010-05-24": "Day of the Autonomous Region of the Azores", + "2010-06-03": "Corpus Christi", + "2010-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2010-06-13": "St. Anthony's Day", + "2010-06-24": "St. John's Day", + "2010-06-29": "St. Peter's Day", + "2010-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2010-07-04": "St. Elizabeth's Day", + "2010-08-15": "Assumption Day", + "2010-08-20": "Feast of Our Lady of Sorrows", + "2010-08-22": "Feast of Our Lady of Graces", + "2010-09-07": "Municipal Holiday (Faro)", + "2010-09-15": "Bocage Day", + "2010-09-21": "St. Matthew's Day", + "2010-10-05": "Republic Day", + "2010-11-01": "All Saints Day", + "2010-11-27": "Municipal Holiday (Guarda)", + "2010-12-01": "Restoration of Independence Day", + "2010-12-08": "Immaculate Conception", + "2010-12-24": "Christmas Eve", + "2010-12-25": "Christmas", + "2010-12-26": "1st Octave; Boxing Day", + "2010-12-31": "New Year's Eve", + "2011-01-01": "New Year's Day", + "2011-03-07": "Carnival", + "2011-03-19": "St. Joseph's Day", + "2011-04-22": "Good Friday", + "2011-04-24": "Easter Sunday", + "2011-04-25": "Freedom Day", + "2011-05-01": "Labour Day", + "2011-05-10": "Feast of Our Lady of M\u00e9rcoles", + "2011-05-12": "St. Joanna's Day", + "2011-05-22": "Municipal Holiday (Leiria)", + "2011-05-23": "Municipal Holiday (Portalegre)", + "2011-06-02": "Ascension of Jesus", + "2011-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2011-06-13": "Day of the Autonomous Region of the Azores; St. Anthony's Day", + "2011-06-23": "Corpus Christi", + "2011-06-24": "St. John's Day", + "2011-06-29": "St. Peter's Day", + "2011-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2011-07-04": "St. Elizabeth's Day", + "2011-08-15": "Assumption Day", + "2011-08-20": "Feast of Our Lady of Sorrows", + "2011-08-22": "Feast of Our Lady of Graces", + "2011-09-07": "Municipal Holiday (Faro)", + "2011-09-15": "Bocage Day", + "2011-09-21": "St. Matthew's Day", + "2011-10-05": "Republic Day", + "2011-11-01": "All Saints Day", + "2011-11-27": "Municipal Holiday (Guarda)", + "2011-12-01": "Restoration of Independence Day", + "2011-12-08": "Immaculate Conception", + "2011-12-24": "Christmas Eve", + "2011-12-25": "Christmas", + "2011-12-26": "1st Octave; Boxing Day", + "2011-12-31": "New Year's Eve", + "2012-01-01": "New Year's Day", + "2012-02-20": "Carnival", + "2012-03-19": "St. Joseph's Day", + "2012-04-06": "Good Friday", + "2012-04-08": "Easter Sunday", + "2012-04-24": "Feast of Our Lady of M\u00e9rcoles", + "2012-04-25": "Freedom Day", + "2012-05-01": "Labour Day", + "2012-05-12": "St. Joanna's Day", + "2012-05-17": "Ascension of Jesus", + "2012-05-22": "Municipal Holiday (Leiria)", + "2012-05-23": "Municipal Holiday (Portalegre)", + "2012-05-28": "Day of the Autonomous Region of the Azores", + "2012-06-07": "Corpus Christi", + "2012-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2012-06-13": "St. Anthony's Day", + "2012-06-24": "St. John's Day", + "2012-06-29": "St. Peter's Day", + "2012-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2012-07-04": "St. Elizabeth's Day", + "2012-08-15": "Assumption Day", + "2012-08-20": "Feast of Our Lady of Sorrows", + "2012-08-22": "Feast of Our Lady of Graces", + "2012-09-07": "Municipal Holiday (Faro)", + "2012-09-15": "Bocage Day", + "2012-09-21": "St. Matthew's Day", + "2012-10-05": "Republic Day", + "2012-11-01": "All Saints Day", + "2012-11-27": "Municipal Holiday (Guarda)", + "2012-12-01": "Restoration of Independence Day", + "2012-12-08": "Immaculate Conception", + "2012-12-24": "Christmas Eve", + "2012-12-25": "Christmas", + "2012-12-26": "1st Octave; Boxing Day", + "2012-12-31": "New Year's Eve", + "2013-01-01": "New Year's Day", + "2013-02-11": "Carnival", + "2013-03-19": "St. Joseph's Day", + "2013-03-29": "Good Friday", + "2013-03-31": "Easter Sunday", + "2013-04-16": "Feast of Our Lady of M\u00e9rcoles", + "2013-04-25": "Freedom Day", + "2013-05-01": "Labour Day", + "2013-05-09": "Ascension of Jesus", + "2013-05-12": "St. Joanna's Day", + "2013-05-20": "Day of the Autonomous Region of the Azores", + "2013-05-22": "Municipal Holiday (Leiria)", + "2013-05-23": "Municipal Holiday (Portalegre)", + "2013-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2013-06-13": "St. Anthony's Day", + "2013-06-24": "St. John's Day", + "2013-06-29": "St. Peter's Day", + "2013-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2013-07-04": "St. Elizabeth's Day", + "2013-08-15": "Assumption Day", + "2013-08-20": "Feast of Our Lady of Sorrows", + "2013-08-22": "Feast of Our Lady of Graces", + "2013-09-07": "Municipal Holiday (Faro)", + "2013-09-15": "Bocage Day", + "2013-09-21": "St. Matthew's Day", + "2013-11-27": "Municipal Holiday (Guarda)", + "2013-12-08": "Immaculate Conception", + "2013-12-24": "Christmas Eve", + "2013-12-25": "Christmas", + "2013-12-26": "1st Octave; Boxing Day", + "2013-12-31": "New Year's Eve", + "2014-01-01": "New Year's Day", + "2014-03-03": "Carnival", + "2014-03-19": "St. Joseph's Day", + "2014-04-18": "Good Friday", + "2014-04-20": "Easter Sunday", + "2014-04-25": "Freedom Day", + "2014-05-01": "Labour Day", + "2014-05-06": "Feast of Our Lady of M\u00e9rcoles", + "2014-05-12": "St. Joanna's Day", + "2014-05-22": "Municipal Holiday (Leiria)", + "2014-05-23": "Municipal Holiday (Portalegre)", + "2014-05-29": "Ascension of Jesus", + "2014-06-09": "Day of the Autonomous Region of the Azores", + "2014-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2014-06-13": "St. Anthony's Day", + "2014-06-24": "St. John's Day", + "2014-06-29": "St. Peter's Day", + "2014-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2014-07-04": "St. Elizabeth's Day", + "2014-08-15": "Assumption Day", + "2014-08-20": "Feast of Our Lady of Sorrows", + "2014-08-22": "Feast of Our Lady of Graces", + "2014-09-07": "Municipal Holiday (Faro)", + "2014-09-15": "Bocage Day", + "2014-09-21": "St. Matthew's Day", + "2014-11-27": "Municipal Holiday (Guarda)", + "2014-12-08": "Immaculate Conception", + "2014-12-24": "Christmas Eve", + "2014-12-25": "Christmas", + "2014-12-26": "1st Octave; Boxing Day", + "2014-12-31": "New Year's Eve", + "2015-01-01": "New Year's Day", + "2015-02-16": "Carnival", + "2015-03-19": "St. Joseph's Day", + "2015-04-03": "Good Friday", + "2015-04-05": "Easter Sunday", + "2015-04-21": "Feast of Our Lady of M\u00e9rcoles", + "2015-04-25": "Freedom Day", + "2015-05-01": "Labour Day", + "2015-05-12": "St. Joanna's Day", + "2015-05-14": "Ascension of Jesus", + "2015-05-22": "Municipal Holiday (Leiria)", + "2015-05-23": "Municipal Holiday (Portalegre)", + "2015-05-25": "Day of the Autonomous Region of the Azores", + "2015-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2015-06-13": "St. Anthony's Day", + "2015-06-24": "St. John's Day", + "2015-06-29": "St. Peter's Day", + "2015-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2015-07-04": "St. Elizabeth's Day", + "2015-08-15": "Assumption Day", + "2015-08-20": "Feast of Our Lady of Sorrows", + "2015-08-22": "Feast of Our Lady of Graces", + "2015-09-07": "Municipal Holiday (Faro)", + "2015-09-15": "Bocage Day", + "2015-09-21": "St. Matthew's Day", + "2015-11-27": "Municipal Holiday (Guarda)", + "2015-12-08": "Immaculate Conception", + "2015-12-24": "Christmas Eve", + "2015-12-25": "Christmas", + "2015-12-26": "1st Octave; Boxing Day", + "2015-12-31": "New Year's Eve", + "2016-01-01": "New Year's Day", + "2016-02-08": "Carnival", + "2016-03-19": "St. Joseph's Day", + "2016-03-25": "Good Friday", + "2016-03-27": "Easter Sunday", + "2016-04-12": "Feast of Our Lady of M\u00e9rcoles", + "2016-04-25": "Freedom Day", + "2016-05-01": "Labour Day", + "2016-05-05": "Ascension of Jesus", + "2016-05-12": "St. Joanna's Day", + "2016-05-16": "Day of the Autonomous Region of the Azores", + "2016-05-22": "Municipal Holiday (Leiria)", + "2016-05-23": "Municipal Holiday (Portalegre)", + "2016-05-26": "Corpus Christi", + "2016-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2016-06-13": "St. Anthony's Day", + "2016-06-24": "St. John's Day", + "2016-06-29": "St. Peter's Day", + "2016-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2016-07-04": "St. Elizabeth's Day", + "2016-08-15": "Assumption Day", + "2016-08-20": "Feast of Our Lady of Sorrows", + "2016-08-22": "Feast of Our Lady of Graces", + "2016-09-07": "Municipal Holiday (Faro)", + "2016-09-15": "Bocage Day", + "2016-09-21": "St. Matthew's Day", + "2016-10-05": "Republic Day", + "2016-11-01": "All Saints Day", + "2016-11-27": "Municipal Holiday (Guarda)", + "2016-12-01": "Restoration of Independence Day", + "2016-12-08": "Immaculate Conception", + "2016-12-24": "Christmas Eve", + "2016-12-25": "Christmas", + "2016-12-26": "1st Octave; Boxing Day", + "2016-12-31": "New Year's Eve", + "2017-01-01": "New Year's Day", + "2017-02-27": "Carnival", + "2017-03-19": "St. Joseph's Day", + "2017-04-14": "Good Friday", + "2017-04-16": "Easter Sunday", + "2017-04-25": "Freedom Day", + "2017-05-01": "Labour Day", + "2017-05-02": "Feast of Our Lady of M\u00e9rcoles", + "2017-05-12": "St. Joanna's Day", + "2017-05-22": "Municipal Holiday (Leiria)", + "2017-05-23": "Municipal Holiday (Portalegre)", + "2017-05-25": "Ascension of Jesus", + "2017-06-05": "Day of the Autonomous Region of the Azores", + "2017-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2017-06-13": "St. Anthony's Day", + "2017-06-15": "Corpus Christi", + "2017-06-24": "St. John's Day", + "2017-06-29": "St. Peter's Day", + "2017-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2017-07-04": "St. Elizabeth's Day", + "2017-08-15": "Assumption Day", + "2017-08-20": "Feast of Our Lady of Sorrows", + "2017-08-22": "Feast of Our Lady of Graces", + "2017-09-07": "Municipal Holiday (Faro)", + "2017-09-15": "Bocage Day", + "2017-09-21": "St. Matthew's Day", + "2017-10-05": "Republic Day", + "2017-11-01": "All Saints Day", + "2017-11-27": "Municipal Holiday (Guarda)", + "2017-12-01": "Restoration of Independence Day", + "2017-12-08": "Immaculate Conception", + "2017-12-24": "Christmas Eve", + "2017-12-25": "Christmas", + "2017-12-26": "1st Octave; Boxing Day", + "2017-12-31": "New Year's Eve", + "2018-01-01": "New Year's Day", + "2018-02-12": "Carnival", + "2018-03-19": "St. Joseph's Day", + "2018-03-30": "Good Friday", + "2018-04-01": "Easter Sunday", + "2018-04-17": "Feast of Our Lady of M\u00e9rcoles", + "2018-04-25": "Freedom Day", + "2018-05-01": "Labour Day", + "2018-05-10": "Ascension of Jesus", + "2018-05-12": "St. Joanna's Day", + "2018-05-21": "Day of the Autonomous Region of the Azores", + "2018-05-22": "Municipal Holiday (Leiria)", + "2018-05-23": "Municipal Holiday (Portalegre)", + "2018-05-31": "Corpus Christi", + "2018-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2018-06-13": "St. Anthony's Day", + "2018-06-24": "St. John's Day", + "2018-06-29": "St. Peter's Day", + "2018-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2018-07-04": "St. Elizabeth's Day", + "2018-08-15": "Assumption Day", + "2018-08-20": "Feast of Our Lady of Sorrows", + "2018-08-22": "Feast of Our Lady of Graces", + "2018-09-07": "Municipal Holiday (Faro)", + "2018-09-15": "Bocage Day", + "2018-09-21": "St. Matthew's Day", + "2018-10-05": "Republic Day", + "2018-11-01": "All Saints Day", + "2018-11-27": "Municipal Holiday (Guarda)", + "2018-12-01": "Restoration of Independence Day", + "2018-12-08": "Immaculate Conception", + "2018-12-24": "Christmas Eve", + "2018-12-25": "Christmas", + "2018-12-26": "1st Octave; Boxing Day", + "2018-12-31": "New Year's Eve", + "2019-01-01": "New Year's Day", + "2019-03-04": "Carnival", + "2019-03-19": "St. Joseph's Day", + "2019-04-19": "Good Friday", + "2019-04-21": "Easter Sunday", + "2019-04-25": "Freedom Day", + "2019-05-01": "Labour Day", + "2019-05-07": "Feast of Our Lady of M\u00e9rcoles", + "2019-05-12": "St. Joanna's Day", + "2019-05-22": "Municipal Holiday (Leiria)", + "2019-05-23": "Municipal Holiday (Portalegre)", + "2019-05-30": "Ascension of Jesus", + "2019-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities; Day of the Autonomous Region of the Azores", + "2019-06-13": "St. Anthony's Day", + "2019-06-20": "Corpus Christi", + "2019-06-24": "St. John's Day", + "2019-06-29": "St. Peter's Day", + "2019-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2019-07-04": "St. Elizabeth's Day", + "2019-08-15": "Assumption Day", + "2019-08-20": "Feast of Our Lady of Sorrows", + "2019-08-22": "Feast of Our Lady of Graces", + "2019-09-07": "Municipal Holiday (Faro)", + "2019-09-15": "Bocage Day", + "2019-09-21": "St. Matthew's Day", + "2019-10-05": "Republic Day", + "2019-11-01": "All Saints Day", + "2019-11-27": "Municipal Holiday (Guarda)", + "2019-12-01": "Restoration of Independence Day", + "2019-12-08": "Immaculate Conception", + "2019-12-24": "Christmas Eve", + "2019-12-25": "Christmas", + "2019-12-26": "1st Octave; Boxing Day", + "2019-12-31": "New Year's Eve", + "2020-01-01": "New Year's Day", + "2020-02-24": "Carnival", + "2020-03-19": "St. Joseph's Day", + "2020-04-10": "Good Friday", + "2020-04-12": "Easter Sunday", + "2020-04-25": "Freedom Day", + "2020-04-28": "Feast of Our Lady of M\u00e9rcoles", + "2020-05-01": "Labour Day", + "2020-05-12": "St. Joanna's Day", + "2020-05-21": "Ascension of Jesus", + "2020-05-22": "Municipal Holiday (Leiria)", + "2020-05-23": "Municipal Holiday (Portalegre)", + "2020-06-01": "Day of the Autonomous Region of the Azores", + "2020-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2020-06-11": "Corpus Christi", + "2020-06-13": "St. Anthony's Day", + "2020-06-24": "St. John's Day", + "2020-06-29": "St. Peter's Day", + "2020-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2020-07-04": "St. Elizabeth's Day", + "2020-08-15": "Assumption Day", + "2020-08-20": "Feast of Our Lady of Sorrows", + "2020-08-22": "Feast of Our Lady of Graces", + "2020-09-07": "Municipal Holiday (Faro)", + "2020-09-15": "Bocage Day", + "2020-09-21": "St. Matthew's Day", + "2020-10-05": "Republic Day", + "2020-11-01": "All Saints Day", + "2020-11-27": "Municipal Holiday (Guarda)", + "2020-12-01": "Restoration of Independence Day", + "2020-12-08": "Immaculate Conception", + "2020-12-24": "Christmas Eve", + "2020-12-25": "Christmas", + "2020-12-26": "1st Octave; Boxing Day", + "2020-12-31": "New Year's Eve", + "2021-01-01": "New Year's Day", + "2021-02-15": "Carnival", + "2021-03-19": "St. Joseph's Day", + "2021-04-02": "Good Friday", + "2021-04-04": "Easter Sunday", + "2021-04-20": "Feast of Our Lady of M\u00e9rcoles", + "2021-04-25": "Freedom Day", + "2021-05-01": "Labour Day", + "2021-05-12": "St. Joanna's Day", + "2021-05-13": "Ascension of Jesus", + "2021-05-22": "Municipal Holiday (Leiria)", + "2021-05-23": "Municipal Holiday (Portalegre)", + "2021-05-24": "Day of the Autonomous Region of the Azores", + "2021-06-03": "Corpus Christi", + "2021-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2021-06-13": "St. Anthony's Day", + "2021-06-24": "St. John's Day", + "2021-06-29": "St. Peter's Day", + "2021-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2021-07-04": "St. Elizabeth's Day", + "2021-08-15": "Assumption Day", + "2021-08-20": "Feast of Our Lady of Sorrows", + "2021-08-22": "Feast of Our Lady of Graces", + "2021-09-07": "Municipal Holiday (Faro)", + "2021-09-15": "Bocage Day", + "2021-09-21": "St. Matthew's Day", + "2021-10-05": "Republic Day", + "2021-11-01": "All Saints Day", + "2021-11-27": "Municipal Holiday (Guarda)", + "2021-12-01": "Restoration of Independence Day", + "2021-12-08": "Immaculate Conception", + "2021-12-24": "Christmas Eve", + "2021-12-25": "Christmas", + "2021-12-26": "1st Octave; Boxing Day", + "2021-12-31": "New Year's Eve", + "2022-01-01": "New Year's Day", + "2022-02-28": "Carnival", + "2022-03-19": "St. Joseph's Day", + "2022-04-15": "Good Friday", + "2022-04-17": "Easter Sunday", + "2022-04-25": "Freedom Day", + "2022-05-01": "Labour Day", + "2022-05-03": "Feast of Our Lady of M\u00e9rcoles", + "2022-05-12": "St. Joanna's Day", + "2022-05-22": "Municipal Holiday (Leiria)", + "2022-05-23": "Municipal Holiday (Portalegre)", + "2022-05-26": "Ascension of Jesus", + "2022-06-06": "Day of the Autonomous Region of the Azores", + "2022-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2022-06-13": "St. Anthony's Day", + "2022-06-16": "Corpus Christi", + "2022-06-24": "St. John's Day", + "2022-06-29": "St. Peter's Day", + "2022-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2022-07-04": "St. Elizabeth's Day", + "2022-08-15": "Assumption Day", + "2022-08-20": "Feast of Our Lady of Sorrows", + "2022-08-22": "Feast of Our Lady of Graces", + "2022-09-07": "Municipal Holiday (Faro)", + "2022-09-15": "Bocage Day", + "2022-09-21": "St. Matthew's Day", + "2022-10-05": "Republic Day", + "2022-11-01": "All Saints Day", + "2022-11-27": "Municipal Holiday (Guarda)", + "2022-12-01": "Restoration of Independence Day", + "2022-12-08": "Immaculate Conception", + "2022-12-24": "Christmas Eve", + "2022-12-25": "Christmas", + "2022-12-26": "1st Octave; Boxing Day", + "2022-12-31": "New Year's Eve", + "2023-01-01": "New Year's Day", + "2023-02-20": "Carnival", + "2023-03-19": "St. Joseph's Day", + "2023-04-07": "Good Friday", + "2023-04-09": "Easter Sunday", + "2023-04-25": "Feast of Our Lady of M\u00e9rcoles; Freedom Day", + "2023-05-01": "Labour Day", + "2023-05-12": "St. Joanna's Day", + "2023-05-18": "Ascension of Jesus", + "2023-05-22": "Municipal Holiday (Leiria)", + "2023-05-23": "Municipal Holiday (Portalegre)", + "2023-05-29": "Day of the Autonomous Region of the Azores", + "2023-06-08": "Corpus Christi", + "2023-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2023-06-13": "St. Anthony's Day", + "2023-06-24": "St. John's Day", + "2023-06-29": "St. Peter's Day", + "2023-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2023-07-04": "St. Elizabeth's Day", + "2023-08-15": "Assumption Day", + "2023-08-20": "Feast of Our Lady of Sorrows", + "2023-08-22": "Feast of Our Lady of Graces", + "2023-09-07": "Municipal Holiday (Faro)", + "2023-09-15": "Bocage Day", + "2023-09-21": "St. Matthew's Day", + "2023-10-05": "Republic Day", + "2023-11-01": "All Saints Day", + "2023-11-27": "Municipal Holiday (Guarda)", + "2023-12-01": "Restoration of Independence Day", + "2023-12-08": "Immaculate Conception", + "2023-12-24": "Christmas Eve", + "2023-12-25": "Christmas", + "2023-12-26": "1st Octave; Boxing Day", + "2023-12-31": "New Year's Eve", + "2024-01-01": "New Year's Day", + "2024-02-12": "Carnival", + "2024-03-19": "St. Joseph's Day", + "2024-03-29": "Good Friday", + "2024-03-31": "Easter Sunday", + "2024-04-16": "Feast of Our Lady of M\u00e9rcoles", + "2024-04-25": "Freedom Day", + "2024-05-01": "Labour Day", + "2024-05-09": "Ascension of Jesus", + "2024-05-12": "St. Joanna's Day", + "2024-05-20": "Day of the Autonomous Region of the Azores", + "2024-05-22": "Municipal Holiday (Leiria)", + "2024-05-23": "Municipal Holiday (Portalegre)", + "2024-05-30": "Corpus Christi", + "2024-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2024-06-13": "St. Anthony's Day", + "2024-06-24": "St. John's Day", + "2024-06-29": "St. Peter's Day", + "2024-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2024-07-04": "St. Elizabeth's Day", + "2024-08-15": "Assumption Day", + "2024-08-20": "Feast of Our Lady of Sorrows", + "2024-08-22": "Feast of Our Lady of Graces", + "2024-09-07": "Municipal Holiday (Faro)", + "2024-09-15": "Bocage Day", + "2024-09-21": "St. Matthew's Day", + "2024-10-05": "Republic Day", + "2024-11-01": "All Saints Day", + "2024-11-27": "Municipal Holiday (Guarda)", + "2024-12-01": "Restoration of Independence Day", + "2024-12-08": "Immaculate Conception", + "2024-12-24": "Christmas Eve", + "2024-12-25": "Christmas", + "2024-12-26": "1st Octave; Boxing Day", + "2024-12-31": "New Year's Eve", + "2025-01-01": "New Year's Day", + "2025-03-03": "Carnival", + "2025-03-19": "St. Joseph's Day", + "2025-04-18": "Good Friday", + "2025-04-20": "Easter Sunday", + "2025-04-25": "Freedom Day", + "2025-05-01": "Labour Day", + "2025-05-06": "Feast of Our Lady of M\u00e9rcoles", + "2025-05-12": "St. Joanna's Day", + "2025-05-22": "Municipal Holiday (Leiria)", + "2025-05-23": "Municipal Holiday (Portalegre)", + "2025-05-29": "Ascension of Jesus", + "2025-06-09": "Day of the Autonomous Region of the Azores", + "2025-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2025-06-13": "St. Anthony's Day", + "2025-06-19": "Corpus Christi", + "2025-06-24": "St. John's Day", + "2025-06-29": "St. Peter's Day", + "2025-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2025-07-04": "St. Elizabeth's Day", + "2025-08-15": "Assumption Day", + "2025-08-20": "Feast of Our Lady of Sorrows", + "2025-08-22": "Feast of Our Lady of Graces", + "2025-09-07": "Municipal Holiday (Faro)", + "2025-09-15": "Bocage Day", + "2025-09-21": "St. Matthew's Day", + "2025-10-05": "Republic Day", + "2025-11-01": "All Saints Day", + "2025-11-27": "Municipal Holiday (Guarda)", + "2025-12-01": "Restoration of Independence Day", + "2025-12-08": "Immaculate Conception", + "2025-12-24": "Christmas Eve", + "2025-12-25": "Christmas", + "2025-12-26": "1st Octave; Boxing Day", + "2025-12-31": "New Year's Eve", + "2026-01-01": "New Year's Day", + "2026-02-16": "Carnival", + "2026-03-19": "St. Joseph's Day", + "2026-04-03": "Good Friday", + "2026-04-05": "Easter Sunday", + "2026-04-21": "Feast of Our Lady of M\u00e9rcoles", + "2026-04-25": "Freedom Day", + "2026-05-01": "Labour Day", + "2026-05-12": "St. Joanna's Day", + "2026-05-14": "Ascension of Jesus", + "2026-05-22": "Municipal Holiday (Leiria)", + "2026-05-23": "Municipal Holiday (Portalegre)", + "2026-05-25": "Day of the Autonomous Region of the Azores", + "2026-06-04": "Corpus Christi", + "2026-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2026-06-13": "St. Anthony's Day", + "2026-06-24": "St. John's Day", + "2026-06-29": "St. Peter's Day", + "2026-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2026-07-04": "St. Elizabeth's Day", + "2026-08-15": "Assumption Day", + "2026-08-20": "Feast of Our Lady of Sorrows", + "2026-08-22": "Feast of Our Lady of Graces", + "2026-09-07": "Municipal Holiday (Faro)", + "2026-09-15": "Bocage Day", + "2026-09-21": "St. Matthew's Day", + "2026-10-05": "Republic Day", + "2026-11-01": "All Saints Day", + "2026-11-27": "Municipal Holiday (Guarda)", + "2026-12-01": "Restoration of Independence Day", + "2026-12-08": "Immaculate Conception", + "2026-12-24": "Christmas Eve", + "2026-12-25": "Christmas", + "2026-12-26": "1st Octave; Boxing Day", + "2026-12-31": "New Year's Eve", + "2027-01-01": "New Year's Day", + "2027-02-08": "Carnival", + "2027-03-19": "St. Joseph's Day", + "2027-03-26": "Good Friday", + "2027-03-28": "Easter Sunday", + "2027-04-13": "Feast of Our Lady of M\u00e9rcoles", + "2027-04-25": "Freedom Day", + "2027-05-01": "Labour Day", + "2027-05-06": "Ascension of Jesus", + "2027-05-12": "St. Joanna's Day", + "2027-05-17": "Day of the Autonomous Region of the Azores", + "2027-05-22": "Municipal Holiday (Leiria)", + "2027-05-23": "Municipal Holiday (Portalegre)", + "2027-05-27": "Corpus Christi", + "2027-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2027-06-13": "St. Anthony's Day", + "2027-06-24": "St. John's Day", + "2027-06-29": "St. Peter's Day", + "2027-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2027-07-04": "St. Elizabeth's Day", + "2027-08-15": "Assumption Day", + "2027-08-20": "Feast of Our Lady of Sorrows", + "2027-08-22": "Feast of Our Lady of Graces", + "2027-09-07": "Municipal Holiday (Faro)", + "2027-09-15": "Bocage Day", + "2027-09-21": "St. Matthew's Day", + "2027-10-05": "Republic Day", + "2027-11-01": "All Saints Day", + "2027-11-27": "Municipal Holiday (Guarda)", + "2027-12-01": "Restoration of Independence Day", + "2027-12-08": "Immaculate Conception", + "2027-12-24": "Christmas Eve", + "2027-12-25": "Christmas", + "2027-12-26": "1st Octave; Boxing Day", + "2027-12-31": "New Year's Eve", + "2028-01-01": "New Year's Day", + "2028-02-28": "Carnival", + "2028-03-19": "St. Joseph's Day", + "2028-04-14": "Good Friday", + "2028-04-16": "Easter Sunday", + "2028-04-25": "Freedom Day", + "2028-05-01": "Labour Day", + "2028-05-02": "Feast of Our Lady of M\u00e9rcoles", + "2028-05-12": "St. Joanna's Day", + "2028-05-22": "Municipal Holiday (Leiria)", + "2028-05-23": "Municipal Holiday (Portalegre)", + "2028-05-25": "Ascension of Jesus", + "2028-06-05": "Day of the Autonomous Region of the Azores", + "2028-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2028-06-13": "St. Anthony's Day", + "2028-06-15": "Corpus Christi", + "2028-06-24": "St. John's Day", + "2028-06-29": "St. Peter's Day", + "2028-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2028-07-04": "St. Elizabeth's Day", + "2028-08-15": "Assumption Day", + "2028-08-20": "Feast of Our Lady of Sorrows", + "2028-08-22": "Feast of Our Lady of Graces", + "2028-09-07": "Municipal Holiday (Faro)", + "2028-09-15": "Bocage Day", + "2028-09-21": "St. Matthew's Day", + "2028-10-05": "Republic Day", + "2028-11-01": "All Saints Day", + "2028-11-27": "Municipal Holiday (Guarda)", + "2028-12-01": "Restoration of Independence Day", + "2028-12-08": "Immaculate Conception", + "2028-12-24": "Christmas Eve", + "2028-12-25": "Christmas", + "2028-12-26": "1st Octave; Boxing Day", + "2028-12-31": "New Year's Eve", + "2029-01-01": "New Year's Day", + "2029-02-12": "Carnival", + "2029-03-19": "St. Joseph's Day", + "2029-03-30": "Good Friday", + "2029-04-01": "Easter Sunday", + "2029-04-17": "Feast of Our Lady of M\u00e9rcoles", + "2029-04-25": "Freedom Day", + "2029-05-01": "Labour Day", + "2029-05-10": "Ascension of Jesus", + "2029-05-12": "St. Joanna's Day", + "2029-05-21": "Day of the Autonomous Region of the Azores", + "2029-05-22": "Municipal Holiday (Leiria)", + "2029-05-23": "Municipal Holiday (Portalegre)", + "2029-05-31": "Corpus Christi", + "2029-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2029-06-13": "St. Anthony's Day", + "2029-06-24": "St. John's Day", + "2029-06-29": "St. Peter's Day", + "2029-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2029-07-04": "St. Elizabeth's Day", + "2029-08-15": "Assumption Day", + "2029-08-20": "Feast of Our Lady of Sorrows", + "2029-08-22": "Feast of Our Lady of Graces", + "2029-09-07": "Municipal Holiday (Faro)", + "2029-09-15": "Bocage Day", + "2029-09-21": "St. Matthew's Day", + "2029-10-05": "Republic Day", + "2029-11-01": "All Saints Day", + "2029-11-27": "Municipal Holiday (Guarda)", + "2029-12-01": "Restoration of Independence Day", + "2029-12-08": "Immaculate Conception", + "2029-12-24": "Christmas Eve", + "2029-12-25": "Christmas", + "2029-12-26": "1st Octave; Boxing Day", + "2029-12-31": "New Year's Eve", + "2030-01-01": "New Year's Day", + "2030-03-04": "Carnival", + "2030-03-19": "St. Joseph's Day", + "2030-04-19": "Good Friday", + "2030-04-21": "Easter Sunday", + "2030-04-25": "Freedom Day", + "2030-05-01": "Labour Day", + "2030-05-07": "Feast of Our Lady of M\u00e9rcoles", + "2030-05-12": "St. Joanna's Day", + "2030-05-22": "Municipal Holiday (Leiria)", + "2030-05-23": "Municipal Holiday (Portalegre)", + "2030-05-30": "Ascension of Jesus", + "2030-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities; Day of the Autonomous Region of the Azores", + "2030-06-13": "St. Anthony's Day", + "2030-06-20": "Corpus Christi", + "2030-06-24": "St. John's Day", + "2030-06-29": "St. Peter's Day", + "2030-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2030-07-04": "St. Elizabeth's Day", + "2030-08-15": "Assumption Day", + "2030-08-20": "Feast of Our Lady of Sorrows", + "2030-08-22": "Feast of Our Lady of Graces", + "2030-09-07": "Municipal Holiday (Faro)", + "2030-09-15": "Bocage Day", + "2030-09-21": "St. Matthew's Day", + "2030-10-05": "Republic Day", + "2030-11-01": "All Saints Day", + "2030-11-27": "Municipal Holiday (Guarda)", + "2030-12-01": "Restoration of Independence Day", + "2030-12-08": "Immaculate Conception", + "2030-12-24": "Christmas Eve", + "2030-12-25": "Christmas", + "2030-12-26": "1st Octave; Boxing Day", + "2030-12-31": "New Year's Eve", + "2031-01-01": "New Year's Day", + "2031-02-24": "Carnival", + "2031-03-19": "St. Joseph's Day", + "2031-04-11": "Good Friday", + "2031-04-13": "Easter Sunday", + "2031-04-25": "Freedom Day", + "2031-04-29": "Feast of Our Lady of M\u00e9rcoles", + "2031-05-01": "Labour Day", + "2031-05-12": "St. Joanna's Day", + "2031-05-22": "Ascension of Jesus; Municipal Holiday (Leiria)", + "2031-05-23": "Municipal Holiday (Portalegre)", + "2031-06-02": "Day of the Autonomous Region of the Azores", + "2031-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2031-06-12": "Corpus Christi", + "2031-06-13": "St. Anthony's Day", + "2031-06-24": "St. John's Day", + "2031-06-29": "St. Peter's Day", + "2031-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2031-07-04": "St. Elizabeth's Day", + "2031-08-15": "Assumption Day", + "2031-08-20": "Feast of Our Lady of Sorrows", + "2031-08-22": "Feast of Our Lady of Graces", + "2031-09-07": "Municipal Holiday (Faro)", + "2031-09-15": "Bocage Day", + "2031-09-21": "St. Matthew's Day", + "2031-10-05": "Republic Day", + "2031-11-01": "All Saints Day", + "2031-11-27": "Municipal Holiday (Guarda)", + "2031-12-01": "Restoration of Independence Day", + "2031-12-08": "Immaculate Conception", + "2031-12-24": "Christmas Eve", + "2031-12-25": "Christmas", + "2031-12-26": "1st Octave; Boxing Day", + "2031-12-31": "New Year's Eve", + "2032-01-01": "New Year's Day", + "2032-02-09": "Carnival", + "2032-03-19": "St. Joseph's Day", + "2032-03-26": "Good Friday", + "2032-03-28": "Easter Sunday", + "2032-04-13": "Feast of Our Lady of M\u00e9rcoles", + "2032-04-25": "Freedom Day", + "2032-05-01": "Labour Day", + "2032-05-06": "Ascension of Jesus", + "2032-05-12": "St. Joanna's Day", + "2032-05-17": "Day of the Autonomous Region of the Azores", + "2032-05-22": "Municipal Holiday (Leiria)", + "2032-05-23": "Municipal Holiday (Portalegre)", + "2032-05-27": "Corpus Christi", + "2032-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2032-06-13": "St. Anthony's Day", + "2032-06-24": "St. John's Day", + "2032-06-29": "St. Peter's Day", + "2032-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2032-07-04": "St. Elizabeth's Day", + "2032-08-15": "Assumption Day", + "2032-08-20": "Feast of Our Lady of Sorrows", + "2032-08-22": "Feast of Our Lady of Graces", + "2032-09-07": "Municipal Holiday (Faro)", + "2032-09-15": "Bocage Day", + "2032-09-21": "St. Matthew's Day", + "2032-10-05": "Republic Day", + "2032-11-01": "All Saints Day", + "2032-11-27": "Municipal Holiday (Guarda)", + "2032-12-01": "Restoration of Independence Day", + "2032-12-08": "Immaculate Conception", + "2032-12-24": "Christmas Eve", + "2032-12-25": "Christmas", + "2032-12-26": "1st Octave; Boxing Day", + "2032-12-31": "New Year's Eve", + "2033-01-01": "New Year's Day", + "2033-02-28": "Carnival", + "2033-03-19": "St. Joseph's Day", + "2033-04-15": "Good Friday", + "2033-04-17": "Easter Sunday", + "2033-04-25": "Freedom Day", + "2033-05-01": "Labour Day", + "2033-05-03": "Feast of Our Lady of M\u00e9rcoles", + "2033-05-12": "St. Joanna's Day", + "2033-05-22": "Municipal Holiday (Leiria)", + "2033-05-23": "Municipal Holiday (Portalegre)", + "2033-05-26": "Ascension of Jesus", + "2033-06-06": "Day of the Autonomous Region of the Azores", + "2033-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2033-06-13": "St. Anthony's Day", + "2033-06-16": "Corpus Christi", + "2033-06-24": "St. John's Day", + "2033-06-29": "St. Peter's Day", + "2033-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2033-07-04": "St. Elizabeth's Day", + "2033-08-15": "Assumption Day", + "2033-08-20": "Feast of Our Lady of Sorrows", + "2033-08-22": "Feast of Our Lady of Graces", + "2033-09-07": "Municipal Holiday (Faro)", + "2033-09-15": "Bocage Day", + "2033-09-21": "St. Matthew's Day", + "2033-10-05": "Republic Day", + "2033-11-01": "All Saints Day", + "2033-11-27": "Municipal Holiday (Guarda)", + "2033-12-01": "Restoration of Independence Day", + "2033-12-08": "Immaculate Conception", + "2033-12-24": "Christmas Eve", + "2033-12-25": "Christmas", + "2033-12-26": "1st Octave; Boxing Day", + "2033-12-31": "New Year's Eve", + "2034-01-01": "New Year's Day", + "2034-02-20": "Carnival", + "2034-03-19": "St. Joseph's Day", + "2034-04-07": "Good Friday", + "2034-04-09": "Easter Sunday", + "2034-04-25": "Feast of Our Lady of M\u00e9rcoles; Freedom Day", + "2034-05-01": "Labour Day", + "2034-05-12": "St. Joanna's Day", + "2034-05-18": "Ascension of Jesus", + "2034-05-22": "Municipal Holiday (Leiria)", + "2034-05-23": "Municipal Holiday (Portalegre)", + "2034-05-29": "Day of the Autonomous Region of the Azores", + "2034-06-08": "Corpus Christi", + "2034-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2034-06-13": "St. Anthony's Day", + "2034-06-24": "St. John's Day", + "2034-06-29": "St. Peter's Day", + "2034-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2034-07-04": "St. Elizabeth's Day", + "2034-08-15": "Assumption Day", + "2034-08-20": "Feast of Our Lady of Sorrows", + "2034-08-22": "Feast of Our Lady of Graces", + "2034-09-07": "Municipal Holiday (Faro)", + "2034-09-15": "Bocage Day", + "2034-09-21": "St. Matthew's Day", + "2034-10-05": "Republic Day", + "2034-11-01": "All Saints Day", + "2034-11-27": "Municipal Holiday (Guarda)", + "2034-12-01": "Restoration of Independence Day", + "2034-12-08": "Immaculate Conception", + "2034-12-24": "Christmas Eve", + "2034-12-25": "Christmas", + "2034-12-26": "1st Octave; Boxing Day", + "2034-12-31": "New Year's Eve", + "2035-01-01": "New Year's Day", + "2035-02-05": "Carnival", + "2035-03-19": "St. Joseph's Day", + "2035-03-23": "Good Friday", + "2035-03-25": "Easter Sunday", + "2035-04-10": "Feast of Our Lady of M\u00e9rcoles", + "2035-04-25": "Freedom Day", + "2035-05-01": "Labour Day", + "2035-05-03": "Ascension of Jesus", + "2035-05-12": "St. Joanna's Day", + "2035-05-14": "Day of the Autonomous Region of the Azores", + "2035-05-22": "Municipal Holiday (Leiria)", + "2035-05-23": "Municipal Holiday (Portalegre)", + "2035-05-24": "Corpus Christi", + "2035-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2035-06-13": "St. Anthony's Day", + "2035-06-24": "St. John's Day", + "2035-06-29": "St. Peter's Day", + "2035-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2035-07-04": "St. Elizabeth's Day", + "2035-08-15": "Assumption Day", + "2035-08-20": "Feast of Our Lady of Sorrows", + "2035-08-22": "Feast of Our Lady of Graces", + "2035-09-07": "Municipal Holiday (Faro)", + "2035-09-15": "Bocage Day", + "2035-09-21": "St. Matthew's Day", + "2035-10-05": "Republic Day", + "2035-11-01": "All Saints Day", + "2035-11-27": "Municipal Holiday (Guarda)", + "2035-12-01": "Restoration of Independence Day", + "2035-12-08": "Immaculate Conception", + "2035-12-24": "Christmas Eve", + "2035-12-25": "Christmas", + "2035-12-26": "1st Octave; Boxing Day", + "2035-12-31": "New Year's Eve", + "2036-01-01": "New Year's Day", + "2036-02-25": "Carnival", + "2036-03-19": "St. Joseph's Day", + "2036-04-11": "Good Friday", + "2036-04-13": "Easter Sunday", + "2036-04-25": "Freedom Day", + "2036-04-29": "Feast of Our Lady of M\u00e9rcoles", + "2036-05-01": "Labour Day", + "2036-05-12": "St. Joanna's Day", + "2036-05-22": "Ascension of Jesus; Municipal Holiday (Leiria)", + "2036-05-23": "Municipal Holiday (Portalegre)", + "2036-06-02": "Day of the Autonomous Region of the Azores", + "2036-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2036-06-12": "Corpus Christi", + "2036-06-13": "St. Anthony's Day", + "2036-06-24": "St. John's Day", + "2036-06-29": "St. Peter's Day", + "2036-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2036-07-04": "St. Elizabeth's Day", + "2036-08-15": "Assumption Day", + "2036-08-20": "Feast of Our Lady of Sorrows", + "2036-08-22": "Feast of Our Lady of Graces", + "2036-09-07": "Municipal Holiday (Faro)", + "2036-09-15": "Bocage Day", + "2036-09-21": "St. Matthew's Day", + "2036-10-05": "Republic Day", + "2036-11-01": "All Saints Day", + "2036-11-27": "Municipal Holiday (Guarda)", + "2036-12-01": "Restoration of Independence Day", + "2036-12-08": "Immaculate Conception", + "2036-12-24": "Christmas Eve", + "2036-12-25": "Christmas", + "2036-12-26": "1st Octave; Boxing Day", + "2036-12-31": "New Year's Eve", + "2037-01-01": "New Year's Day", + "2037-02-16": "Carnival", + "2037-03-19": "St. Joseph's Day", + "2037-04-03": "Good Friday", + "2037-04-05": "Easter Sunday", + "2037-04-21": "Feast of Our Lady of M\u00e9rcoles", + "2037-04-25": "Freedom Day", + "2037-05-01": "Labour Day", + "2037-05-12": "St. Joanna's Day", + "2037-05-14": "Ascension of Jesus", + "2037-05-22": "Municipal Holiday (Leiria)", + "2037-05-23": "Municipal Holiday (Portalegre)", + "2037-05-25": "Day of the Autonomous Region of the Azores", + "2037-06-04": "Corpus Christi", + "2037-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2037-06-13": "St. Anthony's Day", + "2037-06-24": "St. John's Day", + "2037-06-29": "St. Peter's Day", + "2037-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2037-07-04": "St. Elizabeth's Day", + "2037-08-15": "Assumption Day", + "2037-08-20": "Feast of Our Lady of Sorrows", + "2037-08-22": "Feast of Our Lady of Graces", + "2037-09-07": "Municipal Holiday (Faro)", + "2037-09-15": "Bocage Day", + "2037-09-21": "St. Matthew's Day", + "2037-10-05": "Republic Day", + "2037-11-01": "All Saints Day", + "2037-11-27": "Municipal Holiday (Guarda)", + "2037-12-01": "Restoration of Independence Day", + "2037-12-08": "Immaculate Conception", + "2037-12-24": "Christmas Eve", + "2037-12-25": "Christmas", + "2037-12-26": "1st Octave; Boxing Day", + "2037-12-31": "New Year's Eve", + "2038-01-01": "New Year's Day", + "2038-03-08": "Carnival", + "2038-03-19": "St. Joseph's Day", + "2038-04-23": "Good Friday", + "2038-04-25": "Easter Sunday; Freedom Day", + "2038-05-01": "Labour Day", + "2038-05-11": "Feast of Our Lady of M\u00e9rcoles", + "2038-05-12": "St. Joanna's Day", + "2038-05-22": "Municipal Holiday (Leiria)", + "2038-05-23": "Municipal Holiday (Portalegre)", + "2038-06-03": "Ascension of Jesus", + "2038-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2038-06-13": "St. Anthony's Day", + "2038-06-14": "Day of the Autonomous Region of the Azores", + "2038-06-24": "Corpus Christi; St. John's Day", + "2038-06-29": "St. Peter's Day", + "2038-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2038-07-04": "St. Elizabeth's Day", + "2038-08-15": "Assumption Day", + "2038-08-20": "Feast of Our Lady of Sorrows", + "2038-08-22": "Feast of Our Lady of Graces", + "2038-09-07": "Municipal Holiday (Faro)", + "2038-09-15": "Bocage Day", + "2038-09-21": "St. Matthew's Day", + "2038-10-05": "Republic Day", + "2038-11-01": "All Saints Day", + "2038-11-27": "Municipal Holiday (Guarda)", + "2038-12-01": "Restoration of Independence Day", + "2038-12-08": "Immaculate Conception", + "2038-12-24": "Christmas Eve", + "2038-12-25": "Christmas", + "2038-12-26": "1st Octave; Boxing Day", + "2038-12-31": "New Year's Eve", + "2039-01-01": "New Year's Day", + "2039-02-21": "Carnival", + "2039-03-19": "St. Joseph's Day", + "2039-04-08": "Good Friday", + "2039-04-10": "Easter Sunday", + "2039-04-25": "Freedom Day", + "2039-04-26": "Feast of Our Lady of M\u00e9rcoles", + "2039-05-01": "Labour Day", + "2039-05-12": "St. Joanna's Day", + "2039-05-19": "Ascension of Jesus", + "2039-05-22": "Municipal Holiday (Leiria)", + "2039-05-23": "Municipal Holiday (Portalegre)", + "2039-05-30": "Day of the Autonomous Region of the Azores", + "2039-06-09": "Corpus Christi", + "2039-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2039-06-13": "St. Anthony's Day", + "2039-06-24": "St. John's Day", + "2039-06-29": "St. Peter's Day", + "2039-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2039-07-04": "St. Elizabeth's Day", + "2039-08-15": "Assumption Day", + "2039-08-20": "Feast of Our Lady of Sorrows", + "2039-08-22": "Feast of Our Lady of Graces", + "2039-09-07": "Municipal Holiday (Faro)", + "2039-09-15": "Bocage Day", + "2039-09-21": "St. Matthew's Day", + "2039-10-05": "Republic Day", + "2039-11-01": "All Saints Day", + "2039-11-27": "Municipal Holiday (Guarda)", + "2039-12-01": "Restoration of Independence Day", + "2039-12-08": "Immaculate Conception", + "2039-12-24": "Christmas Eve", + "2039-12-25": "Christmas", + "2039-12-26": "1st Octave; Boxing Day", + "2039-12-31": "New Year's Eve", + "2040-01-01": "New Year's Day", + "2040-02-13": "Carnival", + "2040-03-19": "St. Joseph's Day", + "2040-03-30": "Good Friday", + "2040-04-01": "Easter Sunday", + "2040-04-17": "Feast of Our Lady of M\u00e9rcoles", + "2040-04-25": "Freedom Day", + "2040-05-01": "Labour Day", + "2040-05-10": "Ascension of Jesus", + "2040-05-12": "St. Joanna's Day", + "2040-05-21": "Day of the Autonomous Region of the Azores", + "2040-05-22": "Municipal Holiday (Leiria)", + "2040-05-23": "Municipal Holiday (Portalegre)", + "2040-05-31": "Corpus Christi", + "2040-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2040-06-13": "St. Anthony's Day", + "2040-06-24": "St. John's Day", + "2040-06-29": "St. Peter's Day", + "2040-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2040-07-04": "St. Elizabeth's Day", + "2040-08-15": "Assumption Day", + "2040-08-20": "Feast of Our Lady of Sorrows", + "2040-08-22": "Feast of Our Lady of Graces", + "2040-09-07": "Municipal Holiday (Faro)", + "2040-09-15": "Bocage Day", + "2040-09-21": "St. Matthew's Day", + "2040-10-05": "Republic Day", + "2040-11-01": "All Saints Day", + "2040-11-27": "Municipal Holiday (Guarda)", + "2040-12-01": "Restoration of Independence Day", + "2040-12-08": "Immaculate Conception", + "2040-12-24": "Christmas Eve", + "2040-12-25": "Christmas", + "2040-12-26": "1st Octave; Boxing Day", + "2040-12-31": "New Year's Eve", + "2041-01-01": "New Year's Day", + "2041-03-04": "Carnival", + "2041-03-19": "St. Joseph's Day", + "2041-04-19": "Good Friday", + "2041-04-21": "Easter Sunday", + "2041-04-25": "Freedom Day", + "2041-05-01": "Labour Day", + "2041-05-07": "Feast of Our Lady of M\u00e9rcoles", + "2041-05-12": "St. Joanna's Day", + "2041-05-22": "Municipal Holiday (Leiria)", + "2041-05-23": "Municipal Holiday (Portalegre)", + "2041-05-30": "Ascension of Jesus", + "2041-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities; Day of the Autonomous Region of the Azores", + "2041-06-13": "St. Anthony's Day", + "2041-06-20": "Corpus Christi", + "2041-06-24": "St. John's Day", + "2041-06-29": "St. Peter's Day", + "2041-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2041-07-04": "St. Elizabeth's Day", + "2041-08-15": "Assumption Day", + "2041-08-20": "Feast of Our Lady of Sorrows", + "2041-08-22": "Feast of Our Lady of Graces", + "2041-09-07": "Municipal Holiday (Faro)", + "2041-09-15": "Bocage Day", + "2041-09-21": "St. Matthew's Day", + "2041-10-05": "Republic Day", + "2041-11-01": "All Saints Day", + "2041-11-27": "Municipal Holiday (Guarda)", + "2041-12-01": "Restoration of Independence Day", + "2041-12-08": "Immaculate Conception", + "2041-12-24": "Christmas Eve", + "2041-12-25": "Christmas", + "2041-12-26": "1st Octave; Boxing Day", + "2041-12-31": "New Year's Eve", + "2042-01-01": "New Year's Day", + "2042-02-17": "Carnival", + "2042-03-19": "St. Joseph's Day", + "2042-04-04": "Good Friday", + "2042-04-06": "Easter Sunday", + "2042-04-22": "Feast of Our Lady of M\u00e9rcoles", + "2042-04-25": "Freedom Day", + "2042-05-01": "Labour Day", + "2042-05-12": "St. Joanna's Day", + "2042-05-15": "Ascension of Jesus", + "2042-05-22": "Municipal Holiday (Leiria)", + "2042-05-23": "Municipal Holiday (Portalegre)", + "2042-05-26": "Day of the Autonomous Region of the Azores", + "2042-06-05": "Corpus Christi", + "2042-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2042-06-13": "St. Anthony's Day", + "2042-06-24": "St. John's Day", + "2042-06-29": "St. Peter's Day", + "2042-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2042-07-04": "St. Elizabeth's Day", + "2042-08-15": "Assumption Day", + "2042-08-20": "Feast of Our Lady of Sorrows", + "2042-08-22": "Feast of Our Lady of Graces", + "2042-09-07": "Municipal Holiday (Faro)", + "2042-09-15": "Bocage Day", + "2042-09-21": "St. Matthew's Day", + "2042-10-05": "Republic Day", + "2042-11-01": "All Saints Day", + "2042-11-27": "Municipal Holiday (Guarda)", + "2042-12-01": "Restoration of Independence Day", + "2042-12-08": "Immaculate Conception", + "2042-12-24": "Christmas Eve", + "2042-12-25": "Christmas", + "2042-12-26": "1st Octave; Boxing Day", + "2042-12-31": "New Year's Eve", + "2043-01-01": "New Year's Day", + "2043-02-09": "Carnival", + "2043-03-19": "St. Joseph's Day", + "2043-03-27": "Good Friday", + "2043-03-29": "Easter Sunday", + "2043-04-14": "Feast of Our Lady of M\u00e9rcoles", + "2043-04-25": "Freedom Day", + "2043-05-01": "Labour Day", + "2043-05-07": "Ascension of Jesus", + "2043-05-12": "St. Joanna's Day", + "2043-05-18": "Day of the Autonomous Region of the Azores", + "2043-05-22": "Municipal Holiday (Leiria)", + "2043-05-23": "Municipal Holiday (Portalegre)", + "2043-05-28": "Corpus Christi", + "2043-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2043-06-13": "St. Anthony's Day", + "2043-06-24": "St. John's Day", + "2043-06-29": "St. Peter's Day", + "2043-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2043-07-04": "St. Elizabeth's Day", + "2043-08-15": "Assumption Day", + "2043-08-20": "Feast of Our Lady of Sorrows", + "2043-08-22": "Feast of Our Lady of Graces", + "2043-09-07": "Municipal Holiday (Faro)", + "2043-09-15": "Bocage Day", + "2043-09-21": "St. Matthew's Day", + "2043-10-05": "Republic Day", + "2043-11-01": "All Saints Day", + "2043-11-27": "Municipal Holiday (Guarda)", + "2043-12-01": "Restoration of Independence Day", + "2043-12-08": "Immaculate Conception", + "2043-12-24": "Christmas Eve", + "2043-12-25": "Christmas", + "2043-12-26": "1st Octave; Boxing Day", + "2043-12-31": "New Year's Eve", + "2044-01-01": "New Year's Day", + "2044-02-29": "Carnival", + "2044-03-19": "St. Joseph's Day", + "2044-04-15": "Good Friday", + "2044-04-17": "Easter Sunday", + "2044-04-25": "Freedom Day", + "2044-05-01": "Labour Day", + "2044-05-03": "Feast of Our Lady of M\u00e9rcoles", + "2044-05-12": "St. Joanna's Day", + "2044-05-22": "Municipal Holiday (Leiria)", + "2044-05-23": "Municipal Holiday (Portalegre)", + "2044-05-26": "Ascension of Jesus", + "2044-06-06": "Day of the Autonomous Region of the Azores", + "2044-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2044-06-13": "St. Anthony's Day", + "2044-06-16": "Corpus Christi", + "2044-06-24": "St. John's Day", + "2044-06-29": "St. Peter's Day", + "2044-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2044-07-04": "St. Elizabeth's Day", + "2044-08-15": "Assumption Day", + "2044-08-20": "Feast of Our Lady of Sorrows", + "2044-08-22": "Feast of Our Lady of Graces", + "2044-09-07": "Municipal Holiday (Faro)", + "2044-09-15": "Bocage Day", + "2044-09-21": "St. Matthew's Day", + "2044-10-05": "Republic Day", + "2044-11-01": "All Saints Day", + "2044-11-27": "Municipal Holiday (Guarda)", + "2044-12-01": "Restoration of Independence Day", + "2044-12-08": "Immaculate Conception", + "2044-12-24": "Christmas Eve", + "2044-12-25": "Christmas", + "2044-12-26": "1st Octave; Boxing Day", + "2044-12-31": "New Year's Eve", + "2045-01-01": "New Year's Day", + "2045-02-20": "Carnival", + "2045-03-19": "St. Joseph's Day", + "2045-04-07": "Good Friday", + "2045-04-09": "Easter Sunday", + "2045-04-25": "Feast of Our Lady of M\u00e9rcoles; Freedom Day", + "2045-05-01": "Labour Day", + "2045-05-12": "St. Joanna's Day", + "2045-05-18": "Ascension of Jesus", + "2045-05-22": "Municipal Holiday (Leiria)", + "2045-05-23": "Municipal Holiday (Portalegre)", + "2045-05-29": "Day of the Autonomous Region of the Azores", + "2045-06-08": "Corpus Christi", + "2045-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2045-06-13": "St. Anthony's Day", + "2045-06-24": "St. John's Day", + "2045-06-29": "St. Peter's Day", + "2045-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2045-07-04": "St. Elizabeth's Day", + "2045-08-15": "Assumption Day", + "2045-08-20": "Feast of Our Lady of Sorrows", + "2045-08-22": "Feast of Our Lady of Graces", + "2045-09-07": "Municipal Holiday (Faro)", + "2045-09-15": "Bocage Day", + "2045-09-21": "St. Matthew's Day", + "2045-10-05": "Republic Day", + "2045-11-01": "All Saints Day", + "2045-11-27": "Municipal Holiday (Guarda)", + "2045-12-01": "Restoration of Independence Day", + "2045-12-08": "Immaculate Conception", + "2045-12-24": "Christmas Eve", + "2045-12-25": "Christmas", + "2045-12-26": "1st Octave; Boxing Day", + "2045-12-31": "New Year's Eve", + "2046-01-01": "New Year's Day", + "2046-02-05": "Carnival", + "2046-03-19": "St. Joseph's Day", + "2046-03-23": "Good Friday", + "2046-03-25": "Easter Sunday", + "2046-04-10": "Feast of Our Lady of M\u00e9rcoles", + "2046-04-25": "Freedom Day", + "2046-05-01": "Labour Day", + "2046-05-03": "Ascension of Jesus", + "2046-05-12": "St. Joanna's Day", + "2046-05-14": "Day of the Autonomous Region of the Azores", + "2046-05-22": "Municipal Holiday (Leiria)", + "2046-05-23": "Municipal Holiday (Portalegre)", + "2046-05-24": "Corpus Christi", + "2046-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2046-06-13": "St. Anthony's Day", + "2046-06-24": "St. John's Day", + "2046-06-29": "St. Peter's Day", + "2046-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2046-07-04": "St. Elizabeth's Day", + "2046-08-15": "Assumption Day", + "2046-08-20": "Feast of Our Lady of Sorrows", + "2046-08-22": "Feast of Our Lady of Graces", + "2046-09-07": "Municipal Holiday (Faro)", + "2046-09-15": "Bocage Day", + "2046-09-21": "St. Matthew's Day", + "2046-10-05": "Republic Day", + "2046-11-01": "All Saints Day", + "2046-11-27": "Municipal Holiday (Guarda)", + "2046-12-01": "Restoration of Independence Day", + "2046-12-08": "Immaculate Conception", + "2046-12-24": "Christmas Eve", + "2046-12-25": "Christmas", + "2046-12-26": "1st Octave; Boxing Day", + "2046-12-31": "New Year's Eve", + "2047-01-01": "New Year's Day", + "2047-02-25": "Carnival", + "2047-03-19": "St. Joseph's Day", + "2047-04-12": "Good Friday", + "2047-04-14": "Easter Sunday", + "2047-04-25": "Freedom Day", + "2047-04-30": "Feast of Our Lady of M\u00e9rcoles", + "2047-05-01": "Labour Day", + "2047-05-12": "St. Joanna's Day", + "2047-05-22": "Municipal Holiday (Leiria)", + "2047-05-23": "Ascension of Jesus; Municipal Holiday (Portalegre)", + "2047-06-03": "Day of the Autonomous Region of the Azores", + "2047-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2047-06-13": "Corpus Christi; St. Anthony's Day", + "2047-06-24": "St. John's Day", + "2047-06-29": "St. Peter's Day", + "2047-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2047-07-04": "St. Elizabeth's Day", + "2047-08-15": "Assumption Day", + "2047-08-20": "Feast of Our Lady of Sorrows", + "2047-08-22": "Feast of Our Lady of Graces", + "2047-09-07": "Municipal Holiday (Faro)", + "2047-09-15": "Bocage Day", + "2047-09-21": "St. Matthew's Day", + "2047-10-05": "Republic Day", + "2047-11-01": "All Saints Day", + "2047-11-27": "Municipal Holiday (Guarda)", + "2047-12-01": "Restoration of Independence Day", + "2047-12-08": "Immaculate Conception", + "2047-12-24": "Christmas Eve", + "2047-12-25": "Christmas", + "2047-12-26": "1st Octave; Boxing Day", + "2047-12-31": "New Year's Eve", + "2048-01-01": "New Year's Day", + "2048-02-17": "Carnival", + "2048-03-19": "St. Joseph's Day", + "2048-04-03": "Good Friday", + "2048-04-05": "Easter Sunday", + "2048-04-21": "Feast of Our Lady of M\u00e9rcoles", + "2048-04-25": "Freedom Day", + "2048-05-01": "Labour Day", + "2048-05-12": "St. Joanna's Day", + "2048-05-14": "Ascension of Jesus", + "2048-05-22": "Municipal Holiday (Leiria)", + "2048-05-23": "Municipal Holiday (Portalegre)", + "2048-05-25": "Day of the Autonomous Region of the Azores", + "2048-06-04": "Corpus Christi", + "2048-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2048-06-13": "St. Anthony's Day", + "2048-06-24": "St. John's Day", + "2048-06-29": "St. Peter's Day", + "2048-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2048-07-04": "St. Elizabeth's Day", + "2048-08-15": "Assumption Day", + "2048-08-20": "Feast of Our Lady of Sorrows", + "2048-08-22": "Feast of Our Lady of Graces", + "2048-09-07": "Municipal Holiday (Faro)", + "2048-09-15": "Bocage Day", + "2048-09-21": "St. Matthew's Day", + "2048-10-05": "Republic Day", + "2048-11-01": "All Saints Day", + "2048-11-27": "Municipal Holiday (Guarda)", + "2048-12-01": "Restoration of Independence Day", + "2048-12-08": "Immaculate Conception", + "2048-12-24": "Christmas Eve", + "2048-12-25": "Christmas", + "2048-12-26": "1st Octave; Boxing Day", + "2048-12-31": "New Year's Eve", + "2049-01-01": "New Year's Day", + "2049-03-01": "Carnival", + "2049-03-19": "St. Joseph's Day", + "2049-04-16": "Good Friday", + "2049-04-18": "Easter Sunday", + "2049-04-25": "Freedom Day", + "2049-05-01": "Labour Day", + "2049-05-04": "Feast of Our Lady of M\u00e9rcoles", + "2049-05-12": "St. Joanna's Day", + "2049-05-22": "Municipal Holiday (Leiria)", + "2049-05-23": "Municipal Holiday (Portalegre)", + "2049-05-27": "Ascension of Jesus", + "2049-06-07": "Day of the Autonomous Region of the Azores", + "2049-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2049-06-13": "St. Anthony's Day", + "2049-06-17": "Corpus Christi", + "2049-06-24": "St. John's Day", + "2049-06-29": "St. Peter's Day", + "2049-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2049-07-04": "St. Elizabeth's Day", + "2049-08-15": "Assumption Day", + "2049-08-20": "Feast of Our Lady of Sorrows", + "2049-08-22": "Feast of Our Lady of Graces", + "2049-09-07": "Municipal Holiday (Faro)", + "2049-09-15": "Bocage Day", + "2049-09-21": "St. Matthew's Day", + "2049-10-05": "Republic Day", + "2049-11-01": "All Saints Day", + "2049-11-27": "Municipal Holiday (Guarda)", + "2049-12-01": "Restoration of Independence Day", + "2049-12-08": "Immaculate Conception", + "2049-12-24": "Christmas Eve", + "2049-12-25": "Christmas", + "2049-12-26": "1st Octave; Boxing Day", + "2049-12-31": "New Year's Eve", + "2050-01-01": "New Year's Day", + "2050-02-21": "Carnival", + "2050-03-19": "St. Joseph's Day", + "2050-04-08": "Good Friday", + "2050-04-10": "Easter Sunday", + "2050-04-25": "Freedom Day", + "2050-04-26": "Feast of Our Lady of M\u00e9rcoles", + "2050-05-01": "Labour Day", + "2050-05-12": "St. Joanna's Day", + "2050-05-19": "Ascension of Jesus", + "2050-05-22": "Municipal Holiday (Leiria)", + "2050-05-23": "Municipal Holiday (Portalegre)", + "2050-05-30": "Day of the Autonomous Region of the Azores", + "2050-06-09": "Corpus Christi", + "2050-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", + "2050-06-13": "St. Anthony's Day", + "2050-06-24": "St. John's Day", + "2050-06-29": "St. Peter's Day", + "2050-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "2050-07-04": "St. Elizabeth's Day", + "2050-08-15": "Assumption Day", + "2050-08-20": "Feast of Our Lady of Sorrows", + "2050-08-22": "Feast of Our Lady of Graces", + "2050-09-07": "Municipal Holiday (Faro)", + "2050-09-15": "Bocage Day", + "2050-09-21": "St. Matthew's Day", + "2050-10-05": "Republic Day", + "2050-11-01": "All Saints Day", + "2050-11-27": "Municipal Holiday (Guarda)", + "2050-12-01": "Restoration of Independence Day", + "2050-12-08": "Immaculate Conception", + "2050-12-24": "Christmas Eve", + "2050-12-25": "Christmas", + "2050-12-26": "1st Octave; Boxing Day", + "2050-12-31": "New Year's Eve" +} diff --git a/snapshots/countries/PY.json b/snapshots/countries/PY.json new file mode 100644 index 000000000..cd7145ad5 --- /dev/null +++ b/snapshots/countries/PY.json @@ -0,0 +1,1239 @@ +{ + "1950-01-01": "New Year's Day", + "1950-03-01": "Patriots Day", + "1950-04-06": "Maundy Thursday", + "1950-04-07": "Good Friday", + "1950-04-09": "Easter Day", + "1950-05-01": "Labour Day", + "1950-05-15": "Independence Day", + "1950-06-12": "Chaco Armistice Day", + "1950-08-15": "Asuncion Foundation's Day", + "1950-12-08": "Caacupe Virgin Day", + "1950-12-25": "Christmas", + "1951-01-01": "New Year's Day", + "1951-03-01": "Patriots Day", + "1951-03-22": "Maundy Thursday", + "1951-03-23": "Good Friday", + "1951-03-25": "Easter Day", + "1951-05-01": "Labour Day", + "1951-05-15": "Independence Day", + "1951-06-12": "Chaco Armistice Day", + "1951-08-15": "Asuncion Foundation's Day", + "1951-12-08": "Caacupe Virgin Day", + "1951-12-25": "Christmas", + "1952-01-01": "New Year's Day", + "1952-03-01": "Patriots Day", + "1952-04-10": "Maundy Thursday", + "1952-04-11": "Good Friday", + "1952-04-13": "Easter Day", + "1952-05-01": "Labour Day", + "1952-05-15": "Independence Day", + "1952-06-12": "Chaco Armistice Day", + "1952-08-15": "Asuncion Foundation's Day", + "1952-12-08": "Caacupe Virgin Day", + "1952-12-25": "Christmas", + "1953-01-01": "New Year's Day", + "1953-03-01": "Patriots Day", + "1953-04-02": "Maundy Thursday", + "1953-04-03": "Good Friday", + "1953-04-05": "Easter Day", + "1953-05-01": "Labour Day", + "1953-05-15": "Independence Day", + "1953-06-12": "Chaco Armistice Day", + "1953-08-15": "Asuncion Foundation's Day", + "1953-12-08": "Caacupe Virgin Day", + "1953-12-25": "Christmas", + "1954-01-01": "New Year's Day", + "1954-03-01": "Patriots Day", + "1954-04-15": "Maundy Thursday", + "1954-04-16": "Good Friday", + "1954-04-18": "Easter Day", + "1954-05-01": "Labour Day", + "1954-05-15": "Independence Day", + "1954-06-12": "Chaco Armistice Day", + "1954-08-15": "Asuncion Foundation's Day", + "1954-12-08": "Caacupe Virgin Day", + "1954-12-25": "Christmas", + "1955-01-01": "New Year's Day", + "1955-03-01": "Patriots Day", + "1955-04-07": "Maundy Thursday", + "1955-04-08": "Good Friday", + "1955-04-10": "Easter Day", + "1955-05-01": "Labour Day", + "1955-05-15": "Independence Day", + "1955-06-12": "Chaco Armistice Day", + "1955-08-15": "Asuncion Foundation's Day", + "1955-12-08": "Caacupe Virgin Day", + "1955-12-25": "Christmas", + "1956-01-01": "New Year's Day", + "1956-03-01": "Patriots Day", + "1956-03-29": "Maundy Thursday", + "1956-03-30": "Good Friday", + "1956-04-01": "Easter Day", + "1956-05-01": "Labour Day", + "1956-05-15": "Independence Day", + "1956-06-12": "Chaco Armistice Day", + "1956-08-15": "Asuncion Foundation's Day", + "1956-12-08": "Caacupe Virgin Day", + "1956-12-25": "Christmas", + "1957-01-01": "New Year's Day", + "1957-03-01": "Patriots Day", + "1957-04-18": "Maundy Thursday", + "1957-04-19": "Good Friday", + "1957-04-21": "Easter Day", + "1957-05-01": "Labour Day", + "1957-05-15": "Independence Day", + "1957-06-12": "Chaco Armistice Day", + "1957-08-15": "Asuncion Foundation's Day", + "1957-12-08": "Caacupe Virgin Day", + "1957-12-25": "Christmas", + "1958-01-01": "New Year's Day", + "1958-03-01": "Patriots Day", + "1958-04-03": "Maundy Thursday", + "1958-04-04": "Good Friday", + "1958-04-06": "Easter Day", + "1958-05-01": "Labour Day", + "1958-05-15": "Independence Day", + "1958-06-12": "Chaco Armistice Day", + "1958-08-15": "Asuncion Foundation's Day", + "1958-12-08": "Caacupe Virgin Day", + "1958-12-25": "Christmas", + "1959-01-01": "New Year's Day", + "1959-03-01": "Patriots Day", + "1959-03-26": "Maundy Thursday", + "1959-03-27": "Good Friday", + "1959-03-29": "Easter Day", + "1959-05-01": "Labour Day", + "1959-05-15": "Independence Day", + "1959-06-12": "Chaco Armistice Day", + "1959-08-15": "Asuncion Foundation's Day", + "1959-12-08": "Caacupe Virgin Day", + "1959-12-25": "Christmas", + "1960-01-01": "New Year's Day", + "1960-03-01": "Patriots Day", + "1960-04-14": "Maundy Thursday", + "1960-04-15": "Good Friday", + "1960-04-17": "Easter Day", + "1960-05-01": "Labour Day", + "1960-05-15": "Independence Day", + "1960-06-12": "Chaco Armistice Day", + "1960-08-15": "Asuncion Foundation's Day", + "1960-12-08": "Caacupe Virgin Day", + "1960-12-25": "Christmas", + "1961-01-01": "New Year's Day", + "1961-03-01": "Patriots Day", + "1961-03-30": "Maundy Thursday", + "1961-03-31": "Good Friday", + "1961-04-02": "Easter Day", + "1961-05-01": "Labour Day", + "1961-05-15": "Independence Day", + "1961-06-12": "Chaco Armistice Day", + "1961-08-15": "Asuncion Foundation's Day", + "1961-12-08": "Caacupe Virgin Day", + "1961-12-25": "Christmas", + "1962-01-01": "New Year's Day", + "1962-03-01": "Patriots Day", + "1962-04-19": "Maundy Thursday", + "1962-04-20": "Good Friday", + "1962-04-22": "Easter Day", + "1962-05-01": "Labour Day", + "1962-05-15": "Independence Day", + "1962-06-12": "Chaco Armistice Day", + "1962-08-15": "Asuncion Foundation's Day", + "1962-12-08": "Caacupe Virgin Day", + "1962-12-25": "Christmas", + "1963-01-01": "New Year's Day", + "1963-03-01": "Patriots Day", + "1963-04-11": "Maundy Thursday", + "1963-04-12": "Good Friday", + "1963-04-14": "Easter Day", + "1963-05-01": "Labour Day", + "1963-05-15": "Independence Day", + "1963-06-12": "Chaco Armistice Day", + "1963-08-15": "Asuncion Foundation's Day", + "1963-12-08": "Caacupe Virgin Day", + "1963-12-25": "Christmas", + "1964-01-01": "New Year's Day", + "1964-03-01": "Patriots Day", + "1964-03-26": "Maundy Thursday", + "1964-03-27": "Good Friday", + "1964-03-29": "Easter Day", + "1964-05-01": "Labour Day", + "1964-05-15": "Independence Day", + "1964-06-12": "Chaco Armistice Day", + "1964-08-15": "Asuncion Foundation's Day", + "1964-12-08": "Caacupe Virgin Day", + "1964-12-25": "Christmas", + "1965-01-01": "New Year's Day", + "1965-03-01": "Patriots Day", + "1965-04-15": "Maundy Thursday", + "1965-04-16": "Good Friday", + "1965-04-18": "Easter Day", + "1965-05-01": "Labour Day", + "1965-05-15": "Independence Day", + "1965-06-12": "Chaco Armistice Day", + "1965-08-15": "Asuncion Foundation's Day", + "1965-12-08": "Caacupe Virgin Day", + "1965-12-25": "Christmas", + "1966-01-01": "New Year's Day", + "1966-03-01": "Patriots Day", + "1966-04-07": "Maundy Thursday", + "1966-04-08": "Good Friday", + "1966-04-10": "Easter Day", + "1966-05-01": "Labour Day", + "1966-05-15": "Independence Day", + "1966-06-12": "Chaco Armistice Day", + "1966-08-15": "Asuncion Foundation's Day", + "1966-12-08": "Caacupe Virgin Day", + "1966-12-25": "Christmas", + "1967-01-01": "New Year's Day", + "1967-03-01": "Patriots Day", + "1967-03-23": "Maundy Thursday", + "1967-03-24": "Good Friday", + "1967-03-26": "Easter Day", + "1967-05-01": "Labour Day", + "1967-05-15": "Independence Day", + "1967-06-12": "Chaco Armistice Day", + "1967-08-15": "Asuncion Foundation's Day", + "1967-12-08": "Caacupe Virgin Day", + "1967-12-25": "Christmas", + "1968-01-01": "New Year's Day", + "1968-03-01": "Patriots Day", + "1968-04-11": "Maundy Thursday", + "1968-04-12": "Good Friday", + "1968-04-14": "Easter Day", + "1968-05-01": "Labour Day", + "1968-05-15": "Independence Day", + "1968-06-12": "Chaco Armistice Day", + "1968-08-15": "Asuncion Foundation's Day", + "1968-12-08": "Caacupe Virgin Day", + "1968-12-25": "Christmas", + "1969-01-01": "New Year's Day", + "1969-03-01": "Patriots Day", + "1969-04-03": "Maundy Thursday", + "1969-04-04": "Good Friday", + "1969-04-06": "Easter Day", + "1969-05-01": "Labour Day", + "1969-05-15": "Independence Day", + "1969-06-12": "Chaco Armistice Day", + "1969-08-15": "Asuncion Foundation's Day", + "1969-12-08": "Caacupe Virgin Day", + "1969-12-25": "Christmas", + "1970-01-01": "New Year's Day", + "1970-03-01": "Patriots Day", + "1970-03-26": "Maundy Thursday", + "1970-03-27": "Good Friday", + "1970-03-29": "Easter Day", + "1970-05-01": "Labour Day", + "1970-05-15": "Independence Day", + "1970-06-12": "Chaco Armistice Day", + "1970-08-15": "Asuncion Foundation's Day", + "1970-12-08": "Caacupe Virgin Day", + "1970-12-25": "Christmas", + "1971-01-01": "New Year's Day", + "1971-03-01": "Patriots Day", + "1971-04-08": "Maundy Thursday", + "1971-04-09": "Good Friday", + "1971-04-11": "Easter Day", + "1971-05-01": "Labour Day", + "1971-05-15": "Independence Day", + "1971-06-12": "Chaco Armistice Day", + "1971-08-15": "Asuncion Foundation's Day", + "1971-12-08": "Caacupe Virgin Day", + "1971-12-25": "Christmas", + "1972-01-01": "New Year's Day", + "1972-03-01": "Patriots Day", + "1972-03-30": "Maundy Thursday", + "1972-03-31": "Good Friday", + "1972-04-02": "Easter Day", + "1972-05-01": "Labour Day", + "1972-05-15": "Independence Day", + "1972-06-12": "Chaco Armistice Day", + "1972-08-15": "Asuncion Foundation's Day", + "1972-12-08": "Caacupe Virgin Day", + "1972-12-25": "Christmas", + "1973-01-01": "New Year's Day", + "1973-03-01": "Patriots Day", + "1973-04-19": "Maundy Thursday", + "1973-04-20": "Good Friday", + "1973-04-22": "Easter Day", + "1973-05-01": "Labour Day", + "1973-05-15": "Independence Day", + "1973-06-12": "Chaco Armistice Day", + "1973-08-15": "Asuncion Foundation's Day", + "1973-12-08": "Caacupe Virgin Day", + "1973-12-25": "Christmas", + "1974-01-01": "New Year's Day", + "1974-03-01": "Patriots Day", + "1974-04-11": "Maundy Thursday", + "1974-04-12": "Good Friday", + "1974-04-14": "Easter Day", + "1974-05-01": "Labour Day", + "1974-05-15": "Independence Day", + "1974-06-12": "Chaco Armistice Day", + "1974-08-15": "Asuncion Foundation's Day", + "1974-12-08": "Caacupe Virgin Day", + "1974-12-25": "Christmas", + "1975-01-01": "New Year's Day", + "1975-03-01": "Patriots Day", + "1975-03-27": "Maundy Thursday", + "1975-03-28": "Good Friday", + "1975-03-30": "Easter Day", + "1975-05-01": "Labour Day", + "1975-05-15": "Independence Day", + "1975-06-12": "Chaco Armistice Day", + "1975-08-15": "Asuncion Foundation's Day", + "1975-12-08": "Caacupe Virgin Day", + "1975-12-25": "Christmas", + "1976-01-01": "New Year's Day", + "1976-03-01": "Patriots Day", + "1976-04-15": "Maundy Thursday", + "1976-04-16": "Good Friday", + "1976-04-18": "Easter Day", + "1976-05-01": "Labour Day", + "1976-05-15": "Independence Day", + "1976-06-12": "Chaco Armistice Day", + "1976-08-15": "Asuncion Foundation's Day", + "1976-12-08": "Caacupe Virgin Day", + "1976-12-25": "Christmas", + "1977-01-01": "New Year's Day", + "1977-03-01": "Patriots Day", + "1977-04-07": "Maundy Thursday", + "1977-04-08": "Good Friday", + "1977-04-10": "Easter Day", + "1977-05-01": "Labour Day", + "1977-05-15": "Independence Day", + "1977-06-12": "Chaco Armistice Day", + "1977-08-15": "Asuncion Foundation's Day", + "1977-12-08": "Caacupe Virgin Day", + "1977-12-25": "Christmas", + "1978-01-01": "New Year's Day", + "1978-03-01": "Patriots Day", + "1978-03-23": "Maundy Thursday", + "1978-03-24": "Good Friday", + "1978-03-26": "Easter Day", + "1978-05-01": "Labour Day", + "1978-05-15": "Independence Day", + "1978-06-12": "Chaco Armistice Day", + "1978-08-15": "Asuncion Foundation's Day", + "1978-12-08": "Caacupe Virgin Day", + "1978-12-25": "Christmas", + "1979-01-01": "New Year's Day", + "1979-03-01": "Patriots Day", + "1979-04-12": "Maundy Thursday", + "1979-04-13": "Good Friday", + "1979-04-15": "Easter Day", + "1979-05-01": "Labour Day", + "1979-05-15": "Independence Day", + "1979-06-12": "Chaco Armistice Day", + "1979-08-15": "Asuncion Foundation's Day", + "1979-12-08": "Caacupe Virgin Day", + "1979-12-25": "Christmas", + "1980-01-01": "New Year's Day", + "1980-03-01": "Patriots Day", + "1980-04-03": "Maundy Thursday", + "1980-04-04": "Good Friday", + "1980-04-06": "Easter Day", + "1980-05-01": "Labour Day", + "1980-05-15": "Independence Day", + "1980-06-12": "Chaco Armistice Day", + "1980-08-15": "Asuncion Foundation's Day", + "1980-12-08": "Caacupe Virgin Day", + "1980-12-25": "Christmas", + "1981-01-01": "New Year's Day", + "1981-03-01": "Patriots Day", + "1981-04-16": "Maundy Thursday", + "1981-04-17": "Good Friday", + "1981-04-19": "Easter Day", + "1981-05-01": "Labour Day", + "1981-05-15": "Independence Day", + "1981-06-12": "Chaco Armistice Day", + "1981-08-15": "Asuncion Foundation's Day", + "1981-12-08": "Caacupe Virgin Day", + "1981-12-25": "Christmas", + "1982-01-01": "New Year's Day", + "1982-03-01": "Patriots Day", + "1982-04-08": "Maundy Thursday", + "1982-04-09": "Good Friday", + "1982-04-11": "Easter Day", + "1982-05-01": "Labour Day", + "1982-05-15": "Independence Day", + "1982-06-12": "Chaco Armistice Day", + "1982-08-15": "Asuncion Foundation's Day", + "1982-12-08": "Caacupe Virgin Day", + "1982-12-25": "Christmas", + "1983-01-01": "New Year's Day", + "1983-03-01": "Patriots Day", + "1983-03-31": "Maundy Thursday", + "1983-04-01": "Good Friday", + "1983-04-03": "Easter Day", + "1983-05-01": "Labour Day", + "1983-05-15": "Independence Day", + "1983-06-12": "Chaco Armistice Day", + "1983-08-15": "Asuncion Foundation's Day", + "1983-12-08": "Caacupe Virgin Day", + "1983-12-25": "Christmas", + "1984-01-01": "New Year's Day", + "1984-03-01": "Patriots Day", + "1984-04-19": "Maundy Thursday", + "1984-04-20": "Good Friday", + "1984-04-22": "Easter Day", + "1984-05-01": "Labour Day", + "1984-05-15": "Independence Day", + "1984-06-12": "Chaco Armistice Day", + "1984-08-15": "Asuncion Foundation's Day", + "1984-12-08": "Caacupe Virgin Day", + "1984-12-25": "Christmas", + "1985-01-01": "New Year's Day", + "1985-03-01": "Patriots Day", + "1985-04-04": "Maundy Thursday", + "1985-04-05": "Good Friday", + "1985-04-07": "Easter Day", + "1985-05-01": "Labour Day", + "1985-05-15": "Independence Day", + "1985-06-12": "Chaco Armistice Day", + "1985-08-15": "Asuncion Foundation's Day", + "1985-12-08": "Caacupe Virgin Day", + "1985-12-25": "Christmas", + "1986-01-01": "New Year's Day", + "1986-03-01": "Patriots Day", + "1986-03-27": "Maundy Thursday", + "1986-03-28": "Good Friday", + "1986-03-30": "Easter Day", + "1986-05-01": "Labour Day", + "1986-05-15": "Independence Day", + "1986-06-12": "Chaco Armistice Day", + "1986-08-15": "Asuncion Foundation's Day", + "1986-12-08": "Caacupe Virgin Day", + "1986-12-25": "Christmas", + "1987-01-01": "New Year's Day", + "1987-03-01": "Patriots Day", + "1987-04-16": "Maundy Thursday", + "1987-04-17": "Good Friday", + "1987-04-19": "Easter Day", + "1987-05-01": "Labour Day", + "1987-05-15": "Independence Day", + "1987-06-12": "Chaco Armistice Day", + "1987-08-15": "Asuncion Foundation's Day", + "1987-12-08": "Caacupe Virgin Day", + "1987-12-25": "Christmas", + "1988-01-01": "New Year's Day", + "1988-03-01": "Patriots Day", + "1988-03-31": "Maundy Thursday", + "1988-04-01": "Good Friday", + "1988-04-03": "Easter Day", + "1988-05-01": "Labour Day", + "1988-05-15": "Independence Day", + "1988-06-12": "Chaco Armistice Day", + "1988-08-15": "Asuncion Foundation's Day", + "1988-12-08": "Caacupe Virgin Day", + "1988-12-25": "Christmas", + "1989-01-01": "New Year's Day", + "1989-03-01": "Patriots Day", + "1989-03-23": "Maundy Thursday", + "1989-03-24": "Good Friday", + "1989-03-26": "Easter Day", + "1989-05-01": "Labour Day", + "1989-05-15": "Independence Day", + "1989-06-12": "Chaco Armistice Day", + "1989-08-15": "Asuncion Foundation's Day", + "1989-12-08": "Caacupe Virgin Day", + "1989-12-25": "Christmas", + "1990-01-01": "New Year's Day", + "1990-03-01": "Patriots Day", + "1990-04-12": "Maundy Thursday", + "1990-04-13": "Good Friday", + "1990-04-15": "Easter Day", + "1990-05-01": "Labour Day", + "1990-05-15": "Independence Day", + "1990-06-12": "Chaco Armistice Day", + "1990-08-15": "Asuncion Foundation's Day", + "1990-12-08": "Caacupe Virgin Day", + "1990-12-25": "Christmas", + "1991-01-01": "New Year's Day", + "1991-03-01": "Patriots Day", + "1991-03-28": "Maundy Thursday", + "1991-03-29": "Good Friday", + "1991-03-31": "Easter Day", + "1991-05-01": "Labour Day", + "1991-05-15": "Independence Day", + "1991-06-12": "Chaco Armistice Day", + "1991-08-15": "Asuncion Foundation's Day", + "1991-12-08": "Caacupe Virgin Day", + "1991-12-25": "Christmas", + "1992-01-01": "New Year's Day", + "1992-03-01": "Patriots Day", + "1992-04-16": "Maundy Thursday", + "1992-04-17": "Good Friday", + "1992-04-19": "Easter Day", + "1992-05-01": "Labour Day", + "1992-05-15": "Independence Day", + "1992-06-12": "Chaco Armistice Day", + "1992-08-15": "Asuncion Foundation's Day", + "1992-12-08": "Caacupe Virgin Day", + "1992-12-25": "Christmas", + "1993-01-01": "New Year's Day", + "1993-03-01": "Patriots Day", + "1993-04-08": "Maundy Thursday", + "1993-04-09": "Good Friday", + "1993-04-11": "Easter Day", + "1993-05-01": "Labour Day", + "1993-05-15": "Independence Day", + "1993-06-12": "Chaco Armistice Day", + "1993-08-15": "Asuncion Foundation's Day", + "1993-12-08": "Caacupe Virgin Day", + "1993-12-25": "Christmas", + "1994-01-01": "New Year's Day", + "1994-03-01": "Patriots Day", + "1994-03-31": "Maundy Thursday", + "1994-04-01": "Good Friday", + "1994-04-03": "Easter Day", + "1994-05-01": "Labour Day", + "1994-05-15": "Independence Day", + "1994-06-12": "Chaco Armistice Day", + "1994-08-15": "Asuncion Foundation's Day", + "1994-12-08": "Caacupe Virgin Day", + "1994-12-25": "Christmas", + "1995-01-01": "New Year's Day", + "1995-03-01": "Patriots Day", + "1995-04-13": "Maundy Thursday", + "1995-04-14": "Good Friday", + "1995-04-16": "Easter Day", + "1995-05-01": "Labour Day", + "1995-05-15": "Independence Day", + "1995-06-12": "Chaco Armistice Day", + "1995-08-15": "Asuncion Foundation's Day", + "1995-12-08": "Caacupe Virgin Day", + "1995-12-25": "Christmas", + "1996-01-01": "New Year's Day", + "1996-03-01": "Patriots Day", + "1996-04-04": "Maundy Thursday", + "1996-04-05": "Good Friday", + "1996-04-07": "Easter Day", + "1996-05-01": "Labour Day", + "1996-05-15": "Independence Day", + "1996-06-12": "Chaco Armistice Day", + "1996-08-15": "Asuncion Foundation's Day", + "1996-12-08": "Caacupe Virgin Day", + "1996-12-25": "Christmas", + "1997-01-01": "New Year's Day", + "1997-03-01": "Patriots Day", + "1997-03-27": "Maundy Thursday", + "1997-03-28": "Good Friday", + "1997-03-30": "Easter Day", + "1997-05-01": "Labour Day", + "1997-05-15": "Independence Day", + "1997-06-12": "Chaco Armistice Day", + "1997-08-15": "Asuncion Foundation's Day", + "1997-12-08": "Caacupe Virgin Day", + "1997-12-25": "Christmas", + "1998-01-01": "New Year's Day", + "1998-03-01": "Patriots Day", + "1998-04-09": "Maundy Thursday", + "1998-04-10": "Good Friday", + "1998-04-12": "Easter Day", + "1998-05-01": "Labour Day", + "1998-05-15": "Independence Day", + "1998-06-12": "Chaco Armistice Day", + "1998-08-15": "Asuncion Foundation's Day", + "1998-12-08": "Caacupe Virgin Day", + "1998-12-25": "Christmas", + "1999-01-01": "New Year's Day", + "1999-03-01": "Patriots Day", + "1999-04-01": "Maundy Thursday", + "1999-04-02": "Good Friday", + "1999-04-04": "Easter Day", + "1999-05-01": "Labour Day", + "1999-05-15": "Independence Day", + "1999-06-12": "Chaco Armistice Day", + "1999-08-15": "Asuncion Foundation's Day", + "1999-12-08": "Caacupe Virgin Day", + "1999-12-25": "Christmas", + "2000-01-01": "New Year's Day", + "2000-03-01": "Patriots Day", + "2000-04-20": "Maundy Thursday", + "2000-04-21": "Good Friday", + "2000-04-23": "Easter Day", + "2000-05-01": "Labour Day", + "2000-05-15": "Independence Day", + "2000-06-12": "Chaco Armistice Day", + "2000-08-15": "Asuncion Foundation's Day", + "2000-09-29": "Boqueron Battle Day", + "2000-12-08": "Caacupe Virgin Day", + "2000-12-25": "Christmas", + "2001-01-01": "New Year's Day", + "2001-03-01": "Patriots Day", + "2001-04-12": "Maundy Thursday", + "2001-04-13": "Good Friday", + "2001-04-15": "Easter Day", + "2001-05-01": "Labour Day", + "2001-05-15": "Independence Day", + "2001-06-12": "Chaco Armistice Day", + "2001-08-15": "Asuncion Foundation's Day", + "2001-09-29": "Boqueron Battle Day", + "2001-12-08": "Caacupe Virgin Day", + "2001-12-25": "Christmas", + "2002-01-01": "New Year's Day", + "2002-03-01": "Patriots Day", + "2002-03-28": "Maundy Thursday", + "2002-03-29": "Good Friday", + "2002-03-31": "Easter Day", + "2002-05-01": "Labour Day", + "2002-05-15": "Independence Day", + "2002-06-12": "Chaco Armistice Day", + "2002-08-15": "Asuncion Foundation's Day", + "2002-09-29": "Boqueron Battle Day", + "2002-12-08": "Caacupe Virgin Day", + "2002-12-25": "Christmas", + "2003-01-01": "New Year's Day", + "2003-03-01": "Patriots Day", + "2003-04-17": "Maundy Thursday", + "2003-04-18": "Good Friday", + "2003-04-20": "Easter Day", + "2003-05-01": "Labour Day", + "2003-05-15": "Independence Day", + "2003-06-12": "Chaco Armistice Day", + "2003-08-15": "Asuncion Foundation's Day", + "2003-09-29": "Boqueron Battle Day", + "2003-12-08": "Caacupe Virgin Day", + "2003-12-25": "Christmas", + "2004-01-01": "New Year's Day", + "2004-03-01": "Patriots Day", + "2004-04-08": "Maundy Thursday", + "2004-04-09": "Good Friday", + "2004-04-11": "Easter Day", + "2004-05-01": "Labour Day", + "2004-05-15": "Independence Day", + "2004-06-12": "Chaco Armistice Day", + "2004-08-15": "Asuncion Foundation's Day", + "2004-09-29": "Boqueron Battle Day", + "2004-12-08": "Caacupe Virgin Day", + "2004-12-25": "Christmas", + "2005-01-01": "New Year's Day", + "2005-03-01": "Patriots Day", + "2005-03-24": "Maundy Thursday", + "2005-03-25": "Good Friday", + "2005-03-27": "Easter Day", + "2005-05-01": "Labour Day", + "2005-05-15": "Independence Day", + "2005-06-12": "Chaco Armistice Day", + "2005-08-15": "Asuncion Foundation's Day", + "2005-09-29": "Boqueron Battle Day", + "2005-12-08": "Caacupe Virgin Day", + "2005-12-25": "Christmas", + "2006-01-01": "New Year's Day", + "2006-03-01": "Patriots Day", + "2006-04-13": "Maundy Thursday", + "2006-04-14": "Good Friday", + "2006-04-16": "Easter Day", + "2006-05-01": "Labour Day", + "2006-05-15": "Independence Day", + "2006-06-12": "Chaco Armistice Day", + "2006-08-15": "Asuncion Foundation's Day", + "2006-09-29": "Boqueron Battle Day", + "2006-12-08": "Caacupe Virgin Day", + "2006-12-25": "Christmas", + "2007-01-01": "New Year's Day", + "2007-01-29": "Public holiday", + "2007-03-01": "Patriots Day", + "2007-04-05": "Maundy Thursday", + "2007-04-06": "Good Friday", + "2007-04-08": "Easter Day", + "2007-05-01": "Labour Day", + "2007-05-15": "Independence Day", + "2007-06-12": "Chaco Armistice Day", + "2007-08-15": "Asuncion Foundation's Day", + "2007-09-29": "Boqueron Battle Day", + "2007-12-08": "Caacupe Virgin Day", + "2007-12-25": "Christmas", + "2008-01-01": "New Year's Day", + "2008-03-01": "Patriots Day", + "2008-03-20": "Maundy Thursday", + "2008-03-21": "Good Friday", + "2008-03-23": "Easter Day", + "2008-05-01": "Labour Day", + "2008-05-15": "Independence Day", + "2008-06-12": "Chaco Armistice Day", + "2008-08-15": "Asuncion Foundation's Day", + "2008-09-29": "Boqueron Battle Day", + "2008-12-08": "Caacupe Virgin Day", + "2008-12-25": "Christmas", + "2009-01-01": "New Year's Day", + "2009-03-01": "Patriots Day", + "2009-04-09": "Maundy Thursday", + "2009-04-10": "Good Friday", + "2009-04-12": "Easter Day", + "2009-05-01": "Labour Day", + "2009-05-15": "Independence Day", + "2009-06-12": "Chaco Armistice Day", + "2009-08-15": "Asuncion Foundation's Day", + "2009-09-10": "Public holiday", + "2009-09-29": "Boqueron Battle Day", + "2009-12-08": "Caacupe Virgin Day", + "2009-12-25": "Christmas", + "2010-01-01": "New Year's Day", + "2010-03-01": "Patriots Day", + "2010-04-01": "Maundy Thursday", + "2010-04-02": "Good Friday", + "2010-04-04": "Easter Day", + "2010-05-01": "Labour Day", + "2010-05-15": "Independence Day", + "2010-06-12": "Chaco Armistice Day", + "2010-06-14": "Public holiday", + "2010-08-15": "Asuncion Foundation's Day", + "2010-09-29": "Boqueron Battle Day", + "2010-12-08": "Caacupe Virgin Day", + "2010-12-24": "Public sector holiday", + "2010-12-25": "Christmas", + "2010-12-31": "Public sector holiday", + "2011-01-01": "New Year's Day", + "2011-03-01": "Patriots Day", + "2011-04-19": "Public holiday", + "2011-04-20": "Public sector holiday", + "2011-04-21": "Maundy Thursday", + "2011-04-22": "Good Friday", + "2011-04-24": "Easter Day", + "2011-05-01": "Labour Day", + "2011-05-14": "Public holiday", + "2011-05-15": "Independence Day", + "2011-05-16": "Public holiday", + "2011-06-12": "Chaco Armistice Day", + "2011-08-15": "Asuncion Foundation's Day", + "2011-09-29": "Boqueron Battle Day", + "2011-12-08": "Caacupe Virgin Day", + "2011-12-23": "Public sector holiday", + "2011-12-25": "Christmas", + "2011-12-30": "Public sector holiday", + "2012-01-01": "New Year's Day", + "2012-03-01": "Patriots Day", + "2012-04-04": "Public sector holiday", + "2012-04-05": "Maundy Thursday", + "2012-04-06": "Good Friday", + "2012-04-08": "Easter Day", + "2012-05-01": "Labour Day", + "2012-05-14": "Independence Day", + "2012-05-15": "Independence Day", + "2012-06-12": "Chaco Armistice Day", + "2012-08-15": "Asuncion Foundation's Day", + "2012-09-29": "Boqueron Battle Day", + "2012-12-08": "Caacupe Virgin Day", + "2012-12-24": "Public sector holiday", + "2012-12-25": "Christmas", + "2012-12-31": "Public sector holiday", + "2013-01-01": "New Year's Day", + "2013-03-04": "Patriots Day", + "2013-03-27": "Public sector holiday", + "2013-03-28": "Maundy Thursday", + "2013-03-29": "Good Friday", + "2013-03-31": "Easter Day", + "2013-05-01": "Labour Day", + "2013-05-14": "Independence Day", + "2013-05-15": "Independence Day", + "2013-06-12": "Chaco Armistice Day", + "2013-08-14": "Public holiday", + "2013-08-15": "Asuncion Foundation's Day", + "2013-09-29": "Boqueron Battle Day", + "2013-12-08": "Caacupe Virgin Day", + "2013-12-25": "Christmas", + "2014-01-01": "New Year's Day", + "2014-03-01": "Patriots Day", + "2014-04-16": "Public sector holiday", + "2014-04-17": "Maundy Thursday", + "2014-04-18": "Good Friday", + "2014-04-20": "Easter Day", + "2014-05-01": "Labour Day", + "2014-05-14": "Independence Day", + "2014-05-15": "Independence Day", + "2014-06-16": "Chaco Armistice Day", + "2014-08-15": "Asuncion Foundation's Day", + "2014-09-29": "Boqueron Battle Day", + "2014-12-08": "Caacupe Virgin Day", + "2014-12-24": "Public sector holiday", + "2014-12-25": "Christmas", + "2014-12-31": "Public sector holiday", + "2015-01-01": "New Year's Day", + "2015-03-01": "Patriots Day", + "2015-04-01": "Public sector holiday", + "2015-04-02": "Maundy Thursday", + "2015-04-03": "Good Friday", + "2015-04-05": "Easter Day", + "2015-05-01": "Labour Day", + "2015-05-14": "Independence Day", + "2015-05-15": "Independence Day", + "2015-06-12": "Chaco Armistice Day", + "2015-07-10": "Public holiday", + "2015-07-11": "Public holiday", + "2015-08-15": "Asuncion Foundation's Day", + "2015-09-28": "Boqueron Battle Day", + "2015-12-08": "Caacupe Virgin Day", + "2015-12-24": "Public sector holiday", + "2015-12-25": "Christmas", + "2015-12-31": "Public sector holiday", + "2016-01-01": "New Year's Day", + "2016-02-29": "Patriots Day", + "2016-03-23": "Public sector holiday", + "2016-03-24": "Maundy Thursday", + "2016-03-25": "Good Friday", + "2016-03-27": "Easter Day", + "2016-05-01": "Labour Day", + "2016-05-14": "Independence Day", + "2016-05-15": "Independence Day", + "2016-06-12": "Chaco Armistice Day", + "2016-08-15": "Asuncion Foundation's Day", + "2016-10-03": "Boqueron Battle Day", + "2016-12-08": "Caacupe Virgin Day", + "2016-12-25": "Christmas", + "2017-01-01": "New Year's Day", + "2017-03-01": "Patriots Day", + "2017-03-28": "Public sector holiday", + "2017-04-13": "Maundy Thursday", + "2017-04-14": "Good Friday", + "2017-04-16": "Easter Day", + "2017-05-01": "Labour Day", + "2017-05-14": "Independence Day", + "2017-05-15": "Independence Day", + "2017-06-12": "Chaco Armistice Day", + "2017-08-15": "Asuncion Foundation's Day", + "2017-10-02": "Boqueron Battle Day", + "2017-12-08": "Caacupe Virgin Day", + "2017-12-25": "Christmas", + "2018-01-01": "New Year's Day", + "2018-02-26": "Patriots Day", + "2018-03-29": "Maundy Thursday", + "2018-03-30": "Good Friday", + "2018-04-01": "Easter Day", + "2018-05-01": "Labour Day", + "2018-05-14": "Independence Day", + "2018-05-15": "Independence Day", + "2018-06-11": "Chaco Armistice Day", + "2018-08-15": "Asuncion Foundation's Day", + "2018-09-29": "Boqueron Battle Day", + "2018-12-08": "Caacupe Virgin Day", + "2018-12-24": "Public sector holiday", + "2018-12-25": "Christmas", + "2018-12-31": "Public sector holiday", + "2019-01-01": "New Year's Day", + "2019-03-01": "Patriots Day", + "2019-04-17": "Public sector holiday", + "2019-04-18": "Maundy Thursday", + "2019-04-19": "Good Friday", + "2019-04-21": "Easter Day", + "2019-05-01": "Labour Day", + "2019-05-14": "Independence Day", + "2019-05-15": "Independence Day", + "2019-06-12": "Chaco Armistice Day", + "2019-08-15": "Asuncion Foundation's Day", + "2019-09-29": "Boqueron Battle Day", + "2019-12-08": "Caacupe Virgin Day", + "2019-12-24": "Public sector holiday", + "2019-12-25": "Christmas", + "2019-12-31": "Public sector holiday", + "2020-01-01": "New Year's Day", + "2020-03-01": "Patriots Day", + "2020-04-08": "Public sector holiday", + "2020-04-09": "Maundy Thursday", + "2020-04-10": "Good Friday", + "2020-04-12": "Easter Day", + "2020-05-01": "Labour Day", + "2020-05-14": "Independence Day", + "2020-05-15": "Independence Day", + "2020-06-12": "Chaco Armistice Day", + "2020-08-15": "Asuncion Foundation's Day", + "2020-09-29": "Boqueron Battle Day", + "2020-12-08": "Caacupe Virgin Day", + "2020-12-25": "Christmas", + "2021-01-01": "New Year's Day", + "2021-03-01": "Patriots Day", + "2021-04-01": "Maundy Thursday", + "2021-04-02": "Good Friday", + "2021-04-04": "Easter Day", + "2021-05-01": "Labour Day", + "2021-05-14": "Independence Day", + "2021-05-15": "Independence Day", + "2021-06-12": "Chaco Armistice Day", + "2021-08-15": "Asuncion Foundation's Day", + "2021-09-27": "Boqueron Battle Day", + "2021-12-08": "Caacupe Virgin Day", + "2021-12-24": "Public sector holiday", + "2021-12-25": "Christmas", + "2021-12-31": "Public sector holiday", + "2022-01-01": "New Year's Day", + "2022-02-28": "Patriots Day", + "2022-04-13": "Public sector holiday", + "2022-04-14": "Maundy Thursday", + "2022-04-15": "Good Friday", + "2022-04-17": "Easter Day", + "2022-05-01": "Labour Day", + "2022-05-02": "Public sector holiday", + "2022-05-14": "Independence Day", + "2022-05-15": "Independence Day", + "2022-06-12": "Chaco Armistice Day", + "2022-08-15": "Asuncion Foundation's Day", + "2022-10-03": "Boqueron Battle Day", + "2022-12-08": "Caacupe Virgin Day", + "2022-12-25": "Christmas", + "2023-01-01": "New Year's Day", + "2023-03-01": "Patriots Day", + "2023-04-06": "Maundy Thursday", + "2023-04-07": "Good Friday", + "2023-04-09": "Easter Day", + "2023-05-01": "Labour Day", + "2023-05-14": "Independence Day", + "2023-05-15": "Independence Day", + "2023-06-12": "Chaco Armistice Day", + "2023-08-15": "Asuncion Foundation's Day", + "2023-09-29": "Boqueron Battle Day", + "2023-12-08": "Caacupe Virgin Day", + "2023-12-25": "Christmas", + "2024-01-01": "New Year's Day", + "2024-03-01": "Patriots Day", + "2024-03-28": "Maundy Thursday", + "2024-03-29": "Good Friday", + "2024-03-31": "Easter Day", + "2024-05-01": "Labour Day", + "2024-05-14": "Independence Day", + "2024-05-15": "Independence Day", + "2024-06-12": "Chaco Armistice Day", + "2024-08-15": "Asuncion Foundation's Day", + "2024-09-29": "Boqueron Battle Day", + "2024-12-08": "Caacupe Virgin Day", + "2024-12-25": "Christmas", + "2025-01-01": "New Year's Day", + "2025-03-01": "Patriots Day", + "2025-04-17": "Maundy Thursday", + "2025-04-18": "Good Friday", + "2025-04-20": "Easter Day", + "2025-05-01": "Labour Day", + "2025-05-14": "Independence Day", + "2025-05-15": "Independence Day", + "2025-06-12": "Chaco Armistice Day", + "2025-08-15": "Asuncion Foundation's Day", + "2025-09-29": "Boqueron Battle Day", + "2025-12-08": "Caacupe Virgin Day", + "2025-12-25": "Christmas", + "2026-01-01": "New Year's Day", + "2026-03-01": "Patriots Day", + "2026-04-02": "Maundy Thursday", + "2026-04-03": "Good Friday", + "2026-04-05": "Easter Day", + "2026-05-01": "Labour Day", + "2026-05-14": "Independence Day", + "2026-05-15": "Independence Day", + "2026-06-12": "Chaco Armistice Day", + "2026-08-15": "Asuncion Foundation's Day", + "2026-09-29": "Boqueron Battle Day", + "2026-12-08": "Caacupe Virgin Day", + "2026-12-25": "Christmas", + "2027-01-01": "New Year's Day", + "2027-03-01": "Patriots Day", + "2027-03-25": "Maundy Thursday", + "2027-03-26": "Good Friday", + "2027-03-28": "Easter Day", + "2027-05-01": "Labour Day", + "2027-05-14": "Independence Day", + "2027-05-15": "Independence Day", + "2027-06-12": "Chaco Armistice Day", + "2027-08-15": "Asuncion Foundation's Day", + "2027-09-29": "Boqueron Battle Day", + "2027-12-08": "Caacupe Virgin Day", + "2027-12-25": "Christmas", + "2028-01-01": "New Year's Day", + "2028-03-01": "Patriots Day", + "2028-04-13": "Maundy Thursday", + "2028-04-14": "Good Friday", + "2028-04-16": "Easter Day", + "2028-05-01": "Labour Day", + "2028-05-14": "Independence Day", + "2028-05-15": "Independence Day", + "2028-06-12": "Chaco Armistice Day", + "2028-08-15": "Asuncion Foundation's Day", + "2028-09-29": "Boqueron Battle Day", + "2028-12-08": "Caacupe Virgin Day", + "2028-12-25": "Christmas", + "2029-01-01": "New Year's Day", + "2029-03-01": "Patriots Day", + "2029-03-29": "Maundy Thursday", + "2029-03-30": "Good Friday", + "2029-04-01": "Easter Day", + "2029-05-01": "Labour Day", + "2029-05-14": "Independence Day", + "2029-05-15": "Independence Day", + "2029-06-12": "Chaco Armistice Day", + "2029-08-15": "Asuncion Foundation's Day", + "2029-09-29": "Boqueron Battle Day", + "2029-12-08": "Caacupe Virgin Day", + "2029-12-25": "Christmas", + "2030-01-01": "New Year's Day", + "2030-03-01": "Patriots Day", + "2030-04-18": "Maundy Thursday", + "2030-04-19": "Good Friday", + "2030-04-21": "Easter Day", + "2030-05-01": "Labour Day", + "2030-05-14": "Independence Day", + "2030-05-15": "Independence Day", + "2030-06-12": "Chaco Armistice Day", + "2030-08-15": "Asuncion Foundation's Day", + "2030-09-29": "Boqueron Battle Day", + "2030-12-08": "Caacupe Virgin Day", + "2030-12-25": "Christmas", + "2031-01-01": "New Year's Day", + "2031-03-01": "Patriots Day", + "2031-04-10": "Maundy Thursday", + "2031-04-11": "Good Friday", + "2031-04-13": "Easter Day", + "2031-05-01": "Labour Day", + "2031-05-14": "Independence Day", + "2031-05-15": "Independence Day", + "2031-06-12": "Chaco Armistice Day", + "2031-08-15": "Asuncion Foundation's Day", + "2031-09-29": "Boqueron Battle Day", + "2031-12-08": "Caacupe Virgin Day", + "2031-12-25": "Christmas", + "2032-01-01": "New Year's Day", + "2032-03-01": "Patriots Day", + "2032-03-25": "Maundy Thursday", + "2032-03-26": "Good Friday", + "2032-03-28": "Easter Day", + "2032-05-01": "Labour Day", + "2032-05-14": "Independence Day", + "2032-05-15": "Independence Day", + "2032-06-12": "Chaco Armistice Day", + "2032-08-15": "Asuncion Foundation's Day", + "2032-09-29": "Boqueron Battle Day", + "2032-12-08": "Caacupe Virgin Day", + "2032-12-25": "Christmas", + "2033-01-01": "New Year's Day", + "2033-03-01": "Patriots Day", + "2033-04-14": "Maundy Thursday", + "2033-04-15": "Good Friday", + "2033-04-17": "Easter Day", + "2033-05-01": "Labour Day", + "2033-05-14": "Independence Day", + "2033-05-15": "Independence Day", + "2033-06-12": "Chaco Armistice Day", + "2033-08-15": "Asuncion Foundation's Day", + "2033-09-29": "Boqueron Battle Day", + "2033-12-08": "Caacupe Virgin Day", + "2033-12-25": "Christmas", + "2034-01-01": "New Year's Day", + "2034-03-01": "Patriots Day", + "2034-04-06": "Maundy Thursday", + "2034-04-07": "Good Friday", + "2034-04-09": "Easter Day", + "2034-05-01": "Labour Day", + "2034-05-14": "Independence Day", + "2034-05-15": "Independence Day", + "2034-06-12": "Chaco Armistice Day", + "2034-08-15": "Asuncion Foundation's Day", + "2034-09-29": "Boqueron Battle Day", + "2034-12-08": "Caacupe Virgin Day", + "2034-12-25": "Christmas", + "2035-01-01": "New Year's Day", + "2035-03-01": "Patriots Day", + "2035-03-22": "Maundy Thursday", + "2035-03-23": "Good Friday", + "2035-03-25": "Easter Day", + "2035-05-01": "Labour Day", + "2035-05-14": "Independence Day", + "2035-05-15": "Independence Day", + "2035-06-12": "Chaco Armistice Day", + "2035-08-15": "Asuncion Foundation's Day", + "2035-09-29": "Boqueron Battle Day", + "2035-12-08": "Caacupe Virgin Day", + "2035-12-25": "Christmas", + "2036-01-01": "New Year's Day", + "2036-03-01": "Patriots Day", + "2036-04-10": "Maundy Thursday", + "2036-04-11": "Good Friday", + "2036-04-13": "Easter Day", + "2036-05-01": "Labour Day", + "2036-05-14": "Independence Day", + "2036-05-15": "Independence Day", + "2036-06-12": "Chaco Armistice Day", + "2036-08-15": "Asuncion Foundation's Day", + "2036-09-29": "Boqueron Battle Day", + "2036-12-08": "Caacupe Virgin Day", + "2036-12-25": "Christmas", + "2037-01-01": "New Year's Day", + "2037-03-01": "Patriots Day", + "2037-04-02": "Maundy Thursday", + "2037-04-03": "Good Friday", + "2037-04-05": "Easter Day", + "2037-05-01": "Labour Day", + "2037-05-14": "Independence Day", + "2037-05-15": "Independence Day", + "2037-06-12": "Chaco Armistice Day", + "2037-08-15": "Asuncion Foundation's Day", + "2037-09-29": "Boqueron Battle Day", + "2037-12-08": "Caacupe Virgin Day", + "2037-12-25": "Christmas", + "2038-01-01": "New Year's Day", + "2038-03-01": "Patriots Day", + "2038-04-22": "Maundy Thursday", + "2038-04-23": "Good Friday", + "2038-04-25": "Easter Day", + "2038-05-01": "Labour Day", + "2038-05-14": "Independence Day", + "2038-05-15": "Independence Day", + "2038-06-12": "Chaco Armistice Day", + "2038-08-15": "Asuncion Foundation's Day", + "2038-09-29": "Boqueron Battle Day", + "2038-12-08": "Caacupe Virgin Day", + "2038-12-25": "Christmas", + "2039-01-01": "New Year's Day", + "2039-03-01": "Patriots Day", + "2039-04-07": "Maundy Thursday", + "2039-04-08": "Good Friday", + "2039-04-10": "Easter Day", + "2039-05-01": "Labour Day", + "2039-05-14": "Independence Day", + "2039-05-15": "Independence Day", + "2039-06-12": "Chaco Armistice Day", + "2039-08-15": "Asuncion Foundation's Day", + "2039-09-29": "Boqueron Battle Day", + "2039-12-08": "Caacupe Virgin Day", + "2039-12-25": "Christmas", + "2040-01-01": "New Year's Day", + "2040-03-01": "Patriots Day", + "2040-03-29": "Maundy Thursday", + "2040-03-30": "Good Friday", + "2040-04-01": "Easter Day", + "2040-05-01": "Labour Day", + "2040-05-14": "Independence Day", + "2040-05-15": "Independence Day", + "2040-06-12": "Chaco Armistice Day", + "2040-08-15": "Asuncion Foundation's Day", + "2040-09-29": "Boqueron Battle Day", + "2040-12-08": "Caacupe Virgin Day", + "2040-12-25": "Christmas", + "2041-01-01": "New Year's Day", + "2041-03-01": "Patriots Day", + "2041-04-18": "Maundy Thursday", + "2041-04-19": "Good Friday", + "2041-04-21": "Easter Day", + "2041-05-01": "Labour Day", + "2041-05-14": "Independence Day", + "2041-05-15": "Independence Day", + "2041-06-12": "Chaco Armistice Day", + "2041-08-15": "Asuncion Foundation's Day", + "2041-09-29": "Boqueron Battle Day", + "2041-12-08": "Caacupe Virgin Day", + "2041-12-25": "Christmas", + "2042-01-01": "New Year's Day", + "2042-03-01": "Patriots Day", + "2042-04-03": "Maundy Thursday", + "2042-04-04": "Good Friday", + "2042-04-06": "Easter Day", + "2042-05-01": "Labour Day", + "2042-05-14": "Independence Day", + "2042-05-15": "Independence Day", + "2042-06-12": "Chaco Armistice Day", + "2042-08-15": "Asuncion Foundation's Day", + "2042-09-29": "Boqueron Battle Day", + "2042-12-08": "Caacupe Virgin Day", + "2042-12-25": "Christmas", + "2043-01-01": "New Year's Day", + "2043-03-01": "Patriots Day", + "2043-03-26": "Maundy Thursday", + "2043-03-27": "Good Friday", + "2043-03-29": "Easter Day", + "2043-05-01": "Labour Day", + "2043-05-14": "Independence Day", + "2043-05-15": "Independence Day", + "2043-06-12": "Chaco Armistice Day", + "2043-08-15": "Asuncion Foundation's Day", + "2043-09-29": "Boqueron Battle Day", + "2043-12-08": "Caacupe Virgin Day", + "2043-12-25": "Christmas", + "2044-01-01": "New Year's Day", + "2044-03-01": "Patriots Day", + "2044-04-14": "Maundy Thursday", + "2044-04-15": "Good Friday", + "2044-04-17": "Easter Day", + "2044-05-01": "Labour Day", + "2044-05-14": "Independence Day", + "2044-05-15": "Independence Day", + "2044-06-12": "Chaco Armistice Day", + "2044-08-15": "Asuncion Foundation's Day", + "2044-09-29": "Boqueron Battle Day", + "2044-12-08": "Caacupe Virgin Day", + "2044-12-25": "Christmas", + "2045-01-01": "New Year's Day", + "2045-03-01": "Patriots Day", + "2045-04-06": "Maundy Thursday", + "2045-04-07": "Good Friday", + "2045-04-09": "Easter Day", + "2045-05-01": "Labour Day", + "2045-05-14": "Independence Day", + "2045-05-15": "Independence Day", + "2045-06-12": "Chaco Armistice Day", + "2045-08-15": "Asuncion Foundation's Day", + "2045-09-29": "Boqueron Battle Day", + "2045-12-08": "Caacupe Virgin Day", + "2045-12-25": "Christmas", + "2046-01-01": "New Year's Day", + "2046-03-01": "Patriots Day", + "2046-03-22": "Maundy Thursday", + "2046-03-23": "Good Friday", + "2046-03-25": "Easter Day", + "2046-05-01": "Labour Day", + "2046-05-14": "Independence Day", + "2046-05-15": "Independence Day", + "2046-06-12": "Chaco Armistice Day", + "2046-08-15": "Asuncion Foundation's Day", + "2046-09-29": "Boqueron Battle Day", + "2046-12-08": "Caacupe Virgin Day", + "2046-12-25": "Christmas", + "2047-01-01": "New Year's Day", + "2047-03-01": "Patriots Day", + "2047-04-11": "Maundy Thursday", + "2047-04-12": "Good Friday", + "2047-04-14": "Easter Day", + "2047-05-01": "Labour Day", + "2047-05-14": "Independence Day", + "2047-05-15": "Independence Day", + "2047-06-12": "Chaco Armistice Day", + "2047-08-15": "Asuncion Foundation's Day", + "2047-09-29": "Boqueron Battle Day", + "2047-12-08": "Caacupe Virgin Day", + "2047-12-25": "Christmas", + "2048-01-01": "New Year's Day", + "2048-03-01": "Patriots Day", + "2048-04-02": "Maundy Thursday", + "2048-04-03": "Good Friday", + "2048-04-05": "Easter Day", + "2048-05-01": "Labour Day", + "2048-05-14": "Independence Day", + "2048-05-15": "Independence Day", + "2048-06-12": "Chaco Armistice Day", + "2048-08-15": "Asuncion Foundation's Day", + "2048-09-29": "Boqueron Battle Day", + "2048-12-08": "Caacupe Virgin Day", + "2048-12-25": "Christmas", + "2049-01-01": "New Year's Day", + "2049-03-01": "Patriots Day", + "2049-04-15": "Maundy Thursday", + "2049-04-16": "Good Friday", + "2049-04-18": "Easter Day", + "2049-05-01": "Labour Day", + "2049-05-14": "Independence Day", + "2049-05-15": "Independence Day", + "2049-06-12": "Chaco Armistice Day", + "2049-08-15": "Asuncion Foundation's Day", + "2049-09-29": "Boqueron Battle Day", + "2049-12-08": "Caacupe Virgin Day", + "2049-12-25": "Christmas", + "2050-01-01": "New Year's Day", + "2050-03-01": "Patriots Day", + "2050-04-07": "Maundy Thursday", + "2050-04-08": "Good Friday", + "2050-04-10": "Easter Day", + "2050-05-01": "Labour Day", + "2050-05-14": "Independence Day", + "2050-05-15": "Independence Day", + "2050-06-12": "Chaco Armistice Day", + "2050-08-15": "Asuncion Foundation's Day", + "2050-09-29": "Boqueron Battle Day", + "2050-12-08": "Caacupe Virgin Day", + "2050-12-25": "Christmas" +} diff --git a/snapshots/countries/RO.json b/snapshots/countries/RO.json new file mode 100644 index 000000000..f5487ebce --- /dev/null +++ b/snapshots/countries/RO.json @@ -0,0 +1,1238 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-02": "New Year's Day", + "1950-04-09": "Easter", + "1950-04-10": "Easter", + "1950-05-01": "Labour Day", + "1950-05-28": "Pentecost", + "1950-05-29": "Pentecost", + "1950-12-01": "National Day", + "1950-12-25": "Christmas Day", + "1950-12-26": "Christmas Day", + "1951-01-01": "New Year's Day", + "1951-01-02": "New Year's Day", + "1951-04-29": "Easter", + "1951-04-30": "Easter", + "1951-05-01": "Labour Day", + "1951-06-17": "Pentecost", + "1951-06-18": "Pentecost", + "1951-12-01": "National Day", + "1951-12-25": "Christmas Day", + "1951-12-26": "Christmas Day", + "1952-01-01": "New Year's Day", + "1952-01-02": "New Year's Day", + "1952-04-20": "Easter", + "1952-04-21": "Easter", + "1952-05-01": "Labour Day", + "1952-06-08": "Pentecost", + "1952-06-09": "Pentecost", + "1952-12-01": "National Day", + "1952-12-25": "Christmas Day", + "1952-12-26": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-01-02": "New Year's Day", + "1953-04-05": "Easter", + "1953-04-06": "Easter", + "1953-05-01": "Labour Day", + "1953-05-24": "Pentecost", + "1953-05-25": "Pentecost", + "1953-12-01": "National Day", + "1953-12-25": "Christmas Day", + "1953-12-26": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-01-02": "New Year's Day", + "1954-04-25": "Easter", + "1954-04-26": "Easter", + "1954-05-01": "Labour Day", + "1954-06-13": "Pentecost", + "1954-06-14": "Pentecost", + "1954-12-01": "National Day", + "1954-12-25": "Christmas Day", + "1954-12-26": "Christmas Day", + "1955-01-01": "New Year's Day", + "1955-01-02": "New Year's Day", + "1955-04-17": "Easter", + "1955-04-18": "Easter", + "1955-05-01": "Labour Day", + "1955-06-05": "Pentecost", + "1955-06-06": "Pentecost", + "1955-12-01": "National Day", + "1955-12-25": "Christmas Day", + "1955-12-26": "Christmas Day", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year's Day", + "1956-05-01": "Labour Day", + "1956-05-06": "Easter", + "1956-05-07": "Easter", + "1956-06-24": "Pentecost", + "1956-06-25": "Pentecost", + "1956-12-01": "National Day", + "1956-12-25": "Christmas Day", + "1956-12-26": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-01-02": "New Year's Day", + "1957-04-21": "Easter", + "1957-04-22": "Easter", + "1957-05-01": "Labour Day", + "1957-06-09": "Pentecost", + "1957-06-10": "Pentecost", + "1957-12-01": "National Day", + "1957-12-25": "Christmas Day", + "1957-12-26": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-01-02": "New Year's Day", + "1958-04-13": "Easter", + "1958-04-14": "Easter", + "1958-05-01": "Labour Day", + "1958-06-01": "Pentecost", + "1958-06-02": "Pentecost", + "1958-12-01": "National Day", + "1958-12-25": "Christmas Day", + "1958-12-26": "Christmas Day", + "1959-01-01": "New Year's Day", + "1959-01-02": "New Year's Day", + "1959-05-01": "Labour Day", + "1959-05-03": "Easter", + "1959-05-04": "Easter", + "1959-06-21": "Pentecost", + "1959-06-22": "Pentecost", + "1959-12-01": "National Day", + "1959-12-25": "Christmas Day", + "1959-12-26": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-01-02": "New Year's Day", + "1960-04-17": "Easter", + "1960-04-18": "Easter", + "1960-05-01": "Labour Day", + "1960-06-05": "Pentecost", + "1960-06-06": "Pentecost", + "1960-12-01": "National Day", + "1960-12-25": "Christmas Day", + "1960-12-26": "Christmas Day", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day", + "1961-04-09": "Easter", + "1961-04-10": "Easter", + "1961-05-01": "Labour Day", + "1961-05-28": "Pentecost", + "1961-05-29": "Pentecost", + "1961-12-01": "National Day", + "1961-12-25": "Christmas Day", + "1961-12-26": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-01-02": "New Year's Day", + "1962-04-29": "Easter", + "1962-04-30": "Easter", + "1962-05-01": "Labour Day", + "1962-06-17": "Pentecost", + "1962-06-18": "Pentecost", + "1962-12-01": "National Day", + "1962-12-25": "Christmas Day", + "1962-12-26": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-01-02": "New Year's Day", + "1963-04-14": "Easter", + "1963-04-15": "Easter", + "1963-05-01": "Labour Day", + "1963-06-02": "Pentecost", + "1963-06-03": "Pentecost", + "1963-12-01": "National Day", + "1963-12-25": "Christmas Day", + "1963-12-26": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-01-02": "New Year's Day", + "1964-05-01": "Labour Day", + "1964-05-03": "Easter", + "1964-05-04": "Easter", + "1964-06-21": "Pentecost", + "1964-06-22": "Pentecost", + "1964-12-01": "National Day", + "1964-12-25": "Christmas Day", + "1964-12-26": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-01-02": "New Year's Day", + "1965-04-25": "Easter", + "1965-04-26": "Easter", + "1965-05-01": "Labour Day", + "1965-06-13": "Pentecost", + "1965-06-14": "Pentecost", + "1965-12-01": "National Day", + "1965-12-25": "Christmas Day", + "1965-12-26": "Christmas Day", + "1966-01-01": "New Year's Day", + "1966-01-02": "New Year's Day", + "1966-04-10": "Easter", + "1966-04-11": "Easter", + "1966-05-01": "Labour Day", + "1966-05-29": "Pentecost", + "1966-05-30": "Pentecost", + "1966-12-01": "National Day", + "1966-12-25": "Christmas Day", + "1966-12-26": "Christmas Day", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day", + "1967-04-30": "Easter", + "1967-05-01": "Easter; Labour Day", + "1967-06-18": "Pentecost", + "1967-06-19": "Pentecost", + "1967-12-01": "National Day", + "1967-12-25": "Christmas Day", + "1967-12-26": "Christmas Day", + "1968-01-01": "New Year's Day", + "1968-01-02": "New Year's Day", + "1968-04-21": "Easter", + "1968-04-22": "Easter", + "1968-05-01": "Labour Day", + "1968-06-09": "Pentecost", + "1968-06-10": "Pentecost", + "1968-12-01": "National Day", + "1968-12-25": "Christmas Day", + "1968-12-26": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-01-02": "New Year's Day", + "1969-04-13": "Easter", + "1969-04-14": "Easter", + "1969-05-01": "Labour Day", + "1969-06-01": "Pentecost", + "1969-06-02": "Pentecost", + "1969-12-01": "National Day", + "1969-12-25": "Christmas Day", + "1969-12-26": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-01-02": "New Year's Day", + "1970-04-26": "Easter", + "1970-04-27": "Easter", + "1970-05-01": "Labour Day", + "1970-06-14": "Pentecost", + "1970-06-15": "Pentecost", + "1970-12-01": "National Day", + "1970-12-25": "Christmas Day", + "1970-12-26": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-01-02": "New Year's Day", + "1971-04-18": "Easter", + "1971-04-19": "Easter", + "1971-05-01": "Labour Day", + "1971-06-06": "Pentecost", + "1971-06-07": "Pentecost", + "1971-12-01": "National Day", + "1971-12-25": "Christmas Day", + "1971-12-26": "Christmas Day", + "1972-01-01": "New Year's Day", + "1972-01-02": "New Year's Day", + "1972-04-09": "Easter", + "1972-04-10": "Easter", + "1972-05-01": "Labour Day", + "1972-05-28": "Pentecost", + "1972-05-29": "Pentecost", + "1972-12-01": "National Day", + "1972-12-25": "Christmas Day", + "1972-12-26": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-01-02": "New Year's Day", + "1973-04-29": "Easter", + "1973-04-30": "Easter", + "1973-05-01": "Labour Day", + "1973-06-17": "Pentecost", + "1973-06-18": "Pentecost", + "1973-12-01": "National Day", + "1973-12-25": "Christmas Day", + "1973-12-26": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-01-02": "New Year's Day", + "1974-04-14": "Easter", + "1974-04-15": "Easter", + "1974-05-01": "Labour Day", + "1974-06-02": "Pentecost", + "1974-06-03": "Pentecost", + "1974-12-01": "National Day", + "1974-12-25": "Christmas Day", + "1974-12-26": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-01-02": "New Year's Day", + "1975-05-01": "Labour Day", + "1975-05-04": "Easter", + "1975-05-05": "Easter", + "1975-06-22": "Pentecost", + "1975-06-23": "Pentecost", + "1975-12-01": "National Day", + "1975-12-25": "Christmas Day", + "1975-12-26": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-01-02": "New Year's Day", + "1976-04-25": "Easter", + "1976-04-26": "Easter", + "1976-05-01": "Labour Day", + "1976-06-13": "Pentecost", + "1976-06-14": "Pentecost", + "1976-12-01": "National Day", + "1976-12-25": "Christmas Day", + "1976-12-26": "Christmas Day", + "1977-01-01": "New Year's Day", + "1977-01-02": "New Year's Day", + "1977-04-10": "Easter", + "1977-04-11": "Easter", + "1977-05-01": "Labour Day", + "1977-05-29": "Pentecost", + "1977-05-30": "Pentecost", + "1977-12-01": "National Day", + "1977-12-25": "Christmas Day", + "1977-12-26": "Christmas Day", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day", + "1978-04-30": "Easter", + "1978-05-01": "Easter; Labour Day", + "1978-06-18": "Pentecost", + "1978-06-19": "Pentecost", + "1978-12-01": "National Day", + "1978-12-25": "Christmas Day", + "1978-12-26": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-01-02": "New Year's Day", + "1979-04-22": "Easter", + "1979-04-23": "Easter", + "1979-05-01": "Labour Day", + "1979-06-10": "Pentecost", + "1979-06-11": "Pentecost", + "1979-12-01": "National Day", + "1979-12-25": "Christmas Day", + "1979-12-26": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-01-02": "New Year's Day", + "1980-04-06": "Easter", + "1980-04-07": "Easter", + "1980-05-01": "Labour Day", + "1980-05-25": "Pentecost", + "1980-05-26": "Pentecost", + "1980-12-01": "National Day", + "1980-12-25": "Christmas Day", + "1980-12-26": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-01-02": "New Year's Day", + "1981-04-26": "Easter", + "1981-04-27": "Easter", + "1981-05-01": "Labour Day", + "1981-06-14": "Pentecost", + "1981-06-15": "Pentecost", + "1981-12-01": "National Day", + "1981-12-25": "Christmas Day", + "1981-12-26": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-01-02": "New Year's Day", + "1982-04-18": "Easter", + "1982-04-19": "Easter", + "1982-05-01": "Labour Day", + "1982-06-06": "Pentecost", + "1982-06-07": "Pentecost", + "1982-12-01": "National Day", + "1982-12-25": "Christmas Day", + "1982-12-26": "Christmas Day", + "1983-01-01": "New Year's Day", + "1983-01-02": "New Year's Day", + "1983-05-01": "Labour Day", + "1983-05-08": "Easter", + "1983-05-09": "Easter", + "1983-06-26": "Pentecost", + "1983-06-27": "Pentecost", + "1983-12-01": "National Day", + "1983-12-25": "Christmas Day", + "1983-12-26": "Christmas Day", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day", + "1984-04-22": "Easter", + "1984-04-23": "Easter", + "1984-05-01": "Labour Day", + "1984-06-10": "Pentecost", + "1984-06-11": "Pentecost", + "1984-12-01": "National Day", + "1984-12-25": "Christmas Day", + "1984-12-26": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-01-02": "New Year's Day", + "1985-04-14": "Easter", + "1985-04-15": "Easter", + "1985-05-01": "Labour Day", + "1985-06-02": "Pentecost", + "1985-06-03": "Pentecost", + "1985-12-01": "National Day", + "1985-12-25": "Christmas Day", + "1985-12-26": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-01-02": "New Year's Day", + "1986-05-01": "Labour Day", + "1986-05-04": "Easter", + "1986-05-05": "Easter", + "1986-06-22": "Pentecost", + "1986-06-23": "Pentecost", + "1986-12-01": "National Day", + "1986-12-25": "Christmas Day", + "1986-12-26": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-01-02": "New Year's Day", + "1987-04-19": "Easter", + "1987-04-20": "Easter", + "1987-05-01": "Labour Day", + "1987-06-07": "Pentecost", + "1987-06-08": "Pentecost", + "1987-12-01": "National Day", + "1987-12-25": "Christmas Day", + "1987-12-26": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-01-02": "New Year's Day", + "1988-04-10": "Easter", + "1988-04-11": "Easter", + "1988-05-01": "Labour Day", + "1988-05-29": "Pentecost", + "1988-05-30": "Pentecost", + "1988-12-01": "National Day", + "1988-12-25": "Christmas Day", + "1988-12-26": "Christmas Day", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day", + "1989-04-30": "Easter", + "1989-05-01": "Easter; Labour Day", + "1989-06-18": "Pentecost", + "1989-06-19": "Pentecost", + "1989-12-01": "National Day", + "1989-12-25": "Christmas Day", + "1989-12-26": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-01-02": "New Year's Day", + "1990-04-15": "Easter", + "1990-04-16": "Easter", + "1990-05-01": "Labour Day", + "1990-06-03": "Pentecost", + "1990-06-04": "Pentecost", + "1990-12-01": "National Day", + "1990-12-25": "Christmas Day", + "1990-12-26": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-01-02": "New Year's Day", + "1991-04-07": "Easter", + "1991-04-08": "Easter", + "1991-05-01": "Labour Day", + "1991-05-26": "Pentecost", + "1991-05-27": "Pentecost", + "1991-12-01": "National Day", + "1991-12-25": "Christmas Day", + "1991-12-26": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-01-02": "New Year's Day", + "1992-04-26": "Easter", + "1992-04-27": "Easter", + "1992-05-01": "Labour Day", + "1992-06-14": "Pentecost", + "1992-06-15": "Pentecost", + "1992-12-01": "National Day", + "1992-12-25": "Christmas Day", + "1992-12-26": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-01-02": "New Year's Day", + "1993-04-18": "Easter", + "1993-04-19": "Easter", + "1993-05-01": "Labour Day", + "1993-06-06": "Pentecost", + "1993-06-07": "Pentecost", + "1993-12-01": "National Day", + "1993-12-25": "Christmas Day", + "1993-12-26": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-01-02": "New Year's Day", + "1994-05-01": "Easter; Labour Day", + "1994-05-02": "Easter", + "1994-06-19": "Pentecost", + "1994-06-20": "Pentecost", + "1994-12-01": "National Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day", + "1995-04-23": "Easter", + "1995-04-24": "Easter", + "1995-05-01": "Labour Day", + "1995-06-11": "Pentecost", + "1995-06-12": "Pentecost", + "1995-12-01": "National Day", + "1995-12-25": "Christmas Day", + "1995-12-26": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-01-02": "New Year's Day", + "1996-04-14": "Easter", + "1996-04-15": "Easter", + "1996-05-01": "Labour Day", + "1996-06-02": "Pentecost", + "1996-06-03": "Pentecost", + "1996-12-01": "National Day", + "1996-12-25": "Christmas Day", + "1996-12-26": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-01-02": "New Year's Day", + "1997-04-27": "Easter", + "1997-04-28": "Easter", + "1997-05-01": "Labour Day", + "1997-06-15": "Pentecost", + "1997-06-16": "Pentecost", + "1997-12-01": "National Day", + "1997-12-25": "Christmas Day", + "1997-12-26": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-01-02": "New Year's Day", + "1998-04-19": "Easter", + "1998-04-20": "Easter", + "1998-05-01": "Labour Day", + "1998-06-07": "Pentecost", + "1998-06-08": "Pentecost", + "1998-12-01": "National Day", + "1998-12-25": "Christmas Day", + "1998-12-26": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-01-02": "New Year's Day", + "1999-04-11": "Easter", + "1999-04-12": "Easter", + "1999-05-01": "Labour Day", + "1999-05-30": "Pentecost", + "1999-05-31": "Pentecost", + "1999-12-01": "National Day", + "1999-12-25": "Christmas Day", + "1999-12-26": "Christmas Day", + "2000-01-01": "New Year's Day", + "2000-01-02": "New Year's Day", + "2000-04-30": "Easter", + "2000-05-01": "Easter; Labour Day", + "2000-06-18": "Pentecost", + "2000-06-19": "Pentecost", + "2000-12-01": "National Day", + "2000-12-25": "Christmas Day", + "2000-12-26": "Christmas Day", + "2001-01-01": "New Year's Day", + "2001-01-02": "New Year's Day", + "2001-04-15": "Easter", + "2001-04-16": "Easter", + "2001-05-01": "Labour Day", + "2001-06-03": "Pentecost", + "2001-06-04": "Pentecost", + "2001-12-01": "National Day", + "2001-12-25": "Christmas Day", + "2001-12-26": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-01-02": "New Year's Day", + "2002-05-01": "Labour Day", + "2002-05-05": "Easter", + "2002-05-06": "Easter", + "2002-06-23": "Pentecost", + "2002-06-24": "Pentecost", + "2002-12-01": "National Day", + "2002-12-25": "Christmas Day", + "2002-12-26": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-01-02": "New Year's Day", + "2003-04-27": "Easter", + "2003-04-28": "Easter", + "2003-05-01": "Labour Day", + "2003-06-15": "Pentecost", + "2003-06-16": "Pentecost", + "2003-12-01": "National Day", + "2003-12-25": "Christmas Day", + "2003-12-26": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-01-02": "New Year's Day", + "2004-04-11": "Easter", + "2004-04-12": "Easter", + "2004-05-01": "Labour Day", + "2004-05-30": "Pentecost", + "2004-05-31": "Pentecost", + "2004-12-01": "National Day", + "2004-12-25": "Christmas Day", + "2004-12-26": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-01-02": "New Year's Day", + "2005-05-01": "Easter; Labour Day", + "2005-05-02": "Easter", + "2005-06-19": "Pentecost", + "2005-06-20": "Pentecost", + "2005-12-01": "National Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day", + "2006-04-23": "Easter", + "2006-04-24": "Easter", + "2006-05-01": "Labour Day", + "2006-06-11": "Pentecost", + "2006-06-12": "Pentecost", + "2006-12-01": "National Day", + "2006-12-25": "Christmas Day", + "2006-12-26": "Christmas Day", + "2007-01-01": "New Year's Day", + "2007-01-02": "New Year's Day", + "2007-04-08": "Easter", + "2007-04-09": "Easter", + "2007-05-01": "Labour Day", + "2007-05-27": "Pentecost", + "2007-05-28": "Pentecost", + "2007-12-01": "National Day", + "2007-12-25": "Christmas Day", + "2007-12-26": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-01-02": "New Year's Day", + "2008-04-27": "Easter", + "2008-04-28": "Easter", + "2008-05-01": "Labour Day", + "2008-06-15": "Pentecost", + "2008-06-16": "Pentecost", + "2008-12-01": "National Day", + "2008-12-25": "Christmas Day", + "2008-12-26": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-01-02": "New Year's Day", + "2009-04-19": "Easter", + "2009-04-20": "Easter", + "2009-05-01": "Labour Day", + "2009-06-07": "Pentecost", + "2009-06-08": "Pentecost", + "2009-08-15": "Dormition of the Mother of God", + "2009-12-01": "National Day", + "2009-12-25": "Christmas Day", + "2009-12-26": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-01-02": "New Year's Day", + "2010-04-04": "Easter", + "2010-04-05": "Easter", + "2010-05-01": "Labour Day", + "2010-05-23": "Pentecost", + "2010-05-24": "Pentecost", + "2010-08-15": "Dormition of the Mother of God", + "2010-12-01": "National Day", + "2010-12-25": "Christmas Day", + "2010-12-26": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-01-02": "New Year's Day", + "2011-04-24": "Easter", + "2011-04-25": "Easter", + "2011-05-01": "Labour Day", + "2011-06-12": "Pentecost", + "2011-06-13": "Pentecost", + "2011-08-15": "Dormition of the Mother of God", + "2011-12-01": "National Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day", + "2012-04-15": "Easter", + "2012-04-16": "Easter", + "2012-05-01": "Labour Day", + "2012-06-03": "Pentecost", + "2012-06-04": "Pentecost", + "2012-08-15": "Dormition of the Mother of God", + "2012-11-30": "Saint Andrew's Day", + "2012-12-01": "National Day", + "2012-12-25": "Christmas Day", + "2012-12-26": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-01-02": "New Year's Day", + "2013-05-01": "Labour Day", + "2013-05-05": "Easter", + "2013-05-06": "Easter", + "2013-06-23": "Pentecost", + "2013-06-24": "Pentecost", + "2013-08-15": "Dormition of the Mother of God", + "2013-11-30": "Saint Andrew's Day", + "2013-12-01": "National Day", + "2013-12-25": "Christmas Day", + "2013-12-26": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-02": "New Year's Day", + "2014-04-20": "Easter", + "2014-04-21": "Easter", + "2014-05-01": "Labour Day", + "2014-06-08": "Pentecost", + "2014-06-09": "Pentecost", + "2014-08-15": "Dormition of the Mother of God", + "2014-11-30": "Saint Andrew's Day", + "2014-12-01": "National Day", + "2014-12-25": "Christmas Day", + "2014-12-26": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-01-02": "New Year's Day", + "2015-04-12": "Easter", + "2015-04-13": "Easter", + "2015-05-01": "Labour Day", + "2015-05-31": "Pentecost", + "2015-06-01": "Pentecost", + "2015-08-15": "Dormition of the Mother of God", + "2015-11-30": "Saint Andrew's Day", + "2015-12-01": "National Day", + "2015-12-25": "Christmas Day", + "2015-12-26": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-01-02": "New Year's Day", + "2016-01-24": "Unification of the Romanian Principalities Day", + "2016-05-01": "Easter; Labour Day", + "2016-05-02": "Easter", + "2016-06-19": "Pentecost", + "2016-06-20": "Pentecost", + "2016-08-15": "Dormition of the Mother of God", + "2016-11-30": "Saint Andrew's Day", + "2016-12-01": "National Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day", + "2017-01-24": "Unification of the Romanian Principalities Day", + "2017-04-16": "Easter", + "2017-04-17": "Easter", + "2017-05-01": "Labour Day", + "2017-06-01": "Children's Day", + "2017-06-04": "Pentecost", + "2017-06-05": "Pentecost", + "2017-08-15": "Dormition of the Mother of God", + "2017-11-30": "Saint Andrew's Day", + "2017-12-01": "National Day", + "2017-12-25": "Christmas Day", + "2017-12-26": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-01-02": "New Year's Day", + "2018-01-24": "Unification of the Romanian Principalities Day", + "2018-04-06": "Easter", + "2018-04-08": "Easter", + "2018-04-09": "Easter", + "2018-05-01": "Labour Day", + "2018-05-27": "Pentecost", + "2018-05-28": "Pentecost", + "2018-06-01": "Children's Day", + "2018-08-15": "Dormition of the Mother of God", + "2018-11-30": "Saint Andrew's Day", + "2018-12-01": "National Day", + "2018-12-25": "Christmas Day", + "2018-12-26": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-01-02": "New Year's Day", + "2019-01-24": "Unification of the Romanian Principalities Day", + "2019-04-26": "Easter", + "2019-04-28": "Easter", + "2019-04-29": "Easter", + "2019-05-01": "Labour Day", + "2019-06-01": "Children's Day", + "2019-06-16": "Pentecost", + "2019-06-17": "Pentecost", + "2019-08-15": "Dormition of the Mother of God", + "2019-11-30": "Saint Andrew's Day", + "2019-12-01": "National Day", + "2019-12-25": "Christmas Day", + "2019-12-26": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-01-02": "New Year's Day", + "2020-01-24": "Unification of the Romanian Principalities Day", + "2020-04-17": "Easter", + "2020-04-19": "Easter", + "2020-04-20": "Easter", + "2020-05-01": "Labour Day", + "2020-06-01": "Children's Day", + "2020-06-07": "Pentecost", + "2020-06-08": "Pentecost", + "2020-08-15": "Dormition of the Mother of God", + "2020-11-30": "Saint Andrew's Day", + "2020-12-01": "National Day", + "2020-12-25": "Christmas Day", + "2020-12-26": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-01-02": "New Year's Day", + "2021-01-24": "Unification of the Romanian Principalities Day", + "2021-04-30": "Easter", + "2021-05-01": "Labour Day", + "2021-05-02": "Easter", + "2021-05-03": "Easter", + "2021-06-01": "Children's Day", + "2021-06-20": "Pentecost", + "2021-06-21": "Pentecost", + "2021-08-15": "Dormition of the Mother of God", + "2021-11-30": "Saint Andrew's Day", + "2021-12-01": "National Day", + "2021-12-25": "Christmas Day", + "2021-12-26": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-01-02": "New Year's Day", + "2022-01-24": "Unification of the Romanian Principalities Day", + "2022-04-22": "Easter", + "2022-04-24": "Easter", + "2022-04-25": "Easter", + "2022-05-01": "Labour Day", + "2022-06-01": "Children's Day", + "2022-06-12": "Pentecost", + "2022-06-13": "Pentecost", + "2022-08-15": "Dormition of the Mother of God", + "2022-11-30": "Saint Andrew's Day", + "2022-12-01": "National Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day", + "2023-01-24": "Unification of the Romanian Principalities Day", + "2023-04-14": "Easter", + "2023-04-16": "Easter", + "2023-04-17": "Easter", + "2023-05-01": "Labour Day", + "2023-06-01": "Children's Day", + "2023-06-04": "Pentecost", + "2023-06-05": "Pentecost", + "2023-08-15": "Dormition of the Mother of God", + "2023-11-30": "Saint Andrew's Day", + "2023-12-01": "National Day", + "2023-12-25": "Christmas Day", + "2023-12-26": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-01-02": "New Year's Day", + "2024-01-06": "Epiphany", + "2024-01-07": "Saint John the Baptist", + "2024-01-24": "Unification of the Romanian Principalities Day", + "2024-05-01": "Labour Day", + "2024-05-03": "Easter", + "2024-05-05": "Easter", + "2024-05-06": "Easter", + "2024-06-01": "Children's Day", + "2024-06-23": "Pentecost", + "2024-06-24": "Pentecost", + "2024-08-15": "Dormition of the Mother of God", + "2024-11-30": "Saint Andrew's Day", + "2024-12-01": "National Day", + "2024-12-25": "Christmas Day", + "2024-12-26": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-01-02": "New Year's Day", + "2025-01-06": "Epiphany", + "2025-01-07": "Saint John the Baptist", + "2025-01-24": "Unification of the Romanian Principalities Day", + "2025-04-18": "Easter", + "2025-04-20": "Easter", + "2025-04-21": "Easter", + "2025-05-01": "Labour Day", + "2025-06-01": "Children's Day", + "2025-06-08": "Pentecost", + "2025-06-09": "Pentecost", + "2025-08-15": "Dormition of the Mother of God", + "2025-11-30": "Saint Andrew's Day", + "2025-12-01": "National Day", + "2025-12-25": "Christmas Day", + "2025-12-26": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-01-02": "New Year's Day", + "2026-01-06": "Epiphany", + "2026-01-07": "Saint John the Baptist", + "2026-01-24": "Unification of the Romanian Principalities Day", + "2026-04-10": "Easter", + "2026-04-12": "Easter", + "2026-04-13": "Easter", + "2026-05-01": "Labour Day", + "2026-05-31": "Pentecost", + "2026-06-01": "Children's Day; Pentecost", + "2026-08-15": "Dormition of the Mother of God", + "2026-11-30": "Saint Andrew's Day", + "2026-12-01": "National Day", + "2026-12-25": "Christmas Day", + "2026-12-26": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-01-02": "New Year's Day", + "2027-01-06": "Epiphany", + "2027-01-07": "Saint John the Baptist", + "2027-01-24": "Unification of the Romanian Principalities Day", + "2027-04-30": "Easter", + "2027-05-01": "Labour Day", + "2027-05-02": "Easter", + "2027-05-03": "Easter", + "2027-06-01": "Children's Day", + "2027-06-20": "Pentecost", + "2027-06-21": "Pentecost", + "2027-08-15": "Dormition of the Mother of God", + "2027-11-30": "Saint Andrew's Day", + "2027-12-01": "National Day", + "2027-12-25": "Christmas Day", + "2027-12-26": "Christmas Day", + "2028-01-01": "New Year's Day", + "2028-01-02": "New Year's Day", + "2028-01-06": "Epiphany", + "2028-01-07": "Saint John the Baptist", + "2028-01-24": "Unification of the Romanian Principalities Day", + "2028-04-14": "Easter", + "2028-04-16": "Easter", + "2028-04-17": "Easter", + "2028-05-01": "Labour Day", + "2028-06-01": "Children's Day", + "2028-06-04": "Pentecost", + "2028-06-05": "Pentecost", + "2028-08-15": "Dormition of the Mother of God", + "2028-11-30": "Saint Andrew's Day", + "2028-12-01": "National Day", + "2028-12-25": "Christmas Day", + "2028-12-26": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-01-02": "New Year's Day", + "2029-01-06": "Epiphany", + "2029-01-07": "Saint John the Baptist", + "2029-01-24": "Unification of the Romanian Principalities Day", + "2029-04-06": "Easter", + "2029-04-08": "Easter", + "2029-04-09": "Easter", + "2029-05-01": "Labour Day", + "2029-05-27": "Pentecost", + "2029-05-28": "Pentecost", + "2029-06-01": "Children's Day", + "2029-08-15": "Dormition of the Mother of God", + "2029-11-30": "Saint Andrew's Day", + "2029-12-01": "National Day", + "2029-12-25": "Christmas Day", + "2029-12-26": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-01-02": "New Year's Day", + "2030-01-06": "Epiphany", + "2030-01-07": "Saint John the Baptist", + "2030-01-24": "Unification of the Romanian Principalities Day", + "2030-04-26": "Easter", + "2030-04-28": "Easter", + "2030-04-29": "Easter", + "2030-05-01": "Labour Day", + "2030-06-01": "Children's Day", + "2030-06-16": "Pentecost", + "2030-06-17": "Pentecost", + "2030-08-15": "Dormition of the Mother of God", + "2030-11-30": "Saint Andrew's Day", + "2030-12-01": "National Day", + "2030-12-25": "Christmas Day", + "2030-12-26": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-01-02": "New Year's Day", + "2031-01-06": "Epiphany", + "2031-01-07": "Saint John the Baptist", + "2031-01-24": "Unification of the Romanian Principalities Day", + "2031-04-11": "Easter", + "2031-04-13": "Easter", + "2031-04-14": "Easter", + "2031-05-01": "Labour Day", + "2031-06-01": "Children's Day; Pentecost", + "2031-06-02": "Pentecost", + "2031-08-15": "Dormition of the Mother of God", + "2031-11-30": "Saint Andrew's Day", + "2031-12-01": "National Day", + "2031-12-25": "Christmas Day", + "2031-12-26": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-01-02": "New Year's Day", + "2032-01-06": "Epiphany", + "2032-01-07": "Saint John the Baptist", + "2032-01-24": "Unification of the Romanian Principalities Day", + "2032-04-30": "Easter", + "2032-05-01": "Labour Day", + "2032-05-02": "Easter", + "2032-05-03": "Easter", + "2032-06-01": "Children's Day", + "2032-06-20": "Pentecost", + "2032-06-21": "Pentecost", + "2032-08-15": "Dormition of the Mother of God", + "2032-11-30": "Saint Andrew's Day", + "2032-12-01": "National Day", + "2032-12-25": "Christmas Day", + "2032-12-26": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "New Year's Day", + "2033-01-06": "Epiphany", + "2033-01-07": "Saint John the Baptist", + "2033-01-24": "Unification of the Romanian Principalities Day", + "2033-04-22": "Easter", + "2033-04-24": "Easter", + "2033-04-25": "Easter", + "2033-05-01": "Labour Day", + "2033-06-01": "Children's Day", + "2033-06-12": "Pentecost", + "2033-06-13": "Pentecost", + "2033-08-15": "Dormition of the Mother of God", + "2033-11-30": "Saint Andrew's Day", + "2033-12-01": "National Day", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day", + "2034-01-06": "Epiphany", + "2034-01-07": "Saint John the Baptist", + "2034-01-24": "Unification of the Romanian Principalities Day", + "2034-04-07": "Easter", + "2034-04-09": "Easter", + "2034-04-10": "Easter", + "2034-05-01": "Labour Day", + "2034-05-28": "Pentecost", + "2034-05-29": "Pentecost", + "2034-06-01": "Children's Day", + "2034-08-15": "Dormition of the Mother of God", + "2034-11-30": "Saint Andrew's Day", + "2034-12-01": "National Day", + "2034-12-25": "Christmas Day", + "2034-12-26": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-01-02": "New Year's Day", + "2035-01-06": "Epiphany", + "2035-01-07": "Saint John the Baptist", + "2035-01-24": "Unification of the Romanian Principalities Day", + "2035-04-27": "Easter", + "2035-04-29": "Easter", + "2035-04-30": "Easter", + "2035-05-01": "Labour Day", + "2035-06-01": "Children's Day", + "2035-06-17": "Pentecost", + "2035-06-18": "Pentecost", + "2035-08-15": "Dormition of the Mother of God", + "2035-11-30": "Saint Andrew's Day", + "2035-12-01": "National Day", + "2035-12-25": "Christmas Day", + "2035-12-26": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-01-02": "New Year's Day", + "2036-01-06": "Epiphany", + "2036-01-07": "Saint John the Baptist", + "2036-01-24": "Unification of the Romanian Principalities Day", + "2036-04-18": "Easter", + "2036-04-20": "Easter", + "2036-04-21": "Easter", + "2036-05-01": "Labour Day", + "2036-06-01": "Children's Day", + "2036-06-08": "Pentecost", + "2036-06-09": "Pentecost", + "2036-08-15": "Dormition of the Mother of God", + "2036-11-30": "Saint Andrew's Day", + "2036-12-01": "National Day", + "2036-12-25": "Christmas Day", + "2036-12-26": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-02": "New Year's Day", + "2037-01-06": "Epiphany", + "2037-01-07": "Saint John the Baptist", + "2037-01-24": "Unification of the Romanian Principalities Day", + "2037-04-03": "Easter", + "2037-04-05": "Easter", + "2037-04-06": "Easter", + "2037-05-01": "Labour Day", + "2037-05-24": "Pentecost", + "2037-05-25": "Pentecost", + "2037-06-01": "Children's Day", + "2037-08-15": "Dormition of the Mother of God", + "2037-11-30": "Saint Andrew's Day", + "2037-12-01": "National Day", + "2037-12-25": "Christmas Day", + "2037-12-26": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-01-02": "New Year's Day", + "2038-01-06": "Epiphany", + "2038-01-07": "Saint John the Baptist", + "2038-01-24": "Unification of the Romanian Principalities Day", + "2038-04-23": "Easter", + "2038-04-25": "Easter", + "2038-04-26": "Easter", + "2038-05-01": "Labour Day", + "2038-06-01": "Children's Day", + "2038-06-13": "Pentecost", + "2038-06-14": "Pentecost", + "2038-08-15": "Dormition of the Mother of God", + "2038-11-30": "Saint Andrew's Day", + "2038-12-01": "National Day", + "2038-12-25": "Christmas Day", + "2038-12-26": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-01-02": "New Year's Day", + "2039-01-06": "Epiphany", + "2039-01-07": "Saint John the Baptist", + "2039-01-24": "Unification of the Romanian Principalities Day", + "2039-04-15": "Easter", + "2039-04-17": "Easter", + "2039-04-18": "Easter", + "2039-05-01": "Labour Day", + "2039-06-01": "Children's Day", + "2039-06-05": "Pentecost", + "2039-06-06": "Pentecost", + "2039-08-15": "Dormition of the Mother of God", + "2039-11-30": "Saint Andrew's Day", + "2039-12-01": "National Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Christmas Day", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day", + "2040-01-06": "Epiphany", + "2040-01-07": "Saint John the Baptist", + "2040-01-24": "Unification of the Romanian Principalities Day", + "2040-05-01": "Labour Day", + "2040-05-04": "Easter", + "2040-05-06": "Easter", + "2040-05-07": "Easter", + "2040-06-01": "Children's Day", + "2040-06-24": "Pentecost", + "2040-06-25": "Pentecost", + "2040-08-15": "Dormition of the Mother of God", + "2040-11-30": "Saint Andrew's Day", + "2040-12-01": "National Day", + "2040-12-25": "Christmas Day", + "2040-12-26": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-01-02": "New Year's Day", + "2041-01-06": "Epiphany", + "2041-01-07": "Saint John the Baptist", + "2041-01-24": "Unification of the Romanian Principalities Day", + "2041-04-19": "Easter", + "2041-04-21": "Easter", + "2041-04-22": "Easter", + "2041-05-01": "Labour Day", + "2041-06-01": "Children's Day", + "2041-06-09": "Pentecost", + "2041-06-10": "Pentecost", + "2041-08-15": "Dormition of the Mother of God", + "2041-11-30": "Saint Andrew's Day", + "2041-12-01": "National Day", + "2041-12-25": "Christmas Day", + "2041-12-26": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-01-02": "New Year's Day", + "2042-01-06": "Epiphany", + "2042-01-07": "Saint John the Baptist", + "2042-01-24": "Unification of the Romanian Principalities Day", + "2042-04-11": "Easter", + "2042-04-13": "Easter", + "2042-04-14": "Easter", + "2042-05-01": "Labour Day", + "2042-06-01": "Children's Day; Pentecost", + "2042-06-02": "Pentecost", + "2042-08-15": "Dormition of the Mother of God", + "2042-11-30": "Saint Andrew's Day", + "2042-12-01": "National Day", + "2042-12-25": "Christmas Day", + "2042-12-26": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-01-02": "New Year's Day", + "2043-01-06": "Epiphany", + "2043-01-07": "Saint John the Baptist", + "2043-01-24": "Unification of the Romanian Principalities Day", + "2043-05-01": "Easter; Labour Day", + "2043-05-03": "Easter", + "2043-05-04": "Easter", + "2043-06-01": "Children's Day", + "2043-06-21": "Pentecost", + "2043-06-22": "Pentecost", + "2043-08-15": "Dormition of the Mother of God", + "2043-11-30": "Saint Andrew's Day", + "2043-12-01": "National Day", + "2043-12-25": "Christmas Day", + "2043-12-26": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-01-02": "New Year's Day", + "2044-01-06": "Epiphany", + "2044-01-07": "Saint John the Baptist", + "2044-01-24": "Unification of the Romanian Principalities Day", + "2044-04-22": "Easter", + "2044-04-24": "Easter", + "2044-04-25": "Easter", + "2044-05-01": "Labour Day", + "2044-06-01": "Children's Day", + "2044-06-12": "Pentecost", + "2044-06-13": "Pentecost", + "2044-08-15": "Dormition of the Mother of God", + "2044-11-30": "Saint Andrew's Day", + "2044-12-01": "National Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day", + "2045-01-06": "Epiphany", + "2045-01-07": "Saint John the Baptist", + "2045-01-24": "Unification of the Romanian Principalities Day", + "2045-04-07": "Easter", + "2045-04-09": "Easter", + "2045-04-10": "Easter", + "2045-05-01": "Labour Day", + "2045-05-28": "Pentecost", + "2045-05-29": "Pentecost", + "2045-06-01": "Children's Day", + "2045-08-15": "Dormition of the Mother of God", + "2045-11-30": "Saint Andrew's Day", + "2045-12-01": "National Day", + "2045-12-25": "Christmas Day", + "2045-12-26": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-01-02": "New Year's Day", + "2046-01-06": "Epiphany", + "2046-01-07": "Saint John the Baptist", + "2046-01-24": "Unification of the Romanian Principalities Day", + "2046-04-27": "Easter", + "2046-04-29": "Easter", + "2046-04-30": "Easter", + "2046-05-01": "Labour Day", + "2046-06-01": "Children's Day", + "2046-06-17": "Pentecost", + "2046-06-18": "Pentecost", + "2046-08-15": "Dormition of the Mother of God", + "2046-11-30": "Saint Andrew's Day", + "2046-12-01": "National Day", + "2046-12-25": "Christmas Day", + "2046-12-26": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-02": "New Year's Day", + "2047-01-06": "Epiphany", + "2047-01-07": "Saint John the Baptist", + "2047-01-24": "Unification of the Romanian Principalities Day", + "2047-04-19": "Easter", + "2047-04-21": "Easter", + "2047-04-22": "Easter", + "2047-05-01": "Labour Day", + "2047-06-01": "Children's Day", + "2047-06-09": "Pentecost", + "2047-06-10": "Pentecost", + "2047-08-15": "Dormition of the Mother of God", + "2047-11-30": "Saint Andrew's Day", + "2047-12-01": "National Day", + "2047-12-25": "Christmas Day", + "2047-12-26": "Christmas Day", + "2048-01-01": "New Year's Day", + "2048-01-02": "New Year's Day", + "2048-01-06": "Epiphany", + "2048-01-07": "Saint John the Baptist", + "2048-01-24": "Unification of the Romanian Principalities Day", + "2048-04-03": "Easter", + "2048-04-05": "Easter", + "2048-04-06": "Easter", + "2048-05-01": "Labour Day", + "2048-05-24": "Pentecost", + "2048-05-25": "Pentecost", + "2048-06-01": "Children's Day", + "2048-08-15": "Dormition of the Mother of God", + "2048-11-30": "Saint Andrew's Day", + "2048-12-01": "National Day", + "2048-12-25": "Christmas Day", + "2048-12-26": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-01-02": "New Year's Day", + "2049-01-06": "Epiphany", + "2049-01-07": "Saint John the Baptist", + "2049-01-24": "Unification of the Romanian Principalities Day", + "2049-04-23": "Easter", + "2049-04-25": "Easter", + "2049-04-26": "Easter", + "2049-05-01": "Labour Day", + "2049-06-01": "Children's Day", + "2049-06-13": "Pentecost", + "2049-06-14": "Pentecost", + "2049-08-15": "Dormition of the Mother of God", + "2049-11-30": "Saint Andrew's Day", + "2049-12-01": "National Day", + "2049-12-25": "Christmas Day", + "2049-12-26": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-01-02": "New Year's Day", + "2050-01-06": "Epiphany", + "2050-01-07": "Saint John the Baptist", + "2050-01-24": "Unification of the Romanian Principalities Day", + "2050-04-15": "Easter", + "2050-04-17": "Easter", + "2050-04-18": "Easter", + "2050-05-01": "Labour Day", + "2050-06-01": "Children's Day", + "2050-06-05": "Pentecost", + "2050-06-06": "Pentecost", + "2050-08-15": "Dormition of the Mother of God", + "2050-11-30": "Saint Andrew's Day", + "2050-12-01": "National Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day" +} diff --git a/snapshots/countries/RS.json b/snapshots/countries/RS.json new file mode 100644 index 000000000..87d34fa44 --- /dev/null +++ b/snapshots/countries/RS.json @@ -0,0 +1,1291 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-02": "New Year's Day", + "1950-01-03": "New Year's Day (Observed)", + "1950-01-07": "Orthodox Christmas Day", + "1950-02-15": "Statehood Day", + "1950-02-16": "Statehood Day", + "1950-04-07": "Good Friday", + "1950-04-08": "Easter Saturday", + "1950-04-09": "Easter Sunday", + "1950-04-10": "Easter Monday", + "1950-05-01": "International Workers' Day", + "1950-05-02": "International Workers' Day", + "1950-11-11": "Armistice Day", + "1951-01-01": "New Year's Day", + "1951-01-02": "New Year's Day", + "1951-01-07": "Orthodox Christmas Day", + "1951-02-15": "Statehood Day", + "1951-02-16": "Statehood Day", + "1951-04-27": "Good Friday", + "1951-04-28": "Easter Saturday", + "1951-04-29": "Easter Sunday", + "1951-04-30": "Easter Monday", + "1951-05-01": "International Workers' Day", + "1951-05-02": "International Workers' Day", + "1951-11-11": "Armistice Day", + "1951-11-12": "Armistice Day (Observed)", + "1952-01-01": "New Year's Day", + "1952-01-02": "New Year's Day", + "1952-01-07": "Orthodox Christmas Day", + "1952-02-15": "Statehood Day", + "1952-02-16": "Statehood Day", + "1952-04-18": "Good Friday", + "1952-04-19": "Easter Saturday", + "1952-04-20": "Easter Sunday", + "1952-04-21": "Easter Monday", + "1952-05-01": "International Workers' Day", + "1952-05-02": "International Workers' Day", + "1952-11-11": "Armistice Day", + "1953-01-01": "New Year's Day", + "1953-01-02": "New Year's Day", + "1953-01-07": "Orthodox Christmas Day", + "1953-02-15": "Statehood Day", + "1953-02-16": "Statehood Day", + "1953-02-17": "Statehood Day (Observed)", + "1953-04-03": "Good Friday", + "1953-04-04": "Easter Saturday", + "1953-04-05": "Easter Sunday", + "1953-04-06": "Easter Monday", + "1953-05-01": "International Workers' Day", + "1953-05-02": "International Workers' Day", + "1953-11-11": "Armistice Day", + "1954-01-01": "New Year's Day", + "1954-01-02": "New Year's Day", + "1954-01-07": "Orthodox Christmas Day", + "1954-02-15": "Statehood Day", + "1954-02-16": "Statehood Day", + "1954-04-23": "Good Friday", + "1954-04-24": "Easter Saturday", + "1954-04-25": "Easter Sunday", + "1954-04-26": "Easter Monday", + "1954-05-01": "International Workers' Day", + "1954-05-02": "International Workers' Day", + "1954-05-03": "International Workers' Day (Observed)", + "1954-11-11": "Armistice Day", + "1955-01-01": "New Year's Day", + "1955-01-02": "New Year's Day", + "1955-01-03": "New Year's Day (Observed)", + "1955-01-07": "Orthodox Christmas Day", + "1955-02-15": "Statehood Day", + "1955-02-16": "Statehood Day", + "1955-04-15": "Good Friday", + "1955-04-16": "Easter Saturday", + "1955-04-17": "Easter Sunday", + "1955-04-18": "Easter Monday", + "1955-05-01": "International Workers' Day", + "1955-05-02": "International Workers' Day", + "1955-05-03": "International Workers' Day (Observed)", + "1955-11-11": "Armistice Day", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year's Day", + "1956-01-03": "New Year's Day (Observed)", + "1956-01-07": "Orthodox Christmas Day", + "1956-02-15": "Statehood Day", + "1956-02-16": "Statehood Day", + "1956-05-01": "International Workers' Day", + "1956-05-02": "International Workers' Day", + "1956-05-04": "Good Friday", + "1956-05-05": "Easter Saturday", + "1956-05-06": "Easter Sunday", + "1956-05-07": "Easter Monday", + "1956-11-11": "Armistice Day", + "1956-11-12": "Armistice Day (Observed)", + "1957-01-01": "New Year's Day", + "1957-01-02": "New Year's Day", + "1957-01-07": "Orthodox Christmas Day", + "1957-02-15": "Statehood Day", + "1957-02-16": "Statehood Day", + "1957-04-19": "Good Friday", + "1957-04-20": "Easter Saturday", + "1957-04-21": "Easter Sunday", + "1957-04-22": "Easter Monday", + "1957-05-01": "International Workers' Day", + "1957-05-02": "International Workers' Day", + "1957-11-11": "Armistice Day", + "1958-01-01": "New Year's Day", + "1958-01-02": "New Year's Day", + "1958-01-07": "Orthodox Christmas Day", + "1958-02-15": "Statehood Day", + "1958-02-16": "Statehood Day", + "1958-02-17": "Statehood Day (Observed)", + "1958-04-11": "Good Friday", + "1958-04-12": "Easter Saturday", + "1958-04-13": "Easter Sunday", + "1958-04-14": "Easter Monday", + "1958-05-01": "International Workers' Day", + "1958-05-02": "International Workers' Day", + "1958-11-11": "Armistice Day", + "1959-01-01": "New Year's Day", + "1959-01-02": "New Year's Day", + "1959-01-07": "Orthodox Christmas Day", + "1959-02-15": "Statehood Day", + "1959-02-16": "Statehood Day", + "1959-02-17": "Statehood Day (Observed)", + "1959-05-01": "Good Friday; International Workers' Day", + "1959-05-02": "Easter Saturday; International Workers' Day", + "1959-05-03": "Easter Sunday", + "1959-05-04": "Easter Monday", + "1959-11-11": "Armistice Day", + "1960-01-01": "New Year's Day", + "1960-01-02": "New Year's Day", + "1960-01-07": "Orthodox Christmas Day", + "1960-02-15": "Statehood Day", + "1960-02-16": "Statehood Day", + "1960-04-15": "Good Friday", + "1960-04-16": "Easter Saturday", + "1960-04-17": "Easter Sunday", + "1960-04-18": "Easter Monday", + "1960-05-01": "International Workers' Day", + "1960-05-02": "International Workers' Day", + "1960-05-03": "International Workers' Day (Observed)", + "1960-11-11": "Armistice Day", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day", + "1961-01-03": "New Year's Day (Observed)", + "1961-01-07": "Orthodox Christmas Day", + "1961-02-15": "Statehood Day", + "1961-02-16": "Statehood Day", + "1961-04-07": "Good Friday", + "1961-04-08": "Easter Saturday", + "1961-04-09": "Easter Sunday", + "1961-04-10": "Easter Monday", + "1961-05-01": "International Workers' Day", + "1961-05-02": "International Workers' Day", + "1961-11-11": "Armistice Day", + "1962-01-01": "New Year's Day", + "1962-01-02": "New Year's Day", + "1962-01-07": "Orthodox Christmas Day", + "1962-02-15": "Statehood Day", + "1962-02-16": "Statehood Day", + "1962-04-27": "Good Friday", + "1962-04-28": "Easter Saturday", + "1962-04-29": "Easter Sunday", + "1962-04-30": "Easter Monday", + "1962-05-01": "International Workers' Day", + "1962-05-02": "International Workers' Day", + "1962-11-11": "Armistice Day", + "1962-11-12": "Armistice Day (Observed)", + "1963-01-01": "New Year's Day", + "1963-01-02": "New Year's Day", + "1963-01-07": "Orthodox Christmas Day", + "1963-02-15": "Statehood Day", + "1963-02-16": "Statehood Day", + "1963-04-12": "Good Friday", + "1963-04-13": "Easter Saturday", + "1963-04-14": "Easter Sunday", + "1963-04-15": "Easter Monday", + "1963-05-01": "International Workers' Day", + "1963-05-02": "International Workers' Day", + "1963-11-11": "Armistice Day", + "1964-01-01": "New Year's Day", + "1964-01-02": "New Year's Day", + "1964-01-07": "Orthodox Christmas Day", + "1964-02-15": "Statehood Day", + "1964-02-16": "Statehood Day", + "1964-02-17": "Statehood Day (Observed)", + "1964-05-01": "Good Friday; International Workers' Day", + "1964-05-02": "Easter Saturday; International Workers' Day", + "1964-05-03": "Easter Sunday", + "1964-05-04": "Easter Monday", + "1964-11-11": "Armistice Day", + "1965-01-01": "New Year's Day", + "1965-01-02": "New Year's Day", + "1965-01-07": "Orthodox Christmas Day", + "1965-02-15": "Statehood Day", + "1965-02-16": "Statehood Day", + "1965-04-23": "Good Friday", + "1965-04-24": "Easter Saturday", + "1965-04-25": "Easter Sunday", + "1965-04-26": "Easter Monday", + "1965-05-01": "International Workers' Day", + "1965-05-02": "International Workers' Day", + "1965-05-03": "International Workers' Day (Observed)", + "1965-11-11": "Armistice Day", + "1966-01-01": "New Year's Day", + "1966-01-02": "New Year's Day", + "1966-01-03": "New Year's Day (Observed)", + "1966-01-07": "Orthodox Christmas Day", + "1966-02-15": "Statehood Day", + "1966-02-16": "Statehood Day", + "1966-04-08": "Good Friday", + "1966-04-09": "Easter Saturday", + "1966-04-10": "Easter Sunday", + "1966-04-11": "Easter Monday", + "1966-05-01": "International Workers' Day", + "1966-05-02": "International Workers' Day", + "1966-05-03": "International Workers' Day (Observed)", + "1966-11-11": "Armistice Day", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day", + "1967-01-03": "New Year's Day (Observed)", + "1967-01-07": "Orthodox Christmas Day", + "1967-02-15": "Statehood Day", + "1967-02-16": "Statehood Day", + "1967-04-28": "Good Friday", + "1967-04-29": "Easter Saturday", + "1967-04-30": "Easter Sunday", + "1967-05-01": "Easter Monday; International Workers' Day", + "1967-05-02": "International Workers' Day", + "1967-11-11": "Armistice Day", + "1968-01-01": "New Year's Day", + "1968-01-02": "New Year's Day", + "1968-01-07": "Orthodox Christmas Day", + "1968-02-15": "Statehood Day", + "1968-02-16": "Statehood Day", + "1968-04-19": "Good Friday", + "1968-04-20": "Easter Saturday", + "1968-04-21": "Easter Sunday", + "1968-04-22": "Easter Monday", + "1968-05-01": "International Workers' Day", + "1968-05-02": "International Workers' Day", + "1968-11-11": "Armistice Day", + "1969-01-01": "New Year's Day", + "1969-01-02": "New Year's Day", + "1969-01-07": "Orthodox Christmas Day", + "1969-02-15": "Statehood Day", + "1969-02-16": "Statehood Day", + "1969-02-17": "Statehood Day (Observed)", + "1969-04-11": "Good Friday", + "1969-04-12": "Easter Saturday", + "1969-04-13": "Easter Sunday", + "1969-04-14": "Easter Monday", + "1969-05-01": "International Workers' Day", + "1969-05-02": "International Workers' Day", + "1969-11-11": "Armistice Day", + "1970-01-01": "New Year's Day", + "1970-01-02": "New Year's Day", + "1970-01-07": "Orthodox Christmas Day", + "1970-02-15": "Statehood Day", + "1970-02-16": "Statehood Day", + "1970-02-17": "Statehood Day (Observed)", + "1970-04-24": "Good Friday", + "1970-04-25": "Easter Saturday", + "1970-04-26": "Easter Sunday", + "1970-04-27": "Easter Monday", + "1970-05-01": "International Workers' Day", + "1970-05-02": "International Workers' Day", + "1970-11-11": "Armistice Day", + "1971-01-01": "New Year's Day", + "1971-01-02": "New Year's Day", + "1971-01-07": "Orthodox Christmas Day", + "1971-02-15": "Statehood Day", + "1971-02-16": "Statehood Day", + "1971-04-16": "Good Friday", + "1971-04-17": "Easter Saturday", + "1971-04-18": "Easter Sunday", + "1971-04-19": "Easter Monday", + "1971-05-01": "International Workers' Day", + "1971-05-02": "International Workers' Day", + "1971-05-03": "International Workers' Day (Observed)", + "1971-11-11": "Armistice Day", + "1972-01-01": "New Year's Day", + "1972-01-02": "New Year's Day", + "1972-01-03": "New Year's Day (Observed)", + "1972-01-07": "Orthodox Christmas Day", + "1972-02-15": "Statehood Day", + "1972-02-16": "Statehood Day", + "1972-04-07": "Good Friday", + "1972-04-08": "Easter Saturday", + "1972-04-09": "Easter Sunday", + "1972-04-10": "Easter Monday", + "1972-05-01": "International Workers' Day", + "1972-05-02": "International Workers' Day", + "1972-11-11": "Armistice Day", + "1973-01-01": "New Year's Day", + "1973-01-02": "New Year's Day", + "1973-01-07": "Orthodox Christmas Day", + "1973-02-15": "Statehood Day", + "1973-02-16": "Statehood Day", + "1973-04-27": "Good Friday", + "1973-04-28": "Easter Saturday", + "1973-04-29": "Easter Sunday", + "1973-04-30": "Easter Monday", + "1973-05-01": "International Workers' Day", + "1973-05-02": "International Workers' Day", + "1973-11-11": "Armistice Day", + "1973-11-12": "Armistice Day (Observed)", + "1974-01-01": "New Year's Day", + "1974-01-02": "New Year's Day", + "1974-01-07": "Orthodox Christmas Day", + "1974-02-15": "Statehood Day", + "1974-02-16": "Statehood Day", + "1974-04-12": "Good Friday", + "1974-04-13": "Easter Saturday", + "1974-04-14": "Easter Sunday", + "1974-04-15": "Easter Monday", + "1974-05-01": "International Workers' Day", + "1974-05-02": "International Workers' Day", + "1974-11-11": "Armistice Day", + "1975-01-01": "New Year's Day", + "1975-01-02": "New Year's Day", + "1975-01-07": "Orthodox Christmas Day", + "1975-02-15": "Statehood Day", + "1975-02-16": "Statehood Day", + "1975-02-17": "Statehood Day (Observed)", + "1975-05-01": "International Workers' Day", + "1975-05-02": "Good Friday; International Workers' Day", + "1975-05-03": "Easter Saturday", + "1975-05-04": "Easter Sunday", + "1975-05-05": "Easter Monday", + "1975-11-11": "Armistice Day", + "1976-01-01": "New Year's Day", + "1976-01-02": "New Year's Day", + "1976-01-07": "Orthodox Christmas Day", + "1976-02-15": "Statehood Day", + "1976-02-16": "Statehood Day", + "1976-02-17": "Statehood Day (Observed)", + "1976-04-23": "Good Friday", + "1976-04-24": "Easter Saturday", + "1976-04-25": "Easter Sunday", + "1976-04-26": "Easter Monday", + "1976-05-01": "International Workers' Day", + "1976-05-02": "International Workers' Day", + "1976-05-03": "International Workers' Day (Observed)", + "1976-11-11": "Armistice Day", + "1977-01-01": "New Year's Day", + "1977-01-02": "New Year's Day", + "1977-01-03": "New Year's Day (Observed)", + "1977-01-07": "Orthodox Christmas Day", + "1977-02-15": "Statehood Day", + "1977-02-16": "Statehood Day", + "1977-04-08": "Good Friday", + "1977-04-09": "Easter Saturday", + "1977-04-10": "Easter Sunday", + "1977-04-11": "Easter Monday", + "1977-05-01": "International Workers' Day", + "1977-05-02": "International Workers' Day", + "1977-05-03": "International Workers' Day (Observed)", + "1977-11-11": "Armistice Day", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day", + "1978-01-03": "New Year's Day (Observed)", + "1978-01-07": "Orthodox Christmas Day", + "1978-02-15": "Statehood Day", + "1978-02-16": "Statehood Day", + "1978-04-28": "Good Friday", + "1978-04-29": "Easter Saturday", + "1978-04-30": "Easter Sunday", + "1978-05-01": "Easter Monday; International Workers' Day", + "1978-05-02": "International Workers' Day", + "1978-11-11": "Armistice Day", + "1979-01-01": "New Year's Day", + "1979-01-02": "New Year's Day", + "1979-01-07": "Orthodox Christmas Day", + "1979-02-15": "Statehood Day", + "1979-02-16": "Statehood Day", + "1979-04-20": "Good Friday", + "1979-04-21": "Easter Saturday", + "1979-04-22": "Easter Sunday", + "1979-04-23": "Easter Monday", + "1979-05-01": "International Workers' Day", + "1979-05-02": "International Workers' Day", + "1979-11-11": "Armistice Day", + "1979-11-12": "Armistice Day (Observed)", + "1980-01-01": "New Year's Day", + "1980-01-02": "New Year's Day", + "1980-01-07": "Orthodox Christmas Day", + "1980-02-15": "Statehood Day", + "1980-02-16": "Statehood Day", + "1980-04-04": "Good Friday", + "1980-04-05": "Easter Saturday", + "1980-04-06": "Easter Sunday", + "1980-04-07": "Easter Monday", + "1980-05-01": "International Workers' Day", + "1980-05-02": "International Workers' Day", + "1980-11-11": "Armistice Day", + "1981-01-01": "New Year's Day", + "1981-01-02": "New Year's Day", + "1981-01-07": "Orthodox Christmas Day", + "1981-02-15": "Statehood Day", + "1981-02-16": "Statehood Day", + "1981-02-17": "Statehood Day (Observed)", + "1981-04-24": "Good Friday", + "1981-04-25": "Easter Saturday", + "1981-04-26": "Easter Sunday", + "1981-04-27": "Easter Monday", + "1981-05-01": "International Workers' Day", + "1981-05-02": "International Workers' Day", + "1981-11-11": "Armistice Day", + "1982-01-01": "New Year's Day", + "1982-01-02": "New Year's Day", + "1982-01-07": "Orthodox Christmas Day", + "1982-02-15": "Statehood Day", + "1982-02-16": "Statehood Day", + "1982-04-16": "Good Friday", + "1982-04-17": "Easter Saturday", + "1982-04-18": "Easter Sunday", + "1982-04-19": "Easter Monday", + "1982-05-01": "International Workers' Day", + "1982-05-02": "International Workers' Day", + "1982-05-03": "International Workers' Day (Observed)", + "1982-11-11": "Armistice Day", + "1983-01-01": "New Year's Day", + "1983-01-02": "New Year's Day", + "1983-01-03": "New Year's Day (Observed)", + "1983-01-07": "Orthodox Christmas Day", + "1983-02-15": "Statehood Day", + "1983-02-16": "Statehood Day", + "1983-05-01": "International Workers' Day", + "1983-05-02": "International Workers' Day", + "1983-05-03": "International Workers' Day (Observed)", + "1983-05-06": "Good Friday", + "1983-05-07": "Easter Saturday", + "1983-05-08": "Easter Sunday", + "1983-05-09": "Easter Monday", + "1983-11-11": "Armistice Day", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day", + "1984-01-03": "New Year's Day (Observed)", + "1984-01-07": "Orthodox Christmas Day", + "1984-02-15": "Statehood Day", + "1984-02-16": "Statehood Day", + "1984-04-20": "Good Friday", + "1984-04-21": "Easter Saturday", + "1984-04-22": "Easter Sunday", + "1984-04-23": "Easter Monday", + "1984-05-01": "International Workers' Day", + "1984-05-02": "International Workers' Day", + "1984-11-11": "Armistice Day", + "1984-11-12": "Armistice Day (Observed)", + "1985-01-01": "New Year's Day", + "1985-01-02": "New Year's Day", + "1985-01-07": "Orthodox Christmas Day", + "1985-02-15": "Statehood Day", + "1985-02-16": "Statehood Day", + "1985-04-12": "Good Friday", + "1985-04-13": "Easter Saturday", + "1985-04-14": "Easter Sunday", + "1985-04-15": "Easter Monday", + "1985-05-01": "International Workers' Day", + "1985-05-02": "International Workers' Day", + "1985-11-11": "Armistice Day", + "1986-01-01": "New Year's Day", + "1986-01-02": "New Year's Day", + "1986-01-07": "Orthodox Christmas Day", + "1986-02-15": "Statehood Day", + "1986-02-16": "Statehood Day", + "1986-02-17": "Statehood Day (Observed)", + "1986-05-01": "International Workers' Day", + "1986-05-02": "Good Friday; International Workers' Day", + "1986-05-03": "Easter Saturday", + "1986-05-04": "Easter Sunday", + "1986-05-05": "Easter Monday", + "1986-11-11": "Armistice Day", + "1987-01-01": "New Year's Day", + "1987-01-02": "New Year's Day", + "1987-01-07": "Orthodox Christmas Day", + "1987-02-15": "Statehood Day", + "1987-02-16": "Statehood Day", + "1987-02-17": "Statehood Day (Observed)", + "1987-04-17": "Good Friday", + "1987-04-18": "Easter Saturday", + "1987-04-19": "Easter Sunday", + "1987-04-20": "Easter Monday", + "1987-05-01": "International Workers' Day", + "1987-05-02": "International Workers' Day", + "1987-11-11": "Armistice Day", + "1988-01-01": "New Year's Day", + "1988-01-02": "New Year's Day", + "1988-01-07": "Orthodox Christmas Day", + "1988-02-15": "Statehood Day", + "1988-02-16": "Statehood Day", + "1988-04-08": "Good Friday", + "1988-04-09": "Easter Saturday", + "1988-04-10": "Easter Sunday", + "1988-04-11": "Easter Monday", + "1988-05-01": "International Workers' Day", + "1988-05-02": "International Workers' Day", + "1988-05-03": "International Workers' Day (Observed)", + "1988-11-11": "Armistice Day", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day", + "1989-01-03": "New Year's Day (Observed)", + "1989-01-07": "Orthodox Christmas Day", + "1989-02-15": "Statehood Day", + "1989-02-16": "Statehood Day", + "1989-04-28": "Good Friday", + "1989-04-29": "Easter Saturday", + "1989-04-30": "Easter Sunday", + "1989-05-01": "Easter Monday; International Workers' Day", + "1989-05-02": "International Workers' Day", + "1989-11-11": "Armistice Day", + "1990-01-01": "New Year's Day", + "1990-01-02": "New Year's Day", + "1990-01-07": "Orthodox Christmas Day", + "1990-02-15": "Statehood Day", + "1990-02-16": "Statehood Day", + "1990-04-13": "Good Friday", + "1990-04-14": "Easter Saturday", + "1990-04-15": "Easter Sunday", + "1990-04-16": "Easter Monday", + "1990-05-01": "International Workers' Day", + "1990-05-02": "International Workers' Day", + "1990-11-11": "Armistice Day", + "1990-11-12": "Armistice Day (Observed)", + "1991-01-01": "New Year's Day", + "1991-01-02": "New Year's Day", + "1991-01-07": "Orthodox Christmas Day", + "1991-02-15": "Statehood Day", + "1991-02-16": "Statehood Day", + "1991-04-05": "Good Friday", + "1991-04-06": "Easter Saturday", + "1991-04-07": "Easter Sunday", + "1991-04-08": "Easter Monday", + "1991-05-01": "International Workers' Day", + "1991-05-02": "International Workers' Day", + "1991-11-11": "Armistice Day", + "1992-01-01": "New Year's Day", + "1992-01-02": "New Year's Day", + "1992-01-07": "Orthodox Christmas Day", + "1992-02-15": "Statehood Day", + "1992-02-16": "Statehood Day", + "1992-02-17": "Statehood Day (Observed)", + "1992-04-24": "Good Friday", + "1992-04-25": "Easter Saturday", + "1992-04-26": "Easter Sunday", + "1992-04-27": "Easter Monday", + "1992-05-01": "International Workers' Day", + "1992-05-02": "International Workers' Day", + "1992-11-11": "Armistice Day", + "1993-01-01": "New Year's Day", + "1993-01-02": "New Year's Day", + "1993-01-07": "Orthodox Christmas Day", + "1993-02-15": "Statehood Day", + "1993-02-16": "Statehood Day", + "1993-04-16": "Good Friday", + "1993-04-17": "Easter Saturday", + "1993-04-18": "Easter Sunday", + "1993-04-19": "Easter Monday", + "1993-05-01": "International Workers' Day", + "1993-05-02": "International Workers' Day", + "1993-05-03": "International Workers' Day (Observed)", + "1993-11-11": "Armistice Day", + "1994-01-01": "New Year's Day", + "1994-01-02": "New Year's Day", + "1994-01-03": "New Year's Day (Observed)", + "1994-01-07": "Orthodox Christmas Day", + "1994-02-15": "Statehood Day", + "1994-02-16": "Statehood Day", + "1994-04-29": "Good Friday", + "1994-04-30": "Easter Saturday", + "1994-05-01": "Easter Sunday; International Workers' Day", + "1994-05-02": "Easter Monday; International Workers' Day", + "1994-05-03": "International Workers' Day (Observed)", + "1994-11-11": "Armistice Day", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day", + "1995-01-03": "New Year's Day (Observed)", + "1995-01-07": "Orthodox Christmas Day", + "1995-02-15": "Statehood Day", + "1995-02-16": "Statehood Day", + "1995-04-21": "Good Friday", + "1995-04-22": "Easter Saturday", + "1995-04-23": "Easter Sunday", + "1995-04-24": "Easter Monday", + "1995-05-01": "International Workers' Day", + "1995-05-02": "International Workers' Day", + "1995-11-11": "Armistice Day", + "1996-01-01": "New Year's Day", + "1996-01-02": "New Year's Day", + "1996-01-07": "Orthodox Christmas Day", + "1996-02-15": "Statehood Day", + "1996-02-16": "Statehood Day", + "1996-04-12": "Good Friday", + "1996-04-13": "Easter Saturday", + "1996-04-14": "Easter Sunday", + "1996-04-15": "Easter Monday", + "1996-05-01": "International Workers' Day", + "1996-05-02": "International Workers' Day", + "1996-11-11": "Armistice Day", + "1997-01-01": "New Year's Day", + "1997-01-02": "New Year's Day", + "1997-01-07": "Orthodox Christmas Day", + "1997-02-15": "Statehood Day", + "1997-02-16": "Statehood Day", + "1997-02-17": "Statehood Day (Observed)", + "1997-04-25": "Good Friday", + "1997-04-26": "Easter Saturday", + "1997-04-27": "Easter Sunday", + "1997-04-28": "Easter Monday", + "1997-05-01": "International Workers' Day", + "1997-05-02": "International Workers' Day", + "1997-11-11": "Armistice Day", + "1998-01-01": "New Year's Day", + "1998-01-02": "New Year's Day", + "1998-01-07": "Orthodox Christmas Day", + "1998-02-15": "Statehood Day", + "1998-02-16": "Statehood Day", + "1998-02-17": "Statehood Day (Observed)", + "1998-04-17": "Good Friday", + "1998-04-18": "Easter Saturday", + "1998-04-19": "Easter Sunday", + "1998-04-20": "Easter Monday", + "1998-05-01": "International Workers' Day", + "1998-05-02": "International Workers' Day", + "1998-11-11": "Armistice Day", + "1999-01-01": "New Year's Day", + "1999-01-02": "New Year's Day", + "1999-01-07": "Orthodox Christmas Day", + "1999-02-15": "Statehood Day", + "1999-02-16": "Statehood Day", + "1999-04-09": "Good Friday", + "1999-04-10": "Easter Saturday", + "1999-04-11": "Easter Sunday", + "1999-04-12": "Easter Monday", + "1999-05-01": "International Workers' Day", + "1999-05-02": "International Workers' Day", + "1999-05-03": "International Workers' Day (Observed)", + "1999-11-11": "Armistice Day", + "2000-01-01": "New Year's Day", + "2000-01-02": "New Year's Day", + "2000-01-03": "New Year's Day (Observed)", + "2000-01-07": "Orthodox Christmas Day", + "2000-02-15": "Statehood Day", + "2000-02-16": "Statehood Day", + "2000-04-28": "Good Friday", + "2000-04-29": "Easter Saturday", + "2000-04-30": "Easter Sunday", + "2000-05-01": "Easter Monday; International Workers' Day", + "2000-05-02": "International Workers' Day", + "2000-11-11": "Armistice Day", + "2001-01-01": "New Year's Day", + "2001-01-02": "New Year's Day", + "2001-01-07": "Orthodox Christmas Day", + "2001-02-15": "Statehood Day", + "2001-02-16": "Statehood Day", + "2001-04-13": "Good Friday", + "2001-04-14": "Easter Saturday", + "2001-04-15": "Easter Sunday", + "2001-04-16": "Easter Monday", + "2001-05-01": "International Workers' Day", + "2001-05-02": "International Workers' Day", + "2001-11-11": "Armistice Day", + "2001-11-12": "Armistice Day (Observed)", + "2002-01-01": "New Year's Day", + "2002-01-02": "New Year's Day", + "2002-01-07": "Orthodox Christmas Day", + "2002-02-15": "Statehood Day", + "2002-02-16": "Statehood Day", + "2002-05-01": "International Workers' Day", + "2002-05-02": "International Workers' Day", + "2002-05-03": "Good Friday", + "2002-05-04": "Easter Saturday", + "2002-05-05": "Easter Sunday", + "2002-05-06": "Easter Monday", + "2002-11-11": "Armistice Day", + "2003-01-01": "New Year's Day", + "2003-01-02": "New Year's Day", + "2003-01-07": "Orthodox Christmas Day", + "2003-02-15": "Statehood Day", + "2003-02-16": "Statehood Day", + "2003-02-17": "Statehood Day (Observed)", + "2003-04-25": "Good Friday", + "2003-04-26": "Easter Saturday", + "2003-04-27": "Easter Sunday", + "2003-04-28": "Easter Monday", + "2003-05-01": "International Workers' Day", + "2003-05-02": "International Workers' Day", + "2003-11-11": "Armistice Day", + "2004-01-01": "New Year's Day", + "2004-01-02": "New Year's Day", + "2004-01-07": "Orthodox Christmas Day", + "2004-02-15": "Statehood Day", + "2004-02-16": "Statehood Day", + "2004-02-17": "Statehood Day (Observed)", + "2004-04-09": "Good Friday", + "2004-04-10": "Easter Saturday", + "2004-04-11": "Easter Sunday", + "2004-04-12": "Easter Monday", + "2004-05-01": "International Workers' Day", + "2004-05-02": "International Workers' Day", + "2004-05-03": "International Workers' Day (Observed)", + "2004-11-11": "Armistice Day", + "2005-01-01": "New Year's Day", + "2005-01-02": "New Year's Day", + "2005-01-03": "New Year's Day (Observed)", + "2005-01-07": "Orthodox Christmas Day", + "2005-02-15": "Statehood Day", + "2005-02-16": "Statehood Day", + "2005-04-29": "Good Friday", + "2005-04-30": "Easter Saturday", + "2005-05-01": "Easter Sunday; International Workers' Day", + "2005-05-02": "Easter Monday; International Workers' Day", + "2005-05-03": "International Workers' Day (Observed)", + "2005-11-11": "Armistice Day", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day", + "2006-01-03": "New Year's Day (Observed)", + "2006-01-07": "Orthodox Christmas Day", + "2006-02-15": "Statehood Day", + "2006-02-16": "Statehood Day", + "2006-04-21": "Good Friday", + "2006-04-22": "Easter Saturday", + "2006-04-23": "Easter Sunday", + "2006-04-24": "Easter Monday", + "2006-05-01": "International Workers' Day", + "2006-05-02": "International Workers' Day", + "2006-11-11": "Armistice Day", + "2007-01-01": "New Year's Day", + "2007-01-02": "New Year's Day", + "2007-01-07": "Orthodox Christmas Day", + "2007-02-15": "Statehood Day", + "2007-02-16": "Statehood Day", + "2007-04-06": "Good Friday", + "2007-04-07": "Easter Saturday", + "2007-04-08": "Easter Sunday", + "2007-04-09": "Easter Monday", + "2007-05-01": "International Workers' Day", + "2007-05-02": "International Workers' Day", + "2007-11-11": "Armistice Day", + "2007-11-12": "Armistice Day (Observed)", + "2008-01-01": "New Year's Day", + "2008-01-02": "New Year's Day", + "2008-01-07": "Orthodox Christmas Day", + "2008-02-15": "Statehood Day", + "2008-02-16": "Statehood Day", + "2008-04-25": "Good Friday", + "2008-04-26": "Easter Saturday", + "2008-04-27": "Easter Sunday", + "2008-04-28": "Easter Monday", + "2008-05-01": "International Workers' Day", + "2008-05-02": "International Workers' Day", + "2008-11-11": "Armistice Day", + "2009-01-01": "New Year's Day", + "2009-01-02": "New Year's Day", + "2009-01-07": "Orthodox Christmas Day", + "2009-02-15": "Statehood Day", + "2009-02-16": "Statehood Day", + "2009-02-17": "Statehood Day (Observed)", + "2009-04-17": "Good Friday", + "2009-04-18": "Easter Saturday", + "2009-04-19": "Easter Sunday", + "2009-04-20": "Easter Monday", + "2009-05-01": "International Workers' Day", + "2009-05-02": "International Workers' Day", + "2009-11-11": "Armistice Day", + "2010-01-01": "New Year's Day", + "2010-01-02": "New Year's Day", + "2010-01-07": "Orthodox Christmas Day", + "2010-02-15": "Statehood Day", + "2010-02-16": "Statehood Day", + "2010-04-02": "Good Friday", + "2010-04-03": "Easter Saturday", + "2010-04-04": "Easter Sunday", + "2010-04-05": "Easter Monday", + "2010-05-01": "International Workers' Day", + "2010-05-02": "International Workers' Day", + "2010-05-03": "International Workers' Day (Observed)", + "2010-11-11": "Armistice Day", + "2011-01-01": "New Year's Day", + "2011-01-02": "New Year's Day", + "2011-01-03": "New Year's Day (Observed)", + "2011-01-07": "Orthodox Christmas Day", + "2011-02-15": "Statehood Day", + "2011-02-16": "Statehood Day", + "2011-04-22": "Good Friday", + "2011-04-23": "Easter Saturday", + "2011-04-24": "Easter Sunday", + "2011-04-25": "Easter Monday", + "2011-05-01": "International Workers' Day", + "2011-05-02": "International Workers' Day", + "2011-05-03": "International Workers' Day (Observed)", + "2011-11-11": "Armistice Day", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day", + "2012-01-03": "New Year's Day (Observed)", + "2012-01-07": "Orthodox Christmas Day", + "2012-02-15": "Statehood Day", + "2012-02-16": "Statehood Day", + "2012-04-13": "Good Friday", + "2012-04-14": "Easter Saturday", + "2012-04-15": "Easter Sunday", + "2012-04-16": "Easter Monday", + "2012-05-01": "International Workers' Day", + "2012-05-02": "International Workers' Day", + "2012-11-11": "Armistice Day", + "2012-11-12": "Armistice Day (Observed)", + "2013-01-01": "New Year's Day", + "2013-01-02": "New Year's Day", + "2013-01-07": "Orthodox Christmas Day", + "2013-02-15": "Statehood Day", + "2013-02-16": "Statehood Day", + "2013-05-01": "International Workers' Day", + "2013-05-02": "International Workers' Day", + "2013-05-03": "Good Friday", + "2013-05-04": "Easter Saturday", + "2013-05-05": "Easter Sunday", + "2013-05-06": "Easter Monday", + "2013-11-11": "Armistice Day", + "2014-01-01": "New Year's Day", + "2014-01-02": "New Year's Day", + "2014-01-07": "Orthodox Christmas Day", + "2014-02-15": "Statehood Day", + "2014-02-16": "Statehood Day", + "2014-02-17": "Statehood Day (Observed)", + "2014-04-18": "Good Friday", + "2014-04-19": "Easter Saturday", + "2014-04-20": "Easter Sunday", + "2014-04-21": "Easter Monday", + "2014-05-01": "International Workers' Day", + "2014-05-02": "International Workers' Day", + "2014-11-11": "Armistice Day", + "2015-01-01": "New Year's Day", + "2015-01-02": "New Year's Day", + "2015-01-07": "Orthodox Christmas Day", + "2015-02-15": "Statehood Day", + "2015-02-16": "Statehood Day", + "2015-02-17": "Statehood Day (Observed)", + "2015-04-10": "Good Friday", + "2015-04-11": "Easter Saturday", + "2015-04-12": "Easter Sunday", + "2015-04-13": "Easter Monday", + "2015-05-01": "International Workers' Day", + "2015-05-02": "International Workers' Day", + "2015-11-11": "Armistice Day", + "2016-01-01": "New Year's Day", + "2016-01-02": "New Year's Day", + "2016-01-07": "Orthodox Christmas Day", + "2016-02-15": "Statehood Day", + "2016-02-16": "Statehood Day", + "2016-04-29": "Good Friday", + "2016-04-30": "Easter Saturday", + "2016-05-01": "Easter Sunday; International Workers' Day", + "2016-05-02": "Easter Monday; International Workers' Day", + "2016-05-03": "International Workers' Day (Observed)", + "2016-11-11": "Armistice Day", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day", + "2017-01-03": "New Year's Day (Observed)", + "2017-01-07": "Orthodox Christmas Day", + "2017-02-15": "Statehood Day", + "2017-02-16": "Statehood Day", + "2017-04-14": "Good Friday", + "2017-04-15": "Easter Saturday", + "2017-04-16": "Easter Sunday", + "2017-04-17": "Easter Monday", + "2017-05-01": "International Workers' Day", + "2017-05-02": "International Workers' Day", + "2017-11-11": "Armistice Day", + "2018-01-01": "New Year's Day", + "2018-01-02": "New Year's Day", + "2018-01-07": "Orthodox Christmas Day", + "2018-02-15": "Statehood Day", + "2018-02-16": "Statehood Day", + "2018-04-06": "Good Friday", + "2018-04-07": "Easter Saturday", + "2018-04-08": "Easter Sunday", + "2018-04-09": "Easter Monday", + "2018-05-01": "International Workers' Day", + "2018-05-02": "International Workers' Day", + "2018-11-11": "Armistice Day", + "2018-11-12": "Armistice Day (Observed)", + "2019-01-01": "New Year's Day", + "2019-01-02": "New Year's Day", + "2019-01-07": "Orthodox Christmas Day", + "2019-02-15": "Statehood Day", + "2019-02-16": "Statehood Day", + "2019-04-26": "Good Friday", + "2019-04-27": "Easter Saturday", + "2019-04-28": "Easter Sunday", + "2019-04-29": "Easter Monday", + "2019-05-01": "International Workers' Day", + "2019-05-02": "International Workers' Day", + "2019-11-11": "Armistice Day", + "2020-01-01": "New Year's Day", + "2020-01-02": "New Year's Day", + "2020-01-07": "Orthodox Christmas Day", + "2020-02-15": "Statehood Day", + "2020-02-16": "Statehood Day", + "2020-02-17": "Statehood Day (Observed)", + "2020-04-17": "Good Friday", + "2020-04-18": "Easter Saturday", + "2020-04-19": "Easter Sunday", + "2020-04-20": "Easter Monday", + "2020-05-01": "International Workers' Day", + "2020-05-02": "International Workers' Day", + "2020-11-11": "Armistice Day", + "2021-01-01": "New Year's Day", + "2021-01-02": "New Year's Day", + "2021-01-07": "Orthodox Christmas Day", + "2021-02-15": "Statehood Day", + "2021-02-16": "Statehood Day", + "2021-04-30": "Good Friday", + "2021-05-01": "Easter Saturday; International Workers' Day", + "2021-05-02": "Easter Sunday; International Workers' Day", + "2021-05-03": "Easter Monday", + "2021-05-04": "International Workers' Day (Observed)", + "2021-11-11": "Armistice Day", + "2022-01-01": "New Year's Day", + "2022-01-02": "New Year's Day", + "2022-01-03": "New Year's Day (Observed)", + "2022-01-07": "Orthodox Christmas Day", + "2022-02-15": "Statehood Day", + "2022-02-16": "Statehood Day", + "2022-04-22": "Good Friday", + "2022-04-23": "Easter Saturday", + "2022-04-24": "Easter Sunday", + "2022-04-25": "Easter Monday", + "2022-05-01": "International Workers' Day", + "2022-05-02": "International Workers' Day", + "2022-05-03": "International Workers' Day (Observed)", + "2022-11-11": "Armistice Day", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day", + "2023-01-03": "New Year's Day (Observed)", + "2023-01-07": "Orthodox Christmas Day", + "2023-02-15": "Statehood Day", + "2023-02-16": "Statehood Day", + "2023-04-14": "Good Friday", + "2023-04-15": "Easter Saturday", + "2023-04-16": "Easter Sunday", + "2023-04-17": "Easter Monday", + "2023-05-01": "International Workers' Day", + "2023-05-02": "International Workers' Day", + "2023-11-11": "Armistice Day", + "2024-01-01": "New Year's Day", + "2024-01-02": "New Year's Day", + "2024-01-07": "Orthodox Christmas Day", + "2024-02-15": "Statehood Day", + "2024-02-16": "Statehood Day", + "2024-05-01": "International Workers' Day", + "2024-05-02": "International Workers' Day", + "2024-05-03": "Good Friday", + "2024-05-04": "Easter Saturday", + "2024-05-05": "Easter Sunday", + "2024-05-06": "Easter Monday", + "2024-11-11": "Armistice Day", + "2025-01-01": "New Year's Day", + "2025-01-02": "New Year's Day", + "2025-01-07": "Orthodox Christmas Day", + "2025-02-15": "Statehood Day", + "2025-02-16": "Statehood Day", + "2025-02-17": "Statehood Day (Observed)", + "2025-04-18": "Good Friday", + "2025-04-19": "Easter Saturday", + "2025-04-20": "Easter Sunday", + "2025-04-21": "Easter Monday", + "2025-05-01": "International Workers' Day", + "2025-05-02": "International Workers' Day", + "2025-11-11": "Armistice Day", + "2026-01-01": "New Year's Day", + "2026-01-02": "New Year's Day", + "2026-01-07": "Orthodox Christmas Day", + "2026-02-15": "Statehood Day", + "2026-02-16": "Statehood Day", + "2026-02-17": "Statehood Day (Observed)", + "2026-04-10": "Good Friday", + "2026-04-11": "Easter Saturday", + "2026-04-12": "Easter Sunday", + "2026-04-13": "Easter Monday", + "2026-05-01": "International Workers' Day", + "2026-05-02": "International Workers' Day", + "2026-11-11": "Armistice Day", + "2027-01-01": "New Year's Day", + "2027-01-02": "New Year's Day", + "2027-01-07": "Orthodox Christmas Day", + "2027-02-15": "Statehood Day", + "2027-02-16": "Statehood Day", + "2027-04-30": "Good Friday", + "2027-05-01": "Easter Saturday; International Workers' Day", + "2027-05-02": "Easter Sunday; International Workers' Day", + "2027-05-03": "Easter Monday", + "2027-05-04": "International Workers' Day (Observed)", + "2027-11-11": "Armistice Day", + "2028-01-01": "New Year's Day", + "2028-01-02": "New Year's Day", + "2028-01-03": "New Year's Day (Observed)", + "2028-01-07": "Orthodox Christmas Day", + "2028-02-15": "Statehood Day", + "2028-02-16": "Statehood Day", + "2028-04-14": "Good Friday", + "2028-04-15": "Easter Saturday", + "2028-04-16": "Easter Sunday", + "2028-04-17": "Easter Monday", + "2028-05-01": "International Workers' Day", + "2028-05-02": "International Workers' Day", + "2028-11-11": "Armistice Day", + "2029-01-01": "New Year's Day", + "2029-01-02": "New Year's Day", + "2029-01-07": "Orthodox Christmas Day", + "2029-02-15": "Statehood Day", + "2029-02-16": "Statehood Day", + "2029-04-06": "Good Friday", + "2029-04-07": "Easter Saturday", + "2029-04-08": "Easter Sunday", + "2029-04-09": "Easter Monday", + "2029-05-01": "International Workers' Day", + "2029-05-02": "International Workers' Day", + "2029-11-11": "Armistice Day", + "2029-11-12": "Armistice Day (Observed)", + "2030-01-01": "New Year's Day", + "2030-01-02": "New Year's Day", + "2030-01-07": "Orthodox Christmas Day", + "2030-02-15": "Statehood Day", + "2030-02-16": "Statehood Day", + "2030-04-26": "Good Friday", + "2030-04-27": "Easter Saturday", + "2030-04-28": "Easter Sunday", + "2030-04-29": "Easter Monday", + "2030-05-01": "International Workers' Day", + "2030-05-02": "International Workers' Day", + "2030-11-11": "Armistice Day", + "2031-01-01": "New Year's Day", + "2031-01-02": "New Year's Day", + "2031-01-07": "Orthodox Christmas Day", + "2031-02-15": "Statehood Day", + "2031-02-16": "Statehood Day", + "2031-02-17": "Statehood Day (Observed)", + "2031-04-11": "Good Friday", + "2031-04-12": "Easter Saturday", + "2031-04-13": "Easter Sunday", + "2031-04-14": "Easter Monday", + "2031-05-01": "International Workers' Day", + "2031-05-02": "International Workers' Day", + "2031-11-11": "Armistice Day", + "2032-01-01": "New Year's Day", + "2032-01-02": "New Year's Day", + "2032-01-07": "Orthodox Christmas Day", + "2032-02-15": "Statehood Day", + "2032-02-16": "Statehood Day", + "2032-02-17": "Statehood Day (Observed)", + "2032-04-30": "Good Friday", + "2032-05-01": "Easter Saturday; International Workers' Day", + "2032-05-02": "Easter Sunday; International Workers' Day", + "2032-05-03": "Easter Monday", + "2032-05-04": "International Workers' Day (Observed)", + "2032-11-11": "Armistice Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "New Year's Day", + "2033-01-03": "New Year's Day (Observed)", + "2033-01-07": "Orthodox Christmas Day", + "2033-02-15": "Statehood Day", + "2033-02-16": "Statehood Day", + "2033-04-22": "Good Friday", + "2033-04-23": "Easter Saturday", + "2033-04-24": "Easter Sunday", + "2033-04-25": "Easter Monday", + "2033-05-01": "International Workers' Day", + "2033-05-02": "International Workers' Day", + "2033-05-03": "International Workers' Day (Observed)", + "2033-11-11": "Armistice Day", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day", + "2034-01-03": "New Year's Day (Observed)", + "2034-01-07": "Orthodox Christmas Day", + "2034-02-15": "Statehood Day", + "2034-02-16": "Statehood Day", + "2034-04-07": "Good Friday", + "2034-04-08": "Easter Saturday", + "2034-04-09": "Easter Sunday", + "2034-04-10": "Easter Monday", + "2034-05-01": "International Workers' Day", + "2034-05-02": "International Workers' Day", + "2034-11-11": "Armistice Day", + "2035-01-01": "New Year's Day", + "2035-01-02": "New Year's Day", + "2035-01-07": "Orthodox Christmas Day", + "2035-02-15": "Statehood Day", + "2035-02-16": "Statehood Day", + "2035-04-27": "Good Friday", + "2035-04-28": "Easter Saturday", + "2035-04-29": "Easter Sunday", + "2035-04-30": "Easter Monday", + "2035-05-01": "International Workers' Day", + "2035-05-02": "International Workers' Day", + "2035-11-11": "Armistice Day", + "2035-11-12": "Armistice Day (Observed)", + "2036-01-01": "New Year's Day", + "2036-01-02": "New Year's Day", + "2036-01-07": "Orthodox Christmas Day", + "2036-02-15": "Statehood Day", + "2036-02-16": "Statehood Day", + "2036-04-18": "Good Friday", + "2036-04-19": "Easter Saturday", + "2036-04-20": "Easter Sunday", + "2036-04-21": "Easter Monday", + "2036-05-01": "International Workers' Day", + "2036-05-02": "International Workers' Day", + "2036-11-11": "Armistice Day", + "2037-01-01": "New Year's Day", + "2037-01-02": "New Year's Day", + "2037-01-07": "Orthodox Christmas Day", + "2037-02-15": "Statehood Day", + "2037-02-16": "Statehood Day", + "2037-02-17": "Statehood Day (Observed)", + "2037-04-03": "Good Friday", + "2037-04-04": "Easter Saturday", + "2037-04-05": "Easter Sunday", + "2037-04-06": "Easter Monday", + "2037-05-01": "International Workers' Day", + "2037-05-02": "International Workers' Day", + "2037-11-11": "Armistice Day", + "2038-01-01": "New Year's Day", + "2038-01-02": "New Year's Day", + "2038-01-07": "Orthodox Christmas Day", + "2038-02-15": "Statehood Day", + "2038-02-16": "Statehood Day", + "2038-04-23": "Good Friday", + "2038-04-24": "Easter Saturday", + "2038-04-25": "Easter Sunday", + "2038-04-26": "Easter Monday", + "2038-05-01": "International Workers' Day", + "2038-05-02": "International Workers' Day", + "2038-05-03": "International Workers' Day (Observed)", + "2038-11-11": "Armistice Day", + "2039-01-01": "New Year's Day", + "2039-01-02": "New Year's Day", + "2039-01-03": "New Year's Day (Observed)", + "2039-01-07": "Orthodox Christmas Day", + "2039-02-15": "Statehood Day", + "2039-02-16": "Statehood Day", + "2039-04-15": "Good Friday", + "2039-04-16": "Easter Saturday", + "2039-04-17": "Easter Sunday", + "2039-04-18": "Easter Monday", + "2039-05-01": "International Workers' Day", + "2039-05-02": "International Workers' Day", + "2039-05-03": "International Workers' Day (Observed)", + "2039-11-11": "Armistice Day", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day", + "2040-01-03": "New Year's Day (Observed)", + "2040-01-07": "Orthodox Christmas Day", + "2040-02-15": "Statehood Day", + "2040-02-16": "Statehood Day", + "2040-05-01": "International Workers' Day", + "2040-05-02": "International Workers' Day", + "2040-05-04": "Good Friday", + "2040-05-05": "Easter Saturday", + "2040-05-06": "Easter Sunday", + "2040-05-07": "Easter Monday", + "2040-11-11": "Armistice Day", + "2040-11-12": "Armistice Day (Observed)", + "2041-01-01": "New Year's Day", + "2041-01-02": "New Year's Day", + "2041-01-07": "Orthodox Christmas Day", + "2041-02-15": "Statehood Day", + "2041-02-16": "Statehood Day", + "2041-04-19": "Good Friday", + "2041-04-20": "Easter Saturday", + "2041-04-21": "Easter Sunday", + "2041-04-22": "Easter Monday", + "2041-05-01": "International Workers' Day", + "2041-05-02": "International Workers' Day", + "2041-11-11": "Armistice Day", + "2042-01-01": "New Year's Day", + "2042-01-02": "New Year's Day", + "2042-01-07": "Orthodox Christmas Day", + "2042-02-15": "Statehood Day", + "2042-02-16": "Statehood Day", + "2042-02-17": "Statehood Day (Observed)", + "2042-04-11": "Good Friday", + "2042-04-12": "Easter Saturday", + "2042-04-13": "Easter Sunday", + "2042-04-14": "Easter Monday", + "2042-05-01": "International Workers' Day", + "2042-05-02": "International Workers' Day", + "2042-11-11": "Armistice Day", + "2043-01-01": "New Year's Day", + "2043-01-02": "New Year's Day", + "2043-01-07": "Orthodox Christmas Day", + "2043-02-15": "Statehood Day", + "2043-02-16": "Statehood Day", + "2043-02-17": "Statehood Day (Observed)", + "2043-05-01": "Good Friday; International Workers' Day", + "2043-05-02": "Easter Saturday; International Workers' Day", + "2043-05-03": "Easter Sunday", + "2043-05-04": "Easter Monday", + "2043-11-11": "Armistice Day", + "2044-01-01": "New Year's Day", + "2044-01-02": "New Year's Day", + "2044-01-07": "Orthodox Christmas Day", + "2044-02-15": "Statehood Day", + "2044-02-16": "Statehood Day", + "2044-04-22": "Good Friday", + "2044-04-23": "Easter Saturday", + "2044-04-24": "Easter Sunday", + "2044-04-25": "Easter Monday", + "2044-05-01": "International Workers' Day", + "2044-05-02": "International Workers' Day", + "2044-05-03": "International Workers' Day (Observed)", + "2044-11-11": "Armistice Day", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day", + "2045-01-03": "New Year's Day (Observed)", + "2045-01-07": "Orthodox Christmas Day", + "2045-02-15": "Statehood Day", + "2045-02-16": "Statehood Day", + "2045-04-07": "Good Friday", + "2045-04-08": "Easter Saturday", + "2045-04-09": "Easter Sunday", + "2045-04-10": "Easter Monday", + "2045-05-01": "International Workers' Day", + "2045-05-02": "International Workers' Day", + "2045-11-11": "Armistice Day", + "2046-01-01": "New Year's Day", + "2046-01-02": "New Year's Day", + "2046-01-07": "Orthodox Christmas Day", + "2046-02-15": "Statehood Day", + "2046-02-16": "Statehood Day", + "2046-04-27": "Good Friday", + "2046-04-28": "Easter Saturday", + "2046-04-29": "Easter Sunday", + "2046-04-30": "Easter Monday", + "2046-05-01": "International Workers' Day", + "2046-05-02": "International Workers' Day", + "2046-11-11": "Armistice Day", + "2046-11-12": "Armistice Day (Observed)", + "2047-01-01": "New Year's Day", + "2047-01-02": "New Year's Day", + "2047-01-07": "Orthodox Christmas Day", + "2047-02-15": "Statehood Day", + "2047-02-16": "Statehood Day", + "2047-04-19": "Good Friday", + "2047-04-20": "Easter Saturday", + "2047-04-21": "Easter Sunday", + "2047-04-22": "Easter Monday", + "2047-05-01": "International Workers' Day", + "2047-05-02": "International Workers' Day", + "2047-11-11": "Armistice Day", + "2048-01-01": "New Year's Day", + "2048-01-02": "New Year's Day", + "2048-01-07": "Orthodox Christmas Day", + "2048-02-15": "Statehood Day", + "2048-02-16": "Statehood Day", + "2048-02-17": "Statehood Day (Observed)", + "2048-04-03": "Good Friday", + "2048-04-04": "Easter Saturday", + "2048-04-05": "Easter Sunday", + "2048-04-06": "Easter Monday", + "2048-05-01": "International Workers' Day", + "2048-05-02": "International Workers' Day", + "2048-11-11": "Armistice Day", + "2049-01-01": "New Year's Day", + "2049-01-02": "New Year's Day", + "2049-01-07": "Orthodox Christmas Day", + "2049-02-15": "Statehood Day", + "2049-02-16": "Statehood Day", + "2049-04-23": "Good Friday", + "2049-04-24": "Easter Saturday", + "2049-04-25": "Easter Sunday", + "2049-04-26": "Easter Monday", + "2049-05-01": "International Workers' Day", + "2049-05-02": "International Workers' Day", + "2049-05-03": "International Workers' Day (Observed)", + "2049-11-11": "Armistice Day", + "2050-01-01": "New Year's Day", + "2050-01-02": "New Year's Day", + "2050-01-03": "New Year's Day (Observed)", + "2050-01-07": "Orthodox Christmas Day", + "2050-02-15": "Statehood Day", + "2050-02-16": "Statehood Day", + "2050-04-15": "Good Friday", + "2050-04-16": "Easter Saturday", + "2050-04-17": "Easter Sunday", + "2050-04-18": "Easter Monday", + "2050-05-01": "International Workers' Day", + "2050-05-02": "International Workers' Day", + "2050-05-03": "International Workers' Day (Observed)", + "2050-11-11": "Armistice Day" +} diff --git a/snapshots/countries/RU.json b/snapshots/countries/RU.json new file mode 100644 index 000000000..e59e52ea3 --- /dev/null +++ b/snapshots/countries/RU.json @@ -0,0 +1,759 @@ +{ + "1991-01-01": "New Year's Day", + "1991-01-07": "Christmas Day", + "1991-03-08": "International Women's Day", + "1991-05-01": "International Workers' Solidarity Day", + "1991-05-02": "International Workers' Solidarity Day", + "1991-05-09": "Victory Day", + "1991-11-07": "Anniversary of the Great October Socialist Revolution", + "1991-11-08": "Anniversary of the Great October Socialist Revolution", + "1992-01-01": "New Year's Day", + "1992-01-07": "Christmas Day", + "1992-03-08": "International Women's Day", + "1992-05-01": "Holiday of Spring and Labor", + "1992-05-02": "Holiday of Spring and Labor", + "1992-05-09": "Victory Day", + "1992-06-12": "Day of the Adoption of the Declaration of Sovereignty of the Russian Federation", + "1992-11-07": "Anniversary of the Great October Socialist Revolution", + "1993-01-01": "New Year's Day", + "1993-01-02": "New Year's Day", + "1993-01-07": "Christmas Day", + "1993-03-08": "International Women's Day", + "1993-05-01": "Holiday of Spring and Labor", + "1993-05-02": "Holiday of Spring and Labor", + "1993-05-09": "Victory Day", + "1993-06-12": "Day of the Adoption of the Declaration of Sovereignty of the Russian Federation", + "1993-11-07": "Anniversary of the Great October Socialist Revolution", + "1994-01-01": "New Year's Day", + "1994-01-02": "New Year's Day", + "1994-01-07": "Christmas Day", + "1994-03-08": "International Women's Day", + "1994-05-01": "Holiday of Spring and Labor", + "1994-05-02": "Holiday of Spring and Labor", + "1994-05-09": "Victory Day", + "1994-06-12": "Day of the Adoption of the Declaration of Sovereignty of the Russian Federation", + "1994-11-07": "Anniversary of the Great October Socialist Revolution", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day", + "1995-01-07": "Christmas Day", + "1995-03-08": "International Women's Day", + "1995-05-01": "Holiday of Spring and Labor", + "1995-05-02": "Holiday of Spring and Labor", + "1995-05-09": "Victory Day", + "1995-06-12": "Day of the Adoption of the Declaration of Sovereignty of the Russian Federation", + "1995-11-07": "Anniversary of the Great October Socialist Revolution", + "1996-01-01": "New Year's Day", + "1996-01-02": "New Year's Day", + "1996-01-07": "Christmas Day", + "1996-03-08": "International Women's Day", + "1996-05-01": "Holiday of Spring and Labor", + "1996-05-02": "Holiday of Spring and Labor", + "1996-05-09": "Victory Day", + "1996-06-12": "Day of the Adoption of the Declaration of Sovereignty of the Russian Federation", + "1996-11-07": "Day of consent and reconciliation", + "1997-01-01": "New Year's Day", + "1997-01-02": "New Year's Day", + "1997-01-07": "Christmas Day", + "1997-03-08": "International Women's Day", + "1997-05-01": "Holiday of Spring and Labor", + "1997-05-02": "Holiday of Spring and Labor", + "1997-05-09": "Victory Day", + "1997-06-12": "Day of the Adoption of the Declaration of Sovereignty of the Russian Federation", + "1997-11-07": "Day of consent and reconciliation", + "1998-01-01": "New Year's Day", + "1998-01-02": "New Year's Day", + "1998-01-07": "Christmas Day", + "1998-03-08": "International Women's Day", + "1998-05-01": "Holiday of Spring and Labor", + "1998-05-02": "Holiday of Spring and Labor", + "1998-05-09": "Victory Day", + "1998-06-12": "Day of the Adoption of the Declaration of Sovereignty of the Russian Federation", + "1998-11-07": "Day of consent and reconciliation", + "1999-01-01": "New Year's Day", + "1999-01-02": "New Year's Day", + "1999-01-07": "Christmas Day", + "1999-03-08": "International Women's Day", + "1999-05-01": "Holiday of Spring and Labor", + "1999-05-02": "Holiday of Spring and Labor", + "1999-05-09": "Victory Day", + "1999-06-12": "Day of the Adoption of the Declaration of Sovereignty of the Russian Federation", + "1999-11-07": "Day of consent and reconciliation", + "2000-01-01": "New Year's Day", + "2000-01-02": "New Year's Day", + "2000-01-07": "Christmas Day", + "2000-03-08": "International Women's Day", + "2000-05-01": "Holiday of Spring and Labor", + "2000-05-02": "Holiday of Spring and Labor", + "2000-05-09": "Victory Day", + "2000-06-12": "Day of the Adoption of the Declaration of Sovereignty of the Russian Federation", + "2000-11-07": "Day of consent and reconciliation", + "2001-01-01": "New Year's Day", + "2001-01-02": "New Year's Day", + "2001-01-07": "Christmas Day", + "2001-03-08": "International Women's Day", + "2001-05-01": "Holiday of Spring and Labor", + "2001-05-02": "Holiday of Spring and Labor", + "2001-05-09": "Victory Day", + "2001-06-12": "Day of the Adoption of the Declaration of Sovereignty of the Russian Federation", + "2001-11-07": "Day of consent and reconciliation", + "2002-01-01": "New Year's Day", + "2002-01-02": "New Year's Day", + "2002-01-07": "Christmas Day", + "2002-02-23": "Fatherland Defender's Day", + "2002-03-08": "International Women's Day", + "2002-05-01": "Holiday of Spring and Labor", + "2002-05-02": "Holiday of Spring and Labor", + "2002-05-09": "Victory Day", + "2002-06-12": "Russia Day", + "2002-11-07": "Day of consent and reconciliation", + "2003-01-01": "New Year's Day", + "2003-01-02": "New Year's Day", + "2003-01-07": "Christmas Day", + "2003-02-23": "Fatherland Defender's Day", + "2003-03-08": "International Women's Day", + "2003-05-01": "Holiday of Spring and Labor", + "2003-05-02": "Holiday of Spring and Labor", + "2003-05-09": "Victory Day", + "2003-06-12": "Russia Day", + "2003-11-07": "Day of consent and reconciliation", + "2004-01-01": "New Year's Day", + "2004-01-02": "New Year's Day", + "2004-01-07": "Christmas Day", + "2004-02-23": "Fatherland Defender's Day", + "2004-03-08": "International Women's Day", + "2004-05-01": "Holiday of Spring and Labor", + "2004-05-02": "Holiday of Spring and Labor", + "2004-05-09": "Victory Day", + "2004-06-12": "Russia Day", + "2004-11-07": "Day of consent and reconciliation", + "2005-01-01": "New Year Holidays", + "2005-01-02": "New Year Holidays", + "2005-01-03": "New Year Holidays", + "2005-01-04": "New Year Holidays", + "2005-01-05": "New Year Holidays", + "2005-01-07": "Christmas Day", + "2005-02-23": "Fatherland Defender's Day", + "2005-03-08": "International Women's Day", + "2005-05-01": "Holiday of Spring and Labor", + "2005-05-09": "Victory Day", + "2005-06-12": "Russia Day", + "2005-11-04": "Unity Day", + "2006-01-01": "New Year Holidays", + "2006-01-02": "New Year Holidays", + "2006-01-03": "New Year Holidays", + "2006-01-04": "New Year Holidays", + "2006-01-05": "New Year Holidays", + "2006-01-07": "Christmas Day", + "2006-02-23": "Fatherland Defender's Day", + "2006-03-08": "International Women's Day", + "2006-05-01": "Holiday of Spring and Labor", + "2006-05-09": "Victory Day", + "2006-06-12": "Russia Day", + "2006-11-04": "Unity Day", + "2007-01-01": "New Year Holidays", + "2007-01-02": "New Year Holidays", + "2007-01-03": "New Year Holidays", + "2007-01-04": "New Year Holidays", + "2007-01-05": "New Year Holidays", + "2007-01-07": "Christmas Day", + "2007-02-23": "Fatherland Defender's Day", + "2007-03-08": "International Women's Day", + "2007-05-01": "Holiday of Spring and Labor", + "2007-05-09": "Victory Day", + "2007-06-12": "Russia Day", + "2007-11-04": "Unity Day", + "2008-01-01": "New Year Holidays", + "2008-01-02": "New Year Holidays", + "2008-01-03": "New Year Holidays", + "2008-01-04": "New Year Holidays", + "2008-01-05": "New Year Holidays", + "2008-01-07": "Christmas Day", + "2008-02-23": "Fatherland Defender's Day", + "2008-03-08": "International Women's Day", + "2008-05-01": "Holiday of Spring and Labor", + "2008-05-09": "Victory Day", + "2008-06-12": "Russia Day", + "2008-11-04": "Unity Day", + "2009-01-01": "New Year Holidays", + "2009-01-02": "New Year Holidays", + "2009-01-03": "New Year Holidays", + "2009-01-04": "New Year Holidays", + "2009-01-05": "New Year Holidays", + "2009-01-07": "Christmas Day", + "2009-02-23": "Fatherland Defender's Day", + "2009-03-08": "International Women's Day", + "2009-05-01": "Holiday of Spring and Labor", + "2009-05-09": "Victory Day", + "2009-06-12": "Russia Day", + "2009-11-04": "Unity Day", + "2010-01-01": "New Year Holidays", + "2010-01-02": "New Year Holidays", + "2010-01-03": "New Year Holidays", + "2010-01-04": "New Year Holidays", + "2010-01-05": "New Year Holidays", + "2010-01-07": "Christmas Day", + "2010-02-23": "Fatherland Defender's Day", + "2010-03-08": "International Women's Day", + "2010-05-01": "Holiday of Spring and Labor", + "2010-05-09": "Victory Day", + "2010-06-12": "Russia Day", + "2010-11-04": "Unity Day", + "2011-01-01": "New Year Holidays", + "2011-01-02": "New Year Holidays", + "2011-01-03": "New Year Holidays", + "2011-01-04": "New Year Holidays", + "2011-01-05": "New Year Holidays", + "2011-01-07": "Christmas Day", + "2011-02-23": "Fatherland Defender's Day", + "2011-03-08": "International Women's Day", + "2011-05-01": "Holiday of Spring and Labor", + "2011-05-09": "Victory Day", + "2011-06-12": "Russia Day", + "2011-11-04": "Unity Day", + "2012-01-01": "New Year Holidays", + "2012-01-02": "New Year Holidays", + "2012-01-03": "New Year Holidays", + "2012-01-04": "New Year Holidays", + "2012-01-05": "New Year Holidays", + "2012-01-07": "Christmas Day", + "2012-02-23": "Fatherland Defender's Day", + "2012-03-08": "International Women's Day", + "2012-05-01": "Holiday of Spring and Labor", + "2012-05-09": "Victory Day", + "2012-06-12": "Russia Day", + "2012-11-04": "Unity Day", + "2013-01-01": "New Year Holidays", + "2013-01-02": "New Year Holidays", + "2013-01-03": "New Year Holidays", + "2013-01-04": "New Year Holidays", + "2013-01-05": "New Year Holidays", + "2013-01-06": "New Year Holidays", + "2013-01-07": "Christmas Day", + "2013-01-08": "New Year Holidays", + "2013-02-23": "Fatherland Defender's Day", + "2013-03-08": "International Women's Day", + "2013-05-01": "Holiday of Spring and Labor", + "2013-05-09": "Victory Day", + "2013-06-12": "Russia Day", + "2013-11-04": "Unity Day", + "2014-01-01": "New Year Holidays", + "2014-01-02": "New Year Holidays", + "2014-01-03": "New Year Holidays", + "2014-01-04": "New Year Holidays", + "2014-01-05": "New Year Holidays", + "2014-01-06": "New Year Holidays", + "2014-01-07": "Christmas Day", + "2014-01-08": "New Year Holidays", + "2014-02-23": "Fatherland Defender's Day", + "2014-03-08": "International Women's Day", + "2014-05-01": "Holiday of Spring and Labor", + "2014-05-09": "Victory Day", + "2014-06-12": "Russia Day", + "2014-11-04": "Unity Day", + "2015-01-01": "New Year Holidays", + "2015-01-02": "New Year Holidays", + "2015-01-03": "New Year Holidays", + "2015-01-04": "New Year Holidays", + "2015-01-05": "New Year Holidays", + "2015-01-06": "New Year Holidays", + "2015-01-07": "Christmas Day", + "2015-01-08": "New Year Holidays", + "2015-02-23": "Fatherland Defender's Day", + "2015-03-08": "International Women's Day", + "2015-05-01": "Holiday of Spring and Labor", + "2015-05-09": "Victory Day", + "2015-06-12": "Russia Day", + "2015-11-04": "Unity Day", + "2016-01-01": "New Year Holidays", + "2016-01-02": "New Year Holidays", + "2016-01-03": "New Year Holidays", + "2016-01-04": "New Year Holidays", + "2016-01-05": "New Year Holidays", + "2016-01-06": "New Year Holidays", + "2016-01-07": "Christmas Day", + "2016-01-08": "New Year Holidays", + "2016-02-23": "Fatherland Defender's Day", + "2016-03-08": "International Women's Day", + "2016-05-01": "Holiday of Spring and Labor", + "2016-05-09": "Victory Day", + "2016-06-12": "Russia Day", + "2016-11-04": "Unity Day", + "2017-01-01": "New Year Holidays", + "2017-01-02": "New Year Holidays", + "2017-01-03": "New Year Holidays", + "2017-01-04": "New Year Holidays", + "2017-01-05": "New Year Holidays", + "2017-01-06": "New Year Holidays", + "2017-01-07": "Christmas Day", + "2017-01-08": "New Year Holidays", + "2017-02-23": "Fatherland Defender's Day", + "2017-03-08": "International Women's Day", + "2017-05-01": "Holiday of Spring and Labor", + "2017-05-09": "Victory Day", + "2017-06-12": "Russia Day", + "2017-11-04": "Unity Day", + "2018-01-01": "New Year Holidays", + "2018-01-02": "New Year Holidays", + "2018-01-03": "New Year Holidays", + "2018-01-04": "New Year Holidays", + "2018-01-05": "New Year Holidays", + "2018-01-06": "New Year Holidays", + "2018-01-07": "Christmas Day", + "2018-01-08": "New Year Holidays", + "2018-02-23": "Fatherland Defender's Day", + "2018-03-08": "International Women's Day", + "2018-05-01": "Holiday of Spring and Labor", + "2018-05-09": "Victory Day", + "2018-06-12": "Russia Day", + "2018-11-04": "Unity Day", + "2019-01-01": "New Year Holidays", + "2019-01-02": "New Year Holidays", + "2019-01-03": "New Year Holidays", + "2019-01-04": "New Year Holidays", + "2019-01-05": "New Year Holidays", + "2019-01-06": "New Year Holidays", + "2019-01-07": "Christmas Day", + "2019-01-08": "New Year Holidays", + "2019-02-23": "Fatherland Defender's Day", + "2019-03-08": "International Women's Day", + "2019-05-01": "Holiday of Spring and Labor", + "2019-05-09": "Victory Day", + "2019-06-12": "Russia Day", + "2019-11-04": "Unity Day", + "2020-01-01": "New Year Holidays", + "2020-01-02": "New Year Holidays", + "2020-01-03": "New Year Holidays", + "2020-01-04": "New Year Holidays", + "2020-01-05": "New Year Holidays", + "2020-01-06": "New Year Holidays", + "2020-01-07": "Christmas Day", + "2020-01-08": "New Year Holidays", + "2020-02-23": "Fatherland Defender's Day", + "2020-03-08": "International Women's Day", + "2020-05-01": "Holiday of Spring and Labor", + "2020-05-09": "Victory Day", + "2020-06-12": "Russia Day", + "2020-11-04": "Unity Day", + "2021-01-01": "New Year Holidays", + "2021-01-02": "New Year Holidays", + "2021-01-03": "New Year Holidays", + "2021-01-04": "New Year Holidays", + "2021-01-05": "New Year Holidays", + "2021-01-06": "New Year Holidays", + "2021-01-07": "Christmas Day", + "2021-01-08": "New Year Holidays", + "2021-02-23": "Fatherland Defender's Day", + "2021-03-08": "International Women's Day", + "2021-05-01": "Holiday of Spring and Labor", + "2021-05-09": "Victory Day", + "2021-06-12": "Russia Day", + "2021-11-04": "Unity Day", + "2022-01-01": "New Year Holidays", + "2022-01-02": "New Year Holidays", + "2022-01-03": "New Year Holidays", + "2022-01-04": "New Year Holidays", + "2022-01-05": "New Year Holidays", + "2022-01-06": "New Year Holidays", + "2022-01-07": "Christmas Day", + "2022-01-08": "New Year Holidays", + "2022-02-23": "Fatherland Defender's Day", + "2022-03-08": "International Women's Day", + "2022-05-01": "Holiday of Spring and Labor", + "2022-05-09": "Victory Day", + "2022-06-12": "Russia Day", + "2022-11-04": "Unity Day", + "2023-01-01": "New Year Holidays", + "2023-01-02": "New Year Holidays", + "2023-01-03": "New Year Holidays", + "2023-01-04": "New Year Holidays", + "2023-01-05": "New Year Holidays", + "2023-01-06": "New Year Holidays", + "2023-01-07": "Christmas Day", + "2023-01-08": "New Year Holidays", + "2023-02-23": "Fatherland Defender's Day", + "2023-02-24": "Fatherland Defender's Day", + "2023-03-08": "International Women's Day", + "2023-05-01": "Holiday of Spring and Labor", + "2023-05-08": "Victory Day", + "2023-05-09": "Victory Day", + "2023-06-12": "Russia Day", + "2023-11-04": "Unity Day", + "2024-01-01": "New Year Holidays", + "2024-01-02": "New Year Holidays", + "2024-01-03": "New Year Holidays", + "2024-01-04": "New Year Holidays", + "2024-01-05": "New Year Holidays", + "2024-01-06": "New Year Holidays", + "2024-01-07": "Christmas Day", + "2024-01-08": "New Year Holidays", + "2024-02-23": "Fatherland Defender's Day", + "2024-03-08": "International Women's Day", + "2024-05-01": "Holiday of Spring and Labor", + "2024-05-09": "Victory Day", + "2024-06-12": "Russia Day", + "2024-11-04": "Unity Day", + "2025-01-01": "New Year Holidays", + "2025-01-02": "New Year Holidays", + "2025-01-03": "New Year Holidays", + "2025-01-04": "New Year Holidays", + "2025-01-05": "New Year Holidays", + "2025-01-06": "New Year Holidays", + "2025-01-07": "Christmas Day", + "2025-01-08": "New Year Holidays", + "2025-02-23": "Fatherland Defender's Day", + "2025-03-08": "International Women's Day", + "2025-05-01": "Holiday of Spring and Labor", + "2025-05-09": "Victory Day", + "2025-06-12": "Russia Day", + "2025-11-04": "Unity Day", + "2026-01-01": "New Year Holidays", + "2026-01-02": "New Year Holidays", + "2026-01-03": "New Year Holidays", + "2026-01-04": "New Year Holidays", + "2026-01-05": "New Year Holidays", + "2026-01-06": "New Year Holidays", + "2026-01-07": "Christmas Day", + "2026-01-08": "New Year Holidays", + "2026-02-23": "Fatherland Defender's Day", + "2026-03-08": "International Women's Day", + "2026-05-01": "Holiday of Spring and Labor", + "2026-05-09": "Victory Day", + "2026-06-12": "Russia Day", + "2026-11-04": "Unity Day", + "2027-01-01": "New Year Holidays", + "2027-01-02": "New Year Holidays", + "2027-01-03": "New Year Holidays", + "2027-01-04": "New Year Holidays", + "2027-01-05": "New Year Holidays", + "2027-01-06": "New Year Holidays", + "2027-01-07": "Christmas Day", + "2027-01-08": "New Year Holidays", + "2027-02-23": "Fatherland Defender's Day", + "2027-03-08": "International Women's Day", + "2027-05-01": "Holiday of Spring and Labor", + "2027-05-09": "Victory Day", + "2027-06-12": "Russia Day", + "2027-11-04": "Unity Day", + "2028-01-01": "New Year Holidays", + "2028-01-02": "New Year Holidays", + "2028-01-03": "New Year Holidays", + "2028-01-04": "New Year Holidays", + "2028-01-05": "New Year Holidays", + "2028-01-06": "New Year Holidays", + "2028-01-07": "Christmas Day", + "2028-01-08": "New Year Holidays", + "2028-02-23": "Fatherland Defender's Day", + "2028-03-08": "International Women's Day", + "2028-05-01": "Holiday of Spring and Labor", + "2028-05-09": "Victory Day", + "2028-06-12": "Russia Day", + "2028-11-04": "Unity Day", + "2029-01-01": "New Year Holidays", + "2029-01-02": "New Year Holidays", + "2029-01-03": "New Year Holidays", + "2029-01-04": "New Year Holidays", + "2029-01-05": "New Year Holidays", + "2029-01-06": "New Year Holidays", + "2029-01-07": "Christmas Day", + "2029-01-08": "New Year Holidays", + "2029-02-23": "Fatherland Defender's Day", + "2029-03-08": "International Women's Day", + "2029-05-01": "Holiday of Spring and Labor", + "2029-05-09": "Victory Day", + "2029-06-12": "Russia Day", + "2029-11-04": "Unity Day", + "2030-01-01": "New Year Holidays", + "2030-01-02": "New Year Holidays", + "2030-01-03": "New Year Holidays", + "2030-01-04": "New Year Holidays", + "2030-01-05": "New Year Holidays", + "2030-01-06": "New Year Holidays", + "2030-01-07": "Christmas Day", + "2030-01-08": "New Year Holidays", + "2030-02-23": "Fatherland Defender's Day", + "2030-03-08": "International Women's Day", + "2030-05-01": "Holiday of Spring and Labor", + "2030-05-09": "Victory Day", + "2030-06-12": "Russia Day", + "2030-11-04": "Unity Day", + "2031-01-01": "New Year Holidays", + "2031-01-02": "New Year Holidays", + "2031-01-03": "New Year Holidays", + "2031-01-04": "New Year Holidays", + "2031-01-05": "New Year Holidays", + "2031-01-06": "New Year Holidays", + "2031-01-07": "Christmas Day", + "2031-01-08": "New Year Holidays", + "2031-02-23": "Fatherland Defender's Day", + "2031-03-08": "International Women's Day", + "2031-05-01": "Holiday of Spring and Labor", + "2031-05-09": "Victory Day", + "2031-06-12": "Russia Day", + "2031-11-04": "Unity Day", + "2032-01-01": "New Year Holidays", + "2032-01-02": "New Year Holidays", + "2032-01-03": "New Year Holidays", + "2032-01-04": "New Year Holidays", + "2032-01-05": "New Year Holidays", + "2032-01-06": "New Year Holidays", + "2032-01-07": "Christmas Day", + "2032-01-08": "New Year Holidays", + "2032-02-23": "Fatherland Defender's Day", + "2032-03-08": "International Women's Day", + "2032-05-01": "Holiday of Spring and Labor", + "2032-05-09": "Victory Day", + "2032-06-12": "Russia Day", + "2032-11-04": "Unity Day", + "2033-01-01": "New Year Holidays", + "2033-01-02": "New Year Holidays", + "2033-01-03": "New Year Holidays", + "2033-01-04": "New Year Holidays", + "2033-01-05": "New Year Holidays", + "2033-01-06": "New Year Holidays", + "2033-01-07": "Christmas Day", + "2033-01-08": "New Year Holidays", + "2033-02-23": "Fatherland Defender's Day", + "2033-03-08": "International Women's Day", + "2033-05-01": "Holiday of Spring and Labor", + "2033-05-09": "Victory Day", + "2033-06-12": "Russia Day", + "2033-11-04": "Unity Day", + "2034-01-01": "New Year Holidays", + "2034-01-02": "New Year Holidays", + "2034-01-03": "New Year Holidays", + "2034-01-04": "New Year Holidays", + "2034-01-05": "New Year Holidays", + "2034-01-06": "New Year Holidays", + "2034-01-07": "Christmas Day", + "2034-01-08": "New Year Holidays", + "2034-02-23": "Fatherland Defender's Day", + "2034-03-08": "International Women's Day", + "2034-05-01": "Holiday of Spring and Labor", + "2034-05-09": "Victory Day", + "2034-06-12": "Russia Day", + "2034-11-04": "Unity Day", + "2035-01-01": "New Year Holidays", + "2035-01-02": "New Year Holidays", + "2035-01-03": "New Year Holidays", + "2035-01-04": "New Year Holidays", + "2035-01-05": "New Year Holidays", + "2035-01-06": "New Year Holidays", + "2035-01-07": "Christmas Day", + "2035-01-08": "New Year Holidays", + "2035-02-23": "Fatherland Defender's Day", + "2035-03-08": "International Women's Day", + "2035-05-01": "Holiday of Spring and Labor", + "2035-05-09": "Victory Day", + "2035-06-12": "Russia Day", + "2035-11-04": "Unity Day", + "2036-01-01": "New Year Holidays", + "2036-01-02": "New Year Holidays", + "2036-01-03": "New Year Holidays", + "2036-01-04": "New Year Holidays", + "2036-01-05": "New Year Holidays", + "2036-01-06": "New Year Holidays", + "2036-01-07": "Christmas Day", + "2036-01-08": "New Year Holidays", + "2036-02-23": "Fatherland Defender's Day", + "2036-03-08": "International Women's Day", + "2036-05-01": "Holiday of Spring and Labor", + "2036-05-09": "Victory Day", + "2036-06-12": "Russia Day", + "2036-11-04": "Unity Day", + "2037-01-01": "New Year Holidays", + "2037-01-02": "New Year Holidays", + "2037-01-03": "New Year Holidays", + "2037-01-04": "New Year Holidays", + "2037-01-05": "New Year Holidays", + "2037-01-06": "New Year Holidays", + "2037-01-07": "Christmas Day", + "2037-01-08": "New Year Holidays", + "2037-02-23": "Fatherland Defender's Day", + "2037-03-08": "International Women's Day", + "2037-05-01": "Holiday of Spring and Labor", + "2037-05-09": "Victory Day", + "2037-06-12": "Russia Day", + "2037-11-04": "Unity Day", + "2038-01-01": "New Year Holidays", + "2038-01-02": "New Year Holidays", + "2038-01-03": "New Year Holidays", + "2038-01-04": "New Year Holidays", + "2038-01-05": "New Year Holidays", + "2038-01-06": "New Year Holidays", + "2038-01-07": "Christmas Day", + "2038-01-08": "New Year Holidays", + "2038-02-23": "Fatherland Defender's Day", + "2038-03-08": "International Women's Day", + "2038-05-01": "Holiday of Spring and Labor", + "2038-05-09": "Victory Day", + "2038-06-12": "Russia Day", + "2038-11-04": "Unity Day", + "2039-01-01": "New Year Holidays", + "2039-01-02": "New Year Holidays", + "2039-01-03": "New Year Holidays", + "2039-01-04": "New Year Holidays", + "2039-01-05": "New Year Holidays", + "2039-01-06": "New Year Holidays", + "2039-01-07": "Christmas Day", + "2039-01-08": "New Year Holidays", + "2039-02-23": "Fatherland Defender's Day", + "2039-03-08": "International Women's Day", + "2039-05-01": "Holiday of Spring and Labor", + "2039-05-09": "Victory Day", + "2039-06-12": "Russia Day", + "2039-11-04": "Unity Day", + "2040-01-01": "New Year Holidays", + "2040-01-02": "New Year Holidays", + "2040-01-03": "New Year Holidays", + "2040-01-04": "New Year Holidays", + "2040-01-05": "New Year Holidays", + "2040-01-06": "New Year Holidays", + "2040-01-07": "Christmas Day", + "2040-01-08": "New Year Holidays", + "2040-02-23": "Fatherland Defender's Day", + "2040-03-08": "International Women's Day", + "2040-05-01": "Holiday of Spring and Labor", + "2040-05-09": "Victory Day", + "2040-06-12": "Russia Day", + "2040-11-04": "Unity Day", + "2041-01-01": "New Year Holidays", + "2041-01-02": "New Year Holidays", + "2041-01-03": "New Year Holidays", + "2041-01-04": "New Year Holidays", + "2041-01-05": "New Year Holidays", + "2041-01-06": "New Year Holidays", + "2041-01-07": "Christmas Day", + "2041-01-08": "New Year Holidays", + "2041-02-23": "Fatherland Defender's Day", + "2041-03-08": "International Women's Day", + "2041-05-01": "Holiday of Spring and Labor", + "2041-05-09": "Victory Day", + "2041-06-12": "Russia Day", + "2041-11-04": "Unity Day", + "2042-01-01": "New Year Holidays", + "2042-01-02": "New Year Holidays", + "2042-01-03": "New Year Holidays", + "2042-01-04": "New Year Holidays", + "2042-01-05": "New Year Holidays", + "2042-01-06": "New Year Holidays", + "2042-01-07": "Christmas Day", + "2042-01-08": "New Year Holidays", + "2042-02-23": "Fatherland Defender's Day", + "2042-03-08": "International Women's Day", + "2042-05-01": "Holiday of Spring and Labor", + "2042-05-09": "Victory Day", + "2042-06-12": "Russia Day", + "2042-11-04": "Unity Day", + "2043-01-01": "New Year Holidays", + "2043-01-02": "New Year Holidays", + "2043-01-03": "New Year Holidays", + "2043-01-04": "New Year Holidays", + "2043-01-05": "New Year Holidays", + "2043-01-06": "New Year Holidays", + "2043-01-07": "Christmas Day", + "2043-01-08": "New Year Holidays", + "2043-02-23": "Fatherland Defender's Day", + "2043-03-08": "International Women's Day", + "2043-05-01": "Holiday of Spring and Labor", + "2043-05-09": "Victory Day", + "2043-06-12": "Russia Day", + "2043-11-04": "Unity Day", + "2044-01-01": "New Year Holidays", + "2044-01-02": "New Year Holidays", + "2044-01-03": "New Year Holidays", + "2044-01-04": "New Year Holidays", + "2044-01-05": "New Year Holidays", + "2044-01-06": "New Year Holidays", + "2044-01-07": "Christmas Day", + "2044-01-08": "New Year Holidays", + "2044-02-23": "Fatherland Defender's Day", + "2044-03-08": "International Women's Day", + "2044-05-01": "Holiday of Spring and Labor", + "2044-05-09": "Victory Day", + "2044-06-12": "Russia Day", + "2044-11-04": "Unity Day", + "2045-01-01": "New Year Holidays", + "2045-01-02": "New Year Holidays", + "2045-01-03": "New Year Holidays", + "2045-01-04": "New Year Holidays", + "2045-01-05": "New Year Holidays", + "2045-01-06": "New Year Holidays", + "2045-01-07": "Christmas Day", + "2045-01-08": "New Year Holidays", + "2045-02-23": "Fatherland Defender's Day", + "2045-03-08": "International Women's Day", + "2045-05-01": "Holiday of Spring and Labor", + "2045-05-09": "Victory Day", + "2045-06-12": "Russia Day", + "2045-11-04": "Unity Day", + "2046-01-01": "New Year Holidays", + "2046-01-02": "New Year Holidays", + "2046-01-03": "New Year Holidays", + "2046-01-04": "New Year Holidays", + "2046-01-05": "New Year Holidays", + "2046-01-06": "New Year Holidays", + "2046-01-07": "Christmas Day", + "2046-01-08": "New Year Holidays", + "2046-02-23": "Fatherland Defender's Day", + "2046-03-08": "International Women's Day", + "2046-05-01": "Holiday of Spring and Labor", + "2046-05-09": "Victory Day", + "2046-06-12": "Russia Day", + "2046-11-04": "Unity Day", + "2047-01-01": "New Year Holidays", + "2047-01-02": "New Year Holidays", + "2047-01-03": "New Year Holidays", + "2047-01-04": "New Year Holidays", + "2047-01-05": "New Year Holidays", + "2047-01-06": "New Year Holidays", + "2047-01-07": "Christmas Day", + "2047-01-08": "New Year Holidays", + "2047-02-23": "Fatherland Defender's Day", + "2047-03-08": "International Women's Day", + "2047-05-01": "Holiday of Spring and Labor", + "2047-05-09": "Victory Day", + "2047-06-12": "Russia Day", + "2047-11-04": "Unity Day", + "2048-01-01": "New Year Holidays", + "2048-01-02": "New Year Holidays", + "2048-01-03": "New Year Holidays", + "2048-01-04": "New Year Holidays", + "2048-01-05": "New Year Holidays", + "2048-01-06": "New Year Holidays", + "2048-01-07": "Christmas Day", + "2048-01-08": "New Year Holidays", + "2048-02-23": "Fatherland Defender's Day", + "2048-03-08": "International Women's Day", + "2048-05-01": "Holiday of Spring and Labor", + "2048-05-09": "Victory Day", + "2048-06-12": "Russia Day", + "2048-11-04": "Unity Day", + "2049-01-01": "New Year Holidays", + "2049-01-02": "New Year Holidays", + "2049-01-03": "New Year Holidays", + "2049-01-04": "New Year Holidays", + "2049-01-05": "New Year Holidays", + "2049-01-06": "New Year Holidays", + "2049-01-07": "Christmas Day", + "2049-01-08": "New Year Holidays", + "2049-02-23": "Fatherland Defender's Day", + "2049-03-08": "International Women's Day", + "2049-05-01": "Holiday of Spring and Labor", + "2049-05-09": "Victory Day", + "2049-06-12": "Russia Day", + "2049-11-04": "Unity Day", + "2050-01-01": "New Year Holidays", + "2050-01-02": "New Year Holidays", + "2050-01-03": "New Year Holidays", + "2050-01-04": "New Year Holidays", + "2050-01-05": "New Year Holidays", + "2050-01-06": "New Year Holidays", + "2050-01-07": "Christmas Day", + "2050-01-08": "New Year Holidays", + "2050-02-23": "Fatherland Defender's Day", + "2050-03-08": "International Women's Day", + "2050-05-01": "Holiday of Spring and Labor", + "2050-05-09": "Victory Day", + "2050-06-12": "Russia Day", + "2050-11-04": "Unity Day" +} diff --git a/snapshots/countries/SA.json b/snapshots/countries/SA.json new file mode 100644 index 000000000..8e922bbaf --- /dev/null +++ b/snapshots/countries/SA.json @@ -0,0 +1,1162 @@ +{ + "1950-07-16": "Eid al-Fitr Holiday* (*estimated)", + "1950-07-17": "Eid al-Fitr Holiday* (*estimated)", + "1950-07-18": "Eid al-Fitr Holiday* (*estimated)", + "1950-07-19": "Eid al-Fitr Holiday* (*estimated)", + "1950-09-22": "Arafat Day* (*estimated)", + "1950-09-23": "Eid al-Adha Holiday* (*estimated)", + "1950-09-24": "Eid al-Adha Holiday* (*estimated)", + "1950-09-25": "Eid al-Adha Holiday* (*estimated)", + "1950-09-26": "Eid al-Adha Holiday* (*estimated) (observed)", + "1951-07-06": "Eid al-Fitr Holiday* (*estimated)", + "1951-07-07": "Eid al-Fitr Holiday* (*estimated)", + "1951-07-08": "Eid al-Fitr Holiday* (*estimated)", + "1951-07-09": "Eid al-Fitr Holiday* (*estimated)", + "1951-07-10": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1951-09-11": "Arafat Day* (*estimated)", + "1951-09-12": "Eid al-Adha Holiday* (*estimated)", + "1951-09-13": "Eid al-Adha Holiday* (*estimated)", + "1951-09-14": "Eid al-Adha Holiday* (*estimated)", + "1951-09-15": "Eid al-Adha Holiday* (*estimated) (observed)", + "1951-09-16": "Eid al-Adha Holiday* (*estimated) (observed)", + "1952-06-23": "Eid al-Fitr Holiday* (*estimated)", + "1952-06-24": "Eid al-Fitr Holiday* (*estimated)", + "1952-06-25": "Eid al-Fitr Holiday* (*estimated)", + "1952-06-26": "Eid al-Fitr Holiday* (*estimated)", + "1952-06-28": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1952-08-30": "Arafat Day* (*estimated)", + "1952-08-31": "Eid al-Adha Holiday* (*estimated)", + "1952-09-01": "Eid al-Adha Holiday* (*estimated)", + "1952-09-02": "Eid al-Adha Holiday* (*estimated)", + "1953-06-13": "Eid al-Fitr Holiday* (*estimated)", + "1953-06-14": "Eid al-Fitr Holiday* (*estimated)", + "1953-06-15": "Eid al-Fitr Holiday* (*estimated)", + "1953-06-16": "Eid al-Fitr Holiday* (*estimated)", + "1953-08-19": "Arafat Day* (*estimated)", + "1953-08-20": "Eid al-Adha Holiday* (*estimated)", + "1953-08-21": "Eid al-Adha Holiday* (*estimated)", + "1953-08-22": "Eid al-Adha Holiday* (*estimated)", + "1953-08-23": "Eid al-Adha Holiday* (*estimated) (observed)", + "1953-08-24": "Eid al-Adha Holiday* (*estimated) (observed)", + "1954-06-02": "Eid al-Fitr Holiday* (*estimated)", + "1954-06-03": "Eid al-Fitr Holiday* (*estimated)", + "1954-06-04": "Eid al-Fitr Holiday* (*estimated)", + "1954-06-05": "Eid al-Fitr Holiday* (*estimated)", + "1954-06-06": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1954-06-07": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1954-08-08": "Arafat Day* (*estimated)", + "1954-08-09": "Eid al-Adha Holiday* (*estimated)", + "1954-08-10": "Eid al-Adha Holiday* (*estimated)", + "1954-08-11": "Eid al-Adha Holiday* (*estimated)", + "1955-05-23": "Eid al-Fitr Holiday* (*estimated)", + "1955-05-24": "Eid al-Fitr Holiday* (*estimated)", + "1955-05-25": "Eid al-Fitr Holiday* (*estimated)", + "1955-05-26": "Eid al-Fitr Holiday* (*estimated)", + "1955-05-28": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1955-07-29": "Arafat Day* (*estimated)", + "1955-07-30": "Eid al-Adha Holiday* (*estimated)", + "1955-07-31": "Eid al-Adha Holiday* (*estimated)", + "1955-08-01": "Eid al-Adha Holiday* (*estimated)", + "1955-08-02": "Eid al-Adha Holiday* (*estimated) (observed)", + "1956-05-11": "Eid al-Fitr Holiday* (*estimated)", + "1956-05-12": "Eid al-Fitr Holiday* (*estimated)", + "1956-05-13": "Eid al-Fitr Holiday* (*estimated)", + "1956-05-14": "Eid al-Fitr Holiday* (*estimated)", + "1956-05-15": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1956-07-18": "Arafat Day* (*estimated)", + "1956-07-19": "Eid al-Adha Holiday* (*estimated)", + "1956-07-20": "Eid al-Adha Holiday* (*estimated)", + "1956-07-21": "Eid al-Adha Holiday* (*estimated)", + "1956-07-22": "Eid al-Adha Holiday* (*estimated) (observed)", + "1956-07-23": "Eid al-Adha Holiday* (*estimated) (observed)", + "1957-05-01": "Eid al-Fitr Holiday* (*estimated)", + "1957-05-02": "Eid al-Fitr Holiday* (*estimated)", + "1957-05-03": "Eid al-Fitr Holiday* (*estimated)", + "1957-05-04": "Eid al-Fitr Holiday* (*estimated)", + "1957-05-05": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1957-05-06": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1957-07-07": "Arafat Day* (*estimated)", + "1957-07-08": "Eid al-Adha Holiday* (*estimated)", + "1957-07-09": "Eid al-Adha Holiday* (*estimated)", + "1957-07-10": "Eid al-Adha Holiday* (*estimated)", + "1958-04-20": "Eid al-Fitr Holiday* (*estimated)", + "1958-04-21": "Eid al-Fitr Holiday* (*estimated)", + "1958-04-22": "Eid al-Fitr Holiday* (*estimated)", + "1958-04-23": "Eid al-Fitr Holiday* (*estimated)", + "1958-06-26": "Arafat Day* (*estimated)", + "1958-06-27": "Eid al-Adha Holiday* (*estimated)", + "1958-06-28": "Eid al-Adha Holiday* (*estimated)", + "1958-06-29": "Eid al-Adha Holiday* (*estimated)", + "1958-06-30": "Eid al-Adha Holiday* (*estimated) (observed)", + "1958-07-01": "Eid al-Adha Holiday* (*estimated) (observed)", + "1959-04-10": "Eid al-Fitr Holiday* (*estimated)", + "1959-04-11": "Eid al-Fitr Holiday* (*estimated)", + "1959-04-12": "Eid al-Fitr Holiday* (*estimated)", + "1959-04-13": "Eid al-Fitr Holiday* (*estimated)", + "1959-04-14": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1959-06-16": "Arafat Day* (*estimated)", + "1959-06-17": "Eid al-Adha Holiday* (*estimated)", + "1959-06-18": "Eid al-Adha Holiday* (*estimated)", + "1959-06-19": "Eid al-Adha Holiday* (*estimated)", + "1959-06-20": "Eid al-Adha Holiday* (*estimated) (observed)", + "1959-06-21": "Eid al-Adha Holiday* (*estimated) (observed)", + "1960-03-28": "Eid al-Fitr Holiday* (*estimated)", + "1960-03-29": "Eid al-Fitr Holiday* (*estimated)", + "1960-03-30": "Eid al-Fitr Holiday* (*estimated)", + "1960-03-31": "Eid al-Fitr Holiday* (*estimated)", + "1960-04-02": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1960-06-03": "Arafat Day* (*estimated)", + "1960-06-04": "Eid al-Adha Holiday* (*estimated)", + "1960-06-05": "Eid al-Adha Holiday* (*estimated)", + "1960-06-06": "Eid al-Adha Holiday* (*estimated)", + "1960-06-07": "Eid al-Adha Holiday* (*estimated) (observed)", + "1961-03-18": "Eid al-Fitr Holiday* (*estimated)", + "1961-03-19": "Eid al-Fitr Holiday* (*estimated)", + "1961-03-20": "Eid al-Fitr Holiday* (*estimated)", + "1961-03-21": "Eid al-Fitr Holiday* (*estimated)", + "1961-05-24": "Arafat Day* (*estimated)", + "1961-05-25": "Eid al-Adha Holiday* (*estimated)", + "1961-05-26": "Eid al-Adha Holiday* (*estimated)", + "1961-05-27": "Eid al-Adha Holiday* (*estimated)", + "1961-05-28": "Eid al-Adha Holiday* (*estimated) (observed)", + "1961-05-29": "Eid al-Adha Holiday* (*estimated) (observed)", + "1962-03-07": "Eid al-Fitr Holiday* (*estimated)", + "1962-03-08": "Eid al-Fitr Holiday* (*estimated)", + "1962-03-09": "Eid al-Fitr Holiday* (*estimated)", + "1962-03-10": "Eid al-Fitr Holiday* (*estimated)", + "1962-03-11": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1962-03-12": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1962-05-13": "Arafat Day* (*estimated)", + "1962-05-14": "Eid al-Adha Holiday* (*estimated)", + "1962-05-15": "Eid al-Adha Holiday* (*estimated)", + "1962-05-16": "Eid al-Adha Holiday* (*estimated)", + "1963-02-24": "Eid al-Fitr Holiday* (*estimated)", + "1963-02-25": "Eid al-Fitr Holiday* (*estimated)", + "1963-02-26": "Eid al-Fitr Holiday* (*estimated)", + "1963-02-27": "Eid al-Fitr Holiday* (*estimated)", + "1963-05-02": "Arafat Day* (*estimated)", + "1963-05-03": "Eid al-Adha Holiday* (*estimated)", + "1963-05-04": "Eid al-Adha Holiday* (*estimated)", + "1963-05-05": "Eid al-Adha Holiday* (*estimated)", + "1963-05-06": "Eid al-Adha Holiday* (*estimated) (observed)", + "1963-05-07": "Eid al-Adha Holiday* (*estimated) (observed)", + "1964-02-14": "Eid al-Fitr Holiday* (*estimated)", + "1964-02-15": "Eid al-Fitr Holiday* (*estimated)", + "1964-02-16": "Eid al-Fitr Holiday* (*estimated)", + "1964-02-17": "Eid al-Fitr Holiday* (*estimated)", + "1964-02-18": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1964-04-21": "Arafat Day* (*estimated)", + "1964-04-22": "Eid al-Adha Holiday* (*estimated)", + "1964-04-23": "Eid al-Adha Holiday* (*estimated)", + "1964-04-24": "Eid al-Adha Holiday* (*estimated)", + "1964-04-25": "Eid al-Adha Holiday* (*estimated) (observed)", + "1964-04-26": "Eid al-Adha Holiday* (*estimated) (observed)", + "1965-02-02": "Eid al-Fitr Holiday* (*estimated)", + "1965-02-03": "Eid al-Fitr Holiday* (*estimated)", + "1965-02-04": "Eid al-Fitr Holiday* (*estimated)", + "1965-02-05": "Eid al-Fitr Holiday* (*estimated)", + "1965-02-06": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1965-02-07": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1965-04-10": "Arafat Day* (*estimated)", + "1965-04-11": "Eid al-Adha Holiday* (*estimated)", + "1965-04-12": "Eid al-Adha Holiday* (*estimated)", + "1965-04-13": "Eid al-Adha Holiday* (*estimated)", + "1966-01-22": "Eid al-Fitr Holiday* (*estimated)", + "1966-01-23": "Eid al-Fitr Holiday* (*estimated)", + "1966-01-24": "Eid al-Fitr Holiday* (*estimated)", + "1966-01-25": "Eid al-Fitr Holiday* (*estimated)", + "1966-03-31": "Arafat Day* (*estimated)", + "1966-04-01": "Eid al-Adha Holiday* (*estimated)", + "1966-04-02": "Eid al-Adha Holiday* (*estimated)", + "1966-04-03": "Eid al-Adha Holiday* (*estimated)", + "1966-04-04": "Eid al-Adha Holiday* (*estimated) (observed)", + "1966-04-05": "Eid al-Adha Holiday* (*estimated) (observed)", + "1967-01-12": "Eid al-Fitr Holiday* (*estimated)", + "1967-01-13": "Eid al-Fitr Holiday* (*estimated)", + "1967-01-14": "Eid al-Fitr Holiday* (*estimated)", + "1967-01-15": "Eid al-Fitr Holiday* (*estimated)", + "1967-01-16": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1967-01-17": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1967-03-20": "Arafat Day* (*estimated)", + "1967-03-21": "Eid al-Adha Holiday* (*estimated)", + "1967-03-22": "Eid al-Adha Holiday* (*estimated)", + "1967-03-23": "Eid al-Adha Holiday* (*estimated)", + "1967-03-25": "Eid al-Adha Holiday* (*estimated) (observed)", + "1968-01-01": "Eid al-Fitr Holiday* (*estimated)", + "1968-01-02": "Eid al-Fitr Holiday* (*estimated)", + "1968-01-03": "Eid al-Fitr Holiday* (*estimated)", + "1968-01-04": "Eid al-Fitr Holiday* (*estimated)", + "1968-01-06": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1968-03-08": "Arafat Day* (*estimated)", + "1968-03-09": "Eid al-Adha Holiday* (*estimated)", + "1968-03-10": "Eid al-Adha Holiday* (*estimated)", + "1968-03-11": "Eid al-Adha Holiday* (*estimated)", + "1968-03-12": "Eid al-Adha Holiday* (*estimated) (observed)", + "1968-12-21": "Eid al-Fitr Holiday* (*estimated)", + "1968-12-22": "Eid al-Fitr Holiday* (*estimated)", + "1968-12-23": "Eid al-Fitr Holiday* (*estimated)", + "1968-12-24": "Eid al-Fitr Holiday* (*estimated)", + "1969-02-26": "Arafat Day* (*estimated)", + "1969-02-27": "Eid al-Adha Holiday* (*estimated)", + "1969-02-28": "Eid al-Adha Holiday* (*estimated)", + "1969-03-01": "Eid al-Adha Holiday* (*estimated)", + "1969-03-02": "Eid al-Adha Holiday* (*estimated) (observed)", + "1969-03-03": "Eid al-Adha Holiday* (*estimated) (observed)", + "1969-12-10": "Eid al-Fitr Holiday* (*estimated)", + "1969-12-11": "Eid al-Fitr Holiday* (*estimated)", + "1969-12-12": "Eid al-Fitr Holiday* (*estimated)", + "1969-12-13": "Eid al-Fitr Holiday* (*estimated)", + "1969-12-14": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1969-12-15": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1970-02-15": "Arafat Day* (*estimated)", + "1970-02-16": "Eid al-Adha Holiday* (*estimated)", + "1970-02-17": "Eid al-Adha Holiday* (*estimated)", + "1970-02-18": "Eid al-Adha Holiday* (*estimated)", + "1970-11-30": "Eid al-Fitr Holiday* (*estimated)", + "1970-12-01": "Eid al-Fitr Holiday* (*estimated)", + "1970-12-02": "Eid al-Fitr Holiday* (*estimated)", + "1970-12-03": "Eid al-Fitr Holiday* (*estimated)", + "1970-12-05": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1971-02-05": "Arafat Day* (*estimated)", + "1971-02-06": "Eid al-Adha Holiday* (*estimated)", + "1971-02-07": "Eid al-Adha Holiday* (*estimated)", + "1971-02-08": "Eid al-Adha Holiday* (*estimated)", + "1971-02-09": "Eid al-Adha Holiday* (*estimated) (observed)", + "1971-11-19": "Eid al-Fitr Holiday* (*estimated)", + "1971-11-20": "Eid al-Fitr Holiday* (*estimated)", + "1971-11-21": "Eid al-Fitr Holiday* (*estimated)", + "1971-11-22": "Eid al-Fitr Holiday* (*estimated)", + "1971-11-23": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1972-01-25": "Arafat Day* (*estimated)", + "1972-01-26": "Eid al-Adha Holiday* (*estimated)", + "1972-01-27": "Eid al-Adha Holiday* (*estimated)", + "1972-01-28": "Eid al-Adha Holiday* (*estimated)", + "1972-01-29": "Eid al-Adha Holiday* (*estimated) (observed)", + "1972-01-30": "Eid al-Adha Holiday* (*estimated) (observed)", + "1972-11-07": "Eid al-Fitr Holiday* (*estimated)", + "1972-11-08": "Eid al-Fitr Holiday* (*estimated)", + "1972-11-09": "Eid al-Fitr Holiday* (*estimated)", + "1972-11-10": "Eid al-Fitr Holiday* (*estimated)", + "1972-11-11": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1972-11-12": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1973-01-13": "Arafat Day* (*estimated)", + "1973-01-14": "Eid al-Adha Holiday* (*estimated)", + "1973-01-15": "Eid al-Adha Holiday* (*estimated)", + "1973-01-16": "Eid al-Adha Holiday* (*estimated)", + "1973-10-27": "Eid al-Fitr Holiday* (*estimated)", + "1973-10-28": "Eid al-Fitr Holiday* (*estimated)", + "1973-10-29": "Eid al-Fitr Holiday* (*estimated)", + "1973-10-30": "Eid al-Fitr Holiday* (*estimated)", + "1974-01-02": "Arafat Day* (*estimated)", + "1974-01-03": "Eid al-Adha Holiday* (*estimated)", + "1974-01-04": "Eid al-Adha Holiday* (*estimated)", + "1974-01-05": "Eid al-Adha Holiday* (*estimated)", + "1974-01-06": "Eid al-Adha Holiday* (*estimated) (observed)", + "1974-01-07": "Eid al-Adha Holiday* (*estimated) (observed)", + "1974-10-16": "Eid al-Fitr Holiday* (*estimated)", + "1974-10-17": "Eid al-Fitr Holiday* (*estimated)", + "1974-10-18": "Eid al-Fitr Holiday* (*estimated)", + "1974-10-19": "Eid al-Fitr Holiday* (*estimated)", + "1974-10-20": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1974-10-21": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1974-12-23": "Arafat Day* (*estimated)", + "1974-12-24": "Eid al-Adha Holiday* (*estimated)", + "1974-12-25": "Eid al-Adha Holiday* (*estimated)", + "1974-12-26": "Eid al-Adha Holiday* (*estimated)", + "1974-12-28": "Eid al-Adha Holiday* (*estimated) (observed)", + "1975-10-06": "Eid al-Fitr Holiday* (*estimated)", + "1975-10-07": "Eid al-Fitr Holiday* (*estimated)", + "1975-10-08": "Eid al-Fitr Holiday* (*estimated)", + "1975-10-09": "Eid al-Fitr Holiday* (*estimated)", + "1975-10-11": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1975-12-12": "Arafat Day* (*estimated)", + "1975-12-13": "Eid al-Adha Holiday* (*estimated)", + "1975-12-14": "Eid al-Adha Holiday* (*estimated)", + "1975-12-15": "Eid al-Adha Holiday* (*estimated)", + "1975-12-16": "Eid al-Adha Holiday* (*estimated) (observed)", + "1976-09-24": "Eid al-Fitr Holiday* (*estimated)", + "1976-09-25": "Eid al-Fitr Holiday* (*estimated)", + "1976-09-26": "Eid al-Fitr Holiday* (*estimated)", + "1976-09-27": "Eid al-Fitr Holiday* (*estimated)", + "1976-09-28": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1976-11-30": "Arafat Day* (*estimated)", + "1976-12-01": "Eid al-Adha Holiday* (*estimated)", + "1976-12-02": "Eid al-Adha Holiday* (*estimated)", + "1976-12-03": "Eid al-Adha Holiday* (*estimated)", + "1976-12-04": "Eid al-Adha Holiday* (*estimated) (observed)", + "1976-12-05": "Eid al-Adha Holiday* (*estimated) (observed)", + "1977-09-14": "Eid al-Fitr Holiday* (*estimated)", + "1977-09-15": "Eid al-Fitr Holiday* (*estimated)", + "1977-09-16": "Eid al-Fitr Holiday* (*estimated)", + "1977-09-17": "Eid al-Fitr Holiday* (*estimated)", + "1977-09-18": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1977-09-19": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1977-11-20": "Arafat Day* (*estimated)", + "1977-11-21": "Eid al-Adha Holiday* (*estimated)", + "1977-11-22": "Eid al-Adha Holiday* (*estimated)", + "1977-11-23": "Eid al-Adha Holiday* (*estimated)", + "1978-09-03": "Eid al-Fitr Holiday* (*estimated)", + "1978-09-04": "Eid al-Fitr Holiday* (*estimated)", + "1978-09-05": "Eid al-Fitr Holiday* (*estimated)", + "1978-09-06": "Eid al-Fitr Holiday* (*estimated)", + "1978-11-09": "Arafat Day* (*estimated)", + "1978-11-10": "Eid al-Adha Holiday* (*estimated)", + "1978-11-11": "Eid al-Adha Holiday* (*estimated)", + "1978-11-12": "Eid al-Adha Holiday* (*estimated)", + "1978-11-13": "Eid al-Adha Holiday* (*estimated) (observed)", + "1978-11-14": "Eid al-Adha Holiday* (*estimated) (observed)", + "1979-08-23": "Eid al-Fitr Holiday* (*estimated)", + "1979-08-24": "Eid al-Fitr Holiday* (*estimated)", + "1979-08-25": "Eid al-Fitr Holiday* (*estimated)", + "1979-08-26": "Eid al-Fitr Holiday* (*estimated)", + "1979-08-27": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1979-08-28": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1979-10-30": "Arafat Day* (*estimated)", + "1979-10-31": "Eid al-Adha Holiday* (*estimated)", + "1979-11-01": "Eid al-Adha Holiday* (*estimated)", + "1979-11-02": "Eid al-Adha Holiday* (*estimated)", + "1979-11-03": "Eid al-Adha Holiday* (*estimated) (observed)", + "1979-11-04": "Eid al-Adha Holiday* (*estimated) (observed)", + "1980-08-12": "Eid al-Fitr Holiday* (*estimated)", + "1980-08-13": "Eid al-Fitr Holiday* (*estimated)", + "1980-08-14": "Eid al-Fitr Holiday* (*estimated)", + "1980-08-15": "Eid al-Fitr Holiday* (*estimated)", + "1980-08-16": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1980-08-17": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1980-10-18": "Arafat Day* (*estimated)", + "1980-10-19": "Eid al-Adha Holiday* (*estimated)", + "1980-10-20": "Eid al-Adha Holiday* (*estimated)", + "1980-10-21": "Eid al-Adha Holiday* (*estimated)", + "1981-08-01": "Eid al-Fitr Holiday* (*estimated)", + "1981-08-02": "Eid al-Fitr Holiday* (*estimated)", + "1981-08-03": "Eid al-Fitr Holiday* (*estimated)", + "1981-08-04": "Eid al-Fitr Holiday* (*estimated)", + "1981-10-07": "Arafat Day* (*estimated)", + "1981-10-08": "Eid al-Adha Holiday* (*estimated)", + "1981-10-09": "Eid al-Adha Holiday* (*estimated)", + "1981-10-10": "Eid al-Adha Holiday* (*estimated)", + "1981-10-11": "Eid al-Adha Holiday* (*estimated) (observed)", + "1981-10-12": "Eid al-Adha Holiday* (*estimated) (observed)", + "1982-07-21": "Eid al-Fitr Holiday* (*estimated)", + "1982-07-22": "Eid al-Fitr Holiday* (*estimated)", + "1982-07-23": "Eid al-Fitr Holiday* (*estimated)", + "1982-07-24": "Eid al-Fitr Holiday* (*estimated)", + "1982-07-25": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1982-07-26": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1982-09-26": "Arafat Day* (*estimated)", + "1982-09-27": "Eid al-Adha Holiday* (*estimated)", + "1982-09-28": "Eid al-Adha Holiday* (*estimated)", + "1982-09-29": "Eid al-Adha Holiday* (*estimated)", + "1983-07-11": "Eid al-Fitr Holiday* (*estimated)", + "1983-07-12": "Eid al-Fitr Holiday* (*estimated)", + "1983-07-13": "Eid al-Fitr Holiday* (*estimated)", + "1983-07-14": "Eid al-Fitr Holiday* (*estimated)", + "1983-07-16": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1983-09-16": "Arafat Day* (*estimated)", + "1983-09-17": "Eid al-Adha Holiday* (*estimated)", + "1983-09-18": "Eid al-Adha Holiday* (*estimated)", + "1983-09-19": "Eid al-Adha Holiday* (*estimated)", + "1983-09-20": "Eid al-Adha Holiday* (*estimated) (observed)", + "1984-06-30": "Eid al-Fitr Holiday* (*estimated)", + "1984-07-01": "Eid al-Fitr Holiday* (*estimated)", + "1984-07-02": "Eid al-Fitr Holiday* (*estimated)", + "1984-07-03": "Eid al-Fitr Holiday* (*estimated)", + "1984-09-04": "Arafat Day* (*estimated)", + "1984-09-05": "Eid al-Adha Holiday* (*estimated)", + "1984-09-06": "Eid al-Adha Holiday* (*estimated)", + "1984-09-07": "Eid al-Adha Holiday* (*estimated)", + "1984-09-08": "Eid al-Adha Holiday* (*estimated) (observed)", + "1984-09-09": "Eid al-Adha Holiday* (*estimated) (observed)", + "1985-06-19": "Eid al-Fitr Holiday* (*estimated)", + "1985-06-20": "Eid al-Fitr Holiday* (*estimated)", + "1985-06-21": "Eid al-Fitr Holiday* (*estimated)", + "1985-06-22": "Eid al-Fitr Holiday* (*estimated)", + "1985-06-23": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1985-06-24": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1985-08-25": "Arafat Day* (*estimated)", + "1985-08-26": "Eid al-Adha Holiday* (*estimated)", + "1985-08-27": "Eid al-Adha Holiday* (*estimated)", + "1985-08-28": "Eid al-Adha Holiday* (*estimated)", + "1986-06-08": "Eid al-Fitr Holiday* (*estimated)", + "1986-06-09": "Eid al-Fitr Holiday* (*estimated)", + "1986-06-10": "Eid al-Fitr Holiday* (*estimated)", + "1986-06-11": "Eid al-Fitr Holiday* (*estimated)", + "1986-08-14": "Arafat Day* (*estimated)", + "1986-08-15": "Eid al-Adha Holiday* (*estimated)", + "1986-08-16": "Eid al-Adha Holiday* (*estimated)", + "1986-08-17": "Eid al-Adha Holiday* (*estimated)", + "1986-08-18": "Eid al-Adha Holiday* (*estimated) (observed)", + "1986-08-19": "Eid al-Adha Holiday* (*estimated) (observed)", + "1987-05-28": "Eid al-Fitr Holiday* (*estimated)", + "1987-05-29": "Eid al-Fitr Holiday* (*estimated)", + "1987-05-30": "Eid al-Fitr Holiday* (*estimated)", + "1987-05-31": "Eid al-Fitr Holiday* (*estimated)", + "1987-06-01": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1987-06-02": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1987-08-03": "Arafat Day* (*estimated)", + "1987-08-04": "Eid al-Adha Holiday* (*estimated)", + "1987-08-05": "Eid al-Adha Holiday* (*estimated)", + "1987-08-06": "Eid al-Adha Holiday* (*estimated)", + "1987-08-08": "Eid al-Adha Holiday* (*estimated) (observed)", + "1988-05-16": "Eid al-Fitr Holiday* (*estimated)", + "1988-05-17": "Eid al-Fitr Holiday* (*estimated)", + "1988-05-18": "Eid al-Fitr Holiday* (*estimated)", + "1988-05-19": "Eid al-Fitr Holiday* (*estimated)", + "1988-05-21": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1988-07-22": "Arafat Day* (*estimated)", + "1988-07-23": "Eid al-Adha Holiday* (*estimated)", + "1988-07-24": "Eid al-Adha Holiday* (*estimated)", + "1988-07-25": "Eid al-Adha Holiday* (*estimated)", + "1988-07-26": "Eid al-Adha Holiday* (*estimated) (observed)", + "1989-05-06": "Eid al-Fitr Holiday* (*estimated)", + "1989-05-07": "Eid al-Fitr Holiday* (*estimated)", + "1989-05-08": "Eid al-Fitr Holiday* (*estimated)", + "1989-05-09": "Eid al-Fitr Holiday* (*estimated)", + "1989-07-12": "Arafat Day* (*estimated)", + "1989-07-13": "Eid al-Adha Holiday* (*estimated)", + "1989-07-14": "Eid al-Adha Holiday* (*estimated)", + "1989-07-15": "Eid al-Adha Holiday* (*estimated)", + "1989-07-16": "Eid al-Adha Holiday* (*estimated) (observed)", + "1989-07-17": "Eid al-Adha Holiday* (*estimated) (observed)", + "1990-04-26": "Eid al-Fitr Holiday* (*estimated)", + "1990-04-27": "Eid al-Fitr Holiday* (*estimated)", + "1990-04-28": "Eid al-Fitr Holiday* (*estimated)", + "1990-04-29": "Eid al-Fitr Holiday* (*estimated)", + "1990-04-30": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1990-05-01": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1990-07-01": "Arafat Day* (*estimated)", + "1990-07-02": "Eid al-Adha Holiday* (*estimated)", + "1990-07-03": "Eid al-Adha Holiday* (*estimated)", + "1990-07-04": "Eid al-Adha Holiday* (*estimated)", + "1991-04-15": "Eid al-Fitr Holiday* (*estimated)", + "1991-04-16": "Eid al-Fitr Holiday* (*estimated)", + "1991-04-17": "Eid al-Fitr Holiday* (*estimated)", + "1991-04-18": "Eid al-Fitr Holiday* (*estimated)", + "1991-04-20": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1991-06-21": "Arafat Day* (*estimated)", + "1991-06-22": "Eid al-Adha Holiday* (*estimated)", + "1991-06-23": "Eid al-Adha Holiday* (*estimated)", + "1991-06-24": "Eid al-Adha Holiday* (*estimated)", + "1991-06-25": "Eid al-Adha Holiday* (*estimated) (observed)", + "1992-04-04": "Eid al-Fitr Holiday* (*estimated)", + "1992-04-05": "Eid al-Fitr Holiday* (*estimated)", + "1992-04-06": "Eid al-Fitr Holiday* (*estimated)", + "1992-04-07": "Eid al-Fitr Holiday* (*estimated)", + "1992-06-10": "Arafat Day* (*estimated)", + "1992-06-11": "Eid al-Adha Holiday* (*estimated)", + "1992-06-12": "Eid al-Adha Holiday* (*estimated)", + "1992-06-13": "Eid al-Adha Holiday* (*estimated)", + "1992-06-14": "Eid al-Adha Holiday* (*estimated) (observed)", + "1992-06-15": "Eid al-Adha Holiday* (*estimated) (observed)", + "1993-03-24": "Eid al-Fitr Holiday* (*estimated)", + "1993-03-25": "Eid al-Fitr Holiday* (*estimated)", + "1993-03-26": "Eid al-Fitr Holiday* (*estimated)", + "1993-03-27": "Eid al-Fitr Holiday* (*estimated)", + "1993-03-28": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1993-03-29": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1993-05-30": "Arafat Day* (*estimated)", + "1993-05-31": "Eid al-Adha Holiday* (*estimated)", + "1993-06-01": "Eid al-Adha Holiday* (*estimated)", + "1993-06-02": "Eid al-Adha Holiday* (*estimated)", + "1994-03-13": "Eid al-Fitr Holiday* (*estimated)", + "1994-03-14": "Eid al-Fitr Holiday* (*estimated)", + "1994-03-15": "Eid al-Fitr Holiday* (*estimated)", + "1994-03-16": "Eid al-Fitr Holiday* (*estimated)", + "1994-05-19": "Arafat Day* (*estimated)", + "1994-05-20": "Eid al-Adha Holiday* (*estimated)", + "1994-05-21": "Eid al-Adha Holiday* (*estimated)", + "1994-05-22": "Eid al-Adha Holiday* (*estimated)", + "1994-05-23": "Eid al-Adha Holiday* (*estimated) (observed)", + "1994-05-24": "Eid al-Adha Holiday* (*estimated) (observed)", + "1995-03-02": "Eid al-Fitr Holiday* (*estimated)", + "1995-03-03": "Eid al-Fitr Holiday* (*estimated)", + "1995-03-04": "Eid al-Fitr Holiday* (*estimated)", + "1995-03-05": "Eid al-Fitr Holiday* (*estimated)", + "1995-03-06": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1995-03-07": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1995-05-08": "Arafat Day* (*estimated)", + "1995-05-09": "Eid al-Adha Holiday* (*estimated)", + "1995-05-10": "Eid al-Adha Holiday* (*estimated)", + "1995-05-11": "Eid al-Adha Holiday* (*estimated)", + "1995-05-13": "Eid al-Adha Holiday* (*estimated) (observed)", + "1996-02-19": "Eid al-Fitr Holiday* (*estimated)", + "1996-02-20": "Eid al-Fitr Holiday* (*estimated)", + "1996-02-21": "Eid al-Fitr Holiday* (*estimated)", + "1996-02-22": "Eid al-Fitr Holiday* (*estimated)", + "1996-02-24": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1996-04-26": "Arafat Day* (*estimated)", + "1996-04-27": "Eid al-Adha Holiday* (*estimated)", + "1996-04-28": "Eid al-Adha Holiday* (*estimated)", + "1996-04-29": "Eid al-Adha Holiday* (*estimated)", + "1996-04-30": "Eid al-Adha Holiday* (*estimated) (observed)", + "1997-02-08": "Eid al-Fitr Holiday* (*estimated)", + "1997-02-09": "Eid al-Fitr Holiday* (*estimated)", + "1997-02-10": "Eid al-Fitr Holiday* (*estimated)", + "1997-02-11": "Eid al-Fitr Holiday* (*estimated)", + "1997-04-16": "Arafat Day* (*estimated)", + "1997-04-17": "Eid al-Adha Holiday* (*estimated)", + "1997-04-18": "Eid al-Adha Holiday* (*estimated)", + "1997-04-19": "Eid al-Adha Holiday* (*estimated)", + "1997-04-20": "Eid al-Adha Holiday* (*estimated) (observed)", + "1997-04-21": "Eid al-Adha Holiday* (*estimated) (observed)", + "1998-01-29": "Eid al-Fitr Holiday* (*estimated)", + "1998-01-30": "Eid al-Fitr Holiday* (*estimated)", + "1998-01-31": "Eid al-Fitr Holiday* (*estimated)", + "1998-02-01": "Eid al-Fitr Holiday* (*estimated)", + "1998-02-02": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1998-02-03": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1998-04-06": "Arafat Day* (*estimated)", + "1998-04-07": "Eid al-Adha Holiday* (*estimated)", + "1998-04-08": "Eid al-Adha Holiday* (*estimated)", + "1998-04-09": "Eid al-Adha Holiday* (*estimated)", + "1998-04-11": "Eid al-Adha Holiday* (*estimated) (observed)", + "1999-01-18": "Eid al-Fitr Holiday* (*estimated)", + "1999-01-19": "Eid al-Fitr Holiday* (*estimated)", + "1999-01-20": "Eid al-Fitr Holiday* (*estimated)", + "1999-01-21": "Eid al-Fitr Holiday* (*estimated)", + "1999-01-23": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1999-03-26": "Arafat Day* (*estimated)", + "1999-03-27": "Eid al-Adha Holiday* (*estimated)", + "1999-03-28": "Eid al-Adha Holiday* (*estimated)", + "1999-03-29": "Eid al-Adha Holiday* (*estimated)", + "1999-03-30": "Eid al-Adha Holiday* (*estimated) (observed)", + "2000-01-08": "Eid al-Fitr Holiday* (*estimated)", + "2000-01-09": "Eid al-Fitr Holiday* (*estimated)", + "2000-01-10": "Eid al-Fitr Holiday* (*estimated)", + "2000-01-11": "Eid al-Fitr Holiday* (*estimated)", + "2000-03-15": "Arafat Day* (*estimated)", + "2000-03-16": "Eid al-Adha Holiday* (*estimated)", + "2000-03-17": "Eid al-Adha Holiday* (*estimated)", + "2000-03-18": "Eid al-Adha Holiday* (*estimated)", + "2000-03-19": "Eid al-Adha Holiday* (*estimated) (observed)", + "2000-03-20": "Eid al-Adha Holiday* (*estimated) (observed)", + "2000-12-27": "Eid al-Fitr Holiday* (*estimated)", + "2000-12-28": "Eid al-Fitr Holiday* (*estimated)", + "2000-12-29": "Eid al-Fitr Holiday* (*estimated)", + "2000-12-30": "Eid al-Fitr Holiday* (*estimated)", + "2000-12-31": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2001-01-01": "Eid al-Fitr Holiday (observed)", + "2001-03-04": "Arafat Day* (*estimated)", + "2001-03-05": "Eid al-Adha Holiday* (*estimated)", + "2001-03-06": "Eid al-Adha Holiday* (*estimated)", + "2001-03-07": "Eid al-Adha Holiday* (*estimated)", + "2001-12-16": "Eid al-Fitr Holiday* (*estimated)", + "2001-12-17": "Eid al-Fitr Holiday* (*estimated)", + "2001-12-18": "Eid al-Fitr Holiday* (*estimated)", + "2001-12-19": "Eid al-Fitr Holiday* (*estimated)", + "2002-02-21": "Arafat Day* (*estimated)", + "2002-02-22": "Eid al-Adha Holiday* (*estimated)", + "2002-02-23": "Eid al-Adha Holiday* (*estimated)", + "2002-02-24": "Eid al-Adha Holiday* (*estimated)", + "2002-02-25": "Eid al-Adha Holiday* (*estimated) (observed)", + "2002-02-26": "Eid al-Adha Holiday* (*estimated) (observed)", + "2002-12-05": "Eid al-Fitr Holiday* (*estimated)", + "2002-12-06": "Eid al-Fitr Holiday* (*estimated)", + "2002-12-07": "Eid al-Fitr Holiday* (*estimated)", + "2002-12-08": "Eid al-Fitr Holiday* (*estimated)", + "2002-12-09": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2002-12-10": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2003-02-10": "Arafat Day* (*estimated)", + "2003-02-11": "Eid al-Adha Holiday* (*estimated)", + "2003-02-12": "Eid al-Adha Holiday* (*estimated)", + "2003-02-13": "Eid al-Adha Holiday* (*estimated)", + "2003-02-15": "Eid al-Adha Holiday* (*estimated) (observed)", + "2003-11-25": "Eid al-Fitr Holiday* (*estimated)", + "2003-11-26": "Eid al-Fitr Holiday* (*estimated)", + "2003-11-27": "Eid al-Fitr Holiday* (*estimated)", + "2003-11-28": "Eid al-Fitr Holiday* (*estimated)", + "2003-11-29": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2003-11-30": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2004-01-31": "Arafat Day* (*estimated)", + "2004-02-01": "Eid al-Adha Holiday* (*estimated)", + "2004-02-02": "Eid al-Adha Holiday* (*estimated)", + "2004-02-03": "Eid al-Adha Holiday* (*estimated)", + "2004-11-14": "Eid al-Fitr Holiday* (*estimated)", + "2004-11-15": "Eid al-Fitr Holiday* (*estimated)", + "2004-11-16": "Eid al-Fitr Holiday* (*estimated)", + "2004-11-17": "Eid al-Fitr Holiday* (*estimated)", + "2005-01-20": "Arafat Day* (*estimated)", + "2005-01-21": "Eid al-Adha Holiday* (*estimated)", + "2005-01-22": "Eid al-Adha Holiday* (*estimated)", + "2005-01-23": "Eid al-Adha Holiday* (*estimated)", + "2005-01-24": "Eid al-Adha Holiday* (*estimated) (observed)", + "2005-01-25": "Eid al-Adha Holiday* (*estimated) (observed)", + "2005-09-23": "National Day Holiday", + "2005-09-24": "National Day Holiday (observed)", + "2005-11-03": "Eid al-Fitr Holiday* (*estimated)", + "2005-11-04": "Eid al-Fitr Holiday* (*estimated)", + "2005-11-05": "Eid al-Fitr Holiday* (*estimated)", + "2005-11-06": "Eid al-Fitr Holiday* (*estimated)", + "2005-11-07": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2005-11-08": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2006-01-09": "Arafat Day* (*estimated)", + "2006-01-10": "Eid al-Adha Holiday* (*estimated)", + "2006-01-11": "Eid al-Adha Holiday* (*estimated)", + "2006-01-12": "Eid al-Adha Holiday* (*estimated)", + "2006-01-14": "Eid al-Adha Holiday* (*estimated) (observed)", + "2006-09-23": "National Day Holiday", + "2006-10-23": "Eid al-Fitr Holiday* (*estimated)", + "2006-10-24": "Eid al-Fitr Holiday* (*estimated)", + "2006-10-25": "Eid al-Fitr Holiday* (*estimated)", + "2006-10-26": "Eid al-Fitr Holiday* (*estimated)", + "2006-10-28": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2006-12-30": "Arafat Day* (*estimated)", + "2006-12-31": "Eid al-Adha Holiday* (*estimated)", + "2007-01-01": "Eid al-Adha Holiday* (*estimated)", + "2007-01-02": "Eid al-Adha Holiday* (*estimated)", + "2007-09-23": "National Day Holiday", + "2007-10-13": "Eid al-Fitr Holiday* (*estimated)", + "2007-10-14": "Eid al-Fitr Holiday* (*estimated)", + "2007-10-15": "Eid al-Fitr Holiday* (*estimated)", + "2007-10-16": "Eid al-Fitr Holiday* (*estimated)", + "2007-12-19": "Arafat Day* (*estimated)", + "2007-12-20": "Eid al-Adha Holiday* (*estimated)", + "2007-12-21": "Eid al-Adha Holiday* (*estimated)", + "2007-12-22": "Eid al-Adha Holiday* (*estimated)", + "2007-12-23": "Eid al-Adha Holiday* (*estimated) (observed)", + "2007-12-24": "Eid al-Adha Holiday* (*estimated) (observed)", + "2008-09-23": "National Day Holiday", + "2008-10-01": "Eid al-Fitr Holiday* (*estimated)", + "2008-10-02": "Eid al-Fitr Holiday* (*estimated)", + "2008-10-03": "Eid al-Fitr Holiday* (*estimated)", + "2008-10-04": "Eid al-Fitr Holiday* (*estimated)", + "2008-10-05": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2008-10-06": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2008-12-07": "Arafat Day* (*estimated)", + "2008-12-08": "Eid al-Adha Holiday* (*estimated)", + "2008-12-09": "Eid al-Adha Holiday* (*estimated)", + "2008-12-10": "Eid al-Adha Holiday* (*estimated)", + "2009-09-20": "Eid al-Fitr Holiday* (*estimated)", + "2009-09-21": "Eid al-Fitr Holiday* (*estimated)", + "2009-09-22": "Eid al-Fitr Holiday* (*estimated)", + "2009-09-23": "Eid al-Fitr Holiday* (*estimated)", + "2009-11-26": "Arafat Day* (*estimated)", + "2009-11-27": "Eid al-Adha Holiday* (*estimated)", + "2009-11-28": "Eid al-Adha Holiday* (*estimated)", + "2009-11-29": "Eid al-Adha Holiday* (*estimated)", + "2009-11-30": "Eid al-Adha Holiday* (*estimated) (observed)", + "2009-12-01": "Eid al-Adha Holiday* (*estimated) (observed)", + "2010-09-10": "Eid al-Fitr Holiday* (*estimated)", + "2010-09-11": "Eid al-Fitr Holiday* (*estimated)", + "2010-09-12": "Eid al-Fitr Holiday* (*estimated)", + "2010-09-13": "Eid al-Fitr Holiday* (*estimated)", + "2010-09-14": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2010-09-22": "National Day Holiday (observed)", + "2010-09-23": "National Day Holiday", + "2010-11-15": "Arafat Day* (*estimated)", + "2010-11-16": "Eid al-Adha Holiday* (*estimated)", + "2010-11-17": "Eid al-Adha Holiday* (*estimated)", + "2010-11-18": "Eid al-Adha Holiday* (*estimated)", + "2010-11-20": "Eid al-Adha Holiday* (*estimated) (observed)", + "2011-08-30": "Eid al-Fitr Holiday* (*estimated)", + "2011-08-31": "Eid al-Fitr Holiday* (*estimated)", + "2011-09-01": "Eid al-Fitr Holiday* (*estimated)", + "2011-09-02": "Eid al-Fitr Holiday* (*estimated)", + "2011-09-03": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2011-09-04": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2011-09-23": "National Day Holiday", + "2011-09-24": "National Day Holiday (observed)", + "2011-11-05": "Arafat Day* (*estimated)", + "2011-11-06": "Eid al-Adha Holiday* (*estimated)", + "2011-11-07": "Eid al-Adha Holiday* (*estimated)", + "2011-11-08": "Eid al-Adha Holiday* (*estimated)", + "2012-08-19": "Eid al-Fitr Holiday* (*estimated)", + "2012-08-20": "Eid al-Fitr Holiday* (*estimated)", + "2012-08-21": "Eid al-Fitr Holiday* (*estimated)", + "2012-08-22": "Eid al-Fitr Holiday* (*estimated)", + "2012-09-23": "National Day Holiday", + "2012-10-25": "Arafat Day* (*estimated)", + "2012-10-26": "Eid al-Adha Holiday* (*estimated)", + "2012-10-27": "Eid al-Adha Holiday* (*estimated)", + "2012-10-28": "Eid al-Adha Holiday* (*estimated)", + "2012-10-29": "Eid al-Adha Holiday* (*estimated) (observed)", + "2012-10-30": "Eid al-Adha Holiday* (*estimated) (observed)", + "2013-08-08": "Eid al-Fitr Holiday* (*estimated)", + "2013-08-09": "Eid al-Fitr Holiday* (*estimated)", + "2013-08-10": "Eid al-Fitr Holiday* (*estimated)", + "2013-08-11": "Eid al-Fitr Holiday* (*estimated)", + "2013-08-12": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2013-08-13": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2013-09-23": "National Day Holiday", + "2013-10-14": "Arafat Day* (*estimated)", + "2013-10-15": "Eid al-Adha Holiday* (*estimated)", + "2013-10-16": "Eid al-Adha Holiday* (*estimated)", + "2013-10-17": "Eid al-Adha Holiday* (*estimated)", + "2014-07-28": "Eid al-Fitr Holiday* (*estimated)", + "2014-07-29": "Eid al-Fitr Holiday* (*estimated)", + "2014-07-30": "Eid al-Fitr Holiday* (*estimated)", + "2014-07-31": "Eid al-Fitr Holiday* (*estimated)", + "2014-09-23": "National Day Holiday", + "2014-10-03": "Arafat Day* (*estimated)", + "2014-10-04": "Eid al-Adha Holiday* (*estimated)", + "2014-10-05": "Eid al-Adha Holiday* (*estimated)", + "2014-10-06": "Eid al-Adha Holiday* (*estimated)", + "2014-10-07": "Eid al-Adha Holiday* (*estimated) (observed)", + "2014-10-08": "Eid al-Adha Holiday* (*estimated) (observed)", + "2015-07-17": "Eid al-Fitr Holiday* (*estimated)", + "2015-07-18": "Eid al-Fitr Holiday* (*estimated)", + "2015-07-19": "Eid al-Fitr Holiday* (*estimated)", + "2015-07-20": "Eid al-Fitr Holiday* (*estimated)", + "2015-07-21": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2015-07-22": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2015-09-22": "Arafat Day* (*estimated)", + "2015-09-23": "Eid al-Adha Holiday* (*estimated)", + "2015-09-24": "Eid al-Adha Holiday* (*estimated)", + "2015-09-25": "Eid al-Adha Holiday* (*estimated)", + "2015-09-27": "Eid al-Adha Holiday* (*estimated) (observed)", + "2016-07-06": "Eid al-Fitr Holiday* (*estimated)", + "2016-07-07": "Eid al-Fitr Holiday* (*estimated)", + "2016-07-08": "Eid al-Fitr Holiday* (*estimated)", + "2016-07-09": "Eid al-Fitr Holiday* (*estimated)", + "2016-07-10": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2016-07-11": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2016-09-10": "Arafat Day* (*estimated)", + "2016-09-11": "Eid al-Adha Holiday* (*estimated)", + "2016-09-12": "Eid al-Adha Holiday* (*estimated)", + "2016-09-13": "Eid al-Adha Holiday* (*estimated)", + "2016-09-14": "Eid al-Adha Holiday* (*estimated) (observed)", + "2016-09-22": "National Day Holiday (observed)", + "2016-09-23": "National Day Holiday", + "2017-06-25": "Eid al-Fitr Holiday* (*estimated)", + "2017-06-26": "Eid al-Fitr Holiday* (*estimated)", + "2017-06-27": "Eid al-Fitr Holiday* (*estimated)", + "2017-06-28": "Eid al-Fitr Holiday* (*estimated)", + "2017-08-31": "Arafat Day* (*estimated)", + "2017-09-01": "Eid al-Adha Holiday* (*estimated)", + "2017-09-02": "Eid al-Adha Holiday* (*estimated)", + "2017-09-03": "Eid al-Adha Holiday* (*estimated)", + "2017-09-04": "Eid al-Adha Holiday* (*estimated) (observed)", + "2017-09-05": "Eid al-Adha Holiday* (*estimated) (observed)", + "2017-09-23": "National Day Holiday", + "2017-09-24": "National Day Holiday (observed)", + "2018-06-15": "Eid al-Fitr Holiday* (*estimated)", + "2018-06-16": "Eid al-Fitr Holiday* (*estimated)", + "2018-06-17": "Eid al-Fitr Holiday* (*estimated)", + "2018-06-18": "Eid al-Fitr Holiday* (*estimated)", + "2018-06-19": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2018-06-20": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2018-08-20": "Arafat Day* (*estimated)", + "2018-08-21": "Eid al-Adha Holiday* (*estimated)", + "2018-08-22": "Eid al-Adha Holiday* (*estimated)", + "2018-08-23": "Eid al-Adha Holiday* (*estimated)", + "2018-09-23": "National Day Holiday", + "2019-06-04": "Eid al-Fitr Holiday* (*estimated)", + "2019-06-05": "Eid al-Fitr Holiday* (*estimated)", + "2019-06-06": "Eid al-Fitr Holiday* (*estimated)", + "2019-06-07": "Eid al-Fitr Holiday* (*estimated)", + "2019-06-09": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2019-08-10": "Arafat Day* (*estimated)", + "2019-08-11": "Eid al-Adha Holiday* (*estimated)", + "2019-08-12": "Eid al-Adha Holiday* (*estimated)", + "2019-08-13": "Eid al-Adha Holiday* (*estimated)", + "2019-08-14": "Eid al-Adha Holiday* (*estimated) (observed)", + "2019-09-23": "National Day Holiday", + "2020-05-24": "Eid al-Fitr Holiday* (*estimated)", + "2020-05-25": "Eid al-Fitr Holiday* (*estimated)", + "2020-05-26": "Eid al-Fitr Holiday* (*estimated)", + "2020-05-27": "Eid al-Fitr Holiday* (*estimated)", + "2020-07-30": "Arafat Day* (*estimated)", + "2020-07-31": "Eid al-Adha Holiday* (*estimated)", + "2020-08-01": "Eid al-Adha Holiday* (*estimated)", + "2020-08-02": "Eid al-Adha Holiday* (*estimated)", + "2020-08-03": "Eid al-Adha Holiday* (*estimated) (observed)", + "2020-08-04": "Eid al-Adha Holiday* (*estimated) (observed)", + "2020-09-23": "National Day Holiday", + "2021-05-13": "Eid al-Fitr Holiday* (*estimated)", + "2021-05-14": "Eid al-Fitr Holiday* (*estimated)", + "2021-05-15": "Eid al-Fitr Holiday* (*estimated)", + "2021-05-16": "Eid al-Fitr Holiday* (*estimated)", + "2021-05-17": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2021-05-18": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2021-07-19": "Arafat Day* (*estimated)", + "2021-07-20": "Eid al-Adha Holiday* (*estimated)", + "2021-07-21": "Eid al-Adha Holiday* (*estimated)", + "2021-07-22": "Eid al-Adha Holiday* (*estimated)", + "2021-09-23": "National Day Holiday", + "2022-02-22": "Founding Day Holiday", + "2022-05-02": "Eid al-Fitr Holiday* (*estimated)", + "2022-05-03": "Eid al-Fitr Holiday* (*estimated)", + "2022-05-04": "Eid al-Fitr Holiday* (*estimated)", + "2022-05-05": "Eid al-Fitr Holiday* (*estimated)", + "2022-07-08": "Arafat Day* (*estimated)", + "2022-07-09": "Eid al-Adha Holiday* (*estimated)", + "2022-07-10": "Eid al-Adha Holiday* (*estimated)", + "2022-07-11": "Eid al-Adha Holiday* (*estimated)", + "2022-07-12": "Eid al-Adha Holiday* (*estimated) (observed)", + "2022-07-13": "Eid al-Adha Holiday* (*estimated) (observed)", + "2022-09-22": "National Day Holiday (observed)", + "2022-09-23": "National Day Holiday", + "2022-11-23": "A National Day", + "2023-02-22": "Founding Day Holiday", + "2023-04-21": "Eid al-Fitr Holiday* (*estimated)", + "2023-04-22": "Eid al-Fitr Holiday* (*estimated)", + "2023-04-23": "Eid al-Fitr Holiday* (*estimated)", + "2023-04-24": "Eid al-Fitr Holiday* (*estimated)", + "2023-04-25": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2023-04-26": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2023-06-27": "Arafat Day* (*estimated)", + "2023-06-28": "Eid al-Adha Holiday* (*estimated)", + "2023-06-29": "Eid al-Adha Holiday* (*estimated)", + "2023-06-30": "Eid al-Adha Holiday* (*estimated)", + "2023-07-02": "Eid al-Adha Holiday* (*estimated) (observed)", + "2023-09-23": "National Day Holiday", + "2023-09-24": "National Day Holiday (observed)", + "2024-02-22": "Founding Day Holiday", + "2024-04-10": "Eid al-Fitr Holiday* (*estimated)", + "2024-04-11": "Eid al-Fitr Holiday* (*estimated)", + "2024-04-12": "Eid al-Fitr Holiday* (*estimated)", + "2024-04-13": "Eid al-Fitr Holiday* (*estimated)", + "2024-04-14": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2024-04-15": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2024-06-15": "Arafat Day* (*estimated)", + "2024-06-16": "Eid al-Adha Holiday* (*estimated)", + "2024-06-17": "Eid al-Adha Holiday* (*estimated)", + "2024-06-18": "Eid al-Adha Holiday* (*estimated)", + "2024-06-19": "Eid al-Adha Holiday* (*estimated) (observed)", + "2024-09-23": "National Day Holiday", + "2025-02-22": "Founding Day Holiday", + "2025-02-23": "Founding Day Holiday (observed)", + "2025-03-30": "Eid al-Fitr Holiday* (*estimated)", + "2025-03-31": "Eid al-Fitr Holiday* (*estimated)", + "2025-04-01": "Eid al-Fitr Holiday* (*estimated)", + "2025-04-02": "Eid al-Fitr Holiday* (*estimated)", + "2025-06-05": "Arafat Day* (*estimated)", + "2025-06-06": "Eid al-Adha Holiday* (*estimated)", + "2025-06-07": "Eid al-Adha Holiday* (*estimated)", + "2025-06-08": "Eid al-Adha Holiday* (*estimated)", + "2025-06-09": "Eid al-Adha Holiday* (*estimated) (observed)", + "2025-06-10": "Eid al-Adha Holiday* (*estimated) (observed)", + "2025-09-23": "National Day Holiday", + "2026-02-22": "Founding Day Holiday", + "2026-03-20": "Eid al-Fitr Holiday* (*estimated)", + "2026-03-21": "Eid al-Fitr Holiday* (*estimated)", + "2026-03-22": "Eid al-Fitr Holiday* (*estimated)", + "2026-03-23": "Eid al-Fitr Holiday* (*estimated)", + "2026-03-24": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2026-03-25": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2026-05-26": "Arafat Day* (*estimated)", + "2026-05-27": "Eid al-Adha Holiday* (*estimated)", + "2026-05-28": "Eid al-Adha Holiday* (*estimated)", + "2026-05-29": "Eid al-Adha Holiday* (*estimated)", + "2026-05-31": "Eid al-Adha Holiday* (*estimated) (observed)", + "2026-09-23": "National Day Holiday", + "2027-02-22": "Founding Day Holiday", + "2027-03-09": "Eid al-Fitr Holiday* (*estimated)", + "2027-03-10": "Eid al-Fitr Holiday* (*estimated)", + "2027-03-11": "Eid al-Fitr Holiday* (*estimated)", + "2027-03-12": "Eid al-Fitr Holiday* (*estimated)", + "2027-03-14": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2027-05-15": "Arafat Day* (*estimated)", + "2027-05-16": "Eid al-Adha Holiday* (*estimated)", + "2027-05-17": "Eid al-Adha Holiday* (*estimated)", + "2027-05-18": "Eid al-Adha Holiday* (*estimated)", + "2027-05-19": "Eid al-Adha Holiday* (*estimated) (observed)", + "2027-09-23": "National Day Holiday", + "2028-02-22": "Founding Day Holiday", + "2028-02-26": "Eid al-Fitr Holiday* (*estimated)", + "2028-02-27": "Eid al-Fitr Holiday* (*estimated)", + "2028-02-28": "Eid al-Fitr Holiday* (*estimated)", + "2028-02-29": "Eid al-Fitr Holiday* (*estimated)", + "2028-03-01": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2028-05-04": "Arafat Day* (*estimated)", + "2028-05-05": "Eid al-Adha Holiday* (*estimated)", + "2028-05-06": "Eid al-Adha Holiday* (*estimated)", + "2028-05-07": "Eid al-Adha Holiday* (*estimated)", + "2028-05-08": "Eid al-Adha Holiday* (*estimated) (observed)", + "2028-05-09": "Eid al-Adha Holiday* (*estimated) (observed)", + "2028-09-23": "National Day Holiday", + "2028-09-24": "National Day Holiday (observed)", + "2029-02-14": "Eid al-Fitr Holiday* (*estimated)", + "2029-02-15": "Eid al-Fitr Holiday* (*estimated)", + "2029-02-16": "Eid al-Fitr Holiday* (*estimated)", + "2029-02-17": "Eid al-Fitr Holiday* (*estimated)", + "2029-02-18": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2029-02-19": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2029-02-22": "Founding Day Holiday", + "2029-04-23": "Arafat Day* (*estimated)", + "2029-04-24": "Eid al-Adha Holiday* (*estimated)", + "2029-04-25": "Eid al-Adha Holiday* (*estimated)", + "2029-04-26": "Eid al-Adha Holiday* (*estimated)", + "2029-09-23": "National Day Holiday", + "2030-02-04": "Eid al-Fitr Holiday* (*estimated)", + "2030-02-05": "Eid al-Fitr Holiday* (*estimated)", + "2030-02-06": "Eid al-Fitr Holiday* (*estimated)", + "2030-02-07": "Eid al-Fitr Holiday* (*estimated)", + "2030-02-21": "Founding Day Holiday (observed)", + "2030-02-22": "Founding Day Holiday", + "2030-04-12": "Arafat Day* (*estimated)", + "2030-04-13": "Eid al-Adha Holiday* (*estimated)", + "2030-04-14": "Eid al-Adha Holiday* (*estimated)", + "2030-04-15": "Eid al-Adha Holiday* (*estimated)", + "2030-04-16": "Eid al-Adha Holiday* (*estimated) (observed)", + "2030-04-17": "Eid al-Adha Holiday* (*estimated) (observed)", + "2030-09-23": "National Day Holiday", + "2031-01-24": "Eid al-Fitr Holiday* (*estimated)", + "2031-01-25": "Eid al-Fitr Holiday* (*estimated)", + "2031-01-26": "Eid al-Fitr Holiday* (*estimated)", + "2031-01-27": "Eid al-Fitr Holiday* (*estimated)", + "2031-01-28": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2031-01-29": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2031-02-22": "Founding Day Holiday", + "2031-02-23": "Founding Day Holiday (observed)", + "2031-04-01": "Arafat Day* (*estimated)", + "2031-04-02": "Eid al-Adha Holiday* (*estimated)", + "2031-04-03": "Eid al-Adha Holiday* (*estimated)", + "2031-04-04": "Eid al-Adha Holiday* (*estimated)", + "2031-04-06": "Eid al-Adha Holiday* (*estimated) (observed)", + "2031-09-23": "National Day Holiday", + "2032-01-14": "Eid al-Fitr Holiday* (*estimated)", + "2032-01-15": "Eid al-Fitr Holiday* (*estimated)", + "2032-01-16": "Eid al-Fitr Holiday* (*estimated)", + "2032-01-17": "Eid al-Fitr Holiday* (*estimated)", + "2032-01-18": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2032-01-19": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2032-02-22": "Founding Day Holiday", + "2032-03-21": "Arafat Day* (*estimated)", + "2032-03-22": "Eid al-Adha Holiday* (*estimated)", + "2032-03-23": "Eid al-Adha Holiday* (*estimated)", + "2032-03-24": "Eid al-Adha Holiday* (*estimated)", + "2032-09-23": "National Day Holiday", + "2033-01-02": "Eid al-Fitr Holiday* (*estimated)", + "2033-01-03": "Eid al-Fitr Holiday* (*estimated)", + "2033-01-04": "Eid al-Fitr Holiday* (*estimated)", + "2033-01-05": "Eid al-Fitr Holiday* (*estimated)", + "2033-02-22": "Founding Day Holiday", + "2033-03-10": "Arafat Day* (*estimated)", + "2033-03-11": "Eid al-Adha Holiday* (*estimated)", + "2033-03-12": "Eid al-Adha Holiday* (*estimated)", + "2033-03-13": "Eid al-Adha Holiday* (*estimated)", + "2033-03-14": "Eid al-Adha Holiday* (*estimated) (observed)", + "2033-03-15": "Eid al-Adha Holiday* (*estimated) (observed)", + "2033-09-22": "National Day Holiday (observed)", + "2033-09-23": "National Day Holiday", + "2033-12-23": "Eid al-Fitr Holiday* (*estimated)", + "2033-12-24": "Eid al-Fitr Holiday* (*estimated)", + "2033-12-25": "Eid al-Fitr Holiday* (*estimated)", + "2033-12-26": "Eid al-Fitr Holiday* (*estimated)", + "2033-12-27": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2033-12-28": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2034-02-22": "Founding Day Holiday", + "2034-02-28": "Arafat Day* (*estimated)", + "2034-03-01": "Eid al-Adha Holiday* (*estimated)", + "2034-03-02": "Eid al-Adha Holiday* (*estimated)", + "2034-03-03": "Eid al-Adha Holiday* (*estimated)", + "2034-03-05": "Eid al-Adha Holiday* (*estimated) (observed)", + "2034-09-23": "National Day Holiday", + "2034-09-24": "National Day Holiday (observed)", + "2034-12-12": "Eid al-Fitr Holiday* (*estimated)", + "2034-12-13": "Eid al-Fitr Holiday* (*estimated)", + "2034-12-14": "Eid al-Fitr Holiday* (*estimated)", + "2034-12-15": "Eid al-Fitr Holiday* (*estimated)", + "2034-12-17": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2035-02-17": "Arafat Day* (*estimated)", + "2035-02-18": "Eid al-Adha Holiday* (*estimated)", + "2035-02-19": "Eid al-Adha Holiday* (*estimated)", + "2035-02-20": "Eid al-Adha Holiday* (*estimated)", + "2035-02-21": "Eid al-Adha Holiday* (*estimated) (observed)", + "2035-02-22": "Founding Day Holiday", + "2035-09-23": "National Day Holiday", + "2035-12-01": "Eid al-Fitr Holiday* (*estimated)", + "2035-12-02": "Eid al-Fitr Holiday* (*estimated)", + "2035-12-03": "Eid al-Fitr Holiday* (*estimated)", + "2035-12-04": "Eid al-Fitr Holiday* (*estimated)", + "2035-12-05": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2036-02-06": "Arafat Day* (*estimated)", + "2036-02-07": "Eid al-Adha Holiday* (*estimated)", + "2036-02-08": "Eid al-Adha Holiday* (*estimated)", + "2036-02-09": "Eid al-Adha Holiday* (*estimated)", + "2036-02-10": "Eid al-Adha Holiday* (*estimated) (observed)", + "2036-02-11": "Eid al-Adha Holiday* (*estimated) (observed)", + "2036-02-21": "Founding Day Holiday (observed)", + "2036-02-22": "Founding Day Holiday", + "2036-09-23": "National Day Holiday", + "2036-11-19": "Eid al-Fitr Holiday* (*estimated)", + "2036-11-20": "Eid al-Fitr Holiday* (*estimated)", + "2036-11-21": "Eid al-Fitr Holiday* (*estimated)", + "2036-11-22": "Eid al-Fitr Holiday* (*estimated)", + "2036-11-23": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2036-11-24": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2037-01-25": "Arafat Day* (*estimated)", + "2037-01-26": "Eid al-Adha Holiday* (*estimated)", + "2037-01-27": "Eid al-Adha Holiday* (*estimated)", + "2037-01-28": "Eid al-Adha Holiday* (*estimated)", + "2037-02-22": "Founding Day Holiday", + "2037-09-23": "National Day Holiday", + "2037-11-08": "Eid al-Fitr Holiday* (*estimated)", + "2037-11-09": "Eid al-Fitr Holiday* (*estimated)", + "2037-11-10": "Eid al-Fitr Holiday* (*estimated)", + "2037-11-11": "Eid al-Fitr Holiday* (*estimated)", + "2038-01-15": "Arafat Day* (*estimated)", + "2038-01-16": "Eid al-Adha Holiday* (*estimated)", + "2038-01-17": "Eid al-Adha Holiday* (*estimated)", + "2038-01-18": "Eid al-Adha Holiday* (*estimated)", + "2038-01-19": "Eid al-Adha Holiday* (*estimated) (observed)", + "2038-01-20": "Eid al-Adha Holiday* (*estimated) (observed)", + "2038-02-22": "Founding Day Holiday", + "2038-09-23": "National Day Holiday", + "2038-10-29": "Eid al-Fitr Holiday* (*estimated)", + "2038-10-30": "Eid al-Fitr Holiday* (*estimated)", + "2038-10-31": "Eid al-Fitr Holiday* (*estimated)", + "2038-11-01": "Eid al-Fitr Holiday* (*estimated)", + "2038-11-02": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2038-11-03": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2039-01-04": "Arafat Day* (*estimated)", + "2039-01-05": "Eid al-Adha Holiday* (*estimated)", + "2039-01-06": "Eid al-Adha Holiday* (*estimated)", + "2039-01-07": "Eid al-Adha Holiday* (*estimated)", + "2039-01-09": "Eid al-Adha Holiday* (*estimated) (observed)", + "2039-02-22": "Founding Day Holiday", + "2039-09-22": "National Day Holiday (observed)", + "2039-09-23": "National Day Holiday", + "2039-10-19": "Eid al-Fitr Holiday* (*estimated)", + "2039-10-20": "Eid al-Fitr Holiday* (*estimated)", + "2039-10-21": "Eid al-Fitr Holiday* (*estimated)", + "2039-10-22": "Eid al-Fitr Holiday* (*estimated)", + "2039-10-23": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2039-10-24": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2039-12-25": "Arafat Day* (*estimated)", + "2039-12-26": "Eid al-Adha Holiday* (*estimated)", + "2039-12-27": "Eid al-Adha Holiday* (*estimated)", + "2039-12-28": "Eid al-Adha Holiday* (*estimated)", + "2040-02-22": "Founding Day Holiday", + "2040-09-23": "National Day Holiday", + "2040-10-07": "Eid al-Fitr Holiday* (*estimated)", + "2040-10-08": "Eid al-Fitr Holiday* (*estimated)", + "2040-10-09": "Eid al-Fitr Holiday* (*estimated)", + "2040-10-10": "Eid al-Fitr Holiday* (*estimated)", + "2040-12-13": "Arafat Day* (*estimated)", + "2040-12-14": "Eid al-Adha Holiday* (*estimated)", + "2040-12-15": "Eid al-Adha Holiday* (*estimated)", + "2040-12-16": "Eid al-Adha Holiday* (*estimated)", + "2040-12-17": "Eid al-Adha Holiday* (*estimated) (observed)", + "2040-12-18": "Eid al-Adha Holiday* (*estimated) (observed)", + "2041-02-21": "Founding Day Holiday (observed)", + "2041-02-22": "Founding Day Holiday", + "2041-09-23": "National Day Holiday", + "2041-09-26": "Eid al-Fitr Holiday* (*estimated)", + "2041-09-27": "Eid al-Fitr Holiday* (*estimated)", + "2041-09-28": "Eid al-Fitr Holiday* (*estimated)", + "2041-09-29": "Eid al-Fitr Holiday* (*estimated)", + "2041-09-30": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2041-10-01": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2041-12-03": "Arafat Day* (*estimated)", + "2041-12-04": "Eid al-Adha Holiday* (*estimated)", + "2041-12-05": "Eid al-Adha Holiday* (*estimated)", + "2041-12-06": "Eid al-Adha Holiday* (*estimated)", + "2041-12-08": "Eid al-Adha Holiday* (*estimated) (observed)", + "2042-02-22": "Founding Day Holiday", + "2042-02-23": "Founding Day Holiday (observed)", + "2042-09-15": "Eid al-Fitr Holiday* (*estimated)", + "2042-09-16": "Eid al-Fitr Holiday* (*estimated)", + "2042-09-17": "Eid al-Fitr Holiday* (*estimated)", + "2042-09-18": "Eid al-Fitr Holiday* (*estimated)", + "2042-09-23": "National Day Holiday", + "2042-11-22": "Arafat Day* (*estimated)", + "2042-11-23": "Eid al-Adha Holiday* (*estimated)", + "2042-11-24": "Eid al-Adha Holiday* (*estimated)", + "2042-11-25": "Eid al-Adha Holiday* (*estimated)", + "2042-11-26": "Eid al-Adha Holiday* (*estimated) (observed)", + "2043-02-22": "Founding Day Holiday", + "2043-09-04": "Eid al-Fitr Holiday* (*estimated)", + "2043-09-05": "Eid al-Fitr Holiday* (*estimated)", + "2043-09-06": "Eid al-Fitr Holiday* (*estimated)", + "2043-09-07": "Eid al-Fitr Holiday* (*estimated)", + "2043-09-08": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2043-09-09": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2043-09-23": "National Day Holiday", + "2043-11-11": "Arafat Day* (*estimated)", + "2043-11-12": "Eid al-Adha Holiday* (*estimated)", + "2043-11-13": "Eid al-Adha Holiday* (*estimated)", + "2043-11-14": "Eid al-Adha Holiday* (*estimated)", + "2043-11-15": "Eid al-Adha Holiday* (*estimated) (observed)", + "2043-11-16": "Eid al-Adha Holiday* (*estimated) (observed)", + "2044-02-22": "Founding Day Holiday", + "2044-08-24": "Eid al-Fitr Holiday* (*estimated)", + "2044-08-25": "Eid al-Fitr Holiday* (*estimated)", + "2044-08-26": "Eid al-Fitr Holiday* (*estimated)", + "2044-08-27": "Eid al-Fitr Holiday* (*estimated)", + "2044-08-28": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2044-08-29": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2044-09-22": "National Day Holiday (observed)", + "2044-09-23": "National Day Holiday", + "2044-10-30": "Arafat Day* (*estimated)", + "2044-10-31": "Eid al-Adha Holiday* (*estimated)", + "2044-11-01": "Eid al-Adha Holiday* (*estimated)", + "2044-11-02": "Eid al-Adha Holiday* (*estimated)", + "2045-02-22": "Founding Day Holiday", + "2045-08-14": "Eid al-Fitr Holiday* (*estimated)", + "2045-08-15": "Eid al-Fitr Holiday* (*estimated)", + "2045-08-16": "Eid al-Fitr Holiday* (*estimated)", + "2045-08-17": "Eid al-Fitr Holiday* (*estimated)", + "2045-09-23": "National Day Holiday", + "2045-09-24": "National Day Holiday (observed)", + "2045-10-20": "Arafat Day* (*estimated)", + "2045-10-21": "Eid al-Adha Holiday* (*estimated)", + "2045-10-22": "Eid al-Adha Holiday* (*estimated)", + "2045-10-23": "Eid al-Adha Holiday* (*estimated)", + "2045-10-24": "Eid al-Adha Holiday* (*estimated) (observed)", + "2045-10-25": "Eid al-Adha Holiday* (*estimated) (observed)", + "2046-02-22": "Founding Day Holiday", + "2046-08-03": "Eid al-Fitr Holiday* (*estimated)", + "2046-08-04": "Eid al-Fitr Holiday* (*estimated)", + "2046-08-05": "Eid al-Fitr Holiday* (*estimated)", + "2046-08-06": "Eid al-Fitr Holiday* (*estimated)", + "2046-08-07": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2046-08-08": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2046-09-23": "National Day Holiday", + "2046-10-09": "Arafat Day* (*estimated)", + "2046-10-10": "Eid al-Adha Holiday* (*estimated)", + "2046-10-11": "Eid al-Adha Holiday* (*estimated)", + "2046-10-12": "Eid al-Adha Holiday* (*estimated)", + "2046-10-14": "Eid al-Adha Holiday* (*estimated) (observed)", + "2047-02-21": "Founding Day Holiday (observed)", + "2047-02-22": "Founding Day Holiday", + "2047-07-24": "Eid al-Fitr Holiday* (*estimated)", + "2047-07-25": "Eid al-Fitr Holiday* (*estimated)", + "2047-07-26": "Eid al-Fitr Holiday* (*estimated)", + "2047-07-27": "Eid al-Fitr Holiday* (*estimated)", + "2047-07-28": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2047-07-29": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2047-09-23": "National Day Holiday", + "2047-09-29": "Arafat Day* (*estimated)", + "2047-09-30": "Eid al-Adha Holiday* (*estimated)", + "2047-10-01": "Eid al-Adha Holiday* (*estimated)", + "2047-10-02": "Eid al-Adha Holiday* (*estimated)", + "2048-02-22": "Founding Day Holiday", + "2048-02-23": "Founding Day Holiday (observed)", + "2048-07-12": "Eid al-Fitr Holiday* (*estimated)", + "2048-07-13": "Eid al-Fitr Holiday* (*estimated)", + "2048-07-14": "Eid al-Fitr Holiday* (*estimated)", + "2048-07-15": "Eid al-Fitr Holiday* (*estimated)", + "2048-09-18": "Arafat Day* (*estimated)", + "2048-09-19": "Eid al-Adha Holiday* (*estimated)", + "2048-09-20": "Eid al-Adha Holiday* (*estimated)", + "2048-09-21": "Eid al-Adha Holiday* (*estimated)", + "2048-09-22": "Eid al-Adha Holiday* (*estimated) (observed)", + "2048-09-23": "Eid al-Adha Holiday* (*estimated) (observed)", + "2049-02-22": "Founding Day Holiday", + "2049-07-01": "Eid al-Fitr Holiday* (*estimated)", + "2049-07-02": "Eid al-Fitr Holiday* (*estimated)", + "2049-07-03": "Eid al-Fitr Holiday* (*estimated)", + "2049-07-04": "Eid al-Fitr Holiday* (*estimated)", + "2049-07-05": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2049-07-06": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2049-09-07": "Arafat Day* (*estimated)", + "2049-09-08": "Eid al-Adha Holiday* (*estimated)", + "2049-09-09": "Eid al-Adha Holiday* (*estimated)", + "2049-09-10": "Eid al-Adha Holiday* (*estimated)", + "2049-09-12": "Eid al-Adha Holiday* (*estimated) (observed)", + "2049-09-23": "National Day Holiday", + "2050-02-22": "Founding Day Holiday", + "2050-06-20": "Eid al-Fitr Holiday* (*estimated)", + "2050-06-21": "Eid al-Fitr Holiday* (*estimated)", + "2050-06-22": "Eid al-Fitr Holiday* (*estimated)", + "2050-06-23": "Eid al-Fitr Holiday* (*estimated)", + "2050-08-27": "Arafat Day* (*estimated)", + "2050-08-28": "Eid al-Adha Holiday* (*estimated)", + "2050-08-29": "Eid al-Adha Holiday* (*estimated)", + "2050-08-30": "Eid al-Adha Holiday* (*estimated)", + "2050-08-31": "Eid al-Adha Holiday* (*estimated) (observed)", + "2050-09-22": "National Day Holiday (observed)", + "2050-09-23": "National Day Holiday" +} diff --git a/snapshots/countries/SE.json b/snapshots/countries/SE.json new file mode 100644 index 000000000..f327ba1a1 --- /dev/null +++ b/snapshots/countries/SE.json @@ -0,0 +1,6579 @@ +{ + "1950-01-01": "New Year's Day; Sunday", + "1950-01-06": "Epiphany", + "1950-01-08": "Sunday", + "1950-01-15": "Sunday", + "1950-01-22": "Sunday", + "1950-01-29": "Sunday", + "1950-02-05": "Sunday", + "1950-02-12": "Sunday", + "1950-02-19": "Sunday", + "1950-02-26": "Sunday", + "1950-03-05": "Sunday", + "1950-03-12": "Sunday", + "1950-03-19": "Sunday", + "1950-03-25": "Feast of the Annunciation", + "1950-03-26": "Sunday", + "1950-04-02": "Sunday", + "1950-04-07": "Good Friday", + "1950-04-09": "Easter Sunday; Sunday", + "1950-04-10": "Easter Monday", + "1950-04-16": "Sunday", + "1950-04-23": "Sunday", + "1950-04-30": "Sunday", + "1950-05-01": "May Day", + "1950-05-07": "Sunday", + "1950-05-14": "Sunday", + "1950-05-18": "Ascension Day", + "1950-05-21": "Sunday", + "1950-05-28": "Sunday; Whit Sunday", + "1950-05-29": "Whit Monday", + "1950-06-04": "Sunday", + "1950-06-11": "Sunday", + "1950-06-18": "Sunday", + "1950-06-23": "Midsummer Eve", + "1950-06-24": "Midsummer Day", + "1950-06-25": "Sunday", + "1950-07-02": "Sunday", + "1950-07-09": "Sunday", + "1950-07-16": "Sunday", + "1950-07-23": "Sunday", + "1950-07-30": "Sunday", + "1950-08-06": "Sunday", + "1950-08-13": "Sunday", + "1950-08-20": "Sunday", + "1950-08-27": "Sunday", + "1950-09-03": "Sunday", + "1950-09-10": "Sunday", + "1950-09-17": "Sunday", + "1950-09-24": "Sunday", + "1950-10-01": "Sunday", + "1950-10-08": "Sunday", + "1950-10-15": "Sunday", + "1950-10-22": "Sunday", + "1950-10-29": "Sunday", + "1950-11-04": "All Saints' Day", + "1950-11-05": "Sunday", + "1950-11-12": "Sunday", + "1950-11-19": "Sunday", + "1950-11-26": "Sunday", + "1950-12-03": "Sunday", + "1950-12-10": "Sunday", + "1950-12-17": "Sunday", + "1950-12-24": "Christmas Eve; Sunday", + "1950-12-25": "Christmas Day", + "1950-12-26": "Second Day of Christmas", + "1950-12-31": "New Year's Eve; Sunday", + "1951-01-01": "New Year's Day", + "1951-01-06": "Epiphany", + "1951-01-07": "Sunday", + "1951-01-14": "Sunday", + "1951-01-21": "Sunday", + "1951-01-28": "Sunday", + "1951-02-04": "Sunday", + "1951-02-11": "Sunday", + "1951-02-18": "Sunday", + "1951-02-25": "Sunday", + "1951-03-04": "Sunday", + "1951-03-11": "Sunday", + "1951-03-18": "Sunday", + "1951-03-23": "Good Friday", + "1951-03-25": "Easter Sunday; Feast of the Annunciation; Sunday", + "1951-03-26": "Easter Monday", + "1951-04-01": "Sunday", + "1951-04-08": "Sunday", + "1951-04-15": "Sunday", + "1951-04-22": "Sunday", + "1951-04-29": "Sunday", + "1951-05-01": "May Day", + "1951-05-03": "Ascension Day", + "1951-05-06": "Sunday", + "1951-05-13": "Sunday; Whit Sunday", + "1951-05-14": "Whit Monday", + "1951-05-20": "Sunday", + "1951-05-27": "Sunday", + "1951-06-03": "Sunday", + "1951-06-10": "Sunday", + "1951-06-17": "Sunday", + "1951-06-23": "Midsummer Eve", + "1951-06-24": "Midsummer Day; Sunday", + "1951-07-01": "Sunday", + "1951-07-08": "Sunday", + "1951-07-15": "Sunday", + "1951-07-22": "Sunday", + "1951-07-29": "Sunday", + "1951-08-05": "Sunday", + "1951-08-12": "Sunday", + "1951-08-19": "Sunday", + "1951-08-26": "Sunday", + "1951-09-02": "Sunday", + "1951-09-09": "Sunday", + "1951-09-16": "Sunday", + "1951-09-23": "Sunday", + "1951-09-30": "Sunday", + "1951-10-07": "Sunday", + "1951-10-14": "Sunday", + "1951-10-21": "Sunday", + "1951-10-28": "Sunday", + "1951-11-03": "All Saints' Day", + "1951-11-04": "Sunday", + "1951-11-11": "Sunday", + "1951-11-18": "Sunday", + "1951-11-25": "Sunday", + "1951-12-02": "Sunday", + "1951-12-09": "Sunday", + "1951-12-16": "Sunday", + "1951-12-23": "Sunday", + "1951-12-24": "Christmas Eve", + "1951-12-25": "Christmas Day", + "1951-12-26": "Second Day of Christmas", + "1951-12-30": "Sunday", + "1951-12-31": "New Year's Eve", + "1952-01-01": "New Year's Day", + "1952-01-06": "Epiphany; Sunday", + "1952-01-13": "Sunday", + "1952-01-20": "Sunday", + "1952-01-27": "Sunday", + "1952-02-03": "Sunday", + "1952-02-10": "Sunday", + "1952-02-17": "Sunday", + "1952-02-24": "Sunday", + "1952-03-02": "Sunday", + "1952-03-09": "Sunday", + "1952-03-16": "Sunday", + "1952-03-23": "Sunday", + "1952-03-25": "Feast of the Annunciation", + "1952-03-30": "Sunday", + "1952-04-06": "Sunday", + "1952-04-11": "Good Friday", + "1952-04-13": "Easter Sunday; Sunday", + "1952-04-14": "Easter Monday", + "1952-04-20": "Sunday", + "1952-04-27": "Sunday", + "1952-05-01": "May Day", + "1952-05-04": "Sunday", + "1952-05-11": "Sunday", + "1952-05-18": "Sunday", + "1952-05-22": "Ascension Day", + "1952-05-25": "Sunday", + "1952-06-01": "Sunday; Whit Sunday", + "1952-06-02": "Whit Monday", + "1952-06-08": "Sunday", + "1952-06-15": "Sunday", + "1952-06-22": "Sunday", + "1952-06-23": "Midsummer Eve", + "1952-06-24": "Midsummer Day", + "1952-06-29": "Sunday", + "1952-07-06": "Sunday", + "1952-07-13": "Sunday", + "1952-07-20": "Sunday", + "1952-07-27": "Sunday", + "1952-08-03": "Sunday", + "1952-08-10": "Sunday", + "1952-08-17": "Sunday", + "1952-08-24": "Sunday", + "1952-08-31": "Sunday", + "1952-09-07": "Sunday", + "1952-09-14": "Sunday", + "1952-09-21": "Sunday", + "1952-09-28": "Sunday", + "1952-10-05": "Sunday", + "1952-10-12": "Sunday", + "1952-10-19": "Sunday", + "1952-10-26": "Sunday", + "1952-11-01": "All Saints' Day", + "1952-11-02": "Sunday", + "1952-11-09": "Sunday", + "1952-11-16": "Sunday", + "1952-11-23": "Sunday", + "1952-11-30": "Sunday", + "1952-12-07": "Sunday", + "1952-12-14": "Sunday", + "1952-12-21": "Sunday", + "1952-12-24": "Christmas Eve", + "1952-12-25": "Christmas Day", + "1952-12-26": "Second Day of Christmas", + "1952-12-28": "Sunday", + "1952-12-31": "New Year's Eve", + "1953-01-01": "New Year's Day", + "1953-01-04": "Sunday", + "1953-01-06": "Epiphany", + "1953-01-11": "Sunday", + "1953-01-18": "Sunday", + "1953-01-25": "Sunday", + "1953-02-01": "Sunday", + "1953-02-08": "Sunday", + "1953-02-15": "Sunday", + "1953-02-22": "Sunday", + "1953-03-01": "Sunday", + "1953-03-08": "Sunday", + "1953-03-15": "Sunday", + "1953-03-22": "Sunday", + "1953-03-25": "Feast of the Annunciation", + "1953-03-29": "Sunday", + "1953-04-03": "Good Friday", + "1953-04-05": "Easter Sunday; Sunday", + "1953-04-06": "Easter Monday", + "1953-04-12": "Sunday", + "1953-04-19": "Sunday", + "1953-04-26": "Sunday", + "1953-05-01": "May Day", + "1953-05-03": "Sunday", + "1953-05-10": "Sunday", + "1953-05-14": "Ascension Day", + "1953-05-17": "Sunday", + "1953-05-24": "Sunday; Whit Sunday", + "1953-05-25": "Whit Monday", + "1953-05-31": "Sunday", + "1953-06-07": "Sunday", + "1953-06-14": "Sunday", + "1953-06-19": "Midsummer Eve", + "1953-06-20": "Midsummer Day", + "1953-06-21": "Sunday", + "1953-06-28": "Sunday", + "1953-07-05": "Sunday", + "1953-07-12": "Sunday", + "1953-07-19": "Sunday", + "1953-07-26": "Sunday", + "1953-08-02": "Sunday", + "1953-08-09": "Sunday", + "1953-08-16": "Sunday", + "1953-08-23": "Sunday", + "1953-08-30": "Sunday", + "1953-09-06": "Sunday", + "1953-09-13": "Sunday", + "1953-09-20": "Sunday", + "1953-09-27": "Sunday", + "1953-10-04": "Sunday", + "1953-10-11": "Sunday", + "1953-10-18": "Sunday", + "1953-10-25": "Sunday", + "1953-10-31": "All Saints' Day", + "1953-11-01": "Sunday", + "1953-11-08": "Sunday", + "1953-11-15": "Sunday", + "1953-11-22": "Sunday", + "1953-11-29": "Sunday", + "1953-12-06": "Sunday", + "1953-12-13": "Sunday", + "1953-12-20": "Sunday", + "1953-12-24": "Christmas Eve", + "1953-12-25": "Christmas Day", + "1953-12-26": "Second Day of Christmas", + "1953-12-27": "Sunday", + "1953-12-31": "New Year's Eve", + "1954-01-01": "New Year's Day", + "1954-01-03": "Sunday", + "1954-01-06": "Epiphany", + "1954-01-10": "Sunday", + "1954-01-17": "Sunday", + "1954-01-24": "Sunday", + "1954-01-31": "Sunday", + "1954-02-07": "Sunday", + "1954-02-14": "Sunday", + "1954-02-21": "Sunday", + "1954-02-28": "Sunday", + "1954-03-07": "Sunday", + "1954-03-14": "Sunday", + "1954-03-21": "Sunday", + "1954-03-28": "Sunday", + "1954-04-04": "Sunday", + "1954-04-11": "Sunday", + "1954-04-16": "Good Friday", + "1954-04-18": "Easter Sunday; Sunday", + "1954-04-19": "Easter Monday", + "1954-04-25": "Sunday", + "1954-05-01": "May Day", + "1954-05-02": "Sunday", + "1954-05-09": "Sunday", + "1954-05-16": "Sunday", + "1954-05-23": "Sunday", + "1954-05-27": "Ascension Day", + "1954-05-30": "Sunday", + "1954-06-06": "Sunday; Whit Sunday", + "1954-06-07": "Whit Monday", + "1954-06-13": "Sunday", + "1954-06-20": "Sunday", + "1954-06-25": "Midsummer Eve", + "1954-06-26": "Midsummer Day", + "1954-06-27": "Sunday", + "1954-07-04": "Sunday", + "1954-07-11": "Sunday", + "1954-07-18": "Sunday", + "1954-07-25": "Sunday", + "1954-08-01": "Sunday", + "1954-08-08": "Sunday", + "1954-08-15": "Sunday", + "1954-08-22": "Sunday", + "1954-08-29": "Sunday", + "1954-09-05": "Sunday", + "1954-09-12": "Sunday", + "1954-09-19": "Sunday", + "1954-09-26": "Sunday", + "1954-10-03": "Sunday", + "1954-10-10": "Sunday", + "1954-10-17": "Sunday", + "1954-10-24": "Sunday", + "1954-10-31": "Sunday", + "1954-11-06": "All Saints' Day", + "1954-11-07": "Sunday", + "1954-11-14": "Sunday", + "1954-11-21": "Sunday", + "1954-11-28": "Sunday", + "1954-12-05": "Sunday", + "1954-12-12": "Sunday", + "1954-12-19": "Sunday", + "1954-12-24": "Christmas Eve", + "1954-12-25": "Christmas Day", + "1954-12-26": "Second Day of Christmas; Sunday", + "1954-12-31": "New Year's Eve", + "1955-01-01": "New Year's Day", + "1955-01-02": "Sunday", + "1955-01-06": "Epiphany", + "1955-01-09": "Sunday", + "1955-01-16": "Sunday", + "1955-01-23": "Sunday", + "1955-01-30": "Sunday", + "1955-02-06": "Sunday", + "1955-02-13": "Sunday", + "1955-02-20": "Sunday", + "1955-02-27": "Sunday", + "1955-03-06": "Sunday", + "1955-03-13": "Sunday", + "1955-03-20": "Sunday", + "1955-03-27": "Sunday", + "1955-04-03": "Sunday", + "1955-04-08": "Good Friday", + "1955-04-10": "Easter Sunday; Sunday", + "1955-04-11": "Easter Monday", + "1955-04-17": "Sunday", + "1955-04-24": "Sunday", + "1955-05-01": "May Day; Sunday", + "1955-05-08": "Sunday", + "1955-05-15": "Sunday", + "1955-05-19": "Ascension Day", + "1955-05-22": "Sunday", + "1955-05-29": "Sunday; Whit Sunday", + "1955-05-30": "Whit Monday", + "1955-06-05": "Sunday", + "1955-06-12": "Sunday", + "1955-06-19": "Sunday", + "1955-06-24": "Midsummer Eve", + "1955-06-25": "Midsummer Day", + "1955-06-26": "Sunday", + "1955-07-03": "Sunday", + "1955-07-10": "Sunday", + "1955-07-17": "Sunday", + "1955-07-24": "Sunday", + "1955-07-31": "Sunday", + "1955-08-07": "Sunday", + "1955-08-14": "Sunday", + "1955-08-21": "Sunday", + "1955-08-28": "Sunday", + "1955-09-04": "Sunday", + "1955-09-11": "Sunday", + "1955-09-18": "Sunday", + "1955-09-25": "Sunday", + "1955-10-02": "Sunday", + "1955-10-09": "Sunday", + "1955-10-16": "Sunday", + "1955-10-23": "Sunday", + "1955-10-30": "Sunday", + "1955-11-05": "All Saints' Day", + "1955-11-06": "Sunday", + "1955-11-13": "Sunday", + "1955-11-20": "Sunday", + "1955-11-27": "Sunday", + "1955-12-04": "Sunday", + "1955-12-11": "Sunday", + "1955-12-18": "Sunday", + "1955-12-24": "Christmas Eve", + "1955-12-25": "Christmas Day; Sunday", + "1955-12-26": "Second Day of Christmas", + "1955-12-31": "New Year's Eve", + "1956-01-01": "New Year's Day; Sunday", + "1956-01-06": "Epiphany", + "1956-01-08": "Sunday", + "1956-01-15": "Sunday", + "1956-01-22": "Sunday", + "1956-01-29": "Sunday", + "1956-02-05": "Sunday", + "1956-02-12": "Sunday", + "1956-02-19": "Sunday", + "1956-02-26": "Sunday", + "1956-03-04": "Sunday", + "1956-03-11": "Sunday", + "1956-03-18": "Sunday", + "1956-03-25": "Sunday", + "1956-03-30": "Good Friday", + "1956-04-01": "Easter Sunday; Sunday", + "1956-04-02": "Easter Monday", + "1956-04-08": "Sunday", + "1956-04-15": "Sunday", + "1956-04-22": "Sunday", + "1956-04-29": "Sunday", + "1956-05-01": "May Day", + "1956-05-06": "Sunday", + "1956-05-10": "Ascension Day", + "1956-05-13": "Sunday", + "1956-05-20": "Sunday; Whit Sunday", + "1956-05-21": "Whit Monday", + "1956-05-27": "Sunday", + "1956-06-03": "Sunday", + "1956-06-10": "Sunday", + "1956-06-17": "Sunday", + "1956-06-22": "Midsummer Eve", + "1956-06-23": "Midsummer Day", + "1956-06-24": "Sunday", + "1956-07-01": "Sunday", + "1956-07-08": "Sunday", + "1956-07-15": "Sunday", + "1956-07-22": "Sunday", + "1956-07-29": "Sunday", + "1956-08-05": "Sunday", + "1956-08-12": "Sunday", + "1956-08-19": "Sunday", + "1956-08-26": "Sunday", + "1956-09-02": "Sunday", + "1956-09-09": "Sunday", + "1956-09-16": "Sunday", + "1956-09-23": "Sunday", + "1956-09-30": "Sunday", + "1956-10-07": "Sunday", + "1956-10-14": "Sunday", + "1956-10-21": "Sunday", + "1956-10-28": "Sunday", + "1956-11-03": "All Saints' Day", + "1956-11-04": "Sunday", + "1956-11-11": "Sunday", + "1956-11-18": "Sunday", + "1956-11-25": "Sunday", + "1956-12-02": "Sunday", + "1956-12-09": "Sunday", + "1956-12-16": "Sunday", + "1956-12-23": "Sunday", + "1956-12-24": "Christmas Eve", + "1956-12-25": "Christmas Day", + "1956-12-26": "Second Day of Christmas", + "1956-12-30": "Sunday", + "1956-12-31": "New Year's Eve", + "1957-01-01": "New Year's Day", + "1957-01-06": "Epiphany; Sunday", + "1957-01-13": "Sunday", + "1957-01-20": "Sunday", + "1957-01-27": "Sunday", + "1957-02-03": "Sunday", + "1957-02-10": "Sunday", + "1957-02-17": "Sunday", + "1957-02-24": "Sunday", + "1957-03-03": "Sunday", + "1957-03-10": "Sunday", + "1957-03-17": "Sunday", + "1957-03-24": "Sunday", + "1957-03-31": "Sunday", + "1957-04-07": "Sunday", + "1957-04-14": "Sunday", + "1957-04-19": "Good Friday", + "1957-04-21": "Easter Sunday; Sunday", + "1957-04-22": "Easter Monday", + "1957-04-28": "Sunday", + "1957-05-01": "May Day", + "1957-05-05": "Sunday", + "1957-05-12": "Sunday", + "1957-05-19": "Sunday", + "1957-05-26": "Sunday", + "1957-05-30": "Ascension Day", + "1957-06-02": "Sunday", + "1957-06-09": "Sunday; Whit Sunday", + "1957-06-10": "Whit Monday", + "1957-06-16": "Sunday", + "1957-06-21": "Midsummer Eve", + "1957-06-22": "Midsummer Day", + "1957-06-23": "Sunday", + "1957-06-30": "Sunday", + "1957-07-07": "Sunday", + "1957-07-14": "Sunday", + "1957-07-21": "Sunday", + "1957-07-28": "Sunday", + "1957-08-04": "Sunday", + "1957-08-11": "Sunday", + "1957-08-18": "Sunday", + "1957-08-25": "Sunday", + "1957-09-01": "Sunday", + "1957-09-08": "Sunday", + "1957-09-15": "Sunday", + "1957-09-22": "Sunday", + "1957-09-29": "Sunday", + "1957-10-06": "Sunday", + "1957-10-13": "Sunday", + "1957-10-20": "Sunday", + "1957-10-27": "Sunday", + "1957-11-02": "All Saints' Day", + "1957-11-03": "Sunday", + "1957-11-10": "Sunday", + "1957-11-17": "Sunday", + "1957-11-24": "Sunday", + "1957-12-01": "Sunday", + "1957-12-08": "Sunday", + "1957-12-15": "Sunday", + "1957-12-22": "Sunday", + "1957-12-24": "Christmas Eve", + "1957-12-25": "Christmas Day", + "1957-12-26": "Second Day of Christmas", + "1957-12-29": "Sunday", + "1957-12-31": "New Year's Eve", + "1958-01-01": "New Year's Day", + "1958-01-05": "Sunday", + "1958-01-06": "Epiphany", + "1958-01-12": "Sunday", + "1958-01-19": "Sunday", + "1958-01-26": "Sunday", + "1958-02-02": "Sunday", + "1958-02-09": "Sunday", + "1958-02-16": "Sunday", + "1958-02-23": "Sunday", + "1958-03-02": "Sunday", + "1958-03-09": "Sunday", + "1958-03-16": "Sunday", + "1958-03-23": "Sunday", + "1958-03-30": "Sunday", + "1958-04-04": "Good Friday", + "1958-04-06": "Easter Sunday; Sunday", + "1958-04-07": "Easter Monday", + "1958-04-13": "Sunday", + "1958-04-20": "Sunday", + "1958-04-27": "Sunday", + "1958-05-01": "May Day", + "1958-05-04": "Sunday", + "1958-05-11": "Sunday", + "1958-05-15": "Ascension Day", + "1958-05-18": "Sunday", + "1958-05-25": "Sunday; Whit Sunday", + "1958-05-26": "Whit Monday", + "1958-06-01": "Sunday", + "1958-06-08": "Sunday", + "1958-06-15": "Sunday", + "1958-06-20": "Midsummer Eve", + "1958-06-21": "Midsummer Day", + "1958-06-22": "Sunday", + "1958-06-29": "Sunday", + "1958-07-06": "Sunday", + "1958-07-13": "Sunday", + "1958-07-20": "Sunday", + "1958-07-27": "Sunday", + "1958-08-03": "Sunday", + "1958-08-10": "Sunday", + "1958-08-17": "Sunday", + "1958-08-24": "Sunday", + "1958-08-31": "Sunday", + "1958-09-07": "Sunday", + "1958-09-14": "Sunday", + "1958-09-21": "Sunday", + "1958-09-28": "Sunday", + "1958-10-05": "Sunday", + "1958-10-12": "Sunday", + "1958-10-19": "Sunday", + "1958-10-26": "Sunday", + "1958-11-01": "All Saints' Day", + "1958-11-02": "Sunday", + "1958-11-09": "Sunday", + "1958-11-16": "Sunday", + "1958-11-23": "Sunday", + "1958-11-30": "Sunday", + "1958-12-07": "Sunday", + "1958-12-14": "Sunday", + "1958-12-21": "Sunday", + "1958-12-24": "Christmas Eve", + "1958-12-25": "Christmas Day", + "1958-12-26": "Second Day of Christmas", + "1958-12-28": "Sunday", + "1958-12-31": "New Year's Eve", + "1959-01-01": "New Year's Day", + "1959-01-04": "Sunday", + "1959-01-06": "Epiphany", + "1959-01-11": "Sunday", + "1959-01-18": "Sunday", + "1959-01-25": "Sunday", + "1959-02-01": "Sunday", + "1959-02-08": "Sunday", + "1959-02-15": "Sunday", + "1959-02-22": "Sunday", + "1959-03-01": "Sunday", + "1959-03-08": "Sunday", + "1959-03-15": "Sunday", + "1959-03-22": "Sunday", + "1959-03-27": "Good Friday", + "1959-03-29": "Easter Sunday; Sunday", + "1959-03-30": "Easter Monday", + "1959-04-05": "Sunday", + "1959-04-12": "Sunday", + "1959-04-19": "Sunday", + "1959-04-26": "Sunday", + "1959-05-01": "May Day", + "1959-05-03": "Sunday", + "1959-05-07": "Ascension Day", + "1959-05-10": "Sunday", + "1959-05-17": "Sunday; Whit Sunday", + "1959-05-18": "Whit Monday", + "1959-05-24": "Sunday", + "1959-05-31": "Sunday", + "1959-06-07": "Sunday", + "1959-06-14": "Sunday", + "1959-06-19": "Midsummer Eve", + "1959-06-20": "Midsummer Day", + "1959-06-21": "Sunday", + "1959-06-28": "Sunday", + "1959-07-05": "Sunday", + "1959-07-12": "Sunday", + "1959-07-19": "Sunday", + "1959-07-26": "Sunday", + "1959-08-02": "Sunday", + "1959-08-09": "Sunday", + "1959-08-16": "Sunday", + "1959-08-23": "Sunday", + "1959-08-30": "Sunday", + "1959-09-06": "Sunday", + "1959-09-13": "Sunday", + "1959-09-20": "Sunday", + "1959-09-27": "Sunday", + "1959-10-04": "Sunday", + "1959-10-11": "Sunday", + "1959-10-18": "Sunday", + "1959-10-25": "Sunday", + "1959-10-31": "All Saints' Day", + "1959-11-01": "Sunday", + "1959-11-08": "Sunday", + "1959-11-15": "Sunday", + "1959-11-22": "Sunday", + "1959-11-29": "Sunday", + "1959-12-06": "Sunday", + "1959-12-13": "Sunday", + "1959-12-20": "Sunday", + "1959-12-24": "Christmas Eve", + "1959-12-25": "Christmas Day", + "1959-12-26": "Second Day of Christmas", + "1959-12-27": "Sunday", + "1959-12-31": "New Year's Eve", + "1960-01-01": "New Year's Day", + "1960-01-03": "Sunday", + "1960-01-06": "Epiphany", + "1960-01-10": "Sunday", + "1960-01-17": "Sunday", + "1960-01-24": "Sunday", + "1960-01-31": "Sunday", + "1960-02-07": "Sunday", + "1960-02-14": "Sunday", + "1960-02-21": "Sunday", + "1960-02-28": "Sunday", + "1960-03-06": "Sunday", + "1960-03-13": "Sunday", + "1960-03-20": "Sunday", + "1960-03-27": "Sunday", + "1960-04-03": "Sunday", + "1960-04-10": "Sunday", + "1960-04-15": "Good Friday", + "1960-04-17": "Easter Sunday; Sunday", + "1960-04-18": "Easter Monday", + "1960-04-24": "Sunday", + "1960-05-01": "May Day; Sunday", + "1960-05-08": "Sunday", + "1960-05-15": "Sunday", + "1960-05-22": "Sunday", + "1960-05-26": "Ascension Day", + "1960-05-29": "Sunday", + "1960-06-05": "Sunday; Whit Sunday", + "1960-06-06": "Whit Monday", + "1960-06-12": "Sunday", + "1960-06-19": "Sunday", + "1960-06-24": "Midsummer Eve", + "1960-06-25": "Midsummer Day", + "1960-06-26": "Sunday", + "1960-07-03": "Sunday", + "1960-07-10": "Sunday", + "1960-07-17": "Sunday", + "1960-07-24": "Sunday", + "1960-07-31": "Sunday", + "1960-08-07": "Sunday", + "1960-08-14": "Sunday", + "1960-08-21": "Sunday", + "1960-08-28": "Sunday", + "1960-09-04": "Sunday", + "1960-09-11": "Sunday", + "1960-09-18": "Sunday", + "1960-09-25": "Sunday", + "1960-10-02": "Sunday", + "1960-10-09": "Sunday", + "1960-10-16": "Sunday", + "1960-10-23": "Sunday", + "1960-10-30": "Sunday", + "1960-11-05": "All Saints' Day", + "1960-11-06": "Sunday", + "1960-11-13": "Sunday", + "1960-11-20": "Sunday", + "1960-11-27": "Sunday", + "1960-12-04": "Sunday", + "1960-12-11": "Sunday", + "1960-12-18": "Sunday", + "1960-12-24": "Christmas Eve", + "1960-12-25": "Christmas Day; Sunday", + "1960-12-26": "Second Day of Christmas", + "1960-12-31": "New Year's Eve", + "1961-01-01": "New Year's Day; Sunday", + "1961-01-06": "Epiphany", + "1961-01-08": "Sunday", + "1961-01-15": "Sunday", + "1961-01-22": "Sunday", + "1961-01-29": "Sunday", + "1961-02-05": "Sunday", + "1961-02-12": "Sunday", + "1961-02-19": "Sunday", + "1961-02-26": "Sunday", + "1961-03-05": "Sunday", + "1961-03-12": "Sunday", + "1961-03-19": "Sunday", + "1961-03-26": "Sunday", + "1961-03-31": "Good Friday", + "1961-04-02": "Easter Sunday; Sunday", + "1961-04-03": "Easter Monday", + "1961-04-09": "Sunday", + "1961-04-16": "Sunday", + "1961-04-23": "Sunday", + "1961-04-30": "Sunday", + "1961-05-01": "May Day", + "1961-05-07": "Sunday", + "1961-05-11": "Ascension Day", + "1961-05-14": "Sunday", + "1961-05-21": "Sunday; Whit Sunday", + "1961-05-22": "Whit Monday", + "1961-05-28": "Sunday", + "1961-06-04": "Sunday", + "1961-06-11": "Sunday", + "1961-06-18": "Sunday", + "1961-06-23": "Midsummer Eve", + "1961-06-24": "Midsummer Day", + "1961-06-25": "Sunday", + "1961-07-02": "Sunday", + "1961-07-09": "Sunday", + "1961-07-16": "Sunday", + "1961-07-23": "Sunday", + "1961-07-30": "Sunday", + "1961-08-06": "Sunday", + "1961-08-13": "Sunday", + "1961-08-20": "Sunday", + "1961-08-27": "Sunday", + "1961-09-03": "Sunday", + "1961-09-10": "Sunday", + "1961-09-17": "Sunday", + "1961-09-24": "Sunday", + "1961-10-01": "Sunday", + "1961-10-08": "Sunday", + "1961-10-15": "Sunday", + "1961-10-22": "Sunday", + "1961-10-29": "Sunday", + "1961-11-04": "All Saints' Day", + "1961-11-05": "Sunday", + "1961-11-12": "Sunday", + "1961-11-19": "Sunday", + "1961-11-26": "Sunday", + "1961-12-03": "Sunday", + "1961-12-10": "Sunday", + "1961-12-17": "Sunday", + "1961-12-24": "Christmas Eve; Sunday", + "1961-12-25": "Christmas Day", + "1961-12-26": "Second Day of Christmas", + "1961-12-31": "New Year's Eve; Sunday", + "1962-01-01": "New Year's Day", + "1962-01-06": "Epiphany", + "1962-01-07": "Sunday", + "1962-01-14": "Sunday", + "1962-01-21": "Sunday", + "1962-01-28": "Sunday", + "1962-02-04": "Sunday", + "1962-02-11": "Sunday", + "1962-02-18": "Sunday", + "1962-02-25": "Sunday", + "1962-03-04": "Sunday", + "1962-03-11": "Sunday", + "1962-03-18": "Sunday", + "1962-03-25": "Sunday", + "1962-04-01": "Sunday", + "1962-04-08": "Sunday", + "1962-04-15": "Sunday", + "1962-04-20": "Good Friday", + "1962-04-22": "Easter Sunday; Sunday", + "1962-04-23": "Easter Monday", + "1962-04-29": "Sunday", + "1962-05-01": "May Day", + "1962-05-06": "Sunday", + "1962-05-13": "Sunday", + "1962-05-20": "Sunday", + "1962-05-27": "Sunday", + "1962-05-31": "Ascension Day", + "1962-06-03": "Sunday", + "1962-06-10": "Sunday; Whit Sunday", + "1962-06-11": "Whit Monday", + "1962-06-17": "Sunday", + "1962-06-22": "Midsummer Eve", + "1962-06-23": "Midsummer Day", + "1962-06-24": "Sunday", + "1962-07-01": "Sunday", + "1962-07-08": "Sunday", + "1962-07-15": "Sunday", + "1962-07-22": "Sunday", + "1962-07-29": "Sunday", + "1962-08-05": "Sunday", + "1962-08-12": "Sunday", + "1962-08-19": "Sunday", + "1962-08-26": "Sunday", + "1962-09-02": "Sunday", + "1962-09-09": "Sunday", + "1962-09-16": "Sunday", + "1962-09-23": "Sunday", + "1962-09-30": "Sunday", + "1962-10-07": "Sunday", + "1962-10-14": "Sunday", + "1962-10-21": "Sunday", + "1962-10-28": "Sunday", + "1962-11-03": "All Saints' Day", + "1962-11-04": "Sunday", + "1962-11-11": "Sunday", + "1962-11-18": "Sunday", + "1962-11-25": "Sunday", + "1962-12-02": "Sunday", + "1962-12-09": "Sunday", + "1962-12-16": "Sunday", + "1962-12-23": "Sunday", + "1962-12-24": "Christmas Eve", + "1962-12-25": "Christmas Day", + "1962-12-26": "Second Day of Christmas", + "1962-12-30": "Sunday", + "1962-12-31": "New Year's Eve", + "1963-01-01": "New Year's Day", + "1963-01-06": "Epiphany; Sunday", + "1963-01-13": "Sunday", + "1963-01-20": "Sunday", + "1963-01-27": "Sunday", + "1963-02-03": "Sunday", + "1963-02-10": "Sunday", + "1963-02-17": "Sunday", + "1963-02-24": "Sunday", + "1963-03-03": "Sunday", + "1963-03-10": "Sunday", + "1963-03-17": "Sunday", + "1963-03-24": "Sunday", + "1963-03-31": "Sunday", + "1963-04-07": "Sunday", + "1963-04-12": "Good Friday", + "1963-04-14": "Easter Sunday; Sunday", + "1963-04-15": "Easter Monday", + "1963-04-21": "Sunday", + "1963-04-28": "Sunday", + "1963-05-01": "May Day", + "1963-05-05": "Sunday", + "1963-05-12": "Sunday", + "1963-05-19": "Sunday", + "1963-05-23": "Ascension Day", + "1963-05-26": "Sunday", + "1963-06-02": "Sunday; Whit Sunday", + "1963-06-03": "Whit Monday", + "1963-06-09": "Sunday", + "1963-06-16": "Sunday", + "1963-06-21": "Midsummer Eve", + "1963-06-22": "Midsummer Day", + "1963-06-23": "Sunday", + "1963-06-30": "Sunday", + "1963-07-07": "Sunday", + "1963-07-14": "Sunday", + "1963-07-21": "Sunday", + "1963-07-28": "Sunday", + "1963-08-04": "Sunday", + "1963-08-11": "Sunday", + "1963-08-18": "Sunday", + "1963-08-25": "Sunday", + "1963-09-01": "Sunday", + "1963-09-08": "Sunday", + "1963-09-15": "Sunday", + "1963-09-22": "Sunday", + "1963-09-29": "Sunday", + "1963-10-06": "Sunday", + "1963-10-13": "Sunday", + "1963-10-20": "Sunday", + "1963-10-27": "Sunday", + "1963-11-02": "All Saints' Day", + "1963-11-03": "Sunday", + "1963-11-10": "Sunday", + "1963-11-17": "Sunday", + "1963-11-24": "Sunday", + "1963-12-01": "Sunday", + "1963-12-08": "Sunday", + "1963-12-15": "Sunday", + "1963-12-22": "Sunday", + "1963-12-24": "Christmas Eve", + "1963-12-25": "Christmas Day", + "1963-12-26": "Second Day of Christmas", + "1963-12-29": "Sunday", + "1963-12-31": "New Year's Eve", + "1964-01-01": "New Year's Day", + "1964-01-05": "Sunday", + "1964-01-06": "Epiphany", + "1964-01-12": "Sunday", + "1964-01-19": "Sunday", + "1964-01-26": "Sunday", + "1964-02-02": "Sunday", + "1964-02-09": "Sunday", + "1964-02-16": "Sunday", + "1964-02-23": "Sunday", + "1964-03-01": "Sunday", + "1964-03-08": "Sunday", + "1964-03-15": "Sunday", + "1964-03-22": "Sunday", + "1964-03-27": "Good Friday", + "1964-03-29": "Easter Sunday; Sunday", + "1964-03-30": "Easter Monday", + "1964-04-05": "Sunday", + "1964-04-12": "Sunday", + "1964-04-19": "Sunday", + "1964-04-26": "Sunday", + "1964-05-01": "May Day", + "1964-05-03": "Sunday", + "1964-05-07": "Ascension Day", + "1964-05-10": "Sunday", + "1964-05-17": "Sunday; Whit Sunday", + "1964-05-18": "Whit Monday", + "1964-05-24": "Sunday", + "1964-05-31": "Sunday", + "1964-06-07": "Sunday", + "1964-06-14": "Sunday", + "1964-06-19": "Midsummer Eve", + "1964-06-20": "Midsummer Day", + "1964-06-21": "Sunday", + "1964-06-28": "Sunday", + "1964-07-05": "Sunday", + "1964-07-12": "Sunday", + "1964-07-19": "Sunday", + "1964-07-26": "Sunday", + "1964-08-02": "Sunday", + "1964-08-09": "Sunday", + "1964-08-16": "Sunday", + "1964-08-23": "Sunday", + "1964-08-30": "Sunday", + "1964-09-06": "Sunday", + "1964-09-13": "Sunday", + "1964-09-20": "Sunday", + "1964-09-27": "Sunday", + "1964-10-04": "Sunday", + "1964-10-11": "Sunday", + "1964-10-18": "Sunday", + "1964-10-25": "Sunday", + "1964-10-31": "All Saints' Day", + "1964-11-01": "Sunday", + "1964-11-08": "Sunday", + "1964-11-15": "Sunday", + "1964-11-22": "Sunday", + "1964-11-29": "Sunday", + "1964-12-06": "Sunday", + "1964-12-13": "Sunday", + "1964-12-20": "Sunday", + "1964-12-24": "Christmas Eve", + "1964-12-25": "Christmas Day", + "1964-12-26": "Second Day of Christmas", + "1964-12-27": "Sunday", + "1964-12-31": "New Year's Eve", + "1965-01-01": "New Year's Day", + "1965-01-03": "Sunday", + "1965-01-06": "Epiphany", + "1965-01-10": "Sunday", + "1965-01-17": "Sunday", + "1965-01-24": "Sunday", + "1965-01-31": "Sunday", + "1965-02-07": "Sunday", + "1965-02-14": "Sunday", + "1965-02-21": "Sunday", + "1965-02-28": "Sunday", + "1965-03-07": "Sunday", + "1965-03-14": "Sunday", + "1965-03-21": "Sunday", + "1965-03-28": "Sunday", + "1965-04-04": "Sunday", + "1965-04-11": "Sunday", + "1965-04-16": "Good Friday", + "1965-04-18": "Easter Sunday; Sunday", + "1965-04-19": "Easter Monday", + "1965-04-25": "Sunday", + "1965-05-01": "May Day", + "1965-05-02": "Sunday", + "1965-05-09": "Sunday", + "1965-05-16": "Sunday", + "1965-05-23": "Sunday", + "1965-05-27": "Ascension Day", + "1965-05-30": "Sunday", + "1965-06-06": "Sunday; Whit Sunday", + "1965-06-07": "Whit Monday", + "1965-06-13": "Sunday", + "1965-06-20": "Sunday", + "1965-06-25": "Midsummer Eve", + "1965-06-26": "Midsummer Day", + "1965-06-27": "Sunday", + "1965-07-04": "Sunday", + "1965-07-11": "Sunday", + "1965-07-18": "Sunday", + "1965-07-25": "Sunday", + "1965-08-01": "Sunday", + "1965-08-08": "Sunday", + "1965-08-15": "Sunday", + "1965-08-22": "Sunday", + "1965-08-29": "Sunday", + "1965-09-05": "Sunday", + "1965-09-12": "Sunday", + "1965-09-19": "Sunday", + "1965-09-26": "Sunday", + "1965-10-03": "Sunday", + "1965-10-10": "Sunday", + "1965-10-17": "Sunday", + "1965-10-24": "Sunday", + "1965-10-31": "Sunday", + "1965-11-06": "All Saints' Day", + "1965-11-07": "Sunday", + "1965-11-14": "Sunday", + "1965-11-21": "Sunday", + "1965-11-28": "Sunday", + "1965-12-05": "Sunday", + "1965-12-12": "Sunday", + "1965-12-19": "Sunday", + "1965-12-24": "Christmas Eve", + "1965-12-25": "Christmas Day", + "1965-12-26": "Second Day of Christmas; Sunday", + "1965-12-31": "New Year's Eve", + "1966-01-01": "New Year's Day", + "1966-01-02": "Sunday", + "1966-01-06": "Epiphany", + "1966-01-09": "Sunday", + "1966-01-16": "Sunday", + "1966-01-23": "Sunday", + "1966-01-30": "Sunday", + "1966-02-06": "Sunday", + "1966-02-13": "Sunday", + "1966-02-20": "Sunday", + "1966-02-27": "Sunday", + "1966-03-06": "Sunday", + "1966-03-13": "Sunday", + "1966-03-20": "Sunday", + "1966-03-27": "Sunday", + "1966-04-03": "Sunday", + "1966-04-08": "Good Friday", + "1966-04-10": "Easter Sunday; Sunday", + "1966-04-11": "Easter Monday", + "1966-04-17": "Sunday", + "1966-04-24": "Sunday", + "1966-05-01": "May Day; Sunday", + "1966-05-08": "Sunday", + "1966-05-15": "Sunday", + "1966-05-19": "Ascension Day", + "1966-05-22": "Sunday", + "1966-05-29": "Sunday; Whit Sunday", + "1966-05-30": "Whit Monday", + "1966-06-05": "Sunday", + "1966-06-12": "Sunday", + "1966-06-19": "Sunday", + "1966-06-24": "Midsummer Eve", + "1966-06-25": "Midsummer Day", + "1966-06-26": "Sunday", + "1966-07-03": "Sunday", + "1966-07-10": "Sunday", + "1966-07-17": "Sunday", + "1966-07-24": "Sunday", + "1966-07-31": "Sunday", + "1966-08-07": "Sunday", + "1966-08-14": "Sunday", + "1966-08-21": "Sunday", + "1966-08-28": "Sunday", + "1966-09-04": "Sunday", + "1966-09-11": "Sunday", + "1966-09-18": "Sunday", + "1966-09-25": "Sunday", + "1966-10-02": "Sunday", + "1966-10-09": "Sunday", + "1966-10-16": "Sunday", + "1966-10-23": "Sunday", + "1966-10-30": "Sunday", + "1966-11-05": "All Saints' Day", + "1966-11-06": "Sunday", + "1966-11-13": "Sunday", + "1966-11-20": "Sunday", + "1966-11-27": "Sunday", + "1966-12-04": "Sunday", + "1966-12-11": "Sunday", + "1966-12-18": "Sunday", + "1966-12-24": "Christmas Eve", + "1966-12-25": "Christmas Day; Sunday", + "1966-12-26": "Second Day of Christmas", + "1966-12-31": "New Year's Eve", + "1967-01-01": "New Year's Day; Sunday", + "1967-01-06": "Epiphany", + "1967-01-08": "Sunday", + "1967-01-15": "Sunday", + "1967-01-22": "Sunday", + "1967-01-29": "Sunday", + "1967-02-05": "Sunday", + "1967-02-12": "Sunday", + "1967-02-19": "Sunday", + "1967-02-26": "Sunday", + "1967-03-05": "Sunday", + "1967-03-12": "Sunday", + "1967-03-19": "Sunday", + "1967-03-24": "Good Friday", + "1967-03-26": "Easter Sunday; Sunday", + "1967-03-27": "Easter Monday", + "1967-04-02": "Sunday", + "1967-04-09": "Sunday", + "1967-04-16": "Sunday", + "1967-04-23": "Sunday", + "1967-04-30": "Sunday", + "1967-05-01": "May Day", + "1967-05-04": "Ascension Day", + "1967-05-07": "Sunday", + "1967-05-14": "Sunday; Whit Sunday", + "1967-05-15": "Whit Monday", + "1967-05-21": "Sunday", + "1967-05-28": "Sunday", + "1967-06-04": "Sunday", + "1967-06-11": "Sunday", + "1967-06-18": "Sunday", + "1967-06-23": "Midsummer Eve", + "1967-06-24": "Midsummer Day", + "1967-06-25": "Sunday", + "1967-07-02": "Sunday", + "1967-07-09": "Sunday", + "1967-07-16": "Sunday", + "1967-07-23": "Sunday", + "1967-07-30": "Sunday", + "1967-08-06": "Sunday", + "1967-08-13": "Sunday", + "1967-08-20": "Sunday", + "1967-08-27": "Sunday", + "1967-09-03": "Sunday", + "1967-09-10": "Sunday", + "1967-09-17": "Sunday", + "1967-09-24": "Sunday", + "1967-10-01": "Sunday", + "1967-10-08": "Sunday", + "1967-10-15": "Sunday", + "1967-10-22": "Sunday", + "1967-10-29": "Sunday", + "1967-11-04": "All Saints' Day", + "1967-11-05": "Sunday", + "1967-11-12": "Sunday", + "1967-11-19": "Sunday", + "1967-11-26": "Sunday", + "1967-12-03": "Sunday", + "1967-12-10": "Sunday", + "1967-12-17": "Sunday", + "1967-12-24": "Christmas Eve; Sunday", + "1967-12-25": "Christmas Day", + "1967-12-26": "Second Day of Christmas", + "1967-12-31": "New Year's Eve; Sunday", + "1968-01-01": "New Year's Day", + "1968-01-06": "Epiphany", + "1968-01-07": "Sunday", + "1968-01-14": "Sunday", + "1968-01-21": "Sunday", + "1968-01-28": "Sunday", + "1968-02-04": "Sunday", + "1968-02-11": "Sunday", + "1968-02-18": "Sunday", + "1968-02-25": "Sunday", + "1968-03-03": "Sunday", + "1968-03-10": "Sunday", + "1968-03-17": "Sunday", + "1968-03-24": "Sunday", + "1968-03-31": "Sunday", + "1968-04-07": "Sunday", + "1968-04-12": "Good Friday", + "1968-04-14": "Easter Sunday; Sunday", + "1968-04-15": "Easter Monday", + "1968-04-21": "Sunday", + "1968-04-28": "Sunday", + "1968-05-01": "May Day", + "1968-05-05": "Sunday", + "1968-05-12": "Sunday", + "1968-05-19": "Sunday", + "1968-05-23": "Ascension Day", + "1968-05-26": "Sunday", + "1968-06-02": "Sunday; Whit Sunday", + "1968-06-03": "Whit Monday", + "1968-06-09": "Sunday", + "1968-06-16": "Sunday", + "1968-06-21": "Midsummer Eve", + "1968-06-22": "Midsummer Day", + "1968-06-23": "Sunday", + "1968-06-30": "Sunday", + "1968-07-07": "Sunday", + "1968-07-14": "Sunday", + "1968-07-21": "Sunday", + "1968-07-28": "Sunday", + "1968-08-04": "Sunday", + "1968-08-11": "Sunday", + "1968-08-18": "Sunday", + "1968-08-25": "Sunday", + "1968-09-01": "Sunday", + "1968-09-08": "Sunday", + "1968-09-15": "Sunday", + "1968-09-22": "Sunday", + "1968-09-29": "Sunday", + "1968-10-06": "Sunday", + "1968-10-13": "Sunday", + "1968-10-20": "Sunday", + "1968-10-27": "Sunday", + "1968-11-02": "All Saints' Day", + "1968-11-03": "Sunday", + "1968-11-10": "Sunday", + "1968-11-17": "Sunday", + "1968-11-24": "Sunday", + "1968-12-01": "Sunday", + "1968-12-08": "Sunday", + "1968-12-15": "Sunday", + "1968-12-22": "Sunday", + "1968-12-24": "Christmas Eve", + "1968-12-25": "Christmas Day", + "1968-12-26": "Second Day of Christmas", + "1968-12-29": "Sunday", + "1968-12-31": "New Year's Eve", + "1969-01-01": "New Year's Day", + "1969-01-05": "Sunday", + "1969-01-06": "Epiphany", + "1969-01-12": "Sunday", + "1969-01-19": "Sunday", + "1969-01-26": "Sunday", + "1969-02-02": "Sunday", + "1969-02-09": "Sunday", + "1969-02-16": "Sunday", + "1969-02-23": "Sunday", + "1969-03-02": "Sunday", + "1969-03-09": "Sunday", + "1969-03-16": "Sunday", + "1969-03-23": "Sunday", + "1969-03-30": "Sunday", + "1969-04-04": "Good Friday", + "1969-04-06": "Easter Sunday; Sunday", + "1969-04-07": "Easter Monday", + "1969-04-13": "Sunday", + "1969-04-20": "Sunday", + "1969-04-27": "Sunday", + "1969-05-01": "May Day", + "1969-05-04": "Sunday", + "1969-05-11": "Sunday", + "1969-05-15": "Ascension Day", + "1969-05-18": "Sunday", + "1969-05-25": "Sunday; Whit Sunday", + "1969-05-26": "Whit Monday", + "1969-06-01": "Sunday", + "1969-06-08": "Sunday", + "1969-06-15": "Sunday", + "1969-06-20": "Midsummer Eve", + "1969-06-21": "Midsummer Day", + "1969-06-22": "Sunday", + "1969-06-29": "Sunday", + "1969-07-06": "Sunday", + "1969-07-13": "Sunday", + "1969-07-20": "Sunday", + "1969-07-27": "Sunday", + "1969-08-03": "Sunday", + "1969-08-10": "Sunday", + "1969-08-17": "Sunday", + "1969-08-24": "Sunday", + "1969-08-31": "Sunday", + "1969-09-07": "Sunday", + "1969-09-14": "Sunday", + "1969-09-21": "Sunday", + "1969-09-28": "Sunday", + "1969-10-05": "Sunday", + "1969-10-12": "Sunday", + "1969-10-19": "Sunday", + "1969-10-26": "Sunday", + "1969-11-01": "All Saints' Day", + "1969-11-02": "Sunday", + "1969-11-09": "Sunday", + "1969-11-16": "Sunday", + "1969-11-23": "Sunday", + "1969-11-30": "Sunday", + "1969-12-07": "Sunday", + "1969-12-14": "Sunday", + "1969-12-21": "Sunday", + "1969-12-24": "Christmas Eve", + "1969-12-25": "Christmas Day", + "1969-12-26": "Second Day of Christmas", + "1969-12-28": "Sunday", + "1969-12-31": "New Year's Eve", + "1970-01-01": "New Year's Day", + "1970-01-04": "Sunday", + "1970-01-06": "Epiphany", + "1970-01-11": "Sunday", + "1970-01-18": "Sunday", + "1970-01-25": "Sunday", + "1970-02-01": "Sunday", + "1970-02-08": "Sunday", + "1970-02-15": "Sunday", + "1970-02-22": "Sunday", + "1970-03-01": "Sunday", + "1970-03-08": "Sunday", + "1970-03-15": "Sunday", + "1970-03-22": "Sunday", + "1970-03-27": "Good Friday", + "1970-03-29": "Easter Sunday; Sunday", + "1970-03-30": "Easter Monday", + "1970-04-05": "Sunday", + "1970-04-12": "Sunday", + "1970-04-19": "Sunday", + "1970-04-26": "Sunday", + "1970-05-01": "May Day", + "1970-05-03": "Sunday", + "1970-05-07": "Ascension Day", + "1970-05-10": "Sunday", + "1970-05-17": "Sunday; Whit Sunday", + "1970-05-18": "Whit Monday", + "1970-05-24": "Sunday", + "1970-05-31": "Sunday", + "1970-06-07": "Sunday", + "1970-06-14": "Sunday", + "1970-06-19": "Midsummer Eve", + "1970-06-20": "Midsummer Day", + "1970-06-21": "Sunday", + "1970-06-28": "Sunday", + "1970-07-05": "Sunday", + "1970-07-12": "Sunday", + "1970-07-19": "Sunday", + "1970-07-26": "Sunday", + "1970-08-02": "Sunday", + "1970-08-09": "Sunday", + "1970-08-16": "Sunday", + "1970-08-23": "Sunday", + "1970-08-30": "Sunday", + "1970-09-06": "Sunday", + "1970-09-13": "Sunday", + "1970-09-20": "Sunday", + "1970-09-27": "Sunday", + "1970-10-04": "Sunday", + "1970-10-11": "Sunday", + "1970-10-18": "Sunday", + "1970-10-25": "Sunday", + "1970-10-31": "All Saints' Day", + "1970-11-01": "Sunday", + "1970-11-08": "Sunday", + "1970-11-15": "Sunday", + "1970-11-22": "Sunday", + "1970-11-29": "Sunday", + "1970-12-06": "Sunday", + "1970-12-13": "Sunday", + "1970-12-20": "Sunday", + "1970-12-24": "Christmas Eve", + "1970-12-25": "Christmas Day", + "1970-12-26": "Second Day of Christmas", + "1970-12-27": "Sunday", + "1970-12-31": "New Year's Eve", + "1971-01-01": "New Year's Day", + "1971-01-03": "Sunday", + "1971-01-06": "Epiphany", + "1971-01-10": "Sunday", + "1971-01-17": "Sunday", + "1971-01-24": "Sunday", + "1971-01-31": "Sunday", + "1971-02-07": "Sunday", + "1971-02-14": "Sunday", + "1971-02-21": "Sunday", + "1971-02-28": "Sunday", + "1971-03-07": "Sunday", + "1971-03-14": "Sunday", + "1971-03-21": "Sunday", + "1971-03-28": "Sunday", + "1971-04-04": "Sunday", + "1971-04-09": "Good Friday", + "1971-04-11": "Easter Sunday; Sunday", + "1971-04-12": "Easter Monday", + "1971-04-18": "Sunday", + "1971-04-25": "Sunday", + "1971-05-01": "May Day", + "1971-05-02": "Sunday", + "1971-05-09": "Sunday", + "1971-05-16": "Sunday", + "1971-05-20": "Ascension Day", + "1971-05-23": "Sunday", + "1971-05-30": "Sunday; Whit Sunday", + "1971-05-31": "Whit Monday", + "1971-06-06": "Sunday", + "1971-06-13": "Sunday", + "1971-06-20": "Sunday", + "1971-06-25": "Midsummer Eve", + "1971-06-26": "Midsummer Day", + "1971-06-27": "Sunday", + "1971-07-04": "Sunday", + "1971-07-11": "Sunday", + "1971-07-18": "Sunday", + "1971-07-25": "Sunday", + "1971-08-01": "Sunday", + "1971-08-08": "Sunday", + "1971-08-15": "Sunday", + "1971-08-22": "Sunday", + "1971-08-29": "Sunday", + "1971-09-05": "Sunday", + "1971-09-12": "Sunday", + "1971-09-19": "Sunday", + "1971-09-26": "Sunday", + "1971-10-03": "Sunday", + "1971-10-10": "Sunday", + "1971-10-17": "Sunday", + "1971-10-24": "Sunday", + "1971-10-31": "Sunday", + "1971-11-06": "All Saints' Day", + "1971-11-07": "Sunday", + "1971-11-14": "Sunday", + "1971-11-21": "Sunday", + "1971-11-28": "Sunday", + "1971-12-05": "Sunday", + "1971-12-12": "Sunday", + "1971-12-19": "Sunday", + "1971-12-24": "Christmas Eve", + "1971-12-25": "Christmas Day", + "1971-12-26": "Second Day of Christmas; Sunday", + "1971-12-31": "New Year's Eve", + "1972-01-01": "New Year's Day", + "1972-01-02": "Sunday", + "1972-01-06": "Epiphany", + "1972-01-09": "Sunday", + "1972-01-16": "Sunday", + "1972-01-23": "Sunday", + "1972-01-30": "Sunday", + "1972-02-06": "Sunday", + "1972-02-13": "Sunday", + "1972-02-20": "Sunday", + "1972-02-27": "Sunday", + "1972-03-05": "Sunday", + "1972-03-12": "Sunday", + "1972-03-19": "Sunday", + "1972-03-26": "Sunday", + "1972-03-31": "Good Friday", + "1972-04-02": "Easter Sunday; Sunday", + "1972-04-03": "Easter Monday", + "1972-04-09": "Sunday", + "1972-04-16": "Sunday", + "1972-04-23": "Sunday", + "1972-04-30": "Sunday", + "1972-05-01": "May Day", + "1972-05-07": "Sunday", + "1972-05-11": "Ascension Day", + "1972-05-14": "Sunday", + "1972-05-21": "Sunday; Whit Sunday", + "1972-05-22": "Whit Monday", + "1972-05-28": "Sunday", + "1972-06-04": "Sunday", + "1972-06-11": "Sunday", + "1972-06-18": "Sunday", + "1972-06-23": "Midsummer Eve", + "1972-06-24": "Midsummer Day", + "1972-06-25": "Sunday", + "1972-07-02": "Sunday", + "1972-07-09": "Sunday", + "1972-07-16": "Sunday", + "1972-07-23": "Sunday", + "1972-07-30": "Sunday", + "1972-08-06": "Sunday", + "1972-08-13": "Sunday", + "1972-08-20": "Sunday", + "1972-08-27": "Sunday", + "1972-09-03": "Sunday", + "1972-09-10": "Sunday", + "1972-09-17": "Sunday", + "1972-09-24": "Sunday", + "1972-10-01": "Sunday", + "1972-10-08": "Sunday", + "1972-10-15": "Sunday", + "1972-10-22": "Sunday", + "1972-10-29": "Sunday", + "1972-11-04": "All Saints' Day", + "1972-11-05": "Sunday", + "1972-11-12": "Sunday", + "1972-11-19": "Sunday", + "1972-11-26": "Sunday", + "1972-12-03": "Sunday", + "1972-12-10": "Sunday", + "1972-12-17": "Sunday", + "1972-12-24": "Christmas Eve; Sunday", + "1972-12-25": "Christmas Day", + "1972-12-26": "Second Day of Christmas", + "1972-12-31": "New Year's Eve; Sunday", + "1973-01-01": "New Year's Day", + "1973-01-06": "Epiphany", + "1973-01-07": "Sunday", + "1973-01-14": "Sunday", + "1973-01-21": "Sunday", + "1973-01-28": "Sunday", + "1973-02-04": "Sunday", + "1973-02-11": "Sunday", + "1973-02-18": "Sunday", + "1973-02-25": "Sunday", + "1973-03-04": "Sunday", + "1973-03-11": "Sunday", + "1973-03-18": "Sunday", + "1973-03-25": "Sunday", + "1973-04-01": "Sunday", + "1973-04-08": "Sunday", + "1973-04-15": "Sunday", + "1973-04-20": "Good Friday", + "1973-04-22": "Easter Sunday; Sunday", + "1973-04-23": "Easter Monday", + "1973-04-29": "Sunday", + "1973-05-01": "May Day", + "1973-05-06": "Sunday", + "1973-05-13": "Sunday", + "1973-05-20": "Sunday", + "1973-05-27": "Sunday", + "1973-05-31": "Ascension Day", + "1973-06-03": "Sunday", + "1973-06-10": "Sunday; Whit Sunday", + "1973-06-11": "Whit Monday", + "1973-06-17": "Sunday", + "1973-06-22": "Midsummer Eve", + "1973-06-23": "Midsummer Day", + "1973-06-24": "Sunday", + "1973-07-01": "Sunday", + "1973-07-08": "Sunday", + "1973-07-15": "Sunday", + "1973-07-22": "Sunday", + "1973-07-29": "Sunday", + "1973-08-05": "Sunday", + "1973-08-12": "Sunday", + "1973-08-19": "Sunday", + "1973-08-26": "Sunday", + "1973-09-02": "Sunday", + "1973-09-09": "Sunday", + "1973-09-16": "Sunday", + "1973-09-23": "Sunday", + "1973-09-30": "Sunday", + "1973-10-07": "Sunday", + "1973-10-14": "Sunday", + "1973-10-21": "Sunday", + "1973-10-28": "Sunday", + "1973-11-03": "All Saints' Day", + "1973-11-04": "Sunday", + "1973-11-11": "Sunday", + "1973-11-18": "Sunday", + "1973-11-25": "Sunday", + "1973-12-02": "Sunday", + "1973-12-09": "Sunday", + "1973-12-16": "Sunday", + "1973-12-23": "Sunday", + "1973-12-24": "Christmas Eve", + "1973-12-25": "Christmas Day", + "1973-12-26": "Second Day of Christmas", + "1973-12-30": "Sunday", + "1973-12-31": "New Year's Eve", + "1974-01-01": "New Year's Day", + "1974-01-06": "Epiphany; Sunday", + "1974-01-13": "Sunday", + "1974-01-20": "Sunday", + "1974-01-27": "Sunday", + "1974-02-03": "Sunday", + "1974-02-10": "Sunday", + "1974-02-17": "Sunday", + "1974-02-24": "Sunday", + "1974-03-03": "Sunday", + "1974-03-10": "Sunday", + "1974-03-17": "Sunday", + "1974-03-24": "Sunday", + "1974-03-31": "Sunday", + "1974-04-07": "Sunday", + "1974-04-12": "Good Friday", + "1974-04-14": "Easter Sunday; Sunday", + "1974-04-15": "Easter Monday", + "1974-04-21": "Sunday", + "1974-04-28": "Sunday", + "1974-05-01": "May Day", + "1974-05-05": "Sunday", + "1974-05-12": "Sunday", + "1974-05-19": "Sunday", + "1974-05-23": "Ascension Day", + "1974-05-26": "Sunday", + "1974-06-02": "Sunday; Whit Sunday", + "1974-06-03": "Whit Monday", + "1974-06-09": "Sunday", + "1974-06-16": "Sunday", + "1974-06-21": "Midsummer Eve", + "1974-06-22": "Midsummer Day", + "1974-06-23": "Sunday", + "1974-06-30": "Sunday", + "1974-07-07": "Sunday", + "1974-07-14": "Sunday", + "1974-07-21": "Sunday", + "1974-07-28": "Sunday", + "1974-08-04": "Sunday", + "1974-08-11": "Sunday", + "1974-08-18": "Sunday", + "1974-08-25": "Sunday", + "1974-09-01": "Sunday", + "1974-09-08": "Sunday", + "1974-09-15": "Sunday", + "1974-09-22": "Sunday", + "1974-09-29": "Sunday", + "1974-10-06": "Sunday", + "1974-10-13": "Sunday", + "1974-10-20": "Sunday", + "1974-10-27": "Sunday", + "1974-11-02": "All Saints' Day", + "1974-11-03": "Sunday", + "1974-11-10": "Sunday", + "1974-11-17": "Sunday", + "1974-11-24": "Sunday", + "1974-12-01": "Sunday", + "1974-12-08": "Sunday", + "1974-12-15": "Sunday", + "1974-12-22": "Sunday", + "1974-12-24": "Christmas Eve", + "1974-12-25": "Christmas Day", + "1974-12-26": "Second Day of Christmas", + "1974-12-29": "Sunday", + "1974-12-31": "New Year's Eve", + "1975-01-01": "New Year's Day", + "1975-01-05": "Sunday", + "1975-01-06": "Epiphany", + "1975-01-12": "Sunday", + "1975-01-19": "Sunday", + "1975-01-26": "Sunday", + "1975-02-02": "Sunday", + "1975-02-09": "Sunday", + "1975-02-16": "Sunday", + "1975-02-23": "Sunday", + "1975-03-02": "Sunday", + "1975-03-09": "Sunday", + "1975-03-16": "Sunday", + "1975-03-23": "Sunday", + "1975-03-28": "Good Friday", + "1975-03-30": "Easter Sunday; Sunday", + "1975-03-31": "Easter Monday", + "1975-04-06": "Sunday", + "1975-04-13": "Sunday", + "1975-04-20": "Sunday", + "1975-04-27": "Sunday", + "1975-05-01": "May Day", + "1975-05-04": "Sunday", + "1975-05-08": "Ascension Day", + "1975-05-11": "Sunday", + "1975-05-18": "Sunday; Whit Sunday", + "1975-05-19": "Whit Monday", + "1975-05-25": "Sunday", + "1975-06-01": "Sunday", + "1975-06-08": "Sunday", + "1975-06-15": "Sunday", + "1975-06-20": "Midsummer Eve", + "1975-06-21": "Midsummer Day", + "1975-06-22": "Sunday", + "1975-06-29": "Sunday", + "1975-07-06": "Sunday", + "1975-07-13": "Sunday", + "1975-07-20": "Sunday", + "1975-07-27": "Sunday", + "1975-08-03": "Sunday", + "1975-08-10": "Sunday", + "1975-08-17": "Sunday", + "1975-08-24": "Sunday", + "1975-08-31": "Sunday", + "1975-09-07": "Sunday", + "1975-09-14": "Sunday", + "1975-09-21": "Sunday", + "1975-09-28": "Sunday", + "1975-10-05": "Sunday", + "1975-10-12": "Sunday", + "1975-10-19": "Sunday", + "1975-10-26": "Sunday", + "1975-11-01": "All Saints' Day", + "1975-11-02": "Sunday", + "1975-11-09": "Sunday", + "1975-11-16": "Sunday", + "1975-11-23": "Sunday", + "1975-11-30": "Sunday", + "1975-12-07": "Sunday", + "1975-12-14": "Sunday", + "1975-12-21": "Sunday", + "1975-12-24": "Christmas Eve", + "1975-12-25": "Christmas Day", + "1975-12-26": "Second Day of Christmas", + "1975-12-28": "Sunday", + "1975-12-31": "New Year's Eve", + "1976-01-01": "New Year's Day", + "1976-01-04": "Sunday", + "1976-01-06": "Epiphany", + "1976-01-11": "Sunday", + "1976-01-18": "Sunday", + "1976-01-25": "Sunday", + "1976-02-01": "Sunday", + "1976-02-08": "Sunday", + "1976-02-15": "Sunday", + "1976-02-22": "Sunday", + "1976-02-29": "Sunday", + "1976-03-07": "Sunday", + "1976-03-14": "Sunday", + "1976-03-21": "Sunday", + "1976-03-28": "Sunday", + "1976-04-04": "Sunday", + "1976-04-11": "Sunday", + "1976-04-16": "Good Friday", + "1976-04-18": "Easter Sunday; Sunday", + "1976-04-19": "Easter Monday", + "1976-04-25": "Sunday", + "1976-05-01": "May Day", + "1976-05-02": "Sunday", + "1976-05-09": "Sunday", + "1976-05-16": "Sunday", + "1976-05-23": "Sunday", + "1976-05-27": "Ascension Day", + "1976-05-30": "Sunday", + "1976-06-06": "Sunday; Whit Sunday", + "1976-06-07": "Whit Monday", + "1976-06-13": "Sunday", + "1976-06-20": "Sunday", + "1976-06-25": "Midsummer Eve", + "1976-06-26": "Midsummer Day", + "1976-06-27": "Sunday", + "1976-07-04": "Sunday", + "1976-07-11": "Sunday", + "1976-07-18": "Sunday", + "1976-07-25": "Sunday", + "1976-08-01": "Sunday", + "1976-08-08": "Sunday", + "1976-08-15": "Sunday", + "1976-08-22": "Sunday", + "1976-08-29": "Sunday", + "1976-09-05": "Sunday", + "1976-09-12": "Sunday", + "1976-09-19": "Sunday", + "1976-09-26": "Sunday", + "1976-10-03": "Sunday", + "1976-10-10": "Sunday", + "1976-10-17": "Sunday", + "1976-10-24": "Sunday", + "1976-10-31": "Sunday", + "1976-11-06": "All Saints' Day", + "1976-11-07": "Sunday", + "1976-11-14": "Sunday", + "1976-11-21": "Sunday", + "1976-11-28": "Sunday", + "1976-12-05": "Sunday", + "1976-12-12": "Sunday", + "1976-12-19": "Sunday", + "1976-12-24": "Christmas Eve", + "1976-12-25": "Christmas Day", + "1976-12-26": "Second Day of Christmas; Sunday", + "1976-12-31": "New Year's Eve", + "1977-01-01": "New Year's Day", + "1977-01-02": "Sunday", + "1977-01-06": "Epiphany", + "1977-01-09": "Sunday", + "1977-01-16": "Sunday", + "1977-01-23": "Sunday", + "1977-01-30": "Sunday", + "1977-02-06": "Sunday", + "1977-02-13": "Sunday", + "1977-02-20": "Sunday", + "1977-02-27": "Sunday", + "1977-03-06": "Sunday", + "1977-03-13": "Sunday", + "1977-03-20": "Sunday", + "1977-03-27": "Sunday", + "1977-04-03": "Sunday", + "1977-04-08": "Good Friday", + "1977-04-10": "Easter Sunday; Sunday", + "1977-04-11": "Easter Monday", + "1977-04-17": "Sunday", + "1977-04-24": "Sunday", + "1977-05-01": "May Day; Sunday", + "1977-05-08": "Sunday", + "1977-05-15": "Sunday", + "1977-05-19": "Ascension Day", + "1977-05-22": "Sunday", + "1977-05-29": "Sunday; Whit Sunday", + "1977-05-30": "Whit Monday", + "1977-06-05": "Sunday", + "1977-06-12": "Sunday", + "1977-06-19": "Sunday", + "1977-06-24": "Midsummer Eve", + "1977-06-25": "Midsummer Day", + "1977-06-26": "Sunday", + "1977-07-03": "Sunday", + "1977-07-10": "Sunday", + "1977-07-17": "Sunday", + "1977-07-24": "Sunday", + "1977-07-31": "Sunday", + "1977-08-07": "Sunday", + "1977-08-14": "Sunday", + "1977-08-21": "Sunday", + "1977-08-28": "Sunday", + "1977-09-04": "Sunday", + "1977-09-11": "Sunday", + "1977-09-18": "Sunday", + "1977-09-25": "Sunday", + "1977-10-02": "Sunday", + "1977-10-09": "Sunday", + "1977-10-16": "Sunday", + "1977-10-23": "Sunday", + "1977-10-30": "Sunday", + "1977-11-05": "All Saints' Day", + "1977-11-06": "Sunday", + "1977-11-13": "Sunday", + "1977-11-20": "Sunday", + "1977-11-27": "Sunday", + "1977-12-04": "Sunday", + "1977-12-11": "Sunday", + "1977-12-18": "Sunday", + "1977-12-24": "Christmas Eve", + "1977-12-25": "Christmas Day; Sunday", + "1977-12-26": "Second Day of Christmas", + "1977-12-31": "New Year's Eve", + "1978-01-01": "New Year's Day; Sunday", + "1978-01-06": "Epiphany", + "1978-01-08": "Sunday", + "1978-01-15": "Sunday", + "1978-01-22": "Sunday", + "1978-01-29": "Sunday", + "1978-02-05": "Sunday", + "1978-02-12": "Sunday", + "1978-02-19": "Sunday", + "1978-02-26": "Sunday", + "1978-03-05": "Sunday", + "1978-03-12": "Sunday", + "1978-03-19": "Sunday", + "1978-03-24": "Good Friday", + "1978-03-26": "Easter Sunday; Sunday", + "1978-03-27": "Easter Monday", + "1978-04-02": "Sunday", + "1978-04-09": "Sunday", + "1978-04-16": "Sunday", + "1978-04-23": "Sunday", + "1978-04-30": "Sunday", + "1978-05-01": "May Day", + "1978-05-04": "Ascension Day", + "1978-05-07": "Sunday", + "1978-05-14": "Sunday; Whit Sunday", + "1978-05-15": "Whit Monday", + "1978-05-21": "Sunday", + "1978-05-28": "Sunday", + "1978-06-04": "Sunday", + "1978-06-11": "Sunday", + "1978-06-18": "Sunday", + "1978-06-23": "Midsummer Eve", + "1978-06-24": "Midsummer Day", + "1978-06-25": "Sunday", + "1978-07-02": "Sunday", + "1978-07-09": "Sunday", + "1978-07-16": "Sunday", + "1978-07-23": "Sunday", + "1978-07-30": "Sunday", + "1978-08-06": "Sunday", + "1978-08-13": "Sunday", + "1978-08-20": "Sunday", + "1978-08-27": "Sunday", + "1978-09-03": "Sunday", + "1978-09-10": "Sunday", + "1978-09-17": "Sunday", + "1978-09-24": "Sunday", + "1978-10-01": "Sunday", + "1978-10-08": "Sunday", + "1978-10-15": "Sunday", + "1978-10-22": "Sunday", + "1978-10-29": "Sunday", + "1978-11-04": "All Saints' Day", + "1978-11-05": "Sunday", + "1978-11-12": "Sunday", + "1978-11-19": "Sunday", + "1978-11-26": "Sunday", + "1978-12-03": "Sunday", + "1978-12-10": "Sunday", + "1978-12-17": "Sunday", + "1978-12-24": "Christmas Eve; Sunday", + "1978-12-25": "Christmas Day", + "1978-12-26": "Second Day of Christmas", + "1978-12-31": "New Year's Eve; Sunday", + "1979-01-01": "New Year's Day", + "1979-01-06": "Epiphany", + "1979-01-07": "Sunday", + "1979-01-14": "Sunday", + "1979-01-21": "Sunday", + "1979-01-28": "Sunday", + "1979-02-04": "Sunday", + "1979-02-11": "Sunday", + "1979-02-18": "Sunday", + "1979-02-25": "Sunday", + "1979-03-04": "Sunday", + "1979-03-11": "Sunday", + "1979-03-18": "Sunday", + "1979-03-25": "Sunday", + "1979-04-01": "Sunday", + "1979-04-08": "Sunday", + "1979-04-13": "Good Friday", + "1979-04-15": "Easter Sunday; Sunday", + "1979-04-16": "Easter Monday", + "1979-04-22": "Sunday", + "1979-04-29": "Sunday", + "1979-05-01": "May Day", + "1979-05-06": "Sunday", + "1979-05-13": "Sunday", + "1979-05-20": "Sunday", + "1979-05-24": "Ascension Day", + "1979-05-27": "Sunday", + "1979-06-03": "Sunday; Whit Sunday", + "1979-06-04": "Whit Monday", + "1979-06-10": "Sunday", + "1979-06-17": "Sunday", + "1979-06-22": "Midsummer Eve", + "1979-06-23": "Midsummer Day", + "1979-06-24": "Sunday", + "1979-07-01": "Sunday", + "1979-07-08": "Sunday", + "1979-07-15": "Sunday", + "1979-07-22": "Sunday", + "1979-07-29": "Sunday", + "1979-08-05": "Sunday", + "1979-08-12": "Sunday", + "1979-08-19": "Sunday", + "1979-08-26": "Sunday", + "1979-09-02": "Sunday", + "1979-09-09": "Sunday", + "1979-09-16": "Sunday", + "1979-09-23": "Sunday", + "1979-09-30": "Sunday", + "1979-10-07": "Sunday", + "1979-10-14": "Sunday", + "1979-10-21": "Sunday", + "1979-10-28": "Sunday", + "1979-11-03": "All Saints' Day", + "1979-11-04": "Sunday", + "1979-11-11": "Sunday", + "1979-11-18": "Sunday", + "1979-11-25": "Sunday", + "1979-12-02": "Sunday", + "1979-12-09": "Sunday", + "1979-12-16": "Sunday", + "1979-12-23": "Sunday", + "1979-12-24": "Christmas Eve", + "1979-12-25": "Christmas Day", + "1979-12-26": "Second Day of Christmas", + "1979-12-30": "Sunday", + "1979-12-31": "New Year's Eve", + "1980-01-01": "New Year's Day", + "1980-01-06": "Epiphany; Sunday", + "1980-01-13": "Sunday", + "1980-01-20": "Sunday", + "1980-01-27": "Sunday", + "1980-02-03": "Sunday", + "1980-02-10": "Sunday", + "1980-02-17": "Sunday", + "1980-02-24": "Sunday", + "1980-03-02": "Sunday", + "1980-03-09": "Sunday", + "1980-03-16": "Sunday", + "1980-03-23": "Sunday", + "1980-03-30": "Sunday", + "1980-04-04": "Good Friday", + "1980-04-06": "Easter Sunday; Sunday", + "1980-04-07": "Easter Monday", + "1980-04-13": "Sunday", + "1980-04-20": "Sunday", + "1980-04-27": "Sunday", + "1980-05-01": "May Day", + "1980-05-04": "Sunday", + "1980-05-11": "Sunday", + "1980-05-15": "Ascension Day", + "1980-05-18": "Sunday", + "1980-05-25": "Sunday; Whit Sunday", + "1980-05-26": "Whit Monday", + "1980-06-01": "Sunday", + "1980-06-08": "Sunday", + "1980-06-15": "Sunday", + "1980-06-20": "Midsummer Eve", + "1980-06-21": "Midsummer Day", + "1980-06-22": "Sunday", + "1980-06-29": "Sunday", + "1980-07-06": "Sunday", + "1980-07-13": "Sunday", + "1980-07-20": "Sunday", + "1980-07-27": "Sunday", + "1980-08-03": "Sunday", + "1980-08-10": "Sunday", + "1980-08-17": "Sunday", + "1980-08-24": "Sunday", + "1980-08-31": "Sunday", + "1980-09-07": "Sunday", + "1980-09-14": "Sunday", + "1980-09-21": "Sunday", + "1980-09-28": "Sunday", + "1980-10-05": "Sunday", + "1980-10-12": "Sunday", + "1980-10-19": "Sunday", + "1980-10-26": "Sunday", + "1980-11-01": "All Saints' Day", + "1980-11-02": "Sunday", + "1980-11-09": "Sunday", + "1980-11-16": "Sunday", + "1980-11-23": "Sunday", + "1980-11-30": "Sunday", + "1980-12-07": "Sunday", + "1980-12-14": "Sunday", + "1980-12-21": "Sunday", + "1980-12-24": "Christmas Eve", + "1980-12-25": "Christmas Day", + "1980-12-26": "Second Day of Christmas", + "1980-12-28": "Sunday", + "1980-12-31": "New Year's Eve", + "1981-01-01": "New Year's Day", + "1981-01-04": "Sunday", + "1981-01-06": "Epiphany", + "1981-01-11": "Sunday", + "1981-01-18": "Sunday", + "1981-01-25": "Sunday", + "1981-02-01": "Sunday", + "1981-02-08": "Sunday", + "1981-02-15": "Sunday", + "1981-02-22": "Sunday", + "1981-03-01": "Sunday", + "1981-03-08": "Sunday", + "1981-03-15": "Sunday", + "1981-03-22": "Sunday", + "1981-03-29": "Sunday", + "1981-04-05": "Sunday", + "1981-04-12": "Sunday", + "1981-04-17": "Good Friday", + "1981-04-19": "Easter Sunday; Sunday", + "1981-04-20": "Easter Monday", + "1981-04-26": "Sunday", + "1981-05-01": "May Day", + "1981-05-03": "Sunday", + "1981-05-10": "Sunday", + "1981-05-17": "Sunday", + "1981-05-24": "Sunday", + "1981-05-28": "Ascension Day", + "1981-05-31": "Sunday", + "1981-06-07": "Sunday; Whit Sunday", + "1981-06-08": "Whit Monday", + "1981-06-14": "Sunday", + "1981-06-19": "Midsummer Eve", + "1981-06-20": "Midsummer Day", + "1981-06-21": "Sunday", + "1981-06-28": "Sunday", + "1981-07-05": "Sunday", + "1981-07-12": "Sunday", + "1981-07-19": "Sunday", + "1981-07-26": "Sunday", + "1981-08-02": "Sunday", + "1981-08-09": "Sunday", + "1981-08-16": "Sunday", + "1981-08-23": "Sunday", + "1981-08-30": "Sunday", + "1981-09-06": "Sunday", + "1981-09-13": "Sunday", + "1981-09-20": "Sunday", + "1981-09-27": "Sunday", + "1981-10-04": "Sunday", + "1981-10-11": "Sunday", + "1981-10-18": "Sunday", + "1981-10-25": "Sunday", + "1981-10-31": "All Saints' Day", + "1981-11-01": "Sunday", + "1981-11-08": "Sunday", + "1981-11-15": "Sunday", + "1981-11-22": "Sunday", + "1981-11-29": "Sunday", + "1981-12-06": "Sunday", + "1981-12-13": "Sunday", + "1981-12-20": "Sunday", + "1981-12-24": "Christmas Eve", + "1981-12-25": "Christmas Day", + "1981-12-26": "Second Day of Christmas", + "1981-12-27": "Sunday", + "1981-12-31": "New Year's Eve", + "1982-01-01": "New Year's Day", + "1982-01-03": "Sunday", + "1982-01-06": "Epiphany", + "1982-01-10": "Sunday", + "1982-01-17": "Sunday", + "1982-01-24": "Sunday", + "1982-01-31": "Sunday", + "1982-02-07": "Sunday", + "1982-02-14": "Sunday", + "1982-02-21": "Sunday", + "1982-02-28": "Sunday", + "1982-03-07": "Sunday", + "1982-03-14": "Sunday", + "1982-03-21": "Sunday", + "1982-03-28": "Sunday", + "1982-04-04": "Sunday", + "1982-04-09": "Good Friday", + "1982-04-11": "Easter Sunday; Sunday", + "1982-04-12": "Easter Monday", + "1982-04-18": "Sunday", + "1982-04-25": "Sunday", + "1982-05-01": "May Day", + "1982-05-02": "Sunday", + "1982-05-09": "Sunday", + "1982-05-16": "Sunday", + "1982-05-20": "Ascension Day", + "1982-05-23": "Sunday", + "1982-05-30": "Sunday; Whit Sunday", + "1982-05-31": "Whit Monday", + "1982-06-06": "Sunday", + "1982-06-13": "Sunday", + "1982-06-20": "Sunday", + "1982-06-25": "Midsummer Eve", + "1982-06-26": "Midsummer Day", + "1982-06-27": "Sunday", + "1982-07-04": "Sunday", + "1982-07-11": "Sunday", + "1982-07-18": "Sunday", + "1982-07-25": "Sunday", + "1982-08-01": "Sunday", + "1982-08-08": "Sunday", + "1982-08-15": "Sunday", + "1982-08-22": "Sunday", + "1982-08-29": "Sunday", + "1982-09-05": "Sunday", + "1982-09-12": "Sunday", + "1982-09-19": "Sunday", + "1982-09-26": "Sunday", + "1982-10-03": "Sunday", + "1982-10-10": "Sunday", + "1982-10-17": "Sunday", + "1982-10-24": "Sunday", + "1982-10-31": "Sunday", + "1982-11-06": "All Saints' Day", + "1982-11-07": "Sunday", + "1982-11-14": "Sunday", + "1982-11-21": "Sunday", + "1982-11-28": "Sunday", + "1982-12-05": "Sunday", + "1982-12-12": "Sunday", + "1982-12-19": "Sunday", + "1982-12-24": "Christmas Eve", + "1982-12-25": "Christmas Day", + "1982-12-26": "Second Day of Christmas; Sunday", + "1982-12-31": "New Year's Eve", + "1983-01-01": "New Year's Day", + "1983-01-02": "Sunday", + "1983-01-06": "Epiphany", + "1983-01-09": "Sunday", + "1983-01-16": "Sunday", + "1983-01-23": "Sunday", + "1983-01-30": "Sunday", + "1983-02-06": "Sunday", + "1983-02-13": "Sunday", + "1983-02-20": "Sunday", + "1983-02-27": "Sunday", + "1983-03-06": "Sunday", + "1983-03-13": "Sunday", + "1983-03-20": "Sunday", + "1983-03-27": "Sunday", + "1983-04-01": "Good Friday", + "1983-04-03": "Easter Sunday; Sunday", + "1983-04-04": "Easter Monday", + "1983-04-10": "Sunday", + "1983-04-17": "Sunday", + "1983-04-24": "Sunday", + "1983-05-01": "May Day; Sunday", + "1983-05-08": "Sunday", + "1983-05-12": "Ascension Day", + "1983-05-15": "Sunday", + "1983-05-22": "Sunday; Whit Sunday", + "1983-05-23": "Whit Monday", + "1983-05-29": "Sunday", + "1983-06-05": "Sunday", + "1983-06-12": "Sunday", + "1983-06-19": "Sunday", + "1983-06-24": "Midsummer Eve", + "1983-06-25": "Midsummer Day", + "1983-06-26": "Sunday", + "1983-07-03": "Sunday", + "1983-07-10": "Sunday", + "1983-07-17": "Sunday", + "1983-07-24": "Sunday", + "1983-07-31": "Sunday", + "1983-08-07": "Sunday", + "1983-08-14": "Sunday", + "1983-08-21": "Sunday", + "1983-08-28": "Sunday", + "1983-09-04": "Sunday", + "1983-09-11": "Sunday", + "1983-09-18": "Sunday", + "1983-09-25": "Sunday", + "1983-10-02": "Sunday", + "1983-10-09": "Sunday", + "1983-10-16": "Sunday", + "1983-10-23": "Sunday", + "1983-10-30": "Sunday", + "1983-11-05": "All Saints' Day", + "1983-11-06": "Sunday", + "1983-11-13": "Sunday", + "1983-11-20": "Sunday", + "1983-11-27": "Sunday", + "1983-12-04": "Sunday", + "1983-12-11": "Sunday", + "1983-12-18": "Sunday", + "1983-12-24": "Christmas Eve", + "1983-12-25": "Christmas Day; Sunday", + "1983-12-26": "Second Day of Christmas", + "1983-12-31": "New Year's Eve", + "1984-01-01": "New Year's Day; Sunday", + "1984-01-06": "Epiphany", + "1984-01-08": "Sunday", + "1984-01-15": "Sunday", + "1984-01-22": "Sunday", + "1984-01-29": "Sunday", + "1984-02-05": "Sunday", + "1984-02-12": "Sunday", + "1984-02-19": "Sunday", + "1984-02-26": "Sunday", + "1984-03-04": "Sunday", + "1984-03-11": "Sunday", + "1984-03-18": "Sunday", + "1984-03-25": "Sunday", + "1984-04-01": "Sunday", + "1984-04-08": "Sunday", + "1984-04-15": "Sunday", + "1984-04-20": "Good Friday", + "1984-04-22": "Easter Sunday; Sunday", + "1984-04-23": "Easter Monday", + "1984-04-29": "Sunday", + "1984-05-01": "May Day", + "1984-05-06": "Sunday", + "1984-05-13": "Sunday", + "1984-05-20": "Sunday", + "1984-05-27": "Sunday", + "1984-05-31": "Ascension Day", + "1984-06-03": "Sunday", + "1984-06-10": "Sunday; Whit Sunday", + "1984-06-11": "Whit Monday", + "1984-06-17": "Sunday", + "1984-06-22": "Midsummer Eve", + "1984-06-23": "Midsummer Day", + "1984-06-24": "Sunday", + "1984-07-01": "Sunday", + "1984-07-08": "Sunday", + "1984-07-15": "Sunday", + "1984-07-22": "Sunday", + "1984-07-29": "Sunday", + "1984-08-05": "Sunday", + "1984-08-12": "Sunday", + "1984-08-19": "Sunday", + "1984-08-26": "Sunday", + "1984-09-02": "Sunday", + "1984-09-09": "Sunday", + "1984-09-16": "Sunday", + "1984-09-23": "Sunday", + "1984-09-30": "Sunday", + "1984-10-07": "Sunday", + "1984-10-14": "Sunday", + "1984-10-21": "Sunday", + "1984-10-28": "Sunday", + "1984-11-03": "All Saints' Day", + "1984-11-04": "Sunday", + "1984-11-11": "Sunday", + "1984-11-18": "Sunday", + "1984-11-25": "Sunday", + "1984-12-02": "Sunday", + "1984-12-09": "Sunday", + "1984-12-16": "Sunday", + "1984-12-23": "Sunday", + "1984-12-24": "Christmas Eve", + "1984-12-25": "Christmas Day", + "1984-12-26": "Second Day of Christmas", + "1984-12-30": "Sunday", + "1984-12-31": "New Year's Eve", + "1985-01-01": "New Year's Day", + "1985-01-06": "Epiphany; Sunday", + "1985-01-13": "Sunday", + "1985-01-20": "Sunday", + "1985-01-27": "Sunday", + "1985-02-03": "Sunday", + "1985-02-10": "Sunday", + "1985-02-17": "Sunday", + "1985-02-24": "Sunday", + "1985-03-03": "Sunday", + "1985-03-10": "Sunday", + "1985-03-17": "Sunday", + "1985-03-24": "Sunday", + "1985-03-31": "Sunday", + "1985-04-05": "Good Friday", + "1985-04-07": "Easter Sunday; Sunday", + "1985-04-08": "Easter Monday", + "1985-04-14": "Sunday", + "1985-04-21": "Sunday", + "1985-04-28": "Sunday", + "1985-05-01": "May Day", + "1985-05-05": "Sunday", + "1985-05-12": "Sunday", + "1985-05-16": "Ascension Day", + "1985-05-19": "Sunday", + "1985-05-26": "Sunday; Whit Sunday", + "1985-05-27": "Whit Monday", + "1985-06-02": "Sunday", + "1985-06-09": "Sunday", + "1985-06-16": "Sunday", + "1985-06-21": "Midsummer Eve", + "1985-06-22": "Midsummer Day", + "1985-06-23": "Sunday", + "1985-06-30": "Sunday", + "1985-07-07": "Sunday", + "1985-07-14": "Sunday", + "1985-07-21": "Sunday", + "1985-07-28": "Sunday", + "1985-08-04": "Sunday", + "1985-08-11": "Sunday", + "1985-08-18": "Sunday", + "1985-08-25": "Sunday", + "1985-09-01": "Sunday", + "1985-09-08": "Sunday", + "1985-09-15": "Sunday", + "1985-09-22": "Sunday", + "1985-09-29": "Sunday", + "1985-10-06": "Sunday", + "1985-10-13": "Sunday", + "1985-10-20": "Sunday", + "1985-10-27": "Sunday", + "1985-11-02": "All Saints' Day", + "1985-11-03": "Sunday", + "1985-11-10": "Sunday", + "1985-11-17": "Sunday", + "1985-11-24": "Sunday", + "1985-12-01": "Sunday", + "1985-12-08": "Sunday", + "1985-12-15": "Sunday", + "1985-12-22": "Sunday", + "1985-12-24": "Christmas Eve", + "1985-12-25": "Christmas Day", + "1985-12-26": "Second Day of Christmas", + "1985-12-29": "Sunday", + "1985-12-31": "New Year's Eve", + "1986-01-01": "New Year's Day", + "1986-01-05": "Sunday", + "1986-01-06": "Epiphany", + "1986-01-12": "Sunday", + "1986-01-19": "Sunday", + "1986-01-26": "Sunday", + "1986-02-02": "Sunday", + "1986-02-09": "Sunday", + "1986-02-16": "Sunday", + "1986-02-23": "Sunday", + "1986-03-02": "Sunday", + "1986-03-09": "Sunday", + "1986-03-16": "Sunday", + "1986-03-23": "Sunday", + "1986-03-28": "Good Friday", + "1986-03-30": "Easter Sunday; Sunday", + "1986-03-31": "Easter Monday", + "1986-04-06": "Sunday", + "1986-04-13": "Sunday", + "1986-04-20": "Sunday", + "1986-04-27": "Sunday", + "1986-05-01": "May Day", + "1986-05-04": "Sunday", + "1986-05-08": "Ascension Day", + "1986-05-11": "Sunday", + "1986-05-18": "Sunday; Whit Sunday", + "1986-05-19": "Whit Monday", + "1986-05-25": "Sunday", + "1986-06-01": "Sunday", + "1986-06-08": "Sunday", + "1986-06-15": "Sunday", + "1986-06-20": "Midsummer Eve", + "1986-06-21": "Midsummer Day", + "1986-06-22": "Sunday", + "1986-06-29": "Sunday", + "1986-07-06": "Sunday", + "1986-07-13": "Sunday", + "1986-07-20": "Sunday", + "1986-07-27": "Sunday", + "1986-08-03": "Sunday", + "1986-08-10": "Sunday", + "1986-08-17": "Sunday", + "1986-08-24": "Sunday", + "1986-08-31": "Sunday", + "1986-09-07": "Sunday", + "1986-09-14": "Sunday", + "1986-09-21": "Sunday", + "1986-09-28": "Sunday", + "1986-10-05": "Sunday", + "1986-10-12": "Sunday", + "1986-10-19": "Sunday", + "1986-10-26": "Sunday", + "1986-11-01": "All Saints' Day", + "1986-11-02": "Sunday", + "1986-11-09": "Sunday", + "1986-11-16": "Sunday", + "1986-11-23": "Sunday", + "1986-11-30": "Sunday", + "1986-12-07": "Sunday", + "1986-12-14": "Sunday", + "1986-12-21": "Sunday", + "1986-12-24": "Christmas Eve", + "1986-12-25": "Christmas Day", + "1986-12-26": "Second Day of Christmas", + "1986-12-28": "Sunday", + "1986-12-31": "New Year's Eve", + "1987-01-01": "New Year's Day", + "1987-01-04": "Sunday", + "1987-01-06": "Epiphany", + "1987-01-11": "Sunday", + "1987-01-18": "Sunday", + "1987-01-25": "Sunday", + "1987-02-01": "Sunday", + "1987-02-08": "Sunday", + "1987-02-15": "Sunday", + "1987-02-22": "Sunday", + "1987-03-01": "Sunday", + "1987-03-08": "Sunday", + "1987-03-15": "Sunday", + "1987-03-22": "Sunday", + "1987-03-29": "Sunday", + "1987-04-05": "Sunday", + "1987-04-12": "Sunday", + "1987-04-17": "Good Friday", + "1987-04-19": "Easter Sunday; Sunday", + "1987-04-20": "Easter Monday", + "1987-04-26": "Sunday", + "1987-05-01": "May Day", + "1987-05-03": "Sunday", + "1987-05-10": "Sunday", + "1987-05-17": "Sunday", + "1987-05-24": "Sunday", + "1987-05-28": "Ascension Day", + "1987-05-31": "Sunday", + "1987-06-07": "Sunday; Whit Sunday", + "1987-06-08": "Whit Monday", + "1987-06-14": "Sunday", + "1987-06-19": "Midsummer Eve", + "1987-06-20": "Midsummer Day", + "1987-06-21": "Sunday", + "1987-06-28": "Sunday", + "1987-07-05": "Sunday", + "1987-07-12": "Sunday", + "1987-07-19": "Sunday", + "1987-07-26": "Sunday", + "1987-08-02": "Sunday", + "1987-08-09": "Sunday", + "1987-08-16": "Sunday", + "1987-08-23": "Sunday", + "1987-08-30": "Sunday", + "1987-09-06": "Sunday", + "1987-09-13": "Sunday", + "1987-09-20": "Sunday", + "1987-09-27": "Sunday", + "1987-10-04": "Sunday", + "1987-10-11": "Sunday", + "1987-10-18": "Sunday", + "1987-10-25": "Sunday", + "1987-10-31": "All Saints' Day", + "1987-11-01": "Sunday", + "1987-11-08": "Sunday", + "1987-11-15": "Sunday", + "1987-11-22": "Sunday", + "1987-11-29": "Sunday", + "1987-12-06": "Sunday", + "1987-12-13": "Sunday", + "1987-12-20": "Sunday", + "1987-12-24": "Christmas Eve", + "1987-12-25": "Christmas Day", + "1987-12-26": "Second Day of Christmas", + "1987-12-27": "Sunday", + "1987-12-31": "New Year's Eve", + "1988-01-01": "New Year's Day", + "1988-01-03": "Sunday", + "1988-01-06": "Epiphany", + "1988-01-10": "Sunday", + "1988-01-17": "Sunday", + "1988-01-24": "Sunday", + "1988-01-31": "Sunday", + "1988-02-07": "Sunday", + "1988-02-14": "Sunday", + "1988-02-21": "Sunday", + "1988-02-28": "Sunday", + "1988-03-06": "Sunday", + "1988-03-13": "Sunday", + "1988-03-20": "Sunday", + "1988-03-27": "Sunday", + "1988-04-01": "Good Friday", + "1988-04-03": "Easter Sunday; Sunday", + "1988-04-04": "Easter Monday", + "1988-04-10": "Sunday", + "1988-04-17": "Sunday", + "1988-04-24": "Sunday", + "1988-05-01": "May Day; Sunday", + "1988-05-08": "Sunday", + "1988-05-12": "Ascension Day", + "1988-05-15": "Sunday", + "1988-05-22": "Sunday; Whit Sunday", + "1988-05-23": "Whit Monday", + "1988-05-29": "Sunday", + "1988-06-05": "Sunday", + "1988-06-12": "Sunday", + "1988-06-19": "Sunday", + "1988-06-24": "Midsummer Eve", + "1988-06-25": "Midsummer Day", + "1988-06-26": "Sunday", + "1988-07-03": "Sunday", + "1988-07-10": "Sunday", + "1988-07-17": "Sunday", + "1988-07-24": "Sunday", + "1988-07-31": "Sunday", + "1988-08-07": "Sunday", + "1988-08-14": "Sunday", + "1988-08-21": "Sunday", + "1988-08-28": "Sunday", + "1988-09-04": "Sunday", + "1988-09-11": "Sunday", + "1988-09-18": "Sunday", + "1988-09-25": "Sunday", + "1988-10-02": "Sunday", + "1988-10-09": "Sunday", + "1988-10-16": "Sunday", + "1988-10-23": "Sunday", + "1988-10-30": "Sunday", + "1988-11-05": "All Saints' Day", + "1988-11-06": "Sunday", + "1988-11-13": "Sunday", + "1988-11-20": "Sunday", + "1988-11-27": "Sunday", + "1988-12-04": "Sunday", + "1988-12-11": "Sunday", + "1988-12-18": "Sunday", + "1988-12-24": "Christmas Eve", + "1988-12-25": "Christmas Day; Sunday", + "1988-12-26": "Second Day of Christmas", + "1988-12-31": "New Year's Eve", + "1989-01-01": "New Year's Day; Sunday", + "1989-01-06": "Epiphany", + "1989-01-08": "Sunday", + "1989-01-15": "Sunday", + "1989-01-22": "Sunday", + "1989-01-29": "Sunday", + "1989-02-05": "Sunday", + "1989-02-12": "Sunday", + "1989-02-19": "Sunday", + "1989-02-26": "Sunday", + "1989-03-05": "Sunday", + "1989-03-12": "Sunday", + "1989-03-19": "Sunday", + "1989-03-24": "Good Friday", + "1989-03-26": "Easter Sunday; Sunday", + "1989-03-27": "Easter Monday", + "1989-04-02": "Sunday", + "1989-04-09": "Sunday", + "1989-04-16": "Sunday", + "1989-04-23": "Sunday", + "1989-04-30": "Sunday", + "1989-05-01": "May Day", + "1989-05-04": "Ascension Day", + "1989-05-07": "Sunday", + "1989-05-14": "Sunday; Whit Sunday", + "1989-05-15": "Whit Monday", + "1989-05-21": "Sunday", + "1989-05-28": "Sunday", + "1989-06-04": "Sunday", + "1989-06-11": "Sunday", + "1989-06-18": "Sunday", + "1989-06-23": "Midsummer Eve", + "1989-06-24": "Midsummer Day", + "1989-06-25": "Sunday", + "1989-07-02": "Sunday", + "1989-07-09": "Sunday", + "1989-07-16": "Sunday", + "1989-07-23": "Sunday", + "1989-07-30": "Sunday", + "1989-08-06": "Sunday", + "1989-08-13": "Sunday", + "1989-08-20": "Sunday", + "1989-08-27": "Sunday", + "1989-09-03": "Sunday", + "1989-09-10": "Sunday", + "1989-09-17": "Sunday", + "1989-09-24": "Sunday", + "1989-10-01": "Sunday", + "1989-10-08": "Sunday", + "1989-10-15": "Sunday", + "1989-10-22": "Sunday", + "1989-10-29": "Sunday", + "1989-11-04": "All Saints' Day", + "1989-11-05": "Sunday", + "1989-11-12": "Sunday", + "1989-11-19": "Sunday", + "1989-11-26": "Sunday", + "1989-12-03": "Sunday", + "1989-12-10": "Sunday", + "1989-12-17": "Sunday", + "1989-12-24": "Christmas Eve; Sunday", + "1989-12-25": "Christmas Day", + "1989-12-26": "Second Day of Christmas", + "1989-12-31": "New Year's Eve; Sunday", + "1990-01-01": "New Year's Day", + "1990-01-06": "Epiphany", + "1990-01-07": "Sunday", + "1990-01-14": "Sunday", + "1990-01-21": "Sunday", + "1990-01-28": "Sunday", + "1990-02-04": "Sunday", + "1990-02-11": "Sunday", + "1990-02-18": "Sunday", + "1990-02-25": "Sunday", + "1990-03-04": "Sunday", + "1990-03-11": "Sunday", + "1990-03-18": "Sunday", + "1990-03-25": "Sunday", + "1990-04-01": "Sunday", + "1990-04-08": "Sunday", + "1990-04-13": "Good Friday", + "1990-04-15": "Easter Sunday; Sunday", + "1990-04-16": "Easter Monday", + "1990-04-22": "Sunday", + "1990-04-29": "Sunday", + "1990-05-01": "May Day", + "1990-05-06": "Sunday", + "1990-05-13": "Sunday", + "1990-05-20": "Sunday", + "1990-05-24": "Ascension Day", + "1990-05-27": "Sunday", + "1990-06-03": "Sunday; Whit Sunday", + "1990-06-04": "Whit Monday", + "1990-06-10": "Sunday", + "1990-06-17": "Sunday", + "1990-06-22": "Midsummer Eve", + "1990-06-23": "Midsummer Day", + "1990-06-24": "Sunday", + "1990-07-01": "Sunday", + "1990-07-08": "Sunday", + "1990-07-15": "Sunday", + "1990-07-22": "Sunday", + "1990-07-29": "Sunday", + "1990-08-05": "Sunday", + "1990-08-12": "Sunday", + "1990-08-19": "Sunday", + "1990-08-26": "Sunday", + "1990-09-02": "Sunday", + "1990-09-09": "Sunday", + "1990-09-16": "Sunday", + "1990-09-23": "Sunday", + "1990-09-30": "Sunday", + "1990-10-07": "Sunday", + "1990-10-14": "Sunday", + "1990-10-21": "Sunday", + "1990-10-28": "Sunday", + "1990-11-03": "All Saints' Day", + "1990-11-04": "Sunday", + "1990-11-11": "Sunday", + "1990-11-18": "Sunday", + "1990-11-25": "Sunday", + "1990-12-02": "Sunday", + "1990-12-09": "Sunday", + "1990-12-16": "Sunday", + "1990-12-23": "Sunday", + "1990-12-24": "Christmas Eve", + "1990-12-25": "Christmas Day", + "1990-12-26": "Second Day of Christmas", + "1990-12-30": "Sunday", + "1990-12-31": "New Year's Eve", + "1991-01-01": "New Year's Day", + "1991-01-06": "Epiphany; Sunday", + "1991-01-13": "Sunday", + "1991-01-20": "Sunday", + "1991-01-27": "Sunday", + "1991-02-03": "Sunday", + "1991-02-10": "Sunday", + "1991-02-17": "Sunday", + "1991-02-24": "Sunday", + "1991-03-03": "Sunday", + "1991-03-10": "Sunday", + "1991-03-17": "Sunday", + "1991-03-24": "Sunday", + "1991-03-29": "Good Friday", + "1991-03-31": "Easter Sunday; Sunday", + "1991-04-01": "Easter Monday", + "1991-04-07": "Sunday", + "1991-04-14": "Sunday", + "1991-04-21": "Sunday", + "1991-04-28": "Sunday", + "1991-05-01": "May Day", + "1991-05-05": "Sunday", + "1991-05-09": "Ascension Day", + "1991-05-12": "Sunday", + "1991-05-19": "Sunday; Whit Sunday", + "1991-05-20": "Whit Monday", + "1991-05-26": "Sunday", + "1991-06-02": "Sunday", + "1991-06-09": "Sunday", + "1991-06-16": "Sunday", + "1991-06-21": "Midsummer Eve", + "1991-06-22": "Midsummer Day", + "1991-06-23": "Sunday", + "1991-06-30": "Sunday", + "1991-07-07": "Sunday", + "1991-07-14": "Sunday", + "1991-07-21": "Sunday", + "1991-07-28": "Sunday", + "1991-08-04": "Sunday", + "1991-08-11": "Sunday", + "1991-08-18": "Sunday", + "1991-08-25": "Sunday", + "1991-09-01": "Sunday", + "1991-09-08": "Sunday", + "1991-09-15": "Sunday", + "1991-09-22": "Sunday", + "1991-09-29": "Sunday", + "1991-10-06": "Sunday", + "1991-10-13": "Sunday", + "1991-10-20": "Sunday", + "1991-10-27": "Sunday", + "1991-11-02": "All Saints' Day", + "1991-11-03": "Sunday", + "1991-11-10": "Sunday", + "1991-11-17": "Sunday", + "1991-11-24": "Sunday", + "1991-12-01": "Sunday", + "1991-12-08": "Sunday", + "1991-12-15": "Sunday", + "1991-12-22": "Sunday", + "1991-12-24": "Christmas Eve", + "1991-12-25": "Christmas Day", + "1991-12-26": "Second Day of Christmas", + "1991-12-29": "Sunday", + "1991-12-31": "New Year's Eve", + "1992-01-01": "New Year's Day", + "1992-01-05": "Sunday", + "1992-01-06": "Epiphany", + "1992-01-12": "Sunday", + "1992-01-19": "Sunday", + "1992-01-26": "Sunday", + "1992-02-02": "Sunday", + "1992-02-09": "Sunday", + "1992-02-16": "Sunday", + "1992-02-23": "Sunday", + "1992-03-01": "Sunday", + "1992-03-08": "Sunday", + "1992-03-15": "Sunday", + "1992-03-22": "Sunday", + "1992-03-29": "Sunday", + "1992-04-05": "Sunday", + "1992-04-12": "Sunday", + "1992-04-17": "Good Friday", + "1992-04-19": "Easter Sunday; Sunday", + "1992-04-20": "Easter Monday", + "1992-04-26": "Sunday", + "1992-05-01": "May Day", + "1992-05-03": "Sunday", + "1992-05-10": "Sunday", + "1992-05-17": "Sunday", + "1992-05-24": "Sunday", + "1992-05-28": "Ascension Day", + "1992-05-31": "Sunday", + "1992-06-07": "Sunday; Whit Sunday", + "1992-06-08": "Whit Monday", + "1992-06-14": "Sunday", + "1992-06-19": "Midsummer Eve", + "1992-06-20": "Midsummer Day", + "1992-06-21": "Sunday", + "1992-06-28": "Sunday", + "1992-07-05": "Sunday", + "1992-07-12": "Sunday", + "1992-07-19": "Sunday", + "1992-07-26": "Sunday", + "1992-08-02": "Sunday", + "1992-08-09": "Sunday", + "1992-08-16": "Sunday", + "1992-08-23": "Sunday", + "1992-08-30": "Sunday", + "1992-09-06": "Sunday", + "1992-09-13": "Sunday", + "1992-09-20": "Sunday", + "1992-09-27": "Sunday", + "1992-10-04": "Sunday", + "1992-10-11": "Sunday", + "1992-10-18": "Sunday", + "1992-10-25": "Sunday", + "1992-10-31": "All Saints' Day", + "1992-11-01": "Sunday", + "1992-11-08": "Sunday", + "1992-11-15": "Sunday", + "1992-11-22": "Sunday", + "1992-11-29": "Sunday", + "1992-12-06": "Sunday", + "1992-12-13": "Sunday", + "1992-12-20": "Sunday", + "1992-12-24": "Christmas Eve", + "1992-12-25": "Christmas Day", + "1992-12-26": "Second Day of Christmas", + "1992-12-27": "Sunday", + "1992-12-31": "New Year's Eve", + "1993-01-01": "New Year's Day", + "1993-01-03": "Sunday", + "1993-01-06": "Epiphany", + "1993-01-10": "Sunday", + "1993-01-17": "Sunday", + "1993-01-24": "Sunday", + "1993-01-31": "Sunday", + "1993-02-07": "Sunday", + "1993-02-14": "Sunday", + "1993-02-21": "Sunday", + "1993-02-28": "Sunday", + "1993-03-07": "Sunday", + "1993-03-14": "Sunday", + "1993-03-21": "Sunday", + "1993-03-28": "Sunday", + "1993-04-04": "Sunday", + "1993-04-09": "Good Friday", + "1993-04-11": "Easter Sunday; Sunday", + "1993-04-12": "Easter Monday", + "1993-04-18": "Sunday", + "1993-04-25": "Sunday", + "1993-05-01": "May Day", + "1993-05-02": "Sunday", + "1993-05-09": "Sunday", + "1993-05-16": "Sunday", + "1993-05-20": "Ascension Day", + "1993-05-23": "Sunday", + "1993-05-30": "Sunday; Whit Sunday", + "1993-05-31": "Whit Monday", + "1993-06-06": "Sunday", + "1993-06-13": "Sunday", + "1993-06-20": "Sunday", + "1993-06-25": "Midsummer Eve", + "1993-06-26": "Midsummer Day", + "1993-06-27": "Sunday", + "1993-07-04": "Sunday", + "1993-07-11": "Sunday", + "1993-07-18": "Sunday", + "1993-07-25": "Sunday", + "1993-08-01": "Sunday", + "1993-08-08": "Sunday", + "1993-08-15": "Sunday", + "1993-08-22": "Sunday", + "1993-08-29": "Sunday", + "1993-09-05": "Sunday", + "1993-09-12": "Sunday", + "1993-09-19": "Sunday", + "1993-09-26": "Sunday", + "1993-10-03": "Sunday", + "1993-10-10": "Sunday", + "1993-10-17": "Sunday", + "1993-10-24": "Sunday", + "1993-10-31": "Sunday", + "1993-11-06": "All Saints' Day", + "1993-11-07": "Sunday", + "1993-11-14": "Sunday", + "1993-11-21": "Sunday", + "1993-11-28": "Sunday", + "1993-12-05": "Sunday", + "1993-12-12": "Sunday", + "1993-12-19": "Sunday", + "1993-12-24": "Christmas Eve", + "1993-12-25": "Christmas Day", + "1993-12-26": "Second Day of Christmas; Sunday", + "1993-12-31": "New Year's Eve", + "1994-01-01": "New Year's Day", + "1994-01-02": "Sunday", + "1994-01-06": "Epiphany", + "1994-01-09": "Sunday", + "1994-01-16": "Sunday", + "1994-01-23": "Sunday", + "1994-01-30": "Sunday", + "1994-02-06": "Sunday", + "1994-02-13": "Sunday", + "1994-02-20": "Sunday", + "1994-02-27": "Sunday", + "1994-03-06": "Sunday", + "1994-03-13": "Sunday", + "1994-03-20": "Sunday", + "1994-03-27": "Sunday", + "1994-04-01": "Good Friday", + "1994-04-03": "Easter Sunday; Sunday", + "1994-04-04": "Easter Monday", + "1994-04-10": "Sunday", + "1994-04-17": "Sunday", + "1994-04-24": "Sunday", + "1994-05-01": "May Day; Sunday", + "1994-05-08": "Sunday", + "1994-05-12": "Ascension Day", + "1994-05-15": "Sunday", + "1994-05-22": "Sunday; Whit Sunday", + "1994-05-23": "Whit Monday", + "1994-05-29": "Sunday", + "1994-06-05": "Sunday", + "1994-06-12": "Sunday", + "1994-06-19": "Sunday", + "1994-06-24": "Midsummer Eve", + "1994-06-25": "Midsummer Day", + "1994-06-26": "Sunday", + "1994-07-03": "Sunday", + "1994-07-10": "Sunday", + "1994-07-17": "Sunday", + "1994-07-24": "Sunday", + "1994-07-31": "Sunday", + "1994-08-07": "Sunday", + "1994-08-14": "Sunday", + "1994-08-21": "Sunday", + "1994-08-28": "Sunday", + "1994-09-04": "Sunday", + "1994-09-11": "Sunday", + "1994-09-18": "Sunday", + "1994-09-25": "Sunday", + "1994-10-02": "Sunday", + "1994-10-09": "Sunday", + "1994-10-16": "Sunday", + "1994-10-23": "Sunday", + "1994-10-30": "Sunday", + "1994-11-05": "All Saints' Day", + "1994-11-06": "Sunday", + "1994-11-13": "Sunday", + "1994-11-20": "Sunday", + "1994-11-27": "Sunday", + "1994-12-04": "Sunday", + "1994-12-11": "Sunday", + "1994-12-18": "Sunday", + "1994-12-24": "Christmas Eve", + "1994-12-25": "Christmas Day; Sunday", + "1994-12-26": "Second Day of Christmas", + "1994-12-31": "New Year's Eve", + "1995-01-01": "New Year's Day; Sunday", + "1995-01-06": "Epiphany", + "1995-01-08": "Sunday", + "1995-01-15": "Sunday", + "1995-01-22": "Sunday", + "1995-01-29": "Sunday", + "1995-02-05": "Sunday", + "1995-02-12": "Sunday", + "1995-02-19": "Sunday", + "1995-02-26": "Sunday", + "1995-03-05": "Sunday", + "1995-03-12": "Sunday", + "1995-03-19": "Sunday", + "1995-03-26": "Sunday", + "1995-04-02": "Sunday", + "1995-04-09": "Sunday", + "1995-04-14": "Good Friday", + "1995-04-16": "Easter Sunday; Sunday", + "1995-04-17": "Easter Monday", + "1995-04-23": "Sunday", + "1995-04-30": "Sunday", + "1995-05-01": "May Day", + "1995-05-07": "Sunday", + "1995-05-14": "Sunday", + "1995-05-21": "Sunday", + "1995-05-25": "Ascension Day", + "1995-05-28": "Sunday", + "1995-06-04": "Sunday; Whit Sunday", + "1995-06-05": "Whit Monday", + "1995-06-11": "Sunday", + "1995-06-18": "Sunday", + "1995-06-23": "Midsummer Eve", + "1995-06-24": "Midsummer Day", + "1995-06-25": "Sunday", + "1995-07-02": "Sunday", + "1995-07-09": "Sunday", + "1995-07-16": "Sunday", + "1995-07-23": "Sunday", + "1995-07-30": "Sunday", + "1995-08-06": "Sunday", + "1995-08-13": "Sunday", + "1995-08-20": "Sunday", + "1995-08-27": "Sunday", + "1995-09-03": "Sunday", + "1995-09-10": "Sunday", + "1995-09-17": "Sunday", + "1995-09-24": "Sunday", + "1995-10-01": "Sunday", + "1995-10-08": "Sunday", + "1995-10-15": "Sunday", + "1995-10-22": "Sunday", + "1995-10-29": "Sunday", + "1995-11-04": "All Saints' Day", + "1995-11-05": "Sunday", + "1995-11-12": "Sunday", + "1995-11-19": "Sunday", + "1995-11-26": "Sunday", + "1995-12-03": "Sunday", + "1995-12-10": "Sunday", + "1995-12-17": "Sunday", + "1995-12-24": "Christmas Eve; Sunday", + "1995-12-25": "Christmas Day", + "1995-12-26": "Second Day of Christmas", + "1995-12-31": "New Year's Eve; Sunday", + "1996-01-01": "New Year's Day", + "1996-01-06": "Epiphany", + "1996-01-07": "Sunday", + "1996-01-14": "Sunday", + "1996-01-21": "Sunday", + "1996-01-28": "Sunday", + "1996-02-04": "Sunday", + "1996-02-11": "Sunday", + "1996-02-18": "Sunday", + "1996-02-25": "Sunday", + "1996-03-03": "Sunday", + "1996-03-10": "Sunday", + "1996-03-17": "Sunday", + "1996-03-24": "Sunday", + "1996-03-31": "Sunday", + "1996-04-05": "Good Friday", + "1996-04-07": "Easter Sunday; Sunday", + "1996-04-08": "Easter Monday", + "1996-04-14": "Sunday", + "1996-04-21": "Sunday", + "1996-04-28": "Sunday", + "1996-05-01": "May Day", + "1996-05-05": "Sunday", + "1996-05-12": "Sunday", + "1996-05-16": "Ascension Day", + "1996-05-19": "Sunday", + "1996-05-26": "Sunday; Whit Sunday", + "1996-05-27": "Whit Monday", + "1996-06-02": "Sunday", + "1996-06-09": "Sunday", + "1996-06-16": "Sunday", + "1996-06-21": "Midsummer Eve", + "1996-06-22": "Midsummer Day", + "1996-06-23": "Sunday", + "1996-06-30": "Sunday", + "1996-07-07": "Sunday", + "1996-07-14": "Sunday", + "1996-07-21": "Sunday", + "1996-07-28": "Sunday", + "1996-08-04": "Sunday", + "1996-08-11": "Sunday", + "1996-08-18": "Sunday", + "1996-08-25": "Sunday", + "1996-09-01": "Sunday", + "1996-09-08": "Sunday", + "1996-09-15": "Sunday", + "1996-09-22": "Sunday", + "1996-09-29": "Sunday", + "1996-10-06": "Sunday", + "1996-10-13": "Sunday", + "1996-10-20": "Sunday", + "1996-10-27": "Sunday", + "1996-11-02": "All Saints' Day", + "1996-11-03": "Sunday", + "1996-11-10": "Sunday", + "1996-11-17": "Sunday", + "1996-11-24": "Sunday", + "1996-12-01": "Sunday", + "1996-12-08": "Sunday", + "1996-12-15": "Sunday", + "1996-12-22": "Sunday", + "1996-12-24": "Christmas Eve", + "1996-12-25": "Christmas Day", + "1996-12-26": "Second Day of Christmas", + "1996-12-29": "Sunday", + "1996-12-31": "New Year's Eve", + "1997-01-01": "New Year's Day", + "1997-01-05": "Sunday", + "1997-01-06": "Epiphany", + "1997-01-12": "Sunday", + "1997-01-19": "Sunday", + "1997-01-26": "Sunday", + "1997-02-02": "Sunday", + "1997-02-09": "Sunday", + "1997-02-16": "Sunday", + "1997-02-23": "Sunday", + "1997-03-02": "Sunday", + "1997-03-09": "Sunday", + "1997-03-16": "Sunday", + "1997-03-23": "Sunday", + "1997-03-28": "Good Friday", + "1997-03-30": "Easter Sunday; Sunday", + "1997-03-31": "Easter Monday", + "1997-04-06": "Sunday", + "1997-04-13": "Sunday", + "1997-04-20": "Sunday", + "1997-04-27": "Sunday", + "1997-05-01": "May Day", + "1997-05-04": "Sunday", + "1997-05-08": "Ascension Day", + "1997-05-11": "Sunday", + "1997-05-18": "Sunday; Whit Sunday", + "1997-05-19": "Whit Monday", + "1997-05-25": "Sunday", + "1997-06-01": "Sunday", + "1997-06-08": "Sunday", + "1997-06-15": "Sunday", + "1997-06-20": "Midsummer Eve", + "1997-06-21": "Midsummer Day", + "1997-06-22": "Sunday", + "1997-06-29": "Sunday", + "1997-07-06": "Sunday", + "1997-07-13": "Sunday", + "1997-07-20": "Sunday", + "1997-07-27": "Sunday", + "1997-08-03": "Sunday", + "1997-08-10": "Sunday", + "1997-08-17": "Sunday", + "1997-08-24": "Sunday", + "1997-08-31": "Sunday", + "1997-09-07": "Sunday", + "1997-09-14": "Sunday", + "1997-09-21": "Sunday", + "1997-09-28": "Sunday", + "1997-10-05": "Sunday", + "1997-10-12": "Sunday", + "1997-10-19": "Sunday", + "1997-10-26": "Sunday", + "1997-11-01": "All Saints' Day", + "1997-11-02": "Sunday", + "1997-11-09": "Sunday", + "1997-11-16": "Sunday", + "1997-11-23": "Sunday", + "1997-11-30": "Sunday", + "1997-12-07": "Sunday", + "1997-12-14": "Sunday", + "1997-12-21": "Sunday", + "1997-12-24": "Christmas Eve", + "1997-12-25": "Christmas Day", + "1997-12-26": "Second Day of Christmas", + "1997-12-28": "Sunday", + "1997-12-31": "New Year's Eve", + "1998-01-01": "New Year's Day", + "1998-01-04": "Sunday", + "1998-01-06": "Epiphany", + "1998-01-11": "Sunday", + "1998-01-18": "Sunday", + "1998-01-25": "Sunday", + "1998-02-01": "Sunday", + "1998-02-08": "Sunday", + "1998-02-15": "Sunday", + "1998-02-22": "Sunday", + "1998-03-01": "Sunday", + "1998-03-08": "Sunday", + "1998-03-15": "Sunday", + "1998-03-22": "Sunday", + "1998-03-29": "Sunday", + "1998-04-05": "Sunday", + "1998-04-10": "Good Friday", + "1998-04-12": "Easter Sunday; Sunday", + "1998-04-13": "Easter Monday", + "1998-04-19": "Sunday", + "1998-04-26": "Sunday", + "1998-05-01": "May Day", + "1998-05-03": "Sunday", + "1998-05-10": "Sunday", + "1998-05-17": "Sunday", + "1998-05-21": "Ascension Day", + "1998-05-24": "Sunday", + "1998-05-31": "Sunday; Whit Sunday", + "1998-06-01": "Whit Monday", + "1998-06-07": "Sunday", + "1998-06-14": "Sunday", + "1998-06-19": "Midsummer Eve", + "1998-06-20": "Midsummer Day", + "1998-06-21": "Sunday", + "1998-06-28": "Sunday", + "1998-07-05": "Sunday", + "1998-07-12": "Sunday", + "1998-07-19": "Sunday", + "1998-07-26": "Sunday", + "1998-08-02": "Sunday", + "1998-08-09": "Sunday", + "1998-08-16": "Sunday", + "1998-08-23": "Sunday", + "1998-08-30": "Sunday", + "1998-09-06": "Sunday", + "1998-09-13": "Sunday", + "1998-09-20": "Sunday", + "1998-09-27": "Sunday", + "1998-10-04": "Sunday", + "1998-10-11": "Sunday", + "1998-10-18": "Sunday", + "1998-10-25": "Sunday", + "1998-10-31": "All Saints' Day", + "1998-11-01": "Sunday", + "1998-11-08": "Sunday", + "1998-11-15": "Sunday", + "1998-11-22": "Sunday", + "1998-11-29": "Sunday", + "1998-12-06": "Sunday", + "1998-12-13": "Sunday", + "1998-12-20": "Sunday", + "1998-12-24": "Christmas Eve", + "1998-12-25": "Christmas Day", + "1998-12-26": "Second Day of Christmas", + "1998-12-27": "Sunday", + "1998-12-31": "New Year's Eve", + "1999-01-01": "New Year's Day", + "1999-01-03": "Sunday", + "1999-01-06": "Epiphany", + "1999-01-10": "Sunday", + "1999-01-17": "Sunday", + "1999-01-24": "Sunday", + "1999-01-31": "Sunday", + "1999-02-07": "Sunday", + "1999-02-14": "Sunday", + "1999-02-21": "Sunday", + "1999-02-28": "Sunday", + "1999-03-07": "Sunday", + "1999-03-14": "Sunday", + "1999-03-21": "Sunday", + "1999-03-28": "Sunday", + "1999-04-02": "Good Friday", + "1999-04-04": "Easter Sunday; Sunday", + "1999-04-05": "Easter Monday", + "1999-04-11": "Sunday", + "1999-04-18": "Sunday", + "1999-04-25": "Sunday", + "1999-05-01": "May Day", + "1999-05-02": "Sunday", + "1999-05-09": "Sunday", + "1999-05-13": "Ascension Day", + "1999-05-16": "Sunday", + "1999-05-23": "Sunday; Whit Sunday", + "1999-05-24": "Whit Monday", + "1999-05-30": "Sunday", + "1999-06-06": "Sunday", + "1999-06-13": "Sunday", + "1999-06-20": "Sunday", + "1999-06-25": "Midsummer Eve", + "1999-06-26": "Midsummer Day", + "1999-06-27": "Sunday", + "1999-07-04": "Sunday", + "1999-07-11": "Sunday", + "1999-07-18": "Sunday", + "1999-07-25": "Sunday", + "1999-08-01": "Sunday", + "1999-08-08": "Sunday", + "1999-08-15": "Sunday", + "1999-08-22": "Sunday", + "1999-08-29": "Sunday", + "1999-09-05": "Sunday", + "1999-09-12": "Sunday", + "1999-09-19": "Sunday", + "1999-09-26": "Sunday", + "1999-10-03": "Sunday", + "1999-10-10": "Sunday", + "1999-10-17": "Sunday", + "1999-10-24": "Sunday", + "1999-10-31": "Sunday", + "1999-11-06": "All Saints' Day", + "1999-11-07": "Sunday", + "1999-11-14": "Sunday", + "1999-11-21": "Sunday", + "1999-11-28": "Sunday", + "1999-12-05": "Sunday", + "1999-12-12": "Sunday", + "1999-12-19": "Sunday", + "1999-12-24": "Christmas Eve", + "1999-12-25": "Christmas Day", + "1999-12-26": "Second Day of Christmas; Sunday", + "1999-12-31": "New Year's Eve", + "2000-01-01": "New Year's Day", + "2000-01-02": "Sunday", + "2000-01-06": "Epiphany", + "2000-01-09": "Sunday", + "2000-01-16": "Sunday", + "2000-01-23": "Sunday", + "2000-01-30": "Sunday", + "2000-02-06": "Sunday", + "2000-02-13": "Sunday", + "2000-02-20": "Sunday", + "2000-02-27": "Sunday", + "2000-03-05": "Sunday", + "2000-03-12": "Sunday", + "2000-03-19": "Sunday", + "2000-03-26": "Sunday", + "2000-04-02": "Sunday", + "2000-04-09": "Sunday", + "2000-04-16": "Sunday", + "2000-04-21": "Good Friday", + "2000-04-23": "Easter Sunday; Sunday", + "2000-04-24": "Easter Monday", + "2000-04-30": "Sunday", + "2000-05-01": "May Day", + "2000-05-07": "Sunday", + "2000-05-14": "Sunday", + "2000-05-21": "Sunday", + "2000-05-28": "Sunday", + "2000-06-01": "Ascension Day", + "2000-06-04": "Sunday", + "2000-06-11": "Sunday; Whit Sunday", + "2000-06-12": "Whit Monday", + "2000-06-18": "Sunday", + "2000-06-23": "Midsummer Eve", + "2000-06-24": "Midsummer Day", + "2000-06-25": "Sunday", + "2000-07-02": "Sunday", + "2000-07-09": "Sunday", + "2000-07-16": "Sunday", + "2000-07-23": "Sunday", + "2000-07-30": "Sunday", + "2000-08-06": "Sunday", + "2000-08-13": "Sunday", + "2000-08-20": "Sunday", + "2000-08-27": "Sunday", + "2000-09-03": "Sunday", + "2000-09-10": "Sunday", + "2000-09-17": "Sunday", + "2000-09-24": "Sunday", + "2000-10-01": "Sunday", + "2000-10-08": "Sunday", + "2000-10-15": "Sunday", + "2000-10-22": "Sunday", + "2000-10-29": "Sunday", + "2000-11-04": "All Saints' Day", + "2000-11-05": "Sunday", + "2000-11-12": "Sunday", + "2000-11-19": "Sunday", + "2000-11-26": "Sunday", + "2000-12-03": "Sunday", + "2000-12-10": "Sunday", + "2000-12-17": "Sunday", + "2000-12-24": "Christmas Eve; Sunday", + "2000-12-25": "Christmas Day", + "2000-12-26": "Second Day of Christmas", + "2000-12-31": "New Year's Eve; Sunday", + "2001-01-01": "New Year's Day", + "2001-01-06": "Epiphany", + "2001-01-07": "Sunday", + "2001-01-14": "Sunday", + "2001-01-21": "Sunday", + "2001-01-28": "Sunday", + "2001-02-04": "Sunday", + "2001-02-11": "Sunday", + "2001-02-18": "Sunday", + "2001-02-25": "Sunday", + "2001-03-04": "Sunday", + "2001-03-11": "Sunday", + "2001-03-18": "Sunday", + "2001-03-25": "Sunday", + "2001-04-01": "Sunday", + "2001-04-08": "Sunday", + "2001-04-13": "Good Friday", + "2001-04-15": "Easter Sunday; Sunday", + "2001-04-16": "Easter Monday", + "2001-04-22": "Sunday", + "2001-04-29": "Sunday", + "2001-05-01": "May Day", + "2001-05-06": "Sunday", + "2001-05-13": "Sunday", + "2001-05-20": "Sunday", + "2001-05-24": "Ascension Day", + "2001-05-27": "Sunday", + "2001-06-03": "Sunday; Whit Sunday", + "2001-06-04": "Whit Monday", + "2001-06-10": "Sunday", + "2001-06-17": "Sunday", + "2001-06-22": "Midsummer Eve", + "2001-06-23": "Midsummer Day", + "2001-06-24": "Sunday", + "2001-07-01": "Sunday", + "2001-07-08": "Sunday", + "2001-07-15": "Sunday", + "2001-07-22": "Sunday", + "2001-07-29": "Sunday", + "2001-08-05": "Sunday", + "2001-08-12": "Sunday", + "2001-08-19": "Sunday", + "2001-08-26": "Sunday", + "2001-09-02": "Sunday", + "2001-09-09": "Sunday", + "2001-09-16": "Sunday", + "2001-09-23": "Sunday", + "2001-09-30": "Sunday", + "2001-10-07": "Sunday", + "2001-10-14": "Sunday", + "2001-10-21": "Sunday", + "2001-10-28": "Sunday", + "2001-11-03": "All Saints' Day", + "2001-11-04": "Sunday", + "2001-11-11": "Sunday", + "2001-11-18": "Sunday", + "2001-11-25": "Sunday", + "2001-12-02": "Sunday", + "2001-12-09": "Sunday", + "2001-12-16": "Sunday", + "2001-12-23": "Sunday", + "2001-12-24": "Christmas Eve", + "2001-12-25": "Christmas Day", + "2001-12-26": "Second Day of Christmas", + "2001-12-30": "Sunday", + "2001-12-31": "New Year's Eve", + "2002-01-01": "New Year's Day", + "2002-01-06": "Epiphany; Sunday", + "2002-01-13": "Sunday", + "2002-01-20": "Sunday", + "2002-01-27": "Sunday", + "2002-02-03": "Sunday", + "2002-02-10": "Sunday", + "2002-02-17": "Sunday", + "2002-02-24": "Sunday", + "2002-03-03": "Sunday", + "2002-03-10": "Sunday", + "2002-03-17": "Sunday", + "2002-03-24": "Sunday", + "2002-03-29": "Good Friday", + "2002-03-31": "Easter Sunday; Sunday", + "2002-04-01": "Easter Monday", + "2002-04-07": "Sunday", + "2002-04-14": "Sunday", + "2002-04-21": "Sunday", + "2002-04-28": "Sunday", + "2002-05-01": "May Day", + "2002-05-05": "Sunday", + "2002-05-09": "Ascension Day", + "2002-05-12": "Sunday", + "2002-05-19": "Sunday; Whit Sunday", + "2002-05-20": "Whit Monday", + "2002-05-26": "Sunday", + "2002-06-02": "Sunday", + "2002-06-09": "Sunday", + "2002-06-16": "Sunday", + "2002-06-21": "Midsummer Eve", + "2002-06-22": "Midsummer Day", + "2002-06-23": "Sunday", + "2002-06-30": "Sunday", + "2002-07-07": "Sunday", + "2002-07-14": "Sunday", + "2002-07-21": "Sunday", + "2002-07-28": "Sunday", + "2002-08-04": "Sunday", + "2002-08-11": "Sunday", + "2002-08-18": "Sunday", + "2002-08-25": "Sunday", + "2002-09-01": "Sunday", + "2002-09-08": "Sunday", + "2002-09-15": "Sunday", + "2002-09-22": "Sunday", + "2002-09-29": "Sunday", + "2002-10-06": "Sunday", + "2002-10-13": "Sunday", + "2002-10-20": "Sunday", + "2002-10-27": "Sunday", + "2002-11-02": "All Saints' Day", + "2002-11-03": "Sunday", + "2002-11-10": "Sunday", + "2002-11-17": "Sunday", + "2002-11-24": "Sunday", + "2002-12-01": "Sunday", + "2002-12-08": "Sunday", + "2002-12-15": "Sunday", + "2002-12-22": "Sunday", + "2002-12-24": "Christmas Eve", + "2002-12-25": "Christmas Day", + "2002-12-26": "Second Day of Christmas", + "2002-12-29": "Sunday", + "2002-12-31": "New Year's Eve", + "2003-01-01": "New Year's Day", + "2003-01-05": "Sunday", + "2003-01-06": "Epiphany", + "2003-01-12": "Sunday", + "2003-01-19": "Sunday", + "2003-01-26": "Sunday", + "2003-02-02": "Sunday", + "2003-02-09": "Sunday", + "2003-02-16": "Sunday", + "2003-02-23": "Sunday", + "2003-03-02": "Sunday", + "2003-03-09": "Sunday", + "2003-03-16": "Sunday", + "2003-03-23": "Sunday", + "2003-03-30": "Sunday", + "2003-04-06": "Sunday", + "2003-04-13": "Sunday", + "2003-04-18": "Good Friday", + "2003-04-20": "Easter Sunday; Sunday", + "2003-04-21": "Easter Monday", + "2003-04-27": "Sunday", + "2003-05-01": "May Day", + "2003-05-04": "Sunday", + "2003-05-11": "Sunday", + "2003-05-18": "Sunday", + "2003-05-25": "Sunday", + "2003-05-29": "Ascension Day", + "2003-06-01": "Sunday", + "2003-06-08": "Sunday; Whit Sunday", + "2003-06-09": "Whit Monday", + "2003-06-15": "Sunday", + "2003-06-20": "Midsummer Eve", + "2003-06-21": "Midsummer Day", + "2003-06-22": "Sunday", + "2003-06-29": "Sunday", + "2003-07-06": "Sunday", + "2003-07-13": "Sunday", + "2003-07-20": "Sunday", + "2003-07-27": "Sunday", + "2003-08-03": "Sunday", + "2003-08-10": "Sunday", + "2003-08-17": "Sunday", + "2003-08-24": "Sunday", + "2003-08-31": "Sunday", + "2003-09-07": "Sunday", + "2003-09-14": "Sunday", + "2003-09-21": "Sunday", + "2003-09-28": "Sunday", + "2003-10-05": "Sunday", + "2003-10-12": "Sunday", + "2003-10-19": "Sunday", + "2003-10-26": "Sunday", + "2003-11-01": "All Saints' Day", + "2003-11-02": "Sunday", + "2003-11-09": "Sunday", + "2003-11-16": "Sunday", + "2003-11-23": "Sunday", + "2003-11-30": "Sunday", + "2003-12-07": "Sunday", + "2003-12-14": "Sunday", + "2003-12-21": "Sunday", + "2003-12-24": "Christmas Eve", + "2003-12-25": "Christmas Day", + "2003-12-26": "Second Day of Christmas", + "2003-12-28": "Sunday", + "2003-12-31": "New Year's Eve", + "2004-01-01": "New Year's Day", + "2004-01-04": "Sunday", + "2004-01-06": "Epiphany", + "2004-01-11": "Sunday", + "2004-01-18": "Sunday", + "2004-01-25": "Sunday", + "2004-02-01": "Sunday", + "2004-02-08": "Sunday", + "2004-02-15": "Sunday", + "2004-02-22": "Sunday", + "2004-02-29": "Sunday", + "2004-03-07": "Sunday", + "2004-03-14": "Sunday", + "2004-03-21": "Sunday", + "2004-03-28": "Sunday", + "2004-04-04": "Sunday", + "2004-04-09": "Good Friday", + "2004-04-11": "Easter Sunday; Sunday", + "2004-04-12": "Easter Monday", + "2004-04-18": "Sunday", + "2004-04-25": "Sunday", + "2004-05-01": "May Day", + "2004-05-02": "Sunday", + "2004-05-09": "Sunday", + "2004-05-16": "Sunday", + "2004-05-20": "Ascension Day", + "2004-05-23": "Sunday", + "2004-05-30": "Sunday; Whit Sunday", + "2004-05-31": "Whit Monday", + "2004-06-06": "Sunday", + "2004-06-13": "Sunday", + "2004-06-20": "Sunday", + "2004-06-25": "Midsummer Eve", + "2004-06-26": "Midsummer Day", + "2004-06-27": "Sunday", + "2004-07-04": "Sunday", + "2004-07-11": "Sunday", + "2004-07-18": "Sunday", + "2004-07-25": "Sunday", + "2004-08-01": "Sunday", + "2004-08-08": "Sunday", + "2004-08-15": "Sunday", + "2004-08-22": "Sunday", + "2004-08-29": "Sunday", + "2004-09-05": "Sunday", + "2004-09-12": "Sunday", + "2004-09-19": "Sunday", + "2004-09-26": "Sunday", + "2004-10-03": "Sunday", + "2004-10-10": "Sunday", + "2004-10-17": "Sunday", + "2004-10-24": "Sunday", + "2004-10-31": "Sunday", + "2004-11-06": "All Saints' Day", + "2004-11-07": "Sunday", + "2004-11-14": "Sunday", + "2004-11-21": "Sunday", + "2004-11-28": "Sunday", + "2004-12-05": "Sunday", + "2004-12-12": "Sunday", + "2004-12-19": "Sunday", + "2004-12-24": "Christmas Eve", + "2004-12-25": "Christmas Day", + "2004-12-26": "Second Day of Christmas; Sunday", + "2004-12-31": "New Year's Eve", + "2005-01-01": "New Year's Day", + "2005-01-02": "Sunday", + "2005-01-06": "Epiphany", + "2005-01-09": "Sunday", + "2005-01-16": "Sunday", + "2005-01-23": "Sunday", + "2005-01-30": "Sunday", + "2005-02-06": "Sunday", + "2005-02-13": "Sunday", + "2005-02-20": "Sunday", + "2005-02-27": "Sunday", + "2005-03-06": "Sunday", + "2005-03-13": "Sunday", + "2005-03-20": "Sunday", + "2005-03-25": "Good Friday", + "2005-03-27": "Easter Sunday; Sunday", + "2005-03-28": "Easter Monday", + "2005-04-03": "Sunday", + "2005-04-10": "Sunday", + "2005-04-17": "Sunday", + "2005-04-24": "Sunday", + "2005-05-01": "May Day; Sunday", + "2005-05-05": "Ascension Day", + "2005-05-08": "Sunday", + "2005-05-15": "Sunday; Whit Sunday", + "2005-05-22": "Sunday", + "2005-05-29": "Sunday", + "2005-06-05": "Sunday", + "2005-06-06": "National Day of Sweden", + "2005-06-12": "Sunday", + "2005-06-19": "Sunday", + "2005-06-24": "Midsummer Eve", + "2005-06-25": "Midsummer Day", + "2005-06-26": "Sunday", + "2005-07-03": "Sunday", + "2005-07-10": "Sunday", + "2005-07-17": "Sunday", + "2005-07-24": "Sunday", + "2005-07-31": "Sunday", + "2005-08-07": "Sunday", + "2005-08-14": "Sunday", + "2005-08-21": "Sunday", + "2005-08-28": "Sunday", + "2005-09-04": "Sunday", + "2005-09-11": "Sunday", + "2005-09-18": "Sunday", + "2005-09-25": "Sunday", + "2005-10-02": "Sunday", + "2005-10-09": "Sunday", + "2005-10-16": "Sunday", + "2005-10-23": "Sunday", + "2005-10-30": "Sunday", + "2005-11-05": "All Saints' Day", + "2005-11-06": "Sunday", + "2005-11-13": "Sunday", + "2005-11-20": "Sunday", + "2005-11-27": "Sunday", + "2005-12-04": "Sunday", + "2005-12-11": "Sunday", + "2005-12-18": "Sunday", + "2005-12-24": "Christmas Eve", + "2005-12-25": "Christmas Day; Sunday", + "2005-12-26": "Second Day of Christmas", + "2005-12-31": "New Year's Eve", + "2006-01-01": "New Year's Day; Sunday", + "2006-01-06": "Epiphany", + "2006-01-08": "Sunday", + "2006-01-15": "Sunday", + "2006-01-22": "Sunday", + "2006-01-29": "Sunday", + "2006-02-05": "Sunday", + "2006-02-12": "Sunday", + "2006-02-19": "Sunday", + "2006-02-26": "Sunday", + "2006-03-05": "Sunday", + "2006-03-12": "Sunday", + "2006-03-19": "Sunday", + "2006-03-26": "Sunday", + "2006-04-02": "Sunday", + "2006-04-09": "Sunday", + "2006-04-14": "Good Friday", + "2006-04-16": "Easter Sunday; Sunday", + "2006-04-17": "Easter Monday", + "2006-04-23": "Sunday", + "2006-04-30": "Sunday", + "2006-05-01": "May Day", + "2006-05-07": "Sunday", + "2006-05-14": "Sunday", + "2006-05-21": "Sunday", + "2006-05-25": "Ascension Day", + "2006-05-28": "Sunday", + "2006-06-04": "Sunday; Whit Sunday", + "2006-06-06": "National Day of Sweden", + "2006-06-11": "Sunday", + "2006-06-18": "Sunday", + "2006-06-23": "Midsummer Eve", + "2006-06-24": "Midsummer Day", + "2006-06-25": "Sunday", + "2006-07-02": "Sunday", + "2006-07-09": "Sunday", + "2006-07-16": "Sunday", + "2006-07-23": "Sunday", + "2006-07-30": "Sunday", + "2006-08-06": "Sunday", + "2006-08-13": "Sunday", + "2006-08-20": "Sunday", + "2006-08-27": "Sunday", + "2006-09-03": "Sunday", + "2006-09-10": "Sunday", + "2006-09-17": "Sunday", + "2006-09-24": "Sunday", + "2006-10-01": "Sunday", + "2006-10-08": "Sunday", + "2006-10-15": "Sunday", + "2006-10-22": "Sunday", + "2006-10-29": "Sunday", + "2006-11-04": "All Saints' Day", + "2006-11-05": "Sunday", + "2006-11-12": "Sunday", + "2006-11-19": "Sunday", + "2006-11-26": "Sunday", + "2006-12-03": "Sunday", + "2006-12-10": "Sunday", + "2006-12-17": "Sunday", + "2006-12-24": "Christmas Eve; Sunday", + "2006-12-25": "Christmas Day", + "2006-12-26": "Second Day of Christmas", + "2006-12-31": "New Year's Eve; Sunday", + "2007-01-01": "New Year's Day", + "2007-01-06": "Epiphany", + "2007-01-07": "Sunday", + "2007-01-14": "Sunday", + "2007-01-21": "Sunday", + "2007-01-28": "Sunday", + "2007-02-04": "Sunday", + "2007-02-11": "Sunday", + "2007-02-18": "Sunday", + "2007-02-25": "Sunday", + "2007-03-04": "Sunday", + "2007-03-11": "Sunday", + "2007-03-18": "Sunday", + "2007-03-25": "Sunday", + "2007-04-01": "Sunday", + "2007-04-06": "Good Friday", + "2007-04-08": "Easter Sunday; Sunday", + "2007-04-09": "Easter Monday", + "2007-04-15": "Sunday", + "2007-04-22": "Sunday", + "2007-04-29": "Sunday", + "2007-05-01": "May Day", + "2007-05-06": "Sunday", + "2007-05-13": "Sunday", + "2007-05-17": "Ascension Day", + "2007-05-20": "Sunday", + "2007-05-27": "Sunday; Whit Sunday", + "2007-06-03": "Sunday", + "2007-06-06": "National Day of Sweden", + "2007-06-10": "Sunday", + "2007-06-17": "Sunday", + "2007-06-22": "Midsummer Eve", + "2007-06-23": "Midsummer Day", + "2007-06-24": "Sunday", + "2007-07-01": "Sunday", + "2007-07-08": "Sunday", + "2007-07-15": "Sunday", + "2007-07-22": "Sunday", + "2007-07-29": "Sunday", + "2007-08-05": "Sunday", + "2007-08-12": "Sunday", + "2007-08-19": "Sunday", + "2007-08-26": "Sunday", + "2007-09-02": "Sunday", + "2007-09-09": "Sunday", + "2007-09-16": "Sunday", + "2007-09-23": "Sunday", + "2007-09-30": "Sunday", + "2007-10-07": "Sunday", + "2007-10-14": "Sunday", + "2007-10-21": "Sunday", + "2007-10-28": "Sunday", + "2007-11-03": "All Saints' Day", + "2007-11-04": "Sunday", + "2007-11-11": "Sunday", + "2007-11-18": "Sunday", + "2007-11-25": "Sunday", + "2007-12-02": "Sunday", + "2007-12-09": "Sunday", + "2007-12-16": "Sunday", + "2007-12-23": "Sunday", + "2007-12-24": "Christmas Eve", + "2007-12-25": "Christmas Day", + "2007-12-26": "Second Day of Christmas", + "2007-12-30": "Sunday", + "2007-12-31": "New Year's Eve", + "2008-01-01": "New Year's Day", + "2008-01-06": "Epiphany; Sunday", + "2008-01-13": "Sunday", + "2008-01-20": "Sunday", + "2008-01-27": "Sunday", + "2008-02-03": "Sunday", + "2008-02-10": "Sunday", + "2008-02-17": "Sunday", + "2008-02-24": "Sunday", + "2008-03-02": "Sunday", + "2008-03-09": "Sunday", + "2008-03-16": "Sunday", + "2008-03-21": "Good Friday", + "2008-03-23": "Easter Sunday; Sunday", + "2008-03-24": "Easter Monday", + "2008-03-30": "Sunday", + "2008-04-06": "Sunday", + "2008-04-13": "Sunday", + "2008-04-20": "Sunday", + "2008-04-27": "Sunday", + "2008-05-01": "Ascension Day; May Day", + "2008-05-04": "Sunday", + "2008-05-11": "Sunday; Whit Sunday", + "2008-05-18": "Sunday", + "2008-05-25": "Sunday", + "2008-06-01": "Sunday", + "2008-06-06": "National Day of Sweden", + "2008-06-08": "Sunday", + "2008-06-15": "Sunday", + "2008-06-20": "Midsummer Eve", + "2008-06-21": "Midsummer Day", + "2008-06-22": "Sunday", + "2008-06-29": "Sunday", + "2008-07-06": "Sunday", + "2008-07-13": "Sunday", + "2008-07-20": "Sunday", + "2008-07-27": "Sunday", + "2008-08-03": "Sunday", + "2008-08-10": "Sunday", + "2008-08-17": "Sunday", + "2008-08-24": "Sunday", + "2008-08-31": "Sunday", + "2008-09-07": "Sunday", + "2008-09-14": "Sunday", + "2008-09-21": "Sunday", + "2008-09-28": "Sunday", + "2008-10-05": "Sunday", + "2008-10-12": "Sunday", + "2008-10-19": "Sunday", + "2008-10-26": "Sunday", + "2008-11-01": "All Saints' Day", + "2008-11-02": "Sunday", + "2008-11-09": "Sunday", + "2008-11-16": "Sunday", + "2008-11-23": "Sunday", + "2008-11-30": "Sunday", + "2008-12-07": "Sunday", + "2008-12-14": "Sunday", + "2008-12-21": "Sunday", + "2008-12-24": "Christmas Eve", + "2008-12-25": "Christmas Day", + "2008-12-26": "Second Day of Christmas", + "2008-12-28": "Sunday", + "2008-12-31": "New Year's Eve", + "2009-01-01": "New Year's Day", + "2009-01-04": "Sunday", + "2009-01-06": "Epiphany", + "2009-01-11": "Sunday", + "2009-01-18": "Sunday", + "2009-01-25": "Sunday", + "2009-02-01": "Sunday", + "2009-02-08": "Sunday", + "2009-02-15": "Sunday", + "2009-02-22": "Sunday", + "2009-03-01": "Sunday", + "2009-03-08": "Sunday", + "2009-03-15": "Sunday", + "2009-03-22": "Sunday", + "2009-03-29": "Sunday", + "2009-04-05": "Sunday", + "2009-04-10": "Good Friday", + "2009-04-12": "Easter Sunday; Sunday", + "2009-04-13": "Easter Monday", + "2009-04-19": "Sunday", + "2009-04-26": "Sunday", + "2009-05-01": "May Day", + "2009-05-03": "Sunday", + "2009-05-10": "Sunday", + "2009-05-17": "Sunday", + "2009-05-21": "Ascension Day", + "2009-05-24": "Sunday", + "2009-05-31": "Sunday; Whit Sunday", + "2009-06-06": "National Day of Sweden", + "2009-06-07": "Sunday", + "2009-06-14": "Sunday", + "2009-06-19": "Midsummer Eve", + "2009-06-20": "Midsummer Day", + "2009-06-21": "Sunday", + "2009-06-28": "Sunday", + "2009-07-05": "Sunday", + "2009-07-12": "Sunday", + "2009-07-19": "Sunday", + "2009-07-26": "Sunday", + "2009-08-02": "Sunday", + "2009-08-09": "Sunday", + "2009-08-16": "Sunday", + "2009-08-23": "Sunday", + "2009-08-30": "Sunday", + "2009-09-06": "Sunday", + "2009-09-13": "Sunday", + "2009-09-20": "Sunday", + "2009-09-27": "Sunday", + "2009-10-04": "Sunday", + "2009-10-11": "Sunday", + "2009-10-18": "Sunday", + "2009-10-25": "Sunday", + "2009-10-31": "All Saints' Day", + "2009-11-01": "Sunday", + "2009-11-08": "Sunday", + "2009-11-15": "Sunday", + "2009-11-22": "Sunday", + "2009-11-29": "Sunday", + "2009-12-06": "Sunday", + "2009-12-13": "Sunday", + "2009-12-20": "Sunday", + "2009-12-24": "Christmas Eve", + "2009-12-25": "Christmas Day", + "2009-12-26": "Second Day of Christmas", + "2009-12-27": "Sunday", + "2009-12-31": "New Year's Eve", + "2010-01-01": "New Year's Day", + "2010-01-03": "Sunday", + "2010-01-06": "Epiphany", + "2010-01-10": "Sunday", + "2010-01-17": "Sunday", + "2010-01-24": "Sunday", + "2010-01-31": "Sunday", + "2010-02-07": "Sunday", + "2010-02-14": "Sunday", + "2010-02-21": "Sunday", + "2010-02-28": "Sunday", + "2010-03-07": "Sunday", + "2010-03-14": "Sunday", + "2010-03-21": "Sunday", + "2010-03-28": "Sunday", + "2010-04-02": "Good Friday", + "2010-04-04": "Easter Sunday; Sunday", + "2010-04-05": "Easter Monday", + "2010-04-11": "Sunday", + "2010-04-18": "Sunday", + "2010-04-25": "Sunday", + "2010-05-01": "May Day", + "2010-05-02": "Sunday", + "2010-05-09": "Sunday", + "2010-05-13": "Ascension Day", + "2010-05-16": "Sunday", + "2010-05-23": "Sunday; Whit Sunday", + "2010-05-30": "Sunday", + "2010-06-06": "National Day of Sweden; Sunday", + "2010-06-13": "Sunday", + "2010-06-20": "Sunday", + "2010-06-25": "Midsummer Eve", + "2010-06-26": "Midsummer Day", + "2010-06-27": "Sunday", + "2010-07-04": "Sunday", + "2010-07-11": "Sunday", + "2010-07-18": "Sunday", + "2010-07-25": "Sunday", + "2010-08-01": "Sunday", + "2010-08-08": "Sunday", + "2010-08-15": "Sunday", + "2010-08-22": "Sunday", + "2010-08-29": "Sunday", + "2010-09-05": "Sunday", + "2010-09-12": "Sunday", + "2010-09-19": "Sunday", + "2010-09-26": "Sunday", + "2010-10-03": "Sunday", + "2010-10-10": "Sunday", + "2010-10-17": "Sunday", + "2010-10-24": "Sunday", + "2010-10-31": "Sunday", + "2010-11-06": "All Saints' Day", + "2010-11-07": "Sunday", + "2010-11-14": "Sunday", + "2010-11-21": "Sunday", + "2010-11-28": "Sunday", + "2010-12-05": "Sunday", + "2010-12-12": "Sunday", + "2010-12-19": "Sunday", + "2010-12-24": "Christmas Eve", + "2010-12-25": "Christmas Day", + "2010-12-26": "Second Day of Christmas; Sunday", + "2010-12-31": "New Year's Eve", + "2011-01-01": "New Year's Day", + "2011-01-02": "Sunday", + "2011-01-06": "Epiphany", + "2011-01-09": "Sunday", + "2011-01-16": "Sunday", + "2011-01-23": "Sunday", + "2011-01-30": "Sunday", + "2011-02-06": "Sunday", + "2011-02-13": "Sunday", + "2011-02-20": "Sunday", + "2011-02-27": "Sunday", + "2011-03-06": "Sunday", + "2011-03-13": "Sunday", + "2011-03-20": "Sunday", + "2011-03-27": "Sunday", + "2011-04-03": "Sunday", + "2011-04-10": "Sunday", + "2011-04-17": "Sunday", + "2011-04-22": "Good Friday", + "2011-04-24": "Easter Sunday; Sunday", + "2011-04-25": "Easter Monday", + "2011-05-01": "May Day; Sunday", + "2011-05-08": "Sunday", + "2011-05-15": "Sunday", + "2011-05-22": "Sunday", + "2011-05-29": "Sunday", + "2011-06-02": "Ascension Day", + "2011-06-05": "Sunday", + "2011-06-06": "National Day of Sweden", + "2011-06-12": "Sunday; Whit Sunday", + "2011-06-19": "Sunday", + "2011-06-24": "Midsummer Eve", + "2011-06-25": "Midsummer Day", + "2011-06-26": "Sunday", + "2011-07-03": "Sunday", + "2011-07-10": "Sunday", + "2011-07-17": "Sunday", + "2011-07-24": "Sunday", + "2011-07-31": "Sunday", + "2011-08-07": "Sunday", + "2011-08-14": "Sunday", + "2011-08-21": "Sunday", + "2011-08-28": "Sunday", + "2011-09-04": "Sunday", + "2011-09-11": "Sunday", + "2011-09-18": "Sunday", + "2011-09-25": "Sunday", + "2011-10-02": "Sunday", + "2011-10-09": "Sunday", + "2011-10-16": "Sunday", + "2011-10-23": "Sunday", + "2011-10-30": "Sunday", + "2011-11-05": "All Saints' Day", + "2011-11-06": "Sunday", + "2011-11-13": "Sunday", + "2011-11-20": "Sunday", + "2011-11-27": "Sunday", + "2011-12-04": "Sunday", + "2011-12-11": "Sunday", + "2011-12-18": "Sunday", + "2011-12-24": "Christmas Eve", + "2011-12-25": "Christmas Day; Sunday", + "2011-12-26": "Second Day of Christmas", + "2011-12-31": "New Year's Eve", + "2012-01-01": "New Year's Day; Sunday", + "2012-01-06": "Epiphany", + "2012-01-08": "Sunday", + "2012-01-15": "Sunday", + "2012-01-22": "Sunday", + "2012-01-29": "Sunday", + "2012-02-05": "Sunday", + "2012-02-12": "Sunday", + "2012-02-19": "Sunday", + "2012-02-26": "Sunday", + "2012-03-04": "Sunday", + "2012-03-11": "Sunday", + "2012-03-18": "Sunday", + "2012-03-25": "Sunday", + "2012-04-01": "Sunday", + "2012-04-06": "Good Friday", + "2012-04-08": "Easter Sunday; Sunday", + "2012-04-09": "Easter Monday", + "2012-04-15": "Sunday", + "2012-04-22": "Sunday", + "2012-04-29": "Sunday", + "2012-05-01": "May Day", + "2012-05-06": "Sunday", + "2012-05-13": "Sunday", + "2012-05-17": "Ascension Day", + "2012-05-20": "Sunday", + "2012-05-27": "Sunday; Whit Sunday", + "2012-06-03": "Sunday", + "2012-06-06": "National Day of Sweden", + "2012-06-10": "Sunday", + "2012-06-17": "Sunday", + "2012-06-22": "Midsummer Eve", + "2012-06-23": "Midsummer Day", + "2012-06-24": "Sunday", + "2012-07-01": "Sunday", + "2012-07-08": "Sunday", + "2012-07-15": "Sunday", + "2012-07-22": "Sunday", + "2012-07-29": "Sunday", + "2012-08-05": "Sunday", + "2012-08-12": "Sunday", + "2012-08-19": "Sunday", + "2012-08-26": "Sunday", + "2012-09-02": "Sunday", + "2012-09-09": "Sunday", + "2012-09-16": "Sunday", + "2012-09-23": "Sunday", + "2012-09-30": "Sunday", + "2012-10-07": "Sunday", + "2012-10-14": "Sunday", + "2012-10-21": "Sunday", + "2012-10-28": "Sunday", + "2012-11-03": "All Saints' Day", + "2012-11-04": "Sunday", + "2012-11-11": "Sunday", + "2012-11-18": "Sunday", + "2012-11-25": "Sunday", + "2012-12-02": "Sunday", + "2012-12-09": "Sunday", + "2012-12-16": "Sunday", + "2012-12-23": "Sunday", + "2012-12-24": "Christmas Eve", + "2012-12-25": "Christmas Day", + "2012-12-26": "Second Day of Christmas", + "2012-12-30": "Sunday", + "2012-12-31": "New Year's Eve", + "2013-01-01": "New Year's Day", + "2013-01-06": "Epiphany; Sunday", + "2013-01-13": "Sunday", + "2013-01-20": "Sunday", + "2013-01-27": "Sunday", + "2013-02-03": "Sunday", + "2013-02-10": "Sunday", + "2013-02-17": "Sunday", + "2013-02-24": "Sunday", + "2013-03-03": "Sunday", + "2013-03-10": "Sunday", + "2013-03-17": "Sunday", + "2013-03-24": "Sunday", + "2013-03-29": "Good Friday", + "2013-03-31": "Easter Sunday; Sunday", + "2013-04-01": "Easter Monday", + "2013-04-07": "Sunday", + "2013-04-14": "Sunday", + "2013-04-21": "Sunday", + "2013-04-28": "Sunday", + "2013-05-01": "May Day", + "2013-05-05": "Sunday", + "2013-05-09": "Ascension Day", + "2013-05-12": "Sunday", + "2013-05-19": "Sunday; Whit Sunday", + "2013-05-26": "Sunday", + "2013-06-02": "Sunday", + "2013-06-06": "National Day of Sweden", + "2013-06-09": "Sunday", + "2013-06-16": "Sunday", + "2013-06-21": "Midsummer Eve", + "2013-06-22": "Midsummer Day", + "2013-06-23": "Sunday", + "2013-06-30": "Sunday", + "2013-07-07": "Sunday", + "2013-07-14": "Sunday", + "2013-07-21": "Sunday", + "2013-07-28": "Sunday", + "2013-08-04": "Sunday", + "2013-08-11": "Sunday", + "2013-08-18": "Sunday", + "2013-08-25": "Sunday", + "2013-09-01": "Sunday", + "2013-09-08": "Sunday", + "2013-09-15": "Sunday", + "2013-09-22": "Sunday", + "2013-09-29": "Sunday", + "2013-10-06": "Sunday", + "2013-10-13": "Sunday", + "2013-10-20": "Sunday", + "2013-10-27": "Sunday", + "2013-11-02": "All Saints' Day", + "2013-11-03": "Sunday", + "2013-11-10": "Sunday", + "2013-11-17": "Sunday", + "2013-11-24": "Sunday", + "2013-12-01": "Sunday", + "2013-12-08": "Sunday", + "2013-12-15": "Sunday", + "2013-12-22": "Sunday", + "2013-12-24": "Christmas Eve", + "2013-12-25": "Christmas Day", + "2013-12-26": "Second Day of Christmas", + "2013-12-29": "Sunday", + "2013-12-31": "New Year's Eve", + "2014-01-01": "New Year's Day", + "2014-01-05": "Sunday", + "2014-01-06": "Epiphany", + "2014-01-12": "Sunday", + "2014-01-19": "Sunday", + "2014-01-26": "Sunday", + "2014-02-02": "Sunday", + "2014-02-09": "Sunday", + "2014-02-16": "Sunday", + "2014-02-23": "Sunday", + "2014-03-02": "Sunday", + "2014-03-09": "Sunday", + "2014-03-16": "Sunday", + "2014-03-23": "Sunday", + "2014-03-30": "Sunday", + "2014-04-06": "Sunday", + "2014-04-13": "Sunday", + "2014-04-18": "Good Friday", + "2014-04-20": "Easter Sunday; Sunday", + "2014-04-21": "Easter Monday", + "2014-04-27": "Sunday", + "2014-05-01": "May Day", + "2014-05-04": "Sunday", + "2014-05-11": "Sunday", + "2014-05-18": "Sunday", + "2014-05-25": "Sunday", + "2014-05-29": "Ascension Day", + "2014-06-01": "Sunday", + "2014-06-06": "National Day of Sweden", + "2014-06-08": "Sunday; Whit Sunday", + "2014-06-15": "Sunday", + "2014-06-20": "Midsummer Eve", + "2014-06-21": "Midsummer Day", + "2014-06-22": "Sunday", + "2014-06-29": "Sunday", + "2014-07-06": "Sunday", + "2014-07-13": "Sunday", + "2014-07-20": "Sunday", + "2014-07-27": "Sunday", + "2014-08-03": "Sunday", + "2014-08-10": "Sunday", + "2014-08-17": "Sunday", + "2014-08-24": "Sunday", + "2014-08-31": "Sunday", + "2014-09-07": "Sunday", + "2014-09-14": "Sunday", + "2014-09-21": "Sunday", + "2014-09-28": "Sunday", + "2014-10-05": "Sunday", + "2014-10-12": "Sunday", + "2014-10-19": "Sunday", + "2014-10-26": "Sunday", + "2014-11-01": "All Saints' Day", + "2014-11-02": "Sunday", + "2014-11-09": "Sunday", + "2014-11-16": "Sunday", + "2014-11-23": "Sunday", + "2014-11-30": "Sunday", + "2014-12-07": "Sunday", + "2014-12-14": "Sunday", + "2014-12-21": "Sunday", + "2014-12-24": "Christmas Eve", + "2014-12-25": "Christmas Day", + "2014-12-26": "Second Day of Christmas", + "2014-12-28": "Sunday", + "2014-12-31": "New Year's Eve", + "2015-01-01": "New Year's Day", + "2015-01-04": "Sunday", + "2015-01-06": "Epiphany", + "2015-01-11": "Sunday", + "2015-01-18": "Sunday", + "2015-01-25": "Sunday", + "2015-02-01": "Sunday", + "2015-02-08": "Sunday", + "2015-02-15": "Sunday", + "2015-02-22": "Sunday", + "2015-03-01": "Sunday", + "2015-03-08": "Sunday", + "2015-03-15": "Sunday", + "2015-03-22": "Sunday", + "2015-03-29": "Sunday", + "2015-04-03": "Good Friday", + "2015-04-05": "Easter Sunday; Sunday", + "2015-04-06": "Easter Monday", + "2015-04-12": "Sunday", + "2015-04-19": "Sunday", + "2015-04-26": "Sunday", + "2015-05-01": "May Day", + "2015-05-03": "Sunday", + "2015-05-10": "Sunday", + "2015-05-14": "Ascension Day", + "2015-05-17": "Sunday", + "2015-05-24": "Sunday; Whit Sunday", + "2015-05-31": "Sunday", + "2015-06-06": "National Day of Sweden", + "2015-06-07": "Sunday", + "2015-06-14": "Sunday", + "2015-06-19": "Midsummer Eve", + "2015-06-20": "Midsummer Day", + "2015-06-21": "Sunday", + "2015-06-28": "Sunday", + "2015-07-05": "Sunday", + "2015-07-12": "Sunday", + "2015-07-19": "Sunday", + "2015-07-26": "Sunday", + "2015-08-02": "Sunday", + "2015-08-09": "Sunday", + "2015-08-16": "Sunday", + "2015-08-23": "Sunday", + "2015-08-30": "Sunday", + "2015-09-06": "Sunday", + "2015-09-13": "Sunday", + "2015-09-20": "Sunday", + "2015-09-27": "Sunday", + "2015-10-04": "Sunday", + "2015-10-11": "Sunday", + "2015-10-18": "Sunday", + "2015-10-25": "Sunday", + "2015-10-31": "All Saints' Day", + "2015-11-01": "Sunday", + "2015-11-08": "Sunday", + "2015-11-15": "Sunday", + "2015-11-22": "Sunday", + "2015-11-29": "Sunday", + "2015-12-06": "Sunday", + "2015-12-13": "Sunday", + "2015-12-20": "Sunday", + "2015-12-24": "Christmas Eve", + "2015-12-25": "Christmas Day", + "2015-12-26": "Second Day of Christmas", + "2015-12-27": "Sunday", + "2015-12-31": "New Year's Eve", + "2016-01-01": "New Year's Day", + "2016-01-03": "Sunday", + "2016-01-06": "Epiphany", + "2016-01-10": "Sunday", + "2016-01-17": "Sunday", + "2016-01-24": "Sunday", + "2016-01-31": "Sunday", + "2016-02-07": "Sunday", + "2016-02-14": "Sunday", + "2016-02-21": "Sunday", + "2016-02-28": "Sunday", + "2016-03-06": "Sunday", + "2016-03-13": "Sunday", + "2016-03-20": "Sunday", + "2016-03-25": "Good Friday", + "2016-03-27": "Easter Sunday; Sunday", + "2016-03-28": "Easter Monday", + "2016-04-03": "Sunday", + "2016-04-10": "Sunday", + "2016-04-17": "Sunday", + "2016-04-24": "Sunday", + "2016-05-01": "May Day; Sunday", + "2016-05-05": "Ascension Day", + "2016-05-08": "Sunday", + "2016-05-15": "Sunday; Whit Sunday", + "2016-05-22": "Sunday", + "2016-05-29": "Sunday", + "2016-06-05": "Sunday", + "2016-06-06": "National Day of Sweden", + "2016-06-12": "Sunday", + "2016-06-19": "Sunday", + "2016-06-24": "Midsummer Eve", + "2016-06-25": "Midsummer Day", + "2016-06-26": "Sunday", + "2016-07-03": "Sunday", + "2016-07-10": "Sunday", + "2016-07-17": "Sunday", + "2016-07-24": "Sunday", + "2016-07-31": "Sunday", + "2016-08-07": "Sunday", + "2016-08-14": "Sunday", + "2016-08-21": "Sunday", + "2016-08-28": "Sunday", + "2016-09-04": "Sunday", + "2016-09-11": "Sunday", + "2016-09-18": "Sunday", + "2016-09-25": "Sunday", + "2016-10-02": "Sunday", + "2016-10-09": "Sunday", + "2016-10-16": "Sunday", + "2016-10-23": "Sunday", + "2016-10-30": "Sunday", + "2016-11-05": "All Saints' Day", + "2016-11-06": "Sunday", + "2016-11-13": "Sunday", + "2016-11-20": "Sunday", + "2016-11-27": "Sunday", + "2016-12-04": "Sunday", + "2016-12-11": "Sunday", + "2016-12-18": "Sunday", + "2016-12-24": "Christmas Eve", + "2016-12-25": "Christmas Day; Sunday", + "2016-12-26": "Second Day of Christmas", + "2016-12-31": "New Year's Eve", + "2017-01-01": "New Year's Day; Sunday", + "2017-01-06": "Epiphany", + "2017-01-08": "Sunday", + "2017-01-15": "Sunday", + "2017-01-22": "Sunday", + "2017-01-29": "Sunday", + "2017-02-05": "Sunday", + "2017-02-12": "Sunday", + "2017-02-19": "Sunday", + "2017-02-26": "Sunday", + "2017-03-05": "Sunday", + "2017-03-12": "Sunday", + "2017-03-19": "Sunday", + "2017-03-26": "Sunday", + "2017-04-02": "Sunday", + "2017-04-09": "Sunday", + "2017-04-14": "Good Friday", + "2017-04-16": "Easter Sunday; Sunday", + "2017-04-17": "Easter Monday", + "2017-04-23": "Sunday", + "2017-04-30": "Sunday", + "2017-05-01": "May Day", + "2017-05-07": "Sunday", + "2017-05-14": "Sunday", + "2017-05-21": "Sunday", + "2017-05-25": "Ascension Day", + "2017-05-28": "Sunday", + "2017-06-04": "Sunday; Whit Sunday", + "2017-06-06": "National Day of Sweden", + "2017-06-11": "Sunday", + "2017-06-18": "Sunday", + "2017-06-23": "Midsummer Eve", + "2017-06-24": "Midsummer Day", + "2017-06-25": "Sunday", + "2017-07-02": "Sunday", + "2017-07-09": "Sunday", + "2017-07-16": "Sunday", + "2017-07-23": "Sunday", + "2017-07-30": "Sunday", + "2017-08-06": "Sunday", + "2017-08-13": "Sunday", + "2017-08-20": "Sunday", + "2017-08-27": "Sunday", + "2017-09-03": "Sunday", + "2017-09-10": "Sunday", + "2017-09-17": "Sunday", + "2017-09-24": "Sunday", + "2017-10-01": "Sunday", + "2017-10-08": "Sunday", + "2017-10-15": "Sunday", + "2017-10-22": "Sunday", + "2017-10-29": "Sunday", + "2017-11-04": "All Saints' Day", + "2017-11-05": "Sunday", + "2017-11-12": "Sunday", + "2017-11-19": "Sunday", + "2017-11-26": "Sunday", + "2017-12-03": "Sunday", + "2017-12-10": "Sunday", + "2017-12-17": "Sunday", + "2017-12-24": "Christmas Eve; Sunday", + "2017-12-25": "Christmas Day", + "2017-12-26": "Second Day of Christmas", + "2017-12-31": "New Year's Eve; Sunday", + "2018-01-01": "New Year's Day", + "2018-01-06": "Epiphany", + "2018-01-07": "Sunday", + "2018-01-14": "Sunday", + "2018-01-21": "Sunday", + "2018-01-28": "Sunday", + "2018-02-04": "Sunday", + "2018-02-11": "Sunday", + "2018-02-18": "Sunday", + "2018-02-25": "Sunday", + "2018-03-04": "Sunday", + "2018-03-11": "Sunday", + "2018-03-18": "Sunday", + "2018-03-25": "Sunday", + "2018-03-30": "Good Friday", + "2018-04-01": "Easter Sunday; Sunday", + "2018-04-02": "Easter Monday", + "2018-04-08": "Sunday", + "2018-04-15": "Sunday", + "2018-04-22": "Sunday", + "2018-04-29": "Sunday", + "2018-05-01": "May Day", + "2018-05-06": "Sunday", + "2018-05-10": "Ascension Day", + "2018-05-13": "Sunday", + "2018-05-20": "Sunday; Whit Sunday", + "2018-05-27": "Sunday", + "2018-06-03": "Sunday", + "2018-06-06": "National Day of Sweden", + "2018-06-10": "Sunday", + "2018-06-17": "Sunday", + "2018-06-22": "Midsummer Eve", + "2018-06-23": "Midsummer Day", + "2018-06-24": "Sunday", + "2018-07-01": "Sunday", + "2018-07-08": "Sunday", + "2018-07-15": "Sunday", + "2018-07-22": "Sunday", + "2018-07-29": "Sunday", + "2018-08-05": "Sunday", + "2018-08-12": "Sunday", + "2018-08-19": "Sunday", + "2018-08-26": "Sunday", + "2018-09-02": "Sunday", + "2018-09-09": "Sunday", + "2018-09-16": "Sunday", + "2018-09-23": "Sunday", + "2018-09-30": "Sunday", + "2018-10-07": "Sunday", + "2018-10-14": "Sunday", + "2018-10-21": "Sunday", + "2018-10-28": "Sunday", + "2018-11-03": "All Saints' Day", + "2018-11-04": "Sunday", + "2018-11-11": "Sunday", + "2018-11-18": "Sunday", + "2018-11-25": "Sunday", + "2018-12-02": "Sunday", + "2018-12-09": "Sunday", + "2018-12-16": "Sunday", + "2018-12-23": "Sunday", + "2018-12-24": "Christmas Eve", + "2018-12-25": "Christmas Day", + "2018-12-26": "Second Day of Christmas", + "2018-12-30": "Sunday", + "2018-12-31": "New Year's Eve", + "2019-01-01": "New Year's Day", + "2019-01-06": "Epiphany; Sunday", + "2019-01-13": "Sunday", + "2019-01-20": "Sunday", + "2019-01-27": "Sunday", + "2019-02-03": "Sunday", + "2019-02-10": "Sunday", + "2019-02-17": "Sunday", + "2019-02-24": "Sunday", + "2019-03-03": "Sunday", + "2019-03-10": "Sunday", + "2019-03-17": "Sunday", + "2019-03-24": "Sunday", + "2019-03-31": "Sunday", + "2019-04-07": "Sunday", + "2019-04-14": "Sunday", + "2019-04-19": "Good Friday", + "2019-04-21": "Easter Sunday; Sunday", + "2019-04-22": "Easter Monday", + "2019-04-28": "Sunday", + "2019-05-01": "May Day", + "2019-05-05": "Sunday", + "2019-05-12": "Sunday", + "2019-05-19": "Sunday", + "2019-05-26": "Sunday", + "2019-05-30": "Ascension Day", + "2019-06-02": "Sunday", + "2019-06-06": "National Day of Sweden", + "2019-06-09": "Sunday; Whit Sunday", + "2019-06-16": "Sunday", + "2019-06-21": "Midsummer Eve", + "2019-06-22": "Midsummer Day", + "2019-06-23": "Sunday", + "2019-06-30": "Sunday", + "2019-07-07": "Sunday", + "2019-07-14": "Sunday", + "2019-07-21": "Sunday", + "2019-07-28": "Sunday", + "2019-08-04": "Sunday", + "2019-08-11": "Sunday", + "2019-08-18": "Sunday", + "2019-08-25": "Sunday", + "2019-09-01": "Sunday", + "2019-09-08": "Sunday", + "2019-09-15": "Sunday", + "2019-09-22": "Sunday", + "2019-09-29": "Sunday", + "2019-10-06": "Sunday", + "2019-10-13": "Sunday", + "2019-10-20": "Sunday", + "2019-10-27": "Sunday", + "2019-11-02": "All Saints' Day", + "2019-11-03": "Sunday", + "2019-11-10": "Sunday", + "2019-11-17": "Sunday", + "2019-11-24": "Sunday", + "2019-12-01": "Sunday", + "2019-12-08": "Sunday", + "2019-12-15": "Sunday", + "2019-12-22": "Sunday", + "2019-12-24": "Christmas Eve", + "2019-12-25": "Christmas Day", + "2019-12-26": "Second Day of Christmas", + "2019-12-29": "Sunday", + "2019-12-31": "New Year's Eve", + "2020-01-01": "New Year's Day", + "2020-01-05": "Sunday", + "2020-01-06": "Epiphany", + "2020-01-12": "Sunday", + "2020-01-19": "Sunday", + "2020-01-26": "Sunday", + "2020-02-02": "Sunday", + "2020-02-09": "Sunday", + "2020-02-16": "Sunday", + "2020-02-23": "Sunday", + "2020-03-01": "Sunday", + "2020-03-08": "Sunday", + "2020-03-15": "Sunday", + "2020-03-22": "Sunday", + "2020-03-29": "Sunday", + "2020-04-05": "Sunday", + "2020-04-10": "Good Friday", + "2020-04-12": "Easter Sunday; Sunday", + "2020-04-13": "Easter Monday", + "2020-04-19": "Sunday", + "2020-04-26": "Sunday", + "2020-05-01": "May Day", + "2020-05-03": "Sunday", + "2020-05-10": "Sunday", + "2020-05-17": "Sunday", + "2020-05-21": "Ascension Day", + "2020-05-24": "Sunday", + "2020-05-31": "Sunday; Whit Sunday", + "2020-06-06": "National Day of Sweden", + "2020-06-07": "Sunday", + "2020-06-14": "Sunday", + "2020-06-19": "Midsummer Eve", + "2020-06-20": "Midsummer Day", + "2020-06-21": "Sunday", + "2020-06-28": "Sunday", + "2020-07-05": "Sunday", + "2020-07-12": "Sunday", + "2020-07-19": "Sunday", + "2020-07-26": "Sunday", + "2020-08-02": "Sunday", + "2020-08-09": "Sunday", + "2020-08-16": "Sunday", + "2020-08-23": "Sunday", + "2020-08-30": "Sunday", + "2020-09-06": "Sunday", + "2020-09-13": "Sunday", + "2020-09-20": "Sunday", + "2020-09-27": "Sunday", + "2020-10-04": "Sunday", + "2020-10-11": "Sunday", + "2020-10-18": "Sunday", + "2020-10-25": "Sunday", + "2020-10-31": "All Saints' Day", + "2020-11-01": "Sunday", + "2020-11-08": "Sunday", + "2020-11-15": "Sunday", + "2020-11-22": "Sunday", + "2020-11-29": "Sunday", + "2020-12-06": "Sunday", + "2020-12-13": "Sunday", + "2020-12-20": "Sunday", + "2020-12-24": "Christmas Eve", + "2020-12-25": "Christmas Day", + "2020-12-26": "Second Day of Christmas", + "2020-12-27": "Sunday", + "2020-12-31": "New Year's Eve", + "2021-01-01": "New Year's Day", + "2021-01-03": "Sunday", + "2021-01-06": "Epiphany", + "2021-01-10": "Sunday", + "2021-01-17": "Sunday", + "2021-01-24": "Sunday", + "2021-01-31": "Sunday", + "2021-02-07": "Sunday", + "2021-02-14": "Sunday", + "2021-02-21": "Sunday", + "2021-02-28": "Sunday", + "2021-03-07": "Sunday", + "2021-03-14": "Sunday", + "2021-03-21": "Sunday", + "2021-03-28": "Sunday", + "2021-04-02": "Good Friday", + "2021-04-04": "Easter Sunday; Sunday", + "2021-04-05": "Easter Monday", + "2021-04-11": "Sunday", + "2021-04-18": "Sunday", + "2021-04-25": "Sunday", + "2021-05-01": "May Day", + "2021-05-02": "Sunday", + "2021-05-09": "Sunday", + "2021-05-13": "Ascension Day", + "2021-05-16": "Sunday", + "2021-05-23": "Sunday; Whit Sunday", + "2021-05-30": "Sunday", + "2021-06-06": "National Day of Sweden; Sunday", + "2021-06-13": "Sunday", + "2021-06-20": "Sunday", + "2021-06-25": "Midsummer Eve", + "2021-06-26": "Midsummer Day", + "2021-06-27": "Sunday", + "2021-07-04": "Sunday", + "2021-07-11": "Sunday", + "2021-07-18": "Sunday", + "2021-07-25": "Sunday", + "2021-08-01": "Sunday", + "2021-08-08": "Sunday", + "2021-08-15": "Sunday", + "2021-08-22": "Sunday", + "2021-08-29": "Sunday", + "2021-09-05": "Sunday", + "2021-09-12": "Sunday", + "2021-09-19": "Sunday", + "2021-09-26": "Sunday", + "2021-10-03": "Sunday", + "2021-10-10": "Sunday", + "2021-10-17": "Sunday", + "2021-10-24": "Sunday", + "2021-10-31": "Sunday", + "2021-11-06": "All Saints' Day", + "2021-11-07": "Sunday", + "2021-11-14": "Sunday", + "2021-11-21": "Sunday", + "2021-11-28": "Sunday", + "2021-12-05": "Sunday", + "2021-12-12": "Sunday", + "2021-12-19": "Sunday", + "2021-12-24": "Christmas Eve", + "2021-12-25": "Christmas Day", + "2021-12-26": "Second Day of Christmas; Sunday", + "2021-12-31": "New Year's Eve", + "2022-01-01": "New Year's Day", + "2022-01-02": "Sunday", + "2022-01-06": "Epiphany", + "2022-01-09": "Sunday", + "2022-01-16": "Sunday", + "2022-01-23": "Sunday", + "2022-01-30": "Sunday", + "2022-02-06": "Sunday", + "2022-02-13": "Sunday", + "2022-02-20": "Sunday", + "2022-02-27": "Sunday", + "2022-03-06": "Sunday", + "2022-03-13": "Sunday", + "2022-03-20": "Sunday", + "2022-03-27": "Sunday", + "2022-04-03": "Sunday", + "2022-04-10": "Sunday", + "2022-04-15": "Good Friday", + "2022-04-17": "Easter Sunday; Sunday", + "2022-04-18": "Easter Monday", + "2022-04-24": "Sunday", + "2022-05-01": "May Day; Sunday", + "2022-05-08": "Sunday", + "2022-05-15": "Sunday", + "2022-05-22": "Sunday", + "2022-05-26": "Ascension Day", + "2022-05-29": "Sunday", + "2022-06-05": "Sunday; Whit Sunday", + "2022-06-06": "National Day of Sweden", + "2022-06-12": "Sunday", + "2022-06-19": "Sunday", + "2022-06-24": "Midsummer Eve", + "2022-06-25": "Midsummer Day", + "2022-06-26": "Sunday", + "2022-07-03": "Sunday", + "2022-07-10": "Sunday", + "2022-07-17": "Sunday", + "2022-07-24": "Sunday", + "2022-07-31": "Sunday", + "2022-08-07": "Sunday", + "2022-08-14": "Sunday", + "2022-08-21": "Sunday", + "2022-08-28": "Sunday", + "2022-09-04": "Sunday", + "2022-09-11": "Sunday", + "2022-09-18": "Sunday", + "2022-09-25": "Sunday", + "2022-10-02": "Sunday", + "2022-10-09": "Sunday", + "2022-10-16": "Sunday", + "2022-10-23": "Sunday", + "2022-10-30": "Sunday", + "2022-11-05": "All Saints' Day", + "2022-11-06": "Sunday", + "2022-11-13": "Sunday", + "2022-11-20": "Sunday", + "2022-11-27": "Sunday", + "2022-12-04": "Sunday", + "2022-12-11": "Sunday", + "2022-12-18": "Sunday", + "2022-12-24": "Christmas Eve", + "2022-12-25": "Christmas Day; Sunday", + "2022-12-26": "Second Day of Christmas", + "2022-12-31": "New Year's Eve", + "2023-01-01": "New Year's Day; Sunday", + "2023-01-06": "Epiphany", + "2023-01-08": "Sunday", + "2023-01-15": "Sunday", + "2023-01-22": "Sunday", + "2023-01-29": "Sunday", + "2023-02-05": "Sunday", + "2023-02-12": "Sunday", + "2023-02-19": "Sunday", + "2023-02-26": "Sunday", + "2023-03-05": "Sunday", + "2023-03-12": "Sunday", + "2023-03-19": "Sunday", + "2023-03-26": "Sunday", + "2023-04-02": "Sunday", + "2023-04-07": "Good Friday", + "2023-04-09": "Easter Sunday; Sunday", + "2023-04-10": "Easter Monday", + "2023-04-16": "Sunday", + "2023-04-23": "Sunday", + "2023-04-30": "Sunday", + "2023-05-01": "May Day", + "2023-05-07": "Sunday", + "2023-05-14": "Sunday", + "2023-05-18": "Ascension Day", + "2023-05-21": "Sunday", + "2023-05-28": "Sunday; Whit Sunday", + "2023-06-04": "Sunday", + "2023-06-06": "National Day of Sweden", + "2023-06-11": "Sunday", + "2023-06-18": "Sunday", + "2023-06-23": "Midsummer Eve", + "2023-06-24": "Midsummer Day", + "2023-06-25": "Sunday", + "2023-07-02": "Sunday", + "2023-07-09": "Sunday", + "2023-07-16": "Sunday", + "2023-07-23": "Sunday", + "2023-07-30": "Sunday", + "2023-08-06": "Sunday", + "2023-08-13": "Sunday", + "2023-08-20": "Sunday", + "2023-08-27": "Sunday", + "2023-09-03": "Sunday", + "2023-09-10": "Sunday", + "2023-09-17": "Sunday", + "2023-09-24": "Sunday", + "2023-10-01": "Sunday", + "2023-10-08": "Sunday", + "2023-10-15": "Sunday", + "2023-10-22": "Sunday", + "2023-10-29": "Sunday", + "2023-11-04": "All Saints' Day", + "2023-11-05": "Sunday", + "2023-11-12": "Sunday", + "2023-11-19": "Sunday", + "2023-11-26": "Sunday", + "2023-12-03": "Sunday", + "2023-12-10": "Sunday", + "2023-12-17": "Sunday", + "2023-12-24": "Christmas Eve; Sunday", + "2023-12-25": "Christmas Day", + "2023-12-26": "Second Day of Christmas", + "2023-12-31": "New Year's Eve; Sunday", + "2024-01-01": "New Year's Day", + "2024-01-06": "Epiphany", + "2024-01-07": "Sunday", + "2024-01-14": "Sunday", + "2024-01-21": "Sunday", + "2024-01-28": "Sunday", + "2024-02-04": "Sunday", + "2024-02-11": "Sunday", + "2024-02-18": "Sunday", + "2024-02-25": "Sunday", + "2024-03-03": "Sunday", + "2024-03-10": "Sunday", + "2024-03-17": "Sunday", + "2024-03-24": "Sunday", + "2024-03-29": "Good Friday", + "2024-03-31": "Easter Sunday; Sunday", + "2024-04-01": "Easter Monday", + "2024-04-07": "Sunday", + "2024-04-14": "Sunday", + "2024-04-21": "Sunday", + "2024-04-28": "Sunday", + "2024-05-01": "May Day", + "2024-05-05": "Sunday", + "2024-05-09": "Ascension Day", + "2024-05-12": "Sunday", + "2024-05-19": "Sunday; Whit Sunday", + "2024-05-26": "Sunday", + "2024-06-02": "Sunday", + "2024-06-06": "National Day of Sweden", + "2024-06-09": "Sunday", + "2024-06-16": "Sunday", + "2024-06-21": "Midsummer Eve", + "2024-06-22": "Midsummer Day", + "2024-06-23": "Sunday", + "2024-06-30": "Sunday", + "2024-07-07": "Sunday", + "2024-07-14": "Sunday", + "2024-07-21": "Sunday", + "2024-07-28": "Sunday", + "2024-08-04": "Sunday", + "2024-08-11": "Sunday", + "2024-08-18": "Sunday", + "2024-08-25": "Sunday", + "2024-09-01": "Sunday", + "2024-09-08": "Sunday", + "2024-09-15": "Sunday", + "2024-09-22": "Sunday", + "2024-09-29": "Sunday", + "2024-10-06": "Sunday", + "2024-10-13": "Sunday", + "2024-10-20": "Sunday", + "2024-10-27": "Sunday", + "2024-11-02": "All Saints' Day", + "2024-11-03": "Sunday", + "2024-11-10": "Sunday", + "2024-11-17": "Sunday", + "2024-11-24": "Sunday", + "2024-12-01": "Sunday", + "2024-12-08": "Sunday", + "2024-12-15": "Sunday", + "2024-12-22": "Sunday", + "2024-12-24": "Christmas Eve", + "2024-12-25": "Christmas Day", + "2024-12-26": "Second Day of Christmas", + "2024-12-29": "Sunday", + "2024-12-31": "New Year's Eve", + "2025-01-01": "New Year's Day", + "2025-01-05": "Sunday", + "2025-01-06": "Epiphany", + "2025-01-12": "Sunday", + "2025-01-19": "Sunday", + "2025-01-26": "Sunday", + "2025-02-02": "Sunday", + "2025-02-09": "Sunday", + "2025-02-16": "Sunday", + "2025-02-23": "Sunday", + "2025-03-02": "Sunday", + "2025-03-09": "Sunday", + "2025-03-16": "Sunday", + "2025-03-23": "Sunday", + "2025-03-30": "Sunday", + "2025-04-06": "Sunday", + "2025-04-13": "Sunday", + "2025-04-18": "Good Friday", + "2025-04-20": "Easter Sunday; Sunday", + "2025-04-21": "Easter Monday", + "2025-04-27": "Sunday", + "2025-05-01": "May Day", + "2025-05-04": "Sunday", + "2025-05-11": "Sunday", + "2025-05-18": "Sunday", + "2025-05-25": "Sunday", + "2025-05-29": "Ascension Day", + "2025-06-01": "Sunday", + "2025-06-06": "National Day of Sweden", + "2025-06-08": "Sunday; Whit Sunday", + "2025-06-15": "Sunday", + "2025-06-20": "Midsummer Eve", + "2025-06-21": "Midsummer Day", + "2025-06-22": "Sunday", + "2025-06-29": "Sunday", + "2025-07-06": "Sunday", + "2025-07-13": "Sunday", + "2025-07-20": "Sunday", + "2025-07-27": "Sunday", + "2025-08-03": "Sunday", + "2025-08-10": "Sunday", + "2025-08-17": "Sunday", + "2025-08-24": "Sunday", + "2025-08-31": "Sunday", + "2025-09-07": "Sunday", + "2025-09-14": "Sunday", + "2025-09-21": "Sunday", + "2025-09-28": "Sunday", + "2025-10-05": "Sunday", + "2025-10-12": "Sunday", + "2025-10-19": "Sunday", + "2025-10-26": "Sunday", + "2025-11-01": "All Saints' Day", + "2025-11-02": "Sunday", + "2025-11-09": "Sunday", + "2025-11-16": "Sunday", + "2025-11-23": "Sunday", + "2025-11-30": "Sunday", + "2025-12-07": "Sunday", + "2025-12-14": "Sunday", + "2025-12-21": "Sunday", + "2025-12-24": "Christmas Eve", + "2025-12-25": "Christmas Day", + "2025-12-26": "Second Day of Christmas", + "2025-12-28": "Sunday", + "2025-12-31": "New Year's Eve", + "2026-01-01": "New Year's Day", + "2026-01-04": "Sunday", + "2026-01-06": "Epiphany", + "2026-01-11": "Sunday", + "2026-01-18": "Sunday", + "2026-01-25": "Sunday", + "2026-02-01": "Sunday", + "2026-02-08": "Sunday", + "2026-02-15": "Sunday", + "2026-02-22": "Sunday", + "2026-03-01": "Sunday", + "2026-03-08": "Sunday", + "2026-03-15": "Sunday", + "2026-03-22": "Sunday", + "2026-03-29": "Sunday", + "2026-04-03": "Good Friday", + "2026-04-05": "Easter Sunday; Sunday", + "2026-04-06": "Easter Monday", + "2026-04-12": "Sunday", + "2026-04-19": "Sunday", + "2026-04-26": "Sunday", + "2026-05-01": "May Day", + "2026-05-03": "Sunday", + "2026-05-10": "Sunday", + "2026-05-14": "Ascension Day", + "2026-05-17": "Sunday", + "2026-05-24": "Sunday; Whit Sunday", + "2026-05-31": "Sunday", + "2026-06-06": "National Day of Sweden", + "2026-06-07": "Sunday", + "2026-06-14": "Sunday", + "2026-06-19": "Midsummer Eve", + "2026-06-20": "Midsummer Day", + "2026-06-21": "Sunday", + "2026-06-28": "Sunday", + "2026-07-05": "Sunday", + "2026-07-12": "Sunday", + "2026-07-19": "Sunday", + "2026-07-26": "Sunday", + "2026-08-02": "Sunday", + "2026-08-09": "Sunday", + "2026-08-16": "Sunday", + "2026-08-23": "Sunday", + "2026-08-30": "Sunday", + "2026-09-06": "Sunday", + "2026-09-13": "Sunday", + "2026-09-20": "Sunday", + "2026-09-27": "Sunday", + "2026-10-04": "Sunday", + "2026-10-11": "Sunday", + "2026-10-18": "Sunday", + "2026-10-25": "Sunday", + "2026-10-31": "All Saints' Day", + "2026-11-01": "Sunday", + "2026-11-08": "Sunday", + "2026-11-15": "Sunday", + "2026-11-22": "Sunday", + "2026-11-29": "Sunday", + "2026-12-06": "Sunday", + "2026-12-13": "Sunday", + "2026-12-20": "Sunday", + "2026-12-24": "Christmas Eve", + "2026-12-25": "Christmas Day", + "2026-12-26": "Second Day of Christmas", + "2026-12-27": "Sunday", + "2026-12-31": "New Year's Eve", + "2027-01-01": "New Year's Day", + "2027-01-03": "Sunday", + "2027-01-06": "Epiphany", + "2027-01-10": "Sunday", + "2027-01-17": "Sunday", + "2027-01-24": "Sunday", + "2027-01-31": "Sunday", + "2027-02-07": "Sunday", + "2027-02-14": "Sunday", + "2027-02-21": "Sunday", + "2027-02-28": "Sunday", + "2027-03-07": "Sunday", + "2027-03-14": "Sunday", + "2027-03-21": "Sunday", + "2027-03-26": "Good Friday", + "2027-03-28": "Easter Sunday; Sunday", + "2027-03-29": "Easter Monday", + "2027-04-04": "Sunday", + "2027-04-11": "Sunday", + "2027-04-18": "Sunday", + "2027-04-25": "Sunday", + "2027-05-01": "May Day", + "2027-05-02": "Sunday", + "2027-05-06": "Ascension Day", + "2027-05-09": "Sunday", + "2027-05-16": "Sunday; Whit Sunday", + "2027-05-23": "Sunday", + "2027-05-30": "Sunday", + "2027-06-06": "National Day of Sweden; Sunday", + "2027-06-13": "Sunday", + "2027-06-20": "Sunday", + "2027-06-25": "Midsummer Eve", + "2027-06-26": "Midsummer Day", + "2027-06-27": "Sunday", + "2027-07-04": "Sunday", + "2027-07-11": "Sunday", + "2027-07-18": "Sunday", + "2027-07-25": "Sunday", + "2027-08-01": "Sunday", + "2027-08-08": "Sunday", + "2027-08-15": "Sunday", + "2027-08-22": "Sunday", + "2027-08-29": "Sunday", + "2027-09-05": "Sunday", + "2027-09-12": "Sunday", + "2027-09-19": "Sunday", + "2027-09-26": "Sunday", + "2027-10-03": "Sunday", + "2027-10-10": "Sunday", + "2027-10-17": "Sunday", + "2027-10-24": "Sunday", + "2027-10-31": "Sunday", + "2027-11-06": "All Saints' Day", + "2027-11-07": "Sunday", + "2027-11-14": "Sunday", + "2027-11-21": "Sunday", + "2027-11-28": "Sunday", + "2027-12-05": "Sunday", + "2027-12-12": "Sunday", + "2027-12-19": "Sunday", + "2027-12-24": "Christmas Eve", + "2027-12-25": "Christmas Day", + "2027-12-26": "Second Day of Christmas; Sunday", + "2027-12-31": "New Year's Eve", + "2028-01-01": "New Year's Day", + "2028-01-02": "Sunday", + "2028-01-06": "Epiphany", + "2028-01-09": "Sunday", + "2028-01-16": "Sunday", + "2028-01-23": "Sunday", + "2028-01-30": "Sunday", + "2028-02-06": "Sunday", + "2028-02-13": "Sunday", + "2028-02-20": "Sunday", + "2028-02-27": "Sunday", + "2028-03-05": "Sunday", + "2028-03-12": "Sunday", + "2028-03-19": "Sunday", + "2028-03-26": "Sunday", + "2028-04-02": "Sunday", + "2028-04-09": "Sunday", + "2028-04-14": "Good Friday", + "2028-04-16": "Easter Sunday; Sunday", + "2028-04-17": "Easter Monday", + "2028-04-23": "Sunday", + "2028-04-30": "Sunday", + "2028-05-01": "May Day", + "2028-05-07": "Sunday", + "2028-05-14": "Sunday", + "2028-05-21": "Sunday", + "2028-05-25": "Ascension Day", + "2028-05-28": "Sunday", + "2028-06-04": "Sunday; Whit Sunday", + "2028-06-06": "National Day of Sweden", + "2028-06-11": "Sunday", + "2028-06-18": "Sunday", + "2028-06-23": "Midsummer Eve", + "2028-06-24": "Midsummer Day", + "2028-06-25": "Sunday", + "2028-07-02": "Sunday", + "2028-07-09": "Sunday", + "2028-07-16": "Sunday", + "2028-07-23": "Sunday", + "2028-07-30": "Sunday", + "2028-08-06": "Sunday", + "2028-08-13": "Sunday", + "2028-08-20": "Sunday", + "2028-08-27": "Sunday", + "2028-09-03": "Sunday", + "2028-09-10": "Sunday", + "2028-09-17": "Sunday", + "2028-09-24": "Sunday", + "2028-10-01": "Sunday", + "2028-10-08": "Sunday", + "2028-10-15": "Sunday", + "2028-10-22": "Sunday", + "2028-10-29": "Sunday", + "2028-11-04": "All Saints' Day", + "2028-11-05": "Sunday", + "2028-11-12": "Sunday", + "2028-11-19": "Sunday", + "2028-11-26": "Sunday", + "2028-12-03": "Sunday", + "2028-12-10": "Sunday", + "2028-12-17": "Sunday", + "2028-12-24": "Christmas Eve; Sunday", + "2028-12-25": "Christmas Day", + "2028-12-26": "Second Day of Christmas", + "2028-12-31": "New Year's Eve; Sunday", + "2029-01-01": "New Year's Day", + "2029-01-06": "Epiphany", + "2029-01-07": "Sunday", + "2029-01-14": "Sunday", + "2029-01-21": "Sunday", + "2029-01-28": "Sunday", + "2029-02-04": "Sunday", + "2029-02-11": "Sunday", + "2029-02-18": "Sunday", + "2029-02-25": "Sunday", + "2029-03-04": "Sunday", + "2029-03-11": "Sunday", + "2029-03-18": "Sunday", + "2029-03-25": "Sunday", + "2029-03-30": "Good Friday", + "2029-04-01": "Easter Sunday; Sunday", + "2029-04-02": "Easter Monday", + "2029-04-08": "Sunday", + "2029-04-15": "Sunday", + "2029-04-22": "Sunday", + "2029-04-29": "Sunday", + "2029-05-01": "May Day", + "2029-05-06": "Sunday", + "2029-05-10": "Ascension Day", + "2029-05-13": "Sunday", + "2029-05-20": "Sunday; Whit Sunday", + "2029-05-27": "Sunday", + "2029-06-03": "Sunday", + "2029-06-06": "National Day of Sweden", + "2029-06-10": "Sunday", + "2029-06-17": "Sunday", + "2029-06-22": "Midsummer Eve", + "2029-06-23": "Midsummer Day", + "2029-06-24": "Sunday", + "2029-07-01": "Sunday", + "2029-07-08": "Sunday", + "2029-07-15": "Sunday", + "2029-07-22": "Sunday", + "2029-07-29": "Sunday", + "2029-08-05": "Sunday", + "2029-08-12": "Sunday", + "2029-08-19": "Sunday", + "2029-08-26": "Sunday", + "2029-09-02": "Sunday", + "2029-09-09": "Sunday", + "2029-09-16": "Sunday", + "2029-09-23": "Sunday", + "2029-09-30": "Sunday", + "2029-10-07": "Sunday", + "2029-10-14": "Sunday", + "2029-10-21": "Sunday", + "2029-10-28": "Sunday", + "2029-11-03": "All Saints' Day", + "2029-11-04": "Sunday", + "2029-11-11": "Sunday", + "2029-11-18": "Sunday", + "2029-11-25": "Sunday", + "2029-12-02": "Sunday", + "2029-12-09": "Sunday", + "2029-12-16": "Sunday", + "2029-12-23": "Sunday", + "2029-12-24": "Christmas Eve", + "2029-12-25": "Christmas Day", + "2029-12-26": "Second Day of Christmas", + "2029-12-30": "Sunday", + "2029-12-31": "New Year's Eve", + "2030-01-01": "New Year's Day", + "2030-01-06": "Epiphany; Sunday", + "2030-01-13": "Sunday", + "2030-01-20": "Sunday", + "2030-01-27": "Sunday", + "2030-02-03": "Sunday", + "2030-02-10": "Sunday", + "2030-02-17": "Sunday", + "2030-02-24": "Sunday", + "2030-03-03": "Sunday", + "2030-03-10": "Sunday", + "2030-03-17": "Sunday", + "2030-03-24": "Sunday", + "2030-03-31": "Sunday", + "2030-04-07": "Sunday", + "2030-04-14": "Sunday", + "2030-04-19": "Good Friday", + "2030-04-21": "Easter Sunday; Sunday", + "2030-04-22": "Easter Monday", + "2030-04-28": "Sunday", + "2030-05-01": "May Day", + "2030-05-05": "Sunday", + "2030-05-12": "Sunday", + "2030-05-19": "Sunday", + "2030-05-26": "Sunday", + "2030-05-30": "Ascension Day", + "2030-06-02": "Sunday", + "2030-06-06": "National Day of Sweden", + "2030-06-09": "Sunday; Whit Sunday", + "2030-06-16": "Sunday", + "2030-06-21": "Midsummer Eve", + "2030-06-22": "Midsummer Day", + "2030-06-23": "Sunday", + "2030-06-30": "Sunday", + "2030-07-07": "Sunday", + "2030-07-14": "Sunday", + "2030-07-21": "Sunday", + "2030-07-28": "Sunday", + "2030-08-04": "Sunday", + "2030-08-11": "Sunday", + "2030-08-18": "Sunday", + "2030-08-25": "Sunday", + "2030-09-01": "Sunday", + "2030-09-08": "Sunday", + "2030-09-15": "Sunday", + "2030-09-22": "Sunday", + "2030-09-29": "Sunday", + "2030-10-06": "Sunday", + "2030-10-13": "Sunday", + "2030-10-20": "Sunday", + "2030-10-27": "Sunday", + "2030-11-02": "All Saints' Day", + "2030-11-03": "Sunday", + "2030-11-10": "Sunday", + "2030-11-17": "Sunday", + "2030-11-24": "Sunday", + "2030-12-01": "Sunday", + "2030-12-08": "Sunday", + "2030-12-15": "Sunday", + "2030-12-22": "Sunday", + "2030-12-24": "Christmas Eve", + "2030-12-25": "Christmas Day", + "2030-12-26": "Second Day of Christmas", + "2030-12-29": "Sunday", + "2030-12-31": "New Year's Eve", + "2031-01-01": "New Year's Day", + "2031-01-05": "Sunday", + "2031-01-06": "Epiphany", + "2031-01-12": "Sunday", + "2031-01-19": "Sunday", + "2031-01-26": "Sunday", + "2031-02-02": "Sunday", + "2031-02-09": "Sunday", + "2031-02-16": "Sunday", + "2031-02-23": "Sunday", + "2031-03-02": "Sunday", + "2031-03-09": "Sunday", + "2031-03-16": "Sunday", + "2031-03-23": "Sunday", + "2031-03-30": "Sunday", + "2031-04-06": "Sunday", + "2031-04-11": "Good Friday", + "2031-04-13": "Easter Sunday; Sunday", + "2031-04-14": "Easter Monday", + "2031-04-20": "Sunday", + "2031-04-27": "Sunday", + "2031-05-01": "May Day", + "2031-05-04": "Sunday", + "2031-05-11": "Sunday", + "2031-05-18": "Sunday", + "2031-05-22": "Ascension Day", + "2031-05-25": "Sunday", + "2031-06-01": "Sunday; Whit Sunday", + "2031-06-06": "National Day of Sweden", + "2031-06-08": "Sunday", + "2031-06-15": "Sunday", + "2031-06-20": "Midsummer Eve", + "2031-06-21": "Midsummer Day", + "2031-06-22": "Sunday", + "2031-06-29": "Sunday", + "2031-07-06": "Sunday", + "2031-07-13": "Sunday", + "2031-07-20": "Sunday", + "2031-07-27": "Sunday", + "2031-08-03": "Sunday", + "2031-08-10": "Sunday", + "2031-08-17": "Sunday", + "2031-08-24": "Sunday", + "2031-08-31": "Sunday", + "2031-09-07": "Sunday", + "2031-09-14": "Sunday", + "2031-09-21": "Sunday", + "2031-09-28": "Sunday", + "2031-10-05": "Sunday", + "2031-10-12": "Sunday", + "2031-10-19": "Sunday", + "2031-10-26": "Sunday", + "2031-11-01": "All Saints' Day", + "2031-11-02": "Sunday", + "2031-11-09": "Sunday", + "2031-11-16": "Sunday", + "2031-11-23": "Sunday", + "2031-11-30": "Sunday", + "2031-12-07": "Sunday", + "2031-12-14": "Sunday", + "2031-12-21": "Sunday", + "2031-12-24": "Christmas Eve", + "2031-12-25": "Christmas Day", + "2031-12-26": "Second Day of Christmas", + "2031-12-28": "Sunday", + "2031-12-31": "New Year's Eve", + "2032-01-01": "New Year's Day", + "2032-01-04": "Sunday", + "2032-01-06": "Epiphany", + "2032-01-11": "Sunday", + "2032-01-18": "Sunday", + "2032-01-25": "Sunday", + "2032-02-01": "Sunday", + "2032-02-08": "Sunday", + "2032-02-15": "Sunday", + "2032-02-22": "Sunday", + "2032-02-29": "Sunday", + "2032-03-07": "Sunday", + "2032-03-14": "Sunday", + "2032-03-21": "Sunday", + "2032-03-26": "Good Friday", + "2032-03-28": "Easter Sunday; Sunday", + "2032-03-29": "Easter Monday", + "2032-04-04": "Sunday", + "2032-04-11": "Sunday", + "2032-04-18": "Sunday", + "2032-04-25": "Sunday", + "2032-05-01": "May Day", + "2032-05-02": "Sunday", + "2032-05-06": "Ascension Day", + "2032-05-09": "Sunday", + "2032-05-16": "Sunday; Whit Sunday", + "2032-05-23": "Sunday", + "2032-05-30": "Sunday", + "2032-06-06": "National Day of Sweden; Sunday", + "2032-06-13": "Sunday", + "2032-06-20": "Sunday", + "2032-06-25": "Midsummer Eve", + "2032-06-26": "Midsummer Day", + "2032-06-27": "Sunday", + "2032-07-04": "Sunday", + "2032-07-11": "Sunday", + "2032-07-18": "Sunday", + "2032-07-25": "Sunday", + "2032-08-01": "Sunday", + "2032-08-08": "Sunday", + "2032-08-15": "Sunday", + "2032-08-22": "Sunday", + "2032-08-29": "Sunday", + "2032-09-05": "Sunday", + "2032-09-12": "Sunday", + "2032-09-19": "Sunday", + "2032-09-26": "Sunday", + "2032-10-03": "Sunday", + "2032-10-10": "Sunday", + "2032-10-17": "Sunday", + "2032-10-24": "Sunday", + "2032-10-31": "Sunday", + "2032-11-06": "All Saints' Day", + "2032-11-07": "Sunday", + "2032-11-14": "Sunday", + "2032-11-21": "Sunday", + "2032-11-28": "Sunday", + "2032-12-05": "Sunday", + "2032-12-12": "Sunday", + "2032-12-19": "Sunday", + "2032-12-24": "Christmas Eve", + "2032-12-25": "Christmas Day", + "2032-12-26": "Second Day of Christmas; Sunday", + "2032-12-31": "New Year's Eve", + "2033-01-01": "New Year's Day", + "2033-01-02": "Sunday", + "2033-01-06": "Epiphany", + "2033-01-09": "Sunday", + "2033-01-16": "Sunday", + "2033-01-23": "Sunday", + "2033-01-30": "Sunday", + "2033-02-06": "Sunday", + "2033-02-13": "Sunday", + "2033-02-20": "Sunday", + "2033-02-27": "Sunday", + "2033-03-06": "Sunday", + "2033-03-13": "Sunday", + "2033-03-20": "Sunday", + "2033-03-27": "Sunday", + "2033-04-03": "Sunday", + "2033-04-10": "Sunday", + "2033-04-15": "Good Friday", + "2033-04-17": "Easter Sunday; Sunday", + "2033-04-18": "Easter Monday", + "2033-04-24": "Sunday", + "2033-05-01": "May Day; Sunday", + "2033-05-08": "Sunday", + "2033-05-15": "Sunday", + "2033-05-22": "Sunday", + "2033-05-26": "Ascension Day", + "2033-05-29": "Sunday", + "2033-06-05": "Sunday; Whit Sunday", + "2033-06-06": "National Day of Sweden", + "2033-06-12": "Sunday", + "2033-06-19": "Sunday", + "2033-06-24": "Midsummer Eve", + "2033-06-25": "Midsummer Day", + "2033-06-26": "Sunday", + "2033-07-03": "Sunday", + "2033-07-10": "Sunday", + "2033-07-17": "Sunday", + "2033-07-24": "Sunday", + "2033-07-31": "Sunday", + "2033-08-07": "Sunday", + "2033-08-14": "Sunday", + "2033-08-21": "Sunday", + "2033-08-28": "Sunday", + "2033-09-04": "Sunday", + "2033-09-11": "Sunday", + "2033-09-18": "Sunday", + "2033-09-25": "Sunday", + "2033-10-02": "Sunday", + "2033-10-09": "Sunday", + "2033-10-16": "Sunday", + "2033-10-23": "Sunday", + "2033-10-30": "Sunday", + "2033-11-05": "All Saints' Day", + "2033-11-06": "Sunday", + "2033-11-13": "Sunday", + "2033-11-20": "Sunday", + "2033-11-27": "Sunday", + "2033-12-04": "Sunday", + "2033-12-11": "Sunday", + "2033-12-18": "Sunday", + "2033-12-24": "Christmas Eve", + "2033-12-25": "Christmas Day; Sunday", + "2033-12-26": "Second Day of Christmas", + "2033-12-31": "New Year's Eve", + "2034-01-01": "New Year's Day; Sunday", + "2034-01-06": "Epiphany", + "2034-01-08": "Sunday", + "2034-01-15": "Sunday", + "2034-01-22": "Sunday", + "2034-01-29": "Sunday", + "2034-02-05": "Sunday", + "2034-02-12": "Sunday", + "2034-02-19": "Sunday", + "2034-02-26": "Sunday", + "2034-03-05": "Sunday", + "2034-03-12": "Sunday", + "2034-03-19": "Sunday", + "2034-03-26": "Sunday", + "2034-04-02": "Sunday", + "2034-04-07": "Good Friday", + "2034-04-09": "Easter Sunday; Sunday", + "2034-04-10": "Easter Monday", + "2034-04-16": "Sunday", + "2034-04-23": "Sunday", + "2034-04-30": "Sunday", + "2034-05-01": "May Day", + "2034-05-07": "Sunday", + "2034-05-14": "Sunday", + "2034-05-18": "Ascension Day", + "2034-05-21": "Sunday", + "2034-05-28": "Sunday; Whit Sunday", + "2034-06-04": "Sunday", + "2034-06-06": "National Day of Sweden", + "2034-06-11": "Sunday", + "2034-06-18": "Sunday", + "2034-06-23": "Midsummer Eve", + "2034-06-24": "Midsummer Day", + "2034-06-25": "Sunday", + "2034-07-02": "Sunday", + "2034-07-09": "Sunday", + "2034-07-16": "Sunday", + "2034-07-23": "Sunday", + "2034-07-30": "Sunday", + "2034-08-06": "Sunday", + "2034-08-13": "Sunday", + "2034-08-20": "Sunday", + "2034-08-27": "Sunday", + "2034-09-03": "Sunday", + "2034-09-10": "Sunday", + "2034-09-17": "Sunday", + "2034-09-24": "Sunday", + "2034-10-01": "Sunday", + "2034-10-08": "Sunday", + "2034-10-15": "Sunday", + "2034-10-22": "Sunday", + "2034-10-29": "Sunday", + "2034-11-04": "All Saints' Day", + "2034-11-05": "Sunday", + "2034-11-12": "Sunday", + "2034-11-19": "Sunday", + "2034-11-26": "Sunday", + "2034-12-03": "Sunday", + "2034-12-10": "Sunday", + "2034-12-17": "Sunday", + "2034-12-24": "Christmas Eve; Sunday", + "2034-12-25": "Christmas Day", + "2034-12-26": "Second Day of Christmas", + "2034-12-31": "New Year's Eve; Sunday", + "2035-01-01": "New Year's Day", + "2035-01-06": "Epiphany", + "2035-01-07": "Sunday", + "2035-01-14": "Sunday", + "2035-01-21": "Sunday", + "2035-01-28": "Sunday", + "2035-02-04": "Sunday", + "2035-02-11": "Sunday", + "2035-02-18": "Sunday", + "2035-02-25": "Sunday", + "2035-03-04": "Sunday", + "2035-03-11": "Sunday", + "2035-03-18": "Sunday", + "2035-03-23": "Good Friday", + "2035-03-25": "Easter Sunday; Sunday", + "2035-03-26": "Easter Monday", + "2035-04-01": "Sunday", + "2035-04-08": "Sunday", + "2035-04-15": "Sunday", + "2035-04-22": "Sunday", + "2035-04-29": "Sunday", + "2035-05-01": "May Day", + "2035-05-03": "Ascension Day", + "2035-05-06": "Sunday", + "2035-05-13": "Sunday; Whit Sunday", + "2035-05-20": "Sunday", + "2035-05-27": "Sunday", + "2035-06-03": "Sunday", + "2035-06-06": "National Day of Sweden", + "2035-06-10": "Sunday", + "2035-06-17": "Sunday", + "2035-06-22": "Midsummer Eve", + "2035-06-23": "Midsummer Day", + "2035-06-24": "Sunday", + "2035-07-01": "Sunday", + "2035-07-08": "Sunday", + "2035-07-15": "Sunday", + "2035-07-22": "Sunday", + "2035-07-29": "Sunday", + "2035-08-05": "Sunday", + "2035-08-12": "Sunday", + "2035-08-19": "Sunday", + "2035-08-26": "Sunday", + "2035-09-02": "Sunday", + "2035-09-09": "Sunday", + "2035-09-16": "Sunday", + "2035-09-23": "Sunday", + "2035-09-30": "Sunday", + "2035-10-07": "Sunday", + "2035-10-14": "Sunday", + "2035-10-21": "Sunday", + "2035-10-28": "Sunday", + "2035-11-03": "All Saints' Day", + "2035-11-04": "Sunday", + "2035-11-11": "Sunday", + "2035-11-18": "Sunday", + "2035-11-25": "Sunday", + "2035-12-02": "Sunday", + "2035-12-09": "Sunday", + "2035-12-16": "Sunday", + "2035-12-23": "Sunday", + "2035-12-24": "Christmas Eve", + "2035-12-25": "Christmas Day", + "2035-12-26": "Second Day of Christmas", + "2035-12-30": "Sunday", + "2035-12-31": "New Year's Eve", + "2036-01-01": "New Year's Day", + "2036-01-06": "Epiphany; Sunday", + "2036-01-13": "Sunday", + "2036-01-20": "Sunday", + "2036-01-27": "Sunday", + "2036-02-03": "Sunday", + "2036-02-10": "Sunday", + "2036-02-17": "Sunday", + "2036-02-24": "Sunday", + "2036-03-02": "Sunday", + "2036-03-09": "Sunday", + "2036-03-16": "Sunday", + "2036-03-23": "Sunday", + "2036-03-30": "Sunday", + "2036-04-06": "Sunday", + "2036-04-11": "Good Friday", + "2036-04-13": "Easter Sunday; Sunday", + "2036-04-14": "Easter Monday", + "2036-04-20": "Sunday", + "2036-04-27": "Sunday", + "2036-05-01": "May Day", + "2036-05-04": "Sunday", + "2036-05-11": "Sunday", + "2036-05-18": "Sunday", + "2036-05-22": "Ascension Day", + "2036-05-25": "Sunday", + "2036-06-01": "Sunday; Whit Sunday", + "2036-06-06": "National Day of Sweden", + "2036-06-08": "Sunday", + "2036-06-15": "Sunday", + "2036-06-20": "Midsummer Eve", + "2036-06-21": "Midsummer Day", + "2036-06-22": "Sunday", + "2036-06-29": "Sunday", + "2036-07-06": "Sunday", + "2036-07-13": "Sunday", + "2036-07-20": "Sunday", + "2036-07-27": "Sunday", + "2036-08-03": "Sunday", + "2036-08-10": "Sunday", + "2036-08-17": "Sunday", + "2036-08-24": "Sunday", + "2036-08-31": "Sunday", + "2036-09-07": "Sunday", + "2036-09-14": "Sunday", + "2036-09-21": "Sunday", + "2036-09-28": "Sunday", + "2036-10-05": "Sunday", + "2036-10-12": "Sunday", + "2036-10-19": "Sunday", + "2036-10-26": "Sunday", + "2036-11-01": "All Saints' Day", + "2036-11-02": "Sunday", + "2036-11-09": "Sunday", + "2036-11-16": "Sunday", + "2036-11-23": "Sunday", + "2036-11-30": "Sunday", + "2036-12-07": "Sunday", + "2036-12-14": "Sunday", + "2036-12-21": "Sunday", + "2036-12-24": "Christmas Eve", + "2036-12-25": "Christmas Day", + "2036-12-26": "Second Day of Christmas", + "2036-12-28": "Sunday", + "2036-12-31": "New Year's Eve", + "2037-01-01": "New Year's Day", + "2037-01-04": "Sunday", + "2037-01-06": "Epiphany", + "2037-01-11": "Sunday", + "2037-01-18": "Sunday", + "2037-01-25": "Sunday", + "2037-02-01": "Sunday", + "2037-02-08": "Sunday", + "2037-02-15": "Sunday", + "2037-02-22": "Sunday", + "2037-03-01": "Sunday", + "2037-03-08": "Sunday", + "2037-03-15": "Sunday", + "2037-03-22": "Sunday", + "2037-03-29": "Sunday", + "2037-04-03": "Good Friday", + "2037-04-05": "Easter Sunday; Sunday", + "2037-04-06": "Easter Monday", + "2037-04-12": "Sunday", + "2037-04-19": "Sunday", + "2037-04-26": "Sunday", + "2037-05-01": "May Day", + "2037-05-03": "Sunday", + "2037-05-10": "Sunday", + "2037-05-14": "Ascension Day", + "2037-05-17": "Sunday", + "2037-05-24": "Sunday; Whit Sunday", + "2037-05-31": "Sunday", + "2037-06-06": "National Day of Sweden", + "2037-06-07": "Sunday", + "2037-06-14": "Sunday", + "2037-06-19": "Midsummer Eve", + "2037-06-20": "Midsummer Day", + "2037-06-21": "Sunday", + "2037-06-28": "Sunday", + "2037-07-05": "Sunday", + "2037-07-12": "Sunday", + "2037-07-19": "Sunday", + "2037-07-26": "Sunday", + "2037-08-02": "Sunday", + "2037-08-09": "Sunday", + "2037-08-16": "Sunday", + "2037-08-23": "Sunday", + "2037-08-30": "Sunday", + "2037-09-06": "Sunday", + "2037-09-13": "Sunday", + "2037-09-20": "Sunday", + "2037-09-27": "Sunday", + "2037-10-04": "Sunday", + "2037-10-11": "Sunday", + "2037-10-18": "Sunday", + "2037-10-25": "Sunday", + "2037-10-31": "All Saints' Day", + "2037-11-01": "Sunday", + "2037-11-08": "Sunday", + "2037-11-15": "Sunday", + "2037-11-22": "Sunday", + "2037-11-29": "Sunday", + "2037-12-06": "Sunday", + "2037-12-13": "Sunday", + "2037-12-20": "Sunday", + "2037-12-24": "Christmas Eve", + "2037-12-25": "Christmas Day", + "2037-12-26": "Second Day of Christmas", + "2037-12-27": "Sunday", + "2037-12-31": "New Year's Eve", + "2038-01-01": "New Year's Day", + "2038-01-03": "Sunday", + "2038-01-06": "Epiphany", + "2038-01-10": "Sunday", + "2038-01-17": "Sunday", + "2038-01-24": "Sunday", + "2038-01-31": "Sunday", + "2038-02-07": "Sunday", + "2038-02-14": "Sunday", + "2038-02-21": "Sunday", + "2038-02-28": "Sunday", + "2038-03-07": "Sunday", + "2038-03-14": "Sunday", + "2038-03-21": "Sunday", + "2038-03-28": "Sunday", + "2038-04-04": "Sunday", + "2038-04-11": "Sunday", + "2038-04-18": "Sunday", + "2038-04-23": "Good Friday", + "2038-04-25": "Easter Sunday; Sunday", + "2038-04-26": "Easter Monday", + "2038-05-01": "May Day", + "2038-05-02": "Sunday", + "2038-05-09": "Sunday", + "2038-05-16": "Sunday", + "2038-05-23": "Sunday", + "2038-05-30": "Sunday", + "2038-06-03": "Ascension Day", + "2038-06-06": "National Day of Sweden; Sunday", + "2038-06-13": "Sunday; Whit Sunday", + "2038-06-20": "Sunday", + "2038-06-25": "Midsummer Eve", + "2038-06-26": "Midsummer Day", + "2038-06-27": "Sunday", + "2038-07-04": "Sunday", + "2038-07-11": "Sunday", + "2038-07-18": "Sunday", + "2038-07-25": "Sunday", + "2038-08-01": "Sunday", + "2038-08-08": "Sunday", + "2038-08-15": "Sunday", + "2038-08-22": "Sunday", + "2038-08-29": "Sunday", + "2038-09-05": "Sunday", + "2038-09-12": "Sunday", + "2038-09-19": "Sunday", + "2038-09-26": "Sunday", + "2038-10-03": "Sunday", + "2038-10-10": "Sunday", + "2038-10-17": "Sunday", + "2038-10-24": "Sunday", + "2038-10-31": "Sunday", + "2038-11-06": "All Saints' Day", + "2038-11-07": "Sunday", + "2038-11-14": "Sunday", + "2038-11-21": "Sunday", + "2038-11-28": "Sunday", + "2038-12-05": "Sunday", + "2038-12-12": "Sunday", + "2038-12-19": "Sunday", + "2038-12-24": "Christmas Eve", + "2038-12-25": "Christmas Day", + "2038-12-26": "Second Day of Christmas; Sunday", + "2038-12-31": "New Year's Eve", + "2039-01-01": "New Year's Day", + "2039-01-02": "Sunday", + "2039-01-06": "Epiphany", + "2039-01-09": "Sunday", + "2039-01-16": "Sunday", + "2039-01-23": "Sunday", + "2039-01-30": "Sunday", + "2039-02-06": "Sunday", + "2039-02-13": "Sunday", + "2039-02-20": "Sunday", + "2039-02-27": "Sunday", + "2039-03-06": "Sunday", + "2039-03-13": "Sunday", + "2039-03-20": "Sunday", + "2039-03-27": "Sunday", + "2039-04-03": "Sunday", + "2039-04-08": "Good Friday", + "2039-04-10": "Easter Sunday; Sunday", + "2039-04-11": "Easter Monday", + "2039-04-17": "Sunday", + "2039-04-24": "Sunday", + "2039-05-01": "May Day; Sunday", + "2039-05-08": "Sunday", + "2039-05-15": "Sunday", + "2039-05-19": "Ascension Day", + "2039-05-22": "Sunday", + "2039-05-29": "Sunday; Whit Sunday", + "2039-06-05": "Sunday", + "2039-06-06": "National Day of Sweden", + "2039-06-12": "Sunday", + "2039-06-19": "Sunday", + "2039-06-24": "Midsummer Eve", + "2039-06-25": "Midsummer Day", + "2039-06-26": "Sunday", + "2039-07-03": "Sunday", + "2039-07-10": "Sunday", + "2039-07-17": "Sunday", + "2039-07-24": "Sunday", + "2039-07-31": "Sunday", + "2039-08-07": "Sunday", + "2039-08-14": "Sunday", + "2039-08-21": "Sunday", + "2039-08-28": "Sunday", + "2039-09-04": "Sunday", + "2039-09-11": "Sunday", + "2039-09-18": "Sunday", + "2039-09-25": "Sunday", + "2039-10-02": "Sunday", + "2039-10-09": "Sunday", + "2039-10-16": "Sunday", + "2039-10-23": "Sunday", + "2039-10-30": "Sunday", + "2039-11-05": "All Saints' Day", + "2039-11-06": "Sunday", + "2039-11-13": "Sunday", + "2039-11-20": "Sunday", + "2039-11-27": "Sunday", + "2039-12-04": "Sunday", + "2039-12-11": "Sunday", + "2039-12-18": "Sunday", + "2039-12-24": "Christmas Eve", + "2039-12-25": "Christmas Day; Sunday", + "2039-12-26": "Second Day of Christmas", + "2039-12-31": "New Year's Eve", + "2040-01-01": "New Year's Day; Sunday", + "2040-01-06": "Epiphany", + "2040-01-08": "Sunday", + "2040-01-15": "Sunday", + "2040-01-22": "Sunday", + "2040-01-29": "Sunday", + "2040-02-05": "Sunday", + "2040-02-12": "Sunday", + "2040-02-19": "Sunday", + "2040-02-26": "Sunday", + "2040-03-04": "Sunday", + "2040-03-11": "Sunday", + "2040-03-18": "Sunday", + "2040-03-25": "Sunday", + "2040-03-30": "Good Friday", + "2040-04-01": "Easter Sunday; Sunday", + "2040-04-02": "Easter Monday", + "2040-04-08": "Sunday", + "2040-04-15": "Sunday", + "2040-04-22": "Sunday", + "2040-04-29": "Sunday", + "2040-05-01": "May Day", + "2040-05-06": "Sunday", + "2040-05-10": "Ascension Day", + "2040-05-13": "Sunday", + "2040-05-20": "Sunday; Whit Sunday", + "2040-05-27": "Sunday", + "2040-06-03": "Sunday", + "2040-06-06": "National Day of Sweden", + "2040-06-10": "Sunday", + "2040-06-17": "Sunday", + "2040-06-22": "Midsummer Eve", + "2040-06-23": "Midsummer Day", + "2040-06-24": "Sunday", + "2040-07-01": "Sunday", + "2040-07-08": "Sunday", + "2040-07-15": "Sunday", + "2040-07-22": "Sunday", + "2040-07-29": "Sunday", + "2040-08-05": "Sunday", + "2040-08-12": "Sunday", + "2040-08-19": "Sunday", + "2040-08-26": "Sunday", + "2040-09-02": "Sunday", + "2040-09-09": "Sunday", + "2040-09-16": "Sunday", + "2040-09-23": "Sunday", + "2040-09-30": "Sunday", + "2040-10-07": "Sunday", + "2040-10-14": "Sunday", + "2040-10-21": "Sunday", + "2040-10-28": "Sunday", + "2040-11-03": "All Saints' Day", + "2040-11-04": "Sunday", + "2040-11-11": "Sunday", + "2040-11-18": "Sunday", + "2040-11-25": "Sunday", + "2040-12-02": "Sunday", + "2040-12-09": "Sunday", + "2040-12-16": "Sunday", + "2040-12-23": "Sunday", + "2040-12-24": "Christmas Eve", + "2040-12-25": "Christmas Day", + "2040-12-26": "Second Day of Christmas", + "2040-12-30": "Sunday", + "2040-12-31": "New Year's Eve", + "2041-01-01": "New Year's Day", + "2041-01-06": "Epiphany; Sunday", + "2041-01-13": "Sunday", + "2041-01-20": "Sunday", + "2041-01-27": "Sunday", + "2041-02-03": "Sunday", + "2041-02-10": "Sunday", + "2041-02-17": "Sunday", + "2041-02-24": "Sunday", + "2041-03-03": "Sunday", + "2041-03-10": "Sunday", + "2041-03-17": "Sunday", + "2041-03-24": "Sunday", + "2041-03-31": "Sunday", + "2041-04-07": "Sunday", + "2041-04-14": "Sunday", + "2041-04-19": "Good Friday", + "2041-04-21": "Easter Sunday; Sunday", + "2041-04-22": "Easter Monday", + "2041-04-28": "Sunday", + "2041-05-01": "May Day", + "2041-05-05": "Sunday", + "2041-05-12": "Sunday", + "2041-05-19": "Sunday", + "2041-05-26": "Sunday", + "2041-05-30": "Ascension Day", + "2041-06-02": "Sunday", + "2041-06-06": "National Day of Sweden", + "2041-06-09": "Sunday; Whit Sunday", + "2041-06-16": "Sunday", + "2041-06-21": "Midsummer Eve", + "2041-06-22": "Midsummer Day", + "2041-06-23": "Sunday", + "2041-06-30": "Sunday", + "2041-07-07": "Sunday", + "2041-07-14": "Sunday", + "2041-07-21": "Sunday", + "2041-07-28": "Sunday", + "2041-08-04": "Sunday", + "2041-08-11": "Sunday", + "2041-08-18": "Sunday", + "2041-08-25": "Sunday", + "2041-09-01": "Sunday", + "2041-09-08": "Sunday", + "2041-09-15": "Sunday", + "2041-09-22": "Sunday", + "2041-09-29": "Sunday", + "2041-10-06": "Sunday", + "2041-10-13": "Sunday", + "2041-10-20": "Sunday", + "2041-10-27": "Sunday", + "2041-11-02": "All Saints' Day", + "2041-11-03": "Sunday", + "2041-11-10": "Sunday", + "2041-11-17": "Sunday", + "2041-11-24": "Sunday", + "2041-12-01": "Sunday", + "2041-12-08": "Sunday", + "2041-12-15": "Sunday", + "2041-12-22": "Sunday", + "2041-12-24": "Christmas Eve", + "2041-12-25": "Christmas Day", + "2041-12-26": "Second Day of Christmas", + "2041-12-29": "Sunday", + "2041-12-31": "New Year's Eve", + "2042-01-01": "New Year's Day", + "2042-01-05": "Sunday", + "2042-01-06": "Epiphany", + "2042-01-12": "Sunday", + "2042-01-19": "Sunday", + "2042-01-26": "Sunday", + "2042-02-02": "Sunday", + "2042-02-09": "Sunday", + "2042-02-16": "Sunday", + "2042-02-23": "Sunday", + "2042-03-02": "Sunday", + "2042-03-09": "Sunday", + "2042-03-16": "Sunday", + "2042-03-23": "Sunday", + "2042-03-30": "Sunday", + "2042-04-04": "Good Friday", + "2042-04-06": "Easter Sunday; Sunday", + "2042-04-07": "Easter Monday", + "2042-04-13": "Sunday", + "2042-04-20": "Sunday", + "2042-04-27": "Sunday", + "2042-05-01": "May Day", + "2042-05-04": "Sunday", + "2042-05-11": "Sunday", + "2042-05-15": "Ascension Day", + "2042-05-18": "Sunday", + "2042-05-25": "Sunday; Whit Sunday", + "2042-06-01": "Sunday", + "2042-06-06": "National Day of Sweden", + "2042-06-08": "Sunday", + "2042-06-15": "Sunday", + "2042-06-20": "Midsummer Eve", + "2042-06-21": "Midsummer Day", + "2042-06-22": "Sunday", + "2042-06-29": "Sunday", + "2042-07-06": "Sunday", + "2042-07-13": "Sunday", + "2042-07-20": "Sunday", + "2042-07-27": "Sunday", + "2042-08-03": "Sunday", + "2042-08-10": "Sunday", + "2042-08-17": "Sunday", + "2042-08-24": "Sunday", + "2042-08-31": "Sunday", + "2042-09-07": "Sunday", + "2042-09-14": "Sunday", + "2042-09-21": "Sunday", + "2042-09-28": "Sunday", + "2042-10-05": "Sunday", + "2042-10-12": "Sunday", + "2042-10-19": "Sunday", + "2042-10-26": "Sunday", + "2042-11-01": "All Saints' Day", + "2042-11-02": "Sunday", + "2042-11-09": "Sunday", + "2042-11-16": "Sunday", + "2042-11-23": "Sunday", + "2042-11-30": "Sunday", + "2042-12-07": "Sunday", + "2042-12-14": "Sunday", + "2042-12-21": "Sunday", + "2042-12-24": "Christmas Eve", + "2042-12-25": "Christmas Day", + "2042-12-26": "Second Day of Christmas", + "2042-12-28": "Sunday", + "2042-12-31": "New Year's Eve", + "2043-01-01": "New Year's Day", + "2043-01-04": "Sunday", + "2043-01-06": "Epiphany", + "2043-01-11": "Sunday", + "2043-01-18": "Sunday", + "2043-01-25": "Sunday", + "2043-02-01": "Sunday", + "2043-02-08": "Sunday", + "2043-02-15": "Sunday", + "2043-02-22": "Sunday", + "2043-03-01": "Sunday", + "2043-03-08": "Sunday", + "2043-03-15": "Sunday", + "2043-03-22": "Sunday", + "2043-03-27": "Good Friday", + "2043-03-29": "Easter Sunday; Sunday", + "2043-03-30": "Easter Monday", + "2043-04-05": "Sunday", + "2043-04-12": "Sunday", + "2043-04-19": "Sunday", + "2043-04-26": "Sunday", + "2043-05-01": "May Day", + "2043-05-03": "Sunday", + "2043-05-07": "Ascension Day", + "2043-05-10": "Sunday", + "2043-05-17": "Sunday; Whit Sunday", + "2043-05-24": "Sunday", + "2043-05-31": "Sunday", + "2043-06-06": "National Day of Sweden", + "2043-06-07": "Sunday", + "2043-06-14": "Sunday", + "2043-06-19": "Midsummer Eve", + "2043-06-20": "Midsummer Day", + "2043-06-21": "Sunday", + "2043-06-28": "Sunday", + "2043-07-05": "Sunday", + "2043-07-12": "Sunday", + "2043-07-19": "Sunday", + "2043-07-26": "Sunday", + "2043-08-02": "Sunday", + "2043-08-09": "Sunday", + "2043-08-16": "Sunday", + "2043-08-23": "Sunday", + "2043-08-30": "Sunday", + "2043-09-06": "Sunday", + "2043-09-13": "Sunday", + "2043-09-20": "Sunday", + "2043-09-27": "Sunday", + "2043-10-04": "Sunday", + "2043-10-11": "Sunday", + "2043-10-18": "Sunday", + "2043-10-25": "Sunday", + "2043-10-31": "All Saints' Day", + "2043-11-01": "Sunday", + "2043-11-08": "Sunday", + "2043-11-15": "Sunday", + "2043-11-22": "Sunday", + "2043-11-29": "Sunday", + "2043-12-06": "Sunday", + "2043-12-13": "Sunday", + "2043-12-20": "Sunday", + "2043-12-24": "Christmas Eve", + "2043-12-25": "Christmas Day", + "2043-12-26": "Second Day of Christmas", + "2043-12-27": "Sunday", + "2043-12-31": "New Year's Eve", + "2044-01-01": "New Year's Day", + "2044-01-03": "Sunday", + "2044-01-06": "Epiphany", + "2044-01-10": "Sunday", + "2044-01-17": "Sunday", + "2044-01-24": "Sunday", + "2044-01-31": "Sunday", + "2044-02-07": "Sunday", + "2044-02-14": "Sunday", + "2044-02-21": "Sunday", + "2044-02-28": "Sunday", + "2044-03-06": "Sunday", + "2044-03-13": "Sunday", + "2044-03-20": "Sunday", + "2044-03-27": "Sunday", + "2044-04-03": "Sunday", + "2044-04-10": "Sunday", + "2044-04-15": "Good Friday", + "2044-04-17": "Easter Sunday; Sunday", + "2044-04-18": "Easter Monday", + "2044-04-24": "Sunday", + "2044-05-01": "May Day; Sunday", + "2044-05-08": "Sunday", + "2044-05-15": "Sunday", + "2044-05-22": "Sunday", + "2044-05-26": "Ascension Day", + "2044-05-29": "Sunday", + "2044-06-05": "Sunday; Whit Sunday", + "2044-06-06": "National Day of Sweden", + "2044-06-12": "Sunday", + "2044-06-19": "Sunday", + "2044-06-24": "Midsummer Eve", + "2044-06-25": "Midsummer Day", + "2044-06-26": "Sunday", + "2044-07-03": "Sunday", + "2044-07-10": "Sunday", + "2044-07-17": "Sunday", + "2044-07-24": "Sunday", + "2044-07-31": "Sunday", + "2044-08-07": "Sunday", + "2044-08-14": "Sunday", + "2044-08-21": "Sunday", + "2044-08-28": "Sunday", + "2044-09-04": "Sunday", + "2044-09-11": "Sunday", + "2044-09-18": "Sunday", + "2044-09-25": "Sunday", + "2044-10-02": "Sunday", + "2044-10-09": "Sunday", + "2044-10-16": "Sunday", + "2044-10-23": "Sunday", + "2044-10-30": "Sunday", + "2044-11-05": "All Saints' Day", + "2044-11-06": "Sunday", + "2044-11-13": "Sunday", + "2044-11-20": "Sunday", + "2044-11-27": "Sunday", + "2044-12-04": "Sunday", + "2044-12-11": "Sunday", + "2044-12-18": "Sunday", + "2044-12-24": "Christmas Eve", + "2044-12-25": "Christmas Day; Sunday", + "2044-12-26": "Second Day of Christmas", + "2044-12-31": "New Year's Eve", + "2045-01-01": "New Year's Day; Sunday", + "2045-01-06": "Epiphany", + "2045-01-08": "Sunday", + "2045-01-15": "Sunday", + "2045-01-22": "Sunday", + "2045-01-29": "Sunday", + "2045-02-05": "Sunday", + "2045-02-12": "Sunday", + "2045-02-19": "Sunday", + "2045-02-26": "Sunday", + "2045-03-05": "Sunday", + "2045-03-12": "Sunday", + "2045-03-19": "Sunday", + "2045-03-26": "Sunday", + "2045-04-02": "Sunday", + "2045-04-07": "Good Friday", + "2045-04-09": "Easter Sunday; Sunday", + "2045-04-10": "Easter Monday", + "2045-04-16": "Sunday", + "2045-04-23": "Sunday", + "2045-04-30": "Sunday", + "2045-05-01": "May Day", + "2045-05-07": "Sunday", + "2045-05-14": "Sunday", + "2045-05-18": "Ascension Day", + "2045-05-21": "Sunday", + "2045-05-28": "Sunday; Whit Sunday", + "2045-06-04": "Sunday", + "2045-06-06": "National Day of Sweden", + "2045-06-11": "Sunday", + "2045-06-18": "Sunday", + "2045-06-23": "Midsummer Eve", + "2045-06-24": "Midsummer Day", + "2045-06-25": "Sunday", + "2045-07-02": "Sunday", + "2045-07-09": "Sunday", + "2045-07-16": "Sunday", + "2045-07-23": "Sunday", + "2045-07-30": "Sunday", + "2045-08-06": "Sunday", + "2045-08-13": "Sunday", + "2045-08-20": "Sunday", + "2045-08-27": "Sunday", + "2045-09-03": "Sunday", + "2045-09-10": "Sunday", + "2045-09-17": "Sunday", + "2045-09-24": "Sunday", + "2045-10-01": "Sunday", + "2045-10-08": "Sunday", + "2045-10-15": "Sunday", + "2045-10-22": "Sunday", + "2045-10-29": "Sunday", + "2045-11-04": "All Saints' Day", + "2045-11-05": "Sunday", + "2045-11-12": "Sunday", + "2045-11-19": "Sunday", + "2045-11-26": "Sunday", + "2045-12-03": "Sunday", + "2045-12-10": "Sunday", + "2045-12-17": "Sunday", + "2045-12-24": "Christmas Eve; Sunday", + "2045-12-25": "Christmas Day", + "2045-12-26": "Second Day of Christmas", + "2045-12-31": "New Year's Eve; Sunday", + "2046-01-01": "New Year's Day", + "2046-01-06": "Epiphany", + "2046-01-07": "Sunday", + "2046-01-14": "Sunday", + "2046-01-21": "Sunday", + "2046-01-28": "Sunday", + "2046-02-04": "Sunday", + "2046-02-11": "Sunday", + "2046-02-18": "Sunday", + "2046-02-25": "Sunday", + "2046-03-04": "Sunday", + "2046-03-11": "Sunday", + "2046-03-18": "Sunday", + "2046-03-23": "Good Friday", + "2046-03-25": "Easter Sunday; Sunday", + "2046-03-26": "Easter Monday", + "2046-04-01": "Sunday", + "2046-04-08": "Sunday", + "2046-04-15": "Sunday", + "2046-04-22": "Sunday", + "2046-04-29": "Sunday", + "2046-05-01": "May Day", + "2046-05-03": "Ascension Day", + "2046-05-06": "Sunday", + "2046-05-13": "Sunday; Whit Sunday", + "2046-05-20": "Sunday", + "2046-05-27": "Sunday", + "2046-06-03": "Sunday", + "2046-06-06": "National Day of Sweden", + "2046-06-10": "Sunday", + "2046-06-17": "Sunday", + "2046-06-22": "Midsummer Eve", + "2046-06-23": "Midsummer Day", + "2046-06-24": "Sunday", + "2046-07-01": "Sunday", + "2046-07-08": "Sunday", + "2046-07-15": "Sunday", + "2046-07-22": "Sunday", + "2046-07-29": "Sunday", + "2046-08-05": "Sunday", + "2046-08-12": "Sunday", + "2046-08-19": "Sunday", + "2046-08-26": "Sunday", + "2046-09-02": "Sunday", + "2046-09-09": "Sunday", + "2046-09-16": "Sunday", + "2046-09-23": "Sunday", + "2046-09-30": "Sunday", + "2046-10-07": "Sunday", + "2046-10-14": "Sunday", + "2046-10-21": "Sunday", + "2046-10-28": "Sunday", + "2046-11-03": "All Saints' Day", + "2046-11-04": "Sunday", + "2046-11-11": "Sunday", + "2046-11-18": "Sunday", + "2046-11-25": "Sunday", + "2046-12-02": "Sunday", + "2046-12-09": "Sunday", + "2046-12-16": "Sunday", + "2046-12-23": "Sunday", + "2046-12-24": "Christmas Eve", + "2046-12-25": "Christmas Day", + "2046-12-26": "Second Day of Christmas", + "2046-12-30": "Sunday", + "2046-12-31": "New Year's Eve", + "2047-01-01": "New Year's Day", + "2047-01-06": "Epiphany; Sunday", + "2047-01-13": "Sunday", + "2047-01-20": "Sunday", + "2047-01-27": "Sunday", + "2047-02-03": "Sunday", + "2047-02-10": "Sunday", + "2047-02-17": "Sunday", + "2047-02-24": "Sunday", + "2047-03-03": "Sunday", + "2047-03-10": "Sunday", + "2047-03-17": "Sunday", + "2047-03-24": "Sunday", + "2047-03-31": "Sunday", + "2047-04-07": "Sunday", + "2047-04-12": "Good Friday", + "2047-04-14": "Easter Sunday; Sunday", + "2047-04-15": "Easter Monday", + "2047-04-21": "Sunday", + "2047-04-28": "Sunday", + "2047-05-01": "May Day", + "2047-05-05": "Sunday", + "2047-05-12": "Sunday", + "2047-05-19": "Sunday", + "2047-05-23": "Ascension Day", + "2047-05-26": "Sunday", + "2047-06-02": "Sunday; Whit Sunday", + "2047-06-06": "National Day of Sweden", + "2047-06-09": "Sunday", + "2047-06-16": "Sunday", + "2047-06-21": "Midsummer Eve", + "2047-06-22": "Midsummer Day", + "2047-06-23": "Sunday", + "2047-06-30": "Sunday", + "2047-07-07": "Sunday", + "2047-07-14": "Sunday", + "2047-07-21": "Sunday", + "2047-07-28": "Sunday", + "2047-08-04": "Sunday", + "2047-08-11": "Sunday", + "2047-08-18": "Sunday", + "2047-08-25": "Sunday", + "2047-09-01": "Sunday", + "2047-09-08": "Sunday", + "2047-09-15": "Sunday", + "2047-09-22": "Sunday", + "2047-09-29": "Sunday", + "2047-10-06": "Sunday", + "2047-10-13": "Sunday", + "2047-10-20": "Sunday", + "2047-10-27": "Sunday", + "2047-11-02": "All Saints' Day", + "2047-11-03": "Sunday", + "2047-11-10": "Sunday", + "2047-11-17": "Sunday", + "2047-11-24": "Sunday", + "2047-12-01": "Sunday", + "2047-12-08": "Sunday", + "2047-12-15": "Sunday", + "2047-12-22": "Sunday", + "2047-12-24": "Christmas Eve", + "2047-12-25": "Christmas Day", + "2047-12-26": "Second Day of Christmas", + "2047-12-29": "Sunday", + "2047-12-31": "New Year's Eve", + "2048-01-01": "New Year's Day", + "2048-01-05": "Sunday", + "2048-01-06": "Epiphany", + "2048-01-12": "Sunday", + "2048-01-19": "Sunday", + "2048-01-26": "Sunday", + "2048-02-02": "Sunday", + "2048-02-09": "Sunday", + "2048-02-16": "Sunday", + "2048-02-23": "Sunday", + "2048-03-01": "Sunday", + "2048-03-08": "Sunday", + "2048-03-15": "Sunday", + "2048-03-22": "Sunday", + "2048-03-29": "Sunday", + "2048-04-03": "Good Friday", + "2048-04-05": "Easter Sunday; Sunday", + "2048-04-06": "Easter Monday", + "2048-04-12": "Sunday", + "2048-04-19": "Sunday", + "2048-04-26": "Sunday", + "2048-05-01": "May Day", + "2048-05-03": "Sunday", + "2048-05-10": "Sunday", + "2048-05-14": "Ascension Day", + "2048-05-17": "Sunday", + "2048-05-24": "Sunday; Whit Sunday", + "2048-05-31": "Sunday", + "2048-06-06": "National Day of Sweden", + "2048-06-07": "Sunday", + "2048-06-14": "Sunday", + "2048-06-19": "Midsummer Eve", + "2048-06-20": "Midsummer Day", + "2048-06-21": "Sunday", + "2048-06-28": "Sunday", + "2048-07-05": "Sunday", + "2048-07-12": "Sunday", + "2048-07-19": "Sunday", + "2048-07-26": "Sunday", + "2048-08-02": "Sunday", + "2048-08-09": "Sunday", + "2048-08-16": "Sunday", + "2048-08-23": "Sunday", + "2048-08-30": "Sunday", + "2048-09-06": "Sunday", + "2048-09-13": "Sunday", + "2048-09-20": "Sunday", + "2048-09-27": "Sunday", + "2048-10-04": "Sunday", + "2048-10-11": "Sunday", + "2048-10-18": "Sunday", + "2048-10-25": "Sunday", + "2048-10-31": "All Saints' Day", + "2048-11-01": "Sunday", + "2048-11-08": "Sunday", + "2048-11-15": "Sunday", + "2048-11-22": "Sunday", + "2048-11-29": "Sunday", + "2048-12-06": "Sunday", + "2048-12-13": "Sunday", + "2048-12-20": "Sunday", + "2048-12-24": "Christmas Eve", + "2048-12-25": "Christmas Day", + "2048-12-26": "Second Day of Christmas", + "2048-12-27": "Sunday", + "2048-12-31": "New Year's Eve", + "2049-01-01": "New Year's Day", + "2049-01-03": "Sunday", + "2049-01-06": "Epiphany", + "2049-01-10": "Sunday", + "2049-01-17": "Sunday", + "2049-01-24": "Sunday", + "2049-01-31": "Sunday", + "2049-02-07": "Sunday", + "2049-02-14": "Sunday", + "2049-02-21": "Sunday", + "2049-02-28": "Sunday", + "2049-03-07": "Sunday", + "2049-03-14": "Sunday", + "2049-03-21": "Sunday", + "2049-03-28": "Sunday", + "2049-04-04": "Sunday", + "2049-04-11": "Sunday", + "2049-04-16": "Good Friday", + "2049-04-18": "Easter Sunday; Sunday", + "2049-04-19": "Easter Monday", + "2049-04-25": "Sunday", + "2049-05-01": "May Day", + "2049-05-02": "Sunday", + "2049-05-09": "Sunday", + "2049-05-16": "Sunday", + "2049-05-23": "Sunday", + "2049-05-27": "Ascension Day", + "2049-05-30": "Sunday", + "2049-06-06": "National Day of Sweden; Sunday; Whit Sunday", + "2049-06-13": "Sunday", + "2049-06-20": "Sunday", + "2049-06-25": "Midsummer Eve", + "2049-06-26": "Midsummer Day", + "2049-06-27": "Sunday", + "2049-07-04": "Sunday", + "2049-07-11": "Sunday", + "2049-07-18": "Sunday", + "2049-07-25": "Sunday", + "2049-08-01": "Sunday", + "2049-08-08": "Sunday", + "2049-08-15": "Sunday", + "2049-08-22": "Sunday", + "2049-08-29": "Sunday", + "2049-09-05": "Sunday", + "2049-09-12": "Sunday", + "2049-09-19": "Sunday", + "2049-09-26": "Sunday", + "2049-10-03": "Sunday", + "2049-10-10": "Sunday", + "2049-10-17": "Sunday", + "2049-10-24": "Sunday", + "2049-10-31": "Sunday", + "2049-11-06": "All Saints' Day", + "2049-11-07": "Sunday", + "2049-11-14": "Sunday", + "2049-11-21": "Sunday", + "2049-11-28": "Sunday", + "2049-12-05": "Sunday", + "2049-12-12": "Sunday", + "2049-12-19": "Sunday", + "2049-12-24": "Christmas Eve", + "2049-12-25": "Christmas Day", + "2049-12-26": "Second Day of Christmas; Sunday", + "2049-12-31": "New Year's Eve", + "2050-01-01": "New Year's Day", + "2050-01-02": "Sunday", + "2050-01-06": "Epiphany", + "2050-01-09": "Sunday", + "2050-01-16": "Sunday", + "2050-01-23": "Sunday", + "2050-01-30": "Sunday", + "2050-02-06": "Sunday", + "2050-02-13": "Sunday", + "2050-02-20": "Sunday", + "2050-02-27": "Sunday", + "2050-03-06": "Sunday", + "2050-03-13": "Sunday", + "2050-03-20": "Sunday", + "2050-03-27": "Sunday", + "2050-04-03": "Sunday", + "2050-04-08": "Good Friday", + "2050-04-10": "Easter Sunday; Sunday", + "2050-04-11": "Easter Monday", + "2050-04-17": "Sunday", + "2050-04-24": "Sunday", + "2050-05-01": "May Day; Sunday", + "2050-05-08": "Sunday", + "2050-05-15": "Sunday", + "2050-05-19": "Ascension Day", + "2050-05-22": "Sunday", + "2050-05-29": "Sunday; Whit Sunday", + "2050-06-05": "Sunday", + "2050-06-06": "National Day of Sweden", + "2050-06-12": "Sunday", + "2050-06-19": "Sunday", + "2050-06-24": "Midsummer Eve", + "2050-06-25": "Midsummer Day", + "2050-06-26": "Sunday", + "2050-07-03": "Sunday", + "2050-07-10": "Sunday", + "2050-07-17": "Sunday", + "2050-07-24": "Sunday", + "2050-07-31": "Sunday", + "2050-08-07": "Sunday", + "2050-08-14": "Sunday", + "2050-08-21": "Sunday", + "2050-08-28": "Sunday", + "2050-09-04": "Sunday", + "2050-09-11": "Sunday", + "2050-09-18": "Sunday", + "2050-09-25": "Sunday", + "2050-10-02": "Sunday", + "2050-10-09": "Sunday", + "2050-10-16": "Sunday", + "2050-10-23": "Sunday", + "2050-10-30": "Sunday", + "2050-11-05": "All Saints' Day", + "2050-11-06": "Sunday", + "2050-11-13": "Sunday", + "2050-11-20": "Sunday", + "2050-11-27": "Sunday", + "2050-12-04": "Sunday", + "2050-12-11": "Sunday", + "2050-12-18": "Sunday", + "2050-12-24": "Christmas Eve", + "2050-12-25": "Christmas Day; Sunday", + "2050-12-26": "Second Day of Christmas", + "2050-12-31": "New Year's Eve" +} diff --git a/snapshots/countries/SG.json b/snapshots/countries/SG.json new file mode 100644 index 000000000..098d8f1a3 --- /dev/null +++ b/snapshots/countries/SG.json @@ -0,0 +1,1276 @@ +{ + "1950-01-01": "New Year's Day", + "1950-02-17": "Chinese New Year", + "1950-02-18": "Chinese New Year", + "1950-04-07": "Good Friday", + "1950-04-08": "Holy Saturday", + "1950-04-10": "Easter Monday", + "1950-05-01": "Labour Day", + "1950-05-31": "Vesak Day", + "1950-07-16": "Hari Raya Puasa* (*estimated)", + "1950-07-17": "Second day of Hari Raya Puasa* (*estimated)", + "1950-08-09": "National Day", + "1950-09-23": "Hari Raya Haji* (*estimated)", + "1950-11-08": "Deepavali", + "1950-12-25": "Christmas Day", + "1950-12-26": "Boxing Day", + "1951-01-01": "New Year's Day", + "1951-02-06": "Chinese New Year", + "1951-02-07": "Chinese New Year", + "1951-03-23": "Good Friday", + "1951-03-24": "Holy Saturday", + "1951-03-26": "Easter Monday", + "1951-05-01": "Labour Day", + "1951-05-20": "Vesak Day", + "1951-07-06": "Hari Raya Puasa* (*estimated)", + "1951-07-07": "Second day of Hari Raya Puasa* (*estimated)", + "1951-08-09": "National Day", + "1951-09-12": "Hari Raya Haji* (*estimated)", + "1951-10-28": "Deepavali", + "1951-12-25": "Christmas Day", + "1951-12-26": "Boxing Day", + "1952-01-01": "New Year's Day", + "1952-01-27": "Chinese New Year", + "1952-01-28": "Chinese New Year", + "1952-04-11": "Good Friday", + "1952-04-12": "Holy Saturday", + "1952-04-14": "Easter Monday", + "1952-05-01": "Labour Day", + "1952-05-08": "Vesak Day", + "1952-06-23": "Hari Raya Puasa* (*estimated)", + "1952-06-24": "Second day of Hari Raya Puasa* (*estimated)", + "1952-08-09": "National Day", + "1952-08-31": "Hari Raya Haji* (*estimated)", + "1952-11-15": "Deepavali", + "1952-12-25": "Christmas Day", + "1952-12-26": "Boxing Day", + "1953-01-01": "New Year's Day", + "1953-02-14": "Chinese New Year", + "1953-02-15": "Chinese New Year", + "1953-04-03": "Good Friday", + "1953-04-04": "Holy Saturday", + "1953-04-06": "Easter Monday", + "1953-05-01": "Labour Day", + "1953-05-27": "Vesak Day", + "1953-06-13": "Hari Raya Puasa* (*estimated)", + "1953-06-14": "Second day of Hari Raya Puasa* (*estimated)", + "1953-08-09": "National Day", + "1953-08-20": "Hari Raya Haji* (*estimated)", + "1953-11-05": "Deepavali", + "1953-12-25": "Christmas Day", + "1953-12-26": "Boxing Day", + "1954-01-01": "New Year's Day", + "1954-02-03": "Chinese New Year", + "1954-02-04": "Chinese New Year", + "1954-04-16": "Good Friday", + "1954-04-17": "Holy Saturday", + "1954-04-19": "Easter Monday", + "1954-05-01": "Labour Day", + "1954-05-17": "Vesak Day", + "1954-06-02": "Hari Raya Puasa* (*estimated)", + "1954-06-03": "Second day of Hari Raya Puasa* (*estimated)", + "1954-08-09": "Hari Raya Haji* (*estimated); National Day", + "1954-10-25": "Deepavali", + "1954-12-25": "Christmas Day", + "1954-12-26": "Boxing Day", + "1955-01-01": "New Year's Day", + "1955-01-24": "Chinese New Year", + "1955-01-25": "Chinese New Year", + "1955-04-08": "Good Friday", + "1955-04-09": "Holy Saturday", + "1955-04-11": "Easter Monday", + "1955-05-01": "Labour Day", + "1955-05-23": "Hari Raya Puasa* (*estimated)", + "1955-05-24": "Second day of Hari Raya Puasa* (*estimated)", + "1955-06-05": "Vesak Day", + "1955-07-30": "Hari Raya Haji* (*estimated)", + "1955-08-09": "National Day", + "1955-11-12": "Deepavali", + "1955-12-25": "Christmas Day", + "1955-12-26": "Boxing Day", + "1956-01-01": "New Year's Day", + "1956-02-12": "Chinese New Year", + "1956-02-13": "Chinese New Year", + "1956-03-30": "Good Friday", + "1956-03-31": "Holy Saturday", + "1956-04-02": "Easter Monday", + "1956-05-01": "Labour Day", + "1956-05-11": "Hari Raya Puasa* (*estimated)", + "1956-05-12": "Second day of Hari Raya Puasa* (*estimated)", + "1956-05-24": "Vesak Day", + "1956-07-19": "Hari Raya Haji* (*estimated)", + "1956-08-09": "National Day", + "1956-11-01": "Deepavali", + "1956-12-25": "Christmas Day", + "1956-12-26": "Boxing Day", + "1957-01-01": "New Year's Day", + "1957-01-31": "Chinese New Year", + "1957-02-01": "Chinese New Year", + "1957-04-19": "Good Friday", + "1957-04-20": "Holy Saturday", + "1957-04-22": "Easter Monday", + "1957-05-01": "Hari Raya Puasa* (*estimated); Labour Day", + "1957-05-02": "Second day of Hari Raya Puasa* (*estimated)", + "1957-05-14": "Vesak Day", + "1957-07-08": "Hari Raya Haji* (*estimated)", + "1957-08-09": "National Day", + "1957-11-20": "Deepavali", + "1957-12-25": "Christmas Day", + "1957-12-26": "Boxing Day", + "1958-01-01": "New Year's Day", + "1958-02-18": "Chinese New Year", + "1958-02-19": "Chinese New Year", + "1958-04-04": "Good Friday", + "1958-04-05": "Holy Saturday", + "1958-04-07": "Easter Monday", + "1958-04-20": "Hari Raya Puasa* (*estimated)", + "1958-04-21": "Second day of Hari Raya Puasa* (*estimated)", + "1958-05-01": "Labour Day", + "1958-06-02": "Vesak Day", + "1958-06-27": "Hari Raya Haji* (*estimated)", + "1958-08-09": "National Day", + "1958-11-09": "Deepavali", + "1958-12-25": "Christmas Day", + "1958-12-26": "Boxing Day", + "1959-01-01": "New Year's Day", + "1959-02-08": "Chinese New Year", + "1959-02-09": "Chinese New Year", + "1959-03-27": "Good Friday", + "1959-03-28": "Holy Saturday", + "1959-03-30": "Easter Monday", + "1959-04-10": "Hari Raya Puasa* (*estimated)", + "1959-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "1959-05-01": "Labour Day", + "1959-05-22": "Vesak Day", + "1959-06-17": "Hari Raya Haji* (*estimated)", + "1959-08-09": "National Day", + "1959-10-30": "Deepavali", + "1959-12-25": "Christmas Day", + "1959-12-26": "Boxing Day", + "1960-01-01": "New Year's Day", + "1960-01-28": "Chinese New Year", + "1960-01-29": "Chinese New Year", + "1960-03-28": "Hari Raya Puasa* (*estimated)", + "1960-03-29": "Second day of Hari Raya Puasa* (*estimated)", + "1960-04-15": "Good Friday", + "1960-04-16": "Holy Saturday", + "1960-04-18": "Easter Monday", + "1960-05-01": "Labour Day", + "1960-05-10": "Vesak Day", + "1960-06-04": "Hari Raya Haji* (*estimated)", + "1960-08-09": "National Day", + "1960-11-17": "Deepavali", + "1960-12-25": "Christmas Day", + "1960-12-26": "Boxing Day", + "1961-01-01": "New Year's Day", + "1961-02-15": "Chinese New Year", + "1961-02-16": "Chinese New Year", + "1961-03-18": "Hari Raya Puasa* (*estimated)", + "1961-03-19": "Second day of Hari Raya Puasa* (*estimated)", + "1961-03-31": "Good Friday", + "1961-04-01": "Holy Saturday", + "1961-04-03": "Easter Monday", + "1961-05-01": "Labour Day", + "1961-05-25": "Hari Raya Haji* (*estimated)", + "1961-05-29": "Vesak Day", + "1961-08-09": "National Day", + "1961-11-06": "Deepavali", + "1961-12-25": "Christmas Day", + "1961-12-26": "Boxing Day", + "1962-01-01": "New Year's Day", + "1962-02-05": "Chinese New Year", + "1962-02-06": "Chinese New Year", + "1962-03-07": "Hari Raya Puasa* (*estimated)", + "1962-03-08": "Second day of Hari Raya Puasa* (*estimated)", + "1962-04-20": "Good Friday", + "1962-04-21": "Holy Saturday", + "1962-04-23": "Easter Monday", + "1962-05-01": "Labour Day", + "1962-05-14": "Hari Raya Haji* (*estimated)", + "1962-05-18": "Vesak Day", + "1962-08-09": "National Day", + "1962-10-26": "Deepavali", + "1962-12-25": "Christmas Day", + "1962-12-26": "Boxing Day", + "1963-01-01": "New Year's Day", + "1963-01-25": "Chinese New Year", + "1963-01-26": "Chinese New Year", + "1963-02-24": "Hari Raya Puasa* (*estimated)", + "1963-02-25": "Second day of Hari Raya Puasa* (*estimated)", + "1963-04-12": "Good Friday", + "1963-04-13": "Holy Saturday", + "1963-04-15": "Easter Monday", + "1963-05-01": "Labour Day", + "1963-05-03": "Hari Raya Haji* (*estimated)", + "1963-05-08": "Vesak Day", + "1963-08-09": "National Day", + "1963-11-14": "Deepavali", + "1963-12-25": "Christmas Day", + "1963-12-26": "Boxing Day", + "1964-01-01": "New Year's Day", + "1964-02-13": "Chinese New Year", + "1964-02-14": "Chinese New Year; Hari Raya Puasa* (*estimated)", + "1964-02-15": "Second day of Hari Raya Puasa* (*estimated)", + "1964-03-27": "Good Friday", + "1964-03-28": "Holy Saturday", + "1964-03-30": "Easter Monday", + "1964-04-22": "Hari Raya Haji* (*estimated)", + "1964-05-01": "Labour Day", + "1964-05-26": "Vesak Day", + "1964-08-09": "National Day", + "1964-11-02": "Deepavali", + "1964-12-25": "Christmas Day", + "1964-12-26": "Boxing Day", + "1965-01-01": "New Year's Day", + "1965-02-02": "Chinese New Year; Hari Raya Puasa* (*estimated)", + "1965-02-03": "Chinese New Year; Second day of Hari Raya Puasa* (*estimated)", + "1965-04-11": "Hari Raya Haji* (*estimated)", + "1965-04-16": "Good Friday", + "1965-04-17": "Holy Saturday", + "1965-04-19": "Easter Monday", + "1965-05-01": "Labour Day", + "1965-05-15": "Vesak Day", + "1965-08-09": "National Day", + "1965-10-22": "Deepavali", + "1965-12-25": "Christmas Day", + "1965-12-26": "Boxing Day", + "1966-01-01": "New Year's Day", + "1966-01-21": "Chinese New Year", + "1966-01-22": "Chinese New Year; Hari Raya Puasa* (*estimated)", + "1966-01-23": "Second day of Hari Raya Puasa* (*estimated)", + "1966-04-01": "Hari Raya Haji* (*estimated)", + "1966-04-08": "Good Friday", + "1966-04-09": "Holy Saturday", + "1966-04-11": "Easter Monday", + "1966-05-01": "Labour Day", + "1966-06-03": "Vesak Day", + "1966-08-09": "National Day", + "1966-11-10": "Deepavali", + "1966-12-25": "Christmas Day", + "1966-12-26": "Boxing Day", + "1967-01-01": "New Year's Day", + "1967-01-12": "Hari Raya Puasa* (*estimated)", + "1967-01-13": "Second day of Hari Raya Puasa* (*estimated)", + "1967-02-09": "Chinese New Year", + "1967-02-10": "Chinese New Year", + "1967-03-21": "Hari Raya Haji* (*estimated)", + "1967-03-24": "Good Friday", + "1967-03-25": "Holy Saturday", + "1967-03-27": "Easter Monday", + "1967-05-01": "Labour Day", + "1967-05-23": "Vesak Day", + "1967-08-09": "National Day", + "1967-10-31": "Deepavali", + "1967-12-25": "Christmas Day", + "1967-12-26": "Boxing Day", + "1968-01-01": "Hari Raya Puasa* (*estimated); New Year's Day", + "1968-01-02": "Second day of Hari Raya Puasa* (*estimated)", + "1968-01-30": "Chinese New Year", + "1968-01-31": "Chinese New Year", + "1968-03-09": "Hari Raya Haji* (*estimated)", + "1968-04-12": "Good Friday", + "1968-04-13": "Holy Saturday", + "1968-04-15": "Easter Monday", + "1968-05-01": "Labour Day", + "1968-05-11": "Vesak Day", + "1968-08-09": "National Day", + "1968-11-18": "Deepavali", + "1968-12-21": "Hari Raya Puasa* (*estimated)", + "1968-12-22": "Second day of Hari Raya Puasa* (*estimated)", + "1968-12-25": "Christmas Day", + "1968-12-26": "Boxing Day", + "1969-01-01": "New Year's Day", + "1969-02-17": "Chinese New Year", + "1969-02-18": "Chinese New Year", + "1969-02-27": "Hari Raya Haji* (*estimated)", + "1969-04-04": "Good Friday", + "1969-05-01": "Labour Day", + "1969-05-30": "Vesak Day", + "1969-08-09": "National Day", + "1969-11-08": "Deepavali", + "1969-12-10": "Hari Raya Puasa* (*estimated)", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-02-06": "Chinese New Year", + "1970-02-07": "Chinese New Year", + "1970-02-16": "Hari Raya Haji* (*estimated)", + "1970-03-27": "Good Friday", + "1970-05-01": "Labour Day", + "1970-05-19": "Vesak Day", + "1970-08-09": "National Day", + "1970-10-28": "Deepavali", + "1970-11-30": "Hari Raya Puasa* (*estimated)", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-01-27": "Chinese New Year", + "1971-01-28": "Chinese New Year", + "1971-02-06": "Hari Raya Haji* (*estimated)", + "1971-04-09": "Good Friday", + "1971-05-01": "Labour Day", + "1971-05-09": "Vesak Day", + "1971-08-09": "National Day", + "1971-11-16": "Deepavali", + "1971-11-19": "Hari Raya Puasa* (*estimated)", + "1971-12-25": "Christmas Day", + "1972-01-01": "New Year's Day", + "1972-01-26": "Hari Raya Haji* (*estimated)", + "1972-02-15": "Chinese New Year", + "1972-02-16": "Chinese New Year", + "1972-03-31": "Good Friday", + "1972-05-01": "Labour Day", + "1972-05-27": "Vesak Day", + "1972-08-09": "National Day", + "1972-11-04": "Deepavali", + "1972-11-07": "Hari Raya Puasa* (*estimated)", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-01-14": "Hari Raya Haji* (*estimated)", + "1973-02-03": "Chinese New Year", + "1973-02-04": "Chinese New Year", + "1973-04-20": "Good Friday", + "1973-05-01": "Labour Day", + "1973-05-17": "Vesak Day", + "1973-08-09": "National Day", + "1973-10-24": "Deepavali", + "1973-10-27": "Hari Raya Puasa* (*estimated)", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-01-03": "Hari Raya Haji* (*estimated)", + "1974-01-23": "Chinese New Year", + "1974-01-24": "Chinese New Year", + "1974-04-12": "Good Friday", + "1974-05-01": "Labour Day", + "1974-05-06": "Vesak Day", + "1974-08-09": "National Day", + "1974-10-16": "Hari Raya Puasa* (*estimated)", + "1974-11-12": "Deepavali", + "1974-12-24": "Hari Raya Haji* (*estimated)", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-02-11": "Chinese New Year", + "1975-02-12": "Chinese New Year", + "1975-03-28": "Good Friday", + "1975-05-01": "Labour Day", + "1975-05-25": "Vesak Day", + "1975-08-09": "National Day", + "1975-10-06": "Hari Raya Puasa* (*estimated)", + "1975-11-01": "Deepavali", + "1975-12-13": "Hari Raya Haji* (*estimated)", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-01-31": "Chinese New Year", + "1976-02-01": "Chinese New Year", + "1976-04-16": "Good Friday", + "1976-05-01": "Labour Day", + "1976-05-13": "Vesak Day", + "1976-08-09": "National Day", + "1976-09-24": "Hari Raya Puasa* (*estimated)", + "1976-11-19": "Deepavali", + "1976-12-01": "Hari Raya Haji* (*estimated)", + "1976-12-25": "Christmas Day", + "1977-01-01": "New Year's Day", + "1977-02-18": "Chinese New Year", + "1977-02-19": "Chinese New Year", + "1977-04-08": "Good Friday", + "1977-05-01": "Labour Day", + "1977-06-01": "Vesak Day", + "1977-08-09": "National Day", + "1977-09-14": "Hari Raya Puasa* (*estimated)", + "1977-11-09": "Deepavali", + "1977-11-21": "Hari Raya Haji* (*estimated)", + "1977-12-25": "Christmas Day", + "1978-01-01": "New Year's Day", + "1978-02-07": "Chinese New Year", + "1978-02-08": "Chinese New Year", + "1978-03-24": "Good Friday", + "1978-05-01": "Labour Day", + "1978-05-21": "Vesak Day", + "1978-08-09": "National Day", + "1978-09-03": "Hari Raya Puasa* (*estimated)", + "1978-10-30": "Deepavali", + "1978-11-10": "Hari Raya Haji* (*estimated)", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-01-28": "Chinese New Year", + "1979-01-29": "Chinese New Year", + "1979-04-13": "Good Friday", + "1979-05-01": "Labour Day", + "1979-05-10": "Vesak Day", + "1979-08-09": "National Day", + "1979-08-23": "Hari Raya Puasa* (*estimated)", + "1979-10-31": "Hari Raya Haji* (*estimated)", + "1979-11-18": "Deepavali", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-02-16": "Chinese New Year", + "1980-02-17": "Chinese New Year", + "1980-04-04": "Good Friday", + "1980-05-01": "Labour Day", + "1980-05-28": "Vesak Day", + "1980-08-09": "National Day", + "1980-08-12": "Hari Raya Puasa* (*estimated)", + "1980-10-19": "Hari Raya Haji* (*estimated)", + "1980-11-06": "Deepavali", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-02-05": "Chinese New Year", + "1981-02-06": "Chinese New Year", + "1981-04-17": "Good Friday", + "1981-05-01": "Labour Day", + "1981-05-18": "Vesak Day", + "1981-08-01": "Hari Raya Puasa* (*estimated)", + "1981-08-09": "National Day", + "1981-10-08": "Hari Raya Haji* (*estimated)", + "1981-10-26": "Deepavali", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-01-25": "Chinese New Year", + "1982-01-26": "Chinese New Year", + "1982-04-09": "Good Friday", + "1982-05-01": "Labour Day", + "1982-05-08": "Vesak Day", + "1982-07-21": "Hari Raya Puasa* (*estimated)", + "1982-08-09": "National Day", + "1982-09-27": "Hari Raya Haji* (*estimated)", + "1982-11-13": "Deepavali", + "1982-12-25": "Christmas Day", + "1983-01-01": "New Year's Day", + "1983-02-13": "Chinese New Year", + "1983-02-14": "Chinese New Year", + "1983-04-01": "Good Friday", + "1983-05-01": "Labour Day", + "1983-05-27": "Vesak Day", + "1983-07-11": "Hari Raya Puasa* (*estimated)", + "1983-08-09": "National Day", + "1983-09-17": "Hari Raya Haji* (*estimated)", + "1983-11-03": "Deepavali", + "1983-12-25": "Christmas Day", + "1984-01-01": "New Year's Day", + "1984-02-02": "Chinese New Year", + "1984-02-03": "Chinese New Year", + "1984-04-20": "Good Friday", + "1984-05-01": "Labour Day", + "1984-05-15": "Vesak Day", + "1984-06-30": "Hari Raya Puasa* (*estimated)", + "1984-08-09": "National Day", + "1984-09-05": "Hari Raya Haji* (*estimated)", + "1984-10-22": "Deepavali", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-02-20": "Chinese New Year", + "1985-02-21": "Chinese New Year", + "1985-04-05": "Good Friday", + "1985-05-01": "Labour Day", + "1985-06-03": "Vesak Day", + "1985-06-19": "Hari Raya Puasa* (*estimated)", + "1985-08-09": "National Day", + "1985-08-26": "Hari Raya Haji* (*estimated)", + "1985-11-10": "Deepavali", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-02-09": "Chinese New Year", + "1986-02-10": "Chinese New Year", + "1986-03-28": "Good Friday", + "1986-05-01": "Labour Day", + "1986-05-23": "Vesak Day", + "1986-06-08": "Hari Raya Puasa* (*estimated)", + "1986-08-09": "National Day", + "1986-08-15": "Hari Raya Haji* (*estimated)", + "1986-10-31": "Deepavali", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-01-29": "Chinese New Year", + "1987-01-30": "Chinese New Year", + "1987-04-17": "Good Friday", + "1987-05-01": "Labour Day", + "1987-05-12": "Vesak Day", + "1987-05-28": "Hari Raya Puasa* (*estimated)", + "1987-08-04": "Hari Raya Haji* (*estimated)", + "1987-08-09": "National Day", + "1987-11-19": "Deepavali", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-02-17": "Chinese New Year", + "1988-02-18": "Chinese New Year", + "1988-04-01": "Good Friday", + "1988-05-01": "Labour Day", + "1988-05-16": "Hari Raya Puasa* (*estimated)", + "1988-05-30": "Vesak Day", + "1988-07-23": "Hari Raya Haji* (*estimated)", + "1988-08-09": "National Day", + "1988-11-07": "Deepavali", + "1988-12-25": "Christmas Day", + "1989-01-01": "New Year's Day", + "1989-02-06": "Chinese New Year", + "1989-02-07": "Chinese New Year", + "1989-03-24": "Good Friday", + "1989-05-01": "Labour Day", + "1989-05-06": "Hari Raya Puasa* (*estimated)", + "1989-05-19": "Vesak Day", + "1989-07-13": "Hari Raya Haji* (*estimated)", + "1989-08-09": "National Day", + "1989-10-27": "Deepavali", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-01-27": "Chinese New Year", + "1990-01-28": "Chinese New Year", + "1990-04-13": "Good Friday", + "1990-04-26": "Hari Raya Puasa* (*estimated)", + "1990-05-01": "Labour Day", + "1990-05-09": "Vesak Day", + "1990-07-02": "Hari Raya Haji* (*estimated)", + "1990-08-09": "National Day", + "1990-11-15": "Deepavali", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-02-15": "Chinese New Year", + "1991-02-16": "Chinese New Year", + "1991-03-29": "Good Friday", + "1991-04-15": "Hari Raya Puasa* (*estimated)", + "1991-05-01": "Labour Day", + "1991-05-28": "Vesak Day", + "1991-06-22": "Hari Raya Haji* (*estimated)", + "1991-08-09": "National Day", + "1991-11-04": "Deepavali", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-02-04": "Chinese New Year", + "1992-02-05": "Chinese New Year", + "1992-04-04": "Hari Raya Puasa* (*estimated)", + "1992-04-17": "Good Friday", + "1992-05-01": "Labour Day", + "1992-05-17": "Vesak Day", + "1992-06-11": "Hari Raya Haji* (*estimated)", + "1992-08-09": "National Day", + "1992-10-24": "Deepavali", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-01-23": "Chinese New Year", + "1993-01-24": "Chinese New Year", + "1993-03-24": "Hari Raya Puasa* (*estimated)", + "1993-04-09": "Good Friday", + "1993-05-01": "Labour Day", + "1993-05-31": "Hari Raya Haji* (*estimated)", + "1993-06-04": "Vesak Day", + "1993-08-09": "National Day", + "1993-11-12": "Deepavali", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-02-10": "Chinese New Year", + "1994-02-11": "Chinese New Year", + "1994-03-13": "Hari Raya Puasa* (*estimated)", + "1994-04-01": "Good Friday", + "1994-05-01": "Labour Day", + "1994-05-20": "Hari Raya Haji* (*estimated)", + "1994-05-25": "Vesak Day", + "1994-08-09": "National Day", + "1994-11-01": "Deepavali", + "1994-12-25": "Christmas Day", + "1995-01-01": "New Year's Day", + "1995-01-31": "Chinese New Year", + "1995-02-01": "Chinese New Year", + "1995-03-02": "Hari Raya Puasa* (*estimated)", + "1995-04-14": "Good Friday", + "1995-05-01": "Labour Day", + "1995-05-09": "Hari Raya Haji* (*estimated)", + "1995-05-14": "Vesak Day", + "1995-08-09": "National Day", + "1995-11-20": "Deepavali", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-02-19": "Chinese New Year; Hari Raya Puasa* (*estimated)", + "1996-02-20": "Chinese New Year", + "1996-04-05": "Good Friday", + "1996-04-27": "Hari Raya Haji* (*estimated)", + "1996-05-01": "Labour Day", + "1996-05-31": "Vesak Day", + "1996-08-09": "National Day", + "1996-11-09": "Deepavali", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-02-07": "Chinese New Year", + "1997-02-08": "Chinese New Year; Hari Raya Puasa* (*estimated)", + "1997-03-28": "Good Friday", + "1997-04-17": "Hari Raya Haji* (*estimated)", + "1997-05-01": "Labour Day", + "1997-05-21": "Vesak Day", + "1997-08-09": "National Day", + "1997-10-29": "Deepavali", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-01-28": "Chinese New Year", + "1998-01-29": "Chinese New Year; Hari Raya Puasa* (*estimated)", + "1998-04-07": "Hari Raya Haji* (*estimated)", + "1998-04-10": "Good Friday", + "1998-05-01": "Labour Day", + "1998-05-10": "Vesak Day", + "1998-05-11": "Vesak Day (Observed)", + "1998-08-09": "National Day", + "1998-08-10": "National Day (Observed)", + "1998-11-17": "Deepavali", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-01-18": "Hari Raya Puasa* (*estimated)", + "1999-02-16": "Chinese New Year", + "1999-02-17": "Chinese New Year", + "1999-03-27": "Hari Raya Haji* (*estimated)", + "1999-04-02": "Good Friday", + "1999-05-01": "Labour Day", + "1999-05-29": "Vesak Day", + "1999-08-09": "National Day", + "1999-11-06": "Deepavali", + "1999-12-25": "Christmas Day", + "2000-01-01": "New Year's Day", + "2000-01-08": "Hari Raya Puasa* (*estimated)", + "2000-02-05": "Chinese New Year", + "2000-02-06": "Chinese New Year", + "2000-02-07": "Chinese New Year (Observed)", + "2000-03-16": "Hari Raya Haji* (*estimated)", + "2000-04-21": "Good Friday", + "2000-05-01": "Labour Day", + "2000-05-18": "Vesak Day", + "2000-08-09": "National Day", + "2000-10-25": "Deepavali", + "2000-12-25": "Christmas Day", + "2000-12-27": "Hari Raya Puasa* (*estimated)", + "2001-01-01": "New Year's Day", + "2001-01-24": "Chinese New Year", + "2001-01-25": "Chinese New Year", + "2001-03-06": "Hari Raya Haji", + "2001-04-13": "Good Friday", + "2001-05-01": "Labour Day", + "2001-05-07": "Vesak Day", + "2001-08-09": "National Day", + "2001-11-03": "Polling Day", + "2001-11-14": "Deepavali", + "2001-12-16": "Hari Raya Puasa", + "2001-12-17": "Hari Raya Puasa (Observed)", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-02-12": "Chinese New Year", + "2002-02-13": "Chinese New Year", + "2002-02-23": "Hari Raya Haji", + "2002-03-29": "Good Friday", + "2002-05-01": "Labour Day", + "2002-05-26": "Vesak Day", + "2002-05-27": "Vesak Day (Observed)", + "2002-08-09": "National Day", + "2002-11-03": "Deepavali", + "2002-11-04": "Deepavali (Observed)", + "2002-12-06": "Hari Raya Puasa", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-02-01": "Chinese New Year", + "2003-02-02": "Chinese New Year", + "2003-02-03": "Chinese New Year (Observed)", + "2003-02-12": "Hari Raya Haji", + "2003-04-18": "Good Friday", + "2003-05-01": "Labour Day", + "2003-05-15": "Vesak Day", + "2003-08-09": "National Day", + "2003-10-23": "Deepavali", + "2003-11-25": "Hari Raya Puasa", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-01-22": "Chinese New Year", + "2004-01-23": "Chinese New Year", + "2004-02-01": "Hari Raya Haji", + "2004-02-02": "Hari Raya Haji (Observed)", + "2004-04-09": "Good Friday", + "2004-05-01": "Labour Day", + "2004-06-02": "Vesak Day", + "2004-08-09": "National Day", + "2004-11-11": "Deepavali", + "2004-11-14": "Hari Raya Puasa", + "2004-11-15": "Hari Raya Puasa (Observed)", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-01-21": "Hari Raya Haji", + "2005-02-09": "Chinese New Year", + "2005-02-10": "Chinese New Year", + "2005-03-25": "Good Friday", + "2005-05-01": "Labour Day", + "2005-05-02": "Labour Day (Observed)", + "2005-05-22": "Vesak Day", + "2005-05-23": "Vesak Day (Observed)", + "2005-08-09": "National Day", + "2005-11-01": "Deepavali", + "2005-11-03": "Hari Raya Puasa", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day (Observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (Observed)", + "2006-01-10": "Hari Raya Haji", + "2006-01-30": "Chinese New Year", + "2006-01-31": "Chinese New Year", + "2006-04-14": "Good Friday", + "2006-05-01": "Labour Day", + "2006-05-06": "Polling Day", + "2006-05-12": "Vesak Day", + "2006-08-09": "National Day", + "2006-10-21": "Deepavali", + "2006-10-24": "Hari Raya Puasa", + "2006-12-25": "Christmas Day", + "2006-12-31": "Hari Raya Haji", + "2007-01-01": "New Year's Day", + "2007-01-02": "Hari Raya Haji (Observed)", + "2007-02-19": "Chinese New Year", + "2007-02-20": "Chinese New Year", + "2007-04-06": "Good Friday", + "2007-05-01": "Labour Day", + "2007-05-31": "Vesak Day", + "2007-08-09": "National Day", + "2007-10-13": "Hari Raya Puasa", + "2007-11-08": "Deepavali", + "2007-12-20": "Hari Raya Haji", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-02-07": "Chinese New Year", + "2008-02-08": "Chinese New Year", + "2008-03-21": "Good Friday", + "2008-05-01": "Labour Day", + "2008-05-19": "Vesak Day", + "2008-08-09": "National Day", + "2008-10-01": "Hari Raya Puasa", + "2008-10-27": "Deepavali", + "2008-12-08": "Hari Raya Haji", + "2008-12-25": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-01-26": "Chinese New Year", + "2009-01-27": "Chinese New Year", + "2009-04-10": "Good Friday", + "2009-05-01": "Labour Day", + "2009-05-09": "Vesak Day", + "2009-08-09": "National Day", + "2009-08-10": "National Day (Observed)", + "2009-09-20": "Hari Raya Puasa", + "2009-09-21": "Hari Raya Puasa (Observed)", + "2009-11-15": "Deepavali", + "2009-11-16": "Deepavali (Observed)", + "2009-11-27": "Hari Raya Haji", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-02-14": "Chinese New Year", + "2010-02-15": "Chinese New Year", + "2010-02-16": "Chinese New Year (Observed)", + "2010-04-02": "Good Friday", + "2010-05-01": "Labour Day", + "2010-05-28": "Vesak Day", + "2010-08-09": "National Day", + "2010-09-10": "Hari Raya Puasa", + "2010-11-05": "Deepavali", + "2010-11-17": "Hari Raya Haji", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-02-03": "Chinese New Year", + "2011-02-04": "Chinese New Year", + "2011-04-22": "Good Friday", + "2011-05-01": "Labour Day", + "2011-05-02": "Labour Day (Observed)", + "2011-05-07": "Polling Day", + "2011-05-17": "Vesak Day", + "2011-08-09": "National Day", + "2011-08-30": "Hari Raya Puasa", + "2011-10-26": "Deepavali", + "2011-11-06": "Hari Raya Haji", + "2011-11-07": "Hari Raya Haji (Observed)", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day (Observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (Observed)", + "2012-01-23": "Chinese New Year", + "2012-01-24": "Chinese New Year", + "2012-04-06": "Good Friday", + "2012-05-01": "Labour Day", + "2012-05-05": "Vesak Day", + "2012-08-09": "National Day", + "2012-08-19": "Hari Raya Puasa", + "2012-08-20": "Hari Raya Puasa (Observed)", + "2012-10-26": "Hari Raya Haji", + "2012-11-13": "Deepavali", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-02-10": "Chinese New Year", + "2013-02-11": "Chinese New Year", + "2013-02-12": "Chinese New Year (Observed)", + "2013-03-29": "Good Friday", + "2013-05-01": "Labour Day", + "2013-05-24": "Vesak Day", + "2013-08-08": "Hari Raya Puasa", + "2013-08-09": "National Day", + "2013-10-15": "Hari Raya Haji", + "2013-11-02": "Deepavali", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-31": "Chinese New Year", + "2014-02-01": "Chinese New Year", + "2014-04-18": "Good Friday", + "2014-05-01": "Labour Day", + "2014-05-13": "Vesak Day", + "2014-07-28": "Hari Raya Puasa", + "2014-08-09": "National Day", + "2014-10-05": "Hari Raya Haji", + "2014-10-06": "Hari Raya Haji (Observed)", + "2014-10-22": "Deepavali", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-02-19": "Chinese New Year", + "2015-02-20": "Chinese New Year", + "2015-04-03": "Good Friday", + "2015-05-01": "Labour Day", + "2015-06-01": "Vesak Day", + "2015-07-17": "Hari Raya Puasa", + "2015-08-07": "SG50 Public Holiday", + "2015-08-09": "National Day", + "2015-08-10": "National Day (Observed)", + "2015-09-11": "Polling Day", + "2015-09-24": "Hari Raya Haji", + "2015-11-10": "Deepavali", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-02-08": "Chinese New Year", + "2016-02-09": "Chinese New Year", + "2016-03-25": "Good Friday", + "2016-05-01": "Labour Day", + "2016-05-02": "Labour Day (Observed)", + "2016-05-21": "Vesak Day", + "2016-07-06": "Hari Raya Puasa", + "2016-08-09": "National Day", + "2016-09-12": "Hari Raya Haji", + "2016-10-29": "Deepavali", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day (Observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (Observed)", + "2017-01-28": "Chinese New Year", + "2017-01-29": "Chinese New Year", + "2017-01-30": "Chinese New Year (Observed)", + "2017-04-14": "Good Friday", + "2017-05-01": "Labour Day", + "2017-05-10": "Vesak Day", + "2017-06-25": "Hari Raya Puasa", + "2017-06-26": "Hari Raya Puasa (Observed)", + "2017-08-09": "National Day", + "2017-09-01": "Hari Raya Haji", + "2017-10-18": "Deepavali", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-02-16": "Chinese New Year", + "2018-02-17": "Chinese New Year", + "2018-03-30": "Good Friday", + "2018-05-01": "Labour Day", + "2018-05-29": "Vesak Day", + "2018-06-15": "Hari Raya Puasa", + "2018-08-09": "National Day", + "2018-08-22": "Hari Raya Haji", + "2018-11-06": "Deepavali", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-02-05": "Chinese New Year", + "2019-02-06": "Chinese New Year", + "2019-04-19": "Good Friday", + "2019-05-01": "Labour Day", + "2019-05-19": "Vesak Day", + "2019-05-20": "Vesak Day (Observed)", + "2019-06-05": "Hari Raya Puasa", + "2019-08-09": "National Day", + "2019-08-11": "Hari Raya Haji", + "2019-08-12": "Hari Raya Haji (Observed)", + "2019-10-27": "Deepavali", + "2019-10-28": "Deepavali (Observed)", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-01-25": "Chinese New Year", + "2020-01-26": "Chinese New Year", + "2020-01-27": "Chinese New Year (Observed)", + "2020-04-10": "Good Friday", + "2020-05-01": "Labour Day", + "2020-05-07": "Vesak Day", + "2020-05-24": "Hari Raya Puasa", + "2020-05-25": "Hari Raya Puasa (Observed)", + "2020-07-10": "Polling Day", + "2020-07-31": "Hari Raya Haji", + "2020-08-09": "National Day", + "2020-08-10": "National Day (Observed)", + "2020-11-14": "Deepavali", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-02-12": "Chinese New Year", + "2021-02-13": "Chinese New Year", + "2021-04-02": "Good Friday", + "2021-05-01": "Labour Day", + "2021-05-13": "Hari Raya Puasa", + "2021-05-26": "Vesak Day", + "2021-07-20": "Hari Raya Haji", + "2021-08-09": "National Day", + "2021-11-04": "Deepavali", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-02-01": "Chinese New Year", + "2022-02-02": "Chinese New Year", + "2022-04-15": "Good Friday", + "2022-05-01": "Labour Day", + "2022-05-02": "Labour Day (Observed)", + "2022-05-03": "Hari Raya Puasa", + "2022-05-15": "Vesak Day", + "2022-05-16": "Vesak Day (Observed)", + "2022-07-10": "Hari Raya Haji", + "2022-07-11": "Hari Raya Haji (Observed)", + "2022-08-09": "National Day", + "2022-10-24": "Deepavali", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day (Observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (Observed)", + "2023-01-22": "Chinese New Year", + "2023-01-23": "Chinese New Year", + "2023-01-24": "Chinese New Year (Observed)", + "2023-04-07": "Good Friday", + "2023-04-22": "Hari Raya Puasa", + "2023-05-01": "Labour Day", + "2023-06-02": "Vesak Day", + "2023-06-29": "Hari Raya Haji", + "2023-08-09": "National Day", + "2023-09-01": "Polling Day", + "2023-11-12": "Deepavali", + "2023-11-13": "Deepavali (Observed)", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year", + "2024-02-12": "Chinese New Year (Observed)", + "2024-03-29": "Good Friday", + "2024-04-10": "Hari Raya Puasa* (*estimated)", + "2024-05-01": "Labour Day", + "2024-05-22": "Vesak Day", + "2024-06-16": "Hari Raya Haji* (*estimated)", + "2024-06-17": "Hari Raya Haji* (*estimated) (Observed)", + "2024-08-09": "National Day", + "2024-10-30": "Deepavali", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-01-29": "Chinese New Year", + "2025-01-30": "Chinese New Year", + "2025-03-30": "Hari Raya Puasa* (*estimated)", + "2025-03-31": "Hari Raya Puasa* (*estimated) (Observed)", + "2025-04-18": "Good Friday", + "2025-05-01": "Labour Day", + "2025-05-11": "Vesak Day", + "2025-05-12": "Vesak Day (Observed)", + "2025-06-06": "Hari Raya Haji* (*estimated)", + "2025-08-09": "National Day", + "2025-11-18": "Deepavali", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-02-17": "Chinese New Year", + "2026-02-18": "Chinese New Year", + "2026-03-20": "Hari Raya Puasa* (*estimated)", + "2026-04-03": "Good Friday", + "2026-05-01": "Labour Day", + "2026-05-27": "Hari Raya Haji* (*estimated)", + "2026-05-31": "Vesak Day", + "2026-06-01": "Vesak Day (Observed)", + "2026-08-09": "National Day", + "2026-08-10": "National Day (Observed)", + "2026-11-07": "Deepavali", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-02-06": "Chinese New Year", + "2027-02-07": "Chinese New Year", + "2027-02-08": "Chinese New Year (Observed)", + "2027-03-09": "Hari Raya Puasa* (*estimated)", + "2027-03-26": "Good Friday", + "2027-05-01": "Labour Day", + "2027-05-16": "Hari Raya Haji* (*estimated)", + "2027-05-17": "Hari Raya Haji* (*estimated) (Observed)", + "2027-05-20": "Vesak Day", + "2027-08-09": "National Day", + "2027-10-27": "Deepavali", + "2027-12-25": "Christmas Day", + "2028-01-01": "New Year's Day", + "2028-01-26": "Chinese New Year", + "2028-01-27": "Chinese New Year", + "2028-02-26": "Hari Raya Puasa* (*estimated)", + "2028-04-14": "Good Friday", + "2028-05-01": "Labour Day", + "2028-05-05": "Hari Raya Haji* (*estimated)", + "2028-05-09": "Vesak Day", + "2028-08-09": "National Day", + "2028-11-14": "Deepavali", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-02-13": "Chinese New Year", + "2029-02-14": "Chinese New Year; Hari Raya Puasa* (*estimated)", + "2029-03-30": "Good Friday", + "2029-04-24": "Hari Raya Haji* (*estimated)", + "2029-05-01": "Labour Day", + "2029-05-27": "Vesak Day", + "2029-05-28": "Vesak Day (Observed)", + "2029-08-09": "National Day", + "2029-11-04": "Deepavali", + "2029-11-05": "Deepavali (Observed)", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-02-03": "Chinese New Year", + "2030-02-04": "Chinese New Year; Hari Raya Puasa* (*estimated)", + "2030-02-05": "Chinese New Year (Observed)", + "2030-04-13": "Hari Raya Haji* (*estimated)", + "2030-04-19": "Good Friday", + "2030-05-01": "Labour Day", + "2030-05-16": "Vesak Day", + "2030-08-09": "National Day", + "2030-10-25": "Deepavali", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-01-23": "Chinese New Year", + "2031-01-24": "Chinese New Year; Hari Raya Puasa* (*estimated)", + "2031-04-02": "Hari Raya Haji* (*estimated)", + "2031-04-11": "Good Friday", + "2031-05-01": "Labour Day", + "2031-06-04": "Vesak Day", + "2031-08-09": "National Day", + "2031-11-13": "Deepavali", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-01-14": "Hari Raya Puasa* (*estimated)", + "2032-02-11": "Chinese New Year", + "2032-02-12": "Chinese New Year", + "2032-03-22": "Hari Raya Haji* (*estimated)", + "2032-03-26": "Good Friday", + "2032-05-01": "Labour Day", + "2032-05-23": "Vesak Day", + "2032-05-24": "Vesak Day (Observed)", + "2032-08-09": "National Day", + "2032-11-01": "Deepavali", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "Hari Raya Puasa* (*estimated)", + "2033-01-03": "Hari Raya Puasa* (*estimated) (Observed)", + "2033-01-31": "Chinese New Year", + "2033-02-01": "Chinese New Year", + "2033-03-11": "Hari Raya Haji* (*estimated)", + "2033-04-15": "Good Friday", + "2033-05-01": "Labour Day", + "2033-05-02": "Labour Day (Observed)", + "2033-05-13": "Vesak Day", + "2033-08-09": "National Day", + "2033-10-21": "Deepavali", + "2033-12-23": "Hari Raya Puasa* (*estimated)", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day (Observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-02-19": "Chinese New Year", + "2034-02-20": "Chinese New Year", + "2034-02-21": "Chinese New Year (Observed)", + "2034-03-01": "Hari Raya Haji* (*estimated)", + "2034-04-07": "Good Friday", + "2034-05-01": "Labour Day", + "2034-06-01": "Vesak Day", + "2034-08-09": "National Day", + "2034-11-09": "Deepavali", + "2034-12-12": "Hari Raya Puasa* (*estimated)", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-02-08": "Chinese New Year", + "2035-02-09": "Chinese New Year", + "2035-02-18": "Hari Raya Haji* (*estimated)", + "2035-02-19": "Hari Raya Haji* (*estimated) (Observed)", + "2035-03-23": "Good Friday", + "2035-05-01": "Labour Day", + "2035-05-22": "Vesak Day", + "2035-08-09": "National Day", + "2035-10-29": "Deepavali", + "2035-12-01": "Hari Raya Puasa* (*estimated)", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-01-28": "Chinese New Year", + "2036-01-29": "Chinese New Year", + "2036-02-07": "Hari Raya Haji* (*estimated)", + "2036-04-11": "Good Friday", + "2036-05-01": "Labour Day", + "2036-05-10": "Vesak Day", + "2036-08-09": "National Day", + "2036-11-16": "Deepavali", + "2036-11-17": "Deepavali (Observed)", + "2036-11-19": "Hari Raya Puasa* (*estimated)", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-26": "Hari Raya Haji* (*estimated)", + "2037-02-15": "Chinese New Year", + "2037-02-16": "Chinese New Year", + "2037-02-17": "Chinese New Year (Observed)", + "2037-04-03": "Good Friday", + "2037-05-01": "Labour Day", + "2037-05-29": "Vesak Day", + "2037-08-09": "National Day", + "2037-08-10": "National Day (Observed)", + "2037-11-05": "Deepavali", + "2037-11-08": "Hari Raya Puasa* (*estimated)", + "2037-11-09": "Hari Raya Puasa* (*estimated) (Observed)", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-01-16": "Hari Raya Haji* (*estimated)", + "2038-02-04": "Chinese New Year", + "2038-02-05": "Chinese New Year", + "2038-04-23": "Good Friday", + "2038-05-01": "Labour Day", + "2038-05-18": "Vesak Day", + "2038-08-09": "National Day", + "2038-10-26": "Deepavali", + "2038-10-29": "Hari Raya Puasa* (*estimated)", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-01-05": "Hari Raya Haji* (*estimated)", + "2039-01-24": "Chinese New Year", + "2039-01-25": "Chinese New Year", + "2039-04-08": "Good Friday", + "2039-05-01": "Labour Day", + "2039-05-02": "Labour Day (Observed)", + "2039-05-07": "Vesak Day", + "2039-08-09": "National Day", + "2039-10-19": "Hari Raya Puasa* (*estimated)", + "2039-11-14": "Deepavali", + "2039-12-25": "Christmas Day", + "2039-12-26": "Hari Raya Haji* (*estimated)", + "2039-12-27": "Christmas Day (Observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (Observed)", + "2040-02-12": "Chinese New Year", + "2040-02-13": "Chinese New Year", + "2040-02-14": "Chinese New Year (Observed)", + "2040-03-30": "Good Friday", + "2040-05-01": "Labour Day", + "2040-05-25": "Vesak Day", + "2040-08-09": "National Day", + "2040-10-07": "Hari Raya Puasa* (*estimated)", + "2040-10-08": "Hari Raya Puasa* (*estimated) (Observed)", + "2040-11-03": "Deepavali", + "2040-12-14": "Hari Raya Haji* (*estimated)", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-02-01": "Chinese New Year", + "2041-02-02": "Chinese New Year", + "2041-04-19": "Good Friday", + "2041-05-01": "Labour Day", + "2041-05-14": "Vesak Day", + "2041-08-09": "National Day", + "2041-09-26": "Hari Raya Puasa* (*estimated)", + "2041-10-23": "Deepavali", + "2041-12-04": "Hari Raya Haji* (*estimated)", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-01-22": "Chinese New Year", + "2042-01-23": "Chinese New Year", + "2042-04-04": "Good Friday", + "2042-05-01": "Labour Day", + "2042-06-02": "Vesak Day", + "2042-08-09": "National Day", + "2042-09-15": "Hari Raya Puasa* (*estimated)", + "2042-11-11": "Deepavali", + "2042-11-23": "Hari Raya Haji* (*estimated)", + "2042-11-24": "Hari Raya Haji* (*estimated) (Observed)", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-02-10": "Chinese New Year", + "2043-02-11": "Chinese New Year", + "2043-03-27": "Good Friday", + "2043-05-01": "Labour Day", + "2043-05-23": "Vesak Day", + "2043-08-09": "National Day", + "2043-08-10": "National Day (Observed)", + "2043-09-04": "Hari Raya Puasa* (*estimated)", + "2043-10-31": "Deepavali", + "2043-11-12": "Hari Raya Haji* (*estimated)", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-01-30": "Chinese New Year", + "2044-01-31": "Chinese New Year", + "2044-02-01": "Chinese New Year (Observed)", + "2044-04-15": "Good Friday", + "2044-05-01": "Labour Day", + "2044-05-02": "Labour Day (Observed)", + "2044-05-12": "Vesak Day", + "2044-08-09": "National Day", + "2044-08-24": "Hari Raya Puasa* (*estimated)", + "2044-10-31": "Hari Raya Haji* (*estimated)", + "2044-11-17": "Deepavali", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day (Observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (Observed)", + "2045-02-17": "Chinese New Year", + "2045-02-18": "Chinese New Year", + "2045-04-07": "Good Friday", + "2045-05-01": "Labour Day", + "2045-05-31": "Vesak Day", + "2045-08-09": "National Day", + "2045-08-14": "Hari Raya Puasa* (*estimated)", + "2045-10-21": "Hari Raya Haji* (*estimated)", + "2045-11-07": "Deepavali", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-02-06": "Chinese New Year", + "2046-02-07": "Chinese New Year", + "2046-03-23": "Good Friday", + "2046-05-01": "Labour Day", + "2046-05-20": "Vesak Day", + "2046-05-21": "Vesak Day (Observed)", + "2046-08-03": "Hari Raya Puasa* (*estimated)", + "2046-08-09": "National Day", + "2046-10-10": "Hari Raya Haji* (*estimated)", + "2046-10-27": "Deepavali", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-26": "Chinese New Year", + "2047-01-27": "Chinese New Year", + "2047-01-28": "Chinese New Year (Observed)", + "2047-04-12": "Good Friday", + "2047-05-01": "Labour Day", + "2047-05-09": "Vesak Day", + "2047-07-24": "Hari Raya Puasa* (*estimated)", + "2047-08-09": "National Day", + "2047-09-30": "Hari Raya Haji* (*estimated)", + "2047-11-15": "Deepavali", + "2047-12-25": "Christmas Day", + "2048-01-01": "New Year's Day", + "2048-02-14": "Chinese New Year", + "2048-02-15": "Chinese New Year", + "2048-04-03": "Good Friday", + "2048-05-01": "Labour Day", + "2048-05-27": "Vesak Day", + "2048-07-12": "Hari Raya Puasa* (*estimated)", + "2048-07-13": "Hari Raya Puasa* (*estimated) (Observed)", + "2048-08-09": "National Day", + "2048-08-10": "National Day (Observed)", + "2048-09-19": "Hari Raya Haji* (*estimated)", + "2048-11-04": "Deepavali", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-02-02": "Chinese New Year", + "2049-02-03": "Chinese New Year", + "2049-04-16": "Good Friday", + "2049-05-01": "Labour Day", + "2049-05-16": "Vesak Day", + "2049-05-17": "Vesak Day (Observed)", + "2049-07-01": "Hari Raya Puasa* (*estimated)", + "2049-08-09": "National Day", + "2049-09-08": "Hari Raya Haji* (*estimated)", + "2049-10-25": "Deepavali", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-01-23": "Chinese New Year", + "2050-01-24": "Chinese New Year", + "2050-01-25": "Chinese New Year (Observed)", + "2050-04-08": "Good Friday", + "2050-05-01": "Labour Day", + "2050-05-02": "Labour Day (Observed)", + "2050-06-04": "Vesak Day", + "2050-06-20": "Hari Raya Puasa* (*estimated)", + "2050-08-09": "National Day", + "2050-08-28": "Hari Raya Haji* (*estimated)", + "2050-08-29": "Hari Raya Haji* (*estimated) (Observed)", + "2050-11-12": "Deepavali", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day (Observed)" +} diff --git a/snapshots/countries/SI.json b/snapshots/countries/SI.json new file mode 100644 index 000000000..c1b944797 --- /dev/null +++ b/snapshots/countries/SI.json @@ -0,0 +1,778 @@ +{ + "1991-01-01": "New Year's Day", + "1991-01-02": "New Year's Day", + "1991-02-08": "Preseren's Day", + "1991-04-01": "Easter Monday", + "1991-04-27": "Day of Uprising Against Occupation", + "1991-05-01": "Labor Day", + "1991-05-02": "Labor Day", + "1991-06-25": "Statehood Day", + "1991-08-15": "Assumption Day", + "1991-11-01": "Remembrance Day", + "1991-12-25": "Christmas Day", + "1991-12-26": "Independence and Unity Day", + "1992-01-01": "New Year's Day", + "1992-01-02": "New Year's Day", + "1992-02-08": "Preseren's Day", + "1992-04-20": "Easter Monday", + "1992-04-27": "Day of Uprising Against Occupation", + "1992-05-01": "Labor Day", + "1992-05-02": "Labor Day", + "1992-06-25": "Statehood Day", + "1992-08-15": "Assumption Day", + "1992-10-31": "Reformation Day", + "1992-11-01": "Remembrance Day", + "1992-12-25": "Christmas Day", + "1992-12-26": "Independence and Unity Day", + "1993-01-01": "New Year's Day", + "1993-01-02": "New Year's Day", + "1993-02-08": "Preseren's Day", + "1993-04-12": "Easter Monday", + "1993-04-27": "Day of Uprising Against Occupation", + "1993-05-01": "Labor Day", + "1993-05-02": "Labor Day", + "1993-06-25": "Statehood Day", + "1993-08-15": "Assumption Day", + "1993-10-31": "Reformation Day", + "1993-11-01": "Remembrance Day", + "1993-12-25": "Christmas Day", + "1993-12-26": "Independence and Unity Day", + "1994-01-01": "New Year's Day", + "1994-01-02": "New Year's Day", + "1994-02-08": "Preseren's Day", + "1994-04-04": "Easter Monday", + "1994-04-27": "Day of Uprising Against Occupation", + "1994-05-01": "Labor Day", + "1994-05-02": "Labor Day", + "1994-06-25": "Statehood Day", + "1994-08-15": "Assumption Day", + "1994-10-31": "Reformation Day", + "1994-11-01": "Remembrance Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Independence and Unity Day", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day", + "1995-02-08": "Preseren's Day", + "1995-04-17": "Easter Monday", + "1995-04-27": "Day of Uprising Against Occupation", + "1995-05-01": "Labor Day", + "1995-05-02": "Labor Day", + "1995-06-25": "Statehood Day", + "1995-08-15": "Assumption Day", + "1995-10-31": "Reformation Day", + "1995-11-01": "Remembrance Day", + "1995-12-25": "Christmas Day", + "1995-12-26": "Independence and Unity Day", + "1996-01-01": "New Year's Day", + "1996-01-02": "New Year's Day", + "1996-02-08": "Preseren's Day", + "1996-04-08": "Easter Monday", + "1996-04-27": "Day of Uprising Against Occupation", + "1996-05-01": "Labor Day", + "1996-05-02": "Labor Day", + "1996-06-25": "Statehood Day", + "1996-08-15": "Assumption Day", + "1996-10-31": "Reformation Day", + "1996-11-01": "Remembrance Day", + "1996-12-25": "Christmas Day", + "1996-12-26": "Independence and Unity Day", + "1997-01-01": "New Year's Day", + "1997-01-02": "New Year's Day", + "1997-02-08": "Preseren's Day", + "1997-03-31": "Easter Monday", + "1997-04-27": "Day of Uprising Against Occupation", + "1997-05-01": "Labor Day", + "1997-05-02": "Labor Day", + "1997-06-25": "Statehood Day", + "1997-08-15": "Assumption Day", + "1997-10-31": "Reformation Day", + "1997-11-01": "Remembrance Day", + "1997-12-25": "Christmas Day", + "1997-12-26": "Independence and Unity Day", + "1998-01-01": "New Year's Day", + "1998-01-02": "New Year's Day", + "1998-02-08": "Preseren's Day", + "1998-04-13": "Easter Monday", + "1998-04-27": "Day of Uprising Against Occupation", + "1998-05-01": "Labor Day", + "1998-05-02": "Labor Day", + "1998-06-25": "Statehood Day", + "1998-08-15": "Assumption Day", + "1998-10-31": "Reformation Day", + "1998-11-01": "Remembrance Day", + "1998-12-25": "Christmas Day", + "1998-12-26": "Independence and Unity Day", + "1999-01-01": "New Year's Day", + "1999-01-02": "New Year's Day", + "1999-02-08": "Preseren's Day", + "1999-04-05": "Easter Monday", + "1999-04-27": "Day of Uprising Against Occupation", + "1999-05-01": "Labor Day", + "1999-05-02": "Labor Day", + "1999-06-25": "Statehood Day", + "1999-08-15": "Assumption Day", + "1999-10-31": "Reformation Day", + "1999-11-01": "Remembrance Day", + "1999-12-25": "Christmas Day", + "1999-12-26": "Independence and Unity Day", + "2000-01-01": "New Year's Day", + "2000-01-02": "New Year's Day", + "2000-02-08": "Preseren's Day", + "2000-04-24": "Easter Monday", + "2000-04-27": "Day of Uprising Against Occupation", + "2000-05-01": "Labor Day", + "2000-05-02": "Labor Day", + "2000-06-25": "Statehood Day", + "2000-08-15": "Assumption Day", + "2000-10-31": "Reformation Day", + "2000-11-01": "Remembrance Day", + "2000-12-25": "Christmas Day", + "2000-12-26": "Independence and Unity Day", + "2001-01-01": "New Year's Day", + "2001-01-02": "New Year's Day", + "2001-02-08": "Preseren's Day", + "2001-04-16": "Easter Monday", + "2001-04-27": "Day of Uprising Against Occupation", + "2001-05-01": "Labor Day", + "2001-05-02": "Labor Day", + "2001-06-25": "Statehood Day", + "2001-08-15": "Assumption Day", + "2001-10-31": "Reformation Day", + "2001-11-01": "Remembrance Day", + "2001-12-25": "Christmas Day", + "2001-12-26": "Independence and Unity Day", + "2002-01-01": "New Year's Day", + "2002-01-02": "New Year's Day", + "2002-02-08": "Preseren's Day", + "2002-04-01": "Easter Monday", + "2002-04-27": "Day of Uprising Against Occupation", + "2002-05-01": "Labor Day", + "2002-05-02": "Labor Day", + "2002-06-25": "Statehood Day", + "2002-08-15": "Assumption Day", + "2002-10-31": "Reformation Day", + "2002-11-01": "Remembrance Day", + "2002-12-25": "Christmas Day", + "2002-12-26": "Independence and Unity Day", + "2003-01-01": "New Year's Day", + "2003-01-02": "New Year's Day", + "2003-02-08": "Preseren's Day", + "2003-04-21": "Easter Monday", + "2003-04-27": "Day of Uprising Against Occupation", + "2003-05-01": "Labor Day", + "2003-05-02": "Labor Day", + "2003-06-25": "Statehood Day", + "2003-08-15": "Assumption Day", + "2003-10-31": "Reformation Day", + "2003-11-01": "Remembrance Day", + "2003-12-25": "Christmas Day", + "2003-12-26": "Independence and Unity Day", + "2004-01-01": "New Year's Day", + "2004-01-02": "New Year's Day", + "2004-02-08": "Preseren's Day", + "2004-04-12": "Easter Monday", + "2004-04-27": "Day of Uprising Against Occupation", + "2004-05-01": "Labor Day", + "2004-05-02": "Labor Day", + "2004-06-25": "Statehood Day", + "2004-08-15": "Assumption Day", + "2004-10-31": "Reformation Day", + "2004-11-01": "Remembrance Day", + "2004-12-25": "Christmas Day", + "2004-12-26": "Independence and Unity Day", + "2005-01-01": "New Year's Day", + "2005-01-02": "New Year's Day", + "2005-02-08": "Preseren's Day", + "2005-03-28": "Easter Monday", + "2005-04-27": "Day of Uprising Against Occupation", + "2005-05-01": "Labor Day", + "2005-05-02": "Labor Day", + "2005-06-25": "Statehood Day", + "2005-08-15": "Assumption Day", + "2005-10-31": "Reformation Day", + "2005-11-01": "Remembrance Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "Independence and Unity Day", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day", + "2006-02-08": "Preseren's Day", + "2006-04-17": "Easter Monday", + "2006-04-27": "Day of Uprising Against Occupation", + "2006-05-01": "Labor Day", + "2006-05-02": "Labor Day", + "2006-06-25": "Statehood Day", + "2006-08-15": "Assumption Day", + "2006-10-31": "Reformation Day", + "2006-11-01": "Remembrance Day", + "2006-12-25": "Christmas Day", + "2006-12-26": "Independence and Unity Day", + "2007-01-01": "New Year's Day", + "2007-01-02": "New Year's Day", + "2007-02-08": "Preseren's Day", + "2007-04-09": "Easter Monday", + "2007-04-27": "Day of Uprising Against Occupation", + "2007-05-01": "Labor Day", + "2007-05-02": "Labor Day", + "2007-06-25": "Statehood Day", + "2007-08-15": "Assumption Day", + "2007-10-31": "Reformation Day", + "2007-11-01": "Remembrance Day", + "2007-12-25": "Christmas Day", + "2007-12-26": "Independence and Unity Day", + "2008-01-01": "New Year's Day", + "2008-01-02": "New Year's Day", + "2008-02-08": "Preseren's Day", + "2008-03-24": "Easter Monday", + "2008-04-27": "Day of Uprising Against Occupation", + "2008-05-01": "Labor Day", + "2008-05-02": "Labor Day", + "2008-06-25": "Statehood Day", + "2008-08-15": "Assumption Day", + "2008-10-31": "Reformation Day", + "2008-11-01": "Remembrance Day", + "2008-12-25": "Christmas Day", + "2008-12-26": "Independence and Unity Day", + "2009-01-01": "New Year's Day", + "2009-01-02": "New Year's Day", + "2009-02-08": "Preseren's Day", + "2009-04-13": "Easter Monday", + "2009-04-27": "Day of Uprising Against Occupation", + "2009-05-01": "Labor Day", + "2009-05-02": "Labor Day", + "2009-06-25": "Statehood Day", + "2009-08-15": "Assumption Day", + "2009-10-31": "Reformation Day", + "2009-11-01": "Remembrance Day", + "2009-12-25": "Christmas Day", + "2009-12-26": "Independence and Unity Day", + "2010-01-01": "New Year's Day", + "2010-01-02": "New Year's Day", + "2010-02-08": "Preseren's Day", + "2010-04-05": "Easter Monday", + "2010-04-27": "Day of Uprising Against Occupation", + "2010-05-01": "Labor Day", + "2010-05-02": "Labor Day", + "2010-06-25": "Statehood Day", + "2010-08-15": "Assumption Day", + "2010-10-31": "Reformation Day", + "2010-11-01": "Remembrance Day", + "2010-12-25": "Christmas Day", + "2010-12-26": "Independence and Unity Day", + "2011-01-01": "New Year's Day", + "2011-01-02": "New Year's Day", + "2011-02-08": "Preseren's Day", + "2011-04-25": "Easter Monday", + "2011-04-27": "Day of Uprising Against Occupation", + "2011-05-01": "Labor Day", + "2011-05-02": "Labor Day", + "2011-06-25": "Statehood Day", + "2011-08-15": "Assumption Day", + "2011-10-31": "Reformation Day", + "2011-11-01": "Remembrance Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "Independence and Unity Day", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day", + "2012-02-08": "Preseren's Day", + "2012-04-09": "Easter Monday", + "2012-04-27": "Day of Uprising Against Occupation", + "2012-05-01": "Labor Day", + "2012-05-02": "Labor Day", + "2012-06-25": "Statehood Day", + "2012-08-15": "Assumption Day", + "2012-10-31": "Reformation Day", + "2012-11-01": "Remembrance Day", + "2012-12-25": "Christmas Day", + "2012-12-26": "Independence and Unity Day", + "2013-01-01": "New Year's Day", + "2013-02-08": "Preseren's Day", + "2013-04-01": "Easter Monday", + "2013-04-27": "Day of Uprising Against Occupation", + "2013-05-01": "Labor Day", + "2013-05-02": "Labor Day", + "2013-06-25": "Statehood Day", + "2013-08-15": "Assumption Day", + "2013-10-31": "Reformation Day", + "2013-11-01": "Remembrance Day", + "2013-12-25": "Christmas Day", + "2013-12-26": "Independence and Unity Day", + "2014-01-01": "New Year's Day", + "2014-02-08": "Preseren's Day", + "2014-04-21": "Easter Monday", + "2014-04-27": "Day of Uprising Against Occupation", + "2014-05-01": "Labor Day", + "2014-05-02": "Labor Day", + "2014-06-25": "Statehood Day", + "2014-08-15": "Assumption Day", + "2014-10-31": "Reformation Day", + "2014-11-01": "Remembrance Day", + "2014-12-25": "Christmas Day", + "2014-12-26": "Independence and Unity Day", + "2015-01-01": "New Year's Day", + "2015-02-08": "Preseren's Day", + "2015-04-06": "Easter Monday", + "2015-04-27": "Day of Uprising Against Occupation", + "2015-05-01": "Labor Day", + "2015-05-02": "Labor Day", + "2015-06-25": "Statehood Day", + "2015-08-15": "Assumption Day", + "2015-10-31": "Reformation Day", + "2015-11-01": "Remembrance Day", + "2015-12-25": "Christmas Day", + "2015-12-26": "Independence and Unity Day", + "2016-01-01": "New Year's Day", + "2016-02-08": "Preseren's Day", + "2016-03-28": "Easter Monday", + "2016-04-27": "Day of Uprising Against Occupation", + "2016-05-01": "Labor Day", + "2016-05-02": "Labor Day", + "2016-06-25": "Statehood Day", + "2016-08-15": "Assumption Day", + "2016-10-31": "Reformation Day", + "2016-11-01": "Remembrance Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "Independence and Unity Day", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day", + "2017-02-08": "Preseren's Day", + "2017-04-17": "Easter Monday", + "2017-04-27": "Day of Uprising Against Occupation", + "2017-05-01": "Labor Day", + "2017-05-02": "Labor Day", + "2017-06-25": "Statehood Day", + "2017-08-15": "Assumption Day", + "2017-10-31": "Reformation Day", + "2017-11-01": "Remembrance Day", + "2017-12-25": "Christmas Day", + "2017-12-26": "Independence and Unity Day", + "2018-01-01": "New Year's Day", + "2018-01-02": "New Year's Day", + "2018-02-08": "Preseren's Day", + "2018-04-02": "Easter Monday", + "2018-04-27": "Day of Uprising Against Occupation", + "2018-05-01": "Labor Day", + "2018-05-02": "Labor Day", + "2018-06-25": "Statehood Day", + "2018-08-15": "Assumption Day", + "2018-10-31": "Reformation Day", + "2018-11-01": "Remembrance Day", + "2018-12-25": "Christmas Day", + "2018-12-26": "Independence and Unity Day", + "2019-01-01": "New Year's Day", + "2019-01-02": "New Year's Day", + "2019-02-08": "Preseren's Day", + "2019-04-22": "Easter Monday", + "2019-04-27": "Day of Uprising Against Occupation", + "2019-05-01": "Labor Day", + "2019-05-02": "Labor Day", + "2019-06-25": "Statehood Day", + "2019-08-15": "Assumption Day", + "2019-10-31": "Reformation Day", + "2019-11-01": "Remembrance Day", + "2019-12-25": "Christmas Day", + "2019-12-26": "Independence and Unity Day", + "2020-01-01": "New Year's Day", + "2020-01-02": "New Year's Day", + "2020-02-08": "Preseren's Day", + "2020-04-13": "Easter Monday", + "2020-04-27": "Day of Uprising Against Occupation", + "2020-05-01": "Labor Day", + "2020-05-02": "Labor Day", + "2020-06-25": "Statehood Day", + "2020-08-15": "Assumption Day", + "2020-10-31": "Reformation Day", + "2020-11-01": "Remembrance Day", + "2020-12-25": "Christmas Day", + "2020-12-26": "Independence and Unity Day", + "2021-01-01": "New Year's Day", + "2021-01-02": "New Year's Day", + "2021-02-08": "Preseren's Day", + "2021-04-05": "Easter Monday", + "2021-04-27": "Day of Uprising Against Occupation", + "2021-05-01": "Labor Day", + "2021-05-02": "Labor Day", + "2021-06-25": "Statehood Day", + "2021-08-15": "Assumption Day", + "2021-10-31": "Reformation Day", + "2021-11-01": "Remembrance Day", + "2021-12-25": "Christmas Day", + "2021-12-26": "Independence and Unity Day", + "2022-01-01": "New Year's Day", + "2022-01-02": "New Year's Day", + "2022-02-08": "Preseren's Day", + "2022-04-18": "Easter Monday", + "2022-04-27": "Day of Uprising Against Occupation", + "2022-05-01": "Labor Day", + "2022-05-02": "Labor Day", + "2022-06-25": "Statehood Day", + "2022-08-15": "Assumption Day", + "2022-10-31": "Reformation Day", + "2022-11-01": "Remembrance Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "Independence and Unity Day", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day", + "2023-02-08": "Preseren's Day", + "2023-04-10": "Easter Monday", + "2023-04-27": "Day of Uprising Against Occupation", + "2023-05-01": "Labor Day", + "2023-05-02": "Labor Day", + "2023-06-25": "Statehood Day", + "2023-08-14": "Solidarity Day", + "2023-08-15": "Assumption Day", + "2023-10-31": "Reformation Day", + "2023-11-01": "Remembrance Day", + "2023-12-25": "Christmas Day", + "2023-12-26": "Independence and Unity Day", + "2024-01-01": "New Year's Day", + "2024-01-02": "New Year's Day", + "2024-02-08": "Preseren's Day", + "2024-04-01": "Easter Monday", + "2024-04-27": "Day of Uprising Against Occupation", + "2024-05-01": "Labor Day", + "2024-05-02": "Labor Day", + "2024-06-25": "Statehood Day", + "2024-08-15": "Assumption Day", + "2024-10-31": "Reformation Day", + "2024-11-01": "Remembrance Day", + "2024-12-25": "Christmas Day", + "2024-12-26": "Independence and Unity Day", + "2025-01-01": "New Year's Day", + "2025-01-02": "New Year's Day", + "2025-02-08": "Preseren's Day", + "2025-04-21": "Easter Monday", + "2025-04-27": "Day of Uprising Against Occupation", + "2025-05-01": "Labor Day", + "2025-05-02": "Labor Day", + "2025-06-25": "Statehood Day", + "2025-08-15": "Assumption Day", + "2025-10-31": "Reformation Day", + "2025-11-01": "Remembrance Day", + "2025-12-25": "Christmas Day", + "2025-12-26": "Independence and Unity Day", + "2026-01-01": "New Year's Day", + "2026-01-02": "New Year's Day", + "2026-02-08": "Preseren's Day", + "2026-04-06": "Easter Monday", + "2026-04-27": "Day of Uprising Against Occupation", + "2026-05-01": "Labor Day", + "2026-05-02": "Labor Day", + "2026-06-25": "Statehood Day", + "2026-08-15": "Assumption Day", + "2026-10-31": "Reformation Day", + "2026-11-01": "Remembrance Day", + "2026-12-25": "Christmas Day", + "2026-12-26": "Independence and Unity Day", + "2027-01-01": "New Year's Day", + "2027-01-02": "New Year's Day", + "2027-02-08": "Preseren's Day", + "2027-03-29": "Easter Monday", + "2027-04-27": "Day of Uprising Against Occupation", + "2027-05-01": "Labor Day", + "2027-05-02": "Labor Day", + "2027-06-25": "Statehood Day", + "2027-08-15": "Assumption Day", + "2027-10-31": "Reformation Day", + "2027-11-01": "Remembrance Day", + "2027-12-25": "Christmas Day", + "2027-12-26": "Independence and Unity Day", + "2028-01-01": "New Year's Day", + "2028-01-02": "New Year's Day", + "2028-02-08": "Preseren's Day", + "2028-04-17": "Easter Monday", + "2028-04-27": "Day of Uprising Against Occupation", + "2028-05-01": "Labor Day", + "2028-05-02": "Labor Day", + "2028-06-25": "Statehood Day", + "2028-08-15": "Assumption Day", + "2028-10-31": "Reformation Day", + "2028-11-01": "Remembrance Day", + "2028-12-25": "Christmas Day", + "2028-12-26": "Independence and Unity Day", + "2029-01-01": "New Year's Day", + "2029-01-02": "New Year's Day", + "2029-02-08": "Preseren's Day", + "2029-04-02": "Easter Monday", + "2029-04-27": "Day of Uprising Against Occupation", + "2029-05-01": "Labor Day", + "2029-05-02": "Labor Day", + "2029-06-25": "Statehood Day", + "2029-08-15": "Assumption Day", + "2029-10-31": "Reformation Day", + "2029-11-01": "Remembrance Day", + "2029-12-25": "Christmas Day", + "2029-12-26": "Independence and Unity Day", + "2030-01-01": "New Year's Day", + "2030-01-02": "New Year's Day", + "2030-02-08": "Preseren's Day", + "2030-04-22": "Easter Monday", + "2030-04-27": "Day of Uprising Against Occupation", + "2030-05-01": "Labor Day", + "2030-05-02": "Labor Day", + "2030-06-25": "Statehood Day", + "2030-08-15": "Assumption Day", + "2030-10-31": "Reformation Day", + "2030-11-01": "Remembrance Day", + "2030-12-25": "Christmas Day", + "2030-12-26": "Independence and Unity Day", + "2031-01-01": "New Year's Day", + "2031-01-02": "New Year's Day", + "2031-02-08": "Preseren's Day", + "2031-04-14": "Easter Monday", + "2031-04-27": "Day of Uprising Against Occupation", + "2031-05-01": "Labor Day", + "2031-05-02": "Labor Day", + "2031-06-25": "Statehood Day", + "2031-08-15": "Assumption Day", + "2031-10-31": "Reformation Day", + "2031-11-01": "Remembrance Day", + "2031-12-25": "Christmas Day", + "2031-12-26": "Independence and Unity Day", + "2032-01-01": "New Year's Day", + "2032-01-02": "New Year's Day", + "2032-02-08": "Preseren's Day", + "2032-03-29": "Easter Monday", + "2032-04-27": "Day of Uprising Against Occupation", + "2032-05-01": "Labor Day", + "2032-05-02": "Labor Day", + "2032-06-25": "Statehood Day", + "2032-08-15": "Assumption Day", + "2032-10-31": "Reformation Day", + "2032-11-01": "Remembrance Day", + "2032-12-25": "Christmas Day", + "2032-12-26": "Independence and Unity Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "New Year's Day", + "2033-02-08": "Preseren's Day", + "2033-04-18": "Easter Monday", + "2033-04-27": "Day of Uprising Against Occupation", + "2033-05-01": "Labor Day", + "2033-05-02": "Labor Day", + "2033-06-25": "Statehood Day", + "2033-08-15": "Assumption Day", + "2033-10-31": "Reformation Day", + "2033-11-01": "Remembrance Day", + "2033-12-25": "Christmas Day", + "2033-12-26": "Independence and Unity Day", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day", + "2034-02-08": "Preseren's Day", + "2034-04-10": "Easter Monday", + "2034-04-27": "Day of Uprising Against Occupation", + "2034-05-01": "Labor Day", + "2034-05-02": "Labor Day", + "2034-06-25": "Statehood Day", + "2034-08-15": "Assumption Day", + "2034-10-31": "Reformation Day", + "2034-11-01": "Remembrance Day", + "2034-12-25": "Christmas Day", + "2034-12-26": "Independence and Unity Day", + "2035-01-01": "New Year's Day", + "2035-01-02": "New Year's Day", + "2035-02-08": "Preseren's Day", + "2035-03-26": "Easter Monday", + "2035-04-27": "Day of Uprising Against Occupation", + "2035-05-01": "Labor Day", + "2035-05-02": "Labor Day", + "2035-06-25": "Statehood Day", + "2035-08-15": "Assumption Day", + "2035-10-31": "Reformation Day", + "2035-11-01": "Remembrance Day", + "2035-12-25": "Christmas Day", + "2035-12-26": "Independence and Unity Day", + "2036-01-01": "New Year's Day", + "2036-01-02": "New Year's Day", + "2036-02-08": "Preseren's Day", + "2036-04-14": "Easter Monday", + "2036-04-27": "Day of Uprising Against Occupation", + "2036-05-01": "Labor Day", + "2036-05-02": "Labor Day", + "2036-06-25": "Statehood Day", + "2036-08-15": "Assumption Day", + "2036-10-31": "Reformation Day", + "2036-11-01": "Remembrance Day", + "2036-12-25": "Christmas Day", + "2036-12-26": "Independence and Unity Day", + "2037-01-01": "New Year's Day", + "2037-01-02": "New Year's Day", + "2037-02-08": "Preseren's Day", + "2037-04-06": "Easter Monday", + "2037-04-27": "Day of Uprising Against Occupation", + "2037-05-01": "Labor Day", + "2037-05-02": "Labor Day", + "2037-06-25": "Statehood Day", + "2037-08-15": "Assumption Day", + "2037-10-31": "Reformation Day", + "2037-11-01": "Remembrance Day", + "2037-12-25": "Christmas Day", + "2037-12-26": "Independence and Unity Day", + "2038-01-01": "New Year's Day", + "2038-01-02": "New Year's Day", + "2038-02-08": "Preseren's Day", + "2038-04-26": "Easter Monday", + "2038-04-27": "Day of Uprising Against Occupation", + "2038-05-01": "Labor Day", + "2038-05-02": "Labor Day", + "2038-06-25": "Statehood Day", + "2038-08-15": "Assumption Day", + "2038-10-31": "Reformation Day", + "2038-11-01": "Remembrance Day", + "2038-12-25": "Christmas Day", + "2038-12-26": "Independence and Unity Day", + "2039-01-01": "New Year's Day", + "2039-01-02": "New Year's Day", + "2039-02-08": "Preseren's Day", + "2039-04-11": "Easter Monday", + "2039-04-27": "Day of Uprising Against Occupation", + "2039-05-01": "Labor Day", + "2039-05-02": "Labor Day", + "2039-06-25": "Statehood Day", + "2039-08-15": "Assumption Day", + "2039-10-31": "Reformation Day", + "2039-11-01": "Remembrance Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Independence and Unity Day", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day", + "2040-02-08": "Preseren's Day", + "2040-04-02": "Easter Monday", + "2040-04-27": "Day of Uprising Against Occupation", + "2040-05-01": "Labor Day", + "2040-05-02": "Labor Day", + "2040-06-25": "Statehood Day", + "2040-08-15": "Assumption Day", + "2040-10-31": "Reformation Day", + "2040-11-01": "Remembrance Day", + "2040-12-25": "Christmas Day", + "2040-12-26": "Independence and Unity Day", + "2041-01-01": "New Year's Day", + "2041-01-02": "New Year's Day", + "2041-02-08": "Preseren's Day", + "2041-04-22": "Easter Monday", + "2041-04-27": "Day of Uprising Against Occupation", + "2041-05-01": "Labor Day", + "2041-05-02": "Labor Day", + "2041-06-25": "Statehood Day", + "2041-08-15": "Assumption Day", + "2041-10-31": "Reformation Day", + "2041-11-01": "Remembrance Day", + "2041-12-25": "Christmas Day", + "2041-12-26": "Independence and Unity Day", + "2042-01-01": "New Year's Day", + "2042-01-02": "New Year's Day", + "2042-02-08": "Preseren's Day", + "2042-04-07": "Easter Monday", + "2042-04-27": "Day of Uprising Against Occupation", + "2042-05-01": "Labor Day", + "2042-05-02": "Labor Day", + "2042-06-25": "Statehood Day", + "2042-08-15": "Assumption Day", + "2042-10-31": "Reformation Day", + "2042-11-01": "Remembrance Day", + "2042-12-25": "Christmas Day", + "2042-12-26": "Independence and Unity Day", + "2043-01-01": "New Year's Day", + "2043-01-02": "New Year's Day", + "2043-02-08": "Preseren's Day", + "2043-03-30": "Easter Monday", + "2043-04-27": "Day of Uprising Against Occupation", + "2043-05-01": "Labor Day", + "2043-05-02": "Labor Day", + "2043-06-25": "Statehood Day", + "2043-08-15": "Assumption Day", + "2043-10-31": "Reformation Day", + "2043-11-01": "Remembrance Day", + "2043-12-25": "Christmas Day", + "2043-12-26": "Independence and Unity Day", + "2044-01-01": "New Year's Day", + "2044-01-02": "New Year's Day", + "2044-02-08": "Preseren's Day", + "2044-04-18": "Easter Monday", + "2044-04-27": "Day of Uprising Against Occupation", + "2044-05-01": "Labor Day", + "2044-05-02": "Labor Day", + "2044-06-25": "Statehood Day", + "2044-08-15": "Assumption Day", + "2044-10-31": "Reformation Day", + "2044-11-01": "Remembrance Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "Independence and Unity Day", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day", + "2045-02-08": "Preseren's Day", + "2045-04-10": "Easter Monday", + "2045-04-27": "Day of Uprising Against Occupation", + "2045-05-01": "Labor Day", + "2045-05-02": "Labor Day", + "2045-06-25": "Statehood Day", + "2045-08-15": "Assumption Day", + "2045-10-31": "Reformation Day", + "2045-11-01": "Remembrance Day", + "2045-12-25": "Christmas Day", + "2045-12-26": "Independence and Unity Day", + "2046-01-01": "New Year's Day", + "2046-01-02": "New Year's Day", + "2046-02-08": "Preseren's Day", + "2046-03-26": "Easter Monday", + "2046-04-27": "Day of Uprising Against Occupation", + "2046-05-01": "Labor Day", + "2046-05-02": "Labor Day", + "2046-06-25": "Statehood Day", + "2046-08-15": "Assumption Day", + "2046-10-31": "Reformation Day", + "2046-11-01": "Remembrance Day", + "2046-12-25": "Christmas Day", + "2046-12-26": "Independence and Unity Day", + "2047-01-01": "New Year's Day", + "2047-01-02": "New Year's Day", + "2047-02-08": "Preseren's Day", + "2047-04-15": "Easter Monday", + "2047-04-27": "Day of Uprising Against Occupation", + "2047-05-01": "Labor Day", + "2047-05-02": "Labor Day", + "2047-06-25": "Statehood Day", + "2047-08-15": "Assumption Day", + "2047-10-31": "Reformation Day", + "2047-11-01": "Remembrance Day", + "2047-12-25": "Christmas Day", + "2047-12-26": "Independence and Unity Day", + "2048-01-01": "New Year's Day", + "2048-01-02": "New Year's Day", + "2048-02-08": "Preseren's Day", + "2048-04-06": "Easter Monday", + "2048-04-27": "Day of Uprising Against Occupation", + "2048-05-01": "Labor Day", + "2048-05-02": "Labor Day", + "2048-06-25": "Statehood Day", + "2048-08-15": "Assumption Day", + "2048-10-31": "Reformation Day", + "2048-11-01": "Remembrance Day", + "2048-12-25": "Christmas Day", + "2048-12-26": "Independence and Unity Day", + "2049-01-01": "New Year's Day", + "2049-01-02": "New Year's Day", + "2049-02-08": "Preseren's Day", + "2049-04-19": "Easter Monday", + "2049-04-27": "Day of Uprising Against Occupation", + "2049-05-01": "Labor Day", + "2049-05-02": "Labor Day", + "2049-06-25": "Statehood Day", + "2049-08-15": "Assumption Day", + "2049-10-31": "Reformation Day", + "2049-11-01": "Remembrance Day", + "2049-12-25": "Christmas Day", + "2049-12-26": "Independence and Unity Day", + "2050-01-01": "New Year's Day", + "2050-01-02": "New Year's Day", + "2050-02-08": "Preseren's Day", + "2050-04-11": "Easter Monday", + "2050-04-27": "Day of Uprising Against Occupation", + "2050-05-01": "Labor Day", + "2050-05-02": "Labor Day", + "2050-06-25": "Statehood Day", + "2050-08-15": "Assumption Day", + "2050-10-31": "Reformation Day", + "2050-11-01": "Remembrance Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "Independence and Unity Day" +} diff --git a/snapshots/countries/SK.json b/snapshots/countries/SK.json new file mode 100644 index 000000000..c3c5b3ac9 --- /dev/null +++ b/snapshots/countries/SK.json @@ -0,0 +1,891 @@ +{ + "1993-01-01": "Day of the Establishment of the Slovak Republic", + "1993-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "1993-04-09": "Good Friday", + "1993-04-12": "Easter Monday", + "1993-05-01": "Labor Day", + "1993-07-05": "St. Cyril and Methodius Day", + "1993-08-29": "Slovak National Uprising Anniversary", + "1993-09-01": "Constitution Day", + "1993-09-15": "Day of Our Lady of the Seven Sorrows", + "1993-11-01": "All Saints' Day", + "1993-12-24": "Christmas Eve", + "1993-12-25": "Christmas Day", + "1993-12-26": "Second Day of Christmas", + "1994-01-01": "Day of the Establishment of the Slovak Republic", + "1994-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "1994-04-01": "Good Friday", + "1994-04-04": "Easter Monday", + "1994-05-01": "Labor Day", + "1994-07-05": "St. Cyril and Methodius Day", + "1994-08-29": "Slovak National Uprising Anniversary", + "1994-09-01": "Constitution Day", + "1994-09-15": "Day of Our Lady of the Seven Sorrows", + "1994-11-01": "All Saints' Day", + "1994-12-24": "Christmas Eve", + "1994-12-25": "Christmas Day", + "1994-12-26": "Second Day of Christmas", + "1995-01-01": "Day of the Establishment of the Slovak Republic", + "1995-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "1995-04-14": "Good Friday", + "1995-04-17": "Easter Monday", + "1995-05-01": "Labor Day", + "1995-07-05": "St. Cyril and Methodius Day", + "1995-08-29": "Slovak National Uprising Anniversary", + "1995-09-01": "Constitution Day", + "1995-09-15": "Day of Our Lady of the Seven Sorrows", + "1995-11-01": "All Saints' Day", + "1995-12-24": "Christmas Eve", + "1995-12-25": "Christmas Day", + "1995-12-26": "Second Day of Christmas", + "1996-01-01": "Day of the Establishment of the Slovak Republic", + "1996-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "1996-04-05": "Good Friday", + "1996-04-08": "Easter Monday", + "1996-05-01": "Labor Day", + "1996-07-05": "St. Cyril and Methodius Day", + "1996-08-29": "Slovak National Uprising Anniversary", + "1996-09-01": "Constitution Day", + "1996-09-15": "Day of Our Lady of the Seven Sorrows", + "1996-11-01": "All Saints' Day", + "1996-12-24": "Christmas Eve", + "1996-12-25": "Christmas Day", + "1996-12-26": "Second Day of Christmas", + "1997-01-01": "Day of the Establishment of the Slovak Republic", + "1997-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "1997-03-28": "Good Friday", + "1997-03-31": "Easter Monday", + "1997-05-01": "Labor Day", + "1997-05-08": "Day of Victory over Fascism", + "1997-07-05": "St. Cyril and Methodius Day", + "1997-08-29": "Slovak National Uprising Anniversary", + "1997-09-01": "Constitution Day", + "1997-09-15": "Day of Our Lady of the Seven Sorrows", + "1997-11-01": "All Saints' Day", + "1997-12-24": "Christmas Eve", + "1997-12-25": "Christmas Day", + "1997-12-26": "Second Day of Christmas", + "1998-01-01": "Day of the Establishment of the Slovak Republic", + "1998-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "1998-04-10": "Good Friday", + "1998-04-13": "Easter Monday", + "1998-05-01": "Labor Day", + "1998-05-08": "Day of Victory over Fascism", + "1998-07-05": "St. Cyril and Methodius Day", + "1998-08-29": "Slovak National Uprising Anniversary", + "1998-09-01": "Constitution Day", + "1998-09-15": "Day of Our Lady of the Seven Sorrows", + "1998-11-01": "All Saints' Day", + "1998-12-24": "Christmas Eve", + "1998-12-25": "Christmas Day", + "1998-12-26": "Second Day of Christmas", + "1999-01-01": "Day of the Establishment of the Slovak Republic", + "1999-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "1999-04-02": "Good Friday", + "1999-04-05": "Easter Monday", + "1999-05-01": "Labor Day", + "1999-05-08": "Day of Victory over Fascism", + "1999-07-05": "St. Cyril and Methodius Day", + "1999-08-29": "Slovak National Uprising Anniversary", + "1999-09-01": "Constitution Day", + "1999-09-15": "Day of Our Lady of the Seven Sorrows", + "1999-11-01": "All Saints' Day", + "1999-12-24": "Christmas Eve", + "1999-12-25": "Christmas Day", + "1999-12-26": "Second Day of Christmas", + "2000-01-01": "Day of the Establishment of the Slovak Republic", + "2000-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2000-04-21": "Good Friday", + "2000-04-24": "Easter Monday", + "2000-05-01": "Labor Day", + "2000-05-08": "Day of Victory over Fascism", + "2000-07-05": "St. Cyril and Methodius Day", + "2000-08-29": "Slovak National Uprising Anniversary", + "2000-09-01": "Constitution Day", + "2000-09-15": "Day of Our Lady of the Seven Sorrows", + "2000-11-01": "All Saints' Day", + "2000-12-24": "Christmas Eve", + "2000-12-25": "Christmas Day", + "2000-12-26": "Second Day of Christmas", + "2001-01-01": "Day of the Establishment of the Slovak Republic", + "2001-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2001-04-13": "Good Friday", + "2001-04-16": "Easter Monday", + "2001-05-01": "Labor Day", + "2001-05-08": "Day of Victory over Fascism", + "2001-07-05": "St. Cyril and Methodius Day", + "2001-08-29": "Slovak National Uprising Anniversary", + "2001-09-01": "Constitution Day", + "2001-09-15": "Day of Our Lady of the Seven Sorrows", + "2001-11-01": "All Saints' Day", + "2001-11-17": "Struggle for Freedom and Democracy Day", + "2001-12-24": "Christmas Eve", + "2001-12-25": "Christmas Day", + "2001-12-26": "Second Day of Christmas", + "2002-01-01": "Day of the Establishment of the Slovak Republic", + "2002-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2002-03-29": "Good Friday", + "2002-04-01": "Easter Monday", + "2002-05-01": "Labor Day", + "2002-05-08": "Day of Victory over Fascism", + "2002-07-05": "St. Cyril and Methodius Day", + "2002-08-29": "Slovak National Uprising Anniversary", + "2002-09-01": "Constitution Day", + "2002-09-15": "Day of Our Lady of the Seven Sorrows", + "2002-11-01": "All Saints' Day", + "2002-11-17": "Struggle for Freedom and Democracy Day", + "2002-12-24": "Christmas Eve", + "2002-12-25": "Christmas Day", + "2002-12-26": "Second Day of Christmas", + "2003-01-01": "Day of the Establishment of the Slovak Republic", + "2003-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2003-04-18": "Good Friday", + "2003-04-21": "Easter Monday", + "2003-05-01": "Labor Day", + "2003-05-08": "Day of Victory over Fascism", + "2003-07-05": "St. Cyril and Methodius Day", + "2003-08-29": "Slovak National Uprising Anniversary", + "2003-09-01": "Constitution Day", + "2003-09-15": "Day of Our Lady of the Seven Sorrows", + "2003-11-01": "All Saints' Day", + "2003-11-17": "Struggle for Freedom and Democracy Day", + "2003-12-24": "Christmas Eve", + "2003-12-25": "Christmas Day", + "2003-12-26": "Second Day of Christmas", + "2004-01-01": "Day of the Establishment of the Slovak Republic", + "2004-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2004-04-09": "Good Friday", + "2004-04-12": "Easter Monday", + "2004-05-01": "Labor Day", + "2004-05-08": "Day of Victory over Fascism", + "2004-07-05": "St. Cyril and Methodius Day", + "2004-08-29": "Slovak National Uprising Anniversary", + "2004-09-01": "Constitution Day", + "2004-09-15": "Day of Our Lady of the Seven Sorrows", + "2004-11-01": "All Saints' Day", + "2004-11-17": "Struggle for Freedom and Democracy Day", + "2004-12-24": "Christmas Eve", + "2004-12-25": "Christmas Day", + "2004-12-26": "Second Day of Christmas", + "2005-01-01": "Day of the Establishment of the Slovak Republic", + "2005-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2005-03-25": "Good Friday", + "2005-03-28": "Easter Monday", + "2005-05-01": "Labor Day", + "2005-05-08": "Day of Victory over Fascism", + "2005-07-05": "St. Cyril and Methodius Day", + "2005-08-29": "Slovak National Uprising Anniversary", + "2005-09-01": "Constitution Day", + "2005-09-15": "Day of Our Lady of the Seven Sorrows", + "2005-11-01": "All Saints' Day", + "2005-11-17": "Struggle for Freedom and Democracy Day", + "2005-12-24": "Christmas Eve", + "2005-12-25": "Christmas Day", + "2005-12-26": "Second Day of Christmas", + "2006-01-01": "Day of the Establishment of the Slovak Republic", + "2006-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2006-04-14": "Good Friday", + "2006-04-17": "Easter Monday", + "2006-05-01": "Labor Day", + "2006-05-08": "Day of Victory over Fascism", + "2006-07-05": "St. Cyril and Methodius Day", + "2006-08-29": "Slovak National Uprising Anniversary", + "2006-09-01": "Constitution Day", + "2006-09-15": "Day of Our Lady of the Seven Sorrows", + "2006-11-01": "All Saints' Day", + "2006-11-17": "Struggle for Freedom and Democracy Day", + "2006-12-24": "Christmas Eve", + "2006-12-25": "Christmas Day", + "2006-12-26": "Second Day of Christmas", + "2007-01-01": "Day of the Establishment of the Slovak Republic", + "2007-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2007-04-06": "Good Friday", + "2007-04-09": "Easter Monday", + "2007-05-01": "Labor Day", + "2007-05-08": "Day of Victory over Fascism", + "2007-07-05": "St. Cyril and Methodius Day", + "2007-08-29": "Slovak National Uprising Anniversary", + "2007-09-01": "Constitution Day", + "2007-09-15": "Day of Our Lady of the Seven Sorrows", + "2007-11-01": "All Saints' Day", + "2007-11-17": "Struggle for Freedom and Democracy Day", + "2007-12-24": "Christmas Eve", + "2007-12-25": "Christmas Day", + "2007-12-26": "Second Day of Christmas", + "2008-01-01": "Day of the Establishment of the Slovak Republic", + "2008-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2008-03-21": "Good Friday", + "2008-03-24": "Easter Monday", + "2008-05-01": "Labor Day", + "2008-05-08": "Day of Victory over Fascism", + "2008-07-05": "St. Cyril and Methodius Day", + "2008-08-29": "Slovak National Uprising Anniversary", + "2008-09-01": "Constitution Day", + "2008-09-15": "Day of Our Lady of the Seven Sorrows", + "2008-11-01": "All Saints' Day", + "2008-11-17": "Struggle for Freedom and Democracy Day", + "2008-12-24": "Christmas Eve", + "2008-12-25": "Christmas Day", + "2008-12-26": "Second Day of Christmas", + "2009-01-01": "Day of the Establishment of the Slovak Republic", + "2009-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2009-04-10": "Good Friday", + "2009-04-13": "Easter Monday", + "2009-05-01": "Labor Day", + "2009-05-08": "Day of Victory over Fascism", + "2009-07-05": "St. Cyril and Methodius Day", + "2009-08-29": "Slovak National Uprising Anniversary", + "2009-09-01": "Constitution Day", + "2009-09-15": "Day of Our Lady of the Seven Sorrows", + "2009-11-01": "All Saints' Day", + "2009-11-17": "Struggle for Freedom and Democracy Day", + "2009-12-24": "Christmas Eve", + "2009-12-25": "Christmas Day", + "2009-12-26": "Second Day of Christmas", + "2010-01-01": "Day of the Establishment of the Slovak Republic", + "2010-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2010-04-02": "Good Friday", + "2010-04-05": "Easter Monday", + "2010-05-01": "Labor Day", + "2010-05-08": "Day of Victory over Fascism", + "2010-07-05": "St. Cyril and Methodius Day", + "2010-08-29": "Slovak National Uprising Anniversary", + "2010-09-01": "Constitution Day", + "2010-09-15": "Day of Our Lady of the Seven Sorrows", + "2010-11-01": "All Saints' Day", + "2010-11-17": "Struggle for Freedom and Democracy Day", + "2010-12-24": "Christmas Eve", + "2010-12-25": "Christmas Day", + "2010-12-26": "Second Day of Christmas", + "2011-01-01": "Day of the Establishment of the Slovak Republic", + "2011-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2011-04-22": "Good Friday", + "2011-04-25": "Easter Monday", + "2011-05-01": "Labor Day", + "2011-05-08": "Day of Victory over Fascism", + "2011-07-05": "St. Cyril and Methodius Day", + "2011-08-29": "Slovak National Uprising Anniversary", + "2011-09-01": "Constitution Day", + "2011-09-15": "Day of Our Lady of the Seven Sorrows", + "2011-11-01": "All Saints' Day", + "2011-11-17": "Struggle for Freedom and Democracy Day", + "2011-12-24": "Christmas Eve", + "2011-12-25": "Christmas Day", + "2011-12-26": "Second Day of Christmas", + "2012-01-01": "Day of the Establishment of the Slovak Republic", + "2012-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2012-04-06": "Good Friday", + "2012-04-09": "Easter Monday", + "2012-05-01": "Labor Day", + "2012-05-08": "Day of Victory over Fascism", + "2012-07-05": "St. Cyril and Methodius Day", + "2012-08-29": "Slovak National Uprising Anniversary", + "2012-09-01": "Constitution Day", + "2012-09-15": "Day of Our Lady of the Seven Sorrows", + "2012-11-01": "All Saints' Day", + "2012-11-17": "Struggle for Freedom and Democracy Day", + "2012-12-24": "Christmas Eve", + "2012-12-25": "Christmas Day", + "2012-12-26": "Second Day of Christmas", + "2013-01-01": "Day of the Establishment of the Slovak Republic", + "2013-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2013-03-29": "Good Friday", + "2013-04-01": "Easter Monday", + "2013-05-01": "Labor Day", + "2013-05-08": "Day of Victory over Fascism", + "2013-07-05": "St. Cyril and Methodius Day", + "2013-08-29": "Slovak National Uprising Anniversary", + "2013-09-01": "Constitution Day", + "2013-09-15": "Day of Our Lady of the Seven Sorrows", + "2013-11-01": "All Saints' Day", + "2013-11-17": "Struggle for Freedom and Democracy Day", + "2013-12-24": "Christmas Eve", + "2013-12-25": "Christmas Day", + "2013-12-26": "Second Day of Christmas", + "2014-01-01": "Day of the Establishment of the Slovak Republic", + "2014-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2014-04-18": "Good Friday", + "2014-04-21": "Easter Monday", + "2014-05-01": "Labor Day", + "2014-05-08": "Day of Victory over Fascism", + "2014-07-05": "St. Cyril and Methodius Day", + "2014-08-29": "Slovak National Uprising Anniversary", + "2014-09-01": "Constitution Day", + "2014-09-15": "Day of Our Lady of the Seven Sorrows", + "2014-11-01": "All Saints' Day", + "2014-11-17": "Struggle for Freedom and Democracy Day", + "2014-12-24": "Christmas Eve", + "2014-12-25": "Christmas Day", + "2014-12-26": "Second Day of Christmas", + "2015-01-01": "Day of the Establishment of the Slovak Republic", + "2015-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2015-04-03": "Good Friday", + "2015-04-06": "Easter Monday", + "2015-05-01": "Labor Day", + "2015-05-08": "Day of Victory over Fascism", + "2015-07-05": "St. Cyril and Methodius Day", + "2015-08-29": "Slovak National Uprising Anniversary", + "2015-09-01": "Constitution Day", + "2015-09-15": "Day of Our Lady of the Seven Sorrows", + "2015-11-01": "All Saints' Day", + "2015-11-17": "Struggle for Freedom and Democracy Day", + "2015-12-24": "Christmas Eve", + "2015-12-25": "Christmas Day", + "2015-12-26": "Second Day of Christmas", + "2016-01-01": "Day of the Establishment of the Slovak Republic", + "2016-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2016-03-25": "Good Friday", + "2016-03-28": "Easter Monday", + "2016-05-01": "Labor Day", + "2016-05-08": "Day of Victory over Fascism", + "2016-07-05": "St. Cyril and Methodius Day", + "2016-08-29": "Slovak National Uprising Anniversary", + "2016-09-01": "Constitution Day", + "2016-09-15": "Day of Our Lady of the Seven Sorrows", + "2016-11-01": "All Saints' Day", + "2016-11-17": "Struggle for Freedom and Democracy Day", + "2016-12-24": "Christmas Eve", + "2016-12-25": "Christmas Day", + "2016-12-26": "Second Day of Christmas", + "2017-01-01": "Day of the Establishment of the Slovak Republic", + "2017-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2017-04-14": "Good Friday", + "2017-04-17": "Easter Monday", + "2017-05-01": "Labor Day", + "2017-05-08": "Day of Victory over Fascism", + "2017-07-05": "St. Cyril and Methodius Day", + "2017-08-29": "Slovak National Uprising Anniversary", + "2017-09-01": "Constitution Day", + "2017-09-15": "Day of Our Lady of the Seven Sorrows", + "2017-11-01": "All Saints' Day", + "2017-11-17": "Struggle for Freedom and Democracy Day", + "2017-12-24": "Christmas Eve", + "2017-12-25": "Christmas Day", + "2017-12-26": "Second Day of Christmas", + "2018-01-01": "Day of the Establishment of the Slovak Republic", + "2018-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2018-03-30": "Good Friday", + "2018-04-02": "Easter Monday", + "2018-05-01": "Labor Day", + "2018-05-08": "Day of Victory over Fascism", + "2018-07-05": "St. Cyril and Methodius Day", + "2018-08-29": "Slovak National Uprising Anniversary", + "2018-09-01": "Constitution Day", + "2018-09-15": "Day of Our Lady of the Seven Sorrows", + "2018-10-30": "100th anniversary of the adoption of the Declaration of the Slovak Nation", + "2018-11-01": "All Saints' Day", + "2018-11-17": "Struggle for Freedom and Democracy Day", + "2018-12-24": "Christmas Eve", + "2018-12-25": "Christmas Day", + "2018-12-26": "Second Day of Christmas", + "2019-01-01": "Day of the Establishment of the Slovak Republic", + "2019-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2019-04-19": "Good Friday", + "2019-04-22": "Easter Monday", + "2019-05-01": "Labor Day", + "2019-05-08": "Day of Victory over Fascism", + "2019-07-05": "St. Cyril and Methodius Day", + "2019-08-29": "Slovak National Uprising Anniversary", + "2019-09-01": "Constitution Day", + "2019-09-15": "Day of Our Lady of the Seven Sorrows", + "2019-11-01": "All Saints' Day", + "2019-11-17": "Struggle for Freedom and Democracy Day", + "2019-12-24": "Christmas Eve", + "2019-12-25": "Christmas Day", + "2019-12-26": "Second Day of Christmas", + "2020-01-01": "Day of the Establishment of the Slovak Republic", + "2020-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2020-04-10": "Good Friday", + "2020-04-13": "Easter Monday", + "2020-05-01": "Labor Day", + "2020-05-08": "Day of Victory over Fascism", + "2020-07-05": "St. Cyril and Methodius Day", + "2020-08-29": "Slovak National Uprising Anniversary", + "2020-09-01": "Constitution Day", + "2020-09-15": "Day of Our Lady of the Seven Sorrows", + "2020-11-01": "All Saints' Day", + "2020-11-17": "Struggle for Freedom and Democracy Day", + "2020-12-24": "Christmas Eve", + "2020-12-25": "Christmas Day", + "2020-12-26": "Second Day of Christmas", + "2021-01-01": "Day of the Establishment of the Slovak Republic", + "2021-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2021-04-02": "Good Friday", + "2021-04-05": "Easter Monday", + "2021-05-01": "Labor Day", + "2021-05-08": "Day of Victory over Fascism", + "2021-07-05": "St. Cyril and Methodius Day", + "2021-08-29": "Slovak National Uprising Anniversary", + "2021-09-01": "Constitution Day", + "2021-09-15": "Day of Our Lady of the Seven Sorrows", + "2021-10-28": "Day of the Establishment of the Independent Czech-Slovak State", + "2021-11-01": "All Saints' Day", + "2021-11-17": "Struggle for Freedom and Democracy Day", + "2021-12-24": "Christmas Eve", + "2021-12-25": "Christmas Day", + "2021-12-26": "Second Day of Christmas", + "2022-01-01": "Day of the Establishment of the Slovak Republic", + "2022-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2022-04-15": "Good Friday", + "2022-04-18": "Easter Monday", + "2022-05-01": "Labor Day", + "2022-05-08": "Day of Victory over Fascism", + "2022-07-05": "St. Cyril and Methodius Day", + "2022-08-29": "Slovak National Uprising Anniversary", + "2022-09-01": "Constitution Day", + "2022-09-15": "Day of Our Lady of the Seven Sorrows", + "2022-10-28": "Day of the Establishment of the Independent Czech-Slovak State", + "2022-11-01": "All Saints' Day", + "2022-11-17": "Struggle for Freedom and Democracy Day", + "2022-12-24": "Christmas Eve", + "2022-12-25": "Christmas Day", + "2022-12-26": "Second Day of Christmas", + "2023-01-01": "Day of the Establishment of the Slovak Republic", + "2023-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2023-04-07": "Good Friday", + "2023-04-10": "Easter Monday", + "2023-05-01": "Labor Day", + "2023-05-08": "Day of Victory over Fascism", + "2023-07-05": "St. Cyril and Methodius Day", + "2023-08-29": "Slovak National Uprising Anniversary", + "2023-09-01": "Constitution Day", + "2023-09-15": "Day of Our Lady of the Seven Sorrows", + "2023-10-28": "Day of the Establishment of the Independent Czech-Slovak State", + "2023-11-01": "All Saints' Day", + "2023-11-17": "Struggle for Freedom and Democracy Day", + "2023-12-24": "Christmas Eve", + "2023-12-25": "Christmas Day", + "2023-12-26": "Second Day of Christmas", + "2024-01-01": "Day of the Establishment of the Slovak Republic", + "2024-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2024-03-29": "Good Friday", + "2024-04-01": "Easter Monday", + "2024-05-01": "Labor Day", + "2024-05-08": "Day of Victory over Fascism", + "2024-07-05": "St. Cyril and Methodius Day", + "2024-08-29": "Slovak National Uprising Anniversary", + "2024-09-01": "Constitution Day", + "2024-09-15": "Day of Our Lady of the Seven Sorrows", + "2024-10-28": "Day of the Establishment of the Independent Czech-Slovak State", + "2024-11-01": "All Saints' Day", + "2024-11-17": "Struggle for Freedom and Democracy Day", + "2024-12-24": "Christmas Eve", + "2024-12-25": "Christmas Day", + "2024-12-26": "Second Day of Christmas", + "2025-01-01": "Day of the Establishment of the Slovak Republic", + "2025-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2025-04-18": "Good Friday", + "2025-04-21": "Easter Monday", + "2025-05-01": "Labor Day", + "2025-05-08": "Day of Victory over Fascism", + "2025-07-05": "St. Cyril and Methodius Day", + "2025-08-29": "Slovak National Uprising Anniversary", + "2025-09-01": "Constitution Day", + "2025-09-15": "Day of Our Lady of the Seven Sorrows", + "2025-10-28": "Day of the Establishment of the Independent Czech-Slovak State", + "2025-11-01": "All Saints' Day", + "2025-11-17": "Struggle for Freedom and Democracy Day", + "2025-12-24": "Christmas Eve", + "2025-12-25": "Christmas Day", + "2025-12-26": "Second Day of Christmas", + "2026-01-01": "Day of the Establishment of the Slovak Republic", + "2026-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2026-04-03": "Good Friday", + "2026-04-06": "Easter Monday", + "2026-05-01": "Labor Day", + "2026-05-08": "Day of Victory over Fascism", + "2026-07-05": "St. Cyril and Methodius Day", + "2026-08-29": "Slovak National Uprising Anniversary", + "2026-09-01": "Constitution Day", + "2026-09-15": "Day of Our Lady of the Seven Sorrows", + "2026-10-28": "Day of the Establishment of the Independent Czech-Slovak State", + "2026-11-01": "All Saints' Day", + "2026-11-17": "Struggle for Freedom and Democracy Day", + "2026-12-24": "Christmas Eve", + "2026-12-25": "Christmas Day", + "2026-12-26": "Second Day of Christmas", + "2027-01-01": "Day of the Establishment of the Slovak Republic", + "2027-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2027-03-26": "Good Friday", + "2027-03-29": "Easter Monday", + "2027-05-01": "Labor Day", + "2027-05-08": "Day of Victory over Fascism", + "2027-07-05": "St. Cyril and Methodius Day", + "2027-08-29": "Slovak National Uprising Anniversary", + "2027-09-01": "Constitution Day", + "2027-09-15": "Day of Our Lady of the Seven Sorrows", + "2027-10-28": "Day of the Establishment of the Independent Czech-Slovak State", + "2027-11-01": "All Saints' Day", + "2027-11-17": "Struggle for Freedom and Democracy Day", + "2027-12-24": "Christmas Eve", + "2027-12-25": "Christmas Day", + "2027-12-26": "Second Day of Christmas", + "2028-01-01": "Day of the Establishment of the Slovak Republic", + "2028-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2028-04-14": "Good Friday", + "2028-04-17": "Easter Monday", + "2028-05-01": "Labor Day", + "2028-05-08": "Day of Victory over Fascism", + "2028-07-05": "St. Cyril and Methodius Day", + "2028-08-29": "Slovak National Uprising Anniversary", + "2028-09-01": "Constitution Day", + "2028-09-15": "Day of Our Lady of the Seven Sorrows", + "2028-10-28": "Day of the Establishment of the Independent Czech-Slovak State", + "2028-11-01": "All Saints' Day", + "2028-11-17": "Struggle for Freedom and Democracy Day", + "2028-12-24": "Christmas Eve", + "2028-12-25": "Christmas Day", + "2028-12-26": "Second Day of Christmas", + "2029-01-01": "Day of the Establishment of the Slovak Republic", + "2029-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2029-03-30": "Good Friday", + "2029-04-02": "Easter Monday", + "2029-05-01": "Labor Day", + "2029-05-08": "Day of Victory over Fascism", + "2029-07-05": "St. Cyril and Methodius Day", + "2029-08-29": "Slovak National Uprising Anniversary", + "2029-09-01": "Constitution Day", + "2029-09-15": "Day of Our Lady of the Seven Sorrows", + "2029-10-28": "Day of the Establishment of the Independent Czech-Slovak State", + "2029-11-01": "All Saints' Day", + "2029-11-17": "Struggle for Freedom and Democracy Day", + "2029-12-24": "Christmas Eve", + "2029-12-25": "Christmas Day", + "2029-12-26": "Second Day of Christmas", + "2030-01-01": "Day of the Establishment of the Slovak Republic", + "2030-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2030-04-19": "Good Friday", + "2030-04-22": "Easter Monday", + "2030-05-01": "Labor Day", + "2030-05-08": "Day of Victory over Fascism", + "2030-07-05": "St. Cyril and Methodius Day", + "2030-08-29": "Slovak National Uprising Anniversary", + "2030-09-01": "Constitution Day", + "2030-09-15": "Day of Our Lady of the Seven Sorrows", + "2030-10-28": "Day of the Establishment of the Independent Czech-Slovak State", + "2030-11-01": "All Saints' Day", + "2030-11-17": "Struggle for Freedom and Democracy Day", + "2030-12-24": "Christmas Eve", + "2030-12-25": "Christmas Day", + "2030-12-26": "Second Day of Christmas", + "2031-01-01": "Day of the Establishment of the Slovak Republic", + "2031-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2031-04-11": "Good Friday", + "2031-04-14": "Easter Monday", + "2031-05-01": "Labor Day", + "2031-05-08": "Day of Victory over Fascism", + "2031-07-05": "St. Cyril and Methodius Day", + "2031-08-29": "Slovak National Uprising Anniversary", + "2031-09-01": "Constitution Day", + "2031-09-15": "Day of Our Lady of the Seven Sorrows", + "2031-10-28": "Day of the Establishment of the Independent Czech-Slovak State", + "2031-11-01": "All Saints' Day", + "2031-11-17": "Struggle for Freedom and Democracy Day", + "2031-12-24": "Christmas Eve", + "2031-12-25": "Christmas Day", + "2031-12-26": "Second Day of Christmas", + "2032-01-01": "Day of the Establishment of the Slovak Republic", + "2032-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2032-03-26": "Good Friday", + "2032-03-29": "Easter Monday", + "2032-05-01": "Labor Day", + "2032-05-08": "Day of Victory over Fascism", + "2032-07-05": "St. Cyril and Methodius Day", + "2032-08-29": "Slovak National Uprising Anniversary", + "2032-09-01": "Constitution Day", + "2032-09-15": "Day of Our Lady of the Seven Sorrows", + "2032-10-28": "Day of the Establishment of the Independent Czech-Slovak State", + "2032-11-01": "All Saints' Day", + "2032-11-17": "Struggle for Freedom and Democracy Day", + "2032-12-24": "Christmas Eve", + "2032-12-25": "Christmas Day", + "2032-12-26": "Second Day of Christmas", + "2033-01-01": "Day of the Establishment of the Slovak Republic", + "2033-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2033-04-15": "Good Friday", + "2033-04-18": "Easter Monday", + "2033-05-01": "Labor Day", + "2033-05-08": "Day of Victory over Fascism", + "2033-07-05": "St. Cyril and Methodius Day", + "2033-08-29": "Slovak National Uprising Anniversary", + "2033-09-01": "Constitution Day", + "2033-09-15": "Day of Our Lady of the Seven Sorrows", + "2033-10-28": "Day of the Establishment of the Independent Czech-Slovak State", + "2033-11-01": "All Saints' Day", + "2033-11-17": "Struggle for Freedom and Democracy Day", + "2033-12-24": "Christmas Eve", + "2033-12-25": "Christmas Day", + "2033-12-26": "Second Day of Christmas", + "2034-01-01": "Day of the Establishment of the Slovak Republic", + "2034-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2034-04-07": "Good Friday", + "2034-04-10": "Easter Monday", + "2034-05-01": "Labor Day", + "2034-05-08": "Day of Victory over Fascism", + "2034-07-05": "St. Cyril and Methodius Day", + "2034-08-29": "Slovak National Uprising Anniversary", + "2034-09-01": "Constitution Day", + "2034-09-15": "Day of Our Lady of the Seven Sorrows", + "2034-10-28": "Day of the Establishment of the Independent Czech-Slovak State", + "2034-11-01": "All Saints' Day", + "2034-11-17": "Struggle for Freedom and Democracy Day", + "2034-12-24": "Christmas Eve", + "2034-12-25": "Christmas Day", + "2034-12-26": "Second Day of Christmas", + "2035-01-01": "Day of the Establishment of the Slovak Republic", + "2035-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2035-03-23": "Good Friday", + "2035-03-26": "Easter Monday", + "2035-05-01": "Labor Day", + "2035-05-08": "Day of Victory over Fascism", + "2035-07-05": "St. Cyril and Methodius Day", + "2035-08-29": "Slovak National Uprising Anniversary", + "2035-09-01": "Constitution Day", + "2035-09-15": "Day of Our Lady of the Seven Sorrows", + "2035-10-28": "Day of the Establishment of the Independent Czech-Slovak State", + "2035-11-01": "All Saints' Day", + "2035-11-17": "Struggle for Freedom and Democracy Day", + "2035-12-24": "Christmas Eve", + "2035-12-25": "Christmas Day", + "2035-12-26": "Second Day of Christmas", + "2036-01-01": "Day of the Establishment of the Slovak Republic", + "2036-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2036-04-11": "Good Friday", + "2036-04-14": "Easter Monday", + "2036-05-01": "Labor Day", + "2036-05-08": "Day of Victory over Fascism", + "2036-07-05": "St. Cyril and Methodius Day", + "2036-08-29": "Slovak National Uprising Anniversary", + "2036-09-01": "Constitution Day", + "2036-09-15": "Day of Our Lady of the Seven Sorrows", + "2036-10-28": "Day of the Establishment of the Independent Czech-Slovak State", + "2036-11-01": "All Saints' Day", + "2036-11-17": "Struggle for Freedom and Democracy Day", + "2036-12-24": "Christmas Eve", + "2036-12-25": "Christmas Day", + "2036-12-26": "Second Day of Christmas", + "2037-01-01": "Day of the Establishment of the Slovak Republic", + "2037-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2037-04-03": "Good Friday", + "2037-04-06": "Easter Monday", + "2037-05-01": "Labor Day", + "2037-05-08": "Day of Victory over Fascism", + "2037-07-05": "St. Cyril and Methodius Day", + "2037-08-29": "Slovak National Uprising Anniversary", + "2037-09-01": "Constitution Day", + "2037-09-15": "Day of Our Lady of the Seven Sorrows", + "2037-10-28": "Day of the Establishment of the Independent Czech-Slovak State", + "2037-11-01": "All Saints' Day", + "2037-11-17": "Struggle for Freedom and Democracy Day", + "2037-12-24": "Christmas Eve", + "2037-12-25": "Christmas Day", + "2037-12-26": "Second Day of Christmas", + "2038-01-01": "Day of the Establishment of the Slovak Republic", + "2038-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2038-04-23": "Good Friday", + "2038-04-26": "Easter Monday", + "2038-05-01": "Labor Day", + "2038-05-08": "Day of Victory over Fascism", + "2038-07-05": "St. Cyril and Methodius Day", + "2038-08-29": "Slovak National Uprising Anniversary", + "2038-09-01": "Constitution Day", + "2038-09-15": "Day of Our Lady of the Seven Sorrows", + "2038-10-28": "Day of the Establishment of the Independent Czech-Slovak State", + "2038-11-01": "All Saints' Day", + "2038-11-17": "Struggle for Freedom and Democracy Day", + "2038-12-24": "Christmas Eve", + "2038-12-25": "Christmas Day", + "2038-12-26": "Second Day of Christmas", + "2039-01-01": "Day of the Establishment of the Slovak Republic", + "2039-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2039-04-08": "Good Friday", + "2039-04-11": "Easter Monday", + "2039-05-01": "Labor Day", + "2039-05-08": "Day of Victory over Fascism", + "2039-07-05": "St. Cyril and Methodius Day", + "2039-08-29": "Slovak National Uprising Anniversary", + "2039-09-01": "Constitution Day", + "2039-09-15": "Day of Our Lady of the Seven Sorrows", + "2039-10-28": "Day of the Establishment of the Independent Czech-Slovak State", + "2039-11-01": "All Saints' Day", + "2039-11-17": "Struggle for Freedom and Democracy Day", + "2039-12-24": "Christmas Eve", + "2039-12-25": "Christmas Day", + "2039-12-26": "Second Day of Christmas", + "2040-01-01": "Day of the Establishment of the Slovak Republic", + "2040-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2040-03-30": "Good Friday", + "2040-04-02": "Easter Monday", + "2040-05-01": "Labor Day", + "2040-05-08": "Day of Victory over Fascism", + "2040-07-05": "St. Cyril and Methodius Day", + "2040-08-29": "Slovak National Uprising Anniversary", + "2040-09-01": "Constitution Day", + "2040-09-15": "Day of Our Lady of the Seven Sorrows", + "2040-10-28": "Day of the Establishment of the Independent Czech-Slovak State", + "2040-11-01": "All Saints' Day", + "2040-11-17": "Struggle for Freedom and Democracy Day", + "2040-12-24": "Christmas Eve", + "2040-12-25": "Christmas Day", + "2040-12-26": "Second Day of Christmas", + "2041-01-01": "Day of the Establishment of the Slovak Republic", + "2041-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2041-04-19": "Good Friday", + "2041-04-22": "Easter Monday", + "2041-05-01": "Labor Day", + "2041-05-08": "Day of Victory over Fascism", + "2041-07-05": "St. Cyril and Methodius Day", + "2041-08-29": "Slovak National Uprising Anniversary", + "2041-09-01": "Constitution Day", + "2041-09-15": "Day of Our Lady of the Seven Sorrows", + "2041-10-28": "Day of the Establishment of the Independent Czech-Slovak State", + "2041-11-01": "All Saints' Day", + "2041-11-17": "Struggle for Freedom and Democracy Day", + "2041-12-24": "Christmas Eve", + "2041-12-25": "Christmas Day", + "2041-12-26": "Second Day of Christmas", + "2042-01-01": "Day of the Establishment of the Slovak Republic", + "2042-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2042-04-04": "Good Friday", + "2042-04-07": "Easter Monday", + "2042-05-01": "Labor Day", + "2042-05-08": "Day of Victory over Fascism", + "2042-07-05": "St. Cyril and Methodius Day", + "2042-08-29": "Slovak National Uprising Anniversary", + "2042-09-01": "Constitution Day", + "2042-09-15": "Day of Our Lady of the Seven Sorrows", + "2042-10-28": "Day of the Establishment of the Independent Czech-Slovak State", + "2042-11-01": "All Saints' Day", + "2042-11-17": "Struggle for Freedom and Democracy Day", + "2042-12-24": "Christmas Eve", + "2042-12-25": "Christmas Day", + "2042-12-26": "Second Day of Christmas", + "2043-01-01": "Day of the Establishment of the Slovak Republic", + "2043-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2043-03-27": "Good Friday", + "2043-03-30": "Easter Monday", + "2043-05-01": "Labor Day", + "2043-05-08": "Day of Victory over Fascism", + "2043-07-05": "St. Cyril and Methodius Day", + "2043-08-29": "Slovak National Uprising Anniversary", + "2043-09-01": "Constitution Day", + "2043-09-15": "Day of Our Lady of the Seven Sorrows", + "2043-10-28": "Day of the Establishment of the Independent Czech-Slovak State", + "2043-11-01": "All Saints' Day", + "2043-11-17": "Struggle for Freedom and Democracy Day", + "2043-12-24": "Christmas Eve", + "2043-12-25": "Christmas Day", + "2043-12-26": "Second Day of Christmas", + "2044-01-01": "Day of the Establishment of the Slovak Republic", + "2044-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2044-04-15": "Good Friday", + "2044-04-18": "Easter Monday", + "2044-05-01": "Labor Day", + "2044-05-08": "Day of Victory over Fascism", + "2044-07-05": "St. Cyril and Methodius Day", + "2044-08-29": "Slovak National Uprising Anniversary", + "2044-09-01": "Constitution Day", + "2044-09-15": "Day of Our Lady of the Seven Sorrows", + "2044-10-28": "Day of the Establishment of the Independent Czech-Slovak State", + "2044-11-01": "All Saints' Day", + "2044-11-17": "Struggle for Freedom and Democracy Day", + "2044-12-24": "Christmas Eve", + "2044-12-25": "Christmas Day", + "2044-12-26": "Second Day of Christmas", + "2045-01-01": "Day of the Establishment of the Slovak Republic", + "2045-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2045-04-07": "Good Friday", + "2045-04-10": "Easter Monday", + "2045-05-01": "Labor Day", + "2045-05-08": "Day of Victory over Fascism", + "2045-07-05": "St. Cyril and Methodius Day", + "2045-08-29": "Slovak National Uprising Anniversary", + "2045-09-01": "Constitution Day", + "2045-09-15": "Day of Our Lady of the Seven Sorrows", + "2045-10-28": "Day of the Establishment of the Independent Czech-Slovak State", + "2045-11-01": "All Saints' Day", + "2045-11-17": "Struggle for Freedom and Democracy Day", + "2045-12-24": "Christmas Eve", + "2045-12-25": "Christmas Day", + "2045-12-26": "Second Day of Christmas", + "2046-01-01": "Day of the Establishment of the Slovak Republic", + "2046-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2046-03-23": "Good Friday", + "2046-03-26": "Easter Monday", + "2046-05-01": "Labor Day", + "2046-05-08": "Day of Victory over Fascism", + "2046-07-05": "St. Cyril and Methodius Day", + "2046-08-29": "Slovak National Uprising Anniversary", + "2046-09-01": "Constitution Day", + "2046-09-15": "Day of Our Lady of the Seven Sorrows", + "2046-10-28": "Day of the Establishment of the Independent Czech-Slovak State", + "2046-11-01": "All Saints' Day", + "2046-11-17": "Struggle for Freedom and Democracy Day", + "2046-12-24": "Christmas Eve", + "2046-12-25": "Christmas Day", + "2046-12-26": "Second Day of Christmas", + "2047-01-01": "Day of the Establishment of the Slovak Republic", + "2047-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2047-04-12": "Good Friday", + "2047-04-15": "Easter Monday", + "2047-05-01": "Labor Day", + "2047-05-08": "Day of Victory over Fascism", + "2047-07-05": "St. Cyril and Methodius Day", + "2047-08-29": "Slovak National Uprising Anniversary", + "2047-09-01": "Constitution Day", + "2047-09-15": "Day of Our Lady of the Seven Sorrows", + "2047-10-28": "Day of the Establishment of the Independent Czech-Slovak State", + "2047-11-01": "All Saints' Day", + "2047-11-17": "Struggle for Freedom and Democracy Day", + "2047-12-24": "Christmas Eve", + "2047-12-25": "Christmas Day", + "2047-12-26": "Second Day of Christmas", + "2048-01-01": "Day of the Establishment of the Slovak Republic", + "2048-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2048-04-03": "Good Friday", + "2048-04-06": "Easter Monday", + "2048-05-01": "Labor Day", + "2048-05-08": "Day of Victory over Fascism", + "2048-07-05": "St. Cyril and Methodius Day", + "2048-08-29": "Slovak National Uprising Anniversary", + "2048-09-01": "Constitution Day", + "2048-09-15": "Day of Our Lady of the Seven Sorrows", + "2048-10-28": "Day of the Establishment of the Independent Czech-Slovak State", + "2048-11-01": "All Saints' Day", + "2048-11-17": "Struggle for Freedom and Democracy Day", + "2048-12-24": "Christmas Eve", + "2048-12-25": "Christmas Day", + "2048-12-26": "Second Day of Christmas", + "2049-01-01": "Day of the Establishment of the Slovak Republic", + "2049-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2049-04-16": "Good Friday", + "2049-04-19": "Easter Monday", + "2049-05-01": "Labor Day", + "2049-05-08": "Day of Victory over Fascism", + "2049-07-05": "St. Cyril and Methodius Day", + "2049-08-29": "Slovak National Uprising Anniversary", + "2049-09-01": "Constitution Day", + "2049-09-15": "Day of Our Lady of the Seven Sorrows", + "2049-10-28": "Day of the Establishment of the Independent Czech-Slovak State", + "2049-11-01": "All Saints' Day", + "2049-11-17": "Struggle for Freedom and Democracy Day", + "2049-12-24": "Christmas Eve", + "2049-12-25": "Christmas Day", + "2049-12-26": "Second Day of Christmas", + "2050-01-01": "Day of the Establishment of the Slovak Republic", + "2050-01-06": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "2050-04-08": "Good Friday", + "2050-04-11": "Easter Monday", + "2050-05-01": "Labor Day", + "2050-05-08": "Day of Victory over Fascism", + "2050-07-05": "St. Cyril and Methodius Day", + "2050-08-29": "Slovak National Uprising Anniversary", + "2050-09-01": "Constitution Day", + "2050-09-15": "Day of Our Lady of the Seven Sorrows", + "2050-10-28": "Day of the Establishment of the Independent Czech-Slovak State", + "2050-11-01": "All Saints' Day", + "2050-11-17": "Struggle for Freedom and Democracy Day", + "2050-12-24": "Christmas Eve", + "2050-12-25": "Christmas Day", + "2050-12-26": "Second Day of Christmas" +} diff --git a/snapshots/countries/SM.json b/snapshots/countries/SM.json new file mode 100644 index 000000000..e5a2ab127 --- /dev/null +++ b/snapshots/countries/SM.json @@ -0,0 +1,1817 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-06": "Epiphany", + "1950-02-05": "Feast of Saint Agatha", + "1950-03-25": "Anniversary of the Arengo", + "1950-04-09": "Easter Sunday", + "1950-04-10": "Easter Monday", + "1950-05-01": "Labour Day", + "1950-06-08": "Corpus Cristi", + "1950-07-28": "Liberation from Fascism Day", + "1950-08-15": "Assumption Day", + "1950-09-03": "Foundation Day", + "1950-11-01": "All Saints' Day", + "1950-11-02": "Commemoration of the Dead", + "1950-12-08": "Immaculate Conception Day", + "1950-12-24": "Christmas Eve", + "1950-12-25": "Christmas Day", + "1950-12-26": "Saint Stephen's Day", + "1950-12-31": "New Year's Eve", + "1951-01-01": "New Year's Day", + "1951-01-06": "Epiphany", + "1951-02-05": "Feast of Saint Agatha", + "1951-03-25": "Anniversary of the Arengo; Easter Sunday", + "1951-03-26": "Easter Monday", + "1951-05-01": "Labour Day", + "1951-05-24": "Corpus Cristi", + "1951-07-28": "Liberation from Fascism Day", + "1951-08-15": "Assumption Day", + "1951-09-03": "Foundation Day", + "1951-11-01": "All Saints' Day", + "1951-11-02": "Commemoration of the Dead", + "1951-12-08": "Immaculate Conception Day", + "1951-12-24": "Christmas Eve", + "1951-12-25": "Christmas Day", + "1951-12-26": "Saint Stephen's Day", + "1951-12-31": "New Year's Eve", + "1952-01-01": "New Year's Day", + "1952-01-06": "Epiphany", + "1952-02-05": "Feast of Saint Agatha", + "1952-03-25": "Anniversary of the Arengo", + "1952-04-13": "Easter Sunday", + "1952-04-14": "Easter Monday", + "1952-05-01": "Labour Day", + "1952-06-12": "Corpus Cristi", + "1952-07-28": "Liberation from Fascism Day", + "1952-08-15": "Assumption Day", + "1952-09-03": "Foundation Day", + "1952-11-01": "All Saints' Day", + "1952-11-02": "Commemoration of the Dead", + "1952-12-08": "Immaculate Conception Day", + "1952-12-24": "Christmas Eve", + "1952-12-25": "Christmas Day", + "1952-12-26": "Saint Stephen's Day", + "1952-12-31": "New Year's Eve", + "1953-01-01": "New Year's Day", + "1953-01-06": "Epiphany", + "1953-02-05": "Feast of Saint Agatha", + "1953-03-25": "Anniversary of the Arengo", + "1953-04-05": "Easter Sunday", + "1953-04-06": "Easter Monday", + "1953-05-01": "Labour Day", + "1953-06-04": "Corpus Cristi", + "1953-07-28": "Liberation from Fascism Day", + "1953-08-15": "Assumption Day", + "1953-09-03": "Foundation Day", + "1953-11-01": "All Saints' Day", + "1953-11-02": "Commemoration of the Dead", + "1953-12-08": "Immaculate Conception Day", + "1953-12-24": "Christmas Eve", + "1953-12-25": "Christmas Day", + "1953-12-26": "Saint Stephen's Day", + "1953-12-31": "New Year's Eve", + "1954-01-01": "New Year's Day", + "1954-01-06": "Epiphany", + "1954-02-05": "Feast of Saint Agatha", + "1954-03-25": "Anniversary of the Arengo", + "1954-04-18": "Easter Sunday", + "1954-04-19": "Easter Monday", + "1954-05-01": "Labour Day", + "1954-06-17": "Corpus Cristi", + "1954-07-28": "Liberation from Fascism Day", + "1954-08-15": "Assumption Day", + "1954-09-03": "Foundation Day", + "1954-11-01": "All Saints' Day", + "1954-11-02": "Commemoration of the Dead", + "1954-12-08": "Immaculate Conception Day", + "1954-12-24": "Christmas Eve", + "1954-12-25": "Christmas Day", + "1954-12-26": "Saint Stephen's Day", + "1954-12-31": "New Year's Eve", + "1955-01-01": "New Year's Day", + "1955-01-06": "Epiphany", + "1955-02-05": "Feast of Saint Agatha", + "1955-03-25": "Anniversary of the Arengo", + "1955-04-10": "Easter Sunday", + "1955-04-11": "Easter Monday", + "1955-05-01": "Labour Day", + "1955-06-09": "Corpus Cristi", + "1955-07-28": "Liberation from Fascism Day", + "1955-08-15": "Assumption Day", + "1955-09-03": "Foundation Day", + "1955-11-01": "All Saints' Day", + "1955-11-02": "Commemoration of the Dead", + "1955-12-08": "Immaculate Conception Day", + "1955-12-24": "Christmas Eve", + "1955-12-25": "Christmas Day", + "1955-12-26": "Saint Stephen's Day", + "1955-12-31": "New Year's Eve", + "1956-01-01": "New Year's Day", + "1956-01-06": "Epiphany", + "1956-02-05": "Feast of Saint Agatha", + "1956-03-25": "Anniversary of the Arengo", + "1956-04-01": "Easter Sunday", + "1956-04-02": "Easter Monday", + "1956-05-01": "Labour Day", + "1956-05-31": "Corpus Cristi", + "1956-07-28": "Liberation from Fascism Day", + "1956-08-15": "Assumption Day", + "1956-09-03": "Foundation Day", + "1956-11-01": "All Saints' Day", + "1956-11-02": "Commemoration of the Dead", + "1956-12-08": "Immaculate Conception Day", + "1956-12-24": "Christmas Eve", + "1956-12-25": "Christmas Day", + "1956-12-26": "Saint Stephen's Day", + "1956-12-31": "New Year's Eve", + "1957-01-01": "New Year's Day", + "1957-01-06": "Epiphany", + "1957-02-05": "Feast of Saint Agatha", + "1957-03-25": "Anniversary of the Arengo", + "1957-04-21": "Easter Sunday", + "1957-04-22": "Easter Monday", + "1957-05-01": "Labour Day", + "1957-06-20": "Corpus Cristi", + "1957-07-28": "Liberation from Fascism Day", + "1957-08-15": "Assumption Day", + "1957-09-03": "Foundation Day", + "1957-11-01": "All Saints' Day", + "1957-11-02": "Commemoration of the Dead", + "1957-12-08": "Immaculate Conception Day", + "1957-12-24": "Christmas Eve", + "1957-12-25": "Christmas Day", + "1957-12-26": "Saint Stephen's Day", + "1957-12-31": "New Year's Eve", + "1958-01-01": "New Year's Day", + "1958-01-06": "Epiphany", + "1958-02-05": "Feast of Saint Agatha", + "1958-03-25": "Anniversary of the Arengo", + "1958-04-06": "Easter Sunday", + "1958-04-07": "Easter Monday", + "1958-05-01": "Labour Day", + "1958-06-05": "Corpus Cristi", + "1958-07-28": "Liberation from Fascism Day", + "1958-08-15": "Assumption Day", + "1958-09-03": "Foundation Day", + "1958-11-01": "All Saints' Day", + "1958-11-02": "Commemoration of the Dead", + "1958-12-08": "Immaculate Conception Day", + "1958-12-24": "Christmas Eve", + "1958-12-25": "Christmas Day", + "1958-12-26": "Saint Stephen's Day", + "1958-12-31": "New Year's Eve", + "1959-01-01": "New Year's Day", + "1959-01-06": "Epiphany", + "1959-02-05": "Feast of Saint Agatha", + "1959-03-25": "Anniversary of the Arengo", + "1959-03-29": "Easter Sunday", + "1959-03-30": "Easter Monday", + "1959-05-01": "Labour Day", + "1959-05-28": "Corpus Cristi", + "1959-07-28": "Liberation from Fascism Day", + "1959-08-15": "Assumption Day", + "1959-09-03": "Foundation Day", + "1959-11-01": "All Saints' Day", + "1959-11-02": "Commemoration of the Dead", + "1959-12-08": "Immaculate Conception Day", + "1959-12-24": "Christmas Eve", + "1959-12-25": "Christmas Day", + "1959-12-26": "Saint Stephen's Day", + "1959-12-31": "New Year's Eve", + "1960-01-01": "New Year's Day", + "1960-01-06": "Epiphany", + "1960-02-05": "Feast of Saint Agatha", + "1960-03-25": "Anniversary of the Arengo", + "1960-04-17": "Easter Sunday", + "1960-04-18": "Easter Monday", + "1960-05-01": "Labour Day", + "1960-06-16": "Corpus Cristi", + "1960-07-28": "Liberation from Fascism Day", + "1960-08-15": "Assumption Day", + "1960-09-03": "Foundation Day", + "1960-11-01": "All Saints' Day", + "1960-11-02": "Commemoration of the Dead", + "1960-12-08": "Immaculate Conception Day", + "1960-12-24": "Christmas Eve", + "1960-12-25": "Christmas Day", + "1960-12-26": "Saint Stephen's Day", + "1960-12-31": "New Year's Eve", + "1961-01-01": "New Year's Day", + "1961-01-06": "Epiphany", + "1961-02-05": "Feast of Saint Agatha", + "1961-03-25": "Anniversary of the Arengo", + "1961-04-02": "Easter Sunday", + "1961-04-03": "Easter Monday", + "1961-05-01": "Labour Day", + "1961-06-01": "Corpus Cristi", + "1961-07-28": "Liberation from Fascism Day", + "1961-08-15": "Assumption Day", + "1961-09-03": "Foundation Day", + "1961-11-01": "All Saints' Day", + "1961-11-02": "Commemoration of the Dead", + "1961-12-08": "Immaculate Conception Day", + "1961-12-24": "Christmas Eve", + "1961-12-25": "Christmas Day", + "1961-12-26": "Saint Stephen's Day", + "1961-12-31": "New Year's Eve", + "1962-01-01": "New Year's Day", + "1962-01-06": "Epiphany", + "1962-02-05": "Feast of Saint Agatha", + "1962-03-25": "Anniversary of the Arengo", + "1962-04-22": "Easter Sunday", + "1962-04-23": "Easter Monday", + "1962-05-01": "Labour Day", + "1962-06-21": "Corpus Cristi", + "1962-07-28": "Liberation from Fascism Day", + "1962-08-15": "Assumption Day", + "1962-09-03": "Foundation Day", + "1962-11-01": "All Saints' Day", + "1962-11-02": "Commemoration of the Dead", + "1962-12-08": "Immaculate Conception Day", + "1962-12-24": "Christmas Eve", + "1962-12-25": "Christmas Day", + "1962-12-26": "Saint Stephen's Day", + "1962-12-31": "New Year's Eve", + "1963-01-01": "New Year's Day", + "1963-01-06": "Epiphany", + "1963-02-05": "Feast of Saint Agatha", + "1963-03-25": "Anniversary of the Arengo", + "1963-04-14": "Easter Sunday", + "1963-04-15": "Easter Monday", + "1963-05-01": "Labour Day", + "1963-06-13": "Corpus Cristi", + "1963-07-28": "Liberation from Fascism Day", + "1963-08-15": "Assumption Day", + "1963-09-03": "Foundation Day", + "1963-11-01": "All Saints' Day", + "1963-11-02": "Commemoration of the Dead", + "1963-12-08": "Immaculate Conception Day", + "1963-12-24": "Christmas Eve", + "1963-12-25": "Christmas Day", + "1963-12-26": "Saint Stephen's Day", + "1963-12-31": "New Year's Eve", + "1964-01-01": "New Year's Day", + "1964-01-06": "Epiphany", + "1964-02-05": "Feast of Saint Agatha", + "1964-03-25": "Anniversary of the Arengo", + "1964-03-29": "Easter Sunday", + "1964-03-30": "Easter Monday", + "1964-05-01": "Labour Day", + "1964-05-28": "Corpus Cristi", + "1964-07-28": "Liberation from Fascism Day", + "1964-08-15": "Assumption Day", + "1964-09-03": "Foundation Day", + "1964-11-01": "All Saints' Day", + "1964-11-02": "Commemoration of the Dead", + "1964-12-08": "Immaculate Conception Day", + "1964-12-24": "Christmas Eve", + "1964-12-25": "Christmas Day", + "1964-12-26": "Saint Stephen's Day", + "1964-12-31": "New Year's Eve", + "1965-01-01": "New Year's Day", + "1965-01-06": "Epiphany", + "1965-02-05": "Feast of Saint Agatha", + "1965-03-25": "Anniversary of the Arengo", + "1965-04-18": "Easter Sunday", + "1965-04-19": "Easter Monday", + "1965-05-01": "Labour Day", + "1965-06-17": "Corpus Cristi", + "1965-07-28": "Liberation from Fascism Day", + "1965-08-15": "Assumption Day", + "1965-09-03": "Foundation Day", + "1965-11-01": "All Saints' Day", + "1965-11-02": "Commemoration of the Dead", + "1965-12-08": "Immaculate Conception Day", + "1965-12-24": "Christmas Eve", + "1965-12-25": "Christmas Day", + "1965-12-26": "Saint Stephen's Day", + "1965-12-31": "New Year's Eve", + "1966-01-01": "New Year's Day", + "1966-01-06": "Epiphany", + "1966-02-05": "Feast of Saint Agatha", + "1966-03-25": "Anniversary of the Arengo", + "1966-04-10": "Easter Sunday", + "1966-04-11": "Easter Monday", + "1966-05-01": "Labour Day", + "1966-06-09": "Corpus Cristi", + "1966-07-28": "Liberation from Fascism Day", + "1966-08-15": "Assumption Day", + "1966-09-03": "Foundation Day", + "1966-11-01": "All Saints' Day", + "1966-11-02": "Commemoration of the Dead", + "1966-12-08": "Immaculate Conception Day", + "1966-12-24": "Christmas Eve", + "1966-12-25": "Christmas Day", + "1966-12-26": "Saint Stephen's Day", + "1966-12-31": "New Year's Eve", + "1967-01-01": "New Year's Day", + "1967-01-06": "Epiphany", + "1967-02-05": "Feast of Saint Agatha", + "1967-03-25": "Anniversary of the Arengo", + "1967-03-26": "Easter Sunday", + "1967-03-27": "Easter Monday", + "1967-05-01": "Labour Day", + "1967-05-25": "Corpus Cristi", + "1967-07-28": "Liberation from Fascism Day", + "1967-08-15": "Assumption Day", + "1967-09-03": "Foundation Day", + "1967-11-01": "All Saints' Day", + "1967-11-02": "Commemoration of the Dead", + "1967-12-08": "Immaculate Conception Day", + "1967-12-24": "Christmas Eve", + "1967-12-25": "Christmas Day", + "1967-12-26": "Saint Stephen's Day", + "1967-12-31": "New Year's Eve", + "1968-01-01": "New Year's Day", + "1968-01-06": "Epiphany", + "1968-02-05": "Feast of Saint Agatha", + "1968-03-25": "Anniversary of the Arengo", + "1968-04-14": "Easter Sunday", + "1968-04-15": "Easter Monday", + "1968-05-01": "Labour Day", + "1968-06-13": "Corpus Cristi", + "1968-07-28": "Liberation from Fascism Day", + "1968-08-15": "Assumption Day", + "1968-09-03": "Foundation Day", + "1968-11-01": "All Saints' Day", + "1968-11-02": "Commemoration of the Dead", + "1968-12-08": "Immaculate Conception Day", + "1968-12-24": "Christmas Eve", + "1968-12-25": "Christmas Day", + "1968-12-26": "Saint Stephen's Day", + "1968-12-31": "New Year's Eve", + "1969-01-01": "New Year's Day", + "1969-01-06": "Epiphany", + "1969-02-05": "Feast of Saint Agatha", + "1969-03-25": "Anniversary of the Arengo", + "1969-04-06": "Easter Sunday", + "1969-04-07": "Easter Monday", + "1969-05-01": "Labour Day", + "1969-06-05": "Corpus Cristi", + "1969-07-28": "Liberation from Fascism Day", + "1969-08-15": "Assumption Day", + "1969-09-03": "Foundation Day", + "1969-11-01": "All Saints' Day", + "1969-11-02": "Commemoration of the Dead", + "1969-12-08": "Immaculate Conception Day", + "1969-12-24": "Christmas Eve", + "1969-12-25": "Christmas Day", + "1969-12-26": "Saint Stephen's Day", + "1969-12-31": "New Year's Eve", + "1970-01-01": "New Year's Day", + "1970-01-06": "Epiphany", + "1970-02-05": "Feast of Saint Agatha", + "1970-03-25": "Anniversary of the Arengo", + "1970-03-29": "Easter Sunday", + "1970-03-30": "Easter Monday", + "1970-05-01": "Labour Day", + "1970-05-28": "Corpus Cristi", + "1970-07-28": "Liberation from Fascism Day", + "1970-08-15": "Assumption Day", + "1970-09-03": "Foundation Day", + "1970-11-01": "All Saints' Day", + "1970-11-02": "Commemoration of the Dead", + "1970-12-08": "Immaculate Conception Day", + "1970-12-24": "Christmas Eve", + "1970-12-25": "Christmas Day", + "1970-12-26": "Saint Stephen's Day", + "1970-12-31": "New Year's Eve", + "1971-01-01": "New Year's Day", + "1971-01-06": "Epiphany", + "1971-02-05": "Feast of Saint Agatha", + "1971-03-25": "Anniversary of the Arengo", + "1971-04-11": "Easter Sunday", + "1971-04-12": "Easter Monday", + "1971-05-01": "Labour Day", + "1971-06-10": "Corpus Cristi", + "1971-07-28": "Liberation from Fascism Day", + "1971-08-15": "Assumption Day", + "1971-09-03": "Foundation Day", + "1971-11-01": "All Saints' Day", + "1971-11-02": "Commemoration of the Dead", + "1971-12-08": "Immaculate Conception Day", + "1971-12-24": "Christmas Eve", + "1971-12-25": "Christmas Day", + "1971-12-26": "Saint Stephen's Day", + "1971-12-31": "New Year's Eve", + "1972-01-01": "New Year's Day", + "1972-01-06": "Epiphany", + "1972-02-05": "Feast of Saint Agatha", + "1972-03-25": "Anniversary of the Arengo", + "1972-04-02": "Easter Sunday", + "1972-04-03": "Easter Monday", + "1972-05-01": "Labour Day", + "1972-06-01": "Corpus Cristi", + "1972-07-28": "Liberation from Fascism Day", + "1972-08-15": "Assumption Day", + "1972-09-03": "Foundation Day", + "1972-11-01": "All Saints' Day", + "1972-11-02": "Commemoration of the Dead", + "1972-12-08": "Immaculate Conception Day", + "1972-12-24": "Christmas Eve", + "1972-12-25": "Christmas Day", + "1972-12-26": "Saint Stephen's Day", + "1972-12-31": "New Year's Eve", + "1973-01-01": "New Year's Day", + "1973-01-06": "Epiphany", + "1973-02-05": "Feast of Saint Agatha", + "1973-03-25": "Anniversary of the Arengo", + "1973-04-22": "Easter Sunday", + "1973-04-23": "Easter Monday", + "1973-05-01": "Labour Day", + "1973-06-21": "Corpus Cristi", + "1973-07-28": "Liberation from Fascism Day", + "1973-08-15": "Assumption Day", + "1973-09-03": "Foundation Day", + "1973-11-01": "All Saints' Day", + "1973-11-02": "Commemoration of the Dead", + "1973-12-08": "Immaculate Conception Day", + "1973-12-24": "Christmas Eve", + "1973-12-25": "Christmas Day", + "1973-12-26": "Saint Stephen's Day", + "1973-12-31": "New Year's Eve", + "1974-01-01": "New Year's Day", + "1974-01-06": "Epiphany", + "1974-02-05": "Feast of Saint Agatha", + "1974-03-25": "Anniversary of the Arengo", + "1974-04-14": "Easter Sunday", + "1974-04-15": "Easter Monday", + "1974-05-01": "Labour Day", + "1974-06-13": "Corpus Cristi", + "1974-07-28": "Liberation from Fascism Day", + "1974-08-15": "Assumption Day", + "1974-09-03": "Foundation Day", + "1974-11-01": "All Saints' Day", + "1974-11-02": "Commemoration of the Dead", + "1974-12-08": "Immaculate Conception Day", + "1974-12-24": "Christmas Eve", + "1974-12-25": "Christmas Day", + "1974-12-26": "Saint Stephen's Day", + "1974-12-31": "New Year's Eve", + "1975-01-01": "New Year's Day", + "1975-01-06": "Epiphany", + "1975-02-05": "Feast of Saint Agatha", + "1975-03-25": "Anniversary of the Arengo", + "1975-03-30": "Easter Sunday", + "1975-03-31": "Easter Monday", + "1975-05-01": "Labour Day", + "1975-05-29": "Corpus Cristi", + "1975-07-28": "Liberation from Fascism Day", + "1975-08-15": "Assumption Day", + "1975-09-03": "Foundation Day", + "1975-11-01": "All Saints' Day", + "1975-11-02": "Commemoration of the Dead", + "1975-12-08": "Immaculate Conception Day", + "1975-12-24": "Christmas Eve", + "1975-12-25": "Christmas Day", + "1975-12-26": "Saint Stephen's Day", + "1975-12-31": "New Year's Eve", + "1976-01-01": "New Year's Day", + "1976-01-06": "Epiphany", + "1976-02-05": "Feast of Saint Agatha", + "1976-03-25": "Anniversary of the Arengo", + "1976-04-18": "Easter Sunday", + "1976-04-19": "Easter Monday", + "1976-05-01": "Labour Day", + "1976-06-17": "Corpus Cristi", + "1976-07-28": "Liberation from Fascism Day", + "1976-08-15": "Assumption Day", + "1976-09-03": "Foundation Day", + "1976-11-01": "All Saints' Day", + "1976-11-02": "Commemoration of the Dead", + "1976-12-08": "Immaculate Conception Day", + "1976-12-24": "Christmas Eve", + "1976-12-25": "Christmas Day", + "1976-12-26": "Saint Stephen's Day", + "1976-12-31": "New Year's Eve", + "1977-01-01": "New Year's Day", + "1977-01-06": "Epiphany", + "1977-02-05": "Feast of Saint Agatha", + "1977-03-25": "Anniversary of the Arengo", + "1977-04-10": "Easter Sunday", + "1977-04-11": "Easter Monday", + "1977-05-01": "Labour Day", + "1977-06-09": "Corpus Cristi", + "1977-07-28": "Liberation from Fascism Day", + "1977-08-15": "Assumption Day", + "1977-09-03": "Foundation Day", + "1977-11-01": "All Saints' Day", + "1977-11-02": "Commemoration of the Dead", + "1977-12-08": "Immaculate Conception Day", + "1977-12-24": "Christmas Eve", + "1977-12-25": "Christmas Day", + "1977-12-26": "Saint Stephen's Day", + "1977-12-31": "New Year's Eve", + "1978-01-01": "New Year's Day", + "1978-01-06": "Epiphany", + "1978-02-05": "Feast of Saint Agatha", + "1978-03-25": "Anniversary of the Arengo", + "1978-03-26": "Easter Sunday", + "1978-03-27": "Easter Monday", + "1978-05-01": "Labour Day", + "1978-05-25": "Corpus Cristi", + "1978-07-28": "Liberation from Fascism Day", + "1978-08-15": "Assumption Day", + "1978-09-03": "Foundation Day", + "1978-11-01": "All Saints' Day", + "1978-11-02": "Commemoration of the Dead", + "1978-12-08": "Immaculate Conception Day", + "1978-12-24": "Christmas Eve", + "1978-12-25": "Christmas Day", + "1978-12-26": "Saint Stephen's Day", + "1978-12-31": "New Year's Eve", + "1979-01-01": "New Year's Day", + "1979-01-06": "Epiphany", + "1979-02-05": "Feast of Saint Agatha", + "1979-03-25": "Anniversary of the Arengo", + "1979-04-15": "Easter Sunday", + "1979-04-16": "Easter Monday", + "1979-05-01": "Labour Day", + "1979-06-14": "Corpus Cristi", + "1979-07-28": "Liberation from Fascism Day", + "1979-08-15": "Assumption Day", + "1979-09-03": "Foundation Day", + "1979-11-01": "All Saints' Day", + "1979-11-02": "Commemoration of the Dead", + "1979-12-08": "Immaculate Conception Day", + "1979-12-24": "Christmas Eve", + "1979-12-25": "Christmas Day", + "1979-12-26": "Saint Stephen's Day", + "1979-12-31": "New Year's Eve", + "1980-01-01": "New Year's Day", + "1980-01-06": "Epiphany", + "1980-02-05": "Feast of Saint Agatha", + "1980-03-25": "Anniversary of the Arengo", + "1980-04-06": "Easter Sunday", + "1980-04-07": "Easter Monday", + "1980-05-01": "Labour Day", + "1980-06-05": "Corpus Cristi", + "1980-07-28": "Liberation from Fascism Day", + "1980-08-15": "Assumption Day", + "1980-09-03": "Foundation Day", + "1980-11-01": "All Saints' Day", + "1980-11-02": "Commemoration of the Dead", + "1980-12-08": "Immaculate Conception Day", + "1980-12-24": "Christmas Eve", + "1980-12-25": "Christmas Day", + "1980-12-26": "Saint Stephen's Day", + "1980-12-31": "New Year's Eve", + "1981-01-01": "New Year's Day", + "1981-01-06": "Epiphany", + "1981-02-05": "Feast of Saint Agatha", + "1981-03-25": "Anniversary of the Arengo", + "1981-04-19": "Easter Sunday", + "1981-04-20": "Easter Monday", + "1981-05-01": "Labour Day", + "1981-06-18": "Corpus Cristi", + "1981-07-28": "Liberation from Fascism Day", + "1981-08-15": "Assumption Day", + "1981-09-03": "Foundation Day", + "1981-11-01": "All Saints' Day", + "1981-11-02": "Commemoration of the Dead", + "1981-12-08": "Immaculate Conception Day", + "1981-12-24": "Christmas Eve", + "1981-12-25": "Christmas Day", + "1981-12-26": "Saint Stephen's Day", + "1981-12-31": "New Year's Eve", + "1982-01-01": "New Year's Day", + "1982-01-06": "Epiphany", + "1982-02-05": "Feast of Saint Agatha", + "1982-03-25": "Anniversary of the Arengo", + "1982-04-11": "Easter Sunday", + "1982-04-12": "Easter Monday", + "1982-05-01": "Labour Day", + "1982-06-10": "Corpus Cristi", + "1982-07-28": "Liberation from Fascism Day", + "1982-08-15": "Assumption Day", + "1982-09-03": "Foundation Day", + "1982-11-01": "All Saints' Day", + "1982-11-02": "Commemoration of the Dead", + "1982-12-08": "Immaculate Conception Day", + "1982-12-24": "Christmas Eve", + "1982-12-25": "Christmas Day", + "1982-12-26": "Saint Stephen's Day", + "1982-12-31": "New Year's Eve", + "1983-01-01": "New Year's Day", + "1983-01-06": "Epiphany", + "1983-02-05": "Feast of Saint Agatha", + "1983-03-25": "Anniversary of the Arengo", + "1983-04-03": "Easter Sunday", + "1983-04-04": "Easter Monday", + "1983-05-01": "Labour Day", + "1983-06-02": "Corpus Cristi", + "1983-07-28": "Liberation from Fascism Day", + "1983-08-15": "Assumption Day", + "1983-09-03": "Foundation Day", + "1983-11-01": "All Saints' Day", + "1983-11-02": "Commemoration of the Dead", + "1983-12-08": "Immaculate Conception Day", + "1983-12-24": "Christmas Eve", + "1983-12-25": "Christmas Day", + "1983-12-26": "Saint Stephen's Day", + "1983-12-31": "New Year's Eve", + "1984-01-01": "New Year's Day", + "1984-01-06": "Epiphany", + "1984-02-05": "Feast of Saint Agatha", + "1984-03-25": "Anniversary of the Arengo", + "1984-04-22": "Easter Sunday", + "1984-04-23": "Easter Monday", + "1984-05-01": "Labour Day", + "1984-06-21": "Corpus Cristi", + "1984-07-28": "Liberation from Fascism Day", + "1984-08-15": "Assumption Day", + "1984-09-03": "Foundation Day", + "1984-11-01": "All Saints' Day", + "1984-11-02": "Commemoration of the Dead", + "1984-12-08": "Immaculate Conception Day", + "1984-12-24": "Christmas Eve", + "1984-12-25": "Christmas Day", + "1984-12-26": "Saint Stephen's Day", + "1984-12-31": "New Year's Eve", + "1985-01-01": "New Year's Day", + "1985-01-06": "Epiphany", + "1985-02-05": "Feast of Saint Agatha", + "1985-03-25": "Anniversary of the Arengo", + "1985-04-07": "Easter Sunday", + "1985-04-08": "Easter Monday", + "1985-05-01": "Labour Day", + "1985-06-06": "Corpus Cristi", + "1985-07-28": "Liberation from Fascism Day", + "1985-08-15": "Assumption Day", + "1985-09-03": "Foundation Day", + "1985-11-01": "All Saints' Day", + "1985-11-02": "Commemoration of the Dead", + "1985-12-08": "Immaculate Conception Day", + "1985-12-24": "Christmas Eve", + "1985-12-25": "Christmas Day", + "1985-12-26": "Saint Stephen's Day", + "1985-12-31": "New Year's Eve", + "1986-01-01": "New Year's Day", + "1986-01-06": "Epiphany", + "1986-02-05": "Feast of Saint Agatha", + "1986-03-25": "Anniversary of the Arengo", + "1986-03-30": "Easter Sunday", + "1986-03-31": "Easter Monday", + "1986-05-01": "Labour Day", + "1986-05-29": "Corpus Cristi", + "1986-07-28": "Liberation from Fascism Day", + "1986-08-15": "Assumption Day", + "1986-09-03": "Foundation Day", + "1986-11-01": "All Saints' Day", + "1986-11-02": "Commemoration of the Dead", + "1986-12-08": "Immaculate Conception Day", + "1986-12-24": "Christmas Eve", + "1986-12-25": "Christmas Day", + "1986-12-26": "Saint Stephen's Day", + "1986-12-31": "New Year's Eve", + "1987-01-01": "New Year's Day", + "1987-01-06": "Epiphany", + "1987-02-05": "Feast of Saint Agatha", + "1987-03-25": "Anniversary of the Arengo", + "1987-04-19": "Easter Sunday", + "1987-04-20": "Easter Monday", + "1987-05-01": "Labour Day", + "1987-06-18": "Corpus Cristi", + "1987-07-28": "Liberation from Fascism Day", + "1987-08-15": "Assumption Day", + "1987-09-03": "Foundation Day", + "1987-11-01": "All Saints' Day", + "1987-11-02": "Commemoration of the Dead", + "1987-12-08": "Immaculate Conception Day", + "1987-12-24": "Christmas Eve", + "1987-12-25": "Christmas Day", + "1987-12-26": "Saint Stephen's Day", + "1987-12-31": "New Year's Eve", + "1988-01-01": "New Year's Day", + "1988-01-06": "Epiphany", + "1988-02-05": "Feast of Saint Agatha", + "1988-03-25": "Anniversary of the Arengo", + "1988-04-03": "Easter Sunday", + "1988-04-04": "Easter Monday", + "1988-05-01": "Labour Day", + "1988-06-02": "Corpus Cristi", + "1988-07-28": "Liberation from Fascism Day", + "1988-08-15": "Assumption Day", + "1988-09-03": "Foundation Day", + "1988-11-01": "All Saints' Day", + "1988-11-02": "Commemoration of the Dead", + "1988-12-08": "Immaculate Conception Day", + "1988-12-24": "Christmas Eve", + "1988-12-25": "Christmas Day", + "1988-12-26": "Saint Stephen's Day", + "1988-12-31": "New Year's Eve", + "1989-01-01": "New Year's Day", + "1989-01-06": "Epiphany", + "1989-02-05": "Feast of Saint Agatha", + "1989-03-25": "Anniversary of the Arengo", + "1989-03-26": "Easter Sunday", + "1989-03-27": "Easter Monday", + "1989-05-01": "Labour Day", + "1989-05-25": "Corpus Cristi", + "1989-07-28": "Liberation from Fascism Day", + "1989-08-15": "Assumption Day", + "1989-09-03": "Foundation Day", + "1989-11-01": "All Saints' Day", + "1989-11-02": "Commemoration of the Dead", + "1989-12-08": "Immaculate Conception Day", + "1989-12-24": "Christmas Eve", + "1989-12-25": "Christmas Day", + "1989-12-26": "Saint Stephen's Day", + "1989-12-31": "New Year's Eve", + "1990-01-01": "New Year's Day", + "1990-01-06": "Epiphany", + "1990-02-05": "Feast of Saint Agatha", + "1990-03-25": "Anniversary of the Arengo", + "1990-04-15": "Easter Sunday", + "1990-04-16": "Easter Monday", + "1990-05-01": "Labour Day", + "1990-06-14": "Corpus Cristi", + "1990-07-28": "Liberation from Fascism Day", + "1990-08-15": "Assumption Day", + "1990-09-03": "Foundation Day", + "1990-11-01": "All Saints' Day", + "1990-11-02": "Commemoration of the Dead", + "1990-12-08": "Immaculate Conception Day", + "1990-12-24": "Christmas Eve", + "1990-12-25": "Christmas Day", + "1990-12-26": "Saint Stephen's Day", + "1990-12-31": "New Year's Eve", + "1991-01-01": "New Year's Day", + "1991-01-06": "Epiphany", + "1991-02-05": "Feast of Saint Agatha", + "1991-03-25": "Anniversary of the Arengo", + "1991-03-31": "Easter Sunday", + "1991-04-01": "Easter Monday", + "1991-05-01": "Labour Day", + "1991-05-30": "Corpus Cristi", + "1991-07-28": "Liberation from Fascism Day", + "1991-08-15": "Assumption Day", + "1991-09-03": "Foundation Day", + "1991-11-01": "All Saints' Day", + "1991-11-02": "Commemoration of the Dead", + "1991-12-08": "Immaculate Conception Day", + "1991-12-24": "Christmas Eve", + "1991-12-25": "Christmas Day", + "1991-12-26": "Saint Stephen's Day", + "1991-12-31": "New Year's Eve", + "1992-01-01": "New Year's Day", + "1992-01-06": "Epiphany", + "1992-02-05": "Feast of Saint Agatha", + "1992-03-25": "Anniversary of the Arengo", + "1992-04-19": "Easter Sunday", + "1992-04-20": "Easter Monday", + "1992-05-01": "Labour Day", + "1992-06-18": "Corpus Cristi", + "1992-07-28": "Liberation from Fascism Day", + "1992-08-15": "Assumption Day", + "1992-09-03": "Foundation Day", + "1992-11-01": "All Saints' Day", + "1992-11-02": "Commemoration of the Dead", + "1992-12-08": "Immaculate Conception Day", + "1992-12-24": "Christmas Eve", + "1992-12-25": "Christmas Day", + "1992-12-26": "Saint Stephen's Day", + "1992-12-31": "New Year's Eve", + "1993-01-01": "New Year's Day", + "1993-01-06": "Epiphany", + "1993-02-05": "Feast of Saint Agatha", + "1993-03-25": "Anniversary of the Arengo", + "1993-04-11": "Easter Sunday", + "1993-04-12": "Easter Monday", + "1993-05-01": "Labour Day", + "1993-06-10": "Corpus Cristi", + "1993-07-28": "Liberation from Fascism Day", + "1993-08-15": "Assumption Day", + "1993-09-03": "Foundation Day", + "1993-11-01": "All Saints' Day", + "1993-11-02": "Commemoration of the Dead", + "1993-12-08": "Immaculate Conception Day", + "1993-12-24": "Christmas Eve", + "1993-12-25": "Christmas Day", + "1993-12-26": "Saint Stephen's Day", + "1993-12-31": "New Year's Eve", + "1994-01-01": "New Year's Day", + "1994-01-06": "Epiphany", + "1994-02-05": "Feast of Saint Agatha", + "1994-03-25": "Anniversary of the Arengo", + "1994-04-03": "Easter Sunday", + "1994-04-04": "Easter Monday", + "1994-05-01": "Labour Day", + "1994-06-02": "Corpus Cristi", + "1994-07-28": "Liberation from Fascism Day", + "1994-08-15": "Assumption Day", + "1994-09-03": "Foundation Day", + "1994-11-01": "All Saints' Day", + "1994-11-02": "Commemoration of the Dead", + "1994-12-08": "Immaculate Conception Day", + "1994-12-24": "Christmas Eve", + "1994-12-25": "Christmas Day", + "1994-12-26": "Saint Stephen's Day", + "1994-12-31": "New Year's Eve", + "1995-01-01": "New Year's Day", + "1995-01-06": "Epiphany", + "1995-02-05": "Feast of Saint Agatha", + "1995-03-25": "Anniversary of the Arengo", + "1995-04-16": "Easter Sunday", + "1995-04-17": "Easter Monday", + "1995-05-01": "Labour Day", + "1995-06-15": "Corpus Cristi", + "1995-07-28": "Liberation from Fascism Day", + "1995-08-15": "Assumption Day", + "1995-09-03": "Foundation Day", + "1995-11-01": "All Saints' Day", + "1995-11-02": "Commemoration of the Dead", + "1995-12-08": "Immaculate Conception Day", + "1995-12-24": "Christmas Eve", + "1995-12-25": "Christmas Day", + "1995-12-26": "Saint Stephen's Day", + "1995-12-31": "New Year's Eve", + "1996-01-01": "New Year's Day", + "1996-01-06": "Epiphany", + "1996-02-05": "Feast of Saint Agatha", + "1996-03-25": "Anniversary of the Arengo", + "1996-04-07": "Easter Sunday", + "1996-04-08": "Easter Monday", + "1996-05-01": "Labour Day", + "1996-06-06": "Corpus Cristi", + "1996-07-28": "Liberation from Fascism Day", + "1996-08-15": "Assumption Day", + "1996-09-03": "Foundation Day", + "1996-11-01": "All Saints' Day", + "1996-11-02": "Commemoration of the Dead", + "1996-12-08": "Immaculate Conception Day", + "1996-12-24": "Christmas Eve", + "1996-12-25": "Christmas Day", + "1996-12-26": "Saint Stephen's Day", + "1996-12-31": "New Year's Eve", + "1997-01-01": "New Year's Day", + "1997-01-06": "Epiphany", + "1997-02-05": "Feast of Saint Agatha", + "1997-03-25": "Anniversary of the Arengo", + "1997-03-30": "Easter Sunday", + "1997-03-31": "Easter Monday", + "1997-05-01": "Labour Day", + "1997-05-29": "Corpus Cristi", + "1997-07-28": "Liberation from Fascism Day", + "1997-08-15": "Assumption Day", + "1997-09-03": "Foundation Day", + "1997-11-01": "All Saints' Day", + "1997-11-02": "Commemoration of the Dead", + "1997-12-08": "Immaculate Conception Day", + "1997-12-24": "Christmas Eve", + "1997-12-25": "Christmas Day", + "1997-12-26": "Saint Stephen's Day", + "1997-12-31": "New Year's Eve", + "1998-01-01": "New Year's Day", + "1998-01-06": "Epiphany", + "1998-02-05": "Feast of Saint Agatha", + "1998-03-25": "Anniversary of the Arengo", + "1998-04-12": "Easter Sunday", + "1998-04-13": "Easter Monday", + "1998-05-01": "Labour Day", + "1998-06-11": "Corpus Cristi", + "1998-07-28": "Liberation from Fascism Day", + "1998-08-15": "Assumption Day", + "1998-09-03": "Foundation Day", + "1998-11-01": "All Saints' Day", + "1998-11-02": "Commemoration of the Dead", + "1998-12-08": "Immaculate Conception Day", + "1998-12-24": "Christmas Eve", + "1998-12-25": "Christmas Day", + "1998-12-26": "Saint Stephen's Day", + "1998-12-31": "New Year's Eve", + "1999-01-01": "New Year's Day", + "1999-01-06": "Epiphany", + "1999-02-05": "Feast of Saint Agatha", + "1999-03-25": "Anniversary of the Arengo", + "1999-04-04": "Easter Sunday", + "1999-04-05": "Easter Monday", + "1999-05-01": "Labour Day", + "1999-06-03": "Corpus Cristi", + "1999-07-28": "Liberation from Fascism Day", + "1999-08-15": "Assumption Day", + "1999-09-03": "Foundation Day", + "1999-11-01": "All Saints' Day", + "1999-11-02": "Commemoration of the Dead", + "1999-12-08": "Immaculate Conception Day", + "1999-12-24": "Christmas Eve", + "1999-12-25": "Christmas Day", + "1999-12-26": "Saint Stephen's Day", + "1999-12-31": "New Year's Eve", + "2000-01-01": "New Year's Day", + "2000-01-06": "Epiphany", + "2000-02-05": "Feast of Saint Agatha", + "2000-03-25": "Anniversary of the Arengo", + "2000-04-23": "Easter Sunday", + "2000-04-24": "Easter Monday", + "2000-05-01": "Labour Day", + "2000-06-22": "Corpus Cristi", + "2000-07-28": "Liberation from Fascism Day", + "2000-08-15": "Assumption Day", + "2000-09-03": "Foundation Day", + "2000-11-01": "All Saints' Day", + "2000-11-02": "Commemoration of the Dead", + "2000-12-08": "Immaculate Conception Day", + "2000-12-24": "Christmas Eve", + "2000-12-25": "Christmas Day", + "2000-12-26": "Saint Stephen's Day", + "2000-12-31": "New Year's Eve", + "2001-01-01": "New Year's Day", + "2001-01-06": "Epiphany", + "2001-02-05": "Feast of Saint Agatha", + "2001-03-25": "Anniversary of the Arengo", + "2001-04-15": "Easter Sunday", + "2001-04-16": "Easter Monday", + "2001-05-01": "Labour Day", + "2001-06-14": "Corpus Cristi", + "2001-07-28": "Liberation from Fascism Day", + "2001-08-15": "Assumption Day", + "2001-09-03": "Foundation Day", + "2001-11-01": "All Saints' Day", + "2001-11-02": "Commemoration of the Dead", + "2001-12-08": "Immaculate Conception Day", + "2001-12-24": "Christmas Eve", + "2001-12-25": "Christmas Day", + "2001-12-26": "Saint Stephen's Day", + "2001-12-31": "New Year's Eve", + "2002-01-01": "New Year's Day", + "2002-01-06": "Epiphany", + "2002-02-05": "Feast of Saint Agatha", + "2002-03-25": "Anniversary of the Arengo", + "2002-03-31": "Easter Sunday", + "2002-04-01": "Easter Monday", + "2002-05-01": "Labour Day", + "2002-05-30": "Corpus Cristi", + "2002-07-28": "Liberation from Fascism Day", + "2002-08-15": "Assumption Day", + "2002-09-03": "Foundation Day", + "2002-11-01": "All Saints' Day", + "2002-11-02": "Commemoration of the Dead", + "2002-12-08": "Immaculate Conception Day", + "2002-12-24": "Christmas Eve", + "2002-12-25": "Christmas Day", + "2002-12-26": "Saint Stephen's Day", + "2002-12-31": "New Year's Eve", + "2003-01-01": "New Year's Day", + "2003-01-06": "Epiphany", + "2003-02-05": "Feast of Saint Agatha", + "2003-03-25": "Anniversary of the Arengo", + "2003-04-20": "Easter Sunday", + "2003-04-21": "Easter Monday", + "2003-05-01": "Labour Day", + "2003-06-19": "Corpus Cristi", + "2003-07-28": "Liberation from Fascism Day", + "2003-08-15": "Assumption Day", + "2003-09-03": "Foundation Day", + "2003-11-01": "All Saints' Day", + "2003-11-02": "Commemoration of the Dead", + "2003-12-08": "Immaculate Conception Day", + "2003-12-24": "Christmas Eve", + "2003-12-25": "Christmas Day", + "2003-12-26": "Saint Stephen's Day", + "2003-12-31": "New Year's Eve", + "2004-01-01": "New Year's Day", + "2004-01-06": "Epiphany", + "2004-02-05": "Feast of Saint Agatha", + "2004-03-25": "Anniversary of the Arengo", + "2004-04-11": "Easter Sunday", + "2004-04-12": "Easter Monday", + "2004-05-01": "Labour Day", + "2004-06-10": "Corpus Cristi", + "2004-07-28": "Liberation from Fascism Day", + "2004-08-15": "Assumption Day", + "2004-09-03": "Foundation Day", + "2004-11-01": "All Saints' Day", + "2004-11-02": "Commemoration of the Dead", + "2004-12-08": "Immaculate Conception Day", + "2004-12-24": "Christmas Eve", + "2004-12-25": "Christmas Day", + "2004-12-26": "Saint Stephen's Day", + "2004-12-31": "New Year's Eve", + "2005-01-01": "New Year's Day", + "2005-01-06": "Epiphany", + "2005-02-05": "Feast of Saint Agatha", + "2005-03-25": "Anniversary of the Arengo", + "2005-03-27": "Easter Sunday", + "2005-03-28": "Easter Monday", + "2005-05-01": "Labour Day", + "2005-05-26": "Corpus Cristi", + "2005-07-28": "Liberation from Fascism Day", + "2005-08-15": "Assumption Day", + "2005-09-03": "Foundation Day", + "2005-11-01": "All Saints' Day", + "2005-11-02": "Commemoration of the Dead", + "2005-12-08": "Immaculate Conception Day", + "2005-12-24": "Christmas Eve", + "2005-12-25": "Christmas Day", + "2005-12-26": "Saint Stephen's Day", + "2005-12-31": "New Year's Eve", + "2006-01-01": "New Year's Day", + "2006-01-06": "Epiphany", + "2006-02-05": "Feast of Saint Agatha", + "2006-03-25": "Anniversary of the Arengo", + "2006-04-16": "Easter Sunday", + "2006-04-17": "Easter Monday", + "2006-05-01": "Labour Day", + "2006-06-15": "Corpus Cristi", + "2006-07-28": "Liberation from Fascism Day", + "2006-08-15": "Assumption Day", + "2006-09-03": "Foundation Day", + "2006-11-01": "All Saints' Day", + "2006-11-02": "Commemoration of the Dead", + "2006-12-08": "Immaculate Conception Day", + "2006-12-24": "Christmas Eve", + "2006-12-25": "Christmas Day", + "2006-12-26": "Saint Stephen's Day", + "2006-12-31": "New Year's Eve", + "2007-01-01": "New Year's Day", + "2007-01-06": "Epiphany", + "2007-02-05": "Feast of Saint Agatha", + "2007-03-25": "Anniversary of the Arengo", + "2007-04-08": "Easter Sunday", + "2007-04-09": "Easter Monday", + "2007-05-01": "Labour Day", + "2007-06-07": "Corpus Cristi", + "2007-07-28": "Liberation from Fascism Day", + "2007-08-15": "Assumption Day", + "2007-09-03": "Foundation Day", + "2007-11-01": "All Saints' Day", + "2007-11-02": "Commemoration of the Dead", + "2007-12-08": "Immaculate Conception Day", + "2007-12-24": "Christmas Eve", + "2007-12-25": "Christmas Day", + "2007-12-26": "Saint Stephen's Day", + "2007-12-31": "New Year's Eve", + "2008-01-01": "New Year's Day", + "2008-01-06": "Epiphany", + "2008-02-05": "Feast of Saint Agatha", + "2008-03-23": "Easter Sunday", + "2008-03-24": "Easter Monday", + "2008-03-25": "Anniversary of the Arengo", + "2008-05-01": "Labour Day", + "2008-05-22": "Corpus Cristi", + "2008-07-28": "Liberation from Fascism Day", + "2008-08-15": "Assumption Day", + "2008-09-03": "Foundation Day", + "2008-11-01": "All Saints' Day", + "2008-11-02": "Commemoration of the Dead", + "2008-12-08": "Immaculate Conception Day", + "2008-12-24": "Christmas Eve", + "2008-12-25": "Christmas Day", + "2008-12-26": "Saint Stephen's Day", + "2008-12-31": "New Year's Eve", + "2009-01-01": "New Year's Day", + "2009-01-06": "Epiphany", + "2009-02-05": "Feast of Saint Agatha", + "2009-03-25": "Anniversary of the Arengo", + "2009-04-12": "Easter Sunday", + "2009-04-13": "Easter Monday", + "2009-05-01": "Labour Day", + "2009-06-11": "Corpus Cristi", + "2009-07-28": "Liberation from Fascism Day", + "2009-08-15": "Assumption Day", + "2009-09-03": "Foundation Day", + "2009-11-01": "All Saints' Day", + "2009-11-02": "Commemoration of the Dead", + "2009-12-08": "Immaculate Conception Day", + "2009-12-24": "Christmas Eve", + "2009-12-25": "Christmas Day", + "2009-12-26": "Saint Stephen's Day", + "2009-12-31": "New Year's Eve", + "2010-01-01": "New Year's Day", + "2010-01-06": "Epiphany", + "2010-02-05": "Feast of Saint Agatha", + "2010-03-25": "Anniversary of the Arengo", + "2010-04-04": "Easter Sunday", + "2010-04-05": "Easter Monday", + "2010-05-01": "Labour Day", + "2010-06-03": "Corpus Cristi", + "2010-07-28": "Liberation from Fascism Day", + "2010-08-15": "Assumption Day", + "2010-09-03": "Foundation Day", + "2010-11-01": "All Saints' Day", + "2010-11-02": "Commemoration of the Dead", + "2010-12-08": "Immaculate Conception Day", + "2010-12-24": "Christmas Eve", + "2010-12-25": "Christmas Day", + "2010-12-26": "Saint Stephen's Day", + "2010-12-31": "New Year's Eve", + "2011-01-01": "New Year's Day", + "2011-01-06": "Epiphany", + "2011-02-05": "Feast of Saint Agatha", + "2011-03-25": "Anniversary of the Arengo", + "2011-04-24": "Easter Sunday", + "2011-04-25": "Easter Monday", + "2011-05-01": "Labour Day", + "2011-06-23": "Corpus Cristi", + "2011-07-28": "Liberation from Fascism Day", + "2011-08-15": "Assumption Day", + "2011-09-03": "Foundation Day", + "2011-11-01": "All Saints' Day", + "2011-11-02": "Commemoration of the Dead", + "2011-12-08": "Immaculate Conception Day", + "2011-12-24": "Christmas Eve", + "2011-12-25": "Christmas Day", + "2011-12-26": "Saint Stephen's Day", + "2011-12-31": "New Year's Eve", + "2012-01-01": "New Year's Day", + "2012-01-06": "Epiphany", + "2012-02-05": "Feast of Saint Agatha", + "2012-03-25": "Anniversary of the Arengo", + "2012-04-08": "Easter Sunday", + "2012-04-09": "Easter Monday", + "2012-05-01": "Labour Day", + "2012-06-07": "Corpus Cristi", + "2012-07-28": "Liberation from Fascism Day", + "2012-08-15": "Assumption Day", + "2012-09-03": "Foundation Day", + "2012-11-01": "All Saints' Day", + "2012-11-02": "Commemoration of the Dead", + "2012-12-08": "Immaculate Conception Day", + "2012-12-24": "Christmas Eve", + "2012-12-25": "Christmas Day", + "2012-12-26": "Saint Stephen's Day", + "2012-12-31": "New Year's Eve", + "2013-01-01": "New Year's Day", + "2013-01-06": "Epiphany", + "2013-02-05": "Feast of Saint Agatha", + "2013-03-25": "Anniversary of the Arengo", + "2013-03-31": "Easter Sunday", + "2013-04-01": "Easter Monday", + "2013-05-01": "Labour Day", + "2013-05-30": "Corpus Cristi", + "2013-07-28": "Liberation from Fascism Day", + "2013-08-15": "Assumption Day", + "2013-09-03": "Foundation Day", + "2013-11-01": "All Saints' Day", + "2013-11-02": "Commemoration of the Dead", + "2013-12-08": "Immaculate Conception Day", + "2013-12-24": "Christmas Eve", + "2013-12-25": "Christmas Day", + "2013-12-26": "Saint Stephen's Day", + "2013-12-31": "New Year's Eve", + "2014-01-01": "New Year's Day", + "2014-01-06": "Epiphany", + "2014-02-05": "Feast of Saint Agatha", + "2014-03-25": "Anniversary of the Arengo", + "2014-04-20": "Easter Sunday", + "2014-04-21": "Easter Monday", + "2014-05-01": "Labour Day", + "2014-06-19": "Corpus Cristi", + "2014-07-28": "Liberation from Fascism Day", + "2014-08-15": "Assumption Day", + "2014-09-03": "Foundation Day", + "2014-11-01": "All Saints' Day", + "2014-11-02": "Commemoration of the Dead", + "2014-12-08": "Immaculate Conception Day", + "2014-12-24": "Christmas Eve", + "2014-12-25": "Christmas Day", + "2014-12-26": "Saint Stephen's Day", + "2014-12-31": "New Year's Eve", + "2015-01-01": "New Year's Day", + "2015-01-06": "Epiphany", + "2015-02-05": "Feast of Saint Agatha", + "2015-03-25": "Anniversary of the Arengo", + "2015-04-05": "Easter Sunday", + "2015-04-06": "Easter Monday", + "2015-05-01": "Labour Day", + "2015-06-04": "Corpus Cristi", + "2015-07-28": "Liberation from Fascism Day", + "2015-08-15": "Assumption Day", + "2015-09-03": "Foundation Day", + "2015-11-01": "All Saints' Day", + "2015-11-02": "Commemoration of the Dead", + "2015-12-08": "Immaculate Conception Day", + "2015-12-24": "Christmas Eve", + "2015-12-25": "Christmas Day", + "2015-12-26": "Saint Stephen's Day", + "2015-12-31": "New Year's Eve", + "2016-01-01": "New Year's Day", + "2016-01-06": "Epiphany", + "2016-02-05": "Feast of Saint Agatha", + "2016-03-25": "Anniversary of the Arengo", + "2016-03-27": "Easter Sunday", + "2016-03-28": "Easter Monday", + "2016-05-01": "Labour Day", + "2016-05-26": "Corpus Cristi", + "2016-07-28": "Liberation from Fascism Day", + "2016-08-15": "Assumption Day", + "2016-09-03": "Foundation Day", + "2016-11-01": "All Saints' Day", + "2016-11-02": "Commemoration of the Dead", + "2016-12-08": "Immaculate Conception Day", + "2016-12-24": "Christmas Eve", + "2016-12-25": "Christmas Day", + "2016-12-26": "Saint Stephen's Day", + "2016-12-31": "New Year's Eve", + "2017-01-01": "New Year's Day", + "2017-01-06": "Epiphany", + "2017-02-05": "Feast of Saint Agatha", + "2017-03-25": "Anniversary of the Arengo", + "2017-04-16": "Easter Sunday", + "2017-04-17": "Easter Monday", + "2017-05-01": "Labour Day", + "2017-06-15": "Corpus Cristi", + "2017-07-28": "Liberation from Fascism Day", + "2017-08-15": "Assumption Day", + "2017-09-03": "Foundation Day", + "2017-11-01": "All Saints' Day", + "2017-11-02": "Commemoration of the Dead", + "2017-12-08": "Immaculate Conception Day", + "2017-12-24": "Christmas Eve", + "2017-12-25": "Christmas Day", + "2017-12-26": "Saint Stephen's Day", + "2017-12-31": "New Year's Eve", + "2018-01-01": "New Year's Day", + "2018-01-06": "Epiphany", + "2018-02-05": "Feast of Saint Agatha", + "2018-03-25": "Anniversary of the Arengo", + "2018-04-01": "Easter Sunday", + "2018-04-02": "Easter Monday", + "2018-05-01": "Labour Day", + "2018-05-31": "Corpus Cristi", + "2018-07-28": "Liberation from Fascism Day", + "2018-08-15": "Assumption Day", + "2018-09-03": "Foundation Day", + "2018-11-01": "All Saints' Day", + "2018-11-02": "Commemoration of the Dead", + "2018-12-08": "Immaculate Conception Day", + "2018-12-24": "Christmas Eve", + "2018-12-25": "Christmas Day", + "2018-12-26": "Saint Stephen's Day", + "2018-12-31": "New Year's Eve", + "2019-01-01": "New Year's Day", + "2019-01-06": "Epiphany", + "2019-02-05": "Feast of Saint Agatha", + "2019-03-25": "Anniversary of the Arengo", + "2019-04-21": "Easter Sunday", + "2019-04-22": "Easter Monday", + "2019-05-01": "Labour Day", + "2019-06-20": "Corpus Cristi", + "2019-07-28": "Liberation from Fascism Day", + "2019-08-15": "Assumption Day", + "2019-09-03": "Foundation Day", + "2019-11-01": "All Saints' Day", + "2019-11-02": "Commemoration of the Dead", + "2019-12-08": "Immaculate Conception Day", + "2019-12-24": "Christmas Eve", + "2019-12-25": "Christmas Day", + "2019-12-26": "Saint Stephen's Day", + "2019-12-31": "New Year's Eve", + "2020-01-01": "New Year's Day", + "2020-01-06": "Epiphany", + "2020-02-05": "Feast of Saint Agatha", + "2020-03-25": "Anniversary of the Arengo", + "2020-04-12": "Easter Sunday", + "2020-04-13": "Easter Monday", + "2020-05-01": "Labour Day", + "2020-06-11": "Corpus Cristi", + "2020-07-28": "Liberation from Fascism Day", + "2020-08-15": "Assumption Day", + "2020-09-03": "Foundation Day", + "2020-11-01": "All Saints' Day", + "2020-11-02": "Commemoration of the Dead", + "2020-12-08": "Immaculate Conception Day", + "2020-12-24": "Christmas Eve", + "2020-12-25": "Christmas Day", + "2020-12-26": "Saint Stephen's Day", + "2020-12-31": "New Year's Eve", + "2021-01-01": "New Year's Day", + "2021-01-06": "Epiphany", + "2021-02-05": "Feast of Saint Agatha", + "2021-03-25": "Anniversary of the Arengo", + "2021-04-04": "Easter Sunday", + "2021-04-05": "Easter Monday", + "2021-05-01": "Labour Day", + "2021-06-03": "Corpus Cristi", + "2021-07-28": "Liberation from Fascism Day", + "2021-08-15": "Assumption Day", + "2021-09-03": "Foundation Day", + "2021-11-01": "All Saints' Day", + "2021-11-02": "Commemoration of the Dead", + "2021-12-08": "Immaculate Conception Day", + "2021-12-24": "Christmas Eve", + "2021-12-25": "Christmas Day", + "2021-12-26": "Saint Stephen's Day", + "2021-12-31": "New Year's Eve", + "2022-01-01": "New Year's Day", + "2022-01-06": "Epiphany", + "2022-02-05": "Feast of Saint Agatha", + "2022-03-25": "Anniversary of the Arengo", + "2022-04-17": "Easter Sunday", + "2022-04-18": "Easter Monday", + "2022-05-01": "Labour Day", + "2022-06-16": "Corpus Cristi", + "2022-07-28": "Liberation from Fascism Day", + "2022-08-15": "Assumption Day", + "2022-09-03": "Foundation Day", + "2022-11-01": "All Saints' Day", + "2022-11-02": "Commemoration of the Dead", + "2022-12-08": "Immaculate Conception Day", + "2022-12-24": "Christmas Eve", + "2022-12-25": "Christmas Day", + "2022-12-26": "Saint Stephen's Day", + "2022-12-31": "New Year's Eve", + "2023-01-01": "New Year's Day", + "2023-01-06": "Epiphany", + "2023-02-05": "Feast of Saint Agatha", + "2023-03-25": "Anniversary of the Arengo", + "2023-04-09": "Easter Sunday", + "2023-04-10": "Easter Monday", + "2023-05-01": "Labour Day", + "2023-06-08": "Corpus Cristi", + "2023-07-28": "Liberation from Fascism Day", + "2023-08-15": "Assumption Day", + "2023-09-03": "Foundation Day", + "2023-11-01": "All Saints' Day", + "2023-11-02": "Commemoration of the Dead", + "2023-12-08": "Immaculate Conception Day", + "2023-12-24": "Christmas Eve", + "2023-12-25": "Christmas Day", + "2023-12-26": "Saint Stephen's Day", + "2023-12-31": "New Year's Eve", + "2024-01-01": "New Year's Day", + "2024-01-06": "Epiphany", + "2024-02-05": "Feast of Saint Agatha", + "2024-03-25": "Anniversary of the Arengo", + "2024-03-31": "Easter Sunday", + "2024-04-01": "Easter Monday", + "2024-05-01": "Labour Day", + "2024-05-30": "Corpus Cristi", + "2024-07-28": "Liberation from Fascism Day", + "2024-08-15": "Assumption Day", + "2024-09-03": "Foundation Day", + "2024-11-01": "All Saints' Day", + "2024-11-02": "Commemoration of the Dead", + "2024-12-08": "Immaculate Conception Day", + "2024-12-24": "Christmas Eve", + "2024-12-25": "Christmas Day", + "2024-12-26": "Saint Stephen's Day", + "2024-12-31": "New Year's Eve", + "2025-01-01": "New Year's Day", + "2025-01-06": "Epiphany", + "2025-02-05": "Feast of Saint Agatha", + "2025-03-25": "Anniversary of the Arengo", + "2025-04-20": "Easter Sunday", + "2025-04-21": "Easter Monday", + "2025-05-01": "Labour Day", + "2025-06-19": "Corpus Cristi", + "2025-07-28": "Liberation from Fascism Day", + "2025-08-15": "Assumption Day", + "2025-09-03": "Foundation Day", + "2025-11-01": "All Saints' Day", + "2025-11-02": "Commemoration of the Dead", + "2025-12-08": "Immaculate Conception Day", + "2025-12-24": "Christmas Eve", + "2025-12-25": "Christmas Day", + "2025-12-26": "Saint Stephen's Day", + "2025-12-31": "New Year's Eve", + "2026-01-01": "New Year's Day", + "2026-01-06": "Epiphany", + "2026-02-05": "Feast of Saint Agatha", + "2026-03-25": "Anniversary of the Arengo", + "2026-04-05": "Easter Sunday", + "2026-04-06": "Easter Monday", + "2026-05-01": "Labour Day", + "2026-06-04": "Corpus Cristi", + "2026-07-28": "Liberation from Fascism Day", + "2026-08-15": "Assumption Day", + "2026-09-03": "Foundation Day", + "2026-11-01": "All Saints' Day", + "2026-11-02": "Commemoration of the Dead", + "2026-12-08": "Immaculate Conception Day", + "2026-12-24": "Christmas Eve", + "2026-12-25": "Christmas Day", + "2026-12-26": "Saint Stephen's Day", + "2026-12-31": "New Year's Eve", + "2027-01-01": "New Year's Day", + "2027-01-06": "Epiphany", + "2027-02-05": "Feast of Saint Agatha", + "2027-03-25": "Anniversary of the Arengo", + "2027-03-28": "Easter Sunday", + "2027-03-29": "Easter Monday", + "2027-05-01": "Labour Day", + "2027-05-27": "Corpus Cristi", + "2027-07-28": "Liberation from Fascism Day", + "2027-08-15": "Assumption Day", + "2027-09-03": "Foundation Day", + "2027-11-01": "All Saints' Day", + "2027-11-02": "Commemoration of the Dead", + "2027-12-08": "Immaculate Conception Day", + "2027-12-24": "Christmas Eve", + "2027-12-25": "Christmas Day", + "2027-12-26": "Saint Stephen's Day", + "2027-12-31": "New Year's Eve", + "2028-01-01": "New Year's Day", + "2028-01-06": "Epiphany", + "2028-02-05": "Feast of Saint Agatha", + "2028-03-25": "Anniversary of the Arengo", + "2028-04-16": "Easter Sunday", + "2028-04-17": "Easter Monday", + "2028-05-01": "Labour Day", + "2028-06-15": "Corpus Cristi", + "2028-07-28": "Liberation from Fascism Day", + "2028-08-15": "Assumption Day", + "2028-09-03": "Foundation Day", + "2028-11-01": "All Saints' Day", + "2028-11-02": "Commemoration of the Dead", + "2028-12-08": "Immaculate Conception Day", + "2028-12-24": "Christmas Eve", + "2028-12-25": "Christmas Day", + "2028-12-26": "Saint Stephen's Day", + "2028-12-31": "New Year's Eve", + "2029-01-01": "New Year's Day", + "2029-01-06": "Epiphany", + "2029-02-05": "Feast of Saint Agatha", + "2029-03-25": "Anniversary of the Arengo", + "2029-04-01": "Easter Sunday", + "2029-04-02": "Easter Monday", + "2029-05-01": "Labour Day", + "2029-05-31": "Corpus Cristi", + "2029-07-28": "Liberation from Fascism Day", + "2029-08-15": "Assumption Day", + "2029-09-03": "Foundation Day", + "2029-11-01": "All Saints' Day", + "2029-11-02": "Commemoration of the Dead", + "2029-12-08": "Immaculate Conception Day", + "2029-12-24": "Christmas Eve", + "2029-12-25": "Christmas Day", + "2029-12-26": "Saint Stephen's Day", + "2029-12-31": "New Year's Eve", + "2030-01-01": "New Year's Day", + "2030-01-06": "Epiphany", + "2030-02-05": "Feast of Saint Agatha", + "2030-03-25": "Anniversary of the Arengo", + "2030-04-21": "Easter Sunday", + "2030-04-22": "Easter Monday", + "2030-05-01": "Labour Day", + "2030-06-20": "Corpus Cristi", + "2030-07-28": "Liberation from Fascism Day", + "2030-08-15": "Assumption Day", + "2030-09-03": "Foundation Day", + "2030-11-01": "All Saints' Day", + "2030-11-02": "Commemoration of the Dead", + "2030-12-08": "Immaculate Conception Day", + "2030-12-24": "Christmas Eve", + "2030-12-25": "Christmas Day", + "2030-12-26": "Saint Stephen's Day", + "2030-12-31": "New Year's Eve", + "2031-01-01": "New Year's Day", + "2031-01-06": "Epiphany", + "2031-02-05": "Feast of Saint Agatha", + "2031-03-25": "Anniversary of the Arengo", + "2031-04-13": "Easter Sunday", + "2031-04-14": "Easter Monday", + "2031-05-01": "Labour Day", + "2031-06-12": "Corpus Cristi", + "2031-07-28": "Liberation from Fascism Day", + "2031-08-15": "Assumption Day", + "2031-09-03": "Foundation Day", + "2031-11-01": "All Saints' Day", + "2031-11-02": "Commemoration of the Dead", + "2031-12-08": "Immaculate Conception Day", + "2031-12-24": "Christmas Eve", + "2031-12-25": "Christmas Day", + "2031-12-26": "Saint Stephen's Day", + "2031-12-31": "New Year's Eve", + "2032-01-01": "New Year's Day", + "2032-01-06": "Epiphany", + "2032-02-05": "Feast of Saint Agatha", + "2032-03-25": "Anniversary of the Arengo", + "2032-03-28": "Easter Sunday", + "2032-03-29": "Easter Monday", + "2032-05-01": "Labour Day", + "2032-05-27": "Corpus Cristi", + "2032-07-28": "Liberation from Fascism Day", + "2032-08-15": "Assumption Day", + "2032-09-03": "Foundation Day", + "2032-11-01": "All Saints' Day", + "2032-11-02": "Commemoration of the Dead", + "2032-12-08": "Immaculate Conception Day", + "2032-12-24": "Christmas Eve", + "2032-12-25": "Christmas Day", + "2032-12-26": "Saint Stephen's Day", + "2032-12-31": "New Year's Eve", + "2033-01-01": "New Year's Day", + "2033-01-06": "Epiphany", + "2033-02-05": "Feast of Saint Agatha", + "2033-03-25": "Anniversary of the Arengo", + "2033-04-17": "Easter Sunday", + "2033-04-18": "Easter Monday", + "2033-05-01": "Labour Day", + "2033-06-16": "Corpus Cristi", + "2033-07-28": "Liberation from Fascism Day", + "2033-08-15": "Assumption Day", + "2033-09-03": "Foundation Day", + "2033-11-01": "All Saints' Day", + "2033-11-02": "Commemoration of the Dead", + "2033-12-08": "Immaculate Conception Day", + "2033-12-24": "Christmas Eve", + "2033-12-25": "Christmas Day", + "2033-12-26": "Saint Stephen's Day", + "2033-12-31": "New Year's Eve", + "2034-01-01": "New Year's Day", + "2034-01-06": "Epiphany", + "2034-02-05": "Feast of Saint Agatha", + "2034-03-25": "Anniversary of the Arengo", + "2034-04-09": "Easter Sunday", + "2034-04-10": "Easter Monday", + "2034-05-01": "Labour Day", + "2034-06-08": "Corpus Cristi", + "2034-07-28": "Liberation from Fascism Day", + "2034-08-15": "Assumption Day", + "2034-09-03": "Foundation Day", + "2034-11-01": "All Saints' Day", + "2034-11-02": "Commemoration of the Dead", + "2034-12-08": "Immaculate Conception Day", + "2034-12-24": "Christmas Eve", + "2034-12-25": "Christmas Day", + "2034-12-26": "Saint Stephen's Day", + "2034-12-31": "New Year's Eve", + "2035-01-01": "New Year's Day", + "2035-01-06": "Epiphany", + "2035-02-05": "Feast of Saint Agatha", + "2035-03-25": "Anniversary of the Arengo; Easter Sunday", + "2035-03-26": "Easter Monday", + "2035-05-01": "Labour Day", + "2035-05-24": "Corpus Cristi", + "2035-07-28": "Liberation from Fascism Day", + "2035-08-15": "Assumption Day", + "2035-09-03": "Foundation Day", + "2035-11-01": "All Saints' Day", + "2035-11-02": "Commemoration of the Dead", + "2035-12-08": "Immaculate Conception Day", + "2035-12-24": "Christmas Eve", + "2035-12-25": "Christmas Day", + "2035-12-26": "Saint Stephen's Day", + "2035-12-31": "New Year's Eve", + "2036-01-01": "New Year's Day", + "2036-01-06": "Epiphany", + "2036-02-05": "Feast of Saint Agatha", + "2036-03-25": "Anniversary of the Arengo", + "2036-04-13": "Easter Sunday", + "2036-04-14": "Easter Monday", + "2036-05-01": "Labour Day", + "2036-06-12": "Corpus Cristi", + "2036-07-28": "Liberation from Fascism Day", + "2036-08-15": "Assumption Day", + "2036-09-03": "Foundation Day", + "2036-11-01": "All Saints' Day", + "2036-11-02": "Commemoration of the Dead", + "2036-12-08": "Immaculate Conception Day", + "2036-12-24": "Christmas Eve", + "2036-12-25": "Christmas Day", + "2036-12-26": "Saint Stephen's Day", + "2036-12-31": "New Year's Eve", + "2037-01-01": "New Year's Day", + "2037-01-06": "Epiphany", + "2037-02-05": "Feast of Saint Agatha", + "2037-03-25": "Anniversary of the Arengo", + "2037-04-05": "Easter Sunday", + "2037-04-06": "Easter Monday", + "2037-05-01": "Labour Day", + "2037-06-04": "Corpus Cristi", + "2037-07-28": "Liberation from Fascism Day", + "2037-08-15": "Assumption Day", + "2037-09-03": "Foundation Day", + "2037-11-01": "All Saints' Day", + "2037-11-02": "Commemoration of the Dead", + "2037-12-08": "Immaculate Conception Day", + "2037-12-24": "Christmas Eve", + "2037-12-25": "Christmas Day", + "2037-12-26": "Saint Stephen's Day", + "2037-12-31": "New Year's Eve", + "2038-01-01": "New Year's Day", + "2038-01-06": "Epiphany", + "2038-02-05": "Feast of Saint Agatha", + "2038-03-25": "Anniversary of the Arengo", + "2038-04-25": "Easter Sunday", + "2038-04-26": "Easter Monday", + "2038-05-01": "Labour Day", + "2038-06-24": "Corpus Cristi", + "2038-07-28": "Liberation from Fascism Day", + "2038-08-15": "Assumption Day", + "2038-09-03": "Foundation Day", + "2038-11-01": "All Saints' Day", + "2038-11-02": "Commemoration of the Dead", + "2038-12-08": "Immaculate Conception Day", + "2038-12-24": "Christmas Eve", + "2038-12-25": "Christmas Day", + "2038-12-26": "Saint Stephen's Day", + "2038-12-31": "New Year's Eve", + "2039-01-01": "New Year's Day", + "2039-01-06": "Epiphany", + "2039-02-05": "Feast of Saint Agatha", + "2039-03-25": "Anniversary of the Arengo", + "2039-04-10": "Easter Sunday", + "2039-04-11": "Easter Monday", + "2039-05-01": "Labour Day", + "2039-06-09": "Corpus Cristi", + "2039-07-28": "Liberation from Fascism Day", + "2039-08-15": "Assumption Day", + "2039-09-03": "Foundation Day", + "2039-11-01": "All Saints' Day", + "2039-11-02": "Commemoration of the Dead", + "2039-12-08": "Immaculate Conception Day", + "2039-12-24": "Christmas Eve", + "2039-12-25": "Christmas Day", + "2039-12-26": "Saint Stephen's Day", + "2039-12-31": "New Year's Eve", + "2040-01-01": "New Year's Day", + "2040-01-06": "Epiphany", + "2040-02-05": "Feast of Saint Agatha", + "2040-03-25": "Anniversary of the Arengo", + "2040-04-01": "Easter Sunday", + "2040-04-02": "Easter Monday", + "2040-05-01": "Labour Day", + "2040-05-31": "Corpus Cristi", + "2040-07-28": "Liberation from Fascism Day", + "2040-08-15": "Assumption Day", + "2040-09-03": "Foundation Day", + "2040-11-01": "All Saints' Day", + "2040-11-02": "Commemoration of the Dead", + "2040-12-08": "Immaculate Conception Day", + "2040-12-24": "Christmas Eve", + "2040-12-25": "Christmas Day", + "2040-12-26": "Saint Stephen's Day", + "2040-12-31": "New Year's Eve", + "2041-01-01": "New Year's Day", + "2041-01-06": "Epiphany", + "2041-02-05": "Feast of Saint Agatha", + "2041-03-25": "Anniversary of the Arengo", + "2041-04-21": "Easter Sunday", + "2041-04-22": "Easter Monday", + "2041-05-01": "Labour Day", + "2041-06-20": "Corpus Cristi", + "2041-07-28": "Liberation from Fascism Day", + "2041-08-15": "Assumption Day", + "2041-09-03": "Foundation Day", + "2041-11-01": "All Saints' Day", + "2041-11-02": "Commemoration of the Dead", + "2041-12-08": "Immaculate Conception Day", + "2041-12-24": "Christmas Eve", + "2041-12-25": "Christmas Day", + "2041-12-26": "Saint Stephen's Day", + "2041-12-31": "New Year's Eve", + "2042-01-01": "New Year's Day", + "2042-01-06": "Epiphany", + "2042-02-05": "Feast of Saint Agatha", + "2042-03-25": "Anniversary of the Arengo", + "2042-04-06": "Easter Sunday", + "2042-04-07": "Easter Monday", + "2042-05-01": "Labour Day", + "2042-06-05": "Corpus Cristi", + "2042-07-28": "Liberation from Fascism Day", + "2042-08-15": "Assumption Day", + "2042-09-03": "Foundation Day", + "2042-11-01": "All Saints' Day", + "2042-11-02": "Commemoration of the Dead", + "2042-12-08": "Immaculate Conception Day", + "2042-12-24": "Christmas Eve", + "2042-12-25": "Christmas Day", + "2042-12-26": "Saint Stephen's Day", + "2042-12-31": "New Year's Eve", + "2043-01-01": "New Year's Day", + "2043-01-06": "Epiphany", + "2043-02-05": "Feast of Saint Agatha", + "2043-03-25": "Anniversary of the Arengo", + "2043-03-29": "Easter Sunday", + "2043-03-30": "Easter Monday", + "2043-05-01": "Labour Day", + "2043-05-28": "Corpus Cristi", + "2043-07-28": "Liberation from Fascism Day", + "2043-08-15": "Assumption Day", + "2043-09-03": "Foundation Day", + "2043-11-01": "All Saints' Day", + "2043-11-02": "Commemoration of the Dead", + "2043-12-08": "Immaculate Conception Day", + "2043-12-24": "Christmas Eve", + "2043-12-25": "Christmas Day", + "2043-12-26": "Saint Stephen's Day", + "2043-12-31": "New Year's Eve", + "2044-01-01": "New Year's Day", + "2044-01-06": "Epiphany", + "2044-02-05": "Feast of Saint Agatha", + "2044-03-25": "Anniversary of the Arengo", + "2044-04-17": "Easter Sunday", + "2044-04-18": "Easter Monday", + "2044-05-01": "Labour Day", + "2044-06-16": "Corpus Cristi", + "2044-07-28": "Liberation from Fascism Day", + "2044-08-15": "Assumption Day", + "2044-09-03": "Foundation Day", + "2044-11-01": "All Saints' Day", + "2044-11-02": "Commemoration of the Dead", + "2044-12-08": "Immaculate Conception Day", + "2044-12-24": "Christmas Eve", + "2044-12-25": "Christmas Day", + "2044-12-26": "Saint Stephen's Day", + "2044-12-31": "New Year's Eve", + "2045-01-01": "New Year's Day", + "2045-01-06": "Epiphany", + "2045-02-05": "Feast of Saint Agatha", + "2045-03-25": "Anniversary of the Arengo", + "2045-04-09": "Easter Sunday", + "2045-04-10": "Easter Monday", + "2045-05-01": "Labour Day", + "2045-06-08": "Corpus Cristi", + "2045-07-28": "Liberation from Fascism Day", + "2045-08-15": "Assumption Day", + "2045-09-03": "Foundation Day", + "2045-11-01": "All Saints' Day", + "2045-11-02": "Commemoration of the Dead", + "2045-12-08": "Immaculate Conception Day", + "2045-12-24": "Christmas Eve", + "2045-12-25": "Christmas Day", + "2045-12-26": "Saint Stephen's Day", + "2045-12-31": "New Year's Eve", + "2046-01-01": "New Year's Day", + "2046-01-06": "Epiphany", + "2046-02-05": "Feast of Saint Agatha", + "2046-03-25": "Anniversary of the Arengo; Easter Sunday", + "2046-03-26": "Easter Monday", + "2046-05-01": "Labour Day", + "2046-05-24": "Corpus Cristi", + "2046-07-28": "Liberation from Fascism Day", + "2046-08-15": "Assumption Day", + "2046-09-03": "Foundation Day", + "2046-11-01": "All Saints' Day", + "2046-11-02": "Commemoration of the Dead", + "2046-12-08": "Immaculate Conception Day", + "2046-12-24": "Christmas Eve", + "2046-12-25": "Christmas Day", + "2046-12-26": "Saint Stephen's Day", + "2046-12-31": "New Year's Eve", + "2047-01-01": "New Year's Day", + "2047-01-06": "Epiphany", + "2047-02-05": "Feast of Saint Agatha", + "2047-03-25": "Anniversary of the Arengo", + "2047-04-14": "Easter Sunday", + "2047-04-15": "Easter Monday", + "2047-05-01": "Labour Day", + "2047-06-13": "Corpus Cristi", + "2047-07-28": "Liberation from Fascism Day", + "2047-08-15": "Assumption Day", + "2047-09-03": "Foundation Day", + "2047-11-01": "All Saints' Day", + "2047-11-02": "Commemoration of the Dead", + "2047-12-08": "Immaculate Conception Day", + "2047-12-24": "Christmas Eve", + "2047-12-25": "Christmas Day", + "2047-12-26": "Saint Stephen's Day", + "2047-12-31": "New Year's Eve", + "2048-01-01": "New Year's Day", + "2048-01-06": "Epiphany", + "2048-02-05": "Feast of Saint Agatha", + "2048-03-25": "Anniversary of the Arengo", + "2048-04-05": "Easter Sunday", + "2048-04-06": "Easter Monday", + "2048-05-01": "Labour Day", + "2048-06-04": "Corpus Cristi", + "2048-07-28": "Liberation from Fascism Day", + "2048-08-15": "Assumption Day", + "2048-09-03": "Foundation Day", + "2048-11-01": "All Saints' Day", + "2048-11-02": "Commemoration of the Dead", + "2048-12-08": "Immaculate Conception Day", + "2048-12-24": "Christmas Eve", + "2048-12-25": "Christmas Day", + "2048-12-26": "Saint Stephen's Day", + "2048-12-31": "New Year's Eve", + "2049-01-01": "New Year's Day", + "2049-01-06": "Epiphany", + "2049-02-05": "Feast of Saint Agatha", + "2049-03-25": "Anniversary of the Arengo", + "2049-04-18": "Easter Sunday", + "2049-04-19": "Easter Monday", + "2049-05-01": "Labour Day", + "2049-06-17": "Corpus Cristi", + "2049-07-28": "Liberation from Fascism Day", + "2049-08-15": "Assumption Day", + "2049-09-03": "Foundation Day", + "2049-11-01": "All Saints' Day", + "2049-11-02": "Commemoration of the Dead", + "2049-12-08": "Immaculate Conception Day", + "2049-12-24": "Christmas Eve", + "2049-12-25": "Christmas Day", + "2049-12-26": "Saint Stephen's Day", + "2049-12-31": "New Year's Eve", + "2050-01-01": "New Year's Day", + "2050-01-06": "Epiphany", + "2050-02-05": "Feast of Saint Agatha", + "2050-03-25": "Anniversary of the Arengo", + "2050-04-10": "Easter Sunday", + "2050-04-11": "Easter Monday", + "2050-05-01": "Labour Day", + "2050-06-09": "Corpus Cristi", + "2050-07-28": "Liberation from Fascism Day", + "2050-08-15": "Assumption Day", + "2050-09-03": "Foundation Day", + "2050-11-01": "All Saints' Day", + "2050-11-02": "Commemoration of the Dead", + "2050-12-08": "Immaculate Conception Day", + "2050-12-24": "Christmas Eve", + "2050-12-25": "Christmas Day", + "2050-12-26": "Saint Stephen's Day", + "2050-12-31": "New Year's Eve" +} diff --git a/snapshots/countries/SV.json b/snapshots/countries/SV.json new file mode 100644 index 000000000..03652e8d3 --- /dev/null +++ b/snapshots/countries/SV.json @@ -0,0 +1,1186 @@ +{ + "1950-01-01": "New Year's Day", + "1950-04-06": "Maundy Thursday", + "1950-04-07": "Good Friday", + "1950-04-08": "Holy Saturday", + "1950-05-01": "Labor Day", + "1950-08-03": "San Salvador Day 1", + "1950-08-05": "San Salvador Day 2", + "1950-08-06": "Feast of San Salvador", + "1950-09-15": "Independence Day", + "1950-11-02": "All Souls' Day", + "1950-12-25": "Christmas Day", + "1951-01-01": "New Year's Day", + "1951-03-22": "Maundy Thursday", + "1951-03-23": "Good Friday", + "1951-03-24": "Holy Saturday", + "1951-05-01": "Labor Day", + "1951-08-03": "San Salvador Day 1", + "1951-08-05": "San Salvador Day 2", + "1951-08-06": "Feast of San Salvador", + "1951-09-15": "Independence Day", + "1951-11-02": "All Souls' Day", + "1951-12-25": "Christmas Day", + "1952-01-01": "New Year's Day", + "1952-04-10": "Maundy Thursday", + "1952-04-11": "Good Friday", + "1952-04-12": "Holy Saturday", + "1952-05-01": "Labor Day", + "1952-08-03": "San Salvador Day 1", + "1952-08-05": "San Salvador Day 2", + "1952-08-06": "Feast of San Salvador", + "1952-09-15": "Independence Day", + "1952-11-02": "All Souls' Day", + "1952-12-25": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-04-02": "Maundy Thursday", + "1953-04-03": "Good Friday", + "1953-04-04": "Holy Saturday", + "1953-05-01": "Labor Day", + "1953-08-03": "San Salvador Day 1", + "1953-08-05": "San Salvador Day 2", + "1953-08-06": "Feast of San Salvador", + "1953-09-15": "Independence Day", + "1953-11-02": "All Souls' Day", + "1953-12-25": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-04-15": "Maundy Thursday", + "1954-04-16": "Good Friday", + "1954-04-17": "Holy Saturday", + "1954-05-01": "Labor Day", + "1954-08-03": "San Salvador Day 1", + "1954-08-05": "San Salvador Day 2", + "1954-08-06": "Feast of San Salvador", + "1954-09-15": "Independence Day", + "1954-11-02": "All Souls' Day", + "1954-12-25": "Christmas Day", + "1955-01-01": "New Year's Day", + "1955-04-07": "Maundy Thursday", + "1955-04-08": "Good Friday", + "1955-04-09": "Holy Saturday", + "1955-05-01": "Labor Day", + "1955-08-03": "San Salvador Day 1", + "1955-08-05": "San Salvador Day 2", + "1955-08-06": "Feast of San Salvador", + "1955-09-15": "Independence Day", + "1955-11-02": "All Souls' Day", + "1955-12-25": "Christmas Day", + "1956-01-01": "New Year's Day", + "1956-03-29": "Maundy Thursday", + "1956-03-30": "Good Friday", + "1956-03-31": "Holy Saturday", + "1956-05-01": "Labor Day", + "1956-08-03": "San Salvador Day 1", + "1956-08-05": "San Salvador Day 2", + "1956-08-06": "Feast of San Salvador", + "1956-09-15": "Independence Day", + "1956-11-02": "All Souls' Day", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-04-18": "Maundy Thursday", + "1957-04-19": "Good Friday", + "1957-04-20": "Holy Saturday", + "1957-05-01": "Labor Day", + "1957-08-03": "San Salvador Day 1", + "1957-08-05": "San Salvador Day 2", + "1957-08-06": "Feast of San Salvador", + "1957-09-15": "Independence Day", + "1957-11-02": "All Souls' Day", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-04-03": "Maundy Thursday", + "1958-04-04": "Good Friday", + "1958-04-05": "Holy Saturday", + "1958-05-01": "Labor Day", + "1958-08-03": "San Salvador Day 1", + "1958-08-05": "San Salvador Day 2", + "1958-08-06": "Feast of San Salvador", + "1958-09-15": "Independence Day", + "1958-11-02": "All Souls' Day", + "1958-12-25": "Christmas Day", + "1959-01-01": "New Year's Day", + "1959-03-26": "Maundy Thursday", + "1959-03-27": "Good Friday", + "1959-03-28": "Holy Saturday", + "1959-05-01": "Labor Day", + "1959-08-03": "San Salvador Day 1", + "1959-08-05": "San Salvador Day 2", + "1959-08-06": "Feast of San Salvador", + "1959-09-15": "Independence Day", + "1959-11-02": "All Souls' Day", + "1959-12-25": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-04-14": "Maundy Thursday", + "1960-04-15": "Good Friday", + "1960-04-16": "Holy Saturday", + "1960-05-01": "Labor Day", + "1960-08-03": "San Salvador Day 1", + "1960-08-05": "San Salvador Day 2", + "1960-08-06": "Feast of San Salvador", + "1960-09-15": "Independence Day", + "1960-11-02": "All Souls' Day", + "1960-12-25": "Christmas Day", + "1961-01-01": "New Year's Day", + "1961-03-30": "Maundy Thursday", + "1961-03-31": "Good Friday", + "1961-04-01": "Holy Saturday", + "1961-05-01": "Labor Day", + "1961-08-03": "San Salvador Day 1", + "1961-08-05": "San Salvador Day 2", + "1961-08-06": "Feast of San Salvador", + "1961-09-15": "Independence Day", + "1961-11-02": "All Souls' Day", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-04-19": "Maundy Thursday", + "1962-04-20": "Good Friday", + "1962-04-21": "Holy Saturday", + "1962-05-01": "Labor Day", + "1962-08-03": "San Salvador Day 1", + "1962-08-05": "San Salvador Day 2", + "1962-08-06": "Feast of San Salvador", + "1962-09-15": "Independence Day", + "1962-11-02": "All Souls' Day", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-04-11": "Maundy Thursday", + "1963-04-12": "Good Friday", + "1963-04-13": "Holy Saturday", + "1963-05-01": "Labor Day", + "1963-08-03": "San Salvador Day 1", + "1963-08-05": "San Salvador Day 2", + "1963-08-06": "Feast of San Salvador", + "1963-09-15": "Independence Day", + "1963-11-02": "All Souls' Day", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-03-26": "Maundy Thursday", + "1964-03-27": "Good Friday", + "1964-03-28": "Holy Saturday", + "1964-05-01": "Labor Day", + "1964-08-03": "San Salvador Day 1", + "1964-08-05": "San Salvador Day 2", + "1964-08-06": "Feast of San Salvador", + "1964-09-15": "Independence Day", + "1964-11-02": "All Souls' Day", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-04-15": "Maundy Thursday", + "1965-04-16": "Good Friday", + "1965-04-17": "Holy Saturday", + "1965-05-01": "Labor Day", + "1965-08-03": "San Salvador Day 1", + "1965-08-05": "San Salvador Day 2", + "1965-08-06": "Feast of San Salvador", + "1965-09-15": "Independence Day", + "1965-11-02": "All Souls' Day", + "1965-12-25": "Christmas Day", + "1966-01-01": "New Year's Day", + "1966-04-07": "Maundy Thursday", + "1966-04-08": "Good Friday", + "1966-04-09": "Holy Saturday", + "1966-05-01": "Labor Day", + "1966-08-03": "San Salvador Day 1", + "1966-08-05": "San Salvador Day 2", + "1966-08-06": "Feast of San Salvador", + "1966-09-15": "Independence Day", + "1966-11-02": "All Souls' Day", + "1966-12-25": "Christmas Day", + "1967-01-01": "New Year's Day", + "1967-03-23": "Maundy Thursday", + "1967-03-24": "Good Friday", + "1967-03-25": "Holy Saturday", + "1967-05-01": "Labor Day", + "1967-08-03": "San Salvador Day 1", + "1967-08-05": "San Salvador Day 2", + "1967-08-06": "Feast of San Salvador", + "1967-09-15": "Independence Day", + "1967-11-02": "All Souls' Day", + "1967-12-25": "Christmas Day", + "1968-01-01": "New Year's Day", + "1968-04-11": "Maundy Thursday", + "1968-04-12": "Good Friday", + "1968-04-13": "Holy Saturday", + "1968-05-01": "Labor Day", + "1968-08-03": "San Salvador Day 1", + "1968-08-05": "San Salvador Day 2", + "1968-08-06": "Feast of San Salvador", + "1968-09-15": "Independence Day", + "1968-11-02": "All Souls' Day", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-04-03": "Maundy Thursday", + "1969-04-04": "Good Friday", + "1969-04-05": "Holy Saturday", + "1969-05-01": "Labor Day", + "1969-08-03": "San Salvador Day 1", + "1969-08-05": "San Salvador Day 2", + "1969-08-06": "Feast of San Salvador", + "1969-09-15": "Independence Day", + "1969-11-02": "All Souls' Day", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-03-26": "Maundy Thursday", + "1970-03-27": "Good Friday", + "1970-03-28": "Holy Saturday", + "1970-05-01": "Labor Day", + "1970-08-03": "San Salvador Day 1", + "1970-08-05": "San Salvador Day 2", + "1970-08-06": "Feast of San Salvador", + "1970-09-15": "Independence Day", + "1970-11-02": "All Souls' Day", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-04-08": "Maundy Thursday", + "1971-04-09": "Good Friday", + "1971-04-10": "Holy Saturday", + "1971-05-01": "Labor Day", + "1971-08-03": "San Salvador Day 1", + "1971-08-05": "San Salvador Day 2", + "1971-08-06": "Feast of San Salvador", + "1971-09-15": "Independence Day", + "1971-11-02": "All Souls' Day", + "1971-12-25": "Christmas Day", + "1972-01-01": "New Year's Day", + "1972-03-30": "Maundy Thursday", + "1972-03-31": "Good Friday", + "1972-04-01": "Holy Saturday", + "1972-05-01": "Labor Day", + "1972-08-03": "San Salvador Day 1", + "1972-08-05": "San Salvador Day 2", + "1972-08-06": "Feast of San Salvador", + "1972-09-15": "Independence Day", + "1972-11-02": "All Souls' Day", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-04-19": "Maundy Thursday", + "1973-04-20": "Good Friday", + "1973-04-21": "Holy Saturday", + "1973-05-01": "Labor Day", + "1973-08-03": "San Salvador Day 1", + "1973-08-05": "San Salvador Day 2", + "1973-08-06": "Feast of San Salvador", + "1973-09-15": "Independence Day", + "1973-11-02": "All Souls' Day", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-04-11": "Maundy Thursday", + "1974-04-12": "Good Friday", + "1974-04-13": "Holy Saturday", + "1974-05-01": "Labor Day", + "1974-08-03": "San Salvador Day 1", + "1974-08-05": "San Salvador Day 2", + "1974-08-06": "Feast of San Salvador", + "1974-09-15": "Independence Day", + "1974-11-02": "All Souls' Day", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-03-27": "Maundy Thursday", + "1975-03-28": "Good Friday", + "1975-03-29": "Holy Saturday", + "1975-05-01": "Labor Day", + "1975-08-03": "San Salvador Day 1", + "1975-08-05": "San Salvador Day 2", + "1975-08-06": "Feast of San Salvador", + "1975-09-15": "Independence Day", + "1975-11-02": "All Souls' Day", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-04-15": "Maundy Thursday", + "1976-04-16": "Good Friday", + "1976-04-17": "Holy Saturday", + "1976-05-01": "Labor Day", + "1976-08-03": "San Salvador Day 1", + "1976-08-05": "San Salvador Day 2", + "1976-08-06": "Feast of San Salvador", + "1976-09-15": "Independence Day", + "1976-11-02": "All Souls' Day", + "1976-12-25": "Christmas Day", + "1977-01-01": "New Year's Day", + "1977-04-07": "Maundy Thursday", + "1977-04-08": "Good Friday", + "1977-04-09": "Holy Saturday", + "1977-05-01": "Labor Day", + "1977-08-03": "San Salvador Day 1", + "1977-08-05": "San Salvador Day 2", + "1977-08-06": "Feast of San Salvador", + "1977-09-15": "Independence Day", + "1977-11-02": "All Souls' Day", + "1977-12-25": "Christmas Day", + "1978-01-01": "New Year's Day", + "1978-03-23": "Maundy Thursday", + "1978-03-24": "Good Friday", + "1978-03-25": "Holy Saturday", + "1978-05-01": "Labor Day", + "1978-08-03": "San Salvador Day 1", + "1978-08-05": "San Salvador Day 2", + "1978-08-06": "Feast of San Salvador", + "1978-09-15": "Independence Day", + "1978-11-02": "All Souls' Day", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-04-12": "Maundy Thursday", + "1979-04-13": "Good Friday", + "1979-04-14": "Holy Saturday", + "1979-05-01": "Labor Day", + "1979-08-03": "San Salvador Day 1", + "1979-08-05": "San Salvador Day 2", + "1979-08-06": "Feast of San Salvador", + "1979-09-15": "Independence Day", + "1979-11-02": "All Souls' Day", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-04-03": "Maundy Thursday", + "1980-04-04": "Good Friday", + "1980-04-05": "Holy Saturday", + "1980-05-01": "Labor Day", + "1980-08-03": "San Salvador Day 1", + "1980-08-05": "San Salvador Day 2", + "1980-08-06": "Feast of San Salvador", + "1980-09-15": "Independence Day", + "1980-11-02": "All Souls' Day", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-04-16": "Maundy Thursday", + "1981-04-17": "Good Friday", + "1981-04-18": "Holy Saturday", + "1981-05-01": "Labor Day", + "1981-08-03": "San Salvador Day 1", + "1981-08-05": "San Salvador Day 2", + "1981-08-06": "Feast of San Salvador", + "1981-09-15": "Independence Day", + "1981-11-02": "All Souls' Day", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-04-08": "Maundy Thursday", + "1982-04-09": "Good Friday", + "1982-04-10": "Holy Saturday", + "1982-05-01": "Labor Day", + "1982-08-03": "San Salvador Day 1", + "1982-08-05": "San Salvador Day 2", + "1982-08-06": "Feast of San Salvador", + "1982-09-15": "Independence Day", + "1982-11-02": "All Souls' Day", + "1982-12-25": "Christmas Day", + "1983-01-01": "New Year's Day", + "1983-03-31": "Maundy Thursday", + "1983-04-01": "Good Friday", + "1983-04-02": "Holy Saturday", + "1983-05-01": "Labor Day", + "1983-08-03": "San Salvador Day 1", + "1983-08-05": "San Salvador Day 2", + "1983-08-06": "Feast of San Salvador", + "1983-09-15": "Independence Day", + "1983-11-02": "All Souls' Day", + "1983-12-25": "Christmas Day", + "1984-01-01": "New Year's Day", + "1984-04-19": "Maundy Thursday", + "1984-04-20": "Good Friday", + "1984-04-21": "Holy Saturday", + "1984-05-01": "Labor Day", + "1984-08-03": "San Salvador Day 1", + "1984-08-05": "San Salvador Day 2", + "1984-08-06": "Feast of San Salvador", + "1984-09-15": "Independence Day", + "1984-11-02": "All Souls' Day", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-04-04": "Maundy Thursday", + "1985-04-05": "Good Friday", + "1985-04-06": "Holy Saturday", + "1985-05-01": "Labor Day", + "1985-08-03": "San Salvador Day 1", + "1985-08-05": "San Salvador Day 2", + "1985-08-06": "Feast of San Salvador", + "1985-09-15": "Independence Day", + "1985-11-02": "All Souls' Day", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-03-27": "Maundy Thursday", + "1986-03-28": "Good Friday", + "1986-03-29": "Holy Saturday", + "1986-05-01": "Labor Day", + "1986-08-03": "San Salvador Day 1", + "1986-08-05": "San Salvador Day 2", + "1986-08-06": "Feast of San Salvador", + "1986-09-15": "Independence Day", + "1986-11-02": "All Souls' Day", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-04-16": "Maundy Thursday", + "1987-04-17": "Good Friday", + "1987-04-18": "Holy Saturday", + "1987-05-01": "Labor Day", + "1987-08-03": "San Salvador Day 1", + "1987-08-05": "San Salvador Day 2", + "1987-08-06": "Feast of San Salvador", + "1987-09-15": "Independence Day", + "1987-11-02": "All Souls' Day", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-03-31": "Maundy Thursday", + "1988-04-01": "Good Friday", + "1988-04-02": "Holy Saturday", + "1988-05-01": "Labor Day", + "1988-08-03": "San Salvador Day 1", + "1988-08-05": "San Salvador Day 2", + "1988-08-06": "Feast of San Salvador", + "1988-09-15": "Independence Day", + "1988-11-02": "All Souls' Day", + "1988-12-25": "Christmas Day", + "1989-01-01": "New Year's Day", + "1989-03-23": "Maundy Thursday", + "1989-03-24": "Good Friday", + "1989-03-25": "Holy Saturday", + "1989-05-01": "Labor Day", + "1989-08-03": "San Salvador Day 1", + "1989-08-05": "San Salvador Day 2", + "1989-08-06": "Feast of San Salvador", + "1989-09-15": "Independence Day", + "1989-11-02": "All Souls' Day", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-04-12": "Maundy Thursday", + "1990-04-13": "Good Friday", + "1990-04-14": "Holy Saturday", + "1990-05-01": "Labor Day", + "1990-08-03": "San Salvador Day 1", + "1990-08-05": "San Salvador Day 2", + "1990-08-06": "Feast of San Salvador", + "1990-09-15": "Independence Day", + "1990-11-02": "All Souls' Day", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-03-28": "Maundy Thursday", + "1991-03-29": "Good Friday", + "1991-03-30": "Holy Saturday", + "1991-05-01": "Labor Day", + "1991-08-03": "San Salvador Day 1", + "1991-08-05": "San Salvador Day 2", + "1991-08-06": "Feast of San Salvador", + "1991-09-15": "Independence Day", + "1991-11-02": "All Souls' Day", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-04-16": "Maundy Thursday", + "1992-04-17": "Good Friday", + "1992-04-18": "Holy Saturday", + "1992-05-01": "Labor Day", + "1992-08-03": "San Salvador Day 1", + "1992-08-05": "San Salvador Day 2", + "1992-08-06": "Feast of San Salvador", + "1992-09-15": "Independence Day", + "1992-11-02": "All Souls' Day", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-04-08": "Maundy Thursday", + "1993-04-09": "Good Friday", + "1993-04-10": "Holy Saturday", + "1993-05-01": "Labor Day", + "1993-08-03": "San Salvador Day 1", + "1993-08-05": "San Salvador Day 2", + "1993-08-06": "Feast of San Salvador", + "1993-09-15": "Independence Day", + "1993-11-02": "All Souls' Day", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-03-31": "Maundy Thursday", + "1994-04-01": "Good Friday", + "1994-04-02": "Holy Saturday", + "1994-05-01": "Labor Day", + "1994-08-03": "San Salvador Day 1", + "1994-08-05": "San Salvador Day 2", + "1994-08-06": "Feast of San Salvador", + "1994-09-15": "Independence Day", + "1994-11-02": "All Souls' Day", + "1994-12-25": "Christmas Day", + "1995-01-01": "New Year's Day", + "1995-04-13": "Maundy Thursday", + "1995-04-14": "Good Friday", + "1995-04-15": "Holy Saturday", + "1995-05-01": "Labor Day", + "1995-08-03": "San Salvador Day 1", + "1995-08-05": "San Salvador Day 2", + "1995-08-06": "Feast of San Salvador", + "1995-09-15": "Independence Day", + "1995-11-02": "All Souls' Day", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-04-04": "Maundy Thursday", + "1996-04-05": "Good Friday", + "1996-04-06": "Holy Saturday", + "1996-05-01": "Labor Day", + "1996-08-03": "San Salvador Day 1", + "1996-08-05": "San Salvador Day 2", + "1996-08-06": "Feast of San Salvador", + "1996-09-15": "Independence Day", + "1996-11-02": "All Souls' Day", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-03-27": "Maundy Thursday", + "1997-03-28": "Good Friday", + "1997-03-29": "Holy Saturday", + "1997-05-01": "Labor Day", + "1997-08-03": "San Salvador Day 1", + "1997-08-05": "San Salvador Day 2", + "1997-08-06": "Feast of San Salvador", + "1997-09-15": "Independence Day", + "1997-11-02": "All Souls' Day", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-04-09": "Maundy Thursday", + "1998-04-10": "Good Friday", + "1998-04-11": "Holy Saturday", + "1998-05-01": "Labor Day", + "1998-08-03": "San Salvador Day 1", + "1998-08-05": "San Salvador Day 2", + "1998-08-06": "Feast of San Salvador", + "1998-09-15": "Independence Day", + "1998-11-02": "All Souls' Day", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-04-01": "Maundy Thursday", + "1999-04-02": "Good Friday", + "1999-04-03": "Holy Saturday", + "1999-05-01": "Labor Day", + "1999-08-03": "San Salvador Day 1", + "1999-08-05": "San Salvador Day 2", + "1999-08-06": "Feast of San Salvador", + "1999-09-15": "Independence Day", + "1999-11-02": "All Souls' Day", + "1999-12-25": "Christmas Day", + "2000-01-01": "New Year's Day", + "2000-04-20": "Maundy Thursday", + "2000-04-21": "Good Friday", + "2000-04-22": "Holy Saturday", + "2000-05-01": "Labor Day", + "2000-08-03": "San Salvador Day 1", + "2000-08-05": "San Salvador Day 2", + "2000-08-06": "Feast of San Salvador", + "2000-09-15": "Independence Day", + "2000-11-02": "All Souls' Day", + "2000-12-25": "Christmas Day", + "2001-01-01": "New Year's Day", + "2001-04-12": "Maundy Thursday", + "2001-04-13": "Good Friday", + "2001-04-14": "Holy Saturday", + "2001-05-01": "Labor Day", + "2001-08-03": "San Salvador Day 1", + "2001-08-05": "San Salvador Day 2", + "2001-08-06": "Feast of San Salvador", + "2001-09-15": "Independence Day", + "2001-11-02": "All Souls' Day", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-03-28": "Maundy Thursday", + "2002-03-29": "Good Friday", + "2002-03-30": "Holy Saturday", + "2002-05-01": "Labor Day", + "2002-08-03": "San Salvador Day 1", + "2002-08-05": "San Salvador Day 2", + "2002-08-06": "Feast of San Salvador", + "2002-09-15": "Independence Day", + "2002-11-02": "All Souls' Day", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-04-17": "Maundy Thursday", + "2003-04-18": "Good Friday", + "2003-04-19": "Holy Saturday", + "2003-05-01": "Labor Day", + "2003-08-03": "San Salvador Day 1", + "2003-08-05": "San Salvador Day 2", + "2003-08-06": "Feast of San Salvador", + "2003-09-15": "Independence Day", + "2003-11-02": "All Souls' Day", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-04-08": "Maundy Thursday", + "2004-04-09": "Good Friday", + "2004-04-10": "Holy Saturday", + "2004-05-01": "Labor Day", + "2004-08-03": "San Salvador Day 1", + "2004-08-05": "San Salvador Day 2", + "2004-08-06": "Feast of San Salvador", + "2004-09-15": "Independence Day", + "2004-11-02": "All Souls' Day", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-03-24": "Maundy Thursday", + "2005-03-25": "Good Friday", + "2005-03-26": "Holy Saturday", + "2005-05-01": "Labor Day", + "2005-08-03": "San Salvador Day 1", + "2005-08-05": "San Salvador Day 2", + "2005-08-06": "Feast of San Salvador", + "2005-09-15": "Independence Day", + "2005-11-02": "All Souls' Day", + "2005-12-25": "Christmas Day", + "2006-01-01": "New Year's Day", + "2006-04-13": "Maundy Thursday", + "2006-04-14": "Good Friday", + "2006-04-15": "Holy Saturday", + "2006-05-01": "Labor Day", + "2006-08-03": "San Salvador Day 1", + "2006-08-05": "San Salvador Day 2", + "2006-08-06": "Feast of San Salvador", + "2006-09-15": "Independence Day", + "2006-11-02": "All Souls' Day", + "2006-12-25": "Christmas Day", + "2007-01-01": "New Year's Day", + "2007-04-05": "Maundy Thursday", + "2007-04-06": "Good Friday", + "2007-04-07": "Holy Saturday", + "2007-05-01": "Labor Day", + "2007-08-03": "San Salvador Day 1", + "2007-08-05": "San Salvador Day 2", + "2007-08-06": "Feast of San Salvador", + "2007-09-15": "Independence Day", + "2007-11-02": "All Souls' Day", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-03-20": "Maundy Thursday", + "2008-03-21": "Good Friday", + "2008-03-22": "Holy Saturday", + "2008-05-01": "Labor Day", + "2008-08-03": "San Salvador Day 1", + "2008-08-05": "San Salvador Day 2", + "2008-08-06": "Feast of San Salvador", + "2008-09-15": "Independence Day", + "2008-11-02": "All Souls' Day", + "2008-12-25": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-04-09": "Maundy Thursday", + "2009-04-10": "Good Friday", + "2009-04-11": "Holy Saturday", + "2009-05-01": "Labor Day", + "2009-08-03": "San Salvador Day 1", + "2009-08-05": "San Salvador Day 2", + "2009-08-06": "Feast of San Salvador", + "2009-09-15": "Independence Day", + "2009-11-02": "All Souls' Day", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-04-01": "Maundy Thursday", + "2010-04-02": "Good Friday", + "2010-04-03": "Holy Saturday", + "2010-05-01": "Labor Day", + "2010-08-03": "San Salvador Day 1", + "2010-08-05": "San Salvador Day 2", + "2010-08-06": "Feast of San Salvador", + "2010-09-15": "Independence Day", + "2010-11-02": "All Souls' Day", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-04-21": "Maundy Thursday", + "2011-04-22": "Good Friday", + "2011-04-23": "Holy Saturday", + "2011-05-01": "Labor Day", + "2011-08-03": "San Salvador Day 1", + "2011-08-05": "San Salvador Day 2", + "2011-08-06": "Feast of San Salvador", + "2011-09-15": "Independence Day", + "2011-11-02": "All Souls' Day", + "2011-12-25": "Christmas Day", + "2012-01-01": "New Year's Day", + "2012-04-05": "Maundy Thursday", + "2012-04-06": "Good Friday", + "2012-04-07": "Holy Saturday", + "2012-05-01": "Labor Day", + "2012-08-03": "San Salvador Day 1", + "2012-08-05": "San Salvador Day 2", + "2012-08-06": "Feast of San Salvador", + "2012-09-15": "Independence Day", + "2012-11-02": "All Souls' Day", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-03-28": "Maundy Thursday", + "2013-03-29": "Good Friday", + "2013-03-30": "Holy Saturday", + "2013-05-01": "Labor Day", + "2013-06-17": "Fathers' Day", + "2013-08-03": "San Salvador Day 1", + "2013-08-05": "San Salvador Day 2", + "2013-08-06": "Feast of San Salvador", + "2013-09-15": "Independence Day", + "2013-11-02": "All Souls' Day", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-04-17": "Maundy Thursday", + "2014-04-18": "Good Friday", + "2014-04-19": "Holy Saturday", + "2014-05-01": "Labor Day", + "2014-06-17": "Fathers' Day", + "2014-08-03": "San Salvador Day 1", + "2014-08-05": "San Salvador Day 2", + "2014-08-06": "Feast of San Salvador", + "2014-09-15": "Independence Day", + "2014-11-02": "All Souls' Day", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-04-02": "Maundy Thursday", + "2015-04-03": "Good Friday", + "2015-04-04": "Holy Saturday", + "2015-05-01": "Labor Day", + "2015-06-17": "Fathers' Day", + "2015-08-03": "San Salvador Day 1", + "2015-08-05": "San Salvador Day 2", + "2015-08-06": "Feast of San Salvador", + "2015-09-15": "Independence Day", + "2015-11-02": "All Souls' Day", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-03-24": "Maundy Thursday", + "2016-03-25": "Good Friday", + "2016-03-26": "Holy Saturday", + "2016-05-01": "Labor Day", + "2016-05-10": "Mothers' Day", + "2016-06-17": "Fathers' Day", + "2016-08-03": "San Salvador Day 1", + "2016-08-05": "San Salvador Day 2", + "2016-08-06": "Feast of San Salvador", + "2016-09-15": "Independence Day", + "2016-11-02": "All Souls' Day", + "2016-12-25": "Christmas Day", + "2017-01-01": "New Year's Day", + "2017-04-13": "Maundy Thursday", + "2017-04-14": "Good Friday", + "2017-04-15": "Holy Saturday", + "2017-05-01": "Labor Day", + "2017-05-10": "Mothers' Day", + "2017-06-17": "Fathers' Day", + "2017-08-03": "San Salvador Day 1", + "2017-08-05": "San Salvador Day 2", + "2017-08-06": "Feast of San Salvador", + "2017-09-15": "Independence Day", + "2017-11-02": "All Souls' Day", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-03-29": "Maundy Thursday", + "2018-03-30": "Good Friday", + "2018-03-31": "Holy Saturday", + "2018-05-01": "Labor Day", + "2018-05-10": "Mothers' Day", + "2018-06-17": "Fathers' Day", + "2018-08-03": "San Salvador Day 1", + "2018-08-05": "San Salvador Day 2", + "2018-08-06": "Feast of San Salvador", + "2018-09-15": "Independence Day", + "2018-11-02": "All Souls' Day", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-04-18": "Maundy Thursday", + "2019-04-19": "Good Friday", + "2019-04-20": "Holy Saturday", + "2019-05-01": "Labor Day", + "2019-05-10": "Mothers' Day", + "2019-06-17": "Fathers' Day", + "2019-08-03": "San Salvador Day 1", + "2019-08-05": "San Salvador Day 2", + "2019-08-06": "Feast of San Salvador", + "2019-09-15": "Independence Day", + "2019-11-02": "All Souls' Day", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-04-09": "Maundy Thursday", + "2020-04-10": "Good Friday", + "2020-04-11": "Holy Saturday", + "2020-05-01": "Labor Day", + "2020-05-10": "Mothers' Day", + "2020-06-17": "Fathers' Day", + "2020-08-03": "San Salvador Day 1", + "2020-08-05": "San Salvador Day 2", + "2020-08-06": "Feast of San Salvador", + "2020-09-15": "Independence Day", + "2020-11-02": "All Souls' Day", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-04-01": "Maundy Thursday", + "2021-04-02": "Good Friday", + "2021-04-03": "Holy Saturday", + "2021-05-01": "Labor Day", + "2021-05-10": "Mothers' Day", + "2021-06-17": "Fathers' Day", + "2021-08-03": "San Salvador Day 1", + "2021-08-05": "San Salvador Day 2", + "2021-08-06": "Feast of San Salvador", + "2021-09-15": "Independence Day", + "2021-11-02": "All Souls' Day", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-04-14": "Maundy Thursday", + "2022-04-15": "Good Friday", + "2022-04-16": "Holy Saturday", + "2022-05-01": "Labor Day", + "2022-05-10": "Mothers' Day", + "2022-06-17": "Fathers' Day", + "2022-08-03": "San Salvador Day 1", + "2022-08-05": "San Salvador Day 2", + "2022-08-06": "Feast of San Salvador", + "2022-09-15": "Independence Day", + "2022-11-02": "All Souls' Day", + "2022-12-25": "Christmas Day", + "2023-01-01": "New Year's Day", + "2023-04-06": "Maundy Thursday", + "2023-04-07": "Good Friday", + "2023-04-08": "Holy Saturday", + "2023-05-01": "Labor Day", + "2023-05-10": "Mothers' Day", + "2023-06-17": "Fathers' Day", + "2023-08-03": "San Salvador Day 1", + "2023-08-05": "San Salvador Day 2", + "2023-08-06": "Feast of San Salvador", + "2023-09-15": "Independence Day", + "2023-11-02": "All Souls' Day", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-03-28": "Maundy Thursday", + "2024-03-29": "Good Friday", + "2024-03-30": "Holy Saturday", + "2024-05-01": "Labor Day", + "2024-05-10": "Mothers' Day", + "2024-06-17": "Fathers' Day", + "2024-08-03": "San Salvador Day 1", + "2024-08-05": "San Salvador Day 2", + "2024-08-06": "Feast of San Salvador", + "2024-09-15": "Independence Day", + "2024-11-02": "All Souls' Day", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-04-17": "Maundy Thursday", + "2025-04-18": "Good Friday", + "2025-04-19": "Holy Saturday", + "2025-05-01": "Labor Day", + "2025-05-10": "Mothers' Day", + "2025-06-17": "Fathers' Day", + "2025-08-03": "San Salvador Day 1", + "2025-08-05": "San Salvador Day 2", + "2025-08-06": "Feast of San Salvador", + "2025-09-15": "Independence Day", + "2025-11-02": "All Souls' Day", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-04-02": "Maundy Thursday", + "2026-04-03": "Good Friday", + "2026-04-04": "Holy Saturday", + "2026-05-01": "Labor Day", + "2026-05-10": "Mothers' Day", + "2026-06-17": "Fathers' Day", + "2026-08-03": "San Salvador Day 1", + "2026-08-05": "San Salvador Day 2", + "2026-08-06": "Feast of San Salvador", + "2026-09-15": "Independence Day", + "2026-11-02": "All Souls' Day", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-03-25": "Maundy Thursday", + "2027-03-26": "Good Friday", + "2027-03-27": "Holy Saturday", + "2027-05-01": "Labor Day", + "2027-05-10": "Mothers' Day", + "2027-06-17": "Fathers' Day", + "2027-08-03": "San Salvador Day 1", + "2027-08-05": "San Salvador Day 2", + "2027-08-06": "Feast of San Salvador", + "2027-09-15": "Independence Day", + "2027-11-02": "All Souls' Day", + "2027-12-25": "Christmas Day", + "2028-01-01": "New Year's Day", + "2028-04-13": "Maundy Thursday", + "2028-04-14": "Good Friday", + "2028-04-15": "Holy Saturday", + "2028-05-01": "Labor Day", + "2028-05-10": "Mothers' Day", + "2028-06-17": "Fathers' Day", + "2028-08-03": "San Salvador Day 1", + "2028-08-05": "San Salvador Day 2", + "2028-08-06": "Feast of San Salvador", + "2028-09-15": "Independence Day", + "2028-11-02": "All Souls' Day", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-03-29": "Maundy Thursday", + "2029-03-30": "Good Friday", + "2029-03-31": "Holy Saturday", + "2029-05-01": "Labor Day", + "2029-05-10": "Mothers' Day", + "2029-06-17": "Fathers' Day", + "2029-08-03": "San Salvador Day 1", + "2029-08-05": "San Salvador Day 2", + "2029-08-06": "Feast of San Salvador", + "2029-09-15": "Independence Day", + "2029-11-02": "All Souls' Day", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-04-18": "Maundy Thursday", + "2030-04-19": "Good Friday", + "2030-04-20": "Holy Saturday", + "2030-05-01": "Labor Day", + "2030-05-10": "Mothers' Day", + "2030-06-17": "Fathers' Day", + "2030-08-03": "San Salvador Day 1", + "2030-08-05": "San Salvador Day 2", + "2030-08-06": "Feast of San Salvador", + "2030-09-15": "Independence Day", + "2030-11-02": "All Souls' Day", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-04-10": "Maundy Thursday", + "2031-04-11": "Good Friday", + "2031-04-12": "Holy Saturday", + "2031-05-01": "Labor Day", + "2031-05-10": "Mothers' Day", + "2031-06-17": "Fathers' Day", + "2031-08-03": "San Salvador Day 1", + "2031-08-05": "San Salvador Day 2", + "2031-08-06": "Feast of San Salvador", + "2031-09-15": "Independence Day", + "2031-11-02": "All Souls' Day", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-03-25": "Maundy Thursday", + "2032-03-26": "Good Friday", + "2032-03-27": "Holy Saturday", + "2032-05-01": "Labor Day", + "2032-05-10": "Mothers' Day", + "2032-06-17": "Fathers' Day", + "2032-08-03": "San Salvador Day 1", + "2032-08-05": "San Salvador Day 2", + "2032-08-06": "Feast of San Salvador", + "2032-09-15": "Independence Day", + "2032-11-02": "All Souls' Day", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-04-14": "Maundy Thursday", + "2033-04-15": "Good Friday", + "2033-04-16": "Holy Saturday", + "2033-05-01": "Labor Day", + "2033-05-10": "Mothers' Day", + "2033-06-17": "Fathers' Day", + "2033-08-03": "San Salvador Day 1", + "2033-08-05": "San Salvador Day 2", + "2033-08-06": "Feast of San Salvador", + "2033-09-15": "Independence Day", + "2033-11-02": "All Souls' Day", + "2033-12-25": "Christmas Day", + "2034-01-01": "New Year's Day", + "2034-04-06": "Maundy Thursday", + "2034-04-07": "Good Friday", + "2034-04-08": "Holy Saturday", + "2034-05-01": "Labor Day", + "2034-05-10": "Mothers' Day", + "2034-06-17": "Fathers' Day", + "2034-08-03": "San Salvador Day 1", + "2034-08-05": "San Salvador Day 2", + "2034-08-06": "Feast of San Salvador", + "2034-09-15": "Independence Day", + "2034-11-02": "All Souls' Day", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-03-22": "Maundy Thursday", + "2035-03-23": "Good Friday", + "2035-03-24": "Holy Saturday", + "2035-05-01": "Labor Day", + "2035-05-10": "Mothers' Day", + "2035-06-17": "Fathers' Day", + "2035-08-03": "San Salvador Day 1", + "2035-08-05": "San Salvador Day 2", + "2035-08-06": "Feast of San Salvador", + "2035-09-15": "Independence Day", + "2035-11-02": "All Souls' Day", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-04-10": "Maundy Thursday", + "2036-04-11": "Good Friday", + "2036-04-12": "Holy Saturday", + "2036-05-01": "Labor Day", + "2036-05-10": "Mothers' Day", + "2036-06-17": "Fathers' Day", + "2036-08-03": "San Salvador Day 1", + "2036-08-05": "San Salvador Day 2", + "2036-08-06": "Feast of San Salvador", + "2036-09-15": "Independence Day", + "2036-11-02": "All Souls' Day", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-04-02": "Maundy Thursday", + "2037-04-03": "Good Friday", + "2037-04-04": "Holy Saturday", + "2037-05-01": "Labor Day", + "2037-05-10": "Mothers' Day", + "2037-06-17": "Fathers' Day", + "2037-08-03": "San Salvador Day 1", + "2037-08-05": "San Salvador Day 2", + "2037-08-06": "Feast of San Salvador", + "2037-09-15": "Independence Day", + "2037-11-02": "All Souls' Day", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-04-22": "Maundy Thursday", + "2038-04-23": "Good Friday", + "2038-04-24": "Holy Saturday", + "2038-05-01": "Labor Day", + "2038-05-10": "Mothers' Day", + "2038-06-17": "Fathers' Day", + "2038-08-03": "San Salvador Day 1", + "2038-08-05": "San Salvador Day 2", + "2038-08-06": "Feast of San Salvador", + "2038-09-15": "Independence Day", + "2038-11-02": "All Souls' Day", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-04-07": "Maundy Thursday", + "2039-04-08": "Good Friday", + "2039-04-09": "Holy Saturday", + "2039-05-01": "Labor Day", + "2039-05-10": "Mothers' Day", + "2039-06-17": "Fathers' Day", + "2039-08-03": "San Salvador Day 1", + "2039-08-05": "San Salvador Day 2", + "2039-08-06": "Feast of San Salvador", + "2039-09-15": "Independence Day", + "2039-11-02": "All Souls' Day", + "2039-12-25": "Christmas Day", + "2040-01-01": "New Year's Day", + "2040-03-29": "Maundy Thursday", + "2040-03-30": "Good Friday", + "2040-03-31": "Holy Saturday", + "2040-05-01": "Labor Day", + "2040-05-10": "Mothers' Day", + "2040-06-17": "Fathers' Day", + "2040-08-03": "San Salvador Day 1", + "2040-08-05": "San Salvador Day 2", + "2040-08-06": "Feast of San Salvador", + "2040-09-15": "Independence Day", + "2040-11-02": "All Souls' Day", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-04-18": "Maundy Thursday", + "2041-04-19": "Good Friday", + "2041-04-20": "Holy Saturday", + "2041-05-01": "Labor Day", + "2041-05-10": "Mothers' Day", + "2041-06-17": "Fathers' Day", + "2041-08-03": "San Salvador Day 1", + "2041-08-05": "San Salvador Day 2", + "2041-08-06": "Feast of San Salvador", + "2041-09-15": "Independence Day", + "2041-11-02": "All Souls' Day", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-04-03": "Maundy Thursday", + "2042-04-04": "Good Friday", + "2042-04-05": "Holy Saturday", + "2042-05-01": "Labor Day", + "2042-05-10": "Mothers' Day", + "2042-06-17": "Fathers' Day", + "2042-08-03": "San Salvador Day 1", + "2042-08-05": "San Salvador Day 2", + "2042-08-06": "Feast of San Salvador", + "2042-09-15": "Independence Day", + "2042-11-02": "All Souls' Day", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-03-26": "Maundy Thursday", + "2043-03-27": "Good Friday", + "2043-03-28": "Holy Saturday", + "2043-05-01": "Labor Day", + "2043-05-10": "Mothers' Day", + "2043-06-17": "Fathers' Day", + "2043-08-03": "San Salvador Day 1", + "2043-08-05": "San Salvador Day 2", + "2043-08-06": "Feast of San Salvador", + "2043-09-15": "Independence Day", + "2043-11-02": "All Souls' Day", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-04-14": "Maundy Thursday", + "2044-04-15": "Good Friday", + "2044-04-16": "Holy Saturday", + "2044-05-01": "Labor Day", + "2044-05-10": "Mothers' Day", + "2044-06-17": "Fathers' Day", + "2044-08-03": "San Salvador Day 1", + "2044-08-05": "San Salvador Day 2", + "2044-08-06": "Feast of San Salvador", + "2044-09-15": "Independence Day", + "2044-11-02": "All Souls' Day", + "2044-12-25": "Christmas Day", + "2045-01-01": "New Year's Day", + "2045-04-06": "Maundy Thursday", + "2045-04-07": "Good Friday", + "2045-04-08": "Holy Saturday", + "2045-05-01": "Labor Day", + "2045-05-10": "Mothers' Day", + "2045-06-17": "Fathers' Day", + "2045-08-03": "San Salvador Day 1", + "2045-08-05": "San Salvador Day 2", + "2045-08-06": "Feast of San Salvador", + "2045-09-15": "Independence Day", + "2045-11-02": "All Souls' Day", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-03-22": "Maundy Thursday", + "2046-03-23": "Good Friday", + "2046-03-24": "Holy Saturday", + "2046-05-01": "Labor Day", + "2046-05-10": "Mothers' Day", + "2046-06-17": "Fathers' Day", + "2046-08-03": "San Salvador Day 1", + "2046-08-05": "San Salvador Day 2", + "2046-08-06": "Feast of San Salvador", + "2046-09-15": "Independence Day", + "2046-11-02": "All Souls' Day", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-04-11": "Maundy Thursday", + "2047-04-12": "Good Friday", + "2047-04-13": "Holy Saturday", + "2047-05-01": "Labor Day", + "2047-05-10": "Mothers' Day", + "2047-06-17": "Fathers' Day", + "2047-08-03": "San Salvador Day 1", + "2047-08-05": "San Salvador Day 2", + "2047-08-06": "Feast of San Salvador", + "2047-09-15": "Independence Day", + "2047-11-02": "All Souls' Day", + "2047-12-25": "Christmas Day", + "2048-01-01": "New Year's Day", + "2048-04-02": "Maundy Thursday", + "2048-04-03": "Good Friday", + "2048-04-04": "Holy Saturday", + "2048-05-01": "Labor Day", + "2048-05-10": "Mothers' Day", + "2048-06-17": "Fathers' Day", + "2048-08-03": "San Salvador Day 1", + "2048-08-05": "San Salvador Day 2", + "2048-08-06": "Feast of San Salvador", + "2048-09-15": "Independence Day", + "2048-11-02": "All Souls' Day", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-04-15": "Maundy Thursday", + "2049-04-16": "Good Friday", + "2049-04-17": "Holy Saturday", + "2049-05-01": "Labor Day", + "2049-05-10": "Mothers' Day", + "2049-06-17": "Fathers' Day", + "2049-08-03": "San Salvador Day 1", + "2049-08-05": "San Salvador Day 2", + "2049-08-06": "Feast of San Salvador", + "2049-09-15": "Independence Day", + "2049-11-02": "All Souls' Day", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-04-07": "Maundy Thursday", + "2050-04-08": "Good Friday", + "2050-04-09": "Holy Saturday", + "2050-05-01": "Labor Day", + "2050-05-10": "Mothers' Day", + "2050-06-17": "Fathers' Day", + "2050-08-03": "San Salvador Day 1", + "2050-08-05": "San Salvador Day 2", + "2050-08-06": "Feast of San Salvador", + "2050-09-15": "Independence Day", + "2050-11-02": "All Souls' Day", + "2050-12-25": "Christmas Day" +} diff --git a/snapshots/countries/SZ.json b/snapshots/countries/SZ.json new file mode 100644 index 000000000..b1bd8669b --- /dev/null +++ b/snapshots/countries/SZ.json @@ -0,0 +1,1056 @@ +{ + "1950-01-01": "New Year's Day", + "1950-04-07": "Good Friday", + "1950-04-10": "Easter Monday", + "1950-05-01": "Worker's Day", + "1950-05-18": "Ascension Day", + "1950-09-06": "Independence Day", + "1950-12-25": "Christmas Day", + "1950-12-26": "Boxing Day", + "1951-01-01": "New Year's Day", + "1951-03-23": "Good Friday", + "1951-03-26": "Easter Monday", + "1951-05-01": "Worker's Day", + "1951-05-03": "Ascension Day", + "1951-09-06": "Independence Day", + "1951-12-25": "Christmas Day", + "1951-12-26": "Boxing Day", + "1952-01-01": "New Year's Day", + "1952-04-11": "Good Friday", + "1952-04-14": "Easter Monday", + "1952-05-01": "Worker's Day", + "1952-05-22": "Ascension Day", + "1952-09-06": "Independence Day", + "1952-12-25": "Christmas Day", + "1952-12-26": "Boxing Day", + "1953-01-01": "New Year's Day", + "1953-04-03": "Good Friday", + "1953-04-06": "Easter Monday", + "1953-05-01": "Worker's Day", + "1953-05-14": "Ascension Day", + "1953-09-06": "Independence Day", + "1953-12-25": "Christmas Day", + "1953-12-26": "Boxing Day", + "1954-01-01": "New Year's Day", + "1954-04-16": "Good Friday", + "1954-04-19": "Easter Monday", + "1954-05-01": "Worker's Day", + "1954-05-27": "Ascension Day", + "1954-09-06": "Independence Day", + "1954-12-25": "Christmas Day", + "1954-12-26": "Boxing Day", + "1955-01-01": "New Year's Day", + "1955-04-08": "Good Friday", + "1955-04-11": "Easter Monday", + "1955-05-01": "Worker's Day", + "1955-05-19": "Ascension Day", + "1955-09-06": "Independence Day", + "1955-12-25": "Christmas Day", + "1955-12-26": "Boxing Day", + "1956-01-01": "New Year's Day", + "1956-03-30": "Good Friday", + "1956-04-02": "Easter Monday", + "1956-05-01": "Worker's Day", + "1956-05-10": "Ascension Day", + "1956-09-06": "Independence Day", + "1956-12-25": "Christmas Day", + "1956-12-26": "Boxing Day", + "1957-01-01": "New Year's Day", + "1957-04-19": "Good Friday", + "1957-04-22": "Easter Monday", + "1957-05-01": "Worker's Day", + "1957-05-30": "Ascension Day", + "1957-09-06": "Independence Day", + "1957-12-25": "Christmas Day", + "1957-12-26": "Boxing Day", + "1958-01-01": "New Year's Day", + "1958-04-04": "Good Friday", + "1958-04-07": "Easter Monday", + "1958-05-01": "Worker's Day", + "1958-05-15": "Ascension Day", + "1958-09-06": "Independence Day", + "1958-12-25": "Christmas Day", + "1958-12-26": "Boxing Day", + "1959-01-01": "New Year's Day", + "1959-03-27": "Good Friday", + "1959-03-30": "Easter Monday", + "1959-05-01": "Worker's Day", + "1959-05-07": "Ascension Day", + "1959-09-06": "Independence Day", + "1959-12-25": "Christmas Day", + "1959-12-26": "Boxing Day", + "1960-01-01": "New Year's Day", + "1960-04-15": "Good Friday", + "1960-04-18": "Easter Monday", + "1960-05-01": "Worker's Day", + "1960-05-26": "Ascension Day", + "1960-09-06": "Independence Day", + "1960-12-25": "Christmas Day", + "1960-12-26": "Boxing Day", + "1961-01-01": "New Year's Day", + "1961-03-31": "Good Friday", + "1961-04-03": "Easter Monday", + "1961-05-01": "Worker's Day", + "1961-05-11": "Ascension Day", + "1961-09-06": "Independence Day", + "1961-12-25": "Christmas Day", + "1961-12-26": "Boxing Day", + "1962-01-01": "New Year's Day", + "1962-04-20": "Good Friday", + "1962-04-23": "Easter Monday", + "1962-05-01": "Worker's Day", + "1962-05-31": "Ascension Day", + "1962-09-06": "Independence Day", + "1962-12-25": "Christmas Day", + "1962-12-26": "Boxing Day", + "1963-01-01": "New Year's Day", + "1963-04-12": "Good Friday", + "1963-04-15": "Easter Monday", + "1963-05-01": "Worker's Day", + "1963-05-23": "Ascension Day", + "1963-09-06": "Independence Day", + "1963-12-25": "Christmas Day", + "1963-12-26": "Boxing Day", + "1964-01-01": "New Year's Day", + "1964-03-27": "Good Friday", + "1964-03-30": "Easter Monday", + "1964-05-01": "Worker's Day", + "1964-05-07": "Ascension Day", + "1964-09-06": "Independence Day", + "1964-12-25": "Christmas Day", + "1964-12-26": "Boxing Day", + "1965-01-01": "New Year's Day", + "1965-04-16": "Good Friday", + "1965-04-19": "Easter Monday", + "1965-05-01": "Worker's Day", + "1965-05-27": "Ascension Day", + "1965-09-06": "Independence Day", + "1965-12-25": "Christmas Day", + "1965-12-26": "Boxing Day", + "1966-01-01": "New Year's Day", + "1966-04-08": "Good Friday", + "1966-04-11": "Easter Monday", + "1966-05-01": "Worker's Day", + "1966-05-19": "Ascension Day", + "1966-09-06": "Independence Day", + "1966-12-25": "Christmas Day", + "1966-12-26": "Boxing Day", + "1967-01-01": "New Year's Day", + "1967-03-24": "Good Friday", + "1967-03-27": "Easter Monday", + "1967-05-01": "Worker's Day", + "1967-05-04": "Ascension Day", + "1967-09-06": "Independence Day", + "1967-12-25": "Christmas Day", + "1967-12-26": "Boxing Day", + "1968-01-01": "New Year's Day", + "1968-04-12": "Good Friday", + "1968-04-15": "Easter Monday", + "1968-05-01": "Worker's Day", + "1968-05-23": "Ascension Day", + "1968-09-06": "Independence Day", + "1968-12-25": "Christmas Day", + "1968-12-26": "Boxing Day", + "1969-01-01": "New Year's Day", + "1969-04-04": "Good Friday", + "1969-04-07": "Easter Monday", + "1969-04-25": "National Flag Day", + "1969-05-01": "Worker's Day", + "1969-05-15": "Ascension Day", + "1969-09-06": "Independence Day", + "1969-12-25": "Christmas Day", + "1969-12-26": "Boxing Day", + "1970-01-01": "New Year's Day", + "1970-03-27": "Good Friday", + "1970-03-30": "Easter Monday", + "1970-04-25": "National Flag Day", + "1970-05-01": "Worker's Day", + "1970-05-07": "Ascension Day", + "1970-09-06": "Independence Day", + "1970-12-25": "Christmas Day", + "1970-12-26": "Boxing Day", + "1971-01-01": "New Year's Day", + "1971-04-09": "Good Friday", + "1971-04-12": "Easter Monday", + "1971-04-25": "National Flag Day", + "1971-05-01": "Worker's Day", + "1971-05-20": "Ascension Day", + "1971-09-06": "Independence Day", + "1971-12-25": "Christmas Day", + "1971-12-26": "Boxing Day", + "1972-01-01": "New Year's Day", + "1972-03-31": "Good Friday", + "1972-04-03": "Easter Monday", + "1972-04-25": "National Flag Day", + "1972-05-01": "Worker's Day", + "1972-05-11": "Ascension Day", + "1972-09-06": "Independence Day", + "1972-12-25": "Christmas Day", + "1972-12-26": "Boxing Day", + "1973-01-01": "New Year's Day", + "1973-04-20": "Good Friday", + "1973-04-23": "Easter Monday", + "1973-04-25": "National Flag Day", + "1973-05-01": "Worker's Day", + "1973-05-31": "Ascension Day", + "1973-09-06": "Independence Day", + "1973-12-25": "Christmas Day", + "1973-12-26": "Boxing Day", + "1974-01-01": "New Year's Day", + "1974-04-12": "Good Friday", + "1974-04-15": "Easter Monday", + "1974-04-25": "National Flag Day", + "1974-05-01": "Worker's Day", + "1974-05-23": "Ascension Day", + "1974-09-06": "Independence Day", + "1974-12-25": "Christmas Day", + "1974-12-26": "Boxing Day", + "1975-01-01": "New Year's Day", + "1975-03-28": "Good Friday", + "1975-03-31": "Easter Monday", + "1975-04-25": "National Flag Day", + "1975-05-01": "Worker's Day", + "1975-05-08": "Ascension Day", + "1975-09-06": "Independence Day", + "1975-12-25": "Christmas Day", + "1975-12-26": "Boxing Day", + "1976-01-01": "New Year's Day", + "1976-04-16": "Good Friday", + "1976-04-19": "Easter Monday", + "1976-04-25": "National Flag Day", + "1976-05-01": "Worker's Day", + "1976-05-27": "Ascension Day", + "1976-09-06": "Independence Day", + "1976-12-25": "Christmas Day", + "1976-12-26": "Boxing Day", + "1977-01-01": "New Year's Day", + "1977-04-08": "Good Friday", + "1977-04-11": "Easter Monday", + "1977-04-25": "National Flag Day", + "1977-05-01": "Worker's Day", + "1977-05-19": "Ascension Day", + "1977-09-06": "Independence Day", + "1977-12-25": "Christmas Day", + "1977-12-26": "Boxing Day", + "1978-01-01": "New Year's Day", + "1978-03-24": "Good Friday", + "1978-03-27": "Easter Monday", + "1978-04-25": "National Flag Day", + "1978-05-01": "Worker's Day", + "1978-05-04": "Ascension Day", + "1978-09-06": "Independence Day", + "1978-12-25": "Christmas Day", + "1978-12-26": "Boxing Day", + "1979-01-01": "New Year's Day", + "1979-04-13": "Good Friday", + "1979-04-16": "Easter Monday", + "1979-04-25": "National Flag Day", + "1979-05-01": "Worker's Day", + "1979-05-24": "Ascension Day", + "1979-09-06": "Independence Day", + "1979-12-25": "Christmas Day", + "1979-12-26": "Boxing Day", + "1980-01-01": "New Year's Day", + "1980-04-04": "Good Friday", + "1980-04-07": "Easter Monday", + "1980-04-25": "National Flag Day", + "1980-05-01": "Worker's Day", + "1980-05-15": "Ascension Day", + "1980-09-06": "Independence Day", + "1980-12-25": "Christmas Day", + "1980-12-26": "Boxing Day", + "1981-01-01": "New Year's Day", + "1981-04-17": "Good Friday", + "1981-04-20": "Easter Monday", + "1981-04-25": "National Flag Day", + "1981-05-01": "Worker's Day", + "1981-05-28": "Ascension Day", + "1981-09-06": "Independence Day", + "1981-12-25": "Christmas Day", + "1981-12-26": "Boxing Day", + "1982-01-01": "New Year's Day", + "1982-04-09": "Good Friday", + "1982-04-12": "Easter Monday", + "1982-04-25": "National Flag Day", + "1982-05-01": "Worker's Day", + "1982-05-20": "Ascension Day", + "1982-09-06": "Independence Day", + "1982-12-25": "Christmas Day", + "1982-12-26": "Boxing Day", + "1983-01-01": "New Year's Day", + "1983-04-01": "Good Friday", + "1983-04-04": "Easter Monday", + "1983-04-25": "National Flag Day", + "1983-05-01": "Worker's Day", + "1983-05-12": "Ascension Day", + "1983-07-22": "Birthday of Late King Sobhuza", + "1983-09-06": "Independence Day", + "1983-12-25": "Christmas Day", + "1983-12-26": "Boxing Day", + "1984-01-01": "New Year's Day", + "1984-04-20": "Good Friday", + "1984-04-23": "Easter Monday", + "1984-04-25": "National Flag Day", + "1984-05-01": "Worker's Day", + "1984-05-31": "Ascension Day", + "1984-07-22": "Birthday of Late King Sobhuza", + "1984-09-06": "Independence Day", + "1984-12-25": "Christmas Day", + "1984-12-26": "Boxing Day", + "1985-01-01": "New Year's Day", + "1985-04-05": "Good Friday", + "1985-04-08": "Easter Monday", + "1985-04-25": "National Flag Day", + "1985-05-01": "Worker's Day", + "1985-05-16": "Ascension Day", + "1985-07-22": "Birthday of Late King Sobhuza", + "1985-09-06": "Independence Day", + "1985-12-25": "Christmas Day", + "1985-12-26": "Boxing Day", + "1986-01-01": "New Year's Day", + "1986-03-28": "Good Friday", + "1986-03-31": "Easter Monday", + "1986-04-25": "National Flag Day", + "1986-05-01": "Worker's Day", + "1986-05-08": "Ascension Day", + "1986-07-22": "Birthday of Late King Sobhuza", + "1986-09-06": "Independence Day", + "1986-12-25": "Christmas Day", + "1986-12-26": "Boxing Day", + "1987-01-01": "New Year's Day", + "1987-04-17": "Good Friday", + "1987-04-19": "King's Birthday", + "1987-04-20": "Easter Monday", + "1987-04-25": "National Flag Day", + "1987-05-01": "Worker's Day", + "1987-05-28": "Ascension Day", + "1987-07-22": "Birthday of Late King Sobhuza", + "1987-09-06": "Independence Day", + "1987-12-25": "Christmas Day", + "1987-12-26": "Boxing Day", + "1988-01-01": "New Year's Day", + "1988-04-01": "Good Friday", + "1988-04-04": "Easter Monday", + "1988-04-19": "King's Birthday", + "1988-04-25": "National Flag Day", + "1988-05-01": "Worker's Day", + "1988-05-12": "Ascension Day", + "1988-07-22": "Birthday of Late King Sobhuza", + "1988-09-06": "Independence Day", + "1988-12-25": "Christmas Day", + "1988-12-26": "Boxing Day", + "1989-01-01": "New Year's Day", + "1989-03-24": "Good Friday", + "1989-03-27": "Easter Monday", + "1989-04-19": "King's Birthday", + "1989-04-25": "National Flag Day", + "1989-05-01": "Worker's Day", + "1989-05-04": "Ascension Day", + "1989-07-22": "Birthday of Late King Sobhuza", + "1989-09-06": "Independence Day", + "1989-12-25": "Christmas Day", + "1989-12-26": "Boxing Day", + "1990-01-01": "New Year's Day", + "1990-04-13": "Good Friday", + "1990-04-16": "Easter Monday", + "1990-04-19": "King's Birthday", + "1990-04-25": "National Flag Day", + "1990-05-01": "Worker's Day", + "1990-05-24": "Ascension Day", + "1990-07-22": "Birthday of Late King Sobhuza", + "1990-09-06": "Independence Day", + "1990-12-25": "Christmas Day", + "1990-12-26": "Boxing Day", + "1991-01-01": "New Year's Day", + "1991-03-29": "Good Friday", + "1991-04-01": "Easter Monday", + "1991-04-19": "King's Birthday", + "1991-04-25": "National Flag Day", + "1991-05-01": "Worker's Day", + "1991-05-09": "Ascension Day", + "1991-07-22": "Birthday of Late King Sobhuza", + "1991-09-06": "Independence Day", + "1991-12-25": "Christmas Day", + "1991-12-26": "Boxing Day", + "1992-01-01": "New Year's Day", + "1992-04-17": "Good Friday", + "1992-04-19": "King's Birthday", + "1992-04-20": "Easter Monday", + "1992-04-25": "National Flag Day", + "1992-05-01": "Worker's Day", + "1992-05-28": "Ascension Day", + "1992-07-22": "Birthday of Late King Sobhuza", + "1992-09-06": "Independence Day", + "1992-12-25": "Christmas Day", + "1992-12-26": "Boxing Day", + "1993-01-01": "New Year's Day", + "1993-04-09": "Good Friday", + "1993-04-12": "Easter Monday", + "1993-04-19": "King's Birthday", + "1993-04-25": "National Flag Day", + "1993-05-01": "Worker's Day", + "1993-05-20": "Ascension Day", + "1993-07-22": "Birthday of Late King Sobhuza", + "1993-09-06": "Independence Day", + "1993-12-25": "Christmas Day", + "1993-12-26": "Boxing Day", + "1994-01-01": "New Year's Day", + "1994-04-01": "Good Friday", + "1994-04-04": "Easter Monday", + "1994-04-19": "King's Birthday", + "1994-04-25": "National Flag Day", + "1994-05-01": "Worker's Day", + "1994-05-12": "Ascension Day", + "1994-07-22": "Birthday of Late King Sobhuza", + "1994-09-06": "Independence Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Boxing Day", + "1995-01-01": "New Year's Day", + "1995-04-14": "Good Friday", + "1995-04-17": "Easter Monday", + "1995-04-19": "King's Birthday", + "1995-04-25": "National Flag Day", + "1995-05-01": "Worker's Day", + "1995-05-25": "Ascension Day", + "1995-07-22": "Birthday of Late King Sobhuza", + "1995-09-06": "Independence Day", + "1995-12-25": "Christmas Day", + "1995-12-26": "Boxing Day", + "1996-01-01": "New Year's Day", + "1996-04-05": "Good Friday", + "1996-04-08": "Easter Monday", + "1996-04-19": "King's Birthday", + "1996-04-25": "National Flag Day", + "1996-05-01": "Worker's Day", + "1996-05-16": "Ascension Day", + "1996-07-22": "Birthday of Late King Sobhuza", + "1996-09-06": "Independence Day", + "1996-12-25": "Christmas Day", + "1996-12-26": "Boxing Day", + "1997-01-01": "New Year's Day", + "1997-03-28": "Good Friday", + "1997-03-31": "Easter Monday", + "1997-04-19": "King's Birthday", + "1997-04-25": "National Flag Day", + "1997-05-01": "Worker's Day", + "1997-05-08": "Ascension Day", + "1997-07-22": "Birthday of Late King Sobhuza", + "1997-09-06": "Independence Day", + "1997-12-25": "Christmas Day", + "1997-12-26": "Boxing Day", + "1998-01-01": "New Year's Day", + "1998-04-10": "Good Friday", + "1998-04-13": "Easter Monday", + "1998-04-19": "King's Birthday", + "1998-04-25": "National Flag Day", + "1998-05-01": "Worker's Day", + "1998-05-21": "Ascension Day", + "1998-07-22": "Birthday of Late King Sobhuza", + "1998-09-06": "Independence Day", + "1998-12-25": "Christmas Day", + "1998-12-26": "Boxing Day", + "1999-01-01": "New Year's Day", + "1999-04-02": "Good Friday", + "1999-04-05": "Easter Monday", + "1999-04-19": "King's Birthday", + "1999-04-25": "National Flag Day", + "1999-05-01": "Worker's Day", + "1999-05-13": "Ascension Day", + "1999-07-22": "Birthday of Late King Sobhuza", + "1999-09-06": "Independence Day", + "1999-12-25": "Christmas Day", + "1999-12-26": "Boxing Day", + "1999-12-31": "Y2K changeover", + "2000-01-01": "New Year's Day", + "2000-01-03": "Y2K changeover", + "2000-04-19": "King's Birthday", + "2000-04-21": "Good Friday", + "2000-04-24": "Easter Monday", + "2000-04-25": "National Flag Day", + "2000-05-01": "Worker's Day", + "2000-06-01": "Ascension Day", + "2000-07-22": "Birthday of Late King Sobhuza", + "2000-09-06": "Independence Day", + "2000-12-25": "Christmas Day", + "2000-12-26": "Boxing Day", + "2001-01-01": "New Year's Day", + "2001-04-13": "Good Friday", + "2001-04-16": "Easter Monday", + "2001-04-19": "King's Birthday", + "2001-04-25": "National Flag Day", + "2001-05-01": "Worker's Day", + "2001-05-24": "Ascension Day", + "2001-07-22": "Birthday of Late King Sobhuza", + "2001-09-06": "Independence Day", + "2001-12-25": "Christmas Day", + "2001-12-26": "Boxing Day", + "2002-01-01": "New Year's Day", + "2002-03-29": "Good Friday", + "2002-04-01": "Easter Monday", + "2002-04-19": "King's Birthday", + "2002-04-25": "National Flag Day", + "2002-05-01": "Worker's Day", + "2002-05-09": "Ascension Day", + "2002-07-22": "Birthday of Late King Sobhuza", + "2002-09-06": "Independence Day", + "2002-12-25": "Christmas Day", + "2002-12-26": "Boxing Day", + "2003-01-01": "New Year's Day", + "2003-04-18": "Good Friday", + "2003-04-19": "King's Birthday", + "2003-04-21": "Easter Monday", + "2003-04-25": "National Flag Day", + "2003-05-01": "Worker's Day", + "2003-05-29": "Ascension Day", + "2003-07-22": "Birthday of Late King Sobhuza", + "2003-09-06": "Independence Day", + "2003-12-25": "Christmas Day", + "2003-12-26": "Boxing Day", + "2004-01-01": "New Year's Day", + "2004-04-09": "Good Friday", + "2004-04-12": "Easter Monday", + "2004-04-19": "King's Birthday", + "2004-04-25": "National Flag Day", + "2004-05-01": "Worker's Day", + "2004-05-20": "Ascension Day", + "2004-07-22": "Birthday of Late King Sobhuza", + "2004-09-06": "Independence Day", + "2004-12-25": "Christmas Day", + "2004-12-26": "Boxing Day", + "2005-01-01": "New Year's Day", + "2005-03-25": "Good Friday", + "2005-03-28": "Easter Monday", + "2005-04-19": "King's Birthday", + "2005-04-25": "National Flag Day", + "2005-05-01": "Worker's Day", + "2005-05-05": "Ascension Day", + "2005-07-22": "Birthday of Late King Sobhuza", + "2005-09-06": "Independence Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "Boxing Day", + "2006-01-01": "New Year's Day", + "2006-04-14": "Good Friday", + "2006-04-17": "Easter Monday", + "2006-04-19": "King's Birthday", + "2006-04-25": "National Flag Day", + "2006-05-01": "Worker's Day", + "2006-05-25": "Ascension Day", + "2006-07-22": "Birthday of Late King Sobhuza", + "2006-09-06": "Independence Day", + "2006-12-25": "Christmas Day", + "2006-12-26": "Boxing Day", + "2007-01-01": "New Year's Day", + "2007-04-06": "Good Friday", + "2007-04-09": "Easter Monday", + "2007-04-19": "King's Birthday", + "2007-04-25": "National Flag Day", + "2007-05-01": "Worker's Day", + "2007-05-17": "Ascension Day", + "2007-07-22": "Birthday of Late King Sobhuza", + "2007-09-06": "Independence Day", + "2007-12-25": "Christmas Day", + "2007-12-26": "Boxing Day", + "2008-01-01": "New Year's Day", + "2008-03-21": "Good Friday", + "2008-03-24": "Easter Monday", + "2008-04-19": "King's Birthday", + "2008-04-25": "National Flag Day", + "2008-05-01": "Ascension Day; Worker's Day", + "2008-07-22": "Birthday of Late King Sobhuza", + "2008-09-06": "Independence Day", + "2008-12-25": "Christmas Day", + "2008-12-26": "Boxing Day", + "2009-01-01": "New Year's Day", + "2009-04-10": "Good Friday", + "2009-04-13": "Easter Monday", + "2009-04-19": "King's Birthday", + "2009-04-25": "National Flag Day", + "2009-05-01": "Worker's Day", + "2009-05-21": "Ascension Day", + "2009-07-22": "Birthday of Late King Sobhuza", + "2009-09-06": "Independence Day", + "2009-12-25": "Christmas Day", + "2009-12-26": "Boxing Day", + "2010-01-01": "New Year's Day", + "2010-04-02": "Good Friday", + "2010-04-05": "Easter Monday", + "2010-04-19": "King's Birthday", + "2010-04-25": "National Flag Day", + "2010-05-01": "Worker's Day", + "2010-05-13": "Ascension Day", + "2010-07-22": "Birthday of Late King Sobhuza", + "2010-09-06": "Independence Day", + "2010-12-25": "Christmas Day", + "2010-12-26": "Boxing Day", + "2011-01-01": "New Year's Day", + "2011-04-19": "King's Birthday", + "2011-04-22": "Good Friday", + "2011-04-25": "Easter Monday; National Flag Day", + "2011-05-01": "Worker's Day", + "2011-06-02": "Ascension Day", + "2011-07-22": "Birthday of Late King Sobhuza", + "2011-09-06": "Independence Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "Boxing Day", + "2012-01-01": "New Year's Day", + "2012-04-06": "Good Friday", + "2012-04-09": "Easter Monday", + "2012-04-19": "King's Birthday", + "2012-04-25": "National Flag Day", + "2012-05-01": "Worker's Day", + "2012-05-17": "Ascension Day", + "2012-07-22": "Birthday of Late King Sobhuza", + "2012-09-06": "Independence Day", + "2012-12-25": "Christmas Day", + "2012-12-26": "Boxing Day", + "2013-01-01": "New Year's Day", + "2013-03-29": "Good Friday", + "2013-04-01": "Easter Monday", + "2013-04-19": "King's Birthday", + "2013-04-25": "National Flag Day", + "2013-05-01": "Worker's Day", + "2013-05-09": "Ascension Day", + "2013-07-22": "Birthday of Late King Sobhuza", + "2013-09-06": "Independence Day", + "2013-12-25": "Christmas Day", + "2013-12-26": "Boxing Day", + "2014-01-01": "New Year's Day", + "2014-04-18": "Good Friday", + "2014-04-19": "King's Birthday", + "2014-04-21": "Easter Monday", + "2014-04-25": "National Flag Day", + "2014-05-01": "Worker's Day", + "2014-05-29": "Ascension Day", + "2014-07-22": "Birthday of Late King Sobhuza", + "2014-09-06": "Independence Day", + "2014-12-25": "Christmas Day", + "2014-12-26": "Boxing Day", + "2015-01-01": "New Year's Day", + "2015-04-03": "Good Friday", + "2015-04-06": "Easter Monday", + "2015-04-19": "King's Birthday", + "2015-04-25": "National Flag Day", + "2015-05-01": "Worker's Day", + "2015-05-14": "Ascension Day", + "2015-07-22": "Birthday of Late King Sobhuza", + "2015-09-06": "Independence Day", + "2015-12-25": "Christmas Day", + "2015-12-26": "Boxing Day", + "2016-01-01": "New Year's Day", + "2016-03-25": "Good Friday", + "2016-03-28": "Easter Monday", + "2016-04-19": "King's Birthday", + "2016-04-25": "National Flag Day", + "2016-05-01": "Worker's Day", + "2016-05-05": "Ascension Day", + "2016-07-22": "Birthday of Late King Sobhuza", + "2016-09-06": "Independence Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "Boxing Day", + "2017-01-01": "New Year's Day", + "2017-04-14": "Good Friday", + "2017-04-17": "Easter Monday", + "2017-04-19": "King's Birthday", + "2017-04-25": "National Flag Day", + "2017-05-01": "Worker's Day", + "2017-05-25": "Ascension Day", + "2017-07-22": "Birthday of Late King Sobhuza", + "2017-09-06": "Independence Day", + "2017-12-25": "Christmas Day", + "2017-12-26": "Boxing Day", + "2018-01-01": "New Year's Day", + "2018-03-30": "Good Friday", + "2018-04-02": "Easter Monday", + "2018-04-19": "King's Birthday", + "2018-04-25": "National Flag Day", + "2018-05-01": "Worker's Day", + "2018-05-10": "Ascension Day", + "2018-07-22": "Birthday of Late King Sobhuza", + "2018-09-06": "Independence Day", + "2018-12-25": "Christmas Day", + "2018-12-26": "Boxing Day", + "2019-01-01": "New Year's Day", + "2019-04-19": "Good Friday; King's Birthday", + "2019-04-22": "Easter Monday", + "2019-04-25": "National Flag Day", + "2019-05-01": "Worker's Day", + "2019-05-30": "Ascension Day", + "2019-07-22": "Birthday of Late King Sobhuza", + "2019-09-06": "Independence Day", + "2019-12-25": "Christmas Day", + "2019-12-26": "Boxing Day", + "2020-01-01": "New Year's Day", + "2020-04-10": "Good Friday", + "2020-04-13": "Easter Monday", + "2020-04-19": "King's Birthday", + "2020-04-25": "National Flag Day", + "2020-05-01": "Worker's Day", + "2020-05-21": "Ascension Day", + "2020-07-22": "Birthday of Late King Sobhuza", + "2020-09-06": "Independence Day", + "2020-12-25": "Christmas Day", + "2020-12-26": "Boxing Day", + "2021-01-01": "New Year's Day", + "2021-04-02": "Good Friday", + "2021-04-05": "Easter Monday", + "2021-04-19": "King's Birthday", + "2021-04-25": "National Flag Day", + "2021-04-26": "National Flag Day (Observed)", + "2021-05-01": "Worker's Day", + "2021-05-13": "Ascension Day", + "2021-07-22": "Birthday of Late King Sobhuza", + "2021-09-06": "Independence Day", + "2021-12-25": "Christmas Day", + "2021-12-26": "Boxing Day", + "2021-12-27": "Boxing Day (Observed)", + "2022-01-01": "New Year's Day", + "2022-04-15": "Good Friday", + "2022-04-18": "Easter Monday", + "2022-04-19": "King's Birthday", + "2022-04-25": "National Flag Day", + "2022-05-01": "Worker's Day", + "2022-05-02": "Worker's Day (Observed)", + "2022-05-26": "Ascension Day", + "2022-07-22": "Birthday of Late King Sobhuza", + "2022-09-06": "Independence Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "Boxing Day", + "2022-12-27": "Christmas Day (Observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (Observed)", + "2023-04-07": "Good Friday", + "2023-04-10": "Easter Monday", + "2023-04-19": "King's Birthday", + "2023-04-25": "National Flag Day", + "2023-05-01": "Worker's Day", + "2023-05-18": "Ascension Day", + "2023-07-22": "Birthday of Late King Sobhuza", + "2023-09-06": "Independence Day", + "2023-12-25": "Christmas Day", + "2023-12-26": "Boxing Day", + "2024-01-01": "New Year's Day", + "2024-03-29": "Good Friday", + "2024-04-01": "Easter Monday", + "2024-04-19": "King's Birthday", + "2024-04-25": "National Flag Day", + "2024-05-01": "Worker's Day", + "2024-05-09": "Ascension Day", + "2024-07-22": "Birthday of Late King Sobhuza", + "2024-09-06": "Independence Day", + "2024-12-25": "Christmas Day", + "2024-12-26": "Boxing Day", + "2025-01-01": "New Year's Day", + "2025-04-18": "Good Friday", + "2025-04-19": "King's Birthday", + "2025-04-21": "Easter Monday", + "2025-04-25": "National Flag Day", + "2025-05-01": "Worker's Day", + "2025-05-29": "Ascension Day", + "2025-07-22": "Birthday of Late King Sobhuza", + "2025-09-06": "Independence Day", + "2025-12-25": "Christmas Day", + "2025-12-26": "Boxing Day", + "2026-01-01": "New Year's Day", + "2026-04-03": "Good Friday", + "2026-04-06": "Easter Monday", + "2026-04-19": "King's Birthday", + "2026-04-20": "King's Birthday (Observed)", + "2026-04-25": "National Flag Day", + "2026-05-01": "Worker's Day", + "2026-05-14": "Ascension Day", + "2026-07-22": "Birthday of Late King Sobhuza", + "2026-09-06": "Independence Day", + "2026-09-07": "Independence Day (Observed)", + "2026-12-25": "Christmas Day", + "2026-12-26": "Boxing Day", + "2027-01-01": "New Year's Day", + "2027-03-26": "Good Friday", + "2027-03-29": "Easter Monday", + "2027-04-19": "King's Birthday", + "2027-04-25": "National Flag Day", + "2027-04-26": "National Flag Day (Observed)", + "2027-05-01": "Worker's Day", + "2027-05-06": "Ascension Day", + "2027-07-22": "Birthday of Late King Sobhuza", + "2027-09-06": "Independence Day", + "2027-12-25": "Christmas Day", + "2027-12-26": "Boxing Day", + "2027-12-27": "Boxing Day (Observed)", + "2028-01-01": "New Year's Day", + "2028-04-14": "Good Friday", + "2028-04-17": "Easter Monday", + "2028-04-19": "King's Birthday", + "2028-04-25": "National Flag Day", + "2028-05-01": "Worker's Day", + "2028-05-25": "Ascension Day", + "2028-07-22": "Birthday of Late King Sobhuza", + "2028-09-06": "Independence Day", + "2028-12-25": "Christmas Day", + "2028-12-26": "Boxing Day", + "2029-01-01": "New Year's Day", + "2029-03-30": "Good Friday", + "2029-04-02": "Easter Monday", + "2029-04-19": "King's Birthday", + "2029-04-25": "National Flag Day", + "2029-05-01": "Worker's Day", + "2029-05-10": "Ascension Day", + "2029-07-22": "Birthday of Late King Sobhuza", + "2029-07-23": "Birthday of Late King Sobhuza (Observed)", + "2029-09-06": "Independence Day", + "2029-12-25": "Christmas Day", + "2029-12-26": "Boxing Day", + "2030-01-01": "New Year's Day", + "2030-04-19": "Good Friday; King's Birthday", + "2030-04-22": "Easter Monday", + "2030-04-25": "National Flag Day", + "2030-05-01": "Worker's Day", + "2030-05-30": "Ascension Day", + "2030-07-22": "Birthday of Late King Sobhuza", + "2030-09-06": "Independence Day", + "2030-12-25": "Christmas Day", + "2030-12-26": "Boxing Day", + "2031-01-01": "New Year's Day", + "2031-04-11": "Good Friday", + "2031-04-14": "Easter Monday", + "2031-04-19": "King's Birthday", + "2031-04-25": "National Flag Day", + "2031-05-01": "Worker's Day", + "2031-05-22": "Ascension Day", + "2031-07-22": "Birthday of Late King Sobhuza", + "2031-09-06": "Independence Day", + "2031-12-25": "Christmas Day", + "2031-12-26": "Boxing Day", + "2032-01-01": "New Year's Day", + "2032-03-26": "Good Friday", + "2032-03-29": "Easter Monday", + "2032-04-19": "King's Birthday", + "2032-04-25": "National Flag Day", + "2032-04-26": "National Flag Day (Observed)", + "2032-05-01": "Worker's Day", + "2032-05-06": "Ascension Day", + "2032-07-22": "Birthday of Late King Sobhuza", + "2032-09-06": "Independence Day", + "2032-12-25": "Christmas Day", + "2032-12-26": "Boxing Day", + "2032-12-27": "Boxing Day (Observed)", + "2033-01-01": "New Year's Day", + "2033-04-15": "Good Friday", + "2033-04-18": "Easter Monday", + "2033-04-19": "King's Birthday", + "2033-04-25": "National Flag Day", + "2033-05-01": "Worker's Day", + "2033-05-02": "Worker's Day (Observed)", + "2033-05-26": "Ascension Day", + "2033-07-22": "Birthday of Late King Sobhuza", + "2033-09-06": "Independence Day", + "2033-12-25": "Christmas Day", + "2033-12-26": "Boxing Day", + "2033-12-27": "Christmas Day (Observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-04-07": "Good Friday", + "2034-04-10": "Easter Monday", + "2034-04-19": "King's Birthday", + "2034-04-25": "National Flag Day", + "2034-05-01": "Worker's Day", + "2034-05-18": "Ascension Day", + "2034-07-22": "Birthday of Late King Sobhuza", + "2034-09-06": "Independence Day", + "2034-12-25": "Christmas Day", + "2034-12-26": "Boxing Day", + "2035-01-01": "New Year's Day", + "2035-03-23": "Good Friday", + "2035-03-26": "Easter Monday", + "2035-04-19": "King's Birthday", + "2035-04-25": "National Flag Day", + "2035-05-01": "Worker's Day", + "2035-05-03": "Ascension Day", + "2035-07-22": "Birthday of Late King Sobhuza", + "2035-07-23": "Birthday of Late King Sobhuza (Observed)", + "2035-09-06": "Independence Day", + "2035-12-25": "Christmas Day", + "2035-12-26": "Boxing Day", + "2036-01-01": "New Year's Day", + "2036-04-11": "Good Friday", + "2036-04-14": "Easter Monday", + "2036-04-19": "King's Birthday", + "2036-04-25": "National Flag Day", + "2036-05-01": "Worker's Day", + "2036-05-22": "Ascension Day", + "2036-07-22": "Birthday of Late King Sobhuza", + "2036-09-06": "Independence Day", + "2036-12-25": "Christmas Day", + "2036-12-26": "Boxing Day", + "2037-01-01": "New Year's Day", + "2037-04-03": "Good Friday", + "2037-04-06": "Easter Monday", + "2037-04-19": "King's Birthday", + "2037-04-20": "King's Birthday (Observed)", + "2037-04-25": "National Flag Day", + "2037-05-01": "Worker's Day", + "2037-05-14": "Ascension Day", + "2037-07-22": "Birthday of Late King Sobhuza", + "2037-09-06": "Independence Day", + "2037-09-07": "Independence Day (Observed)", + "2037-12-25": "Christmas Day", + "2037-12-26": "Boxing Day", + "2038-01-01": "New Year's Day", + "2038-04-19": "King's Birthday", + "2038-04-23": "Good Friday", + "2038-04-25": "National Flag Day", + "2038-04-26": "Easter Monday", + "2038-04-27": "National Flag Day (Observed)", + "2038-05-01": "Worker's Day", + "2038-06-03": "Ascension Day", + "2038-07-22": "Birthday of Late King Sobhuza", + "2038-09-06": "Independence Day", + "2038-12-25": "Christmas Day", + "2038-12-26": "Boxing Day", + "2038-12-27": "Boxing Day (Observed)", + "2039-01-01": "New Year's Day", + "2039-04-08": "Good Friday", + "2039-04-11": "Easter Monday", + "2039-04-19": "King's Birthday", + "2039-04-25": "National Flag Day", + "2039-05-01": "Worker's Day", + "2039-05-02": "Worker's Day (Observed)", + "2039-05-19": "Ascension Day", + "2039-07-22": "Birthday of Late King Sobhuza", + "2039-09-06": "Independence Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Boxing Day", + "2039-12-27": "Christmas Day (Observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (Observed)", + "2040-03-30": "Good Friday", + "2040-04-02": "Easter Monday", + "2040-04-19": "King's Birthday", + "2040-04-25": "National Flag Day", + "2040-05-01": "Worker's Day", + "2040-05-10": "Ascension Day", + "2040-07-22": "Birthday of Late King Sobhuza", + "2040-07-23": "Birthday of Late King Sobhuza (Observed)", + "2040-09-06": "Independence Day", + "2040-12-25": "Christmas Day", + "2040-12-26": "Boxing Day", + "2041-01-01": "New Year's Day", + "2041-04-19": "Good Friday; King's Birthday", + "2041-04-22": "Easter Monday", + "2041-04-25": "National Flag Day", + "2041-05-01": "Worker's Day", + "2041-05-30": "Ascension Day", + "2041-07-22": "Birthday of Late King Sobhuza", + "2041-09-06": "Independence Day", + "2041-12-25": "Christmas Day", + "2041-12-26": "Boxing Day", + "2042-01-01": "New Year's Day", + "2042-04-04": "Good Friday", + "2042-04-07": "Easter Monday", + "2042-04-19": "King's Birthday", + "2042-04-25": "National Flag Day", + "2042-05-01": "Worker's Day", + "2042-05-15": "Ascension Day", + "2042-07-22": "Birthday of Late King Sobhuza", + "2042-09-06": "Independence Day", + "2042-12-25": "Christmas Day", + "2042-12-26": "Boxing Day", + "2043-01-01": "New Year's Day", + "2043-03-27": "Good Friday", + "2043-03-30": "Easter Monday", + "2043-04-19": "King's Birthday", + "2043-04-20": "King's Birthday (Observed)", + "2043-04-25": "National Flag Day", + "2043-05-01": "Worker's Day", + "2043-05-07": "Ascension Day", + "2043-07-22": "Birthday of Late King Sobhuza", + "2043-09-06": "Independence Day", + "2043-09-07": "Independence Day (Observed)", + "2043-12-25": "Christmas Day", + "2043-12-26": "Boxing Day", + "2044-01-01": "New Year's Day", + "2044-04-15": "Good Friday", + "2044-04-18": "Easter Monday", + "2044-04-19": "King's Birthday", + "2044-04-25": "National Flag Day", + "2044-05-01": "Worker's Day", + "2044-05-02": "Worker's Day (Observed)", + "2044-05-26": "Ascension Day", + "2044-07-22": "Birthday of Late King Sobhuza", + "2044-09-06": "Independence Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "Boxing Day", + "2044-12-27": "Christmas Day (Observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (Observed)", + "2045-04-07": "Good Friday", + "2045-04-10": "Easter Monday", + "2045-04-19": "King's Birthday", + "2045-04-25": "National Flag Day", + "2045-05-01": "Worker's Day", + "2045-05-18": "Ascension Day", + "2045-07-22": "Birthday of Late King Sobhuza", + "2045-09-06": "Independence Day", + "2045-12-25": "Christmas Day", + "2045-12-26": "Boxing Day", + "2046-01-01": "New Year's Day", + "2046-03-23": "Good Friday", + "2046-03-26": "Easter Monday", + "2046-04-19": "King's Birthday", + "2046-04-25": "National Flag Day", + "2046-05-01": "Worker's Day", + "2046-05-03": "Ascension Day", + "2046-07-22": "Birthday of Late King Sobhuza", + "2046-07-23": "Birthday of Late King Sobhuza (Observed)", + "2046-09-06": "Independence Day", + "2046-12-25": "Christmas Day", + "2046-12-26": "Boxing Day", + "2047-01-01": "New Year's Day", + "2047-04-12": "Good Friday", + "2047-04-15": "Easter Monday", + "2047-04-19": "King's Birthday", + "2047-04-25": "National Flag Day", + "2047-05-01": "Worker's Day", + "2047-05-23": "Ascension Day", + "2047-07-22": "Birthday of Late King Sobhuza", + "2047-09-06": "Independence Day", + "2047-12-25": "Christmas Day", + "2047-12-26": "Boxing Day", + "2048-01-01": "New Year's Day", + "2048-04-03": "Good Friday", + "2048-04-06": "Easter Monday", + "2048-04-19": "King's Birthday", + "2048-04-20": "King's Birthday (Observed)", + "2048-04-25": "National Flag Day", + "2048-05-01": "Worker's Day", + "2048-05-14": "Ascension Day", + "2048-07-22": "Birthday of Late King Sobhuza", + "2048-09-06": "Independence Day", + "2048-09-07": "Independence Day (Observed)", + "2048-12-25": "Christmas Day", + "2048-12-26": "Boxing Day", + "2049-01-01": "New Year's Day", + "2049-04-16": "Good Friday", + "2049-04-19": "Easter Monday; King's Birthday", + "2049-04-25": "National Flag Day", + "2049-04-26": "National Flag Day (Observed)", + "2049-05-01": "Worker's Day", + "2049-05-27": "Ascension Day", + "2049-07-22": "Birthday of Late King Sobhuza", + "2049-09-06": "Independence Day", + "2049-12-25": "Christmas Day", + "2049-12-26": "Boxing Day", + "2049-12-27": "Boxing Day (Observed)", + "2050-01-01": "New Year's Day", + "2050-04-08": "Good Friday", + "2050-04-11": "Easter Monday", + "2050-04-19": "King's Birthday", + "2050-04-25": "National Flag Day", + "2050-05-01": "Worker's Day", + "2050-05-02": "Worker's Day (Observed)", + "2050-05-19": "Ascension Day", + "2050-07-22": "Birthday of Late King Sobhuza", + "2050-09-06": "Independence Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "Boxing Day", + "2050-12-27": "Christmas Day (Observed)" +} diff --git a/snapshots/countries/TD.json b/snapshots/countries/TD.json new file mode 100644 index 000000000..b3d2fbaa7 --- /dev/null +++ b/snapshots/countries/TD.json @@ -0,0 +1,1129 @@ +{ + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day (Observed)", + "1961-03-08": "International Women's Day", + "1961-03-18": "Eid al-Fitr* (*estimated)", + "1961-04-03": "Easter Monday", + "1961-05-01": "Labour Day", + "1961-05-25": "Eid al-Adha* (*estimated)", + "1961-08-11": "Independence Day", + "1961-08-23": "Mawlid* (*estimated)", + "1961-11-01": "All Saints' Day", + "1961-11-28": "Republic Day", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-03-07": "Eid al-Fitr* (*estimated)", + "1962-03-08": "International Women's Day", + "1962-04-23": "Easter Monday", + "1962-05-01": "Labour Day", + "1962-05-14": "Eid al-Adha* (*estimated)", + "1962-08-11": "Independence Day", + "1962-08-12": "Mawlid* (*estimated)", + "1962-11-01": "All Saints' Day", + "1962-11-28": "Republic Day", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-02-24": "Eid al-Fitr* (*estimated)", + "1963-03-08": "International Women's Day", + "1963-04-15": "Easter Monday", + "1963-05-01": "Labour Day", + "1963-05-03": "Eid al-Adha* (*estimated)", + "1963-08-02": "Mawlid* (*estimated)", + "1963-08-11": "Independence Day", + "1963-08-12": "Independence Day (Observed)", + "1963-11-01": "All Saints' Day", + "1963-11-28": "Republic Day", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-02-14": "Eid al-Fitr* (*estimated)", + "1964-03-08": "International Women's Day", + "1964-03-09": "International Women's Day (Observed)", + "1964-03-30": "Easter Monday", + "1964-04-22": "Eid al-Adha* (*estimated)", + "1964-05-01": "Labour Day", + "1964-07-21": "Mawlid* (*estimated)", + "1964-08-11": "Independence Day", + "1964-11-01": "All Saints' Day", + "1964-11-28": "Republic Day", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-02-02": "Eid al-Fitr* (*estimated)", + "1965-03-08": "International Women's Day", + "1965-04-11": "Eid al-Adha* (*estimated)", + "1965-04-19": "Easter Monday", + "1965-05-01": "Labour Day", + "1965-07-10": "Mawlid* (*estimated)", + "1965-08-11": "Independence Day", + "1965-11-01": "All Saints' Day", + "1965-11-28": "Republic Day", + "1965-11-29": "Republic Day (Observed)", + "1965-12-25": "Christmas Day", + "1966-01-01": "New Year's Day", + "1966-01-22": "Eid al-Fitr* (*estimated)", + "1966-03-08": "International Women's Day", + "1966-04-01": "Eid al-Adha* (*estimated)", + "1966-04-11": "Easter Monday", + "1966-05-01": "Labour Day", + "1966-05-02": "Labour Day (Observed)", + "1966-07-01": "Mawlid* (*estimated)", + "1966-08-11": "Independence Day", + "1966-11-01": "All Saints' Day", + "1966-11-28": "Republic Day", + "1966-12-25": "Christmas Day", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day (Observed)", + "1967-01-12": "Eid al-Fitr* (*estimated)", + "1967-03-08": "International Women's Day", + "1967-03-21": "Eid al-Adha* (*estimated)", + "1967-03-27": "Easter Monday", + "1967-05-01": "Labour Day", + "1967-06-19": "Mawlid* (*estimated)", + "1967-08-11": "Independence Day", + "1967-11-01": "All Saints' Day", + "1967-11-28": "Republic Day", + "1967-12-25": "Christmas Day", + "1968-01-01": "Eid al-Fitr* (*estimated); New Year's Day", + "1968-03-08": "International Women's Day", + "1968-03-09": "Eid al-Adha* (*estimated)", + "1968-04-15": "Easter Monday", + "1968-05-01": "Labour Day", + "1968-06-08": "Mawlid* (*estimated)", + "1968-08-11": "Independence Day", + "1968-08-12": "Independence Day (Observed)", + "1968-11-01": "All Saints' Day", + "1968-11-28": "Republic Day", + "1968-12-21": "Eid al-Fitr* (*estimated)", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-02-27": "Eid al-Adha* (*estimated)", + "1969-03-08": "International Women's Day", + "1969-04-07": "Easter Monday", + "1969-05-01": "Labour Day", + "1969-05-28": "Mawlid* (*estimated)", + "1969-08-11": "Independence Day", + "1969-11-01": "All Saints' Day", + "1969-11-28": "Republic Day", + "1969-12-10": "Eid al-Fitr* (*estimated)", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-02-16": "Eid al-Adha* (*estimated)", + "1970-03-08": "International Women's Day", + "1970-03-09": "International Women's Day (Observed)", + "1970-03-30": "Easter Monday", + "1970-05-01": "Labour Day", + "1970-05-18": "Mawlid* (*estimated)", + "1970-08-11": "Independence Day", + "1970-11-01": "All Saints' Day", + "1970-11-28": "Republic Day", + "1970-11-30": "Eid al-Fitr* (*estimated)", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-02-06": "Eid al-Adha* (*estimated)", + "1971-03-08": "International Women's Day", + "1971-04-12": "Easter Monday", + "1971-05-01": "Labour Day", + "1971-05-07": "Mawlid* (*estimated)", + "1971-08-11": "Independence Day", + "1971-11-01": "All Saints' Day", + "1971-11-19": "Eid al-Fitr* (*estimated)", + "1971-11-28": "Republic Day", + "1971-11-29": "Republic Day (Observed)", + "1971-12-25": "Christmas Day", + "1972-01-01": "New Year's Day", + "1972-01-26": "Eid al-Adha* (*estimated)", + "1972-03-08": "International Women's Day", + "1972-04-03": "Easter Monday", + "1972-04-25": "Mawlid* (*estimated)", + "1972-05-01": "Labour Day", + "1972-08-11": "Independence Day", + "1972-11-01": "All Saints' Day", + "1972-11-07": "Eid al-Fitr* (*estimated)", + "1972-11-28": "Republic Day", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-01-14": "Eid al-Adha* (*estimated)", + "1973-03-08": "International Women's Day", + "1973-04-15": "Mawlid* (*estimated)", + "1973-04-23": "Easter Monday", + "1973-05-01": "Labour Day", + "1973-08-11": "Independence Day", + "1973-10-27": "Eid al-Fitr* (*estimated)", + "1973-11-01": "All Saints' Day", + "1973-11-28": "Republic Day", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-01-03": "Eid al-Adha* (*estimated)", + "1974-03-08": "International Women's Day", + "1974-04-04": "Mawlid* (*estimated)", + "1974-04-15": "Easter Monday", + "1974-05-01": "Labour Day", + "1974-08-11": "Independence Day", + "1974-08-12": "Independence Day (Observed)", + "1974-10-16": "Eid al-Fitr* (*estimated)", + "1974-11-01": "All Saints' Day", + "1974-11-28": "Republic Day", + "1974-12-24": "Eid al-Adha* (*estimated)", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-03-08": "International Women's Day", + "1975-03-24": "Mawlid* (*estimated)", + "1975-03-31": "Easter Monday", + "1975-05-01": "Labour Day", + "1975-08-11": "Independence Day", + "1975-10-06": "Eid al-Fitr* (*estimated)", + "1975-11-01": "All Saints' Day", + "1975-11-28": "Republic Day", + "1975-12-13": "Eid al-Adha* (*estimated)", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-03-08": "International Women's Day", + "1976-03-12": "Mawlid* (*estimated)", + "1976-04-19": "Easter Monday", + "1976-05-01": "Labour Day", + "1976-08-11": "Independence Day", + "1976-09-24": "Eid al-Fitr* (*estimated)", + "1976-11-01": "All Saints' Day", + "1976-11-28": "Republic Day", + "1976-11-29": "Republic Day (Observed)", + "1976-12-01": "Eid al-Adha* (*estimated)", + "1976-12-25": "Christmas Day", + "1977-01-01": "New Year's Day", + "1977-03-02": "Mawlid* (*estimated)", + "1977-03-08": "International Women's Day", + "1977-04-11": "Easter Monday", + "1977-05-01": "Labour Day", + "1977-05-02": "Labour Day (Observed)", + "1977-08-11": "Independence Day", + "1977-09-14": "Eid al-Fitr* (*estimated)", + "1977-11-01": "All Saints' Day", + "1977-11-21": "Eid al-Adha* (*estimated)", + "1977-11-28": "Republic Day", + "1977-12-25": "Christmas Day", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day (Observed)", + "1978-02-19": "Mawlid* (*estimated)", + "1978-03-08": "International Women's Day", + "1978-03-27": "Easter Monday", + "1978-05-01": "Labour Day", + "1978-08-11": "Independence Day", + "1978-09-03": "Eid al-Fitr* (*estimated)", + "1978-11-01": "All Saints' Day", + "1978-11-10": "Eid al-Adha* (*estimated)", + "1978-11-28": "Republic Day", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-02-09": "Mawlid* (*estimated)", + "1979-03-08": "International Women's Day", + "1979-04-16": "Easter Monday", + "1979-05-01": "Labour Day", + "1979-08-11": "Independence Day", + "1979-08-23": "Eid al-Fitr* (*estimated)", + "1979-10-31": "Eid al-Adha* (*estimated)", + "1979-11-01": "All Saints' Day", + "1979-11-28": "Republic Day", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-01-30": "Mawlid* (*estimated)", + "1980-03-08": "International Women's Day", + "1980-04-07": "Easter Monday", + "1980-05-01": "Labour Day", + "1980-08-11": "Independence Day", + "1980-08-12": "Eid al-Fitr* (*estimated)", + "1980-10-19": "Eid al-Adha* (*estimated)", + "1980-11-01": "All Saints' Day", + "1980-11-28": "Republic Day", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-01-18": "Mawlid* (*estimated)", + "1981-03-08": "International Women's Day", + "1981-03-09": "International Women's Day (Observed)", + "1981-04-20": "Easter Monday", + "1981-05-01": "Labour Day", + "1981-08-01": "Eid al-Fitr* (*estimated)", + "1981-08-11": "Independence Day", + "1981-10-08": "Eid al-Adha* (*estimated)", + "1981-11-01": "All Saints' Day", + "1981-11-28": "Republic Day", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-01-07": "Mawlid* (*estimated)", + "1982-03-08": "International Women's Day", + "1982-04-12": "Easter Monday", + "1982-05-01": "Labour Day", + "1982-07-21": "Eid al-Fitr* (*estimated)", + "1982-08-11": "Independence Day", + "1982-09-27": "Eid al-Adha* (*estimated)", + "1982-11-01": "All Saints' Day", + "1982-11-28": "Republic Day", + "1982-11-29": "Republic Day (Observed)", + "1982-12-25": "Christmas Day", + "1982-12-27": "Mawlid* (*estimated)", + "1983-01-01": "New Year's Day", + "1983-03-08": "International Women's Day", + "1983-04-04": "Easter Monday", + "1983-05-01": "Labour Day", + "1983-05-02": "Labour Day (Observed)", + "1983-07-11": "Eid al-Fitr* (*estimated)", + "1983-08-11": "Independence Day", + "1983-09-17": "Eid al-Adha* (*estimated)", + "1983-11-01": "All Saints' Day", + "1983-11-28": "Republic Day", + "1983-12-16": "Mawlid* (*estimated)", + "1983-12-25": "Christmas Day", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (Observed)", + "1984-03-08": "International Women's Day", + "1984-04-23": "Easter Monday", + "1984-05-01": "Labour Day", + "1984-06-30": "Eid al-Fitr* (*estimated)", + "1984-08-11": "Independence Day", + "1984-09-05": "Eid al-Adha* (*estimated)", + "1984-11-01": "All Saints' Day", + "1984-11-28": "Republic Day", + "1984-12-04": "Mawlid* (*estimated)", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-03-08": "International Women's Day", + "1985-04-08": "Easter Monday", + "1985-05-01": "Labour Day", + "1985-06-19": "Eid al-Fitr* (*estimated)", + "1985-08-11": "Independence Day", + "1985-08-12": "Independence Day (Observed)", + "1985-08-26": "Eid al-Adha* (*estimated)", + "1985-11-01": "All Saints' Day", + "1985-11-24": "Mawlid* (*estimated)", + "1985-11-28": "Republic Day", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-03-08": "International Women's Day", + "1986-03-31": "Easter Monday", + "1986-05-01": "Labour Day", + "1986-06-08": "Eid al-Fitr* (*estimated)", + "1986-08-11": "Independence Day", + "1986-08-15": "Eid al-Adha* (*estimated)", + "1986-11-01": "All Saints' Day", + "1986-11-14": "Mawlid* (*estimated)", + "1986-11-28": "Republic Day", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-03-08": "International Women's Day", + "1987-03-09": "International Women's Day (Observed)", + "1987-04-20": "Easter Monday", + "1987-05-01": "Labour Day", + "1987-05-28": "Eid al-Fitr* (*estimated)", + "1987-08-04": "Eid al-Adha* (*estimated)", + "1987-08-11": "Independence Day", + "1987-11-01": "All Saints' Day", + "1987-11-03": "Mawlid* (*estimated)", + "1987-11-28": "Republic Day", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-03-08": "International Women's Day", + "1988-04-04": "Easter Monday", + "1988-05-01": "Labour Day", + "1988-05-02": "Labour Day (Observed)", + "1988-05-16": "Eid al-Fitr* (*estimated)", + "1988-07-23": "Eid al-Adha* (*estimated)", + "1988-08-11": "Independence Day", + "1988-10-22": "Mawlid* (*estimated)", + "1988-11-01": "All Saints' Day", + "1988-11-28": "Republic Day", + "1988-12-25": "Christmas Day", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (Observed)", + "1989-03-08": "International Women's Day", + "1989-03-27": "Easter Monday", + "1989-05-01": "Labour Day", + "1989-05-06": "Eid al-Fitr* (*estimated)", + "1989-07-13": "Eid al-Adha* (*estimated)", + "1989-08-11": "Independence Day", + "1989-10-11": "Mawlid* (*estimated)", + "1989-11-01": "All Saints' Day", + "1989-11-28": "Republic Day", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-03-08": "International Women's Day", + "1990-04-16": "Easter Monday", + "1990-04-26": "Eid al-Fitr* (*estimated)", + "1990-05-01": "Labour Day", + "1990-07-02": "Eid al-Adha* (*estimated)", + "1990-08-11": "Independence Day", + "1990-10-01": "Mawlid* (*estimated)", + "1990-11-01": "All Saints' Day", + "1990-11-28": "Republic Day", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-03-08": "International Women's Day", + "1991-04-01": "Easter Monday", + "1991-04-15": "Eid al-Fitr* (*estimated)", + "1991-05-01": "Labour Day", + "1991-06-22": "Eid al-Adha* (*estimated)", + "1991-08-11": "Independence Day", + "1991-08-12": "Independence Day (Observed)", + "1991-09-20": "Mawlid* (*estimated)", + "1991-11-01": "All Saints' Day", + "1991-11-28": "Republic Day", + "1991-12-01": "Freedom and Democracy Day", + "1991-12-02": "Freedom and Democracy Day (Observed)", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-03-08": "International Women's Day", + "1992-03-09": "International Women's Day (Observed)", + "1992-04-04": "Eid al-Fitr* (*estimated)", + "1992-04-20": "Easter Monday", + "1992-05-01": "Labour Day", + "1992-06-11": "Eid al-Adha* (*estimated)", + "1992-08-11": "Independence Day", + "1992-09-09": "Mawlid* (*estimated)", + "1992-11-01": "All Saints' Day", + "1992-11-28": "Republic Day", + "1992-12-01": "Freedom and Democracy Day", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-03-08": "International Women's Day", + "1993-03-24": "Eid al-Fitr* (*estimated)", + "1993-04-12": "Easter Monday", + "1993-05-01": "Labour Day", + "1993-05-31": "Eid al-Adha* (*estimated)", + "1993-08-11": "Independence Day", + "1993-08-29": "Mawlid* (*estimated)", + "1993-11-01": "All Saints' Day", + "1993-11-28": "Republic Day", + "1993-11-29": "Republic Day (Observed)", + "1993-12-01": "Freedom and Democracy Day", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-03-08": "International Women's Day", + "1994-03-13": "Eid al-Fitr* (*estimated)", + "1994-04-04": "Easter Monday", + "1994-05-01": "Labour Day", + "1994-05-02": "Labour Day (Observed)", + "1994-05-20": "Eid al-Adha* (*estimated)", + "1994-08-11": "Independence Day", + "1994-08-19": "Mawlid* (*estimated)", + "1994-11-01": "All Saints' Day", + "1994-11-28": "Republic Day", + "1994-12-01": "Freedom and Democracy Day", + "1994-12-25": "Christmas Day", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (Observed)", + "1995-03-02": "Eid al-Fitr* (*estimated)", + "1995-03-08": "International Women's Day", + "1995-04-17": "Easter Monday", + "1995-05-01": "Labour Day", + "1995-05-09": "Eid al-Adha* (*estimated)", + "1995-08-08": "Mawlid* (*estimated)", + "1995-08-11": "Independence Day", + "1995-11-01": "All Saints' Day", + "1995-11-28": "Republic Day", + "1995-12-01": "Freedom and Democracy Day", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-02-19": "Eid al-Fitr* (*estimated)", + "1996-03-08": "International Women's Day", + "1996-04-08": "Easter Monday", + "1996-04-27": "Eid al-Adha* (*estimated)", + "1996-05-01": "Labour Day", + "1996-07-27": "Mawlid* (*estimated)", + "1996-08-11": "Independence Day", + "1996-08-12": "Independence Day (Observed)", + "1996-11-01": "All Saints' Day", + "1996-11-28": "Republic Day", + "1996-12-01": "Freedom and Democracy Day", + "1996-12-02": "Freedom and Democracy Day (Observed)", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-02-08": "Eid al-Fitr* (*estimated)", + "1997-03-08": "International Women's Day", + "1997-03-31": "Easter Monday", + "1997-04-17": "Eid al-Adha* (*estimated)", + "1997-05-01": "Labour Day", + "1997-07-16": "Mawlid* (*estimated)", + "1997-08-11": "Independence Day", + "1997-11-01": "All Saints' Day", + "1997-11-28": "Republic Day", + "1997-12-01": "Freedom and Democracy Day", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-01-29": "Eid al-Fitr* (*estimated)", + "1998-03-08": "International Women's Day", + "1998-03-09": "International Women's Day (Observed)", + "1998-04-07": "Eid al-Adha* (*estimated)", + "1998-04-13": "Easter Monday", + "1998-05-01": "Labour Day", + "1998-07-06": "Mawlid* (*estimated)", + "1998-08-11": "Independence Day", + "1998-11-01": "All Saints' Day", + "1998-11-28": "Republic Day", + "1998-12-01": "Freedom and Democracy Day", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-01-18": "Eid al-Fitr* (*estimated)", + "1999-03-08": "International Women's Day", + "1999-03-27": "Eid al-Adha* (*estimated)", + "1999-04-05": "Easter Monday", + "1999-05-01": "Labour Day", + "1999-06-26": "Mawlid* (*estimated)", + "1999-08-11": "Independence Day", + "1999-11-01": "All Saints' Day", + "1999-11-28": "Republic Day", + "1999-11-29": "Republic Day (Observed)", + "1999-12-01": "Freedom and Democracy Day", + "1999-12-25": "Christmas Day", + "2000-01-01": "New Year's Day", + "2000-01-08": "Eid al-Fitr* (*estimated)", + "2000-03-08": "International Women's Day", + "2000-03-16": "Eid al-Adha* (*estimated)", + "2000-04-24": "Easter Monday", + "2000-05-01": "Labour Day", + "2000-06-14": "Mawlid* (*estimated)", + "2000-08-11": "Independence Day", + "2000-11-01": "All Saints' Day", + "2000-11-28": "Republic Day", + "2000-12-01": "Freedom and Democracy Day", + "2000-12-25": "Christmas Day", + "2000-12-27": "Eid al-Fitr* (*estimated)", + "2001-01-01": "New Year's Day", + "2001-03-05": "Eid al-Adha* (*estimated)", + "2001-03-08": "International Women's Day", + "2001-04-16": "Easter Monday", + "2001-05-01": "Labour Day", + "2001-06-04": "Mawlid* (*estimated)", + "2001-08-11": "Independence Day", + "2001-11-01": "All Saints' Day", + "2001-11-28": "Republic Day", + "2001-12-01": "Freedom and Democracy Day", + "2001-12-16": "Eid al-Fitr* (*estimated)", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-02-22": "Eid al-Adha* (*estimated)", + "2002-03-08": "International Women's Day", + "2002-04-01": "Easter Monday", + "2002-05-01": "Labour Day", + "2002-05-24": "Mawlid* (*estimated)", + "2002-08-11": "Independence Day", + "2002-08-12": "Independence Day (Observed)", + "2002-11-01": "All Saints' Day", + "2002-11-28": "Republic Day", + "2002-12-01": "Freedom and Democracy Day", + "2002-12-02": "Freedom and Democracy Day (Observed)", + "2002-12-05": "Eid al-Fitr* (*estimated)", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-02-11": "Eid al-Adha* (*estimated)", + "2003-03-08": "International Women's Day", + "2003-04-21": "Easter Monday", + "2003-05-01": "Labour Day", + "2003-05-13": "Mawlid* (*estimated)", + "2003-08-11": "Independence Day", + "2003-11-01": "All Saints' Day", + "2003-11-25": "Eid al-Fitr* (*estimated)", + "2003-11-28": "Republic Day", + "2003-12-01": "Freedom and Democracy Day", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-02-01": "Eid al-Adha* (*estimated)", + "2004-03-08": "International Women's Day", + "2004-04-12": "Easter Monday", + "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-08-11": "Independence Day", + "2004-11-01": "All Saints' Day", + "2004-11-14": "Eid al-Fitr* (*estimated)", + "2004-11-28": "Republic Day", + "2004-11-29": "Republic Day (Observed)", + "2004-12-01": "Freedom and Democracy Day", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-01-21": "Eid al-Adha* (*estimated)", + "2005-03-08": "International Women's Day", + "2005-03-28": "Easter Monday", + "2005-04-21": "Mawlid* (*estimated)", + "2005-05-01": "Labour Day", + "2005-05-02": "Labour Day (Observed)", + "2005-08-11": "Independence Day", + "2005-11-01": "All Saints' Day", + "2005-11-03": "Eid al-Fitr* (*estimated)", + "2005-11-28": "Republic Day", + "2005-12-01": "Freedom and Democracy Day", + "2005-12-25": "Christmas Day", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (Observed)", + "2006-01-10": "Eid al-Adha* (*estimated)", + "2006-03-08": "International Women's Day", + "2006-04-10": "Mawlid* (*estimated)", + "2006-04-17": "Easter Monday", + "2006-05-01": "Labour Day", + "2006-08-11": "Independence Day", + "2006-10-23": "Eid al-Fitr* (*estimated)", + "2006-11-01": "All Saints' Day", + "2006-11-28": "Republic Day", + "2006-12-01": "Freedom and Democracy Day", + "2006-12-25": "Christmas Day", + "2006-12-31": "Eid al-Adha* (*estimated)", + "2007-01-01": "New Year's Day", + "2007-03-08": "International Women's Day", + "2007-03-31": "Mawlid* (*estimated)", + "2007-04-09": "Easter Monday", + "2007-05-01": "Labour Day", + "2007-08-11": "Independence Day", + "2007-10-13": "Eid al-Fitr* (*estimated)", + "2007-11-01": "All Saints' Day", + "2007-11-28": "Republic Day", + "2007-12-01": "Freedom and Democracy Day", + "2007-12-20": "Eid al-Adha* (*estimated)", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-03-08": "International Women's Day", + "2008-03-20": "Mawlid* (*estimated)", + "2008-03-24": "Easter Monday", + "2008-05-01": "Labour Day", + "2008-08-11": "Independence Day", + "2008-10-01": "Eid al-Fitr* (*estimated)", + "2008-11-01": "All Saints' Day", + "2008-11-28": "Republic Day", + "2008-12-01": "Freedom and Democracy Day", + "2008-12-08": "Eid al-Adha* (*estimated)", + "2008-12-25": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-03-08": "International Women's Day", + "2009-03-09": "International Women's Day (Observed); Mawlid* (*estimated)", + "2009-04-13": "Easter Monday", + "2009-05-01": "Labour Day", + "2009-08-11": "Independence Day", + "2009-09-20": "Eid al-Fitr* (*estimated)", + "2009-11-01": "All Saints' Day", + "2009-11-27": "Eid al-Adha* (*estimated)", + "2009-11-28": "Republic Day", + "2009-12-01": "Freedom and Democracy Day", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-02-26": "Mawlid* (*estimated)", + "2010-03-08": "International Women's Day", + "2010-04-05": "Easter Monday", + "2010-05-01": "Labour Day", + "2010-08-11": "Independence Day", + "2010-09-10": "Eid al-Fitr* (*estimated)", + "2010-11-01": "All Saints' Day", + "2010-11-16": "Eid al-Adha* (*estimated)", + "2010-11-28": "Republic Day", + "2010-11-29": "Republic Day (Observed)", + "2010-12-01": "Freedom and Democracy Day", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-02-15": "Mawlid* (*estimated)", + "2011-03-08": "International Women's Day", + "2011-04-25": "Easter Monday", + "2011-05-01": "Labour Day", + "2011-05-02": "Labour Day (Observed)", + "2011-08-11": "Independence Day", + "2011-08-30": "Eid al-Fitr* (*estimated)", + "2011-11-01": "All Saints' Day", + "2011-11-06": "Eid al-Adha* (*estimated)", + "2011-11-28": "Republic Day", + "2011-12-01": "Freedom and Democracy Day", + "2011-12-25": "Christmas Day", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (Observed)", + "2012-02-04": "Mawlid* (*estimated)", + "2012-03-08": "International Women's Day", + "2012-04-09": "Easter Monday", + "2012-05-01": "Labour Day", + "2012-08-11": "Independence Day", + "2012-08-19": "Eid al-Fitr* (*estimated)", + "2012-10-26": "Eid al-Adha* (*estimated)", + "2012-11-01": "All Saints' Day", + "2012-11-28": "Republic Day", + "2012-12-01": "Freedom and Democracy Day", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-01-24": "Mawlid* (*estimated)", + "2013-03-08": "International Women's Day", + "2013-04-01": "Easter Monday", + "2013-05-01": "Labour Day", + "2013-08-08": "Eid al-Fitr* (*estimated)", + "2013-08-11": "Independence Day", + "2013-08-12": "Independence Day (Observed)", + "2013-10-15": "Eid al-Adha* (*estimated)", + "2013-11-01": "All Saints' Day", + "2013-11-28": "Republic Day", + "2013-12-01": "Freedom and Democracy Day", + "2013-12-02": "Freedom and Democracy Day (Observed)", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-13": "Mawlid* (*estimated)", + "2014-03-08": "International Women's Day", + "2014-04-21": "Easter Monday", + "2014-05-01": "Labour Day", + "2014-07-28": "Eid al-Fitr* (*estimated)", + "2014-08-11": "Independence Day", + "2014-10-04": "Eid al-Adha* (*estimated)", + "2014-11-01": "All Saints' Day", + "2014-11-28": "Republic Day", + "2014-12-01": "Freedom and Democracy Day", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-01-03": "Mawlid", + "2015-03-08": "International Women's Day", + "2015-03-09": "International Women's Day (Observed)", + "2015-04-06": "Easter Monday", + "2015-05-01": "Labour Day", + "2015-07-18": "Eid al-Fitr", + "2015-08-11": "Independence Day", + "2015-09-24": "Eid al-Adha", + "2015-11-01": "All Saints' Day", + "2015-11-28": "Republic Day", + "2015-12-01": "Freedom and Democracy Day", + "2015-12-24": "Mawlid", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-03-08": "International Women's Day", + "2016-03-28": "Easter Monday", + "2016-05-01": "Labour Day", + "2016-05-02": "Labour Day (Observed)", + "2016-07-07": "Eid al-Fitr", + "2016-08-11": "Independence Day", + "2016-09-13": "Eid al-Adha", + "2016-11-01": "All Saints' Day", + "2016-11-28": "Republic Day", + "2016-12-01": "Freedom and Democracy Day", + "2016-12-12": "Mawlid", + "2016-12-25": "Christmas Day", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (Observed)", + "2017-03-08": "International Women's Day", + "2017-04-17": "Easter Monday", + "2017-05-01": "Labour Day", + "2017-06-26": "Eid al-Fitr", + "2017-08-11": "Independence Day", + "2017-09-02": "Eid al-Adha", + "2017-11-01": "All Saints' Day", + "2017-11-28": "Republic Day", + "2017-12-01": "Freedom and Democracy Day; Mawlid", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-03-08": "International Women's Day", + "2018-04-02": "Easter Monday", + "2018-05-01": "Labour Day", + "2018-06-15": "Eid al-Fitr", + "2018-08-11": "Independence Day", + "2018-08-22": "Eid al-Adha", + "2018-11-01": "All Saints' Day", + "2018-11-21": "Mawlid", + "2018-11-28": "Republic Day", + "2018-12-01": "Freedom and Democracy Day", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-03-08": "International Women's Day", + "2019-04-22": "Easter Monday", + "2019-05-01": "Labour Day", + "2019-06-04": "Eid al-Fitr", + "2019-08-11": "Eid al-Adha; Independence Day", + "2019-08-12": "Independence Day (Observed)", + "2019-11-01": "All Saints' Day", + "2019-11-09": "Mawlid", + "2019-11-28": "Republic Day", + "2019-12-01": "Freedom and Democracy Day", + "2019-12-02": "Freedom and Democracy Day (Observed)", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-03-08": "International Women's Day", + "2020-03-09": "International Women's Day (Observed)", + "2020-04-13": "Easter Monday", + "2020-05-01": "Labour Day", + "2020-05-24": "Eid al-Fitr", + "2020-07-31": "Eid al-Adha", + "2020-08-11": "Independence Day", + "2020-10-29": "Mawlid", + "2020-11-01": "All Saints' Day", + "2020-11-28": "Republic Day", + "2020-12-01": "Freedom and Democracy Day", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-03-08": "International Women's Day", + "2021-04-05": "Easter Monday", + "2021-04-23": "Funeral of Idriss D\u00e9by Itno", + "2021-05-01": "Labour Day", + "2021-05-13": "Eid al-Fitr", + "2021-07-20": "Eid al-Adha", + "2021-08-11": "Independence Day", + "2021-10-18": "Mawlid", + "2021-11-01": "All Saints' Day", + "2021-11-28": "Republic Day", + "2021-11-29": "Republic Day (Observed)", + "2021-12-01": "Freedom and Democracy Day", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-03-08": "International Women's Day", + "2022-04-18": "Easter Monday", + "2022-05-01": "Labour Day", + "2022-05-02": "Eid al-Fitr; Labour Day (Observed)", + "2022-07-09": "Eid al-Adha", + "2022-08-11": "Independence Day", + "2022-10-08": "Mawlid", + "2022-11-01": "All Saints' Day", + "2022-11-28": "Republic Day", + "2022-12-01": "Freedom and Democracy Day", + "2022-12-25": "Christmas Day", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (Observed)", + "2023-03-08": "International Women's Day", + "2023-04-10": "Easter Monday", + "2023-04-21": "Eid al-Fitr", + "2023-05-01": "Labour Day", + "2023-06-28": "Eid al-Adha", + "2023-08-11": "Independence Day", + "2023-09-27": "Mawlid* (*estimated)", + "2023-11-01": "All Saints' Day", + "2023-11-28": "Republic Day", + "2023-12-01": "Freedom and Democracy Day", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-03-08": "International Women's Day", + "2024-04-01": "Easter Monday", + "2024-04-10": "Eid al-Fitr* (*estimated)", + "2024-05-01": "Labour Day", + "2024-06-16": "Eid al-Adha* (*estimated)", + "2024-08-11": "Independence Day", + "2024-08-12": "Independence Day (Observed)", + "2024-09-15": "Mawlid* (*estimated)", + "2024-11-01": "All Saints' Day", + "2024-11-28": "Republic Day", + "2024-12-01": "Freedom and Democracy Day", + "2024-12-02": "Freedom and Democracy Day (Observed)", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-03-08": "International Women's Day", + "2025-03-30": "Eid al-Fitr* (*estimated)", + "2025-04-21": "Easter Monday", + "2025-05-01": "Labour Day", + "2025-06-06": "Eid al-Adha* (*estimated)", + "2025-08-11": "Independence Day", + "2025-09-04": "Mawlid* (*estimated)", + "2025-11-01": "All Saints' Day", + "2025-11-28": "Republic Day", + "2025-12-01": "Freedom and Democracy Day", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-03-08": "International Women's Day", + "2026-03-09": "International Women's Day (Observed)", + "2026-03-20": "Eid al-Fitr* (*estimated)", + "2026-04-06": "Easter Monday", + "2026-05-01": "Labour Day", + "2026-05-27": "Eid al-Adha* (*estimated)", + "2026-08-11": "Independence Day", + "2026-08-25": "Mawlid* (*estimated)", + "2026-11-01": "All Saints' Day", + "2026-11-28": "Republic Day", + "2026-12-01": "Freedom and Democracy Day", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-03-08": "International Women's Day", + "2027-03-09": "Eid al-Fitr* (*estimated)", + "2027-03-29": "Easter Monday", + "2027-05-01": "Labour Day", + "2027-05-16": "Eid al-Adha* (*estimated)", + "2027-08-11": "Independence Day", + "2027-08-14": "Mawlid* (*estimated)", + "2027-11-01": "All Saints' Day", + "2027-11-28": "Republic Day", + "2027-11-29": "Republic Day (Observed)", + "2027-12-01": "Freedom and Democracy Day", + "2027-12-25": "Christmas Day", + "2028-01-01": "New Year's Day", + "2028-02-26": "Eid al-Fitr* (*estimated)", + "2028-03-08": "International Women's Day", + "2028-04-17": "Easter Monday", + "2028-05-01": "Labour Day", + "2028-05-05": "Eid al-Adha* (*estimated)", + "2028-08-03": "Mawlid* (*estimated)", + "2028-08-11": "Independence Day", + "2028-11-01": "All Saints' Day", + "2028-11-28": "Republic Day", + "2028-12-01": "Freedom and Democracy Day", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-02-14": "Eid al-Fitr* (*estimated)", + "2029-03-08": "International Women's Day", + "2029-04-02": "Easter Monday", + "2029-04-24": "Eid al-Adha* (*estimated)", + "2029-05-01": "Labour Day", + "2029-07-24": "Mawlid* (*estimated)", + "2029-08-11": "Independence Day", + "2029-11-01": "All Saints' Day", + "2029-11-28": "Republic Day", + "2029-12-01": "Freedom and Democracy Day", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-02-04": "Eid al-Fitr* (*estimated)", + "2030-03-08": "International Women's Day", + "2030-04-13": "Eid al-Adha* (*estimated)", + "2030-04-22": "Easter Monday", + "2030-05-01": "Labour Day", + "2030-07-13": "Mawlid* (*estimated)", + "2030-08-11": "Independence Day", + "2030-08-12": "Independence Day (Observed)", + "2030-11-01": "All Saints' Day", + "2030-11-28": "Republic Day", + "2030-12-01": "Freedom and Democracy Day", + "2030-12-02": "Freedom and Democracy Day (Observed)", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-01-24": "Eid al-Fitr* (*estimated)", + "2031-03-08": "International Women's Day", + "2031-04-02": "Eid al-Adha* (*estimated)", + "2031-04-14": "Easter Monday", + "2031-05-01": "Labour Day", + "2031-07-02": "Mawlid* (*estimated)", + "2031-08-11": "Independence Day", + "2031-11-01": "All Saints' Day", + "2031-11-28": "Republic Day", + "2031-12-01": "Freedom and Democracy Day", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-01-14": "Eid al-Fitr* (*estimated)", + "2032-03-08": "International Women's Day", + "2032-03-22": "Eid al-Adha* (*estimated)", + "2032-03-29": "Easter Monday", + "2032-05-01": "Labour Day", + "2032-06-20": "Mawlid* (*estimated)", + "2032-08-11": "Independence Day", + "2032-11-01": "All Saints' Day", + "2032-11-28": "Republic Day", + "2032-11-29": "Republic Day (Observed)", + "2032-12-01": "Freedom and Democracy Day", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "Eid al-Fitr* (*estimated)", + "2033-03-08": "International Women's Day", + "2033-03-11": "Eid al-Adha* (*estimated)", + "2033-04-18": "Easter Monday", + "2033-05-01": "Labour Day", + "2033-05-02": "Labour Day (Observed)", + "2033-06-09": "Mawlid* (*estimated)", + "2033-08-11": "Independence Day", + "2033-11-01": "All Saints' Day", + "2033-11-28": "Republic Day", + "2033-12-01": "Freedom and Democracy Day", + "2033-12-23": "Eid al-Fitr* (*estimated)", + "2033-12-25": "Christmas Day", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-03-01": "Eid al-Adha* (*estimated)", + "2034-03-08": "International Women's Day", + "2034-04-10": "Easter Monday", + "2034-05-01": "Labour Day", + "2034-05-30": "Mawlid* (*estimated)", + "2034-08-11": "Independence Day", + "2034-11-01": "All Saints' Day", + "2034-11-28": "Republic Day", + "2034-12-01": "Freedom and Democracy Day", + "2034-12-12": "Eid al-Fitr* (*estimated)", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-02-18": "Eid al-Adha* (*estimated)", + "2035-03-08": "International Women's Day", + "2035-03-26": "Easter Monday", + "2035-05-01": "Labour Day", + "2035-05-20": "Mawlid* (*estimated)", + "2035-08-11": "Independence Day", + "2035-11-01": "All Saints' Day", + "2035-11-28": "Republic Day", + "2035-12-01": "Eid al-Fitr* (*estimated); Freedom and Democracy Day", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-02-07": "Eid al-Adha* (*estimated)", + "2036-03-08": "International Women's Day", + "2036-04-14": "Easter Monday", + "2036-05-01": "Labour Day", + "2036-05-08": "Mawlid* (*estimated)", + "2036-08-11": "Independence Day", + "2036-11-01": "All Saints' Day", + "2036-11-19": "Eid al-Fitr* (*estimated)", + "2036-11-28": "Republic Day", + "2036-12-01": "Freedom and Democracy Day", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-26": "Eid al-Adha* (*estimated)", + "2037-03-08": "International Women's Day", + "2037-03-09": "International Women's Day (Observed)", + "2037-04-06": "Easter Monday", + "2037-04-28": "Mawlid* (*estimated)", + "2037-05-01": "Labour Day", + "2037-08-11": "Independence Day", + "2037-11-01": "All Saints' Day", + "2037-11-08": "Eid al-Fitr* (*estimated)", + "2037-11-28": "Republic Day", + "2037-12-01": "Freedom and Democracy Day", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-01-16": "Eid al-Adha* (*estimated)", + "2038-03-08": "International Women's Day", + "2038-04-17": "Mawlid* (*estimated)", + "2038-04-26": "Easter Monday", + "2038-05-01": "Labour Day", + "2038-08-11": "Independence Day", + "2038-10-29": "Eid al-Fitr* (*estimated)", + "2038-11-01": "All Saints' Day", + "2038-11-28": "Republic Day", + "2038-11-29": "Republic Day (Observed)", + "2038-12-01": "Freedom and Democracy Day", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-01-05": "Eid al-Adha* (*estimated)", + "2039-03-08": "International Women's Day", + "2039-04-06": "Mawlid* (*estimated)", + "2039-04-11": "Easter Monday", + "2039-05-01": "Labour Day", + "2039-05-02": "Labour Day (Observed)", + "2039-08-11": "Independence Day", + "2039-10-19": "Eid al-Fitr* (*estimated)", + "2039-11-01": "All Saints' Day", + "2039-11-28": "Republic Day", + "2039-12-01": "Freedom and Democracy Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Eid al-Adha* (*estimated)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (Observed)", + "2040-03-08": "International Women's Day", + "2040-03-25": "Mawlid* (*estimated)", + "2040-04-02": "Easter Monday", + "2040-05-01": "Labour Day", + "2040-08-11": "Independence Day", + "2040-10-07": "Eid al-Fitr* (*estimated)", + "2040-11-01": "All Saints' Day", + "2040-11-28": "Republic Day", + "2040-12-01": "Freedom and Democracy Day", + "2040-12-14": "Eid al-Adha* (*estimated)", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-03-08": "International Women's Day", + "2041-03-15": "Mawlid* (*estimated)", + "2041-04-22": "Easter Monday", + "2041-05-01": "Labour Day", + "2041-08-11": "Independence Day", + "2041-08-12": "Independence Day (Observed)", + "2041-09-26": "Eid al-Fitr* (*estimated)", + "2041-11-01": "All Saints' Day", + "2041-11-28": "Republic Day", + "2041-12-01": "Freedom and Democracy Day", + "2041-12-02": "Freedom and Democracy Day (Observed)", + "2041-12-04": "Eid al-Adha* (*estimated)", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-03-04": "Mawlid* (*estimated)", + "2042-03-08": "International Women's Day", + "2042-04-07": "Easter Monday", + "2042-05-01": "Labour Day", + "2042-08-11": "Independence Day", + "2042-09-15": "Eid al-Fitr* (*estimated)", + "2042-11-01": "All Saints' Day", + "2042-11-23": "Eid al-Adha* (*estimated)", + "2042-11-28": "Republic Day", + "2042-12-01": "Freedom and Democracy Day", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-02-22": "Mawlid* (*estimated)", + "2043-03-08": "International Women's Day", + "2043-03-09": "International Women's Day (Observed)", + "2043-03-30": "Easter Monday", + "2043-05-01": "Labour Day", + "2043-08-11": "Independence Day", + "2043-09-04": "Eid al-Fitr* (*estimated)", + "2043-11-01": "All Saints' Day", + "2043-11-12": "Eid al-Adha* (*estimated)", + "2043-11-28": "Republic Day", + "2043-12-01": "Freedom and Democracy Day", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-02-11": "Mawlid* (*estimated)", + "2044-03-08": "International Women's Day", + "2044-04-18": "Easter Monday", + "2044-05-01": "Labour Day", + "2044-05-02": "Labour Day (Observed)", + "2044-08-11": "Independence Day", + "2044-08-24": "Eid al-Fitr* (*estimated)", + "2044-10-31": "Eid al-Adha* (*estimated)", + "2044-11-01": "All Saints' Day", + "2044-11-28": "Republic Day", + "2044-12-01": "Freedom and Democracy Day", + "2044-12-25": "Christmas Day", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (Observed)", + "2045-01-30": "Mawlid* (*estimated)", + "2045-03-08": "International Women's Day", + "2045-04-10": "Easter Monday", + "2045-05-01": "Labour Day", + "2045-08-11": "Independence Day", + "2045-08-14": "Eid al-Fitr* (*estimated)", + "2045-10-21": "Eid al-Adha* (*estimated)", + "2045-11-01": "All Saints' Day", + "2045-11-28": "Republic Day", + "2045-12-01": "Freedom and Democracy Day", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-01-19": "Mawlid* (*estimated)", + "2046-03-08": "International Women's Day", + "2046-03-26": "Easter Monday", + "2046-05-01": "Labour Day", + "2046-08-03": "Eid al-Fitr* (*estimated)", + "2046-08-11": "Independence Day", + "2046-10-10": "Eid al-Adha* (*estimated)", + "2046-11-01": "All Saints' Day", + "2046-11-28": "Republic Day", + "2046-12-01": "Freedom and Democracy Day", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-08": "Mawlid* (*estimated)", + "2047-03-08": "International Women's Day", + "2047-04-15": "Easter Monday", + "2047-05-01": "Labour Day", + "2047-07-24": "Eid al-Fitr* (*estimated)", + "2047-08-11": "Independence Day", + "2047-08-12": "Independence Day (Observed)", + "2047-09-30": "Eid al-Adha* (*estimated)", + "2047-11-01": "All Saints' Day", + "2047-11-28": "Republic Day", + "2047-12-01": "Freedom and Democracy Day", + "2047-12-02": "Freedom and Democracy Day (Observed)", + "2047-12-25": "Christmas Day", + "2047-12-29": "Mawlid* (*estimated)", + "2048-01-01": "New Year's Day", + "2048-03-08": "International Women's Day", + "2048-03-09": "International Women's Day (Observed)", + "2048-04-06": "Easter Monday", + "2048-05-01": "Labour Day", + "2048-07-12": "Eid al-Fitr* (*estimated)", + "2048-08-11": "Independence Day", + "2048-09-19": "Eid al-Adha* (*estimated)", + "2048-11-01": "All Saints' Day", + "2048-11-28": "Republic Day", + "2048-12-01": "Freedom and Democracy Day", + "2048-12-18": "Mawlid* (*estimated)", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-03-08": "International Women's Day", + "2049-04-19": "Easter Monday", + "2049-05-01": "Labour Day", + "2049-07-01": "Eid al-Fitr* (*estimated)", + "2049-08-11": "Independence Day", + "2049-09-08": "Eid al-Adha* (*estimated)", + "2049-11-01": "All Saints' Day", + "2049-11-28": "Republic Day", + "2049-11-29": "Republic Day (Observed)", + "2049-12-01": "Freedom and Democracy Day", + "2049-12-07": "Mawlid* (*estimated)", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-03-08": "International Women's Day", + "2050-04-11": "Easter Monday", + "2050-05-01": "Labour Day", + "2050-05-02": "Labour Day (Observed)", + "2050-06-20": "Eid al-Fitr* (*estimated)", + "2050-08-11": "Independence Day", + "2050-08-28": "Eid al-Adha* (*estimated)", + "2050-11-01": "All Saints' Day", + "2050-11-26": "Mawlid* (*estimated)", + "2050-11-28": "Republic Day", + "2050-12-01": "Freedom and Democracy Day", + "2050-12-25": "Christmas Day" +} diff --git a/snapshots/countries/TH.json b/snapshots/countries/TH.json new file mode 100644 index 000000000..910cbd13d --- /dev/null +++ b/snapshots/countries/TH.json @@ -0,0 +1,2996 @@ +{ + "1950-01-01": "New Year's Day", + "1950-02-03": "Thai Veterans Day", + "1950-03-03": "Makha Bucha", + "1950-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1950-04-06": "Chakri Memorial Day", + "1950-04-13": "Songkran Festival", + "1950-04-14": "Songkran Festival", + "1950-04-15": "National Mother's Day; Songkran Festival", + "1950-05-31": "Visakha Bucha", + "1950-06-24": "National Day", + "1950-07-01": "Mid-Year Closing Day", + "1950-07-29": "Asarnha Bucha", + "1950-07-30": "Buddhist Lent Day", + "1950-10-23": "HM King Chulalongkorn Memorial Day", + "1950-11-24": "Loy Krathong", + "1950-12-10": "Constitution Day", + "1950-12-31": "New Year's Eve", + "1951-01-01": "New Year's Day", + "1951-02-03": "Thai Veterans Day", + "1951-02-21": "Makha Bucha", + "1951-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1951-04-06": "Chakri Memorial Day", + "1951-04-13": "Songkran Festival", + "1951-04-14": "Songkran Festival", + "1951-04-15": "National Mother's Day; Songkran Festival", + "1951-05-20": "Visakha Bucha", + "1951-06-24": "National Day", + "1951-07-01": "Mid-Year Closing Day", + "1951-07-18": "Asarnha Bucha", + "1951-07-19": "Buddhist Lent Day", + "1951-10-23": "HM King Chulalongkorn Memorial Day", + "1951-11-13": "Loy Krathong", + "1951-12-10": "Constitution Day", + "1951-12-31": "New Year's Eve", + "1952-01-01": "New Year's Day", + "1952-02-03": "Thai Veterans Day", + "1952-02-10": "Makha Bucha", + "1952-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1952-04-06": "Chakri Memorial Day", + "1952-04-13": "Songkran Festival", + "1952-04-14": "Songkran Festival", + "1952-04-15": "National Mother's Day; Songkran Festival", + "1952-05-08": "Visakha Bucha", + "1952-06-24": "National Day", + "1952-07-01": "Mid-Year Closing Day", + "1952-07-07": "Asarnha Bucha", + "1952-07-08": "Buddhist Lent Day", + "1952-10-23": "HM King Chulalongkorn Memorial Day", + "1952-11-02": "Loy Krathong", + "1952-12-10": "Constitution Day", + "1952-12-31": "New Year's Eve", + "1953-01-01": "New Year's Day", + "1953-02-03": "Thai Veterans Day", + "1953-02-28": "Makha Bucha", + "1953-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1953-04-06": "Chakri Memorial Day", + "1953-04-13": "Songkran Festival", + "1953-04-14": "Songkran Festival", + "1953-04-15": "National Mother's Day; Songkran Festival", + "1953-05-28": "Visakha Bucha", + "1953-06-24": "National Day", + "1953-07-01": "Mid-Year Closing Day", + "1953-07-26": "Asarnha Bucha", + "1953-07-27": "Buddhist Lent Day", + "1953-10-23": "HM King Chulalongkorn Memorial Day", + "1953-11-21": "Loy Krathong", + "1953-12-10": "Constitution Day", + "1953-12-31": "New Year's Eve", + "1954-01-01": "New Year's Day", + "1954-02-03": "Thai Veterans Day", + "1954-02-18": "Makha Bucha", + "1954-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1954-04-06": "Chakri Memorial Day", + "1954-04-15": "National Mother's Day", + "1954-05-17": "Visakha Bucha", + "1954-06-24": "National Day", + "1954-07-01": "Mid-Year Closing Day", + "1954-07-15": "Asarnha Bucha", + "1954-07-16": "Buddhist Lent Day", + "1954-10-23": "HM King Chulalongkorn Memorial Day", + "1954-11-10": "Loy Krathong", + "1954-12-10": "Constitution Day", + "1954-12-31": "New Year's Eve", + "1955-01-01": "New Year's Day", + "1955-02-03": "Thai Veterans Day", + "1955-02-07": "Makha Bucha", + "1955-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1955-04-06": "Chakri Memorial Day", + "1955-04-15": "National Mother's Day", + "1955-05-06": "Visakha Bucha", + "1955-06-24": "National Day", + "1955-07-01": "Mid-Year Closing Day", + "1955-07-04": "Asarnha Bucha", + "1955-07-05": "Buddhist Lent Day", + "1955-10-03": "National Children's Day", + "1955-10-23": "HM King Chulalongkorn Memorial Day", + "1955-10-30": "Loy Krathong", + "1955-12-10": "Constitution Day", + "1955-12-31": "New Year's Eve", + "1956-01-01": "New Year's Day", + "1956-02-03": "Thai Veterans Day", + "1956-02-25": "Makha Bucha", + "1956-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1956-04-06": "Chakri Memorial Day", + "1956-04-15": "National Mother's Day", + "1956-05-24": "Visakha Bucha", + "1956-06-24": "National Day", + "1956-07-01": "Mid-Year Closing Day", + "1956-07-22": "Asarnha Bucha", + "1956-07-23": "Buddhist Lent Day", + "1956-10-01": "National Children's Day", + "1956-10-23": "HM King Chulalongkorn Memorial Day", + "1956-11-17": "Loy Krathong", + "1956-12-10": "Constitution Day", + "1956-12-31": "New Year's Eve", + "1957-01-01": "New Year's Day", + "1957-01-16": "Teacher's Day", + "1957-02-03": "Thai Veterans Day", + "1957-02-14": "Makha Bucha", + "1957-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1957-04-06": "Chakri Memorial Day", + "1957-04-13": "Songkran Festival", + "1957-04-15": "National Mother's Day", + "1957-05-13": "Royal Ploughing Ceremony; Visakha Bucha", + "1957-06-24": "National Day", + "1957-07-01": "Mid-Year Closing Day", + "1957-07-12": "Asarnha Bucha", + "1957-07-13": "Buddhist Lent Day", + "1957-10-07": "National Children's Day", + "1957-10-23": "HM King Chulalongkorn Memorial Day", + "1957-11-07": "Loy Krathong", + "1957-12-10": "Constitution Day", + "1957-12-31": "New Year's Eve", + "1958-01-01": "New Year's Day", + "1958-01-16": "Teacher's Day", + "1958-02-03": "Thai Veterans Day", + "1958-03-05": "Makha Bucha", + "1958-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1958-04-06": "Chakri Memorial Day", + "1958-04-13": "Songkran Festival", + "1958-05-05": "Coronation Day", + "1958-05-13": "Royal Ploughing Ceremony", + "1958-06-02": "Visakha Bucha", + "1958-06-24": "National Day", + "1958-07-01": "Mid-Year Closing Day", + "1958-07-31": "Asarnha Bucha", + "1958-08-01": "Buddhist Lent Day", + "1958-10-06": "National Children's Day", + "1958-10-23": "HM King Chulalongkorn Memorial Day", + "1958-11-26": "Loy Krathong", + "1958-12-10": "Constitution Day", + "1958-12-31": "New Year's Eve", + "1959-01-01": "New Year's Day", + "1959-01-16": "Teacher's Day", + "1959-02-03": "Thai Veterans Day", + "1959-02-23": "Makha Bucha", + "1959-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1959-04-06": "Chakri Memorial Day", + "1959-04-08": "Royal Thai Armed Forces Day", + "1959-04-13": "Songkran Festival", + "1959-05-05": "Coronation Day", + "1959-05-13": "Royal Ploughing Ceremony", + "1959-05-22": "Visakha Bucha", + "1959-06-24": "National Day", + "1959-07-01": "Mid-Year Closing Day", + "1959-07-20": "Asarnha Bucha", + "1959-07-21": "Buddhist Lent Day", + "1959-10-05": "National Children's Day", + "1959-10-23": "HM King Chulalongkorn Memorial Day", + "1959-11-15": "Loy Krathong", + "1959-12-10": "Constitution Day", + "1959-12-31": "New Year's Eve", + "1960-01-01": "New Year's Day", + "1960-01-16": "Teacher's Day", + "1960-02-03": "Thai Veterans Day", + "1960-02-12": "Makha Bucha", + "1960-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1960-04-06": "Chakri Memorial Day", + "1960-04-08": "Royal Thai Armed Forces Day", + "1960-04-13": "Songkran Festival", + "1960-05-05": "Coronation Day", + "1960-05-10": "Visakha Bucha", + "1960-05-13": "Royal Ploughing Ceremony", + "1960-07-01": "Mid-Year Closing Day", + "1960-07-08": "Asarnha Bucha", + "1960-07-09": "Buddhist Lent Day", + "1960-10-03": "National Children's Day", + "1960-10-23": "HM King Chulalongkorn Memorial Day", + "1960-11-03": "Loy Krathong", + "1960-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day", + "1960-12-10": "Constitution Day", + "1960-12-31": "New Year's Eve", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day (in lieu)", + "1961-01-16": "Teacher's Day", + "1961-02-03": "Thai Veterans Day", + "1961-03-01": "Makha Bucha", + "1961-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1961-04-06": "Chakri Memorial Day", + "1961-04-08": "Royal Thai Armed Forces Day", + "1961-04-13": "Songkran Festival", + "1961-05-05": "Coronation Day", + "1961-05-13": "Royal Ploughing Ceremony", + "1961-05-15": "Royal Ploughing Ceremony (in lieu)", + "1961-05-29": "Visakha Bucha", + "1961-07-01": "Mid-Year Closing Day", + "1961-07-27": "Asarnha Bucha", + "1961-07-28": "Buddhist Lent Day", + "1961-10-02": "National Children's Day", + "1961-10-23": "HM King Chulalongkorn Memorial Day", + "1961-11-22": "Loy Krathong", + "1961-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day", + "1961-12-10": "Constitution Day", + "1961-12-11": "Constitution Day (in lieu)", + "1961-12-31": "New Year's Eve", + "1962-01-01": "New Year's Day", + "1962-01-16": "Teacher's Day", + "1962-02-03": "Thai Veterans Day", + "1962-02-19": "Makha Bucha", + "1962-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1962-04-06": "Chakri Memorial Day", + "1962-04-08": "Royal Thai Armed Forces Day", + "1962-04-13": "Songkran Festival", + "1962-05-05": "Coronation Day", + "1962-05-07": "Coronation Day (in lieu)", + "1962-05-13": "Royal Ploughing Ceremony", + "1962-05-14": "Royal Ploughing Ceremony (in lieu)", + "1962-05-18": "Visakha Bucha", + "1962-07-01": "Mid-Year Closing Day", + "1962-07-16": "Asarnha Bucha", + "1962-07-17": "Buddhist Lent Day", + "1962-10-01": "National Children's Day", + "1962-10-23": "HM King Chulalongkorn Memorial Day", + "1962-11-11": "Loy Krathong", + "1962-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day", + "1962-12-10": "Constitution Day", + "1962-12-31": "New Year's Eve", + "1963-01-01": "New Year's Day", + "1963-01-16": "Teacher's Day", + "1963-02-03": "Thai Veterans Day", + "1963-02-08": "Makha Bucha", + "1963-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1963-04-06": "Chakri Memorial Day", + "1963-04-08": "Chakri Memorial Day (in lieu); Royal Thai Armed Forces Day", + "1963-04-13": "Songkran Festival", + "1963-04-15": "Songkran Festival (in lieu)", + "1963-05-05": "Coronation Day", + "1963-05-06": "Coronation Day (in lieu)", + "1963-05-07": "Visakha Bucha", + "1963-05-13": "Royal Ploughing Ceremony", + "1963-07-01": "Mid-Year Closing Day", + "1963-07-06": "Asarnha Bucha", + "1963-07-07": "Buddhist Lent Day", + "1963-07-08": "Asarnha Bucha (in lieu)", + "1963-10-07": "National Children's Day", + "1963-10-23": "HM King Chulalongkorn Memorial Day", + "1963-11-01": "Loy Krathong", + "1963-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day", + "1963-12-10": "Constitution Day", + "1963-12-31": "New Year's Eve", + "1964-01-01": "New Year's Day", + "1964-01-16": "Teacher's Day", + "1964-02-03": "Thai Veterans Day", + "1964-02-27": "Makha Bucha", + "1964-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1964-04-06": "Chakri Memorial Day", + "1964-04-08": "Royal Thai Armed Forces Day", + "1964-04-13": "Songkran Festival", + "1964-05-05": "Coronation Day", + "1964-05-13": "Royal Ploughing Ceremony", + "1964-05-26": "Visakha Bucha", + "1964-07-01": "Mid-Year Closing Day", + "1964-07-24": "Asarnha Bucha", + "1964-07-25": "Buddhist Lent Day", + "1964-07-27": "Buddhist Lent Day (in lieu)", + "1964-10-23": "HM King Chulalongkorn Memorial Day", + "1964-11-19": "Loy Krathong", + "1964-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day", + "1964-12-07": "HM King Bhumibol Adulyadej's Birthday (in lieu); National Day (in lieu)", + "1964-12-10": "Constitution Day", + "1964-12-31": "New Year's Eve", + "1965-01-01": "New Year's Day", + "1965-01-09": "National Children's Day", + "1965-01-16": "Teacher's Day", + "1965-02-03": "Thai Veterans Day", + "1965-02-16": "Makha Bucha", + "1965-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1965-04-06": "Chakri Memorial Day", + "1965-04-08": "Royal Thai Armed Forces Day", + "1965-04-13": "Songkran Festival", + "1965-05-05": "Coronation Day", + "1965-05-13": "Royal Ploughing Ceremony", + "1965-05-15": "Visakha Bucha", + "1965-05-17": "Visakha Bucha (in lieu)", + "1965-07-01": "Mid-Year Closing Day", + "1965-07-13": "Asarnha Bucha", + "1965-07-14": "Buddhist Lent Day", + "1965-10-23": "HM King Chulalongkorn Memorial Day", + "1965-10-25": "HM King Chulalongkorn Memorial Day (in lieu)", + "1965-11-08": "Loy Krathong", + "1965-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day", + "1965-12-06": "HM King Bhumibol Adulyadej's Birthday (in lieu); National Day (in lieu)", + "1965-12-10": "Constitution Day", + "1965-12-31": "New Year's Eve", + "1966-01-01": "New Year's Day", + "1966-01-03": "New Year's Day (in lieu)", + "1966-01-08": "National Children's Day", + "1966-01-16": "Teacher's Day", + "1966-02-03": "Thai Veterans Day", + "1966-03-06": "Makha Bucha", + "1966-03-07": "Makha Bucha (in lieu)", + "1966-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1966-04-06": "Chakri Memorial Day", + "1966-04-08": "Royal Thai Armed Forces Day", + "1966-04-13": "Songkran Festival", + "1966-05-05": "Coronation Day", + "1966-05-13": "Royal Ploughing Ceremony", + "1966-06-03": "Visakha Bucha", + "1966-07-01": "Mid-Year Closing Day", + "1966-08-01": "Asarnha Bucha", + "1966-08-02": "Buddhist Lent Day", + "1966-10-23": "HM King Chulalongkorn Memorial Day", + "1966-10-24": "HM King Chulalongkorn Memorial Day (in lieu)", + "1966-11-27": "Loy Krathong", + "1966-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day", + "1966-12-10": "Constitution Day", + "1966-12-12": "Constitution Day (in lieu)", + "1966-12-31": "New Year's Eve", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day (in lieu)", + "1967-01-14": "National Children's Day", + "1967-01-16": "Teacher's Day", + "1967-02-03": "Thai Veterans Day", + "1967-02-24": "Makha Bucha", + "1967-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1967-04-06": "Chakri Memorial Day", + "1967-04-08": "Royal Thai Armed Forces Day", + "1967-04-13": "Songkran Festival", + "1967-05-05": "Coronation Day", + "1967-05-13": "Royal Ploughing Ceremony", + "1967-05-15": "Royal Ploughing Ceremony (in lieu)", + "1967-05-23": "Visakha Bucha", + "1967-07-01": "Mid-Year Closing Day", + "1967-07-21": "Asarnha Bucha", + "1967-07-22": "Buddhist Lent Day", + "1967-07-24": "Buddhist Lent Day (in lieu)", + "1967-10-23": "HM King Chulalongkorn Memorial Day", + "1967-11-16": "Loy Krathong", + "1967-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day", + "1967-12-10": "Constitution Day", + "1967-12-11": "Constitution Day (in lieu)", + "1967-12-31": "New Year's Eve", + "1968-01-01": "New Year's Day", + "1968-01-13": "National Children's Day", + "1968-01-16": "Teacher's Day", + "1968-02-03": "Thai Veterans Day", + "1968-02-13": "Makha Bucha", + "1968-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1968-04-06": "Chakri Memorial Day", + "1968-04-08": "Chakri Memorial Day (in lieu); Royal Thai Armed Forces Day", + "1968-04-13": "Songkran Festival", + "1968-04-15": "Songkran Festival (in lieu)", + "1968-05-05": "Coronation Day", + "1968-05-06": "Coronation Day (in lieu)", + "1968-05-11": "Visakha Bucha", + "1968-05-13": "Royal Ploughing Ceremony; Visakha Bucha (in lieu)", + "1968-07-01": "Mid-Year Closing Day", + "1968-07-09": "Asarnha Bucha", + "1968-07-10": "Buddhist Lent Day", + "1968-10-23": "HM King Chulalongkorn Memorial Day", + "1968-11-04": "Loy Krathong", + "1968-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day", + "1968-12-10": "Constitution Day", + "1968-12-31": "New Year's Eve", + "1969-01-01": "New Year's Day", + "1969-01-11": "National Children's Day", + "1969-01-16": "Teacher's Day", + "1969-02-03": "Thai Veterans Day", + "1969-03-02": "Makha Bucha", + "1969-03-03": "Makha Bucha (in lieu)", + "1969-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1969-04-06": "Chakri Memorial Day", + "1969-04-07": "Chakri Memorial Day (in lieu)", + "1969-04-08": "Royal Thai Armed Forces Day", + "1969-04-13": "Songkran Festival", + "1969-04-14": "Songkran Festival (in lieu)", + "1969-05-05": "Coronation Day", + "1969-05-13": "Royal Ploughing Ceremony", + "1969-05-30": "Visakha Bucha", + "1969-07-01": "Mid-Year Closing Day", + "1969-07-28": "Asarnha Bucha", + "1969-07-29": "Buddhist Lent Day", + "1969-10-23": "HM King Chulalongkorn Memorial Day", + "1969-11-23": "Loy Krathong", + "1969-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day", + "1969-12-10": "Constitution Day", + "1969-12-31": "New Year's Eve", + "1970-01-01": "New Year's Day", + "1970-01-10": "National Children's Day", + "1970-01-16": "Teacher's Day", + "1970-02-03": "Thai Veterans Day", + "1970-02-20": "Makha Bucha", + "1970-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1970-04-06": "Chakri Memorial Day", + "1970-04-08": "Royal Thai Armed Forces Day", + "1970-04-13": "Songkran Festival", + "1970-05-05": "Coronation Day", + "1970-05-13": "Royal Ploughing Ceremony", + "1970-05-19": "Visakha Bucha", + "1970-07-01": "Mid-Year Closing Day", + "1970-07-18": "Asarnha Bucha", + "1970-07-19": "Buddhist Lent Day", + "1970-07-20": "Asarnha Bucha (in lieu)", + "1970-10-23": "HM King Chulalongkorn Memorial Day", + "1970-11-13": "Loy Krathong", + "1970-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day", + "1970-12-07": "HM King Bhumibol Adulyadej's Birthday (in lieu); National Day (in lieu)", + "1970-12-10": "Constitution Day", + "1970-12-31": "New Year's Eve", + "1971-01-01": "New Year's Day", + "1971-01-09": "National Children's Day", + "1971-01-16": "Teacher's Day", + "1971-02-03": "Thai Veterans Day", + "1971-02-10": "Makha Bucha", + "1971-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1971-04-06": "Chakri Memorial Day", + "1971-04-08": "Royal Thai Armed Forces Day", + "1971-04-13": "Songkran Festival", + "1971-05-05": "Coronation Day", + "1971-05-09": "Visakha Bucha", + "1971-05-10": "Visakha Bucha (in lieu)", + "1971-05-13": "Royal Ploughing Ceremony", + "1971-07-01": "Mid-Year Closing Day", + "1971-07-07": "Asarnha Bucha", + "1971-07-08": "Buddhist Lent Day", + "1971-10-23": "HM King Chulalongkorn Memorial Day", + "1971-10-25": "HM King Chulalongkorn Memorial Day (in lieu)", + "1971-11-02": "Loy Krathong", + "1971-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day", + "1971-12-06": "HM King Bhumibol Adulyadej's Birthday (in lieu); National Day (in lieu)", + "1971-12-10": "Constitution Day", + "1971-12-31": "New Year's Eve", + "1972-01-01": "New Year's Day", + "1972-01-03": "New Year's Day (in lieu)", + "1972-01-08": "National Children's Day", + "1972-01-16": "Teacher's Day", + "1972-02-03": "Thai Veterans Day", + "1972-02-28": "Makha Bucha", + "1972-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1972-04-06": "Chakri Memorial Day", + "1972-04-08": "Royal Thai Armed Forces Day", + "1972-04-13": "Songkran Festival", + "1972-05-05": "Coronation Day", + "1972-05-13": "Royal Ploughing Ceremony", + "1972-05-15": "Royal Ploughing Ceremony (in lieu)", + "1972-05-27": "Visakha Bucha", + "1972-05-29": "Visakha Bucha (in lieu)", + "1972-07-01": "Mid-Year Closing Day", + "1972-07-25": "Asarnha Bucha", + "1972-07-26": "Buddhist Lent Day", + "1972-10-23": "HM King Chulalongkorn Memorial Day", + "1972-11-20": "Loy Krathong", + "1972-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day", + "1972-12-10": "Constitution Day", + "1972-12-11": "Constitution Day (in lieu)", + "1972-12-31": "New Year's Eve", + "1973-01-01": "New Year's Day", + "1973-01-13": "National Children's Day", + "1973-01-16": "Teacher's Day", + "1973-02-03": "Thai Veterans Day", + "1973-02-17": "Makha Bucha", + "1973-02-19": "Makha Bucha (in lieu)", + "1973-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1973-04-06": "Chakri Memorial Day", + "1973-04-08": "Royal Thai Armed Forces Day", + "1973-04-13": "Songkran Festival", + "1973-05-05": "Coronation Day", + "1973-05-07": "Coronation Day (in lieu)", + "1973-05-13": "Royal Ploughing Ceremony", + "1973-05-14": "Royal Ploughing Ceremony (in lieu)", + "1973-05-16": "Visakha Bucha", + "1973-07-01": "Mid-Year Closing Day", + "1973-07-15": "Asarnha Bucha", + "1973-07-16": "Buddhist Lent Day", + "1973-07-17": "Asarnha Bucha (in lieu)", + "1973-10-23": "HM King Chulalongkorn Memorial Day", + "1973-11-10": "Loy Krathong", + "1973-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day", + "1973-12-10": "Constitution Day", + "1973-12-31": "New Year's Eve", + "1974-01-01": "New Year's Day", + "1974-01-12": "National Children's Day", + "1974-01-16": "Teacher's Day", + "1974-02-03": "Thai Veterans Day", + "1974-02-07": "Makha Bucha", + "1974-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1974-04-06": "Chakri Memorial Day", + "1974-04-08": "Royal Thai Armed Forces Day", + "1974-04-13": "Songkran Festival", + "1974-05-01": "National Labour Day", + "1974-05-05": "Coronation Day", + "1974-05-06": "Visakha Bucha", + "1974-05-13": "Royal Ploughing Ceremony", + "1974-07-01": "Mid-Year Closing Day", + "1974-07-04": "Asarnha Bucha", + "1974-07-05": "Buddhist Lent Day", + "1974-10-23": "HM King Chulalongkorn Memorial Day", + "1974-10-30": "Loy Krathong", + "1974-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day", + "1974-12-10": "Constitution Day", + "1974-12-31": "New Year's Eve", + "1975-01-01": "New Year's Day", + "1975-01-11": "National Children's Day", + "1975-01-16": "Teacher's Day", + "1975-02-03": "Thai Veterans Day", + "1975-02-25": "Makha Bucha", + "1975-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1975-04-06": "Chakri Memorial Day", + "1975-04-08": "Royal Thai Armed Forces Day", + "1975-04-13": "Songkran Festival", + "1975-05-01": "National Labour Day", + "1975-05-05": "Coronation Day", + "1975-05-13": "Royal Ploughing Ceremony", + "1975-05-25": "Visakha Bucha", + "1975-07-01": "Mid-Year Closing Day", + "1975-07-23": "Asarnha Bucha", + "1975-07-24": "Buddhist Lent Day", + "1975-10-23": "HM King Chulalongkorn Memorial Day", + "1975-11-18": "Loy Krathong", + "1975-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day", + "1975-12-10": "Constitution Day", + "1975-12-31": "New Year's Eve", + "1976-01-01": "New Year's Day", + "1976-01-10": "National Children's Day", + "1976-01-16": "Teacher's Day", + "1976-02-03": "Thai Veterans Day", + "1976-02-15": "Makha Bucha", + "1976-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1976-04-06": "Chakri Memorial Day", + "1976-04-08": "Royal Thai Armed Forces Day", + "1976-04-13": "Songkran Festival", + "1976-05-01": "National Labour Day", + "1976-05-05": "Coronation Day", + "1976-05-13": "Royal Ploughing Ceremony; Visakha Bucha", + "1976-07-01": "Mid-Year Closing Day", + "1976-07-11": "Asarnha Bucha", + "1976-07-12": "Buddhist Lent Day", + "1976-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "1976-10-23": "HM King Chulalongkorn Memorial Day", + "1976-11-06": "Loy Krathong", + "1976-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day", + "1976-12-10": "Constitution Day", + "1976-12-31": "New Year's Eve", + "1977-01-01": "New Year's Day", + "1977-01-08": "National Children's Day", + "1977-01-16": "Teacher's Day", + "1977-02-03": "Thai Veterans Day", + "1977-03-04": "Makha Bucha", + "1977-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1977-04-06": "Chakri Memorial Day", + "1977-04-08": "Royal Thai Armed Forces Day", + "1977-04-13": "Songkran Festival", + "1977-05-01": "National Labour Day", + "1977-05-05": "Coronation Day", + "1977-05-13": "Royal Ploughing Ceremony", + "1977-06-01": "Visakha Bucha", + "1977-07-01": "Mid-Year Closing Day", + "1977-07-30": "Asarnha Bucha", + "1977-07-31": "Buddhist Lent Day", + "1977-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "1977-10-23": "HM King Chulalongkorn Memorial Day", + "1977-11-25": "Loy Krathong", + "1977-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day", + "1977-12-10": "Constitution Day", + "1977-12-31": "New Year's Eve", + "1978-01-01": "New Year's Day", + "1978-01-14": "National Children's Day", + "1978-01-16": "Teacher's Day", + "1978-02-03": "Thai Veterans Day", + "1978-02-22": "Makha Bucha", + "1978-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1978-04-06": "Chakri Memorial Day", + "1978-04-08": "Royal Thai Armed Forces Day", + "1978-04-13": "Songkran Festival", + "1978-05-01": "National Labour Day", + "1978-05-05": "Coronation Day", + "1978-05-13": "Royal Ploughing Ceremony", + "1978-05-21": "Visakha Bucha", + "1978-07-01": "Mid-Year Closing Day", + "1978-07-19": "Asarnha Bucha", + "1978-07-20": "Buddhist Lent Day", + "1978-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "1978-10-23": "HM King Chulalongkorn Memorial Day", + "1978-11-14": "Loy Krathong", + "1978-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day", + "1978-12-10": "Constitution Day", + "1978-12-31": "New Year's Eve", + "1979-01-01": "New Year's Day", + "1979-01-13": "National Children's Day", + "1979-01-16": "Teacher's Day", + "1979-02-03": "Thai Veterans Day", + "1979-02-11": "Makha Bucha", + "1979-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1979-04-06": "Chakri Memorial Day", + "1979-04-08": "Royal Thai Armed Forces Day", + "1979-04-13": "Songkran Festival", + "1979-05-01": "National Labour Day", + "1979-05-05": "Coronation Day", + "1979-05-10": "Visakha Bucha", + "1979-05-13": "Royal Ploughing Ceremony", + "1979-07-01": "Mid-Year Closing Day", + "1979-07-09": "Asarnha Bucha", + "1979-07-10": "Buddhist Lent Day", + "1979-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "1979-10-23": "HM King Chulalongkorn Memorial Day", + "1979-11-04": "Loy Krathong", + "1979-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day", + "1979-12-10": "Constitution Day", + "1979-12-31": "New Year's Eve", + "1980-01-01": "New Year's Day", + "1980-01-12": "National Children's Day", + "1980-01-16": "Teacher's Day", + "1980-01-25": "Royal Thai Armed Forces Day", + "1980-02-03": "Thai Veterans Day", + "1980-03-01": "Makha Bucha", + "1980-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1980-04-06": "Chakri Memorial Day", + "1980-04-13": "Songkran Festival", + "1980-05-01": "National Labour Day", + "1980-05-05": "Coronation Day", + "1980-05-13": "Royal Ploughing Ceremony", + "1980-05-29": "Visakha Bucha", + "1980-07-01": "Mid-Year Closing Day", + "1980-07-27": "Asarnha Bucha", + "1980-07-28": "Buddhist Lent Day", + "1980-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "1980-10-23": "HM King Chulalongkorn Memorial Day", + "1980-11-22": "Loy Krathong", + "1980-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "1980-12-10": "Constitution Day", + "1980-12-31": "New Year's Eve", + "1981-01-01": "New Year's Day", + "1981-01-10": "National Children's Day", + "1981-01-16": "Teacher's Day", + "1981-01-25": "Royal Thai Armed Forces Day", + "1981-02-03": "Thai Veterans Day", + "1981-02-19": "Makha Bucha", + "1981-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1981-04-06": "Chakri Memorial Day", + "1981-04-13": "Songkran Festival", + "1981-05-01": "National Labour Day", + "1981-05-05": "Coronation Day", + "1981-05-13": "Royal Ploughing Ceremony", + "1981-05-18": "Visakha Bucha", + "1981-07-01": "Mid-Year Closing Day", + "1981-07-16": "Asarnha Bucha", + "1981-07-17": "Buddhist Lent Day", + "1981-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "1981-10-23": "HM King Chulalongkorn Memorial Day", + "1981-11-11": "Loy Krathong", + "1981-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "1981-12-10": "Constitution Day", + "1981-12-31": "New Year's Eve", + "1982-01-01": "New Year's Day", + "1982-01-09": "National Children's Day", + "1982-01-16": "Teacher's Day", + "1982-01-25": "Royal Thai Armed Forces Day", + "1982-02-03": "Thai Veterans Day", + "1982-02-08": "Makha Bucha", + "1982-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1982-04-06": "Chakri Memorial Day", + "1982-04-13": "Songkran Festival", + "1982-05-01": "National Labour Day", + "1982-05-05": "Coronation Day", + "1982-05-07": "Visakha Bucha", + "1982-05-13": "Royal Ploughing Ceremony", + "1982-07-01": "Mid-Year Closing Day", + "1982-07-05": "Asarnha Bucha", + "1982-07-06": "Buddhist Lent Day", + "1982-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "1982-08-18": "National Science Day", + "1982-10-23": "HM King Chulalongkorn Memorial Day", + "1982-10-31": "Loy Krathong", + "1982-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "1982-12-10": "Constitution Day", + "1982-12-31": "New Year's Eve", + "1983-01-01": "New Year's Day", + "1983-01-08": "National Children's Day", + "1983-01-16": "Teacher's Day", + "1983-01-25": "Royal Thai Armed Forces Day", + "1983-02-03": "Thai Veterans Day", + "1983-02-26": "Makha Bucha", + "1983-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1983-04-06": "Chakri Memorial Day", + "1983-04-13": "Songkran Festival", + "1983-05-01": "National Labour Day", + "1983-05-05": "Coronation Day", + "1983-05-13": "Royal Ploughing Ceremony", + "1983-05-26": "Visakha Bucha", + "1983-07-01": "Mid-Year Closing Day", + "1983-07-24": "Asarnha Bucha", + "1983-07-25": "Buddhist Lent Day", + "1983-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "1983-08-18": "National Science Day", + "1983-10-23": "HM King Chulalongkorn Memorial Day", + "1983-11-19": "Loy Krathong", + "1983-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "1983-12-10": "Constitution Day", + "1983-12-31": "New Year's Eve", + "1984-01-01": "New Year's Day", + "1984-01-14": "National Children's Day", + "1984-01-16": "Teacher's Day", + "1984-01-25": "Royal Thai Armed Forces Day", + "1984-02-03": "Thai Veterans Day", + "1984-02-16": "Makha Bucha", + "1984-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1984-04-06": "Chakri Memorial Day", + "1984-04-13": "Songkran Festival", + "1984-05-01": "National Labour Day", + "1984-05-05": "Coronation Day", + "1984-05-13": "Royal Ploughing Ceremony", + "1984-05-14": "Visakha Bucha", + "1984-07-01": "Mid-Year Closing Day", + "1984-07-12": "Asarnha Bucha", + "1984-07-13": "Buddhist Lent Day", + "1984-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "1984-08-18": "National Science Day", + "1984-10-23": "HM King Chulalongkorn Memorial Day", + "1984-11-07": "Loy Krathong", + "1984-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "1984-12-10": "Constitution Day", + "1984-12-31": "New Year's Eve", + "1985-01-01": "New Year's Day", + "1985-01-12": "National Children's Day", + "1985-01-16": "Teacher's Day", + "1985-01-25": "Royal Thai Armed Forces Day", + "1985-02-03": "Thai Veterans Day", + "1985-02-26": "National Artist Day", + "1985-03-05": "Makha Bucha", + "1985-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1985-04-06": "Chakri Memorial Day", + "1985-04-13": "Songkran Festival", + "1985-05-01": "National Labour Day", + "1985-05-05": "Coronation Day", + "1985-05-13": "Royal Ploughing Ceremony", + "1985-06-02": "Visakha Bucha", + "1985-07-01": "Mid-Year Closing Day", + "1985-07-31": "Asarnha Bucha", + "1985-08-01": "Buddhist Lent Day", + "1985-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "1985-08-18": "National Science Day", + "1985-10-23": "HM King Chulalongkorn Memorial Day", + "1985-11-26": "Loy Krathong", + "1985-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "1985-12-10": "Constitution Day", + "1985-12-31": "New Year's Eve", + "1986-01-01": "New Year's Day", + "1986-01-11": "National Children's Day", + "1986-01-16": "Teacher's Day", + "1986-01-25": "Royal Thai Armed Forces Day", + "1986-02-03": "Thai Veterans Day", + "1986-02-23": "Makha Bucha", + "1986-02-26": "National Artist Day", + "1986-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1986-04-06": "Chakri Memorial Day", + "1986-04-13": "Songkran Festival", + "1986-05-01": "National Labour Day", + "1986-05-05": "Coronation Day", + "1986-05-13": "Royal Ploughing Ceremony", + "1986-05-22": "Visakha Bucha", + "1986-07-01": "Mid-Year Closing Day", + "1986-07-20": "Asarnha Bucha", + "1986-07-21": "Buddhist Lent Day", + "1986-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "1986-08-18": "National Science Day", + "1986-10-23": "HM King Chulalongkorn Memorial Day", + "1986-11-15": "Loy Krathong", + "1986-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "1986-12-10": "Constitution Day", + "1986-12-31": "New Year's Eve", + "1987-01-01": "New Year's Day", + "1987-01-10": "National Children's Day", + "1987-01-16": "Teacher's Day", + "1987-01-25": "Royal Thai Armed Forces Day", + "1987-02-03": "Thai Veterans Day", + "1987-02-12": "Makha Bucha", + "1987-02-26": "National Artist Day", + "1987-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1987-04-06": "Chakri Memorial Day", + "1987-04-13": "Songkran Festival", + "1987-05-01": "National Labour Day", + "1987-05-05": "Coronation Day", + "1987-05-11": "Visakha Bucha", + "1987-05-13": "Royal Ploughing Ceremony", + "1987-07-01": "Mid-Year Closing Day", + "1987-07-10": "Asarnha Bucha", + "1987-07-11": "Buddhist Lent Day", + "1987-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "1987-08-18": "National Science Day", + "1987-10-23": "HM King Chulalongkorn Memorial Day", + "1987-11-05": "Loy Krathong", + "1987-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "1987-12-10": "Constitution Day", + "1987-12-31": "New Year's Eve", + "1988-01-01": "New Year's Day", + "1988-01-09": "National Children's Day", + "1988-01-16": "Teacher's Day", + "1988-01-25": "Royal Thai Armed Forces Day", + "1988-02-03": "Thai Veterans Day", + "1988-02-26": "National Artist Day", + "1988-03-02": "Makha Bucha", + "1988-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1988-04-06": "Chakri Memorial Day", + "1988-04-13": "Songkran Festival", + "1988-05-01": "National Labour Day", + "1988-05-05": "Coronation Day", + "1988-05-13": "Royal Ploughing Ceremony", + "1988-05-30": "Visakha Bucha", + "1988-07-01": "Mid-Year Closing Day", + "1988-07-28": "Asarnha Bucha", + "1988-07-29": "Buddhist Lent Day", + "1988-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "1988-08-18": "National Science Day", + "1988-10-23": "HM King Chulalongkorn Memorial Day", + "1988-11-23": "Loy Krathong", + "1988-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "1988-12-10": "Constitution Day", + "1988-12-31": "New Year's Eve", + "1989-01-01": "New Year's Day", + "1989-01-14": "National Children's Day", + "1989-01-16": "Teacher's Day", + "1989-01-25": "Royal Thai Armed Forces Day", + "1989-02-03": "Thai Veterans Day", + "1989-02-20": "Makha Bucha", + "1989-02-26": "National Artist Day", + "1989-03-08": "International Women's Day", + "1989-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1989-04-06": "Chakri Memorial Day", + "1989-04-12": "Songkran Festival", + "1989-04-13": "Songkran Festival", + "1989-04-14": "Songkran Festival", + "1989-05-01": "National Labour Day", + "1989-05-05": "Coronation Day", + "1989-05-13": "Royal Ploughing Ceremony", + "1989-05-19": "Visakha Bucha", + "1989-07-01": "Mid-Year Closing Day", + "1989-07-17": "Asarnha Bucha", + "1989-07-18": "Buddhist Lent Day", + "1989-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "1989-08-18": "National Science Day", + "1989-10-23": "HM King Chulalongkorn Memorial Day", + "1989-11-12": "Loy Krathong", + "1989-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "1989-12-10": "Constitution Day", + "1989-12-31": "New Year's Eve", + "1990-01-01": "New Year's Day", + "1990-01-13": "National Children's Day", + "1990-01-14": "National Forest Conservation Day", + "1990-01-16": "Teacher's Day", + "1990-01-17": "HM King Ramkamhaeng Memorial Day", + "1990-01-25": "Royal Thai Armed Forces Day", + "1990-02-03": "Thai Veterans Day", + "1990-02-09": "Makha Bucha", + "1990-02-26": "National Artist Day", + "1990-03-08": "International Women's Day", + "1990-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1990-04-06": "Chakri Memorial Day", + "1990-04-12": "Songkran Festival", + "1990-04-13": "Songkran Festival", + "1990-04-14": "Songkran Festival", + "1990-05-01": "National Labour Day", + "1990-05-05": "Coronation Day", + "1990-05-08": "Visakha Bucha", + "1990-05-13": "Royal Ploughing Ceremony", + "1990-07-01": "Mid-Year Closing Day", + "1990-07-07": "Asarnha Bucha", + "1990-07-08": "Buddhist Lent Day", + "1990-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "1990-08-18": "National Science Day", + "1990-10-23": "HM King Chulalongkorn Memorial Day", + "1990-11-02": "Loy Krathong", + "1990-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "1990-12-10": "Constitution Day", + "1990-12-31": "New Year's Eve", + "1991-01-01": "New Year's Day", + "1991-01-12": "National Children's Day", + "1991-01-14": "National Forest Conservation Day", + "1991-01-16": "Teacher's Day", + "1991-01-17": "HM King Ramkamhaeng Memorial Day", + "1991-01-25": "Royal Thai Armed Forces Day", + "1991-02-03": "Thai Veterans Day", + "1991-02-26": "National Artist Day", + "1991-02-28": "Makha Bucha", + "1991-03-08": "International Women's Day", + "1991-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1991-04-06": "Chakri Memorial Day", + "1991-04-12": "Songkran Festival", + "1991-04-13": "Songkran Festival", + "1991-04-14": "Songkran Festival", + "1991-05-01": "National Labour Day", + "1991-05-05": "Coronation Day", + "1991-05-13": "Royal Ploughing Ceremony", + "1991-05-28": "Visakha Bucha", + "1991-07-01": "Mid-Year Closing Day", + "1991-07-26": "Asarnha Bucha", + "1991-07-27": "Buddhist Lent Day", + "1991-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "1991-08-18": "National Science Day", + "1991-10-23": "HM King Chulalongkorn Memorial Day", + "1991-11-21": "Loy Krathong", + "1991-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "1991-12-10": "Constitution Day", + "1991-12-31": "New Year's Eve", + "1992-01-01": "New Year's Day", + "1992-01-11": "National Children's Day", + "1992-01-14": "National Forest Conservation Day", + "1992-01-16": "Teacher's Day", + "1992-01-17": "HM King Ramkamhaeng Memorial Day", + "1992-01-25": "Royal Thai Armed Forces Day", + "1992-02-03": "Thai Veterans Day", + "1992-02-18": "Makha Bucha", + "1992-02-26": "National Artist Day", + "1992-03-08": "International Women's Day", + "1992-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1992-04-06": "Chakri Memorial Day", + "1992-04-12": "Songkran Festival", + "1992-04-13": "Songkran Festival", + "1992-04-14": "Songkran Festival", + "1992-05-01": "National Labour Day", + "1992-05-05": "Coronation Day", + "1992-05-13": "Royal Ploughing Ceremony", + "1992-05-16": "Visakha Bucha", + "1992-05-18": "Special In Lieu Holiday", + "1992-07-01": "Mid-Year Closing Day", + "1992-07-14": "Asarnha Bucha", + "1992-07-15": "Buddhist Lent Day", + "1992-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "1992-08-18": "National Science Day", + "1992-10-23": "HM King Chulalongkorn Memorial Day", + "1992-11-09": "Loy Krathong", + "1992-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "1992-12-07": "Special In Lieu Holiday", + "1992-12-10": "Constitution Day", + "1992-12-31": "New Year's Eve", + "1993-01-01": "New Year's Day", + "1993-01-09": "National Children's Day", + "1993-01-14": "National Forest Conservation Day", + "1993-01-16": "Teacher's Day", + "1993-01-17": "HM King Ramkamhaeng Memorial Day", + "1993-01-25": "Royal Thai Armed Forces Day", + "1993-02-03": "Thai Veterans Day", + "1993-02-06": "Makha Bucha", + "1993-02-26": "National Artist Day", + "1993-03-08": "International Women's Day; Special In Lieu Holiday", + "1993-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1993-04-06": "Chakri Memorial Day", + "1993-04-12": "Songkran Festival", + "1993-04-13": "Songkran Festival", + "1993-04-14": "Songkran Festival", + "1993-05-01": "National Labour Day", + "1993-05-03": "Special In Lieu Holiday", + "1993-05-05": "Coronation Day; Visakha Bucha", + "1993-05-13": "Royal Ploughing Ceremony", + "1993-07-01": "Mid-Year Closing Day", + "1993-07-03": "Asarnha Bucha", + "1993-07-04": "Buddhist Lent Day", + "1993-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "1993-08-18": "National Science Day", + "1993-10-23": "HM King Chulalongkorn Memorial Day", + "1993-10-25": "Special In Lieu Holiday", + "1993-10-29": "Loy Krathong", + "1993-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "1993-12-06": "Special In Lieu Holiday", + "1993-12-10": "Constitution Day", + "1993-12-31": "New Year's Eve", + "1994-01-01": "New Year's Day", + "1994-01-03": "Special In Lieu Holiday", + "1994-01-08": "National Children's Day", + "1994-01-14": "National Forest Conservation Day", + "1994-01-16": "Teacher's Day", + "1994-01-17": "HM King Ramkamhaeng Memorial Day", + "1994-01-25": "Royal Thai Armed Forces Day", + "1994-02-03": "Thai Veterans Day", + "1994-02-24": "Makha Bucha", + "1994-02-26": "National Artist Day", + "1994-03-08": "International Women's Day", + "1994-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1994-04-06": "Chakri Memorial Day", + "1994-04-12": "Songkran Festival", + "1994-04-13": "Songkran Festival", + "1994-04-14": "Songkran Festival", + "1994-05-01": "National Labour Day", + "1994-05-02": "Special In Lieu Holiday", + "1994-05-05": "Coronation Day", + "1994-05-13": "Royal Ploughing Ceremony", + "1994-05-24": "Visakha Bucha", + "1994-07-01": "Mid-Year Closing Day", + "1994-07-22": "Asarnha Bucha", + "1994-07-23": "Buddhist Lent Day", + "1994-07-25": "Special In Lieu Holiday", + "1994-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "1994-08-18": "National Science Day", + "1994-10-23": "HM King Chulalongkorn Memorial Day", + "1994-10-24": "Special In Lieu Holiday", + "1994-11-17": "Loy Krathong", + "1994-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "1994-12-10": "Constitution Day", + "1994-12-12": "Special In Lieu Holiday", + "1994-12-31": "New Year's Eve", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (in lieu)", + "1995-01-03": "New Year's Eve (in lieu)", + "1995-01-13": "National Aviation Day", + "1995-01-14": "National Children's Day; National Forest Conservation Day", + "1995-01-16": "Teacher's Day", + "1995-01-17": "HM King Ramkamhaeng Memorial Day", + "1995-01-25": "Royal Thai Armed Forces Day", + "1995-02-03": "Thai Veterans Day", + "1995-02-14": "Makha Bucha", + "1995-02-26": "National Artist Day", + "1995-03-08": "International Women's Day", + "1995-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1995-04-06": "Chakri Memorial Day", + "1995-04-12": "Songkran Festival", + "1995-04-13": "Songkran Festival", + "1995-04-14": "Songkran Festival", + "1995-05-01": "National Labour Day", + "1995-05-05": "Coronation Day", + "1995-05-13": "Royal Ploughing Ceremony; Visakha Bucha", + "1995-05-15": "Royal Ploughing Ceremony (in lieu); Visakha Bucha (in lieu)", + "1995-07-01": "Mid-Year Closing Day", + "1995-07-11": "Asarnha Bucha", + "1995-07-12": "Buddhist Lent Day", + "1995-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "1995-08-14": "HM Queen Sirikit's Birthday (in lieu); National Mother's Day (in lieu)", + "1995-08-18": "National Science Day", + "1995-10-23": "HM King Chulalongkorn Memorial Day", + "1995-11-06": "Loy Krathong", + "1995-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "1995-12-10": "Constitution Day", + "1995-12-11": "Constitution Day (in lieu)", + "1995-12-31": "New Year's Eve", + "1996-01-01": "New Year's Day", + "1996-01-02": "New Year's Eve (in lieu)", + "1996-01-13": "National Aviation Day; National Children's Day", + "1996-01-14": "National Forest Conservation Day", + "1996-01-16": "Teacher's Day", + "1996-01-17": "HM King Ramkamhaeng Memorial Day", + "1996-01-25": "Royal Thai Armed Forces Day", + "1996-02-03": "Thai Veterans Day", + "1996-02-26": "National Artist Day", + "1996-03-03": "Makha Bucha", + "1996-03-04": "Makha Bucha (in lieu)", + "1996-03-08": "International Women's Day", + "1996-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1996-04-06": "Chakri Memorial Day", + "1996-04-08": "Chakri Memorial Day (in lieu)", + "1996-04-12": "Songkran Festival", + "1996-04-13": "Songkran Festival", + "1996-04-14": "Songkran Festival", + "1996-04-15": "Songkran Festival (in lieu)", + "1996-05-01": "National Labour Day", + "1996-05-05": "Coronation Day", + "1996-05-06": "Coronation Day (in lieu)", + "1996-05-13": "Royal Ploughing Ceremony", + "1996-05-31": "Visakha Bucha", + "1996-06-10": "HM King Bhumibol Adulyadej's Golden Jubilee", + "1996-07-01": "Mid-Year Closing Day", + "1996-07-29": "Asarnha Bucha", + "1996-07-30": "Buddhist Lent Day", + "1996-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "1996-08-18": "National Science Day", + "1996-10-23": "HM King Chulalongkorn Memorial Day", + "1996-11-24": "Loy Krathong", + "1996-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "1996-12-10": "Constitution Day", + "1996-12-31": "New Year's Eve", + "1997-01-01": "New Year's Day", + "1997-01-11": "National Children's Day", + "1997-01-13": "National Aviation Day", + "1997-01-14": "National Forest Conservation Day", + "1997-01-16": "Teacher's Day", + "1997-01-17": "HM King Ramkamhaeng Memorial Day", + "1997-01-25": "Royal Thai Armed Forces Day", + "1997-02-03": "Thai Veterans Day", + "1997-02-21": "Makha Bucha", + "1997-02-26": "National Artist Day", + "1997-03-08": "International Women's Day", + "1997-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1997-04-06": "Chakri Memorial Day", + "1997-04-07": "Chakri Memorial Day (in lieu)", + "1997-04-12": "Songkran Festival", + "1997-04-13": "Songkran Festival", + "1997-04-14": "Songkran Festival", + "1997-04-15": "Songkran Festival (in lieu)", + "1997-05-01": "National Labour Day", + "1997-05-05": "Coronation Day", + "1997-05-13": "Royal Ploughing Ceremony", + "1997-05-20": "Visakha Bucha", + "1997-07-01": "Mid-Year Closing Day", + "1997-07-19": "Asarnha Bucha", + "1997-07-20": "Buddhist Lent Day", + "1997-07-21": "Asarnha Bucha (in lieu)", + "1997-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "1997-08-18": "National Science Day", + "1997-10-23": "HM King Chulalongkorn Memorial Day", + "1997-11-14": "Loy Krathong", + "1997-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "1997-12-10": "Constitution Day", + "1997-12-31": "New Year's Eve", + "1998-01-01": "New Year's Day", + "1998-01-10": "National Children's Day", + "1998-01-13": "National Aviation Day", + "1998-01-14": "National Forest Conservation Day", + "1998-01-16": "Teacher's Day", + "1998-01-17": "HM King Ramkamhaeng Memorial Day", + "1998-01-25": "Royal Thai Armed Forces Day", + "1998-02-03": "Thai Veterans Day", + "1998-02-11": "Makha Bucha", + "1998-02-26": "National Artist Day", + "1998-03-08": "International Women's Day", + "1998-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1998-04-06": "Chakri Memorial Day", + "1998-04-13": "Songkran Festival", + "1998-04-14": "Songkran Festival", + "1998-04-15": "Songkran Festival", + "1998-05-01": "National Labour Day", + "1998-05-05": "Coronation Day", + "1998-05-10": "Visakha Bucha", + "1998-05-11": "Special In Lieu Holiday", + "1998-05-13": "Royal Ploughing Ceremony", + "1998-07-01": "Mid-Year Closing Day", + "1998-07-08": "Asarnha Bucha", + "1998-07-09": "Buddhist Lent Day", + "1998-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "1998-08-18": "National Science Day", + "1998-10-23": "HM King Chulalongkorn Memorial Day", + "1998-11-03": "Loy Krathong", + "1998-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "1998-12-07": "Special In Lieu Holiday", + "1998-12-10": "Constitution Day", + "1998-12-31": "New Year's Eve", + "1999-01-01": "New Year's Day", + "1999-01-09": "National Children's Day", + "1999-01-13": "National Aviation Day", + "1999-01-14": "National Forest Conservation Day", + "1999-01-16": "Teacher's Day", + "1999-01-17": "HM King Ramkamhaeng Memorial Day", + "1999-01-25": "Royal Thai Armed Forces Day", + "1999-02-03": "Thai Veterans Day", + "1999-02-26": "National Artist Day", + "1999-03-01": "Makha Bucha", + "1999-03-08": "International Women's Day", + "1999-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "1999-04-06": "Chakri Memorial Day", + "1999-04-13": "Songkran Festival", + "1999-04-14": "Songkran Festival", + "1999-04-15": "Songkran Festival", + "1999-05-01": "National Labour Day", + "1999-05-03": "Special In Lieu Holiday", + "1999-05-05": "Coronation Day", + "1999-05-29": "Visakha Bucha", + "1999-05-31": "Special In Lieu Holiday", + "1999-07-01": "Mid-Year Closing Day", + "1999-07-27": "Asarnha Bucha", + "1999-07-28": "Buddhist Lent Day", + "1999-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "1999-08-18": "National Science Day", + "1999-10-23": "HM King Chulalongkorn Memorial Day", + "1999-10-25": "Special In Lieu Holiday", + "1999-11-22": "Loy Krathong", + "1999-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "1999-12-06": "Special In Lieu Holiday", + "1999-12-10": "Constitution Day", + "1999-12-31": "New Year's Eve", + "2000-01-01": "New Year's Day", + "2000-01-03": "Special In Lieu Holiday", + "2000-01-08": "National Children's Day", + "2000-01-13": "National Aviation Day", + "2000-01-14": "National Forest Conservation Day", + "2000-01-16": "Teacher's Day", + "2000-01-17": "HM King Ramkamhaeng Memorial Day", + "2000-01-25": "Royal Thai Armed Forces Day", + "2000-02-03": "Thai Veterans Day", + "2000-02-19": "Makha Bucha", + "2000-02-21": "Special In Lieu Holiday", + "2000-02-26": "National Artist Day", + "2000-03-08": "International Women's Day", + "2000-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "2000-04-06": "Chakri Memorial Day", + "2000-04-13": "Songkran Festival", + "2000-04-14": "Songkran Festival", + "2000-04-15": "Songkran Festival", + "2000-05-01": "National Labour Day", + "2000-05-05": "Coronation Day", + "2000-05-15": "Royal Ploughing Ceremony", + "2000-05-17": "Visakha Bucha", + "2000-07-01": "Mid-Year Closing Day", + "2000-07-16": "Asarnha Bucha", + "2000-07-17": "Buddhist Lent Day", + "2000-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "2000-08-14": "Special In Lieu Holiday", + "2000-08-18": "National Science Day", + "2000-10-23": "HM King Chulalongkorn Memorial Day", + "2000-11-11": "Loy Krathong", + "2000-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "2000-12-10": "Constitution Day", + "2000-12-11": "Special In Lieu Holiday", + "2000-12-29": "Thai Election Day", + "2000-12-31": "New Year's Eve", + "2001-01-01": "New Year's Day", + "2001-01-02": "New Year's Eve (in lieu)", + "2001-01-13": "National Aviation Day; National Children's Day", + "2001-01-14": "National Forest Conservation Day", + "2001-01-16": "Teacher's Day", + "2001-01-17": "HM King Ramkamhaeng Memorial Day", + "2001-01-25": "Royal Thai Armed Forces Day", + "2001-02-03": "Thai Veterans Day", + "2001-02-08": "Makha Bucha", + "2001-02-26": "National Artist Day", + "2001-03-08": "International Women's Day", + "2001-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "2001-04-06": "Chakri Memorial Day", + "2001-04-13": "Songkran Festival", + "2001-04-14": "Songkran Festival", + "2001-04-15": "Songkran Festival", + "2001-04-16": "Songkran Festival (in lieu)", + "2001-05-01": "National Labour Day", + "2001-05-05": "Coronation Day", + "2001-05-07": "Coronation Day (in lieu); Visakha Bucha", + "2001-05-16": "Royal Ploughing Ceremony", + "2001-07-01": "Mid-Year Closing Day", + "2001-07-05": "Asarnha Bucha", + "2001-07-06": "Buddhist Lent Day", + "2001-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "2001-08-13": "HM Queen Sirikit's Birthday (in lieu); National Mother's Day (in lieu)", + "2001-08-18": "National Science Day", + "2001-10-23": "HM King Chulalongkorn Memorial Day", + "2001-10-31": "Loy Krathong", + "2001-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "2001-12-10": "Constitution Day", + "2001-12-31": "New Year's Eve", + "2002-01-01": "New Year's Day", + "2002-01-12": "National Children's Day", + "2002-01-13": "National Aviation Day", + "2002-01-14": "National Forest Conservation Day", + "2002-01-16": "Teacher's Day", + "2002-01-17": "HM King Ramkamhaeng Memorial Day", + "2002-01-25": "Royal Thai Armed Forces Day", + "2002-02-03": "Thai Veterans Day", + "2002-02-26": "Makha Bucha; National Artist Day", + "2002-03-08": "International Women's Day", + "2002-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "2002-04-06": "Chakri Memorial Day", + "2002-04-08": "Chakri Memorial Day (in lieu)", + "2002-04-13": "Songkran Festival", + "2002-04-14": "Songkran Festival", + "2002-04-15": "Songkran Festival", + "2002-04-16": "Songkran Festival (in lieu)", + "2002-05-01": "National Labour Day", + "2002-05-05": "Coronation Day", + "2002-05-06": "Coronation Day (in lieu)", + "2002-05-09": "Royal Ploughing Ceremony", + "2002-05-26": "Visakha Bucha", + "2002-05-27": "Visakha Bucha (in lieu)", + "2002-07-01": "Mid-Year Closing Day", + "2002-07-24": "Asarnha Bucha", + "2002-07-25": "Buddhist Lent Day", + "2002-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "2002-08-18": "National Science Day", + "2002-10-23": "HM King Chulalongkorn Memorial Day", + "2002-11-19": "Loy Krathong", + "2002-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "2002-12-10": "Constitution Day", + "2002-12-31": "New Year's Eve", + "2003-01-01": "New Year's Day", + "2003-01-11": "National Children's Day", + "2003-01-13": "National Aviation Day", + "2003-01-14": "National Forest Conservation Day", + "2003-01-16": "Teacher's Day", + "2003-01-17": "HM King Ramkamhaeng Memorial Day", + "2003-01-25": "Royal Thai Armed Forces Day", + "2003-02-03": "Thai Veterans Day", + "2003-02-16": "Makha Bucha", + "2003-02-17": "Makha Bucha (in lieu)", + "2003-02-26": "National Artist Day", + "2003-03-08": "International Women's Day", + "2003-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "2003-04-06": "Chakri Memorial Day", + "2003-04-07": "Chakri Memorial Day (in lieu)", + "2003-04-13": "Songkran Festival", + "2003-04-14": "Songkran Festival", + "2003-04-15": "Songkran Festival", + "2003-05-01": "National Labour Day", + "2003-05-05": "Coronation Day", + "2003-05-08": "Royal Ploughing Ceremony", + "2003-05-15": "Visakha Bucha", + "2003-07-01": "Mid-Year Closing Day", + "2003-07-13": "Asarnha Bucha", + "2003-07-14": "Buddhist Lent Day", + "2003-07-15": "Asarnha Bucha (in lieu)", + "2003-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "2003-08-18": "National Science Day", + "2003-10-23": "HM King Chulalongkorn Memorial Day", + "2003-11-08": "Loy Krathong", + "2003-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "2003-12-10": "Constitution Day", + "2003-12-31": "New Year's Eve", + "2004-01-01": "New Year's Day", + "2004-01-10": "National Children's Day", + "2004-01-13": "National Aviation Day", + "2004-01-14": "National Forest Conservation Day", + "2004-01-16": "Teacher's Day", + "2004-01-17": "HM King Ramkamhaeng Memorial Day", + "2004-01-25": "Royal Thai Armed Forces Day", + "2004-02-03": "Thai Veterans Day", + "2004-02-26": "National Artist Day", + "2004-03-05": "Makha Bucha", + "2004-03-08": "International Women's Day", + "2004-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "2004-04-06": "Chakri Memorial Day", + "2004-04-13": "Songkran Festival", + "2004-04-14": "Songkran Festival", + "2004-04-15": "Songkran Festival", + "2004-05-01": "National Labour Day", + "2004-05-03": "National Labour Day (in lieu)", + "2004-05-05": "Coronation Day", + "2004-05-07": "Royal Ploughing Ceremony", + "2004-06-02": "Visakha Bucha", + "2004-07-01": "Mid-Year Closing Day", + "2004-07-31": "Asarnha Bucha", + "2004-08-01": "Buddhist Lent Day", + "2004-08-02": "Asarnha Bucha (in lieu)", + "2004-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "2004-08-18": "National Science Day", + "2004-10-23": "HM King Chulalongkorn Memorial Day", + "2004-10-25": "HM King Chulalongkorn Memorial Day (in lieu)", + "2004-11-26": "Loy Krathong", + "2004-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "2004-12-06": "HM King Bhumibol Adulyadej's Birthday (in lieu); National Day (in lieu); National Father's Day (in lieu)", + "2004-12-10": "Constitution Day", + "2004-12-31": "New Year's Eve", + "2005-01-01": "New Year's Day", + "2005-01-03": "New Year's Day (in lieu)", + "2005-01-08": "National Children's Day", + "2005-01-13": "National Aviation Day", + "2005-01-14": "National Forest Conservation Day", + "2005-01-16": "Teacher's Day", + "2005-01-17": "HM King Ramkamhaeng Memorial Day", + "2005-01-25": "Royal Thai Armed Forces Day", + "2005-02-03": "Thai Veterans Day", + "2005-02-23": "Makha Bucha", + "2005-02-26": "National Artist Day", + "2005-03-08": "International Women's Day", + "2005-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "2005-04-06": "Chakri Memorial Day", + "2005-04-13": "Songkran Festival", + "2005-04-14": "Songkran Festival", + "2005-04-15": "Songkran Festival", + "2005-05-01": "National Labour Day", + "2005-05-02": "National Labour Day (in lieu)", + "2005-05-05": "Coronation Day", + "2005-05-11": "Royal Ploughing Ceremony", + "2005-05-22": "Visakha Bucha", + "2005-05-23": "Visakha Bucha (in lieu)", + "2005-07-01": "Mid-Year Closing Day", + "2005-07-20": "Asarnha Bucha", + "2005-07-21": "Buddhist Lent Day", + "2005-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "2005-08-18": "National Science Day", + "2005-10-23": "HM King Chulalongkorn Memorial Day", + "2005-10-24": "HM King Chulalongkorn Memorial Day (in lieu)", + "2005-11-15": "Loy Krathong", + "2005-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "2005-12-10": "Constitution Day", + "2005-12-12": "Constitution Day (in lieu)", + "2005-12-31": "New Year's Eve", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (in lieu)", + "2006-01-03": "New Year's Eve (in lieu)", + "2006-01-13": "National Aviation Day", + "2006-01-14": "National Children's Day; National Forest Conservation Day", + "2006-01-16": "Teacher's Day", + "2006-01-17": "HM King Ramkamhaeng Memorial Day", + "2006-01-25": "Royal Thai Armed Forces Day", + "2006-02-03": "Thai Veterans Day", + "2006-02-12": "Makha Bucha", + "2006-02-13": "Makha Bucha (in lieu)", + "2006-02-26": "National Artist Day", + "2006-03-08": "International Women's Day", + "2006-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "2006-04-06": "Chakri Memorial Day", + "2006-04-13": "Songkran Festival", + "2006-04-14": "Songkran Festival", + "2006-04-15": "Songkran Festival", + "2006-04-17": "Songkran Festival (in lieu)", + "2006-04-19": "Thai Election Day", + "2006-05-01": "National Labour Day", + "2006-05-05": "Coronation Day", + "2006-05-11": "Royal Ploughing Ceremony; Visakha Bucha", + "2006-06-09": "HM King Bhumibol Adulyadej's 60th Anniversary of Accession Event", + "2006-06-12": "HM King Bhumibol Adulyadej's 60th Anniversary of Accession Event", + "2006-06-13": "HM King Bhumibol Adulyadej's 60th Anniversary of Accession Event", + "2006-07-01": "Mid-Year Closing Day", + "2006-07-10": "Asarnha Bucha", + "2006-07-11": "Buddhist Lent Day", + "2006-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "2006-08-14": "HM Queen Sirikit's Birthday (in lieu); National Mother's Day (in lieu)", + "2006-08-18": "National Science Day", + "2006-09-20": "Emergency Lockdown (Thai Military Coup d'\u00e9tat)", + "2006-10-23": "HM King Chulalongkorn Memorial Day", + "2006-11-05": "Loy Krathong", + "2006-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "2006-12-10": "Constitution Day", + "2006-12-11": "Constitution Day (in lieu)", + "2006-12-31": "New Year's Eve", + "2007-01-01": "New Year's Day", + "2007-01-02": "New Year's Eve (in lieu)", + "2007-01-13": "National Aviation Day; National Children's Day", + "2007-01-14": "National Forest Conservation Day", + "2007-01-16": "Teacher's Day", + "2007-01-17": "HM King Ramkamhaeng Memorial Day", + "2007-01-18": "Royal Thai Armed Forces Day", + "2007-02-03": "Thai Veterans Day", + "2007-02-26": "National Artist Day", + "2007-03-03": "Makha Bucha", + "2007-03-05": "Makha Bucha (in lieu)", + "2007-03-08": "International Women's Day", + "2007-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "2007-04-06": "Chakri Memorial Day", + "2007-04-13": "Songkran Festival", + "2007-04-14": "Songkran Festival", + "2007-04-15": "Songkran Festival", + "2007-04-16": "Songkran Festival (in lieu)", + "2007-05-01": "National Labour Day", + "2007-05-05": "Coronation Day", + "2007-05-07": "Coronation Day (in lieu)", + "2007-05-10": "Royal Ploughing Ceremony", + "2007-05-31": "Visakha Bucha", + "2007-07-01": "Mid-Year Closing Day", + "2007-07-29": "Asarnha Bucha", + "2007-07-30": "Buddhist Lent Day", + "2007-07-31": "Asarnha Bucha (in lieu)", + "2007-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "2007-08-13": "HM Queen Sirikit's Birthday (in lieu); National Mother's Day (in lieu)", + "2007-08-18": "National Science Day", + "2007-10-23": "HM King Chulalongkorn Memorial Day", + "2007-11-24": "Loy Krathong", + "2007-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "2007-12-10": "Constitution Day", + "2007-12-24": "Thai Election Day (in lieu)", + "2007-12-31": "New Year's Eve", + "2008-01-01": "New Year's Day", + "2008-01-12": "National Children's Day", + "2008-01-13": "National Aviation Day", + "2008-01-14": "National Forest Conservation Day", + "2008-01-16": "Teacher's Day", + "2008-01-17": "HM King Ramkamhaeng Memorial Day", + "2008-01-18": "Royal Thai Armed Forces Day", + "2008-02-03": "Thai Veterans Day", + "2008-02-21": "Makha Bucha", + "2008-02-26": "National Artist Day", + "2008-03-08": "International Women's Day", + "2008-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "2008-04-06": "Chakri Memorial Day", + "2008-04-07": "Chakri Memorial Day (in lieu)", + "2008-04-13": "Songkran Festival", + "2008-04-14": "Songkran Festival", + "2008-04-15": "Songkran Festival", + "2008-05-01": "National Labour Day", + "2008-05-05": "Coronation Day", + "2008-05-09": "Royal Ploughing Ceremony", + "2008-05-19": "Visakha Bucha", + "2008-07-01": "Mid-Year Closing Day", + "2008-07-17": "Asarnha Bucha", + "2008-07-18": "Buddhist Lent Day", + "2008-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "2008-08-18": "National Science Day", + "2008-10-23": "HM King Chulalongkorn Memorial Day", + "2008-11-12": "Loy Krathong", + "2008-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "2008-12-10": "Constitution Day", + "2008-12-31": "New Year's Eve", + "2009-01-01": "New Year's Day", + "2009-01-02": "Bridge Public Holiday", + "2009-01-10": "National Children's Day", + "2009-01-13": "National Aviation Day", + "2009-01-14": "National Forest Conservation Day", + "2009-01-16": "Teacher's Day", + "2009-01-17": "HM King Ramkamhaeng Memorial Day", + "2009-01-18": "Royal Thai Armed Forces Day", + "2009-02-03": "Thai Veterans Day", + "2009-02-09": "Makha Bucha", + "2009-02-26": "National Artist Day", + "2009-03-08": "International Women's Day", + "2009-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "2009-04-06": "Chakri Memorial Day", + "2009-04-10": "Emergency Lockdown (Thai Political Unrest)", + "2009-04-13": "Songkran Festival", + "2009-04-14": "Songkran Festival", + "2009-04-15": "Songkran Festival", + "2009-04-16": "Emergency Lockdown (Thai Political Unrest)", + "2009-04-17": "Emergency Lockdown (Thai Political Unrest)", + "2009-05-01": "National Labour Day", + "2009-05-05": "Coronation Day", + "2009-05-08": "Visakha Bucha", + "2009-05-11": "Royal Ploughing Ceremony", + "2009-07-01": "Mid-Year Closing Day", + "2009-07-06": "Bridge Public Holiday", + "2009-07-07": "Asarnha Bucha", + "2009-07-08": "Buddhist Lent Day", + "2009-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "2009-08-18": "National Science Day", + "2009-10-23": "HM King Chulalongkorn Memorial Day", + "2009-11-02": "Loy Krathong", + "2009-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "2009-12-07": "HM King Bhumibol Adulyadej's Birthday (in lieu); National Day (in lieu); National Father's Day (in lieu)", + "2009-12-10": "Constitution Day", + "2009-12-31": "New Year's Eve", + "2010-01-01": "New Year's Day", + "2010-01-09": "National Children's Day", + "2010-01-13": "National Aviation Day", + "2010-01-14": "National Forest Conservation Day", + "2010-01-16": "Teacher's Day", + "2010-01-17": "HM King Ramkamhaeng Memorial Day", + "2010-01-18": "Royal Thai Armed Forces Day", + "2010-02-03": "Thai Veterans Day", + "2010-02-26": "National Artist Day", + "2010-02-28": "Makha Bucha", + "2010-03-01": "Makha Bucha (in lieu)", + "2010-03-08": "International Women's Day", + "2010-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "2010-04-06": "Chakri Memorial Day", + "2010-04-13": "Songkran Festival", + "2010-04-14": "Songkran Festival", + "2010-04-15": "Songkran Festival", + "2010-05-01": "National Labour Day", + "2010-05-03": "National Labour Day (in lieu)", + "2010-05-05": "Coronation Day", + "2010-05-10": "Royal Ploughing Ceremony", + "2010-05-20": "Bridge Public Holiday", + "2010-05-21": "Bridge Public Holiday", + "2010-05-28": "Visakha Bucha", + "2010-07-01": "Mid-Year Closing Day", + "2010-07-26": "Asarnha Bucha", + "2010-07-27": "Buddhist Lent Day", + "2010-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "2010-08-13": "Bridge Public Holiday", + "2010-08-18": "National Science Day", + "2010-10-23": "HM King Chulalongkorn Memorial Day", + "2010-10-25": "HM King Chulalongkorn Memorial Day (in lieu)", + "2010-11-21": "Loy Krathong", + "2010-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "2010-12-06": "HM King Bhumibol Adulyadej's Birthday (in lieu); National Day (in lieu); National Father's Day (in lieu)", + "2010-12-10": "Constitution Day", + "2010-12-31": "New Year's Eve", + "2011-01-01": "New Year's Day", + "2011-01-03": "New Year's Day (in lieu)", + "2011-01-08": "National Children's Day", + "2011-01-13": "National Aviation Day", + "2011-01-14": "National Forest Conservation Day", + "2011-01-16": "Teacher's Day", + "2011-01-17": "HM King Ramkamhaeng Memorial Day", + "2011-01-18": "Royal Thai Armed Forces Day", + "2011-02-03": "Thai Veterans Day", + "2011-02-18": "Makha Bucha", + "2011-02-26": "National Artist Day", + "2011-03-08": "International Women's Day", + "2011-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "2011-04-06": "Chakri Memorial Day", + "2011-04-13": "Songkran Festival", + "2011-04-14": "Songkran Festival", + "2011-04-15": "Songkran Festival", + "2011-05-01": "National Labour Day", + "2011-05-02": "National Labour Day (in lieu)", + "2011-05-05": "Coronation Day", + "2011-05-13": "Royal Ploughing Ceremony", + "2011-05-16": "Bridge Public Holiday", + "2011-05-17": "Visakha Bucha", + "2011-07-01": "Mid-Year Closing Day", + "2011-07-15": "Asarnha Bucha", + "2011-07-16": "Buddhist Lent Day", + "2011-07-18": "Buddhist Lent Day (in lieu)", + "2011-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "2011-08-18": "National Science Day", + "2011-10-23": "HM King Chulalongkorn Memorial Day", + "2011-10-24": "HM King Chulalongkorn Memorial Day (in lieu)", + "2011-10-27": "Emergency Lockdown (2011 Thailand Floods)", + "2011-10-28": "Emergency Lockdown (2011 Thailand Floods)", + "2011-10-29": "Emergency Lockdown (2011 Thailand Floods)", + "2011-10-30": "Emergency Lockdown (2011 Thailand Floods)", + "2011-10-31": "Emergency Lockdown (2011 Thailand Floods)", + "2011-11-10": "Loy Krathong", + "2011-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "2011-12-10": "Constitution Day", + "2011-12-12": "Constitution Day (in lieu)", + "2011-12-31": "New Year's Eve", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (in lieu)", + "2012-01-03": "New Year's Eve (in lieu)", + "2012-01-13": "National Aviation Day", + "2012-01-14": "National Children's Day; National Forest Conservation Day", + "2012-01-16": "Teacher's Day", + "2012-01-17": "HM King Ramkamhaeng Memorial Day", + "2012-01-18": "Royal Thai Armed Forces Day", + "2012-02-03": "Thai Veterans Day", + "2012-02-26": "National Artist Day", + "2012-03-07": "Makha Bucha", + "2012-03-08": "International Women's Day", + "2012-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "2012-04-06": "Chakri Memorial Day", + "2012-04-09": "Bridge Public Holiday", + "2012-04-13": "Songkran Festival", + "2012-04-14": "Songkran Festival", + "2012-04-15": "Songkran Festival", + "2012-04-16": "Songkran Festival (in lieu)", + "2012-05-01": "National Labour Day", + "2012-05-05": "Coronation Day", + "2012-05-07": "Coronation Day (in lieu)", + "2012-05-09": "Royal Ploughing Ceremony", + "2012-06-04": "Visakha Bucha", + "2012-07-01": "Mid-Year Closing Day", + "2012-08-02": "Asarnha Bucha", + "2012-08-03": "Buddhist Lent Day", + "2012-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "2012-08-13": "HM Queen Sirikit's Birthday (in lieu); National Mother's Day (in lieu)", + "2012-08-18": "National Science Day", + "2012-10-23": "HM King Chulalongkorn Memorial Day", + "2012-11-28": "Loy Krathong", + "2012-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "2012-12-10": "Constitution Day", + "2012-12-31": "New Year's Eve", + "2013-01-01": "New Year's Day", + "2013-01-12": "National Children's Day", + "2013-01-13": "National Aviation Day", + "2013-01-14": "National Forest Conservation Day", + "2013-01-16": "Teacher's Day", + "2013-01-17": "HM King Ramkamhaeng Memorial Day", + "2013-01-18": "Royal Thai Armed Forces Day", + "2013-02-03": "Thai Veterans Day", + "2013-02-25": "Makha Bucha", + "2013-02-26": "National Artist Day", + "2013-03-08": "International Women's Day", + "2013-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "2013-04-06": "Chakri Memorial Day", + "2013-04-08": "Chakri Memorial Day (in lieu)", + "2013-04-13": "Songkran Festival", + "2013-04-14": "Songkran Festival", + "2013-04-15": "Songkran Festival", + "2013-04-16": "Songkran Festival (in lieu)", + "2013-05-01": "National Labour Day", + "2013-05-05": "Coronation Day", + "2013-05-06": "Coronation Day (in lieu)", + "2013-05-13": "Royal Ploughing Ceremony", + "2013-05-24": "Visakha Bucha", + "2013-07-01": "Mid-Year Closing Day", + "2013-07-22": "Asarnha Bucha", + "2013-07-23": "Buddhist Lent Day", + "2013-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "2013-08-18": "National Science Day", + "2013-10-23": "HM King Chulalongkorn Memorial Day", + "2013-11-17": "Loy Krathong", + "2013-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "2013-12-10": "Constitution Day", + "2013-12-30": "Bridge Public Holiday", + "2013-12-31": "New Year's Eve", + "2014-01-01": "New Year's Day", + "2014-01-11": "National Children's Day", + "2014-01-13": "National Aviation Day", + "2014-01-14": "National Forest Conservation Day", + "2014-01-16": "Teacher's Day", + "2014-01-17": "HM King Ramkamhaeng Memorial Day", + "2014-01-18": "Royal Thai Armed Forces Day", + "2014-02-03": "Thai Veterans Day", + "2014-02-14": "Makha Bucha", + "2014-02-26": "National Artist Day", + "2014-03-08": "International Women's Day", + "2014-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "2014-04-06": "Chakri Memorial Day", + "2014-04-07": "Chakri Memorial Day (in lieu)", + "2014-04-13": "Songkran Festival", + "2014-04-14": "Songkran Festival", + "2014-04-15": "Songkran Festival", + "2014-05-01": "National Labour Day", + "2014-05-05": "Coronation Day", + "2014-05-09": "Royal Ploughing Ceremony", + "2014-05-13": "Visakha Bucha", + "2014-07-01": "Mid-Year Closing Day", + "2014-07-11": "Asarnha Bucha", + "2014-07-12": "Buddhist Lent Day", + "2014-07-14": "Buddhist Lent Day (in lieu)", + "2014-08-11": "Bridge Public Holiday", + "2014-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "2014-08-18": "National Science Day", + "2014-10-23": "HM King Chulalongkorn Memorial Day", + "2014-11-06": "Loy Krathong", + "2014-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "2014-12-10": "Constitution Day", + "2014-12-31": "New Year's Eve", + "2015-01-01": "New Year's Day", + "2015-01-02": "Bridge Public Holiday", + "2015-01-10": "National Children's Day", + "2015-01-13": "National Aviation Day", + "2015-01-14": "National Forest Conservation Day", + "2015-01-16": "Teacher's Day", + "2015-01-17": "HM King Ramkamhaeng Memorial Day", + "2015-01-18": "Royal Thai Armed Forces Day", + "2015-02-03": "Thai Veterans Day", + "2015-02-26": "National Artist Day", + "2015-03-04": "Makha Bucha", + "2015-03-08": "International Women's Day", + "2015-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "2015-04-06": "Chakri Memorial Day", + "2015-04-13": "Songkran Festival", + "2015-04-14": "Songkran Festival", + "2015-04-15": "Songkran Festival", + "2015-05-01": "National Labour Day", + "2015-05-04": "Bridge Public Holiday", + "2015-05-05": "Coronation Day", + "2015-05-13": "Royal Ploughing Ceremony", + "2015-06-01": "Visakha Bucha", + "2015-07-01": "Mid-Year Closing Day", + "2015-07-30": "Asarnha Bucha", + "2015-07-31": "Buddhist Lent Day", + "2015-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "2015-08-18": "National Science Day", + "2015-10-23": "HM King Chulalongkorn Memorial Day", + "2015-11-25": "Loy Krathong", + "2015-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "2015-12-07": "HM King Bhumibol Adulyadej's Birthday (in lieu); National Day (in lieu); National Father's Day (in lieu)", + "2015-12-10": "Constitution Day", + "2015-12-31": "New Year's Eve", + "2016-01-01": "New Year's Day", + "2016-01-09": "National Children's Day", + "2016-01-13": "National Aviation Day", + "2016-01-14": "National Forest Conservation Day", + "2016-01-16": "Teacher's Day", + "2016-01-17": "HM King Ramkamhaeng Memorial Day", + "2016-01-18": "Royal Thai Armed Forces Day", + "2016-02-03": "Thai Veterans Day", + "2016-02-22": "Makha Bucha", + "2016-02-26": "National Artist Day", + "2016-03-08": "International Women's Day", + "2016-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "2016-04-06": "Chakri Memorial Day", + "2016-04-13": "Songkran Festival", + "2016-04-14": "Songkran Festival", + "2016-04-15": "Songkran Festival", + "2016-05-01": "National Labour Day", + "2016-05-02": "National Labour Day (in lieu)", + "2016-05-05": "Coronation Day", + "2016-05-06": "Bridge Public Holiday", + "2016-05-09": "Royal Ploughing Ceremony", + "2016-05-20": "Visakha Bucha", + "2016-07-01": "Mid-Year Closing Day", + "2016-07-18": "Bridge Public Holiday", + "2016-07-19": "Asarnha Bucha", + "2016-07-20": "Buddhist Lent Day", + "2016-08-12": "HM Queen Sirikit's Birthday; National Mother's Day", + "2016-08-18": "National Science Day", + "2016-10-14": "Day of Mourning for HM King Bhumibol Adulyadej", + "2016-10-23": "HM King Chulalongkorn Memorial Day", + "2016-10-24": "HM King Chulalongkorn Memorial Day (in lieu)", + "2016-11-14": "Loy Krathong", + "2016-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "2016-12-10": "Constitution Day", + "2016-12-12": "Constitution Day (in lieu)", + "2016-12-31": "New Year's Eve", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (in lieu)", + "2017-01-03": "New Year's Eve (in lieu)", + "2017-01-13": "National Aviation Day", + "2017-01-14": "National Children's Day; National Forest Conservation Day", + "2017-01-16": "Teacher's Day", + "2017-01-17": "HM King Ramkamhaeng Memorial Day", + "2017-01-18": "Royal Thai Armed Forces Day", + "2017-02-03": "Thai Veterans Day", + "2017-02-11": "Makha Bucha", + "2017-02-13": "Makha Bucha (in lieu)", + "2017-02-26": "National Artist Day", + "2017-03-08": "International Women's Day", + "2017-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "2017-04-06": "Chakri Memorial Day", + "2017-04-13": "Songkran Festival", + "2017-04-14": "Songkran Festival", + "2017-04-15": "Songkran Festival", + "2017-04-17": "Songkran Festival (in lieu)", + "2017-05-01": "National Labour Day", + "2017-05-10": "Visakha Bucha", + "2017-05-12": "Royal Ploughing Ceremony", + "2017-07-01": "Mid-Year Closing Day", + "2017-07-08": "Asarnha Bucha", + "2017-07-09": "Buddhist Lent Day", + "2017-07-10": "Asarnha Bucha (in lieu)", + "2017-07-28": "HM King Maha Vajiralongkorn's Birthday", + "2017-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2017-08-14": "HM Queen Sirikit The Queen Mother's Birthday (in lieu); National Mother's Day (in lieu)", + "2017-08-18": "National Science Day", + "2017-09-28": "Thai National Flag Day", + "2017-10-13": "HM King Bhumibol Adulyadej Memorial Day", + "2017-10-23": "HM King Chulalongkorn Memorial Day", + "2017-10-26": "HM King Bhumibol Adulyadej's Royal Cremation Ceremony", + "2017-11-03": "Loy Krathong", + "2017-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "2017-12-10": "Constitution Day", + "2017-12-11": "Constitution Day (in lieu)", + "2017-12-31": "New Year's Eve", + "2018-01-01": "New Year's Day", + "2018-01-02": "New Year's Eve (in lieu)", + "2018-01-13": "National Aviation Day; National Children's Day", + "2018-01-14": "National Forest Conservation Day", + "2018-01-16": "Teacher's Day", + "2018-01-17": "HM King Ramkamhaeng Memorial Day", + "2018-01-18": "Royal Thai Armed Forces Day", + "2018-02-03": "Thai Veterans Day", + "2018-02-26": "National Artist Day", + "2018-03-01": "Makha Bucha", + "2018-03-08": "International Women's Day", + "2018-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "2018-04-06": "Chakri Memorial Day", + "2018-04-13": "Songkran Festival", + "2018-04-14": "Songkran Festival", + "2018-04-15": "Songkran Festival", + "2018-04-16": "Songkran Festival (in lieu)", + "2018-05-01": "National Labour Day", + "2018-05-14": "Royal Ploughing Ceremony", + "2018-05-29": "Visakha Bucha", + "2018-07-01": "Mid-Year Closing Day", + "2018-07-27": "Asarnha Bucha", + "2018-07-28": "Buddhist Lent Day; HM King Maha Vajiralongkorn's Birthday", + "2018-07-30": "Buddhist Lent Day (in lieu); HM King Maha Vajiralongkorn's Birthday (in lieu)", + "2018-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2018-08-13": "HM Queen Sirikit The Queen Mother's Birthday (in lieu); National Mother's Day (in lieu)", + "2018-08-18": "National Science Day", + "2018-09-28": "Thai National Flag Day", + "2018-10-13": "HM King Bhumibol Adulyadej Memorial Day", + "2018-10-15": "HM King Bhumibol Adulyadej Memorial Day (in lieu)", + "2018-10-23": "HM King Chulalongkorn Memorial Day", + "2018-11-22": "Loy Krathong", + "2018-12-05": "HM King Bhumibol Adulyadej's Birthday; National Day; National Father's Day", + "2018-12-10": "Constitution Day", + "2018-12-31": "New Year's Eve", + "2019-01-01": "New Year's Day", + "2019-01-12": "National Children's Day", + "2019-01-13": "National Aviation Day", + "2019-01-14": "National Forest Conservation Day", + "2019-01-16": "Teacher's Day", + "2019-01-17": "HM King Ramkamhaeng Memorial Day", + "2019-01-18": "Royal Thai Armed Forces Day", + "2019-02-03": "Thai Veterans Day", + "2019-02-19": "Makha Bucha", + "2019-02-26": "National Artist Day", + "2019-03-08": "International Women's Day", + "2019-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "2019-04-06": "Chakri Memorial Day", + "2019-04-08": "Chakri Memorial Day (in lieu)", + "2019-04-13": "Songkran Festival", + "2019-04-14": "Songkran Festival", + "2019-04-15": "Songkran Festival", + "2019-04-16": "Songkran Festival (in lieu)", + "2019-05-01": "National Labour Day", + "2019-05-06": "HM King Maha Vajiralongkorn's Coronation Celebrations", + "2019-05-09": "Royal Ploughing Ceremony", + "2019-05-18": "Visakha Bucha", + "2019-05-20": "Visakha Bucha (in lieu)", + "2019-06-03": "HM Queen Suthida's Birthday", + "2019-07-16": "Asarnha Bucha", + "2019-07-17": "Buddhist Lent Day", + "2019-07-28": "HM King Maha Vajiralongkorn's Birthday", + "2019-07-29": "HM King Maha Vajiralongkorn's Birthday (in lieu)", + "2019-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2019-08-18": "National Science Day", + "2019-09-28": "Thai National Flag Day", + "2019-10-13": "HM King Bhumibol Adulyadej the Great Memorial Day", + "2019-10-14": "HM King Bhumibol Adulyadej the Great Memorial Day (in lieu)", + "2019-10-23": "HM King Chulalongkorn Memorial Day", + "2019-11-11": "Loy Krathong", + "2019-12-05": "HM King Bhumibol Adulyadej the Great's Birthday; National Day; National Father's Day", + "2019-12-10": "Constitution Day", + "2019-12-31": "New Year's Eve", + "2020-01-01": "New Year's Day", + "2020-01-11": "National Children's Day", + "2020-01-13": "National Aviation Day", + "2020-01-14": "National Forest Conservation Day", + "2020-01-16": "Teacher's Day", + "2020-01-17": "HM King Ramkamhaeng Memorial Day", + "2020-01-18": "Royal Thai Armed Forces Day", + "2020-02-03": "Thai Veterans Day", + "2020-02-08": "Makha Bucha", + "2020-02-10": "Makha Bucha (in lieu)", + "2020-02-26": "National Artist Day", + "2020-03-08": "International Women's Day", + "2020-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "2020-04-06": "Chakri Memorial Day", + "2020-05-01": "National Labour Day", + "2020-05-04": "Coronation Day", + "2020-05-06": "Visakha Bucha", + "2020-05-11": "Royal Ploughing Ceremony", + "2020-06-03": "HM Queen Suthida's Birthday", + "2020-07-05": "Asarnha Bucha", + "2020-07-06": "Buddhist Lent Day", + "2020-07-07": "Asarnha Bucha (in lieu)", + "2020-07-27": "Songkran Festival (in lieu)", + "2020-07-28": "HM King Maha Vajiralongkorn's Birthday", + "2020-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2020-08-18": "National Science Day", + "2020-09-04": "Songkran Festival (in lieu)", + "2020-09-07": "Songkran Festival (in lieu)", + "2020-09-28": "Thai National Flag Day", + "2020-10-13": "HM King Bhumibol Adulyadej the Great Memorial Day", + "2020-10-23": "HM King Chulalongkorn Memorial Day", + "2020-10-31": "Loy Krathong", + "2020-11-19": "Bridge Public Holiday", + "2020-11-20": "Bridge Public Holiday", + "2020-12-05": "HM King Bhumibol Adulyadej the Great's Birthday; National Day; National Father's Day", + "2020-12-07": "HM King Bhumibol Adulyadej the Great's Birthday (in lieu); National Day (in lieu); National Father's Day (in lieu)", + "2020-12-10": "Constitution Day", + "2020-12-11": "Bridge Public Holiday", + "2020-12-31": "New Year's Eve", + "2021-01-01": "New Year's Day", + "2021-01-09": "National Children's Day", + "2021-01-13": "National Aviation Day", + "2021-01-14": "National Forest Conservation Day", + "2021-01-16": "Teacher's Day", + "2021-01-17": "HM King Ramkamhaeng Memorial Day", + "2021-01-18": "Royal Thai Armed Forces Day", + "2021-02-03": "Thai Veterans Day", + "2021-02-12": "Bridge Public Holiday", + "2021-02-26": "Makha Bucha; National Artist Day", + "2021-03-08": "International Women's Day", + "2021-04-01": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "2021-04-06": "Chakri Memorial Day", + "2021-04-12": "Bridge Public Holiday", + "2021-04-13": "Songkran Festival", + "2021-04-14": "Songkran Festival", + "2021-04-15": "Songkran Festival", + "2021-05-01": "National Labour Day", + "2021-05-03": "National Labour Day (in lieu)", + "2021-05-04": "Coronation Day", + "2021-05-13": "Royal Ploughing Ceremony", + "2021-05-26": "Visakha Bucha", + "2021-06-03": "HM Queen Suthida's Birthday", + "2021-07-24": "Asarnha Bucha", + "2021-07-25": "Buddhist Lent Day", + "2021-07-26": "Asarnha Bucha (in lieu)", + "2021-07-28": "HM King Maha Vajiralongkorn's Birthday", + "2021-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2021-08-18": "National Science Day", + "2021-09-24": "Bridge Public Holiday", + "2021-09-28": "Thai National Flag Day", + "2021-10-13": "HM King Bhumibol Adulyadej the Great Memorial Day", + "2021-10-23": "HM King Chulalongkorn Memorial Day", + "2021-10-25": "HM King Chulalongkorn Memorial Day (in lieu)", + "2021-11-19": "Loy Krathong", + "2021-12-05": "HM King Bhumibol Adulyadej the Great's Birthday; National Day; National Father's Day", + "2021-12-06": "HM King Bhumibol Adulyadej the Great's Birthday (in lieu); National Day (in lieu); National Father's Day (in lieu)", + "2021-12-10": "Constitution Day", + "2021-12-31": "New Year's Eve", + "2022-01-01": "New Year's Day", + "2022-01-03": "New Year's Day (in lieu)", + "2022-01-08": "National Children's Day", + "2022-01-13": "National Aviation Day", + "2022-01-14": "National Forest Conservation Day", + "2022-01-16": "Teacher's Day", + "2022-01-17": "HM King Ramkamhaeng Memorial Day", + "2022-01-18": "Royal Thai Armed Forces Day", + "2022-02-03": "Thai Veterans Day", + "2022-02-16": "Makha Bucha", + "2022-02-26": "National Artist Day", + "2022-03-08": "International Women's Day", + "2022-04-06": "Chakri Memorial Day", + "2022-04-13": "Songkran Festival", + "2022-04-14": "Songkran Festival", + "2022-04-15": "Songkran Festival", + "2022-05-01": "National Labour Day", + "2022-05-02": "National Labour Day (in lieu)", + "2022-05-04": "Coronation Day", + "2022-05-15": "Visakha Bucha", + "2022-05-16": "Visakha Bucha (in lieu)", + "2022-05-17": "Royal Ploughing Ceremony", + "2022-06-03": "HM Queen Suthida's Birthday", + "2022-07-13": "Asarnha Bucha", + "2022-07-14": "Buddhist Lent Day", + "2022-07-15": "Bridge Public Holiday", + "2022-07-28": "HM King Maha Vajiralongkorn's Birthday", + "2022-07-29": "Bridge Public Holiday", + "2022-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2022-08-18": "National Science Day", + "2022-09-28": "Thai National Flag Day", + "2022-10-13": "HM King Bhumibol Adulyadej the Great Memorial Day", + "2022-10-14": "Bridge Public Holiday", + "2022-10-23": "HM King Chulalongkorn Memorial Day", + "2022-10-24": "HM King Chulalongkorn Memorial Day (in lieu)", + "2022-11-08": "Loy Krathong", + "2022-12-05": "HM King Bhumibol Adulyadej the Great's Birthday; National Day; National Father's Day", + "2022-12-10": "Constitution Day", + "2022-12-12": "Constitution Day (in lieu)", + "2022-12-30": "Bridge Public Holiday", + "2022-12-31": "New Year's Eve", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (in lieu)", + "2023-01-03": "New Year's Eve (in lieu)", + "2023-01-13": "National Aviation Day", + "2023-01-14": "National Children's Day; National Forest Conservation Day", + "2023-01-16": "Teacher's Day", + "2023-01-17": "HM King Ramkamhaeng Memorial Day", + "2023-01-18": "Royal Thai Armed Forces Day", + "2023-02-03": "Thai Veterans Day", + "2023-02-26": "National Artist Day", + "2023-03-06": "Makha Bucha", + "2023-03-08": "International Women's Day", + "2023-04-06": "Chakri Memorial Day", + "2023-04-13": "Songkran Festival", + "2023-04-14": "Songkran Festival", + "2023-04-15": "Songkran Festival", + "2023-04-17": "Songkran Festival (in lieu)", + "2023-05-01": "National Labour Day", + "2023-05-04": "Coronation Day", + "2023-05-05": "Bridge Public Holiday", + "2023-05-11": "Royal Ploughing Ceremony", + "2023-06-03": "HM Queen Suthida's Birthday; Visakha Bucha", + "2023-06-05": "HM Queen Suthida's Birthday (in lieu); Visakha Bucha (in lieu)", + "2023-07-28": "HM King Maha Vajiralongkorn's Birthday", + "2023-07-31": "Bridge Public Holiday", + "2023-08-01": "Asarnha Bucha", + "2023-08-02": "Buddhist Lent Day", + "2023-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2023-08-14": "HM Queen Sirikit The Queen Mother's Birthday (in lieu); National Mother's Day (in lieu)", + "2023-08-18": "National Science Day", + "2023-09-28": "Thai National Flag Day", + "2023-10-13": "HM King Bhumibol Adulyadej the Great Memorial Day", + "2023-10-23": "HM King Chulalongkorn Memorial Day", + "2023-11-27": "Loy Krathong", + "2023-12-05": "HM King Bhumibol Adulyadej the Great's Birthday; National Day; National Father's Day", + "2023-12-10": "Constitution Day", + "2023-12-11": "Constitution Day (in lieu)", + "2023-12-31": "New Year's Eve", + "2024-01-01": "New Year's Day", + "2024-01-02": "New Year's Eve (in lieu)", + "2024-01-13": "National Aviation Day; National Children's Day", + "2024-01-14": "National Forest Conservation Day", + "2024-01-16": "Teacher's Day", + "2024-01-17": "HM King Ramkamhaeng Memorial Day", + "2024-01-18": "Royal Thai Armed Forces Day", + "2024-02-03": "Thai Veterans Day", + "2024-02-24": "Makha Bucha", + "2024-02-26": "Makha Bucha (in lieu); National Artist Day", + "2024-03-08": "International Women's Day", + "2024-04-06": "Chakri Memorial Day", + "2024-04-08": "Chakri Memorial Day (in lieu)", + "2024-04-13": "Songkran Festival", + "2024-04-14": "Songkran Festival", + "2024-04-15": "Songkran Festival", + "2024-04-16": "Songkran Festival (in lieu)", + "2024-05-01": "National Labour Day", + "2024-05-04": "Coronation Day", + "2024-05-06": "Coronation Day (in lieu)", + "2024-05-22": "Visakha Bucha", + "2024-06-03": "HM Queen Suthida's Birthday", + "2024-07-20": "Asarnha Bucha", + "2024-07-21": "Buddhist Lent Day", + "2024-07-22": "Asarnha Bucha (in lieu)", + "2024-07-28": "HM King Maha Vajiralongkorn's Birthday", + "2024-07-29": "HM King Maha Vajiralongkorn's Birthday (in lieu)", + "2024-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2024-08-18": "National Science Day", + "2024-09-28": "Thai National Flag Day", + "2024-10-13": "HM King Bhumibol Adulyadej the Great Memorial Day", + "2024-10-14": "HM King Bhumibol Adulyadej the Great Memorial Day (in lieu)", + "2024-10-23": "HM King Chulalongkorn Memorial Day", + "2024-11-15": "Loy Krathong", + "2024-12-05": "HM King Bhumibol Adulyadej the Great's Birthday; National Day; National Father's Day", + "2024-12-10": "Constitution Day", + "2024-12-31": "New Year's Eve", + "2025-01-01": "New Year's Day", + "2025-01-11": "National Children's Day", + "2025-01-13": "National Aviation Day", + "2025-01-14": "National Forest Conservation Day", + "2025-01-16": "Teacher's Day", + "2025-01-17": "HM King Ramkamhaeng Memorial Day", + "2025-01-18": "Royal Thai Armed Forces Day", + "2025-02-03": "Thai Veterans Day", + "2025-02-12": "Makha Bucha", + "2025-02-26": "National Artist Day", + "2025-03-08": "International Women's Day", + "2025-04-06": "Chakri Memorial Day", + "2025-04-07": "Chakri Memorial Day (in lieu)", + "2025-04-13": "Songkran Festival", + "2025-04-14": "Songkran Festival", + "2025-04-15": "Songkran Festival", + "2025-05-01": "National Labour Day", + "2025-05-04": "Coronation Day", + "2025-05-05": "Coronation Day (in lieu)", + "2025-05-11": "Visakha Bucha", + "2025-05-12": "Visakha Bucha (in lieu)", + "2025-06-03": "HM Queen Suthida's Birthday", + "2025-07-10": "Asarnha Bucha", + "2025-07-11": "Buddhist Lent Day", + "2025-07-28": "HM King Maha Vajiralongkorn's Birthday", + "2025-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2025-08-18": "National Science Day", + "2025-09-28": "Thai National Flag Day", + "2025-10-13": "HM King Bhumibol Adulyadej the Great Memorial Day", + "2025-10-23": "HM King Chulalongkorn Memorial Day", + "2025-11-05": "Loy Krathong", + "2025-12-05": "HM King Bhumibol Adulyadej the Great's Birthday; National Day; National Father's Day", + "2025-12-10": "Constitution Day", + "2025-12-31": "New Year's Eve", + "2026-01-01": "New Year's Day", + "2026-01-10": "National Children's Day", + "2026-01-13": "National Aviation Day", + "2026-01-14": "National Forest Conservation Day", + "2026-01-16": "Teacher's Day", + "2026-01-17": "HM King Ramkamhaeng Memorial Day", + "2026-01-18": "Royal Thai Armed Forces Day", + "2026-02-03": "Thai Veterans Day", + "2026-02-26": "National Artist Day", + "2026-03-03": "Makha Bucha", + "2026-03-08": "International Women's Day", + "2026-04-06": "Chakri Memorial Day", + "2026-04-13": "Songkran Festival", + "2026-04-14": "Songkran Festival", + "2026-04-15": "Songkran Festival", + "2026-05-01": "National Labour Day", + "2026-05-04": "Coronation Day", + "2026-05-31": "Visakha Bucha", + "2026-06-01": "Visakha Bucha (in lieu)", + "2026-06-03": "HM Queen Suthida's Birthday", + "2026-07-28": "HM King Maha Vajiralongkorn's Birthday", + "2026-07-29": "Asarnha Bucha", + "2026-07-30": "Buddhist Lent Day", + "2026-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2026-08-18": "National Science Day", + "2026-09-28": "Thai National Flag Day", + "2026-10-13": "HM King Bhumibol Adulyadej the Great Memorial Day", + "2026-10-23": "HM King Chulalongkorn Memorial Day", + "2026-11-24": "Loy Krathong", + "2026-12-05": "HM King Bhumibol Adulyadej the Great's Birthday; National Day; National Father's Day", + "2026-12-07": "HM King Bhumibol Adulyadej the Great's Birthday (in lieu); National Day (in lieu); National Father's Day (in lieu)", + "2026-12-10": "Constitution Day", + "2026-12-31": "New Year's Eve", + "2027-01-01": "New Year's Day", + "2027-01-09": "National Children's Day", + "2027-01-13": "National Aviation Day", + "2027-01-14": "National Forest Conservation Day", + "2027-01-16": "Teacher's Day", + "2027-01-17": "HM King Ramkamhaeng Memorial Day", + "2027-01-18": "Royal Thai Armed Forces Day", + "2027-02-03": "Thai Veterans Day", + "2027-02-21": "Makha Bucha", + "2027-02-22": "Makha Bucha (in lieu)", + "2027-02-26": "National Artist Day", + "2027-03-08": "International Women's Day", + "2027-04-06": "Chakri Memorial Day", + "2027-04-13": "Songkran Festival", + "2027-04-14": "Songkran Festival", + "2027-04-15": "Songkran Festival", + "2027-05-01": "National Labour Day", + "2027-05-03": "National Labour Day (in lieu)", + "2027-05-04": "Coronation Day", + "2027-05-20": "Visakha Bucha", + "2027-06-03": "HM Queen Suthida's Birthday", + "2027-07-18": "Asarnha Bucha", + "2027-07-19": "Buddhist Lent Day", + "2027-07-20": "Asarnha Bucha (in lieu)", + "2027-07-28": "HM King Maha Vajiralongkorn's Birthday", + "2027-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2027-08-18": "National Science Day", + "2027-09-28": "Thai National Flag Day", + "2027-10-13": "HM King Bhumibol Adulyadej the Great Memorial Day", + "2027-10-23": "HM King Chulalongkorn Memorial Day", + "2027-10-25": "HM King Chulalongkorn Memorial Day (in lieu)", + "2027-11-13": "Loy Krathong", + "2027-12-05": "HM King Bhumibol Adulyadej the Great's Birthday; National Day; National Father's Day", + "2027-12-06": "HM King Bhumibol Adulyadej the Great's Birthday (in lieu); National Day (in lieu); National Father's Day (in lieu)", + "2027-12-10": "Constitution Day", + "2027-12-31": "New Year's Eve", + "2028-01-01": "New Year's Day", + "2028-01-03": "New Year's Day (in lieu)", + "2028-01-08": "National Children's Day", + "2028-01-13": "National Aviation Day", + "2028-01-14": "National Forest Conservation Day", + "2028-01-16": "Teacher's Day", + "2028-01-17": "HM King Ramkamhaeng Memorial Day", + "2028-01-18": "Royal Thai Armed Forces Day", + "2028-02-03": "Thai Veterans Day", + "2028-02-10": "Makha Bucha", + "2028-02-26": "National Artist Day", + "2028-03-08": "International Women's Day", + "2028-04-06": "Chakri Memorial Day", + "2028-04-13": "Songkran Festival", + "2028-04-14": "Songkran Festival", + "2028-04-15": "Songkran Festival", + "2028-04-17": "Songkran Festival (in lieu)", + "2028-05-01": "National Labour Day", + "2028-05-04": "Coronation Day", + "2028-05-08": "Visakha Bucha", + "2028-06-03": "HM Queen Suthida's Birthday", + "2028-06-05": "HM Queen Suthida's Birthday (in lieu)", + "2028-07-06": "Asarnha Bucha", + "2028-07-07": "Buddhist Lent Day", + "2028-07-28": "HM King Maha Vajiralongkorn's Birthday", + "2028-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2028-08-14": "HM Queen Sirikit The Queen Mother's Birthday (in lieu); National Mother's Day (in lieu)", + "2028-08-18": "National Science Day", + "2028-09-28": "Thai National Flag Day", + "2028-10-13": "HM King Bhumibol Adulyadej the Great Memorial Day", + "2028-10-23": "HM King Chulalongkorn Memorial Day", + "2028-11-01": "Loy Krathong", + "2028-12-05": "HM King Bhumibol Adulyadej the Great's Birthday; National Day; National Father's Day", + "2028-12-10": "Constitution Day", + "2028-12-11": "Constitution Day (in lieu)", + "2028-12-31": "New Year's Eve", + "2029-01-01": "New Year's Day", + "2029-01-02": "New Year's Eve (in lieu)", + "2029-01-13": "National Aviation Day; National Children's Day", + "2029-01-14": "National Forest Conservation Day", + "2029-01-16": "Teacher's Day", + "2029-01-17": "HM King Ramkamhaeng Memorial Day", + "2029-01-18": "Royal Thai Armed Forces Day", + "2029-02-03": "Thai Veterans Day", + "2029-02-26": "National Artist Day", + "2029-02-27": "Makha Bucha", + "2029-03-08": "International Women's Day", + "2029-04-06": "Chakri Memorial Day", + "2029-04-13": "Songkran Festival", + "2029-04-14": "Songkran Festival", + "2029-04-15": "Songkran Festival", + "2029-04-16": "Songkran Festival (in lieu)", + "2029-05-01": "National Labour Day", + "2029-05-04": "Coronation Day", + "2029-05-27": "Visakha Bucha", + "2029-05-28": "Visakha Bucha (in lieu)", + "2029-06-03": "HM Queen Suthida's Birthday", + "2029-06-04": "HM Queen Suthida's Birthday (in lieu)", + "2029-07-25": "Asarnha Bucha", + "2029-07-26": "Buddhist Lent Day", + "2029-07-28": "HM King Maha Vajiralongkorn's Birthday", + "2029-07-30": "HM King Maha Vajiralongkorn's Birthday (in lieu)", + "2029-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2029-08-13": "HM Queen Sirikit The Queen Mother's Birthday (in lieu); National Mother's Day (in lieu)", + "2029-08-18": "National Science Day", + "2029-09-28": "Thai National Flag Day", + "2029-10-13": "HM King Bhumibol Adulyadej the Great Memorial Day", + "2029-10-15": "HM King Bhumibol Adulyadej the Great Memorial Day (in lieu)", + "2029-10-23": "HM King Chulalongkorn Memorial Day", + "2029-11-20": "Loy Krathong", + "2029-12-05": "HM King Bhumibol Adulyadej the Great's Birthday; National Day; National Father's Day", + "2029-12-10": "Constitution Day", + "2029-12-31": "New Year's Eve", + "2030-01-01": "New Year's Day", + "2030-01-12": "National Children's Day", + "2030-01-13": "National Aviation Day", + "2030-01-14": "National Forest Conservation Day", + "2030-01-16": "Teacher's Day", + "2030-01-17": "HM King Ramkamhaeng Memorial Day", + "2030-01-18": "Royal Thai Armed Forces Day", + "2030-02-03": "Thai Veterans Day", + "2030-02-17": "Makha Bucha", + "2030-02-18": "Makha Bucha (in lieu)", + "2030-02-26": "National Artist Day", + "2030-03-08": "International Women's Day", + "2030-04-06": "Chakri Memorial Day", + "2030-04-08": "Chakri Memorial Day (in lieu)", + "2030-04-13": "Songkran Festival", + "2030-04-14": "Songkran Festival", + "2030-04-15": "Songkran Festival", + "2030-04-16": "Songkran Festival (in lieu)", + "2030-05-01": "National Labour Day", + "2030-05-04": "Coronation Day", + "2030-05-06": "Coronation Day (in lieu)", + "2030-05-16": "Visakha Bucha", + "2030-06-03": "HM Queen Suthida's Birthday", + "2030-07-14": "Asarnha Bucha", + "2030-07-15": "Buddhist Lent Day", + "2030-07-16": "Asarnha Bucha (in lieu)", + "2030-07-28": "HM King Maha Vajiralongkorn's Birthday", + "2030-07-29": "HM King Maha Vajiralongkorn's Birthday (in lieu)", + "2030-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2030-08-18": "National Science Day", + "2030-09-28": "Thai National Flag Day", + "2030-10-13": "HM King Bhumibol Adulyadej the Great Memorial Day", + "2030-10-14": "HM King Bhumibol Adulyadej the Great Memorial Day (in lieu)", + "2030-10-23": "HM King Chulalongkorn Memorial Day", + "2030-11-09": "Loy Krathong", + "2030-12-05": "HM King Bhumibol Adulyadej the Great's Birthday; National Day; National Father's Day", + "2030-12-10": "Constitution Day", + "2030-12-31": "New Year's Eve", + "2031-01-01": "New Year's Day", + "2031-01-11": "National Children's Day", + "2031-01-13": "National Aviation Day", + "2031-01-14": "National Forest Conservation Day", + "2031-01-16": "Teacher's Day", + "2031-01-17": "HM King Ramkamhaeng Memorial Day", + "2031-01-18": "Royal Thai Armed Forces Day", + "2031-02-03": "Thai Veterans Day", + "2031-02-26": "National Artist Day", + "2031-03-07": "Makha Bucha", + "2031-03-08": "International Women's Day", + "2031-04-06": "Chakri Memorial Day", + "2031-04-07": "Chakri Memorial Day (in lieu)", + "2031-04-13": "Songkran Festival", + "2031-04-14": "Songkran Festival", + "2031-04-15": "Songkran Festival", + "2031-05-01": "National Labour Day", + "2031-05-04": "Coronation Day", + "2031-05-05": "Coronation Day (in lieu)", + "2031-06-03": "HM Queen Suthida's Birthday", + "2031-06-04": "Visakha Bucha", + "2031-07-28": "HM King Maha Vajiralongkorn's Birthday", + "2031-08-02": "Asarnha Bucha", + "2031-08-03": "Buddhist Lent Day", + "2031-08-04": "Asarnha Bucha (in lieu)", + "2031-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2031-08-18": "National Science Day", + "2031-09-28": "Thai National Flag Day", + "2031-10-13": "HM King Bhumibol Adulyadej the Great Memorial Day", + "2031-10-23": "HM King Chulalongkorn Memorial Day", + "2031-11-28": "Loy Krathong", + "2031-12-05": "HM King Bhumibol Adulyadej the Great's Birthday; National Day; National Father's Day", + "2031-12-10": "Constitution Day", + "2031-12-31": "New Year's Eve", + "2032-01-01": "New Year's Day", + "2032-01-10": "National Children's Day", + "2032-01-13": "National Aviation Day", + "2032-01-14": "National Forest Conservation Day", + "2032-01-16": "Teacher's Day", + "2032-01-17": "HM King Ramkamhaeng Memorial Day", + "2032-01-18": "Royal Thai Armed Forces Day", + "2032-02-03": "Thai Veterans Day", + "2032-02-25": "Makha Bucha", + "2032-02-26": "National Artist Day", + "2032-03-08": "International Women's Day", + "2032-04-06": "Chakri Memorial Day", + "2032-04-13": "Songkran Festival", + "2032-04-14": "Songkran Festival", + "2032-04-15": "Songkran Festival", + "2032-05-01": "National Labour Day", + "2032-05-03": "National Labour Day (in lieu)", + "2032-05-04": "Coronation Day", + "2032-05-23": "Visakha Bucha", + "2032-05-24": "Visakha Bucha (in lieu)", + "2032-06-03": "HM Queen Suthida's Birthday", + "2032-07-22": "Asarnha Bucha", + "2032-07-23": "Buddhist Lent Day", + "2032-07-28": "HM King Maha Vajiralongkorn's Birthday", + "2032-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2032-08-18": "National Science Day", + "2032-09-28": "Thai National Flag Day", + "2032-10-13": "HM King Bhumibol Adulyadej the Great Memorial Day", + "2032-10-23": "HM King Chulalongkorn Memorial Day", + "2032-10-25": "HM King Chulalongkorn Memorial Day (in lieu)", + "2032-11-17": "Loy Krathong", + "2032-12-05": "HM King Bhumibol Adulyadej the Great's Birthday; National Day; National Father's Day", + "2032-12-06": "HM King Bhumibol Adulyadej the Great's Birthday (in lieu); National Day (in lieu); National Father's Day (in lieu)", + "2032-12-10": "Constitution Day", + "2032-12-31": "New Year's Eve", + "2033-01-01": "New Year's Day", + "2033-01-03": "New Year's Day (in lieu)", + "2033-01-08": "National Children's Day", + "2033-01-13": "National Aviation Day", + "2033-01-14": "National Forest Conservation Day", + "2033-01-16": "Teacher's Day", + "2033-01-17": "HM King Ramkamhaeng Memorial Day", + "2033-01-18": "Royal Thai Armed Forces Day", + "2033-02-03": "Thai Veterans Day", + "2033-02-14": "Makha Bucha", + "2033-02-26": "National Artist Day", + "2033-03-08": "International Women's Day", + "2033-04-06": "Chakri Memorial Day", + "2033-04-13": "Songkran Festival", + "2033-04-14": "Songkran Festival", + "2033-04-15": "Songkran Festival", + "2033-05-01": "National Labour Day", + "2033-05-02": "National Labour Day (in lieu)", + "2033-05-04": "Coronation Day", + "2033-05-13": "Visakha Bucha", + "2033-06-03": "HM Queen Suthida's Birthday", + "2033-07-11": "Asarnha Bucha", + "2033-07-12": "Buddhist Lent Day", + "2033-07-28": "HM King Maha Vajiralongkorn's Birthday", + "2033-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2033-08-18": "National Science Day", + "2033-09-28": "Thai National Flag Day", + "2033-10-13": "HM King Bhumibol Adulyadej the Great Memorial Day", + "2033-10-23": "HM King Chulalongkorn Memorial Day", + "2033-10-24": "HM King Chulalongkorn Memorial Day (in lieu)", + "2033-11-06": "Loy Krathong", + "2033-12-05": "HM King Bhumibol Adulyadej the Great's Birthday; National Day; National Father's Day", + "2033-12-10": "Constitution Day", + "2033-12-12": "Constitution Day (in lieu)", + "2033-12-31": "New Year's Eve", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (in lieu)", + "2034-01-03": "New Year's Eve (in lieu)", + "2034-01-13": "National Aviation Day", + "2034-01-14": "National Children's Day; National Forest Conservation Day", + "2034-01-16": "Teacher's Day", + "2034-01-17": "HM King Ramkamhaeng Memorial Day", + "2034-01-18": "Royal Thai Armed Forces Day", + "2034-02-03": "Thai Veterans Day", + "2034-02-26": "National Artist Day", + "2034-03-04": "Makha Bucha", + "2034-03-06": "Makha Bucha (in lieu)", + "2034-03-08": "International Women's Day", + "2034-04-06": "Chakri Memorial Day", + "2034-04-13": "Songkran Festival", + "2034-04-14": "Songkran Festival", + "2034-04-15": "Songkran Festival", + "2034-04-17": "Songkran Festival (in lieu)", + "2034-05-01": "National Labour Day", + "2034-05-04": "Coronation Day", + "2034-06-01": "Visakha Bucha", + "2034-06-03": "HM Queen Suthida's Birthday", + "2034-06-05": "HM Queen Suthida's Birthday (in lieu)", + "2034-07-28": "HM King Maha Vajiralongkorn's Birthday", + "2034-07-30": "Asarnha Bucha", + "2034-07-31": "Buddhist Lent Day", + "2034-08-01": "Asarnha Bucha (in lieu)", + "2034-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2034-08-14": "HM Queen Sirikit The Queen Mother's Birthday (in lieu); National Mother's Day (in lieu)", + "2034-08-18": "National Science Day", + "2034-09-28": "Thai National Flag Day", + "2034-10-13": "HM King Bhumibol Adulyadej the Great Memorial Day", + "2034-10-23": "HM King Chulalongkorn Memorial Day", + "2034-11-25": "Loy Krathong", + "2034-12-05": "HM King Bhumibol Adulyadej the Great's Birthday; National Day; National Father's Day", + "2034-12-10": "Constitution Day", + "2034-12-11": "Constitution Day (in lieu)", + "2034-12-31": "New Year's Eve", + "2035-01-01": "New Year's Day", + "2035-01-02": "New Year's Eve (in lieu)", + "2035-01-13": "National Aviation Day; National Children's Day", + "2035-01-14": "National Forest Conservation Day", + "2035-01-16": "Teacher's Day", + "2035-01-17": "HM King Ramkamhaeng Memorial Day", + "2035-01-18": "Royal Thai Armed Forces Day", + "2035-02-03": "Thai Veterans Day", + "2035-02-22": "Makha Bucha", + "2035-02-26": "National Artist Day", + "2035-03-08": "International Women's Day", + "2035-04-06": "Chakri Memorial Day", + "2035-04-13": "Songkran Festival", + "2035-04-14": "Songkran Festival", + "2035-04-15": "Songkran Festival", + "2035-04-16": "Songkran Festival (in lieu)", + "2035-05-01": "National Labour Day", + "2035-05-04": "Coronation Day", + "2035-05-21": "Visakha Bucha", + "2035-06-03": "HM Queen Suthida's Birthday", + "2035-06-04": "HM Queen Suthida's Birthday (in lieu)", + "2035-07-20": "Asarnha Bucha", + "2035-07-21": "Buddhist Lent Day", + "2035-07-23": "Buddhist Lent Day (in lieu)", + "2035-07-28": "HM King Maha Vajiralongkorn's Birthday", + "2035-07-30": "HM King Maha Vajiralongkorn's Birthday (in lieu)", + "2035-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2035-08-13": "HM Queen Sirikit The Queen Mother's Birthday (in lieu); National Mother's Day (in lieu)", + "2035-08-18": "National Science Day", + "2035-09-28": "Thai National Flag Day", + "2035-10-13": "HM King Bhumibol Adulyadej the Great Memorial Day", + "2035-10-15": "HM King Bhumibol Adulyadej the Great Memorial Day (in lieu)", + "2035-10-23": "HM King Chulalongkorn Memorial Day", + "2035-11-15": "Loy Krathong", + "2035-12-05": "HM King Bhumibol Adulyadej the Great's Birthday; National Day; National Father's Day", + "2035-12-10": "Constitution Day", + "2035-12-31": "New Year's Eve", + "2036-01-01": "New Year's Day", + "2036-01-12": "National Children's Day", + "2036-01-13": "National Aviation Day", + "2036-01-14": "National Forest Conservation Day", + "2036-01-16": "Teacher's Day", + "2036-01-17": "HM King Ramkamhaeng Memorial Day", + "2036-01-18": "Royal Thai Armed Forces Day", + "2036-02-03": "Thai Veterans Day", + "2036-02-12": "Makha Bucha", + "2036-02-26": "National Artist Day", + "2036-03-08": "International Women's Day", + "2036-04-06": "Chakri Memorial Day", + "2036-04-07": "Chakri Memorial Day (in lieu)", + "2036-04-13": "Songkran Festival", + "2036-04-14": "Songkran Festival", + "2036-04-15": "Songkran Festival", + "2036-05-01": "National Labour Day", + "2036-05-04": "Coronation Day", + "2036-05-05": "Coronation Day (in lieu)", + "2036-05-10": "Visakha Bucha", + "2036-05-12": "Visakha Bucha (in lieu)", + "2036-06-03": "HM Queen Suthida's Birthday", + "2036-07-08": "Asarnha Bucha", + "2036-07-09": "Buddhist Lent Day", + "2036-07-28": "HM King Maha Vajiralongkorn's Birthday", + "2036-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2036-08-18": "National Science Day", + "2036-09-28": "Thai National Flag Day", + "2036-10-13": "HM King Bhumibol Adulyadej the Great Memorial Day", + "2036-10-23": "HM King Chulalongkorn Memorial Day", + "2036-11-03": "Loy Krathong", + "2036-12-05": "HM King Bhumibol Adulyadej the Great's Birthday; National Day; National Father's Day", + "2036-12-10": "Constitution Day", + "2036-12-31": "New Year's Eve", + "2037-01-01": "New Year's Day", + "2037-01-10": "National Children's Day", + "2037-01-13": "National Aviation Day", + "2037-01-14": "National Forest Conservation Day", + "2037-01-16": "Teacher's Day", + "2037-01-17": "HM King Ramkamhaeng Memorial Day", + "2037-01-18": "Royal Thai Armed Forces Day", + "2037-02-03": "Thai Veterans Day", + "2037-02-26": "National Artist Day", + "2037-03-01": "Makha Bucha", + "2037-03-02": "Makha Bucha (in lieu)", + "2037-03-08": "International Women's Day", + "2037-04-06": "Chakri Memorial Day", + "2037-04-13": "Songkran Festival", + "2037-04-14": "Songkran Festival", + "2037-04-15": "Songkran Festival", + "2037-05-01": "National Labour Day", + "2037-05-04": "Coronation Day", + "2037-05-29": "Visakha Bucha", + "2037-06-03": "HM Queen Suthida's Birthday", + "2037-07-27": "Asarnha Bucha", + "2037-07-28": "Buddhist Lent Day; HM King Maha Vajiralongkorn's Birthday", + "2037-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2037-08-18": "National Science Day", + "2037-09-28": "Thai National Flag Day", + "2037-10-13": "HM King Bhumibol Adulyadej the Great Memorial Day", + "2037-10-23": "HM King Chulalongkorn Memorial Day", + "2037-11-22": "Loy Krathong", + "2037-12-05": "HM King Bhumibol Adulyadej the Great's Birthday; National Day; National Father's Day", + "2037-12-07": "HM King Bhumibol Adulyadej the Great's Birthday (in lieu); National Day (in lieu); National Father's Day (in lieu)", + "2037-12-10": "Constitution Day", + "2037-12-31": "New Year's Eve", + "2038-01-01": "New Year's Day", + "2038-01-09": "National Children's Day", + "2038-01-13": "National Aviation Day", + "2038-01-14": "National Forest Conservation Day", + "2038-01-16": "Teacher's Day", + "2038-01-17": "HM King Ramkamhaeng Memorial Day", + "2038-01-18": "Royal Thai Armed Forces Day", + "2038-02-03": "Thai Veterans Day", + "2038-02-19": "Makha Bucha", + "2038-02-26": "National Artist Day", + "2038-03-08": "International Women's Day", + "2038-04-06": "Chakri Memorial Day", + "2038-04-13": "Songkran Festival", + "2038-04-14": "Songkran Festival", + "2038-04-15": "Songkran Festival", + "2038-05-01": "National Labour Day", + "2038-05-03": "National Labour Day (in lieu)", + "2038-05-04": "Coronation Day", + "2038-05-18": "Visakha Bucha", + "2038-06-03": "HM Queen Suthida's Birthday", + "2038-07-16": "Asarnha Bucha", + "2038-07-17": "Buddhist Lent Day", + "2038-07-19": "Buddhist Lent Day (in lieu)", + "2038-07-28": "HM King Maha Vajiralongkorn's Birthday", + "2038-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2038-08-18": "National Science Day", + "2038-09-28": "Thai National Flag Day", + "2038-10-13": "HM King Bhumibol Adulyadej the Great Memorial Day", + "2038-10-23": "HM King Chulalongkorn Memorial Day", + "2038-10-25": "HM King Chulalongkorn Memorial Day (in lieu)", + "2038-11-11": "Loy Krathong", + "2038-12-05": "HM King Bhumibol Adulyadej the Great's Birthday; National Day; National Father's Day", + "2038-12-06": "HM King Bhumibol Adulyadej the Great's Birthday (in lieu); National Day (in lieu); National Father's Day (in lieu)", + "2038-12-10": "Constitution Day", + "2038-12-31": "New Year's Eve", + "2039-01-01": "New Year's Day", + "2039-01-03": "New Year's Day (in lieu)", + "2039-01-08": "National Children's Day", + "2039-01-13": "National Aviation Day", + "2039-01-14": "National Forest Conservation Day", + "2039-01-16": "Teacher's Day", + "2039-01-17": "HM King Ramkamhaeng Memorial Day", + "2039-01-18": "Royal Thai Armed Forces Day", + "2039-02-03": "Thai Veterans Day", + "2039-02-08": "Makha Bucha", + "2039-02-26": "National Artist Day", + "2039-03-08": "International Women's Day", + "2039-04-06": "Chakri Memorial Day", + "2039-04-13": "Songkran Festival", + "2039-04-14": "Songkran Festival", + "2039-04-15": "Songkran Festival", + "2039-05-01": "National Labour Day", + "2039-05-02": "National Labour Day (in lieu)", + "2039-05-04": "Coronation Day", + "2039-05-07": "Visakha Bucha", + "2039-05-09": "Visakha Bucha (in lieu)", + "2039-06-03": "HM Queen Suthida's Birthday", + "2039-07-05": "Asarnha Bucha", + "2039-07-06": "Buddhist Lent Day", + "2039-07-28": "HM King Maha Vajiralongkorn's Birthday", + "2039-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2039-08-18": "National Science Day", + "2039-09-28": "Thai National Flag Day", + "2039-10-13": "HM King Bhumibol Adulyadej the Great Memorial Day", + "2039-10-23": "HM King Chulalongkorn Memorial Day", + "2039-10-24": "HM King Chulalongkorn Memorial Day (in lieu)", + "2039-10-31": "Loy Krathong", + "2039-12-05": "HM King Bhumibol Adulyadej the Great's Birthday; National Day; National Father's Day", + "2039-12-10": "Constitution Day", + "2039-12-12": "Constitution Day (in lieu)", + "2039-12-31": "New Year's Eve", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (in lieu)", + "2040-01-03": "New Year's Eve (in lieu)", + "2040-01-13": "National Aviation Day", + "2040-01-14": "National Children's Day; National Forest Conservation Day", + "2040-01-16": "Teacher's Day", + "2040-01-17": "HM King Ramkamhaeng Memorial Day", + "2040-01-18": "Royal Thai Armed Forces Day", + "2040-02-03": "Thai Veterans Day", + "2040-02-26": "Makha Bucha; National Artist Day", + "2040-02-27": "Makha Bucha (in lieu)", + "2040-03-08": "International Women's Day", + "2040-04-06": "Chakri Memorial Day", + "2040-04-13": "Songkran Festival", + "2040-04-14": "Songkran Festival", + "2040-04-15": "Songkran Festival", + "2040-04-16": "Songkran Festival (in lieu)", + "2040-05-01": "National Labour Day", + "2040-05-04": "Coronation Day", + "2040-05-25": "Visakha Bucha", + "2040-06-03": "HM Queen Suthida's Birthday", + "2040-06-04": "HM Queen Suthida's Birthday (in lieu)", + "2040-07-23": "Asarnha Bucha", + "2040-07-24": "Buddhist Lent Day", + "2040-07-28": "HM King Maha Vajiralongkorn's Birthday", + "2040-07-30": "HM King Maha Vajiralongkorn's Birthday (in lieu)", + "2040-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2040-08-13": "HM Queen Sirikit The Queen Mother's Birthday (in lieu); National Mother's Day (in lieu)", + "2040-08-18": "National Science Day", + "2040-09-28": "Thai National Flag Day", + "2040-10-13": "HM King Bhumibol Adulyadej the Great Memorial Day", + "2040-10-15": "HM King Bhumibol Adulyadej the Great Memorial Day (in lieu)", + "2040-10-23": "HM King Chulalongkorn Memorial Day", + "2040-11-18": "Loy Krathong", + "2040-12-05": "HM King Bhumibol Adulyadej the Great's Birthday; National Day; National Father's Day", + "2040-12-10": "Constitution Day", + "2040-12-31": "New Year's Eve", + "2041-01-01": "New Year's Day", + "2041-01-12": "National Children's Day", + "2041-01-13": "National Aviation Day", + "2041-01-14": "National Forest Conservation Day", + "2041-01-16": "Teacher's Day", + "2041-01-17": "HM King Ramkamhaeng Memorial Day", + "2041-01-18": "Royal Thai Armed Forces Day", + "2041-02-03": "Thai Veterans Day", + "2041-02-15": "Makha Bucha", + "2041-02-26": "National Artist Day", + "2041-03-08": "International Women's Day", + "2041-04-06": "Chakri Memorial Day", + "2041-04-08": "Chakri Memorial Day (in lieu)", + "2041-04-13": "Songkran Festival", + "2041-04-14": "Songkran Festival", + "2041-04-15": "Songkran Festival", + "2041-04-16": "Songkran Festival (in lieu)", + "2041-05-01": "National Labour Day", + "2041-05-04": "Coronation Day", + "2041-05-06": "Coronation Day (in lieu)", + "2041-05-14": "Visakha Bucha", + "2041-06-03": "HM Queen Suthida's Birthday", + "2041-07-12": "Asarnha Bucha", + "2041-07-13": "Buddhist Lent Day", + "2041-07-15": "Buddhist Lent Day (in lieu)", + "2041-07-28": "HM King Maha Vajiralongkorn's Birthday", + "2041-07-29": "HM King Maha Vajiralongkorn's Birthday (in lieu)", + "2041-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2041-08-18": "National Science Day", + "2041-09-28": "Thai National Flag Day", + "2041-10-13": "HM King Bhumibol Adulyadej the Great Memorial Day", + "2041-10-14": "HM King Bhumibol Adulyadej the Great Memorial Day (in lieu)", + "2041-10-23": "HM King Chulalongkorn Memorial Day", + "2041-11-07": "Loy Krathong", + "2041-12-05": "HM King Bhumibol Adulyadej the Great's Birthday; National Day; National Father's Day", + "2041-12-10": "Constitution Day", + "2041-12-31": "New Year's Eve", + "2042-01-01": "New Year's Day", + "2042-01-11": "National Children's Day", + "2042-01-13": "National Aviation Day", + "2042-01-14": "National Forest Conservation Day", + "2042-01-16": "Teacher's Day", + "2042-01-17": "HM King Ramkamhaeng Memorial Day", + "2042-01-18": "Royal Thai Armed Forces Day", + "2042-02-03": "Thai Veterans Day", + "2042-02-26": "National Artist Day", + "2042-03-05": "Makha Bucha", + "2042-03-08": "International Women's Day", + "2042-04-06": "Chakri Memorial Day", + "2042-04-07": "Chakri Memorial Day (in lieu)", + "2042-04-13": "Songkran Festival", + "2042-04-14": "Songkran Festival", + "2042-04-15": "Songkran Festival", + "2042-05-01": "National Labour Day", + "2042-05-04": "Coronation Day", + "2042-05-05": "Coronation Day (in lieu)", + "2042-06-02": "Visakha Bucha", + "2042-06-03": "HM Queen Suthida's Birthday", + "2042-07-28": "HM King Maha Vajiralongkorn's Birthday", + "2042-07-31": "Asarnha Bucha", + "2042-08-01": "Buddhist Lent Day", + "2042-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2042-08-18": "National Science Day", + "2042-09-28": "Thai National Flag Day", + "2042-10-13": "HM King Bhumibol Adulyadej the Great Memorial Day", + "2042-10-23": "HM King Chulalongkorn Memorial Day", + "2042-11-26": "Loy Krathong", + "2042-12-05": "HM King Bhumibol Adulyadej the Great's Birthday; National Day; National Father's Day", + "2042-12-10": "Constitution Day", + "2042-12-31": "New Year's Eve", + "2043-01-01": "New Year's Day", + "2043-01-10": "National Children's Day", + "2043-01-13": "National Aviation Day", + "2043-01-14": "National Forest Conservation Day", + "2043-01-16": "Teacher's Day", + "2043-01-17": "HM King Ramkamhaeng Memorial Day", + "2043-01-18": "Royal Thai Armed Forces Day", + "2043-02-03": "Thai Veterans Day", + "2043-02-23": "Makha Bucha", + "2043-02-26": "National Artist Day", + "2043-03-08": "International Women's Day", + "2043-04-06": "Chakri Memorial Day", + "2043-04-13": "Songkran Festival", + "2043-04-14": "Songkran Festival", + "2043-04-15": "Songkran Festival", + "2043-05-01": "National Labour Day", + "2043-05-04": "Coronation Day", + "2043-05-22": "Visakha Bucha", + "2043-06-03": "HM Queen Suthida's Birthday", + "2043-07-21": "Asarnha Bucha", + "2043-07-22": "Buddhist Lent Day", + "2043-07-28": "HM King Maha Vajiralongkorn's Birthday", + "2043-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2043-08-18": "National Science Day", + "2043-09-28": "Thai National Flag Day", + "2043-10-13": "HM King Bhumibol Adulyadej the Great Memorial Day", + "2043-10-23": "HM King Chulalongkorn Memorial Day", + "2043-11-16": "Loy Krathong", + "2043-12-05": "HM King Bhumibol Adulyadej the Great's Birthday; National Day; National Father's Day", + "2043-12-07": "HM King Bhumibol Adulyadej the Great's Birthday (in lieu); National Day (in lieu); National Father's Day (in lieu)", + "2043-12-10": "Constitution Day", + "2043-12-31": "New Year's Eve", + "2044-01-01": "New Year's Day", + "2044-01-09": "National Children's Day", + "2044-01-13": "National Aviation Day", + "2044-01-14": "National Forest Conservation Day", + "2044-01-16": "Teacher's Day", + "2044-01-17": "HM King Ramkamhaeng Memorial Day", + "2044-01-18": "Royal Thai Armed Forces Day", + "2044-02-03": "Thai Veterans Day", + "2044-02-13": "Makha Bucha", + "2044-02-15": "Makha Bucha (in lieu)", + "2044-02-26": "National Artist Day", + "2044-03-08": "International Women's Day", + "2044-04-06": "Chakri Memorial Day", + "2044-04-13": "Songkran Festival", + "2044-04-14": "Songkran Festival", + "2044-04-15": "Songkran Festival", + "2044-05-01": "National Labour Day", + "2044-05-02": "National Labour Day (in lieu)", + "2044-05-04": "Coronation Day", + "2044-05-11": "Visakha Bucha", + "2044-06-03": "HM Queen Suthida's Birthday", + "2044-07-09": "Asarnha Bucha", + "2044-07-10": "Buddhist Lent Day", + "2044-07-11": "Asarnha Bucha (in lieu)", + "2044-07-28": "HM King Maha Vajiralongkorn's Birthday", + "2044-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2044-08-18": "National Science Day", + "2044-09-28": "Thai National Flag Day", + "2044-10-13": "HM King Bhumibol Adulyadej the Great Memorial Day", + "2044-10-23": "HM King Chulalongkorn Memorial Day", + "2044-10-24": "HM King Chulalongkorn Memorial Day (in lieu)", + "2044-11-04": "Loy Krathong", + "2044-12-05": "HM King Bhumibol Adulyadej the Great's Birthday; National Day; National Father's Day", + "2044-12-10": "Constitution Day", + "2044-12-12": "Constitution Day (in lieu)", + "2044-12-31": "New Year's Eve", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (in lieu)", + "2045-01-03": "New Year's Eve (in lieu)", + "2045-01-13": "National Aviation Day", + "2045-01-14": "National Children's Day; National Forest Conservation Day", + "2045-01-16": "Teacher's Day", + "2045-01-17": "HM King Ramkamhaeng Memorial Day", + "2045-01-18": "Royal Thai Armed Forces Day", + "2045-02-03": "Thai Veterans Day", + "2045-02-26": "National Artist Day", + "2045-03-02": "Makha Bucha", + "2045-03-08": "International Women's Day", + "2045-04-06": "Chakri Memorial Day", + "2045-04-13": "Songkran Festival", + "2045-04-14": "Songkran Festival", + "2045-04-15": "Songkran Festival", + "2045-04-17": "Songkran Festival (in lieu)", + "2045-05-01": "National Labour Day", + "2045-05-04": "Coronation Day", + "2045-05-30": "Visakha Bucha", + "2045-06-03": "HM Queen Suthida's Birthday", + "2045-06-05": "HM Queen Suthida's Birthday (in lieu)", + "2045-07-28": "Asarnha Bucha; HM King Maha Vajiralongkorn's Birthday", + "2045-07-29": "Buddhist Lent Day", + "2045-07-31": "Buddhist Lent Day (in lieu)", + "2045-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2045-08-14": "HM Queen Sirikit The Queen Mother's Birthday (in lieu); National Mother's Day (in lieu)", + "2045-08-18": "National Science Day", + "2045-09-28": "Thai National Flag Day", + "2045-10-13": "HM King Bhumibol Adulyadej the Great Memorial Day", + "2045-10-23": "HM King Chulalongkorn Memorial Day", + "2045-11-23": "Loy Krathong", + "2045-12-05": "HM King Bhumibol Adulyadej the Great's Birthday; National Day; National Father's Day", + "2045-12-10": "Constitution Day", + "2045-12-11": "Constitution Day (in lieu)", + "2045-12-31": "New Year's Eve", + "2046-01-01": "New Year's Day", + "2046-01-02": "New Year's Eve (in lieu)", + "2046-01-13": "National Aviation Day; National Children's Day", + "2046-01-14": "National Forest Conservation Day", + "2046-01-16": "Teacher's Day", + "2046-01-17": "HM King Ramkamhaeng Memorial Day", + "2046-01-18": "Royal Thai Armed Forces Day", + "2046-02-03": "Thai Veterans Day", + "2046-02-20": "Makha Bucha", + "2046-02-26": "National Artist Day", + "2046-03-08": "International Women's Day", + "2046-04-06": "Chakri Memorial Day", + "2046-04-13": "Songkran Festival", + "2046-04-14": "Songkran Festival", + "2046-04-15": "Songkran Festival", + "2046-04-16": "Songkran Festival (in lieu)", + "2046-05-01": "National Labour Day", + "2046-05-04": "Coronation Day", + "2046-05-19": "Visakha Bucha", + "2046-05-21": "Visakha Bucha (in lieu)", + "2046-06-03": "HM Queen Suthida's Birthday", + "2046-06-04": "HM Queen Suthida's Birthday (in lieu)", + "2046-07-18": "Asarnha Bucha", + "2046-07-19": "Buddhist Lent Day", + "2046-07-28": "HM King Maha Vajiralongkorn's Birthday", + "2046-07-30": "HM King Maha Vajiralongkorn's Birthday (in lieu)", + "2046-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2046-08-13": "HM Queen Sirikit The Queen Mother's Birthday (in lieu); National Mother's Day (in lieu)", + "2046-08-18": "National Science Day", + "2046-09-28": "Thai National Flag Day", + "2046-10-13": "HM King Bhumibol Adulyadej the Great Memorial Day", + "2046-10-15": "HM King Bhumibol Adulyadej the Great Memorial Day (in lieu)", + "2046-10-23": "HM King Chulalongkorn Memorial Day", + "2046-11-13": "Loy Krathong", + "2046-12-05": "HM King Bhumibol Adulyadej the Great's Birthday; National Day; National Father's Day", + "2046-12-10": "Constitution Day", + "2046-12-31": "New Year's Eve", + "2047-01-01": "New Year's Day", + "2047-01-12": "National Children's Day", + "2047-01-13": "National Aviation Day", + "2047-01-14": "National Forest Conservation Day", + "2047-01-16": "Teacher's Day", + "2047-01-17": "HM King Ramkamhaeng Memorial Day", + "2047-01-18": "Royal Thai Armed Forces Day", + "2047-02-03": "Thai Veterans Day", + "2047-02-10": "Makha Bucha", + "2047-02-11": "Makha Bucha (in lieu)", + "2047-02-26": "National Artist Day", + "2047-03-08": "International Women's Day", + "2047-04-06": "Chakri Memorial Day", + "2047-04-08": "Chakri Memorial Day (in lieu)", + "2047-04-13": "Songkran Festival", + "2047-04-14": "Songkran Festival", + "2047-04-15": "Songkran Festival", + "2047-04-16": "Songkran Festival (in lieu)", + "2047-05-01": "National Labour Day", + "2047-05-04": "Coronation Day", + "2047-05-06": "Coronation Day (in lieu)", + "2047-05-09": "Visakha Bucha", + "2047-06-03": "HM Queen Suthida's Birthday", + "2047-07-07": "Asarnha Bucha", + "2047-07-08": "Buddhist Lent Day", + "2047-07-09": "Asarnha Bucha (in lieu)", + "2047-07-28": "HM King Maha Vajiralongkorn's Birthday", + "2047-07-29": "HM King Maha Vajiralongkorn's Birthday (in lieu)", + "2047-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2047-08-18": "National Science Day", + "2047-09-28": "Thai National Flag Day", + "2047-10-13": "HM King Bhumibol Adulyadej the Great Memorial Day", + "2047-10-14": "HM King Bhumibol Adulyadej the Great Memorial Day (in lieu)", + "2047-10-23": "HM King Chulalongkorn Memorial Day", + "2047-11-02": "Loy Krathong", + "2047-12-05": "HM King Bhumibol Adulyadej the Great's Birthday; National Day; National Father's Day", + "2047-12-10": "Constitution Day", + "2047-12-31": "New Year's Eve", + "2048-01-01": "New Year's Day", + "2048-01-11": "National Children's Day", + "2048-01-13": "National Aviation Day", + "2048-01-14": "National Forest Conservation Day", + "2048-01-16": "Teacher's Day", + "2048-01-17": "HM King Ramkamhaeng Memorial Day", + "2048-01-18": "Royal Thai Armed Forces Day", + "2048-02-03": "Thai Veterans Day", + "2048-02-26": "National Artist Day", + "2048-02-28": "Makha Bucha", + "2048-03-08": "International Women's Day", + "2048-04-06": "Chakri Memorial Day", + "2048-04-13": "Songkran Festival", + "2048-04-14": "Songkran Festival", + "2048-04-15": "Songkran Festival", + "2048-05-01": "National Labour Day", + "2048-05-04": "Coronation Day", + "2048-05-27": "Visakha Bucha", + "2048-06-03": "HM Queen Suthida's Birthday", + "2048-07-25": "Asarnha Bucha", + "2048-07-26": "Buddhist Lent Day", + "2048-07-27": "Asarnha Bucha (in lieu)", + "2048-07-28": "HM King Maha Vajiralongkorn's Birthday", + "2048-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2048-08-18": "National Science Day", + "2048-09-28": "Thai National Flag Day", + "2048-10-13": "HM King Bhumibol Adulyadej the Great Memorial Day", + "2048-10-23": "HM King Chulalongkorn Memorial Day", + "2048-11-20": "Loy Krathong", + "2048-12-05": "HM King Bhumibol Adulyadej the Great's Birthday; National Day; National Father's Day", + "2048-12-07": "HM King Bhumibol Adulyadej the Great's Birthday (in lieu); National Day (in lieu); National Father's Day (in lieu)", + "2048-12-10": "Constitution Day", + "2048-12-31": "New Year's Eve", + "2049-01-01": "New Year's Day", + "2049-01-09": "National Children's Day", + "2049-01-13": "National Aviation Day", + "2049-01-14": "National Forest Conservation Day", + "2049-01-16": "Teacher's Day", + "2049-01-17": "HM King Ramkamhaeng Memorial Day", + "2049-01-18": "Royal Thai Armed Forces Day", + "2049-02-03": "Thai Veterans Day", + "2049-02-17": "Makha Bucha", + "2049-02-26": "National Artist Day", + "2049-03-08": "International Women's Day", + "2049-04-06": "Chakri Memorial Day", + "2049-04-13": "Songkran Festival", + "2049-04-14": "Songkran Festival", + "2049-04-15": "Songkran Festival", + "2049-05-01": "National Labour Day", + "2049-05-03": "National Labour Day (in lieu)", + "2049-05-04": "Coronation Day", + "2049-05-16": "Visakha Bucha", + "2049-05-17": "Visakha Bucha (in lieu)", + "2049-06-03": "HM Queen Suthida's Birthday", + "2049-07-14": "Asarnha Bucha", + "2049-07-15": "Buddhist Lent Day", + "2049-07-28": "HM King Maha Vajiralongkorn's Birthday", + "2049-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2049-08-18": "National Science Day", + "2049-09-28": "Thai National Flag Day", + "2049-10-13": "HM King Bhumibol Adulyadej the Great Memorial Day", + "2049-10-23": "HM King Chulalongkorn Memorial Day", + "2049-10-25": "HM King Chulalongkorn Memorial Day (in lieu)", + "2049-11-09": "Loy Krathong", + "2049-12-05": "HM King Bhumibol Adulyadej the Great's Birthday; National Day; National Father's Day", + "2049-12-06": "HM King Bhumibol Adulyadej the Great's Birthday (in lieu); National Day (in lieu); National Father's Day (in lieu)", + "2049-12-10": "Constitution Day", + "2049-12-31": "New Year's Eve", + "2050-01-01": "New Year's Day", + "2050-01-03": "New Year's Day (in lieu)", + "2050-01-08": "National Children's Day", + "2050-01-13": "National Aviation Day", + "2050-01-14": "National Forest Conservation Day", + "2050-01-16": "Teacher's Day", + "2050-01-17": "HM King Ramkamhaeng Memorial Day", + "2050-01-18": "Royal Thai Armed Forces Day", + "2050-02-03": "Thai Veterans Day", + "2050-02-26": "National Artist Day", + "2050-03-07": "Makha Bucha", + "2050-03-08": "International Women's Day", + "2050-04-06": "Chakri Memorial Day", + "2050-04-13": "Songkran Festival", + "2050-04-14": "Songkran Festival", + "2050-04-15": "Songkran Festival", + "2050-05-01": "National Labour Day", + "2050-05-02": "National Labour Day (in lieu)", + "2050-05-04": "Coronation Day", + "2050-06-03": "HM Queen Suthida's Birthday", + "2050-06-04": "Visakha Bucha", + "2050-06-06": "Visakha Bucha (in lieu)", + "2050-07-28": "HM King Maha Vajiralongkorn's Birthday", + "2050-08-02": "Asarnha Bucha", + "2050-08-03": "Buddhist Lent Day", + "2050-08-12": "HM Queen Sirikit The Queen Mother's Birthday; National Mother's Day", + "2050-08-18": "National Science Day", + "2050-09-28": "Thai National Flag Day", + "2050-10-13": "HM King Bhumibol Adulyadej the Great Memorial Day", + "2050-10-23": "HM King Chulalongkorn Memorial Day", + "2050-10-24": "HM King Chulalongkorn Memorial Day (in lieu)", + "2050-11-28": "Loy Krathong", + "2050-12-05": "HM King Bhumibol Adulyadej the Great's Birthday; National Day; National Father's Day", + "2050-12-10": "Constitution Day", + "2050-12-12": "Constitution Day (in lieu)", + "2050-12-31": "New Year's Eve" +} diff --git a/snapshots/countries/TN.json b/snapshots/countries/TN.json new file mode 100644 index 000000000..e02c6893b --- /dev/null +++ b/snapshots/countries/TN.json @@ -0,0 +1,1726 @@ +{ + "1950-01-01": "New Year's Day; Prophet's Birthday* (*estimated)", + "1950-01-14": "Revolution and Youth Day", + "1950-03-20": "Independence Day", + "1950-04-09": "Martyrs' Day", + "1950-05-01": "Labor Day", + "1950-07-16": "Eid al-Fitr* (*estimated)", + "1950-07-17": "Eid al-Fitr Holiday* (*estimated)", + "1950-07-18": "Eid al-Fitr Holiday* (*estimated)", + "1950-07-25": "Republic Day", + "1950-08-13": "Women's Day", + "1950-09-22": "Arafat Day* (*estimated)", + "1950-09-23": "Eid al-Adha* (*estimated)", + "1950-09-24": "Eid al-Adha Holiday* (*estimated)", + "1950-09-25": "Eid al-Adha Holiday* (*estimated)", + "1950-10-13": "Islamic New Year* (*estimated)", + "1950-10-15": "Evacuation Day", + "1950-12-22": "Prophet's Birthday* (*estimated)", + "1951-01-01": "New Year's Day", + "1951-01-14": "Revolution and Youth Day", + "1951-03-20": "Independence Day", + "1951-04-09": "Martyrs' Day", + "1951-05-01": "Labor Day", + "1951-07-06": "Eid al-Fitr* (*estimated)", + "1951-07-07": "Eid al-Fitr Holiday* (*estimated)", + "1951-07-08": "Eid al-Fitr Holiday* (*estimated)", + "1951-07-25": "Republic Day", + "1951-08-13": "Women's Day", + "1951-09-11": "Arafat Day* (*estimated)", + "1951-09-12": "Eid al-Adha* (*estimated)", + "1951-09-13": "Eid al-Adha Holiday* (*estimated)", + "1951-09-14": "Eid al-Adha Holiday* (*estimated)", + "1951-10-02": "Islamic New Year* (*estimated)", + "1951-10-15": "Evacuation Day", + "1951-12-11": "Prophet's Birthday* (*estimated)", + "1952-01-01": "New Year's Day", + "1952-01-14": "Revolution and Youth Day", + "1952-03-20": "Independence Day", + "1952-04-09": "Martyrs' Day", + "1952-05-01": "Labor Day", + "1952-06-23": "Eid al-Fitr* (*estimated)", + "1952-06-24": "Eid al-Fitr Holiday* (*estimated)", + "1952-06-25": "Eid al-Fitr Holiday* (*estimated)", + "1952-07-25": "Republic Day", + "1952-08-13": "Women's Day", + "1952-08-30": "Arafat Day* (*estimated)", + "1952-08-31": "Eid al-Adha* (*estimated)", + "1952-09-01": "Eid al-Adha Holiday* (*estimated)", + "1952-09-02": "Eid al-Adha Holiday* (*estimated)", + "1952-09-21": "Islamic New Year* (*estimated)", + "1952-10-15": "Evacuation Day", + "1952-11-30": "Prophet's Birthday* (*estimated)", + "1953-01-01": "New Year's Day", + "1953-01-14": "Revolution and Youth Day", + "1953-03-20": "Independence Day", + "1953-04-09": "Martyrs' Day", + "1953-05-01": "Labor Day", + "1953-06-13": "Eid al-Fitr* (*estimated)", + "1953-06-14": "Eid al-Fitr Holiday* (*estimated)", + "1953-06-15": "Eid al-Fitr Holiday* (*estimated)", + "1953-07-25": "Republic Day", + "1953-08-13": "Women's Day", + "1953-08-19": "Arafat Day* (*estimated)", + "1953-08-20": "Eid al-Adha* (*estimated)", + "1953-08-21": "Eid al-Adha Holiday* (*estimated)", + "1953-08-22": "Eid al-Adha Holiday* (*estimated)", + "1953-09-10": "Islamic New Year* (*estimated)", + "1953-10-15": "Evacuation Day", + "1953-11-19": "Prophet's Birthday* (*estimated)", + "1954-01-01": "New Year's Day", + "1954-01-14": "Revolution and Youth Day", + "1954-03-20": "Independence Day", + "1954-04-09": "Martyrs' Day", + "1954-05-01": "Labor Day", + "1954-06-02": "Eid al-Fitr* (*estimated)", + "1954-06-03": "Eid al-Fitr Holiday* (*estimated)", + "1954-06-04": "Eid al-Fitr Holiday* (*estimated)", + "1954-07-25": "Republic Day", + "1954-08-08": "Arafat Day* (*estimated)", + "1954-08-09": "Eid al-Adha* (*estimated)", + "1954-08-10": "Eid al-Adha Holiday* (*estimated)", + "1954-08-11": "Eid al-Adha Holiday* (*estimated)", + "1954-08-13": "Women's Day", + "1954-08-30": "Islamic New Year* (*estimated)", + "1954-10-15": "Evacuation Day", + "1954-11-08": "Prophet's Birthday* (*estimated)", + "1955-01-01": "New Year's Day", + "1955-01-14": "Revolution and Youth Day", + "1955-03-20": "Independence Day", + "1955-04-09": "Martyrs' Day", + "1955-05-01": "Labor Day", + "1955-05-23": "Eid al-Fitr* (*estimated)", + "1955-05-24": "Eid al-Fitr Holiday* (*estimated)", + "1955-05-25": "Eid al-Fitr Holiday* (*estimated)", + "1955-07-25": "Republic Day", + "1955-07-29": "Arafat Day* (*estimated)", + "1955-07-30": "Eid al-Adha* (*estimated)", + "1955-07-31": "Eid al-Adha Holiday* (*estimated)", + "1955-08-01": "Eid al-Adha Holiday* (*estimated)", + "1955-08-13": "Women's Day", + "1955-08-20": "Islamic New Year* (*estimated)", + "1955-10-15": "Evacuation Day", + "1955-10-29": "Prophet's Birthday* (*estimated)", + "1956-01-01": "New Year's Day", + "1956-01-14": "Revolution and Youth Day", + "1956-03-20": "Independence Day", + "1956-04-09": "Martyrs' Day", + "1956-05-01": "Labor Day", + "1956-05-11": "Eid al-Fitr* (*estimated)", + "1956-05-12": "Eid al-Fitr Holiday* (*estimated)", + "1956-05-13": "Eid al-Fitr Holiday* (*estimated)", + "1956-07-18": "Arafat Day* (*estimated)", + "1956-07-19": "Eid al-Adha* (*estimated)", + "1956-07-20": "Eid al-Adha Holiday* (*estimated)", + "1956-07-21": "Eid al-Adha Holiday* (*estimated)", + "1956-07-25": "Republic Day", + "1956-08-08": "Islamic New Year* (*estimated)", + "1956-08-13": "Women's Day", + "1956-10-15": "Evacuation Day", + "1956-10-17": "Prophet's Birthday* (*estimated)", + "1957-01-01": "New Year's Day", + "1957-01-14": "Revolution and Youth Day", + "1957-03-20": "Independence Day", + "1957-04-09": "Martyrs' Day", + "1957-05-01": "Eid al-Fitr* (*estimated); Labor Day", + "1957-05-02": "Eid al-Fitr Holiday* (*estimated)", + "1957-05-03": "Eid al-Fitr Holiday* (*estimated)", + "1957-07-07": "Arafat Day* (*estimated)", + "1957-07-08": "Eid al-Adha* (*estimated)", + "1957-07-09": "Eid al-Adha Holiday* (*estimated)", + "1957-07-10": "Eid al-Adha Holiday* (*estimated)", + "1957-07-25": "Republic Day", + "1957-07-28": "Islamic New Year* (*estimated)", + "1957-08-13": "Women's Day", + "1957-10-06": "Prophet's Birthday* (*estimated)", + "1957-10-15": "Evacuation Day", + "1958-01-01": "New Year's Day", + "1958-01-14": "Revolution and Youth Day", + "1958-03-20": "Independence Day", + "1958-04-09": "Martyrs' Day", + "1958-04-20": "Eid al-Fitr* (*estimated)", + "1958-04-21": "Eid al-Fitr Holiday* (*estimated)", + "1958-04-22": "Eid al-Fitr Holiday* (*estimated)", + "1958-05-01": "Labor Day", + "1958-06-26": "Arafat Day* (*estimated)", + "1958-06-27": "Eid al-Adha* (*estimated)", + "1958-06-28": "Eid al-Adha Holiday* (*estimated)", + "1958-06-29": "Eid al-Adha Holiday* (*estimated)", + "1958-07-18": "Islamic New Year* (*estimated)", + "1958-07-25": "Republic Day", + "1958-08-13": "Women's Day", + "1958-09-26": "Prophet's Birthday* (*estimated)", + "1958-10-15": "Evacuation Day", + "1959-01-01": "New Year's Day", + "1959-01-14": "Revolution and Youth Day", + "1959-03-20": "Independence Day", + "1959-04-09": "Martyrs' Day", + "1959-04-10": "Eid al-Fitr* (*estimated)", + "1959-04-11": "Eid al-Fitr Holiday* (*estimated)", + "1959-04-12": "Eid al-Fitr Holiday* (*estimated)", + "1959-05-01": "Labor Day", + "1959-06-16": "Arafat Day* (*estimated)", + "1959-06-17": "Eid al-Adha* (*estimated)", + "1959-06-18": "Eid al-Adha Holiday* (*estimated)", + "1959-06-19": "Eid al-Adha Holiday* (*estimated)", + "1959-07-07": "Islamic New Year* (*estimated)", + "1959-07-25": "Republic Day", + "1959-08-13": "Women's Day", + "1959-09-15": "Prophet's Birthday* (*estimated)", + "1959-10-15": "Evacuation Day", + "1960-01-01": "New Year's Day", + "1960-01-14": "Revolution and Youth Day", + "1960-03-20": "Independence Day", + "1960-03-28": "Eid al-Fitr* (*estimated)", + "1960-03-29": "Eid al-Fitr Holiday* (*estimated)", + "1960-03-30": "Eid al-Fitr Holiday* (*estimated)", + "1960-04-09": "Martyrs' Day", + "1960-05-01": "Labor Day", + "1960-06-03": "Arafat Day* (*estimated)", + "1960-06-04": "Eid al-Adha* (*estimated)", + "1960-06-05": "Eid al-Adha Holiday* (*estimated)", + "1960-06-06": "Eid al-Adha Holiday* (*estimated)", + "1960-06-25": "Islamic New Year* (*estimated)", + "1960-07-25": "Republic Day", + "1960-08-13": "Women's Day", + "1960-09-03": "Prophet's Birthday* (*estimated)", + "1960-10-15": "Evacuation Day", + "1961-01-01": "New Year's Day", + "1961-01-14": "Revolution and Youth Day", + "1961-03-18": "Eid al-Fitr* (*estimated)", + "1961-03-19": "Eid al-Fitr Holiday* (*estimated)", + "1961-03-20": "Eid al-Fitr Holiday* (*estimated); Independence Day", + "1961-04-09": "Martyrs' Day", + "1961-05-01": "Labor Day", + "1961-05-24": "Arafat Day* (*estimated)", + "1961-05-25": "Eid al-Adha* (*estimated)", + "1961-05-26": "Eid al-Adha Holiday* (*estimated)", + "1961-05-27": "Eid al-Adha Holiday* (*estimated)", + "1961-06-14": "Islamic New Year* (*estimated)", + "1961-07-25": "Republic Day", + "1961-08-13": "Women's Day", + "1961-08-23": "Prophet's Birthday* (*estimated)", + "1961-10-15": "Evacuation Day", + "1962-01-01": "New Year's Day", + "1962-01-14": "Revolution and Youth Day", + "1962-03-07": "Eid al-Fitr* (*estimated)", + "1962-03-08": "Eid al-Fitr Holiday* (*estimated)", + "1962-03-09": "Eid al-Fitr Holiday* (*estimated)", + "1962-03-20": "Independence Day", + "1962-04-09": "Martyrs' Day", + "1962-05-01": "Labor Day", + "1962-05-13": "Arafat Day* (*estimated)", + "1962-05-14": "Eid al-Adha* (*estimated)", + "1962-05-15": "Eid al-Adha Holiday* (*estimated)", + "1962-05-16": "Eid al-Adha Holiday* (*estimated)", + "1962-06-03": "Islamic New Year* (*estimated)", + "1962-07-25": "Republic Day", + "1962-08-12": "Prophet's Birthday* (*estimated)", + "1962-08-13": "Women's Day", + "1962-10-15": "Evacuation Day", + "1963-01-01": "New Year's Day", + "1963-01-14": "Revolution and Youth Day", + "1963-02-24": "Eid al-Fitr* (*estimated)", + "1963-02-25": "Eid al-Fitr Holiday* (*estimated)", + "1963-02-26": "Eid al-Fitr Holiday* (*estimated)", + "1963-03-20": "Independence Day", + "1963-04-09": "Martyrs' Day", + "1963-05-01": "Labor Day", + "1963-05-02": "Arafat Day* (*estimated)", + "1963-05-03": "Eid al-Adha* (*estimated)", + "1963-05-04": "Eid al-Adha Holiday* (*estimated)", + "1963-05-05": "Eid al-Adha Holiday* (*estimated)", + "1963-05-24": "Islamic New Year* (*estimated)", + "1963-07-25": "Republic Day", + "1963-08-02": "Prophet's Birthday* (*estimated)", + "1963-08-13": "Women's Day", + "1963-10-15": "Evacuation Day", + "1964-01-01": "New Year's Day", + "1964-01-14": "Revolution and Youth Day", + "1964-02-14": "Eid al-Fitr* (*estimated)", + "1964-02-15": "Eid al-Fitr Holiday* (*estimated)", + "1964-02-16": "Eid al-Fitr Holiday* (*estimated)", + "1964-03-20": "Independence Day", + "1964-04-09": "Martyrs' Day", + "1964-04-21": "Arafat Day* (*estimated)", + "1964-04-22": "Eid al-Adha* (*estimated)", + "1964-04-23": "Eid al-Adha Holiday* (*estimated)", + "1964-04-24": "Eid al-Adha Holiday* (*estimated)", + "1964-05-01": "Labor Day", + "1964-05-12": "Islamic New Year* (*estimated)", + "1964-07-21": "Prophet's Birthday* (*estimated)", + "1964-07-25": "Republic Day", + "1964-08-13": "Women's Day", + "1964-10-15": "Evacuation Day", + "1965-01-01": "New Year's Day", + "1965-01-14": "Revolution and Youth Day", + "1965-02-02": "Eid al-Fitr* (*estimated)", + "1965-02-03": "Eid al-Fitr Holiday* (*estimated)", + "1965-02-04": "Eid al-Fitr Holiday* (*estimated)", + "1965-03-20": "Independence Day", + "1965-04-09": "Martyrs' Day", + "1965-04-10": "Arafat Day* (*estimated)", + "1965-04-11": "Eid al-Adha* (*estimated)", + "1965-04-12": "Eid al-Adha Holiday* (*estimated)", + "1965-04-13": "Eid al-Adha Holiday* (*estimated)", + "1965-05-01": "Islamic New Year* (*estimated); Labor Day", + "1965-07-10": "Prophet's Birthday* (*estimated)", + "1965-07-25": "Republic Day", + "1965-08-13": "Women's Day", + "1965-10-15": "Evacuation Day", + "1966-01-01": "New Year's Day", + "1966-01-14": "Revolution and Youth Day", + "1966-01-22": "Eid al-Fitr* (*estimated)", + "1966-01-23": "Eid al-Fitr Holiday* (*estimated)", + "1966-01-24": "Eid al-Fitr Holiday* (*estimated)", + "1966-03-20": "Independence Day", + "1966-03-31": "Arafat Day* (*estimated)", + "1966-04-01": "Eid al-Adha* (*estimated)", + "1966-04-02": "Eid al-Adha Holiday* (*estimated)", + "1966-04-03": "Eid al-Adha Holiday* (*estimated)", + "1966-04-09": "Martyrs' Day", + "1966-04-21": "Islamic New Year* (*estimated)", + "1966-05-01": "Labor Day", + "1966-07-01": "Prophet's Birthday* (*estimated)", + "1966-07-25": "Republic Day", + "1966-08-13": "Women's Day", + "1966-10-15": "Evacuation Day", + "1967-01-01": "New Year's Day", + "1967-01-12": "Eid al-Fitr* (*estimated)", + "1967-01-13": "Eid al-Fitr Holiday* (*estimated)", + "1967-01-14": "Eid al-Fitr Holiday* (*estimated); Revolution and Youth Day", + "1967-03-20": "Arafat Day* (*estimated); Independence Day", + "1967-03-21": "Eid al-Adha* (*estimated)", + "1967-03-22": "Eid al-Adha Holiday* (*estimated)", + "1967-03-23": "Eid al-Adha Holiday* (*estimated)", + "1967-04-09": "Martyrs' Day", + "1967-04-11": "Islamic New Year* (*estimated)", + "1967-05-01": "Labor Day", + "1967-06-19": "Prophet's Birthday* (*estimated)", + "1967-07-25": "Republic Day", + "1967-08-13": "Women's Day", + "1967-10-15": "Evacuation Day", + "1968-01-01": "Eid al-Fitr* (*estimated); New Year's Day", + "1968-01-02": "Eid al-Fitr Holiday* (*estimated)", + "1968-01-03": "Eid al-Fitr Holiday* (*estimated)", + "1968-01-14": "Revolution and Youth Day", + "1968-03-08": "Arafat Day* (*estimated)", + "1968-03-09": "Eid al-Adha* (*estimated)", + "1968-03-10": "Eid al-Adha Holiday* (*estimated)", + "1968-03-11": "Eid al-Adha Holiday* (*estimated)", + "1968-03-20": "Independence Day", + "1968-03-30": "Islamic New Year* (*estimated)", + "1968-04-09": "Martyrs' Day", + "1968-05-01": "Labor Day", + "1968-06-08": "Prophet's Birthday* (*estimated)", + "1968-07-25": "Republic Day", + "1968-08-13": "Women's Day", + "1968-10-15": "Evacuation Day", + "1968-12-21": "Eid al-Fitr* (*estimated)", + "1968-12-22": "Eid al-Fitr Holiday* (*estimated)", + "1968-12-23": "Eid al-Fitr Holiday* (*estimated)", + "1969-01-01": "New Year's Day", + "1969-01-14": "Revolution and Youth Day", + "1969-02-26": "Arafat Day* (*estimated)", + "1969-02-27": "Eid al-Adha* (*estimated)", + "1969-02-28": "Eid al-Adha Holiday* (*estimated)", + "1969-03-01": "Eid al-Adha Holiday* (*estimated)", + "1969-03-19": "Islamic New Year* (*estimated)", + "1969-03-20": "Independence Day", + "1969-04-09": "Martyrs' Day", + "1969-05-01": "Labor Day", + "1969-05-28": "Prophet's Birthday* (*estimated)", + "1969-07-25": "Republic Day", + "1969-08-13": "Women's Day", + "1969-10-15": "Evacuation Day", + "1969-12-10": "Eid al-Fitr* (*estimated)", + "1969-12-11": "Eid al-Fitr Holiday* (*estimated)", + "1969-12-12": "Eid al-Fitr Holiday* (*estimated)", + "1970-01-01": "New Year's Day", + "1970-01-14": "Revolution and Youth Day", + "1970-02-15": "Arafat Day* (*estimated)", + "1970-02-16": "Eid al-Adha* (*estimated)", + "1970-02-17": "Eid al-Adha Holiday* (*estimated)", + "1970-02-18": "Eid al-Adha Holiday* (*estimated)", + "1970-03-09": "Islamic New Year* (*estimated)", + "1970-03-20": "Independence Day", + "1970-04-09": "Martyrs' Day", + "1970-05-01": "Labor Day", + "1970-05-18": "Prophet's Birthday* (*estimated)", + "1970-07-25": "Republic Day", + "1970-08-13": "Women's Day", + "1970-10-15": "Evacuation Day", + "1970-11-30": "Eid al-Fitr* (*estimated)", + "1970-12-01": "Eid al-Fitr Holiday* (*estimated)", + "1970-12-02": "Eid al-Fitr Holiday* (*estimated)", + "1971-01-01": "New Year's Day", + "1971-01-14": "Revolution and Youth Day", + "1971-02-05": "Arafat Day* (*estimated)", + "1971-02-06": "Eid al-Adha* (*estimated)", + "1971-02-07": "Eid al-Adha Holiday* (*estimated)", + "1971-02-08": "Eid al-Adha Holiday* (*estimated)", + "1971-02-26": "Islamic New Year* (*estimated)", + "1971-03-20": "Independence Day", + "1971-04-09": "Martyrs' Day", + "1971-05-01": "Labor Day", + "1971-05-07": "Prophet's Birthday* (*estimated)", + "1971-07-25": "Republic Day", + "1971-08-13": "Women's Day", + "1971-10-15": "Evacuation Day", + "1971-11-19": "Eid al-Fitr* (*estimated)", + "1971-11-20": "Eid al-Fitr Holiday* (*estimated)", + "1971-11-21": "Eid al-Fitr Holiday* (*estimated)", + "1972-01-01": "New Year's Day", + "1972-01-14": "Revolution and Youth Day", + "1972-01-25": "Arafat Day* (*estimated)", + "1972-01-26": "Eid al-Adha* (*estimated)", + "1972-01-27": "Eid al-Adha Holiday* (*estimated)", + "1972-01-28": "Eid al-Adha Holiday* (*estimated)", + "1972-02-16": "Islamic New Year* (*estimated)", + "1972-03-20": "Independence Day", + "1972-04-09": "Martyrs' Day", + "1972-04-25": "Prophet's Birthday* (*estimated)", + "1972-05-01": "Labor Day", + "1972-07-25": "Republic Day", + "1972-08-13": "Women's Day", + "1972-10-15": "Evacuation Day", + "1972-11-07": "Eid al-Fitr* (*estimated)", + "1972-11-08": "Eid al-Fitr Holiday* (*estimated)", + "1972-11-09": "Eid al-Fitr Holiday* (*estimated)", + "1973-01-01": "New Year's Day", + "1973-01-13": "Arafat Day* (*estimated)", + "1973-01-14": "Eid al-Adha* (*estimated); Revolution and Youth Day", + "1973-01-15": "Eid al-Adha Holiday* (*estimated)", + "1973-01-16": "Eid al-Adha Holiday* (*estimated)", + "1973-02-04": "Islamic New Year* (*estimated)", + "1973-03-20": "Independence Day", + "1973-04-09": "Martyrs' Day", + "1973-04-15": "Prophet's Birthday* (*estimated)", + "1973-05-01": "Labor Day", + "1973-07-25": "Republic Day", + "1973-08-13": "Women's Day", + "1973-10-15": "Evacuation Day", + "1973-10-27": "Eid al-Fitr* (*estimated)", + "1973-10-28": "Eid al-Fitr Holiday* (*estimated)", + "1973-10-29": "Eid al-Fitr Holiday* (*estimated)", + "1974-01-01": "New Year's Day", + "1974-01-02": "Arafat Day* (*estimated)", + "1974-01-03": "Eid al-Adha* (*estimated)", + "1974-01-04": "Eid al-Adha Holiday* (*estimated)", + "1974-01-05": "Eid al-Adha Holiday* (*estimated)", + "1974-01-14": "Revolution and Youth Day", + "1974-01-24": "Islamic New Year* (*estimated)", + "1974-03-20": "Independence Day", + "1974-04-04": "Prophet's Birthday* (*estimated)", + "1974-04-09": "Martyrs' Day", + "1974-05-01": "Labor Day", + "1974-07-25": "Republic Day", + "1974-08-13": "Women's Day", + "1974-10-15": "Evacuation Day", + "1974-10-16": "Eid al-Fitr* (*estimated)", + "1974-10-17": "Eid al-Fitr Holiday* (*estimated)", + "1974-10-18": "Eid al-Fitr Holiday* (*estimated)", + "1974-12-23": "Arafat Day* (*estimated)", + "1974-12-24": "Eid al-Adha* (*estimated)", + "1974-12-25": "Eid al-Adha Holiday* (*estimated)", + "1974-12-26": "Eid al-Adha Holiday* (*estimated)", + "1975-01-01": "New Year's Day", + "1975-01-13": "Islamic New Year* (*estimated)", + "1975-01-14": "Revolution and Youth Day", + "1975-03-20": "Independence Day", + "1975-03-24": "Prophet's Birthday* (*estimated)", + "1975-04-09": "Martyrs' Day", + "1975-05-01": "Labor Day", + "1975-07-25": "Republic Day", + "1975-08-13": "Women's Day", + "1975-10-06": "Eid al-Fitr* (*estimated)", + "1975-10-07": "Eid al-Fitr Holiday* (*estimated)", + "1975-10-08": "Eid al-Fitr Holiday* (*estimated)", + "1975-10-15": "Evacuation Day", + "1975-12-12": "Arafat Day* (*estimated)", + "1975-12-13": "Eid al-Adha* (*estimated)", + "1975-12-14": "Eid al-Adha Holiday* (*estimated)", + "1975-12-15": "Eid al-Adha Holiday* (*estimated)", + "1976-01-01": "New Year's Day", + "1976-01-02": "Islamic New Year* (*estimated)", + "1976-01-14": "Revolution and Youth Day", + "1976-03-12": "Prophet's Birthday* (*estimated)", + "1976-03-20": "Independence Day", + "1976-04-09": "Martyrs' Day", + "1976-05-01": "Labor Day", + "1976-07-25": "Republic Day", + "1976-08-13": "Women's Day", + "1976-09-24": "Eid al-Fitr* (*estimated)", + "1976-09-25": "Eid al-Fitr Holiday* (*estimated)", + "1976-09-26": "Eid al-Fitr Holiday* (*estimated)", + "1976-10-15": "Evacuation Day", + "1976-11-30": "Arafat Day* (*estimated)", + "1976-12-01": "Eid al-Adha* (*estimated)", + "1976-12-02": "Eid al-Adha Holiday* (*estimated)", + "1976-12-03": "Eid al-Adha Holiday* (*estimated)", + "1976-12-22": "Islamic New Year* (*estimated)", + "1977-01-01": "New Year's Day", + "1977-01-14": "Revolution and Youth Day", + "1977-03-02": "Prophet's Birthday* (*estimated)", + "1977-03-20": "Independence Day", + "1977-04-09": "Martyrs' Day", + "1977-05-01": "Labor Day", + "1977-07-25": "Republic Day", + "1977-08-13": "Women's Day", + "1977-09-14": "Eid al-Fitr* (*estimated)", + "1977-09-15": "Eid al-Fitr Holiday* (*estimated)", + "1977-09-16": "Eid al-Fitr Holiday* (*estimated)", + "1977-10-15": "Evacuation Day", + "1977-11-20": "Arafat Day* (*estimated)", + "1977-11-21": "Eid al-Adha* (*estimated)", + "1977-11-22": "Eid al-Adha Holiday* (*estimated)", + "1977-11-23": "Eid al-Adha Holiday* (*estimated)", + "1977-12-11": "Islamic New Year* (*estimated)", + "1978-01-01": "New Year's Day", + "1978-01-14": "Revolution and Youth Day", + "1978-02-19": "Prophet's Birthday* (*estimated)", + "1978-03-20": "Independence Day", + "1978-04-09": "Martyrs' Day", + "1978-05-01": "Labor Day", + "1978-07-25": "Republic Day", + "1978-08-13": "Women's Day", + "1978-09-03": "Eid al-Fitr* (*estimated)", + "1978-09-04": "Eid al-Fitr Holiday* (*estimated)", + "1978-09-05": "Eid al-Fitr Holiday* (*estimated)", + "1978-10-15": "Evacuation Day", + "1978-11-09": "Arafat Day* (*estimated)", + "1978-11-10": "Eid al-Adha* (*estimated)", + "1978-11-11": "Eid al-Adha Holiday* (*estimated)", + "1978-11-12": "Eid al-Adha Holiday* (*estimated)", + "1978-12-01": "Islamic New Year* (*estimated)", + "1979-01-01": "New Year's Day", + "1979-01-14": "Revolution and Youth Day", + "1979-02-09": "Prophet's Birthday* (*estimated)", + "1979-03-20": "Independence Day", + "1979-04-09": "Martyrs' Day", + "1979-05-01": "Labor Day", + "1979-07-25": "Republic Day", + "1979-08-13": "Women's Day", + "1979-08-23": "Eid al-Fitr* (*estimated)", + "1979-08-24": "Eid al-Fitr Holiday* (*estimated)", + "1979-08-25": "Eid al-Fitr Holiday* (*estimated)", + "1979-10-15": "Evacuation Day", + "1979-10-30": "Arafat Day* (*estimated)", + "1979-10-31": "Eid al-Adha* (*estimated)", + "1979-11-01": "Eid al-Adha Holiday* (*estimated)", + "1979-11-02": "Eid al-Adha Holiday* (*estimated)", + "1979-11-20": "Islamic New Year* (*estimated)", + "1980-01-01": "New Year's Day", + "1980-01-14": "Revolution and Youth Day", + "1980-01-30": "Prophet's Birthday* (*estimated)", + "1980-03-20": "Independence Day", + "1980-04-09": "Martyrs' Day", + "1980-05-01": "Labor Day", + "1980-07-25": "Republic Day", + "1980-08-12": "Eid al-Fitr* (*estimated)", + "1980-08-13": "Eid al-Fitr Holiday* (*estimated); Women's Day", + "1980-08-14": "Eid al-Fitr Holiday* (*estimated)", + "1980-10-15": "Evacuation Day", + "1980-10-18": "Arafat Day* (*estimated)", + "1980-10-19": "Eid al-Adha* (*estimated)", + "1980-10-20": "Eid al-Adha Holiday* (*estimated)", + "1980-10-21": "Eid al-Adha Holiday* (*estimated)", + "1980-11-09": "Islamic New Year* (*estimated)", + "1981-01-01": "New Year's Day", + "1981-01-14": "Revolution and Youth Day", + "1981-01-18": "Prophet's Birthday* (*estimated)", + "1981-03-20": "Independence Day", + "1981-04-09": "Martyrs' Day", + "1981-05-01": "Labor Day", + "1981-07-25": "Republic Day", + "1981-08-01": "Eid al-Fitr* (*estimated)", + "1981-08-02": "Eid al-Fitr Holiday* (*estimated)", + "1981-08-03": "Eid al-Fitr Holiday* (*estimated)", + "1981-08-13": "Women's Day", + "1981-10-07": "Arafat Day* (*estimated)", + "1981-10-08": "Eid al-Adha* (*estimated)", + "1981-10-09": "Eid al-Adha Holiday* (*estimated)", + "1981-10-10": "Eid al-Adha Holiday* (*estimated)", + "1981-10-15": "Evacuation Day", + "1981-10-28": "Islamic New Year* (*estimated)", + "1982-01-01": "New Year's Day", + "1982-01-07": "Prophet's Birthday* (*estimated)", + "1982-01-14": "Revolution and Youth Day", + "1982-03-20": "Independence Day", + "1982-04-09": "Martyrs' Day", + "1982-05-01": "Labor Day", + "1982-07-21": "Eid al-Fitr* (*estimated)", + "1982-07-22": "Eid al-Fitr Holiday* (*estimated)", + "1982-07-23": "Eid al-Fitr Holiday* (*estimated)", + "1982-07-25": "Republic Day", + "1982-08-13": "Women's Day", + "1982-09-26": "Arafat Day* (*estimated)", + "1982-09-27": "Eid al-Adha* (*estimated)", + "1982-09-28": "Eid al-Adha Holiday* (*estimated)", + "1982-09-29": "Eid al-Adha Holiday* (*estimated)", + "1982-10-15": "Evacuation Day", + "1982-10-18": "Islamic New Year* (*estimated)", + "1982-12-27": "Prophet's Birthday* (*estimated)", + "1983-01-01": "New Year's Day", + "1983-01-14": "Revolution and Youth Day", + "1983-03-20": "Independence Day", + "1983-04-09": "Martyrs' Day", + "1983-05-01": "Labor Day", + "1983-07-11": "Eid al-Fitr* (*estimated)", + "1983-07-12": "Eid al-Fitr Holiday* (*estimated)", + "1983-07-13": "Eid al-Fitr Holiday* (*estimated)", + "1983-07-25": "Republic Day", + "1983-08-13": "Women's Day", + "1983-09-16": "Arafat Day* (*estimated)", + "1983-09-17": "Eid al-Adha* (*estimated)", + "1983-09-18": "Eid al-Adha Holiday* (*estimated)", + "1983-09-19": "Eid al-Adha Holiday* (*estimated)", + "1983-10-07": "Islamic New Year* (*estimated)", + "1983-10-15": "Evacuation Day", + "1983-12-16": "Prophet's Birthday* (*estimated)", + "1984-01-01": "New Year's Day", + "1984-01-14": "Revolution and Youth Day", + "1984-03-20": "Independence Day", + "1984-04-09": "Martyrs' Day", + "1984-05-01": "Labor Day", + "1984-06-30": "Eid al-Fitr* (*estimated)", + "1984-07-01": "Eid al-Fitr Holiday* (*estimated)", + "1984-07-02": "Eid al-Fitr Holiday* (*estimated)", + "1984-07-25": "Republic Day", + "1984-08-13": "Women's Day", + "1984-09-04": "Arafat Day* (*estimated)", + "1984-09-05": "Eid al-Adha* (*estimated)", + "1984-09-06": "Eid al-Adha Holiday* (*estimated)", + "1984-09-07": "Eid al-Adha Holiday* (*estimated)", + "1984-09-26": "Islamic New Year* (*estimated)", + "1984-10-15": "Evacuation Day", + "1984-12-04": "Prophet's Birthday* (*estimated)", + "1985-01-01": "New Year's Day", + "1985-01-14": "Revolution and Youth Day", + "1985-03-20": "Independence Day", + "1985-04-09": "Martyrs' Day", + "1985-05-01": "Labor Day", + "1985-06-19": "Eid al-Fitr* (*estimated)", + "1985-06-20": "Eid al-Fitr Holiday* (*estimated)", + "1985-06-21": "Eid al-Fitr Holiday* (*estimated)", + "1985-07-25": "Republic Day", + "1985-08-13": "Women's Day", + "1985-08-25": "Arafat Day* (*estimated)", + "1985-08-26": "Eid al-Adha* (*estimated)", + "1985-08-27": "Eid al-Adha Holiday* (*estimated)", + "1985-08-28": "Eid al-Adha Holiday* (*estimated)", + "1985-09-15": "Islamic New Year* (*estimated)", + "1985-10-15": "Evacuation Day", + "1985-11-24": "Prophet's Birthday* (*estimated)", + "1986-01-01": "New Year's Day", + "1986-01-14": "Revolution and Youth Day", + "1986-03-20": "Independence Day", + "1986-04-09": "Martyrs' Day", + "1986-05-01": "Labor Day", + "1986-06-08": "Eid al-Fitr* (*estimated)", + "1986-06-09": "Eid al-Fitr Holiday* (*estimated)", + "1986-06-10": "Eid al-Fitr Holiday* (*estimated)", + "1986-07-25": "Republic Day", + "1986-08-13": "Women's Day", + "1986-08-14": "Arafat Day* (*estimated)", + "1986-08-15": "Eid al-Adha* (*estimated)", + "1986-08-16": "Eid al-Adha Holiday* (*estimated)", + "1986-08-17": "Eid al-Adha Holiday* (*estimated)", + "1986-09-05": "Islamic New Year* (*estimated)", + "1986-10-15": "Evacuation Day", + "1986-11-14": "Prophet's Birthday* (*estimated)", + "1987-01-01": "New Year's Day", + "1987-01-14": "Revolution and Youth Day", + "1987-03-20": "Independence Day", + "1987-04-09": "Martyrs' Day", + "1987-05-01": "Labor Day", + "1987-05-28": "Eid al-Fitr* (*estimated)", + "1987-05-29": "Eid al-Fitr Holiday* (*estimated)", + "1987-05-30": "Eid al-Fitr Holiday* (*estimated)", + "1987-07-25": "Republic Day", + "1987-08-03": "Arafat Day* (*estimated)", + "1987-08-04": "Eid al-Adha* (*estimated)", + "1987-08-05": "Eid al-Adha Holiday* (*estimated)", + "1987-08-06": "Eid al-Adha Holiday* (*estimated)", + "1987-08-13": "Women's Day", + "1987-08-25": "Islamic New Year* (*estimated)", + "1987-10-15": "Evacuation Day", + "1987-11-03": "Prophet's Birthday* (*estimated)", + "1988-01-01": "New Year's Day", + "1988-01-14": "Revolution and Youth Day", + "1988-03-20": "Independence Day", + "1988-04-09": "Martyrs' Day", + "1988-05-01": "Labor Day", + "1988-05-16": "Eid al-Fitr* (*estimated)", + "1988-05-17": "Eid al-Fitr Holiday* (*estimated)", + "1988-05-18": "Eid al-Fitr Holiday* (*estimated)", + "1988-07-22": "Arafat Day* (*estimated)", + "1988-07-23": "Eid al-Adha* (*estimated)", + "1988-07-24": "Eid al-Adha Holiday* (*estimated)", + "1988-07-25": "Eid al-Adha Holiday* (*estimated); Republic Day", + "1988-08-13": "Islamic New Year* (*estimated); Women's Day", + "1988-10-15": "Evacuation Day", + "1988-10-22": "Prophet's Birthday* (*estimated)", + "1989-01-01": "New Year's Day", + "1989-01-14": "Revolution and Youth Day", + "1989-03-20": "Independence Day", + "1989-04-09": "Martyrs' Day", + "1989-05-01": "Labor Day", + "1989-05-06": "Eid al-Fitr* (*estimated)", + "1989-05-07": "Eid al-Fitr Holiday* (*estimated)", + "1989-05-08": "Eid al-Fitr Holiday* (*estimated)", + "1989-07-12": "Arafat Day* (*estimated)", + "1989-07-13": "Eid al-Adha* (*estimated)", + "1989-07-14": "Eid al-Adha Holiday* (*estimated)", + "1989-07-15": "Eid al-Adha Holiday* (*estimated)", + "1989-07-25": "Republic Day", + "1989-08-02": "Islamic New Year* (*estimated)", + "1989-08-13": "Women's Day", + "1989-10-11": "Prophet's Birthday* (*estimated)", + "1989-10-15": "Evacuation Day", + "1990-01-01": "New Year's Day", + "1990-01-14": "Revolution and Youth Day", + "1990-03-20": "Independence Day", + "1990-04-09": "Martyrs' Day", + "1990-04-26": "Eid al-Fitr* (*estimated)", + "1990-04-27": "Eid al-Fitr Holiday* (*estimated)", + "1990-04-28": "Eid al-Fitr Holiday* (*estimated)", + "1990-05-01": "Labor Day", + "1990-07-01": "Arafat Day* (*estimated)", + "1990-07-02": "Eid al-Adha* (*estimated)", + "1990-07-03": "Eid al-Adha Holiday* (*estimated)", + "1990-07-04": "Eid al-Adha Holiday* (*estimated)", + "1990-07-23": "Islamic New Year* (*estimated)", + "1990-07-25": "Republic Day", + "1990-08-13": "Women's Day", + "1990-10-01": "Prophet's Birthday* (*estimated)", + "1990-10-15": "Evacuation Day", + "1991-01-01": "New Year's Day", + "1991-01-14": "Revolution and Youth Day", + "1991-03-20": "Independence Day", + "1991-04-09": "Martyrs' Day", + "1991-04-15": "Eid al-Fitr* (*estimated)", + "1991-04-16": "Eid al-Fitr Holiday* (*estimated)", + "1991-04-17": "Eid al-Fitr Holiday* (*estimated)", + "1991-05-01": "Labor Day", + "1991-06-21": "Arafat Day* (*estimated)", + "1991-06-22": "Eid al-Adha* (*estimated)", + "1991-06-23": "Eid al-Adha Holiday* (*estimated)", + "1991-06-24": "Eid al-Adha Holiday* (*estimated)", + "1991-07-12": "Islamic New Year* (*estimated)", + "1991-07-25": "Republic Day", + "1991-08-13": "Women's Day", + "1991-09-20": "Prophet's Birthday* (*estimated)", + "1991-10-15": "Evacuation Day", + "1992-01-01": "New Year's Day", + "1992-01-14": "Revolution and Youth Day", + "1992-03-20": "Independence Day", + "1992-04-04": "Eid al-Fitr* (*estimated)", + "1992-04-05": "Eid al-Fitr Holiday* (*estimated)", + "1992-04-06": "Eid al-Fitr Holiday* (*estimated)", + "1992-04-09": "Martyrs' Day", + "1992-05-01": "Labor Day", + "1992-06-10": "Arafat Day* (*estimated)", + "1992-06-11": "Eid al-Adha* (*estimated)", + "1992-06-12": "Eid al-Adha Holiday* (*estimated)", + "1992-06-13": "Eid al-Adha Holiday* (*estimated)", + "1992-07-01": "Islamic New Year* (*estimated)", + "1992-07-25": "Republic Day", + "1992-08-13": "Women's Day", + "1992-09-09": "Prophet's Birthday* (*estimated)", + "1992-10-15": "Evacuation Day", + "1993-01-01": "New Year's Day", + "1993-01-14": "Revolution and Youth Day", + "1993-03-20": "Independence Day", + "1993-03-24": "Eid al-Fitr* (*estimated)", + "1993-03-25": "Eid al-Fitr Holiday* (*estimated)", + "1993-03-26": "Eid al-Fitr Holiday* (*estimated)", + "1993-04-09": "Martyrs' Day", + "1993-05-01": "Labor Day", + "1993-05-30": "Arafat Day* (*estimated)", + "1993-05-31": "Eid al-Adha* (*estimated)", + "1993-06-01": "Eid al-Adha Holiday* (*estimated)", + "1993-06-02": "Eid al-Adha Holiday* (*estimated)", + "1993-06-21": "Islamic New Year* (*estimated)", + "1993-07-25": "Republic Day", + "1993-08-13": "Women's Day", + "1993-08-29": "Prophet's Birthday* (*estimated)", + "1993-10-15": "Evacuation Day", + "1994-01-01": "New Year's Day", + "1994-01-14": "Revolution and Youth Day", + "1994-03-13": "Eid al-Fitr* (*estimated)", + "1994-03-14": "Eid al-Fitr Holiday* (*estimated)", + "1994-03-15": "Eid al-Fitr Holiday* (*estimated)", + "1994-03-20": "Independence Day", + "1994-04-09": "Martyrs' Day", + "1994-05-01": "Labor Day", + "1994-05-19": "Arafat Day* (*estimated)", + "1994-05-20": "Eid al-Adha* (*estimated)", + "1994-05-21": "Eid al-Adha Holiday* (*estimated)", + "1994-05-22": "Eid al-Adha Holiday* (*estimated)", + "1994-06-10": "Islamic New Year* (*estimated)", + "1994-07-25": "Republic Day", + "1994-08-13": "Women's Day", + "1994-08-19": "Prophet's Birthday* (*estimated)", + "1994-10-15": "Evacuation Day", + "1995-01-01": "New Year's Day", + "1995-01-14": "Revolution and Youth Day", + "1995-03-02": "Eid al-Fitr* (*estimated)", + "1995-03-03": "Eid al-Fitr Holiday* (*estimated)", + "1995-03-04": "Eid al-Fitr Holiday* (*estimated)", + "1995-03-20": "Independence Day", + "1995-04-09": "Martyrs' Day", + "1995-05-01": "Labor Day", + "1995-05-08": "Arafat Day* (*estimated)", + "1995-05-09": "Eid al-Adha* (*estimated)", + "1995-05-10": "Eid al-Adha Holiday* (*estimated)", + "1995-05-11": "Eid al-Adha Holiday* (*estimated)", + "1995-05-30": "Islamic New Year* (*estimated)", + "1995-07-25": "Republic Day", + "1995-08-08": "Prophet's Birthday* (*estimated)", + "1995-08-13": "Women's Day", + "1995-10-15": "Evacuation Day", + "1996-01-01": "New Year's Day", + "1996-01-14": "Revolution and Youth Day", + "1996-02-19": "Eid al-Fitr* (*estimated)", + "1996-02-20": "Eid al-Fitr Holiday* (*estimated)", + "1996-02-21": "Eid al-Fitr Holiday* (*estimated)", + "1996-03-20": "Independence Day", + "1996-04-09": "Martyrs' Day", + "1996-04-26": "Arafat Day* (*estimated)", + "1996-04-27": "Eid al-Adha* (*estimated)", + "1996-04-28": "Eid al-Adha Holiday* (*estimated)", + "1996-04-29": "Eid al-Adha Holiday* (*estimated)", + "1996-05-01": "Labor Day", + "1996-05-18": "Islamic New Year* (*estimated)", + "1996-07-25": "Republic Day", + "1996-07-27": "Prophet's Birthday* (*estimated)", + "1996-08-13": "Women's Day", + "1996-10-15": "Evacuation Day", + "1997-01-01": "New Year's Day", + "1997-01-14": "Revolution and Youth Day", + "1997-02-08": "Eid al-Fitr* (*estimated)", + "1997-02-09": "Eid al-Fitr Holiday* (*estimated)", + "1997-02-10": "Eid al-Fitr Holiday* (*estimated)", + "1997-03-20": "Independence Day", + "1997-04-09": "Martyrs' Day", + "1997-04-16": "Arafat Day* (*estimated)", + "1997-04-17": "Eid al-Adha* (*estimated)", + "1997-04-18": "Eid al-Adha Holiday* (*estimated)", + "1997-04-19": "Eid al-Adha Holiday* (*estimated)", + "1997-05-01": "Labor Day", + "1997-05-07": "Islamic New Year* (*estimated)", + "1997-07-16": "Prophet's Birthday* (*estimated)", + "1997-07-25": "Republic Day", + "1997-08-13": "Women's Day", + "1997-10-15": "Evacuation Day", + "1998-01-01": "New Year's Day", + "1998-01-14": "Revolution and Youth Day", + "1998-01-29": "Eid al-Fitr* (*estimated)", + "1998-01-30": "Eid al-Fitr Holiday* (*estimated)", + "1998-01-31": "Eid al-Fitr Holiday* (*estimated)", + "1998-03-20": "Independence Day", + "1998-04-06": "Arafat Day* (*estimated)", + "1998-04-07": "Eid al-Adha* (*estimated)", + "1998-04-08": "Eid al-Adha Holiday* (*estimated)", + "1998-04-09": "Eid al-Adha Holiday* (*estimated); Martyrs' Day", + "1998-04-27": "Islamic New Year* (*estimated)", + "1998-05-01": "Labor Day", + "1998-07-06": "Prophet's Birthday* (*estimated)", + "1998-07-25": "Republic Day", + "1998-08-13": "Women's Day", + "1998-10-15": "Evacuation Day", + "1999-01-01": "New Year's Day", + "1999-01-14": "Revolution and Youth Day", + "1999-01-18": "Eid al-Fitr* (*estimated)", + "1999-01-19": "Eid al-Fitr Holiday* (*estimated)", + "1999-01-20": "Eid al-Fitr Holiday* (*estimated)", + "1999-03-20": "Independence Day", + "1999-03-26": "Arafat Day* (*estimated)", + "1999-03-27": "Eid al-Adha* (*estimated)", + "1999-03-28": "Eid al-Adha Holiday* (*estimated)", + "1999-03-29": "Eid al-Adha Holiday* (*estimated)", + "1999-04-09": "Martyrs' Day", + "1999-04-17": "Islamic New Year* (*estimated)", + "1999-05-01": "Labor Day", + "1999-06-26": "Prophet's Birthday* (*estimated)", + "1999-07-25": "Republic Day", + "1999-08-13": "Women's Day", + "1999-10-15": "Evacuation Day", + "2000-01-01": "New Year's Day", + "2000-01-08": "Eid al-Fitr* (*estimated)", + "2000-01-09": "Eid al-Fitr Holiday* (*estimated)", + "2000-01-10": "Eid al-Fitr Holiday* (*estimated)", + "2000-01-14": "Revolution and Youth Day", + "2000-03-15": "Arafat Day* (*estimated)", + "2000-03-16": "Eid al-Adha* (*estimated)", + "2000-03-17": "Eid al-Adha Holiday* (*estimated)", + "2000-03-18": "Eid al-Adha Holiday* (*estimated)", + "2000-03-20": "Independence Day", + "2000-04-06": "Islamic New Year* (*estimated)", + "2000-04-09": "Martyrs' Day", + "2000-05-01": "Labor Day", + "2000-06-14": "Prophet's Birthday* (*estimated)", + "2000-07-25": "Republic Day", + "2000-08-13": "Women's Day", + "2000-10-15": "Evacuation Day", + "2000-12-27": "Eid al-Fitr* (*estimated)", + "2000-12-28": "Eid al-Fitr Holiday* (*estimated)", + "2000-12-29": "Eid al-Fitr Holiday* (*estimated)", + "2001-01-01": "New Year's Day", + "2001-01-14": "Revolution and Youth Day", + "2001-03-04": "Arafat Day* (*estimated)", + "2001-03-05": "Eid al-Adha* (*estimated)", + "2001-03-06": "Eid al-Adha Holiday* (*estimated)", + "2001-03-07": "Eid al-Adha Holiday* (*estimated)", + "2001-03-20": "Independence Day", + "2001-03-26": "Islamic New Year* (*estimated)", + "2001-04-09": "Martyrs' Day", + "2001-05-01": "Labor Day", + "2001-06-04": "Prophet's Birthday* (*estimated)", + "2001-07-25": "Republic Day", + "2001-08-13": "Women's Day", + "2001-10-15": "Evacuation Day", + "2001-12-16": "Eid al-Fitr* (*estimated)", + "2001-12-17": "Eid al-Fitr Holiday* (*estimated)", + "2001-12-18": "Eid al-Fitr Holiday* (*estimated)", + "2002-01-01": "New Year's Day", + "2002-01-14": "Revolution and Youth Day", + "2002-02-21": "Arafat Day* (*estimated)", + "2002-02-22": "Eid al-Adha* (*estimated)", + "2002-02-23": "Eid al-Adha Holiday* (*estimated)", + "2002-02-24": "Eid al-Adha Holiday* (*estimated)", + "2002-03-15": "Islamic New Year* (*estimated)", + "2002-03-20": "Independence Day", + "2002-04-09": "Martyrs' Day", + "2002-05-01": "Labor Day", + "2002-05-24": "Prophet's Birthday* (*estimated)", + "2002-07-25": "Republic Day", + "2002-08-13": "Women's Day", + "2002-10-15": "Evacuation Day", + "2002-12-05": "Eid al-Fitr* (*estimated)", + "2002-12-06": "Eid al-Fitr Holiday* (*estimated)", + "2002-12-07": "Eid al-Fitr Holiday* (*estimated)", + "2003-01-01": "New Year's Day", + "2003-01-14": "Revolution and Youth Day", + "2003-02-10": "Arafat Day* (*estimated)", + "2003-02-11": "Eid al-Adha* (*estimated)", + "2003-02-12": "Eid al-Adha Holiday* (*estimated)", + "2003-02-13": "Eid al-Adha Holiday* (*estimated)", + "2003-03-04": "Islamic New Year* (*estimated)", + "2003-03-20": "Independence Day", + "2003-04-09": "Martyrs' Day", + "2003-05-01": "Labor Day", + "2003-05-13": "Prophet's Birthday* (*estimated)", + "2003-07-25": "Republic Day", + "2003-08-13": "Women's Day", + "2003-10-15": "Evacuation Day", + "2003-11-25": "Eid al-Fitr* (*estimated)", + "2003-11-26": "Eid al-Fitr Holiday* (*estimated)", + "2003-11-27": "Eid al-Fitr Holiday* (*estimated)", + "2004-01-01": "New Year's Day", + "2004-01-14": "Revolution and Youth Day", + "2004-01-31": "Arafat Day* (*estimated)", + "2004-02-01": "Eid al-Adha* (*estimated)", + "2004-02-02": "Eid al-Adha Holiday* (*estimated)", + "2004-02-03": "Eid al-Adha Holiday* (*estimated)", + "2004-02-21": "Islamic New Year* (*estimated)", + "2004-03-20": "Independence Day", + "2004-04-09": "Martyrs' Day", + "2004-05-01": "Labor Day; Prophet's Birthday* (*estimated)", + "2004-07-25": "Republic Day", + "2004-08-13": "Women's Day", + "2004-10-15": "Evacuation Day", + "2004-11-14": "Eid al-Fitr* (*estimated)", + "2004-11-15": "Eid al-Fitr Holiday* (*estimated)", + "2004-11-16": "Eid al-Fitr Holiday* (*estimated)", + "2005-01-01": "New Year's Day", + "2005-01-14": "Revolution and Youth Day", + "2005-01-20": "Arafat Day* (*estimated)", + "2005-01-21": "Eid al-Adha* (*estimated)", + "2005-01-22": "Eid al-Adha Holiday* (*estimated)", + "2005-01-23": "Eid al-Adha Holiday* (*estimated)", + "2005-02-10": "Islamic New Year* (*estimated)", + "2005-03-20": "Independence Day", + "2005-04-09": "Martyrs' Day", + "2005-04-21": "Prophet's Birthday* (*estimated)", + "2005-05-01": "Labor Day", + "2005-07-25": "Republic Day", + "2005-08-13": "Women's Day", + "2005-10-15": "Evacuation Day", + "2005-11-03": "Eid al-Fitr* (*estimated)", + "2005-11-04": "Eid al-Fitr Holiday* (*estimated)", + "2005-11-05": "Eid al-Fitr Holiday* (*estimated)", + "2006-01-01": "New Year's Day", + "2006-01-09": "Arafat Day* (*estimated)", + "2006-01-10": "Eid al-Adha* (*estimated)", + "2006-01-11": "Eid al-Adha Holiday* (*estimated)", + "2006-01-12": "Eid al-Adha Holiday* (*estimated)", + "2006-01-14": "Revolution and Youth Day", + "2006-01-31": "Islamic New Year* (*estimated)", + "2006-03-20": "Independence Day", + "2006-04-09": "Martyrs' Day", + "2006-04-10": "Prophet's Birthday* (*estimated)", + "2006-05-01": "Labor Day", + "2006-07-25": "Republic Day", + "2006-08-13": "Women's Day", + "2006-10-15": "Evacuation Day", + "2006-10-23": "Eid al-Fitr* (*estimated)", + "2006-10-24": "Eid al-Fitr Holiday* (*estimated)", + "2006-10-25": "Eid al-Fitr Holiday* (*estimated)", + "2006-12-30": "Arafat Day* (*estimated)", + "2006-12-31": "Eid al-Adha* (*estimated)", + "2007-01-01": "Eid al-Adha Holiday* (*estimated); New Year's Day", + "2007-01-02": "Eid al-Adha Holiday* (*estimated)", + "2007-01-14": "Revolution and Youth Day", + "2007-01-20": "Islamic New Year* (*estimated)", + "2007-03-20": "Independence Day", + "2007-03-31": "Prophet's Birthday* (*estimated)", + "2007-04-09": "Martyrs' Day", + "2007-05-01": "Labor Day", + "2007-07-25": "Republic Day", + "2007-08-13": "Women's Day", + "2007-10-13": "Eid al-Fitr* (*estimated)", + "2007-10-14": "Eid al-Fitr Holiday* (*estimated)", + "2007-10-15": "Eid al-Fitr Holiday* (*estimated); Evacuation Day", + "2007-12-19": "Arafat Day* (*estimated)", + "2007-12-20": "Eid al-Adha* (*estimated)", + "2007-12-21": "Eid al-Adha Holiday* (*estimated)", + "2007-12-22": "Eid al-Adha Holiday* (*estimated)", + "2008-01-01": "New Year's Day", + "2008-01-10": "Islamic New Year* (*estimated)", + "2008-01-14": "Revolution and Youth Day", + "2008-03-20": "Independence Day; Prophet's Birthday* (*estimated)", + "2008-04-09": "Martyrs' Day", + "2008-05-01": "Labor Day", + "2008-07-25": "Republic Day", + "2008-08-13": "Women's Day", + "2008-10-01": "Eid al-Fitr* (*estimated)", + "2008-10-02": "Eid al-Fitr Holiday* (*estimated)", + "2008-10-03": "Eid al-Fitr Holiday* (*estimated)", + "2008-10-15": "Evacuation Day", + "2008-12-07": "Arafat Day* (*estimated)", + "2008-12-08": "Eid al-Adha* (*estimated)", + "2008-12-09": "Eid al-Adha Holiday* (*estimated)", + "2008-12-10": "Eid al-Adha Holiday* (*estimated)", + "2008-12-29": "Islamic New Year* (*estimated)", + "2009-01-01": "New Year's Day", + "2009-01-14": "Revolution and Youth Day", + "2009-03-09": "Prophet's Birthday* (*estimated)", + "2009-03-20": "Independence Day", + "2009-04-09": "Martyrs' Day", + "2009-05-01": "Labor Day", + "2009-07-25": "Republic Day", + "2009-08-13": "Women's Day", + "2009-09-20": "Eid al-Fitr* (*estimated)", + "2009-09-21": "Eid al-Fitr Holiday* (*estimated)", + "2009-09-22": "Eid al-Fitr Holiday* (*estimated)", + "2009-10-15": "Evacuation Day", + "2009-11-26": "Arafat Day* (*estimated)", + "2009-11-27": "Eid al-Adha* (*estimated)", + "2009-11-28": "Eid al-Adha Holiday* (*estimated)", + "2009-11-29": "Eid al-Adha Holiday* (*estimated)", + "2009-12-18": "Islamic New Year* (*estimated)", + "2010-01-01": "New Year's Day", + "2010-01-14": "Revolution and Youth Day", + "2010-02-26": "Prophet's Birthday* (*estimated)", + "2010-03-20": "Independence Day", + "2010-04-09": "Martyrs' Day", + "2010-05-01": "Labor Day", + "2010-07-25": "Republic Day", + "2010-08-13": "Women's Day", + "2010-09-10": "Eid al-Fitr* (*estimated)", + "2010-09-11": "Eid al-Fitr Holiday* (*estimated)", + "2010-09-12": "Eid al-Fitr Holiday* (*estimated)", + "2010-10-15": "Evacuation Day", + "2010-11-15": "Arafat Day* (*estimated)", + "2010-11-16": "Eid al-Adha* (*estimated)", + "2010-11-17": "Eid al-Adha Holiday* (*estimated)", + "2010-11-18": "Eid al-Adha Holiday* (*estimated)", + "2010-12-07": "Islamic New Year* (*estimated)", + "2011-01-01": "New Year's Day", + "2011-01-14": "Revolution and Youth Day", + "2011-02-15": "Prophet's Birthday* (*estimated)", + "2011-03-20": "Independence Day", + "2011-04-09": "Martyrs' Day", + "2011-05-01": "Labor Day", + "2011-07-25": "Republic Day", + "2011-08-13": "Women's Day", + "2011-08-30": "Eid al-Fitr* (*estimated)", + "2011-08-31": "Eid al-Fitr Holiday* (*estimated)", + "2011-09-01": "Eid al-Fitr Holiday* (*estimated)", + "2011-10-15": "Evacuation Day", + "2011-11-05": "Arafat Day* (*estimated)", + "2011-11-06": "Eid al-Adha* (*estimated)", + "2011-11-07": "Eid al-Adha Holiday* (*estimated)", + "2011-11-08": "Eid al-Adha Holiday* (*estimated)", + "2011-11-26": "Islamic New Year* (*estimated)", + "2012-01-01": "New Year's Day", + "2012-01-14": "Revolution and Youth Day", + "2012-02-04": "Prophet's Birthday* (*estimated)", + "2012-03-20": "Independence Day", + "2012-04-09": "Martyrs' Day", + "2012-05-01": "Labor Day", + "2012-07-25": "Republic Day", + "2012-08-13": "Women's Day", + "2012-08-19": "Eid al-Fitr* (*estimated)", + "2012-08-20": "Eid al-Fitr Holiday* (*estimated)", + "2012-08-21": "Eid al-Fitr Holiday* (*estimated)", + "2012-10-15": "Evacuation Day", + "2012-10-25": "Arafat Day* (*estimated)", + "2012-10-26": "Eid al-Adha* (*estimated)", + "2012-10-27": "Eid al-Adha Holiday* (*estimated)", + "2012-10-28": "Eid al-Adha Holiday* (*estimated)", + "2012-11-15": "Islamic New Year* (*estimated)", + "2013-01-01": "New Year's Day", + "2013-01-14": "Revolution and Youth Day", + "2013-01-24": "Prophet's Birthday* (*estimated)", + "2013-03-20": "Independence Day", + "2013-04-09": "Martyrs' Day", + "2013-05-01": "Labor Day", + "2013-07-25": "Republic Day", + "2013-08-08": "Eid al-Fitr* (*estimated)", + "2013-08-09": "Eid al-Fitr Holiday* (*estimated)", + "2013-08-10": "Eid al-Fitr Holiday* (*estimated)", + "2013-08-13": "Women's Day", + "2013-10-14": "Arafat Day* (*estimated)", + "2013-10-15": "Eid al-Adha* (*estimated); Evacuation Day", + "2013-10-16": "Eid al-Adha Holiday* (*estimated)", + "2013-10-17": "Eid al-Adha Holiday* (*estimated)", + "2013-11-04": "Islamic New Year* (*estimated)", + "2014-01-01": "New Year's Day", + "2014-01-13": "Prophet's Birthday* (*estimated)", + "2014-01-14": "Revolution and Youth Day", + "2014-03-20": "Independence Day", + "2014-04-09": "Martyrs' Day", + "2014-05-01": "Labor Day", + "2014-07-25": "Republic Day", + "2014-07-28": "Eid al-Fitr* (*estimated)", + "2014-07-29": "Eid al-Fitr Holiday* (*estimated)", + "2014-07-30": "Eid al-Fitr Holiday* (*estimated)", + "2014-08-13": "Women's Day", + "2014-10-03": "Arafat Day* (*estimated)", + "2014-10-04": "Eid al-Adha* (*estimated)", + "2014-10-05": "Eid al-Adha Holiday* (*estimated)", + "2014-10-06": "Eid al-Adha Holiday* (*estimated)", + "2014-10-15": "Evacuation Day", + "2014-10-25": "Islamic New Year* (*estimated)", + "2015-01-01": "New Year's Day", + "2015-01-03": "Prophet's Birthday* (*estimated)", + "2015-01-14": "Revolution and Youth Day", + "2015-03-20": "Independence Day", + "2015-04-09": "Martyrs' Day", + "2015-05-01": "Labor Day", + "2015-07-17": "Eid al-Fitr* (*estimated)", + "2015-07-18": "Eid al-Fitr Holiday* (*estimated)", + "2015-07-19": "Eid al-Fitr Holiday* (*estimated)", + "2015-07-25": "Republic Day", + "2015-08-13": "Women's Day", + "2015-09-22": "Arafat Day* (*estimated)", + "2015-09-23": "Eid al-Adha* (*estimated)", + "2015-09-24": "Eid al-Adha Holiday* (*estimated)", + "2015-09-25": "Eid al-Adha Holiday* (*estimated)", + "2015-10-14": "Islamic New Year* (*estimated)", + "2015-10-15": "Evacuation Day", + "2015-12-23": "Prophet's Birthday* (*estimated)", + "2016-01-01": "New Year's Day", + "2016-01-14": "Revolution and Youth Day", + "2016-03-20": "Independence Day", + "2016-04-09": "Martyrs' Day", + "2016-05-01": "Labor Day", + "2016-07-06": "Eid al-Fitr* (*estimated)", + "2016-07-07": "Eid al-Fitr Holiday* (*estimated)", + "2016-07-08": "Eid al-Fitr Holiday* (*estimated)", + "2016-07-25": "Republic Day", + "2016-08-13": "Women's Day", + "2016-09-10": "Arafat Day* (*estimated)", + "2016-09-11": "Eid al-Adha* (*estimated)", + "2016-09-12": "Eid al-Adha Holiday* (*estimated)", + "2016-09-13": "Eid al-Adha Holiday* (*estimated)", + "2016-10-02": "Islamic New Year* (*estimated)", + "2016-10-15": "Evacuation Day", + "2016-12-11": "Prophet's Birthday* (*estimated)", + "2017-01-01": "New Year's Day", + "2017-01-14": "Revolution and Youth Day", + "2017-03-20": "Independence Day", + "2017-04-09": "Martyrs' Day", + "2017-05-01": "Labor Day", + "2017-06-25": "Eid al-Fitr* (*estimated)", + "2017-06-26": "Eid al-Fitr Holiday* (*estimated)", + "2017-06-27": "Eid al-Fitr Holiday* (*estimated)", + "2017-07-25": "Republic Day", + "2017-08-13": "Women's Day", + "2017-08-31": "Arafat Day* (*estimated)", + "2017-09-01": "Eid al-Adha* (*estimated)", + "2017-09-02": "Eid al-Adha Holiday* (*estimated)", + "2017-09-03": "Eid al-Adha Holiday* (*estimated)", + "2017-09-21": "Islamic New Year* (*estimated)", + "2017-10-15": "Evacuation Day", + "2017-11-30": "Prophet's Birthday* (*estimated)", + "2018-01-01": "New Year's Day", + "2018-01-14": "Revolution and Youth Day", + "2018-03-20": "Independence Day", + "2018-04-09": "Martyrs' Day", + "2018-05-01": "Labor Day", + "2018-06-15": "Eid al-Fitr* (*estimated)", + "2018-06-16": "Eid al-Fitr Holiday* (*estimated)", + "2018-06-17": "Eid al-Fitr Holiday* (*estimated)", + "2018-07-25": "Republic Day", + "2018-08-13": "Women's Day", + "2018-08-20": "Arafat Day* (*estimated)", + "2018-08-21": "Eid al-Adha* (*estimated)", + "2018-08-22": "Eid al-Adha Holiday* (*estimated)", + "2018-08-23": "Eid al-Adha Holiday* (*estimated)", + "2018-09-11": "Islamic New Year* (*estimated)", + "2018-10-15": "Evacuation Day", + "2018-11-20": "Prophet's Birthday* (*estimated)", + "2019-01-01": "New Year's Day", + "2019-01-14": "Revolution and Youth Day", + "2019-03-20": "Independence Day", + "2019-04-09": "Martyrs' Day", + "2019-05-01": "Labor Day", + "2019-06-04": "Eid al-Fitr* (*estimated)", + "2019-06-05": "Eid al-Fitr Holiday* (*estimated)", + "2019-06-06": "Eid al-Fitr Holiday* (*estimated)", + "2019-07-25": "Republic Day", + "2019-08-10": "Arafat Day* (*estimated)", + "2019-08-11": "Eid al-Adha* (*estimated)", + "2019-08-12": "Eid al-Adha Holiday* (*estimated)", + "2019-08-13": "Eid al-Adha Holiday* (*estimated); Women's Day", + "2019-08-31": "Islamic New Year* (*estimated)", + "2019-10-15": "Evacuation Day", + "2019-11-09": "Prophet's Birthday* (*estimated)", + "2020-01-01": "New Year's Day", + "2020-01-14": "Revolution and Youth Day", + "2020-03-20": "Independence Day", + "2020-04-09": "Martyrs' Day", + "2020-05-01": "Labor Day", + "2020-05-24": "Eid al-Fitr* (*estimated)", + "2020-05-25": "Eid al-Fitr Holiday* (*estimated)", + "2020-05-26": "Eid al-Fitr Holiday* (*estimated)", + "2020-07-25": "Republic Day", + "2020-07-30": "Arafat Day* (*estimated)", + "2020-07-31": "Eid al-Adha* (*estimated)", + "2020-08-01": "Eid al-Adha Holiday* (*estimated)", + "2020-08-02": "Eid al-Adha Holiday* (*estimated)", + "2020-08-13": "Women's Day", + "2020-08-20": "Islamic New Year* (*estimated)", + "2020-10-15": "Evacuation Day", + "2020-10-29": "Prophet's Birthday* (*estimated)", + "2021-01-01": "New Year's Day", + "2021-01-14": "Revolution and Youth Day", + "2021-03-20": "Independence Day", + "2021-04-09": "Martyrs' Day", + "2021-05-01": "Labor Day", + "2021-05-13": "Eid al-Fitr* (*estimated)", + "2021-05-14": "Eid al-Fitr Holiday* (*estimated)", + "2021-05-15": "Eid al-Fitr Holiday* (*estimated)", + "2021-07-19": "Arafat Day* (*estimated)", + "2021-07-20": "Eid al-Adha* (*estimated)", + "2021-07-21": "Eid al-Adha Holiday* (*estimated)", + "2021-07-22": "Eid al-Adha Holiday* (*estimated)", + "2021-07-25": "Republic Day", + "2021-08-09": "Islamic New Year* (*estimated)", + "2021-08-13": "Women's Day", + "2021-10-15": "Evacuation Day", + "2021-10-18": "Prophet's Birthday* (*estimated)", + "2022-01-01": "New Year's Day", + "2022-01-14": "Revolution and Youth Day", + "2022-03-20": "Independence Day", + "2022-04-09": "Martyrs' Day", + "2022-05-01": "Labor Day", + "2022-05-02": "Eid al-Fitr* (*estimated)", + "2022-05-03": "Eid al-Fitr Holiday* (*estimated)", + "2022-05-04": "Eid al-Fitr Holiday* (*estimated)", + "2022-07-08": "Arafat Day* (*estimated)", + "2022-07-09": "Eid al-Adha* (*estimated)", + "2022-07-10": "Eid al-Adha Holiday* (*estimated)", + "2022-07-11": "Eid al-Adha Holiday* (*estimated)", + "2022-07-25": "Republic Day", + "2022-07-30": "Islamic New Year* (*estimated)", + "2022-08-13": "Women's Day", + "2022-10-08": "Prophet's Birthday* (*estimated)", + "2022-10-15": "Evacuation Day", + "2023-01-01": "New Year's Day", + "2023-01-14": "Revolution and Youth Day", + "2023-03-20": "Independence Day", + "2023-04-09": "Martyrs' Day", + "2023-04-21": "Eid al-Fitr* (*estimated)", + "2023-04-22": "Eid al-Fitr Holiday* (*estimated)", + "2023-04-23": "Eid al-Fitr Holiday* (*estimated)", + "2023-05-01": "Labor Day", + "2023-06-27": "Arafat Day* (*estimated)", + "2023-06-28": "Eid al-Adha* (*estimated)", + "2023-06-29": "Eid al-Adha Holiday* (*estimated)", + "2023-06-30": "Eid al-Adha Holiday* (*estimated)", + "2023-07-19": "Islamic New Year* (*estimated)", + "2023-07-25": "Republic Day", + "2023-08-13": "Women's Day", + "2023-09-27": "Prophet's Birthday* (*estimated)", + "2023-10-15": "Evacuation Day", + "2024-01-01": "New Year's Day", + "2024-01-14": "Revolution and Youth Day", + "2024-03-20": "Independence Day", + "2024-04-09": "Martyrs' Day", + "2024-04-10": "Eid al-Fitr* (*estimated)", + "2024-04-11": "Eid al-Fitr Holiday* (*estimated)", + "2024-04-12": "Eid al-Fitr Holiday* (*estimated)", + "2024-05-01": "Labor Day", + "2024-06-15": "Arafat Day* (*estimated)", + "2024-06-16": "Eid al-Adha* (*estimated)", + "2024-06-17": "Eid al-Adha Holiday* (*estimated)", + "2024-06-18": "Eid al-Adha Holiday* (*estimated)", + "2024-07-07": "Islamic New Year* (*estimated)", + "2024-07-25": "Republic Day", + "2024-08-13": "Women's Day", + "2024-09-15": "Prophet's Birthday* (*estimated)", + "2024-10-15": "Evacuation Day", + "2025-01-01": "New Year's Day", + "2025-01-14": "Revolution and Youth Day", + "2025-03-20": "Independence Day", + "2025-03-30": "Eid al-Fitr* (*estimated)", + "2025-03-31": "Eid al-Fitr Holiday* (*estimated)", + "2025-04-01": "Eid al-Fitr Holiday* (*estimated)", + "2025-04-09": "Martyrs' Day", + "2025-05-01": "Labor Day", + "2025-06-05": "Arafat Day* (*estimated)", + "2025-06-06": "Eid al-Adha* (*estimated)", + "2025-06-07": "Eid al-Adha Holiday* (*estimated)", + "2025-06-08": "Eid al-Adha Holiday* (*estimated)", + "2025-06-26": "Islamic New Year* (*estimated)", + "2025-07-25": "Republic Day", + "2025-08-13": "Women's Day", + "2025-09-04": "Prophet's Birthday* (*estimated)", + "2025-10-15": "Evacuation Day", + "2026-01-01": "New Year's Day", + "2026-01-14": "Revolution and Youth Day", + "2026-03-20": "Eid al-Fitr* (*estimated); Independence Day", + "2026-03-21": "Eid al-Fitr Holiday* (*estimated)", + "2026-03-22": "Eid al-Fitr Holiday* (*estimated)", + "2026-04-09": "Martyrs' Day", + "2026-05-01": "Labor Day", + "2026-05-26": "Arafat Day* (*estimated)", + "2026-05-27": "Eid al-Adha* (*estimated)", + "2026-05-28": "Eid al-Adha Holiday* (*estimated)", + "2026-05-29": "Eid al-Adha Holiday* (*estimated)", + "2026-06-16": "Islamic New Year* (*estimated)", + "2026-07-25": "Republic Day", + "2026-08-13": "Women's Day", + "2026-08-25": "Prophet's Birthday* (*estimated)", + "2026-10-15": "Evacuation Day", + "2027-01-01": "New Year's Day", + "2027-01-14": "Revolution and Youth Day", + "2027-03-09": "Eid al-Fitr* (*estimated)", + "2027-03-10": "Eid al-Fitr Holiday* (*estimated)", + "2027-03-11": "Eid al-Fitr Holiday* (*estimated)", + "2027-03-20": "Independence Day", + "2027-04-09": "Martyrs' Day", + "2027-05-01": "Labor Day", + "2027-05-15": "Arafat Day* (*estimated)", + "2027-05-16": "Eid al-Adha* (*estimated)", + "2027-05-17": "Eid al-Adha Holiday* (*estimated)", + "2027-05-18": "Eid al-Adha Holiday* (*estimated)", + "2027-06-06": "Islamic New Year* (*estimated)", + "2027-07-25": "Republic Day", + "2027-08-13": "Women's Day", + "2027-08-14": "Prophet's Birthday* (*estimated)", + "2027-10-15": "Evacuation Day", + "2028-01-01": "New Year's Day", + "2028-01-14": "Revolution and Youth Day", + "2028-02-26": "Eid al-Fitr* (*estimated)", + "2028-02-27": "Eid al-Fitr Holiday* (*estimated)", + "2028-02-28": "Eid al-Fitr Holiday* (*estimated)", + "2028-03-20": "Independence Day", + "2028-04-09": "Martyrs' Day", + "2028-05-01": "Labor Day", + "2028-05-04": "Arafat Day* (*estimated)", + "2028-05-05": "Eid al-Adha* (*estimated)", + "2028-05-06": "Eid al-Adha Holiday* (*estimated)", + "2028-05-07": "Eid al-Adha Holiday* (*estimated)", + "2028-05-25": "Islamic New Year* (*estimated)", + "2028-07-25": "Republic Day", + "2028-08-03": "Prophet's Birthday* (*estimated)", + "2028-08-13": "Women's Day", + "2028-10-15": "Evacuation Day", + "2029-01-01": "New Year's Day", + "2029-01-14": "Revolution and Youth Day", + "2029-02-14": "Eid al-Fitr* (*estimated)", + "2029-02-15": "Eid al-Fitr Holiday* (*estimated)", + "2029-02-16": "Eid al-Fitr Holiday* (*estimated)", + "2029-03-20": "Independence Day", + "2029-04-09": "Martyrs' Day", + "2029-04-23": "Arafat Day* (*estimated)", + "2029-04-24": "Eid al-Adha* (*estimated)", + "2029-04-25": "Eid al-Adha Holiday* (*estimated)", + "2029-04-26": "Eid al-Adha Holiday* (*estimated)", + "2029-05-01": "Labor Day", + "2029-05-14": "Islamic New Year* (*estimated)", + "2029-07-24": "Prophet's Birthday* (*estimated)", + "2029-07-25": "Republic Day", + "2029-08-13": "Women's Day", + "2029-10-15": "Evacuation Day", + "2030-01-01": "New Year's Day", + "2030-01-14": "Revolution and Youth Day", + "2030-02-04": "Eid al-Fitr* (*estimated)", + "2030-02-05": "Eid al-Fitr Holiday* (*estimated)", + "2030-02-06": "Eid al-Fitr Holiday* (*estimated)", + "2030-03-20": "Independence Day", + "2030-04-09": "Martyrs' Day", + "2030-04-12": "Arafat Day* (*estimated)", + "2030-04-13": "Eid al-Adha* (*estimated)", + "2030-04-14": "Eid al-Adha Holiday* (*estimated)", + "2030-04-15": "Eid al-Adha Holiday* (*estimated)", + "2030-05-01": "Labor Day", + "2030-05-03": "Islamic New Year* (*estimated)", + "2030-07-13": "Prophet's Birthday* (*estimated)", + "2030-07-25": "Republic Day", + "2030-08-13": "Women's Day", + "2030-10-15": "Evacuation Day", + "2031-01-01": "New Year's Day", + "2031-01-14": "Revolution and Youth Day", + "2031-01-24": "Eid al-Fitr* (*estimated)", + "2031-01-25": "Eid al-Fitr Holiday* (*estimated)", + "2031-01-26": "Eid al-Fitr Holiday* (*estimated)", + "2031-03-20": "Independence Day", + "2031-04-01": "Arafat Day* (*estimated)", + "2031-04-02": "Eid al-Adha* (*estimated)", + "2031-04-03": "Eid al-Adha Holiday* (*estimated)", + "2031-04-04": "Eid al-Adha Holiday* (*estimated)", + "2031-04-09": "Martyrs' Day", + "2031-04-23": "Islamic New Year* (*estimated)", + "2031-05-01": "Labor Day", + "2031-07-02": "Prophet's Birthday* (*estimated)", + "2031-07-25": "Republic Day", + "2031-08-13": "Women's Day", + "2031-10-15": "Evacuation Day", + "2032-01-01": "New Year's Day", + "2032-01-14": "Eid al-Fitr* (*estimated); Revolution and Youth Day", + "2032-01-15": "Eid al-Fitr Holiday* (*estimated)", + "2032-01-16": "Eid al-Fitr Holiday* (*estimated)", + "2032-03-20": "Independence Day", + "2032-03-21": "Arafat Day* (*estimated)", + "2032-03-22": "Eid al-Adha* (*estimated)", + "2032-03-23": "Eid al-Adha Holiday* (*estimated)", + "2032-03-24": "Eid al-Adha Holiday* (*estimated)", + "2032-04-09": "Martyrs' Day", + "2032-04-11": "Islamic New Year* (*estimated)", + "2032-05-01": "Labor Day", + "2032-06-20": "Prophet's Birthday* (*estimated)", + "2032-07-25": "Republic Day", + "2032-08-13": "Women's Day", + "2032-10-15": "Evacuation Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "Eid al-Fitr* (*estimated)", + "2033-01-03": "Eid al-Fitr Holiday* (*estimated)", + "2033-01-04": "Eid al-Fitr Holiday* (*estimated)", + "2033-01-14": "Revolution and Youth Day", + "2033-03-10": "Arafat Day* (*estimated)", + "2033-03-11": "Eid al-Adha* (*estimated)", + "2033-03-12": "Eid al-Adha Holiday* (*estimated)", + "2033-03-13": "Eid al-Adha Holiday* (*estimated)", + "2033-03-20": "Independence Day", + "2033-04-01": "Islamic New Year* (*estimated)", + "2033-04-09": "Martyrs' Day", + "2033-05-01": "Labor Day", + "2033-06-09": "Prophet's Birthday* (*estimated)", + "2033-07-25": "Republic Day", + "2033-08-13": "Women's Day", + "2033-10-15": "Evacuation Day", + "2033-12-23": "Eid al-Fitr* (*estimated)", + "2033-12-24": "Eid al-Fitr Holiday* (*estimated)", + "2033-12-25": "Eid al-Fitr Holiday* (*estimated)", + "2034-01-01": "New Year's Day", + "2034-01-14": "Revolution and Youth Day", + "2034-02-28": "Arafat Day* (*estimated)", + "2034-03-01": "Eid al-Adha* (*estimated)", + "2034-03-02": "Eid al-Adha Holiday* (*estimated)", + "2034-03-03": "Eid al-Adha Holiday* (*estimated)", + "2034-03-20": "Independence Day", + "2034-03-21": "Islamic New Year* (*estimated)", + "2034-04-09": "Martyrs' Day", + "2034-05-01": "Labor Day", + "2034-05-30": "Prophet's Birthday* (*estimated)", + "2034-07-25": "Republic Day", + "2034-08-13": "Women's Day", + "2034-10-15": "Evacuation Day", + "2034-12-12": "Eid al-Fitr* (*estimated)", + "2034-12-13": "Eid al-Fitr Holiday* (*estimated)", + "2034-12-14": "Eid al-Fitr Holiday* (*estimated)", + "2035-01-01": "New Year's Day", + "2035-01-14": "Revolution and Youth Day", + "2035-02-17": "Arafat Day* (*estimated)", + "2035-02-18": "Eid al-Adha* (*estimated)", + "2035-02-19": "Eid al-Adha Holiday* (*estimated)", + "2035-02-20": "Eid al-Adha Holiday* (*estimated)", + "2035-03-11": "Islamic New Year* (*estimated)", + "2035-03-20": "Independence Day", + "2035-04-09": "Martyrs' Day", + "2035-05-01": "Labor Day", + "2035-05-20": "Prophet's Birthday* (*estimated)", + "2035-07-25": "Republic Day", + "2035-08-13": "Women's Day", + "2035-10-15": "Evacuation Day", + "2035-12-01": "Eid al-Fitr* (*estimated)", + "2035-12-02": "Eid al-Fitr Holiday* (*estimated)", + "2035-12-03": "Eid al-Fitr Holiday* (*estimated)", + "2036-01-01": "New Year's Day", + "2036-01-14": "Revolution and Youth Day", + "2036-02-06": "Arafat Day* (*estimated)", + "2036-02-07": "Eid al-Adha* (*estimated)", + "2036-02-08": "Eid al-Adha Holiday* (*estimated)", + "2036-02-09": "Eid al-Adha Holiday* (*estimated)", + "2036-02-28": "Islamic New Year* (*estimated)", + "2036-03-20": "Independence Day", + "2036-04-09": "Martyrs' Day", + "2036-05-01": "Labor Day", + "2036-05-08": "Prophet's Birthday* (*estimated)", + "2036-07-25": "Republic Day", + "2036-08-13": "Women's Day", + "2036-10-15": "Evacuation Day", + "2036-11-19": "Eid al-Fitr* (*estimated)", + "2036-11-20": "Eid al-Fitr Holiday* (*estimated)", + "2036-11-21": "Eid al-Fitr Holiday* (*estimated)", + "2037-01-01": "New Year's Day", + "2037-01-14": "Revolution and Youth Day", + "2037-01-25": "Arafat Day* (*estimated)", + "2037-01-26": "Eid al-Adha* (*estimated)", + "2037-01-27": "Eid al-Adha Holiday* (*estimated)", + "2037-01-28": "Eid al-Adha Holiday* (*estimated)", + "2037-02-16": "Islamic New Year* (*estimated)", + "2037-03-20": "Independence Day", + "2037-04-09": "Martyrs' Day", + "2037-04-28": "Prophet's Birthday* (*estimated)", + "2037-05-01": "Labor Day", + "2037-07-25": "Republic Day", + "2037-08-13": "Women's Day", + "2037-10-15": "Evacuation Day", + "2037-11-08": "Eid al-Fitr* (*estimated)", + "2037-11-09": "Eid al-Fitr Holiday* (*estimated)", + "2037-11-10": "Eid al-Fitr Holiday* (*estimated)", + "2038-01-01": "New Year's Day", + "2038-01-14": "Revolution and Youth Day", + "2038-01-15": "Arafat Day* (*estimated)", + "2038-01-16": "Eid al-Adha* (*estimated)", + "2038-01-17": "Eid al-Adha Holiday* (*estimated)", + "2038-01-18": "Eid al-Adha Holiday* (*estimated)", + "2038-02-05": "Islamic New Year* (*estimated)", + "2038-03-20": "Independence Day", + "2038-04-09": "Martyrs' Day", + "2038-04-17": "Prophet's Birthday* (*estimated)", + "2038-05-01": "Labor Day", + "2038-07-25": "Republic Day", + "2038-08-13": "Women's Day", + "2038-10-15": "Evacuation Day", + "2038-10-29": "Eid al-Fitr* (*estimated)", + "2038-10-30": "Eid al-Fitr Holiday* (*estimated)", + "2038-10-31": "Eid al-Fitr Holiday* (*estimated)", + "2039-01-01": "New Year's Day", + "2039-01-04": "Arafat Day* (*estimated)", + "2039-01-05": "Eid al-Adha* (*estimated)", + "2039-01-06": "Eid al-Adha Holiday* (*estimated)", + "2039-01-07": "Eid al-Adha Holiday* (*estimated)", + "2039-01-14": "Revolution and Youth Day", + "2039-01-26": "Islamic New Year* (*estimated)", + "2039-03-20": "Independence Day", + "2039-04-06": "Prophet's Birthday* (*estimated)", + "2039-04-09": "Martyrs' Day", + "2039-05-01": "Labor Day", + "2039-07-25": "Republic Day", + "2039-08-13": "Women's Day", + "2039-10-15": "Evacuation Day", + "2039-10-19": "Eid al-Fitr* (*estimated)", + "2039-10-20": "Eid al-Fitr Holiday* (*estimated)", + "2039-10-21": "Eid al-Fitr Holiday* (*estimated)", + "2039-12-25": "Arafat Day* (*estimated)", + "2039-12-26": "Eid al-Adha* (*estimated)", + "2039-12-27": "Eid al-Adha Holiday* (*estimated)", + "2039-12-28": "Eid al-Adha Holiday* (*estimated)", + "2040-01-01": "New Year's Day", + "2040-01-14": "Revolution and Youth Day", + "2040-01-15": "Islamic New Year* (*estimated)", + "2040-03-20": "Independence Day", + "2040-03-25": "Prophet's Birthday* (*estimated)", + "2040-04-09": "Martyrs' Day", + "2040-05-01": "Labor Day", + "2040-07-25": "Republic Day", + "2040-08-13": "Women's Day", + "2040-10-07": "Eid al-Fitr* (*estimated)", + "2040-10-08": "Eid al-Fitr Holiday* (*estimated)", + "2040-10-09": "Eid al-Fitr Holiday* (*estimated)", + "2040-10-15": "Evacuation Day", + "2040-12-13": "Arafat Day* (*estimated)", + "2040-12-14": "Eid al-Adha* (*estimated)", + "2040-12-15": "Eid al-Adha Holiday* (*estimated)", + "2040-12-16": "Eid al-Adha Holiday* (*estimated)", + "2041-01-01": "New Year's Day", + "2041-01-04": "Islamic New Year* (*estimated)", + "2041-01-14": "Revolution and Youth Day", + "2041-03-15": "Prophet's Birthday* (*estimated)", + "2041-03-20": "Independence Day", + "2041-04-09": "Martyrs' Day", + "2041-05-01": "Labor Day", + "2041-07-25": "Republic Day", + "2041-08-13": "Women's Day", + "2041-09-26": "Eid al-Fitr* (*estimated)", + "2041-09-27": "Eid al-Fitr Holiday* (*estimated)", + "2041-09-28": "Eid al-Fitr Holiday* (*estimated)", + "2041-10-15": "Evacuation Day", + "2041-12-03": "Arafat Day* (*estimated)", + "2041-12-04": "Eid al-Adha* (*estimated)", + "2041-12-05": "Eid al-Adha Holiday* (*estimated)", + "2041-12-06": "Eid al-Adha Holiday* (*estimated)", + "2041-12-24": "Islamic New Year* (*estimated)", + "2042-01-01": "New Year's Day", + "2042-01-14": "Revolution and Youth Day", + "2042-03-04": "Prophet's Birthday* (*estimated)", + "2042-03-20": "Independence Day", + "2042-04-09": "Martyrs' Day", + "2042-05-01": "Labor Day", + "2042-07-25": "Republic Day", + "2042-08-13": "Women's Day", + "2042-09-15": "Eid al-Fitr* (*estimated)", + "2042-09-16": "Eid al-Fitr Holiday* (*estimated)", + "2042-09-17": "Eid al-Fitr Holiday* (*estimated)", + "2042-10-15": "Evacuation Day", + "2042-11-22": "Arafat Day* (*estimated)", + "2042-11-23": "Eid al-Adha* (*estimated)", + "2042-11-24": "Eid al-Adha Holiday* (*estimated)", + "2042-11-25": "Eid al-Adha Holiday* (*estimated)", + "2042-12-14": "Islamic New Year* (*estimated)", + "2043-01-01": "New Year's Day", + "2043-01-14": "Revolution and Youth Day", + "2043-02-22": "Prophet's Birthday* (*estimated)", + "2043-03-20": "Independence Day", + "2043-04-09": "Martyrs' Day", + "2043-05-01": "Labor Day", + "2043-07-25": "Republic Day", + "2043-08-13": "Women's Day", + "2043-09-04": "Eid al-Fitr* (*estimated)", + "2043-09-05": "Eid al-Fitr Holiday* (*estimated)", + "2043-09-06": "Eid al-Fitr Holiday* (*estimated)", + "2043-10-15": "Evacuation Day", + "2043-11-11": "Arafat Day* (*estimated)", + "2043-11-12": "Eid al-Adha* (*estimated)", + "2043-11-13": "Eid al-Adha Holiday* (*estimated)", + "2043-11-14": "Eid al-Adha Holiday* (*estimated)", + "2043-12-03": "Islamic New Year* (*estimated)", + "2044-01-01": "New Year's Day", + "2044-01-14": "Revolution and Youth Day", + "2044-02-11": "Prophet's Birthday* (*estimated)", + "2044-03-20": "Independence Day", + "2044-04-09": "Martyrs' Day", + "2044-05-01": "Labor Day", + "2044-07-25": "Republic Day", + "2044-08-13": "Women's Day", + "2044-08-24": "Eid al-Fitr* (*estimated)", + "2044-08-25": "Eid al-Fitr Holiday* (*estimated)", + "2044-08-26": "Eid al-Fitr Holiday* (*estimated)", + "2044-10-15": "Evacuation Day", + "2044-10-30": "Arafat Day* (*estimated)", + "2044-10-31": "Eid al-Adha* (*estimated)", + "2044-11-01": "Eid al-Adha Holiday* (*estimated)", + "2044-11-02": "Eid al-Adha Holiday* (*estimated)", + "2044-11-21": "Islamic New Year* (*estimated)", + "2045-01-01": "New Year's Day", + "2045-01-14": "Revolution and Youth Day", + "2045-01-30": "Prophet's Birthday* (*estimated)", + "2045-03-20": "Independence Day", + "2045-04-09": "Martyrs' Day", + "2045-05-01": "Labor Day", + "2045-07-25": "Republic Day", + "2045-08-13": "Women's Day", + "2045-08-14": "Eid al-Fitr* (*estimated)", + "2045-08-15": "Eid al-Fitr Holiday* (*estimated)", + "2045-08-16": "Eid al-Fitr Holiday* (*estimated)", + "2045-10-15": "Evacuation Day", + "2045-10-20": "Arafat Day* (*estimated)", + "2045-10-21": "Eid al-Adha* (*estimated)", + "2045-10-22": "Eid al-Adha Holiday* (*estimated)", + "2045-10-23": "Eid al-Adha Holiday* (*estimated)", + "2045-11-10": "Islamic New Year* (*estimated)", + "2046-01-01": "New Year's Day", + "2046-01-14": "Revolution and Youth Day", + "2046-01-19": "Prophet's Birthday* (*estimated)", + "2046-03-20": "Independence Day", + "2046-04-09": "Martyrs' Day", + "2046-05-01": "Labor Day", + "2046-07-25": "Republic Day", + "2046-08-03": "Eid al-Fitr* (*estimated)", + "2046-08-04": "Eid al-Fitr Holiday* (*estimated)", + "2046-08-05": "Eid al-Fitr Holiday* (*estimated)", + "2046-08-13": "Women's Day", + "2046-10-09": "Arafat Day* (*estimated)", + "2046-10-10": "Eid al-Adha* (*estimated)", + "2046-10-11": "Eid al-Adha Holiday* (*estimated)", + "2046-10-12": "Eid al-Adha Holiday* (*estimated)", + "2046-10-15": "Evacuation Day", + "2046-10-31": "Islamic New Year* (*estimated)", + "2047-01-01": "New Year's Day", + "2047-01-08": "Prophet's Birthday* (*estimated)", + "2047-01-14": "Revolution and Youth Day", + "2047-03-20": "Independence Day", + "2047-04-09": "Martyrs' Day", + "2047-05-01": "Labor Day", + "2047-07-24": "Eid al-Fitr* (*estimated)", + "2047-07-25": "Eid al-Fitr Holiday* (*estimated); Republic Day", + "2047-07-26": "Eid al-Fitr Holiday* (*estimated)", + "2047-08-13": "Women's Day", + "2047-09-29": "Arafat Day* (*estimated)", + "2047-09-30": "Eid al-Adha* (*estimated)", + "2047-10-01": "Eid al-Adha Holiday* (*estimated)", + "2047-10-02": "Eid al-Adha Holiday* (*estimated)", + "2047-10-15": "Evacuation Day", + "2047-10-20": "Islamic New Year* (*estimated)", + "2047-12-29": "Prophet's Birthday* (*estimated)", + "2048-01-01": "New Year's Day", + "2048-01-14": "Revolution and Youth Day", + "2048-03-20": "Independence Day", + "2048-04-09": "Martyrs' Day", + "2048-05-01": "Labor Day", + "2048-07-12": "Eid al-Fitr* (*estimated)", + "2048-07-13": "Eid al-Fitr Holiday* (*estimated)", + "2048-07-14": "Eid al-Fitr Holiday* (*estimated)", + "2048-07-25": "Republic Day", + "2048-08-13": "Women's Day", + "2048-09-18": "Arafat Day* (*estimated)", + "2048-09-19": "Eid al-Adha* (*estimated)", + "2048-09-20": "Eid al-Adha Holiday* (*estimated)", + "2048-09-21": "Eid al-Adha Holiday* (*estimated)", + "2048-10-09": "Islamic New Year* (*estimated)", + "2048-10-15": "Evacuation Day", + "2048-12-18": "Prophet's Birthday* (*estimated)", + "2049-01-01": "New Year's Day", + "2049-01-14": "Revolution and Youth Day", + "2049-03-20": "Independence Day", + "2049-04-09": "Martyrs' Day", + "2049-05-01": "Labor Day", + "2049-07-01": "Eid al-Fitr* (*estimated)", + "2049-07-02": "Eid al-Fitr Holiday* (*estimated)", + "2049-07-03": "Eid al-Fitr Holiday* (*estimated)", + "2049-07-25": "Republic Day", + "2049-08-13": "Women's Day", + "2049-09-07": "Arafat Day* (*estimated)", + "2049-09-08": "Eid al-Adha* (*estimated)", + "2049-09-09": "Eid al-Adha Holiday* (*estimated)", + "2049-09-10": "Eid al-Adha Holiday* (*estimated)", + "2049-09-28": "Islamic New Year* (*estimated)", + "2049-10-15": "Evacuation Day", + "2049-12-07": "Prophet's Birthday* (*estimated)", + "2050-01-01": "New Year's Day", + "2050-01-14": "Revolution and Youth Day", + "2050-03-20": "Independence Day", + "2050-04-09": "Martyrs' Day", + "2050-05-01": "Labor Day", + "2050-06-20": "Eid al-Fitr* (*estimated)", + "2050-06-21": "Eid al-Fitr Holiday* (*estimated)", + "2050-06-22": "Eid al-Fitr Holiday* (*estimated)", + "2050-07-25": "Republic Day", + "2050-08-13": "Women's Day", + "2050-08-27": "Arafat Day* (*estimated)", + "2050-08-28": "Eid al-Adha* (*estimated)", + "2050-08-29": "Eid al-Adha Holiday* (*estimated)", + "2050-08-30": "Eid al-Adha Holiday* (*estimated)", + "2050-09-17": "Islamic New Year* (*estimated)", + "2050-10-15": "Evacuation Day", + "2050-11-26": "Prophet's Birthday* (*estimated)" +} diff --git a/snapshots/countries/TR.json b/snapshots/countries/TR.json new file mode 100644 index 000000000..4e1dbbd8d --- /dev/null +++ b/snapshots/countries/TR.json @@ -0,0 +1,1359 @@ +{ + "1950-01-01": "New Year's Day", + "1950-04-23": "National Sovereignty and Children's Day", + "1950-05-01": "Labour Day", + "1950-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1950-07-16": "Ramadan Feast* (*estimated)", + "1950-07-17": "Ramadan Feast Holiday* (*estimated)", + "1950-07-18": "Ramadan Feast Holiday* (*estimated)", + "1950-08-30": "Victory Day", + "1950-09-23": "Sacrifice Feast* (*estimated)", + "1950-09-24": "Sacrifice Feast Holiday* (*estimated)", + "1950-09-25": "Sacrifice Feast Holiday* (*estimated)", + "1950-09-26": "Sacrifice Feast Holiday* (*estimated)", + "1950-10-29": "Republic Day", + "1951-01-01": "New Year's Day", + "1951-04-23": "National Sovereignty and Children's Day", + "1951-05-01": "Labour Day", + "1951-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1951-07-06": "Ramadan Feast* (*estimated)", + "1951-07-07": "Ramadan Feast Holiday* (*estimated)", + "1951-07-08": "Ramadan Feast Holiday* (*estimated)", + "1951-08-30": "Victory Day", + "1951-09-12": "Sacrifice Feast* (*estimated)", + "1951-09-13": "Sacrifice Feast Holiday* (*estimated)", + "1951-09-14": "Sacrifice Feast Holiday* (*estimated)", + "1951-09-15": "Sacrifice Feast Holiday* (*estimated)", + "1951-10-29": "Republic Day", + "1952-01-01": "New Year's Day", + "1952-04-23": "National Sovereignty and Children's Day", + "1952-05-01": "Labour Day", + "1952-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1952-06-23": "Ramadan Feast* (*estimated)", + "1952-06-24": "Ramadan Feast Holiday* (*estimated)", + "1952-06-25": "Ramadan Feast Holiday* (*estimated)", + "1952-08-30": "Victory Day", + "1952-08-31": "Sacrifice Feast* (*estimated)", + "1952-09-01": "Sacrifice Feast Holiday* (*estimated)", + "1952-09-02": "Sacrifice Feast Holiday* (*estimated)", + "1952-09-03": "Sacrifice Feast Holiday* (*estimated)", + "1952-10-29": "Republic Day", + "1953-01-01": "New Year's Day", + "1953-04-23": "National Sovereignty and Children's Day", + "1953-05-01": "Labour Day", + "1953-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1953-06-13": "Ramadan Feast* (*estimated)", + "1953-06-14": "Ramadan Feast Holiday* (*estimated)", + "1953-06-15": "Ramadan Feast Holiday* (*estimated)", + "1953-08-20": "Sacrifice Feast* (*estimated)", + "1953-08-21": "Sacrifice Feast Holiday* (*estimated)", + "1953-08-22": "Sacrifice Feast Holiday* (*estimated)", + "1953-08-23": "Sacrifice Feast Holiday* (*estimated)", + "1953-08-30": "Victory Day", + "1953-10-29": "Republic Day", + "1954-01-01": "New Year's Day", + "1954-04-23": "National Sovereignty and Children's Day", + "1954-05-01": "Labour Day", + "1954-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1954-06-02": "Ramadan Feast* (*estimated)", + "1954-06-03": "Ramadan Feast Holiday* (*estimated)", + "1954-06-04": "Ramadan Feast Holiday* (*estimated)", + "1954-08-09": "Sacrifice Feast* (*estimated)", + "1954-08-10": "Sacrifice Feast Holiday* (*estimated)", + "1954-08-11": "Sacrifice Feast Holiday* (*estimated)", + "1954-08-12": "Sacrifice Feast Holiday* (*estimated)", + "1954-08-30": "Victory Day", + "1954-10-29": "Republic Day", + "1955-01-01": "New Year's Day", + "1955-04-23": "National Sovereignty and Children's Day", + "1955-05-01": "Labour Day", + "1955-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1955-05-23": "Ramadan Feast* (*estimated)", + "1955-05-24": "Ramadan Feast Holiday* (*estimated)", + "1955-05-25": "Ramadan Feast Holiday* (*estimated)", + "1955-07-30": "Sacrifice Feast* (*estimated)", + "1955-07-31": "Sacrifice Feast Holiday* (*estimated)", + "1955-08-01": "Sacrifice Feast Holiday* (*estimated)", + "1955-08-02": "Sacrifice Feast Holiday* (*estimated)", + "1955-08-30": "Victory Day", + "1955-10-29": "Republic Day", + "1956-01-01": "New Year's Day", + "1956-04-23": "National Sovereignty and Children's Day", + "1956-05-01": "Labour Day", + "1956-05-11": "Ramadan Feast* (*estimated)", + "1956-05-12": "Ramadan Feast Holiday* (*estimated)", + "1956-05-13": "Ramadan Feast Holiday* (*estimated)", + "1956-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1956-07-19": "Sacrifice Feast* (*estimated)", + "1956-07-20": "Sacrifice Feast Holiday* (*estimated)", + "1956-07-21": "Sacrifice Feast Holiday* (*estimated)", + "1956-07-22": "Sacrifice Feast Holiday* (*estimated)", + "1956-08-30": "Victory Day", + "1956-10-29": "Republic Day", + "1957-01-01": "New Year's Day", + "1957-04-23": "National Sovereignty and Children's Day", + "1957-05-01": "Labour Day; Ramadan Feast* (*estimated)", + "1957-05-02": "Ramadan Feast Holiday* (*estimated)", + "1957-05-03": "Ramadan Feast Holiday* (*estimated)", + "1957-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1957-07-08": "Sacrifice Feast* (*estimated)", + "1957-07-09": "Sacrifice Feast Holiday* (*estimated)", + "1957-07-10": "Sacrifice Feast Holiday* (*estimated)", + "1957-07-11": "Sacrifice Feast Holiday* (*estimated)", + "1957-08-30": "Victory Day", + "1957-10-29": "Republic Day", + "1958-01-01": "New Year's Day", + "1958-04-20": "Ramadan Feast* (*estimated)", + "1958-04-21": "Ramadan Feast Holiday* (*estimated)", + "1958-04-22": "Ramadan Feast Holiday* (*estimated)", + "1958-04-23": "National Sovereignty and Children's Day", + "1958-05-01": "Labour Day", + "1958-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1958-06-27": "Sacrifice Feast* (*estimated)", + "1958-06-28": "Sacrifice Feast Holiday* (*estimated)", + "1958-06-29": "Sacrifice Feast Holiday* (*estimated)", + "1958-06-30": "Sacrifice Feast Holiday* (*estimated)", + "1958-08-30": "Victory Day", + "1958-10-29": "Republic Day", + "1959-01-01": "New Year's Day", + "1959-04-10": "Ramadan Feast* (*estimated)", + "1959-04-11": "Ramadan Feast Holiday* (*estimated)", + "1959-04-12": "Ramadan Feast Holiday* (*estimated)", + "1959-04-23": "National Sovereignty and Children's Day", + "1959-05-01": "Labour Day", + "1959-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1959-06-17": "Sacrifice Feast* (*estimated)", + "1959-06-18": "Sacrifice Feast Holiday* (*estimated)", + "1959-06-19": "Sacrifice Feast Holiday* (*estimated)", + "1959-06-20": "Sacrifice Feast Holiday* (*estimated)", + "1959-08-30": "Victory Day", + "1959-10-29": "Republic Day", + "1960-01-01": "New Year's Day", + "1960-03-28": "Ramadan Feast* (*estimated)", + "1960-03-29": "Ramadan Feast Holiday* (*estimated)", + "1960-03-30": "Ramadan Feast Holiday* (*estimated)", + "1960-04-23": "National Sovereignty and Children's Day", + "1960-05-01": "Labour Day", + "1960-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1960-06-04": "Sacrifice Feast* (*estimated)", + "1960-06-05": "Sacrifice Feast Holiday* (*estimated)", + "1960-06-06": "Sacrifice Feast Holiday* (*estimated)", + "1960-06-07": "Sacrifice Feast Holiday* (*estimated)", + "1960-08-30": "Victory Day", + "1960-10-29": "Republic Day", + "1961-01-01": "New Year's Day", + "1961-03-18": "Ramadan Feast* (*estimated)", + "1961-03-19": "Ramadan Feast Holiday* (*estimated)", + "1961-03-20": "Ramadan Feast Holiday* (*estimated)", + "1961-04-23": "National Sovereignty and Children's Day", + "1961-05-01": "Labour Day", + "1961-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1961-05-25": "Sacrifice Feast* (*estimated)", + "1961-05-26": "Sacrifice Feast Holiday* (*estimated)", + "1961-05-27": "Sacrifice Feast Holiday* (*estimated)", + "1961-05-28": "Sacrifice Feast Holiday* (*estimated)", + "1961-08-30": "Victory Day", + "1961-10-29": "Republic Day", + "1962-01-01": "New Year's Day", + "1962-03-07": "Ramadan Feast* (*estimated)", + "1962-03-08": "Ramadan Feast Holiday* (*estimated)", + "1962-03-09": "Ramadan Feast Holiday* (*estimated)", + "1962-04-23": "National Sovereignty and Children's Day", + "1962-05-01": "Labour Day", + "1962-05-14": "Sacrifice Feast* (*estimated)", + "1962-05-15": "Sacrifice Feast Holiday* (*estimated)", + "1962-05-16": "Sacrifice Feast Holiday* (*estimated)", + "1962-05-17": "Sacrifice Feast Holiday* (*estimated)", + "1962-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1962-08-30": "Victory Day", + "1962-10-29": "Republic Day", + "1963-01-01": "New Year's Day", + "1963-02-24": "Ramadan Feast* (*estimated)", + "1963-02-25": "Ramadan Feast Holiday* (*estimated)", + "1963-02-26": "Ramadan Feast Holiday* (*estimated)", + "1963-04-23": "National Sovereignty and Children's Day", + "1963-05-01": "Labour Day", + "1963-05-03": "Sacrifice Feast* (*estimated)", + "1963-05-04": "Sacrifice Feast Holiday* (*estimated)", + "1963-05-05": "Sacrifice Feast Holiday* (*estimated)", + "1963-05-06": "Sacrifice Feast Holiday* (*estimated)", + "1963-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1963-08-30": "Victory Day", + "1963-10-29": "Republic Day", + "1964-01-01": "New Year's Day", + "1964-02-14": "Ramadan Feast* (*estimated)", + "1964-02-15": "Ramadan Feast Holiday* (*estimated)", + "1964-02-16": "Ramadan Feast Holiday* (*estimated)", + "1964-04-22": "Sacrifice Feast* (*estimated)", + "1964-04-23": "National Sovereignty and Children's Day; Sacrifice Feast Holiday* (*estimated)", + "1964-04-24": "Sacrifice Feast Holiday* (*estimated)", + "1964-04-25": "Sacrifice Feast Holiday* (*estimated)", + "1964-05-01": "Labour Day", + "1964-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1964-08-30": "Victory Day", + "1964-10-29": "Republic Day", + "1965-01-01": "New Year's Day", + "1965-02-02": "Ramadan Feast* (*estimated)", + "1965-02-03": "Ramadan Feast Holiday* (*estimated)", + "1965-02-04": "Ramadan Feast Holiday* (*estimated)", + "1965-04-11": "Sacrifice Feast* (*estimated)", + "1965-04-12": "Sacrifice Feast Holiday* (*estimated)", + "1965-04-13": "Sacrifice Feast Holiday* (*estimated)", + "1965-04-14": "Sacrifice Feast Holiday* (*estimated)", + "1965-04-23": "National Sovereignty and Children's Day", + "1965-05-01": "Labour Day", + "1965-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1965-08-30": "Victory Day", + "1965-10-29": "Republic Day", + "1966-01-01": "New Year's Day", + "1966-01-22": "Ramadan Feast* (*estimated)", + "1966-01-23": "Ramadan Feast Holiday* (*estimated)", + "1966-01-24": "Ramadan Feast Holiday* (*estimated)", + "1966-04-01": "Sacrifice Feast* (*estimated)", + "1966-04-02": "Sacrifice Feast Holiday* (*estimated)", + "1966-04-03": "Sacrifice Feast Holiday* (*estimated)", + "1966-04-04": "Sacrifice Feast Holiday* (*estimated)", + "1966-04-23": "National Sovereignty and Children's Day", + "1966-05-01": "Labour Day", + "1966-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1966-08-30": "Victory Day", + "1966-10-29": "Republic Day", + "1967-01-01": "New Year's Day", + "1967-01-12": "Ramadan Feast* (*estimated)", + "1967-01-13": "Ramadan Feast Holiday* (*estimated)", + "1967-01-14": "Ramadan Feast Holiday* (*estimated)", + "1967-03-21": "Sacrifice Feast* (*estimated)", + "1967-03-22": "Sacrifice Feast Holiday* (*estimated)", + "1967-03-23": "Sacrifice Feast Holiday* (*estimated)", + "1967-03-24": "Sacrifice Feast Holiday* (*estimated)", + "1967-04-23": "National Sovereignty and Children's Day", + "1967-05-01": "Labour Day", + "1967-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1967-08-30": "Victory Day", + "1967-10-29": "Republic Day", + "1968-01-01": "New Year's Day; Ramadan Feast* (*estimated)", + "1968-01-02": "Ramadan Feast Holiday* (*estimated)", + "1968-01-03": "Ramadan Feast Holiday* (*estimated)", + "1968-03-09": "Sacrifice Feast* (*estimated)", + "1968-03-10": "Sacrifice Feast Holiday* (*estimated)", + "1968-03-11": "Sacrifice Feast Holiday* (*estimated)", + "1968-03-12": "Sacrifice Feast Holiday* (*estimated)", + "1968-04-23": "National Sovereignty and Children's Day", + "1968-05-01": "Labour Day", + "1968-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1968-08-30": "Victory Day", + "1968-10-29": "Republic Day", + "1968-12-21": "Ramadan Feast* (*estimated)", + "1968-12-22": "Ramadan Feast Holiday* (*estimated)", + "1968-12-23": "Ramadan Feast Holiday* (*estimated)", + "1969-01-01": "New Year's Day", + "1969-02-27": "Sacrifice Feast* (*estimated)", + "1969-02-28": "Sacrifice Feast Holiday* (*estimated)", + "1969-03-01": "Sacrifice Feast Holiday* (*estimated)", + "1969-03-02": "Sacrifice Feast Holiday* (*estimated)", + "1969-04-23": "National Sovereignty and Children's Day", + "1969-05-01": "Labour Day", + "1969-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1969-08-30": "Victory Day", + "1969-10-29": "Republic Day", + "1969-12-10": "Ramadan Feast* (*estimated)", + "1969-12-11": "Ramadan Feast Holiday* (*estimated)", + "1969-12-12": "Ramadan Feast Holiday* (*estimated)", + "1970-01-01": "New Year's Day", + "1970-02-16": "Sacrifice Feast* (*estimated)", + "1970-02-17": "Sacrifice Feast Holiday* (*estimated)", + "1970-02-18": "Sacrifice Feast Holiday* (*estimated)", + "1970-02-19": "Sacrifice Feast Holiday* (*estimated)", + "1970-04-23": "National Sovereignty and Children's Day", + "1970-05-01": "Labour Day", + "1970-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1970-08-30": "Victory Day", + "1970-10-29": "Republic Day", + "1970-11-30": "Ramadan Feast* (*estimated)", + "1970-12-01": "Ramadan Feast Holiday* (*estimated)", + "1970-12-02": "Ramadan Feast Holiday* (*estimated)", + "1971-01-01": "New Year's Day", + "1971-02-06": "Sacrifice Feast* (*estimated)", + "1971-02-07": "Sacrifice Feast Holiday* (*estimated)", + "1971-02-08": "Sacrifice Feast Holiday* (*estimated)", + "1971-02-09": "Sacrifice Feast Holiday* (*estimated)", + "1971-04-23": "National Sovereignty and Children's Day", + "1971-05-01": "Labour Day", + "1971-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1971-08-30": "Victory Day", + "1971-10-29": "Republic Day", + "1971-11-19": "Ramadan Feast* (*estimated)", + "1971-11-20": "Ramadan Feast Holiday* (*estimated)", + "1971-11-21": "Ramadan Feast Holiday* (*estimated)", + "1972-01-01": "New Year's Day", + "1972-01-26": "Sacrifice Feast* (*estimated)", + "1972-01-27": "Sacrifice Feast Holiday* (*estimated)", + "1972-01-28": "Sacrifice Feast Holiday* (*estimated)", + "1972-01-29": "Sacrifice Feast Holiday* (*estimated)", + "1972-04-23": "National Sovereignty and Children's Day", + "1972-05-01": "Labour Day", + "1972-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1972-08-30": "Victory Day", + "1972-10-29": "Republic Day", + "1972-11-07": "Ramadan Feast* (*estimated)", + "1972-11-08": "Ramadan Feast Holiday* (*estimated)", + "1972-11-09": "Ramadan Feast Holiday* (*estimated)", + "1973-01-01": "New Year's Day", + "1973-01-14": "Sacrifice Feast* (*estimated)", + "1973-01-15": "Sacrifice Feast Holiday* (*estimated)", + "1973-01-16": "Sacrifice Feast Holiday* (*estimated)", + "1973-01-17": "Sacrifice Feast Holiday* (*estimated)", + "1973-04-23": "National Sovereignty and Children's Day", + "1973-05-01": "Labour Day", + "1973-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1973-08-30": "Victory Day", + "1973-10-27": "Ramadan Feast* (*estimated)", + "1973-10-28": "Ramadan Feast Holiday* (*estimated)", + "1973-10-29": "Ramadan Feast Holiday* (*estimated); Republic Day", + "1974-01-01": "New Year's Day", + "1974-01-03": "Sacrifice Feast* (*estimated)", + "1974-01-04": "Sacrifice Feast Holiday* (*estimated)", + "1974-01-05": "Sacrifice Feast Holiday* (*estimated)", + "1974-01-06": "Sacrifice Feast Holiday* (*estimated)", + "1974-04-23": "National Sovereignty and Children's Day", + "1974-05-01": "Labour Day", + "1974-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1974-08-30": "Victory Day", + "1974-10-16": "Ramadan Feast* (*estimated)", + "1974-10-17": "Ramadan Feast Holiday* (*estimated)", + "1974-10-18": "Ramadan Feast Holiday* (*estimated)", + "1974-10-29": "Republic Day", + "1974-12-24": "Sacrifice Feast* (*estimated)", + "1974-12-25": "Sacrifice Feast Holiday* (*estimated)", + "1974-12-26": "Sacrifice Feast Holiday* (*estimated)", + "1974-12-27": "Sacrifice Feast Holiday* (*estimated)", + "1975-01-01": "New Year's Day", + "1975-04-23": "National Sovereignty and Children's Day", + "1975-05-01": "Labour Day", + "1975-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1975-08-30": "Victory Day", + "1975-10-06": "Ramadan Feast* (*estimated)", + "1975-10-07": "Ramadan Feast Holiday* (*estimated)", + "1975-10-08": "Ramadan Feast Holiday* (*estimated)", + "1975-10-29": "Republic Day", + "1975-12-13": "Sacrifice Feast* (*estimated)", + "1975-12-14": "Sacrifice Feast Holiday* (*estimated)", + "1975-12-15": "Sacrifice Feast Holiday* (*estimated)", + "1975-12-16": "Sacrifice Feast Holiday* (*estimated)", + "1976-01-01": "New Year's Day", + "1976-04-23": "National Sovereignty and Children's Day", + "1976-05-01": "Labour Day", + "1976-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1976-08-30": "Victory Day", + "1976-09-24": "Ramadan Feast* (*estimated)", + "1976-09-25": "Ramadan Feast Holiday* (*estimated)", + "1976-09-26": "Ramadan Feast Holiday* (*estimated)", + "1976-10-29": "Republic Day", + "1976-12-01": "Sacrifice Feast* (*estimated)", + "1976-12-02": "Sacrifice Feast Holiday* (*estimated)", + "1976-12-03": "Sacrifice Feast Holiday* (*estimated)", + "1976-12-04": "Sacrifice Feast Holiday* (*estimated)", + "1977-01-01": "New Year's Day", + "1977-04-23": "National Sovereignty and Children's Day", + "1977-05-01": "Labour Day", + "1977-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1977-08-30": "Victory Day", + "1977-09-14": "Ramadan Feast* (*estimated)", + "1977-09-15": "Ramadan Feast Holiday* (*estimated)", + "1977-09-16": "Ramadan Feast Holiday* (*estimated)", + "1977-10-29": "Republic Day", + "1977-11-21": "Sacrifice Feast* (*estimated)", + "1977-11-22": "Sacrifice Feast Holiday* (*estimated)", + "1977-11-23": "Sacrifice Feast Holiday* (*estimated)", + "1977-11-24": "Sacrifice Feast Holiday* (*estimated)", + "1978-01-01": "New Year's Day", + "1978-04-23": "National Sovereignty and Children's Day", + "1978-05-01": "Labour Day", + "1978-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1978-08-30": "Victory Day", + "1978-09-03": "Ramadan Feast* (*estimated)", + "1978-09-04": "Ramadan Feast Holiday* (*estimated)", + "1978-09-05": "Ramadan Feast Holiday* (*estimated)", + "1978-10-29": "Republic Day", + "1978-11-10": "Sacrifice Feast* (*estimated)", + "1978-11-11": "Sacrifice Feast Holiday* (*estimated)", + "1978-11-12": "Sacrifice Feast Holiday* (*estimated)", + "1978-11-13": "Sacrifice Feast Holiday* (*estimated)", + "1979-01-01": "New Year's Day", + "1979-04-23": "National Sovereignty and Children's Day", + "1979-05-01": "Labour Day", + "1979-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1979-08-23": "Ramadan Feast* (*estimated)", + "1979-08-24": "Ramadan Feast Holiday* (*estimated)", + "1979-08-25": "Ramadan Feast Holiday* (*estimated)", + "1979-08-30": "Victory Day", + "1979-10-29": "Republic Day", + "1979-10-31": "Sacrifice Feast* (*estimated)", + "1979-11-01": "Sacrifice Feast Holiday* (*estimated)", + "1979-11-02": "Sacrifice Feast Holiday* (*estimated)", + "1979-11-03": "Sacrifice Feast Holiday* (*estimated)", + "1980-01-01": "New Year's Day", + "1980-04-23": "National Sovereignty and Children's Day", + "1980-05-01": "Labour Day", + "1980-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1980-08-12": "Ramadan Feast* (*estimated)", + "1980-08-13": "Ramadan Feast Holiday* (*estimated)", + "1980-08-14": "Ramadan Feast Holiday* (*estimated)", + "1980-08-30": "Victory Day", + "1980-10-19": "Sacrifice Feast* (*estimated)", + "1980-10-20": "Sacrifice Feast Holiday* (*estimated)", + "1980-10-21": "Sacrifice Feast Holiday* (*estimated)", + "1980-10-22": "Sacrifice Feast Holiday* (*estimated)", + "1980-10-29": "Republic Day", + "1981-01-01": "New Year's Day", + "1981-04-23": "National Sovereignty and Children's Day", + "1981-05-01": "Labour Day", + "1981-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1981-08-01": "Ramadan Feast* (*estimated)", + "1981-08-02": "Ramadan Feast Holiday* (*estimated)", + "1981-08-03": "Ramadan Feast Holiday* (*estimated)", + "1981-08-30": "Victory Day", + "1981-10-08": "Sacrifice Feast* (*estimated)", + "1981-10-09": "Sacrifice Feast Holiday* (*estimated)", + "1981-10-10": "Sacrifice Feast Holiday* (*estimated)", + "1981-10-11": "Sacrifice Feast Holiday* (*estimated)", + "1981-10-29": "Republic Day", + "1982-01-01": "New Year's Day", + "1982-04-23": "National Sovereignty and Children's Day", + "1982-05-01": "Labour Day", + "1982-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1982-07-21": "Ramadan Feast* (*estimated)", + "1982-07-22": "Ramadan Feast Holiday* (*estimated)", + "1982-07-23": "Ramadan Feast Holiday* (*estimated)", + "1982-08-30": "Victory Day", + "1982-09-27": "Sacrifice Feast* (*estimated)", + "1982-09-28": "Sacrifice Feast Holiday* (*estimated)", + "1982-09-29": "Sacrifice Feast Holiday* (*estimated)", + "1982-09-30": "Sacrifice Feast Holiday* (*estimated)", + "1982-10-29": "Republic Day", + "1983-01-01": "New Year's Day", + "1983-04-23": "National Sovereignty and Children's Day", + "1983-05-01": "Labour Day", + "1983-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1983-07-11": "Ramadan Feast* (*estimated)", + "1983-07-12": "Ramadan Feast Holiday* (*estimated)", + "1983-07-13": "Ramadan Feast Holiday* (*estimated)", + "1983-08-30": "Victory Day", + "1983-09-17": "Sacrifice Feast* (*estimated)", + "1983-09-18": "Sacrifice Feast Holiday* (*estimated)", + "1983-09-19": "Sacrifice Feast Holiday* (*estimated)", + "1983-09-20": "Sacrifice Feast Holiday* (*estimated)", + "1983-10-29": "Republic Day", + "1984-01-01": "New Year's Day", + "1984-04-23": "National Sovereignty and Children's Day", + "1984-05-01": "Labour Day", + "1984-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1984-06-30": "Ramadan Feast* (*estimated)", + "1984-07-01": "Ramadan Feast Holiday* (*estimated)", + "1984-07-02": "Ramadan Feast Holiday* (*estimated)", + "1984-08-30": "Victory Day", + "1984-09-05": "Sacrifice Feast* (*estimated)", + "1984-09-06": "Sacrifice Feast Holiday* (*estimated)", + "1984-09-07": "Sacrifice Feast Holiday* (*estimated)", + "1984-09-08": "Sacrifice Feast Holiday* (*estimated)", + "1984-10-29": "Republic Day", + "1985-01-01": "New Year's Day", + "1985-04-23": "National Sovereignty and Children's Day", + "1985-05-01": "Labour Day", + "1985-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1985-06-19": "Ramadan Feast* (*estimated)", + "1985-06-20": "Ramadan Feast Holiday* (*estimated)", + "1985-06-21": "Ramadan Feast Holiday* (*estimated)", + "1985-08-26": "Sacrifice Feast* (*estimated)", + "1985-08-27": "Sacrifice Feast Holiday* (*estimated)", + "1985-08-28": "Sacrifice Feast Holiday* (*estimated)", + "1985-08-29": "Sacrifice Feast Holiday* (*estimated)", + "1985-08-30": "Victory Day", + "1985-10-29": "Republic Day", + "1986-01-01": "New Year's Day", + "1986-04-23": "National Sovereignty and Children's Day", + "1986-05-01": "Labour Day", + "1986-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1986-06-08": "Ramadan Feast* (*estimated)", + "1986-06-09": "Ramadan Feast Holiday* (*estimated)", + "1986-06-10": "Ramadan Feast Holiday* (*estimated)", + "1986-08-15": "Sacrifice Feast* (*estimated)", + "1986-08-16": "Sacrifice Feast Holiday* (*estimated)", + "1986-08-17": "Sacrifice Feast Holiday* (*estimated)", + "1986-08-18": "Sacrifice Feast Holiday* (*estimated)", + "1986-08-30": "Victory Day", + "1986-10-29": "Republic Day", + "1987-01-01": "New Year's Day", + "1987-04-23": "National Sovereignty and Children's Day", + "1987-05-01": "Labour Day", + "1987-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1987-05-28": "Ramadan Feast* (*estimated)", + "1987-05-29": "Ramadan Feast Holiday* (*estimated)", + "1987-05-30": "Ramadan Feast Holiday* (*estimated)", + "1987-08-04": "Sacrifice Feast* (*estimated)", + "1987-08-05": "Sacrifice Feast Holiday* (*estimated)", + "1987-08-06": "Sacrifice Feast Holiday* (*estimated)", + "1987-08-07": "Sacrifice Feast Holiday* (*estimated)", + "1987-08-30": "Victory Day", + "1987-10-29": "Republic Day", + "1988-01-01": "New Year's Day", + "1988-04-23": "National Sovereignty and Children's Day", + "1988-05-01": "Labour Day", + "1988-05-16": "Ramadan Feast* (*estimated)", + "1988-05-17": "Ramadan Feast Holiday* (*estimated)", + "1988-05-18": "Ramadan Feast Holiday* (*estimated)", + "1988-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1988-07-23": "Sacrifice Feast* (*estimated)", + "1988-07-24": "Sacrifice Feast Holiday* (*estimated)", + "1988-07-25": "Sacrifice Feast Holiday* (*estimated)", + "1988-07-26": "Sacrifice Feast Holiday* (*estimated)", + "1988-08-30": "Victory Day", + "1988-10-29": "Republic Day", + "1989-01-01": "New Year's Day", + "1989-04-23": "National Sovereignty and Children's Day", + "1989-05-01": "Labour Day", + "1989-05-06": "Ramadan Feast* (*estimated)", + "1989-05-07": "Ramadan Feast Holiday* (*estimated)", + "1989-05-08": "Ramadan Feast Holiday* (*estimated)", + "1989-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1989-07-13": "Sacrifice Feast* (*estimated)", + "1989-07-14": "Sacrifice Feast Holiday* (*estimated)", + "1989-07-15": "Sacrifice Feast Holiday* (*estimated)", + "1989-07-16": "Sacrifice Feast Holiday* (*estimated)", + "1989-08-30": "Victory Day", + "1989-10-29": "Republic Day", + "1990-01-01": "New Year's Day", + "1990-04-23": "National Sovereignty and Children's Day", + "1990-04-26": "Ramadan Feast* (*estimated)", + "1990-04-27": "Ramadan Feast Holiday* (*estimated)", + "1990-04-28": "Ramadan Feast Holiday* (*estimated)", + "1990-05-01": "Labour Day", + "1990-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1990-07-02": "Sacrifice Feast* (*estimated)", + "1990-07-03": "Sacrifice Feast Holiday* (*estimated)", + "1990-07-04": "Sacrifice Feast Holiday* (*estimated)", + "1990-07-05": "Sacrifice Feast Holiday* (*estimated)", + "1990-08-30": "Victory Day", + "1990-10-29": "Republic Day", + "1991-01-01": "New Year's Day", + "1991-04-15": "Ramadan Feast* (*estimated)", + "1991-04-16": "Ramadan Feast Holiday* (*estimated)", + "1991-04-17": "Ramadan Feast Holiday* (*estimated)", + "1991-04-23": "National Sovereignty and Children's Day", + "1991-05-01": "Labour Day", + "1991-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1991-06-22": "Sacrifice Feast* (*estimated)", + "1991-06-23": "Sacrifice Feast Holiday* (*estimated)", + "1991-06-24": "Sacrifice Feast Holiday* (*estimated)", + "1991-06-25": "Sacrifice Feast Holiday* (*estimated)", + "1991-08-30": "Victory Day", + "1991-10-29": "Republic Day", + "1992-01-01": "New Year's Day", + "1992-04-04": "Ramadan Feast* (*estimated)", + "1992-04-05": "Ramadan Feast Holiday* (*estimated)", + "1992-04-06": "Ramadan Feast Holiday* (*estimated)", + "1992-04-23": "National Sovereignty and Children's Day", + "1992-05-01": "Labour Day", + "1992-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1992-06-11": "Sacrifice Feast* (*estimated)", + "1992-06-12": "Sacrifice Feast Holiday* (*estimated)", + "1992-06-13": "Sacrifice Feast Holiday* (*estimated)", + "1992-06-14": "Sacrifice Feast Holiday* (*estimated)", + "1992-08-30": "Victory Day", + "1992-10-29": "Republic Day", + "1993-01-01": "New Year's Day", + "1993-03-24": "Ramadan Feast* (*estimated)", + "1993-03-25": "Ramadan Feast Holiday* (*estimated)", + "1993-03-26": "Ramadan Feast Holiday* (*estimated)", + "1993-04-23": "National Sovereignty and Children's Day", + "1993-05-01": "Labour Day", + "1993-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1993-05-31": "Sacrifice Feast* (*estimated)", + "1993-06-01": "Sacrifice Feast Holiday* (*estimated)", + "1993-06-02": "Sacrifice Feast Holiday* (*estimated)", + "1993-06-03": "Sacrifice Feast Holiday* (*estimated)", + "1993-08-30": "Victory Day", + "1993-10-29": "Republic Day", + "1994-01-01": "New Year's Day", + "1994-03-13": "Ramadan Feast* (*estimated)", + "1994-03-14": "Ramadan Feast Holiday* (*estimated)", + "1994-03-15": "Ramadan Feast Holiday* (*estimated)", + "1994-04-23": "National Sovereignty and Children's Day", + "1994-05-01": "Labour Day", + "1994-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1994-05-20": "Sacrifice Feast* (*estimated)", + "1994-05-21": "Sacrifice Feast Holiday* (*estimated)", + "1994-05-22": "Sacrifice Feast Holiday* (*estimated)", + "1994-05-23": "Sacrifice Feast Holiday* (*estimated)", + "1994-08-30": "Victory Day", + "1994-10-29": "Republic Day", + "1995-01-01": "New Year's Day", + "1995-03-02": "Ramadan Feast* (*estimated)", + "1995-03-03": "Ramadan Feast Holiday* (*estimated)", + "1995-03-04": "Ramadan Feast Holiday* (*estimated)", + "1995-04-23": "National Sovereignty and Children's Day", + "1995-05-01": "Labour Day", + "1995-05-09": "Sacrifice Feast* (*estimated)", + "1995-05-10": "Sacrifice Feast Holiday* (*estimated)", + "1995-05-11": "Sacrifice Feast Holiday* (*estimated)", + "1995-05-12": "Sacrifice Feast Holiday* (*estimated)", + "1995-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1995-08-30": "Victory Day", + "1995-10-29": "Republic Day", + "1996-01-01": "New Year's Day", + "1996-02-19": "Ramadan Feast* (*estimated)", + "1996-02-20": "Ramadan Feast Holiday* (*estimated)", + "1996-02-21": "Ramadan Feast Holiday* (*estimated)", + "1996-04-23": "National Sovereignty and Children's Day", + "1996-04-27": "Sacrifice Feast* (*estimated)", + "1996-04-28": "Sacrifice Feast Holiday* (*estimated)", + "1996-04-29": "Sacrifice Feast Holiday* (*estimated)", + "1996-04-30": "Sacrifice Feast Holiday* (*estimated)", + "1996-05-01": "Labour Day", + "1996-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1996-08-30": "Victory Day", + "1996-10-29": "Republic Day", + "1997-01-01": "New Year's Day", + "1997-02-08": "Ramadan Feast* (*estimated)", + "1997-02-09": "Ramadan Feast Holiday* (*estimated)", + "1997-02-10": "Ramadan Feast Holiday* (*estimated)", + "1997-04-17": "Sacrifice Feast* (*estimated)", + "1997-04-18": "Sacrifice Feast Holiday* (*estimated)", + "1997-04-19": "Sacrifice Feast Holiday* (*estimated)", + "1997-04-20": "Sacrifice Feast Holiday* (*estimated)", + "1997-04-23": "National Sovereignty and Children's Day", + "1997-05-01": "Labour Day", + "1997-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1997-08-30": "Victory Day", + "1997-10-29": "Republic Day", + "1998-01-01": "New Year's Day", + "1998-01-29": "Ramadan Feast* (*estimated)", + "1998-01-30": "Ramadan Feast Holiday* (*estimated)", + "1998-01-31": "Ramadan Feast Holiday* (*estimated)", + "1998-04-07": "Sacrifice Feast* (*estimated)", + "1998-04-08": "Sacrifice Feast Holiday* (*estimated)", + "1998-04-09": "Sacrifice Feast Holiday* (*estimated)", + "1998-04-10": "Sacrifice Feast Holiday* (*estimated)", + "1998-04-23": "National Sovereignty and Children's Day", + "1998-05-01": "Labour Day", + "1998-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1998-08-30": "Victory Day", + "1998-10-29": "Republic Day", + "1999-01-01": "New Year's Day", + "1999-01-18": "Ramadan Feast* (*estimated)", + "1999-01-19": "Ramadan Feast Holiday* (*estimated)", + "1999-01-20": "Ramadan Feast Holiday* (*estimated)", + "1999-03-27": "Sacrifice Feast* (*estimated)", + "1999-03-28": "Sacrifice Feast Holiday* (*estimated)", + "1999-03-29": "Sacrifice Feast Holiday* (*estimated)", + "1999-03-30": "Sacrifice Feast Holiday* (*estimated)", + "1999-04-23": "National Sovereignty and Children's Day", + "1999-05-01": "Labour Day", + "1999-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "1999-08-30": "Victory Day", + "1999-10-29": "Republic Day", + "2000-01-01": "New Year's Day", + "2000-01-08": "Ramadan Feast* (*estimated)", + "2000-01-09": "Ramadan Feast Holiday* (*estimated)", + "2000-01-10": "Ramadan Feast Holiday* (*estimated)", + "2000-03-16": "Sacrifice Feast* (*estimated)", + "2000-03-17": "Sacrifice Feast Holiday* (*estimated)", + "2000-03-18": "Sacrifice Feast Holiday* (*estimated)", + "2000-03-19": "Sacrifice Feast Holiday* (*estimated)", + "2000-04-23": "National Sovereignty and Children's Day", + "2000-05-01": "Labour Day", + "2000-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2000-08-30": "Victory Day", + "2000-10-29": "Republic Day", + "2000-12-27": "Ramadan Feast* (*estimated)", + "2000-12-28": "Ramadan Feast Holiday* (*estimated)", + "2000-12-29": "Ramadan Feast Holiday* (*estimated)", + "2001-01-01": "New Year's Day", + "2001-03-05": "Sacrifice Feast* (*estimated)", + "2001-03-06": "Sacrifice Feast Holiday* (*estimated)", + "2001-03-07": "Sacrifice Feast Holiday* (*estimated)", + "2001-03-08": "Sacrifice Feast Holiday* (*estimated)", + "2001-04-23": "National Sovereignty and Children's Day", + "2001-05-01": "Labour Day", + "2001-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2001-08-30": "Victory Day", + "2001-10-29": "Republic Day", + "2001-12-16": "Ramadan Feast* (*estimated)", + "2001-12-17": "Ramadan Feast Holiday* (*estimated)", + "2001-12-18": "Ramadan Feast Holiday* (*estimated)", + "2002-01-01": "New Year's Day", + "2002-02-22": "Sacrifice Feast* (*estimated)", + "2002-02-23": "Sacrifice Feast Holiday* (*estimated)", + "2002-02-24": "Sacrifice Feast Holiday* (*estimated)", + "2002-02-25": "Sacrifice Feast Holiday* (*estimated)", + "2002-04-23": "National Sovereignty and Children's Day", + "2002-05-01": "Labour Day", + "2002-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2002-08-30": "Victory Day", + "2002-10-29": "Republic Day", + "2002-12-05": "Ramadan Feast* (*estimated)", + "2002-12-06": "Ramadan Feast Holiday* (*estimated)", + "2002-12-07": "Ramadan Feast Holiday* (*estimated)", + "2003-01-01": "New Year's Day", + "2003-02-11": "Sacrifice Feast* (*estimated)", + "2003-02-12": "Sacrifice Feast Holiday* (*estimated)", + "2003-02-13": "Sacrifice Feast Holiday* (*estimated)", + "2003-02-14": "Sacrifice Feast Holiday* (*estimated)", + "2003-04-23": "National Sovereignty and Children's Day", + "2003-05-01": "Labour Day", + "2003-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2003-08-30": "Victory Day", + "2003-10-29": "Republic Day", + "2003-11-25": "Ramadan Feast* (*estimated)", + "2003-11-26": "Ramadan Feast Holiday* (*estimated)", + "2003-11-27": "Ramadan Feast Holiday* (*estimated)", + "2004-01-01": "New Year's Day", + "2004-02-01": "Sacrifice Feast* (*estimated)", + "2004-02-02": "Sacrifice Feast Holiday* (*estimated)", + "2004-02-03": "Sacrifice Feast Holiday* (*estimated)", + "2004-02-04": "Sacrifice Feast Holiday* (*estimated)", + "2004-04-23": "National Sovereignty and Children's Day", + "2004-05-01": "Labour Day", + "2004-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2004-08-30": "Victory Day", + "2004-10-29": "Republic Day", + "2004-11-14": "Ramadan Feast* (*estimated)", + "2004-11-15": "Ramadan Feast Holiday* (*estimated)", + "2004-11-16": "Ramadan Feast Holiday* (*estimated)", + "2005-01-01": "New Year's Day", + "2005-01-21": "Sacrifice Feast* (*estimated)", + "2005-01-22": "Sacrifice Feast Holiday* (*estimated)", + "2005-01-23": "Sacrifice Feast Holiday* (*estimated)", + "2005-01-24": "Sacrifice Feast Holiday* (*estimated)", + "2005-04-23": "National Sovereignty and Children's Day", + "2005-05-01": "Labour Day", + "2005-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2005-08-30": "Victory Day", + "2005-10-29": "Republic Day", + "2005-11-03": "Ramadan Feast* (*estimated)", + "2005-11-04": "Ramadan Feast Holiday* (*estimated)", + "2005-11-05": "Ramadan Feast Holiday* (*estimated)", + "2006-01-01": "New Year's Day", + "2006-01-10": "Sacrifice Feast* (*estimated)", + "2006-01-11": "Sacrifice Feast Holiday* (*estimated)", + "2006-01-12": "Sacrifice Feast Holiday* (*estimated)", + "2006-01-13": "Sacrifice Feast Holiday* (*estimated)", + "2006-04-23": "National Sovereignty and Children's Day", + "2006-05-01": "Labour Day", + "2006-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2006-08-30": "Victory Day", + "2006-10-23": "Ramadan Feast* (*estimated)", + "2006-10-24": "Ramadan Feast Holiday* (*estimated)", + "2006-10-25": "Ramadan Feast Holiday* (*estimated)", + "2006-10-29": "Republic Day", + "2006-12-31": "Sacrifice Feast* (*estimated)", + "2007-01-01": "New Year's Day; Sacrifice Feast Holiday* (*estimated)", + "2007-01-02": "Sacrifice Feast Holiday* (*estimated)", + "2007-01-03": "Sacrifice Feast Holiday* (*estimated)", + "2007-04-23": "National Sovereignty and Children's Day", + "2007-05-01": "Labour Day", + "2007-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2007-08-30": "Victory Day", + "2007-10-13": "Ramadan Feast* (*estimated)", + "2007-10-14": "Ramadan Feast Holiday* (*estimated)", + "2007-10-15": "Ramadan Feast Holiday* (*estimated)", + "2007-10-29": "Republic Day", + "2007-12-20": "Sacrifice Feast* (*estimated)", + "2007-12-21": "Sacrifice Feast Holiday* (*estimated)", + "2007-12-22": "Sacrifice Feast Holiday* (*estimated)", + "2007-12-23": "Sacrifice Feast Holiday* (*estimated)", + "2008-01-01": "New Year's Day", + "2008-04-23": "National Sovereignty and Children's Day", + "2008-05-01": "Labour Day", + "2008-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2008-08-30": "Victory Day", + "2008-10-01": "Ramadan Feast* (*estimated)", + "2008-10-02": "Ramadan Feast Holiday* (*estimated)", + "2008-10-03": "Ramadan Feast Holiday* (*estimated)", + "2008-10-29": "Republic Day", + "2008-12-08": "Sacrifice Feast* (*estimated)", + "2008-12-09": "Sacrifice Feast Holiday* (*estimated)", + "2008-12-10": "Sacrifice Feast Holiday* (*estimated)", + "2008-12-11": "Sacrifice Feast Holiday* (*estimated)", + "2009-01-01": "New Year's Day", + "2009-04-23": "National Sovereignty and Children's Day", + "2009-05-01": "Labour Day", + "2009-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2009-08-30": "Victory Day", + "2009-09-20": "Ramadan Feast* (*estimated)", + "2009-09-21": "Ramadan Feast Holiday* (*estimated)", + "2009-09-22": "Ramadan Feast Holiday* (*estimated)", + "2009-10-29": "Republic Day", + "2009-11-27": "Sacrifice Feast* (*estimated)", + "2009-11-28": "Sacrifice Feast Holiday* (*estimated)", + "2009-11-29": "Sacrifice Feast Holiday* (*estimated)", + "2009-11-30": "Sacrifice Feast Holiday* (*estimated)", + "2010-01-01": "New Year's Day", + "2010-04-23": "National Sovereignty and Children's Day", + "2010-05-01": "Labour Day", + "2010-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2010-08-30": "Victory Day", + "2010-09-10": "Ramadan Feast* (*estimated)", + "2010-09-11": "Ramadan Feast Holiday* (*estimated)", + "2010-09-12": "Ramadan Feast Holiday* (*estimated)", + "2010-10-29": "Republic Day", + "2010-11-16": "Sacrifice Feast* (*estimated)", + "2010-11-17": "Sacrifice Feast Holiday* (*estimated)", + "2010-11-18": "Sacrifice Feast Holiday* (*estimated)", + "2010-11-19": "Sacrifice Feast Holiday* (*estimated)", + "2011-01-01": "New Year's Day", + "2011-04-23": "National Sovereignty and Children's Day", + "2011-05-01": "Labour Day", + "2011-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2011-08-30": "Ramadan Feast* (*estimated); Victory Day", + "2011-08-31": "Ramadan Feast Holiday* (*estimated)", + "2011-09-01": "Ramadan Feast Holiday* (*estimated)", + "2011-10-29": "Republic Day", + "2011-11-06": "Sacrifice Feast* (*estimated)", + "2011-11-07": "Sacrifice Feast Holiday* (*estimated)", + "2011-11-08": "Sacrifice Feast Holiday* (*estimated)", + "2011-11-09": "Sacrifice Feast Holiday* (*estimated)", + "2012-01-01": "New Year's Day", + "2012-04-23": "National Sovereignty and Children's Day", + "2012-05-01": "Labour Day", + "2012-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2012-08-19": "Ramadan Feast* (*estimated)", + "2012-08-20": "Ramadan Feast Holiday* (*estimated)", + "2012-08-21": "Ramadan Feast Holiday* (*estimated)", + "2012-08-30": "Victory Day", + "2012-10-26": "Sacrifice Feast* (*estimated)", + "2012-10-27": "Sacrifice Feast Holiday* (*estimated)", + "2012-10-28": "Sacrifice Feast Holiday* (*estimated)", + "2012-10-29": "Republic Day; Sacrifice Feast Holiday* (*estimated)", + "2013-01-01": "New Year's Day", + "2013-04-23": "National Sovereignty and Children's Day", + "2013-05-01": "Labour Day", + "2013-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2013-08-08": "Ramadan Feast* (*estimated)", + "2013-08-09": "Ramadan Feast Holiday* (*estimated)", + "2013-08-10": "Ramadan Feast Holiday* (*estimated)", + "2013-08-30": "Victory Day", + "2013-10-15": "Sacrifice Feast* (*estimated)", + "2013-10-16": "Sacrifice Feast Holiday* (*estimated)", + "2013-10-17": "Sacrifice Feast Holiday* (*estimated)", + "2013-10-18": "Sacrifice Feast Holiday* (*estimated)", + "2013-10-29": "Republic Day", + "2014-01-01": "New Year's Day", + "2014-04-23": "National Sovereignty and Children's Day", + "2014-05-01": "Labour Day", + "2014-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2014-07-28": "Ramadan Feast* (*estimated)", + "2014-07-29": "Ramadan Feast Holiday* (*estimated)", + "2014-07-30": "Ramadan Feast Holiday* (*estimated)", + "2014-08-30": "Victory Day", + "2014-10-04": "Sacrifice Feast* (*estimated)", + "2014-10-05": "Sacrifice Feast Holiday* (*estimated)", + "2014-10-06": "Sacrifice Feast Holiday* (*estimated)", + "2014-10-07": "Sacrifice Feast Holiday* (*estimated)", + "2014-10-29": "Republic Day", + "2015-01-01": "New Year's Day", + "2015-04-23": "National Sovereignty and Children's Day", + "2015-05-01": "Labour Day", + "2015-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2015-07-17": "Ramadan Feast* (*estimated)", + "2015-07-18": "Ramadan Feast Holiday* (*estimated)", + "2015-07-19": "Ramadan Feast Holiday* (*estimated)", + "2015-08-30": "Victory Day", + "2015-09-23": "Sacrifice Feast* (*estimated)", + "2015-09-24": "Sacrifice Feast Holiday* (*estimated)", + "2015-09-25": "Sacrifice Feast Holiday* (*estimated)", + "2015-09-26": "Sacrifice Feast Holiday* (*estimated)", + "2015-10-29": "Republic Day", + "2016-01-01": "New Year's Day", + "2016-04-23": "National Sovereignty and Children's Day", + "2016-05-01": "Labour Day", + "2016-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2016-07-06": "Ramadan Feast* (*estimated)", + "2016-07-07": "Ramadan Feast Holiday* (*estimated)", + "2016-07-08": "Ramadan Feast Holiday* (*estimated)", + "2016-08-30": "Victory Day", + "2016-09-11": "Sacrifice Feast* (*estimated)", + "2016-09-12": "Sacrifice Feast Holiday* (*estimated)", + "2016-09-13": "Sacrifice Feast Holiday* (*estimated)", + "2016-09-14": "Sacrifice Feast Holiday* (*estimated)", + "2016-10-29": "Republic Day", + "2017-01-01": "New Year's Day", + "2017-04-23": "National Sovereignty and Children's Day", + "2017-05-01": "Labour Day", + "2017-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2017-06-25": "Ramadan Feast* (*estimated)", + "2017-06-26": "Ramadan Feast Holiday* (*estimated)", + "2017-06-27": "Ramadan Feast Holiday* (*estimated)", + "2017-07-15": "Democracy and National Unity Day", + "2017-08-30": "Victory Day", + "2017-09-01": "Sacrifice Feast* (*estimated)", + "2017-09-02": "Sacrifice Feast Holiday* (*estimated)", + "2017-09-03": "Sacrifice Feast Holiday* (*estimated)", + "2017-09-04": "Sacrifice Feast Holiday* (*estimated)", + "2017-10-29": "Republic Day", + "2018-01-01": "New Year's Day", + "2018-04-23": "National Sovereignty and Children's Day", + "2018-05-01": "Labour Day", + "2018-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2018-06-15": "Ramadan Feast* (*estimated)", + "2018-06-16": "Ramadan Feast Holiday* (*estimated)", + "2018-06-17": "Ramadan Feast Holiday* (*estimated)", + "2018-07-15": "Democracy and National Unity Day", + "2018-08-21": "Sacrifice Feast* (*estimated)", + "2018-08-22": "Sacrifice Feast Holiday* (*estimated)", + "2018-08-23": "Sacrifice Feast Holiday* (*estimated)", + "2018-08-24": "Sacrifice Feast Holiday* (*estimated)", + "2018-08-30": "Victory Day", + "2018-10-29": "Republic Day", + "2019-01-01": "New Year's Day", + "2019-04-23": "National Sovereignty and Children's Day", + "2019-05-01": "Labour Day", + "2019-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2019-06-04": "Ramadan Feast* (*estimated)", + "2019-06-05": "Ramadan Feast Holiday* (*estimated)", + "2019-06-06": "Ramadan Feast Holiday* (*estimated)", + "2019-07-15": "Democracy and National Unity Day", + "2019-08-11": "Sacrifice Feast* (*estimated)", + "2019-08-12": "Sacrifice Feast Holiday* (*estimated)", + "2019-08-13": "Sacrifice Feast Holiday* (*estimated)", + "2019-08-14": "Sacrifice Feast Holiday* (*estimated)", + "2019-08-30": "Victory Day", + "2019-10-29": "Republic Day", + "2020-01-01": "New Year's Day", + "2020-04-23": "National Sovereignty and Children's Day", + "2020-05-01": "Labour Day", + "2020-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2020-05-24": "Ramadan Feast* (*estimated)", + "2020-05-25": "Ramadan Feast Holiday* (*estimated)", + "2020-05-26": "Ramadan Feast Holiday* (*estimated)", + "2020-07-15": "Democracy and National Unity Day", + "2020-07-31": "Sacrifice Feast* (*estimated)", + "2020-08-01": "Sacrifice Feast Holiday* (*estimated)", + "2020-08-02": "Sacrifice Feast Holiday* (*estimated)", + "2020-08-03": "Sacrifice Feast Holiday* (*estimated)", + "2020-08-30": "Victory Day", + "2020-10-29": "Republic Day", + "2021-01-01": "New Year's Day", + "2021-04-23": "National Sovereignty and Children's Day", + "2021-05-01": "Labour Day", + "2021-05-13": "Ramadan Feast* (*estimated)", + "2021-05-14": "Ramadan Feast Holiday* (*estimated)", + "2021-05-15": "Ramadan Feast Holiday* (*estimated)", + "2021-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2021-07-15": "Democracy and National Unity Day", + "2021-07-20": "Sacrifice Feast* (*estimated)", + "2021-07-21": "Sacrifice Feast Holiday* (*estimated)", + "2021-07-22": "Sacrifice Feast Holiday* (*estimated)", + "2021-07-23": "Sacrifice Feast Holiday* (*estimated)", + "2021-08-30": "Victory Day", + "2021-10-29": "Republic Day", + "2022-01-01": "New Year's Day", + "2022-04-23": "National Sovereignty and Children's Day", + "2022-05-01": "Labour Day", + "2022-05-02": "Ramadan Feast* (*estimated)", + "2022-05-03": "Ramadan Feast Holiday* (*estimated)", + "2022-05-04": "Ramadan Feast Holiday* (*estimated)", + "2022-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2022-07-09": "Sacrifice Feast* (*estimated)", + "2022-07-10": "Sacrifice Feast Holiday* (*estimated)", + "2022-07-11": "Sacrifice Feast Holiday* (*estimated)", + "2022-07-12": "Sacrifice Feast Holiday* (*estimated)", + "2022-07-15": "Democracy and National Unity Day", + "2022-08-30": "Victory Day", + "2022-10-29": "Republic Day", + "2023-01-01": "New Year's Day", + "2023-04-21": "Ramadan Feast* (*estimated)", + "2023-04-22": "Ramadan Feast Holiday* (*estimated)", + "2023-04-23": "National Sovereignty and Children's Day; Ramadan Feast Holiday* (*estimated)", + "2023-05-01": "Labour Day", + "2023-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2023-06-28": "Sacrifice Feast* (*estimated)", + "2023-06-29": "Sacrifice Feast Holiday* (*estimated)", + "2023-06-30": "Sacrifice Feast Holiday* (*estimated)", + "2023-07-01": "Sacrifice Feast Holiday* (*estimated)", + "2023-07-15": "Democracy and National Unity Day", + "2023-08-30": "Victory Day", + "2023-10-29": "Republic Day", + "2024-01-01": "New Year's Day", + "2024-04-10": "Ramadan Feast* (*estimated)", + "2024-04-11": "Ramadan Feast Holiday* (*estimated)", + "2024-04-12": "Ramadan Feast Holiday* (*estimated)", + "2024-04-23": "National Sovereignty and Children's Day", + "2024-05-01": "Labour Day", + "2024-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2024-06-16": "Sacrifice Feast* (*estimated)", + "2024-06-17": "Sacrifice Feast Holiday* (*estimated)", + "2024-06-18": "Sacrifice Feast Holiday* (*estimated)", + "2024-06-19": "Sacrifice Feast Holiday* (*estimated)", + "2024-07-15": "Democracy and National Unity Day", + "2024-08-30": "Victory Day", + "2024-10-29": "Republic Day", + "2025-01-01": "New Year's Day", + "2025-03-30": "Ramadan Feast* (*estimated)", + "2025-03-31": "Ramadan Feast Holiday* (*estimated)", + "2025-04-01": "Ramadan Feast Holiday* (*estimated)", + "2025-04-23": "National Sovereignty and Children's Day", + "2025-05-01": "Labour Day", + "2025-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2025-06-06": "Sacrifice Feast* (*estimated)", + "2025-06-07": "Sacrifice Feast Holiday* (*estimated)", + "2025-06-08": "Sacrifice Feast Holiday* (*estimated)", + "2025-06-09": "Sacrifice Feast Holiday* (*estimated)", + "2025-07-15": "Democracy and National Unity Day", + "2025-08-30": "Victory Day", + "2025-10-29": "Republic Day", + "2026-01-01": "New Year's Day", + "2026-03-20": "Ramadan Feast* (*estimated)", + "2026-03-21": "Ramadan Feast Holiday* (*estimated)", + "2026-03-22": "Ramadan Feast Holiday* (*estimated)", + "2026-04-23": "National Sovereignty and Children's Day", + "2026-05-01": "Labour Day", + "2026-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2026-05-27": "Sacrifice Feast* (*estimated)", + "2026-05-28": "Sacrifice Feast Holiday* (*estimated)", + "2026-05-29": "Sacrifice Feast Holiday* (*estimated)", + "2026-05-30": "Sacrifice Feast Holiday* (*estimated)", + "2026-07-15": "Democracy and National Unity Day", + "2026-08-30": "Victory Day", + "2026-10-29": "Republic Day", + "2027-01-01": "New Year's Day", + "2027-03-09": "Ramadan Feast* (*estimated)", + "2027-03-10": "Ramadan Feast Holiday* (*estimated)", + "2027-03-11": "Ramadan Feast Holiday* (*estimated)", + "2027-04-23": "National Sovereignty and Children's Day", + "2027-05-01": "Labour Day", + "2027-05-16": "Sacrifice Feast* (*estimated)", + "2027-05-17": "Sacrifice Feast Holiday* (*estimated)", + "2027-05-18": "Sacrifice Feast Holiday* (*estimated)", + "2027-05-19": "Commemoration of Ataturk, Youth and Sports Day; Sacrifice Feast Holiday* (*estimated)", + "2027-07-15": "Democracy and National Unity Day", + "2027-08-30": "Victory Day", + "2027-10-29": "Republic Day", + "2028-01-01": "New Year's Day", + "2028-02-26": "Ramadan Feast* (*estimated)", + "2028-02-27": "Ramadan Feast Holiday* (*estimated)", + "2028-02-28": "Ramadan Feast Holiday* (*estimated)", + "2028-04-23": "National Sovereignty and Children's Day", + "2028-05-01": "Labour Day", + "2028-05-05": "Sacrifice Feast* (*estimated)", + "2028-05-06": "Sacrifice Feast Holiday* (*estimated)", + "2028-05-07": "Sacrifice Feast Holiday* (*estimated)", + "2028-05-08": "Sacrifice Feast Holiday* (*estimated)", + "2028-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2028-07-15": "Democracy and National Unity Day", + "2028-08-30": "Victory Day", + "2028-10-29": "Republic Day", + "2029-01-01": "New Year's Day", + "2029-02-14": "Ramadan Feast* (*estimated)", + "2029-02-15": "Ramadan Feast Holiday* (*estimated)", + "2029-02-16": "Ramadan Feast Holiday* (*estimated)", + "2029-04-23": "National Sovereignty and Children's Day", + "2029-04-24": "Sacrifice Feast* (*estimated)", + "2029-04-25": "Sacrifice Feast Holiday* (*estimated)", + "2029-04-26": "Sacrifice Feast Holiday* (*estimated)", + "2029-04-27": "Sacrifice Feast Holiday* (*estimated)", + "2029-05-01": "Labour Day", + "2029-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2029-07-15": "Democracy and National Unity Day", + "2029-08-30": "Victory Day", + "2029-10-29": "Republic Day", + "2030-01-01": "New Year's Day", + "2030-02-04": "Ramadan Feast* (*estimated)", + "2030-02-05": "Ramadan Feast Holiday* (*estimated)", + "2030-02-06": "Ramadan Feast Holiday* (*estimated)", + "2030-04-13": "Sacrifice Feast* (*estimated)", + "2030-04-14": "Sacrifice Feast Holiday* (*estimated)", + "2030-04-15": "Sacrifice Feast Holiday* (*estimated)", + "2030-04-16": "Sacrifice Feast Holiday* (*estimated)", + "2030-04-23": "National Sovereignty and Children's Day", + "2030-05-01": "Labour Day", + "2030-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2030-07-15": "Democracy and National Unity Day", + "2030-08-30": "Victory Day", + "2030-10-29": "Republic Day", + "2031-01-01": "New Year's Day", + "2031-01-24": "Ramadan Feast* (*estimated)", + "2031-01-25": "Ramadan Feast Holiday* (*estimated)", + "2031-01-26": "Ramadan Feast Holiday* (*estimated)", + "2031-04-02": "Sacrifice Feast* (*estimated)", + "2031-04-03": "Sacrifice Feast Holiday* (*estimated)", + "2031-04-04": "Sacrifice Feast Holiday* (*estimated)", + "2031-04-05": "Sacrifice Feast Holiday* (*estimated)", + "2031-04-23": "National Sovereignty and Children's Day", + "2031-05-01": "Labour Day", + "2031-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2031-07-15": "Democracy and National Unity Day", + "2031-08-30": "Victory Day", + "2031-10-29": "Republic Day", + "2032-01-01": "New Year's Day", + "2032-01-14": "Ramadan Feast* (*estimated)", + "2032-01-15": "Ramadan Feast Holiday* (*estimated)", + "2032-01-16": "Ramadan Feast Holiday* (*estimated)", + "2032-03-22": "Sacrifice Feast* (*estimated)", + "2032-03-23": "Sacrifice Feast Holiday* (*estimated)", + "2032-03-24": "Sacrifice Feast Holiday* (*estimated)", + "2032-03-25": "Sacrifice Feast Holiday* (*estimated)", + "2032-04-23": "National Sovereignty and Children's Day", + "2032-05-01": "Labour Day", + "2032-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2032-07-15": "Democracy and National Unity Day", + "2032-08-30": "Victory Day", + "2032-10-29": "Republic Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "Ramadan Feast* (*estimated)", + "2033-01-03": "Ramadan Feast Holiday* (*estimated)", + "2033-01-04": "Ramadan Feast Holiday* (*estimated)", + "2033-03-11": "Sacrifice Feast* (*estimated)", + "2033-03-12": "Sacrifice Feast Holiday* (*estimated)", + "2033-03-13": "Sacrifice Feast Holiday* (*estimated)", + "2033-03-14": "Sacrifice Feast Holiday* (*estimated)", + "2033-04-23": "National Sovereignty and Children's Day", + "2033-05-01": "Labour Day", + "2033-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2033-07-15": "Democracy and National Unity Day", + "2033-08-30": "Victory Day", + "2033-10-29": "Republic Day", + "2033-12-23": "Ramadan Feast* (*estimated)", + "2033-12-24": "Ramadan Feast Holiday* (*estimated)", + "2033-12-25": "Ramadan Feast Holiday* (*estimated)", + "2034-01-01": "New Year's Day", + "2034-03-01": "Sacrifice Feast* (*estimated)", + "2034-03-02": "Sacrifice Feast Holiday* (*estimated)", + "2034-03-03": "Sacrifice Feast Holiday* (*estimated)", + "2034-03-04": "Sacrifice Feast Holiday* (*estimated)", + "2034-04-23": "National Sovereignty and Children's Day", + "2034-05-01": "Labour Day", + "2034-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2034-07-15": "Democracy and National Unity Day", + "2034-08-30": "Victory Day", + "2034-10-29": "Republic Day", + "2034-12-12": "Ramadan Feast* (*estimated)", + "2034-12-13": "Ramadan Feast Holiday* (*estimated)", + "2034-12-14": "Ramadan Feast Holiday* (*estimated)", + "2035-01-01": "New Year's Day", + "2035-02-18": "Sacrifice Feast* (*estimated)", + "2035-02-19": "Sacrifice Feast Holiday* (*estimated)", + "2035-02-20": "Sacrifice Feast Holiday* (*estimated)", + "2035-02-21": "Sacrifice Feast Holiday* (*estimated)", + "2035-04-23": "National Sovereignty and Children's Day", + "2035-05-01": "Labour Day", + "2035-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2035-07-15": "Democracy and National Unity Day", + "2035-08-30": "Victory Day", + "2035-10-29": "Republic Day", + "2035-12-01": "Ramadan Feast* (*estimated)", + "2035-12-02": "Ramadan Feast Holiday* (*estimated)", + "2035-12-03": "Ramadan Feast Holiday* (*estimated)", + "2036-01-01": "New Year's Day", + "2036-02-07": "Sacrifice Feast* (*estimated)", + "2036-02-08": "Sacrifice Feast Holiday* (*estimated)", + "2036-02-09": "Sacrifice Feast Holiday* (*estimated)", + "2036-02-10": "Sacrifice Feast Holiday* (*estimated)", + "2036-04-23": "National Sovereignty and Children's Day", + "2036-05-01": "Labour Day", + "2036-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2036-07-15": "Democracy and National Unity Day", + "2036-08-30": "Victory Day", + "2036-10-29": "Republic Day", + "2036-11-19": "Ramadan Feast* (*estimated)", + "2036-11-20": "Ramadan Feast Holiday* (*estimated)", + "2036-11-21": "Ramadan Feast Holiday* (*estimated)", + "2037-01-01": "New Year's Day", + "2037-01-26": "Sacrifice Feast* (*estimated)", + "2037-01-27": "Sacrifice Feast Holiday* (*estimated)", + "2037-01-28": "Sacrifice Feast Holiday* (*estimated)", + "2037-01-29": "Sacrifice Feast Holiday* (*estimated)", + "2037-04-23": "National Sovereignty and Children's Day", + "2037-05-01": "Labour Day", + "2037-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2037-07-15": "Democracy and National Unity Day", + "2037-08-30": "Victory Day", + "2037-10-29": "Republic Day", + "2037-11-08": "Ramadan Feast* (*estimated)", + "2037-11-09": "Ramadan Feast Holiday* (*estimated)", + "2037-11-10": "Ramadan Feast Holiday* (*estimated)", + "2038-01-01": "New Year's Day", + "2038-01-16": "Sacrifice Feast* (*estimated)", + "2038-01-17": "Sacrifice Feast Holiday* (*estimated)", + "2038-01-18": "Sacrifice Feast Holiday* (*estimated)", + "2038-01-19": "Sacrifice Feast Holiday* (*estimated)", + "2038-04-23": "National Sovereignty and Children's Day", + "2038-05-01": "Labour Day", + "2038-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2038-07-15": "Democracy and National Unity Day", + "2038-08-30": "Victory Day", + "2038-10-29": "Ramadan Feast* (*estimated); Republic Day", + "2038-10-30": "Ramadan Feast Holiday* (*estimated)", + "2038-10-31": "Ramadan Feast Holiday* (*estimated)", + "2039-01-01": "New Year's Day", + "2039-01-05": "Sacrifice Feast* (*estimated)", + "2039-01-06": "Sacrifice Feast Holiday* (*estimated)", + "2039-01-07": "Sacrifice Feast Holiday* (*estimated)", + "2039-01-08": "Sacrifice Feast Holiday* (*estimated)", + "2039-04-23": "National Sovereignty and Children's Day", + "2039-05-01": "Labour Day", + "2039-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2039-07-15": "Democracy and National Unity Day", + "2039-08-30": "Victory Day", + "2039-10-19": "Ramadan Feast* (*estimated)", + "2039-10-20": "Ramadan Feast Holiday* (*estimated)", + "2039-10-21": "Ramadan Feast Holiday* (*estimated)", + "2039-10-29": "Republic Day", + "2039-12-26": "Sacrifice Feast* (*estimated)", + "2039-12-27": "Sacrifice Feast Holiday* (*estimated)", + "2039-12-28": "Sacrifice Feast Holiday* (*estimated)", + "2039-12-29": "Sacrifice Feast Holiday* (*estimated)", + "2040-01-01": "New Year's Day", + "2040-04-23": "National Sovereignty and Children's Day", + "2040-05-01": "Labour Day", + "2040-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2040-07-15": "Democracy and National Unity Day", + "2040-08-30": "Victory Day", + "2040-10-07": "Ramadan Feast* (*estimated)", + "2040-10-08": "Ramadan Feast Holiday* (*estimated)", + "2040-10-09": "Ramadan Feast Holiday* (*estimated)", + "2040-10-29": "Republic Day", + "2040-12-14": "Sacrifice Feast* (*estimated)", + "2040-12-15": "Sacrifice Feast Holiday* (*estimated)", + "2040-12-16": "Sacrifice Feast Holiday* (*estimated)", + "2040-12-17": "Sacrifice Feast Holiday* (*estimated)", + "2041-01-01": "New Year's Day", + "2041-04-23": "National Sovereignty and Children's Day", + "2041-05-01": "Labour Day", + "2041-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2041-07-15": "Democracy and National Unity Day", + "2041-08-30": "Victory Day", + "2041-09-26": "Ramadan Feast* (*estimated)", + "2041-09-27": "Ramadan Feast Holiday* (*estimated)", + "2041-09-28": "Ramadan Feast Holiday* (*estimated)", + "2041-10-29": "Republic Day", + "2041-12-04": "Sacrifice Feast* (*estimated)", + "2041-12-05": "Sacrifice Feast Holiday* (*estimated)", + "2041-12-06": "Sacrifice Feast Holiday* (*estimated)", + "2041-12-07": "Sacrifice Feast Holiday* (*estimated)", + "2042-01-01": "New Year's Day", + "2042-04-23": "National Sovereignty and Children's Day", + "2042-05-01": "Labour Day", + "2042-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2042-07-15": "Democracy and National Unity Day", + "2042-08-30": "Victory Day", + "2042-09-15": "Ramadan Feast* (*estimated)", + "2042-09-16": "Ramadan Feast Holiday* (*estimated)", + "2042-09-17": "Ramadan Feast Holiday* (*estimated)", + "2042-10-29": "Republic Day", + "2042-11-23": "Sacrifice Feast* (*estimated)", + "2042-11-24": "Sacrifice Feast Holiday* (*estimated)", + "2042-11-25": "Sacrifice Feast Holiday* (*estimated)", + "2042-11-26": "Sacrifice Feast Holiday* (*estimated)", + "2043-01-01": "New Year's Day", + "2043-04-23": "National Sovereignty and Children's Day", + "2043-05-01": "Labour Day", + "2043-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2043-07-15": "Democracy and National Unity Day", + "2043-08-30": "Victory Day", + "2043-09-04": "Ramadan Feast* (*estimated)", + "2043-09-05": "Ramadan Feast Holiday* (*estimated)", + "2043-09-06": "Ramadan Feast Holiday* (*estimated)", + "2043-10-29": "Republic Day", + "2043-11-12": "Sacrifice Feast* (*estimated)", + "2043-11-13": "Sacrifice Feast Holiday* (*estimated)", + "2043-11-14": "Sacrifice Feast Holiday* (*estimated)", + "2043-11-15": "Sacrifice Feast Holiday* (*estimated)", + "2044-01-01": "New Year's Day", + "2044-04-23": "National Sovereignty and Children's Day", + "2044-05-01": "Labour Day", + "2044-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2044-07-15": "Democracy and National Unity Day", + "2044-08-24": "Ramadan Feast* (*estimated)", + "2044-08-25": "Ramadan Feast Holiday* (*estimated)", + "2044-08-26": "Ramadan Feast Holiday* (*estimated)", + "2044-08-30": "Victory Day", + "2044-10-29": "Republic Day", + "2044-10-31": "Sacrifice Feast* (*estimated)", + "2044-11-01": "Sacrifice Feast Holiday* (*estimated)", + "2044-11-02": "Sacrifice Feast Holiday* (*estimated)", + "2044-11-03": "Sacrifice Feast Holiday* (*estimated)", + "2045-01-01": "New Year's Day", + "2045-04-23": "National Sovereignty and Children's Day", + "2045-05-01": "Labour Day", + "2045-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2045-07-15": "Democracy and National Unity Day", + "2045-08-14": "Ramadan Feast* (*estimated)", + "2045-08-15": "Ramadan Feast Holiday* (*estimated)", + "2045-08-16": "Ramadan Feast Holiday* (*estimated)", + "2045-08-30": "Victory Day", + "2045-10-21": "Sacrifice Feast* (*estimated)", + "2045-10-22": "Sacrifice Feast Holiday* (*estimated)", + "2045-10-23": "Sacrifice Feast Holiday* (*estimated)", + "2045-10-24": "Sacrifice Feast Holiday* (*estimated)", + "2045-10-29": "Republic Day", + "2046-01-01": "New Year's Day", + "2046-04-23": "National Sovereignty and Children's Day", + "2046-05-01": "Labour Day", + "2046-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2046-07-15": "Democracy and National Unity Day", + "2046-08-03": "Ramadan Feast* (*estimated)", + "2046-08-04": "Ramadan Feast Holiday* (*estimated)", + "2046-08-05": "Ramadan Feast Holiday* (*estimated)", + "2046-08-30": "Victory Day", + "2046-10-10": "Sacrifice Feast* (*estimated)", + "2046-10-11": "Sacrifice Feast Holiday* (*estimated)", + "2046-10-12": "Sacrifice Feast Holiday* (*estimated)", + "2046-10-13": "Sacrifice Feast Holiday* (*estimated)", + "2046-10-29": "Republic Day", + "2047-01-01": "New Year's Day", + "2047-04-23": "National Sovereignty and Children's Day", + "2047-05-01": "Labour Day", + "2047-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2047-07-15": "Democracy and National Unity Day", + "2047-07-24": "Ramadan Feast* (*estimated)", + "2047-07-25": "Ramadan Feast Holiday* (*estimated)", + "2047-07-26": "Ramadan Feast Holiday* (*estimated)", + "2047-08-30": "Victory Day", + "2047-09-30": "Sacrifice Feast* (*estimated)", + "2047-10-01": "Sacrifice Feast Holiday* (*estimated)", + "2047-10-02": "Sacrifice Feast Holiday* (*estimated)", + "2047-10-03": "Sacrifice Feast Holiday* (*estimated)", + "2047-10-29": "Republic Day", + "2048-01-01": "New Year's Day", + "2048-04-23": "National Sovereignty and Children's Day", + "2048-05-01": "Labour Day", + "2048-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2048-07-12": "Ramadan Feast* (*estimated)", + "2048-07-13": "Ramadan Feast Holiday* (*estimated)", + "2048-07-14": "Ramadan Feast Holiday* (*estimated)", + "2048-07-15": "Democracy and National Unity Day", + "2048-08-30": "Victory Day", + "2048-09-19": "Sacrifice Feast* (*estimated)", + "2048-09-20": "Sacrifice Feast Holiday* (*estimated)", + "2048-09-21": "Sacrifice Feast Holiday* (*estimated)", + "2048-09-22": "Sacrifice Feast Holiday* (*estimated)", + "2048-10-29": "Republic Day", + "2049-01-01": "New Year's Day", + "2049-04-23": "National Sovereignty and Children's Day", + "2049-05-01": "Labour Day", + "2049-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2049-07-01": "Ramadan Feast* (*estimated)", + "2049-07-02": "Ramadan Feast Holiday* (*estimated)", + "2049-07-03": "Ramadan Feast Holiday* (*estimated)", + "2049-07-15": "Democracy and National Unity Day", + "2049-08-30": "Victory Day", + "2049-09-08": "Sacrifice Feast* (*estimated)", + "2049-09-09": "Sacrifice Feast Holiday* (*estimated)", + "2049-09-10": "Sacrifice Feast Holiday* (*estimated)", + "2049-09-11": "Sacrifice Feast Holiday* (*estimated)", + "2049-10-29": "Republic Day", + "2050-01-01": "New Year's Day", + "2050-04-23": "National Sovereignty and Children's Day", + "2050-05-01": "Labour Day", + "2050-05-19": "Commemoration of Ataturk, Youth and Sports Day", + "2050-06-20": "Ramadan Feast* (*estimated)", + "2050-06-21": "Ramadan Feast Holiday* (*estimated)", + "2050-06-22": "Ramadan Feast Holiday* (*estimated)", + "2050-07-15": "Democracy and National Unity Day", + "2050-08-28": "Sacrifice Feast* (*estimated)", + "2050-08-29": "Sacrifice Feast Holiday* (*estimated)", + "2050-08-30": "Sacrifice Feast Holiday* (*estimated); Victory Day", + "2050-08-31": "Sacrifice Feast Holiday* (*estimated)", + "2050-10-29": "Republic Day" +} diff --git a/snapshots/countries/TW.json b/snapshots/countries/TW.json new file mode 100644 index 000000000..a106048f4 --- /dev/null +++ b/snapshots/countries/TW.json @@ -0,0 +1,1084 @@ +{ + "1950-01-01": "Republic of China Founding Day / New Year's Day", + "1950-02-16": "Lunar New Year's Eve", + "1950-02-17": "Lunar New Year", + "1950-02-18": "Lunar New Year Holiday", + "1950-02-19": "Lunar New Year Holiday", + "1950-06-19": "Dragon Boat Festival", + "1950-09-26": "Mid-Autumn Festival", + "1950-10-10": "National Day", + "1951-01-01": "Republic of China Founding Day / New Year's Day", + "1951-02-05": "Lunar New Year's Eve", + "1951-02-06": "Lunar New Year", + "1951-02-07": "Lunar New Year Holiday", + "1951-02-08": "Lunar New Year Holiday", + "1951-06-09": "Dragon Boat Festival", + "1951-09-15": "Mid-Autumn Festival", + "1951-10-10": "National Day", + "1952-01-01": "Republic of China Founding Day / New Year's Day", + "1952-01-26": "Lunar New Year's Eve", + "1952-01-27": "Lunar New Year", + "1952-01-28": "Lunar New Year Holiday", + "1952-01-29": "Lunar New Year Holiday", + "1952-05-28": "Dragon Boat Festival", + "1952-10-03": "Mid-Autumn Festival", + "1952-10-10": "National Day", + "1953-01-01": "Republic of China Founding Day / New Year's Day", + "1953-02-13": "Lunar New Year's Eve", + "1953-02-14": "Lunar New Year", + "1953-02-15": "Lunar New Year Holiday", + "1953-02-16": "Lunar New Year Holiday", + "1953-06-15": "Dragon Boat Festival", + "1953-09-22": "Mid-Autumn Festival", + "1953-10-10": "National Day", + "1954-01-01": "Republic of China Founding Day / New Year's Day", + "1954-02-02": "Lunar New Year's Eve", + "1954-02-03": "Lunar New Year", + "1954-02-04": "Lunar New Year Holiday", + "1954-02-05": "Lunar New Year Holiday", + "1954-06-05": "Dragon Boat Festival", + "1954-09-11": "Mid-Autumn Festival", + "1954-10-10": "National Day", + "1955-01-01": "Republic of China Founding Day / New Year's Day", + "1955-01-23": "Lunar New Year's Eve", + "1955-01-24": "Lunar New Year", + "1955-01-25": "Lunar New Year Holiday", + "1955-01-26": "Lunar New Year Holiday", + "1955-06-24": "Dragon Boat Festival", + "1955-09-30": "Mid-Autumn Festival", + "1955-10-10": "National Day", + "1956-01-01": "Republic of China Founding Day / New Year's Day", + "1956-02-11": "Lunar New Year's Eve", + "1956-02-12": "Lunar New Year", + "1956-02-13": "Lunar New Year Holiday", + "1956-02-14": "Lunar New Year Holiday", + "1956-06-13": "Dragon Boat Festival", + "1956-09-19": "Mid-Autumn Festival", + "1956-10-10": "National Day", + "1957-01-01": "Republic of China Founding Day / New Year's Day", + "1957-01-30": "Lunar New Year's Eve", + "1957-01-31": "Lunar New Year", + "1957-02-01": "Lunar New Year Holiday", + "1957-02-02": "Lunar New Year Holiday", + "1957-06-02": "Dragon Boat Festival", + "1957-09-08": "Mid-Autumn Festival", + "1957-10-10": "National Day", + "1958-01-01": "Republic of China Founding Day / New Year's Day", + "1958-02-17": "Lunar New Year's Eve", + "1958-02-18": "Lunar New Year", + "1958-02-19": "Lunar New Year Holiday", + "1958-02-20": "Lunar New Year Holiday", + "1958-06-21": "Dragon Boat Festival", + "1958-09-27": "Mid-Autumn Festival", + "1958-10-10": "National Day", + "1959-01-01": "Republic of China Founding Day / New Year's Day", + "1959-02-07": "Lunar New Year's Eve", + "1959-02-08": "Lunar New Year", + "1959-02-09": "Lunar New Year Holiday", + "1959-02-10": "Lunar New Year Holiday", + "1959-06-10": "Dragon Boat Festival", + "1959-09-17": "Mid-Autumn Festival", + "1959-10-10": "National Day", + "1960-01-01": "Republic of China Founding Day / New Year's Day", + "1960-01-27": "Lunar New Year's Eve", + "1960-01-28": "Lunar New Year", + "1960-01-29": "Lunar New Year Holiday", + "1960-01-30": "Lunar New Year Holiday", + "1960-05-29": "Dragon Boat Festival", + "1960-10-05": "Mid-Autumn Festival", + "1960-10-10": "National Day", + "1961-01-01": "Republic of China Founding Day / New Year's Day", + "1961-02-14": "Lunar New Year's Eve", + "1961-02-15": "Lunar New Year", + "1961-02-16": "Lunar New Year Holiday", + "1961-02-17": "Lunar New Year Holiday", + "1961-06-17": "Dragon Boat Festival", + "1961-09-24": "Mid-Autumn Festival", + "1961-10-10": "National Day", + "1962-01-01": "Republic of China Founding Day / New Year's Day", + "1962-02-04": "Lunar New Year's Eve", + "1962-02-05": "Lunar New Year", + "1962-02-06": "Lunar New Year Holiday", + "1962-02-07": "Lunar New Year Holiday", + "1962-06-06": "Dragon Boat Festival", + "1962-09-13": "Mid-Autumn Festival", + "1962-10-10": "National Day", + "1963-01-01": "Republic of China Founding Day / New Year's Day", + "1963-01-24": "Lunar New Year's Eve", + "1963-01-25": "Lunar New Year", + "1963-01-26": "Lunar New Year Holiday", + "1963-01-27": "Lunar New Year Holiday", + "1963-06-25": "Dragon Boat Festival", + "1963-10-02": "Mid-Autumn Festival", + "1963-10-10": "National Day", + "1964-01-01": "Republic of China Founding Day / New Year's Day", + "1964-02-12": "Lunar New Year's Eve", + "1964-02-13": "Lunar New Year", + "1964-02-14": "Lunar New Year Holiday", + "1964-02-15": "Lunar New Year Holiday", + "1964-06-14": "Dragon Boat Festival", + "1964-09-20": "Mid-Autumn Festival", + "1964-10-10": "National Day", + "1965-01-01": "Republic of China Founding Day / New Year's Day", + "1965-02-01": "Lunar New Year's Eve", + "1965-02-02": "Lunar New Year", + "1965-02-03": "Lunar New Year Holiday", + "1965-02-04": "Lunar New Year Holiday", + "1965-06-04": "Dragon Boat Festival", + "1965-09-10": "Mid-Autumn Festival", + "1965-10-10": "National Day", + "1966-01-01": "Republic of China Founding Day / New Year's Day", + "1966-01-20": "Lunar New Year's Eve", + "1966-01-21": "Lunar New Year", + "1966-01-22": "Lunar New Year Holiday", + "1966-01-23": "Lunar New Year Holiday", + "1966-06-23": "Dragon Boat Festival", + "1966-09-29": "Mid-Autumn Festival", + "1966-10-10": "National Day", + "1967-01-01": "Republic of China Founding Day / New Year's Day", + "1967-02-08": "Lunar New Year's Eve", + "1967-02-09": "Lunar New Year", + "1967-02-10": "Lunar New Year Holiday", + "1967-02-11": "Lunar New Year Holiday", + "1967-06-12": "Dragon Boat Festival", + "1967-09-18": "Mid-Autumn Festival", + "1967-10-10": "National Day", + "1968-01-01": "Republic of China Founding Day / New Year's Day", + "1968-01-29": "Lunar New Year's Eve", + "1968-01-30": "Lunar New Year", + "1968-01-31": "Lunar New Year Holiday", + "1968-02-01": "Lunar New Year Holiday", + "1968-05-31": "Dragon Boat Festival", + "1968-10-06": "Mid-Autumn Festival", + "1968-10-10": "National Day", + "1969-01-01": "Republic of China Founding Day / New Year's Day", + "1969-02-16": "Lunar New Year's Eve", + "1969-02-17": "Lunar New Year", + "1969-02-18": "Lunar New Year Holiday", + "1969-02-19": "Lunar New Year Holiday", + "1969-06-19": "Dragon Boat Festival", + "1969-09-26": "Mid-Autumn Festival", + "1969-10-10": "National Day", + "1970-01-01": "Republic of China Founding Day / New Year's Day", + "1970-02-05": "Lunar New Year's Eve", + "1970-02-06": "Lunar New Year", + "1970-02-07": "Lunar New Year Holiday", + "1970-02-08": "Lunar New Year Holiday", + "1970-06-08": "Dragon Boat Festival", + "1970-09-15": "Mid-Autumn Festival", + "1970-10-10": "National Day", + "1971-01-01": "Republic of China Founding Day / New Year's Day", + "1971-01-26": "Lunar New Year's Eve", + "1971-01-27": "Lunar New Year", + "1971-01-28": "Lunar New Year Holiday", + "1971-01-29": "Lunar New Year Holiday", + "1971-05-28": "Dragon Boat Festival", + "1971-10-03": "Mid-Autumn Festival", + "1971-10-10": "National Day", + "1972-01-01": "Republic of China Founding Day / New Year's Day", + "1972-02-14": "Lunar New Year's Eve", + "1972-02-15": "Lunar New Year", + "1972-02-16": "Lunar New Year Holiday", + "1972-02-17": "Lunar New Year Holiday", + "1972-04-04": "Tomb Sweeping Day", + "1972-06-15": "Dragon Boat Festival", + "1972-09-22": "Mid-Autumn Festival", + "1972-10-10": "National Day", + "1973-01-01": "Republic of China Founding Day / New Year's Day", + "1973-02-02": "Lunar New Year's Eve", + "1973-02-03": "Lunar New Year", + "1973-02-04": "Lunar New Year Holiday", + "1973-02-05": "Lunar New Year Holiday", + "1973-04-05": "Tomb Sweeping Day", + "1973-06-05": "Dragon Boat Festival", + "1973-09-11": "Mid-Autumn Festival", + "1973-10-10": "National Day", + "1974-01-01": "Republic of China Founding Day / New Year's Day", + "1974-01-22": "Lunar New Year's Eve", + "1974-01-23": "Lunar New Year", + "1974-01-24": "Lunar New Year Holiday", + "1974-01-25": "Lunar New Year Holiday", + "1974-04-05": "Tomb Sweeping Day", + "1974-06-24": "Dragon Boat Festival", + "1974-09-30": "Mid-Autumn Festival", + "1974-10-10": "National Day", + "1975-01-01": "Republic of China Founding Day / New Year's Day", + "1975-02-10": "Lunar New Year's Eve", + "1975-02-11": "Lunar New Year", + "1975-02-12": "Lunar New Year Holiday", + "1975-02-13": "Lunar New Year Holiday", + "1975-04-05": "Tomb Sweeping Day", + "1975-06-14": "Dragon Boat Festival", + "1975-09-20": "Mid-Autumn Festival", + "1975-10-10": "National Day", + "1976-01-01": "Republic of China Founding Day / New Year's Day", + "1976-01-30": "Lunar New Year's Eve", + "1976-01-31": "Lunar New Year", + "1976-02-01": "Lunar New Year Holiday", + "1976-02-02": "Lunar New Year Holiday", + "1976-04-04": "Tomb Sweeping Day", + "1976-06-02": "Dragon Boat Festival", + "1976-09-08": "Mid-Autumn Festival", + "1976-10-10": "National Day", + "1977-01-01": "Republic of China Founding Day / New Year's Day", + "1977-02-17": "Lunar New Year's Eve", + "1977-02-18": "Lunar New Year", + "1977-02-19": "Lunar New Year Holiday", + "1977-02-20": "Lunar New Year Holiday", + "1977-04-05": "Tomb Sweeping Day", + "1977-06-21": "Dragon Boat Festival", + "1977-09-27": "Mid-Autumn Festival", + "1977-10-10": "National Day", + "1978-01-01": "Republic of China Founding Day / New Year's Day", + "1978-02-06": "Lunar New Year's Eve", + "1978-02-07": "Lunar New Year", + "1978-02-08": "Lunar New Year Holiday", + "1978-02-09": "Lunar New Year Holiday", + "1978-04-05": "Tomb Sweeping Day", + "1978-06-10": "Dragon Boat Festival", + "1978-09-17": "Mid-Autumn Festival", + "1978-10-10": "National Day", + "1979-01-01": "Republic of China Founding Day / New Year's Day", + "1979-01-27": "Lunar New Year's Eve", + "1979-01-28": "Lunar New Year", + "1979-01-29": "Lunar New Year Holiday", + "1979-01-30": "Lunar New Year Holiday", + "1979-04-05": "Tomb Sweeping Day", + "1979-05-30": "Dragon Boat Festival", + "1979-10-05": "Mid-Autumn Festival", + "1979-10-10": "National Day", + "1980-01-01": "Republic of China Founding Day / New Year's Day", + "1980-02-15": "Lunar New Year's Eve", + "1980-02-16": "Lunar New Year", + "1980-02-17": "Lunar New Year Holiday", + "1980-02-18": "Lunar New Year Holiday", + "1980-04-04": "Tomb Sweeping Day", + "1980-06-17": "Dragon Boat Festival", + "1980-09-23": "Mid-Autumn Festival", + "1980-10-10": "National Day", + "1981-01-01": "Republic of China Founding Day / New Year's Day", + "1981-02-04": "Lunar New Year's Eve", + "1981-02-05": "Lunar New Year", + "1981-02-06": "Lunar New Year Holiday", + "1981-02-07": "Lunar New Year Holiday", + "1981-04-05": "Tomb Sweeping Day", + "1981-06-06": "Dragon Boat Festival", + "1981-09-12": "Mid-Autumn Festival", + "1981-10-10": "National Day", + "1982-01-01": "Republic of China Founding Day / New Year's Day", + "1982-01-24": "Lunar New Year's Eve", + "1982-01-25": "Lunar New Year", + "1982-01-26": "Lunar New Year Holiday", + "1982-01-27": "Lunar New Year Holiday", + "1982-04-05": "Tomb Sweeping Day", + "1982-06-25": "Dragon Boat Festival", + "1982-10-01": "Mid-Autumn Festival", + "1982-10-10": "National Day", + "1983-01-01": "Republic of China Founding Day / New Year's Day", + "1983-02-12": "Lunar New Year's Eve", + "1983-02-13": "Lunar New Year", + "1983-02-14": "Lunar New Year Holiday", + "1983-02-15": "Lunar New Year Holiday", + "1983-04-05": "Tomb Sweeping Day", + "1983-06-15": "Dragon Boat Festival", + "1983-09-21": "Mid-Autumn Festival", + "1983-10-10": "National Day", + "1984-01-01": "Republic of China Founding Day / New Year's Day", + "1984-02-01": "Lunar New Year's Eve", + "1984-02-02": "Lunar New Year", + "1984-02-03": "Lunar New Year Holiday", + "1984-02-04": "Lunar New Year Holiday", + "1984-04-04": "Tomb Sweeping Day", + "1984-06-04": "Dragon Boat Festival", + "1984-09-10": "Mid-Autumn Festival", + "1984-10-10": "National Day", + "1985-01-01": "Republic of China Founding Day / New Year's Day", + "1985-02-19": "Lunar New Year's Eve", + "1985-02-20": "Lunar New Year", + "1985-02-21": "Lunar New Year Holiday", + "1985-02-22": "Lunar New Year Holiday", + "1985-04-05": "Tomb Sweeping Day", + "1985-06-22": "Dragon Boat Festival", + "1985-09-29": "Mid-Autumn Festival", + "1985-10-10": "National Day", + "1986-01-01": "Republic of China Founding Day / New Year's Day", + "1986-02-08": "Lunar New Year's Eve", + "1986-02-09": "Lunar New Year", + "1986-02-10": "Lunar New Year Holiday", + "1986-02-11": "Lunar New Year Holiday", + "1986-04-05": "Tomb Sweeping Day", + "1986-06-11": "Dragon Boat Festival", + "1986-09-18": "Mid-Autumn Festival", + "1986-10-10": "National Day", + "1987-01-01": "Republic of China Founding Day / New Year's Day", + "1987-01-28": "Lunar New Year's Eve", + "1987-01-29": "Lunar New Year", + "1987-01-30": "Lunar New Year Holiday", + "1987-01-31": "Lunar New Year Holiday", + "1987-04-05": "Tomb Sweeping Day", + "1987-05-31": "Dragon Boat Festival", + "1987-10-07": "Mid-Autumn Festival", + "1987-10-10": "National Day", + "1988-01-01": "Republic of China Founding Day / New Year's Day", + "1988-02-16": "Lunar New Year's Eve", + "1988-02-17": "Lunar New Year", + "1988-02-18": "Lunar New Year Holiday", + "1988-02-19": "Lunar New Year Holiday", + "1988-04-04": "Tomb Sweeping Day", + "1988-06-18": "Dragon Boat Festival", + "1988-09-25": "Mid-Autumn Festival", + "1988-10-10": "National Day", + "1989-01-01": "Republic of China Founding Day / New Year's Day", + "1989-02-05": "Lunar New Year's Eve", + "1989-02-06": "Lunar New Year", + "1989-02-07": "Lunar New Year Holiday", + "1989-02-08": "Lunar New Year Holiday", + "1989-04-05": "Tomb Sweeping Day", + "1989-06-08": "Dragon Boat Festival", + "1989-09-14": "Mid-Autumn Festival", + "1989-10-10": "National Day", + "1990-01-01": "Republic of China Founding Day / New Year's Day", + "1990-01-26": "Lunar New Year's Eve", + "1990-01-27": "Lunar New Year", + "1990-01-28": "Lunar New Year Holiday", + "1990-01-29": "Lunar New Year Holiday", + "1990-04-04": "Children's Day", + "1990-04-05": "Tomb Sweeping Day", + "1990-05-28": "Dragon Boat Festival", + "1990-10-03": "Mid-Autumn Festival", + "1990-10-10": "National Day", + "1991-01-01": "Republic of China Founding Day / New Year's Day", + "1991-02-14": "Lunar New Year's Eve", + "1991-02-15": "Lunar New Year", + "1991-02-16": "Lunar New Year Holiday", + "1991-02-17": "Lunar New Year Holiday", + "1991-04-04": "Children's Day", + "1991-04-05": "Tomb Sweeping Day", + "1991-06-16": "Dragon Boat Festival", + "1991-09-22": "Mid-Autumn Festival", + "1991-10-10": "National Day", + "1992-01-01": "Republic of China Founding Day / New Year's Day", + "1992-02-03": "Lunar New Year's Eve", + "1992-02-04": "Lunar New Year", + "1992-02-05": "Lunar New Year Holiday", + "1992-02-06": "Lunar New Year Holiday", + "1992-04-04": "Children's Day; Tomb Sweeping Day", + "1992-06-05": "Dragon Boat Festival", + "1992-09-11": "Mid-Autumn Festival", + "1992-10-10": "National Day", + "1993-01-01": "Republic of China Founding Day / New Year's Day", + "1993-01-22": "Lunar New Year's Eve", + "1993-01-23": "Lunar New Year", + "1993-01-24": "Lunar New Year Holiday", + "1993-01-25": "Lunar New Year Holiday", + "1993-04-04": "Children's Day", + "1993-04-05": "Tomb Sweeping Day", + "1993-06-24": "Dragon Boat Festival", + "1993-09-30": "Mid-Autumn Festival", + "1993-10-10": "National Day", + "1994-01-01": "Republic of China Founding Day / New Year's Day", + "1994-02-09": "Lunar New Year's Eve", + "1994-02-10": "Lunar New Year", + "1994-02-11": "Lunar New Year Holiday", + "1994-02-12": "Lunar New Year Holiday", + "1994-04-04": "Children's Day", + "1994-04-05": "Tomb Sweeping Day", + "1994-06-13": "Dragon Boat Festival", + "1994-09-20": "Mid-Autumn Festival", + "1994-10-10": "National Day", + "1995-01-01": "Republic of China Founding Day / New Year's Day", + "1995-01-30": "Lunar New Year's Eve", + "1995-01-31": "Lunar New Year", + "1995-02-01": "Lunar New Year Holiday", + "1995-02-02": "Lunar New Year Holiday", + "1995-04-04": "Children's Day", + "1995-04-05": "Tomb Sweeping Day", + "1995-06-02": "Dragon Boat Festival", + "1995-09-09": "Mid-Autumn Festival", + "1995-10-10": "National Day", + "1996-01-01": "Republic of China Founding Day / New Year's Day", + "1996-02-18": "Lunar New Year's Eve", + "1996-02-19": "Lunar New Year", + "1996-02-20": "Lunar New Year Holiday", + "1996-02-21": "Lunar New Year Holiday", + "1996-04-04": "Children's Day; Tomb Sweeping Day", + "1996-06-20": "Dragon Boat Festival", + "1996-09-27": "Mid-Autumn Festival", + "1996-10-10": "National Day", + "1997-01-01": "Republic of China Founding Day / New Year's Day", + "1997-02-06": "Lunar New Year's Eve", + "1997-02-07": "Lunar New Year", + "1997-02-08": "Lunar New Year Holiday", + "1997-02-09": "Lunar New Year Holiday", + "1997-02-28": "Peace Memorial Day", + "1997-04-04": "Children's Day", + "1997-04-05": "Tomb Sweeping Day", + "1997-06-09": "Dragon Boat Festival", + "1997-09-16": "Mid-Autumn Festival", + "1997-10-10": "National Day", + "1998-01-01": "Republic of China Founding Day / New Year's Day", + "1998-01-27": "Lunar New Year's Eve", + "1998-01-28": "Lunar New Year", + "1998-01-29": "Lunar New Year Holiday", + "1998-01-30": "Lunar New Year Holiday", + "1998-02-28": "Peace Memorial Day", + "1998-04-04": "Children's Day", + "1998-04-05": "Tomb Sweeping Day", + "1998-05-30": "Dragon Boat Festival", + "1998-10-05": "Mid-Autumn Festival", + "1998-10-10": "National Day", + "1999-01-01": "Republic of China Founding Day / New Year's Day", + "1999-02-15": "Lunar New Year's Eve", + "1999-02-16": "Lunar New Year", + "1999-02-17": "Lunar New Year Holiday", + "1999-02-18": "Lunar New Year Holiday", + "1999-02-28": "Peace Memorial Day", + "1999-04-04": "Children's Day", + "1999-04-05": "Tomb Sweeping Day", + "1999-06-18": "Dragon Boat Festival", + "1999-09-24": "Mid-Autumn Festival", + "1999-10-10": "National Day", + "2000-01-01": "Republic of China Founding Day / New Year's Day", + "2000-02-04": "Lunar New Year's Eve", + "2000-02-05": "Lunar New Year", + "2000-02-06": "Lunar New Year Holiday", + "2000-02-07": "Lunar New Year Holiday", + "2000-02-28": "Peace Memorial Day", + "2000-04-04": "Tomb Sweeping Day", + "2000-06-06": "Dragon Boat Festival", + "2000-09-12": "Mid-Autumn Festival", + "2000-10-10": "National Day", + "2001-01-01": "Republic of China Founding Day / New Year's Day", + "2001-01-23": "Lunar New Year's Eve", + "2001-01-24": "Lunar New Year", + "2001-01-25": "Lunar New Year Holiday", + "2001-01-26": "Lunar New Year Holiday", + "2001-02-28": "Peace Memorial Day", + "2001-04-05": "Tomb Sweeping Day", + "2001-06-25": "Dragon Boat Festival", + "2001-10-01": "Mid-Autumn Festival", + "2001-10-10": "National Day", + "2002-01-01": "Republic of China Founding Day / New Year's Day", + "2002-02-11": "Lunar New Year's Eve", + "2002-02-12": "Lunar New Year", + "2002-02-13": "Lunar New Year Holiday", + "2002-02-14": "Lunar New Year Holiday", + "2002-02-28": "Peace Memorial Day", + "2002-04-05": "Tomb Sweeping Day", + "2002-06-15": "Dragon Boat Festival", + "2002-09-21": "Mid-Autumn Festival", + "2002-10-10": "National Day", + "2003-01-01": "Republic of China Founding Day / New Year's Day", + "2003-01-31": "Lunar New Year's Eve", + "2003-02-01": "Lunar New Year", + "2003-02-02": "Lunar New Year Holiday", + "2003-02-03": "Lunar New Year Holiday", + "2003-02-28": "Peace Memorial Day", + "2003-04-05": "Tomb Sweeping Day", + "2003-06-04": "Dragon Boat Festival", + "2003-09-11": "Mid-Autumn Festival", + "2003-10-10": "National Day", + "2004-01-01": "Republic of China Founding Day / New Year's Day", + "2004-01-21": "Lunar New Year's Eve", + "2004-01-22": "Lunar New Year", + "2004-01-23": "Lunar New Year Holiday", + "2004-01-24": "Lunar New Year Holiday", + "2004-02-28": "Peace Memorial Day", + "2004-04-04": "Tomb Sweeping Day", + "2004-06-22": "Dragon Boat Festival", + "2004-09-28": "Mid-Autumn Festival", + "2004-10-10": "National Day", + "2005-01-01": "Republic of China Founding Day / New Year's Day", + "2005-02-08": "Lunar New Year's Eve", + "2005-02-09": "Lunar New Year", + "2005-02-10": "Lunar New Year Holiday", + "2005-02-11": "Lunar New Year Holiday", + "2005-02-28": "Peace Memorial Day", + "2005-04-05": "Tomb Sweeping Day", + "2005-06-11": "Dragon Boat Festival", + "2005-09-18": "Mid-Autumn Festival", + "2005-10-10": "National Day", + "2006-01-01": "Republic of China Founding Day / New Year's Day", + "2006-01-28": "Lunar New Year's Eve", + "2006-01-29": "Lunar New Year", + "2006-01-30": "Lunar New Year Holiday", + "2006-01-31": "Lunar New Year Holiday", + "2006-02-28": "Peace Memorial Day", + "2006-04-05": "Tomb Sweeping Day", + "2006-05-31": "Dragon Boat Festival", + "2006-10-06": "Mid-Autumn Festival", + "2006-10-10": "National Day", + "2007-01-01": "Republic of China Founding Day / New Year's Day", + "2007-02-17": "Lunar New Year's Eve", + "2007-02-18": "Lunar New Year", + "2007-02-19": "Lunar New Year Holiday", + "2007-02-20": "Lunar New Year Holiday", + "2007-02-28": "Peace Memorial Day", + "2007-04-05": "Tomb Sweeping Day", + "2007-06-19": "Dragon Boat Festival", + "2007-09-25": "Mid-Autumn Festival", + "2007-10-10": "National Day", + "2008-01-01": "Republic of China Founding Day / New Year's Day", + "2008-02-06": "Lunar New Year's Eve", + "2008-02-07": "Lunar New Year", + "2008-02-08": "Lunar New Year Holiday", + "2008-02-09": "Lunar New Year Holiday", + "2008-02-28": "Peace Memorial Day", + "2008-04-04": "Tomb Sweeping Day", + "2008-06-08": "Dragon Boat Festival", + "2008-09-14": "Mid-Autumn Festival", + "2008-10-10": "National Day", + "2009-01-01": "Republic of China Founding Day / New Year's Day", + "2009-01-25": "Lunar New Year's Eve", + "2009-01-26": "Lunar New Year", + "2009-01-27": "Lunar New Year Holiday", + "2009-01-28": "Lunar New Year Holiday", + "2009-02-28": "Peace Memorial Day", + "2009-04-04": "Tomb Sweeping Day", + "2009-05-28": "Dragon Boat Festival", + "2009-10-03": "Mid-Autumn Festival", + "2009-10-10": "National Day", + "2010-01-01": "Republic of China Founding Day / New Year's Day", + "2010-02-13": "Lunar New Year's Eve", + "2010-02-14": "Lunar New Year", + "2010-02-15": "Lunar New Year Holiday", + "2010-02-16": "Lunar New Year Holiday", + "2010-02-28": "Peace Memorial Day", + "2010-04-05": "Tomb Sweeping Day", + "2010-06-16": "Dragon Boat Festival", + "2010-09-22": "Mid-Autumn Festival", + "2010-10-10": "National Day", + "2011-01-01": "Republic of China Founding Day / New Year's Day", + "2011-02-02": "Lunar New Year's Eve", + "2011-02-03": "Lunar New Year", + "2011-02-04": "Lunar New Year Holiday", + "2011-02-05": "Lunar New Year Holiday", + "2011-02-28": "Peace Memorial Day", + "2011-04-04": "Children's Day", + "2011-04-05": "Tomb Sweeping Day", + "2011-06-06": "Dragon Boat Festival", + "2011-09-12": "Mid-Autumn Festival", + "2011-10-10": "National Day", + "2012-01-01": "Republic of China Founding Day / New Year's Day", + "2012-01-22": "Lunar New Year's Eve", + "2012-01-23": "Lunar New Year", + "2012-01-24": "Lunar New Year Holiday", + "2012-01-25": "Lunar New Year Holiday", + "2012-02-28": "Peace Memorial Day", + "2012-04-04": "Children's Day; Tomb Sweeping Day", + "2012-06-23": "Dragon Boat Festival", + "2012-09-30": "Mid-Autumn Festival", + "2012-10-10": "National Day", + "2013-01-01": "Republic of China Founding Day / New Year's Day", + "2013-02-09": "Lunar New Year's Eve", + "2013-02-10": "Lunar New Year", + "2013-02-11": "Lunar New Year Holiday", + "2013-02-12": "Lunar New Year Holiday", + "2013-02-28": "Peace Memorial Day", + "2013-04-04": "Children's Day; Tomb Sweeping Day", + "2013-06-12": "Dragon Boat Festival", + "2013-09-19": "Mid-Autumn Festival", + "2013-10-10": "National Day", + "2014-01-01": "Republic of China Founding Day / New Year's Day", + "2014-01-30": "Lunar New Year's Eve", + "2014-01-31": "Lunar New Year", + "2014-02-01": "Lunar New Year Holiday", + "2014-02-02": "Lunar New Year Holiday", + "2014-02-28": "Peace Memorial Day", + "2014-04-04": "Children's Day", + "2014-04-05": "Tomb Sweeping Day", + "2014-06-02": "Dragon Boat Festival", + "2014-09-08": "Mid-Autumn Festival", + "2014-10-10": "National Day", + "2015-01-01": "Republic of China Founding Day / New Year's Day", + "2015-02-18": "Lunar New Year's Eve", + "2015-02-19": "Lunar New Year", + "2015-02-20": "Lunar New Year Holiday", + "2015-02-21": "Lunar New Year Holiday", + "2015-02-23": "Lunar New Year Holiday", + "2015-02-27": "Peace Memorial Day (Observed)", + "2015-02-28": "Peace Memorial Day", + "2015-04-03": "Children's Day (Observed)", + "2015-04-04": "Children's Day", + "2015-04-05": "Tomb Sweeping Day", + "2015-04-06": "Tomb Sweeping Day (Observed)", + "2015-06-19": "Dragon Boat Festival (Observed)", + "2015-06-20": "Dragon Boat Festival", + "2015-09-27": "Mid-Autumn Festival", + "2015-09-28": "Mid-Autumn Festival (Observed)", + "2015-10-09": "National Day (Observed)", + "2015-10-10": "National Day", + "2016-01-01": "Republic of China Founding Day / New Year's Day", + "2016-02-07": "Lunar New Year's Eve", + "2016-02-08": "Lunar New Year", + "2016-02-09": "Lunar New Year Holiday", + "2016-02-10": "Lunar New Year Holiday", + "2016-02-11": "Lunar New Year Holiday", + "2016-02-28": "Peace Memorial Day", + "2016-02-29": "Peace Memorial Day (Observed)", + "2016-04-04": "Children's Day; Tomb Sweeping Day", + "2016-06-09": "Dragon Boat Festival", + "2016-09-15": "Mid-Autumn Festival", + "2016-10-10": "National Day", + "2017-01-01": "Republic of China Founding Day / New Year's Day", + "2017-01-02": "Republic of China Founding Day / New Year's Day (Observed)", + "2017-01-27": "Lunar New Year's Eve", + "2017-01-28": "Lunar New Year", + "2017-01-29": "Lunar New Year Holiday", + "2017-01-30": "Lunar New Year Holiday", + "2017-01-31": "Lunar New Year Holiday", + "2017-02-01": "Lunar New Year Holiday", + "2017-02-28": "Peace Memorial Day", + "2017-04-04": "Children's Day; Tomb Sweeping Day", + "2017-05-30": "Dragon Boat Festival", + "2017-10-04": "Mid-Autumn Festival", + "2017-10-10": "National Day", + "2018-01-01": "Republic of China Founding Day / New Year's Day", + "2018-02-15": "Lunar New Year's Eve", + "2018-02-16": "Lunar New Year", + "2018-02-17": "Lunar New Year Holiday", + "2018-02-18": "Lunar New Year Holiday", + "2018-02-19": "Lunar New Year Holiday", + "2018-02-20": "Lunar New Year Holiday", + "2018-02-28": "Peace Memorial Day", + "2018-04-04": "Children's Day", + "2018-04-05": "Tomb Sweeping Day", + "2018-06-18": "Dragon Boat Festival", + "2018-09-24": "Mid-Autumn Festival", + "2018-10-10": "National Day", + "2019-01-01": "Republic of China Founding Day / New Year's Day", + "2019-02-04": "Lunar New Year's Eve", + "2019-02-05": "Lunar New Year", + "2019-02-06": "Lunar New Year Holiday", + "2019-02-07": "Lunar New Year Holiday", + "2019-02-28": "Peace Memorial Day", + "2019-04-04": "Children's Day", + "2019-04-05": "Tomb Sweeping Day", + "2019-06-07": "Dragon Boat Festival", + "2019-09-13": "Mid-Autumn Festival", + "2019-10-10": "National Day", + "2020-01-01": "Republic of China Founding Day / New Year's Day", + "2020-01-24": "Lunar New Year's Eve", + "2020-01-25": "Lunar New Year", + "2020-01-26": "Lunar New Year Holiday", + "2020-01-27": "Lunar New Year Holiday", + "2020-01-28": "Lunar New Year Holiday", + "2020-01-29": "Lunar New Year Holiday", + "2020-02-28": "Peace Memorial Day", + "2020-04-02": "Tomb Sweeping Day (Observed)", + "2020-04-03": "Children's Day (Observed)", + "2020-04-04": "Children's Day; Tomb Sweeping Day", + "2020-06-25": "Dragon Boat Festival", + "2020-10-01": "Mid-Autumn Festival", + "2020-10-09": "National Day (Observed)", + "2020-10-10": "National Day", + "2021-01-01": "Republic of China Founding Day / New Year's Day", + "2021-02-11": "Lunar New Year's Eve", + "2021-02-12": "Lunar New Year", + "2021-02-13": "Lunar New Year Holiday", + "2021-02-14": "Lunar New Year Holiday", + "2021-02-15": "Lunar New Year Holiday", + "2021-02-16": "Lunar New Year Holiday", + "2021-02-28": "Peace Memorial Day", + "2021-03-01": "Peace Memorial Day (Observed)", + "2021-04-04": "Children's Day; Tomb Sweeping Day", + "2021-04-05": "Children's Day (Observed)", + "2021-04-06": "Tomb Sweeping Day (Observed)", + "2021-06-14": "Dragon Boat Festival", + "2021-09-21": "Mid-Autumn Festival", + "2021-10-10": "National Day", + "2021-10-11": "National Day (Observed)", + "2021-12-31": "Republic of China Founding Day / New Year's Day (Observed)", + "2022-01-01": "Republic of China Founding Day / New Year's Day", + "2022-01-31": "Lunar New Year's Eve", + "2022-02-01": "Lunar New Year", + "2022-02-02": "Lunar New Year Holiday", + "2022-02-03": "Lunar New Year Holiday", + "2022-02-28": "Peace Memorial Day", + "2022-04-04": "Children's Day", + "2022-04-05": "Tomb Sweeping Day", + "2022-06-03": "Dragon Boat Festival", + "2022-09-09": "Mid-Autumn Festival (Observed)", + "2022-09-10": "Mid-Autumn Festival", + "2022-10-10": "National Day", + "2023-01-01": "Republic of China Founding Day / New Year's Day", + "2023-01-02": "Republic of China Founding Day / New Year's Day (Observed)", + "2023-01-21": "Lunar New Year's Eve", + "2023-01-22": "Lunar New Year", + "2023-01-23": "Lunar New Year Holiday", + "2023-01-24": "Lunar New Year Holiday", + "2023-01-25": "Lunar New Year Holiday", + "2023-01-26": "Lunar New Year Holiday", + "2023-02-28": "Peace Memorial Day", + "2023-04-04": "Children's Day", + "2023-04-05": "Tomb Sweeping Day", + "2023-06-22": "Dragon Boat Festival", + "2023-09-29": "Mid-Autumn Festival", + "2023-10-10": "National Day", + "2024-01-01": "Republic of China Founding Day / New Year's Day", + "2024-02-09": "Lunar New Year's Eve", + "2024-02-10": "Lunar New Year", + "2024-02-11": "Lunar New Year Holiday", + "2024-02-12": "Lunar New Year Holiday", + "2024-02-13": "Lunar New Year Holiday", + "2024-02-14": "Lunar New Year Holiday", + "2024-02-28": "Peace Memorial Day", + "2024-04-04": "Children's Day; Tomb Sweeping Day", + "2024-06-10": "Dragon Boat Festival", + "2024-09-17": "Mid-Autumn Festival", + "2024-10-10": "National Day", + "2025-01-01": "Republic of China Founding Day / New Year's Day", + "2025-01-28": "Lunar New Year's Eve", + "2025-01-29": "Lunar New Year", + "2025-01-30": "Lunar New Year Holiday", + "2025-01-31": "Lunar New Year Holiday", + "2025-02-28": "Peace Memorial Day", + "2025-04-04": "Children's Day; Tomb Sweeping Day", + "2025-05-30": "Dragon Boat Festival (Observed)", + "2025-05-31": "Dragon Boat Festival", + "2025-10-06": "Mid-Autumn Festival", + "2025-10-10": "National Day", + "2026-01-01": "Republic of China Founding Day / New Year's Day", + "2026-02-16": "Lunar New Year's Eve", + "2026-02-17": "Lunar New Year", + "2026-02-18": "Lunar New Year Holiday", + "2026-02-19": "Lunar New Year Holiday", + "2026-02-27": "Peace Memorial Day (Observed)", + "2026-02-28": "Peace Memorial Day", + "2026-04-03": "Children's Day (Observed)", + "2026-04-04": "Children's Day", + "2026-04-05": "Tomb Sweeping Day", + "2026-04-06": "Tomb Sweeping Day (Observed)", + "2026-06-19": "Dragon Boat Festival", + "2026-09-25": "Mid-Autumn Festival", + "2026-10-09": "National Day (Observed)", + "2026-10-10": "National Day", + "2027-01-01": "Republic of China Founding Day / New Year's Day", + "2027-02-05": "Lunar New Year's Eve", + "2027-02-06": "Lunar New Year", + "2027-02-07": "Lunar New Year Holiday", + "2027-02-08": "Lunar New Year Holiday", + "2027-02-09": "Lunar New Year Holiday", + "2027-02-10": "Lunar New Year Holiday", + "2027-02-28": "Peace Memorial Day", + "2027-03-01": "Peace Memorial Day (Observed)", + "2027-04-04": "Children's Day", + "2027-04-05": "Tomb Sweeping Day", + "2027-04-06": "Children's Day (Observed)", + "2027-06-09": "Dragon Boat Festival", + "2027-09-15": "Mid-Autumn Festival", + "2027-10-10": "National Day", + "2027-10-11": "National Day (Observed)", + "2027-12-31": "Republic of China Founding Day / New Year's Day (Observed)", + "2028-01-01": "Republic of China Founding Day / New Year's Day", + "2028-01-25": "Lunar New Year's Eve", + "2028-01-26": "Lunar New Year", + "2028-01-27": "Lunar New Year Holiday", + "2028-01-28": "Lunar New Year Holiday", + "2028-02-28": "Peace Memorial Day", + "2028-04-04": "Children's Day; Tomb Sweeping Day", + "2028-05-28": "Dragon Boat Festival", + "2028-05-29": "Dragon Boat Festival (Observed)", + "2028-10-03": "Mid-Autumn Festival", + "2028-10-10": "National Day", + "2029-01-01": "Republic of China Founding Day / New Year's Day", + "2029-02-12": "Lunar New Year's Eve", + "2029-02-13": "Lunar New Year", + "2029-02-14": "Lunar New Year Holiday", + "2029-02-15": "Lunar New Year Holiday", + "2029-02-28": "Peace Memorial Day", + "2029-04-04": "Children's Day; Tomb Sweeping Day", + "2029-06-15": "Dragon Boat Festival (Observed)", + "2029-06-16": "Dragon Boat Festival", + "2029-09-21": "Mid-Autumn Festival (Observed)", + "2029-09-22": "Mid-Autumn Festival", + "2029-10-10": "National Day", + "2030-01-01": "Republic of China Founding Day / New Year's Day", + "2030-02-02": "Lunar New Year's Eve", + "2030-02-03": "Lunar New Year", + "2030-02-04": "Lunar New Year Holiday", + "2030-02-05": "Lunar New Year Holiday", + "2030-02-06": "Lunar New Year Holiday", + "2030-02-07": "Lunar New Year Holiday", + "2030-02-28": "Peace Memorial Day", + "2030-04-04": "Children's Day", + "2030-04-05": "Tomb Sweeping Day", + "2030-06-05": "Dragon Boat Festival", + "2030-09-12": "Mid-Autumn Festival", + "2030-10-10": "National Day", + "2031-01-01": "Republic of China Founding Day / New Year's Day", + "2031-01-22": "Lunar New Year's Eve", + "2031-01-23": "Lunar New Year", + "2031-01-24": "Lunar New Year Holiday", + "2031-01-25": "Lunar New Year Holiday", + "2031-01-27": "Lunar New Year Holiday", + "2031-02-28": "Peace Memorial Day", + "2031-04-03": "Tomb Sweeping Day (Observed)", + "2031-04-04": "Children's Day", + "2031-04-05": "Tomb Sweeping Day", + "2031-06-24": "Dragon Boat Festival", + "2031-10-01": "Mid-Autumn Festival", + "2031-10-10": "National Day", + "2032-01-01": "Republic of China Founding Day / New Year's Day", + "2032-02-10": "Lunar New Year's Eve", + "2032-02-11": "Lunar New Year", + "2032-02-12": "Lunar New Year Holiday", + "2032-02-13": "Lunar New Year Holiday", + "2032-02-27": "Peace Memorial Day (Observed)", + "2032-02-28": "Peace Memorial Day", + "2032-04-04": "Children's Day; Tomb Sweeping Day", + "2032-04-05": "Children's Day (Observed)", + "2032-04-06": "Tomb Sweeping Day (Observed)", + "2032-06-11": "Dragon Boat Festival (Observed)", + "2032-06-12": "Dragon Boat Festival", + "2032-09-19": "Mid-Autumn Festival", + "2032-09-20": "Mid-Autumn Festival (Observed)", + "2032-10-10": "National Day", + "2032-10-11": "National Day (Observed)", + "2032-12-31": "Republic of China Founding Day / New Year's Day (Observed)", + "2033-01-01": "Republic of China Founding Day / New Year's Day", + "2033-01-30": "Lunar New Year's Eve", + "2033-01-31": "Lunar New Year", + "2033-02-01": "Lunar New Year Holiday", + "2033-02-02": "Lunar New Year Holiday", + "2033-02-03": "Lunar New Year Holiday", + "2033-02-28": "Peace Memorial Day", + "2033-04-04": "Children's Day; Tomb Sweeping Day", + "2033-06-01": "Dragon Boat Festival", + "2033-09-08": "Mid-Autumn Festival", + "2033-10-10": "National Day", + "2034-01-01": "Republic of China Founding Day / New Year's Day", + "2034-01-02": "Republic of China Founding Day / New Year's Day (Observed)", + "2034-02-18": "Lunar New Year's Eve", + "2034-02-19": "Lunar New Year", + "2034-02-20": "Lunar New Year Holiday", + "2034-02-21": "Lunar New Year Holiday", + "2034-02-22": "Lunar New Year Holiday", + "2034-02-23": "Lunar New Year Holiday", + "2034-02-28": "Peace Memorial Day", + "2034-04-04": "Children's Day", + "2034-04-05": "Tomb Sweeping Day", + "2034-06-20": "Dragon Boat Festival", + "2034-09-27": "Mid-Autumn Festival", + "2034-10-10": "National Day", + "2035-01-01": "Republic of China Founding Day / New Year's Day", + "2035-02-07": "Lunar New Year's Eve", + "2035-02-08": "Lunar New Year", + "2035-02-09": "Lunar New Year Holiday", + "2035-02-10": "Lunar New Year Holiday", + "2035-02-12": "Lunar New Year Holiday", + "2035-02-28": "Peace Memorial Day", + "2035-04-04": "Children's Day", + "2035-04-05": "Tomb Sweeping Day", + "2035-06-10": "Dragon Boat Festival", + "2035-06-11": "Dragon Boat Festival (Observed)", + "2035-09-16": "Mid-Autumn Festival", + "2035-09-17": "Mid-Autumn Festival (Observed)", + "2035-10-10": "National Day", + "2036-01-01": "Republic of China Founding Day / New Year's Day", + "2036-01-27": "Lunar New Year's Eve", + "2036-01-28": "Lunar New Year", + "2036-01-29": "Lunar New Year Holiday", + "2036-01-30": "Lunar New Year Holiday", + "2036-01-31": "Lunar New Year Holiday", + "2036-02-28": "Peace Memorial Day", + "2036-04-04": "Children's Day; Tomb Sweeping Day", + "2036-05-30": "Dragon Boat Festival", + "2036-10-03": "Mid-Autumn Festival (Observed)", + "2036-10-04": "Mid-Autumn Festival", + "2036-10-10": "National Day", + "2037-01-01": "Republic of China Founding Day / New Year's Day", + "2037-02-14": "Lunar New Year's Eve", + "2037-02-15": "Lunar New Year", + "2037-02-16": "Lunar New Year Holiday", + "2037-02-17": "Lunar New Year Holiday", + "2037-02-18": "Lunar New Year Holiday", + "2037-02-19": "Lunar New Year Holiday", + "2037-02-27": "Peace Memorial Day (Observed)", + "2037-02-28": "Peace Memorial Day", + "2037-04-02": "Tomb Sweeping Day (Observed)", + "2037-04-03": "Children's Day (Observed)", + "2037-04-04": "Children's Day; Tomb Sweeping Day", + "2037-06-18": "Dragon Boat Festival", + "2037-09-24": "Mid-Autumn Festival", + "2037-10-09": "National Day (Observed)", + "2037-10-10": "National Day", + "2038-01-01": "Republic of China Founding Day / New Year's Day", + "2038-02-03": "Lunar New Year's Eve", + "2038-02-04": "Lunar New Year", + "2038-02-05": "Lunar New Year Holiday", + "2038-02-06": "Lunar New Year Holiday", + "2038-02-08": "Lunar New Year Holiday", + "2038-02-28": "Peace Memorial Day", + "2038-03-01": "Peace Memorial Day (Observed)", + "2038-04-04": "Children's Day", + "2038-04-05": "Tomb Sweeping Day", + "2038-04-06": "Children's Day (Observed)", + "2038-06-07": "Dragon Boat Festival", + "2038-09-13": "Mid-Autumn Festival", + "2038-10-10": "National Day", + "2038-10-11": "National Day (Observed)", + "2038-12-31": "Republic of China Founding Day / New Year's Day (Observed)", + "2039-01-01": "Republic of China Founding Day / New Year's Day", + "2039-01-23": "Lunar New Year's Eve", + "2039-01-24": "Lunar New Year", + "2039-01-25": "Lunar New Year Holiday", + "2039-01-26": "Lunar New Year Holiday", + "2039-01-27": "Lunar New Year Holiday", + "2039-02-28": "Peace Memorial Day", + "2039-04-04": "Children's Day", + "2039-04-05": "Tomb Sweeping Day", + "2039-05-27": "Dragon Boat Festival", + "2039-10-02": "Mid-Autumn Festival", + "2039-10-03": "Mid-Autumn Festival (Observed)", + "2039-10-10": "National Day", + "2040-01-01": "Republic of China Founding Day / New Year's Day", + "2040-01-02": "Republic of China Founding Day / New Year's Day (Observed)", + "2040-02-11": "Lunar New Year's Eve", + "2040-02-12": "Lunar New Year", + "2040-02-13": "Lunar New Year Holiday", + "2040-02-14": "Lunar New Year Holiday", + "2040-02-15": "Lunar New Year Holiday", + "2040-02-16": "Lunar New Year Holiday", + "2040-02-28": "Peace Memorial Day", + "2040-04-04": "Children's Day; Tomb Sweeping Day", + "2040-06-14": "Dragon Boat Festival", + "2040-09-20": "Mid-Autumn Festival", + "2040-10-10": "National Day", + "2041-01-01": "Republic of China Founding Day / New Year's Day", + "2041-01-31": "Lunar New Year's Eve", + "2041-02-01": "Lunar New Year", + "2041-02-02": "Lunar New Year Holiday", + "2041-02-03": "Lunar New Year Holiday", + "2041-02-04": "Lunar New Year Holiday", + "2041-02-05": "Lunar New Year Holiday", + "2041-02-28": "Peace Memorial Day", + "2041-04-04": "Children's Day; Tomb Sweeping Day", + "2041-06-03": "Dragon Boat Festival", + "2041-09-10": "Mid-Autumn Festival", + "2041-10-10": "National Day", + "2042-01-01": "Republic of China Founding Day / New Year's Day", + "2042-01-21": "Lunar New Year's Eve", + "2042-01-22": "Lunar New Year", + "2042-01-23": "Lunar New Year Holiday", + "2042-01-24": "Lunar New Year Holiday", + "2042-02-28": "Peace Memorial Day", + "2042-04-03": "Tomb Sweeping Day (Observed)", + "2042-04-04": "Children's Day", + "2042-04-05": "Tomb Sweeping Day", + "2042-06-22": "Dragon Boat Festival", + "2042-06-23": "Dragon Boat Festival (Observed)", + "2042-09-28": "Mid-Autumn Festival", + "2042-09-29": "Mid-Autumn Festival (Observed)", + "2042-10-10": "National Day", + "2043-01-01": "Republic of China Founding Day / New Year's Day", + "2043-02-09": "Lunar New Year's Eve", + "2043-02-10": "Lunar New Year", + "2043-02-11": "Lunar New Year Holiday", + "2043-02-12": "Lunar New Year Holiday", + "2043-02-27": "Peace Memorial Day (Observed)", + "2043-02-28": "Peace Memorial Day", + "2043-04-03": "Children's Day (Observed)", + "2043-04-04": "Children's Day", + "2043-04-05": "Tomb Sweeping Day", + "2043-04-06": "Tomb Sweeping Day (Observed)", + "2043-06-11": "Dragon Boat Festival", + "2043-09-17": "Mid-Autumn Festival", + "2043-10-09": "National Day (Observed)", + "2043-10-10": "National Day", + "2044-01-01": "Republic of China Founding Day / New Year's Day", + "2044-01-29": "Lunar New Year's Eve", + "2044-01-30": "Lunar New Year", + "2044-01-31": "Lunar New Year Holiday", + "2044-02-01": "Lunar New Year Holiday", + "2044-02-02": "Lunar New Year Holiday", + "2044-02-03": "Lunar New Year Holiday", + "2044-02-28": "Peace Memorial Day", + "2044-02-29": "Peace Memorial Day (Observed)", + "2044-04-04": "Children's Day; Tomb Sweeping Day", + "2044-05-31": "Dragon Boat Festival", + "2044-10-05": "Mid-Autumn Festival", + "2044-10-10": "National Day", + "2045-01-01": "Republic of China Founding Day / New Year's Day", + "2045-01-02": "Republic of China Founding Day / New Year's Day (Observed)", + "2045-02-16": "Lunar New Year's Eve", + "2045-02-17": "Lunar New Year", + "2045-02-18": "Lunar New Year Holiday", + "2045-02-19": "Lunar New Year Holiday", + "2045-02-20": "Lunar New Year Holiday", + "2045-02-21": "Lunar New Year Holiday", + "2045-02-28": "Peace Memorial Day", + "2045-04-04": "Children's Day; Tomb Sweeping Day", + "2045-06-19": "Dragon Boat Festival", + "2045-09-25": "Mid-Autumn Festival", + "2045-10-10": "National Day", + "2046-01-01": "Republic of China Founding Day / New Year's Day", + "2046-02-05": "Lunar New Year's Eve", + "2046-02-06": "Lunar New Year", + "2046-02-07": "Lunar New Year Holiday", + "2046-02-08": "Lunar New Year Holiday", + "2046-02-28": "Peace Memorial Day", + "2046-04-04": "Children's Day", + "2046-04-05": "Tomb Sweeping Day", + "2046-06-08": "Dragon Boat Festival", + "2046-09-14": "Mid-Autumn Festival (Observed)", + "2046-09-15": "Mid-Autumn Festival", + "2046-10-10": "National Day", + "2047-01-01": "Republic of China Founding Day / New Year's Day", + "2047-01-25": "Lunar New Year's Eve", + "2047-01-26": "Lunar New Year", + "2047-01-27": "Lunar New Year Holiday", + "2047-01-28": "Lunar New Year Holiday", + "2047-01-29": "Lunar New Year Holiday", + "2047-01-30": "Lunar New Year Holiday", + "2047-02-28": "Peace Memorial Day", + "2047-04-04": "Children's Day", + "2047-04-05": "Tomb Sweeping Day", + "2047-05-29": "Dragon Boat Festival", + "2047-10-04": "Mid-Autumn Festival", + "2047-10-10": "National Day", + "2048-01-01": "Republic of China Founding Day / New Year's Day", + "2048-02-13": "Lunar New Year's Eve", + "2048-02-14": "Lunar New Year", + "2048-02-15": "Lunar New Year Holiday", + "2048-02-16": "Lunar New Year Holiday", + "2048-02-17": "Lunar New Year Holiday", + "2048-02-18": "Lunar New Year Holiday", + "2048-02-28": "Peace Memorial Day", + "2048-04-02": "Tomb Sweeping Day (Observed)", + "2048-04-03": "Children's Day (Observed)", + "2048-04-04": "Children's Day; Tomb Sweeping Day", + "2048-06-15": "Dragon Boat Festival", + "2048-09-22": "Mid-Autumn Festival", + "2048-10-09": "National Day (Observed)", + "2048-10-10": "National Day", + "2049-01-01": "Republic of China Founding Day / New Year's Day", + "2049-02-01": "Lunar New Year's Eve", + "2049-02-02": "Lunar New Year", + "2049-02-03": "Lunar New Year Holiday", + "2049-02-04": "Lunar New Year Holiday", + "2049-02-28": "Peace Memorial Day", + "2049-03-01": "Peace Memorial Day (Observed)", + "2049-04-04": "Children's Day; Tomb Sweeping Day", + "2049-04-05": "Children's Day (Observed)", + "2049-04-06": "Tomb Sweeping Day (Observed)", + "2049-06-04": "Dragon Boat Festival", + "2049-09-10": "Mid-Autumn Festival (Observed)", + "2049-09-11": "Mid-Autumn Festival", + "2049-10-10": "National Day", + "2049-10-11": "National Day (Observed)", + "2049-12-31": "Republic of China Founding Day / New Year's Day (Observed)", + "2050-01-01": "Republic of China Founding Day / New Year's Day", + "2050-01-22": "Lunar New Year's Eve", + "2050-01-23": "Lunar New Year", + "2050-01-24": "Lunar New Year Holiday", + "2050-01-25": "Lunar New Year Holiday", + "2050-01-26": "Lunar New Year Holiday", + "2050-01-27": "Lunar New Year Holiday", + "2050-02-28": "Peace Memorial Day", + "2050-04-04": "Children's Day", + "2050-04-05": "Tomb Sweeping Day", + "2050-06-23": "Dragon Boat Festival", + "2050-09-30": "Mid-Autumn Festival", + "2050-10-10": "National Day" +} diff --git a/snapshots/countries/UA.json b/snapshots/countries/UA.json new file mode 100644 index 000000000..ac27fad77 --- /dev/null +++ b/snapshots/countries/UA.json @@ -0,0 +1,516 @@ +{ + "1991-01-01": "New Year's Day", + "1991-01-07": "Christmas (Julian calendar)", + "1991-03-08": "International Women's Day", + "1991-04-07": "Easter Sunday (Pascha)", + "1991-05-01": "International Workers' Solidarity Day", + "1991-05-02": "International Workers' Solidarity Day", + "1991-05-09": "Victory Day", + "1991-05-26": "Holy Trinity Day", + "1991-07-16": "Independence Day", + "1991-11-07": "Anniversary of the Great October Socialist Revolution", + "1991-11-08": "Anniversary of the Great October Socialist Revolution", + "1992-01-01": "New Year's Day", + "1992-01-07": "Christmas (Julian calendar)", + "1992-03-08": "International Women's Day", + "1992-04-26": "Easter Sunday (Pascha)", + "1992-05-01": "International Workers' Solidarity Day", + "1992-05-02": "International Workers' Solidarity Day", + "1992-05-09": "Victory Day", + "1992-06-14": "Holy Trinity Day", + "1992-08-24": "Independence Day", + "1992-11-07": "Anniversary of the Great October Socialist Revolution", + "1992-11-08": "Anniversary of the Great October Socialist Revolution", + "1993-01-01": "New Year's Day", + "1993-01-07": "Christmas (Julian calendar)", + "1993-03-08": "International Women's Day", + "1993-04-18": "Easter Sunday (Pascha)", + "1993-05-01": "International Workers' Solidarity Day", + "1993-05-02": "International Workers' Solidarity Day", + "1993-05-09": "Victory Day", + "1993-06-06": "Holy Trinity Day", + "1993-08-24": "Independence Day", + "1993-11-07": "Anniversary of the Great October Socialist Revolution", + "1993-11-08": "Anniversary of the Great October Socialist Revolution", + "1994-01-01": "New Year's Day", + "1994-01-07": "Christmas (Julian calendar)", + "1994-03-08": "International Women's Day", + "1994-05-01": "Easter Sunday (Pascha); International Workers' Solidarity Day", + "1994-05-02": "International Workers' Solidarity Day", + "1994-05-09": "Victory Day", + "1994-06-19": "Holy Trinity Day", + "1994-08-24": "Independence Day", + "1994-11-07": "Anniversary of the Great October Socialist Revolution", + "1994-11-08": "Anniversary of the Great October Socialist Revolution", + "1995-01-01": "New Year's Day", + "1995-01-07": "Christmas (Julian calendar)", + "1995-03-08": "International Women's Day", + "1995-04-23": "Easter Sunday (Pascha)", + "1995-04-24": "Easter Sunday (Pascha) (Observed)", + "1995-05-01": "International Workers' Solidarity Day", + "1995-05-02": "International Workers' Solidarity Day", + "1995-05-09": "Victory Day", + "1995-06-11": "Holy Trinity Day", + "1995-06-12": "Holy Trinity Day (Observed)", + "1995-08-24": "Independence Day", + "1995-11-07": "Anniversary of the Great October Socialist Revolution", + "1995-11-08": "Anniversary of the Great October Socialist Revolution", + "1996-01-01": "New Year's Day", + "1996-01-07": "Christmas (Julian calendar)", + "1996-01-08": "Christmas (Julian calendar) (Observed)", + "1996-03-08": "International Women's Day", + "1996-04-14": "Easter Sunday (Pascha)", + "1996-04-15": "Easter Sunday (Pascha) (Observed)", + "1996-05-01": "International Workers' Solidarity Day", + "1996-05-02": "International Workers' Solidarity Day", + "1996-05-09": "Victory Day", + "1996-06-02": "Holy Trinity Day", + "1996-06-03": "Holy Trinity Day (Observed)", + "1996-08-24": "Independence Day", + "1996-08-26": "Independence Day (Observed)", + "1996-11-07": "Anniversary of the Great October Socialist Revolution", + "1996-11-08": "Anniversary of the Great October Socialist Revolution", + "1997-01-01": "New Year's Day", + "1997-01-07": "Christmas (Julian calendar)", + "1997-03-08": "International Women's Day", + "1997-03-10": "International Women's Day (Observed)", + "1997-04-27": "Easter Sunday (Pascha)", + "1997-04-28": "Easter Sunday (Pascha) (Observed)", + "1997-05-01": "International Workers' Solidarity Day", + "1997-05-02": "International Workers' Solidarity Day", + "1997-05-09": "Victory Day", + "1997-06-15": "Holy Trinity Day", + "1997-06-16": "Holy Trinity Day (Observed)", + "1997-06-28": "Day of the Constitution of Ukraine", + "1997-06-30": "Day of the Constitution of Ukraine (Observed)", + "1997-08-24": "Independence Day", + "1997-08-25": "Independence Day (Observed)", + "1997-11-07": "Anniversary of the Great October Socialist Revolution", + "1997-11-08": "Anniversary of the Great October Socialist Revolution", + "1997-11-10": "Anniversary of the Great October Socialist Revolution (Observed)", + "1998-01-01": "New Year's Day", + "1998-01-07": "Christmas (Julian calendar)", + "1998-03-08": "International Women's Day", + "1998-04-19": "Easter Sunday (Pascha)", + "1998-05-01": "International Workers' Solidarity Day", + "1998-05-02": "International Workers' Solidarity Day", + "1998-05-09": "Victory Day", + "1998-06-07": "Holy Trinity Day", + "1998-06-28": "Day of the Constitution of Ukraine", + "1998-08-24": "Independence Day", + "1998-11-07": "Anniversary of the Great October Socialist Revolution", + "1998-11-08": "Anniversary of the Great October Socialist Revolution", + "1999-01-01": "New Year's Day", + "1999-01-07": "Christmas (Julian calendar)", + "1999-03-08": "International Women's Day", + "1999-04-11": "Easter Sunday (Pascha)", + "1999-05-01": "International Workers' Solidarity Day", + "1999-05-02": "International Workers' Solidarity Day", + "1999-05-03": "International Workers' Solidarity Day (Observed)", + "1999-05-04": "International Workers' Solidarity Day (Observed)", + "1999-05-09": "Victory Day", + "1999-05-10": "Victory Day (Observed)", + "1999-05-30": "Holy Trinity Day", + "1999-05-31": "Holy Trinity Day (Observed)", + "1999-06-28": "Day of the Constitution of Ukraine", + "1999-08-24": "Independence Day", + "1999-11-07": "Anniversary of the Great October Socialist Revolution", + "1999-11-08": "Anniversary of the Great October Socialist Revolution", + "1999-11-09": "Anniversary of the Great October Socialist Revolution (Observed)", + "2000-01-01": "New Year's Day", + "2000-01-03": "New Year's Day (Observed)", + "2000-01-07": "Christmas (Julian calendar)", + "2000-03-08": "International Women's Day", + "2000-04-30": "Easter Sunday (Pascha)", + "2000-05-01": "International Workers' Solidarity Day", + "2000-05-02": "International Workers' Solidarity Day", + "2000-05-03": "Easter Sunday (Pascha) (Observed)", + "2000-05-09": "Victory Day", + "2000-06-18": "Holy Trinity Day", + "2000-06-19": "Holy Trinity Day (Observed)", + "2000-06-28": "Day of the Constitution of Ukraine", + "2000-08-24": "Independence Day", + "2001-01-01": "New Year's Day", + "2001-01-07": "Christmas (Julian calendar)", + "2001-01-08": "Christmas (Julian calendar) (Observed)", + "2001-03-08": "International Women's Day", + "2001-04-15": "Easter Sunday (Pascha)", + "2001-04-16": "Easter Sunday (Pascha) (Observed)", + "2001-04-30": "Day off (substituted from 04/28/2001)", + "2001-05-01": "International Workers' Solidarity Day", + "2001-05-02": "International Workers' Solidarity Day", + "2001-05-09": "Victory Day", + "2001-05-10": "Day off (substituted from 05/05/2001)", + "2001-05-11": "Day off (substituted from 05/06/2001)", + "2001-06-03": "Holy Trinity Day", + "2001-06-04": "Holy Trinity Day (Observed)", + "2001-06-28": "Day of the Constitution of Ukraine", + "2001-06-29": "Day off (substituted from 06/23/2001)", + "2001-08-24": "Independence Day", + "2001-12-31": "Day off (substituted from 12/29/2001)", + "2002-01-01": "New Year's Day", + "2002-01-07": "Christmas (Julian calendar)", + "2002-03-08": "International Women's Day", + "2002-05-01": "International Workers' Solidarity Day", + "2002-05-02": "International Workers' Solidarity Day", + "2002-05-03": "Day off (substituted from 05/11/2002)", + "2002-05-05": "Easter Sunday (Pascha)", + "2002-05-06": "Easter Sunday (Pascha) (Observed)", + "2002-05-09": "Victory Day", + "2002-06-23": "Holy Trinity Day", + "2002-06-24": "Holy Trinity Day (Observed)", + "2002-06-28": "Day of the Constitution of Ukraine", + "2002-08-24": "Independence Day", + "2002-08-26": "Independence Day (Observed)", + "2002-12-30": "Day off (substituted from 12/28/2002)", + "2002-12-31": "Day off (substituted from 12/29/2002)", + "2003-01-01": "New Year's Day", + "2003-01-06": "Day off (substituted from 01/04/2003)", + "2003-01-07": "Christmas (Julian calendar)", + "2003-03-08": "International Women's Day", + "2003-03-10": "International Women's Day (Observed)", + "2003-04-27": "Easter Sunday (Pascha)", + "2003-04-28": "Easter Sunday (Pascha) (Observed)", + "2003-05-01": "International Workers' Solidarity Day", + "2003-05-02": "International Workers' Solidarity Day", + "2003-05-09": "Victory Day", + "2003-06-15": "Holy Trinity Day", + "2003-06-16": "Holy Trinity Day (Observed)", + "2003-06-28": "Day of the Constitution of Ukraine", + "2003-06-30": "Day of the Constitution of Ukraine (Observed)", + "2003-08-24": "Independence Day", + "2003-08-25": "Independence Day (Observed)", + "2004-01-01": "New Year's Day", + "2004-01-02": "Day off (substituted from 01/10/2004)", + "2004-01-05": "Day off (substituted from 01/17/2004)", + "2004-01-06": "Day off (substituted from 01/31/2004)", + "2004-01-07": "Christmas (Julian calendar)", + "2004-03-08": "International Women's Day", + "2004-04-11": "Easter Sunday (Pascha)", + "2004-04-12": "Easter Sunday (Pascha) (Observed)", + "2004-05-01": "International Workers' Solidarity Day", + "2004-05-02": "International Workers' Solidarity Day", + "2004-05-03": "International Workers' Solidarity Day (Observed)", + "2004-05-04": "International Workers' Solidarity Day (Observed)", + "2004-05-09": "Victory Day", + "2004-05-10": "Victory Day (Observed)", + "2004-05-30": "Holy Trinity Day", + "2004-05-31": "Holy Trinity Day (Observed)", + "2004-06-28": "Day of the Constitution of Ukraine", + "2004-08-23": "Day off (substituted from 08/21/2004)", + "2004-08-24": "Independence Day", + "2005-01-01": "New Year's Day", + "2005-01-03": "New Year's Day (Observed)", + "2005-01-07": "Christmas (Julian calendar)", + "2005-03-07": "Day off (substituted from 03/05/2005)", + "2005-03-08": "International Women's Day", + "2005-05-01": "Easter Sunday (Pascha); International Workers' Solidarity Day", + "2005-05-02": "International Workers' Solidarity Day", + "2005-05-03": "Easter Sunday (Pascha) (Observed); International Workers' Solidarity Day (Observed)", + "2005-05-09": "Victory Day", + "2005-05-10": "Day off (substituted from 05/14/2005)", + "2005-06-19": "Holy Trinity Day", + "2005-06-20": "Holy Trinity Day (Observed)", + "2005-06-27": "Day off (substituted from 06/25/2005)", + "2005-06-28": "Day of the Constitution of Ukraine", + "2005-08-24": "Independence Day", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (Observed)", + "2006-01-03": "Day off (substituted from 01/21/2006)", + "2006-01-04": "Day off (substituted from 02/04/2006)", + "2006-01-05": "Day off (substituted from 02/18/2006)", + "2006-01-06": "Day off (substituted from 03/11/2006)", + "2006-01-07": "Christmas (Julian calendar)", + "2006-01-09": "Christmas (Julian calendar) (Observed)", + "2006-03-08": "International Women's Day", + "2006-04-23": "Easter Sunday (Pascha)", + "2006-04-24": "Easter Sunday (Pascha) (Observed)", + "2006-05-01": "International Workers' Solidarity Day", + "2006-05-02": "International Workers' Solidarity Day", + "2006-05-08": "Day off (substituted from 05/06/2006)", + "2006-05-09": "Victory Day", + "2006-06-11": "Holy Trinity Day", + "2006-06-12": "Holy Trinity Day (Observed)", + "2006-06-28": "Day of the Constitution of Ukraine", + "2006-08-24": "Independence Day", + "2006-08-25": "Day off (substituted from 09/09/2006)", + "2007-01-01": "New Year's Day", + "2007-01-02": "Day off (substituted from 01/20/2007)", + "2007-01-03": "Day off (substituted from 01/27/2007)", + "2007-01-04": "Day off (substituted from 02/10/2007)", + "2007-01-05": "Day off (substituted from 02/24/2007)", + "2007-01-07": "Christmas (Julian calendar)", + "2007-01-08": "Christmas (Julian calendar) (Observed)", + "2007-03-08": "International Women's Day", + "2007-03-09": "Day off (substituted from 03/03/2007)", + "2007-04-08": "Easter Sunday (Pascha)", + "2007-04-09": "Easter Sunday (Pascha) (Observed)", + "2007-04-30": "Day off (substituted from 04/28/2007)", + "2007-05-01": "International Workers' Solidarity Day", + "2007-05-02": "International Workers' Solidarity Day", + "2007-05-09": "Victory Day", + "2007-05-27": "Holy Trinity Day", + "2007-05-28": "Holy Trinity Day (Observed)", + "2007-06-28": "Day of the Constitution of Ukraine", + "2007-06-29": "Day off (substituted from 06/16/2007)", + "2007-08-24": "Independence Day", + "2007-12-31": "Day off (substituted from 12/29/2007)", + "2008-01-01": "New Year's Day", + "2008-01-02": "Day off (substituted from 01/12/2008)", + "2008-01-03": "Day off (substituted from 01/26/2008)", + "2008-01-04": "Day off (substituted from 02/09/2008)", + "2008-01-07": "Christmas (Julian calendar)", + "2008-03-08": "International Women's Day", + "2008-03-10": "International Women's Day (Observed)", + "2008-04-27": "Easter Sunday (Pascha)", + "2008-04-28": "Easter Sunday (Pascha) (Observed)", + "2008-04-29": "Day off (substituted from 05/17/2008)", + "2008-04-30": "Day off (substituted from 05/31/2008)", + "2008-05-01": "International Workers' Solidarity Day", + "2008-05-02": "International Workers' Solidarity Day", + "2008-05-09": "Victory Day", + "2008-06-15": "Holy Trinity Day", + "2008-06-16": "Holy Trinity Day (Observed)", + "2008-06-28": "Day of the Constitution of Ukraine", + "2008-06-30": "Day of the Constitution of Ukraine (Observed)", + "2008-08-24": "Independence Day", + "2008-08-25": "Independence Day (Observed)", + "2009-01-01": "New Year's Day", + "2009-01-02": "Day off (substituted from 01/10/2009)", + "2009-01-05": "Day off (substituted from 01/24/2009)", + "2009-01-06": "Day off (substituted from 02/07/2009)", + "2009-01-07": "Christmas (Julian calendar)", + "2009-03-08": "International Women's Day", + "2009-03-09": "International Women's Day (Observed)", + "2009-04-19": "Easter Sunday (Pascha)", + "2009-04-20": "Easter Sunday (Pascha) (Observed)", + "2009-05-01": "International Workers' Solidarity Day", + "2009-05-02": "International Workers' Solidarity Day", + "2009-05-04": "International Workers' Solidarity Day (Observed)", + "2009-05-09": "Victory Day", + "2009-05-11": "Victory Day (Observed)", + "2009-06-07": "Holy Trinity Day", + "2009-06-08": "Holy Trinity Day (Observed)", + "2009-06-28": "Day of the Constitution of Ukraine", + "2009-06-29": "Day of the Constitution of Ukraine (Observed)", + "2009-08-24": "Independence Day", + "2010-01-01": "New Year's Day", + "2010-01-04": "Day off (substituted from 01/30/2010)", + "2010-01-05": "Day off (substituted from 02/13/2010)", + "2010-01-06": "Day off (substituted from 02/27/2010)", + "2010-01-07": "Christmas (Julian calendar)", + "2010-01-08": "Day off (substituted from 03/13/2010)", + "2010-03-08": "International Women's Day", + "2010-04-04": "Easter Sunday (Pascha)", + "2010-04-05": "Easter Sunday (Pascha) (Observed)", + "2010-05-01": "International Workers' Solidarity Day", + "2010-05-02": "International Workers' Solidarity Day", + "2010-05-03": "International Workers' Solidarity Day (Observed)", + "2010-05-04": "International Workers' Solidarity Day (Observed)", + "2010-05-09": "Victory Day", + "2010-05-10": "Victory Day (Observed)", + "2010-05-23": "Holy Trinity Day", + "2010-05-24": "Holy Trinity Day (Observed)", + "2010-06-28": "Day of the Constitution of Ukraine", + "2010-08-23": "Day off (substituted from 08/21/2010)", + "2010-08-24": "Independence Day", + "2011-01-01": "New Year's Day", + "2011-01-03": "New Year's Day (Observed)", + "2011-01-07": "Christmas (Julian calendar)", + "2011-03-07": "Day off (substituted from 03/12/2011)", + "2011-03-08": "International Women's Day", + "2011-04-24": "Easter Sunday (Pascha)", + "2011-04-25": "Easter Sunday (Pascha) (Observed)", + "2011-05-01": "International Workers' Solidarity Day", + "2011-05-02": "International Workers' Solidarity Day", + "2011-05-03": "International Workers' Solidarity Day (Observed)", + "2011-05-09": "Victory Day", + "2011-06-12": "Holy Trinity Day", + "2011-06-13": "Holy Trinity Day (Observed)", + "2011-06-27": "Day off (substituted from 06/25/2011)", + "2011-06-28": "Day of the Constitution of Ukraine", + "2011-08-24": "Independence Day", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (Observed)", + "2012-01-07": "Christmas (Julian calendar)", + "2012-01-09": "Christmas (Julian calendar) (Observed)", + "2012-03-08": "International Women's Day", + "2012-03-09": "Day off (substituted from 03/03/2012)", + "2012-04-15": "Easter Sunday (Pascha)", + "2012-04-16": "Easter Sunday (Pascha) (Observed)", + "2012-04-20": "Day off (substituted from 04/28/2012)", + "2012-05-01": "International Workers' Solidarity Day", + "2012-05-02": "International Workers' Solidarity Day", + "2012-05-09": "Victory Day", + "2012-06-03": "Holy Trinity Day", + "2012-06-04": "Holy Trinity Day (Observed)", + "2012-06-28": "Day of the Constitution of Ukraine", + "2012-06-29": "Day off (substituted from 07/07/2012)", + "2012-08-24": "Independence Day", + "2012-12-31": "Day off (substituted from 12/29/2012)", + "2013-01-01": "New Year's Day", + "2013-01-07": "Christmas (Julian calendar)", + "2013-03-08": "International Women's Day", + "2013-05-01": "International Workers' Solidarity Day", + "2013-05-02": "International Workers' Solidarity Day", + "2013-05-03": "Day off (substituted from 05/18/2013)", + "2013-05-05": "Easter Sunday (Pascha)", + "2013-05-06": "Easter Sunday (Pascha) (Observed)", + "2013-05-09": "Victory Day", + "2013-05-10": "Day off (substituted from 06/01/2013)", + "2013-06-23": "Holy Trinity Day", + "2013-06-24": "Holy Trinity Day (Observed)", + "2013-06-28": "Day of the Constitution of Ukraine", + "2013-08-24": "Independence Day", + "2013-08-26": "Independence Day (Observed)", + "2014-01-01": "New Year's Day", + "2014-01-02": "Day off (substituted from 01/11/2014)", + "2014-01-03": "Day off (substituted from 01/25/2014)", + "2014-01-06": "Day off (substituted from 02/08/2014)", + "2014-01-07": "Christmas (Julian calendar)", + "2014-03-08": "International Women's Day", + "2014-03-10": "International Women's Day (Observed)", + "2014-04-20": "Easter Sunday (Pascha)", + "2014-04-21": "Easter Sunday (Pascha) (Observed)", + "2014-05-01": "International Workers' Solidarity Day", + "2014-05-02": "International Workers' Solidarity Day", + "2014-05-09": "Victory Day", + "2014-06-08": "Holy Trinity Day", + "2014-06-09": "Holy Trinity Day (Observed)", + "2014-06-28": "Day of the Constitution of Ukraine", + "2014-06-30": "Day of the Constitution of Ukraine (Observed)", + "2014-08-24": "Independence Day", + "2014-08-25": "Independence Day (Observed)", + "2015-01-01": "New Year's Day", + "2015-01-02": "Day off (substituted from 01/17/2015)", + "2015-01-07": "Christmas (Julian calendar)", + "2015-01-08": "Day off (substituted from 01/31/2015)", + "2015-01-09": "Day off (substituted from 02/14/2015)", + "2015-03-08": "International Women's Day", + "2015-03-09": "International Women's Day (Observed)", + "2015-04-12": "Easter Sunday (Pascha)", + "2015-04-13": "Easter Sunday (Pascha) (Observed)", + "2015-05-01": "International Workers' Solidarity Day", + "2015-05-02": "International Workers' Solidarity Day", + "2015-05-04": "International Workers' Solidarity Day (Observed)", + "2015-05-09": "Victory Day", + "2015-05-11": "Victory Day (Observed)", + "2015-05-31": "Holy Trinity Day", + "2015-06-01": "Holy Trinity Day (Observed)", + "2015-06-28": "Day of the Constitution of Ukraine", + "2015-06-29": "Day of the Constitution of Ukraine (Observed)", + "2015-08-24": "Independence Day", + "2015-10-14": "Defender of Ukraine Day", + "2016-01-01": "New Year's Day", + "2016-01-07": "Christmas (Julian calendar)", + "2016-01-08": "Day off (substituted from 01/16/2016)", + "2016-03-07": "Day off (substituted from 03/12/2016)", + "2016-03-08": "International Women's Day", + "2016-05-01": "Easter Sunday (Pascha); International Workers' Solidarity Day", + "2016-05-02": "International Workers' Solidarity Day", + "2016-05-03": "Easter Sunday (Pascha) (Observed); International Workers' Solidarity Day (Observed)", + "2016-05-09": "Day of Victory over Nazism in World War II (Victory Day)", + "2016-06-19": "Holy Trinity Day", + "2016-06-20": "Holy Trinity Day (Observed)", + "2016-06-27": "Day off (substituted from 07/02/2016)", + "2016-06-28": "Day of the Constitution of Ukraine", + "2016-08-24": "Independence Day", + "2016-10-14": "Defender of Ukraine Day", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (Observed)", + "2017-01-07": "Christmas (Julian calendar)", + "2017-01-09": "Christmas (Julian calendar) (Observed)", + "2017-03-08": "International Women's Day", + "2017-04-16": "Easter Sunday (Pascha)", + "2017-04-17": "Easter Sunday (Pascha) (Observed)", + "2017-05-01": "International Workers' Solidarity Day", + "2017-05-02": "International Workers' Solidarity Day", + "2017-05-08": "Day off (substituted from 05/13/2017)", + "2017-05-09": "Day of Victory over Nazism in World War II (Victory Day)", + "2017-06-04": "Holy Trinity Day", + "2017-06-05": "Holy Trinity Day (Observed)", + "2017-06-28": "Day of the Constitution of Ukraine", + "2017-08-24": "Independence Day", + "2017-08-25": "Day off (substituted from 08/19/2017)", + "2017-10-14": "Defender of Ukraine Day", + "2017-10-16": "Defender of Ukraine Day (Observed)", + "2017-12-25": "Christmas (Gregorian calendar)", + "2018-01-01": "New Year's Day", + "2018-01-07": "Christmas (Julian calendar)", + "2018-01-08": "Christmas (Julian calendar) (Observed)", + "2018-03-08": "International Women's Day", + "2018-03-09": "Day off (substituted from 03/03/2018)", + "2018-04-08": "Easter Sunday (Pascha)", + "2018-04-09": "Easter Sunday (Pascha) (Observed)", + "2018-04-30": "Day off (substituted from 05/05/2018)", + "2018-05-01": "Labor Day", + "2018-05-09": "Day of Victory over Nazism in World War II (Victory Day)", + "2018-05-27": "Holy Trinity Day", + "2018-05-28": "Holy Trinity Day (Observed)", + "2018-06-28": "Day of the Constitution of Ukraine", + "2018-06-29": "Day off (substituted from 06/23/2018)", + "2018-08-24": "Independence Day", + "2018-10-14": "Defender of Ukraine Day", + "2018-10-15": "Defender of Ukraine Day (Observed)", + "2018-12-24": "Day off (substituted from 12/22/2018)", + "2018-12-25": "Christmas (Gregorian calendar)", + "2018-12-31": "Day off (substituted from 12/29/2018)", + "2019-01-01": "New Year's Day", + "2019-01-07": "Christmas (Julian calendar)", + "2019-03-08": "International Women's Day", + "2019-04-28": "Easter Sunday (Pascha)", + "2019-04-29": "Easter Sunday (Pascha) (Observed)", + "2019-04-30": "Day off (substituted from 05/11/2019)", + "2019-05-01": "Labor Day", + "2019-05-09": "Day of Victory over Nazism in World War II (Victory Day)", + "2019-06-16": "Holy Trinity Day", + "2019-06-17": "Holy Trinity Day (Observed)", + "2019-06-28": "Day of the Constitution of Ukraine", + "2019-08-24": "Independence Day", + "2019-08-26": "Independence Day (Observed)", + "2019-10-14": "Defender of Ukraine Day", + "2019-12-25": "Christmas (Gregorian calendar)", + "2019-12-30": "Day off (substituted from 12/21/2019)", + "2019-12-31": "Day off (substituted from 12/28/2019)", + "2020-01-01": "New Year's Day", + "2020-01-06": "Day off (substituted from 01/11/2020)", + "2020-01-07": "Christmas (Julian calendar)", + "2020-03-08": "International Women's Day", + "2020-03-09": "International Women's Day (Observed)", + "2020-04-19": "Easter Sunday (Pascha)", + "2020-04-20": "Easter Sunday (Pascha) (Observed)", + "2020-05-01": "Labor Day", + "2020-05-09": "Day of Victory over Nazism in World War II (Victory Day)", + "2020-05-11": "Day of Victory over Nazism in World War II (Victory Day) (Observed)", + "2020-06-07": "Holy Trinity Day", + "2020-06-08": "Holy Trinity Day (Observed)", + "2020-06-28": "Day of the Constitution of Ukraine", + "2020-06-29": "Day of the Constitution of Ukraine (Observed)", + "2020-08-24": "Independence Day", + "2020-10-14": "Defender of Ukraine Day", + "2020-12-25": "Christmas (Gregorian calendar)", + "2021-01-01": "New Year's Day", + "2021-01-07": "Christmas (Julian calendar)", + "2021-01-08": "Day off (substituted from 01/16/2021)", + "2021-03-08": "International Women's Day", + "2021-05-01": "Labor Day", + "2021-05-02": "Easter Sunday (Pascha)", + "2021-05-03": "Labor Day (Observed)", + "2021-05-04": "Easter Sunday (Pascha) (Observed)", + "2021-05-09": "Day of Victory over Nazism in World War II (Victory Day)", + "2021-05-10": "Day of Victory over Nazism in World War II (Victory Day) (Observed)", + "2021-06-20": "Holy Trinity Day", + "2021-06-21": "Holy Trinity Day (Observed)", + "2021-06-28": "Day of the Constitution of Ukraine", + "2021-08-23": "Day off (substituted from 08/28/2021)", + "2021-08-24": "Independence Day", + "2021-10-14": "Day of defenders of Ukraine", + "2021-10-15": "Day off (substituted from 10/23/2021)", + "2021-12-25": "Christmas (Gregorian calendar)", + "2021-12-27": "Christmas (Gregorian calendar) (Observed)", + "2022-01-01": "New Year's Day", + "2022-01-03": "New Year's Day (Observed)", + "2022-01-07": "Christmas (Julian calendar)", + "2022-03-07": "Day off (substituted from 03/12/2022)", + "2022-03-08": "International Women's Day" +} diff --git a/snapshots/countries/UK.json b/snapshots/countries/UK.json new file mode 100644 index 000000000..093daf1b2 --- /dev/null +++ b/snapshots/countries/UK.json @@ -0,0 +1,1384 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-02": "New Year Holiday; New Year's Day (Observed)", + "1950-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "1950-03-17": "St. Patrick's Day", + "1950-04-07": "Good Friday", + "1950-04-10": "Easter Monday", + "1950-07-12": "Battle of the Boyne", + "1950-08-07": "Summer Bank Holiday", + "1950-12-25": "Christmas Day", + "1950-12-26": "Boxing Day", + "1951-01-01": "New Year's Day", + "1951-01-02": "New Year Holiday", + "1951-03-17": "St. Patrick's Day", + "1951-03-19": "St. Patrick's Day (Observed)", + "1951-03-23": "Good Friday", + "1951-03-26": "Easter Monday", + "1951-07-12": "Battle of the Boyne", + "1951-08-06": "Summer Bank Holiday", + "1951-12-25": "Christmas Day", + "1951-12-26": "Boxing Day", + "1952-01-01": "New Year's Day", + "1952-01-02": "New Year Holiday", + "1952-03-17": "St. Patrick's Day", + "1952-04-11": "Good Friday", + "1952-04-14": "Easter Monday", + "1952-07-12": "Battle of the Boyne", + "1952-07-14": "Battle of the Boyne (Observed)", + "1952-08-04": "Summer Bank Holiday", + "1952-12-25": "Christmas Day", + "1952-12-26": "Boxing Day", + "1953-01-01": "New Year's Day", + "1953-01-02": "New Year Holiday", + "1953-03-17": "St. Patrick's Day", + "1953-04-03": "Good Friday", + "1953-04-06": "Easter Monday", + "1953-07-12": "Battle of the Boyne", + "1953-07-13": "Battle of the Boyne (Observed)", + "1953-08-03": "Summer Bank Holiday", + "1953-12-25": "Christmas Day", + "1953-12-26": "Boxing Day", + "1953-12-28": "Boxing Day (Observed)", + "1954-01-01": "New Year's Day", + "1954-01-02": "New Year Holiday", + "1954-01-04": "New Year Holiday (Observed)", + "1954-03-17": "St. Patrick's Day", + "1954-04-16": "Good Friday", + "1954-04-19": "Easter Monday", + "1954-07-12": "Battle of the Boyne", + "1954-08-02": "Summer Bank Holiday", + "1954-12-25": "Christmas Day", + "1954-12-26": "Boxing Day", + "1954-12-27": "Christmas Day (Observed)", + "1954-12-28": "Boxing Day (Observed)", + "1955-01-01": "New Year's Day", + "1955-01-02": "New Year Holiday", + "1955-01-03": "New Year's Day (Observed)", + "1955-01-04": "New Year Holiday (Observed)", + "1955-03-17": "St. Patrick's Day", + "1955-04-08": "Good Friday", + "1955-04-11": "Easter Monday", + "1955-07-12": "Battle of the Boyne", + "1955-08-01": "Summer Bank Holiday", + "1955-12-25": "Christmas Day", + "1955-12-26": "Boxing Day; Christmas Day (Observed)", + "1955-12-27": "Christmas Day (Observed)", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year Holiday; New Year's Day (Observed)", + "1956-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "1956-03-17": "St. Patrick's Day", + "1956-03-19": "St. Patrick's Day (Observed)", + "1956-03-30": "Good Friday", + "1956-04-02": "Easter Monday", + "1956-07-12": "Battle of the Boyne", + "1956-08-06": "Summer Bank Holiday", + "1956-12-25": "Christmas Day", + "1956-12-26": "Boxing Day", + "1957-01-01": "New Year's Day", + "1957-01-02": "New Year Holiday", + "1957-03-17": "St. Patrick's Day", + "1957-03-18": "St. Patrick's Day (Observed)", + "1957-04-19": "Good Friday", + "1957-04-22": "Easter Monday", + "1957-07-12": "Battle of the Boyne", + "1957-08-05": "Summer Bank Holiday", + "1957-12-25": "Christmas Day", + "1957-12-26": "Boxing Day", + "1958-01-01": "New Year's Day", + "1958-01-02": "New Year Holiday", + "1958-03-17": "St. Patrick's Day", + "1958-04-04": "Good Friday", + "1958-04-07": "Easter Monday", + "1958-07-12": "Battle of the Boyne", + "1958-07-14": "Battle of the Boyne (Observed)", + "1958-08-04": "Summer Bank Holiday", + "1958-12-25": "Christmas Day", + "1958-12-26": "Boxing Day", + "1959-01-01": "New Year's Day", + "1959-01-02": "New Year Holiday", + "1959-03-17": "St. Patrick's Day", + "1959-03-27": "Good Friday", + "1959-03-30": "Easter Monday", + "1959-07-12": "Battle of the Boyne", + "1959-07-13": "Battle of the Boyne (Observed)", + "1959-08-03": "Summer Bank Holiday", + "1959-12-25": "Christmas Day", + "1959-12-26": "Boxing Day", + "1959-12-28": "Boxing Day (Observed)", + "1960-01-01": "New Year's Day", + "1960-01-02": "New Year Holiday", + "1960-01-04": "New Year Holiday (Observed)", + "1960-03-17": "St. Patrick's Day", + "1960-04-15": "Good Friday", + "1960-04-18": "Easter Monday", + "1960-07-12": "Battle of the Boyne", + "1960-08-01": "Summer Bank Holiday", + "1960-12-25": "Christmas Day", + "1960-12-26": "Boxing Day; Christmas Day (Observed)", + "1960-12-27": "Christmas Day (Observed)", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year Holiday; New Year's Day (Observed)", + "1961-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "1961-03-17": "St. Patrick's Day", + "1961-03-31": "Good Friday", + "1961-04-03": "Easter Monday", + "1961-07-12": "Battle of the Boyne", + "1961-08-07": "Summer Bank Holiday", + "1961-12-25": "Christmas Day", + "1961-12-26": "Boxing Day", + "1962-01-01": "New Year's Day", + "1962-01-02": "New Year Holiday", + "1962-03-17": "St. Patrick's Day", + "1962-03-19": "St. Patrick's Day (Observed)", + "1962-04-20": "Good Friday", + "1962-04-23": "Easter Monday", + "1962-07-12": "Battle of the Boyne", + "1962-08-06": "Summer Bank Holiday", + "1962-12-25": "Christmas Day", + "1962-12-26": "Boxing Day", + "1963-01-01": "New Year's Day", + "1963-01-02": "New Year Holiday", + "1963-03-17": "St. Patrick's Day", + "1963-03-18": "St. Patrick's Day (Observed)", + "1963-04-12": "Good Friday", + "1963-04-15": "Easter Monday", + "1963-07-12": "Battle of the Boyne", + "1963-08-05": "Summer Bank Holiday", + "1963-12-25": "Christmas Day", + "1963-12-26": "Boxing Day", + "1964-01-01": "New Year's Day", + "1964-01-02": "New Year Holiday", + "1964-03-17": "St. Patrick's Day", + "1964-03-27": "Good Friday", + "1964-03-30": "Easter Monday", + "1964-07-12": "Battle of the Boyne", + "1964-07-13": "Battle of the Boyne (Observed)", + "1964-08-03": "Summer Bank Holiday", + "1964-12-25": "Christmas Day", + "1964-12-26": "Boxing Day", + "1964-12-28": "Boxing Day (Observed)", + "1965-01-01": "New Year's Day", + "1965-01-02": "New Year Holiday", + "1965-01-04": "New Year Holiday (Observed)", + "1965-03-17": "St. Patrick's Day", + "1965-04-16": "Good Friday", + "1965-04-19": "Easter Monday", + "1965-07-12": "Battle of the Boyne", + "1965-08-02": "Summer Bank Holiday", + "1965-12-25": "Christmas Day", + "1965-12-26": "Boxing Day", + "1965-12-27": "Christmas Day (Observed)", + "1965-12-28": "Boxing Day (Observed)", + "1966-01-01": "New Year's Day", + "1966-01-02": "New Year Holiday", + "1966-01-03": "New Year's Day (Observed)", + "1966-01-04": "New Year Holiday (Observed)", + "1966-03-17": "St. Patrick's Day", + "1966-04-08": "Good Friday", + "1966-04-11": "Easter Monday", + "1966-07-12": "Battle of the Boyne", + "1966-08-01": "Summer Bank Holiday", + "1966-12-25": "Christmas Day", + "1966-12-26": "Boxing Day; Christmas Day (Observed)", + "1966-12-27": "Christmas Day (Observed)", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year Holiday; New Year's Day (Observed)", + "1967-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "1967-03-17": "St. Patrick's Day", + "1967-03-24": "Good Friday", + "1967-03-27": "Easter Monday", + "1967-07-12": "Battle of the Boyne", + "1967-08-07": "Summer Bank Holiday", + "1967-12-25": "Christmas Day", + "1967-12-26": "Boxing Day", + "1968-01-01": "New Year's Day", + "1968-01-02": "New Year Holiday", + "1968-03-17": "St. Patrick's Day", + "1968-03-18": "St. Patrick's Day (Observed)", + "1968-04-12": "Good Friday", + "1968-04-15": "Easter Monday", + "1968-07-12": "Battle of the Boyne", + "1968-08-05": "Summer Bank Holiday", + "1968-12-25": "Christmas Day", + "1968-12-26": "Boxing Day", + "1969-01-01": "New Year's Day", + "1969-01-02": "New Year Holiday", + "1969-03-17": "St. Patrick's Day", + "1969-04-04": "Good Friday", + "1969-04-07": "Easter Monday", + "1969-07-12": "Battle of the Boyne", + "1969-07-14": "Battle of the Boyne (Observed)", + "1969-08-04": "Summer Bank Holiday", + "1969-12-25": "Christmas Day", + "1969-12-26": "Boxing Day", + "1970-01-01": "New Year's Day", + "1970-01-02": "New Year Holiday", + "1970-03-17": "St. Patrick's Day", + "1970-03-27": "Good Friday", + "1970-03-30": "Easter Monday", + "1970-07-12": "Battle of the Boyne", + "1970-07-13": "Battle of the Boyne (Observed)", + "1970-08-03": "Summer Bank Holiday", + "1970-12-25": "Christmas Day", + "1970-12-26": "Boxing Day", + "1970-12-28": "Boxing Day (Observed)", + "1971-01-01": "New Year's Day", + "1971-01-02": "New Year Holiday", + "1971-01-04": "New Year Holiday (Observed)", + "1971-03-17": "St. Patrick's Day", + "1971-04-09": "Good Friday", + "1971-04-12": "Easter Monday", + "1971-05-31": "Spring Bank Holiday", + "1971-07-12": "Battle of the Boyne", + "1971-08-02": "Summer Bank Holiday", + "1971-08-30": "Late Summer Bank Holiday", + "1971-12-25": "Christmas Day", + "1971-12-26": "Boxing Day", + "1971-12-27": "Christmas Day (Observed)", + "1971-12-28": "Boxing Day (Observed)", + "1972-01-01": "New Year's Day", + "1972-01-02": "New Year Holiday", + "1972-01-03": "New Year's Day (Observed)", + "1972-01-04": "New Year Holiday (Observed)", + "1972-03-17": "St. Patrick's Day", + "1972-03-31": "Good Friday", + "1972-04-03": "Easter Monday", + "1972-05-29": "Spring Bank Holiday", + "1972-07-12": "Battle of the Boyne", + "1972-08-07": "Summer Bank Holiday", + "1972-08-28": "Late Summer Bank Holiday", + "1972-12-25": "Christmas Day", + "1972-12-26": "Boxing Day", + "1973-01-01": "New Year's Day", + "1973-01-02": "New Year Holiday", + "1973-03-17": "St. Patrick's Day", + "1973-03-19": "St. Patrick's Day (Observed)", + "1973-04-20": "Good Friday", + "1973-04-23": "Easter Monday", + "1973-05-28": "Spring Bank Holiday", + "1973-07-12": "Battle of the Boyne", + "1973-08-06": "Summer Bank Holiday", + "1973-08-27": "Late Summer Bank Holiday", + "1973-12-25": "Christmas Day", + "1973-12-26": "Boxing Day", + "1974-01-01": "New Year's Day", + "1974-01-02": "New Year Holiday", + "1974-03-17": "St. Patrick's Day", + "1974-03-18": "St. Patrick's Day (Observed)", + "1974-04-12": "Good Friday", + "1974-04-15": "Easter Monday", + "1974-05-27": "Spring Bank Holiday", + "1974-07-12": "Battle of the Boyne", + "1974-08-05": "Summer Bank Holiday", + "1974-08-26": "Late Summer Bank Holiday", + "1974-12-25": "Christmas Day", + "1974-12-26": "Boxing Day", + "1975-01-01": "New Year's Day", + "1975-01-02": "New Year Holiday", + "1975-03-17": "St. Patrick's Day", + "1975-03-28": "Good Friday", + "1975-03-31": "Easter Monday", + "1975-05-26": "Spring Bank Holiday", + "1975-07-12": "Battle of the Boyne", + "1975-07-14": "Battle of the Boyne (Observed)", + "1975-08-04": "Summer Bank Holiday", + "1975-08-25": "Late Summer Bank Holiday", + "1975-12-25": "Christmas Day", + "1975-12-26": "Boxing Day", + "1976-01-01": "New Year's Day", + "1976-01-02": "New Year Holiday", + "1976-03-17": "St. Patrick's Day", + "1976-04-16": "Good Friday", + "1976-04-19": "Easter Monday", + "1976-05-31": "Spring Bank Holiday", + "1976-07-12": "Battle of the Boyne", + "1976-08-02": "Summer Bank Holiday", + "1976-08-30": "Late Summer Bank Holiday", + "1976-12-25": "Christmas Day", + "1976-12-26": "Boxing Day", + "1976-12-27": "Christmas Day (Observed)", + "1976-12-28": "Boxing Day (Observed)", + "1977-01-01": "New Year's Day", + "1977-01-02": "New Year Holiday", + "1977-01-03": "New Year's Day (Observed)", + "1977-01-04": "New Year Holiday (Observed)", + "1977-03-17": "St. Patrick's Day", + "1977-04-08": "Good Friday", + "1977-04-11": "Easter Monday", + "1977-05-30": "Spring Bank Holiday", + "1977-06-07": "Silver Jubilee of Elizabeth II", + "1977-07-12": "Battle of the Boyne", + "1977-08-01": "Summer Bank Holiday", + "1977-08-29": "Late Summer Bank Holiday", + "1977-12-25": "Christmas Day", + "1977-12-26": "Boxing Day", + "1977-12-27": "Christmas Day (Observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year Holiday; New Year's Day (Observed)", + "1978-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "1978-03-17": "St. Patrick's Day", + "1978-03-24": "Good Friday", + "1978-03-27": "Easter Monday", + "1978-05-01": "May Day", + "1978-05-29": "Spring Bank Holiday", + "1978-07-12": "Battle of the Boyne", + "1978-08-07": "Summer Bank Holiday", + "1978-08-28": "Late Summer Bank Holiday", + "1978-12-25": "Christmas Day", + "1978-12-26": "Boxing Day", + "1979-01-01": "New Year's Day", + "1979-01-02": "New Year Holiday", + "1979-03-17": "St. Patrick's Day", + "1979-03-19": "St. Patrick's Day (Observed)", + "1979-04-13": "Good Friday", + "1979-04-16": "Easter Monday", + "1979-05-07": "May Day", + "1979-05-28": "Spring Bank Holiday", + "1979-07-12": "Battle of the Boyne", + "1979-08-06": "Summer Bank Holiday", + "1979-08-27": "Late Summer Bank Holiday", + "1979-12-25": "Christmas Day", + "1979-12-26": "Boxing Day", + "1980-01-01": "New Year's Day", + "1980-01-02": "New Year Holiday", + "1980-03-17": "St. Patrick's Day", + "1980-04-04": "Good Friday", + "1980-04-07": "Easter Monday", + "1980-05-05": "May Day", + "1980-05-26": "Spring Bank Holiday", + "1980-07-12": "Battle of the Boyne", + "1980-07-14": "Battle of the Boyne (Observed)", + "1980-08-04": "Summer Bank Holiday", + "1980-08-25": "Late Summer Bank Holiday", + "1980-12-25": "Christmas Day", + "1980-12-26": "Boxing Day", + "1981-01-01": "New Year's Day", + "1981-01-02": "New Year Holiday", + "1981-03-17": "St. Patrick's Day", + "1981-04-17": "Good Friday", + "1981-04-20": "Easter Monday", + "1981-05-04": "May Day", + "1981-05-25": "Spring Bank Holiday", + "1981-07-12": "Battle of the Boyne", + "1981-07-13": "Battle of the Boyne (Observed)", + "1981-07-29": "Wedding of Charles and Diana", + "1981-08-03": "Summer Bank Holiday", + "1981-08-31": "Late Summer Bank Holiday", + "1981-12-25": "Christmas Day", + "1981-12-26": "Boxing Day", + "1981-12-28": "Boxing Day (Observed)", + "1982-01-01": "New Year's Day", + "1982-01-02": "New Year Holiday", + "1982-01-04": "New Year Holiday (Observed)", + "1982-03-17": "St. Patrick's Day", + "1982-04-09": "Good Friday", + "1982-04-12": "Easter Monday", + "1982-05-03": "May Day", + "1982-05-31": "Spring Bank Holiday", + "1982-07-12": "Battle of the Boyne", + "1982-08-02": "Summer Bank Holiday", + "1982-08-30": "Late Summer Bank Holiday", + "1982-12-25": "Christmas Day", + "1982-12-26": "Boxing Day", + "1982-12-27": "Christmas Day (Observed)", + "1982-12-28": "Boxing Day (Observed)", + "1983-01-01": "New Year's Day", + "1983-01-02": "New Year Holiday", + "1983-01-03": "New Year's Day (Observed)", + "1983-01-04": "New Year Holiday (Observed)", + "1983-03-17": "St. Patrick's Day", + "1983-04-01": "Good Friday", + "1983-04-04": "Easter Monday", + "1983-05-02": "May Day", + "1983-05-30": "Spring Bank Holiday", + "1983-07-12": "Battle of the Boyne", + "1983-08-01": "Summer Bank Holiday", + "1983-08-29": "Late Summer Bank Holiday", + "1983-12-25": "Christmas Day", + "1983-12-26": "Boxing Day", + "1983-12-27": "Christmas Day (Observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year Holiday; New Year's Day (Observed)", + "1984-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "1984-03-17": "St. Patrick's Day", + "1984-03-19": "St. Patrick's Day (Observed)", + "1984-04-20": "Good Friday", + "1984-04-23": "Easter Monday", + "1984-05-07": "May Day", + "1984-05-28": "Spring Bank Holiday", + "1984-07-12": "Battle of the Boyne", + "1984-08-06": "Summer Bank Holiday", + "1984-08-27": "Late Summer Bank Holiday", + "1984-12-25": "Christmas Day", + "1984-12-26": "Boxing Day", + "1985-01-01": "New Year's Day", + "1985-01-02": "New Year Holiday", + "1985-03-17": "St. Patrick's Day", + "1985-03-18": "St. Patrick's Day (Observed)", + "1985-04-05": "Good Friday", + "1985-04-08": "Easter Monday", + "1985-05-06": "May Day", + "1985-05-27": "Spring Bank Holiday", + "1985-07-12": "Battle of the Boyne", + "1985-08-05": "Summer Bank Holiday", + "1985-08-26": "Late Summer Bank Holiday", + "1985-12-25": "Christmas Day", + "1985-12-26": "Boxing Day", + "1986-01-01": "New Year's Day", + "1986-01-02": "New Year Holiday", + "1986-03-17": "St. Patrick's Day", + "1986-03-28": "Good Friday", + "1986-03-31": "Easter Monday", + "1986-05-05": "May Day", + "1986-05-26": "Spring Bank Holiday", + "1986-07-12": "Battle of the Boyne", + "1986-07-14": "Battle of the Boyne (Observed)", + "1986-08-04": "Summer Bank Holiday", + "1986-08-25": "Late Summer Bank Holiday", + "1986-12-25": "Christmas Day", + "1986-12-26": "Boxing Day", + "1987-01-01": "New Year's Day", + "1987-01-02": "New Year Holiday", + "1987-03-17": "St. Patrick's Day", + "1987-04-17": "Good Friday", + "1987-04-20": "Easter Monday", + "1987-05-04": "May Day", + "1987-05-25": "Spring Bank Holiday", + "1987-07-12": "Battle of the Boyne", + "1987-07-13": "Battle of the Boyne (Observed)", + "1987-08-03": "Summer Bank Holiday", + "1987-08-31": "Late Summer Bank Holiday", + "1987-12-25": "Christmas Day", + "1987-12-26": "Boxing Day", + "1987-12-28": "Boxing Day (Observed)", + "1988-01-01": "New Year's Day", + "1988-01-02": "New Year Holiday", + "1988-01-04": "New Year Holiday (Observed)", + "1988-03-17": "St. Patrick's Day", + "1988-04-01": "Good Friday", + "1988-04-04": "Easter Monday", + "1988-05-02": "May Day", + "1988-05-30": "Spring Bank Holiday", + "1988-07-12": "Battle of the Boyne", + "1988-08-01": "Summer Bank Holiday", + "1988-08-29": "Late Summer Bank Holiday", + "1988-12-25": "Christmas Day", + "1988-12-26": "Boxing Day", + "1988-12-27": "Christmas Day (Observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year Holiday; New Year's Day (Observed)", + "1989-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "1989-03-17": "St. Patrick's Day", + "1989-03-24": "Good Friday", + "1989-03-27": "Easter Monday", + "1989-05-01": "May Day", + "1989-05-29": "Spring Bank Holiday", + "1989-07-12": "Battle of the Boyne", + "1989-08-07": "Summer Bank Holiday", + "1989-08-28": "Late Summer Bank Holiday", + "1989-12-25": "Christmas Day", + "1989-12-26": "Boxing Day", + "1990-01-01": "New Year's Day", + "1990-01-02": "New Year Holiday", + "1990-03-17": "St. Patrick's Day", + "1990-03-19": "St. Patrick's Day (Observed)", + "1990-04-13": "Good Friday", + "1990-04-16": "Easter Monday", + "1990-05-07": "May Day", + "1990-05-28": "Spring Bank Holiday", + "1990-07-12": "Battle of the Boyne", + "1990-08-06": "Summer Bank Holiday", + "1990-08-27": "Late Summer Bank Holiday", + "1990-12-25": "Christmas Day", + "1990-12-26": "Boxing Day", + "1991-01-01": "New Year's Day", + "1991-01-02": "New Year Holiday", + "1991-03-17": "St. Patrick's Day", + "1991-03-18": "St. Patrick's Day (Observed)", + "1991-03-29": "Good Friday", + "1991-04-01": "Easter Monday", + "1991-05-06": "May Day", + "1991-05-27": "Spring Bank Holiday", + "1991-07-12": "Battle of the Boyne", + "1991-08-05": "Summer Bank Holiday", + "1991-08-26": "Late Summer Bank Holiday", + "1991-12-25": "Christmas Day", + "1991-12-26": "Boxing Day", + "1992-01-01": "New Year's Day", + "1992-01-02": "New Year Holiday", + "1992-03-17": "St. Patrick's Day", + "1992-04-17": "Good Friday", + "1992-04-20": "Easter Monday", + "1992-05-04": "May Day", + "1992-05-25": "Spring Bank Holiday", + "1992-07-12": "Battle of the Boyne", + "1992-07-13": "Battle of the Boyne (Observed)", + "1992-08-03": "Summer Bank Holiday", + "1992-08-31": "Late Summer Bank Holiday", + "1992-12-25": "Christmas Day", + "1992-12-26": "Boxing Day", + "1992-12-28": "Boxing Day (Observed)", + "1993-01-01": "New Year's Day", + "1993-01-02": "New Year Holiday", + "1993-01-04": "New Year Holiday (Observed)", + "1993-03-17": "St. Patrick's Day", + "1993-04-09": "Good Friday", + "1993-04-12": "Easter Monday", + "1993-05-03": "May Day", + "1993-05-31": "Spring Bank Holiday", + "1993-07-12": "Battle of the Boyne", + "1993-08-02": "Summer Bank Holiday", + "1993-08-30": "Late Summer Bank Holiday", + "1993-12-25": "Christmas Day", + "1993-12-26": "Boxing Day", + "1993-12-27": "Christmas Day (Observed)", + "1993-12-28": "Boxing Day (Observed)", + "1994-01-01": "New Year's Day", + "1994-01-02": "New Year Holiday", + "1994-01-03": "New Year's Day (Observed)", + "1994-01-04": "New Year Holiday (Observed)", + "1994-03-17": "St. Patrick's Day", + "1994-04-01": "Good Friday", + "1994-04-04": "Easter Monday", + "1994-05-02": "May Day", + "1994-05-30": "Spring Bank Holiday", + "1994-07-12": "Battle of the Boyne", + "1994-08-01": "Summer Bank Holiday", + "1994-08-29": "Late Summer Bank Holiday", + "1994-12-25": "Christmas Day", + "1994-12-26": "Boxing Day", + "1994-12-27": "Christmas Day (Observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year Holiday; New Year's Day (Observed)", + "1995-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "1995-03-17": "St. Patrick's Day", + "1995-04-14": "Good Friday", + "1995-04-17": "Easter Monday", + "1995-05-08": "May Day", + "1995-05-29": "Spring Bank Holiday", + "1995-07-12": "Battle of the Boyne", + "1995-08-07": "Summer Bank Holiday", + "1995-08-28": "Late Summer Bank Holiday", + "1995-12-25": "Christmas Day", + "1995-12-26": "Boxing Day", + "1996-01-01": "New Year's Day", + "1996-01-02": "New Year Holiday", + "1996-03-17": "St. Patrick's Day", + "1996-03-18": "St. Patrick's Day (Observed)", + "1996-04-05": "Good Friday", + "1996-04-08": "Easter Monday", + "1996-05-06": "May Day", + "1996-05-27": "Spring Bank Holiday", + "1996-07-12": "Battle of the Boyne", + "1996-08-05": "Summer Bank Holiday", + "1996-08-26": "Late Summer Bank Holiday", + "1996-12-25": "Christmas Day", + "1996-12-26": "Boxing Day", + "1997-01-01": "New Year's Day", + "1997-01-02": "New Year Holiday", + "1997-03-17": "St. Patrick's Day", + "1997-03-28": "Good Friday", + "1997-03-31": "Easter Monday", + "1997-05-05": "May Day", + "1997-05-26": "Spring Bank Holiday", + "1997-07-12": "Battle of the Boyne", + "1997-07-14": "Battle of the Boyne (Observed)", + "1997-08-04": "Summer Bank Holiday", + "1997-08-25": "Late Summer Bank Holiday", + "1997-12-25": "Christmas Day", + "1997-12-26": "Boxing Day", + "1998-01-01": "New Year's Day", + "1998-01-02": "New Year Holiday", + "1998-03-17": "St. Patrick's Day", + "1998-04-10": "Good Friday", + "1998-04-13": "Easter Monday", + "1998-05-04": "May Day", + "1998-05-25": "Spring Bank Holiday", + "1998-07-12": "Battle of the Boyne", + "1998-07-13": "Battle of the Boyne (Observed)", + "1998-08-03": "Summer Bank Holiday", + "1998-08-31": "Late Summer Bank Holiday", + "1998-12-25": "Christmas Day", + "1998-12-26": "Boxing Day", + "1998-12-28": "Boxing Day (Observed)", + "1999-01-01": "New Year's Day", + "1999-01-02": "New Year Holiday", + "1999-01-04": "New Year Holiday (Observed)", + "1999-03-17": "St. Patrick's Day", + "1999-04-02": "Good Friday", + "1999-04-05": "Easter Monday", + "1999-05-03": "May Day", + "1999-05-31": "Spring Bank Holiday", + "1999-07-12": "Battle of the Boyne", + "1999-08-02": "Summer Bank Holiday", + "1999-08-30": "Late Summer Bank Holiday", + "1999-12-25": "Christmas Day", + "1999-12-26": "Boxing Day", + "1999-12-27": "Christmas Day (Observed)", + "1999-12-28": "Boxing Day (Observed)", + "1999-12-31": "Millennium Celebrations", + "2000-01-01": "New Year's Day", + "2000-01-02": "New Year Holiday", + "2000-01-03": "New Year's Day (Observed)", + "2000-01-04": "New Year Holiday (Observed)", + "2000-03-17": "St. Patrick's Day", + "2000-04-21": "Good Friday", + "2000-04-24": "Easter Monday", + "2000-05-01": "May Day", + "2000-05-29": "Spring Bank Holiday", + "2000-07-12": "Battle of the Boyne", + "2000-08-07": "Summer Bank Holiday", + "2000-08-28": "Late Summer Bank Holiday", + "2000-12-25": "Christmas Day", + "2000-12-26": "Boxing Day", + "2001-01-01": "New Year's Day", + "2001-01-02": "New Year Holiday", + "2001-03-17": "St. Patrick's Day", + "2001-03-19": "St. Patrick's Day (Observed)", + "2001-04-13": "Good Friday", + "2001-04-16": "Easter Monday", + "2001-05-07": "May Day", + "2001-05-28": "Spring Bank Holiday", + "2001-07-12": "Battle of the Boyne", + "2001-08-06": "Summer Bank Holiday", + "2001-08-27": "Late Summer Bank Holiday", + "2001-12-25": "Christmas Day", + "2001-12-26": "Boxing Day", + "2002-01-01": "New Year's Day", + "2002-01-02": "New Year Holiday", + "2002-03-17": "St. Patrick's Day", + "2002-03-18": "St. Patrick's Day (Observed)", + "2002-03-29": "Good Friday", + "2002-04-01": "Easter Monday", + "2002-05-06": "May Day", + "2002-06-03": "Golden Jubilee of Elizabeth II", + "2002-06-04": "Spring Bank Holiday", + "2002-07-12": "Battle of the Boyne", + "2002-08-05": "Summer Bank Holiday", + "2002-08-26": "Late Summer Bank Holiday", + "2002-12-25": "Christmas Day", + "2002-12-26": "Boxing Day", + "2003-01-01": "New Year's Day", + "2003-01-02": "New Year Holiday", + "2003-03-17": "St. Patrick's Day", + "2003-04-18": "Good Friday", + "2003-04-21": "Easter Monday", + "2003-05-05": "May Day", + "2003-05-26": "Spring Bank Holiday", + "2003-07-12": "Battle of the Boyne", + "2003-07-14": "Battle of the Boyne (Observed)", + "2003-08-04": "Summer Bank Holiday", + "2003-08-25": "Late Summer Bank Holiday", + "2003-12-25": "Christmas Day", + "2003-12-26": "Boxing Day", + "2004-01-01": "New Year's Day", + "2004-01-02": "New Year Holiday", + "2004-03-17": "St. Patrick's Day", + "2004-04-09": "Good Friday", + "2004-04-12": "Easter Monday", + "2004-05-03": "May Day", + "2004-05-31": "Spring Bank Holiday", + "2004-07-12": "Battle of the Boyne", + "2004-08-02": "Summer Bank Holiday", + "2004-08-30": "Late Summer Bank Holiday", + "2004-12-25": "Christmas Day", + "2004-12-26": "Boxing Day", + "2004-12-27": "Christmas Day (Observed)", + "2004-12-28": "Boxing Day (Observed)", + "2005-01-01": "New Year's Day", + "2005-01-02": "New Year Holiday", + "2005-01-03": "New Year's Day (Observed)", + "2005-01-04": "New Year Holiday (Observed)", + "2005-03-17": "St. Patrick's Day", + "2005-03-25": "Good Friday", + "2005-03-28": "Easter Monday", + "2005-05-02": "May Day", + "2005-05-30": "Spring Bank Holiday", + "2005-07-12": "Battle of the Boyne", + "2005-08-01": "Summer Bank Holiday", + "2005-08-29": "Late Summer Bank Holiday", + "2005-12-25": "Christmas Day", + "2005-12-26": "Boxing Day", + "2005-12-27": "Christmas Day (Observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year Holiday; New Year's Day (Observed)", + "2006-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "2006-03-17": "St. Patrick's Day", + "2006-04-14": "Good Friday", + "2006-04-17": "Easter Monday", + "2006-05-01": "May Day", + "2006-05-29": "Spring Bank Holiday", + "2006-07-12": "Battle of the Boyne", + "2006-08-07": "Summer Bank Holiday", + "2006-08-28": "Late Summer Bank Holiday", + "2006-11-30": "St. Andrew's Day", + "2006-12-25": "Christmas Day", + "2006-12-26": "Boxing Day", + "2007-01-01": "New Year's Day", + "2007-01-02": "New Year Holiday", + "2007-03-17": "St. Patrick's Day", + "2007-03-19": "St. Patrick's Day (Observed)", + "2007-04-06": "Good Friday", + "2007-04-09": "Easter Monday", + "2007-05-07": "May Day", + "2007-05-28": "Spring Bank Holiday", + "2007-07-12": "Battle of the Boyne", + "2007-08-06": "Summer Bank Holiday", + "2007-08-27": "Late Summer Bank Holiday", + "2007-11-30": "St. Andrew's Day", + "2007-12-25": "Christmas Day", + "2007-12-26": "Boxing Day", + "2008-01-01": "New Year's Day", + "2008-01-02": "New Year Holiday", + "2008-03-17": "St. Patrick's Day", + "2008-03-21": "Good Friday", + "2008-03-24": "Easter Monday", + "2008-05-05": "May Day", + "2008-05-26": "Spring Bank Holiday", + "2008-07-12": "Battle of the Boyne", + "2008-07-14": "Battle of the Boyne (Observed)", + "2008-08-04": "Summer Bank Holiday", + "2008-08-25": "Late Summer Bank Holiday", + "2008-11-30": "St. Andrew's Day", + "2008-12-01": "St. Andrew's Day (Observed)", + "2008-12-25": "Christmas Day", + "2008-12-26": "Boxing Day", + "2009-01-01": "New Year's Day", + "2009-01-02": "New Year Holiday", + "2009-03-17": "St. Patrick's Day", + "2009-04-10": "Good Friday", + "2009-04-13": "Easter Monday", + "2009-05-04": "May Day", + "2009-05-25": "Spring Bank Holiday", + "2009-07-12": "Battle of the Boyne", + "2009-07-13": "Battle of the Boyne (Observed)", + "2009-08-03": "Summer Bank Holiday", + "2009-08-31": "Late Summer Bank Holiday", + "2009-11-30": "St. Andrew's Day", + "2009-12-25": "Christmas Day", + "2009-12-26": "Boxing Day", + "2009-12-28": "Boxing Day (Observed)", + "2010-01-01": "New Year's Day", + "2010-01-02": "New Year Holiday", + "2010-01-04": "New Year Holiday (Observed)", + "2010-03-17": "St. Patrick's Day", + "2010-04-02": "Good Friday", + "2010-04-05": "Easter Monday", + "2010-05-03": "May Day", + "2010-05-31": "Spring Bank Holiday", + "2010-07-12": "Battle of the Boyne", + "2010-08-02": "Summer Bank Holiday", + "2010-08-30": "Late Summer Bank Holiday", + "2010-11-30": "St. Andrew's Day", + "2010-12-25": "Christmas Day", + "2010-12-26": "Boxing Day", + "2010-12-27": "Christmas Day (Observed)", + "2010-12-28": "Boxing Day (Observed)", + "2011-01-01": "New Year's Day", + "2011-01-02": "New Year Holiday", + "2011-01-03": "New Year's Day (Observed)", + "2011-01-04": "New Year Holiday (Observed)", + "2011-03-17": "St. Patrick's Day", + "2011-04-22": "Good Friday", + "2011-04-25": "Easter Monday", + "2011-04-29": "Wedding of William and Catherine", + "2011-05-02": "May Day", + "2011-05-30": "Spring Bank Holiday", + "2011-07-12": "Battle of the Boyne", + "2011-08-01": "Summer Bank Holiday", + "2011-08-29": "Late Summer Bank Holiday", + "2011-11-30": "St. Andrew's Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "Boxing Day", + "2011-12-27": "Christmas Day (Observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year Holiday; New Year's Day (Observed)", + "2012-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "2012-03-17": "St. Patrick's Day", + "2012-03-19": "St. Patrick's Day (Observed)", + "2012-04-06": "Good Friday", + "2012-04-09": "Easter Monday", + "2012-05-07": "May Day", + "2012-06-04": "Spring Bank Holiday", + "2012-06-05": "Diamond Jubilee of Elizabeth II", + "2012-07-12": "Battle of the Boyne", + "2012-08-06": "Summer Bank Holiday", + "2012-08-27": "Late Summer Bank Holiday", + "2012-11-30": "St. Andrew's Day", + "2012-12-25": "Christmas Day", + "2012-12-26": "Boxing Day", + "2013-01-01": "New Year's Day", + "2013-01-02": "New Year Holiday", + "2013-03-17": "St. Patrick's Day", + "2013-03-18": "St. Patrick's Day (Observed)", + "2013-03-29": "Good Friday", + "2013-04-01": "Easter Monday", + "2013-05-06": "May Day", + "2013-05-27": "Spring Bank Holiday", + "2013-07-12": "Battle of the Boyne", + "2013-08-05": "Summer Bank Holiday", + "2013-08-26": "Late Summer Bank Holiday", + "2013-11-30": "St. Andrew's Day", + "2013-12-02": "St. Andrew's Day (Observed)", + "2013-12-25": "Christmas Day", + "2013-12-26": "Boxing Day", + "2014-01-01": "New Year's Day", + "2014-01-02": "New Year Holiday", + "2014-03-17": "St. Patrick's Day", + "2014-04-18": "Good Friday", + "2014-04-21": "Easter Monday", + "2014-05-05": "May Day", + "2014-05-26": "Spring Bank Holiday", + "2014-07-12": "Battle of the Boyne", + "2014-07-14": "Battle of the Boyne (Observed)", + "2014-08-04": "Summer Bank Holiday", + "2014-08-25": "Late Summer Bank Holiday", + "2014-11-30": "St. Andrew's Day", + "2014-12-01": "St. Andrew's Day (Observed)", + "2014-12-25": "Christmas Day", + "2014-12-26": "Boxing Day", + "2015-01-01": "New Year's Day", + "2015-01-02": "New Year Holiday", + "2015-03-17": "St. Patrick's Day", + "2015-04-03": "Good Friday", + "2015-04-06": "Easter Monday", + "2015-05-04": "May Day", + "2015-05-25": "Spring Bank Holiday", + "2015-07-12": "Battle of the Boyne", + "2015-07-13": "Battle of the Boyne (Observed)", + "2015-08-03": "Summer Bank Holiday", + "2015-08-31": "Late Summer Bank Holiday", + "2015-11-30": "St. Andrew's Day", + "2015-12-25": "Christmas Day", + "2015-12-26": "Boxing Day", + "2015-12-28": "Boxing Day (Observed)", + "2016-01-01": "New Year's Day", + "2016-01-02": "New Year Holiday", + "2016-01-04": "New Year Holiday (Observed)", + "2016-03-17": "St. Patrick's Day", + "2016-03-25": "Good Friday", + "2016-03-28": "Easter Monday", + "2016-05-02": "May Day", + "2016-05-30": "Spring Bank Holiday", + "2016-07-12": "Battle of the Boyne", + "2016-08-01": "Summer Bank Holiday", + "2016-08-29": "Late Summer Bank Holiday", + "2016-11-30": "St. Andrew's Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "Boxing Day", + "2016-12-27": "Christmas Day (Observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year Holiday; New Year's Day (Observed)", + "2017-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "2017-03-17": "St. Patrick's Day", + "2017-04-14": "Good Friday", + "2017-04-17": "Easter Monday", + "2017-05-01": "May Day", + "2017-05-29": "Spring Bank Holiday", + "2017-07-12": "Battle of the Boyne", + "2017-08-07": "Summer Bank Holiday", + "2017-08-28": "Late Summer Bank Holiday", + "2017-11-30": "St. Andrew's Day", + "2017-12-25": "Christmas Day", + "2017-12-26": "Boxing Day", + "2018-01-01": "New Year's Day", + "2018-01-02": "New Year Holiday", + "2018-03-17": "St. Patrick's Day", + "2018-03-19": "St. Patrick's Day (Observed)", + "2018-03-30": "Good Friday", + "2018-04-02": "Easter Monday", + "2018-05-07": "May Day", + "2018-05-28": "Spring Bank Holiday", + "2018-07-12": "Battle of the Boyne", + "2018-08-06": "Summer Bank Holiday", + "2018-08-27": "Late Summer Bank Holiday", + "2018-11-30": "St. Andrew's Day", + "2018-12-25": "Christmas Day", + "2018-12-26": "Boxing Day", + "2019-01-01": "New Year's Day", + "2019-01-02": "New Year Holiday", + "2019-03-17": "St. Patrick's Day", + "2019-03-18": "St. Patrick's Day (Observed)", + "2019-04-19": "Good Friday", + "2019-04-22": "Easter Monday", + "2019-05-06": "May Day", + "2019-05-27": "Spring Bank Holiday", + "2019-07-12": "Battle of the Boyne", + "2019-08-05": "Summer Bank Holiday", + "2019-08-26": "Late Summer Bank Holiday", + "2019-11-30": "St. Andrew's Day", + "2019-12-02": "St. Andrew's Day (Observed)", + "2019-12-25": "Christmas Day", + "2019-12-26": "Boxing Day", + "2020-01-01": "New Year's Day", + "2020-01-02": "New Year Holiday", + "2020-03-17": "St. Patrick's Day", + "2020-04-10": "Good Friday", + "2020-04-13": "Easter Monday", + "2020-05-08": "May Day", + "2020-05-25": "Spring Bank Holiday", + "2020-07-12": "Battle of the Boyne", + "2020-07-13": "Battle of the Boyne (Observed)", + "2020-08-03": "Summer Bank Holiday", + "2020-08-31": "Late Summer Bank Holiday", + "2020-11-30": "St. Andrew's Day", + "2020-12-25": "Christmas Day", + "2020-12-26": "Boxing Day", + "2020-12-28": "Boxing Day (Observed)", + "2021-01-01": "New Year's Day", + "2021-01-02": "New Year Holiday", + "2021-01-04": "New Year Holiday (Observed)", + "2021-03-17": "St. Patrick's Day", + "2021-04-02": "Good Friday", + "2021-04-05": "Easter Monday", + "2021-05-03": "May Day", + "2021-05-31": "Spring Bank Holiday", + "2021-07-12": "Battle of the Boyne", + "2021-08-02": "Summer Bank Holiday", + "2021-08-30": "Late Summer Bank Holiday", + "2021-11-30": "St. Andrew's Day", + "2021-12-25": "Christmas Day", + "2021-12-26": "Boxing Day", + "2021-12-27": "Christmas Day (Observed)", + "2021-12-28": "Boxing Day (Observed)", + "2022-01-01": "New Year's Day", + "2022-01-02": "New Year Holiday", + "2022-01-03": "New Year's Day (Observed)", + "2022-01-04": "New Year Holiday (Observed)", + "2022-03-17": "St. Patrick's Day", + "2022-04-15": "Good Friday", + "2022-04-18": "Easter Monday", + "2022-05-02": "May Day", + "2022-06-02": "Spring Bank Holiday", + "2022-06-03": "Platinum Jubilee of Elizabeth II", + "2022-07-12": "Battle of the Boyne", + "2022-08-01": "Summer Bank Holiday", + "2022-08-29": "Late Summer Bank Holiday", + "2022-09-19": "State Funeral of Queen Elizabeth II", + "2022-11-30": "St. Andrew's Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "Boxing Day", + "2022-12-27": "Christmas Day (Observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year Holiday; New Year's Day (Observed)", + "2023-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "2023-03-17": "St. Patrick's Day", + "2023-04-07": "Good Friday", + "2023-04-10": "Easter Monday", + "2023-05-01": "May Day", + "2023-05-08": "Coronation of Charles III", + "2023-05-29": "Spring Bank Holiday", + "2023-07-12": "Battle of the Boyne", + "2023-08-07": "Summer Bank Holiday", + "2023-08-28": "Late Summer Bank Holiday", + "2023-11-30": "St. Andrew's Day", + "2023-12-25": "Christmas Day", + "2023-12-26": "Boxing Day", + "2024-01-01": "New Year's Day", + "2024-01-02": "New Year Holiday", + "2024-03-17": "St. Patrick's Day", + "2024-03-18": "St. Patrick's Day (Observed)", + "2024-03-29": "Good Friday", + "2024-04-01": "Easter Monday", + "2024-05-06": "May Day", + "2024-05-27": "Spring Bank Holiday", + "2024-07-12": "Battle of the Boyne", + "2024-08-05": "Summer Bank Holiday", + "2024-08-26": "Late Summer Bank Holiday", + "2024-11-30": "St. Andrew's Day", + "2024-12-02": "St. Andrew's Day (Observed)", + "2024-12-25": "Christmas Day", + "2024-12-26": "Boxing Day", + "2025-01-01": "New Year's Day", + "2025-01-02": "New Year Holiday", + "2025-03-17": "St. Patrick's Day", + "2025-04-18": "Good Friday", + "2025-04-21": "Easter Monday", + "2025-05-05": "May Day", + "2025-05-26": "Spring Bank Holiday", + "2025-07-12": "Battle of the Boyne", + "2025-07-14": "Battle of the Boyne (Observed)", + "2025-08-04": "Summer Bank Holiday", + "2025-08-25": "Late Summer Bank Holiday", + "2025-11-30": "St. Andrew's Day", + "2025-12-01": "St. Andrew's Day (Observed)", + "2025-12-25": "Christmas Day", + "2025-12-26": "Boxing Day", + "2026-01-01": "New Year's Day", + "2026-01-02": "New Year Holiday", + "2026-03-17": "St. Patrick's Day", + "2026-04-03": "Good Friday", + "2026-04-06": "Easter Monday", + "2026-05-04": "May Day", + "2026-05-25": "Spring Bank Holiday", + "2026-07-12": "Battle of the Boyne", + "2026-07-13": "Battle of the Boyne (Observed)", + "2026-08-03": "Summer Bank Holiday", + "2026-08-31": "Late Summer Bank Holiday", + "2026-11-30": "St. Andrew's Day", + "2026-12-25": "Christmas Day", + "2026-12-26": "Boxing Day", + "2026-12-28": "Boxing Day (Observed)", + "2027-01-01": "New Year's Day", + "2027-01-02": "New Year Holiday", + "2027-01-04": "New Year Holiday (Observed)", + "2027-03-17": "St. Patrick's Day", + "2027-03-26": "Good Friday", + "2027-03-29": "Easter Monday", + "2027-05-03": "May Day", + "2027-05-31": "Spring Bank Holiday", + "2027-07-12": "Battle of the Boyne", + "2027-08-02": "Summer Bank Holiday", + "2027-08-30": "Late Summer Bank Holiday", + "2027-11-30": "St. Andrew's Day", + "2027-12-25": "Christmas Day", + "2027-12-26": "Boxing Day", + "2027-12-27": "Christmas Day (Observed)", + "2027-12-28": "Boxing Day (Observed)", + "2028-01-01": "New Year's Day", + "2028-01-02": "New Year Holiday", + "2028-01-03": "New Year's Day (Observed)", + "2028-01-04": "New Year Holiday (Observed)", + "2028-03-17": "St. Patrick's Day", + "2028-04-14": "Good Friday", + "2028-04-17": "Easter Monday", + "2028-05-01": "May Day", + "2028-05-29": "Spring Bank Holiday", + "2028-07-12": "Battle of the Boyne", + "2028-08-07": "Summer Bank Holiday", + "2028-08-28": "Late Summer Bank Holiday", + "2028-11-30": "St. Andrew's Day", + "2028-12-25": "Christmas Day", + "2028-12-26": "Boxing Day", + "2029-01-01": "New Year's Day", + "2029-01-02": "New Year Holiday", + "2029-03-17": "St. Patrick's Day", + "2029-03-19": "St. Patrick's Day (Observed)", + "2029-03-30": "Good Friday", + "2029-04-02": "Easter Monday", + "2029-05-07": "May Day", + "2029-05-28": "Spring Bank Holiday", + "2029-07-12": "Battle of the Boyne", + "2029-08-06": "Summer Bank Holiday", + "2029-08-27": "Late Summer Bank Holiday", + "2029-11-30": "St. Andrew's Day", + "2029-12-25": "Christmas Day", + "2029-12-26": "Boxing Day", + "2030-01-01": "New Year's Day", + "2030-01-02": "New Year Holiday", + "2030-03-17": "St. Patrick's Day", + "2030-03-18": "St. Patrick's Day (Observed)", + "2030-04-19": "Good Friday", + "2030-04-22": "Easter Monday", + "2030-05-06": "May Day", + "2030-05-27": "Spring Bank Holiday", + "2030-07-12": "Battle of the Boyne", + "2030-08-05": "Summer Bank Holiday", + "2030-08-26": "Late Summer Bank Holiday", + "2030-11-30": "St. Andrew's Day", + "2030-12-02": "St. Andrew's Day (Observed)", + "2030-12-25": "Christmas Day", + "2030-12-26": "Boxing Day", + "2031-01-01": "New Year's Day", + "2031-01-02": "New Year Holiday", + "2031-03-17": "St. Patrick's Day", + "2031-04-11": "Good Friday", + "2031-04-14": "Easter Monday", + "2031-05-05": "May Day", + "2031-05-26": "Spring Bank Holiday", + "2031-07-12": "Battle of the Boyne", + "2031-07-14": "Battle of the Boyne (Observed)", + "2031-08-04": "Summer Bank Holiday", + "2031-08-25": "Late Summer Bank Holiday", + "2031-11-30": "St. Andrew's Day", + "2031-12-01": "St. Andrew's Day (Observed)", + "2031-12-25": "Christmas Day", + "2031-12-26": "Boxing Day", + "2032-01-01": "New Year's Day", + "2032-01-02": "New Year Holiday", + "2032-03-17": "St. Patrick's Day", + "2032-03-26": "Good Friday", + "2032-03-29": "Easter Monday", + "2032-05-03": "May Day", + "2032-05-31": "Spring Bank Holiday", + "2032-07-12": "Battle of the Boyne", + "2032-08-02": "Summer Bank Holiday", + "2032-08-30": "Late Summer Bank Holiday", + "2032-11-30": "St. Andrew's Day", + "2032-12-25": "Christmas Day", + "2032-12-26": "Boxing Day", + "2032-12-27": "Christmas Day (Observed)", + "2032-12-28": "Boxing Day (Observed)", + "2033-01-01": "New Year's Day", + "2033-01-02": "New Year Holiday", + "2033-01-03": "New Year's Day (Observed)", + "2033-01-04": "New Year Holiday (Observed)", + "2033-03-17": "St. Patrick's Day", + "2033-04-15": "Good Friday", + "2033-04-18": "Easter Monday", + "2033-05-02": "May Day", + "2033-05-30": "Spring Bank Holiday", + "2033-07-12": "Battle of the Boyne", + "2033-08-01": "Summer Bank Holiday", + "2033-08-29": "Late Summer Bank Holiday", + "2033-11-30": "St. Andrew's Day", + "2033-12-25": "Christmas Day", + "2033-12-26": "Boxing Day", + "2033-12-27": "Christmas Day (Observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year Holiday; New Year's Day (Observed)", + "2034-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "2034-03-17": "St. Patrick's Day", + "2034-04-07": "Good Friday", + "2034-04-10": "Easter Monday", + "2034-05-01": "May Day", + "2034-05-29": "Spring Bank Holiday", + "2034-07-12": "Battle of the Boyne", + "2034-08-07": "Summer Bank Holiday", + "2034-08-28": "Late Summer Bank Holiday", + "2034-11-30": "St. Andrew's Day", + "2034-12-25": "Christmas Day", + "2034-12-26": "Boxing Day", + "2035-01-01": "New Year's Day", + "2035-01-02": "New Year Holiday", + "2035-03-17": "St. Patrick's Day", + "2035-03-19": "St. Patrick's Day (Observed)", + "2035-03-23": "Good Friday", + "2035-03-26": "Easter Monday", + "2035-05-07": "May Day", + "2035-05-28": "Spring Bank Holiday", + "2035-07-12": "Battle of the Boyne", + "2035-08-06": "Summer Bank Holiday", + "2035-08-27": "Late Summer Bank Holiday", + "2035-11-30": "St. Andrew's Day", + "2035-12-25": "Christmas Day", + "2035-12-26": "Boxing Day", + "2036-01-01": "New Year's Day", + "2036-01-02": "New Year Holiday", + "2036-03-17": "St. Patrick's Day", + "2036-04-11": "Good Friday", + "2036-04-14": "Easter Monday", + "2036-05-05": "May Day", + "2036-05-26": "Spring Bank Holiday", + "2036-07-12": "Battle of the Boyne", + "2036-07-14": "Battle of the Boyne (Observed)", + "2036-08-04": "Summer Bank Holiday", + "2036-08-25": "Late Summer Bank Holiday", + "2036-11-30": "St. Andrew's Day", + "2036-12-01": "St. Andrew's Day (Observed)", + "2036-12-25": "Christmas Day", + "2036-12-26": "Boxing Day", + "2037-01-01": "New Year's Day", + "2037-01-02": "New Year Holiday", + "2037-03-17": "St. Patrick's Day", + "2037-04-03": "Good Friday", + "2037-04-06": "Easter Monday", + "2037-05-04": "May Day", + "2037-05-25": "Spring Bank Holiday", + "2037-07-12": "Battle of the Boyne", + "2037-07-13": "Battle of the Boyne (Observed)", + "2037-08-03": "Summer Bank Holiday", + "2037-08-31": "Late Summer Bank Holiday", + "2037-11-30": "St. Andrew's Day", + "2037-12-25": "Christmas Day", + "2037-12-26": "Boxing Day", + "2037-12-28": "Boxing Day (Observed)", + "2038-01-01": "New Year's Day", + "2038-01-02": "New Year Holiday", + "2038-01-04": "New Year Holiday (Observed)", + "2038-03-17": "St. Patrick's Day", + "2038-04-23": "Good Friday", + "2038-04-26": "Easter Monday", + "2038-05-03": "May Day", + "2038-05-31": "Spring Bank Holiday", + "2038-07-12": "Battle of the Boyne", + "2038-08-02": "Summer Bank Holiday", + "2038-08-30": "Late Summer Bank Holiday", + "2038-11-30": "St. Andrew's Day", + "2038-12-25": "Christmas Day", + "2038-12-26": "Boxing Day", + "2038-12-27": "Christmas Day (Observed)", + "2038-12-28": "Boxing Day (Observed)", + "2039-01-01": "New Year's Day", + "2039-01-02": "New Year Holiday", + "2039-01-03": "New Year's Day (Observed)", + "2039-01-04": "New Year Holiday (Observed)", + "2039-03-17": "St. Patrick's Day", + "2039-04-08": "Good Friday", + "2039-04-11": "Easter Monday", + "2039-05-02": "May Day", + "2039-05-30": "Spring Bank Holiday", + "2039-07-12": "Battle of the Boyne", + "2039-08-01": "Summer Bank Holiday", + "2039-08-29": "Late Summer Bank Holiday", + "2039-11-30": "St. Andrew's Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Boxing Day", + "2039-12-27": "Christmas Day (Observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year Holiday; New Year's Day (Observed)", + "2040-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "2040-03-17": "St. Patrick's Day", + "2040-03-19": "St. Patrick's Day (Observed)", + "2040-03-30": "Good Friday", + "2040-04-02": "Easter Monday", + "2040-05-07": "May Day", + "2040-05-28": "Spring Bank Holiday", + "2040-07-12": "Battle of the Boyne", + "2040-08-06": "Summer Bank Holiday", + "2040-08-27": "Late Summer Bank Holiday", + "2040-11-30": "St. Andrew's Day", + "2040-12-25": "Christmas Day", + "2040-12-26": "Boxing Day", + "2041-01-01": "New Year's Day", + "2041-01-02": "New Year Holiday", + "2041-03-17": "St. Patrick's Day", + "2041-03-18": "St. Patrick's Day (Observed)", + "2041-04-19": "Good Friday", + "2041-04-22": "Easter Monday", + "2041-05-06": "May Day", + "2041-05-27": "Spring Bank Holiday", + "2041-07-12": "Battle of the Boyne", + "2041-08-05": "Summer Bank Holiday", + "2041-08-26": "Late Summer Bank Holiday", + "2041-11-30": "St. Andrew's Day", + "2041-12-02": "St. Andrew's Day (Observed)", + "2041-12-25": "Christmas Day", + "2041-12-26": "Boxing Day", + "2042-01-01": "New Year's Day", + "2042-01-02": "New Year Holiday", + "2042-03-17": "St. Patrick's Day", + "2042-04-04": "Good Friday", + "2042-04-07": "Easter Monday", + "2042-05-05": "May Day", + "2042-05-26": "Spring Bank Holiday", + "2042-07-12": "Battle of the Boyne", + "2042-07-14": "Battle of the Boyne (Observed)", + "2042-08-04": "Summer Bank Holiday", + "2042-08-25": "Late Summer Bank Holiday", + "2042-11-30": "St. Andrew's Day", + "2042-12-01": "St. Andrew's Day (Observed)", + "2042-12-25": "Christmas Day", + "2042-12-26": "Boxing Day", + "2043-01-01": "New Year's Day", + "2043-01-02": "New Year Holiday", + "2043-03-17": "St. Patrick's Day", + "2043-03-27": "Good Friday", + "2043-03-30": "Easter Monday", + "2043-05-04": "May Day", + "2043-05-25": "Spring Bank Holiday", + "2043-07-12": "Battle of the Boyne", + "2043-07-13": "Battle of the Boyne (Observed)", + "2043-08-03": "Summer Bank Holiday", + "2043-08-31": "Late Summer Bank Holiday", + "2043-11-30": "St. Andrew's Day", + "2043-12-25": "Christmas Day", + "2043-12-26": "Boxing Day", + "2043-12-28": "Boxing Day (Observed)", + "2044-01-01": "New Year's Day", + "2044-01-02": "New Year Holiday", + "2044-01-04": "New Year Holiday (Observed)", + "2044-03-17": "St. Patrick's Day", + "2044-04-15": "Good Friday", + "2044-04-18": "Easter Monday", + "2044-05-02": "May Day", + "2044-05-30": "Spring Bank Holiday", + "2044-07-12": "Battle of the Boyne", + "2044-08-01": "Summer Bank Holiday", + "2044-08-29": "Late Summer Bank Holiday", + "2044-11-30": "St. Andrew's Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "Boxing Day", + "2044-12-27": "Christmas Day (Observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year Holiday; New Year's Day (Observed)", + "2045-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "2045-03-17": "St. Patrick's Day", + "2045-04-07": "Good Friday", + "2045-04-10": "Easter Monday", + "2045-05-01": "May Day", + "2045-05-29": "Spring Bank Holiday", + "2045-07-12": "Battle of the Boyne", + "2045-08-07": "Summer Bank Holiday", + "2045-08-28": "Late Summer Bank Holiday", + "2045-11-30": "St. Andrew's Day", + "2045-12-25": "Christmas Day", + "2045-12-26": "Boxing Day", + "2046-01-01": "New Year's Day", + "2046-01-02": "New Year Holiday", + "2046-03-17": "St. Patrick's Day", + "2046-03-19": "St. Patrick's Day (Observed)", + "2046-03-23": "Good Friday", + "2046-03-26": "Easter Monday", + "2046-05-07": "May Day", + "2046-05-28": "Spring Bank Holiday", + "2046-07-12": "Battle of the Boyne", + "2046-08-06": "Summer Bank Holiday", + "2046-08-27": "Late Summer Bank Holiday", + "2046-11-30": "St. Andrew's Day", + "2046-12-25": "Christmas Day", + "2046-12-26": "Boxing Day", + "2047-01-01": "New Year's Day", + "2047-01-02": "New Year Holiday", + "2047-03-17": "St. Patrick's Day", + "2047-03-18": "St. Patrick's Day (Observed)", + "2047-04-12": "Good Friday", + "2047-04-15": "Easter Monday", + "2047-05-06": "May Day", + "2047-05-27": "Spring Bank Holiday", + "2047-07-12": "Battle of the Boyne", + "2047-08-05": "Summer Bank Holiday", + "2047-08-26": "Late Summer Bank Holiday", + "2047-11-30": "St. Andrew's Day", + "2047-12-02": "St. Andrew's Day (Observed)", + "2047-12-25": "Christmas Day", + "2047-12-26": "Boxing Day", + "2048-01-01": "New Year's Day", + "2048-01-02": "New Year Holiday", + "2048-03-17": "St. Patrick's Day", + "2048-04-03": "Good Friday", + "2048-04-06": "Easter Monday", + "2048-05-04": "May Day", + "2048-05-25": "Spring Bank Holiday", + "2048-07-12": "Battle of the Boyne", + "2048-07-13": "Battle of the Boyne (Observed)", + "2048-08-03": "Summer Bank Holiday", + "2048-08-31": "Late Summer Bank Holiday", + "2048-11-30": "St. Andrew's Day", + "2048-12-25": "Christmas Day", + "2048-12-26": "Boxing Day", + "2048-12-28": "Boxing Day (Observed)", + "2049-01-01": "New Year's Day", + "2049-01-02": "New Year Holiday", + "2049-01-04": "New Year Holiday (Observed)", + "2049-03-17": "St. Patrick's Day", + "2049-04-16": "Good Friday", + "2049-04-19": "Easter Monday", + "2049-05-03": "May Day", + "2049-05-31": "Spring Bank Holiday", + "2049-07-12": "Battle of the Boyne", + "2049-08-02": "Summer Bank Holiday", + "2049-08-30": "Late Summer Bank Holiday", + "2049-11-30": "St. Andrew's Day", + "2049-12-25": "Christmas Day", + "2049-12-26": "Boxing Day", + "2049-12-27": "Christmas Day (Observed)", + "2049-12-28": "Boxing Day (Observed)", + "2050-01-01": "New Year's Day", + "2050-01-02": "New Year Holiday", + "2050-01-03": "New Year's Day (Observed)", + "2050-01-04": "New Year Holiday (Observed)", + "2050-03-17": "St. Patrick's Day", + "2050-04-08": "Good Friday", + "2050-04-11": "Easter Monday", + "2050-05-02": "May Day", + "2050-05-30": "Spring Bank Holiday", + "2050-07-12": "Battle of the Boyne", + "2050-08-01": "Summer Bank Holiday", + "2050-08-29": "Late Summer Bank Holiday", + "2050-11-30": "St. Andrew's Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "Boxing Day", + "2050-12-27": "Christmas Day (Observed)" +} diff --git a/snapshots/countries/UM.json b/snapshots/countries/UM.json new file mode 100644 index 000000000..9eb163ce3 --- /dev/null +++ b/snapshots/countries/UM.json @@ -0,0 +1,1130 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-02": "New Year's Day (Observed)", + "1950-02-22": "Washington's Birthday", + "1950-05-30": "Memorial Day", + "1950-07-04": "Independence Day", + "1950-09-04": "Labor Day", + "1950-10-12": "Columbus Day", + "1950-11-10": "Armistice Day (Observed)", + "1950-11-11": "Armistice Day", + "1950-11-23": "Thanksgiving", + "1950-12-25": "Christmas Day", + "1951-01-01": "New Year's Day", + "1951-02-22": "Washington's Birthday", + "1951-05-30": "Memorial Day", + "1951-07-04": "Independence Day", + "1951-09-03": "Labor Day", + "1951-10-12": "Columbus Day", + "1951-11-11": "Armistice Day", + "1951-11-12": "Armistice Day (Observed)", + "1951-11-22": "Thanksgiving", + "1951-12-25": "Christmas Day", + "1952-01-01": "New Year's Day", + "1952-02-22": "Washington's Birthday", + "1952-05-30": "Memorial Day", + "1952-07-04": "Independence Day", + "1952-09-01": "Labor Day", + "1952-10-12": "Columbus Day", + "1952-11-11": "Armistice Day", + "1952-11-27": "Thanksgiving", + "1952-12-25": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-02-22": "Washington's Birthday", + "1953-05-30": "Memorial Day", + "1953-07-03": "Independence Day (Observed)", + "1953-07-04": "Independence Day", + "1953-09-07": "Labor Day", + "1953-10-12": "Columbus Day", + "1953-11-11": "Armistice Day", + "1953-11-26": "Thanksgiving", + "1953-12-25": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-02-22": "Washington's Birthday", + "1954-05-30": "Memorial Day", + "1954-07-04": "Independence Day", + "1954-07-05": "Independence Day (Observed)", + "1954-09-06": "Labor Day", + "1954-10-12": "Columbus Day", + "1954-11-11": "Veterans Day", + "1954-11-25": "Thanksgiving", + "1954-12-24": "Christmas Day (Observed)", + "1954-12-25": "Christmas Day", + "1954-12-31": "New Year's Day (Observed)", + "1955-01-01": "New Year's Day", + "1955-02-22": "Washington's Birthday", + "1955-05-30": "Memorial Day", + "1955-07-04": "Independence Day", + "1955-09-05": "Labor Day", + "1955-10-12": "Columbus Day", + "1955-11-11": "Veterans Day", + "1955-11-24": "Thanksgiving", + "1955-12-25": "Christmas Day", + "1955-12-26": "Christmas Day (Observed)", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year's Day (Observed)", + "1956-02-22": "Washington's Birthday", + "1956-05-30": "Memorial Day", + "1956-07-04": "Independence Day", + "1956-09-03": "Labor Day", + "1956-10-12": "Columbus Day", + "1956-11-11": "Veterans Day", + "1956-11-12": "Veterans Day (Observed)", + "1956-11-22": "Thanksgiving", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-02-22": "Washington's Birthday", + "1957-05-30": "Memorial Day", + "1957-07-04": "Independence Day", + "1957-09-02": "Labor Day", + "1957-10-12": "Columbus Day", + "1957-11-11": "Veterans Day", + "1957-11-28": "Thanksgiving", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-02-22": "Washington's Birthday", + "1958-05-30": "Memorial Day", + "1958-07-04": "Independence Day", + "1958-09-01": "Labor Day", + "1958-10-12": "Columbus Day", + "1958-11-11": "Veterans Day", + "1958-11-27": "Thanksgiving", + "1958-12-25": "Christmas Day", + "1959-01-01": "New Year's Day", + "1959-02-22": "Washington's Birthday", + "1959-05-30": "Memorial Day", + "1959-07-03": "Independence Day (Observed)", + "1959-07-04": "Independence Day", + "1959-09-07": "Labor Day", + "1959-10-12": "Columbus Day", + "1959-11-11": "Veterans Day", + "1959-11-26": "Thanksgiving", + "1959-12-25": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-02-22": "Washington's Birthday", + "1960-05-30": "Memorial Day", + "1960-07-04": "Independence Day", + "1960-09-05": "Labor Day", + "1960-10-12": "Columbus Day", + "1960-11-11": "Veterans Day", + "1960-11-24": "Thanksgiving", + "1960-12-25": "Christmas Day", + "1960-12-26": "Christmas Day (Observed)", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day (Observed)", + "1961-02-22": "Washington's Birthday", + "1961-05-30": "Memorial Day", + "1961-07-04": "Independence Day", + "1961-09-04": "Labor Day", + "1961-10-12": "Columbus Day", + "1961-11-10": "Veterans Day (Observed)", + "1961-11-11": "Veterans Day", + "1961-11-23": "Thanksgiving", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-02-22": "Washington's Birthday", + "1962-05-30": "Memorial Day", + "1962-07-04": "Independence Day", + "1962-09-03": "Labor Day", + "1962-10-12": "Columbus Day", + "1962-11-11": "Veterans Day", + "1962-11-12": "Veterans Day (Observed)", + "1962-11-22": "Thanksgiving", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-02-22": "Washington's Birthday", + "1963-05-30": "Memorial Day", + "1963-07-04": "Independence Day", + "1963-09-02": "Labor Day", + "1963-10-12": "Columbus Day", + "1963-11-11": "Veterans Day", + "1963-11-28": "Thanksgiving", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-02-22": "Washington's Birthday", + "1964-05-30": "Memorial Day", + "1964-07-03": "Independence Day (Observed)", + "1964-07-04": "Independence Day", + "1964-09-07": "Labor Day", + "1964-10-12": "Columbus Day", + "1964-11-11": "Veterans Day", + "1964-11-26": "Thanksgiving", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-02-22": "Washington's Birthday", + "1965-05-30": "Memorial Day", + "1965-07-04": "Independence Day", + "1965-07-05": "Independence Day (Observed)", + "1965-09-06": "Labor Day", + "1965-10-12": "Columbus Day", + "1965-11-11": "Veterans Day", + "1965-11-25": "Thanksgiving", + "1965-12-24": "Christmas Day (Observed)", + "1965-12-25": "Christmas Day", + "1965-12-31": "New Year's Day (Observed)", + "1966-01-01": "New Year's Day", + "1966-02-22": "Washington's Birthday", + "1966-05-30": "Memorial Day", + "1966-07-04": "Independence Day", + "1966-09-05": "Labor Day", + "1966-10-12": "Columbus Day", + "1966-11-11": "Veterans Day", + "1966-11-24": "Thanksgiving", + "1966-12-25": "Christmas Day", + "1966-12-26": "Christmas Day (Observed)", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day (Observed)", + "1967-02-22": "Washington's Birthday", + "1967-05-30": "Memorial Day", + "1967-07-04": "Independence Day", + "1967-09-04": "Labor Day", + "1967-10-12": "Columbus Day", + "1967-11-10": "Veterans Day (Observed)", + "1967-11-11": "Veterans Day", + "1967-11-23": "Thanksgiving", + "1967-12-25": "Christmas Day", + "1968-01-01": "New Year's Day", + "1968-02-22": "Washington's Birthday", + "1968-05-30": "Memorial Day", + "1968-07-04": "Independence Day", + "1968-09-02": "Labor Day", + "1968-10-12": "Columbus Day", + "1968-11-11": "Veterans Day", + "1968-11-28": "Thanksgiving", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-02-22": "Washington's Birthday", + "1969-05-30": "Memorial Day", + "1969-07-04": "Independence Day", + "1969-09-01": "Labor Day", + "1969-10-12": "Columbus Day", + "1969-11-11": "Veterans Day", + "1969-11-27": "Thanksgiving", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-02-22": "Washington's Birthday", + "1970-05-30": "Memorial Day", + "1970-07-03": "Independence Day (Observed)", + "1970-07-04": "Independence Day", + "1970-09-07": "Labor Day", + "1970-10-12": "Columbus Day", + "1970-11-11": "Veterans Day", + "1970-11-26": "Thanksgiving", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-02-15": "Washington's Birthday", + "1971-05-31": "Memorial Day", + "1971-07-04": "Independence Day", + "1971-07-05": "Independence Day (Observed)", + "1971-09-06": "Labor Day", + "1971-10-11": "Columbus Day", + "1971-10-25": "Veterans Day", + "1971-11-25": "Thanksgiving", + "1971-12-24": "Christmas Day (Observed)", + "1971-12-25": "Christmas Day", + "1971-12-31": "New Year's Day (Observed)", + "1972-01-01": "New Year's Day", + "1972-02-21": "Washington's Birthday", + "1972-05-29": "Memorial Day", + "1972-07-04": "Independence Day", + "1972-09-04": "Labor Day", + "1972-10-09": "Columbus Day", + "1972-10-23": "Veterans Day", + "1972-11-23": "Thanksgiving", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-02-19": "Washington's Birthday", + "1973-05-28": "Memorial Day", + "1973-07-04": "Independence Day", + "1973-09-03": "Labor Day", + "1973-10-08": "Columbus Day", + "1973-10-22": "Veterans Day", + "1973-11-22": "Thanksgiving", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-02-18": "Washington's Birthday", + "1974-05-27": "Memorial Day", + "1974-07-04": "Independence Day", + "1974-09-02": "Labor Day", + "1974-10-14": "Columbus Day", + "1974-10-28": "Veterans Day", + "1974-11-28": "Thanksgiving", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-02-17": "Washington's Birthday", + "1975-05-26": "Memorial Day", + "1975-07-04": "Independence Day", + "1975-09-01": "Labor Day", + "1975-10-13": "Columbus Day", + "1975-10-27": "Veterans Day", + "1975-11-27": "Thanksgiving", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-02-16": "Washington's Birthday", + "1976-05-31": "Memorial Day", + "1976-07-04": "Independence Day", + "1976-07-05": "Independence Day (Observed)", + "1976-09-06": "Labor Day", + "1976-10-11": "Columbus Day", + "1976-10-25": "Veterans Day", + "1976-11-25": "Thanksgiving", + "1976-12-24": "Christmas Day (Observed)", + "1976-12-25": "Christmas Day", + "1976-12-31": "New Year's Day (Observed)", + "1977-01-01": "New Year's Day", + "1977-02-21": "Washington's Birthday", + "1977-05-30": "Memorial Day", + "1977-07-04": "Independence Day", + "1977-09-05": "Labor Day", + "1977-10-10": "Columbus Day", + "1977-10-24": "Veterans Day", + "1977-11-24": "Thanksgiving", + "1977-12-25": "Christmas Day", + "1977-12-26": "Christmas Day (Observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day (Observed)", + "1978-02-20": "Washington's Birthday", + "1978-05-29": "Memorial Day", + "1978-07-04": "Independence Day", + "1978-09-04": "Labor Day", + "1978-10-09": "Columbus Day", + "1978-11-10": "Veterans Day (Observed)", + "1978-11-11": "Veterans Day", + "1978-11-23": "Thanksgiving", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-02-19": "Washington's Birthday", + "1979-05-28": "Memorial Day", + "1979-07-04": "Independence Day", + "1979-09-03": "Labor Day", + "1979-10-08": "Columbus Day", + "1979-11-11": "Veterans Day", + "1979-11-12": "Veterans Day (Observed)", + "1979-11-22": "Thanksgiving", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-02-18": "Washington's Birthday", + "1980-05-26": "Memorial Day", + "1980-07-04": "Independence Day", + "1980-09-01": "Labor Day", + "1980-10-13": "Columbus Day", + "1980-11-11": "Veterans Day", + "1980-11-27": "Thanksgiving", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-02-16": "Washington's Birthday", + "1981-05-25": "Memorial Day", + "1981-07-03": "Independence Day (Observed)", + "1981-07-04": "Independence Day", + "1981-09-07": "Labor Day", + "1981-10-12": "Columbus Day", + "1981-11-11": "Veterans Day", + "1981-11-26": "Thanksgiving", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-02-15": "Washington's Birthday", + "1982-05-31": "Memorial Day", + "1982-07-04": "Independence Day", + "1982-07-05": "Independence Day (Observed)", + "1982-09-06": "Labor Day", + "1982-10-11": "Columbus Day", + "1982-11-11": "Veterans Day", + "1982-11-25": "Thanksgiving", + "1982-12-24": "Christmas Day (Observed)", + "1982-12-25": "Christmas Day", + "1982-12-31": "New Year's Day (Observed)", + "1983-01-01": "New Year's Day", + "1983-02-21": "Washington's Birthday", + "1983-05-30": "Memorial Day", + "1983-07-04": "Independence Day", + "1983-09-05": "Labor Day", + "1983-10-10": "Columbus Day", + "1983-11-11": "Veterans Day", + "1983-11-24": "Thanksgiving", + "1983-12-25": "Christmas Day", + "1983-12-26": "Christmas Day (Observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (Observed)", + "1984-02-20": "Washington's Birthday", + "1984-05-28": "Memorial Day", + "1984-07-04": "Independence Day", + "1984-09-03": "Labor Day", + "1984-10-08": "Columbus Day", + "1984-11-11": "Veterans Day", + "1984-11-12": "Veterans Day (Observed)", + "1984-11-22": "Thanksgiving", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-02-18": "Washington's Birthday", + "1985-05-27": "Memorial Day", + "1985-07-04": "Independence Day", + "1985-09-02": "Labor Day", + "1985-10-14": "Columbus Day", + "1985-11-11": "Veterans Day", + "1985-11-28": "Thanksgiving", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-01-20": "Martin Luther King Jr. Day", + "1986-02-17": "Washington's Birthday", + "1986-05-26": "Memorial Day", + "1986-07-04": "Independence Day", + "1986-09-01": "Labor Day", + "1986-10-13": "Columbus Day", + "1986-11-11": "Veterans Day", + "1986-11-27": "Thanksgiving", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-01-19": "Martin Luther King Jr. Day", + "1987-02-16": "Washington's Birthday", + "1987-05-25": "Memorial Day", + "1987-07-03": "Independence Day (Observed)", + "1987-07-04": "Independence Day", + "1987-09-07": "Labor Day", + "1987-10-12": "Columbus Day", + "1987-11-11": "Veterans Day", + "1987-11-26": "Thanksgiving", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-01-18": "Martin Luther King Jr. Day", + "1988-02-15": "Washington's Birthday", + "1988-05-30": "Memorial Day", + "1988-07-04": "Independence Day", + "1988-09-05": "Labor Day", + "1988-10-10": "Columbus Day", + "1988-11-11": "Veterans Day", + "1988-11-24": "Thanksgiving", + "1988-12-25": "Christmas Day", + "1988-12-26": "Christmas Day (Observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (Observed)", + "1989-01-16": "Martin Luther King Jr. Day", + "1989-02-20": "Washington's Birthday", + "1989-05-29": "Memorial Day", + "1989-07-04": "Independence Day", + "1989-09-04": "Labor Day", + "1989-10-09": "Columbus Day", + "1989-11-10": "Veterans Day (Observed)", + "1989-11-11": "Veterans Day", + "1989-11-23": "Thanksgiving", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-01-15": "Martin Luther King Jr. Day", + "1990-02-19": "Washington's Birthday", + "1990-05-28": "Memorial Day", + "1990-07-04": "Independence Day", + "1990-09-03": "Labor Day", + "1990-10-08": "Columbus Day", + "1990-11-11": "Veterans Day", + "1990-11-12": "Veterans Day (Observed)", + "1990-11-22": "Thanksgiving", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-01-21": "Martin Luther King Jr. Day", + "1991-02-18": "Washington's Birthday", + "1991-05-27": "Memorial Day", + "1991-07-04": "Independence Day", + "1991-09-02": "Labor Day", + "1991-10-14": "Columbus Day", + "1991-11-11": "Veterans Day", + "1991-11-28": "Thanksgiving", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-01-20": "Martin Luther King Jr. Day", + "1992-02-17": "Washington's Birthday", + "1992-05-25": "Memorial Day", + "1992-07-03": "Independence Day (Observed)", + "1992-07-04": "Independence Day", + "1992-09-07": "Labor Day", + "1992-10-12": "Columbus Day", + "1992-11-11": "Veterans Day", + "1992-11-26": "Thanksgiving", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-01-18": "Martin Luther King Jr. Day", + "1993-02-15": "Washington's Birthday", + "1993-05-31": "Memorial Day", + "1993-07-04": "Independence Day", + "1993-07-05": "Independence Day (Observed)", + "1993-09-06": "Labor Day", + "1993-10-11": "Columbus Day", + "1993-11-11": "Veterans Day", + "1993-11-25": "Thanksgiving", + "1993-12-24": "Christmas Day (Observed)", + "1993-12-25": "Christmas Day", + "1993-12-31": "New Year's Day (Observed)", + "1994-01-01": "New Year's Day", + "1994-01-17": "Martin Luther King Jr. Day", + "1994-02-21": "Washington's Birthday", + "1994-05-30": "Memorial Day", + "1994-07-04": "Independence Day", + "1994-09-05": "Labor Day", + "1994-10-10": "Columbus Day", + "1994-11-11": "Veterans Day", + "1994-11-24": "Thanksgiving", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day (Observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (Observed)", + "1995-01-16": "Martin Luther King Jr. Day", + "1995-02-20": "Washington's Birthday", + "1995-05-29": "Memorial Day", + "1995-07-04": "Independence Day", + "1995-09-04": "Labor Day", + "1995-10-09": "Columbus Day", + "1995-11-10": "Veterans Day (Observed)", + "1995-11-11": "Veterans Day", + "1995-11-23": "Thanksgiving", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-01-15": "Martin Luther King Jr. Day", + "1996-02-19": "Washington's Birthday", + "1996-05-27": "Memorial Day", + "1996-07-04": "Independence Day", + "1996-09-02": "Labor Day", + "1996-10-14": "Columbus Day", + "1996-11-11": "Veterans Day", + "1996-11-28": "Thanksgiving", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-01-20": "Martin Luther King Jr. Day", + "1997-02-17": "Washington's Birthday", + "1997-05-26": "Memorial Day", + "1997-07-04": "Independence Day", + "1997-09-01": "Labor Day", + "1997-10-13": "Columbus Day", + "1997-11-11": "Veterans Day", + "1997-11-27": "Thanksgiving", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-01-19": "Martin Luther King Jr. Day", + "1998-02-16": "Washington's Birthday", + "1998-05-25": "Memorial Day", + "1998-07-03": "Independence Day (Observed)", + "1998-07-04": "Independence Day", + "1998-09-07": "Labor Day", + "1998-10-12": "Columbus Day", + "1998-11-11": "Veterans Day", + "1998-11-26": "Thanksgiving", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-01-18": "Martin Luther King Jr. Day", + "1999-02-15": "Washington's Birthday", + "1999-05-31": "Memorial Day", + "1999-07-04": "Independence Day", + "1999-07-05": "Independence Day (Observed)", + "1999-09-06": "Labor Day", + "1999-10-11": "Columbus Day", + "1999-11-11": "Veterans Day", + "1999-11-25": "Thanksgiving", + "1999-12-24": "Christmas Day (Observed)", + "1999-12-25": "Christmas Day", + "1999-12-31": "New Year's Day (Observed)", + "2000-01-01": "New Year's Day", + "2000-01-17": "Martin Luther King Jr. Day", + "2000-02-21": "Washington's Birthday", + "2000-05-29": "Memorial Day", + "2000-07-04": "Independence Day", + "2000-09-04": "Labor Day", + "2000-10-09": "Columbus Day", + "2000-11-10": "Veterans Day (Observed)", + "2000-11-11": "Veterans Day", + "2000-11-23": "Thanksgiving", + "2000-12-25": "Christmas Day", + "2001-01-01": "New Year's Day", + "2001-01-15": "Martin Luther King Jr. Day", + "2001-02-19": "Washington's Birthday", + "2001-05-28": "Memorial Day", + "2001-07-04": "Independence Day", + "2001-09-03": "Labor Day", + "2001-10-08": "Columbus Day", + "2001-11-11": "Veterans Day", + "2001-11-12": "Veterans Day (Observed)", + "2001-11-22": "Thanksgiving", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-01-21": "Martin Luther King Jr. Day", + "2002-02-18": "Washington's Birthday", + "2002-05-27": "Memorial Day", + "2002-07-04": "Independence Day", + "2002-09-02": "Labor Day", + "2002-10-14": "Columbus Day", + "2002-11-11": "Veterans Day", + "2002-11-28": "Thanksgiving", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-01-20": "Martin Luther King Jr. Day", + "2003-02-17": "Washington's Birthday", + "2003-05-26": "Memorial Day", + "2003-07-04": "Independence Day", + "2003-09-01": "Labor Day", + "2003-10-13": "Columbus Day", + "2003-11-11": "Veterans Day", + "2003-11-27": "Thanksgiving", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-01-19": "Martin Luther King Jr. Day", + "2004-02-16": "Washington's Birthday", + "2004-05-31": "Memorial Day", + "2004-07-04": "Independence Day", + "2004-07-05": "Independence Day (Observed)", + "2004-09-06": "Labor Day", + "2004-10-11": "Columbus Day", + "2004-11-11": "Veterans Day", + "2004-11-25": "Thanksgiving", + "2004-12-24": "Christmas Day (Observed)", + "2004-12-25": "Christmas Day", + "2004-12-31": "New Year's Day (Observed)", + "2005-01-01": "New Year's Day", + "2005-01-17": "Martin Luther King Jr. Day", + "2005-02-21": "Washington's Birthday", + "2005-05-30": "Memorial Day", + "2005-07-04": "Independence Day", + "2005-09-05": "Labor Day", + "2005-10-10": "Columbus Day", + "2005-11-11": "Veterans Day", + "2005-11-24": "Thanksgiving", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day (Observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (Observed)", + "2006-01-16": "Martin Luther King Jr. Day", + "2006-02-20": "Washington's Birthday", + "2006-05-29": "Memorial Day", + "2006-07-04": "Independence Day", + "2006-09-04": "Labor Day", + "2006-10-09": "Columbus Day", + "2006-11-10": "Veterans Day (Observed)", + "2006-11-11": "Veterans Day", + "2006-11-23": "Thanksgiving", + "2006-12-25": "Christmas Day", + "2007-01-01": "New Year's Day", + "2007-01-15": "Martin Luther King Jr. Day", + "2007-02-19": "Washington's Birthday", + "2007-05-28": "Memorial Day", + "2007-07-04": "Independence Day", + "2007-09-03": "Labor Day", + "2007-10-08": "Columbus Day", + "2007-11-11": "Veterans Day", + "2007-11-12": "Veterans Day (Observed)", + "2007-11-22": "Thanksgiving", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-01-21": "Martin Luther King Jr. Day", + "2008-02-18": "Washington's Birthday", + "2008-05-26": "Memorial Day", + "2008-07-04": "Independence Day", + "2008-09-01": "Labor Day", + "2008-10-13": "Columbus Day", + "2008-11-11": "Veterans Day", + "2008-11-27": "Thanksgiving", + "2008-12-25": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-01-19": "Martin Luther King Jr. Day", + "2009-02-16": "Washington's Birthday", + "2009-05-25": "Memorial Day", + "2009-07-03": "Independence Day (Observed)", + "2009-07-04": "Independence Day", + "2009-09-07": "Labor Day", + "2009-10-12": "Columbus Day", + "2009-11-11": "Veterans Day", + "2009-11-26": "Thanksgiving", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-01-18": "Martin Luther King Jr. Day", + "2010-02-15": "Washington's Birthday", + "2010-05-31": "Memorial Day", + "2010-07-04": "Independence Day", + "2010-07-05": "Independence Day (Observed)", + "2010-09-06": "Labor Day", + "2010-10-11": "Columbus Day", + "2010-11-11": "Veterans Day", + "2010-11-25": "Thanksgiving", + "2010-12-24": "Christmas Day (Observed)", + "2010-12-25": "Christmas Day", + "2010-12-31": "New Year's Day (Observed)", + "2011-01-01": "New Year's Day", + "2011-01-17": "Martin Luther King Jr. Day", + "2011-02-21": "Washington's Birthday", + "2011-05-30": "Memorial Day", + "2011-07-04": "Independence Day", + "2011-09-05": "Labor Day", + "2011-10-10": "Columbus Day", + "2011-11-11": "Veterans Day", + "2011-11-24": "Thanksgiving", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day (Observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (Observed)", + "2012-01-16": "Martin Luther King Jr. Day", + "2012-02-20": "Washington's Birthday", + "2012-05-28": "Memorial Day", + "2012-07-04": "Independence Day", + "2012-09-03": "Labor Day", + "2012-10-08": "Columbus Day", + "2012-11-11": "Veterans Day", + "2012-11-12": "Veterans Day (Observed)", + "2012-11-22": "Thanksgiving", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-01-21": "Martin Luther King Jr. Day", + "2013-02-18": "Washington's Birthday", + "2013-05-27": "Memorial Day", + "2013-07-04": "Independence Day", + "2013-09-02": "Labor Day", + "2013-10-14": "Columbus Day", + "2013-11-11": "Veterans Day", + "2013-11-28": "Thanksgiving", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-20": "Martin Luther King Jr. Day", + "2014-02-17": "Washington's Birthday", + "2014-05-26": "Memorial Day", + "2014-07-04": "Independence Day", + "2014-09-01": "Labor Day", + "2014-10-13": "Columbus Day", + "2014-11-11": "Veterans Day", + "2014-11-27": "Thanksgiving", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-01-19": "Martin Luther King Jr. Day", + "2015-02-16": "Washington's Birthday", + "2015-05-25": "Memorial Day", + "2015-07-03": "Independence Day (Observed)", + "2015-07-04": "Independence Day", + "2015-09-07": "Labor Day", + "2015-10-12": "Columbus Day", + "2015-11-11": "Veterans Day", + "2015-11-26": "Thanksgiving", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-01-18": "Martin Luther King Jr. Day", + "2016-02-15": "Washington's Birthday", + "2016-05-30": "Memorial Day", + "2016-07-04": "Independence Day", + "2016-09-05": "Labor Day", + "2016-10-10": "Columbus Day", + "2016-11-11": "Veterans Day", + "2016-11-24": "Thanksgiving", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day (Observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (Observed)", + "2017-01-16": "Martin Luther King Jr. Day", + "2017-02-20": "Washington's Birthday", + "2017-05-29": "Memorial Day", + "2017-07-04": "Independence Day", + "2017-09-04": "Labor Day", + "2017-10-09": "Columbus Day", + "2017-11-10": "Veterans Day (Observed)", + "2017-11-11": "Veterans Day", + "2017-11-23": "Thanksgiving", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-01-15": "Martin Luther King Jr. Day", + "2018-02-19": "Washington's Birthday", + "2018-05-28": "Memorial Day", + "2018-07-04": "Independence Day", + "2018-09-03": "Labor Day", + "2018-10-08": "Columbus Day", + "2018-11-11": "Veterans Day", + "2018-11-12": "Veterans Day (Observed)", + "2018-11-22": "Thanksgiving", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-01-21": "Martin Luther King Jr. Day", + "2019-02-18": "Washington's Birthday", + "2019-05-27": "Memorial Day", + "2019-07-04": "Independence Day", + "2019-09-02": "Labor Day", + "2019-10-14": "Columbus Day", + "2019-11-11": "Veterans Day", + "2019-11-28": "Thanksgiving", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-01-20": "Martin Luther King Jr. Day", + "2020-02-17": "Washington's Birthday", + "2020-05-25": "Memorial Day", + "2020-07-03": "Independence Day (Observed)", + "2020-07-04": "Independence Day", + "2020-09-07": "Labor Day", + "2020-10-12": "Columbus Day", + "2020-11-11": "Veterans Day", + "2020-11-26": "Thanksgiving", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-01-18": "Martin Luther King Jr. Day", + "2021-02-15": "Washington's Birthday", + "2021-05-31": "Memorial Day", + "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-19": "Juneteenth National Independence Day", + "2021-07-04": "Independence Day", + "2021-07-05": "Independence Day (Observed)", + "2021-09-06": "Labor Day", + "2021-10-11": "Columbus Day", + "2021-11-11": "Veterans Day", + "2021-11-25": "Thanksgiving", + "2021-12-24": "Christmas Day (Observed)", + "2021-12-25": "Christmas Day", + "2021-12-31": "New Year's Day (Observed)", + "2022-01-01": "New Year's Day", + "2022-01-17": "Martin Luther King Jr. Day", + "2022-02-21": "Washington's Birthday", + "2022-05-30": "Memorial Day", + "2022-06-19": "Juneteenth National Independence Day", + "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-07-04": "Independence Day", + "2022-09-05": "Labor Day", + "2022-10-10": "Columbus Day", + "2022-11-11": "Veterans Day", + "2022-11-24": "Thanksgiving", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day (Observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (Observed)", + "2023-01-16": "Martin Luther King Jr. Day", + "2023-02-20": "Washington's Birthday", + "2023-05-29": "Memorial Day", + "2023-06-19": "Juneteenth National Independence Day", + "2023-07-04": "Independence Day", + "2023-09-04": "Labor Day", + "2023-10-09": "Columbus Day", + "2023-11-10": "Veterans Day (Observed)", + "2023-11-11": "Veterans Day", + "2023-11-23": "Thanksgiving", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-01-15": "Martin Luther King Jr. Day", + "2024-02-19": "Washington's Birthday", + "2024-05-27": "Memorial Day", + "2024-06-19": "Juneteenth National Independence Day", + "2024-07-04": "Independence Day", + "2024-09-02": "Labor Day", + "2024-10-14": "Columbus Day", + "2024-11-11": "Veterans Day", + "2024-11-28": "Thanksgiving", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-01-20": "Martin Luther King Jr. Day", + "2025-02-17": "Washington's Birthday", + "2025-05-26": "Memorial Day", + "2025-06-19": "Juneteenth National Independence Day", + "2025-07-04": "Independence Day", + "2025-09-01": "Labor Day", + "2025-10-13": "Columbus Day", + "2025-11-11": "Veterans Day", + "2025-11-27": "Thanksgiving", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-01-19": "Martin Luther King Jr. Day", + "2026-02-16": "Washington's Birthday", + "2026-05-25": "Memorial Day", + "2026-06-19": "Juneteenth National Independence Day", + "2026-07-03": "Independence Day (Observed)", + "2026-07-04": "Independence Day", + "2026-09-07": "Labor Day", + "2026-10-12": "Columbus Day", + "2026-11-11": "Veterans Day", + "2026-11-26": "Thanksgiving", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-01-18": "Martin Luther King Jr. Day", + "2027-02-15": "Washington's Birthday", + "2027-05-31": "Memorial Day", + "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-19": "Juneteenth National Independence Day", + "2027-07-04": "Independence Day", + "2027-07-05": "Independence Day (Observed)", + "2027-09-06": "Labor Day", + "2027-10-11": "Columbus Day", + "2027-11-11": "Veterans Day", + "2027-11-25": "Thanksgiving", + "2027-12-24": "Christmas Day (Observed)", + "2027-12-25": "Christmas Day", + "2027-12-31": "New Year's Day (Observed)", + "2028-01-01": "New Year's Day", + "2028-01-17": "Martin Luther King Jr. Day", + "2028-02-21": "Washington's Birthday", + "2028-05-29": "Memorial Day", + "2028-06-19": "Juneteenth National Independence Day", + "2028-07-04": "Independence Day", + "2028-09-04": "Labor Day", + "2028-10-09": "Columbus Day", + "2028-11-10": "Veterans Day (Observed)", + "2028-11-11": "Veterans Day", + "2028-11-23": "Thanksgiving", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-01-15": "Martin Luther King Jr. Day", + "2029-02-19": "Washington's Birthday", + "2029-05-28": "Memorial Day", + "2029-06-19": "Juneteenth National Independence Day", + "2029-07-04": "Independence Day", + "2029-09-03": "Labor Day", + "2029-10-08": "Columbus Day", + "2029-11-11": "Veterans Day", + "2029-11-12": "Veterans Day (Observed)", + "2029-11-22": "Thanksgiving", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-01-21": "Martin Luther King Jr. Day", + "2030-02-18": "Washington's Birthday", + "2030-05-27": "Memorial Day", + "2030-06-19": "Juneteenth National Independence Day", + "2030-07-04": "Independence Day", + "2030-09-02": "Labor Day", + "2030-10-14": "Columbus Day", + "2030-11-11": "Veterans Day", + "2030-11-28": "Thanksgiving", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-01-20": "Martin Luther King Jr. Day", + "2031-02-17": "Washington's Birthday", + "2031-05-26": "Memorial Day", + "2031-06-19": "Juneteenth National Independence Day", + "2031-07-04": "Independence Day", + "2031-09-01": "Labor Day", + "2031-10-13": "Columbus Day", + "2031-11-11": "Veterans Day", + "2031-11-27": "Thanksgiving", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-01-19": "Martin Luther King Jr. Day", + "2032-02-16": "Washington's Birthday", + "2032-05-31": "Memorial Day", + "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-19": "Juneteenth National Independence Day", + "2032-07-04": "Independence Day", + "2032-07-05": "Independence Day (Observed)", + "2032-09-06": "Labor Day", + "2032-10-11": "Columbus Day", + "2032-11-11": "Veterans Day", + "2032-11-25": "Thanksgiving", + "2032-12-24": "Christmas Day (Observed)", + "2032-12-25": "Christmas Day", + "2032-12-31": "New Year's Day (Observed)", + "2033-01-01": "New Year's Day", + "2033-01-17": "Martin Luther King Jr. Day", + "2033-02-21": "Washington's Birthday", + "2033-05-30": "Memorial Day", + "2033-06-19": "Juneteenth National Independence Day", + "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-07-04": "Independence Day", + "2033-09-05": "Labor Day", + "2033-10-10": "Columbus Day", + "2033-11-11": "Veterans Day", + "2033-11-24": "Thanksgiving", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day (Observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-01-16": "Martin Luther King Jr. Day", + "2034-02-20": "Washington's Birthday", + "2034-05-29": "Memorial Day", + "2034-06-19": "Juneteenth National Independence Day", + "2034-07-04": "Independence Day", + "2034-09-04": "Labor Day", + "2034-10-09": "Columbus Day", + "2034-11-10": "Veterans Day (Observed)", + "2034-11-11": "Veterans Day", + "2034-11-23": "Thanksgiving", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-01-15": "Martin Luther King Jr. Day", + "2035-02-19": "Washington's Birthday", + "2035-05-28": "Memorial Day", + "2035-06-19": "Juneteenth National Independence Day", + "2035-07-04": "Independence Day", + "2035-09-03": "Labor Day", + "2035-10-08": "Columbus Day", + "2035-11-11": "Veterans Day", + "2035-11-12": "Veterans Day (Observed)", + "2035-11-22": "Thanksgiving", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-01-21": "Martin Luther King Jr. Day", + "2036-02-18": "Washington's Birthday", + "2036-05-26": "Memorial Day", + "2036-06-19": "Juneteenth National Independence Day", + "2036-07-04": "Independence Day", + "2036-09-01": "Labor Day", + "2036-10-13": "Columbus Day", + "2036-11-11": "Veterans Day", + "2036-11-27": "Thanksgiving", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-19": "Martin Luther King Jr. Day", + "2037-02-16": "Washington's Birthday", + "2037-05-25": "Memorial Day", + "2037-06-19": "Juneteenth National Independence Day", + "2037-07-03": "Independence Day (Observed)", + "2037-07-04": "Independence Day", + "2037-09-07": "Labor Day", + "2037-10-12": "Columbus Day", + "2037-11-11": "Veterans Day", + "2037-11-26": "Thanksgiving", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-01-18": "Martin Luther King Jr. Day", + "2038-02-15": "Washington's Birthday", + "2038-05-31": "Memorial Day", + "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-19": "Juneteenth National Independence Day", + "2038-07-04": "Independence Day", + "2038-07-05": "Independence Day (Observed)", + "2038-09-06": "Labor Day", + "2038-10-11": "Columbus Day", + "2038-11-11": "Veterans Day", + "2038-11-25": "Thanksgiving", + "2038-12-24": "Christmas Day (Observed)", + "2038-12-25": "Christmas Day", + "2038-12-31": "New Year's Day (Observed)", + "2039-01-01": "New Year's Day", + "2039-01-17": "Martin Luther King Jr. Day", + "2039-02-21": "Washington's Birthday", + "2039-05-30": "Memorial Day", + "2039-06-19": "Juneteenth National Independence Day", + "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-07-04": "Independence Day", + "2039-09-05": "Labor Day", + "2039-10-10": "Columbus Day", + "2039-11-11": "Veterans Day", + "2039-11-24": "Thanksgiving", + "2039-12-25": "Christmas Day", + "2039-12-26": "Christmas Day (Observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (Observed)", + "2040-01-16": "Martin Luther King Jr. Day", + "2040-02-20": "Washington's Birthday", + "2040-05-28": "Memorial Day", + "2040-06-19": "Juneteenth National Independence Day", + "2040-07-04": "Independence Day", + "2040-09-03": "Labor Day", + "2040-10-08": "Columbus Day", + "2040-11-11": "Veterans Day", + "2040-11-12": "Veterans Day (Observed)", + "2040-11-22": "Thanksgiving", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-01-21": "Martin Luther King Jr. Day", + "2041-02-18": "Washington's Birthday", + "2041-05-27": "Memorial Day", + "2041-06-19": "Juneteenth National Independence Day", + "2041-07-04": "Independence Day", + "2041-09-02": "Labor Day", + "2041-10-14": "Columbus Day", + "2041-11-11": "Veterans Day", + "2041-11-28": "Thanksgiving", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-01-20": "Martin Luther King Jr. Day", + "2042-02-17": "Washington's Birthday", + "2042-05-26": "Memorial Day", + "2042-06-19": "Juneteenth National Independence Day", + "2042-07-04": "Independence Day", + "2042-09-01": "Labor Day", + "2042-10-13": "Columbus Day", + "2042-11-11": "Veterans Day", + "2042-11-27": "Thanksgiving", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-01-19": "Martin Luther King Jr. Day", + "2043-02-16": "Washington's Birthday", + "2043-05-25": "Memorial Day", + "2043-06-19": "Juneteenth National Independence Day", + "2043-07-03": "Independence Day (Observed)", + "2043-07-04": "Independence Day", + "2043-09-07": "Labor Day", + "2043-10-12": "Columbus Day", + "2043-11-11": "Veterans Day", + "2043-11-26": "Thanksgiving", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-01-18": "Martin Luther King Jr. Day", + "2044-02-15": "Washington's Birthday", + "2044-05-30": "Memorial Day", + "2044-06-19": "Juneteenth National Independence Day", + "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-07-04": "Independence Day", + "2044-09-05": "Labor Day", + "2044-10-10": "Columbus Day", + "2044-11-11": "Veterans Day", + "2044-11-24": "Thanksgiving", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day (Observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (Observed)", + "2045-01-16": "Martin Luther King Jr. Day", + "2045-02-20": "Washington's Birthday", + "2045-05-29": "Memorial Day", + "2045-06-19": "Juneteenth National Independence Day", + "2045-07-04": "Independence Day", + "2045-09-04": "Labor Day", + "2045-10-09": "Columbus Day", + "2045-11-10": "Veterans Day (Observed)", + "2045-11-11": "Veterans Day", + "2045-11-23": "Thanksgiving", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-01-15": "Martin Luther King Jr. Day", + "2046-02-19": "Washington's Birthday", + "2046-05-28": "Memorial Day", + "2046-06-19": "Juneteenth National Independence Day", + "2046-07-04": "Independence Day", + "2046-09-03": "Labor Day", + "2046-10-08": "Columbus Day", + "2046-11-11": "Veterans Day", + "2046-11-12": "Veterans Day (Observed)", + "2046-11-22": "Thanksgiving", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-21": "Martin Luther King Jr. Day", + "2047-02-18": "Washington's Birthday", + "2047-05-27": "Memorial Day", + "2047-06-19": "Juneteenth National Independence Day", + "2047-07-04": "Independence Day", + "2047-09-02": "Labor Day", + "2047-10-14": "Columbus Day", + "2047-11-11": "Veterans Day", + "2047-11-28": "Thanksgiving", + "2047-12-25": "Christmas Day", + "2048-01-01": "New Year's Day", + "2048-01-20": "Martin Luther King Jr. Day", + "2048-02-17": "Washington's Birthday", + "2048-05-25": "Memorial Day", + "2048-06-19": "Juneteenth National Independence Day", + "2048-07-03": "Independence Day (Observed)", + "2048-07-04": "Independence Day", + "2048-09-07": "Labor Day", + "2048-10-12": "Columbus Day", + "2048-11-11": "Veterans Day", + "2048-11-26": "Thanksgiving", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-01-18": "Martin Luther King Jr. Day", + "2049-02-15": "Washington's Birthday", + "2049-05-31": "Memorial Day", + "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-19": "Juneteenth National Independence Day", + "2049-07-04": "Independence Day", + "2049-07-05": "Independence Day (Observed)", + "2049-09-06": "Labor Day", + "2049-10-11": "Columbus Day", + "2049-11-11": "Veterans Day", + "2049-11-25": "Thanksgiving", + "2049-12-24": "Christmas Day (Observed)", + "2049-12-25": "Christmas Day", + "2049-12-31": "New Year's Day (Observed)", + "2050-01-01": "New Year's Day", + "2050-01-17": "Martin Luther King Jr. Day", + "2050-02-21": "Washington's Birthday", + "2050-05-30": "Memorial Day", + "2050-06-19": "Juneteenth National Independence Day", + "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-07-04": "Independence Day", + "2050-09-05": "Labor Day", + "2050-10-10": "Columbus Day", + "2050-11-11": "Veterans Day", + "2050-11-24": "Thanksgiving", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day (Observed)" +} diff --git a/snapshots/countries/US.json b/snapshots/countries/US.json new file mode 100644 index 000000000..8a0133e3a --- /dev/null +++ b/snapshots/countries/US.json @@ -0,0 +1,5764 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-02": "New Year's Day (Observed)", + "1950-01-06": "Epiphany; Three Kings Day", + "1950-01-19": "Confederate Memorial Day; Lee Jackson Day", + "1950-02-20": "Presidents' Day", + "1950-02-21": "Mardi Gras", + "1950-02-22": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1950-03-02": "Texas Independence Day", + "1950-03-07": "Town Meeting Day", + "1950-03-17": "Evacuation Day", + "1950-03-22": "Emancipation Day", + "1950-03-24": "Commonwealth Covenant Day", + "1950-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1950-03-27": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "1950-03-30": "Seward's Day", + "1950-03-31": "Transfer Day", + "1950-04-06": "Holy Thursday", + "1950-04-07": "Good Friday", + "1950-04-10": "Easter Monday", + "1950-04-19": "Patriots' Day", + "1950-04-21": "San Jacinto Day", + "1950-04-22": "Arbor Day", + "1950-04-24": "Confederate Memorial Day", + "1950-05-08": "Truman Day", + "1950-05-30": "Memorial Day", + "1950-06-05": "Jefferson Davis Birthday", + "1950-06-11": "Kamehameha Day", + "1950-06-20": "West Virginia Day", + "1950-07-03": "Emancipation Day", + "1950-07-04": "Independence Day", + "1950-07-21": "Liberation Day (Guam)", + "1950-07-24": "Pioneer Day", + "1950-07-25": "Constitution Day", + "1950-08-14": "Victory Day", + "1950-08-16": "Bennington Battle Day", + "1950-09-04": "Labor Day", + "1950-10-09": "Commonwealth Cultural Day", + "1950-10-12": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Native American Day", + "1950-10-18": "Alaska Day", + "1950-10-31": "Nevada Day", + "1950-11-01": "Liberty Day", + "1950-11-02": "All Souls' Day", + "1950-11-03": "Citizenship Day (Observed)", + "1950-11-04": "Citizenship Day", + "1950-11-10": "Armistice Day (Observed)", + "1950-11-11": "Armistice Day", + "1950-11-19": "Discovery Day", + "1950-11-20": "Discovery Day (Observed)", + "1950-11-23": "Thanksgiving", + "1950-11-24": "Day After Thanksgiving; Family Day; Presidents' Day", + "1950-12-08": "Constitution Day; Lady of Camarin Day", + "1950-12-22": "Christmas Eve (Observed)", + "1950-12-24": "Christmas Eve; Washington's Birthday", + "1950-12-25": "Christmas Day", + "1950-12-26": "Christmas Second Day", + "1951-01-01": "New Year's Day", + "1951-01-06": "Epiphany; Three Kings Day", + "1951-01-19": "Confederate Memorial Day; Lee Jackson Day", + "1951-02-06": "Mardi Gras", + "1951-02-19": "Presidents' Day", + "1951-02-22": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1951-03-02": "Texas Independence Day", + "1951-03-06": "Town Meeting Day", + "1951-03-17": "Evacuation Day", + "1951-03-19": "Evacuation Day (Observed)", + "1951-03-22": "Emancipation Day; Holy Thursday", + "1951-03-23": "Commonwealth Covenant Day (Observed); Good Friday", + "1951-03-24": "Commonwealth Covenant Day", + "1951-03-26": "Easter Monday; Prince Jonah Kuhio Kalanianaole Day", + "1951-03-30": "Seward's Day", + "1951-03-31": "Transfer Day", + "1951-04-19": "Patriots' Day", + "1951-04-21": "San Jacinto Day", + "1951-04-22": "Arbor Day", + "1951-04-23": "Confederate Memorial Day", + "1951-05-08": "Truman Day", + "1951-05-30": "Memorial Day", + "1951-06-04": "Jefferson Davis Birthday", + "1951-06-11": "Kamehameha Day", + "1951-06-20": "West Virginia Day", + "1951-07-03": "Emancipation Day", + "1951-07-04": "Independence Day", + "1951-07-21": "Liberation Day (Guam)", + "1951-07-24": "Pioneer Day", + "1951-07-25": "Constitution Day", + "1951-08-13": "Victory Day", + "1951-08-16": "Bennington Battle Day", + "1951-09-03": "Labor Day", + "1951-10-08": "Commonwealth Cultural Day", + "1951-10-12": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Native American Day", + "1951-10-18": "Alaska Day", + "1951-10-31": "Nevada Day", + "1951-11-01": "Liberty Day", + "1951-11-02": "All Souls' Day", + "1951-11-04": "Citizenship Day", + "1951-11-05": "Citizenship Day (Observed)", + "1951-11-11": "Armistice Day", + "1951-11-12": "Armistice Day (Observed)", + "1951-11-19": "Discovery Day", + "1951-11-22": "Thanksgiving", + "1951-11-23": "Day After Thanksgiving; Family Day; Presidents' Day", + "1951-12-07": "Constitution Day (Observed)", + "1951-12-08": "Constitution Day; Lady of Camarin Day", + "1951-12-24": "Christmas Eve; Washington's Birthday", + "1951-12-25": "Christmas Day", + "1951-12-26": "Christmas Second Day", + "1952-01-01": "New Year's Day", + "1952-01-06": "Epiphany; Three Kings Day", + "1952-01-19": "Confederate Memorial Day; Lee Jackson Day", + "1952-02-18": "Presidents' Day", + "1952-02-22": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1952-02-26": "Mardi Gras", + "1952-03-02": "Texas Independence Day", + "1952-03-04": "Town Meeting Day", + "1952-03-17": "Evacuation Day", + "1952-03-22": "Emancipation Day", + "1952-03-24": "Commonwealth Covenant Day", + "1952-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1952-03-30": "Seward's Day", + "1952-03-31": "Transfer Day", + "1952-04-10": "Holy Thursday", + "1952-04-11": "Good Friday", + "1952-04-14": "Easter Monday", + "1952-04-19": "Patriots' Day", + "1952-04-21": "San Jacinto Day", + "1952-04-22": "Arbor Day", + "1952-04-28": "Confederate Memorial Day", + "1952-05-08": "Truman Day", + "1952-05-30": "Memorial Day", + "1952-06-02": "Jefferson Davis Birthday", + "1952-06-11": "Kamehameha Day", + "1952-06-20": "West Virginia Day", + "1952-07-03": "Emancipation Day", + "1952-07-04": "Independence Day", + "1952-07-21": "Liberation Day (Guam)", + "1952-07-24": "Pioneer Day", + "1952-07-25": "Constitution Day", + "1952-08-11": "Victory Day", + "1952-08-15": "Bennington Battle Day (Observed)", + "1952-08-16": "Bennington Battle Day", + "1952-09-01": "Labor Day", + "1952-10-12": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Native American Day", + "1952-10-13": "Commonwealth Cultural Day", + "1952-10-17": "Alaska Day (Observed)", + "1952-10-18": "Alaska Day", + "1952-10-31": "Nevada Day", + "1952-11-01": "Liberty Day", + "1952-11-02": "All Souls' Day", + "1952-11-04": "Citizenship Day", + "1952-11-11": "Armistice Day", + "1952-11-19": "Discovery Day", + "1952-11-27": "Thanksgiving", + "1952-11-28": "Day After Thanksgiving; Family Day; Presidents' Day", + "1952-12-08": "Constitution Day; Lady of Camarin Day", + "1952-12-24": "Christmas Eve", + "1952-12-25": "Christmas Day", + "1952-12-26": "Christmas Second Day; Washington's Birthday", + "1953-01-01": "New Year's Day", + "1953-01-06": "Epiphany; Three Kings Day", + "1953-01-19": "Confederate Memorial Day; Lee Jackson Day", + "1953-01-20": "Inauguration Day", + "1953-02-16": "Presidents' Day", + "1953-02-17": "Mardi Gras", + "1953-02-22": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1953-03-02": "Texas Independence Day", + "1953-03-03": "Town Meeting Day", + "1953-03-17": "Evacuation Day", + "1953-03-22": "Emancipation Day", + "1953-03-23": "Emancipation Day (Observed)", + "1953-03-24": "Commonwealth Covenant Day", + "1953-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1953-03-30": "Seward's Day", + "1953-03-31": "Transfer Day", + "1953-04-02": "Holy Thursday", + "1953-04-03": "Good Friday", + "1953-04-06": "Easter Monday", + "1953-04-19": "Patriots' Day", + "1953-04-21": "San Jacinto Day", + "1953-04-22": "Arbor Day", + "1953-04-27": "Confederate Memorial Day", + "1953-05-08": "Truman Day", + "1953-05-30": "Memorial Day", + "1953-06-01": "Jefferson Davis Birthday", + "1953-06-11": "Kamehameha Day", + "1953-06-19": "West Virginia Day (Observed)", + "1953-06-20": "West Virginia Day", + "1953-07-03": "Emancipation Day; Independence Day (Observed)", + "1953-07-04": "Independence Day", + "1953-07-21": "Liberation Day (Guam)", + "1953-07-24": "Pioneer Day", + "1953-07-25": "Constitution Day", + "1953-08-10": "Victory Day", + "1953-08-16": "Bennington Battle Day", + "1953-08-17": "Bennington Battle Day (Observed)", + "1953-09-07": "Labor Day", + "1953-10-12": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "1953-10-18": "Alaska Day", + "1953-10-19": "Alaska Day (Observed)", + "1953-10-30": "Nevada Day (Observed)", + "1953-10-31": "Nevada Day", + "1953-11-01": "Liberty Day", + "1953-11-02": "All Souls' Day", + "1953-11-04": "Citizenship Day", + "1953-11-11": "Armistice Day", + "1953-11-19": "Discovery Day", + "1953-11-26": "Thanksgiving", + "1953-11-27": "Day After Thanksgiving; Family Day; Presidents' Day", + "1953-12-08": "Constitution Day; Lady of Camarin Day", + "1953-12-24": "Christmas Eve; Washington's Birthday", + "1953-12-25": "Christmas Day", + "1953-12-26": "Christmas Second Day", + "1954-01-01": "New Year's Day", + "1954-01-06": "Epiphany; Three Kings Day", + "1954-01-19": "Confederate Memorial Day; Lee Jackson Day", + "1954-02-15": "Presidents' Day", + "1954-02-22": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1954-03-02": "Mardi Gras; Texas Independence Day; Town Meeting Day", + "1954-03-17": "Evacuation Day", + "1954-03-22": "Emancipation Day", + "1954-03-24": "Commonwealth Covenant Day", + "1954-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1954-03-30": "Seward's Day", + "1954-03-31": "Transfer Day", + "1954-04-15": "Holy Thursday", + "1954-04-16": "Good Friday", + "1954-04-19": "Easter Monday; Patriots' Day", + "1954-04-21": "San Jacinto Day", + "1954-04-22": "Arbor Day", + "1954-04-26": "Confederate Memorial Day", + "1954-05-07": "Truman Day (Observed)", + "1954-05-08": "Truman Day", + "1954-05-30": "Memorial Day", + "1954-06-07": "Jefferson Davis Birthday", + "1954-06-11": "Kamehameha Day", + "1954-06-20": "West Virginia Day", + "1954-06-21": "West Virginia Day (Observed)", + "1954-07-03": "Emancipation Day", + "1954-07-04": "Independence Day", + "1954-07-05": "Independence Day (Observed)", + "1954-07-21": "Liberation Day (Guam)", + "1954-07-23": "Pioneer Day (Observed)", + "1954-07-24": "Pioneer Day", + "1954-07-25": "Constitution Day", + "1954-07-26": "Constitution Day (Observed)", + "1954-08-09": "Victory Day", + "1954-08-16": "Bennington Battle Day", + "1954-09-06": "Labor Day", + "1954-10-11": "Commonwealth Cultural Day", + "1954-10-12": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Native American Day", + "1954-10-18": "Alaska Day", + "1954-10-31": "Nevada Day", + "1954-11-01": "Liberty Day; Nevada Day (Observed)", + "1954-11-02": "All Souls' Day", + "1954-11-04": "Citizenship Day", + "1954-11-11": "Veterans Day", + "1954-11-19": "Discovery Day", + "1954-11-25": "Thanksgiving", + "1954-11-26": "Day After Thanksgiving; Family Day; Presidents' Day", + "1954-12-08": "Constitution Day; Lady of Camarin Day", + "1954-12-23": "Christmas Eve (Observed)", + "1954-12-24": "Christmas Day (Observed); Christmas Eve; Washington's Birthday", + "1954-12-25": "Christmas Day", + "1954-12-26": "Christmas Second Day", + "1954-12-31": "New Year's Day (Observed)", + "1955-01-01": "New Year's Day", + "1955-01-06": "Epiphany; Three Kings Day", + "1955-01-19": "Confederate Memorial Day; Lee Jackson Day", + "1955-02-21": "Presidents' Day", + "1955-02-22": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Mardi Gras; Presidents' Day; Washington's Birthday", + "1955-03-01": "Town Meeting Day", + "1955-03-02": "Texas Independence Day", + "1955-03-17": "Evacuation Day", + "1955-03-22": "Emancipation Day", + "1955-03-24": "Commonwealth Covenant Day", + "1955-03-25": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "1955-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1955-03-28": "Seward's Day", + "1955-03-31": "Transfer Day", + "1955-04-07": "Holy Thursday", + "1955-04-08": "Good Friday", + "1955-04-11": "Easter Monday", + "1955-04-19": "Patriots' Day", + "1955-04-21": "San Jacinto Day", + "1955-04-22": "Arbor Day", + "1955-04-25": "Confederate Memorial Day", + "1955-05-08": "Truman Day", + "1955-05-09": "Truman Day (Observed)", + "1955-05-30": "Memorial Day", + "1955-06-06": "Jefferson Davis Birthday", + "1955-06-11": "Kamehameha Day", + "1955-06-20": "West Virginia Day", + "1955-07-03": "Emancipation Day", + "1955-07-04": "Independence Day", + "1955-07-21": "Liberation Day (Guam)", + "1955-07-24": "Pioneer Day", + "1955-07-25": "Constitution Day; Pioneer Day (Observed)", + "1955-08-08": "Victory Day", + "1955-08-16": "Bennington Battle Day", + "1955-09-05": "Labor Day", + "1955-10-10": "Commonwealth Cultural Day", + "1955-10-12": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Native American Day", + "1955-10-18": "Alaska Day", + "1955-10-31": "Nevada Day", + "1955-11-01": "Liberty Day", + "1955-11-02": "All Souls' Day", + "1955-11-04": "Citizenship Day", + "1955-11-11": "Veterans Day", + "1955-11-19": "Discovery Day", + "1955-11-24": "Thanksgiving", + "1955-11-25": "Day After Thanksgiving; Family Day; Presidents' Day", + "1955-12-08": "Constitution Day; Lady of Camarin Day", + "1955-12-23": "Christmas Eve (Observed)", + "1955-12-24": "Christmas Eve; Washington's Birthday", + "1955-12-25": "Christmas Day", + "1955-12-26": "Christmas Day (Observed); Christmas Second Day", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year's Day (Observed)", + "1956-01-06": "Epiphany; Three Kings Day", + "1956-01-19": "Confederate Memorial Day; Lee Jackson Day", + "1956-02-14": "Mardi Gras", + "1956-02-20": "Presidents' Day", + "1956-02-22": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1956-03-02": "Texas Independence Day", + "1956-03-06": "Town Meeting Day", + "1956-03-17": "Evacuation Day", + "1956-03-19": "Evacuation Day (Observed)", + "1956-03-22": "Emancipation Day", + "1956-03-23": "Commonwealth Covenant Day (Observed)", + "1956-03-24": "Commonwealth Covenant Day", + "1956-03-26": "Prince Jonah Kuhio Kalanianaole Day; Seward's Day", + "1956-03-29": "Holy Thursday", + "1956-03-30": "Good Friday", + "1956-03-31": "Transfer Day", + "1956-04-02": "Easter Monday", + "1956-04-19": "Patriots' Day", + "1956-04-21": "San Jacinto Day", + "1956-04-22": "Arbor Day", + "1956-04-23": "Confederate Memorial Day", + "1956-05-08": "Truman Day", + "1956-05-30": "Memorial Day", + "1956-06-04": "Jefferson Davis Birthday", + "1956-06-11": "Kamehameha Day", + "1956-06-20": "West Virginia Day", + "1956-07-03": "Emancipation Day", + "1956-07-04": "Independence Day", + "1956-07-21": "Liberation Day (Guam)", + "1956-07-24": "Pioneer Day", + "1956-07-25": "Constitution Day", + "1956-08-13": "Victory Day", + "1956-08-16": "Bennington Battle Day", + "1956-09-03": "Labor Day", + "1956-10-08": "Commonwealth Cultural Day", + "1956-10-12": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Native American Day", + "1956-10-18": "Alaska Day", + "1956-10-31": "Nevada Day", + "1956-11-01": "Liberty Day", + "1956-11-02": "All Souls' Day", + "1956-11-04": "Citizenship Day", + "1956-11-05": "Citizenship Day (Observed)", + "1956-11-11": "Veterans Day", + "1956-11-12": "Veterans Day (Observed)", + "1956-11-19": "Discovery Day", + "1956-11-22": "Thanksgiving", + "1956-11-23": "Day After Thanksgiving; Family Day; Presidents' Day", + "1956-12-07": "Constitution Day (Observed)", + "1956-12-08": "Constitution Day; Lady of Camarin Day", + "1956-12-24": "Christmas Eve; Washington's Birthday", + "1956-12-25": "Christmas Day", + "1956-12-26": "Christmas Second Day", + "1957-01-01": "New Year's Day", + "1957-01-06": "Epiphany; Three Kings Day", + "1957-01-19": "Confederate Memorial Day; Lee Jackson Day", + "1957-01-20": "Inauguration Day", + "1957-01-21": "Inauguration Day (Observed)", + "1957-02-18": "Presidents' Day", + "1957-02-22": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1957-03-02": "Texas Independence Day", + "1957-03-05": "Mardi Gras; Town Meeting Day", + "1957-03-17": "Evacuation Day", + "1957-03-18": "Evacuation Day (Observed)", + "1957-03-22": "Emancipation Day", + "1957-03-24": "Commonwealth Covenant Day", + "1957-03-25": "Commonwealth Covenant Day (Observed); Seward's Day", + "1957-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1957-03-31": "Transfer Day", + "1957-04-18": "Holy Thursday", + "1957-04-19": "Good Friday; Patriots' Day", + "1957-04-21": "San Jacinto Day", + "1957-04-22": "Arbor Day; Confederate Memorial Day; Easter Monday", + "1957-05-08": "Truman Day", + "1957-05-30": "Memorial Day", + "1957-06-03": "Jefferson Davis Birthday", + "1957-06-11": "Kamehameha Day", + "1957-06-20": "West Virginia Day", + "1957-07-03": "Emancipation Day", + "1957-07-04": "Independence Day", + "1957-07-21": "Liberation Day (Guam)", + "1957-07-24": "Pioneer Day", + "1957-07-25": "Constitution Day", + "1957-08-12": "Victory Day", + "1957-08-16": "Bennington Battle Day", + "1957-09-02": "Labor Day", + "1957-10-12": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Native American Day", + "1957-10-14": "Commonwealth Cultural Day", + "1957-10-18": "Alaska Day", + "1957-10-31": "Nevada Day", + "1957-11-01": "Liberty Day", + "1957-11-02": "All Souls' Day", + "1957-11-04": "Citizenship Day", + "1957-11-11": "Veterans Day", + "1957-11-19": "Discovery Day", + "1957-11-28": "Thanksgiving", + "1957-11-29": "Day After Thanksgiving; Family Day; Presidents' Day", + "1957-12-08": "Constitution Day; Lady of Camarin Day", + "1957-12-09": "Constitution Day (Observed)", + "1957-12-24": "Christmas Eve; Washington's Birthday", + "1957-12-25": "Christmas Day", + "1957-12-26": "Christmas Second Day", + "1958-01-01": "New Year's Day", + "1958-01-06": "Epiphany; Three Kings Day", + "1958-01-19": "Confederate Memorial Day; Lee Jackson Day", + "1958-02-17": "Presidents' Day", + "1958-02-18": "Mardi Gras", + "1958-02-22": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1958-03-02": "Texas Independence Day", + "1958-03-04": "Town Meeting Day", + "1958-03-17": "Evacuation Day", + "1958-03-22": "Emancipation Day", + "1958-03-24": "Commonwealth Covenant Day", + "1958-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1958-03-31": "Seward's Day; Transfer Day", + "1958-04-03": "Holy Thursday", + "1958-04-04": "Good Friday", + "1958-04-07": "Easter Monday", + "1958-04-19": "Patriots' Day", + "1958-04-21": "San Jacinto Day", + "1958-04-22": "Arbor Day", + "1958-04-28": "Confederate Memorial Day", + "1958-05-08": "Truman Day", + "1958-05-30": "Memorial Day", + "1958-06-02": "Jefferson Davis Birthday", + "1958-06-11": "Kamehameha Day", + "1958-06-20": "West Virginia Day", + "1958-07-03": "Emancipation Day", + "1958-07-04": "Independence Day", + "1958-07-21": "Liberation Day (Guam)", + "1958-07-24": "Pioneer Day", + "1958-07-25": "Constitution Day", + "1958-08-11": "Victory Day", + "1958-08-15": "Bennington Battle Day (Observed)", + "1958-08-16": "Bennington Battle Day", + "1958-09-01": "Labor Day", + "1958-10-12": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Native American Day", + "1958-10-13": "Commonwealth Cultural Day", + "1958-10-17": "Alaska Day (Observed)", + "1958-10-18": "Alaska Day", + "1958-10-31": "Nevada Day", + "1958-11-01": "Liberty Day", + "1958-11-02": "All Souls' Day", + "1958-11-04": "Citizenship Day", + "1958-11-11": "Veterans Day", + "1958-11-19": "Discovery Day", + "1958-11-27": "Thanksgiving", + "1958-11-28": "Day After Thanksgiving; Family Day; Presidents' Day", + "1958-12-08": "Constitution Day; Lady of Camarin Day", + "1958-12-24": "Christmas Eve", + "1958-12-25": "Christmas Day", + "1958-12-26": "Christmas Second Day; Washington's Birthday", + "1959-01-01": "New Year's Day", + "1959-01-06": "Epiphany; Three Kings Day", + "1959-01-19": "Confederate Memorial Day; Lee Jackson Day", + "1959-02-10": "Mardi Gras", + "1959-02-16": "Presidents' Day", + "1959-02-22": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1959-03-02": "Texas Independence Day", + "1959-03-03": "Town Meeting Day", + "1959-03-17": "Evacuation Day", + "1959-03-22": "Emancipation Day", + "1959-03-23": "Emancipation Day (Observed)", + "1959-03-24": "Commonwealth Covenant Day", + "1959-03-26": "Holy Thursday; Prince Jonah Kuhio Kalanianaole Day", + "1959-03-27": "Good Friday", + "1959-03-30": "Easter Monday; Seward's Day", + "1959-03-31": "Transfer Day", + "1959-04-19": "Patriots' Day", + "1959-04-21": "San Jacinto Day", + "1959-04-22": "Arbor Day", + "1959-04-27": "Confederate Memorial Day", + "1959-05-08": "Truman Day", + "1959-05-30": "Memorial Day", + "1959-06-01": "Jefferson Davis Birthday", + "1959-06-11": "Kamehameha Day", + "1959-06-19": "West Virginia Day (Observed)", + "1959-06-20": "West Virginia Day", + "1959-07-03": "Emancipation Day; Independence Day (Observed)", + "1959-07-04": "Independence Day", + "1959-07-21": "Liberation Day (Guam)", + "1959-07-24": "Pioneer Day", + "1959-07-25": "Constitution Day", + "1959-08-10": "Victory Day", + "1959-08-16": "Bennington Battle Day", + "1959-08-17": "Bennington Battle Day (Observed)", + "1959-08-21": "Statehood Day", + "1959-09-07": "Labor Day", + "1959-10-12": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "1959-10-18": "Alaska Day", + "1959-10-19": "Alaska Day (Observed)", + "1959-10-30": "Nevada Day (Observed)", + "1959-10-31": "Nevada Day", + "1959-11-01": "Liberty Day", + "1959-11-02": "All Souls' Day", + "1959-11-04": "Citizenship Day", + "1959-11-11": "Veterans Day", + "1959-11-19": "Discovery Day", + "1959-11-26": "Thanksgiving", + "1959-11-27": "Day After Thanksgiving; Family Day; Presidents' Day", + "1959-12-08": "Constitution Day; Lady of Camarin Day", + "1959-12-24": "Christmas Eve; Washington's Birthday", + "1959-12-25": "Christmas Day", + "1959-12-26": "Christmas Second Day", + "1960-01-01": "New Year's Day", + "1960-01-06": "Epiphany; Three Kings Day", + "1960-01-19": "Confederate Memorial Day; Lee Jackson Day", + "1960-02-15": "Presidents' Day", + "1960-02-22": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1960-03-01": "Mardi Gras; Town Meeting Day", + "1960-03-02": "Texas Independence Day", + "1960-03-17": "Evacuation Day", + "1960-03-22": "Emancipation Day", + "1960-03-24": "Commonwealth Covenant Day", + "1960-03-25": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "1960-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1960-03-28": "Seward's Day", + "1960-03-31": "Transfer Day", + "1960-04-14": "Holy Thursday", + "1960-04-15": "Good Friday", + "1960-04-18": "Easter Monday", + "1960-04-19": "Patriots' Day", + "1960-04-21": "San Jacinto Day", + "1960-04-22": "Arbor Day", + "1960-04-25": "Confederate Memorial Day", + "1960-05-08": "Truman Day", + "1960-05-09": "Truman Day (Observed)", + "1960-05-30": "Memorial Day", + "1960-06-06": "Jefferson Davis Birthday", + "1960-06-11": "Kamehameha Day", + "1960-06-20": "West Virginia Day", + "1960-07-03": "Emancipation Day", + "1960-07-04": "Independence Day", + "1960-07-21": "Liberation Day (Guam)", + "1960-07-24": "Pioneer Day", + "1960-07-25": "Constitution Day; Pioneer Day (Observed)", + "1960-08-08": "Victory Day", + "1960-08-16": "Bennington Battle Day", + "1960-08-19": "Statehood Day", + "1960-09-05": "Labor Day", + "1960-10-10": "Commonwealth Cultural Day", + "1960-10-12": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Native American Day", + "1960-10-18": "Alaska Day", + "1960-10-31": "Nevada Day", + "1960-11-01": "Liberty Day", + "1960-11-02": "All Souls' Day", + "1960-11-04": "Citizenship Day", + "1960-11-11": "Veterans Day", + "1960-11-19": "Discovery Day", + "1960-11-24": "Thanksgiving", + "1960-11-25": "Day After Thanksgiving; Family Day; Presidents' Day", + "1960-12-08": "Constitution Day; Lady of Camarin Day", + "1960-12-23": "Christmas Eve (Observed)", + "1960-12-24": "Christmas Eve; Washington's Birthday", + "1960-12-25": "Christmas Day", + "1960-12-26": "Christmas Day (Observed); Christmas Second Day", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day (Observed)", + "1961-01-06": "Epiphany; Three Kings Day", + "1961-01-19": "Confederate Memorial Day; Lee Jackson Day", + "1961-01-20": "Inauguration Day", + "1961-02-14": "Mardi Gras", + "1961-02-20": "Presidents' Day", + "1961-02-22": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1961-03-02": "Texas Independence Day", + "1961-03-07": "Town Meeting Day", + "1961-03-17": "Evacuation Day", + "1961-03-22": "Emancipation Day", + "1961-03-24": "Commonwealth Covenant Day", + "1961-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1961-03-27": "Prince Jonah Kuhio Kalanianaole Day (Observed); Seward's Day", + "1961-03-30": "Holy Thursday", + "1961-03-31": "Good Friday; Transfer Day", + "1961-04-03": "Easter Monday", + "1961-04-19": "Patriots' Day", + "1961-04-21": "San Jacinto Day", + "1961-04-22": "Arbor Day", + "1961-04-24": "Confederate Memorial Day", + "1961-05-08": "Truman Day", + "1961-05-30": "Memorial Day", + "1961-06-05": "Jefferson Davis Birthday", + "1961-06-11": "Kamehameha Day", + "1961-06-20": "West Virginia Day", + "1961-07-03": "Emancipation Day", + "1961-07-04": "Independence Day", + "1961-07-21": "Liberation Day (Guam)", + "1961-07-24": "Pioneer Day", + "1961-07-25": "Constitution Day", + "1961-08-14": "Victory Day", + "1961-08-16": "Bennington Battle Day", + "1961-08-18": "Statehood Day", + "1961-09-04": "Labor Day", + "1961-10-09": "Commonwealth Cultural Day", + "1961-10-12": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Native American Day", + "1961-10-18": "Alaska Day", + "1961-10-31": "Nevada Day", + "1961-11-01": "Liberty Day", + "1961-11-02": "All Souls' Day", + "1961-11-03": "Citizenship Day (Observed)", + "1961-11-04": "Citizenship Day", + "1961-11-10": "Veterans Day (Observed)", + "1961-11-11": "Veterans Day", + "1961-11-19": "Discovery Day", + "1961-11-20": "Discovery Day (Observed)", + "1961-11-23": "Thanksgiving", + "1961-11-24": "Day After Thanksgiving; Family Day; Presidents' Day", + "1961-12-08": "Constitution Day; Lady of Camarin Day", + "1961-12-22": "Christmas Eve (Observed)", + "1961-12-24": "Christmas Eve; Washington's Birthday", + "1961-12-25": "Christmas Day", + "1961-12-26": "Christmas Second Day", + "1962-01-01": "New Year's Day", + "1962-01-06": "Epiphany; Three Kings Day", + "1962-01-19": "Confederate Memorial Day; Lee Jackson Day", + "1962-02-19": "Presidents' Day", + "1962-02-22": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1962-03-02": "Texas Independence Day", + "1962-03-06": "Mardi Gras; Town Meeting Day", + "1962-03-17": "Evacuation Day", + "1962-03-19": "Evacuation Day (Observed)", + "1962-03-22": "Emancipation Day", + "1962-03-23": "Commonwealth Covenant Day (Observed)", + "1962-03-24": "Commonwealth Covenant Day", + "1962-03-26": "Prince Jonah Kuhio Kalanianaole Day; Seward's Day", + "1962-03-31": "Transfer Day", + "1962-04-19": "Holy Thursday; Patriots' Day", + "1962-04-20": "Good Friday", + "1962-04-21": "San Jacinto Day", + "1962-04-22": "Arbor Day", + "1962-04-23": "Confederate Memorial Day; Easter Monday", + "1962-05-08": "Truman Day", + "1962-05-30": "Memorial Day", + "1962-06-04": "Jefferson Davis Birthday", + "1962-06-11": "Kamehameha Day", + "1962-06-20": "West Virginia Day", + "1962-07-03": "Emancipation Day", + "1962-07-04": "Independence Day", + "1962-07-21": "Liberation Day (Guam)", + "1962-07-24": "Pioneer Day", + "1962-07-25": "Constitution Day", + "1962-08-13": "Victory Day", + "1962-08-16": "Bennington Battle Day", + "1962-08-17": "Statehood Day", + "1962-09-03": "Labor Day", + "1962-10-08": "Commonwealth Cultural Day", + "1962-10-12": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Native American Day", + "1962-10-18": "Alaska Day", + "1962-10-31": "Nevada Day", + "1962-11-01": "Liberty Day", + "1962-11-02": "All Souls' Day", + "1962-11-04": "Citizenship Day", + "1962-11-05": "Citizenship Day (Observed)", + "1962-11-11": "Veterans Day", + "1962-11-12": "Veterans Day (Observed)", + "1962-11-19": "Discovery Day", + "1962-11-22": "Thanksgiving", + "1962-11-23": "Day After Thanksgiving; Family Day; Presidents' Day", + "1962-12-07": "Constitution Day (Observed)", + "1962-12-08": "Constitution Day; Lady of Camarin Day", + "1962-12-24": "Christmas Eve; Washington's Birthday", + "1962-12-25": "Christmas Day", + "1962-12-26": "Christmas Second Day", + "1963-01-01": "New Year's Day", + "1963-01-06": "Epiphany; Three Kings Day", + "1963-01-19": "Confederate Memorial Day; Lee Jackson Day", + "1963-02-18": "Presidents' Day", + "1963-02-22": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1963-02-26": "Mardi Gras", + "1963-03-02": "Texas Independence Day", + "1963-03-05": "Town Meeting Day", + "1963-03-17": "Evacuation Day", + "1963-03-18": "Evacuation Day (Observed)", + "1963-03-22": "Emancipation Day", + "1963-03-24": "Commonwealth Covenant Day", + "1963-03-25": "Commonwealth Covenant Day (Observed); Seward's Day", + "1963-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1963-03-31": "Transfer Day", + "1963-04-11": "Holy Thursday", + "1963-04-12": "Good Friday", + "1963-04-15": "Easter Monday", + "1963-04-19": "Patriots' Day", + "1963-04-21": "San Jacinto Day", + "1963-04-22": "Arbor Day; Confederate Memorial Day", + "1963-05-08": "Truman Day", + "1963-05-30": "Memorial Day", + "1963-06-03": "Jefferson Davis Birthday", + "1963-06-11": "Kamehameha Day", + "1963-06-20": "West Virginia Day", + "1963-07-03": "Emancipation Day", + "1963-07-04": "Independence Day", + "1963-07-21": "Liberation Day (Guam)", + "1963-07-24": "Pioneer Day", + "1963-07-25": "Constitution Day", + "1963-08-12": "Victory Day", + "1963-08-16": "Bennington Battle Day; Statehood Day", + "1963-09-02": "Labor Day", + "1963-10-12": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Native American Day", + "1963-10-14": "Commonwealth Cultural Day", + "1963-10-18": "Alaska Day", + "1963-10-31": "Nevada Day", + "1963-11-01": "Liberty Day", + "1963-11-02": "All Souls' Day", + "1963-11-04": "Citizenship Day", + "1963-11-11": "Veterans Day", + "1963-11-19": "Discovery Day", + "1963-11-28": "Thanksgiving", + "1963-11-29": "Day After Thanksgiving; Family Day; Presidents' Day", + "1963-12-08": "Constitution Day; Lady of Camarin Day", + "1963-12-09": "Constitution Day (Observed)", + "1963-12-24": "Christmas Eve; Washington's Birthday", + "1963-12-25": "Christmas Day", + "1963-12-26": "Christmas Second Day", + "1964-01-01": "New Year's Day", + "1964-01-06": "Epiphany; Three Kings Day", + "1964-01-19": "Confederate Memorial Day; Lee Jackson Day", + "1964-02-11": "Mardi Gras", + "1964-02-17": "Presidents' Day", + "1964-02-22": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1964-03-02": "Texas Independence Day", + "1964-03-03": "Town Meeting Day", + "1964-03-17": "Evacuation Day", + "1964-03-22": "Emancipation Day", + "1964-03-23": "Emancipation Day (Observed)", + "1964-03-24": "Commonwealth Covenant Day", + "1964-03-26": "Holy Thursday; Prince Jonah Kuhio Kalanianaole Day", + "1964-03-27": "Good Friday", + "1964-03-30": "Easter Monday; Seward's Day", + "1964-03-31": "Transfer Day", + "1964-04-19": "Patriots' Day", + "1964-04-21": "San Jacinto Day", + "1964-04-22": "Arbor Day", + "1964-04-27": "Confederate Memorial Day", + "1964-05-08": "Truman Day", + "1964-05-30": "Memorial Day", + "1964-06-01": "Jefferson Davis Birthday", + "1964-06-11": "Kamehameha Day", + "1964-06-19": "West Virginia Day (Observed)", + "1964-06-20": "West Virginia Day", + "1964-07-03": "Emancipation Day; Independence Day (Observed)", + "1964-07-04": "Independence Day", + "1964-07-21": "Liberation Day (Guam)", + "1964-07-24": "Pioneer Day", + "1964-07-25": "Constitution Day", + "1964-08-10": "Victory Day", + "1964-08-16": "Bennington Battle Day", + "1964-08-17": "Bennington Battle Day (Observed)", + "1964-08-21": "Statehood Day", + "1964-09-07": "Labor Day", + "1964-10-12": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "1964-10-18": "Alaska Day", + "1964-10-19": "Alaska Day (Observed)", + "1964-10-30": "Nevada Day (Observed)", + "1964-10-31": "Nevada Day", + "1964-11-01": "Liberty Day", + "1964-11-02": "All Souls' Day", + "1964-11-04": "Citizenship Day", + "1964-11-11": "Veterans Day", + "1964-11-19": "Discovery Day", + "1964-11-26": "Thanksgiving", + "1964-11-27": "Day After Thanksgiving; Family Day; Presidents' Day", + "1964-12-08": "Constitution Day; Lady of Camarin Day", + "1964-12-24": "Christmas Eve; Washington's Birthday", + "1964-12-25": "Christmas Day", + "1964-12-26": "Christmas Second Day", + "1965-01-01": "New Year's Day", + "1965-01-06": "Epiphany; Three Kings Day", + "1965-01-19": "Confederate Memorial Day; Lee Jackson Day", + "1965-01-20": "Inauguration Day", + "1965-02-15": "Presidents' Day", + "1965-02-22": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1965-03-02": "Mardi Gras; Texas Independence Day; Town Meeting Day", + "1965-03-17": "Evacuation Day", + "1965-03-22": "Emancipation Day", + "1965-03-24": "Commonwealth Covenant Day", + "1965-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1965-03-29": "Seward's Day", + "1965-03-31": "Transfer Day", + "1965-04-15": "Holy Thursday", + "1965-04-16": "Good Friday", + "1965-04-19": "Easter Monday; Patriots' Day", + "1965-04-21": "San Jacinto Day", + "1965-04-22": "Arbor Day", + "1965-04-26": "Confederate Memorial Day", + "1965-05-07": "Truman Day (Observed)", + "1965-05-08": "Truman Day", + "1965-05-30": "Memorial Day", + "1965-06-07": "Jefferson Davis Birthday", + "1965-06-11": "Kamehameha Day", + "1965-06-20": "West Virginia Day", + "1965-06-21": "West Virginia Day (Observed)", + "1965-07-03": "Emancipation Day", + "1965-07-04": "Independence Day", + "1965-07-05": "Independence Day (Observed)", + "1965-07-21": "Liberation Day (Guam)", + "1965-07-23": "Pioneer Day (Observed)", + "1965-07-24": "Pioneer Day", + "1965-07-25": "Constitution Day", + "1965-07-26": "Constitution Day (Observed)", + "1965-08-09": "Victory Day", + "1965-08-16": "Bennington Battle Day", + "1965-08-20": "Statehood Day", + "1965-09-06": "Labor Day", + "1965-10-11": "Commonwealth Cultural Day", + "1965-10-12": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Native American Day", + "1965-10-18": "Alaska Day", + "1965-10-31": "Nevada Day", + "1965-11-01": "Liberty Day; Nevada Day (Observed)", + "1965-11-02": "All Souls' Day", + "1965-11-04": "Citizenship Day", + "1965-11-11": "Veterans Day", + "1965-11-19": "Discovery Day", + "1965-11-25": "Thanksgiving", + "1965-11-26": "Day After Thanksgiving; Family Day; Presidents' Day", + "1965-12-08": "Constitution Day; Lady of Camarin Day", + "1965-12-23": "Christmas Eve (Observed)", + "1965-12-24": "Christmas Day (Observed); Christmas Eve; Washington's Birthday", + "1965-12-25": "Christmas Day", + "1965-12-26": "Christmas Second Day", + "1965-12-31": "New Year's Day (Observed)", + "1966-01-01": "New Year's Day", + "1966-01-06": "Epiphany; Three Kings Day", + "1966-01-19": "Confederate Memorial Day; Lee Jackson Day", + "1966-02-21": "Presidents' Day", + "1966-02-22": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Mardi Gras; Presidents' Day; Washington's Birthday", + "1966-03-01": "Town Meeting Day", + "1966-03-02": "Texas Independence Day", + "1966-03-17": "Evacuation Day", + "1966-03-22": "Emancipation Day", + "1966-03-24": "Commonwealth Covenant Day", + "1966-03-25": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "1966-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1966-03-28": "Seward's Day", + "1966-03-31": "Transfer Day", + "1966-04-07": "Holy Thursday", + "1966-04-08": "Good Friday", + "1966-04-11": "Easter Monday", + "1966-04-19": "Patriots' Day", + "1966-04-21": "San Jacinto Day", + "1966-04-22": "Arbor Day", + "1966-04-25": "Confederate Memorial Day", + "1966-05-08": "Truman Day", + "1966-05-09": "Truman Day (Observed)", + "1966-05-30": "Memorial Day", + "1966-06-06": "Jefferson Davis Birthday", + "1966-06-11": "Kamehameha Day", + "1966-06-20": "West Virginia Day", + "1966-07-03": "Emancipation Day", + "1966-07-04": "Independence Day", + "1966-07-21": "Liberation Day (Guam)", + "1966-07-24": "Pioneer Day", + "1966-07-25": "Constitution Day; Pioneer Day (Observed)", + "1966-08-08": "Victory Day", + "1966-08-16": "Bennington Battle Day", + "1966-08-19": "Statehood Day", + "1966-09-05": "Labor Day", + "1966-10-10": "Commonwealth Cultural Day", + "1966-10-12": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Native American Day", + "1966-10-18": "Alaska Day", + "1966-10-31": "Nevada Day", + "1966-11-01": "Liberty Day", + "1966-11-02": "All Souls' Day", + "1966-11-04": "Citizenship Day", + "1966-11-11": "Veterans Day", + "1966-11-19": "Discovery Day", + "1966-11-24": "Thanksgiving", + "1966-11-25": "Day After Thanksgiving; Family Day; Presidents' Day", + "1966-12-08": "Constitution Day; Lady of Camarin Day", + "1966-12-23": "Christmas Eve (Observed)", + "1966-12-24": "Christmas Eve; Washington's Birthday", + "1966-12-25": "Christmas Day", + "1966-12-26": "Christmas Day (Observed); Christmas Second Day", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day (Observed)", + "1967-01-06": "Epiphany; Three Kings Day", + "1967-01-19": "Confederate Memorial Day; Lee Jackson Day", + "1967-02-07": "Mardi Gras", + "1967-02-20": "Presidents' Day", + "1967-02-22": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1967-03-02": "Texas Independence Day", + "1967-03-07": "Town Meeting Day", + "1967-03-17": "Evacuation Day", + "1967-03-22": "Emancipation Day", + "1967-03-23": "Holy Thursday", + "1967-03-24": "Commonwealth Covenant Day; Good Friday", + "1967-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1967-03-27": "Easter Monday; Prince Jonah Kuhio Kalanianaole Day (Observed); Seward's Day", + "1967-03-31": "Transfer Day", + "1967-04-19": "Patriots' Day", + "1967-04-21": "San Jacinto Day", + "1967-04-22": "Arbor Day", + "1967-04-24": "Confederate Memorial Day", + "1967-05-08": "Truman Day", + "1967-05-30": "Memorial Day", + "1967-06-05": "Jefferson Davis Birthday", + "1967-06-11": "Kamehameha Day", + "1967-06-20": "West Virginia Day", + "1967-07-03": "Emancipation Day", + "1967-07-04": "Independence Day", + "1967-07-21": "Liberation Day (Guam)", + "1967-07-24": "Pioneer Day", + "1967-07-25": "Constitution Day", + "1967-08-14": "Victory Day", + "1967-08-16": "Bennington Battle Day", + "1967-08-18": "Statehood Day", + "1967-09-04": "Labor Day", + "1967-10-09": "Commonwealth Cultural Day", + "1967-10-12": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Native American Day", + "1967-10-18": "Alaska Day", + "1967-10-31": "Nevada Day", + "1967-11-01": "Liberty Day", + "1967-11-02": "All Souls' Day", + "1967-11-03": "Citizenship Day (Observed)", + "1967-11-04": "Citizenship Day", + "1967-11-10": "Veterans Day (Observed)", + "1967-11-11": "Veterans Day", + "1967-11-19": "Discovery Day", + "1967-11-20": "Discovery Day (Observed)", + "1967-11-23": "Thanksgiving", + "1967-11-24": "Day After Thanksgiving; Family Day; Presidents' Day", + "1967-12-08": "Constitution Day; Lady of Camarin Day", + "1967-12-22": "Christmas Eve (Observed)", + "1967-12-24": "Christmas Eve; Washington's Birthday", + "1967-12-25": "Christmas Day", + "1967-12-26": "Christmas Second Day", + "1968-01-01": "New Year's Day", + "1968-01-06": "Epiphany; Three Kings Day", + "1968-01-19": "Confederate Memorial Day; Lee Jackson Day", + "1968-02-19": "Presidents' Day", + "1968-02-22": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1968-02-27": "Mardi Gras", + "1968-03-02": "Texas Independence Day", + "1968-03-05": "Town Meeting Day", + "1968-03-17": "Evacuation Day", + "1968-03-18": "Evacuation Day (Observed)", + "1968-03-22": "Emancipation Day", + "1968-03-24": "Commonwealth Covenant Day", + "1968-03-25": "Commonwealth Covenant Day (Observed); Seward's Day", + "1968-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1968-03-31": "Transfer Day", + "1968-04-11": "Holy Thursday", + "1968-04-12": "Good Friday", + "1968-04-15": "Easter Monday", + "1968-04-19": "Patriots' Day", + "1968-04-21": "San Jacinto Day", + "1968-04-22": "Arbor Day; Confederate Memorial Day", + "1968-05-08": "Truman Day", + "1968-05-30": "Memorial Day", + "1968-06-03": "Jefferson Davis Birthday", + "1968-06-11": "Kamehameha Day", + "1968-06-20": "West Virginia Day", + "1968-07-03": "Emancipation Day", + "1968-07-04": "Independence Day", + "1968-07-21": "Liberation Day (Guam)", + "1968-07-24": "Pioneer Day", + "1968-07-25": "Constitution Day", + "1968-08-12": "Victory Day", + "1968-08-16": "Bennington Battle Day; Statehood Day", + "1968-09-02": "Labor Day", + "1968-10-12": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Native American Day", + "1968-10-14": "Commonwealth Cultural Day", + "1968-10-18": "Alaska Day", + "1968-10-31": "Nevada Day", + "1968-11-01": "Liberty Day", + "1968-11-02": "All Souls' Day", + "1968-11-04": "Citizenship Day", + "1968-11-11": "Veterans Day", + "1968-11-19": "Discovery Day", + "1968-11-28": "Thanksgiving", + "1968-11-29": "Day After Thanksgiving; Family Day; Presidents' Day", + "1968-12-08": "Constitution Day; Lady of Camarin Day", + "1968-12-09": "Constitution Day (Observed)", + "1968-12-24": "Christmas Eve; Washington's Birthday", + "1968-12-25": "Christmas Day", + "1968-12-26": "Christmas Second Day", + "1969-01-01": "New Year's Day", + "1969-01-06": "Epiphany; Three Kings Day", + "1969-01-19": "Confederate Memorial Day; Lee Jackson Day", + "1969-01-20": "Inauguration Day", + "1969-02-17": "Presidents' Day", + "1969-02-18": "Mardi Gras", + "1969-02-22": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1969-03-02": "Texas Independence Day", + "1969-03-04": "Town Meeting Day", + "1969-03-17": "Evacuation Day", + "1969-03-22": "Emancipation Day", + "1969-03-24": "Commonwealth Covenant Day", + "1969-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1969-03-31": "Seward's Day; Transfer Day", + "1969-04-03": "Holy Thursday", + "1969-04-04": "Good Friday", + "1969-04-07": "Easter Monday", + "1969-04-21": "Patriots' Day; San Jacinto Day", + "1969-04-22": "Arbor Day", + "1969-04-28": "Confederate Memorial Day", + "1969-05-08": "Truman Day", + "1969-05-30": "Memorial Day", + "1969-06-02": "Jefferson Davis Birthday", + "1969-06-11": "Kamehameha Day", + "1969-06-20": "West Virginia Day", + "1969-07-03": "Emancipation Day", + "1969-07-04": "Independence Day", + "1969-07-21": "Liberation Day (Guam)", + "1969-07-24": "Pioneer Day", + "1969-07-25": "Constitution Day", + "1969-08-11": "Victory Day", + "1969-08-15": "Bennington Battle Day (Observed); Statehood Day", + "1969-08-16": "Bennington Battle Day", + "1969-09-01": "Labor Day", + "1969-10-12": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Native American Day", + "1969-10-13": "Commonwealth Cultural Day", + "1969-10-17": "Alaska Day (Observed)", + "1969-10-18": "Alaska Day", + "1969-10-31": "Nevada Day", + "1969-11-01": "Liberty Day", + "1969-11-02": "All Souls' Day", + "1969-11-04": "Citizenship Day", + "1969-11-11": "Veterans Day", + "1969-11-19": "Discovery Day", + "1969-11-27": "Thanksgiving", + "1969-11-28": "Day After Thanksgiving; Family Day; Presidents' Day", + "1969-12-08": "Constitution Day; Lady of Camarin Day", + "1969-12-24": "Christmas Eve", + "1969-12-25": "Christmas Day", + "1969-12-26": "Christmas Second Day; Washington's Birthday", + "1970-01-01": "New Year's Day", + "1970-01-06": "Epiphany; Three Kings Day", + "1970-01-19": "Confederate Memorial Day; Lee Jackson Day", + "1970-02-10": "Mardi Gras", + "1970-02-16": "Presidents' Day", + "1970-02-22": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1970-03-02": "Guam Discovery Day; Texas Independence Day", + "1970-03-03": "Town Meeting Day", + "1970-03-17": "Evacuation Day", + "1970-03-22": "Emancipation Day", + "1970-03-23": "Emancipation Day (Observed)", + "1970-03-24": "Commonwealth Covenant Day", + "1970-03-26": "Holy Thursday; Prince Jonah Kuhio Kalanianaole Day", + "1970-03-27": "Good Friday", + "1970-03-30": "Easter Monday; Seward's Day", + "1970-03-31": "Transfer Day", + "1970-04-20": "Patriots' Day", + "1970-04-21": "San Jacinto Day", + "1970-04-22": "Arbor Day", + "1970-04-27": "Confederate Memorial Day", + "1970-05-08": "Truman Day", + "1970-05-30": "Memorial Day", + "1970-06-01": "Jefferson Davis Birthday", + "1970-06-11": "Kamehameha Day", + "1970-06-19": "West Virginia Day (Observed)", + "1970-06-20": "West Virginia Day", + "1970-07-03": "Emancipation Day; Independence Day (Observed)", + "1970-07-04": "Independence Day", + "1970-07-21": "Liberation Day (Guam)", + "1970-07-24": "Pioneer Day", + "1970-07-25": "Constitution Day", + "1970-08-10": "Victory Day", + "1970-08-16": "Bennington Battle Day", + "1970-08-17": "Bennington Battle Day (Observed)", + "1970-08-21": "Statehood Day", + "1970-09-07": "Labor Day", + "1970-10-12": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "1970-10-18": "Alaska Day", + "1970-10-19": "Alaska Day (Observed)", + "1970-10-30": "Nevada Day (Observed)", + "1970-10-31": "Nevada Day", + "1970-11-01": "Liberty Day", + "1970-11-02": "All Souls' Day", + "1970-11-04": "Citizenship Day", + "1970-11-11": "Veterans Day", + "1970-11-19": "Discovery Day", + "1970-11-26": "Thanksgiving", + "1970-11-27": "Day After Thanksgiving; Family Day; Presidents' Day", + "1970-12-08": "Constitution Day; Lady of Camarin Day", + "1970-12-24": "Christmas Eve; Washington's Birthday", + "1970-12-25": "Christmas Day", + "1970-12-26": "Christmas Second Day", + "1971-01-01": "New Year's Day", + "1971-01-06": "Epiphany; Three Kings Day", + "1971-01-19": "Confederate Memorial Day; Lee Jackson Day", + "1971-02-12": "Lincoln's Birthday", + "1971-02-15": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1971-02-23": "Mardi Gras", + "1971-03-01": "Guam Discovery Day", + "1971-03-02": "Texas Independence Day; Town Meeting Day", + "1971-03-17": "Evacuation Day", + "1971-03-22": "Emancipation Day", + "1971-03-24": "Commonwealth Covenant Day", + "1971-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1971-03-29": "Seward's Day", + "1971-03-31": "Transfer Day", + "1971-04-08": "Holy Thursday", + "1971-04-09": "Good Friday", + "1971-04-12": "Easter Monday", + "1971-04-19": "Patriots' Day", + "1971-04-21": "San Jacinto Day", + "1971-04-22": "Arbor Day", + "1971-04-26": "Confederate Memorial Day", + "1971-05-07": "Truman Day (Observed)", + "1971-05-08": "Truman Day", + "1971-05-31": "Memorial Day", + "1971-06-07": "Jefferson Davis Birthday", + "1971-06-11": "Kamehameha Day", + "1971-06-20": "West Virginia Day", + "1971-06-21": "West Virginia Day (Observed)", + "1971-07-03": "Emancipation Day", + "1971-07-04": "Independence Day", + "1971-07-05": "Independence Day (Observed)", + "1971-07-21": "Liberation Day (Guam)", + "1971-07-23": "Pioneer Day (Observed)", + "1971-07-24": "Pioneer Day", + "1971-07-25": "Constitution Day", + "1971-07-26": "Constitution Day (Observed)", + "1971-08-09": "Victory Day", + "1971-08-16": "Bennington Battle Day", + "1971-08-20": "Statehood Day", + "1971-09-06": "Labor Day", + "1971-10-11": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "1971-10-18": "Alaska Day", + "1971-10-25": "Veterans Day", + "1971-10-31": "Nevada Day", + "1971-11-01": "Liberty Day; Nevada Day (Observed)", + "1971-11-02": "All Souls' Day", + "1971-11-04": "Citizenship Day", + "1971-11-19": "Discovery Day", + "1971-11-25": "Thanksgiving", + "1971-11-26": "Day After Thanksgiving; Family Day; Presidents' Day", + "1971-12-08": "Constitution Day; Lady of Camarin Day", + "1971-12-23": "Christmas Eve (Observed)", + "1971-12-24": "Christmas Day (Observed); Christmas Eve; Washington's Birthday", + "1971-12-25": "Christmas Day", + "1971-12-26": "Christmas Second Day", + "1971-12-31": "New Year's Day (Observed)", + "1972-01-01": "New Year's Day", + "1972-01-06": "Epiphany; Three Kings Day", + "1972-01-19": "Confederate Memorial Day; Lee Jackson Day", + "1972-02-11": "Lincoln's Birthday (Observed)", + "1972-02-12": "Lincoln's Birthday", + "1972-02-15": "Mardi Gras", + "1972-02-21": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1972-03-02": "Texas Independence Day", + "1972-03-06": "Guam Discovery Day", + "1972-03-07": "Town Meeting Day", + "1972-03-17": "Evacuation Day", + "1972-03-22": "Emancipation Day", + "1972-03-24": "Commonwealth Covenant Day", + "1972-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1972-03-27": "Prince Jonah Kuhio Kalanianaole Day (Observed); Seward's Day", + "1972-03-30": "Holy Thursday", + "1972-03-31": "Good Friday; Transfer Day", + "1972-04-03": "Easter Monday", + "1972-04-17": "Patriots' Day", + "1972-04-21": "San Jacinto Day", + "1972-04-22": "Arbor Day", + "1972-04-24": "Confederate Memorial Day", + "1972-05-08": "Truman Day", + "1972-05-29": "Memorial Day", + "1972-06-05": "Jefferson Davis Birthday", + "1972-06-11": "Kamehameha Day", + "1972-06-20": "West Virginia Day", + "1972-07-03": "Emancipation Day", + "1972-07-04": "Independence Day", + "1972-07-21": "Liberation Day (Guam)", + "1972-07-24": "Pioneer Day", + "1972-07-25": "Constitution Day", + "1972-08-14": "Victory Day", + "1972-08-16": "Bennington Battle Day", + "1972-08-18": "Statehood Day", + "1972-09-04": "Labor Day", + "1972-10-09": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "1972-10-18": "Alaska Day", + "1972-10-23": "Veterans Day", + "1972-10-31": "Nevada Day", + "1972-11-01": "Liberty Day", + "1972-11-02": "All Souls' Day", + "1972-11-03": "Citizenship Day (Observed)", + "1972-11-04": "Citizenship Day", + "1972-11-19": "Discovery Day", + "1972-11-20": "Discovery Day (Observed)", + "1972-11-23": "Thanksgiving", + "1972-11-24": "Day After Thanksgiving; Family Day; Presidents' Day", + "1972-12-08": "Constitution Day; Lady of Camarin Day", + "1972-12-22": "Christmas Eve (Observed)", + "1972-12-24": "Christmas Eve; Washington's Birthday", + "1972-12-25": "Christmas Day", + "1972-12-26": "Christmas Second Day", + "1973-01-01": "New Year's Day", + "1973-01-06": "Epiphany; Three Kings Day", + "1973-01-19": "Confederate Memorial Day; Lee Jackson Day", + "1973-01-20": "Inauguration Day", + "1973-02-12": "Lincoln's Birthday", + "1973-02-19": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1973-03-02": "Texas Independence Day", + "1973-03-05": "Guam Discovery Day", + "1973-03-06": "Mardi Gras; Town Meeting Day", + "1973-03-17": "Evacuation Day", + "1973-03-19": "Evacuation Day (Observed)", + "1973-03-22": "Emancipation Day", + "1973-03-23": "Commonwealth Covenant Day (Observed)", + "1973-03-24": "Commonwealth Covenant Day", + "1973-03-26": "Prince Jonah Kuhio Kalanianaole Day; Seward's Day", + "1973-03-31": "Transfer Day", + "1973-04-16": "Patriots' Day", + "1973-04-19": "Holy Thursday", + "1973-04-20": "Good Friday", + "1973-04-21": "San Jacinto Day", + "1973-04-22": "Arbor Day", + "1973-04-23": "Confederate Memorial Day; Easter Monday", + "1973-05-08": "Truman Day", + "1973-05-28": "Memorial Day", + "1973-06-04": "Jefferson Davis Birthday", + "1973-06-11": "Kamehameha Day", + "1973-06-20": "West Virginia Day", + "1973-07-03": "Emancipation Day", + "1973-07-04": "Independence Day", + "1973-07-21": "Liberation Day (Guam)", + "1973-07-24": "Pioneer Day", + "1973-07-25": "Constitution Day", + "1973-08-13": "Victory Day", + "1973-08-16": "Bennington Battle Day", + "1973-08-17": "Statehood Day", + "1973-08-27": "Lyndon Baines Johnson Day", + "1973-09-03": "Labor Day", + "1973-10-08": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "1973-10-18": "Alaska Day", + "1973-10-22": "Veterans Day", + "1973-10-31": "Nevada Day", + "1973-11-01": "Liberty Day", + "1973-11-02": "All Souls' Day", + "1973-11-04": "Citizenship Day", + "1973-11-05": "Citizenship Day (Observed)", + "1973-11-19": "Discovery Day", + "1973-11-22": "Thanksgiving", + "1973-11-23": "Day After Thanksgiving; Family Day; Presidents' Day", + "1973-12-07": "Constitution Day (Observed)", + "1973-12-08": "Constitution Day; Lady of Camarin Day", + "1973-12-24": "Christmas Eve; Washington's Birthday", + "1973-12-25": "Christmas Day", + "1973-12-26": "Christmas Second Day", + "1974-01-01": "New Year's Day", + "1974-01-06": "Epiphany; Three Kings Day", + "1974-01-19": "Confederate Memorial Day; Lee Jackson Day", + "1974-02-12": "Lincoln's Birthday", + "1974-02-18": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1974-02-26": "Mardi Gras", + "1974-03-02": "Texas Independence Day", + "1974-03-04": "Guam Discovery Day", + "1974-03-05": "Town Meeting Day", + "1974-03-17": "Evacuation Day", + "1974-03-18": "Evacuation Day (Observed)", + "1974-03-22": "Emancipation Day", + "1974-03-24": "Commonwealth Covenant Day", + "1974-03-25": "Commonwealth Covenant Day (Observed); Seward's Day", + "1974-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1974-03-31": "Transfer Day", + "1974-04-11": "Holy Thursday", + "1974-04-12": "Good Friday", + "1974-04-15": "Easter Monday; Patriots' Day", + "1974-04-21": "San Jacinto Day", + "1974-04-22": "Arbor Day; Confederate Memorial Day", + "1974-05-08": "Truman Day", + "1974-05-27": "Memorial Day", + "1974-06-03": "Jefferson Davis Birthday", + "1974-06-11": "Kamehameha Day", + "1974-06-20": "West Virginia Day", + "1974-07-03": "Emancipation Day", + "1974-07-04": "Independence Day", + "1974-07-21": "Liberation Day (Guam)", + "1974-07-24": "Pioneer Day", + "1974-07-25": "Constitution Day", + "1974-08-12": "Victory Day", + "1974-08-16": "Bennington Battle Day; Statehood Day", + "1974-08-27": "Lyndon Baines Johnson Day", + "1974-09-02": "Labor Day", + "1974-10-14": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "1974-10-18": "Alaska Day", + "1974-10-28": "Veterans Day", + "1974-10-31": "Nevada Day", + "1974-11-01": "Liberty Day", + "1974-11-02": "All Souls' Day", + "1974-11-04": "Citizenship Day", + "1974-11-19": "Discovery Day", + "1974-11-28": "Thanksgiving", + "1974-11-29": "Day After Thanksgiving; Family Day; Presidents' Day", + "1974-12-08": "Constitution Day; Lady of Camarin Day", + "1974-12-09": "Constitution Day (Observed)", + "1974-12-24": "Christmas Eve; Washington's Birthday", + "1974-12-25": "Christmas Day", + "1974-12-26": "Christmas Second Day", + "1975-01-01": "New Year's Day", + "1975-01-06": "Epiphany; Three Kings Day", + "1975-01-19": "Confederate Memorial Day; Lee Jackson Day", + "1975-02-11": "Mardi Gras", + "1975-02-12": "Lincoln's Birthday", + "1975-02-17": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1975-03-02": "Texas Independence Day", + "1975-03-03": "Guam Discovery Day", + "1975-03-04": "Town Meeting Day", + "1975-03-17": "Evacuation Day", + "1975-03-22": "Emancipation Day", + "1975-03-24": "Commonwealth Covenant Day", + "1975-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1975-03-27": "Holy Thursday", + "1975-03-28": "Good Friday", + "1975-03-31": "Easter Monday; Seward's Day; Transfer Day", + "1975-04-21": "Patriots' Day; San Jacinto Day", + "1975-04-22": "Arbor Day", + "1975-04-28": "Confederate Memorial Day", + "1975-05-08": "Truman Day", + "1975-05-26": "Memorial Day", + "1975-06-02": "Jefferson Davis Birthday", + "1975-06-11": "Kamehameha Day", + "1975-06-20": "West Virginia Day", + "1975-07-03": "Emancipation Day", + "1975-07-04": "Independence Day", + "1975-07-21": "Liberation Day (Guam)", + "1975-07-24": "Pioneer Day", + "1975-07-25": "Constitution Day", + "1975-08-11": "Victory Day", + "1975-08-15": "Bennington Battle Day (Observed); Statehood Day", + "1975-08-16": "Bennington Battle Day", + "1975-08-27": "Lyndon Baines Johnson Day", + "1975-09-01": "Labor Day", + "1975-10-13": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "1975-10-17": "Alaska Day (Observed)", + "1975-10-18": "Alaska Day", + "1975-10-27": "Veterans Day", + "1975-10-31": "Nevada Day", + "1975-11-01": "Liberty Day", + "1975-11-02": "All Souls' Day", + "1975-11-04": "Citizenship Day", + "1975-11-19": "Discovery Day", + "1975-11-27": "Thanksgiving", + "1975-11-28": "Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day", + "1975-12-08": "Constitution Day; Lady of Camarin Day", + "1975-12-24": "Christmas Eve", + "1975-12-25": "Christmas Day", + "1975-12-26": "Christmas Second Day; Washington's Birthday", + "1976-01-01": "New Year's Day", + "1976-01-06": "Epiphany; Three Kings Day", + "1976-01-19": "Confederate Memorial Day; Lee Jackson Day", + "1976-02-12": "Lincoln's Birthday", + "1976-02-15": "Susan B. Anthony Day", + "1976-02-16": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1976-03-01": "Guam Discovery Day", + "1976-03-02": "Mardi Gras; Texas Independence Day; Town Meeting Day", + "1976-03-17": "Evacuation Day", + "1976-03-22": "Emancipation Day", + "1976-03-24": "Commonwealth Covenant Day", + "1976-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1976-03-29": "Seward's Day", + "1976-03-31": "Transfer Day", + "1976-04-15": "Holy Thursday", + "1976-04-16": "Good Friday", + "1976-04-19": "Easter Monday; Patriots' Day", + "1976-04-21": "San Jacinto Day", + "1976-04-22": "Arbor Day", + "1976-04-26": "Confederate Memorial Day", + "1976-05-07": "Truman Day (Observed)", + "1976-05-08": "Truman Day", + "1976-05-31": "Memorial Day", + "1976-06-07": "Jefferson Davis Birthday", + "1976-06-11": "Kamehameha Day", + "1976-06-20": "West Virginia Day", + "1976-06-21": "West Virginia Day (Observed)", + "1976-07-03": "Emancipation Day", + "1976-07-04": "Independence Day", + "1976-07-05": "Independence Day (Observed)", + "1976-07-21": "Liberation Day (Guam)", + "1976-07-23": "Pioneer Day (Observed)", + "1976-07-24": "Pioneer Day", + "1976-07-25": "Constitution Day", + "1976-07-26": "Constitution Day (Observed)", + "1976-08-09": "Victory Day", + "1976-08-16": "Bennington Battle Day", + "1976-08-20": "Statehood Day", + "1976-08-27": "Lyndon Baines Johnson Day", + "1976-09-06": "Labor Day", + "1976-10-11": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "1976-10-18": "Alaska Day", + "1976-10-25": "Veterans Day", + "1976-10-31": "Nevada Day", + "1976-11-01": "Liberty Day; Nevada Day (Observed)", + "1976-11-02": "All Souls' Day", + "1976-11-04": "Citizenship Day", + "1976-11-19": "Discovery Day", + "1976-11-25": "Thanksgiving", + "1976-11-26": "Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day", + "1976-12-08": "Constitution Day; Lady of Camarin Day", + "1976-12-23": "Christmas Eve (Observed)", + "1976-12-24": "Christmas Day (Observed); Christmas Eve; Washington's Birthday", + "1976-12-25": "Christmas Day", + "1976-12-26": "Christmas Second Day", + "1976-12-31": "New Year's Day (Observed)", + "1977-01-01": "New Year's Day", + "1977-01-06": "Epiphany; Three Kings Day", + "1977-01-19": "Confederate Memorial Day; Lee Jackson Day", + "1977-01-20": "Inauguration Day", + "1977-02-11": "Lincoln's Birthday (Observed)", + "1977-02-12": "Lincoln's Birthday", + "1977-02-15": "Susan B. Anthony Day", + "1977-02-21": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1977-02-22": "Mardi Gras", + "1977-03-01": "Town Meeting Day", + "1977-03-02": "Texas Independence Day", + "1977-03-07": "Guam Discovery Day", + "1977-03-17": "Evacuation Day", + "1977-03-22": "Emancipation Day", + "1977-03-24": "Commonwealth Covenant Day", + "1977-03-25": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "1977-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1977-03-28": "Seward's Day", + "1977-03-31": "Transfer Day", + "1977-04-07": "Holy Thursday", + "1977-04-08": "Good Friday", + "1977-04-11": "Easter Monday", + "1977-04-18": "Patriots' Day", + "1977-04-21": "San Jacinto Day", + "1977-04-22": "Arbor Day", + "1977-04-25": "Confederate Memorial Day", + "1977-05-08": "Truman Day", + "1977-05-09": "Truman Day (Observed)", + "1977-05-30": "Memorial Day", + "1977-06-06": "Jefferson Davis Birthday", + "1977-06-11": "Kamehameha Day", + "1977-06-20": "West Virginia Day", + "1977-07-03": "Emancipation Day", + "1977-07-04": "Independence Day", + "1977-07-21": "Liberation Day (Guam)", + "1977-07-24": "Pioneer Day", + "1977-07-25": "Constitution Day; Pioneer Day (Observed)", + "1977-08-08": "Victory Day", + "1977-08-16": "Bennington Battle Day", + "1977-08-19": "Statehood Day", + "1977-08-27": "Lyndon Baines Johnson Day", + "1977-09-05": "Labor Day", + "1977-10-10": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "1977-10-18": "Alaska Day", + "1977-10-24": "Veterans Day", + "1977-10-31": "Nevada Day", + "1977-11-01": "Liberty Day", + "1977-11-02": "All Souls' Day", + "1977-11-04": "Citizenship Day", + "1977-11-19": "Discovery Day", + "1977-11-24": "Thanksgiving", + "1977-11-25": "Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day", + "1977-12-08": "Constitution Day; Lady of Camarin Day", + "1977-12-23": "Christmas Eve (Observed)", + "1977-12-24": "Christmas Eve; Washington's Birthday", + "1977-12-25": "Christmas Day", + "1977-12-26": "Christmas Day (Observed); Christmas Second Day", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day (Observed)", + "1978-01-06": "Epiphany; Three Kings Day", + "1978-01-19": "Confederate Memorial Day; Lee Jackson Day", + "1978-02-07": "Mardi Gras", + "1978-02-12": "Lincoln's Birthday", + "1978-02-13": "Lincoln's Birthday (Observed)", + "1978-02-15": "Susan B. Anthony Day", + "1978-02-20": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1978-03-02": "Texas Independence Day", + "1978-03-06": "Casimir Pulaski Day; Guam Discovery Day", + "1978-03-07": "Town Meeting Day", + "1978-03-17": "Evacuation Day", + "1978-03-22": "Emancipation Day", + "1978-03-23": "Holy Thursday", + "1978-03-24": "Commonwealth Covenant Day; Good Friday", + "1978-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1978-03-27": "Easter Monday; Prince Jonah Kuhio Kalanianaole Day (Observed); Seward's Day", + "1978-03-31": "Transfer Day", + "1978-04-17": "Patriots' Day", + "1978-04-21": "San Jacinto Day", + "1978-04-22": "Arbor Day", + "1978-04-24": "Confederate Memorial Day", + "1978-05-08": "Truman Day", + "1978-05-29": "Memorial Day", + "1978-06-05": "Jefferson Davis Birthday", + "1978-06-11": "Kamehameha Day", + "1978-06-20": "West Virginia Day", + "1978-07-03": "Emancipation Day", + "1978-07-04": "Independence Day", + "1978-07-21": "Liberation Day (Guam)", + "1978-07-24": "Pioneer Day", + "1978-07-25": "Constitution Day", + "1978-08-14": "Victory Day", + "1978-08-16": "Bennington Battle Day", + "1978-08-18": "Statehood Day", + "1978-08-27": "Lyndon Baines Johnson Day", + "1978-09-04": "Labor Day", + "1978-10-09": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "1978-10-18": "Alaska Day", + "1978-10-31": "Nevada Day", + "1978-11-01": "Liberty Day", + "1978-11-02": "All Souls' Day", + "1978-11-03": "Citizenship Day (Observed)", + "1978-11-04": "Citizenship Day", + "1978-11-10": "Veterans Day (Observed)", + "1978-11-11": "Veterans Day", + "1978-11-19": "Discovery Day", + "1978-11-20": "Discovery Day (Observed)", + "1978-11-23": "Thanksgiving", + "1978-11-24": "Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day", + "1978-12-08": "Constitution Day; Lady of Camarin Day", + "1978-12-22": "Christmas Eve (Observed)", + "1978-12-24": "Christmas Eve; Washington's Birthday", + "1978-12-25": "Christmas Day", + "1978-12-26": "Christmas Second Day", + "1979-01-01": "New Year's Day", + "1979-01-06": "Epiphany; Three Kings Day", + "1979-01-19": "Confederate Memorial Day; Lee Jackson Day", + "1979-02-12": "Lincoln's Birthday", + "1979-02-15": "Susan B. Anthony Day", + "1979-02-19": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1979-02-27": "Mardi Gras", + "1979-03-02": "Texas Independence Day", + "1979-03-05": "Casimir Pulaski Day; Guam Discovery Day", + "1979-03-06": "Town Meeting Day", + "1979-03-17": "Evacuation Day", + "1979-03-19": "Evacuation Day (Observed)", + "1979-03-22": "Emancipation Day", + "1979-03-23": "Commonwealth Covenant Day (Observed)", + "1979-03-24": "Commonwealth Covenant Day", + "1979-03-26": "Prince Jonah Kuhio Kalanianaole Day; Seward's Day", + "1979-03-31": "Transfer Day", + "1979-04-12": "Holy Thursday", + "1979-04-13": "Good Friday", + "1979-04-16": "Easter Monday; Patriots' Day", + "1979-04-21": "San Jacinto Day", + "1979-04-22": "Arbor Day", + "1979-04-23": "Confederate Memorial Day", + "1979-05-08": "Truman Day", + "1979-05-28": "Memorial Day", + "1979-06-04": "Jefferson Davis Birthday", + "1979-06-11": "Kamehameha Day", + "1979-06-20": "West Virginia Day", + "1979-07-03": "Emancipation Day", + "1979-07-04": "Independence Day", + "1979-07-21": "Liberation Day (Guam)", + "1979-07-24": "Pioneer Day", + "1979-07-25": "Constitution Day", + "1979-08-13": "Victory Day", + "1979-08-16": "Bennington Battle Day", + "1979-08-17": "Statehood Day", + "1979-08-27": "Lyndon Baines Johnson Day", + "1979-09-03": "Labor Day", + "1979-10-08": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "1979-10-18": "Alaska Day", + "1979-10-31": "Nevada Day", + "1979-11-01": "Liberty Day", + "1979-11-02": "All Souls' Day", + "1979-11-04": "Citizenship Day", + "1979-11-05": "Citizenship Day (Observed)", + "1979-11-11": "Veterans Day", + "1979-11-12": "Veterans Day (Observed)", + "1979-11-19": "Discovery Day", + "1979-11-22": "Thanksgiving", + "1979-11-23": "Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day", + "1979-12-07": "Constitution Day (Observed)", + "1979-12-08": "Constitution Day; Lady of Camarin Day", + "1979-12-24": "Christmas Eve; Washington's Birthday", + "1979-12-25": "Christmas Day", + "1979-12-26": "Christmas Second Day", + "1980-01-01": "New Year's Day", + "1980-01-06": "Epiphany; Three Kings Day", + "1980-01-19": "Confederate Memorial Day; Lee Jackson Day", + "1980-02-12": "Lincoln's Birthday", + "1980-02-15": "Susan B. Anthony Day", + "1980-02-18": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1980-02-19": "Mardi Gras", + "1980-03-02": "Texas Independence Day", + "1980-03-03": "Casimir Pulaski Day; Guam Discovery Day", + "1980-03-04": "Town Meeting Day", + "1980-03-17": "Evacuation Day", + "1980-03-22": "Emancipation Day", + "1980-03-24": "Commonwealth Covenant Day", + "1980-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1980-03-31": "Seward's Day; Transfer Day", + "1980-04-03": "Holy Thursday", + "1980-04-04": "Good Friday", + "1980-04-07": "Easter Monday", + "1980-04-21": "Patriots' Day; San Jacinto Day", + "1980-04-22": "Arbor Day", + "1980-04-28": "Confederate Memorial Day", + "1980-05-08": "Truman Day", + "1980-05-26": "Memorial Day", + "1980-06-02": "Jefferson Davis Birthday", + "1980-06-11": "Kamehameha Day", + "1980-06-19": "Emancipation Day In Texas", + "1980-06-20": "West Virginia Day", + "1980-07-03": "Emancipation Day", + "1980-07-04": "Independence Day", + "1980-07-21": "Liberation Day (Guam)", + "1980-07-24": "Pioneer Day", + "1980-07-25": "Constitution Day", + "1980-08-11": "Victory Day", + "1980-08-15": "Bennington Battle Day (Observed); Statehood Day", + "1980-08-16": "Bennington Battle Day", + "1980-08-27": "Lyndon Baines Johnson Day", + "1980-09-01": "Labor Day", + "1980-10-13": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "1980-10-17": "Alaska Day (Observed)", + "1980-10-18": "Alaska Day", + "1980-10-31": "Nevada Day", + "1980-11-01": "Liberty Day", + "1980-11-02": "All Souls' Day", + "1980-11-04": "Citizenship Day", + "1980-11-11": "Veterans Day", + "1980-11-19": "Discovery Day", + "1980-11-27": "Thanksgiving", + "1980-11-28": "Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day", + "1980-12-08": "Constitution Day; Lady of Camarin Day", + "1980-12-24": "Christmas Eve", + "1980-12-25": "Christmas Day", + "1980-12-26": "Christmas Second Day; Washington's Birthday", + "1981-01-01": "New Year's Day", + "1981-01-06": "Epiphany; Three Kings Day", + "1981-01-19": "Confederate Memorial Day; Lee Jackson Day", + "1981-01-20": "Inauguration Day", + "1981-02-12": "Lincoln's Birthday", + "1981-02-15": "Susan B. Anthony Day", + "1981-02-16": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1981-03-02": "Casimir Pulaski Day; Guam Discovery Day; Texas Independence Day", + "1981-03-03": "Mardi Gras; Town Meeting Day", + "1981-03-17": "Evacuation Day", + "1981-03-22": "Emancipation Day", + "1981-03-23": "Emancipation Day (Observed)", + "1981-03-24": "Commonwealth Covenant Day", + "1981-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1981-03-30": "Seward's Day", + "1981-03-31": "Transfer Day", + "1981-04-16": "Holy Thursday", + "1981-04-17": "Good Friday", + "1981-04-20": "Easter Monday; Patriots' Day", + "1981-04-21": "San Jacinto Day", + "1981-04-22": "Arbor Day", + "1981-04-27": "Confederate Memorial Day", + "1981-05-08": "Truman Day", + "1981-05-25": "Memorial Day", + "1981-06-01": "Jefferson Davis Birthday", + "1981-06-11": "Kamehameha Day", + "1981-06-19": "Emancipation Day In Texas; West Virginia Day (Observed)", + "1981-06-20": "West Virginia Day", + "1981-07-03": "Emancipation Day; Independence Day (Observed)", + "1981-07-04": "Independence Day", + "1981-07-21": "Liberation Day (Guam)", + "1981-07-24": "Pioneer Day", + "1981-07-25": "Constitution Day", + "1981-08-10": "Victory Day", + "1981-08-16": "Bennington Battle Day", + "1981-08-17": "Bennington Battle Day (Observed)", + "1981-08-21": "Statehood Day", + "1981-08-27": "Lyndon Baines Johnson Day", + "1981-09-07": "Labor Day", + "1981-10-12": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "1981-10-18": "Alaska Day", + "1981-10-19": "Alaska Day (Observed)", + "1981-10-30": "Nevada Day (Observed)", + "1981-10-31": "Nevada Day", + "1981-11-01": "Liberty Day", + "1981-11-02": "All Souls' Day", + "1981-11-04": "Citizenship Day", + "1981-11-11": "Veterans Day", + "1981-11-19": "Discovery Day", + "1981-11-26": "Thanksgiving", + "1981-11-27": "Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day", + "1981-12-08": "Constitution Day; Lady of Camarin Day", + "1981-12-24": "Christmas Eve; Washington's Birthday", + "1981-12-25": "Christmas Day", + "1981-12-26": "Christmas Second Day; Day After Christmas", + "1982-01-01": "New Year's Day", + "1982-01-06": "Epiphany; Three Kings Day", + "1982-01-19": "Confederate Memorial Day; Lee Jackson Day", + "1982-02-12": "Lincoln's Birthday", + "1982-02-15": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Susan B. Anthony Day; Washington's Birthday", + "1982-02-23": "Mardi Gras", + "1982-03-01": "Casimir Pulaski Day; Guam Discovery Day", + "1982-03-02": "Texas Independence Day; Town Meeting Day", + "1982-03-17": "Evacuation Day", + "1982-03-22": "Emancipation Day", + "1982-03-24": "Commonwealth Covenant Day", + "1982-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1982-03-29": "Seward's Day", + "1982-03-31": "Transfer Day", + "1982-04-08": "Holy Thursday", + "1982-04-09": "Good Friday", + "1982-04-12": "Easter Monday", + "1982-04-19": "Patriots' Day", + "1982-04-21": "San Jacinto Day", + "1982-04-22": "Arbor Day", + "1982-04-26": "Confederate Memorial Day", + "1982-05-07": "Truman Day (Observed)", + "1982-05-08": "Truman Day", + "1982-05-31": "Memorial Day", + "1982-06-07": "Jefferson Davis Birthday", + "1982-06-11": "Kamehameha Day", + "1982-06-19": "Emancipation Day In Texas", + "1982-06-20": "West Virginia Day", + "1982-06-21": "West Virginia Day (Observed)", + "1982-07-03": "Emancipation Day", + "1982-07-04": "Independence Day", + "1982-07-05": "Independence Day (Observed)", + "1982-07-21": "Liberation Day (Guam)", + "1982-07-23": "Pioneer Day (Observed)", + "1982-07-24": "Pioneer Day", + "1982-07-25": "Constitution Day", + "1982-07-26": "Constitution Day (Observed)", + "1982-08-09": "Victory Day", + "1982-08-16": "Bennington Battle Day", + "1982-08-20": "Statehood Day", + "1982-08-27": "Lyndon Baines Johnson Day", + "1982-09-06": "Labor Day", + "1982-10-11": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "1982-10-18": "Alaska Day", + "1982-10-31": "Nevada Day", + "1982-11-01": "Liberty Day; Nevada Day (Observed)", + "1982-11-02": "All Souls' Day", + "1982-11-04": "Citizenship Day", + "1982-11-11": "Veterans Day", + "1982-11-19": "Discovery Day", + "1982-11-25": "Thanksgiving", + "1982-11-26": "Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day", + "1982-12-08": "Constitution Day; Lady of Camarin Day", + "1982-12-23": "Christmas Eve (Observed)", + "1982-12-24": "Christmas Day (Observed); Christmas Eve; Washington's Birthday", + "1982-12-25": "Christmas Day", + "1982-12-26": "Christmas Second Day; Day After Christmas", + "1982-12-31": "New Year's Day (Observed)", + "1983-01-01": "New Year's Day", + "1983-01-06": "Epiphany; Three Kings Day", + "1983-01-17": "Lee Jackson Day", + "1983-01-19": "Confederate Memorial Day", + "1983-02-11": "Lincoln's Birthday (Observed)", + "1983-02-12": "Lincoln's Birthday", + "1983-02-15": "Mardi Gras; Susan B. Anthony Day", + "1983-02-21": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1983-03-01": "Town Meeting Day", + "1983-03-02": "Texas Independence Day", + "1983-03-07": "Casimir Pulaski Day; Guam Discovery Day", + "1983-03-17": "Evacuation Day", + "1983-03-22": "Emancipation Day", + "1983-03-24": "Commonwealth Covenant Day", + "1983-03-25": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "1983-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1983-03-28": "Seward's Day", + "1983-03-31": "Holy Thursday; Transfer Day", + "1983-04-01": "Good Friday", + "1983-04-04": "Easter Monday", + "1983-04-18": "Patriots' Day", + "1983-04-21": "San Jacinto Day", + "1983-04-22": "Arbor Day", + "1983-04-25": "Confederate Memorial Day", + "1983-05-08": "Truman Day", + "1983-05-09": "Truman Day (Observed)", + "1983-05-30": "Memorial Day", + "1983-06-06": "Jefferson Davis Birthday", + "1983-06-11": "Kamehameha Day", + "1983-06-19": "Emancipation Day In Texas", + "1983-06-20": "West Virginia Day", + "1983-07-03": "Emancipation Day", + "1983-07-04": "Independence Day", + "1983-07-21": "Liberation Day (Guam)", + "1983-07-24": "Pioneer Day", + "1983-07-25": "Constitution Day; Pioneer Day (Observed)", + "1983-08-08": "Victory Day", + "1983-08-16": "Bennington Battle Day", + "1983-08-19": "Statehood Day", + "1983-08-27": "Lyndon Baines Johnson Day", + "1983-09-05": "Labor Day", + "1983-10-10": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "1983-10-18": "Alaska Day", + "1983-10-31": "Nevada Day", + "1983-11-01": "Liberty Day", + "1983-11-02": "All Souls' Day", + "1983-11-04": "Citizenship Day", + "1983-11-11": "Veterans Day", + "1983-11-19": "Discovery Day", + "1983-11-24": "Thanksgiving", + "1983-11-25": "Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day", + "1983-12-08": "Constitution Day; Lady of Camarin Day", + "1983-12-23": "Christmas Eve (Observed)", + "1983-12-24": "Christmas Eve; Washington's Birthday", + "1983-12-25": "Christmas Day", + "1983-12-26": "Christmas Day (Observed); Christmas Second Day; Day After Christmas", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (Observed)", + "1984-01-06": "Epiphany; Three Kings Day", + "1984-01-16": "Lee Jackson Day", + "1984-01-19": "Confederate Memorial Day", + "1984-02-12": "Lincoln's Birthday", + "1984-02-13": "Lincoln's Birthday (Observed)", + "1984-02-15": "Susan B. Anthony Day", + "1984-02-20": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1984-03-02": "Texas Independence Day", + "1984-03-05": "Casimir Pulaski Day; Guam Discovery Day", + "1984-03-06": "Mardi Gras; Town Meeting Day", + "1984-03-17": "Evacuation Day", + "1984-03-19": "Evacuation Day (Observed)", + "1984-03-22": "Emancipation Day", + "1984-03-23": "Commonwealth Covenant Day (Observed)", + "1984-03-24": "Commonwealth Covenant Day", + "1984-03-26": "Prince Jonah Kuhio Kalanianaole Day; Seward's Day", + "1984-03-31": "Transfer Day", + "1984-04-16": "Patriots' Day", + "1984-04-19": "Holy Thursday", + "1984-04-20": "Good Friday", + "1984-04-21": "San Jacinto Day", + "1984-04-22": "Arbor Day", + "1984-04-23": "Confederate Memorial Day; Easter Monday", + "1984-05-08": "Truman Day", + "1984-05-28": "Memorial Day", + "1984-06-04": "Jefferson Davis Birthday", + "1984-06-11": "Kamehameha Day", + "1984-06-19": "Emancipation Day In Texas", + "1984-06-20": "West Virginia Day", + "1984-07-03": "Emancipation Day", + "1984-07-04": "Independence Day", + "1984-07-21": "Liberation Day (Guam)", + "1984-07-24": "Pioneer Day", + "1984-07-25": "Constitution Day", + "1984-08-13": "Victory Day", + "1984-08-16": "Bennington Battle Day", + "1984-08-17": "Statehood Day", + "1984-08-27": "Lyndon Baines Johnson Day", + "1984-09-03": "Labor Day", + "1984-10-08": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "1984-10-18": "Alaska Day", + "1984-10-31": "Nevada Day", + "1984-11-01": "Liberty Day", + "1984-11-02": "All Souls' Day", + "1984-11-04": "Citizenship Day", + "1984-11-05": "Citizenship Day (Observed)", + "1984-11-11": "Veterans Day", + "1984-11-12": "Veterans Day (Observed)", + "1984-11-19": "Discovery Day", + "1984-11-22": "Thanksgiving", + "1984-11-23": "Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day", + "1984-12-07": "Constitution Day (Observed)", + "1984-12-08": "Constitution Day; Lady of Camarin Day", + "1984-12-24": "Christmas Eve; Washington's Birthday", + "1984-12-25": "Christmas Day", + "1984-12-26": "Christmas Second Day; Day After Christmas", + "1985-01-01": "New Year's Day", + "1985-01-06": "Epiphany; Three Kings Day", + "1985-01-19": "Confederate Memorial Day", + "1985-01-20": "Inauguration Day", + "1985-01-21": "Inauguration Day (Observed); Lee Jackson Day", + "1985-02-12": "Lincoln's Birthday", + "1985-02-15": "Susan B. Anthony Day", + "1985-02-18": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1985-02-19": "Mardi Gras", + "1985-03-02": "Texas Independence Day", + "1985-03-04": "Casimir Pulaski Day; Guam Discovery Day", + "1985-03-05": "Town Meeting Day", + "1985-03-17": "Evacuation Day", + "1985-03-18": "Evacuation Day (Observed)", + "1985-03-22": "Emancipation Day", + "1985-03-24": "Commonwealth Covenant Day", + "1985-03-25": "Commonwealth Covenant Day (Observed); Seward's Day", + "1985-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1985-03-31": "Transfer Day", + "1985-04-04": "Holy Thursday", + "1985-04-05": "Good Friday", + "1985-04-08": "Easter Monday", + "1985-04-15": "Patriots' Day", + "1985-04-21": "San Jacinto Day", + "1985-04-22": "Arbor Day; Confederate Memorial Day", + "1985-05-08": "Truman Day", + "1985-05-27": "Memorial Day", + "1985-06-03": "Jefferson Davis Birthday", + "1985-06-11": "Kamehameha Day", + "1985-06-19": "Emancipation Day In Texas", + "1985-06-20": "West Virginia Day", + "1985-07-03": "Emancipation Day", + "1985-07-04": "Independence Day", + "1985-07-21": "Liberation Day (Guam)", + "1985-07-24": "Pioneer Day", + "1985-07-25": "Constitution Day", + "1985-08-12": "Victory Day", + "1985-08-16": "Bennington Battle Day; Statehood Day", + "1985-08-27": "Lyndon Baines Johnson Day", + "1985-09-02": "Labor Day", + "1985-10-14": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "1985-10-18": "Alaska Day", + "1985-10-31": "Nevada Day", + "1985-11-01": "Liberty Day", + "1985-11-02": "All Souls' Day", + "1985-11-04": "Citizenship Day", + "1985-11-11": "Veterans Day", + "1985-11-19": "Discovery Day", + "1985-11-28": "Thanksgiving", + "1985-11-29": "Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day", + "1985-12-08": "Constitution Day; Lady of Camarin Day", + "1985-12-09": "Constitution Day (Observed)", + "1985-12-24": "Christmas Eve; Washington's Birthday", + "1985-12-25": "Christmas Day", + "1985-12-26": "Christmas Second Day; Day After Christmas", + "1986-01-01": "New Year's Day", + "1986-01-06": "Epiphany; Three Kings Day", + "1986-01-19": "Confederate Memorial Day", + "1986-01-20": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Lee Jackson Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday; Robert E. Lee's Birthday", + "1986-02-11": "Mardi Gras", + "1986-02-12": "Lincoln's Birthday", + "1986-02-15": "Susan B. Anthony Day", + "1986-02-17": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1986-03-02": "Texas Independence Day", + "1986-03-03": "Casimir Pulaski Day; Guam Discovery Day", + "1986-03-04": "Town Meeting Day", + "1986-03-17": "Evacuation Day", + "1986-03-22": "Emancipation Day", + "1986-03-24": "Commonwealth Covenant Day", + "1986-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1986-03-27": "Holy Thursday", + "1986-03-28": "Good Friday", + "1986-03-31": "Easter Monday; Seward's Day; Transfer Day", + "1986-04-21": "Patriots' Day; San Jacinto Day", + "1986-04-22": "Arbor Day", + "1986-04-28": "Confederate Memorial Day", + "1986-05-08": "Truman Day", + "1986-05-26": "Memorial Day", + "1986-06-02": "Jefferson Davis Birthday", + "1986-06-11": "Kamehameha Day", + "1986-06-19": "Emancipation Day In Texas", + "1986-06-20": "West Virginia Day", + "1986-07-03": "Emancipation Day", + "1986-07-04": "Independence Day", + "1986-07-21": "Liberation Day (Guam)", + "1986-07-24": "Pioneer Day", + "1986-07-25": "Constitution Day", + "1986-08-11": "Victory Day", + "1986-08-15": "Bennington Battle Day (Observed); Statehood Day", + "1986-08-16": "Bennington Battle Day", + "1986-08-27": "Lyndon Baines Johnson Day", + "1986-09-01": "Labor Day", + "1986-10-13": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "1986-10-17": "Alaska Day (Observed)", + "1986-10-18": "Alaska Day", + "1986-10-31": "Nevada Day", + "1986-11-01": "Liberty Day", + "1986-11-02": "All Souls' Day", + "1986-11-04": "Citizenship Day", + "1986-11-11": "Veterans Day", + "1986-11-19": "Discovery Day", + "1986-11-27": "Thanksgiving", + "1986-11-28": "Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day; Robert E. Lee's Birthday", + "1986-12-08": "Constitution Day; Lady of Camarin Day", + "1986-12-24": "Christmas Eve", + "1986-12-25": "Christmas Day", + "1986-12-26": "Christmas Second Day; Day After Christmas; Washington's Birthday", + "1987-01-01": "New Year's Day", + "1987-01-06": "Epiphany; Three Kings Day", + "1987-01-19": "Confederate Memorial Day; Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Lee Jackson Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday; Robert E. Lee's Birthday", + "1987-02-12": "Lincoln's Birthday", + "1987-02-15": "Susan B. Anthony Day", + "1987-02-16": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1987-03-02": "Casimir Pulaski Day; Guam Discovery Day; Texas Independence Day", + "1987-03-03": "Mardi Gras; Town Meeting Day", + "1987-03-17": "Evacuation Day", + "1987-03-22": "Emancipation Day", + "1987-03-23": "Emancipation Day (Observed)", + "1987-03-24": "Commonwealth Covenant Day", + "1987-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1987-03-30": "Seward's Day", + "1987-03-31": "Transfer Day", + "1987-04-16": "Holy Thursday", + "1987-04-17": "Good Friday", + "1987-04-20": "Easter Monday; Patriots' Day", + "1987-04-21": "San Jacinto Day", + "1987-04-22": "Arbor Day", + "1987-04-27": "Confederate Memorial Day", + "1987-05-08": "Truman Day", + "1987-05-25": "Memorial Day", + "1987-06-01": "Jefferson Davis Birthday", + "1987-06-11": "Kamehameha Day", + "1987-06-19": "Emancipation Day In Texas; West Virginia Day (Observed)", + "1987-06-20": "West Virginia Day", + "1987-07-03": "Emancipation Day; Independence Day (Observed)", + "1987-07-04": "Independence Day", + "1987-07-21": "Liberation Day (Guam)", + "1987-07-24": "Pioneer Day", + "1987-07-25": "Constitution Day", + "1987-08-10": "Victory Day", + "1987-08-16": "Bennington Battle Day", + "1987-08-17": "Bennington Battle Day (Observed)", + "1987-08-21": "Statehood Day", + "1987-08-27": "Lyndon Baines Johnson Day", + "1987-09-07": "Labor Day", + "1987-10-12": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "1987-10-18": "Alaska Day", + "1987-10-19": "Alaska Day (Observed)", + "1987-10-30": "Nevada Day (Observed)", + "1987-10-31": "Nevada Day", + "1987-11-01": "Liberty Day", + "1987-11-02": "All Souls' Day", + "1987-11-04": "Citizenship Day", + "1987-11-11": "Veterans Day", + "1987-11-19": "Discovery Day", + "1987-11-26": "Thanksgiving", + "1987-11-27": "Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day; Robert E. Lee's Birthday", + "1987-12-08": "Constitution Day; Lady of Camarin Day", + "1987-12-24": "Christmas Eve; Washington's Birthday", + "1987-12-25": "Christmas Day", + "1987-12-26": "Christmas Second Day; Day After Christmas", + "1988-01-01": "New Year's Day", + "1988-01-06": "Epiphany; Three Kings Day", + "1988-01-18": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Lee Jackson Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday; Robert E. Lee's Birthday", + "1988-01-19": "Confederate Memorial Day", + "1988-02-12": "Lincoln's Birthday", + "1988-02-15": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Susan B. Anthony Day; Washington's Birthday", + "1988-02-16": "Mardi Gras", + "1988-03-01": "Town Meeting Day", + "1988-03-02": "Texas Independence Day", + "1988-03-07": "Casimir Pulaski Day; Guam Discovery Day", + "1988-03-17": "Evacuation Day", + "1988-03-22": "Emancipation Day", + "1988-03-24": "Commonwealth Covenant Day", + "1988-03-25": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "1988-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1988-03-28": "Seward's Day", + "1988-03-31": "Holy Thursday; Transfer Day", + "1988-04-01": "Good Friday", + "1988-04-04": "Easter Monday", + "1988-04-18": "Patriots' Day", + "1988-04-21": "San Jacinto Day", + "1988-04-22": "Arbor Day", + "1988-04-25": "Confederate Memorial Day", + "1988-05-08": "Truman Day", + "1988-05-09": "Truman Day (Observed)", + "1988-05-30": "Memorial Day", + "1988-06-06": "Jefferson Davis Birthday", + "1988-06-11": "Kamehameha Day", + "1988-06-19": "Emancipation Day In Texas", + "1988-06-20": "West Virginia Day", + "1988-07-03": "Emancipation Day", + "1988-07-04": "Independence Day", + "1988-07-21": "Liberation Day (Guam)", + "1988-07-24": "Pioneer Day", + "1988-07-25": "Constitution Day; Pioneer Day (Observed)", + "1988-08-08": "Victory Day", + "1988-08-16": "Bennington Battle Day", + "1988-08-19": "Statehood Day", + "1988-08-27": "Lyndon Baines Johnson Day", + "1988-09-05": "Labor Day", + "1988-10-10": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "1988-10-18": "Alaska Day", + "1988-10-31": "Nevada Day", + "1988-11-01": "Liberty Day", + "1988-11-02": "All Souls' Day", + "1988-11-04": "Citizenship Day", + "1988-11-11": "Veterans Day", + "1988-11-19": "Discovery Day", + "1988-11-24": "Thanksgiving", + "1988-11-25": "Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day; Robert E. Lee's Birthday", + "1988-12-08": "Constitution Day; Lady of Camarin Day", + "1988-12-23": "Christmas Eve (Observed)", + "1988-12-24": "Christmas Eve; Washington's Birthday", + "1988-12-25": "Christmas Day", + "1988-12-26": "Christmas Day (Observed); Christmas Second Day; Day After Christmas", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (Observed)", + "1989-01-06": "Epiphany; Three Kings Day", + "1989-01-16": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Lee Jackson Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday; Robert E. Lee's Birthday", + "1989-01-19": "Confederate Memorial Day", + "1989-01-20": "Inauguration Day", + "1989-02-07": "Mardi Gras", + "1989-02-12": "Lincoln's Birthday", + "1989-02-13": "Lincoln's Birthday (Observed)", + "1989-02-15": "Susan B. Anthony Day", + "1989-02-20": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1989-03-02": "Texas Independence Day", + "1989-03-06": "Casimir Pulaski Day; Guam Discovery Day", + "1989-03-07": "Town Meeting Day", + "1989-03-17": "Evacuation Day", + "1989-03-22": "Emancipation Day", + "1989-03-23": "Holy Thursday", + "1989-03-24": "Commonwealth Covenant Day; Good Friday", + "1989-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1989-03-27": "Easter Monday; Prince Jonah Kuhio Kalanianaole Day (Observed); Seward's Day", + "1989-03-31": "Transfer Day", + "1989-04-17": "Patriots' Day", + "1989-04-21": "San Jacinto Day", + "1989-04-24": "Confederate Memorial Day", + "1989-04-28": "Arbor Day", + "1989-05-08": "Truman Day", + "1989-05-29": "Memorial Day", + "1989-06-05": "Jefferson Davis Birthday", + "1989-06-11": "Kamehameha Day", + "1989-06-19": "Emancipation Day In Texas", + "1989-06-20": "West Virginia Day", + "1989-07-03": "Emancipation Day", + "1989-07-04": "Independence Day", + "1989-07-21": "Liberation Day (Guam)", + "1989-07-24": "Pioneer Day", + "1989-07-25": "Constitution Day", + "1989-08-14": "Victory Day", + "1989-08-16": "Bennington Battle Day", + "1989-08-18": "Statehood Day", + "1989-08-27": "Lyndon Baines Johnson Day", + "1989-09-04": "Labor Day", + "1989-10-09": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "1989-10-18": "Alaska Day", + "1989-10-31": "Nevada Day", + "1989-11-01": "Liberty Day", + "1989-11-02": "All Souls' Day", + "1989-11-03": "Citizenship Day (Observed)", + "1989-11-04": "Citizenship Day", + "1989-11-10": "Veterans Day (Observed)", + "1989-11-11": "Veterans Day", + "1989-11-19": "Discovery Day", + "1989-11-20": "Discovery Day (Observed)", + "1989-11-23": "Thanksgiving", + "1989-11-24": "Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day; Robert E. Lee's Birthday", + "1989-12-08": "Constitution Day; Lady of Camarin Day", + "1989-12-22": "Christmas Eve (Observed)", + "1989-12-24": "Christmas Eve; Washington's Birthday", + "1989-12-25": "Christmas Day", + "1989-12-26": "Christmas Second Day; Day After Christmas", + "1990-01-01": "New Year's Day", + "1990-01-06": "Epiphany; Three Kings Day", + "1990-01-15": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Lee Jackson Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday; Robert E. Lee's Birthday", + "1990-01-19": "Confederate Memorial Day", + "1990-02-12": "Lincoln's Birthday", + "1990-02-15": "Susan B. Anthony Day", + "1990-02-19": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1990-02-27": "Mardi Gras", + "1990-03-02": "Texas Independence Day", + "1990-03-05": "Casimir Pulaski Day; Guam Discovery Day", + "1990-03-06": "Town Meeting Day", + "1990-03-17": "Evacuation Day", + "1990-03-19": "Evacuation Day (Observed)", + "1990-03-22": "Emancipation Day", + "1990-03-23": "Commonwealth Covenant Day (Observed)", + "1990-03-24": "Commonwealth Covenant Day", + "1990-03-26": "Prince Jonah Kuhio Kalanianaole Day; Seward's Day", + "1990-03-31": "Transfer Day", + "1990-04-12": "Holy Thursday", + "1990-04-13": "Good Friday", + "1990-04-16": "Easter Monday; Patriots' Day", + "1990-04-21": "San Jacinto Day", + "1990-04-23": "Confederate Memorial Day", + "1990-04-27": "Arbor Day", + "1990-05-08": "Truman Day", + "1990-05-28": "Memorial Day", + "1990-06-04": "Jefferson Davis Birthday", + "1990-06-11": "Kamehameha Day", + "1990-06-19": "Emancipation Day In Texas", + "1990-06-20": "West Virginia Day", + "1990-07-03": "Emancipation Day", + "1990-07-04": "Independence Day", + "1990-07-21": "Liberation Day (Guam)", + "1990-07-24": "Pioneer Day", + "1990-07-25": "Constitution Day", + "1990-08-13": "Victory Day", + "1990-08-16": "Bennington Battle Day", + "1990-08-17": "Statehood Day", + "1990-08-27": "Lyndon Baines Johnson Day", + "1990-09-03": "Labor Day", + "1990-10-08": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "1990-10-18": "Alaska Day", + "1990-10-31": "Nevada Day", + "1990-11-01": "Liberty Day", + "1990-11-02": "All Souls' Day", + "1990-11-04": "Citizenship Day", + "1990-11-05": "Citizenship Day (Observed)", + "1990-11-11": "Veterans Day", + "1990-11-12": "Veterans Day (Observed)", + "1990-11-19": "Discovery Day", + "1990-11-22": "Thanksgiving", + "1990-11-23": "Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day; Robert E. Lee's Birthday", + "1990-12-07": "Constitution Day (Observed)", + "1990-12-08": "Constitution Day; Lady of Camarin Day", + "1990-12-24": "Christmas Eve; Washington's Birthday", + "1990-12-25": "Christmas Day", + "1990-12-26": "Christmas Second Day; Day After Christmas", + "1991-01-01": "New Year's Day", + "1991-01-06": "Epiphany; Three Kings Day", + "1991-01-19": "Confederate Memorial Day", + "1991-01-21": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Lee Jackson Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday; Robert E. Lee's Birthday", + "1991-02-12": "Lincoln's Birthday; Mardi Gras", + "1991-02-15": "Susan B. Anthony Day", + "1991-02-18": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1991-03-02": "Texas Independence Day", + "1991-03-04": "Casimir Pulaski Day; Guam Discovery Day", + "1991-03-05": "Town Meeting Day", + "1991-03-17": "Evacuation Day", + "1991-03-18": "Evacuation Day (Observed)", + "1991-03-22": "Emancipation Day", + "1991-03-24": "Commonwealth Covenant Day", + "1991-03-25": "Commonwealth Covenant Day (Observed); Seward's Day", + "1991-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1991-03-28": "Holy Thursday", + "1991-03-29": "Good Friday", + "1991-03-31": "Transfer Day", + "1991-04-01": "Easter Monday", + "1991-04-15": "Patriots' Day", + "1991-04-21": "San Jacinto Day", + "1991-04-22": "Confederate Memorial Day", + "1991-04-26": "Arbor Day", + "1991-05-08": "Truman Day", + "1991-05-27": "Memorial Day", + "1991-06-03": "Jefferson Davis Birthday", + "1991-06-11": "Kamehameha Day", + "1991-06-19": "Emancipation Day In Texas", + "1991-06-20": "West Virginia Day", + "1991-07-03": "Emancipation Day", + "1991-07-04": "Independence Day", + "1991-07-21": "Liberation Day (Guam)", + "1991-07-24": "Pioneer Day", + "1991-07-25": "Constitution Day", + "1991-08-12": "Victory Day", + "1991-08-16": "Bennington Battle Day; Statehood Day", + "1991-08-27": "Lyndon Baines Johnson Day", + "1991-09-02": "Labor Day", + "1991-10-14": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "1991-10-18": "Alaska Day", + "1991-10-31": "Nevada Day", + "1991-11-01": "Liberty Day", + "1991-11-02": "All Souls' Day", + "1991-11-04": "Citizenship Day", + "1991-11-11": "Veterans Day", + "1991-11-19": "Discovery Day", + "1991-11-28": "Thanksgiving", + "1991-11-29": "Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day; Robert E. Lee's Birthday", + "1991-12-08": "Constitution Day; Lady of Camarin Day", + "1991-12-09": "Constitution Day (Observed)", + "1991-12-24": "Christmas Eve; Washington's Birthday", + "1991-12-25": "Christmas Day", + "1991-12-26": "Christmas Second Day; Day After Christmas", + "1992-01-01": "New Year's Day", + "1992-01-06": "Epiphany; Three Kings Day", + "1992-01-19": "Confederate Memorial Day", + "1992-01-20": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Lee Jackson Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday; Robert E. Lee's Birthday", + "1992-02-12": "Lincoln's Birthday", + "1992-02-15": "Susan B. Anthony Day", + "1992-02-17": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1992-03-02": "Casimir Pulaski Day; Guam Discovery Day; Texas Independence Day", + "1992-03-03": "Mardi Gras; Town Meeting Day", + "1992-03-17": "Evacuation Day", + "1992-03-22": "Emancipation Day", + "1992-03-23": "Emancipation Day (Observed)", + "1992-03-24": "Commonwealth Covenant Day", + "1992-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1992-03-30": "Seward's Day", + "1992-03-31": "Transfer Day", + "1992-04-16": "Holy Thursday", + "1992-04-17": "Good Friday", + "1992-04-20": "Easter Monday; Patriots' Day", + "1992-04-21": "San Jacinto Day", + "1992-04-24": "Arbor Day", + "1992-04-27": "Confederate Memorial Day", + "1992-05-08": "Truman Day", + "1992-05-25": "Memorial Day", + "1992-06-01": "Jefferson Davis Birthday", + "1992-06-11": "Kamehameha Day", + "1992-06-19": "Emancipation Day In Texas; West Virginia Day (Observed)", + "1992-06-20": "West Virginia Day", + "1992-07-03": "Emancipation Day; Independence Day (Observed)", + "1992-07-04": "Independence Day", + "1992-07-21": "Liberation Day (Guam)", + "1992-07-24": "Pioneer Day", + "1992-07-25": "Constitution Day", + "1992-08-10": "Victory Day", + "1992-08-16": "Bennington Battle Day", + "1992-08-17": "Bennington Battle Day (Observed)", + "1992-08-21": "Statehood Day", + "1992-08-27": "Lyndon Baines Johnson Day", + "1992-09-07": "Labor Day", + "1992-10-12": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "1992-10-18": "Alaska Day", + "1992-10-19": "Alaska Day (Observed)", + "1992-10-30": "Nevada Day (Observed)", + "1992-10-31": "Nevada Day", + "1992-11-01": "Liberty Day", + "1992-11-02": "All Souls' Day", + "1992-11-04": "Citizenship Day", + "1992-11-11": "Veterans Day", + "1992-11-19": "Discovery Day", + "1992-11-26": "Thanksgiving", + "1992-11-27": "Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day; Robert E. Lee's Birthday", + "1992-12-08": "Constitution Day; Lady of Camarin Day", + "1992-12-24": "Christmas Eve; Washington's Birthday", + "1992-12-25": "Christmas Day", + "1992-12-26": "Christmas Second Day; Day After Christmas", + "1993-01-01": "New Year's Day", + "1993-01-06": "Epiphany; Three Kings Day", + "1993-01-18": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Lee Jackson Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday; Robert E. Lee's Birthday", + "1993-01-19": "Confederate Memorial Day", + "1993-01-20": "Inauguration Day", + "1993-02-12": "Lincoln's Birthday", + "1993-02-15": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Susan B. Anthony Day; Washington's Birthday", + "1993-02-23": "Mardi Gras", + "1993-03-01": "Casimir Pulaski Day; Guam Discovery Day", + "1993-03-02": "Texas Independence Day; Town Meeting Day", + "1993-03-17": "Evacuation Day", + "1993-03-22": "Emancipation Day", + "1993-03-24": "Commonwealth Covenant Day", + "1993-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1993-03-29": "Seward's Day", + "1993-03-31": "Transfer Day", + "1993-04-08": "Holy Thursday", + "1993-04-09": "Good Friday", + "1993-04-12": "Easter Monday", + "1993-04-19": "Patriots' Day", + "1993-04-21": "San Jacinto Day", + "1993-04-26": "Confederate Memorial Day", + "1993-04-30": "Arbor Day", + "1993-05-07": "Truman Day (Observed)", + "1993-05-08": "Truman Day", + "1993-05-31": "Memorial Day", + "1993-06-07": "Jefferson Davis Birthday", + "1993-06-11": "Kamehameha Day", + "1993-06-19": "Emancipation Day In Texas", + "1993-06-20": "West Virginia Day", + "1993-06-21": "West Virginia Day (Observed)", + "1993-07-03": "Emancipation Day", + "1993-07-04": "Independence Day", + "1993-07-05": "Independence Day (Observed)", + "1993-07-21": "Liberation Day (Guam)", + "1993-07-23": "Pioneer Day (Observed)", + "1993-07-24": "Pioneer Day", + "1993-07-25": "Constitution Day", + "1993-07-26": "Constitution Day (Observed)", + "1993-08-09": "Victory Day", + "1993-08-16": "Bennington Battle Day", + "1993-08-20": "Statehood Day", + "1993-08-27": "Lyndon Baines Johnson Day", + "1993-09-06": "Labor Day", + "1993-10-11": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "1993-10-18": "Alaska Day", + "1993-10-31": "Nevada Day", + "1993-11-01": "Liberty Day; Nevada Day (Observed)", + "1993-11-02": "All Souls' Day", + "1993-11-04": "Citizenship Day", + "1993-11-11": "Veterans Day", + "1993-11-19": "Discovery Day", + "1993-11-25": "Thanksgiving", + "1993-11-26": "Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day; Robert E. Lee's Birthday", + "1993-12-08": "Constitution Day; Lady of Camarin Day", + "1993-12-23": "Christmas Eve (Observed)", + "1993-12-24": "Christmas Day (Observed); Christmas Eve; Washington's Birthday", + "1993-12-25": "Christmas Day", + "1993-12-26": "Christmas Second Day; Day After Christmas", + "1993-12-31": "New Year's Day (Observed)", + "1994-01-01": "New Year's Day", + "1994-01-06": "Epiphany; Three Kings Day", + "1994-01-17": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Lee Jackson Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday; Robert E. Lee's Birthday", + "1994-01-19": "Confederate Memorial Day", + "1994-02-11": "Lincoln's Birthday (Observed)", + "1994-02-12": "Lincoln's Birthday", + "1994-02-15": "Mardi Gras; Susan B. Anthony Day", + "1994-02-21": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1994-03-01": "Town Meeting Day", + "1994-03-02": "Texas Independence Day", + "1994-03-07": "Casimir Pulaski Day; Guam Discovery Day", + "1994-03-17": "Evacuation Day", + "1994-03-22": "Emancipation Day", + "1994-03-24": "Commonwealth Covenant Day", + "1994-03-25": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "1994-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1994-03-28": "Seward's Day", + "1994-03-31": "Holy Thursday; Transfer Day", + "1994-04-01": "Good Friday", + "1994-04-04": "Easter Monday", + "1994-04-18": "Patriots' Day", + "1994-04-21": "San Jacinto Day", + "1994-04-25": "Confederate Memorial Day", + "1994-04-29": "Arbor Day", + "1994-05-08": "Truman Day", + "1994-05-09": "Truman Day (Observed)", + "1994-05-30": "Memorial Day", + "1994-06-06": "Jefferson Davis Birthday", + "1994-06-11": "Kamehameha Day", + "1994-06-19": "Emancipation Day In Texas", + "1994-06-20": "West Virginia Day", + "1994-07-03": "Emancipation Day", + "1994-07-04": "Independence Day", + "1994-07-21": "Liberation Day (Guam)", + "1994-07-24": "Pioneer Day", + "1994-07-25": "Constitution Day; Pioneer Day (Observed)", + "1994-08-08": "Victory Day", + "1994-08-16": "Bennington Battle Day", + "1994-08-19": "Statehood Day", + "1994-08-27": "Lyndon Baines Johnson Day", + "1994-09-05": "Labor Day", + "1994-10-10": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "1994-10-18": "Alaska Day", + "1994-10-31": "Nevada Day", + "1994-11-01": "Liberty Day", + "1994-11-02": "All Souls' Day", + "1994-11-04": "Citizenship Day", + "1994-11-11": "Veterans Day", + "1994-11-19": "Discovery Day", + "1994-11-24": "Thanksgiving", + "1994-11-25": "Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day; Robert E. Lee's Birthday", + "1994-12-08": "Constitution Day; Lady of Camarin Day", + "1994-12-23": "Christmas Eve (Observed)", + "1994-12-24": "Christmas Eve; Washington's Birthday", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day (Observed); Christmas Second Day; Day After Christmas", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (Observed)", + "1995-01-06": "Epiphany; Three Kings Day", + "1995-01-16": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Lee Jackson Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday; Robert E. Lee's Birthday", + "1995-01-19": "Confederate Memorial Day", + "1995-02-12": "Lincoln's Birthday", + "1995-02-13": "Lincoln's Birthday (Observed)", + "1995-02-15": "Susan B. Anthony Day", + "1995-02-20": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1995-02-28": "Mardi Gras", + "1995-03-02": "Texas Independence Day", + "1995-03-06": "Casimir Pulaski Day; Guam Discovery Day", + "1995-03-07": "Town Meeting Day", + "1995-03-17": "Evacuation Day", + "1995-03-22": "Emancipation Day", + "1995-03-24": "Commonwealth Covenant Day", + "1995-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1995-03-27": "Prince Jonah Kuhio Kalanianaole Day (Observed); Seward's Day", + "1995-03-31": "Cesar Chavez Day; Transfer Day", + "1995-04-13": "Holy Thursday", + "1995-04-14": "Good Friday", + "1995-04-17": "Easter Monday; Patriots' Day", + "1995-04-21": "San Jacinto Day", + "1995-04-24": "Confederate Memorial Day", + "1995-04-28": "Arbor Day", + "1995-05-08": "Truman Day", + "1995-05-29": "Memorial Day", + "1995-06-05": "Jefferson Davis Birthday", + "1995-06-11": "Kamehameha Day", + "1995-06-19": "Emancipation Day In Texas", + "1995-06-20": "West Virginia Day", + "1995-07-03": "Emancipation Day", + "1995-07-04": "Independence Day", + "1995-07-21": "Liberation Day (Guam)", + "1995-07-24": "Pioneer Day", + "1995-07-25": "Constitution Day", + "1995-08-14": "Victory Day", + "1995-08-16": "Bennington Battle Day", + "1995-08-18": "Statehood Day", + "1995-08-27": "Lyndon Baines Johnson Day", + "1995-09-04": "Labor Day", + "1995-10-09": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "1995-10-18": "Alaska Day", + "1995-10-31": "Nevada Day", + "1995-11-01": "Liberty Day", + "1995-11-02": "All Souls' Day", + "1995-11-03": "Citizenship Day (Observed)", + "1995-11-04": "Citizenship Day", + "1995-11-10": "Veterans Day (Observed)", + "1995-11-11": "Veterans Day", + "1995-11-19": "Discovery Day", + "1995-11-20": "Discovery Day (Observed)", + "1995-11-23": "Thanksgiving", + "1995-11-24": "Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day; Robert E. Lee's Birthday", + "1995-12-08": "Constitution Day; Lady of Camarin Day", + "1995-12-22": "Christmas Eve (Observed)", + "1995-12-24": "Christmas Eve; Washington's Birthday", + "1995-12-25": "Christmas Day", + "1995-12-26": "Christmas Second Day; Day After Christmas", + "1996-01-01": "New Year's Day", + "1996-01-06": "Epiphany; Three Kings Day", + "1996-01-15": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Lee Jackson Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday; Robert E. Lee's Birthday", + "1996-01-19": "Confederate Memorial Day", + "1996-02-12": "Lincoln's Birthday", + "1996-02-15": "Susan B. Anthony Day", + "1996-02-19": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1996-02-20": "Mardi Gras", + "1996-03-02": "Texas Independence Day", + "1996-03-04": "Casimir Pulaski Day; Guam Discovery Day", + "1996-03-05": "Town Meeting Day", + "1996-03-17": "Evacuation Day", + "1996-03-18": "Evacuation Day (Observed)", + "1996-03-22": "Emancipation Day", + "1996-03-24": "Commonwealth Covenant Day", + "1996-03-25": "Commonwealth Covenant Day (Observed); Seward's Day", + "1996-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1996-03-31": "Cesar Chavez Day; Transfer Day", + "1996-04-01": "Cesar Chavez Day (Observed)", + "1996-04-04": "Holy Thursday", + "1996-04-05": "Good Friday", + "1996-04-08": "Easter Monday", + "1996-04-15": "Patriots' Day", + "1996-04-21": "San Jacinto Day", + "1996-04-22": "Confederate Memorial Day", + "1996-04-26": "Arbor Day", + "1996-05-08": "Truman Day", + "1996-05-27": "Memorial Day", + "1996-06-03": "Jefferson Davis Birthday", + "1996-06-11": "Kamehameha Day", + "1996-06-19": "Emancipation Day In Texas", + "1996-06-20": "West Virginia Day", + "1996-07-03": "Emancipation Day", + "1996-07-04": "Independence Day", + "1996-07-21": "Liberation Day (Guam)", + "1996-07-24": "Pioneer Day", + "1996-07-25": "Constitution Day", + "1996-08-12": "Victory Day", + "1996-08-16": "Bennington Battle Day; Statehood Day", + "1996-08-27": "Lyndon Baines Johnson Day", + "1996-09-02": "Labor Day", + "1996-10-14": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "1996-10-18": "Alaska Day", + "1996-10-31": "Nevada Day", + "1996-11-01": "Liberty Day", + "1996-11-02": "All Souls' Day", + "1996-11-04": "Citizenship Day", + "1996-11-11": "Veterans Day", + "1996-11-19": "Discovery Day", + "1996-11-28": "Thanksgiving", + "1996-11-29": "Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day; Robert E. Lee's Birthday", + "1996-12-08": "Constitution Day; Lady of Camarin Day", + "1996-12-09": "Constitution Day (Observed)", + "1996-12-24": "Christmas Eve; Washington's Birthday", + "1996-12-25": "Christmas Day", + "1996-12-26": "Christmas Second Day; Day After Christmas", + "1997-01-01": "New Year's Day", + "1997-01-06": "Epiphany; Three Kings Day", + "1997-01-19": "Confederate Memorial Day", + "1997-01-20": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Inauguration Day; Lee Jackson Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday; Robert E. Lee's Birthday", + "1997-02-11": "Mardi Gras", + "1997-02-12": "Lincoln's Birthday", + "1997-02-15": "Susan B. Anthony Day", + "1997-02-17": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1997-03-02": "Texas Independence Day", + "1997-03-03": "Casimir Pulaski Day; Guam Discovery Day", + "1997-03-04": "Town Meeting Day", + "1997-03-17": "Evacuation Day", + "1997-03-22": "Emancipation Day", + "1997-03-24": "Commonwealth Covenant Day", + "1997-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1997-03-27": "Holy Thursday", + "1997-03-28": "Good Friday", + "1997-03-31": "Cesar Chavez Day; Easter Monday; Seward's Day; Transfer Day", + "1997-04-21": "Patriots' Day; San Jacinto Day", + "1997-04-25": "Arbor Day", + "1997-04-28": "Confederate Memorial Day", + "1997-05-08": "Truman Day", + "1997-05-26": "Memorial Day", + "1997-06-02": "Jefferson Davis Birthday", + "1997-06-11": "Kamehameha Day", + "1997-06-19": "Emancipation Day In Texas", + "1997-06-20": "West Virginia Day", + "1997-07-03": "Emancipation Day", + "1997-07-04": "Independence Day", + "1997-07-21": "Liberation Day (Guam)", + "1997-07-24": "Pioneer Day", + "1997-07-25": "Constitution Day", + "1997-08-11": "Victory Day", + "1997-08-15": "Bennington Battle Day (Observed); Statehood Day", + "1997-08-16": "Bennington Battle Day", + "1997-08-27": "Lyndon Baines Johnson Day", + "1997-09-01": "Labor Day", + "1997-10-13": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "1997-10-17": "Alaska Day (Observed)", + "1997-10-18": "Alaska Day", + "1997-10-31": "Nevada Day", + "1997-11-01": "Liberty Day", + "1997-11-02": "All Souls' Day", + "1997-11-04": "Citizenship Day", + "1997-11-11": "Veterans Day", + "1997-11-19": "Discovery Day", + "1997-11-27": "Thanksgiving", + "1997-11-28": "Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day; Robert E. Lee's Birthday", + "1997-12-08": "Constitution Day; Lady of Camarin Day", + "1997-12-24": "Christmas Eve", + "1997-12-25": "Christmas Day", + "1997-12-26": "Christmas Second Day; Day After Christmas; Washington's Birthday", + "1998-01-01": "New Year's Day", + "1998-01-06": "Epiphany; Three Kings Day", + "1998-01-19": "Confederate Memorial Day; Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Lee Jackson Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday; Robert E. Lee's Birthday", + "1998-02-12": "Lincoln's Birthday", + "1998-02-15": "Susan B. Anthony Day", + "1998-02-16": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "1998-02-24": "Mardi Gras", + "1998-03-02": "Casimir Pulaski Day; Guam Discovery Day; Texas Independence Day", + "1998-03-03": "Town Meeting Day", + "1998-03-17": "Evacuation Day", + "1998-03-22": "Emancipation Day", + "1998-03-23": "Emancipation Day (Observed)", + "1998-03-24": "Commonwealth Covenant Day", + "1998-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1998-03-30": "Seward's Day", + "1998-03-31": "Cesar Chavez Day; Transfer Day", + "1998-04-09": "Holy Thursday", + "1998-04-10": "Good Friday", + "1998-04-13": "Easter Monday", + "1998-04-20": "Patriots' Day", + "1998-04-21": "San Jacinto Day", + "1998-04-24": "Arbor Day", + "1998-04-27": "Confederate Memorial Day", + "1998-05-08": "Truman Day", + "1998-05-25": "Memorial Day", + "1998-06-01": "Jefferson Davis Birthday", + "1998-06-11": "Kamehameha Day", + "1998-06-19": "Emancipation Day In Texas; West Virginia Day (Observed)", + "1998-06-20": "West Virginia Day", + "1998-07-03": "Emancipation Day; Independence Day (Observed)", + "1998-07-04": "Independence Day", + "1998-07-21": "Liberation Day (Guam)", + "1998-07-24": "Pioneer Day", + "1998-07-25": "Constitution Day", + "1998-08-10": "Victory Day", + "1998-08-16": "Bennington Battle Day", + "1998-08-17": "Bennington Battle Day (Observed)", + "1998-08-21": "Statehood Day", + "1998-08-27": "Lyndon Baines Johnson Day", + "1998-09-07": "Labor Day", + "1998-10-12": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "1998-10-18": "Alaska Day", + "1998-10-19": "Alaska Day (Observed)", + "1998-10-30": "Nevada Day (Observed)", + "1998-10-31": "Nevada Day", + "1998-11-01": "Liberty Day", + "1998-11-02": "All Souls' Day", + "1998-11-04": "Citizenship Day", + "1998-11-11": "Veterans Day", + "1998-11-19": "Discovery Day", + "1998-11-26": "Thanksgiving", + "1998-11-27": "Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day; Robert E. Lee's Birthday", + "1998-12-08": "Constitution Day; Lady of Camarin Day", + "1998-12-24": "Christmas Eve; Washington's Birthday", + "1998-12-25": "Christmas Day", + "1998-12-26": "Christmas Second Day; Day After Christmas", + "1999-01-01": "New Year's Day", + "1999-01-06": "Epiphany; Three Kings Day", + "1999-01-18": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Lee Jackson Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday; Robert E. Lee's Birthday", + "1999-01-19": "Confederate Memorial Day", + "1999-02-12": "Lincoln's Birthday", + "1999-02-15": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Susan B. Anthony Day; Washington's Birthday", + "1999-02-16": "Mardi Gras", + "1999-03-01": "Casimir Pulaski Day; Guam Discovery Day", + "1999-03-02": "Texas Independence Day; Town Meeting Day", + "1999-03-17": "Evacuation Day", + "1999-03-22": "Emancipation Day", + "1999-03-24": "Commonwealth Covenant Day", + "1999-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "1999-03-29": "Seward's Day", + "1999-03-31": "Cesar Chavez Day; Transfer Day", + "1999-04-01": "Holy Thursday", + "1999-04-02": "Good Friday", + "1999-04-05": "Easter Monday", + "1999-04-19": "Patriots' Day", + "1999-04-21": "San Jacinto Day", + "1999-04-26": "Confederate Memorial Day", + "1999-04-30": "Arbor Day", + "1999-05-07": "Truman Day (Observed)", + "1999-05-08": "Truman Day", + "1999-05-31": "Memorial Day", + "1999-06-07": "Jefferson Davis Birthday", + "1999-06-11": "Kamehameha Day", + "1999-06-19": "Emancipation Day In Texas", + "1999-06-20": "West Virginia Day", + "1999-06-21": "West Virginia Day (Observed)", + "1999-07-03": "Emancipation Day", + "1999-07-04": "Independence Day", + "1999-07-05": "Independence Day (Observed)", + "1999-07-21": "Liberation Day (Guam)", + "1999-07-23": "Pioneer Day (Observed)", + "1999-07-24": "Pioneer Day", + "1999-07-25": "Constitution Day", + "1999-07-26": "Constitution Day (Observed)", + "1999-08-09": "Victory Day", + "1999-08-16": "Bennington Battle Day", + "1999-08-20": "Statehood Day", + "1999-08-27": "Lyndon Baines Johnson Day", + "1999-09-06": "Labor Day", + "1999-10-11": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "1999-10-18": "Alaska Day", + "1999-10-31": "Nevada Day", + "1999-11-01": "Liberty Day; Nevada Day (Observed)", + "1999-11-02": "All Souls' Day", + "1999-11-04": "Citizenship Day", + "1999-11-11": "Veterans Day", + "1999-11-19": "Discovery Day", + "1999-11-25": "Thanksgiving", + "1999-11-26": "Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day; Robert E. Lee's Birthday", + "1999-12-08": "Constitution Day; Lady of Camarin Day", + "1999-12-23": "Christmas Eve (Observed)", + "1999-12-24": "Christmas Day (Observed); Christmas Eve; Washington's Birthday", + "1999-12-25": "Christmas Day", + "1999-12-26": "Christmas Second Day; Day After Christmas", + "1999-12-31": "New Year's Day (Observed)", + "2000-01-01": "New Year's Day", + "2000-01-06": "Epiphany; Three Kings Day", + "2000-01-14": "Lee Jackson Day", + "2000-01-17": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday; Robert E. Lee's Birthday", + "2000-01-19": "Confederate Memorial Day", + "2000-02-11": "Lincoln's Birthday (Observed)", + "2000-02-12": "Lincoln's Birthday", + "2000-02-15": "Susan B. Anthony Day", + "2000-02-21": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2000-03-02": "Texas Independence Day", + "2000-03-06": "Casimir Pulaski Day; Guam Discovery Day", + "2000-03-07": "Mardi Gras; Town Meeting Day", + "2000-03-17": "Evacuation Day", + "2000-03-22": "Emancipation Day", + "2000-03-24": "Commonwealth Covenant Day", + "2000-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2000-03-27": "Prince Jonah Kuhio Kalanianaole Day (Observed); Seward's Day", + "2000-03-31": "Cesar Chavez Day; Transfer Day", + "2000-04-17": "Patriots' Day", + "2000-04-20": "Holy Thursday", + "2000-04-21": "Good Friday; San Jacinto Day", + "2000-04-24": "Confederate Memorial Day; Easter Monday", + "2000-04-28": "Arbor Day", + "2000-05-08": "Truman Day", + "2000-05-29": "Memorial Day", + "2000-06-05": "Jefferson Davis Birthday", + "2000-06-11": "Kamehameha Day", + "2000-06-19": "Emancipation Day In Texas", + "2000-06-20": "West Virginia Day", + "2000-07-03": "Emancipation Day", + "2000-07-04": "Independence Day", + "2000-07-21": "Liberation Day (Guam)", + "2000-07-24": "Pioneer Day", + "2000-07-25": "Constitution Day", + "2000-08-14": "Victory Day", + "2000-08-16": "Bennington Battle Day", + "2000-08-18": "Statehood Day", + "2000-08-27": "Lyndon Baines Johnson Day", + "2000-09-04": "Labor Day", + "2000-10-09": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2000-10-18": "Alaska Day", + "2000-10-27": "Nevada Day", + "2000-11-01": "Liberty Day", + "2000-11-02": "All Souls' Day", + "2000-11-03": "Citizenship Day (Observed)", + "2000-11-04": "Citizenship Day", + "2000-11-10": "Veterans Day (Observed)", + "2000-11-11": "Veterans Day", + "2000-11-19": "Discovery Day", + "2000-11-20": "Discovery Day (Observed)", + "2000-11-23": "Thanksgiving", + "2000-11-24": "Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day; Robert E. Lee's Birthday", + "2000-12-08": "Constitution Day; Lady of Camarin Day", + "2000-12-22": "Christmas Eve (Observed)", + "2000-12-24": "Christmas Eve; Washington's Birthday", + "2000-12-25": "Christmas Day", + "2000-12-26": "Christmas Second Day; Day After Christmas", + "2001-01-01": "New Year's Day", + "2001-01-06": "Epiphany; Three Kings Day", + "2001-01-12": "Lee Jackson Day", + "2001-01-15": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday; Robert E. Lee's Birthday", + "2001-01-19": "Confederate Memorial Day", + "2001-01-20": "Inauguration Day", + "2001-02-12": "Lincoln's Birthday", + "2001-02-15": "Susan B. Anthony Day", + "2001-02-19": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2001-02-27": "Mardi Gras", + "2001-03-02": "Texas Independence Day", + "2001-03-05": "Casimir Pulaski Day; Guam Discovery Day", + "2001-03-06": "Town Meeting Day", + "2001-03-17": "Evacuation Day", + "2001-03-19": "Evacuation Day (Observed)", + "2001-03-22": "Emancipation Day", + "2001-03-23": "Commonwealth Covenant Day (Observed)", + "2001-03-24": "Commonwealth Covenant Day", + "2001-03-26": "Prince Jonah Kuhio Kalanianaole Day; Seward's Day", + "2001-03-31": "Cesar Chavez Day; Transfer Day", + "2001-04-12": "Holy Thursday", + "2001-04-13": "Good Friday", + "2001-04-16": "Easter Monday; Patriots' Day", + "2001-04-21": "San Jacinto Day", + "2001-04-23": "Confederate Memorial Day", + "2001-04-27": "Arbor Day", + "2001-05-08": "Truman Day", + "2001-05-28": "Memorial Day", + "2001-06-04": "Jefferson Davis Birthday", + "2001-06-11": "Kamehameha Day", + "2001-06-19": "Emancipation Day In Texas", + "2001-06-20": "West Virginia Day", + "2001-07-03": "Emancipation Day", + "2001-07-04": "Independence Day", + "2001-07-21": "Liberation Day (Guam)", + "2001-07-24": "Pioneer Day", + "2001-07-25": "Constitution Day", + "2001-08-13": "Victory Day", + "2001-08-16": "Bennington Battle Day", + "2001-08-17": "Statehood Day", + "2001-08-27": "Lyndon Baines Johnson Day", + "2001-09-03": "Labor Day", + "2001-10-08": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2001-10-18": "Alaska Day", + "2001-10-26": "Nevada Day", + "2001-11-01": "Liberty Day", + "2001-11-02": "All Souls' Day", + "2001-11-04": "Citizenship Day", + "2001-11-05": "Citizenship Day (Observed)", + "2001-11-11": "Veterans Day", + "2001-11-12": "Veterans Day (Observed)", + "2001-11-19": "Discovery Day", + "2001-11-22": "Thanksgiving", + "2001-11-23": "Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day; Robert E. Lee's Birthday", + "2001-12-07": "Constitution Day (Observed)", + "2001-12-08": "Constitution Day; Lady of Camarin Day", + "2001-12-24": "Christmas Eve; Washington's Birthday", + "2001-12-25": "Christmas Day", + "2001-12-26": "Christmas Second Day; Day After Christmas", + "2002-01-01": "New Year's Day", + "2002-01-06": "Epiphany; Three Kings Day", + "2002-01-18": "Lee Jackson Day", + "2002-01-19": "Confederate Memorial Day", + "2002-01-21": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday; Robert E. Lee's Birthday", + "2002-02-12": "Lincoln's Birthday; Mardi Gras", + "2002-02-15": "Susan B. Anthony Day", + "2002-02-18": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2002-03-02": "Texas Independence Day", + "2002-03-04": "Casimir Pulaski Day; Guam Discovery Day", + "2002-03-05": "Town Meeting Day", + "2002-03-17": "Evacuation Day", + "2002-03-18": "Evacuation Day (Observed)", + "2002-03-22": "Emancipation Day", + "2002-03-24": "Commonwealth Covenant Day", + "2002-03-25": "Commonwealth Covenant Day (Observed); Seward's Day", + "2002-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2002-03-28": "Holy Thursday", + "2002-03-29": "Good Friday", + "2002-03-31": "Cesar Chavez Day; Transfer Day", + "2002-04-01": "Cesar Chavez Day (Observed); Easter Monday", + "2002-04-15": "Patriots' Day", + "2002-04-21": "San Jacinto Day", + "2002-04-22": "Confederate Memorial Day", + "2002-04-26": "Arbor Day", + "2002-05-08": "Truman Day", + "2002-05-27": "Memorial Day", + "2002-06-03": "Jefferson Davis Birthday", + "2002-06-11": "Kamehameha Day", + "2002-06-19": "Emancipation Day In Texas", + "2002-06-20": "West Virginia Day", + "2002-07-03": "Emancipation Day", + "2002-07-04": "Independence Day", + "2002-07-21": "Liberation Day (Guam)", + "2002-07-24": "Pioneer Day", + "2002-07-25": "Constitution Day", + "2002-08-12": "Victory Day", + "2002-08-16": "Bennington Battle Day; Statehood Day", + "2002-08-27": "Lyndon Baines Johnson Day", + "2002-09-02": "Labor Day", + "2002-10-14": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2002-10-18": "Alaska Day", + "2002-10-25": "Nevada Day", + "2002-11-01": "Liberty Day", + "2002-11-02": "All Souls' Day", + "2002-11-04": "Citizenship Day", + "2002-11-11": "Veterans Day", + "2002-11-19": "Discovery Day", + "2002-11-28": "Thanksgiving", + "2002-11-29": "Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day; Robert E. Lee's Birthday", + "2002-12-08": "Constitution Day; Lady of Camarin Day", + "2002-12-09": "Constitution Day (Observed)", + "2002-12-24": "Christmas Eve; Washington's Birthday", + "2002-12-25": "Christmas Day", + "2002-12-26": "Christmas Second Day; Day After Christmas", + "2003-01-01": "New Year's Day", + "2003-01-06": "Epiphany; Three Kings Day", + "2003-01-17": "Lee Jackson Day", + "2003-01-19": "Confederate Memorial Day", + "2003-01-20": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday; Robert E. Lee's Birthday", + "2003-02-12": "Lincoln's Birthday", + "2003-02-15": "Susan B. Anthony Day", + "2003-02-17": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2003-03-02": "Texas Independence Day", + "2003-03-03": "Casimir Pulaski Day; Guam Discovery Day", + "2003-03-04": "Mardi Gras; Town Meeting Day", + "2003-03-17": "Evacuation Day", + "2003-03-22": "Emancipation Day", + "2003-03-24": "Commonwealth Covenant Day", + "2003-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2003-03-31": "Cesar Chavez Day; Seward's Day; Transfer Day", + "2003-04-17": "Holy Thursday", + "2003-04-18": "Good Friday", + "2003-04-21": "Easter Monday; Patriots' Day; San Jacinto Day", + "2003-04-25": "Arbor Day", + "2003-04-28": "Confederate Memorial Day", + "2003-05-08": "Truman Day", + "2003-05-26": "Memorial Day", + "2003-06-02": "Jefferson Davis Birthday", + "2003-06-11": "Kamehameha Day", + "2003-06-19": "Emancipation Day In Texas", + "2003-06-20": "West Virginia Day", + "2003-07-03": "Emancipation Day", + "2003-07-04": "Independence Day", + "2003-07-21": "Liberation Day (Guam)", + "2003-07-24": "Pioneer Day", + "2003-07-25": "Constitution Day", + "2003-08-11": "Victory Day", + "2003-08-15": "Bennington Battle Day (Observed); Statehood Day", + "2003-08-16": "Bennington Battle Day", + "2003-08-27": "Lyndon Baines Johnson Day", + "2003-09-01": "Labor Day", + "2003-10-13": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2003-10-17": "Alaska Day (Observed)", + "2003-10-18": "Alaska Day", + "2003-10-31": "Nevada Day", + "2003-11-01": "Liberty Day", + "2003-11-02": "All Souls' Day", + "2003-11-04": "Citizenship Day", + "2003-11-11": "Veterans Day", + "2003-11-19": "Discovery Day", + "2003-11-27": "Thanksgiving", + "2003-11-28": "Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day; Robert E. Lee's Birthday", + "2003-12-08": "Constitution Day; Lady of Camarin Day", + "2003-12-24": "Christmas Eve", + "2003-12-25": "Christmas Day", + "2003-12-26": "Christmas Second Day; Day After Christmas; Washington's Birthday", + "2004-01-01": "New Year's Day", + "2004-01-06": "Epiphany; Three Kings Day", + "2004-01-16": "Lee Jackson Day", + "2004-01-19": "Confederate Memorial Day; Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday; Robert E. Lee's Birthday", + "2004-02-12": "Lincoln's Birthday", + "2004-02-15": "Susan B. Anthony Day", + "2004-02-16": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2004-02-24": "Mardi Gras", + "2004-03-01": "Casimir Pulaski Day; Guam Discovery Day", + "2004-03-02": "Texas Independence Day; Town Meeting Day", + "2004-03-17": "Evacuation Day", + "2004-03-22": "Emancipation Day", + "2004-03-24": "Commonwealth Covenant Day", + "2004-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2004-03-29": "Seward's Day", + "2004-03-31": "Cesar Chavez Day; Transfer Day", + "2004-04-08": "Holy Thursday", + "2004-04-09": "Good Friday", + "2004-04-12": "Easter Monday", + "2004-04-19": "Patriots' Day", + "2004-04-21": "San Jacinto Day", + "2004-04-26": "Confederate Memorial Day", + "2004-04-30": "Arbor Day", + "2004-05-07": "Truman Day (Observed)", + "2004-05-08": "Truman Day", + "2004-05-31": "Memorial Day", + "2004-06-07": "Jefferson Davis Birthday", + "2004-06-11": "Kamehameha Day", + "2004-06-19": "Emancipation Day In Texas", + "2004-06-20": "West Virginia Day", + "2004-06-21": "West Virginia Day (Observed)", + "2004-07-03": "Emancipation Day", + "2004-07-04": "Independence Day", + "2004-07-05": "Independence Day (Observed)", + "2004-07-21": "Liberation Day (Guam)", + "2004-07-23": "Pioneer Day (Observed)", + "2004-07-24": "Pioneer Day", + "2004-07-25": "Constitution Day", + "2004-07-26": "Constitution Day (Observed)", + "2004-08-09": "Victory Day", + "2004-08-16": "Bennington Battle Day", + "2004-08-20": "Statehood Day", + "2004-08-27": "Lyndon Baines Johnson Day", + "2004-09-06": "Labor Day", + "2004-10-11": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2004-10-18": "Alaska Day", + "2004-10-29": "Nevada Day", + "2004-11-01": "Liberty Day", + "2004-11-02": "All Souls' Day", + "2004-11-04": "Citizenship Day", + "2004-11-11": "Veterans Day", + "2004-11-19": "Discovery Day", + "2004-11-25": "Thanksgiving", + "2004-11-26": "Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day; Robert E. Lee's Birthday", + "2004-12-08": "Constitution Day; Lady of Camarin Day", + "2004-12-23": "Christmas Eve (Observed)", + "2004-12-24": "Christmas Day (Observed); Christmas Eve; Washington's Birthday", + "2004-12-25": "Christmas Day", + "2004-12-26": "Christmas Second Day; Day After Christmas", + "2004-12-31": "New Year's Day (Observed)", + "2005-01-01": "New Year's Day", + "2005-01-06": "Epiphany; Three Kings Day", + "2005-01-14": "Lee Jackson Day", + "2005-01-17": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday; Robert E. Lee's Birthday", + "2005-01-19": "Confederate Memorial Day", + "2005-01-20": "Inauguration Day", + "2005-02-08": "Mardi Gras", + "2005-02-11": "Lincoln's Birthday (Observed)", + "2005-02-12": "Lincoln's Birthday", + "2005-02-15": "Susan B. Anthony Day", + "2005-02-21": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2005-03-01": "Town Meeting Day", + "2005-03-02": "Texas Independence Day", + "2005-03-07": "Casimir Pulaski Day; Guam Discovery Day", + "2005-03-17": "Evacuation Day", + "2005-03-22": "Emancipation Day", + "2005-03-24": "Commonwealth Covenant Day; Holy Thursday", + "2005-03-25": "Good Friday; Prince Jonah Kuhio Kalanianaole Day (Observed)", + "2005-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2005-03-28": "Easter Monday; Seward's Day", + "2005-03-31": "Cesar Chavez Day; Transfer Day", + "2005-04-15": "Emancipation Day (Observed)", + "2005-04-16": "Emancipation Day", + "2005-04-18": "Patriots' Day", + "2005-04-21": "San Jacinto Day", + "2005-04-25": "Confederate Memorial Day", + "2005-04-29": "Arbor Day", + "2005-05-08": "Truman Day", + "2005-05-09": "Truman Day (Observed)", + "2005-05-30": "Memorial Day", + "2005-06-06": "Jefferson Davis Birthday", + "2005-06-11": "Kamehameha Day", + "2005-06-19": "Emancipation Day In Texas", + "2005-06-20": "West Virginia Day", + "2005-07-03": "Emancipation Day", + "2005-07-04": "Independence Day", + "2005-07-21": "Liberation Day (Guam)", + "2005-07-24": "Pioneer Day", + "2005-07-25": "Constitution Day; Pioneer Day (Observed)", + "2005-08-08": "Victory Day", + "2005-08-16": "Bennington Battle Day", + "2005-08-19": "Statehood Day", + "2005-08-27": "Lyndon Baines Johnson Day", + "2005-09-05": "Labor Day", + "2005-10-10": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2005-10-18": "Alaska Day", + "2005-10-28": "Nevada Day", + "2005-11-01": "Liberty Day", + "2005-11-02": "All Souls' Day", + "2005-11-04": "Citizenship Day", + "2005-11-11": "Veterans Day", + "2005-11-19": "Discovery Day", + "2005-11-24": "Thanksgiving", + "2005-11-25": "Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day; Robert E. Lee's Birthday", + "2005-12-08": "Constitution Day; Lady of Camarin Day", + "2005-12-23": "Christmas Eve (Observed)", + "2005-12-24": "Christmas Eve; Washington's Birthday", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day (Observed); Christmas Second Day; Day After Christmas", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (Observed)", + "2006-01-06": "Epiphany; Three Kings Day", + "2006-01-13": "Lee Jackson Day", + "2006-01-16": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday; Robert E. Lee's Birthday", + "2006-01-19": "Confederate Memorial Day", + "2006-02-12": "Lincoln's Birthday", + "2006-02-13": "Lincoln's Birthday (Observed)", + "2006-02-15": "Susan B. Anthony Day", + "2006-02-20": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2006-02-28": "Mardi Gras", + "2006-03-02": "Texas Independence Day", + "2006-03-06": "Casimir Pulaski Day; Guam Discovery Day", + "2006-03-07": "Town Meeting Day", + "2006-03-17": "Evacuation Day", + "2006-03-22": "Emancipation Day", + "2006-03-24": "Commonwealth Covenant Day", + "2006-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2006-03-27": "Prince Jonah Kuhio Kalanianaole Day (Observed); Seward's Day", + "2006-03-31": "Cesar Chavez Day; Transfer Day", + "2006-04-13": "Holy Thursday", + "2006-04-14": "Good Friday", + "2006-04-16": "Emancipation Day", + "2006-04-17": "Easter Monday; Emancipation Day (Observed); Patriots' Day", + "2006-04-21": "San Jacinto Day", + "2006-04-24": "Confederate Memorial Day", + "2006-04-28": "Arbor Day", + "2006-05-02": "Primary Election Day", + "2006-05-08": "Truman Day", + "2006-05-29": "Memorial Day", + "2006-06-05": "Jefferson Davis Birthday", + "2006-06-11": "Kamehameha Day", + "2006-06-19": "Emancipation Day In Texas", + "2006-06-20": "West Virginia Day", + "2006-07-03": "Emancipation Day", + "2006-07-04": "Independence Day", + "2006-07-21": "Liberation Day (Guam)", + "2006-07-24": "Pioneer Day", + "2006-07-25": "Constitution Day", + "2006-08-14": "Victory Day", + "2006-08-16": "Bennington Battle Day", + "2006-08-18": "Statehood Day", + "2006-08-27": "Lyndon Baines Johnson Day", + "2006-09-04": "Labor Day", + "2006-10-09": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2006-10-18": "Alaska Day", + "2006-10-27": "Nevada Day", + "2006-11-01": "Liberty Day", + "2006-11-02": "All Souls' Day", + "2006-11-03": "Citizenship Day (Observed)", + "2006-11-04": "Citizenship Day", + "2006-11-10": "Veterans Day (Observed)", + "2006-11-11": "Veterans Day", + "2006-11-19": "Discovery Day", + "2006-11-20": "Discovery Day (Observed)", + "2006-11-23": "Thanksgiving", + "2006-11-24": "Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day; Robert E. Lee's Birthday", + "2006-12-08": "Constitution Day; Lady of Camarin Day", + "2006-12-22": "Christmas Eve (Observed)", + "2006-12-24": "Christmas Eve; Washington's Birthday", + "2006-12-25": "Christmas Day", + "2006-12-26": "Christmas Second Day; Day After Christmas", + "2007-01-01": "New Year's Day", + "2007-01-06": "Epiphany; Three Kings Day", + "2007-01-12": "Lee Jackson Day", + "2007-01-15": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday; Robert E. Lee's Birthday", + "2007-01-19": "Confederate Memorial Day", + "2007-02-12": "Lincoln's Birthday", + "2007-02-15": "Susan B. Anthony Day", + "2007-02-19": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2007-02-20": "Mardi Gras", + "2007-03-02": "Texas Independence Day", + "2007-03-05": "Casimir Pulaski Day; Guam Discovery Day", + "2007-03-06": "Town Meeting Day", + "2007-03-17": "Evacuation Day", + "2007-03-19": "Evacuation Day (Observed)", + "2007-03-22": "Emancipation Day", + "2007-03-23": "Commonwealth Covenant Day (Observed)", + "2007-03-24": "Commonwealth Covenant Day", + "2007-03-26": "Prince Jonah Kuhio Kalanianaole Day; Seward's Day", + "2007-03-31": "Cesar Chavez Day; Transfer Day", + "2007-04-05": "Holy Thursday", + "2007-04-06": "Good Friday", + "2007-04-09": "Easter Monday", + "2007-04-16": "Emancipation Day; Patriots' Day", + "2007-04-21": "San Jacinto Day", + "2007-04-23": "Confederate Memorial Day", + "2007-04-27": "Arbor Day", + "2007-05-08": "Truman Day", + "2007-05-28": "Memorial Day", + "2007-06-04": "Jefferson Davis Birthday", + "2007-06-11": "Kamehameha Day", + "2007-06-19": "Emancipation Day In Texas", + "2007-06-20": "West Virginia Day", + "2007-07-03": "Emancipation Day", + "2007-07-04": "Independence Day", + "2007-07-21": "Liberation Day (Guam)", + "2007-07-24": "Pioneer Day", + "2007-07-25": "Constitution Day", + "2007-08-13": "Victory Day", + "2007-08-16": "Bennington Battle Day", + "2007-08-17": "Statehood Day", + "2007-08-27": "Lyndon Baines Johnson Day", + "2007-09-03": "Labor Day", + "2007-10-08": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2007-10-18": "Alaska Day", + "2007-10-26": "Nevada Day", + "2007-11-01": "Liberty Day", + "2007-11-02": "All Souls' Day", + "2007-11-04": "Citizenship Day", + "2007-11-05": "Citizenship Day (Observed)", + "2007-11-11": "Veterans Day", + "2007-11-12": "Veterans Day (Observed)", + "2007-11-19": "Discovery Day", + "2007-11-22": "Thanksgiving", + "2007-11-23": "Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day; Robert E. Lee's Birthday", + "2007-12-07": "Constitution Day (Observed)", + "2007-12-08": "Constitution Day; Lady of Camarin Day", + "2007-12-24": "Christmas Eve; Washington's Birthday", + "2007-12-25": "Christmas Day", + "2007-12-26": "Christmas Second Day; Day After Christmas", + "2008-01-01": "New Year's Day", + "2008-01-06": "Epiphany; Three Kings Day", + "2008-01-18": "Lee Jackson Day", + "2008-01-19": "Confederate Memorial Day", + "2008-01-21": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday; Robert E. Lee's Birthday", + "2008-02-05": "Mardi Gras", + "2008-02-12": "Lincoln's Birthday", + "2008-02-15": "Susan B. Anthony Day", + "2008-02-18": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2008-03-02": "Texas Independence Day", + "2008-03-03": "Casimir Pulaski Day; Guam Discovery Day", + "2008-03-04": "Town Meeting Day", + "2008-03-17": "Evacuation Day", + "2008-03-20": "Holy Thursday", + "2008-03-21": "Good Friday", + "2008-03-22": "Emancipation Day", + "2008-03-24": "Commonwealth Covenant Day; Easter Monday", + "2008-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2008-03-31": "Cesar Chavez Day; Seward's Day; Transfer Day", + "2008-04-16": "Emancipation Day", + "2008-04-21": "Patriots' Day; San Jacinto Day", + "2008-04-25": "Arbor Day", + "2008-04-28": "Confederate Memorial Day", + "2008-05-06": "Primary Election Day", + "2008-05-08": "Truman Day", + "2008-05-26": "Memorial Day", + "2008-06-02": "Jefferson Davis Birthday", + "2008-06-11": "Kamehameha Day", + "2008-06-19": "Emancipation Day In Texas", + "2008-06-20": "West Virginia Day", + "2008-07-03": "Emancipation Day", + "2008-07-04": "Independence Day", + "2008-07-21": "Liberation Day (Guam)", + "2008-07-24": "Pioneer Day", + "2008-07-25": "Constitution Day", + "2008-08-11": "Victory Day", + "2008-08-15": "Bennington Battle Day (Observed); Statehood Day", + "2008-08-16": "Bennington Battle Day", + "2008-08-27": "Lyndon Baines Johnson Day", + "2008-09-01": "Labor Day", + "2008-10-13": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2008-10-17": "Alaska Day (Observed)", + "2008-10-18": "Alaska Day", + "2008-10-31": "Nevada Day", + "2008-11-01": "Liberty Day", + "2008-11-02": "All Souls' Day", + "2008-11-04": "Citizenship Day; Election Day", + "2008-11-11": "Veterans Day", + "2008-11-19": "Discovery Day", + "2008-11-27": "Thanksgiving", + "2008-11-28": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day; Robert E. Lee's Birthday", + "2008-12-08": "Constitution Day; Lady of Camarin Day", + "2008-12-24": "Christmas Eve", + "2008-12-25": "Christmas Day", + "2008-12-26": "Christmas Second Day; Day After Christmas; Washington's Birthday", + "2009-01-01": "New Year's Day", + "2009-01-06": "Epiphany; Three Kings Day", + "2009-01-16": "Lee Jackson Day", + "2009-01-19": "Confederate Memorial Day; Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday; Robert E. Lee's Birthday", + "2009-01-20": "Inauguration Day", + "2009-02-12": "Lincoln's Birthday", + "2009-02-15": "Susan B. Anthony Day", + "2009-02-16": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2009-02-24": "Mardi Gras", + "2009-03-02": "Casimir Pulaski Day; Guam Discovery Day; Texas Independence Day", + "2009-03-03": "Town Meeting Day", + "2009-03-17": "Evacuation Day", + "2009-03-22": "Emancipation Day", + "2009-03-23": "Emancipation Day (Observed)", + "2009-03-24": "Commonwealth Covenant Day", + "2009-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2009-03-30": "Seward's Day", + "2009-03-31": "Cesar Chavez Day; Transfer Day", + "2009-04-09": "Holy Thursday", + "2009-04-10": "Good Friday", + "2009-04-13": "Easter Monday", + "2009-04-16": "Emancipation Day", + "2009-04-20": "Patriots' Day", + "2009-04-21": "San Jacinto Day", + "2009-04-24": "Arbor Day", + "2009-04-27": "Confederate Memorial Day", + "2009-05-08": "Truman Day", + "2009-05-25": "Memorial Day", + "2009-06-01": "Jefferson Davis Birthday", + "2009-06-11": "Kamehameha Day", + "2009-06-19": "Emancipation Day In Texas; West Virginia Day (Observed)", + "2009-06-20": "West Virginia Day", + "2009-07-03": "Emancipation Day; Independence Day (Observed)", + "2009-07-04": "Independence Day", + "2009-07-21": "Liberation Day (Guam)", + "2009-07-24": "Pioneer Day", + "2009-07-25": "Constitution Day", + "2009-08-10": "Victory Day", + "2009-08-16": "Bennington Battle Day", + "2009-08-17": "Bennington Battle Day (Observed)", + "2009-08-21": "Statehood Day", + "2009-08-27": "Lyndon Baines Johnson Day", + "2009-09-07": "Labor Day", + "2009-10-12": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2009-10-18": "Alaska Day", + "2009-10-19": "Alaska Day (Observed)", + "2009-10-30": "Nevada Day", + "2009-11-01": "Liberty Day", + "2009-11-02": "All Souls' Day", + "2009-11-04": "Citizenship Day", + "2009-11-11": "Veterans Day", + "2009-11-19": "Discovery Day", + "2009-11-26": "Thanksgiving", + "2009-11-27": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Presidents' Day; Robert E. Lee's Birthday", + "2009-12-08": "Constitution Day; Lady of Camarin Day", + "2009-12-24": "Christmas Eve; Washington's Birthday", + "2009-12-25": "Christmas Day", + "2009-12-26": "Christmas Second Day; Day After Christmas", + "2010-01-01": "New Year's Day", + "2010-01-06": "Epiphany; Three Kings Day", + "2010-01-15": "Lee Jackson Day", + "2010-01-18": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday; Robert E. Lee's Birthday", + "2010-01-19": "Confederate Memorial Day", + "2010-02-12": "Lincoln's Birthday", + "2010-02-15": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Susan B. Anthony Day; Washington's Birthday", + "2010-02-16": "Mardi Gras", + "2010-03-01": "Casimir Pulaski Day; Guam Discovery Day", + "2010-03-02": "Texas Independence Day; Town Meeting Day", + "2010-03-17": "Evacuation Day", + "2010-03-22": "Emancipation Day", + "2010-03-24": "Commonwealth Covenant Day", + "2010-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2010-03-29": "Seward's Day", + "2010-03-31": "Cesar Chavez Day; Transfer Day", + "2010-04-01": "Holy Thursday", + "2010-04-02": "Good Friday", + "2010-04-05": "Easter Monday", + "2010-04-16": "Emancipation Day", + "2010-04-19": "Patriots' Day", + "2010-04-21": "San Jacinto Day", + "2010-04-26": "Confederate Memorial Day", + "2010-04-30": "Arbor Day", + "2010-05-04": "Primary Election Day", + "2010-05-07": "Truman Day (Observed)", + "2010-05-08": "Truman Day", + "2010-05-31": "Memorial Day", + "2010-06-07": "Jefferson Davis Birthday", + "2010-06-11": "Kamehameha Day", + "2010-06-19": "Emancipation Day In Texas", + "2010-06-20": "West Virginia Day", + "2010-06-21": "West Virginia Day (Observed)", + "2010-07-03": "Emancipation Day", + "2010-07-04": "Independence Day", + "2010-07-05": "Independence Day (Observed)", + "2010-07-21": "Liberation Day (Guam)", + "2010-07-23": "Pioneer Day (Observed)", + "2010-07-24": "Pioneer Day", + "2010-07-25": "Constitution Day", + "2010-07-26": "Constitution Day (Observed)", + "2010-08-09": "Victory Day", + "2010-08-16": "Bennington Battle Day", + "2010-08-20": "Statehood Day", + "2010-08-27": "Lyndon Baines Johnson Day", + "2010-09-06": "Labor Day", + "2010-10-11": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2010-10-18": "Alaska Day", + "2010-10-29": "Nevada Day", + "2010-11-01": "Liberty Day", + "2010-11-02": "All Souls' Day; Election Day", + "2010-11-04": "Citizenship Day", + "2010-11-11": "Veterans Day", + "2010-11-19": "Discovery Day", + "2010-11-25": "Thanksgiving", + "2010-11-26": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; Robert E. Lee's Birthday", + "2010-12-08": "Constitution Day; Lady of Camarin Day", + "2010-12-23": "Christmas Eve (Observed)", + "2010-12-24": "Christmas Day (Observed); Christmas Eve; Washington's Birthday", + "2010-12-25": "Christmas Day", + "2010-12-26": "Christmas Second Day; Day After Christmas", + "2010-12-31": "New Year's Day (Observed)", + "2011-01-01": "New Year's Day", + "2011-01-06": "Epiphany; Three Kings Day", + "2011-01-14": "Lee Jackson Day", + "2011-01-17": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday; Robert E. Lee's Birthday", + "2011-01-19": "Confederate Memorial Day", + "2011-02-11": "Lincoln's Birthday (Observed)", + "2011-02-12": "Lincoln's Birthday", + "2011-02-15": "Susan B. Anthony Day", + "2011-02-21": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2011-03-01": "Town Meeting Day", + "2011-03-02": "Texas Independence Day", + "2011-03-07": "Casimir Pulaski Day; Guam Discovery Day", + "2011-03-08": "Mardi Gras", + "2011-03-17": "Evacuation Day", + "2011-03-22": "Emancipation Day", + "2011-03-24": "Commonwealth Covenant Day", + "2011-03-25": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "2011-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2011-03-28": "Seward's Day", + "2011-03-31": "Cesar Chavez Day; Transfer Day", + "2011-04-15": "Emancipation Day (Observed)", + "2011-04-16": "Emancipation Day", + "2011-04-18": "Patriots' Day", + "2011-04-21": "Holy Thursday; San Jacinto Day", + "2011-04-22": "Good Friday", + "2011-04-25": "Confederate Memorial Day; Easter Monday", + "2011-04-29": "Arbor Day", + "2011-05-08": "Truman Day", + "2011-05-09": "Truman Day (Observed)", + "2011-05-30": "Memorial Day", + "2011-06-06": "Jefferson Davis Birthday", + "2011-06-10": "Kamehameha Day (Observed)", + "2011-06-11": "Kamehameha Day", + "2011-06-19": "Emancipation Day In Texas", + "2011-06-20": "West Virginia Day", + "2011-07-03": "Emancipation Day", + "2011-07-04": "Independence Day", + "2011-07-21": "Liberation Day (Guam)", + "2011-07-24": "Pioneer Day", + "2011-07-25": "Constitution Day; Pioneer Day (Observed)", + "2011-08-08": "Victory Day", + "2011-08-16": "Bennington Battle Day", + "2011-08-19": "Statehood Day", + "2011-08-27": "Lyndon Baines Johnson Day", + "2011-09-05": "Labor Day", + "2011-10-10": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2011-10-18": "Alaska Day", + "2011-10-28": "Nevada Day", + "2011-11-01": "Liberty Day", + "2011-11-02": "All Souls' Day", + "2011-11-04": "Citizenship Day", + "2011-11-11": "Veterans Day", + "2011-11-19": "Discovery Day", + "2011-11-24": "Thanksgiving", + "2011-11-25": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; Robert E. Lee's Birthday", + "2011-12-08": "Constitution Day; Lady of Camarin Day", + "2011-12-23": "Christmas Eve (Observed)", + "2011-12-24": "Christmas Eve; Washington's Birthday", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day (Observed); Christmas Second Day; Day After Christmas", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (Observed)", + "2012-01-06": "Epiphany; Three Kings Day", + "2012-01-13": "Lee Jackson Day", + "2012-01-16": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2012-01-19": "Confederate Memorial Day", + "2012-02-12": "Lincoln's Birthday", + "2012-02-13": "Lincoln's Birthday (Observed)", + "2012-02-15": "Susan B. Anthony Day", + "2012-02-20": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2012-02-21": "Mardi Gras", + "2012-03-02": "Texas Independence Day", + "2012-03-05": "Casimir Pulaski Day; Guam Discovery Day", + "2012-03-06": "Town Meeting Day", + "2012-03-17": "Evacuation Day", + "2012-03-19": "Evacuation Day (Observed)", + "2012-03-22": "Emancipation Day", + "2012-03-23": "Commonwealth Covenant Day (Observed)", + "2012-03-24": "Commonwealth Covenant Day", + "2012-03-26": "Prince Jonah Kuhio Kalanianaole Day; Seward's Day", + "2012-03-31": "Cesar Chavez Day; Transfer Day", + "2012-04-05": "Holy Thursday", + "2012-04-06": "Good Friday", + "2012-04-09": "Easter Monday", + "2012-04-16": "Emancipation Day; Patriots' Day", + "2012-04-21": "San Jacinto Day", + "2012-04-23": "Confederate Memorial Day", + "2012-04-27": "Arbor Day", + "2012-05-08": "Primary Election Day; Truman Day", + "2012-05-28": "Memorial Day", + "2012-06-04": "Jefferson Davis Birthday", + "2012-06-11": "Kamehameha Day", + "2012-06-19": "Emancipation Day In Texas", + "2012-06-20": "West Virginia Day", + "2012-07-03": "Emancipation Day", + "2012-07-04": "Independence Day", + "2012-07-21": "Liberation Day (Guam)", + "2012-07-24": "Pioneer Day", + "2012-07-25": "Constitution Day", + "2012-08-13": "Victory Day", + "2012-08-16": "Bennington Battle Day", + "2012-08-17": "Statehood Day", + "2012-08-27": "Lyndon Baines Johnson Day", + "2012-09-03": "Labor Day", + "2012-10-08": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2012-10-18": "Alaska Day", + "2012-10-26": "Nevada Day", + "2012-11-01": "Liberty Day", + "2012-11-02": "All Souls' Day", + "2012-11-04": "Citizenship Day", + "2012-11-05": "Citizenship Day (Observed)", + "2012-11-06": "Election Day", + "2012-11-11": "Veterans Day", + "2012-11-12": "Veterans Day (Observed)", + "2012-11-19": "Discovery Day", + "2012-11-22": "Thanksgiving", + "2012-11-23": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; Robert E. Lee's Birthday", + "2012-12-07": "Constitution Day (Observed)", + "2012-12-08": "Constitution Day; Lady of Camarin Day", + "2012-12-24": "Christmas Eve; Washington's Birthday", + "2012-12-25": "Christmas Day", + "2012-12-26": "Christmas Second Day; Day After Christmas", + "2012-12-31": "New Year's Eve", + "2013-01-01": "New Year's Day", + "2013-01-06": "Epiphany; Three Kings Day", + "2013-01-18": "Lee Jackson Day", + "2013-01-19": "Confederate Memorial Day", + "2013-01-20": "Inauguration Day", + "2013-01-21": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Inauguration Day (Observed); Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2013-02-12": "Lincoln's Birthday; Mardi Gras", + "2013-02-15": "Susan B. Anthony Day", + "2013-02-18": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2013-03-02": "Texas Independence Day", + "2013-03-04": "Casimir Pulaski Day; Guam Discovery Day", + "2013-03-05": "Town Meeting Day", + "2013-03-17": "Evacuation Day", + "2013-03-18": "Evacuation Day (Observed)", + "2013-03-22": "Emancipation Day", + "2013-03-24": "Commonwealth Covenant Day", + "2013-03-25": "Commonwealth Covenant Day (Observed); Seward's Day", + "2013-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2013-03-28": "Holy Thursday", + "2013-03-29": "Good Friday", + "2013-03-31": "Cesar Chavez Day; Transfer Day", + "2013-04-01": "Cesar Chavez Day (Observed); Easter Monday", + "2013-04-15": "Patriots' Day", + "2013-04-16": "Emancipation Day", + "2013-04-21": "San Jacinto Day", + "2013-04-22": "Confederate Memorial Day", + "2013-04-26": "Arbor Day", + "2013-05-08": "Truman Day", + "2013-05-27": "Memorial Day", + "2013-06-03": "Jefferson Davis Birthday", + "2013-06-11": "Kamehameha Day", + "2013-06-19": "Emancipation Day In Texas", + "2013-06-20": "West Virginia Day", + "2013-07-03": "Emancipation Day", + "2013-07-04": "Independence Day", + "2013-07-21": "Liberation Day (Guam)", + "2013-07-24": "Pioneer Day", + "2013-07-25": "Constitution Day", + "2013-08-12": "Victory Day", + "2013-08-16": "Bennington Battle Day; Statehood Day", + "2013-08-27": "Lyndon Baines Johnson Day", + "2013-09-02": "Labor Day", + "2013-10-14": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2013-10-18": "Alaska Day", + "2013-10-25": "Nevada Day", + "2013-11-01": "Liberty Day", + "2013-11-02": "All Souls' Day", + "2013-11-04": "Citizenship Day", + "2013-11-11": "Veterans Day", + "2013-11-19": "Discovery Day", + "2013-11-28": "Thanksgiving", + "2013-11-29": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; Robert E. Lee's Birthday", + "2013-12-08": "Constitution Day; Lady of Camarin Day", + "2013-12-09": "Constitution Day (Observed)", + "2013-12-24": "Christmas Eve; Washington's Birthday", + "2013-12-25": "Christmas Day", + "2013-12-26": "Christmas Second Day; Day After Christmas", + "2013-12-31": "New Year's Eve", + "2014-01-01": "New Year's Day", + "2014-01-06": "Epiphany; Three Kings Day", + "2014-01-17": "Lee Jackson Day", + "2014-01-19": "Confederate Memorial Day", + "2014-01-20": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2014-02-12": "Lincoln's Birthday", + "2014-02-15": "Susan B. Anthony Day", + "2014-02-17": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2014-03-02": "Texas Independence Day", + "2014-03-03": "Casimir Pulaski Day; Guam Discovery Day", + "2014-03-04": "Mardi Gras; Town Meeting Day", + "2014-03-17": "Evacuation Day", + "2014-03-22": "Emancipation Day", + "2014-03-24": "Commonwealth Covenant Day", + "2014-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2014-03-31": "Cesar Chavez Day; Seward's Day; Transfer Day", + "2014-04-16": "Emancipation Day", + "2014-04-17": "Holy Thursday", + "2014-04-18": "Good Friday", + "2014-04-21": "Easter Monday; Patriots' Day; San Jacinto Day", + "2014-04-25": "Arbor Day", + "2014-04-28": "Confederate Memorial Day", + "2014-05-06": "Primary Election Day", + "2014-05-08": "Truman Day", + "2014-05-26": "Memorial Day", + "2014-06-02": "Jefferson Davis Birthday", + "2014-06-11": "Kamehameha Day", + "2014-06-19": "Emancipation Day In Texas", + "2014-06-20": "West Virginia Day", + "2014-07-03": "Emancipation Day", + "2014-07-04": "Independence Day", + "2014-07-21": "Liberation Day (Guam)", + "2014-07-24": "Pioneer Day", + "2014-07-25": "Constitution Day", + "2014-08-11": "Victory Day", + "2014-08-15": "Bennington Battle Day (Observed); Statehood Day", + "2014-08-16": "Bennington Battle Day", + "2014-08-27": "Lyndon Baines Johnson Day", + "2014-09-01": "Labor Day", + "2014-10-13": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2014-10-17": "Alaska Day (Observed)", + "2014-10-18": "Alaska Day", + "2014-10-31": "Nevada Day", + "2014-11-01": "Liberty Day", + "2014-11-02": "All Souls' Day", + "2014-11-04": "Citizenship Day; Election Day", + "2014-11-11": "Veterans Day", + "2014-11-19": "Discovery Day", + "2014-11-27": "Thanksgiving", + "2014-11-28": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; Robert E. Lee's Birthday", + "2014-12-08": "Constitution Day; Lady of Camarin Day", + "2014-12-24": "Christmas Eve", + "2014-12-25": "Christmas Day", + "2014-12-26": "Christmas Second Day; Day After Christmas; Washington's Birthday", + "2014-12-31": "New Year's Eve", + "2015-01-01": "New Year's Day", + "2015-01-06": "Epiphany; Three Kings Day", + "2015-01-16": "Lee Jackson Day", + "2015-01-19": "Confederate Memorial Day; Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2015-02-12": "Lincoln's Birthday", + "2015-02-15": "Susan B. Anthony Day", + "2015-02-16": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2015-02-17": "Mardi Gras", + "2015-03-02": "Casimir Pulaski Day; Guam Discovery Day; Texas Independence Day", + "2015-03-03": "Town Meeting Day", + "2015-03-17": "Evacuation Day", + "2015-03-22": "Emancipation Day", + "2015-03-23": "Emancipation Day (Observed)", + "2015-03-24": "Commonwealth Covenant Day", + "2015-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2015-03-30": "Seward's Day", + "2015-03-31": "Cesar Chavez Day; Transfer Day", + "2015-04-02": "Holy Thursday", + "2015-04-03": "Good Friday", + "2015-04-06": "Easter Monday", + "2015-04-16": "Emancipation Day", + "2015-04-20": "Patriots' Day", + "2015-04-21": "San Jacinto Day", + "2015-04-24": "Arbor Day", + "2015-04-27": "Confederate Memorial Day", + "2015-05-05": "Primary Election Day", + "2015-05-08": "Truman Day", + "2015-05-25": "Memorial Day", + "2015-06-01": "Jefferson Davis Birthday", + "2015-06-11": "Kamehameha Day", + "2015-06-19": "Emancipation Day In Texas; West Virginia Day (Observed)", + "2015-06-20": "West Virginia Day", + "2015-07-03": "Emancipation Day; Independence Day (Observed)", + "2015-07-04": "Independence Day", + "2015-07-21": "Liberation Day (Guam)", + "2015-07-24": "Pioneer Day", + "2015-07-25": "Constitution Day", + "2015-08-10": "Victory Day", + "2015-08-16": "Bennington Battle Day", + "2015-08-17": "Bennington Battle Day (Observed)", + "2015-08-21": "Statehood Day", + "2015-08-27": "Lyndon Baines Johnson Day", + "2015-09-07": "Labor Day", + "2015-10-12": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2015-10-18": "Alaska Day", + "2015-10-19": "Alaska Day (Observed)", + "2015-10-30": "Nevada Day", + "2015-11-01": "Liberty Day", + "2015-11-02": "All Souls' Day", + "2015-11-03": "Election Day", + "2015-11-04": "Citizenship Day", + "2015-11-11": "Veterans Day", + "2015-11-19": "Discovery Day", + "2015-11-26": "Thanksgiving", + "2015-11-27": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; Robert E. Lee's Birthday", + "2015-12-08": "Constitution Day; Lady of Camarin Day", + "2015-12-24": "Christmas Eve; Washington's Birthday", + "2015-12-25": "Christmas Day", + "2015-12-26": "Christmas Second Day; Day After Christmas", + "2015-12-28": "Day After Christmas (Observed)", + "2015-12-31": "New Year's Eve", + "2016-01-01": "New Year's Day", + "2016-01-06": "Epiphany; Three Kings Day", + "2016-01-15": "Lee Jackson Day", + "2016-01-18": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2016-01-19": "Confederate Memorial Day", + "2016-02-09": "Mardi Gras", + "2016-02-12": "Lincoln's Birthday", + "2016-02-15": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Susan B. Anthony Day; Washington's Birthday", + "2016-03-01": "Town Meeting Day", + "2016-03-02": "Texas Independence Day", + "2016-03-07": "Casimir Pulaski Day; Guam Discovery Day", + "2016-03-17": "Evacuation Day", + "2016-03-22": "Emancipation Day", + "2016-03-24": "Commonwealth Covenant Day; Holy Thursday", + "2016-03-25": "Good Friday; Prince Jonah Kuhio Kalanianaole Day (Observed)", + "2016-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2016-03-28": "Easter Monday; Seward's Day", + "2016-03-31": "Cesar Chavez Day; Transfer Day", + "2016-04-15": "Emancipation Day (Observed)", + "2016-04-16": "Emancipation Day", + "2016-04-18": "Patriots' Day", + "2016-04-21": "San Jacinto Day", + "2016-04-25": "Confederate Memorial Day; State Holiday", + "2016-04-29": "Arbor Day", + "2016-05-03": "Primary Election Day", + "2016-05-08": "Truman Day", + "2016-05-09": "Truman Day (Observed)", + "2016-05-30": "Memorial Day", + "2016-06-06": "Jefferson Davis Birthday", + "2016-06-10": "Kamehameha Day (Observed)", + "2016-06-11": "Kamehameha Day", + "2016-06-19": "Emancipation Day In Texas", + "2016-06-20": "West Virginia Day", + "2016-07-03": "Emancipation Day", + "2016-07-04": "Independence Day", + "2016-07-21": "Liberation Day (Guam)", + "2016-07-24": "Pioneer Day", + "2016-07-25": "Constitution Day; Pioneer Day (Observed)", + "2016-08-08": "Victory Day", + "2016-08-16": "Bennington Battle Day", + "2016-08-19": "Statehood Day", + "2016-08-27": "Lyndon Baines Johnson Day", + "2016-09-05": "Labor Day", + "2016-10-10": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2016-10-18": "Alaska Day", + "2016-10-28": "Nevada Day", + "2016-11-01": "Liberty Day", + "2016-11-02": "All Souls' Day", + "2016-11-04": "Citizenship Day", + "2016-11-08": "Election Day", + "2016-11-11": "Veterans Day", + "2016-11-19": "Discovery Day", + "2016-11-24": "Thanksgiving", + "2016-11-25": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2016-12-08": "Constitution Day; Lady of Camarin Day", + "2016-12-23": "Christmas Eve (Observed)", + "2016-12-24": "Christmas Eve; Washington's Birthday", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day (Observed); Christmas Second Day; Day After Christmas", + "2016-12-27": "Day After Christmas (Observed)", + "2016-12-30": "New Year's Eve (Observed)", + "2016-12-31": "New Year's Eve", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (Observed)", + "2017-01-06": "Epiphany; Three Kings Day", + "2017-01-13": "Lee Jackson Day", + "2017-01-16": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2017-01-19": "Confederate Memorial Day", + "2017-01-20": "Inauguration Day", + "2017-02-12": "Lincoln's Birthday", + "2017-02-13": "Lincoln's Birthday (Observed)", + "2017-02-15": "Susan B. Anthony Day", + "2017-02-20": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2017-02-28": "Mardi Gras", + "2017-03-02": "Texas Independence Day", + "2017-03-06": "Casimir Pulaski Day; Guam Discovery Day", + "2017-03-07": "Town Meeting Day", + "2017-03-17": "Evacuation Day", + "2017-03-22": "Emancipation Day", + "2017-03-24": "Commonwealth Covenant Day", + "2017-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2017-03-27": "Prince Jonah Kuhio Kalanianaole Day (Observed); Seward's Day", + "2017-03-31": "Cesar Chavez Day; Transfer Day", + "2017-04-13": "Holy Thursday", + "2017-04-14": "Good Friday", + "2017-04-16": "Emancipation Day", + "2017-04-17": "Easter Monday; Emancipation Day (Observed); Patriots' Day", + "2017-04-21": "San Jacinto Day", + "2017-04-24": "Confederate Memorial Day; State Holiday", + "2017-04-28": "Arbor Day", + "2017-05-02": "Primary Election Day", + "2017-05-08": "Truman Day", + "2017-05-29": "Memorial Day", + "2017-06-05": "Jefferson Davis Birthday", + "2017-06-11": "Kamehameha Day", + "2017-06-12": "Kamehameha Day (Observed)", + "2017-06-19": "Emancipation Day In Texas", + "2017-06-20": "West Virginia Day", + "2017-07-03": "Emancipation Day", + "2017-07-04": "Independence Day", + "2017-07-21": "Liberation Day (Guam)", + "2017-07-24": "Pioneer Day", + "2017-07-25": "Constitution Day", + "2017-08-14": "Victory Day", + "2017-08-16": "Bennington Battle Day", + "2017-08-18": "Statehood Day", + "2017-08-27": "Lyndon Baines Johnson Day", + "2017-09-04": "Labor Day", + "2017-10-09": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2017-10-18": "Alaska Day", + "2017-10-27": "Nevada Day", + "2017-11-01": "Liberty Day", + "2017-11-02": "All Souls' Day", + "2017-11-03": "Citizenship Day (Observed)", + "2017-11-04": "Citizenship Day", + "2017-11-07": "Election Day", + "2017-11-10": "Veterans Day (Observed)", + "2017-11-11": "Veterans Day", + "2017-11-19": "Discovery Day", + "2017-11-20": "Discovery Day (Observed)", + "2017-11-23": "Thanksgiving", + "2017-11-24": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2017-12-08": "Constitution Day; Lady of Camarin Day", + "2017-12-22": "Christmas Eve (Observed)", + "2017-12-24": "Christmas Eve; Washington's Birthday", + "2017-12-25": "Christmas Day", + "2017-12-26": "Christmas Second Day; Day After Christmas", + "2017-12-31": "New Year's Eve", + "2018-01-01": "New Year's Day", + "2018-01-06": "Epiphany; Three Kings Day", + "2018-01-12": "Lee Jackson Day", + "2018-01-15": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2018-01-19": "Confederate Memorial Day", + "2018-02-12": "Lincoln's Birthday", + "2018-02-13": "Mardi Gras", + "2018-02-15": "Susan B. Anthony Day", + "2018-02-19": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2018-03-02": "Texas Independence Day", + "2018-03-05": "Casimir Pulaski Day; Guam Discovery Day", + "2018-03-06": "Town Meeting Day", + "2018-03-17": "Evacuation Day", + "2018-03-19": "Evacuation Day (Observed)", + "2018-03-22": "Emancipation Day", + "2018-03-23": "Commonwealth Covenant Day (Observed)", + "2018-03-24": "Commonwealth Covenant Day", + "2018-03-26": "Prince Jonah Kuhio Kalanianaole Day; Seward's Day", + "2018-03-29": "Holy Thursday", + "2018-03-30": "Good Friday", + "2018-03-31": "Cesar Chavez Day; Transfer Day", + "2018-04-02": "Easter Monday", + "2018-04-16": "Emancipation Day; Patriots' Day", + "2018-04-21": "San Jacinto Day", + "2018-04-23": "Confederate Memorial Day; State Holiday", + "2018-04-27": "Arbor Day", + "2018-05-08": "Primary Election Day; Truman Day", + "2018-05-28": "Memorial Day", + "2018-06-04": "Jefferson Davis Birthday", + "2018-06-11": "Kamehameha Day", + "2018-06-19": "Emancipation Day In Texas", + "2018-06-20": "West Virginia Day", + "2018-07-03": "Emancipation Day", + "2018-07-04": "Independence Day", + "2018-07-21": "Liberation Day (Guam)", + "2018-07-24": "Pioneer Day", + "2018-07-25": "Constitution Day", + "2018-08-13": "Victory Day", + "2018-08-16": "Bennington Battle Day", + "2018-08-17": "Statehood Day", + "2018-08-27": "Lyndon Baines Johnson Day", + "2018-09-03": "Labor Day", + "2018-10-08": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2018-10-18": "Alaska Day", + "2018-10-26": "Nevada Day", + "2018-11-01": "Liberty Day", + "2018-11-02": "All Souls' Day", + "2018-11-04": "Citizenship Day", + "2018-11-05": "Citizenship Day (Observed)", + "2018-11-06": "Election Day", + "2018-11-11": "Veterans Day", + "2018-11-12": "Veterans Day (Observed)", + "2018-11-19": "Discovery Day", + "2018-11-22": "Thanksgiving", + "2018-11-23": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2018-12-07": "Constitution Day (Observed)", + "2018-12-08": "Constitution Day; Lady of Camarin Day", + "2018-12-24": "Christmas Eve; Washington's Birthday", + "2018-12-25": "Christmas Day", + "2018-12-26": "Christmas Second Day; Day After Christmas", + "2018-12-31": "New Year's Eve", + "2019-01-01": "New Year's Day", + "2019-01-06": "Epiphany; Three Kings Day", + "2019-01-18": "Lee Jackson Day", + "2019-01-19": "Confederate Memorial Day", + "2019-01-21": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2019-02-12": "Lincoln's Birthday", + "2019-02-15": "Susan B. Anthony Day", + "2019-02-18": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2019-03-02": "Texas Independence Day", + "2019-03-04": "Casimir Pulaski Day; Guam Discovery Day", + "2019-03-05": "Mardi Gras; Town Meeting Day", + "2019-03-17": "Evacuation Day", + "2019-03-18": "Evacuation Day (Observed)", + "2019-03-22": "Emancipation Day", + "2019-03-24": "Commonwealth Covenant Day", + "2019-03-25": "Commonwealth Covenant Day (Observed); Seward's Day", + "2019-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2019-03-31": "Cesar Chavez Day; Transfer Day", + "2019-04-01": "Cesar Chavez Day (Observed)", + "2019-04-15": "Patriots' Day", + "2019-04-16": "Emancipation Day", + "2019-04-18": "Holy Thursday", + "2019-04-19": "Good Friday", + "2019-04-21": "San Jacinto Day", + "2019-04-22": "Confederate Memorial Day; Easter Monday; State Holiday", + "2019-04-26": "Arbor Day", + "2019-05-07": "Primary Election Day", + "2019-05-08": "Truman Day", + "2019-05-27": "Memorial Day", + "2019-06-03": "Jefferson Davis Birthday", + "2019-06-11": "Kamehameha Day", + "2019-06-19": "Emancipation Day In Texas", + "2019-06-20": "West Virginia Day", + "2019-07-03": "Emancipation Day", + "2019-07-04": "Independence Day", + "2019-07-21": "Liberation Day (Guam)", + "2019-07-24": "Pioneer Day", + "2019-07-25": "Constitution Day", + "2019-08-12": "Victory Day", + "2019-08-16": "Bennington Battle Day; Statehood Day", + "2019-08-27": "Lyndon Baines Johnson Day", + "2019-09-02": "Labor Day", + "2019-10-14": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2019-10-18": "Alaska Day", + "2019-10-25": "Nevada Day", + "2019-11-01": "Liberty Day", + "2019-11-02": "All Souls' Day", + "2019-11-04": "Citizenship Day", + "2019-11-05": "Election Day", + "2019-11-11": "Veterans Day", + "2019-11-19": "Discovery Day", + "2019-11-28": "Thanksgiving", + "2019-11-29": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2019-12-08": "Constitution Day; Lady of Camarin Day", + "2019-12-09": "Constitution Day (Observed)", + "2019-12-24": "Christmas Eve; Washington's Birthday", + "2019-12-25": "Christmas Day", + "2019-12-26": "Christmas Second Day; Day After Christmas", + "2019-12-31": "New Year's Eve", + "2020-01-01": "New Year's Day", + "2020-01-06": "Epiphany; Three Kings Day", + "2020-01-17": "Lee Jackson Day", + "2020-01-19": "Confederate Memorial Day", + "2020-01-20": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2020-02-12": "Lincoln's Birthday", + "2020-02-15": "Susan B. Anthony Day", + "2020-02-17": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2020-02-25": "Mardi Gras", + "2020-03-02": "Casimir Pulaski Day; Guam Discovery Day; Texas Independence Day", + "2020-03-03": "Town Meeting Day", + "2020-03-17": "Evacuation Day", + "2020-03-22": "Emancipation Day", + "2020-03-23": "Emancipation Day (Observed)", + "2020-03-24": "Commonwealth Covenant Day", + "2020-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2020-03-30": "Seward's Day", + "2020-03-31": "Cesar Chavez Day; Transfer Day", + "2020-04-09": "Holy Thursday", + "2020-04-10": "Good Friday; State Holiday", + "2020-04-13": "Easter Monday", + "2020-04-16": "Emancipation Day", + "2020-04-20": "Patriots' Day", + "2020-04-21": "San Jacinto Day", + "2020-04-24": "Arbor Day", + "2020-04-27": "Confederate Memorial Day", + "2020-05-05": "Primary Election Day", + "2020-05-08": "Truman Day", + "2020-05-25": "Memorial Day", + "2020-06-01": "Jefferson Davis Birthday", + "2020-06-11": "Kamehameha Day", + "2020-06-19": "Emancipation Day In Texas; West Virginia Day (Observed)", + "2020-06-20": "West Virginia Day", + "2020-07-03": "Emancipation Day; Independence Day (Observed)", + "2020-07-04": "Independence Day", + "2020-07-21": "Liberation Day (Guam)", + "2020-07-24": "Pioneer Day", + "2020-07-25": "Constitution Day", + "2020-08-10": "Victory Day", + "2020-08-16": "Bennington Battle Day", + "2020-08-17": "Bennington Battle Day (Observed)", + "2020-08-21": "Statehood Day", + "2020-08-27": "Lyndon Baines Johnson Day", + "2020-09-07": "Labor Day", + "2020-10-12": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2020-10-18": "Alaska Day", + "2020-10-19": "Alaska Day (Observed)", + "2020-10-30": "Nevada Day", + "2020-11-01": "Liberty Day", + "2020-11-02": "All Souls' Day", + "2020-11-03": "Election Day", + "2020-11-04": "Citizenship Day", + "2020-11-11": "Veterans Day", + "2020-11-19": "Discovery Day", + "2020-11-26": "Thanksgiving", + "2020-11-27": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2020-12-08": "Constitution Day; Lady of Camarin Day", + "2020-12-24": "Christmas Eve; Washington's Birthday", + "2020-12-25": "Christmas Day", + "2020-12-26": "Christmas Second Day; Day After Christmas", + "2020-12-28": "Day After Christmas (Observed)", + "2020-12-31": "New Year's Eve", + "2021-01-01": "New Year's Day", + "2021-01-06": "Epiphany; Three Kings Day", + "2021-01-18": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2021-01-19": "Confederate Memorial Day", + "2021-01-20": "Inauguration Day", + "2021-02-12": "Lincoln's Birthday", + "2021-02-15": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Susan B. Anthony Day; Washington's Birthday", + "2021-02-16": "Mardi Gras", + "2021-03-01": "Casimir Pulaski Day; Guam Discovery Day", + "2021-03-02": "Texas Independence Day; Town Meeting Day", + "2021-03-17": "Evacuation Day", + "2021-03-22": "Emancipation Day", + "2021-03-24": "Commonwealth Covenant Day", + "2021-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2021-03-29": "Seward's Day", + "2021-03-31": "Cesar Chavez Day; Transfer Day", + "2021-04-01": "Holy Thursday", + "2021-04-02": "Good Friday", + "2021-04-05": "Easter Monday", + "2021-04-16": "Emancipation Day", + "2021-04-19": "Patriots' Day", + "2021-04-21": "San Jacinto Day", + "2021-04-26": "Confederate Memorial Day; State Holiday", + "2021-04-30": "Arbor Day", + "2021-05-04": "Primary Election Day", + "2021-05-07": "Truman Day (Observed)", + "2021-05-08": "Truman Day", + "2021-05-31": "Memorial Day", + "2021-06-07": "Jefferson Davis Birthday", + "2021-06-11": "Kamehameha Day", + "2021-06-18": "Emancipation Day In Texas (Observed); Juneteenth National Independence Day (Observed)", + "2021-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", + "2021-06-20": "West Virginia Day", + "2021-06-21": "West Virginia Day (Observed)", + "2021-07-03": "Emancipation Day", + "2021-07-04": "Independence Day", + "2021-07-05": "Independence Day (Observed)", + "2021-07-21": "Liberation Day (Guam)", + "2021-07-23": "Pioneer Day (Observed)", + "2021-07-24": "Pioneer Day", + "2021-07-25": "Constitution Day", + "2021-07-26": "Constitution Day (Observed)", + "2021-08-09": "Victory Day", + "2021-08-16": "Bennington Battle Day", + "2021-08-20": "Statehood Day", + "2021-08-27": "Lyndon Baines Johnson Day", + "2021-09-06": "Labor Day", + "2021-10-11": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2021-10-18": "Alaska Day", + "2021-10-29": "Nevada Day", + "2021-11-01": "Liberty Day", + "2021-11-02": "All Souls' Day; Election Day", + "2021-11-04": "Citizenship Day", + "2021-11-11": "Veterans Day", + "2021-11-19": "Discovery Day", + "2021-11-25": "Thanksgiving", + "2021-11-26": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2021-12-08": "Constitution Day; Lady of Camarin Day", + "2021-12-23": "Christmas Eve (Observed)", + "2021-12-24": "Christmas Day (Observed); Christmas Eve; Washington's Birthday", + "2021-12-25": "Christmas Day", + "2021-12-26": "Christmas Second Day; Day After Christmas", + "2021-12-27": "Day After Christmas (Observed)", + "2021-12-31": "New Year's Day (Observed); New Year's Eve", + "2022-01-01": "New Year's Day", + "2022-01-06": "Epiphany; Three Kings Day", + "2022-01-17": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2022-01-19": "Confederate Memorial Day", + "2022-02-11": "Lincoln's Birthday (Observed)", + "2022-02-12": "Lincoln's Birthday", + "2022-02-15": "Susan B. Anthony Day", + "2022-02-21": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2022-03-01": "Mardi Gras; Town Meeting Day", + "2022-03-02": "Texas Independence Day", + "2022-03-07": "Casimir Pulaski Day; Guam Discovery Day", + "2022-03-17": "Evacuation Day", + "2022-03-22": "Emancipation Day", + "2022-03-24": "Commonwealth Covenant Day", + "2022-03-25": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "2022-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2022-03-28": "Seward's Day", + "2022-03-31": "Cesar Chavez Day; Transfer Day", + "2022-04-14": "Holy Thursday", + "2022-04-15": "Emancipation Day (Observed); Good Friday", + "2022-04-16": "Emancipation Day", + "2022-04-18": "Easter Monday; Patriots' Day", + "2022-04-21": "San Jacinto Day", + "2022-04-25": "Confederate Memorial Day; State Holiday", + "2022-04-29": "Arbor Day", + "2022-05-03": "Primary Election Day", + "2022-05-08": "Truman Day", + "2022-05-09": "Truman Day (Observed)", + "2022-05-30": "Memorial Day", + "2022-06-06": "Jefferson Davis Birthday", + "2022-06-10": "Kamehameha Day (Observed)", + "2022-06-11": "Kamehameha Day", + "2022-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", + "2022-06-20": "Emancipation Day In Texas (Observed); Juneteenth National Independence Day (Observed); West Virginia Day", + "2022-07-03": "Emancipation Day", + "2022-07-04": "Independence Day", + "2022-07-21": "Liberation Day (Guam)", + "2022-07-24": "Pioneer Day", + "2022-07-25": "Constitution Day; Pioneer Day (Observed)", + "2022-08-08": "Victory Day", + "2022-08-16": "Bennington Battle Day", + "2022-08-19": "Statehood Day", + "2022-08-27": "Lyndon Baines Johnson Day", + "2022-09-05": "Labor Day", + "2022-10-10": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2022-10-18": "Alaska Day", + "2022-10-28": "Nevada Day", + "2022-11-01": "Liberty Day", + "2022-11-02": "All Souls' Day", + "2022-11-04": "Citizenship Day", + "2022-11-08": "Election Day", + "2022-11-11": "Veterans Day", + "2022-11-19": "Discovery Day", + "2022-11-24": "Thanksgiving", + "2022-11-25": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2022-12-08": "Constitution Day; Lady of Camarin Day", + "2022-12-23": "Christmas Eve (Observed)", + "2022-12-24": "Christmas Eve; Washington's Birthday", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day (Observed); Christmas Second Day; Day After Christmas", + "2022-12-27": "Day After Christmas (Observed)", + "2022-12-30": "New Year's Eve (Observed)", + "2022-12-31": "New Year's Eve", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (Observed)", + "2023-01-06": "Epiphany; Three Kings Day", + "2023-01-16": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2023-01-19": "Confederate Memorial Day", + "2023-02-12": "Lincoln's Birthday", + "2023-02-13": "Lincoln's Birthday (Observed)", + "2023-02-15": "Susan B. Anthony Day", + "2023-02-20": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2023-02-21": "Mardi Gras", + "2023-03-02": "Texas Independence Day", + "2023-03-06": "Casimir Pulaski Day; Guam Discovery Day", + "2023-03-07": "Town Meeting Day", + "2023-03-17": "Evacuation Day", + "2023-03-22": "Emancipation Day", + "2023-03-24": "Commonwealth Covenant Day", + "2023-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2023-03-27": "Prince Jonah Kuhio Kalanianaole Day (Observed); Seward's Day", + "2023-03-31": "Cesar Chavez Day; Transfer Day", + "2023-04-06": "Holy Thursday", + "2023-04-07": "Good Friday", + "2023-04-10": "Easter Monday", + "2023-04-16": "Emancipation Day", + "2023-04-17": "Emancipation Day (Observed); Patriots' Day", + "2023-04-21": "San Jacinto Day", + "2023-04-24": "Confederate Memorial Day; State Holiday", + "2023-04-28": "Arbor Day", + "2023-05-02": "Primary Election Day", + "2023-05-08": "Truman Day", + "2023-05-29": "Memorial Day", + "2023-06-05": "Jefferson Davis Birthday", + "2023-06-11": "Kamehameha Day", + "2023-06-12": "Kamehameha Day (Observed)", + "2023-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", + "2023-06-20": "West Virginia Day", + "2023-07-03": "Emancipation Day", + "2023-07-04": "Independence Day", + "2023-07-21": "Liberation Day (Guam)", + "2023-07-24": "Pioneer Day", + "2023-07-25": "Constitution Day", + "2023-08-14": "Victory Day", + "2023-08-16": "Bennington Battle Day", + "2023-08-18": "Statehood Day", + "2023-08-27": "Lyndon Baines Johnson Day", + "2023-09-04": "Labor Day", + "2023-10-09": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2023-10-18": "Alaska Day", + "2023-10-27": "Nevada Day", + "2023-11-01": "Liberty Day", + "2023-11-02": "All Souls' Day", + "2023-11-03": "Citizenship Day (Observed)", + "2023-11-04": "Citizenship Day", + "2023-11-07": "Election Day", + "2023-11-10": "Veterans Day (Observed)", + "2023-11-11": "Veterans Day", + "2023-11-19": "Discovery Day", + "2023-11-20": "Discovery Day (Observed)", + "2023-11-23": "Thanksgiving", + "2023-11-24": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2023-12-08": "Constitution Day; Lady of Camarin Day", + "2023-12-22": "Christmas Eve (Observed)", + "2023-12-24": "Christmas Eve; Washington's Birthday", + "2023-12-25": "Christmas Day", + "2023-12-26": "Christmas Second Day; Day After Christmas", + "2023-12-31": "New Year's Eve", + "2024-01-01": "New Year's Day", + "2024-01-06": "Epiphany; Three Kings Day", + "2024-01-15": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2024-01-19": "Confederate Memorial Day", + "2024-02-12": "Lincoln's Birthday", + "2024-02-13": "Mardi Gras", + "2024-02-15": "Susan B. Anthony Day", + "2024-02-19": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2024-03-02": "Texas Independence Day", + "2024-03-04": "Casimir Pulaski Day; Guam Discovery Day", + "2024-03-05": "Town Meeting Day", + "2024-03-17": "Evacuation Day", + "2024-03-18": "Evacuation Day (Observed)", + "2024-03-22": "Emancipation Day", + "2024-03-24": "Commonwealth Covenant Day", + "2024-03-25": "Commonwealth Covenant Day (Observed); Seward's Day", + "2024-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2024-03-28": "Holy Thursday", + "2024-03-29": "Good Friday", + "2024-03-31": "Cesar Chavez Day; Transfer Day", + "2024-04-01": "Cesar Chavez Day (Observed); Easter Monday", + "2024-04-15": "Patriots' Day", + "2024-04-16": "Emancipation Day", + "2024-04-21": "San Jacinto Day", + "2024-04-22": "Confederate Memorial Day; State Holiday", + "2024-04-26": "Arbor Day", + "2024-05-07": "Primary Election Day", + "2024-05-08": "Truman Day", + "2024-05-27": "Memorial Day", + "2024-06-03": "Jefferson Davis Birthday", + "2024-06-11": "Kamehameha Day", + "2024-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", + "2024-06-20": "West Virginia Day", + "2024-07-03": "Emancipation Day", + "2024-07-04": "Independence Day", + "2024-07-21": "Liberation Day (Guam)", + "2024-07-24": "Pioneer Day", + "2024-07-25": "Constitution Day", + "2024-08-12": "Victory Day", + "2024-08-16": "Bennington Battle Day; Statehood Day", + "2024-08-27": "Lyndon Baines Johnson Day", + "2024-09-02": "Labor Day", + "2024-10-14": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2024-10-18": "Alaska Day", + "2024-10-25": "Nevada Day", + "2024-11-01": "Liberty Day", + "2024-11-02": "All Souls' Day", + "2024-11-04": "Citizenship Day", + "2024-11-05": "Election Day", + "2024-11-11": "Veterans Day", + "2024-11-19": "Discovery Day", + "2024-11-28": "Thanksgiving", + "2024-11-29": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2024-12-08": "Constitution Day; Lady of Camarin Day", + "2024-12-09": "Constitution Day (Observed)", + "2024-12-24": "Christmas Eve; Washington's Birthday", + "2024-12-25": "Christmas Day", + "2024-12-26": "Christmas Second Day; Day After Christmas", + "2024-12-31": "New Year's Eve", + "2025-01-01": "New Year's Day", + "2025-01-06": "Epiphany; Three Kings Day", + "2025-01-19": "Confederate Memorial Day", + "2025-01-20": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Inauguration Day; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2025-02-12": "Lincoln's Birthday", + "2025-02-15": "Susan B. Anthony Day", + "2025-02-17": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2025-03-02": "Texas Independence Day", + "2025-03-03": "Casimir Pulaski Day; Guam Discovery Day", + "2025-03-04": "Mardi Gras; Town Meeting Day", + "2025-03-17": "Evacuation Day", + "2025-03-22": "Emancipation Day", + "2025-03-24": "Commonwealth Covenant Day", + "2025-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2025-03-31": "Cesar Chavez Day; Seward's Day; Transfer Day", + "2025-04-16": "Emancipation Day", + "2025-04-17": "Holy Thursday", + "2025-04-18": "Good Friday", + "2025-04-21": "Easter Monday; Patriots' Day; San Jacinto Day", + "2025-04-25": "Arbor Day", + "2025-04-28": "Confederate Memorial Day; State Holiday", + "2025-05-06": "Primary Election Day", + "2025-05-08": "Truman Day", + "2025-05-26": "Memorial Day", + "2025-06-02": "Jefferson Davis Birthday", + "2025-06-11": "Kamehameha Day", + "2025-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", + "2025-06-20": "West Virginia Day", + "2025-07-03": "Emancipation Day", + "2025-07-04": "Independence Day", + "2025-07-21": "Liberation Day (Guam)", + "2025-07-24": "Pioneer Day", + "2025-07-25": "Constitution Day", + "2025-08-11": "Victory Day", + "2025-08-15": "Bennington Battle Day (Observed); Statehood Day", + "2025-08-16": "Bennington Battle Day", + "2025-08-27": "Lyndon Baines Johnson Day", + "2025-09-01": "Labor Day", + "2025-10-13": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2025-10-17": "Alaska Day (Observed)", + "2025-10-18": "Alaska Day", + "2025-10-31": "Nevada Day", + "2025-11-01": "Liberty Day", + "2025-11-02": "All Souls' Day", + "2025-11-04": "Citizenship Day; Election Day", + "2025-11-11": "Veterans Day", + "2025-11-19": "Discovery Day", + "2025-11-27": "Thanksgiving", + "2025-11-28": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2025-12-08": "Constitution Day; Lady of Camarin Day", + "2025-12-24": "Christmas Eve", + "2025-12-25": "Christmas Day", + "2025-12-26": "Christmas Second Day; Day After Christmas; Washington's Birthday", + "2025-12-31": "New Year's Eve", + "2026-01-01": "New Year's Day", + "2026-01-06": "Epiphany; Three Kings Day", + "2026-01-19": "Confederate Memorial Day; Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2026-02-12": "Lincoln's Birthday", + "2026-02-15": "Susan B. Anthony Day", + "2026-02-16": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2026-02-17": "Mardi Gras", + "2026-03-02": "Casimir Pulaski Day; Guam Discovery Day; Texas Independence Day", + "2026-03-03": "Town Meeting Day", + "2026-03-17": "Evacuation Day", + "2026-03-22": "Emancipation Day", + "2026-03-23": "Emancipation Day (Observed)", + "2026-03-24": "Commonwealth Covenant Day", + "2026-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2026-03-30": "Seward's Day", + "2026-03-31": "Cesar Chavez Day; Transfer Day", + "2026-04-02": "Holy Thursday", + "2026-04-03": "Good Friday", + "2026-04-06": "Easter Monday", + "2026-04-16": "Emancipation Day", + "2026-04-20": "Patriots' Day", + "2026-04-21": "San Jacinto Day", + "2026-04-24": "Arbor Day", + "2026-04-27": "Confederate Memorial Day; State Holiday", + "2026-05-05": "Primary Election Day", + "2026-05-08": "Truman Day", + "2026-05-25": "Memorial Day", + "2026-06-01": "Jefferson Davis Birthday", + "2026-06-11": "Kamehameha Day", + "2026-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day; West Virginia Day (Observed)", + "2026-06-20": "West Virginia Day", + "2026-07-03": "Emancipation Day; Independence Day (Observed)", + "2026-07-04": "Independence Day", + "2026-07-21": "Liberation Day (Guam)", + "2026-07-24": "Pioneer Day", + "2026-07-25": "Constitution Day", + "2026-08-10": "Victory Day", + "2026-08-16": "Bennington Battle Day", + "2026-08-17": "Bennington Battle Day (Observed)", + "2026-08-21": "Statehood Day", + "2026-08-27": "Lyndon Baines Johnson Day", + "2026-09-07": "Labor Day", + "2026-10-12": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2026-10-18": "Alaska Day", + "2026-10-19": "Alaska Day (Observed)", + "2026-10-30": "Nevada Day", + "2026-11-01": "Liberty Day", + "2026-11-02": "All Souls' Day", + "2026-11-03": "Election Day", + "2026-11-04": "Citizenship Day", + "2026-11-11": "Veterans Day", + "2026-11-19": "Discovery Day", + "2026-11-26": "Thanksgiving", + "2026-11-27": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2026-12-08": "Constitution Day; Lady of Camarin Day", + "2026-12-24": "Christmas Eve; Washington's Birthday", + "2026-12-25": "Christmas Day", + "2026-12-26": "Christmas Second Day; Day After Christmas", + "2026-12-28": "Day After Christmas (Observed)", + "2026-12-31": "New Year's Eve", + "2027-01-01": "New Year's Day", + "2027-01-06": "Epiphany; Three Kings Day", + "2027-01-18": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2027-01-19": "Confederate Memorial Day", + "2027-02-09": "Mardi Gras", + "2027-02-12": "Lincoln's Birthday", + "2027-02-15": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Susan B. Anthony Day; Washington's Birthday", + "2027-03-01": "Casimir Pulaski Day; Guam Discovery Day", + "2027-03-02": "Texas Independence Day; Town Meeting Day", + "2027-03-17": "Evacuation Day", + "2027-03-22": "Emancipation Day", + "2027-03-24": "Commonwealth Covenant Day", + "2027-03-25": "Holy Thursday", + "2027-03-26": "Good Friday; Prince Jonah Kuhio Kalanianaole Day", + "2027-03-29": "Easter Monday; Seward's Day", + "2027-03-31": "Cesar Chavez Day; Transfer Day", + "2027-04-16": "Emancipation Day", + "2027-04-19": "Patriots' Day", + "2027-04-21": "San Jacinto Day", + "2027-04-26": "Confederate Memorial Day; State Holiday", + "2027-04-30": "Arbor Day", + "2027-05-04": "Primary Election Day", + "2027-05-07": "Truman Day (Observed)", + "2027-05-08": "Truman Day", + "2027-05-31": "Memorial Day", + "2027-06-07": "Jefferson Davis Birthday", + "2027-06-11": "Kamehameha Day", + "2027-06-18": "Emancipation Day In Texas (Observed); Juneteenth National Independence Day (Observed)", + "2027-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", + "2027-06-20": "West Virginia Day", + "2027-06-21": "West Virginia Day (Observed)", + "2027-07-03": "Emancipation Day", + "2027-07-04": "Independence Day", + "2027-07-05": "Independence Day (Observed)", + "2027-07-21": "Liberation Day (Guam)", + "2027-07-23": "Pioneer Day (Observed)", + "2027-07-24": "Pioneer Day", + "2027-07-25": "Constitution Day", + "2027-07-26": "Constitution Day (Observed)", + "2027-08-09": "Victory Day", + "2027-08-16": "Bennington Battle Day", + "2027-08-20": "Statehood Day", + "2027-08-27": "Lyndon Baines Johnson Day", + "2027-09-06": "Labor Day", + "2027-10-11": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2027-10-18": "Alaska Day", + "2027-10-29": "Nevada Day", + "2027-11-01": "Liberty Day", + "2027-11-02": "All Souls' Day; Election Day", + "2027-11-04": "Citizenship Day", + "2027-11-11": "Veterans Day", + "2027-11-19": "Discovery Day", + "2027-11-25": "Thanksgiving", + "2027-11-26": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2027-12-08": "Constitution Day; Lady of Camarin Day", + "2027-12-23": "Christmas Eve (Observed)", + "2027-12-24": "Christmas Day (Observed); Christmas Eve; Washington's Birthday", + "2027-12-25": "Christmas Day", + "2027-12-26": "Christmas Second Day; Day After Christmas", + "2027-12-27": "Day After Christmas (Observed)", + "2027-12-31": "New Year's Day (Observed); New Year's Eve", + "2028-01-01": "New Year's Day", + "2028-01-06": "Epiphany; Three Kings Day", + "2028-01-17": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2028-01-19": "Confederate Memorial Day", + "2028-02-11": "Lincoln's Birthday (Observed)", + "2028-02-12": "Lincoln's Birthday", + "2028-02-15": "Susan B. Anthony Day", + "2028-02-21": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2028-02-29": "Mardi Gras", + "2028-03-02": "Texas Independence Day", + "2028-03-06": "Casimir Pulaski Day; Guam Discovery Day", + "2028-03-07": "Town Meeting Day", + "2028-03-17": "Evacuation Day", + "2028-03-22": "Emancipation Day", + "2028-03-24": "Commonwealth Covenant Day", + "2028-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2028-03-27": "Prince Jonah Kuhio Kalanianaole Day (Observed); Seward's Day", + "2028-03-31": "Cesar Chavez Day; Transfer Day", + "2028-04-13": "Holy Thursday", + "2028-04-14": "Good Friday", + "2028-04-16": "Emancipation Day", + "2028-04-17": "Easter Monday; Emancipation Day (Observed); Patriots' Day", + "2028-04-21": "San Jacinto Day", + "2028-04-24": "Confederate Memorial Day; State Holiday", + "2028-04-28": "Arbor Day", + "2028-05-02": "Primary Election Day", + "2028-05-08": "Truman Day", + "2028-05-29": "Memorial Day", + "2028-06-05": "Jefferson Davis Birthday", + "2028-06-11": "Kamehameha Day", + "2028-06-12": "Kamehameha Day (Observed)", + "2028-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", + "2028-06-20": "West Virginia Day", + "2028-07-03": "Emancipation Day", + "2028-07-04": "Independence Day", + "2028-07-21": "Liberation Day (Guam)", + "2028-07-24": "Pioneer Day", + "2028-07-25": "Constitution Day", + "2028-08-14": "Victory Day", + "2028-08-16": "Bennington Battle Day", + "2028-08-18": "Statehood Day", + "2028-08-27": "Lyndon Baines Johnson Day", + "2028-09-04": "Labor Day", + "2028-10-09": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2028-10-18": "Alaska Day", + "2028-10-27": "Nevada Day", + "2028-11-01": "Liberty Day", + "2028-11-02": "All Souls' Day", + "2028-11-03": "Citizenship Day (Observed)", + "2028-11-04": "Citizenship Day", + "2028-11-07": "Election Day", + "2028-11-10": "Veterans Day (Observed)", + "2028-11-11": "Veterans Day", + "2028-11-19": "Discovery Day", + "2028-11-20": "Discovery Day (Observed)", + "2028-11-23": "Thanksgiving", + "2028-11-24": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2028-12-08": "Constitution Day; Lady of Camarin Day", + "2028-12-22": "Christmas Eve (Observed)", + "2028-12-24": "Christmas Eve; Washington's Birthday", + "2028-12-25": "Christmas Day", + "2028-12-26": "Christmas Second Day; Day After Christmas", + "2028-12-31": "New Year's Eve", + "2029-01-01": "New Year's Day", + "2029-01-06": "Epiphany; Three Kings Day", + "2029-01-15": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2029-01-19": "Confederate Memorial Day", + "2029-01-20": "Inauguration Day", + "2029-02-12": "Lincoln's Birthday", + "2029-02-13": "Mardi Gras", + "2029-02-15": "Susan B. Anthony Day", + "2029-02-19": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2029-03-02": "Texas Independence Day", + "2029-03-05": "Casimir Pulaski Day; Guam Discovery Day", + "2029-03-06": "Town Meeting Day", + "2029-03-17": "Evacuation Day", + "2029-03-19": "Evacuation Day (Observed)", + "2029-03-22": "Emancipation Day", + "2029-03-23": "Commonwealth Covenant Day (Observed)", + "2029-03-24": "Commonwealth Covenant Day", + "2029-03-26": "Prince Jonah Kuhio Kalanianaole Day; Seward's Day", + "2029-03-29": "Holy Thursday", + "2029-03-30": "Good Friday", + "2029-03-31": "Cesar Chavez Day; Transfer Day", + "2029-04-02": "Easter Monday", + "2029-04-16": "Emancipation Day; Patriots' Day", + "2029-04-21": "San Jacinto Day", + "2029-04-23": "Confederate Memorial Day; State Holiday", + "2029-04-27": "Arbor Day", + "2029-05-08": "Primary Election Day; Truman Day", + "2029-05-28": "Memorial Day", + "2029-06-04": "Jefferson Davis Birthday", + "2029-06-11": "Kamehameha Day", + "2029-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", + "2029-06-20": "West Virginia Day", + "2029-07-03": "Emancipation Day", + "2029-07-04": "Independence Day", + "2029-07-21": "Liberation Day (Guam)", + "2029-07-24": "Pioneer Day", + "2029-07-25": "Constitution Day", + "2029-08-13": "Victory Day", + "2029-08-16": "Bennington Battle Day", + "2029-08-17": "Statehood Day", + "2029-08-27": "Lyndon Baines Johnson Day", + "2029-09-03": "Labor Day", + "2029-10-08": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2029-10-18": "Alaska Day", + "2029-10-26": "Nevada Day", + "2029-11-01": "Liberty Day", + "2029-11-02": "All Souls' Day", + "2029-11-04": "Citizenship Day", + "2029-11-05": "Citizenship Day (Observed)", + "2029-11-06": "Election Day", + "2029-11-11": "Veterans Day", + "2029-11-12": "Veterans Day (Observed)", + "2029-11-19": "Discovery Day", + "2029-11-22": "Thanksgiving", + "2029-11-23": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2029-12-07": "Constitution Day (Observed)", + "2029-12-08": "Constitution Day; Lady of Camarin Day", + "2029-12-24": "Christmas Eve; Washington's Birthday", + "2029-12-25": "Christmas Day", + "2029-12-26": "Christmas Second Day; Day After Christmas", + "2029-12-31": "New Year's Eve", + "2030-01-01": "New Year's Day", + "2030-01-06": "Epiphany; Three Kings Day", + "2030-01-19": "Confederate Memorial Day", + "2030-01-21": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2030-02-12": "Lincoln's Birthday", + "2030-02-15": "Susan B. Anthony Day", + "2030-02-18": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2030-03-02": "Texas Independence Day", + "2030-03-04": "Casimir Pulaski Day; Guam Discovery Day", + "2030-03-05": "Mardi Gras; Town Meeting Day", + "2030-03-17": "Evacuation Day", + "2030-03-18": "Evacuation Day (Observed)", + "2030-03-22": "Emancipation Day", + "2030-03-24": "Commonwealth Covenant Day", + "2030-03-25": "Commonwealth Covenant Day (Observed); Seward's Day", + "2030-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2030-03-31": "Cesar Chavez Day; Transfer Day", + "2030-04-01": "Cesar Chavez Day (Observed)", + "2030-04-15": "Patriots' Day", + "2030-04-16": "Emancipation Day", + "2030-04-18": "Holy Thursday", + "2030-04-19": "Good Friday", + "2030-04-21": "San Jacinto Day", + "2030-04-22": "Confederate Memorial Day; Easter Monday; State Holiday", + "2030-04-26": "Arbor Day", + "2030-05-07": "Primary Election Day", + "2030-05-08": "Truman Day", + "2030-05-27": "Memorial Day", + "2030-06-03": "Jefferson Davis Birthday", + "2030-06-11": "Kamehameha Day", + "2030-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", + "2030-06-20": "West Virginia Day", + "2030-07-03": "Emancipation Day", + "2030-07-04": "Independence Day", + "2030-07-21": "Liberation Day (Guam)", + "2030-07-24": "Pioneer Day", + "2030-07-25": "Constitution Day", + "2030-08-12": "Victory Day", + "2030-08-16": "Bennington Battle Day; Statehood Day", + "2030-08-27": "Lyndon Baines Johnson Day", + "2030-09-02": "Labor Day", + "2030-10-14": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2030-10-18": "Alaska Day", + "2030-10-25": "Nevada Day", + "2030-11-01": "Liberty Day", + "2030-11-02": "All Souls' Day", + "2030-11-04": "Citizenship Day", + "2030-11-05": "Election Day", + "2030-11-11": "Veterans Day", + "2030-11-19": "Discovery Day", + "2030-11-28": "Thanksgiving", + "2030-11-29": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2030-12-08": "Constitution Day; Lady of Camarin Day", + "2030-12-09": "Constitution Day (Observed)", + "2030-12-24": "Christmas Eve; Washington's Birthday", + "2030-12-25": "Christmas Day", + "2030-12-26": "Christmas Second Day; Day After Christmas", + "2030-12-31": "New Year's Eve", + "2031-01-01": "New Year's Day", + "2031-01-06": "Epiphany; Three Kings Day", + "2031-01-19": "Confederate Memorial Day", + "2031-01-20": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2031-02-12": "Lincoln's Birthday", + "2031-02-15": "Susan B. Anthony Day", + "2031-02-17": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2031-02-25": "Mardi Gras", + "2031-03-02": "Texas Independence Day", + "2031-03-03": "Casimir Pulaski Day; Guam Discovery Day", + "2031-03-04": "Town Meeting Day", + "2031-03-17": "Evacuation Day", + "2031-03-22": "Emancipation Day", + "2031-03-24": "Commonwealth Covenant Day", + "2031-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2031-03-31": "Cesar Chavez Day; Seward's Day; Transfer Day", + "2031-04-10": "Holy Thursday", + "2031-04-11": "Good Friday", + "2031-04-14": "Easter Monday", + "2031-04-16": "Emancipation Day", + "2031-04-21": "Patriots' Day; San Jacinto Day", + "2031-04-25": "Arbor Day", + "2031-04-28": "Confederate Memorial Day; State Holiday", + "2031-05-06": "Primary Election Day", + "2031-05-08": "Truman Day", + "2031-05-26": "Memorial Day", + "2031-06-02": "Jefferson Davis Birthday", + "2031-06-11": "Kamehameha Day", + "2031-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", + "2031-06-20": "West Virginia Day", + "2031-07-03": "Emancipation Day", + "2031-07-04": "Independence Day", + "2031-07-21": "Liberation Day (Guam)", + "2031-07-24": "Pioneer Day", + "2031-07-25": "Constitution Day", + "2031-08-11": "Victory Day", + "2031-08-15": "Bennington Battle Day (Observed); Statehood Day", + "2031-08-16": "Bennington Battle Day", + "2031-08-27": "Lyndon Baines Johnson Day", + "2031-09-01": "Labor Day", + "2031-10-13": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2031-10-17": "Alaska Day (Observed)", + "2031-10-18": "Alaska Day", + "2031-10-31": "Nevada Day", + "2031-11-01": "Liberty Day", + "2031-11-02": "All Souls' Day", + "2031-11-04": "Citizenship Day; Election Day", + "2031-11-11": "Veterans Day", + "2031-11-19": "Discovery Day", + "2031-11-27": "Thanksgiving", + "2031-11-28": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2031-12-08": "Constitution Day; Lady of Camarin Day", + "2031-12-24": "Christmas Eve", + "2031-12-25": "Christmas Day", + "2031-12-26": "Christmas Second Day; Day After Christmas; Washington's Birthday", + "2031-12-31": "New Year's Eve", + "2032-01-01": "New Year's Day", + "2032-01-06": "Epiphany; Three Kings Day", + "2032-01-19": "Confederate Memorial Day; Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2032-02-10": "Mardi Gras", + "2032-02-12": "Lincoln's Birthday", + "2032-02-15": "Susan B. Anthony Day", + "2032-02-16": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2032-03-01": "Casimir Pulaski Day; Guam Discovery Day", + "2032-03-02": "Texas Independence Day; Town Meeting Day", + "2032-03-17": "Evacuation Day", + "2032-03-22": "Emancipation Day", + "2032-03-24": "Commonwealth Covenant Day", + "2032-03-25": "Holy Thursday", + "2032-03-26": "Good Friday; Prince Jonah Kuhio Kalanianaole Day", + "2032-03-29": "Easter Monday; Seward's Day", + "2032-03-31": "Cesar Chavez Day; Transfer Day", + "2032-04-16": "Emancipation Day", + "2032-04-19": "Patriots' Day", + "2032-04-21": "San Jacinto Day", + "2032-04-26": "Confederate Memorial Day; State Holiday", + "2032-04-30": "Arbor Day", + "2032-05-04": "Primary Election Day", + "2032-05-07": "Truman Day (Observed)", + "2032-05-08": "Truman Day", + "2032-05-31": "Memorial Day", + "2032-06-07": "Jefferson Davis Birthday", + "2032-06-11": "Kamehameha Day", + "2032-06-18": "Emancipation Day In Texas (Observed); Juneteenth National Independence Day (Observed)", + "2032-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", + "2032-06-20": "West Virginia Day", + "2032-06-21": "West Virginia Day (Observed)", + "2032-07-03": "Emancipation Day", + "2032-07-04": "Independence Day", + "2032-07-05": "Independence Day (Observed)", + "2032-07-21": "Liberation Day (Guam)", + "2032-07-23": "Pioneer Day (Observed)", + "2032-07-24": "Pioneer Day", + "2032-07-25": "Constitution Day", + "2032-07-26": "Constitution Day (Observed)", + "2032-08-09": "Victory Day", + "2032-08-16": "Bennington Battle Day", + "2032-08-20": "Statehood Day", + "2032-08-27": "Lyndon Baines Johnson Day", + "2032-09-06": "Labor Day", + "2032-10-11": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2032-10-18": "Alaska Day", + "2032-10-29": "Nevada Day", + "2032-11-01": "Liberty Day", + "2032-11-02": "All Souls' Day; Election Day", + "2032-11-04": "Citizenship Day", + "2032-11-11": "Veterans Day", + "2032-11-19": "Discovery Day", + "2032-11-25": "Thanksgiving", + "2032-11-26": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2032-12-08": "Constitution Day; Lady of Camarin Day", + "2032-12-23": "Christmas Eve (Observed)", + "2032-12-24": "Christmas Day (Observed); Christmas Eve; Washington's Birthday", + "2032-12-25": "Christmas Day", + "2032-12-26": "Christmas Second Day; Day After Christmas", + "2032-12-27": "Day After Christmas (Observed)", + "2032-12-31": "New Year's Day (Observed); New Year's Eve", + "2033-01-01": "New Year's Day", + "2033-01-06": "Epiphany; Three Kings Day", + "2033-01-17": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2033-01-19": "Confederate Memorial Day", + "2033-01-20": "Inauguration Day", + "2033-02-11": "Lincoln's Birthday (Observed)", + "2033-02-12": "Lincoln's Birthday", + "2033-02-15": "Susan B. Anthony Day", + "2033-02-21": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2033-03-01": "Mardi Gras; Town Meeting Day", + "2033-03-02": "Texas Independence Day", + "2033-03-07": "Casimir Pulaski Day; Guam Discovery Day", + "2033-03-17": "Evacuation Day", + "2033-03-22": "Emancipation Day", + "2033-03-24": "Commonwealth Covenant Day", + "2033-03-25": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "2033-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2033-03-28": "Seward's Day", + "2033-03-31": "Cesar Chavez Day; Transfer Day", + "2033-04-14": "Holy Thursday", + "2033-04-15": "Emancipation Day (Observed); Good Friday", + "2033-04-16": "Emancipation Day", + "2033-04-18": "Easter Monday; Patriots' Day", + "2033-04-21": "San Jacinto Day", + "2033-04-25": "Confederate Memorial Day; State Holiday", + "2033-04-29": "Arbor Day", + "2033-05-03": "Primary Election Day", + "2033-05-08": "Truman Day", + "2033-05-09": "Truman Day (Observed)", + "2033-05-30": "Memorial Day", + "2033-06-06": "Jefferson Davis Birthday", + "2033-06-10": "Kamehameha Day (Observed)", + "2033-06-11": "Kamehameha Day", + "2033-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", + "2033-06-20": "Emancipation Day In Texas (Observed); Juneteenth National Independence Day (Observed); West Virginia Day", + "2033-07-03": "Emancipation Day", + "2033-07-04": "Independence Day", + "2033-07-21": "Liberation Day (Guam)", + "2033-07-24": "Pioneer Day", + "2033-07-25": "Constitution Day; Pioneer Day (Observed)", + "2033-08-08": "Victory Day", + "2033-08-16": "Bennington Battle Day", + "2033-08-19": "Statehood Day", + "2033-08-27": "Lyndon Baines Johnson Day", + "2033-09-05": "Labor Day", + "2033-10-10": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2033-10-18": "Alaska Day", + "2033-10-28": "Nevada Day", + "2033-11-01": "Liberty Day", + "2033-11-02": "All Souls' Day", + "2033-11-04": "Citizenship Day", + "2033-11-08": "Election Day", + "2033-11-11": "Veterans Day", + "2033-11-19": "Discovery Day", + "2033-11-24": "Thanksgiving", + "2033-11-25": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2033-12-08": "Constitution Day; Lady of Camarin Day", + "2033-12-23": "Christmas Eve (Observed)", + "2033-12-24": "Christmas Eve; Washington's Birthday", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day (Observed); Christmas Second Day; Day After Christmas", + "2033-12-27": "Day After Christmas (Observed)", + "2033-12-30": "New Year's Eve (Observed)", + "2033-12-31": "New Year's Eve", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-01-06": "Epiphany; Three Kings Day", + "2034-01-16": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2034-01-19": "Confederate Memorial Day", + "2034-02-12": "Lincoln's Birthday", + "2034-02-13": "Lincoln's Birthday (Observed)", + "2034-02-15": "Susan B. Anthony Day", + "2034-02-20": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2034-02-21": "Mardi Gras", + "2034-03-02": "Texas Independence Day", + "2034-03-06": "Casimir Pulaski Day; Guam Discovery Day", + "2034-03-07": "Town Meeting Day", + "2034-03-17": "Evacuation Day", + "2034-03-22": "Emancipation Day", + "2034-03-24": "Commonwealth Covenant Day", + "2034-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2034-03-27": "Prince Jonah Kuhio Kalanianaole Day (Observed); Seward's Day", + "2034-03-31": "Cesar Chavez Day; Transfer Day", + "2034-04-06": "Holy Thursday", + "2034-04-07": "Good Friday", + "2034-04-10": "Easter Monday", + "2034-04-16": "Emancipation Day", + "2034-04-17": "Emancipation Day (Observed); Patriots' Day", + "2034-04-21": "San Jacinto Day", + "2034-04-24": "Confederate Memorial Day; State Holiday", + "2034-04-28": "Arbor Day", + "2034-05-02": "Primary Election Day", + "2034-05-08": "Truman Day", + "2034-05-29": "Memorial Day", + "2034-06-05": "Jefferson Davis Birthday", + "2034-06-11": "Kamehameha Day", + "2034-06-12": "Kamehameha Day (Observed)", + "2034-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", + "2034-06-20": "West Virginia Day", + "2034-07-03": "Emancipation Day", + "2034-07-04": "Independence Day", + "2034-07-21": "Liberation Day (Guam)", + "2034-07-24": "Pioneer Day", + "2034-07-25": "Constitution Day", + "2034-08-14": "Victory Day", + "2034-08-16": "Bennington Battle Day", + "2034-08-18": "Statehood Day", + "2034-08-27": "Lyndon Baines Johnson Day", + "2034-09-04": "Labor Day", + "2034-10-09": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2034-10-18": "Alaska Day", + "2034-10-27": "Nevada Day", + "2034-11-01": "Liberty Day", + "2034-11-02": "All Souls' Day", + "2034-11-03": "Citizenship Day (Observed)", + "2034-11-04": "Citizenship Day", + "2034-11-07": "Election Day", + "2034-11-10": "Veterans Day (Observed)", + "2034-11-11": "Veterans Day", + "2034-11-19": "Discovery Day", + "2034-11-20": "Discovery Day (Observed)", + "2034-11-23": "Thanksgiving", + "2034-11-24": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2034-12-08": "Constitution Day; Lady of Camarin Day", + "2034-12-22": "Christmas Eve (Observed)", + "2034-12-24": "Christmas Eve; Washington's Birthday", + "2034-12-25": "Christmas Day", + "2034-12-26": "Christmas Second Day; Day After Christmas", + "2034-12-31": "New Year's Eve", + "2035-01-01": "New Year's Day", + "2035-01-06": "Epiphany; Three Kings Day", + "2035-01-15": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2035-01-19": "Confederate Memorial Day", + "2035-02-06": "Mardi Gras", + "2035-02-12": "Lincoln's Birthday", + "2035-02-15": "Susan B. Anthony Day", + "2035-02-19": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2035-03-02": "Texas Independence Day", + "2035-03-05": "Casimir Pulaski Day; Guam Discovery Day", + "2035-03-06": "Town Meeting Day", + "2035-03-17": "Evacuation Day", + "2035-03-19": "Evacuation Day (Observed)", + "2035-03-22": "Emancipation Day; Holy Thursday", + "2035-03-23": "Commonwealth Covenant Day (Observed); Good Friday", + "2035-03-24": "Commonwealth Covenant Day", + "2035-03-26": "Easter Monday; Prince Jonah Kuhio Kalanianaole Day; Seward's Day", + "2035-03-31": "Cesar Chavez Day; Transfer Day", + "2035-04-16": "Emancipation Day; Patriots' Day", + "2035-04-21": "San Jacinto Day", + "2035-04-23": "Confederate Memorial Day; State Holiday", + "2035-04-27": "Arbor Day", + "2035-05-08": "Primary Election Day; Truman Day", + "2035-05-28": "Memorial Day", + "2035-06-04": "Jefferson Davis Birthday", + "2035-06-11": "Kamehameha Day", + "2035-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", + "2035-06-20": "West Virginia Day", + "2035-07-03": "Emancipation Day", + "2035-07-04": "Independence Day", + "2035-07-21": "Liberation Day (Guam)", + "2035-07-24": "Pioneer Day", + "2035-07-25": "Constitution Day", + "2035-08-13": "Victory Day", + "2035-08-16": "Bennington Battle Day", + "2035-08-17": "Statehood Day", + "2035-08-27": "Lyndon Baines Johnson Day", + "2035-09-03": "Labor Day", + "2035-10-08": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2035-10-18": "Alaska Day", + "2035-10-26": "Nevada Day", + "2035-11-01": "Liberty Day", + "2035-11-02": "All Souls' Day", + "2035-11-04": "Citizenship Day", + "2035-11-05": "Citizenship Day (Observed)", + "2035-11-06": "Election Day", + "2035-11-11": "Veterans Day", + "2035-11-12": "Veterans Day (Observed)", + "2035-11-19": "Discovery Day", + "2035-11-22": "Thanksgiving", + "2035-11-23": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2035-12-07": "Constitution Day (Observed)", + "2035-12-08": "Constitution Day; Lady of Camarin Day", + "2035-12-24": "Christmas Eve; Washington's Birthday", + "2035-12-25": "Christmas Day", + "2035-12-26": "Christmas Second Day; Day After Christmas", + "2035-12-31": "New Year's Eve", + "2036-01-01": "New Year's Day", + "2036-01-06": "Epiphany; Three Kings Day", + "2036-01-19": "Confederate Memorial Day", + "2036-01-21": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2036-02-12": "Lincoln's Birthday", + "2036-02-15": "Susan B. Anthony Day", + "2036-02-18": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2036-02-26": "Mardi Gras", + "2036-03-02": "Texas Independence Day", + "2036-03-03": "Casimir Pulaski Day; Guam Discovery Day", + "2036-03-04": "Town Meeting Day", + "2036-03-17": "Evacuation Day", + "2036-03-22": "Emancipation Day", + "2036-03-24": "Commonwealth Covenant Day", + "2036-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2036-03-31": "Cesar Chavez Day; Seward's Day; Transfer Day", + "2036-04-10": "Holy Thursday", + "2036-04-11": "Good Friday", + "2036-04-14": "Easter Monday", + "2036-04-16": "Emancipation Day", + "2036-04-21": "Patriots' Day; San Jacinto Day", + "2036-04-25": "Arbor Day", + "2036-04-28": "Confederate Memorial Day; State Holiday", + "2036-05-06": "Primary Election Day", + "2036-05-08": "Truman Day", + "2036-05-26": "Memorial Day", + "2036-06-02": "Jefferson Davis Birthday", + "2036-06-11": "Kamehameha Day", + "2036-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", + "2036-06-20": "West Virginia Day", + "2036-07-03": "Emancipation Day", + "2036-07-04": "Independence Day", + "2036-07-21": "Liberation Day (Guam)", + "2036-07-24": "Pioneer Day", + "2036-07-25": "Constitution Day", + "2036-08-11": "Victory Day", + "2036-08-15": "Bennington Battle Day (Observed); Statehood Day", + "2036-08-16": "Bennington Battle Day", + "2036-08-27": "Lyndon Baines Johnson Day", + "2036-09-01": "Labor Day", + "2036-10-13": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2036-10-17": "Alaska Day (Observed)", + "2036-10-18": "Alaska Day", + "2036-10-31": "Nevada Day", + "2036-11-01": "Liberty Day", + "2036-11-02": "All Souls' Day", + "2036-11-04": "Citizenship Day; Election Day", + "2036-11-11": "Veterans Day", + "2036-11-19": "Discovery Day", + "2036-11-27": "Thanksgiving", + "2036-11-28": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2036-12-08": "Constitution Day; Lady of Camarin Day", + "2036-12-24": "Christmas Eve", + "2036-12-25": "Christmas Day", + "2036-12-26": "Christmas Second Day; Day After Christmas; Washington's Birthday", + "2036-12-31": "New Year's Eve", + "2037-01-01": "New Year's Day", + "2037-01-06": "Epiphany; Three Kings Day", + "2037-01-19": "Confederate Memorial Day; Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2037-01-20": "Inauguration Day", + "2037-02-12": "Lincoln's Birthday", + "2037-02-15": "Susan B. Anthony Day", + "2037-02-16": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2037-02-17": "Mardi Gras", + "2037-03-02": "Casimir Pulaski Day; Guam Discovery Day; Texas Independence Day", + "2037-03-03": "Town Meeting Day", + "2037-03-17": "Evacuation Day", + "2037-03-22": "Emancipation Day", + "2037-03-23": "Emancipation Day (Observed)", + "2037-03-24": "Commonwealth Covenant Day", + "2037-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2037-03-30": "Seward's Day", + "2037-03-31": "Cesar Chavez Day; Transfer Day", + "2037-04-02": "Holy Thursday", + "2037-04-03": "Good Friday", + "2037-04-06": "Easter Monday", + "2037-04-16": "Emancipation Day", + "2037-04-20": "Patriots' Day", + "2037-04-21": "San Jacinto Day", + "2037-04-24": "Arbor Day", + "2037-04-27": "Confederate Memorial Day; State Holiday", + "2037-05-05": "Primary Election Day", + "2037-05-08": "Truman Day", + "2037-05-25": "Memorial Day", + "2037-06-01": "Jefferson Davis Birthday", + "2037-06-11": "Kamehameha Day", + "2037-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day; West Virginia Day (Observed)", + "2037-06-20": "West Virginia Day", + "2037-07-03": "Emancipation Day; Independence Day (Observed)", + "2037-07-04": "Independence Day", + "2037-07-21": "Liberation Day (Guam)", + "2037-07-24": "Pioneer Day", + "2037-07-25": "Constitution Day", + "2037-08-10": "Victory Day", + "2037-08-16": "Bennington Battle Day", + "2037-08-17": "Bennington Battle Day (Observed)", + "2037-08-21": "Statehood Day", + "2037-08-27": "Lyndon Baines Johnson Day", + "2037-09-07": "Labor Day", + "2037-10-12": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2037-10-18": "Alaska Day", + "2037-10-19": "Alaska Day (Observed)", + "2037-10-30": "Nevada Day", + "2037-11-01": "Liberty Day", + "2037-11-02": "All Souls' Day", + "2037-11-03": "Election Day", + "2037-11-04": "Citizenship Day", + "2037-11-11": "Veterans Day", + "2037-11-19": "Discovery Day", + "2037-11-26": "Thanksgiving", + "2037-11-27": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2037-12-08": "Constitution Day; Lady of Camarin Day", + "2037-12-24": "Christmas Eve; Washington's Birthday", + "2037-12-25": "Christmas Day", + "2037-12-26": "Christmas Second Day; Day After Christmas", + "2037-12-28": "Day After Christmas (Observed)", + "2037-12-31": "New Year's Eve", + "2038-01-01": "New Year's Day", + "2038-01-06": "Epiphany; Three Kings Day", + "2038-01-18": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2038-01-19": "Confederate Memorial Day", + "2038-02-12": "Lincoln's Birthday", + "2038-02-15": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Susan B. Anthony Day; Washington's Birthday", + "2038-03-01": "Casimir Pulaski Day; Guam Discovery Day", + "2038-03-02": "Texas Independence Day; Town Meeting Day", + "2038-03-09": "Mardi Gras", + "2038-03-17": "Evacuation Day", + "2038-03-22": "Emancipation Day", + "2038-03-24": "Commonwealth Covenant Day", + "2038-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2038-03-29": "Seward's Day", + "2038-03-31": "Cesar Chavez Day; Transfer Day", + "2038-04-16": "Emancipation Day", + "2038-04-19": "Patriots' Day", + "2038-04-21": "San Jacinto Day", + "2038-04-22": "Holy Thursday", + "2038-04-23": "Good Friday", + "2038-04-26": "Confederate Memorial Day; Easter Monday; State Holiday", + "2038-04-30": "Arbor Day", + "2038-05-04": "Primary Election Day", + "2038-05-07": "Truman Day (Observed)", + "2038-05-08": "Truman Day", + "2038-05-31": "Memorial Day", + "2038-06-07": "Jefferson Davis Birthday", + "2038-06-11": "Kamehameha Day", + "2038-06-18": "Emancipation Day In Texas (Observed); Juneteenth National Independence Day (Observed)", + "2038-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", + "2038-06-20": "West Virginia Day", + "2038-06-21": "West Virginia Day (Observed)", + "2038-07-03": "Emancipation Day", + "2038-07-04": "Independence Day", + "2038-07-05": "Independence Day (Observed)", + "2038-07-21": "Liberation Day (Guam)", + "2038-07-23": "Pioneer Day (Observed)", + "2038-07-24": "Pioneer Day", + "2038-07-25": "Constitution Day", + "2038-07-26": "Constitution Day (Observed)", + "2038-08-09": "Victory Day", + "2038-08-16": "Bennington Battle Day", + "2038-08-20": "Statehood Day", + "2038-08-27": "Lyndon Baines Johnson Day", + "2038-09-06": "Labor Day", + "2038-10-11": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2038-10-18": "Alaska Day", + "2038-10-29": "Nevada Day", + "2038-11-01": "Liberty Day", + "2038-11-02": "All Souls' Day; Election Day", + "2038-11-04": "Citizenship Day", + "2038-11-11": "Veterans Day", + "2038-11-19": "Discovery Day", + "2038-11-25": "Thanksgiving", + "2038-11-26": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2038-12-08": "Constitution Day; Lady of Camarin Day", + "2038-12-23": "Christmas Eve (Observed)", + "2038-12-24": "Christmas Day (Observed); Christmas Eve; Washington's Birthday", + "2038-12-25": "Christmas Day", + "2038-12-26": "Christmas Second Day; Day After Christmas", + "2038-12-27": "Day After Christmas (Observed)", + "2038-12-31": "New Year's Day (Observed); New Year's Eve", + "2039-01-01": "New Year's Day", + "2039-01-06": "Epiphany; Three Kings Day", + "2039-01-17": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2039-01-19": "Confederate Memorial Day", + "2039-02-11": "Lincoln's Birthday (Observed)", + "2039-02-12": "Lincoln's Birthday", + "2039-02-15": "Susan B. Anthony Day", + "2039-02-21": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2039-02-22": "Mardi Gras", + "2039-03-01": "Town Meeting Day", + "2039-03-02": "Texas Independence Day", + "2039-03-07": "Casimir Pulaski Day; Guam Discovery Day", + "2039-03-17": "Evacuation Day", + "2039-03-22": "Emancipation Day", + "2039-03-24": "Commonwealth Covenant Day", + "2039-03-25": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "2039-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2039-03-28": "Seward's Day", + "2039-03-31": "Cesar Chavez Day; Transfer Day", + "2039-04-07": "Holy Thursday", + "2039-04-08": "Good Friday", + "2039-04-11": "Easter Monday", + "2039-04-15": "Emancipation Day (Observed)", + "2039-04-16": "Emancipation Day", + "2039-04-18": "Patriots' Day", + "2039-04-21": "San Jacinto Day", + "2039-04-25": "Confederate Memorial Day; State Holiday", + "2039-04-29": "Arbor Day", + "2039-05-03": "Primary Election Day", + "2039-05-08": "Truman Day", + "2039-05-09": "Truman Day (Observed)", + "2039-05-30": "Memorial Day", + "2039-06-06": "Jefferson Davis Birthday", + "2039-06-10": "Kamehameha Day (Observed)", + "2039-06-11": "Kamehameha Day", + "2039-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", + "2039-06-20": "Emancipation Day In Texas (Observed); Juneteenth National Independence Day (Observed); West Virginia Day", + "2039-07-03": "Emancipation Day", + "2039-07-04": "Independence Day", + "2039-07-21": "Liberation Day (Guam)", + "2039-07-24": "Pioneer Day", + "2039-07-25": "Constitution Day; Pioneer Day (Observed)", + "2039-08-08": "Victory Day", + "2039-08-16": "Bennington Battle Day", + "2039-08-19": "Statehood Day", + "2039-08-27": "Lyndon Baines Johnson Day", + "2039-09-05": "Labor Day", + "2039-10-10": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2039-10-18": "Alaska Day", + "2039-10-28": "Nevada Day", + "2039-11-01": "Liberty Day", + "2039-11-02": "All Souls' Day", + "2039-11-04": "Citizenship Day", + "2039-11-08": "Election Day", + "2039-11-11": "Veterans Day", + "2039-11-19": "Discovery Day", + "2039-11-24": "Thanksgiving", + "2039-11-25": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2039-12-08": "Constitution Day; Lady of Camarin Day", + "2039-12-23": "Christmas Eve (Observed)", + "2039-12-24": "Christmas Eve; Washington's Birthday", + "2039-12-25": "Christmas Day", + "2039-12-26": "Christmas Day (Observed); Christmas Second Day; Day After Christmas", + "2039-12-27": "Day After Christmas (Observed)", + "2039-12-30": "New Year's Eve (Observed)", + "2039-12-31": "New Year's Eve", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (Observed)", + "2040-01-06": "Epiphany; Three Kings Day", + "2040-01-16": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2040-01-19": "Confederate Memorial Day", + "2040-02-12": "Lincoln's Birthday", + "2040-02-13": "Lincoln's Birthday (Observed)", + "2040-02-14": "Mardi Gras", + "2040-02-15": "Susan B. Anthony Day", + "2040-02-20": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2040-03-02": "Texas Independence Day", + "2040-03-05": "Casimir Pulaski Day; Guam Discovery Day", + "2040-03-06": "Town Meeting Day", + "2040-03-17": "Evacuation Day", + "2040-03-19": "Evacuation Day (Observed)", + "2040-03-22": "Emancipation Day", + "2040-03-23": "Commonwealth Covenant Day (Observed)", + "2040-03-24": "Commonwealth Covenant Day", + "2040-03-26": "Prince Jonah Kuhio Kalanianaole Day; Seward's Day", + "2040-03-29": "Holy Thursday", + "2040-03-30": "Good Friday", + "2040-03-31": "Cesar Chavez Day; Transfer Day", + "2040-04-02": "Easter Monday", + "2040-04-16": "Emancipation Day; Patriots' Day", + "2040-04-21": "San Jacinto Day", + "2040-04-23": "Confederate Memorial Day; State Holiday", + "2040-04-27": "Arbor Day", + "2040-05-08": "Primary Election Day; Truman Day", + "2040-05-28": "Memorial Day", + "2040-06-04": "Jefferson Davis Birthday", + "2040-06-11": "Kamehameha Day", + "2040-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", + "2040-06-20": "West Virginia Day", + "2040-07-03": "Emancipation Day", + "2040-07-04": "Independence Day", + "2040-07-21": "Liberation Day (Guam)", + "2040-07-24": "Pioneer Day", + "2040-07-25": "Constitution Day", + "2040-08-13": "Victory Day", + "2040-08-16": "Bennington Battle Day", + "2040-08-17": "Statehood Day", + "2040-08-27": "Lyndon Baines Johnson Day", + "2040-09-03": "Labor Day", + "2040-10-08": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2040-10-18": "Alaska Day", + "2040-10-26": "Nevada Day", + "2040-11-01": "Liberty Day", + "2040-11-02": "All Souls' Day", + "2040-11-04": "Citizenship Day", + "2040-11-05": "Citizenship Day (Observed)", + "2040-11-06": "Election Day", + "2040-11-11": "Veterans Day", + "2040-11-12": "Veterans Day (Observed)", + "2040-11-19": "Discovery Day", + "2040-11-22": "Thanksgiving", + "2040-11-23": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2040-12-07": "Constitution Day (Observed)", + "2040-12-08": "Constitution Day; Lady of Camarin Day", + "2040-12-24": "Christmas Eve; Washington's Birthday", + "2040-12-25": "Christmas Day", + "2040-12-26": "Christmas Second Day; Day After Christmas", + "2040-12-31": "New Year's Eve", + "2041-01-01": "New Year's Day", + "2041-01-06": "Epiphany; Three Kings Day", + "2041-01-19": "Confederate Memorial Day", + "2041-01-20": "Inauguration Day", + "2041-01-21": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Inauguration Day (Observed); Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2041-02-12": "Lincoln's Birthday", + "2041-02-15": "Susan B. Anthony Day", + "2041-02-18": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2041-03-02": "Texas Independence Day", + "2041-03-04": "Casimir Pulaski Day; Guam Discovery Day", + "2041-03-05": "Mardi Gras; Town Meeting Day", + "2041-03-17": "Evacuation Day", + "2041-03-18": "Evacuation Day (Observed)", + "2041-03-22": "Emancipation Day", + "2041-03-24": "Commonwealth Covenant Day", + "2041-03-25": "Commonwealth Covenant Day (Observed); Seward's Day", + "2041-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2041-03-31": "Cesar Chavez Day; Transfer Day", + "2041-04-01": "Cesar Chavez Day (Observed)", + "2041-04-15": "Patriots' Day", + "2041-04-16": "Emancipation Day", + "2041-04-18": "Holy Thursday", + "2041-04-19": "Good Friday", + "2041-04-21": "San Jacinto Day", + "2041-04-22": "Confederate Memorial Day; Easter Monday; State Holiday", + "2041-04-26": "Arbor Day", + "2041-05-07": "Primary Election Day", + "2041-05-08": "Truman Day", + "2041-05-27": "Memorial Day", + "2041-06-03": "Jefferson Davis Birthday", + "2041-06-11": "Kamehameha Day", + "2041-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", + "2041-06-20": "West Virginia Day", + "2041-07-03": "Emancipation Day", + "2041-07-04": "Independence Day", + "2041-07-21": "Liberation Day (Guam)", + "2041-07-24": "Pioneer Day", + "2041-07-25": "Constitution Day", + "2041-08-12": "Victory Day", + "2041-08-16": "Bennington Battle Day; Statehood Day", + "2041-08-27": "Lyndon Baines Johnson Day", + "2041-09-02": "Labor Day", + "2041-10-14": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2041-10-18": "Alaska Day", + "2041-10-25": "Nevada Day", + "2041-11-01": "Liberty Day", + "2041-11-02": "All Souls' Day", + "2041-11-04": "Citizenship Day", + "2041-11-05": "Election Day", + "2041-11-11": "Veterans Day", + "2041-11-19": "Discovery Day", + "2041-11-28": "Thanksgiving", + "2041-11-29": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2041-12-08": "Constitution Day; Lady of Camarin Day", + "2041-12-09": "Constitution Day (Observed)", + "2041-12-24": "Christmas Eve; Washington's Birthday", + "2041-12-25": "Christmas Day", + "2041-12-26": "Christmas Second Day; Day After Christmas", + "2041-12-31": "New Year's Eve", + "2042-01-01": "New Year's Day", + "2042-01-06": "Epiphany; Three Kings Day", + "2042-01-19": "Confederate Memorial Day", + "2042-01-20": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2042-02-12": "Lincoln's Birthday", + "2042-02-15": "Susan B. Anthony Day", + "2042-02-17": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2042-02-18": "Mardi Gras", + "2042-03-02": "Texas Independence Day", + "2042-03-03": "Casimir Pulaski Day; Guam Discovery Day", + "2042-03-04": "Town Meeting Day", + "2042-03-17": "Evacuation Day", + "2042-03-22": "Emancipation Day", + "2042-03-24": "Commonwealth Covenant Day", + "2042-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2042-03-31": "Cesar Chavez Day; Seward's Day; Transfer Day", + "2042-04-03": "Holy Thursday", + "2042-04-04": "Good Friday", + "2042-04-07": "Easter Monday", + "2042-04-16": "Emancipation Day", + "2042-04-21": "Patriots' Day; San Jacinto Day", + "2042-04-25": "Arbor Day", + "2042-04-28": "Confederate Memorial Day; State Holiday", + "2042-05-06": "Primary Election Day", + "2042-05-08": "Truman Day", + "2042-05-26": "Memorial Day", + "2042-06-02": "Jefferson Davis Birthday", + "2042-06-11": "Kamehameha Day", + "2042-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", + "2042-06-20": "West Virginia Day", + "2042-07-03": "Emancipation Day", + "2042-07-04": "Independence Day", + "2042-07-21": "Liberation Day (Guam)", + "2042-07-24": "Pioneer Day", + "2042-07-25": "Constitution Day", + "2042-08-11": "Victory Day", + "2042-08-15": "Bennington Battle Day (Observed); Statehood Day", + "2042-08-16": "Bennington Battle Day", + "2042-08-27": "Lyndon Baines Johnson Day", + "2042-09-01": "Labor Day", + "2042-10-13": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2042-10-17": "Alaska Day (Observed)", + "2042-10-18": "Alaska Day", + "2042-10-31": "Nevada Day", + "2042-11-01": "Liberty Day", + "2042-11-02": "All Souls' Day", + "2042-11-04": "Citizenship Day; Election Day", + "2042-11-11": "Veterans Day", + "2042-11-19": "Discovery Day", + "2042-11-27": "Thanksgiving", + "2042-11-28": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2042-12-08": "Constitution Day; Lady of Camarin Day", + "2042-12-24": "Christmas Eve", + "2042-12-25": "Christmas Day", + "2042-12-26": "Christmas Second Day; Day After Christmas; Washington's Birthday", + "2042-12-31": "New Year's Eve", + "2043-01-01": "New Year's Day", + "2043-01-06": "Epiphany; Three Kings Day", + "2043-01-19": "Confederate Memorial Day; Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2043-02-10": "Mardi Gras", + "2043-02-12": "Lincoln's Birthday", + "2043-02-15": "Susan B. Anthony Day", + "2043-02-16": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2043-03-02": "Casimir Pulaski Day; Guam Discovery Day; Texas Independence Day", + "2043-03-03": "Town Meeting Day", + "2043-03-17": "Evacuation Day", + "2043-03-22": "Emancipation Day", + "2043-03-23": "Emancipation Day (Observed)", + "2043-03-24": "Commonwealth Covenant Day", + "2043-03-26": "Holy Thursday; Prince Jonah Kuhio Kalanianaole Day", + "2043-03-27": "Good Friday", + "2043-03-30": "Easter Monday; Seward's Day", + "2043-03-31": "Cesar Chavez Day; Transfer Day", + "2043-04-16": "Emancipation Day", + "2043-04-20": "Patriots' Day", + "2043-04-21": "San Jacinto Day", + "2043-04-24": "Arbor Day", + "2043-04-27": "Confederate Memorial Day; State Holiday", + "2043-05-05": "Primary Election Day", + "2043-05-08": "Truman Day", + "2043-05-25": "Memorial Day", + "2043-06-01": "Jefferson Davis Birthday", + "2043-06-11": "Kamehameha Day", + "2043-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day; West Virginia Day (Observed)", + "2043-06-20": "West Virginia Day", + "2043-07-03": "Emancipation Day; Independence Day (Observed)", + "2043-07-04": "Independence Day", + "2043-07-21": "Liberation Day (Guam)", + "2043-07-24": "Pioneer Day", + "2043-07-25": "Constitution Day", + "2043-08-10": "Victory Day", + "2043-08-16": "Bennington Battle Day", + "2043-08-17": "Bennington Battle Day (Observed)", + "2043-08-21": "Statehood Day", + "2043-08-27": "Lyndon Baines Johnson Day", + "2043-09-07": "Labor Day", + "2043-10-12": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2043-10-18": "Alaska Day", + "2043-10-19": "Alaska Day (Observed)", + "2043-10-30": "Nevada Day", + "2043-11-01": "Liberty Day", + "2043-11-02": "All Souls' Day", + "2043-11-03": "Election Day", + "2043-11-04": "Citizenship Day", + "2043-11-11": "Veterans Day", + "2043-11-19": "Discovery Day", + "2043-11-26": "Thanksgiving", + "2043-11-27": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2043-12-08": "Constitution Day; Lady of Camarin Day", + "2043-12-24": "Christmas Eve; Washington's Birthday", + "2043-12-25": "Christmas Day", + "2043-12-26": "Christmas Second Day; Day After Christmas", + "2043-12-28": "Day After Christmas (Observed)", + "2043-12-31": "New Year's Eve", + "2044-01-01": "New Year's Day", + "2044-01-06": "Epiphany; Three Kings Day", + "2044-01-18": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2044-01-19": "Confederate Memorial Day", + "2044-02-12": "Lincoln's Birthday", + "2044-02-15": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Susan B. Anthony Day; Washington's Birthday", + "2044-03-01": "Mardi Gras; Town Meeting Day", + "2044-03-02": "Texas Independence Day", + "2044-03-07": "Casimir Pulaski Day; Guam Discovery Day", + "2044-03-17": "Evacuation Day", + "2044-03-22": "Emancipation Day", + "2044-03-24": "Commonwealth Covenant Day", + "2044-03-25": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "2044-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2044-03-28": "Seward's Day", + "2044-03-31": "Cesar Chavez Day; Transfer Day", + "2044-04-14": "Holy Thursday", + "2044-04-15": "Emancipation Day (Observed); Good Friday", + "2044-04-16": "Emancipation Day", + "2044-04-18": "Easter Monday; Patriots' Day", + "2044-04-21": "San Jacinto Day", + "2044-04-25": "Confederate Memorial Day; State Holiday", + "2044-04-29": "Arbor Day", + "2044-05-03": "Primary Election Day", + "2044-05-08": "Truman Day", + "2044-05-09": "Truman Day (Observed)", + "2044-05-30": "Memorial Day", + "2044-06-06": "Jefferson Davis Birthday", + "2044-06-10": "Kamehameha Day (Observed)", + "2044-06-11": "Kamehameha Day", + "2044-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", + "2044-06-20": "Emancipation Day In Texas (Observed); Juneteenth National Independence Day (Observed); West Virginia Day", + "2044-07-03": "Emancipation Day", + "2044-07-04": "Independence Day", + "2044-07-21": "Liberation Day (Guam)", + "2044-07-24": "Pioneer Day", + "2044-07-25": "Constitution Day; Pioneer Day (Observed)", + "2044-08-08": "Victory Day", + "2044-08-16": "Bennington Battle Day", + "2044-08-19": "Statehood Day", + "2044-08-27": "Lyndon Baines Johnson Day", + "2044-09-05": "Labor Day", + "2044-10-10": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2044-10-18": "Alaska Day", + "2044-10-28": "Nevada Day", + "2044-11-01": "Liberty Day", + "2044-11-02": "All Souls' Day", + "2044-11-04": "Citizenship Day", + "2044-11-08": "Election Day", + "2044-11-11": "Veterans Day", + "2044-11-19": "Discovery Day", + "2044-11-24": "Thanksgiving", + "2044-11-25": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2044-12-08": "Constitution Day; Lady of Camarin Day", + "2044-12-23": "Christmas Eve (Observed)", + "2044-12-24": "Christmas Eve; Washington's Birthday", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day (Observed); Christmas Second Day; Day After Christmas", + "2044-12-27": "Day After Christmas (Observed)", + "2044-12-30": "New Year's Eve (Observed)", + "2044-12-31": "New Year's Eve", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (Observed)", + "2045-01-06": "Epiphany; Three Kings Day", + "2045-01-16": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2045-01-19": "Confederate Memorial Day", + "2045-01-20": "Inauguration Day", + "2045-02-12": "Lincoln's Birthday", + "2045-02-13": "Lincoln's Birthday (Observed)", + "2045-02-15": "Susan B. Anthony Day", + "2045-02-20": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2045-02-21": "Mardi Gras", + "2045-03-02": "Texas Independence Day", + "2045-03-06": "Casimir Pulaski Day; Guam Discovery Day", + "2045-03-07": "Town Meeting Day", + "2045-03-17": "Evacuation Day", + "2045-03-22": "Emancipation Day", + "2045-03-24": "Commonwealth Covenant Day", + "2045-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2045-03-27": "Prince Jonah Kuhio Kalanianaole Day (Observed); Seward's Day", + "2045-03-31": "Cesar Chavez Day; Transfer Day", + "2045-04-06": "Holy Thursday", + "2045-04-07": "Good Friday", + "2045-04-10": "Easter Monday", + "2045-04-16": "Emancipation Day", + "2045-04-17": "Emancipation Day (Observed); Patriots' Day", + "2045-04-21": "San Jacinto Day", + "2045-04-24": "Confederate Memorial Day; State Holiday", + "2045-04-28": "Arbor Day", + "2045-05-02": "Primary Election Day", + "2045-05-08": "Truman Day", + "2045-05-29": "Memorial Day", + "2045-06-05": "Jefferson Davis Birthday", + "2045-06-11": "Kamehameha Day", + "2045-06-12": "Kamehameha Day (Observed)", + "2045-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", + "2045-06-20": "West Virginia Day", + "2045-07-03": "Emancipation Day", + "2045-07-04": "Independence Day", + "2045-07-21": "Liberation Day (Guam)", + "2045-07-24": "Pioneer Day", + "2045-07-25": "Constitution Day", + "2045-08-14": "Victory Day", + "2045-08-16": "Bennington Battle Day", + "2045-08-18": "Statehood Day", + "2045-08-27": "Lyndon Baines Johnson Day", + "2045-09-04": "Labor Day", + "2045-10-09": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2045-10-18": "Alaska Day", + "2045-10-27": "Nevada Day", + "2045-11-01": "Liberty Day", + "2045-11-02": "All Souls' Day", + "2045-11-03": "Citizenship Day (Observed)", + "2045-11-04": "Citizenship Day", + "2045-11-07": "Election Day", + "2045-11-10": "Veterans Day (Observed)", + "2045-11-11": "Veterans Day", + "2045-11-19": "Discovery Day", + "2045-11-20": "Discovery Day (Observed)", + "2045-11-23": "Thanksgiving", + "2045-11-24": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2045-12-08": "Constitution Day; Lady of Camarin Day", + "2045-12-22": "Christmas Eve (Observed)", + "2045-12-24": "Christmas Eve; Washington's Birthday", + "2045-12-25": "Christmas Day", + "2045-12-26": "Christmas Second Day; Day After Christmas", + "2045-12-31": "New Year's Eve", + "2046-01-01": "New Year's Day", + "2046-01-06": "Epiphany; Three Kings Day", + "2046-01-15": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2046-01-19": "Confederate Memorial Day", + "2046-02-06": "Mardi Gras", + "2046-02-12": "Lincoln's Birthday", + "2046-02-15": "Susan B. Anthony Day", + "2046-02-19": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2046-03-02": "Texas Independence Day", + "2046-03-05": "Casimir Pulaski Day; Guam Discovery Day", + "2046-03-06": "Town Meeting Day", + "2046-03-17": "Evacuation Day", + "2046-03-19": "Evacuation Day (Observed)", + "2046-03-22": "Emancipation Day; Holy Thursday", + "2046-03-23": "Commonwealth Covenant Day (Observed); Good Friday", + "2046-03-24": "Commonwealth Covenant Day", + "2046-03-26": "Easter Monday; Prince Jonah Kuhio Kalanianaole Day; Seward's Day", + "2046-03-31": "Cesar Chavez Day; Transfer Day", + "2046-04-16": "Emancipation Day; Patriots' Day", + "2046-04-21": "San Jacinto Day", + "2046-04-23": "Confederate Memorial Day; State Holiday", + "2046-04-27": "Arbor Day", + "2046-05-08": "Primary Election Day; Truman Day", + "2046-05-28": "Memorial Day", + "2046-06-04": "Jefferson Davis Birthday", + "2046-06-11": "Kamehameha Day", + "2046-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", + "2046-06-20": "West Virginia Day", + "2046-07-03": "Emancipation Day", + "2046-07-04": "Independence Day", + "2046-07-21": "Liberation Day (Guam)", + "2046-07-24": "Pioneer Day", + "2046-07-25": "Constitution Day", + "2046-08-13": "Victory Day", + "2046-08-16": "Bennington Battle Day", + "2046-08-17": "Statehood Day", + "2046-08-27": "Lyndon Baines Johnson Day", + "2046-09-03": "Labor Day", + "2046-10-08": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2046-10-18": "Alaska Day", + "2046-10-26": "Nevada Day", + "2046-11-01": "Liberty Day", + "2046-11-02": "All Souls' Day", + "2046-11-04": "Citizenship Day", + "2046-11-05": "Citizenship Day (Observed)", + "2046-11-06": "Election Day", + "2046-11-11": "Veterans Day", + "2046-11-12": "Veterans Day (Observed)", + "2046-11-19": "Discovery Day", + "2046-11-22": "Thanksgiving", + "2046-11-23": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2046-12-07": "Constitution Day (Observed)", + "2046-12-08": "Constitution Day; Lady of Camarin Day", + "2046-12-24": "Christmas Eve; Washington's Birthday", + "2046-12-25": "Christmas Day", + "2046-12-26": "Christmas Second Day; Day After Christmas", + "2046-12-31": "New Year's Eve", + "2047-01-01": "New Year's Day", + "2047-01-06": "Epiphany; Three Kings Day", + "2047-01-19": "Confederate Memorial Day", + "2047-01-21": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2047-02-12": "Lincoln's Birthday", + "2047-02-15": "Susan B. Anthony Day", + "2047-02-18": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2047-02-26": "Mardi Gras", + "2047-03-02": "Texas Independence Day", + "2047-03-04": "Casimir Pulaski Day; Guam Discovery Day", + "2047-03-05": "Town Meeting Day", + "2047-03-17": "Evacuation Day", + "2047-03-18": "Evacuation Day (Observed)", + "2047-03-22": "Emancipation Day", + "2047-03-24": "Commonwealth Covenant Day", + "2047-03-25": "Commonwealth Covenant Day (Observed); Seward's Day", + "2047-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2047-03-31": "Cesar Chavez Day; Transfer Day", + "2047-04-01": "Cesar Chavez Day (Observed)", + "2047-04-11": "Holy Thursday", + "2047-04-12": "Good Friday", + "2047-04-15": "Easter Monday; Patriots' Day", + "2047-04-16": "Emancipation Day", + "2047-04-21": "San Jacinto Day", + "2047-04-22": "Confederate Memorial Day; State Holiday", + "2047-04-26": "Arbor Day", + "2047-05-07": "Primary Election Day", + "2047-05-08": "Truman Day", + "2047-05-27": "Memorial Day", + "2047-06-03": "Jefferson Davis Birthday", + "2047-06-11": "Kamehameha Day", + "2047-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", + "2047-06-20": "West Virginia Day", + "2047-07-03": "Emancipation Day", + "2047-07-04": "Independence Day", + "2047-07-21": "Liberation Day (Guam)", + "2047-07-24": "Pioneer Day", + "2047-07-25": "Constitution Day", + "2047-08-12": "Victory Day", + "2047-08-16": "Bennington Battle Day; Statehood Day", + "2047-08-27": "Lyndon Baines Johnson Day", + "2047-09-02": "Labor Day", + "2047-10-14": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2047-10-18": "Alaska Day", + "2047-10-25": "Nevada Day", + "2047-11-01": "Liberty Day", + "2047-11-02": "All Souls' Day", + "2047-11-04": "Citizenship Day", + "2047-11-05": "Election Day", + "2047-11-11": "Veterans Day", + "2047-11-19": "Discovery Day", + "2047-11-28": "Thanksgiving", + "2047-11-29": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2047-12-08": "Constitution Day; Lady of Camarin Day", + "2047-12-09": "Constitution Day (Observed)", + "2047-12-24": "Christmas Eve; Washington's Birthday", + "2047-12-25": "Christmas Day", + "2047-12-26": "Christmas Second Day; Day After Christmas", + "2047-12-31": "New Year's Eve", + "2048-01-01": "New Year's Day", + "2048-01-06": "Epiphany; Three Kings Day", + "2048-01-19": "Confederate Memorial Day", + "2048-01-20": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2048-02-12": "Lincoln's Birthday", + "2048-02-15": "Susan B. Anthony Day", + "2048-02-17": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2048-02-18": "Mardi Gras", + "2048-03-02": "Casimir Pulaski Day; Guam Discovery Day; Texas Independence Day", + "2048-03-03": "Town Meeting Day", + "2048-03-17": "Evacuation Day", + "2048-03-22": "Emancipation Day", + "2048-03-23": "Emancipation Day (Observed)", + "2048-03-24": "Commonwealth Covenant Day", + "2048-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2048-03-30": "Seward's Day", + "2048-03-31": "Cesar Chavez Day; Transfer Day", + "2048-04-02": "Holy Thursday", + "2048-04-03": "Good Friday", + "2048-04-06": "Easter Monday", + "2048-04-16": "Emancipation Day", + "2048-04-20": "Patriots' Day", + "2048-04-21": "San Jacinto Day", + "2048-04-24": "Arbor Day", + "2048-04-27": "Confederate Memorial Day; State Holiday", + "2048-05-05": "Primary Election Day", + "2048-05-08": "Truman Day", + "2048-05-25": "Memorial Day", + "2048-06-01": "Jefferson Davis Birthday", + "2048-06-11": "Kamehameha Day", + "2048-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day; West Virginia Day (Observed)", + "2048-06-20": "West Virginia Day", + "2048-07-03": "Emancipation Day; Independence Day (Observed)", + "2048-07-04": "Independence Day", + "2048-07-21": "Liberation Day (Guam)", + "2048-07-24": "Pioneer Day", + "2048-07-25": "Constitution Day", + "2048-08-10": "Victory Day", + "2048-08-16": "Bennington Battle Day", + "2048-08-17": "Bennington Battle Day (Observed)", + "2048-08-21": "Statehood Day", + "2048-08-27": "Lyndon Baines Johnson Day", + "2048-09-07": "Labor Day", + "2048-10-12": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2048-10-18": "Alaska Day", + "2048-10-19": "Alaska Day (Observed)", + "2048-10-30": "Nevada Day", + "2048-11-01": "Liberty Day", + "2048-11-02": "All Souls' Day", + "2048-11-03": "Election Day", + "2048-11-04": "Citizenship Day", + "2048-11-11": "Veterans Day", + "2048-11-19": "Discovery Day", + "2048-11-26": "Thanksgiving", + "2048-11-27": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2048-12-08": "Constitution Day; Lady of Camarin Day", + "2048-12-24": "Christmas Eve; Washington's Birthday", + "2048-12-25": "Christmas Day", + "2048-12-26": "Christmas Second Day; Day After Christmas", + "2048-12-28": "Day After Christmas (Observed)", + "2048-12-31": "New Year's Eve", + "2049-01-01": "New Year's Day", + "2049-01-06": "Epiphany; Three Kings Day", + "2049-01-18": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2049-01-19": "Confederate Memorial Day", + "2049-01-20": "Inauguration Day", + "2049-02-12": "Lincoln's Birthday", + "2049-02-15": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Susan B. Anthony Day; Washington's Birthday", + "2049-03-01": "Casimir Pulaski Day; Guam Discovery Day", + "2049-03-02": "Mardi Gras; Texas Independence Day; Town Meeting Day", + "2049-03-17": "Evacuation Day", + "2049-03-22": "Emancipation Day", + "2049-03-24": "Commonwealth Covenant Day", + "2049-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2049-03-29": "Seward's Day", + "2049-03-31": "Cesar Chavez Day; Transfer Day", + "2049-04-15": "Holy Thursday", + "2049-04-16": "Emancipation Day; Good Friday", + "2049-04-19": "Easter Monday; Patriots' Day", + "2049-04-21": "San Jacinto Day", + "2049-04-26": "Confederate Memorial Day; State Holiday", + "2049-04-30": "Arbor Day", + "2049-05-04": "Primary Election Day", + "2049-05-07": "Truman Day (Observed)", + "2049-05-08": "Truman Day", + "2049-05-31": "Memorial Day", + "2049-06-07": "Jefferson Davis Birthday", + "2049-06-11": "Kamehameha Day", + "2049-06-18": "Emancipation Day In Texas (Observed); Juneteenth National Independence Day (Observed)", + "2049-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", + "2049-06-20": "West Virginia Day", + "2049-06-21": "West Virginia Day (Observed)", + "2049-07-03": "Emancipation Day", + "2049-07-04": "Independence Day", + "2049-07-05": "Independence Day (Observed)", + "2049-07-21": "Liberation Day (Guam)", + "2049-07-23": "Pioneer Day (Observed)", + "2049-07-24": "Pioneer Day", + "2049-07-25": "Constitution Day", + "2049-07-26": "Constitution Day (Observed)", + "2049-08-09": "Victory Day", + "2049-08-16": "Bennington Battle Day", + "2049-08-20": "Statehood Day", + "2049-08-27": "Lyndon Baines Johnson Day", + "2049-09-06": "Labor Day", + "2049-10-11": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2049-10-18": "Alaska Day", + "2049-10-29": "Nevada Day", + "2049-11-01": "Liberty Day", + "2049-11-02": "All Souls' Day; Election Day", + "2049-11-04": "Citizenship Day", + "2049-11-11": "Veterans Day", + "2049-11-19": "Discovery Day", + "2049-11-25": "Thanksgiving", + "2049-11-26": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2049-12-08": "Constitution Day; Lady of Camarin Day", + "2049-12-23": "Christmas Eve (Observed)", + "2049-12-24": "Christmas Day (Observed); Christmas Eve; Washington's Birthday", + "2049-12-25": "Christmas Day", + "2049-12-26": "Christmas Second Day; Day After Christmas", + "2049-12-27": "Day After Christmas (Observed)", + "2049-12-31": "New Year's Day (Observed); New Year's Eve", + "2050-01-01": "New Year's Day", + "2050-01-06": "Epiphany; Three Kings Day", + "2050-01-17": "Dr. Martin Luther King Jr. / Civil Rights Day; Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays; Martin Luther King Jr. / Idaho Human Rights Day; Martin Luther King Jr. Day; Martin Luther King, Jr & Robert E. Lee's Birthday", + "2050-01-19": "Confederate Memorial Day", + "2050-02-11": "Lincoln's Birthday (Observed)", + "2050-02-12": "Lincoln's Birthday", + "2050-02-15": "Susan B. Anthony Day", + "2050-02-21": "George Washington & Thomas Jefferson's Birthday; George Washington's Birthday and Daisy Gatson Bates Day; Presidents' Day; Washington's Birthday", + "2050-02-22": "Mardi Gras", + "2050-03-01": "Town Meeting Day", + "2050-03-02": "Texas Independence Day", + "2050-03-07": "Casimir Pulaski Day; Guam Discovery Day", + "2050-03-17": "Evacuation Day", + "2050-03-22": "Emancipation Day", + "2050-03-24": "Commonwealth Covenant Day", + "2050-03-25": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "2050-03-26": "Prince Jonah Kuhio Kalanianaole Day", + "2050-03-28": "Seward's Day", + "2050-03-31": "Cesar Chavez Day; Transfer Day", + "2050-04-07": "Holy Thursday", + "2050-04-08": "Good Friday", + "2050-04-11": "Easter Monday", + "2050-04-15": "Emancipation Day (Observed)", + "2050-04-16": "Emancipation Day", + "2050-04-18": "Patriots' Day", + "2050-04-21": "San Jacinto Day", + "2050-04-25": "Confederate Memorial Day; State Holiday", + "2050-04-29": "Arbor Day", + "2050-05-03": "Primary Election Day", + "2050-05-08": "Truman Day", + "2050-05-09": "Truman Day (Observed)", + "2050-05-30": "Memorial Day", + "2050-06-06": "Jefferson Davis Birthday", + "2050-06-10": "Kamehameha Day (Observed)", + "2050-06-11": "Kamehameha Day", + "2050-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", + "2050-06-20": "Emancipation Day In Texas (Observed); Juneteenth National Independence Day (Observed); West Virginia Day", + "2050-07-03": "Emancipation Day", + "2050-07-04": "Independence Day", + "2050-07-21": "Liberation Day (Guam)", + "2050-07-24": "Pioneer Day", + "2050-07-25": "Constitution Day; Pioneer Day (Observed)", + "2050-08-08": "Victory Day", + "2050-08-16": "Bennington Battle Day", + "2050-08-19": "Statehood Day", + "2050-08-27": "Lyndon Baines Johnson Day", + "2050-09-05": "Labor Day", + "2050-10-10": "Columbus Day; Columbus Day and Puerto Rico Friendship Day; Commonwealth Cultural Day; Native American Day", + "2050-10-18": "Alaska Day", + "2050-10-28": "Nevada Day", + "2050-11-01": "Liberty Day", + "2050-11-02": "All Souls' Day", + "2050-11-04": "Citizenship Day", + "2050-11-08": "Election Day", + "2050-11-11": "Veterans Day", + "2050-11-19": "Discovery Day", + "2050-11-24": "Thanksgiving", + "2050-11-25": "American Indian Heritage Day; Day After Thanksgiving; Family Day; Friday After Thanksgiving; Lincoln's Birthday; Presidents' Day; State Holiday", + "2050-12-08": "Constitution Day; Lady of Camarin Day", + "2050-12-23": "Christmas Eve (Observed)", + "2050-12-24": "Christmas Eve; Washington's Birthday", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day (Observed); Christmas Second Day; Day After Christmas", + "2050-12-27": "Day After Christmas (Observed)", + "2050-12-30": "New Year's Eve (Observed)", + "2050-12-31": "New Year's Eve" +} diff --git a/snapshots/countries/UY.json b/snapshots/countries/UY.json new file mode 100644 index 000000000..52145de00 --- /dev/null +++ b/snapshots/countries/UY.json @@ -0,0 +1,1851 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-06": "Children's Day", + "1950-02-20": "Carnival", + "1950-02-21": "Carnival", + "1950-04-03": "Tourism Week", + "1950-04-04": "Tourism Week", + "1950-04-05": "Tourism Week", + "1950-04-06": "Tourism Week", + "1950-04-07": "Tourism Week", + "1950-04-19": "Landing of the 33 Patriots", + "1950-05-01": "International Workers' Day", + "1950-05-18": "Battle of Las Piedras", + "1950-06-19": "Birthday of Artigas", + "1950-07-18": "Constitution Day", + "1950-08-25": "Independence Day", + "1950-10-12": "Columbus Day", + "1950-11-02": "All Souls' Day", + "1950-12-08": "Beaches Day", + "1950-12-25": "Day of the Family", + "1951-01-01": "New Year's Day", + "1951-01-06": "Children's Day", + "1951-02-05": "Carnival", + "1951-02-06": "Carnival", + "1951-03-19": "Tourism Week", + "1951-03-20": "Tourism Week", + "1951-03-21": "Tourism Week", + "1951-03-22": "Tourism Week", + "1951-03-23": "Tourism Week", + "1951-04-19": "Landing of the 33 Patriots", + "1951-05-01": "International Workers' Day", + "1951-05-18": "Battle of Las Piedras", + "1951-06-19": "Birthday of Artigas", + "1951-07-18": "Constitution Day", + "1951-08-25": "Independence Day", + "1951-10-12": "Columbus Day", + "1951-11-02": "All Souls' Day", + "1951-12-08": "Beaches Day", + "1951-12-25": "Day of the Family", + "1952-01-01": "New Year's Day", + "1952-01-06": "Children's Day", + "1952-02-25": "Carnival", + "1952-02-26": "Carnival", + "1952-04-07": "Tourism Week", + "1952-04-08": "Tourism Week", + "1952-04-09": "Tourism Week", + "1952-04-10": "Tourism Week", + "1952-04-11": "Tourism Week", + "1952-04-19": "Landing of the 33 Patriots", + "1952-05-01": "International Workers' Day", + "1952-05-18": "Battle of Las Piedras", + "1952-06-19": "Birthday of Artigas", + "1952-07-18": "Constitution Day", + "1952-08-25": "Independence Day", + "1952-10-12": "Columbus Day", + "1952-11-02": "All Souls' Day", + "1952-12-08": "Beaches Day", + "1952-12-25": "Day of the Family", + "1953-01-01": "New Year's Day", + "1953-01-06": "Children's Day", + "1953-02-16": "Carnival", + "1953-02-17": "Carnival", + "1953-03-30": "Tourism Week", + "1953-03-31": "Tourism Week", + "1953-04-01": "Tourism Week", + "1953-04-02": "Tourism Week", + "1953-04-03": "Tourism Week", + "1953-04-19": "Landing of the 33 Patriots", + "1953-05-01": "International Workers' Day", + "1953-05-18": "Battle of Las Piedras", + "1953-06-19": "Birthday of Artigas", + "1953-07-18": "Constitution Day", + "1953-08-25": "Independence Day", + "1953-10-12": "Columbus Day", + "1953-11-02": "All Souls' Day", + "1953-12-08": "Beaches Day", + "1953-12-25": "Day of the Family", + "1954-01-01": "New Year's Day", + "1954-01-06": "Children's Day", + "1954-03-01": "Carnival", + "1954-03-02": "Carnival", + "1954-04-12": "Tourism Week", + "1954-04-13": "Tourism Week", + "1954-04-14": "Tourism Week", + "1954-04-15": "Tourism Week", + "1954-04-16": "Tourism Week", + "1954-04-19": "Landing of the 33 Patriots", + "1954-05-01": "International Workers' Day", + "1954-05-18": "Battle of Las Piedras", + "1954-06-19": "Birthday of Artigas", + "1954-07-18": "Constitution Day", + "1954-08-25": "Independence Day", + "1954-10-12": "Columbus Day", + "1954-11-02": "All Souls' Day", + "1954-12-08": "Beaches Day", + "1954-12-25": "Day of the Family", + "1955-01-01": "New Year's Day", + "1955-01-06": "Children's Day", + "1955-02-21": "Carnival", + "1955-02-22": "Carnival", + "1955-04-04": "Tourism Week", + "1955-04-05": "Tourism Week", + "1955-04-06": "Tourism Week", + "1955-04-07": "Tourism Week", + "1955-04-08": "Tourism Week", + "1955-04-19": "Landing of the 33 Patriots", + "1955-05-01": "International Workers' Day", + "1955-05-18": "Battle of Las Piedras", + "1955-06-19": "Birthday of Artigas", + "1955-07-18": "Constitution Day", + "1955-08-25": "Independence Day", + "1955-10-12": "Columbus Day", + "1955-11-02": "All Souls' Day", + "1955-12-08": "Beaches Day", + "1955-12-25": "Day of the Family", + "1956-01-01": "New Year's Day", + "1956-01-06": "Children's Day", + "1956-02-13": "Carnival", + "1956-02-14": "Carnival", + "1956-03-26": "Tourism Week", + "1956-03-27": "Tourism Week", + "1956-03-28": "Tourism Week", + "1956-03-29": "Tourism Week", + "1956-03-30": "Tourism Week", + "1956-04-19": "Landing of the 33 Patriots", + "1956-05-01": "International Workers' Day", + "1956-05-18": "Battle of Las Piedras", + "1956-06-19": "Birthday of Artigas", + "1956-07-18": "Constitution Day", + "1956-08-25": "Independence Day", + "1956-10-12": "Columbus Day", + "1956-11-02": "All Souls' Day", + "1956-12-08": "Beaches Day", + "1956-12-25": "Day of the Family", + "1957-01-01": "New Year's Day", + "1957-01-06": "Children's Day", + "1957-03-04": "Carnival", + "1957-03-05": "Carnival", + "1957-04-15": "Tourism Week", + "1957-04-16": "Tourism Week", + "1957-04-17": "Tourism Week", + "1957-04-18": "Tourism Week", + "1957-04-19": "Landing of the 33 Patriots; Tourism Week", + "1957-05-01": "International Workers' Day", + "1957-05-18": "Battle of Las Piedras", + "1957-06-19": "Birthday of Artigas", + "1957-07-18": "Constitution Day", + "1957-08-25": "Independence Day", + "1957-10-12": "Columbus Day", + "1957-11-02": "All Souls' Day", + "1957-12-08": "Beaches Day", + "1957-12-25": "Day of the Family", + "1958-01-01": "New Year's Day", + "1958-01-06": "Children's Day", + "1958-02-17": "Carnival", + "1958-02-18": "Carnival", + "1958-03-31": "Tourism Week", + "1958-04-01": "Tourism Week", + "1958-04-02": "Tourism Week", + "1958-04-03": "Tourism Week", + "1958-04-04": "Tourism Week", + "1958-04-19": "Landing of the 33 Patriots", + "1958-05-01": "International Workers' Day", + "1958-05-18": "Battle of Las Piedras", + "1958-06-19": "Birthday of Artigas", + "1958-07-18": "Constitution Day", + "1958-08-25": "Independence Day", + "1958-10-12": "Columbus Day", + "1958-11-02": "All Souls' Day", + "1958-12-08": "Beaches Day", + "1958-12-25": "Day of the Family", + "1959-01-01": "New Year's Day", + "1959-01-06": "Children's Day", + "1959-02-09": "Carnival", + "1959-02-10": "Carnival", + "1959-03-23": "Tourism Week", + "1959-03-24": "Tourism Week", + "1959-03-25": "Tourism Week", + "1959-03-26": "Tourism Week", + "1959-03-27": "Tourism Week", + "1959-04-19": "Landing of the 33 Patriots", + "1959-05-01": "International Workers' Day", + "1959-05-18": "Battle of Las Piedras", + "1959-06-19": "Birthday of Artigas", + "1959-07-18": "Constitution Day", + "1959-08-25": "Independence Day", + "1959-10-12": "Columbus Day", + "1959-11-02": "All Souls' Day", + "1959-12-08": "Beaches Day", + "1959-12-25": "Day of the Family", + "1960-01-01": "New Year's Day", + "1960-01-06": "Children's Day", + "1960-02-29": "Carnival", + "1960-03-01": "Carnival", + "1960-04-11": "Tourism Week", + "1960-04-12": "Tourism Week", + "1960-04-13": "Tourism Week", + "1960-04-14": "Tourism Week", + "1960-04-15": "Tourism Week", + "1960-04-19": "Landing of the 33 Patriots", + "1960-05-01": "International Workers' Day", + "1960-05-18": "Battle of Las Piedras", + "1960-06-19": "Birthday of Artigas", + "1960-07-18": "Constitution Day", + "1960-08-25": "Independence Day", + "1960-10-12": "Columbus Day", + "1960-11-02": "All Souls' Day", + "1960-12-08": "Beaches Day", + "1960-12-25": "Day of the Family", + "1961-01-01": "New Year's Day", + "1961-01-06": "Children's Day", + "1961-02-13": "Carnival", + "1961-02-14": "Carnival", + "1961-03-27": "Tourism Week", + "1961-03-28": "Tourism Week", + "1961-03-29": "Tourism Week", + "1961-03-30": "Tourism Week", + "1961-03-31": "Tourism Week", + "1961-04-19": "Landing of the 33 Patriots", + "1961-05-01": "International Workers' Day", + "1961-05-18": "Battle of Las Piedras", + "1961-06-19": "Birthday of Artigas", + "1961-07-18": "Constitution Day", + "1961-08-25": "Independence Day", + "1961-10-12": "Columbus Day", + "1961-11-02": "All Souls' Day", + "1961-12-08": "Beaches Day", + "1961-12-25": "Day of the Family", + "1962-01-01": "New Year's Day", + "1962-01-06": "Children's Day", + "1962-03-05": "Carnival", + "1962-03-06": "Carnival", + "1962-04-16": "Tourism Week", + "1962-04-17": "Tourism Week", + "1962-04-18": "Tourism Week", + "1962-04-19": "Landing of the 33 Patriots; Tourism Week", + "1962-04-20": "Tourism Week", + "1962-05-01": "International Workers' Day", + "1962-05-18": "Battle of Las Piedras", + "1962-06-19": "Birthday of Artigas", + "1962-07-18": "Constitution Day", + "1962-08-25": "Independence Day", + "1962-10-12": "Columbus Day", + "1962-11-02": "All Souls' Day", + "1962-12-08": "Beaches Day", + "1962-12-25": "Day of the Family", + "1963-01-01": "New Year's Day", + "1963-01-06": "Children's Day", + "1963-02-25": "Carnival", + "1963-02-26": "Carnival", + "1963-04-08": "Tourism Week", + "1963-04-09": "Tourism Week", + "1963-04-10": "Tourism Week", + "1963-04-11": "Tourism Week", + "1963-04-12": "Tourism Week", + "1963-04-19": "Landing of the 33 Patriots", + "1963-05-01": "International Workers' Day", + "1963-05-18": "Battle of Las Piedras", + "1963-06-19": "Birthday of Artigas", + "1963-07-18": "Constitution Day", + "1963-08-25": "Independence Day", + "1963-10-12": "Columbus Day", + "1963-11-02": "All Souls' Day", + "1963-12-08": "Beaches Day", + "1963-12-25": "Day of the Family", + "1964-01-01": "New Year's Day", + "1964-01-06": "Children's Day", + "1964-02-10": "Carnival", + "1964-02-11": "Carnival", + "1964-03-23": "Tourism Week", + "1964-03-24": "Tourism Week", + "1964-03-25": "Tourism Week", + "1964-03-26": "Tourism Week", + "1964-03-27": "Tourism Week", + "1964-04-19": "Landing of the 33 Patriots", + "1964-05-01": "International Workers' Day", + "1964-05-18": "Battle of Las Piedras", + "1964-06-19": "Birthday of Artigas", + "1964-07-18": "Constitution Day", + "1964-08-25": "Independence Day", + "1964-10-12": "Columbus Day", + "1964-11-02": "All Souls' Day", + "1964-12-08": "Beaches Day", + "1964-12-25": "Day of the Family", + "1965-01-01": "New Year's Day", + "1965-01-06": "Children's Day", + "1965-03-01": "Carnival", + "1965-03-02": "Carnival", + "1965-04-12": "Tourism Week", + "1965-04-13": "Tourism Week", + "1965-04-14": "Tourism Week", + "1965-04-15": "Tourism Week", + "1965-04-16": "Tourism Week", + "1965-04-19": "Landing of the 33 Patriots", + "1965-05-01": "International Workers' Day", + "1965-05-18": "Battle of Las Piedras", + "1965-06-19": "Birthday of Artigas", + "1965-07-18": "Constitution Day", + "1965-08-25": "Independence Day", + "1965-10-12": "Columbus Day", + "1965-11-02": "All Souls' Day", + "1965-12-08": "Beaches Day", + "1965-12-25": "Day of the Family", + "1966-01-01": "New Year's Day", + "1966-01-06": "Children's Day", + "1966-02-21": "Carnival", + "1966-02-22": "Carnival", + "1966-04-04": "Tourism Week", + "1966-04-05": "Tourism Week", + "1966-04-06": "Tourism Week", + "1966-04-07": "Tourism Week", + "1966-04-08": "Tourism Week", + "1966-04-19": "Landing of the 33 Patriots", + "1966-05-01": "International Workers' Day", + "1966-05-18": "Battle of Las Piedras", + "1966-06-19": "Birthday of Artigas", + "1966-07-18": "Constitution Day", + "1966-08-25": "Independence Day", + "1966-10-12": "Columbus Day", + "1966-11-02": "All Souls' Day", + "1966-12-08": "Beaches Day", + "1966-12-25": "Day of the Family", + "1967-01-01": "New Year's Day", + "1967-01-06": "Children's Day", + "1967-02-06": "Carnival", + "1967-02-07": "Carnival", + "1967-03-20": "Tourism Week", + "1967-03-21": "Tourism Week", + "1967-03-22": "Tourism Week", + "1967-03-23": "Tourism Week", + "1967-03-24": "Tourism Week", + "1967-04-19": "Landing of the 33 Patriots", + "1967-05-01": "International Workers' Day", + "1967-05-18": "Battle of Las Piedras", + "1967-06-19": "Birthday of Artigas", + "1967-07-18": "Constitution Day", + "1967-08-25": "Independence Day", + "1967-10-12": "Columbus Day", + "1967-11-02": "All Souls' Day", + "1967-12-08": "Beaches Day", + "1967-12-25": "Day of the Family", + "1968-01-01": "New Year's Day", + "1968-01-06": "Children's Day", + "1968-02-26": "Carnival", + "1968-02-27": "Carnival", + "1968-04-08": "Tourism Week", + "1968-04-09": "Tourism Week", + "1968-04-10": "Tourism Week", + "1968-04-11": "Tourism Week", + "1968-04-12": "Tourism Week", + "1968-04-19": "Landing of the 33 Patriots", + "1968-05-01": "International Workers' Day", + "1968-05-18": "Battle of Las Piedras", + "1968-06-19": "Birthday of Artigas", + "1968-07-18": "Constitution Day", + "1968-08-25": "Independence Day", + "1968-10-12": "Columbus Day", + "1968-11-02": "All Souls' Day", + "1968-12-08": "Beaches Day", + "1968-12-25": "Day of the Family", + "1969-01-01": "New Year's Day", + "1969-01-06": "Children's Day", + "1969-02-17": "Carnival", + "1969-02-18": "Carnival", + "1969-03-31": "Tourism Week", + "1969-04-01": "Tourism Week", + "1969-04-02": "Tourism Week", + "1969-04-03": "Tourism Week", + "1969-04-04": "Tourism Week", + "1969-04-19": "Landing of the 33 Patriots", + "1969-05-01": "International Workers' Day", + "1969-05-18": "Battle of Las Piedras", + "1969-06-19": "Birthday of Artigas", + "1969-07-18": "Constitution Day", + "1969-08-25": "Independence Day", + "1969-10-12": "Columbus Day", + "1969-11-02": "All Souls' Day", + "1969-12-08": "Beaches Day", + "1969-12-25": "Day of the Family", + "1970-01-01": "New Year's Day", + "1970-01-06": "Children's Day", + "1970-02-09": "Carnival", + "1970-02-10": "Carnival", + "1970-03-23": "Tourism Week", + "1970-03-24": "Tourism Week", + "1970-03-25": "Tourism Week", + "1970-03-26": "Tourism Week", + "1970-03-27": "Tourism Week", + "1970-04-19": "Landing of the 33 Patriots", + "1970-05-01": "International Workers' Day", + "1970-05-18": "Battle of Las Piedras", + "1970-06-19": "Birthday of Artigas", + "1970-07-18": "Constitution Day", + "1970-08-25": "Independence Day", + "1970-10-12": "Columbus Day", + "1970-11-02": "All Souls' Day", + "1970-12-08": "Beaches Day", + "1970-12-25": "Day of the Family", + "1971-01-01": "New Year's Day", + "1971-01-06": "Children's Day", + "1971-02-22": "Carnival", + "1971-02-23": "Carnival", + "1971-04-05": "Tourism Week", + "1971-04-06": "Tourism Week", + "1971-04-07": "Tourism Week", + "1971-04-08": "Tourism Week", + "1971-04-09": "Tourism Week", + "1971-04-19": "Landing of the 33 Patriots", + "1971-05-01": "International Workers' Day", + "1971-05-18": "Battle of Las Piedras", + "1971-06-19": "Birthday of Artigas", + "1971-07-18": "Constitution Day", + "1971-08-25": "Independence Day", + "1971-10-12": "Columbus Day", + "1971-11-02": "All Souls' Day", + "1971-12-08": "Beaches Day", + "1971-12-25": "Day of the Family", + "1972-01-01": "New Year's Day", + "1972-01-06": "Children's Day", + "1972-02-14": "Carnival", + "1972-02-15": "Carnival", + "1972-03-27": "Tourism Week", + "1972-03-28": "Tourism Week", + "1972-03-29": "Tourism Week", + "1972-03-30": "Tourism Week", + "1972-03-31": "Tourism Week", + "1972-04-19": "Landing of the 33 Patriots", + "1972-05-01": "International Workers' Day", + "1972-05-18": "Battle of Las Piedras", + "1972-06-19": "Birthday of Artigas", + "1972-07-18": "Constitution Day", + "1972-08-25": "Independence Day", + "1972-10-12": "Columbus Day", + "1972-11-02": "All Souls' Day", + "1972-12-08": "Beaches Day", + "1972-12-25": "Day of the Family", + "1973-01-01": "New Year's Day", + "1973-01-06": "Children's Day", + "1973-03-05": "Carnival", + "1973-03-06": "Carnival", + "1973-04-16": "Tourism Week", + "1973-04-17": "Tourism Week", + "1973-04-18": "Tourism Week", + "1973-04-19": "Landing of the 33 Patriots; Tourism Week", + "1973-04-20": "Tourism Week", + "1973-05-01": "International Workers' Day", + "1973-05-18": "Battle of Las Piedras", + "1973-06-19": "Birthday of Artigas", + "1973-07-18": "Constitution Day", + "1973-08-25": "Independence Day", + "1973-10-12": "Columbus Day", + "1973-11-02": "All Souls' Day", + "1973-12-08": "Beaches Day", + "1973-12-25": "Day of the Family", + "1974-01-01": "New Year's Day", + "1974-01-06": "Children's Day", + "1974-02-25": "Carnival", + "1974-02-26": "Carnival", + "1974-04-08": "Tourism Week", + "1974-04-09": "Tourism Week", + "1974-04-10": "Tourism Week", + "1974-04-11": "Tourism Week", + "1974-04-12": "Tourism Week", + "1974-04-19": "Landing of the 33 Patriots", + "1974-05-01": "International Workers' Day", + "1974-05-18": "Battle of Las Piedras", + "1974-06-19": "Birthday of Artigas", + "1974-07-18": "Constitution Day", + "1974-08-25": "Independence Day", + "1974-10-12": "Columbus Day", + "1974-11-02": "All Souls' Day", + "1974-12-08": "Beaches Day", + "1974-12-25": "Day of the Family", + "1975-01-01": "New Year's Day", + "1975-01-06": "Children's Day", + "1975-02-10": "Carnival", + "1975-02-11": "Carnival", + "1975-03-24": "Tourism Week", + "1975-03-25": "Tourism Week", + "1975-03-26": "Tourism Week", + "1975-03-27": "Tourism Week", + "1975-03-28": "Tourism Week", + "1975-04-19": "Landing of the 33 Patriots", + "1975-05-01": "International Workers' Day", + "1975-05-18": "Battle of Las Piedras", + "1975-06-19": "Birthday of Artigas", + "1975-07-18": "Constitution Day", + "1975-08-25": "Independence Day", + "1975-10-12": "Columbus Day", + "1975-11-02": "All Souls' Day", + "1975-12-08": "Beaches Day", + "1975-12-25": "Day of the Family", + "1976-01-01": "New Year's Day", + "1976-01-06": "Children's Day", + "1976-03-01": "Carnival", + "1976-03-02": "Carnival", + "1976-04-12": "Tourism Week", + "1976-04-13": "Tourism Week", + "1976-04-14": "Tourism Week", + "1976-04-15": "Tourism Week", + "1976-04-16": "Tourism Week", + "1976-04-19": "Landing of the 33 Patriots", + "1976-05-01": "International Workers' Day", + "1976-05-18": "Battle of Las Piedras", + "1976-06-19": "Birthday of Artigas", + "1976-07-18": "Constitution Day", + "1976-08-25": "Independence Day", + "1976-10-12": "Columbus Day", + "1976-11-02": "All Souls' Day", + "1976-12-08": "Beaches Day", + "1976-12-25": "Day of the Family", + "1977-01-01": "New Year's Day", + "1977-01-06": "Children's Day", + "1977-02-21": "Carnival", + "1977-02-22": "Carnival", + "1977-04-04": "Tourism Week", + "1977-04-05": "Tourism Week", + "1977-04-06": "Tourism Week", + "1977-04-07": "Tourism Week", + "1977-04-08": "Tourism Week", + "1977-04-19": "Landing of the 33 Patriots", + "1977-05-01": "International Workers' Day", + "1977-05-18": "Battle of Las Piedras", + "1977-06-19": "Birthday of Artigas", + "1977-07-18": "Constitution Day", + "1977-08-25": "Independence Day", + "1977-10-12": "Columbus Day", + "1977-11-02": "All Souls' Day", + "1977-12-08": "Beaches Day", + "1977-12-25": "Day of the Family", + "1978-01-01": "New Year's Day", + "1978-01-06": "Children's Day", + "1978-02-06": "Carnival", + "1978-02-07": "Carnival", + "1978-03-20": "Tourism Week", + "1978-03-21": "Tourism Week", + "1978-03-22": "Tourism Week", + "1978-03-23": "Tourism Week", + "1978-03-24": "Tourism Week", + "1978-04-19": "Landing of the 33 Patriots", + "1978-05-01": "International Workers' Day", + "1978-05-18": "Battle of Las Piedras", + "1978-06-19": "Birthday of Artigas", + "1978-07-18": "Constitution Day", + "1978-08-25": "Independence Day", + "1978-10-12": "Columbus Day", + "1978-11-02": "All Souls' Day", + "1978-12-08": "Beaches Day", + "1978-12-25": "Day of the Family", + "1979-01-01": "New Year's Day", + "1979-01-06": "Children's Day", + "1979-02-26": "Carnival", + "1979-02-27": "Carnival", + "1979-04-09": "Tourism Week", + "1979-04-10": "Tourism Week", + "1979-04-11": "Tourism Week", + "1979-04-12": "Tourism Week", + "1979-04-13": "Tourism Week", + "1979-04-19": "Landing of the 33 Patriots", + "1979-05-01": "International Workers' Day", + "1979-05-18": "Battle of Las Piedras", + "1979-06-19": "Birthday of Artigas", + "1979-07-18": "Constitution Day", + "1979-08-25": "Independence Day", + "1979-10-12": "Columbus Day", + "1979-11-02": "All Souls' Day", + "1979-12-08": "Beaches Day", + "1979-12-25": "Day of the Family", + "1980-01-01": "New Year's Day", + "1980-01-06": "Children's Day", + "1980-02-18": "Carnival", + "1980-02-19": "Carnival", + "1980-03-31": "Tourism Week", + "1980-04-01": "Tourism Week", + "1980-04-02": "Tourism Week", + "1980-04-03": "Tourism Week", + "1980-04-04": "Tourism Week", + "1980-04-19": "Landing of the 33 Patriots", + "1980-05-05": "International Workers' Day", + "1980-05-18": "Battle of Las Piedras", + "1980-06-23": "Birthday of Artigas", + "1980-07-18": "Constitution Day", + "1980-08-25": "Independence Day", + "1980-10-12": "Columbus Day", + "1980-11-02": "All Souls' Day", + "1980-12-25": "Day of the Family", + "1981-01-01": "New Year's Day", + "1981-01-06": "Children's Day", + "1981-03-02": "Carnival", + "1981-03-03": "Carnival", + "1981-04-13": "Tourism Week", + "1981-04-14": "Tourism Week", + "1981-04-15": "Tourism Week", + "1981-04-16": "Tourism Week", + "1981-04-17": "Tourism Week", + "1981-04-19": "Landing of the 33 Patriots", + "1981-05-04": "International Workers' Day", + "1981-05-18": "Battle of Las Piedras", + "1981-06-22": "Birthday of Artigas", + "1981-07-18": "Constitution Day", + "1981-08-25": "Independence Day", + "1981-10-12": "Columbus Day", + "1981-11-02": "All Souls' Day", + "1981-12-25": "Day of the Family", + "1982-01-01": "New Year's Day", + "1982-01-06": "Children's Day", + "1982-02-22": "Carnival", + "1982-02-23": "Carnival", + "1982-04-05": "Tourism Week", + "1982-04-06": "Tourism Week", + "1982-04-07": "Tourism Week", + "1982-04-08": "Tourism Week", + "1982-04-09": "Tourism Week", + "1982-04-19": "Landing of the 33 Patriots", + "1982-05-01": "International Workers' Day", + "1982-05-17": "Battle of Las Piedras", + "1982-06-19": "Birthday of Artigas", + "1982-07-18": "Constitution Day", + "1982-08-25": "Independence Day", + "1982-10-11": "Columbus Day", + "1982-11-01": "All Souls' Day", + "1982-12-25": "Day of the Family", + "1983-01-01": "New Year's Day", + "1983-01-06": "Children's Day", + "1983-02-14": "Carnival", + "1983-02-15": "Carnival", + "1983-03-28": "Tourism Week", + "1983-03-29": "Tourism Week", + "1983-03-30": "Tourism Week", + "1983-03-31": "Tourism Week", + "1983-04-01": "Tourism Week", + "1983-04-18": "Landing of the 33 Patriots", + "1983-05-01": "International Workers' Day", + "1983-05-16": "Battle of Las Piedras", + "1983-06-19": "Birthday of Artigas", + "1983-07-18": "Constitution Day", + "1983-08-25": "Independence Day", + "1983-10-10": "Columbus Day", + "1983-10-31": "All Souls' Day", + "1983-12-25": "Day of the Family", + "1984-01-01": "New Year's Day", + "1984-01-06": "Children's Day", + "1984-03-05": "Carnival", + "1984-03-06": "Carnival", + "1984-04-16": "Tourism Week", + "1984-04-17": "Tourism Week", + "1984-04-18": "Tourism Week", + "1984-04-19": "Landing of the 33 Patriots; Tourism Week", + "1984-04-20": "Tourism Week", + "1984-05-01": "International Workers' Day", + "1984-05-18": "Battle of Las Piedras", + "1984-06-19": "Birthday of Artigas", + "1984-07-18": "Constitution Day", + "1984-08-25": "Independence Day", + "1984-10-12": "Columbus Day", + "1984-11-02": "All Souls' Day", + "1984-12-25": "Day of the Family", + "1985-01-01": "New Year's Day", + "1985-01-06": "Children's Day", + "1985-02-18": "Carnival", + "1985-02-19": "Carnival", + "1985-03-01": "Presidential Inauguration Day", + "1985-04-01": "Tourism Week", + "1985-04-02": "Tourism Week", + "1985-04-03": "Tourism Week", + "1985-04-04": "Tourism Week", + "1985-04-05": "Tourism Week", + "1985-04-19": "Landing of the 33 Patriots", + "1985-05-01": "International Workers' Day", + "1985-05-18": "Battle of Las Piedras", + "1985-06-19": "Birthday of Artigas", + "1985-07-18": "Constitution Day", + "1985-08-25": "Independence Day", + "1985-10-12": "Columbus Day", + "1985-11-02": "All Souls' Day", + "1985-12-25": "Day of the Family", + "1986-01-01": "New Year's Day", + "1986-01-06": "Children's Day", + "1986-02-10": "Carnival", + "1986-02-11": "Carnival", + "1986-03-24": "Tourism Week", + "1986-03-25": "Tourism Week", + "1986-03-26": "Tourism Week", + "1986-03-27": "Tourism Week", + "1986-03-28": "Tourism Week", + "1986-04-19": "Landing of the 33 Patriots", + "1986-05-01": "International Workers' Day", + "1986-05-18": "Battle of Las Piedras", + "1986-06-19": "Birthday of Artigas", + "1986-07-18": "Constitution Day", + "1986-08-25": "Independence Day", + "1986-10-12": "Columbus Day", + "1986-11-02": "All Souls' Day", + "1986-12-25": "Day of the Family", + "1987-01-01": "New Year's Day", + "1987-01-06": "Children's Day", + "1987-03-02": "Carnival", + "1987-03-03": "Carnival", + "1987-04-13": "Tourism Week", + "1987-04-14": "Tourism Week", + "1987-04-15": "Tourism Week", + "1987-04-16": "Tourism Week", + "1987-04-17": "Tourism Week", + "1987-04-19": "Landing of the 33 Patriots", + "1987-05-01": "International Workers' Day", + "1987-05-18": "Battle of Las Piedras", + "1987-06-19": "Birthday of Artigas", + "1987-07-18": "Constitution Day", + "1987-08-25": "Independence Day", + "1987-10-12": "Columbus Day", + "1987-11-02": "All Souls' Day", + "1987-12-25": "Day of the Family", + "1988-01-01": "New Year's Day", + "1988-01-06": "Children's Day", + "1988-02-15": "Carnival", + "1988-02-16": "Carnival", + "1988-03-28": "Tourism Week", + "1988-03-29": "Tourism Week", + "1988-03-30": "Tourism Week", + "1988-03-31": "Tourism Week", + "1988-04-01": "Tourism Week", + "1988-04-19": "Landing of the 33 Patriots", + "1988-05-01": "International Workers' Day", + "1988-05-18": "Battle of Las Piedras", + "1988-06-19": "Birthday of Artigas", + "1988-07-18": "Constitution Day", + "1988-08-25": "Independence Day", + "1988-10-12": "Columbus Day", + "1988-11-02": "All Souls' Day", + "1988-12-25": "Day of the Family", + "1989-01-01": "New Year's Day", + "1989-01-06": "Children's Day", + "1989-02-06": "Carnival", + "1989-02-07": "Carnival", + "1989-03-20": "Tourism Week", + "1989-03-21": "Tourism Week", + "1989-03-22": "Tourism Week", + "1989-03-23": "Tourism Week", + "1989-03-24": "Tourism Week", + "1989-04-19": "Landing of the 33 Patriots", + "1989-05-01": "International Workers' Day", + "1989-05-18": "Battle of Las Piedras", + "1989-06-19": "Birthday of Artigas", + "1989-07-18": "Constitution Day", + "1989-08-25": "Independence Day", + "1989-10-12": "Columbus Day", + "1989-11-02": "All Souls' Day", + "1989-12-25": "Day of the Family", + "1990-01-01": "New Year's Day", + "1990-01-06": "Children's Day", + "1990-02-26": "Carnival", + "1990-02-27": "Carnival", + "1990-03-01": "Presidential Inauguration Day", + "1990-04-09": "Tourism Week", + "1990-04-10": "Tourism Week", + "1990-04-11": "Tourism Week", + "1990-04-12": "Tourism Week", + "1990-04-13": "Tourism Week", + "1990-04-19": "Landing of the 33 Patriots", + "1990-05-01": "International Workers' Day", + "1990-05-18": "Battle of Las Piedras", + "1990-06-19": "Birthday of Artigas", + "1990-07-18": "Constitution Day", + "1990-08-25": "Independence Day", + "1990-10-12": "Columbus Day", + "1990-11-02": "All Souls' Day", + "1990-12-25": "Day of the Family", + "1991-01-01": "New Year's Day", + "1991-01-06": "Children's Day", + "1991-02-11": "Carnival", + "1991-02-12": "Carnival", + "1991-03-25": "Tourism Week", + "1991-03-26": "Tourism Week", + "1991-03-27": "Tourism Week", + "1991-03-28": "Tourism Week", + "1991-03-29": "Tourism Week", + "1991-04-19": "Landing of the 33 Patriots", + "1991-05-01": "International Workers' Day", + "1991-05-18": "Battle of Las Piedras", + "1991-06-19": "Birthday of Artigas", + "1991-07-18": "Constitution Day", + "1991-08-25": "Independence Day", + "1991-10-12": "Columbus Day", + "1991-11-02": "All Souls' Day", + "1991-12-25": "Day of the Family", + "1992-01-01": "New Year's Day", + "1992-01-06": "Children's Day", + "1992-03-02": "Carnival", + "1992-03-03": "Carnival", + "1992-04-13": "Tourism Week", + "1992-04-14": "Tourism Week", + "1992-04-15": "Tourism Week", + "1992-04-16": "Tourism Week", + "1992-04-17": "Tourism Week", + "1992-04-19": "Landing of the 33 Patriots", + "1992-05-01": "International Workers' Day", + "1992-05-18": "Battle of Las Piedras", + "1992-06-19": "Birthday of Artigas", + "1992-07-18": "Constitution Day", + "1992-08-25": "Independence Day", + "1992-10-12": "Columbus Day", + "1992-11-02": "All Souls' Day", + "1992-12-25": "Day of the Family", + "1993-01-01": "New Year's Day", + "1993-01-06": "Children's Day", + "1993-02-22": "Carnival", + "1993-02-23": "Carnival", + "1993-04-05": "Tourism Week", + "1993-04-06": "Tourism Week", + "1993-04-07": "Tourism Week", + "1993-04-08": "Tourism Week", + "1993-04-09": "Tourism Week", + "1993-04-19": "Landing of the 33 Patriots", + "1993-05-01": "International Workers' Day", + "1993-05-18": "Battle of Las Piedras", + "1993-06-19": "Birthday of Artigas", + "1993-07-18": "Constitution Day", + "1993-08-25": "Independence Day", + "1993-10-12": "Columbus Day", + "1993-11-02": "All Souls' Day", + "1993-12-25": "Day of the Family", + "1994-01-01": "New Year's Day", + "1994-01-06": "Children's Day", + "1994-02-14": "Carnival", + "1994-02-15": "Carnival", + "1994-03-28": "Tourism Week", + "1994-03-29": "Tourism Week", + "1994-03-30": "Tourism Week", + "1994-03-31": "Tourism Week", + "1994-04-01": "Tourism Week", + "1994-04-19": "Landing of the 33 Patriots", + "1994-05-01": "International Workers' Day", + "1994-05-18": "Battle of Las Piedras", + "1994-06-19": "Birthday of Artigas", + "1994-07-18": "Constitution Day", + "1994-08-25": "Independence Day", + "1994-10-12": "Columbus Day", + "1994-11-02": "All Souls' Day", + "1994-12-25": "Day of the Family", + "1995-01-01": "New Year's Day", + "1995-01-06": "Children's Day", + "1995-02-27": "Carnival", + "1995-02-28": "Carnival", + "1995-03-01": "Presidential Inauguration Day", + "1995-04-10": "Tourism Week", + "1995-04-11": "Tourism Week", + "1995-04-12": "Tourism Week", + "1995-04-13": "Tourism Week", + "1995-04-14": "Tourism Week", + "1995-04-19": "Landing of the 33 Patriots", + "1995-05-01": "International Workers' Day", + "1995-05-18": "Battle of Las Piedras", + "1995-06-19": "Birthday of Artigas", + "1995-07-18": "Constitution Day", + "1995-08-25": "Independence Day", + "1995-10-12": "Columbus Day", + "1995-11-02": "All Souls' Day", + "1995-12-25": "Day of the Family", + "1996-01-01": "New Year's Day", + "1996-01-06": "Children's Day", + "1996-02-19": "Carnival", + "1996-02-20": "Carnival", + "1996-04-01": "Tourism Week", + "1996-04-02": "Tourism Week", + "1996-04-03": "Tourism Week", + "1996-04-04": "Tourism Week", + "1996-04-05": "Tourism Week", + "1996-04-19": "Landing of the 33 Patriots", + "1996-05-01": "International Workers' Day", + "1996-05-18": "Battle of Las Piedras", + "1996-06-19": "Birthday of Artigas", + "1996-07-18": "Constitution Day", + "1996-08-25": "Independence Day", + "1996-10-12": "Columbus Day", + "1996-11-02": "All Souls' Day", + "1996-12-25": "Day of the Family", + "1997-01-01": "New Year's Day", + "1997-01-06": "Children's Day", + "1997-02-10": "Carnival", + "1997-02-11": "Carnival", + "1997-03-24": "Tourism Week", + "1997-03-25": "Tourism Week", + "1997-03-26": "Tourism Week", + "1997-03-27": "Tourism Week", + "1997-03-28": "Tourism Week", + "1997-04-19": "Landing of the 33 Patriots", + "1997-05-01": "International Workers' Day", + "1997-05-18": "Battle of Las Piedras", + "1997-06-23": "Birthday of Artigas", + "1997-07-18": "Constitution Day", + "1997-08-25": "Independence Day", + "1997-10-12": "Columbus Day", + "1997-11-02": "All Souls' Day", + "1997-12-25": "Day of the Family", + "1998-01-01": "New Year's Day", + "1998-01-06": "Children's Day", + "1998-02-23": "Carnival", + "1998-02-24": "Carnival", + "1998-04-06": "Tourism Week", + "1998-04-07": "Tourism Week", + "1998-04-08": "Tourism Week", + "1998-04-09": "Tourism Week", + "1998-04-10": "Tourism Week", + "1998-04-19": "Landing of the 33 Patriots", + "1998-05-01": "International Workers' Day", + "1998-05-18": "Battle of Las Piedras", + "1998-06-22": "Birthday of Artigas", + "1998-07-18": "Constitution Day", + "1998-08-25": "Independence Day", + "1998-10-12": "Columbus Day", + "1998-11-02": "All Souls' Day", + "1998-12-25": "Day of the Family", + "1999-01-01": "New Year's Day", + "1999-01-06": "Children's Day", + "1999-02-15": "Carnival", + "1999-02-16": "Carnival", + "1999-03-29": "Tourism Week", + "1999-03-30": "Tourism Week", + "1999-03-31": "Tourism Week", + "1999-04-01": "Tourism Week", + "1999-04-02": "Tourism Week", + "1999-04-19": "Landing of the 33 Patriots", + "1999-05-01": "International Workers' Day", + "1999-05-17": "Battle of Las Piedras", + "1999-06-19": "Birthday of Artigas", + "1999-07-18": "Constitution Day", + "1999-08-25": "Independence Day", + "1999-10-11": "Columbus Day", + "1999-11-01": "All Souls' Day", + "1999-12-25": "Day of the Family", + "2000-01-01": "New Year's Day", + "2000-01-06": "Children's Day", + "2000-03-01": "Presidential Inauguration Day", + "2000-03-06": "Carnival", + "2000-03-07": "Carnival", + "2000-04-17": "Landing of the 33 Patriots; Tourism Week", + "2000-04-18": "Tourism Week", + "2000-04-19": "Tourism Week", + "2000-04-20": "Tourism Week", + "2000-04-21": "Tourism Week", + "2000-05-01": "International Workers' Day", + "2000-05-22": "Battle of Las Piedras", + "2000-06-19": "Birthday of Artigas", + "2000-07-18": "Constitution Day", + "2000-08-25": "Independence Day", + "2000-10-16": "Columbus Day", + "2000-11-06": "All Souls' Day", + "2000-12-25": "Day of the Family", + "2001-01-01": "New Year's Day", + "2001-01-06": "Children's Day", + "2001-02-26": "Carnival", + "2001-02-27": "Carnival", + "2001-04-09": "Tourism Week", + "2001-04-10": "Tourism Week", + "2001-04-11": "Tourism Week", + "2001-04-12": "Tourism Week", + "2001-04-13": "Tourism Week", + "2001-04-23": "Landing of the 33 Patriots", + "2001-05-01": "International Workers' Day", + "2001-05-21": "Battle of Las Piedras", + "2001-06-18": "Birthday of Artigas", + "2001-07-18": "Constitution Day", + "2001-08-25": "Independence Day", + "2001-10-15": "Columbus Day", + "2001-11-05": "All Souls' Day", + "2001-12-25": "Day of the Family", + "2002-01-01": "New Year's Day", + "2002-01-06": "Children's Day", + "2002-02-11": "Carnival", + "2002-02-12": "Carnival", + "2002-03-25": "Tourism Week", + "2002-03-26": "Tourism Week", + "2002-03-27": "Tourism Week", + "2002-03-28": "Tourism Week", + "2002-03-29": "Tourism Week", + "2002-04-22": "Landing of the 33 Patriots", + "2002-05-01": "International Workers' Day", + "2002-05-18": "Battle of Las Piedras", + "2002-06-19": "Birthday of Artigas", + "2002-07-18": "Constitution Day", + "2002-08-25": "Independence Day", + "2002-10-12": "Columbus Day", + "2002-11-02": "All Souls' Day", + "2002-12-25": "Day of the Family", + "2003-01-01": "New Year's Day", + "2003-01-06": "Children's Day", + "2003-03-03": "Carnival", + "2003-03-04": "Carnival", + "2003-04-14": "Tourism Week", + "2003-04-15": "Tourism Week", + "2003-04-16": "Tourism Week", + "2003-04-17": "Tourism Week", + "2003-04-18": "Tourism Week", + "2003-04-19": "Landing of the 33 Patriots", + "2003-05-01": "International Workers' Day", + "2003-05-18": "Battle of Las Piedras", + "2003-06-19": "Birthday of Artigas", + "2003-07-18": "Constitution Day", + "2003-08-25": "Independence Day", + "2003-10-12": "Columbus Day", + "2003-11-02": "All Souls' Day", + "2003-12-25": "Day of the Family", + "2004-01-01": "New Year's Day", + "2004-01-06": "Children's Day", + "2004-02-23": "Carnival", + "2004-02-24": "Carnival", + "2004-04-05": "Tourism Week", + "2004-04-06": "Tourism Week", + "2004-04-07": "Tourism Week", + "2004-04-08": "Tourism Week", + "2004-04-09": "Tourism Week", + "2004-04-19": "Landing of the 33 Patriots", + "2004-05-01": "International Workers' Day", + "2004-05-17": "Battle of Las Piedras", + "2004-06-19": "Birthday of Artigas", + "2004-07-18": "Constitution Day", + "2004-08-25": "Independence Day", + "2004-10-11": "Columbus Day", + "2004-11-02": "All Souls' Day", + "2004-12-25": "Day of the Family", + "2005-01-01": "New Year's Day", + "2005-01-06": "Children's Day", + "2005-02-07": "Carnival", + "2005-02-08": "Carnival", + "2005-03-01": "Presidential Inauguration Day", + "2005-03-21": "Tourism Week", + "2005-03-22": "Tourism Week", + "2005-03-23": "Tourism Week", + "2005-03-24": "Tourism Week", + "2005-03-25": "Tourism Week", + "2005-04-18": "Landing of the 33 Patriots", + "2005-05-01": "International Workers' Day", + "2005-05-16": "Battle of Las Piedras", + "2005-06-19": "Birthday of Artigas", + "2005-07-18": "Constitution Day", + "2005-08-25": "Independence Day", + "2005-10-10": "Columbus Day", + "2005-11-02": "All Souls' Day", + "2005-12-25": "Day of the Family", + "2006-01-01": "New Year's Day", + "2006-01-06": "Children's Day", + "2006-02-27": "Carnival", + "2006-02-28": "Carnival", + "2006-04-10": "Tourism Week", + "2006-04-11": "Tourism Week", + "2006-04-12": "Tourism Week", + "2006-04-13": "Tourism Week", + "2006-04-14": "Tourism Week", + "2006-04-17": "Landing of the 33 Patriots", + "2006-05-01": "International Workers' Day", + "2006-05-22": "Battle of Las Piedras", + "2006-06-19": "Birthday of Artigas", + "2006-07-18": "Constitution Day", + "2006-08-25": "Independence Day", + "2006-10-16": "Columbus Day", + "2006-11-02": "All Souls' Day", + "2006-12-25": "Day of the Family", + "2007-01-01": "New Year's Day", + "2007-01-06": "Children's Day", + "2007-02-19": "Carnival", + "2007-02-20": "Carnival", + "2007-04-02": "Tourism Week", + "2007-04-03": "Tourism Week", + "2007-04-04": "Tourism Week", + "2007-04-05": "Tourism Week", + "2007-04-06": "Tourism Week", + "2007-04-23": "Landing of the 33 Patriots", + "2007-05-01": "International Workers' Day", + "2007-05-21": "Battle of Las Piedras", + "2007-06-19": "Birthday of Artigas", + "2007-07-18": "Constitution Day", + "2007-08-25": "Independence Day", + "2007-10-15": "Columbus Day", + "2007-11-02": "All Souls' Day", + "2007-12-25": "Day of the Family", + "2008-01-01": "New Year's Day", + "2008-01-06": "Children's Day", + "2008-02-04": "Carnival", + "2008-02-05": "Carnival", + "2008-03-17": "Tourism Week", + "2008-03-18": "Tourism Week", + "2008-03-19": "Tourism Week", + "2008-03-20": "Tourism Week", + "2008-03-21": "Tourism Week", + "2008-04-19": "Landing of the 33 Patriots", + "2008-05-01": "International Workers' Day", + "2008-05-18": "Battle of Las Piedras", + "2008-06-19": "Birthday of Artigas", + "2008-07-18": "Constitution Day", + "2008-08-25": "Independence Day", + "2008-10-12": "Columbus Day", + "2008-11-02": "All Souls' Day", + "2008-12-25": "Day of the Family", + "2009-01-01": "New Year's Day", + "2009-01-06": "Children's Day", + "2009-02-23": "Carnival", + "2009-02-24": "Carnival", + "2009-04-06": "Tourism Week", + "2009-04-07": "Tourism Week", + "2009-04-08": "Tourism Week", + "2009-04-09": "Tourism Week", + "2009-04-10": "Tourism Week", + "2009-04-19": "Landing of the 33 Patriots", + "2009-05-01": "International Workers' Day", + "2009-05-18": "Battle of Las Piedras", + "2009-06-19": "Birthday of Artigas", + "2009-07-18": "Constitution Day", + "2009-08-25": "Independence Day", + "2009-10-12": "Columbus Day", + "2009-11-02": "All Souls' Day", + "2009-12-25": "Day of the Family", + "2010-01-01": "New Year's Day", + "2010-01-06": "Children's Day", + "2010-02-15": "Carnival", + "2010-02-16": "Carnival", + "2010-03-01": "Presidential Inauguration Day", + "2010-03-29": "Tourism Week", + "2010-03-30": "Tourism Week", + "2010-03-31": "Tourism Week", + "2010-04-01": "Tourism Week", + "2010-04-02": "Tourism Week", + "2010-04-19": "Landing of the 33 Patriots", + "2010-05-01": "International Workers' Day", + "2010-05-17": "Battle of Las Piedras", + "2010-06-19": "Birthday of Artigas", + "2010-07-18": "Constitution Day", + "2010-08-25": "Independence Day", + "2010-10-11": "Columbus Day", + "2010-11-02": "All Souls' Day", + "2010-12-25": "Day of the Family", + "2011-01-01": "New Year's Day", + "2011-01-06": "Children's Day", + "2011-03-07": "Carnival", + "2011-03-08": "Carnival", + "2011-04-18": "Landing of the 33 Patriots; Tourism Week", + "2011-04-19": "Tourism Week", + "2011-04-20": "Tourism Week", + "2011-04-21": "Tourism Week", + "2011-04-22": "Tourism Week", + "2011-05-01": "International Workers' Day", + "2011-05-16": "Battle of Las Piedras", + "2011-06-19": "Birthday of Artigas", + "2011-07-18": "Constitution Day", + "2011-08-25": "Independence Day", + "2011-10-10": "Columbus Day", + "2011-11-02": "All Souls' Day", + "2011-12-25": "Day of the Family", + "2012-01-01": "New Year's Day", + "2012-01-06": "Children's Day", + "2012-02-20": "Carnival", + "2012-02-21": "Carnival", + "2012-04-02": "Tourism Week", + "2012-04-03": "Tourism Week", + "2012-04-04": "Tourism Week", + "2012-04-05": "Tourism Week", + "2012-04-06": "Tourism Week", + "2012-04-23": "Landing of the 33 Patriots", + "2012-05-01": "International Workers' Day", + "2012-05-21": "Battle of Las Piedras", + "2012-06-19": "Birthday of Artigas", + "2012-07-18": "Constitution Day", + "2012-08-25": "Independence Day", + "2012-10-15": "Columbus Day", + "2012-11-02": "All Souls' Day", + "2012-12-25": "Day of the Family", + "2013-01-01": "New Year's Day", + "2013-01-06": "Children's Day", + "2013-02-11": "Carnival", + "2013-02-12": "Carnival", + "2013-03-25": "Tourism Week", + "2013-03-26": "Tourism Week", + "2013-03-27": "Tourism Week", + "2013-03-28": "Tourism Week", + "2013-03-29": "Tourism Week", + "2013-04-22": "Landing of the 33 Patriots", + "2013-05-01": "International Workers' Day", + "2013-05-18": "Battle of Las Piedras", + "2013-06-19": "Birthday of Artigas", + "2013-07-18": "Constitution Day", + "2013-08-25": "Independence Day", + "2013-10-12": "Columbus Day", + "2013-11-02": "All Souls' Day", + "2013-12-25": "Day of the Family", + "2014-01-01": "New Year's Day", + "2014-01-06": "Children's Day", + "2014-03-03": "Carnival", + "2014-03-04": "Carnival", + "2014-04-14": "Tourism Week", + "2014-04-15": "Tourism Week", + "2014-04-16": "Tourism Week", + "2014-04-17": "Tourism Week", + "2014-04-18": "Tourism Week", + "2014-04-19": "Landing of the 33 Patriots", + "2014-05-01": "International Workers' Day", + "2014-05-18": "Battle of Las Piedras", + "2014-06-19": "Birthday of Artigas", + "2014-07-18": "Constitution Day", + "2014-08-25": "Independence Day", + "2014-10-12": "Cultural Diversity Day", + "2014-11-02": "All Souls' Day", + "2014-12-25": "Day of the Family", + "2015-01-01": "New Year's Day", + "2015-01-06": "Children's Day", + "2015-02-16": "Carnival", + "2015-02-17": "Carnival", + "2015-03-01": "Presidential Inauguration Day", + "2015-03-30": "Tourism Week", + "2015-03-31": "Tourism Week", + "2015-04-01": "Tourism Week", + "2015-04-02": "Tourism Week", + "2015-04-03": "Tourism Week", + "2015-04-19": "Landing of the 33 Patriots", + "2015-05-01": "International Workers' Day", + "2015-05-18": "Battle of Las Piedras", + "2015-06-19": "Birthday of Artigas", + "2015-07-18": "Constitution Day", + "2015-08-25": "Independence Day", + "2015-10-12": "Cultural Diversity Day", + "2015-11-02": "All Souls' Day", + "2015-12-25": "Day of the Family", + "2016-01-01": "New Year's Day", + "2016-01-06": "Children's Day", + "2016-02-08": "Carnival", + "2016-02-09": "Carnival", + "2016-03-21": "Tourism Week", + "2016-03-22": "Tourism Week", + "2016-03-23": "Tourism Week", + "2016-03-24": "Tourism Week", + "2016-03-25": "Tourism Week", + "2016-04-18": "Landing of the 33 Patriots", + "2016-05-01": "International Workers' Day", + "2016-05-16": "Battle of Las Piedras", + "2016-06-19": "Birthday of Artigas", + "2016-07-18": "Constitution Day", + "2016-08-25": "Independence Day", + "2016-10-10": "Cultural Diversity Day", + "2016-11-02": "All Souls' Day", + "2016-12-25": "Day of the Family", + "2017-01-01": "New Year's Day", + "2017-01-06": "Children's Day", + "2017-02-27": "Carnival", + "2017-02-28": "Carnival", + "2017-04-10": "Tourism Week", + "2017-04-11": "Tourism Week", + "2017-04-12": "Tourism Week", + "2017-04-13": "Tourism Week", + "2017-04-14": "Tourism Week", + "2017-04-17": "Landing of the 33 Patriots", + "2017-05-01": "International Workers' Day", + "2017-05-22": "Battle of Las Piedras", + "2017-06-19": "Birthday of Artigas", + "2017-07-18": "Constitution Day", + "2017-08-25": "Independence Day", + "2017-10-16": "Cultural Diversity Day", + "2017-11-02": "All Souls' Day", + "2017-12-25": "Day of the Family", + "2018-01-01": "New Year's Day", + "2018-01-06": "Children's Day", + "2018-02-12": "Carnival", + "2018-02-13": "Carnival", + "2018-03-26": "Tourism Week", + "2018-03-27": "Tourism Week", + "2018-03-28": "Tourism Week", + "2018-03-29": "Tourism Week", + "2018-03-30": "Tourism Week", + "2018-04-23": "Landing of the 33 Patriots", + "2018-05-01": "International Workers' Day", + "2018-05-21": "Battle of Las Piedras", + "2018-06-19": "Birthday of Artigas", + "2018-07-18": "Constitution Day", + "2018-08-25": "Independence Day", + "2018-10-15": "Cultural Diversity Day", + "2018-11-02": "All Souls' Day", + "2018-12-25": "Day of the Family", + "2019-01-01": "New Year's Day", + "2019-01-06": "Children's Day", + "2019-03-04": "Carnival", + "2019-03-05": "Carnival", + "2019-04-15": "Tourism Week", + "2019-04-16": "Tourism Week", + "2019-04-17": "Tourism Week", + "2019-04-18": "Tourism Week", + "2019-04-19": "Tourism Week", + "2019-04-22": "Landing of the 33 Patriots", + "2019-05-01": "International Workers' Day", + "2019-05-18": "Battle of Las Piedras", + "2019-06-19": "Birthday of Artigas", + "2019-07-18": "Constitution Day", + "2019-08-25": "Independence Day", + "2019-10-12": "Cultural Diversity Day", + "2019-11-02": "All Souls' Day", + "2019-12-25": "Day of the Family", + "2020-01-01": "New Year's Day", + "2020-01-06": "Children's Day", + "2020-02-24": "Carnival", + "2020-02-25": "Carnival", + "2020-03-01": "Presidential Inauguration Day", + "2020-04-06": "Tourism Week", + "2020-04-07": "Tourism Week", + "2020-04-08": "Tourism Week", + "2020-04-09": "Tourism Week", + "2020-04-10": "Tourism Week", + "2020-04-19": "Landing of the 33 Patriots", + "2020-05-01": "International Workers' Day", + "2020-05-18": "Battle of Las Piedras", + "2020-06-19": "Birthday of Artigas", + "2020-07-18": "Constitution Day", + "2020-08-25": "Independence Day", + "2020-10-12": "Cultural Diversity Day", + "2020-11-02": "All Souls' Day", + "2020-12-25": "Day of the Family", + "2021-01-01": "New Year's Day", + "2021-01-06": "Children's Day", + "2021-02-15": "Carnival", + "2021-02-16": "Carnival", + "2021-03-29": "Tourism Week", + "2021-03-30": "Tourism Week", + "2021-03-31": "Tourism Week", + "2021-04-01": "Tourism Week", + "2021-04-02": "Tourism Week", + "2021-04-19": "Landing of the 33 Patriots", + "2021-05-01": "International Workers' Day", + "2021-05-17": "Battle of Las Piedras", + "2021-06-19": "Birthday of Artigas", + "2021-07-18": "Constitution Day", + "2021-08-25": "Independence Day", + "2021-10-11": "Cultural Diversity Day", + "2021-11-02": "All Souls' Day", + "2021-12-25": "Day of the Family", + "2022-01-01": "New Year's Day", + "2022-01-06": "Children's Day", + "2022-02-28": "Carnival", + "2022-03-01": "Carnival", + "2022-04-11": "Tourism Week", + "2022-04-12": "Tourism Week", + "2022-04-13": "Tourism Week", + "2022-04-14": "Tourism Week", + "2022-04-15": "Tourism Week", + "2022-04-18": "Landing of the 33 Patriots", + "2022-05-01": "International Workers' Day", + "2022-05-16": "Battle of Las Piedras", + "2022-06-19": "Birthday of Artigas", + "2022-07-18": "Constitution Day", + "2022-08-25": "Independence Day", + "2022-10-10": "Cultural Diversity Day", + "2022-11-02": "All Souls' Day", + "2022-12-25": "Day of the Family", + "2023-01-01": "New Year's Day", + "2023-01-06": "Children's Day", + "2023-02-20": "Carnival", + "2023-02-21": "Carnival", + "2023-04-03": "Tourism Week", + "2023-04-04": "Tourism Week", + "2023-04-05": "Tourism Week", + "2023-04-06": "Tourism Week", + "2023-04-07": "Tourism Week", + "2023-04-17": "Landing of the 33 Patriots", + "2023-05-01": "International Workers' Day", + "2023-05-22": "Battle of Las Piedras", + "2023-06-19": "Birthday of Artigas", + "2023-07-18": "Constitution Day", + "2023-08-25": "Independence Day", + "2023-10-16": "Cultural Diversity Day", + "2023-11-02": "All Souls' Day", + "2023-12-25": "Day of the Family", + "2024-01-01": "New Year's Day", + "2024-01-06": "Children's Day", + "2024-02-12": "Carnival", + "2024-02-13": "Carnival", + "2024-03-25": "Tourism Week", + "2024-03-26": "Tourism Week", + "2024-03-27": "Tourism Week", + "2024-03-28": "Tourism Week", + "2024-03-29": "Tourism Week", + "2024-04-22": "Landing of the 33 Patriots", + "2024-05-01": "International Workers' Day", + "2024-05-18": "Battle of Las Piedras", + "2024-06-19": "Birthday of Artigas", + "2024-07-18": "Constitution Day", + "2024-08-25": "Independence Day", + "2024-10-12": "Cultural Diversity Day", + "2024-11-02": "All Souls' Day", + "2024-12-25": "Day of the Family", + "2025-01-01": "New Year's Day", + "2025-01-06": "Children's Day", + "2025-03-03": "Carnival", + "2025-03-04": "Carnival", + "2025-04-14": "Tourism Week", + "2025-04-15": "Tourism Week", + "2025-04-16": "Tourism Week", + "2025-04-17": "Tourism Week", + "2025-04-18": "Tourism Week", + "2025-04-19": "Landing of the 33 Patriots", + "2025-05-01": "International Workers' Day", + "2025-05-18": "Battle of Las Piedras", + "2025-06-19": "Birthday of Artigas", + "2025-07-18": "Constitution Day", + "2025-08-25": "Independence Day", + "2025-10-12": "Cultural Diversity Day", + "2025-11-02": "All Souls' Day", + "2025-12-25": "Day of the Family", + "2026-01-01": "New Year's Day", + "2026-01-06": "Children's Day", + "2026-02-16": "Carnival", + "2026-02-17": "Carnival", + "2026-03-30": "Tourism Week", + "2026-03-31": "Tourism Week", + "2026-04-01": "Tourism Week", + "2026-04-02": "Tourism Week", + "2026-04-03": "Tourism Week", + "2026-04-19": "Landing of the 33 Patriots", + "2026-05-01": "International Workers' Day", + "2026-05-18": "Battle of Las Piedras", + "2026-06-19": "Birthday of Artigas", + "2026-07-18": "Constitution Day", + "2026-08-25": "Independence Day", + "2026-10-12": "Cultural Diversity Day", + "2026-11-02": "All Souls' Day", + "2026-12-25": "Day of the Family", + "2027-01-01": "New Year's Day", + "2027-01-06": "Children's Day", + "2027-02-08": "Carnival", + "2027-02-09": "Carnival", + "2027-03-22": "Tourism Week", + "2027-03-23": "Tourism Week", + "2027-03-24": "Tourism Week", + "2027-03-25": "Tourism Week", + "2027-03-26": "Tourism Week", + "2027-04-19": "Landing of the 33 Patriots", + "2027-05-01": "International Workers' Day", + "2027-05-17": "Battle of Las Piedras", + "2027-06-19": "Birthday of Artigas", + "2027-07-18": "Constitution Day", + "2027-08-25": "Independence Day", + "2027-10-11": "Cultural Diversity Day", + "2027-11-02": "All Souls' Day", + "2027-12-25": "Day of the Family", + "2028-01-01": "New Year's Day", + "2028-01-06": "Children's Day", + "2028-02-28": "Carnival", + "2028-02-29": "Carnival", + "2028-04-10": "Tourism Week", + "2028-04-11": "Tourism Week", + "2028-04-12": "Tourism Week", + "2028-04-13": "Tourism Week", + "2028-04-14": "Tourism Week", + "2028-04-17": "Landing of the 33 Patriots", + "2028-05-01": "International Workers' Day", + "2028-05-22": "Battle of Las Piedras", + "2028-06-19": "Birthday of Artigas", + "2028-07-18": "Constitution Day", + "2028-08-25": "Independence Day", + "2028-10-16": "Cultural Diversity Day", + "2028-11-02": "All Souls' Day", + "2028-12-25": "Day of the Family", + "2029-01-01": "New Year's Day", + "2029-01-06": "Children's Day", + "2029-02-12": "Carnival", + "2029-02-13": "Carnival", + "2029-03-26": "Tourism Week", + "2029-03-27": "Tourism Week", + "2029-03-28": "Tourism Week", + "2029-03-29": "Tourism Week", + "2029-03-30": "Tourism Week", + "2029-04-23": "Landing of the 33 Patriots", + "2029-05-01": "International Workers' Day", + "2029-05-21": "Battle of Las Piedras", + "2029-06-19": "Birthday of Artigas", + "2029-07-18": "Constitution Day", + "2029-08-25": "Independence Day", + "2029-10-15": "Cultural Diversity Day", + "2029-11-02": "All Souls' Day", + "2029-12-25": "Day of the Family", + "2030-01-01": "New Year's Day", + "2030-01-06": "Children's Day", + "2030-03-04": "Carnival", + "2030-03-05": "Carnival", + "2030-04-15": "Tourism Week", + "2030-04-16": "Tourism Week", + "2030-04-17": "Tourism Week", + "2030-04-18": "Tourism Week", + "2030-04-19": "Tourism Week", + "2030-04-22": "Landing of the 33 Patriots", + "2030-05-01": "International Workers' Day", + "2030-05-18": "Battle of Las Piedras", + "2030-06-19": "Birthday of Artigas", + "2030-07-18": "Constitution Day", + "2030-08-25": "Independence Day", + "2030-10-12": "Cultural Diversity Day", + "2030-11-02": "All Souls' Day", + "2030-12-25": "Day of the Family", + "2031-01-01": "New Year's Day", + "2031-01-06": "Children's Day", + "2031-02-24": "Carnival", + "2031-02-25": "Carnival", + "2031-04-07": "Tourism Week", + "2031-04-08": "Tourism Week", + "2031-04-09": "Tourism Week", + "2031-04-10": "Tourism Week", + "2031-04-11": "Tourism Week", + "2031-04-19": "Landing of the 33 Patriots", + "2031-05-01": "International Workers' Day", + "2031-05-18": "Battle of Las Piedras", + "2031-06-19": "Birthday of Artigas", + "2031-07-18": "Constitution Day", + "2031-08-25": "Independence Day", + "2031-10-12": "Cultural Diversity Day", + "2031-11-02": "All Souls' Day", + "2031-12-25": "Day of the Family", + "2032-01-01": "New Year's Day", + "2032-01-06": "Children's Day", + "2032-02-09": "Carnival", + "2032-02-10": "Carnival", + "2032-03-22": "Tourism Week", + "2032-03-23": "Tourism Week", + "2032-03-24": "Tourism Week", + "2032-03-25": "Tourism Week", + "2032-03-26": "Tourism Week", + "2032-04-19": "Landing of the 33 Patriots", + "2032-05-01": "International Workers' Day", + "2032-05-17": "Battle of Las Piedras", + "2032-06-19": "Birthday of Artigas", + "2032-07-18": "Constitution Day", + "2032-08-25": "Independence Day", + "2032-10-11": "Cultural Diversity Day", + "2032-11-02": "All Souls' Day", + "2032-12-25": "Day of the Family", + "2033-01-01": "New Year's Day", + "2033-01-06": "Children's Day", + "2033-02-28": "Carnival", + "2033-03-01": "Carnival", + "2033-04-11": "Tourism Week", + "2033-04-12": "Tourism Week", + "2033-04-13": "Tourism Week", + "2033-04-14": "Tourism Week", + "2033-04-15": "Tourism Week", + "2033-04-18": "Landing of the 33 Patriots", + "2033-05-01": "International Workers' Day", + "2033-05-16": "Battle of Las Piedras", + "2033-06-19": "Birthday of Artigas", + "2033-07-18": "Constitution Day", + "2033-08-25": "Independence Day", + "2033-10-10": "Cultural Diversity Day", + "2033-11-02": "All Souls' Day", + "2033-12-25": "Day of the Family", + "2034-01-01": "New Year's Day", + "2034-01-06": "Children's Day", + "2034-02-20": "Carnival", + "2034-02-21": "Carnival", + "2034-04-03": "Tourism Week", + "2034-04-04": "Tourism Week", + "2034-04-05": "Tourism Week", + "2034-04-06": "Tourism Week", + "2034-04-07": "Tourism Week", + "2034-04-17": "Landing of the 33 Patriots", + "2034-05-01": "International Workers' Day", + "2034-05-22": "Battle of Las Piedras", + "2034-06-19": "Birthday of Artigas", + "2034-07-18": "Constitution Day", + "2034-08-25": "Independence Day", + "2034-10-16": "Cultural Diversity Day", + "2034-11-02": "All Souls' Day", + "2034-12-25": "Day of the Family", + "2035-01-01": "New Year's Day", + "2035-01-06": "Children's Day", + "2035-02-05": "Carnival", + "2035-02-06": "Carnival", + "2035-03-19": "Tourism Week", + "2035-03-20": "Tourism Week", + "2035-03-21": "Tourism Week", + "2035-03-22": "Tourism Week", + "2035-03-23": "Tourism Week", + "2035-04-23": "Landing of the 33 Patriots", + "2035-05-01": "International Workers' Day", + "2035-05-21": "Battle of Las Piedras", + "2035-06-19": "Birthday of Artigas", + "2035-07-18": "Constitution Day", + "2035-08-25": "Independence Day", + "2035-10-15": "Cultural Diversity Day", + "2035-11-02": "All Souls' Day", + "2035-12-25": "Day of the Family", + "2036-01-01": "New Year's Day", + "2036-01-06": "Children's Day", + "2036-02-25": "Carnival", + "2036-02-26": "Carnival", + "2036-04-07": "Tourism Week", + "2036-04-08": "Tourism Week", + "2036-04-09": "Tourism Week", + "2036-04-10": "Tourism Week", + "2036-04-11": "Tourism Week", + "2036-04-19": "Landing of the 33 Patriots", + "2036-05-01": "International Workers' Day", + "2036-05-18": "Battle of Las Piedras", + "2036-06-19": "Birthday of Artigas", + "2036-07-18": "Constitution Day", + "2036-08-25": "Independence Day", + "2036-10-12": "Cultural Diversity Day", + "2036-11-02": "All Souls' Day", + "2036-12-25": "Day of the Family", + "2037-01-01": "New Year's Day", + "2037-01-06": "Children's Day", + "2037-02-16": "Carnival", + "2037-02-17": "Carnival", + "2037-03-30": "Tourism Week", + "2037-03-31": "Tourism Week", + "2037-04-01": "Tourism Week", + "2037-04-02": "Tourism Week", + "2037-04-03": "Tourism Week", + "2037-04-19": "Landing of the 33 Patriots", + "2037-05-01": "International Workers' Day", + "2037-05-18": "Battle of Las Piedras", + "2037-06-19": "Birthday of Artigas", + "2037-07-18": "Constitution Day", + "2037-08-25": "Independence Day", + "2037-10-12": "Cultural Diversity Day", + "2037-11-02": "All Souls' Day", + "2037-12-25": "Day of the Family", + "2038-01-01": "New Year's Day", + "2038-01-06": "Children's Day", + "2038-03-08": "Carnival", + "2038-03-09": "Carnival", + "2038-04-19": "Landing of the 33 Patriots; Tourism Week", + "2038-04-20": "Tourism Week", + "2038-04-21": "Tourism Week", + "2038-04-22": "Tourism Week", + "2038-04-23": "Tourism Week", + "2038-05-01": "International Workers' Day", + "2038-05-17": "Battle of Las Piedras", + "2038-06-19": "Birthday of Artigas", + "2038-07-18": "Constitution Day", + "2038-08-25": "Independence Day", + "2038-10-11": "Cultural Diversity Day", + "2038-11-02": "All Souls' Day", + "2038-12-25": "Day of the Family", + "2039-01-01": "New Year's Day", + "2039-01-06": "Children's Day", + "2039-02-21": "Carnival", + "2039-02-22": "Carnival", + "2039-04-04": "Tourism Week", + "2039-04-05": "Tourism Week", + "2039-04-06": "Tourism Week", + "2039-04-07": "Tourism Week", + "2039-04-08": "Tourism Week", + "2039-04-18": "Landing of the 33 Patriots", + "2039-05-01": "International Workers' Day", + "2039-05-16": "Battle of Las Piedras", + "2039-06-19": "Birthday of Artigas", + "2039-07-18": "Constitution Day", + "2039-08-25": "Independence Day", + "2039-10-10": "Cultural Diversity Day", + "2039-11-02": "All Souls' Day", + "2039-12-25": "Day of the Family", + "2040-01-01": "New Year's Day", + "2040-01-06": "Children's Day", + "2040-02-13": "Carnival", + "2040-02-14": "Carnival", + "2040-03-26": "Tourism Week", + "2040-03-27": "Tourism Week", + "2040-03-28": "Tourism Week", + "2040-03-29": "Tourism Week", + "2040-03-30": "Tourism Week", + "2040-04-23": "Landing of the 33 Patriots", + "2040-05-01": "International Workers' Day", + "2040-05-21": "Battle of Las Piedras", + "2040-06-19": "Birthday of Artigas", + "2040-07-18": "Constitution Day", + "2040-08-25": "Independence Day", + "2040-10-15": "Cultural Diversity Day", + "2040-11-02": "All Souls' Day", + "2040-12-25": "Day of the Family", + "2041-01-01": "New Year's Day", + "2041-01-06": "Children's Day", + "2041-03-04": "Carnival", + "2041-03-05": "Carnival", + "2041-04-15": "Tourism Week", + "2041-04-16": "Tourism Week", + "2041-04-17": "Tourism Week", + "2041-04-18": "Tourism Week", + "2041-04-19": "Tourism Week", + "2041-04-22": "Landing of the 33 Patriots", + "2041-05-01": "International Workers' Day", + "2041-05-18": "Battle of Las Piedras", + "2041-06-19": "Birthday of Artigas", + "2041-07-18": "Constitution Day", + "2041-08-25": "Independence Day", + "2041-10-12": "Cultural Diversity Day", + "2041-11-02": "All Souls' Day", + "2041-12-25": "Day of the Family", + "2042-01-01": "New Year's Day", + "2042-01-06": "Children's Day", + "2042-02-17": "Carnival", + "2042-02-18": "Carnival", + "2042-03-31": "Tourism Week", + "2042-04-01": "Tourism Week", + "2042-04-02": "Tourism Week", + "2042-04-03": "Tourism Week", + "2042-04-04": "Tourism Week", + "2042-04-19": "Landing of the 33 Patriots", + "2042-05-01": "International Workers' Day", + "2042-05-18": "Battle of Las Piedras", + "2042-06-19": "Birthday of Artigas", + "2042-07-18": "Constitution Day", + "2042-08-25": "Independence Day", + "2042-10-12": "Cultural Diversity Day", + "2042-11-02": "All Souls' Day", + "2042-12-25": "Day of the Family", + "2043-01-01": "New Year's Day", + "2043-01-06": "Children's Day", + "2043-02-09": "Carnival", + "2043-02-10": "Carnival", + "2043-03-23": "Tourism Week", + "2043-03-24": "Tourism Week", + "2043-03-25": "Tourism Week", + "2043-03-26": "Tourism Week", + "2043-03-27": "Tourism Week", + "2043-04-19": "Landing of the 33 Patriots", + "2043-05-01": "International Workers' Day", + "2043-05-18": "Battle of Las Piedras", + "2043-06-19": "Birthday of Artigas", + "2043-07-18": "Constitution Day", + "2043-08-25": "Independence Day", + "2043-10-12": "Cultural Diversity Day", + "2043-11-02": "All Souls' Day", + "2043-12-25": "Day of the Family", + "2044-01-01": "New Year's Day", + "2044-01-06": "Children's Day", + "2044-02-29": "Carnival", + "2044-03-01": "Carnival", + "2044-04-11": "Tourism Week", + "2044-04-12": "Tourism Week", + "2044-04-13": "Tourism Week", + "2044-04-14": "Tourism Week", + "2044-04-15": "Tourism Week", + "2044-04-18": "Landing of the 33 Patriots", + "2044-05-01": "International Workers' Day", + "2044-05-16": "Battle of Las Piedras", + "2044-06-19": "Birthday of Artigas", + "2044-07-18": "Constitution Day", + "2044-08-25": "Independence Day", + "2044-10-10": "Cultural Diversity Day", + "2044-11-02": "All Souls' Day", + "2044-12-25": "Day of the Family", + "2045-01-01": "New Year's Day", + "2045-01-06": "Children's Day", + "2045-02-20": "Carnival", + "2045-02-21": "Carnival", + "2045-04-03": "Tourism Week", + "2045-04-04": "Tourism Week", + "2045-04-05": "Tourism Week", + "2045-04-06": "Tourism Week", + "2045-04-07": "Tourism Week", + "2045-04-17": "Landing of the 33 Patriots", + "2045-05-01": "International Workers' Day", + "2045-05-22": "Battle of Las Piedras", + "2045-06-19": "Birthday of Artigas", + "2045-07-18": "Constitution Day", + "2045-08-25": "Independence Day", + "2045-10-16": "Cultural Diversity Day", + "2045-11-02": "All Souls' Day", + "2045-12-25": "Day of the Family", + "2046-01-01": "New Year's Day", + "2046-01-06": "Children's Day", + "2046-02-05": "Carnival", + "2046-02-06": "Carnival", + "2046-03-19": "Tourism Week", + "2046-03-20": "Tourism Week", + "2046-03-21": "Tourism Week", + "2046-03-22": "Tourism Week", + "2046-03-23": "Tourism Week", + "2046-04-23": "Landing of the 33 Patriots", + "2046-05-01": "International Workers' Day", + "2046-05-21": "Battle of Las Piedras", + "2046-06-19": "Birthday of Artigas", + "2046-07-18": "Constitution Day", + "2046-08-25": "Independence Day", + "2046-10-15": "Cultural Diversity Day", + "2046-11-02": "All Souls' Day", + "2046-12-25": "Day of the Family", + "2047-01-01": "New Year's Day", + "2047-01-06": "Children's Day", + "2047-02-25": "Carnival", + "2047-02-26": "Carnival", + "2047-04-08": "Tourism Week", + "2047-04-09": "Tourism Week", + "2047-04-10": "Tourism Week", + "2047-04-11": "Tourism Week", + "2047-04-12": "Tourism Week", + "2047-04-22": "Landing of the 33 Patriots", + "2047-05-01": "International Workers' Day", + "2047-05-18": "Battle of Las Piedras", + "2047-06-19": "Birthday of Artigas", + "2047-07-18": "Constitution Day", + "2047-08-25": "Independence Day", + "2047-10-12": "Cultural Diversity Day", + "2047-11-02": "All Souls' Day", + "2047-12-25": "Day of the Family", + "2048-01-01": "New Year's Day", + "2048-01-06": "Children's Day", + "2048-02-17": "Carnival", + "2048-02-18": "Carnival", + "2048-03-30": "Tourism Week", + "2048-03-31": "Tourism Week", + "2048-04-01": "Tourism Week", + "2048-04-02": "Tourism Week", + "2048-04-03": "Tourism Week", + "2048-04-19": "Landing of the 33 Patriots", + "2048-05-01": "International Workers' Day", + "2048-05-18": "Battle of Las Piedras", + "2048-06-19": "Birthday of Artigas", + "2048-07-18": "Constitution Day", + "2048-08-25": "Independence Day", + "2048-10-12": "Cultural Diversity Day", + "2048-11-02": "All Souls' Day", + "2048-12-25": "Day of the Family", + "2049-01-01": "New Year's Day", + "2049-01-06": "Children's Day", + "2049-03-01": "Carnival", + "2049-03-02": "Carnival", + "2049-04-12": "Tourism Week", + "2049-04-13": "Tourism Week", + "2049-04-14": "Tourism Week", + "2049-04-15": "Tourism Week", + "2049-04-16": "Tourism Week", + "2049-04-19": "Landing of the 33 Patriots", + "2049-05-01": "International Workers' Day", + "2049-05-17": "Battle of Las Piedras", + "2049-06-19": "Birthday of Artigas", + "2049-07-18": "Constitution Day", + "2049-08-25": "Independence Day", + "2049-10-11": "Cultural Diversity Day", + "2049-11-02": "All Souls' Day", + "2049-12-25": "Day of the Family", + "2050-01-01": "New Year's Day", + "2050-01-06": "Children's Day", + "2050-02-21": "Carnival", + "2050-02-22": "Carnival", + "2050-04-04": "Tourism Week", + "2050-04-05": "Tourism Week", + "2050-04-06": "Tourism Week", + "2050-04-07": "Tourism Week", + "2050-04-08": "Tourism Week", + "2050-04-18": "Landing of the 33 Patriots", + "2050-05-01": "International Workers' Day", + "2050-05-16": "Battle of Las Piedras", + "2050-06-19": "Birthday of Artigas", + "2050-07-18": "Constitution Day", + "2050-08-25": "Independence Day", + "2050-10-10": "Cultural Diversity Day", + "2050-11-02": "All Souls' Day", + "2050-12-25": "Day of the Family" +} diff --git a/snapshots/countries/UZ.json b/snapshots/countries/UZ.json new file mode 100644 index 000000000..ce957e0e9 --- /dev/null +++ b/snapshots/countries/UZ.json @@ -0,0 +1,911 @@ +{ + "1950-01-01": "New Year", + "1950-03-08": "Women's Day", + "1950-03-21": "Nauryz", + "1950-05-09": "Memorial Day", + "1950-07-16": "Ramadan Khait* (*estimated)", + "1950-09-01": "Independence Day", + "1950-09-23": "Kurban Khait* (*estimated)", + "1950-10-01": "Teacher's Day", + "1950-12-08": "Constitution Day", + "1951-01-01": "New Year", + "1951-03-08": "Women's Day", + "1951-03-21": "Nauryz", + "1951-05-09": "Memorial Day", + "1951-07-06": "Ramadan Khait* (*estimated)", + "1951-09-01": "Independence Day", + "1951-09-12": "Kurban Khait* (*estimated)", + "1951-10-01": "Teacher's Day", + "1951-12-08": "Constitution Day", + "1952-01-01": "New Year", + "1952-03-08": "Women's Day", + "1952-03-21": "Nauryz", + "1952-05-09": "Memorial Day", + "1952-06-23": "Ramadan Khait* (*estimated)", + "1952-08-31": "Kurban Khait* (*estimated)", + "1952-09-01": "Independence Day", + "1952-10-01": "Teacher's Day", + "1952-12-08": "Constitution Day", + "1953-01-01": "New Year", + "1953-03-08": "Women's Day", + "1953-03-21": "Nauryz", + "1953-05-09": "Memorial Day", + "1953-06-13": "Ramadan Khait* (*estimated)", + "1953-08-20": "Kurban Khait* (*estimated)", + "1953-09-01": "Independence Day", + "1953-10-01": "Teacher's Day", + "1953-12-08": "Constitution Day", + "1954-01-01": "New Year", + "1954-03-08": "Women's Day", + "1954-03-21": "Nauryz", + "1954-05-09": "Memorial Day", + "1954-06-02": "Ramadan Khait* (*estimated)", + "1954-08-09": "Kurban Khait* (*estimated)", + "1954-09-01": "Independence Day", + "1954-10-01": "Teacher's Day", + "1954-12-08": "Constitution Day", + "1955-01-01": "New Year", + "1955-03-08": "Women's Day", + "1955-03-21": "Nauryz", + "1955-05-09": "Memorial Day", + "1955-05-23": "Ramadan Khait* (*estimated)", + "1955-07-30": "Kurban Khait* (*estimated)", + "1955-09-01": "Independence Day", + "1955-10-01": "Teacher's Day", + "1955-12-08": "Constitution Day", + "1956-01-01": "New Year", + "1956-03-08": "Women's Day", + "1956-03-21": "Nauryz", + "1956-05-09": "Memorial Day", + "1956-05-11": "Ramadan Khait* (*estimated)", + "1956-07-19": "Kurban Khait* (*estimated)", + "1956-09-01": "Independence Day", + "1956-10-01": "Teacher's Day", + "1956-12-08": "Constitution Day", + "1957-01-01": "New Year", + "1957-03-08": "Women's Day", + "1957-03-21": "Nauryz", + "1957-05-01": "Ramadan Khait* (*estimated)", + "1957-05-09": "Memorial Day", + "1957-07-08": "Kurban Khait* (*estimated)", + "1957-09-01": "Independence Day", + "1957-10-01": "Teacher's Day", + "1957-12-08": "Constitution Day", + "1958-01-01": "New Year", + "1958-03-08": "Women's Day", + "1958-03-21": "Nauryz", + "1958-04-20": "Ramadan Khait* (*estimated)", + "1958-05-09": "Memorial Day", + "1958-06-27": "Kurban Khait* (*estimated)", + "1958-09-01": "Independence Day", + "1958-10-01": "Teacher's Day", + "1958-12-08": "Constitution Day", + "1959-01-01": "New Year", + "1959-03-08": "Women's Day", + "1959-03-21": "Nauryz", + "1959-04-10": "Ramadan Khait* (*estimated)", + "1959-05-09": "Memorial Day", + "1959-06-17": "Kurban Khait* (*estimated)", + "1959-09-01": "Independence Day", + "1959-10-01": "Teacher's Day", + "1959-12-08": "Constitution Day", + "1960-01-01": "New Year", + "1960-03-08": "Women's Day", + "1960-03-21": "Nauryz", + "1960-03-28": "Ramadan Khait* (*estimated)", + "1960-05-09": "Memorial Day", + "1960-06-04": "Kurban Khait* (*estimated)", + "1960-09-01": "Independence Day", + "1960-10-01": "Teacher's Day", + "1960-12-08": "Constitution Day", + "1961-01-01": "New Year", + "1961-03-08": "Women's Day", + "1961-03-18": "Ramadan Khait* (*estimated)", + "1961-03-21": "Nauryz", + "1961-05-09": "Memorial Day", + "1961-05-25": "Kurban Khait* (*estimated)", + "1961-09-01": "Independence Day", + "1961-10-01": "Teacher's Day", + "1961-12-08": "Constitution Day", + "1962-01-01": "New Year", + "1962-03-07": "Ramadan Khait* (*estimated)", + "1962-03-08": "Women's Day", + "1962-03-21": "Nauryz", + "1962-05-09": "Memorial Day", + "1962-05-14": "Kurban Khait* (*estimated)", + "1962-09-01": "Independence Day", + "1962-10-01": "Teacher's Day", + "1962-12-08": "Constitution Day", + "1963-01-01": "New Year", + "1963-02-24": "Ramadan Khait* (*estimated)", + "1963-03-08": "Women's Day", + "1963-03-21": "Nauryz", + "1963-05-03": "Kurban Khait* (*estimated)", + "1963-05-09": "Memorial Day", + "1963-09-01": "Independence Day", + "1963-10-01": "Teacher's Day", + "1963-12-08": "Constitution Day", + "1964-01-01": "New Year", + "1964-02-14": "Ramadan Khait* (*estimated)", + "1964-03-08": "Women's Day", + "1964-03-21": "Nauryz", + "1964-04-22": "Kurban Khait* (*estimated)", + "1964-05-09": "Memorial Day", + "1964-09-01": "Independence Day", + "1964-10-01": "Teacher's Day", + "1964-12-08": "Constitution Day", + "1965-01-01": "New Year", + "1965-02-02": "Ramadan Khait* (*estimated)", + "1965-03-08": "Women's Day", + "1965-03-21": "Nauryz", + "1965-04-11": "Kurban Khait* (*estimated)", + "1965-05-09": "Memorial Day", + "1965-09-01": "Independence Day", + "1965-10-01": "Teacher's Day", + "1965-12-08": "Constitution Day", + "1966-01-01": "New Year", + "1966-01-22": "Ramadan Khait* (*estimated)", + "1966-03-08": "Women's Day", + "1966-03-21": "Nauryz", + "1966-04-01": "Kurban Khait* (*estimated)", + "1966-05-09": "Memorial Day", + "1966-09-01": "Independence Day", + "1966-10-01": "Teacher's Day", + "1966-12-08": "Constitution Day", + "1967-01-01": "New Year", + "1967-01-12": "Ramadan Khait* (*estimated)", + "1967-03-08": "Women's Day", + "1967-03-21": "Kurban Khait* (*estimated); Nauryz", + "1967-05-09": "Memorial Day", + "1967-09-01": "Independence Day", + "1967-10-01": "Teacher's Day", + "1967-12-08": "Constitution Day", + "1968-01-01": "New Year; Ramadan Khait* (*estimated)", + "1968-03-08": "Women's Day", + "1968-03-09": "Kurban Khait* (*estimated)", + "1968-03-21": "Nauryz", + "1968-05-09": "Memorial Day", + "1968-09-01": "Independence Day", + "1968-10-01": "Teacher's Day", + "1968-12-08": "Constitution Day", + "1968-12-21": "Ramadan Khait* (*estimated)", + "1969-01-01": "New Year", + "1969-02-27": "Kurban Khait* (*estimated)", + "1969-03-08": "Women's Day", + "1969-03-21": "Nauryz", + "1969-05-09": "Memorial Day", + "1969-09-01": "Independence Day", + "1969-10-01": "Teacher's Day", + "1969-12-08": "Constitution Day", + "1969-12-10": "Ramadan Khait* (*estimated)", + "1970-01-01": "New Year", + "1970-02-16": "Kurban Khait* (*estimated)", + "1970-03-08": "Women's Day", + "1970-03-21": "Nauryz", + "1970-05-09": "Memorial Day", + "1970-09-01": "Independence Day", + "1970-10-01": "Teacher's Day", + "1970-11-30": "Ramadan Khait* (*estimated)", + "1970-12-08": "Constitution Day", + "1971-01-01": "New Year", + "1971-02-06": "Kurban Khait* (*estimated)", + "1971-03-08": "Women's Day", + "1971-03-21": "Nauryz", + "1971-05-09": "Memorial Day", + "1971-09-01": "Independence Day", + "1971-10-01": "Teacher's Day", + "1971-11-19": "Ramadan Khait* (*estimated)", + "1971-12-08": "Constitution Day", + "1972-01-01": "New Year", + "1972-01-26": "Kurban Khait* (*estimated)", + "1972-03-08": "Women's Day", + "1972-03-21": "Nauryz", + "1972-05-09": "Memorial Day", + "1972-09-01": "Independence Day", + "1972-10-01": "Teacher's Day", + "1972-11-07": "Ramadan Khait* (*estimated)", + "1972-12-08": "Constitution Day", + "1973-01-01": "New Year", + "1973-01-14": "Kurban Khait* (*estimated)", + "1973-03-08": "Women's Day", + "1973-03-21": "Nauryz", + "1973-05-09": "Memorial Day", + "1973-09-01": "Independence Day", + "1973-10-01": "Teacher's Day", + "1973-10-27": "Ramadan Khait* (*estimated)", + "1973-12-08": "Constitution Day", + "1974-01-01": "New Year", + "1974-01-03": "Kurban Khait* (*estimated)", + "1974-03-08": "Women's Day", + "1974-03-21": "Nauryz", + "1974-05-09": "Memorial Day", + "1974-09-01": "Independence Day", + "1974-10-01": "Teacher's Day", + "1974-10-16": "Ramadan Khait* (*estimated)", + "1974-12-08": "Constitution Day", + "1974-12-24": "Kurban Khait* (*estimated)", + "1975-01-01": "New Year", + "1975-03-08": "Women's Day", + "1975-03-21": "Nauryz", + "1975-05-09": "Memorial Day", + "1975-09-01": "Independence Day", + "1975-10-01": "Teacher's Day", + "1975-10-06": "Ramadan Khait* (*estimated)", + "1975-12-08": "Constitution Day", + "1975-12-13": "Kurban Khait* (*estimated)", + "1976-01-01": "New Year", + "1976-03-08": "Women's Day", + "1976-03-21": "Nauryz", + "1976-05-09": "Memorial Day", + "1976-09-01": "Independence Day", + "1976-09-24": "Ramadan Khait* (*estimated)", + "1976-10-01": "Teacher's Day", + "1976-12-01": "Kurban Khait* (*estimated)", + "1976-12-08": "Constitution Day", + "1977-01-01": "New Year", + "1977-03-08": "Women's Day", + "1977-03-21": "Nauryz", + "1977-05-09": "Memorial Day", + "1977-09-01": "Independence Day", + "1977-09-14": "Ramadan Khait* (*estimated)", + "1977-10-01": "Teacher's Day", + "1977-11-21": "Kurban Khait* (*estimated)", + "1977-12-08": "Constitution Day", + "1978-01-01": "New Year", + "1978-03-08": "Women's Day", + "1978-03-21": "Nauryz", + "1978-05-09": "Memorial Day", + "1978-09-01": "Independence Day", + "1978-09-03": "Ramadan Khait* (*estimated)", + "1978-10-01": "Teacher's Day", + "1978-11-10": "Kurban Khait* (*estimated)", + "1978-12-08": "Constitution Day", + "1979-01-01": "New Year", + "1979-03-08": "Women's Day", + "1979-03-21": "Nauryz", + "1979-05-09": "Memorial Day", + "1979-08-23": "Ramadan Khait* (*estimated)", + "1979-09-01": "Independence Day", + "1979-10-01": "Teacher's Day", + "1979-10-31": "Kurban Khait* (*estimated)", + "1979-12-08": "Constitution Day", + "1980-01-01": "New Year", + "1980-03-08": "Women's Day", + "1980-03-21": "Nauryz", + "1980-05-09": "Memorial Day", + "1980-08-12": "Ramadan Khait* (*estimated)", + "1980-09-01": "Independence Day", + "1980-10-01": "Teacher's Day", + "1980-10-19": "Kurban Khait* (*estimated)", + "1980-12-08": "Constitution Day", + "1981-01-01": "New Year", + "1981-03-08": "Women's Day", + "1981-03-21": "Nauryz", + "1981-05-09": "Memorial Day", + "1981-08-01": "Ramadan Khait* (*estimated)", + "1981-09-01": "Independence Day", + "1981-10-01": "Teacher's Day", + "1981-10-08": "Kurban Khait* (*estimated)", + "1981-12-08": "Constitution Day", + "1982-01-01": "New Year", + "1982-03-08": "Women's Day", + "1982-03-21": "Nauryz", + "1982-05-09": "Memorial Day", + "1982-07-21": "Ramadan Khait* (*estimated)", + "1982-09-01": "Independence Day", + "1982-09-27": "Kurban Khait* (*estimated)", + "1982-10-01": "Teacher's Day", + "1982-12-08": "Constitution Day", + "1983-01-01": "New Year", + "1983-03-08": "Women's Day", + "1983-03-21": "Nauryz", + "1983-05-09": "Memorial Day", + "1983-07-11": "Ramadan Khait* (*estimated)", + "1983-09-01": "Independence Day", + "1983-09-17": "Kurban Khait* (*estimated)", + "1983-10-01": "Teacher's Day", + "1983-12-08": "Constitution Day", + "1984-01-01": "New Year", + "1984-03-08": "Women's Day", + "1984-03-21": "Nauryz", + "1984-05-09": "Memorial Day", + "1984-06-30": "Ramadan Khait* (*estimated)", + "1984-09-01": "Independence Day", + "1984-09-05": "Kurban Khait* (*estimated)", + "1984-10-01": "Teacher's Day", + "1984-12-08": "Constitution Day", + "1985-01-01": "New Year", + "1985-03-08": "Women's Day", + "1985-03-21": "Nauryz", + "1985-05-09": "Memorial Day", + "1985-06-19": "Ramadan Khait* (*estimated)", + "1985-08-26": "Kurban Khait* (*estimated)", + "1985-09-01": "Independence Day", + "1985-10-01": "Teacher's Day", + "1985-12-08": "Constitution Day", + "1986-01-01": "New Year", + "1986-03-08": "Women's Day", + "1986-03-21": "Nauryz", + "1986-05-09": "Memorial Day", + "1986-06-08": "Ramadan Khait* (*estimated)", + "1986-08-15": "Kurban Khait* (*estimated)", + "1986-09-01": "Independence Day", + "1986-10-01": "Teacher's Day", + "1986-12-08": "Constitution Day", + "1987-01-01": "New Year", + "1987-03-08": "Women's Day", + "1987-03-21": "Nauryz", + "1987-05-09": "Memorial Day", + "1987-05-28": "Ramadan Khait* (*estimated)", + "1987-08-04": "Kurban Khait* (*estimated)", + "1987-09-01": "Independence Day", + "1987-10-01": "Teacher's Day", + "1987-12-08": "Constitution Day", + "1988-01-01": "New Year", + "1988-03-08": "Women's Day", + "1988-03-21": "Nauryz", + "1988-05-09": "Memorial Day", + "1988-05-16": "Ramadan Khait* (*estimated)", + "1988-07-23": "Kurban Khait* (*estimated)", + "1988-09-01": "Independence Day", + "1988-10-01": "Teacher's Day", + "1988-12-08": "Constitution Day", + "1989-01-01": "New Year", + "1989-03-08": "Women's Day", + "1989-03-21": "Nauryz", + "1989-05-06": "Ramadan Khait* (*estimated)", + "1989-05-09": "Memorial Day", + "1989-07-13": "Kurban Khait* (*estimated)", + "1989-09-01": "Independence Day", + "1989-10-01": "Teacher's Day", + "1989-12-08": "Constitution Day", + "1990-01-01": "New Year", + "1990-03-08": "Women's Day", + "1990-03-21": "Nauryz", + "1990-04-26": "Ramadan Khait* (*estimated)", + "1990-05-09": "Memorial Day", + "1990-07-02": "Kurban Khait* (*estimated)", + "1990-09-01": "Independence Day", + "1990-10-01": "Teacher's Day", + "1990-12-08": "Constitution Day", + "1991-01-01": "New Year", + "1991-03-08": "Women's Day", + "1991-03-21": "Nauryz", + "1991-04-15": "Ramadan Khait* (*estimated)", + "1991-05-09": "Memorial Day", + "1991-06-22": "Kurban Khait* (*estimated)", + "1991-09-01": "Independence Day", + "1991-10-01": "Teacher's Day", + "1991-12-08": "Constitution Day", + "1992-01-01": "New Year", + "1992-03-08": "Women's Day", + "1992-03-21": "Nauryz", + "1992-04-04": "Ramadan Khait* (*estimated)", + "1992-05-09": "Memorial Day", + "1992-06-11": "Kurban Khait* (*estimated)", + "1992-09-01": "Independence Day", + "1992-10-01": "Teacher's Day", + "1992-12-08": "Constitution Day", + "1993-01-01": "New Year", + "1993-03-08": "Women's Day", + "1993-03-21": "Nauryz", + "1993-03-24": "Ramadan Khait* (*estimated)", + "1993-05-09": "Memorial Day", + "1993-05-31": "Kurban Khait* (*estimated)", + "1993-09-01": "Independence Day", + "1993-10-01": "Teacher's Day", + "1993-12-08": "Constitution Day", + "1994-01-01": "New Year", + "1994-03-08": "Women's Day", + "1994-03-13": "Ramadan Khait* (*estimated)", + "1994-03-21": "Nauryz", + "1994-05-09": "Memorial Day", + "1994-05-20": "Kurban Khait* (*estimated)", + "1994-09-01": "Independence Day", + "1994-10-01": "Teacher's Day", + "1994-12-08": "Constitution Day", + "1995-01-01": "New Year", + "1995-03-02": "Ramadan Khait* (*estimated)", + "1995-03-08": "Women's Day", + "1995-03-21": "Nauryz", + "1995-05-09": "Kurban Khait* (*estimated); Memorial Day", + "1995-09-01": "Independence Day", + "1995-10-01": "Teacher's Day", + "1995-12-08": "Constitution Day", + "1996-01-01": "New Year", + "1996-02-19": "Ramadan Khait* (*estimated)", + "1996-03-08": "Women's Day", + "1996-03-21": "Nauryz", + "1996-04-27": "Kurban Khait* (*estimated)", + "1996-05-09": "Memorial Day", + "1996-09-01": "Independence Day", + "1996-10-01": "Teacher's Day", + "1996-12-08": "Constitution Day", + "1997-01-01": "New Year", + "1997-02-08": "Ramadan Khait* (*estimated)", + "1997-03-08": "Women's Day", + "1997-03-21": "Nauryz", + "1997-04-17": "Kurban Khait* (*estimated)", + "1997-05-09": "Memorial Day", + "1997-09-01": "Independence Day", + "1997-10-01": "Teacher's Day", + "1997-12-08": "Constitution Day", + "1998-01-01": "New Year", + "1998-01-29": "Ramadan Khait* (*estimated)", + "1998-03-08": "Women's Day", + "1998-03-21": "Nauryz", + "1998-04-07": "Kurban Khait* (*estimated)", + "1998-05-09": "Memorial Day", + "1998-09-01": "Independence Day", + "1998-10-01": "Teacher's Day", + "1998-12-08": "Constitution Day", + "1999-01-01": "New Year", + "1999-01-18": "Ramadan Khait* (*estimated)", + "1999-03-08": "Women's Day", + "1999-03-21": "Nauryz", + "1999-03-27": "Kurban Khait* (*estimated)", + "1999-05-09": "Memorial Day", + "1999-09-01": "Independence Day", + "1999-10-01": "Teacher's Day", + "1999-12-08": "Constitution Day", + "2000-01-01": "New Year", + "2000-01-08": "Ramadan Khait* (*estimated)", + "2000-03-08": "Women's Day", + "2000-03-16": "Kurban Khait* (*estimated)", + "2000-03-21": "Nauryz", + "2000-05-09": "Memorial Day", + "2000-09-01": "Independence Day", + "2000-10-01": "Teacher's Day", + "2000-12-08": "Constitution Day", + "2000-12-27": "Ramadan Khait* (*estimated)", + "2001-01-01": "New Year", + "2001-03-05": "Kurban Khait* (*estimated)", + "2001-03-08": "Women's Day", + "2001-03-21": "Nauryz", + "2001-05-09": "Memorial Day", + "2001-09-01": "Independence Day", + "2001-10-01": "Teacher's Day", + "2001-12-08": "Constitution Day", + "2001-12-16": "Ramadan Khait* (*estimated)", + "2002-01-01": "New Year", + "2002-02-22": "Kurban Khait* (*estimated)", + "2002-03-08": "Women's Day", + "2002-03-21": "Nauryz", + "2002-05-09": "Memorial Day", + "2002-09-01": "Independence Day", + "2002-10-01": "Teacher's Day", + "2002-12-05": "Ramadan Khait* (*estimated)", + "2002-12-08": "Constitution Day", + "2003-01-01": "New Year", + "2003-02-11": "Kurban Khait* (*estimated)", + "2003-03-08": "Women's Day", + "2003-03-21": "Nauryz", + "2003-05-09": "Memorial Day", + "2003-09-01": "Independence Day", + "2003-10-01": "Teacher's Day", + "2003-11-25": "Ramadan Khait* (*estimated)", + "2003-12-08": "Constitution Day", + "2004-01-01": "New Year", + "2004-02-01": "Kurban Khait* (*estimated)", + "2004-03-08": "Women's Day", + "2004-03-21": "Nauryz", + "2004-05-09": "Memorial Day", + "2004-09-01": "Independence Day", + "2004-10-01": "Teacher's Day", + "2004-11-14": "Ramadan Khait* (*estimated)", + "2004-12-08": "Constitution Day", + "2005-01-01": "New Year", + "2005-01-21": "Kurban Khait* (*estimated)", + "2005-03-08": "Women's Day", + "2005-03-21": "Nauryz", + "2005-05-09": "Memorial Day", + "2005-09-01": "Independence Day", + "2005-10-01": "Teacher's Day", + "2005-11-03": "Ramadan Khait* (*estimated)", + "2005-12-08": "Constitution Day", + "2006-01-01": "New Year", + "2006-01-10": "Kurban Khait* (*estimated)", + "2006-03-08": "Women's Day", + "2006-03-21": "Nauryz", + "2006-05-09": "Memorial Day", + "2006-09-01": "Independence Day", + "2006-10-01": "Teacher's Day", + "2006-10-23": "Ramadan Khait* (*estimated)", + "2006-12-08": "Constitution Day", + "2006-12-31": "Kurban Khait* (*estimated)", + "2007-01-01": "New Year", + "2007-03-08": "Women's Day", + "2007-03-21": "Nauryz", + "2007-05-09": "Memorial Day", + "2007-09-01": "Independence Day", + "2007-10-01": "Teacher's Day", + "2007-10-13": "Ramadan Khait* (*estimated)", + "2007-12-08": "Constitution Day", + "2007-12-20": "Kurban Khait* (*estimated)", + "2008-01-01": "New Year", + "2008-03-08": "Women's Day", + "2008-03-21": "Nauryz", + "2008-05-09": "Memorial Day", + "2008-09-01": "Independence Day", + "2008-10-01": "Ramadan Khait* (*estimated); Teacher's Day", + "2008-12-08": "Constitution Day; Kurban Khait* (*estimated)", + "2009-01-01": "New Year", + "2009-03-08": "Women's Day", + "2009-03-21": "Nauryz", + "2009-05-09": "Memorial Day", + "2009-09-01": "Independence Day", + "2009-09-20": "Ramadan Khait* (*estimated)", + "2009-10-01": "Teacher's Day", + "2009-11-27": "Kurban Khait* (*estimated)", + "2009-12-08": "Constitution Day", + "2010-01-01": "New Year", + "2010-03-08": "Women's Day", + "2010-03-21": "Nauryz", + "2010-05-09": "Memorial Day", + "2010-09-01": "Independence Day", + "2010-09-10": "Ramadan Khait* (*estimated)", + "2010-10-01": "Teacher's Day", + "2010-11-16": "Kurban Khait* (*estimated)", + "2010-12-08": "Constitution Day", + "2011-01-01": "New Year", + "2011-03-08": "Women's Day", + "2011-03-21": "Nauryz", + "2011-05-09": "Memorial Day", + "2011-08-30": "Ramadan Khait* (*estimated)", + "2011-09-01": "Independence Day", + "2011-10-01": "Teacher's Day", + "2011-11-06": "Kurban Khait* (*estimated)", + "2011-12-08": "Constitution Day", + "2012-01-01": "New Year", + "2012-03-08": "Women's Day", + "2012-03-21": "Nauryz", + "2012-05-09": "Memorial Day", + "2012-08-19": "Ramadan Khait* (*estimated)", + "2012-09-01": "Independence Day", + "2012-10-01": "Teacher's Day", + "2012-10-26": "Kurban Khait* (*estimated)", + "2012-12-08": "Constitution Day", + "2013-01-01": "New Year", + "2013-03-08": "Women's Day", + "2013-03-21": "Nauryz", + "2013-05-09": "Memorial Day", + "2013-08-08": "Ramadan Khait* (*estimated)", + "2013-09-01": "Independence Day", + "2013-10-01": "Teacher's Day", + "2013-10-15": "Kurban Khait* (*estimated)", + "2013-12-08": "Constitution Day", + "2014-01-01": "New Year", + "2014-03-08": "Women's Day", + "2014-03-21": "Nauryz", + "2014-05-09": "Memorial Day", + "2014-07-28": "Ramadan Khait* (*estimated)", + "2014-09-01": "Independence Day", + "2014-10-01": "Teacher's Day", + "2014-10-04": "Kurban Khait* (*estimated)", + "2014-12-08": "Constitution Day", + "2015-01-01": "New Year", + "2015-03-08": "Women's Day", + "2015-03-21": "Nauryz", + "2015-05-09": "Memorial Day", + "2015-07-17": "Ramadan Khait* (*estimated)", + "2015-09-01": "Independence Day", + "2015-09-23": "Kurban Khait* (*estimated)", + "2015-10-01": "Teacher's Day", + "2015-12-08": "Constitution Day", + "2016-01-01": "New Year", + "2016-03-08": "Women's Day", + "2016-03-21": "Nauryz", + "2016-05-09": "Memorial Day", + "2016-07-06": "Ramadan Khait* (*estimated)", + "2016-09-01": "Independence Day", + "2016-09-11": "Kurban Khait* (*estimated)", + "2016-10-01": "Teacher's Day", + "2016-12-08": "Constitution Day", + "2017-01-01": "New Year", + "2017-03-08": "Women's Day", + "2017-03-21": "Nauryz", + "2017-05-09": "Memorial Day", + "2017-06-25": "Ramadan Khait* (*estimated)", + "2017-09-01": "Independence Day; Kurban Khait* (*estimated)", + "2017-10-01": "Teacher's Day", + "2017-12-08": "Constitution Day", + "2018-01-01": "New Year", + "2018-03-08": "Women's Day", + "2018-03-21": "Nauryz", + "2018-05-09": "Memorial Day", + "2018-06-15": "Ramadan Khait* (*estimated)", + "2018-08-21": "Kurban Khait* (*estimated)", + "2018-09-01": "Independence Day", + "2018-10-01": "Teacher's Day", + "2018-12-08": "Constitution Day", + "2019-01-01": "New Year", + "2019-03-08": "Women's Day", + "2019-03-21": "Nauryz", + "2019-05-09": "Memorial Day", + "2019-06-04": "Ramadan Khait* (*estimated)", + "2019-08-11": "Kurban Khait* (*estimated)", + "2019-09-01": "Independence Day", + "2019-10-01": "Teacher's Day", + "2019-12-08": "Constitution Day", + "2020-01-01": "New Year", + "2020-03-08": "Women's Day", + "2020-03-21": "Nauryz", + "2020-05-09": "Memorial Day", + "2020-05-24": "Ramadan Khait* (*estimated)", + "2020-07-31": "Kurban Khait* (*estimated)", + "2020-09-01": "Independence Day", + "2020-10-01": "Teacher's Day", + "2020-12-08": "Constitution Day", + "2021-01-01": "New Year", + "2021-03-08": "Women's Day", + "2021-03-21": "Nauryz", + "2021-05-09": "Memorial Day", + "2021-05-13": "Ramadan Khait* (*estimated)", + "2021-07-20": "Kurban Khait* (*estimated)", + "2021-09-01": "Independence Day", + "2021-10-01": "Teacher's Day", + "2021-12-08": "Constitution Day", + "2022-01-01": "New Year", + "2022-03-08": "Women's Day", + "2022-03-21": "Nauryz", + "2022-05-02": "Ramadan Khait* (*estimated)", + "2022-05-09": "Memorial Day", + "2022-07-09": "Kurban Khait* (*estimated)", + "2022-09-01": "Independence Day", + "2022-10-01": "Teacher's Day", + "2022-12-08": "Constitution Day", + "2023-01-01": "New Year", + "2023-03-08": "Women's Day", + "2023-03-21": "Nauryz", + "2023-04-21": "Ramadan Khait* (*estimated)", + "2023-05-09": "Memorial Day", + "2023-06-28": "Kurban Khait* (*estimated)", + "2023-09-01": "Independence Day", + "2023-10-01": "Teacher's Day", + "2023-12-08": "Constitution Day", + "2024-01-01": "New Year", + "2024-03-08": "Women's Day", + "2024-03-21": "Nauryz", + "2024-04-10": "Ramadan Khait* (*estimated)", + "2024-05-09": "Memorial Day", + "2024-06-16": "Kurban Khait* (*estimated)", + "2024-09-01": "Independence Day", + "2024-10-01": "Teacher's Day", + "2024-12-08": "Constitution Day", + "2025-01-01": "New Year", + "2025-03-08": "Women's Day", + "2025-03-21": "Nauryz", + "2025-03-30": "Ramadan Khait* (*estimated)", + "2025-05-09": "Memorial Day", + "2025-06-06": "Kurban Khait* (*estimated)", + "2025-09-01": "Independence Day", + "2025-10-01": "Teacher's Day", + "2025-12-08": "Constitution Day", + "2026-01-01": "New Year", + "2026-03-08": "Women's Day", + "2026-03-20": "Ramadan Khait* (*estimated)", + "2026-03-21": "Nauryz", + "2026-05-09": "Memorial Day", + "2026-05-27": "Kurban Khait* (*estimated)", + "2026-09-01": "Independence Day", + "2026-10-01": "Teacher's Day", + "2026-12-08": "Constitution Day", + "2027-01-01": "New Year", + "2027-03-08": "Women's Day", + "2027-03-09": "Ramadan Khait* (*estimated)", + "2027-03-21": "Nauryz", + "2027-05-09": "Memorial Day", + "2027-05-16": "Kurban Khait* (*estimated)", + "2027-09-01": "Independence Day", + "2027-10-01": "Teacher's Day", + "2027-12-08": "Constitution Day", + "2028-01-01": "New Year", + "2028-02-26": "Ramadan Khait* (*estimated)", + "2028-03-08": "Women's Day", + "2028-03-21": "Nauryz", + "2028-05-05": "Kurban Khait* (*estimated)", + "2028-05-09": "Memorial Day", + "2028-09-01": "Independence Day", + "2028-10-01": "Teacher's Day", + "2028-12-08": "Constitution Day", + "2029-01-01": "New Year", + "2029-02-14": "Ramadan Khait* (*estimated)", + "2029-03-08": "Women's Day", + "2029-03-21": "Nauryz", + "2029-04-24": "Kurban Khait* (*estimated)", + "2029-05-09": "Memorial Day", + "2029-09-01": "Independence Day", + "2029-10-01": "Teacher's Day", + "2029-12-08": "Constitution Day", + "2030-01-01": "New Year", + "2030-02-04": "Ramadan Khait* (*estimated)", + "2030-03-08": "Women's Day", + "2030-03-21": "Nauryz", + "2030-04-13": "Kurban Khait* (*estimated)", + "2030-05-09": "Memorial Day", + "2030-09-01": "Independence Day", + "2030-10-01": "Teacher's Day", + "2030-12-08": "Constitution Day", + "2031-01-01": "New Year", + "2031-01-24": "Ramadan Khait* (*estimated)", + "2031-03-08": "Women's Day", + "2031-03-21": "Nauryz", + "2031-04-02": "Kurban Khait* (*estimated)", + "2031-05-09": "Memorial Day", + "2031-09-01": "Independence Day", + "2031-10-01": "Teacher's Day", + "2031-12-08": "Constitution Day", + "2032-01-01": "New Year", + "2032-01-14": "Ramadan Khait* (*estimated)", + "2032-03-08": "Women's Day", + "2032-03-21": "Nauryz", + "2032-03-22": "Kurban Khait* (*estimated)", + "2032-05-09": "Memorial Day", + "2032-09-01": "Independence Day", + "2032-10-01": "Teacher's Day", + "2032-12-08": "Constitution Day", + "2033-01-01": "New Year", + "2033-01-02": "Ramadan Khait* (*estimated)", + "2033-03-08": "Women's Day", + "2033-03-11": "Kurban Khait* (*estimated)", + "2033-03-21": "Nauryz", + "2033-05-09": "Memorial Day", + "2033-09-01": "Independence Day", + "2033-10-01": "Teacher's Day", + "2033-12-08": "Constitution Day", + "2033-12-23": "Ramadan Khait* (*estimated)", + "2034-01-01": "New Year", + "2034-03-01": "Kurban Khait* (*estimated)", + "2034-03-08": "Women's Day", + "2034-03-21": "Nauryz", + "2034-05-09": "Memorial Day", + "2034-09-01": "Independence Day", + "2034-10-01": "Teacher's Day", + "2034-12-08": "Constitution Day", + "2034-12-12": "Ramadan Khait* (*estimated)", + "2035-01-01": "New Year", + "2035-02-18": "Kurban Khait* (*estimated)", + "2035-03-08": "Women's Day", + "2035-03-21": "Nauryz", + "2035-05-09": "Memorial Day", + "2035-09-01": "Independence Day", + "2035-10-01": "Teacher's Day", + "2035-12-01": "Ramadan Khait* (*estimated)", + "2035-12-08": "Constitution Day", + "2036-01-01": "New Year", + "2036-02-07": "Kurban Khait* (*estimated)", + "2036-03-08": "Women's Day", + "2036-03-21": "Nauryz", + "2036-05-09": "Memorial Day", + "2036-09-01": "Independence Day", + "2036-10-01": "Teacher's Day", + "2036-11-19": "Ramadan Khait* (*estimated)", + "2036-12-08": "Constitution Day", + "2037-01-01": "New Year", + "2037-01-26": "Kurban Khait* (*estimated)", + "2037-03-08": "Women's Day", + "2037-03-21": "Nauryz", + "2037-05-09": "Memorial Day", + "2037-09-01": "Independence Day", + "2037-10-01": "Teacher's Day", + "2037-11-08": "Ramadan Khait* (*estimated)", + "2037-12-08": "Constitution Day", + "2038-01-01": "New Year", + "2038-01-16": "Kurban Khait* (*estimated)", + "2038-03-08": "Women's Day", + "2038-03-21": "Nauryz", + "2038-05-09": "Memorial Day", + "2038-09-01": "Independence Day", + "2038-10-01": "Teacher's Day", + "2038-10-29": "Ramadan Khait* (*estimated)", + "2038-12-08": "Constitution Day", + "2039-01-01": "New Year", + "2039-01-05": "Kurban Khait* (*estimated)", + "2039-03-08": "Women's Day", + "2039-03-21": "Nauryz", + "2039-05-09": "Memorial Day", + "2039-09-01": "Independence Day", + "2039-10-01": "Teacher's Day", + "2039-10-19": "Ramadan Khait* (*estimated)", + "2039-12-08": "Constitution Day", + "2039-12-26": "Kurban Khait* (*estimated)", + "2040-01-01": "New Year", + "2040-03-08": "Women's Day", + "2040-03-21": "Nauryz", + "2040-05-09": "Memorial Day", + "2040-09-01": "Independence Day", + "2040-10-01": "Teacher's Day", + "2040-10-07": "Ramadan Khait* (*estimated)", + "2040-12-08": "Constitution Day", + "2040-12-14": "Kurban Khait* (*estimated)", + "2041-01-01": "New Year", + "2041-03-08": "Women's Day", + "2041-03-21": "Nauryz", + "2041-05-09": "Memorial Day", + "2041-09-01": "Independence Day", + "2041-09-26": "Ramadan Khait* (*estimated)", + "2041-10-01": "Teacher's Day", + "2041-12-04": "Kurban Khait* (*estimated)", + "2041-12-08": "Constitution Day", + "2042-01-01": "New Year", + "2042-03-08": "Women's Day", + "2042-03-21": "Nauryz", + "2042-05-09": "Memorial Day", + "2042-09-01": "Independence Day", + "2042-09-15": "Ramadan Khait* (*estimated)", + "2042-10-01": "Teacher's Day", + "2042-11-23": "Kurban Khait* (*estimated)", + "2042-12-08": "Constitution Day", + "2043-01-01": "New Year", + "2043-03-08": "Women's Day", + "2043-03-21": "Nauryz", + "2043-05-09": "Memorial Day", + "2043-09-01": "Independence Day", + "2043-09-04": "Ramadan Khait* (*estimated)", + "2043-10-01": "Teacher's Day", + "2043-11-12": "Kurban Khait* (*estimated)", + "2043-12-08": "Constitution Day", + "2044-01-01": "New Year", + "2044-03-08": "Women's Day", + "2044-03-21": "Nauryz", + "2044-05-09": "Memorial Day", + "2044-08-24": "Ramadan Khait* (*estimated)", + "2044-09-01": "Independence Day", + "2044-10-01": "Teacher's Day", + "2044-10-31": "Kurban Khait* (*estimated)", + "2044-12-08": "Constitution Day", + "2045-01-01": "New Year", + "2045-03-08": "Women's Day", + "2045-03-21": "Nauryz", + "2045-05-09": "Memorial Day", + "2045-08-14": "Ramadan Khait* (*estimated)", + "2045-09-01": "Independence Day", + "2045-10-01": "Teacher's Day", + "2045-10-21": "Kurban Khait* (*estimated)", + "2045-12-08": "Constitution Day", + "2046-01-01": "New Year", + "2046-03-08": "Women's Day", + "2046-03-21": "Nauryz", + "2046-05-09": "Memorial Day", + "2046-08-03": "Ramadan Khait* (*estimated)", + "2046-09-01": "Independence Day", + "2046-10-01": "Teacher's Day", + "2046-10-10": "Kurban Khait* (*estimated)", + "2046-12-08": "Constitution Day", + "2047-01-01": "New Year", + "2047-03-08": "Women's Day", + "2047-03-21": "Nauryz", + "2047-05-09": "Memorial Day", + "2047-07-24": "Ramadan Khait* (*estimated)", + "2047-09-01": "Independence Day", + "2047-09-30": "Kurban Khait* (*estimated)", + "2047-10-01": "Teacher's Day", + "2047-12-08": "Constitution Day", + "2048-01-01": "New Year", + "2048-03-08": "Women's Day", + "2048-03-21": "Nauryz", + "2048-05-09": "Memorial Day", + "2048-07-12": "Ramadan Khait* (*estimated)", + "2048-09-01": "Independence Day", + "2048-09-19": "Kurban Khait* (*estimated)", + "2048-10-01": "Teacher's Day", + "2048-12-08": "Constitution Day", + "2049-01-01": "New Year", + "2049-03-08": "Women's Day", + "2049-03-21": "Nauryz", + "2049-05-09": "Memorial Day", + "2049-07-01": "Ramadan Khait* (*estimated)", + "2049-09-01": "Independence Day", + "2049-09-08": "Kurban Khait* (*estimated)", + "2049-10-01": "Teacher's Day", + "2049-12-08": "Constitution Day", + "2050-01-01": "New Year", + "2050-03-08": "Women's Day", + "2050-03-21": "Nauryz", + "2050-05-09": "Memorial Day", + "2050-06-20": "Ramadan Khait* (*estimated)", + "2050-08-28": "Kurban Khait* (*estimated)", + "2050-09-01": "Independence Day", + "2050-10-01": "Teacher's Day", + "2050-12-08": "Constitution Day" +} diff --git a/snapshots/countries/VA.json b/snapshots/countries/VA.json new file mode 100644 index 000000000..998a12743 --- /dev/null +++ b/snapshots/countries/VA.json @@ -0,0 +1,1668 @@ +{ + "1950-01-01": "Solemnity of Mary Day", + "1950-01-06": "Epiphany", + "1950-02-11": "Lateran Treaty Day", + "1950-03-19": "Saint Joseph's Day", + "1950-04-09": "Easter Sunday", + "1950-04-10": "Easter Monday", + "1950-05-18": "Ascension of Christ", + "1950-06-08": "Corpus Christi", + "1950-06-29": "Saint Peter and Saint Paul's Day", + "1950-08-15": "Assumption Day", + "1950-09-08": "Nativity of Mary Day", + "1950-11-01": "All Saints' Day", + "1950-12-08": "Immaculate Conception Day", + "1950-12-25": "Christmas Day", + "1950-12-26": "Saint Stephen's Day", + "1951-01-01": "Solemnity of Mary Day", + "1951-01-06": "Epiphany", + "1951-02-11": "Lateran Treaty Day", + "1951-03-19": "Saint Joseph's Day", + "1951-03-25": "Easter Sunday", + "1951-03-26": "Easter Monday", + "1951-05-03": "Ascension of Christ", + "1951-05-24": "Corpus Christi", + "1951-06-29": "Saint Peter and Saint Paul's Day", + "1951-08-15": "Assumption Day", + "1951-09-08": "Nativity of Mary Day", + "1951-11-01": "All Saints' Day", + "1951-12-08": "Immaculate Conception Day", + "1951-12-25": "Christmas Day", + "1951-12-26": "Saint Stephen's Day", + "1952-01-01": "Solemnity of Mary Day", + "1952-01-06": "Epiphany", + "1952-02-11": "Lateran Treaty Day", + "1952-03-19": "Saint Joseph's Day", + "1952-04-13": "Easter Sunday", + "1952-04-14": "Easter Monday", + "1952-05-22": "Ascension of Christ", + "1952-06-12": "Corpus Christi", + "1952-06-29": "Saint Peter and Saint Paul's Day", + "1952-08-15": "Assumption Day", + "1952-09-08": "Nativity of Mary Day", + "1952-11-01": "All Saints' Day", + "1952-12-08": "Immaculate Conception Day", + "1952-12-25": "Christmas Day", + "1952-12-26": "Saint Stephen's Day", + "1953-01-01": "Solemnity of Mary Day", + "1953-01-06": "Epiphany", + "1953-02-11": "Lateran Treaty Day", + "1953-03-19": "Saint Joseph's Day", + "1953-04-05": "Easter Sunday", + "1953-04-06": "Easter Monday", + "1953-05-14": "Ascension of Christ", + "1953-06-04": "Corpus Christi", + "1953-06-29": "Saint Peter and Saint Paul's Day", + "1953-08-15": "Assumption Day", + "1953-09-08": "Nativity of Mary Day", + "1953-11-01": "All Saints' Day", + "1953-12-08": "Immaculate Conception Day", + "1953-12-25": "Christmas Day", + "1953-12-26": "Saint Stephen's Day", + "1954-01-01": "Solemnity of Mary Day", + "1954-01-06": "Epiphany", + "1954-02-11": "Lateran Treaty Day", + "1954-03-19": "Saint Joseph's Day", + "1954-04-18": "Easter Sunday", + "1954-04-19": "Easter Monday", + "1954-05-27": "Ascension of Christ", + "1954-06-17": "Corpus Christi", + "1954-06-29": "Saint Peter and Saint Paul's Day", + "1954-08-15": "Assumption Day", + "1954-09-08": "Nativity of Mary Day", + "1954-11-01": "All Saints' Day", + "1954-12-08": "Immaculate Conception Day", + "1954-12-25": "Christmas Day", + "1954-12-26": "Saint Stephen's Day", + "1955-01-01": "Solemnity of Mary Day", + "1955-01-06": "Epiphany", + "1955-02-11": "Lateran Treaty Day", + "1955-03-19": "Saint Joseph's Day", + "1955-04-10": "Easter Sunday", + "1955-04-11": "Easter Monday", + "1955-05-01": "Saint Joseph the Worker's Day", + "1955-05-19": "Ascension of Christ", + "1955-06-09": "Corpus Christi", + "1955-06-29": "Saint Peter and Saint Paul's Day", + "1955-08-15": "Assumption Day", + "1955-09-08": "Nativity of Mary Day", + "1955-11-01": "All Saints' Day", + "1955-12-08": "Immaculate Conception Day", + "1955-12-25": "Christmas Day", + "1955-12-26": "Saint Stephen's Day", + "1956-01-01": "Solemnity of Mary Day", + "1956-01-06": "Epiphany", + "1956-02-11": "Lateran Treaty Day", + "1956-03-19": "Saint Joseph's Day", + "1956-04-01": "Easter Sunday", + "1956-04-02": "Easter Monday", + "1956-05-01": "Saint Joseph the Worker's Day", + "1956-05-10": "Ascension of Christ", + "1956-05-31": "Corpus Christi", + "1956-06-29": "Saint Peter and Saint Paul's Day", + "1956-08-15": "Assumption Day", + "1956-09-08": "Nativity of Mary Day", + "1956-11-01": "All Saints' Day", + "1956-12-08": "Immaculate Conception Day", + "1956-12-25": "Christmas Day", + "1956-12-26": "Saint Stephen's Day", + "1957-01-01": "Solemnity of Mary Day", + "1957-01-06": "Epiphany", + "1957-02-11": "Lateran Treaty Day", + "1957-03-19": "Saint Joseph's Day", + "1957-04-21": "Easter Sunday", + "1957-04-22": "Easter Monday", + "1957-05-01": "Saint Joseph the Worker's Day", + "1957-05-30": "Ascension of Christ", + "1957-06-20": "Corpus Christi", + "1957-06-29": "Saint Peter and Saint Paul's Day", + "1957-08-15": "Assumption Day", + "1957-09-08": "Nativity of Mary Day", + "1957-11-01": "All Saints' Day", + "1957-12-08": "Immaculate Conception Day", + "1957-12-25": "Christmas Day", + "1957-12-26": "Saint Stephen's Day", + "1958-01-01": "Solemnity of Mary Day", + "1958-01-06": "Epiphany", + "1958-02-11": "Lateran Treaty Day", + "1958-03-19": "Saint Joseph's Day", + "1958-04-06": "Easter Sunday", + "1958-04-07": "Easter Monday", + "1958-05-01": "Saint Joseph the Worker's Day", + "1958-05-15": "Ascension of Christ", + "1958-06-05": "Corpus Christi", + "1958-06-29": "Saint Peter and Saint Paul's Day", + "1958-08-15": "Assumption Day", + "1958-09-08": "Nativity of Mary Day", + "1958-11-01": "All Saints' Day", + "1958-12-08": "Immaculate Conception Day", + "1958-12-25": "Christmas Day", + "1958-12-26": "Saint Stephen's Day", + "1959-01-01": "Solemnity of Mary Day", + "1959-01-06": "Epiphany", + "1959-02-11": "Lateran Treaty Day", + "1959-03-19": "Saint Joseph's Day", + "1959-03-29": "Easter Sunday", + "1959-03-30": "Easter Monday", + "1959-05-01": "Saint Joseph the Worker's Day", + "1959-05-07": "Ascension of Christ", + "1959-05-28": "Corpus Christi", + "1959-06-29": "Saint Peter and Saint Paul's Day", + "1959-08-15": "Assumption Day", + "1959-09-08": "Nativity of Mary Day", + "1959-11-01": "All Saints' Day", + "1959-12-08": "Immaculate Conception Day", + "1959-12-25": "Christmas Day", + "1959-12-26": "Saint Stephen's Day", + "1960-01-01": "Solemnity of Mary Day", + "1960-01-06": "Epiphany", + "1960-02-11": "Lateran Treaty Day", + "1960-03-19": "Saint Joseph's Day", + "1960-04-17": "Easter Sunday", + "1960-04-18": "Easter Monday", + "1960-05-01": "Saint Joseph the Worker's Day", + "1960-05-26": "Ascension of Christ", + "1960-06-16": "Corpus Christi", + "1960-06-29": "Saint Peter and Saint Paul's Day", + "1960-08-15": "Assumption Day", + "1960-09-08": "Nativity of Mary Day", + "1960-11-01": "All Saints' Day", + "1960-12-08": "Immaculate Conception Day", + "1960-12-25": "Christmas Day", + "1960-12-26": "Saint Stephen's Day", + "1961-01-01": "Solemnity of Mary Day", + "1961-01-06": "Epiphany", + "1961-02-11": "Lateran Treaty Day", + "1961-03-19": "Saint Joseph's Day", + "1961-04-02": "Easter Sunday", + "1961-04-03": "Easter Monday", + "1961-05-01": "Saint Joseph the Worker's Day", + "1961-05-11": "Ascension of Christ", + "1961-06-01": "Corpus Christi", + "1961-06-29": "Saint Peter and Saint Paul's Day", + "1961-08-15": "Assumption Day", + "1961-09-08": "Nativity of Mary Day", + "1961-11-01": "All Saints' Day", + "1961-12-08": "Immaculate Conception Day", + "1961-12-25": "Christmas Day", + "1961-12-26": "Saint Stephen's Day", + "1962-01-01": "Solemnity of Mary Day", + "1962-01-06": "Epiphany", + "1962-02-11": "Lateran Treaty Day", + "1962-03-19": "Saint Joseph's Day", + "1962-04-22": "Easter Sunday", + "1962-04-23": "Easter Monday", + "1962-05-01": "Saint Joseph the Worker's Day", + "1962-05-31": "Ascension of Christ", + "1962-06-21": "Corpus Christi", + "1962-06-29": "Saint Peter and Saint Paul's Day", + "1962-08-15": "Assumption Day", + "1962-09-08": "Nativity of Mary Day", + "1962-11-01": "All Saints' Day", + "1962-12-08": "Immaculate Conception Day", + "1962-12-25": "Christmas Day", + "1962-12-26": "Saint Stephen's Day", + "1963-01-01": "Solemnity of Mary Day", + "1963-01-06": "Epiphany", + "1963-02-11": "Lateran Treaty Day", + "1963-03-19": "Saint Joseph's Day", + "1963-04-14": "Easter Sunday", + "1963-04-15": "Easter Monday", + "1963-05-01": "Saint Joseph the Worker's Day", + "1963-05-23": "Ascension of Christ", + "1963-06-13": "Corpus Christi", + "1963-06-29": "Saint Peter and Saint Paul's Day", + "1963-08-15": "Assumption Day", + "1963-09-08": "Nativity of Mary Day", + "1963-11-01": "All Saints' Day", + "1963-12-08": "Immaculate Conception Day", + "1963-12-25": "Christmas Day", + "1963-12-26": "Saint Stephen's Day", + "1964-01-01": "Solemnity of Mary Day", + "1964-01-06": "Epiphany", + "1964-02-11": "Lateran Treaty Day", + "1964-03-19": "Saint Joseph's Day", + "1964-03-29": "Easter Sunday", + "1964-03-30": "Easter Monday", + "1964-05-01": "Saint Joseph the Worker's Day", + "1964-05-07": "Ascension of Christ", + "1964-05-28": "Corpus Christi", + "1964-06-29": "Saint Peter and Saint Paul's Day", + "1964-08-15": "Assumption Day", + "1964-09-08": "Nativity of Mary Day", + "1964-11-01": "All Saints' Day", + "1964-12-08": "Immaculate Conception Day", + "1964-12-25": "Christmas Day", + "1964-12-26": "Saint Stephen's Day", + "1965-01-01": "Solemnity of Mary Day", + "1965-01-06": "Epiphany", + "1965-02-11": "Lateran Treaty Day", + "1965-03-19": "Saint Joseph's Day", + "1965-04-18": "Easter Sunday", + "1965-04-19": "Easter Monday", + "1965-05-01": "Saint Joseph the Worker's Day", + "1965-05-27": "Ascension of Christ", + "1965-06-17": "Corpus Christi", + "1965-06-29": "Saint Peter and Saint Paul's Day", + "1965-08-15": "Assumption Day", + "1965-09-08": "Nativity of Mary Day", + "1965-11-01": "All Saints' Day", + "1965-12-08": "Immaculate Conception Day", + "1965-12-25": "Christmas Day", + "1965-12-26": "Saint Stephen's Day", + "1966-01-01": "Solemnity of Mary Day", + "1966-01-06": "Epiphany", + "1966-02-11": "Lateran Treaty Day", + "1966-03-19": "Saint Joseph's Day", + "1966-04-10": "Easter Sunday", + "1966-04-11": "Easter Monday", + "1966-05-01": "Saint Joseph the Worker's Day", + "1966-05-19": "Ascension of Christ", + "1966-06-09": "Corpus Christi", + "1966-06-29": "Saint Peter and Saint Paul's Day", + "1966-08-15": "Assumption Day", + "1966-09-08": "Nativity of Mary Day", + "1966-11-01": "All Saints' Day", + "1966-12-08": "Immaculate Conception Day", + "1966-12-25": "Christmas Day", + "1966-12-26": "Saint Stephen's Day", + "1967-01-01": "Solemnity of Mary Day", + "1967-01-06": "Epiphany", + "1967-02-11": "Lateran Treaty Day", + "1967-03-19": "Saint Joseph's Day", + "1967-03-26": "Easter Sunday", + "1967-03-27": "Easter Monday", + "1967-05-01": "Saint Joseph the Worker's Day", + "1967-05-04": "Ascension of Christ", + "1967-05-25": "Corpus Christi", + "1967-06-29": "Saint Peter and Saint Paul's Day", + "1967-08-15": "Assumption Day", + "1967-09-08": "Nativity of Mary Day", + "1967-11-01": "All Saints' Day", + "1967-12-08": "Immaculate Conception Day", + "1967-12-25": "Christmas Day", + "1967-12-26": "Saint Stephen's Day", + "1968-01-01": "Solemnity of Mary Day", + "1968-01-06": "Epiphany", + "1968-02-11": "Lateran Treaty Day", + "1968-03-19": "Saint Joseph's Day", + "1968-04-14": "Easter Sunday", + "1968-04-15": "Easter Monday", + "1968-05-01": "Saint Joseph the Worker's Day", + "1968-05-23": "Ascension of Christ", + "1968-06-13": "Corpus Christi", + "1968-06-29": "Saint Peter and Saint Paul's Day", + "1968-08-15": "Assumption Day", + "1968-09-08": "Nativity of Mary Day", + "1968-11-01": "All Saints' Day", + "1968-12-08": "Immaculate Conception Day", + "1968-12-25": "Christmas Day", + "1968-12-26": "Saint Stephen's Day", + "1969-01-01": "Solemnity of Mary Day", + "1969-01-06": "Epiphany", + "1969-02-11": "Lateran Treaty Day", + "1969-03-19": "Saint Joseph's Day", + "1969-04-06": "Easter Sunday", + "1969-04-07": "Easter Monday", + "1969-05-01": "Saint Joseph the Worker's Day", + "1969-05-15": "Ascension of Christ", + "1969-06-05": "Corpus Christi", + "1969-06-29": "Saint Peter and Saint Paul's Day", + "1969-08-15": "Assumption Day", + "1969-09-08": "Nativity of Mary Day", + "1969-11-01": "All Saints' Day", + "1969-12-08": "Immaculate Conception Day", + "1969-12-25": "Christmas Day", + "1969-12-26": "Saint Stephen's Day", + "1970-01-01": "Solemnity of Mary Day", + "1970-01-06": "Epiphany", + "1970-02-11": "Lateran Treaty Day", + "1970-03-19": "Saint Joseph's Day", + "1970-03-29": "Easter Sunday", + "1970-03-30": "Easter Monday", + "1970-05-01": "Saint Joseph the Worker's Day", + "1970-05-07": "Ascension of Christ", + "1970-05-28": "Corpus Christi", + "1970-06-29": "Saint Peter and Saint Paul's Day", + "1970-08-15": "Assumption Day", + "1970-09-08": "Nativity of Mary Day", + "1970-11-01": "All Saints' Day", + "1970-12-08": "Immaculate Conception Day", + "1970-12-25": "Christmas Day", + "1970-12-26": "Saint Stephen's Day", + "1971-01-01": "Solemnity of Mary Day", + "1971-01-06": "Epiphany", + "1971-02-11": "Lateran Treaty Day", + "1971-03-19": "Saint Joseph's Day", + "1971-04-11": "Easter Sunday", + "1971-04-12": "Easter Monday", + "1971-05-01": "Saint Joseph the Worker's Day", + "1971-05-20": "Ascension of Christ", + "1971-06-10": "Corpus Christi", + "1971-06-29": "Saint Peter and Saint Paul's Day", + "1971-08-15": "Assumption Day", + "1971-09-08": "Nativity of Mary Day", + "1971-11-01": "All Saints' Day", + "1971-12-08": "Immaculate Conception Day", + "1971-12-25": "Christmas Day", + "1971-12-26": "Saint Stephen's Day", + "1972-01-01": "Solemnity of Mary Day", + "1972-01-06": "Epiphany", + "1972-02-11": "Lateran Treaty Day", + "1972-03-19": "Saint Joseph's Day", + "1972-04-02": "Easter Sunday", + "1972-04-03": "Easter Monday", + "1972-05-01": "Saint Joseph the Worker's Day", + "1972-05-11": "Ascension of Christ", + "1972-06-01": "Corpus Christi", + "1972-06-29": "Saint Peter and Saint Paul's Day", + "1972-08-15": "Assumption Day", + "1972-09-08": "Nativity of Mary Day", + "1972-11-01": "All Saints' Day", + "1972-12-08": "Immaculate Conception Day", + "1972-12-25": "Christmas Day", + "1972-12-26": "Saint Stephen's Day", + "1973-01-01": "Solemnity of Mary Day", + "1973-01-06": "Epiphany", + "1973-02-11": "Lateran Treaty Day", + "1973-03-19": "Saint Joseph's Day", + "1973-04-22": "Easter Sunday", + "1973-04-23": "Easter Monday", + "1973-05-01": "Saint Joseph the Worker's Day", + "1973-05-31": "Ascension of Christ", + "1973-06-21": "Corpus Christi", + "1973-06-29": "Saint Peter and Saint Paul's Day", + "1973-08-15": "Assumption Day", + "1973-09-08": "Nativity of Mary Day", + "1973-11-01": "All Saints' Day", + "1973-12-08": "Immaculate Conception Day", + "1973-12-25": "Christmas Day", + "1973-12-26": "Saint Stephen's Day", + "1974-01-01": "Solemnity of Mary Day", + "1974-01-06": "Epiphany", + "1974-02-11": "Lateran Treaty Day", + "1974-03-19": "Saint Joseph's Day", + "1974-04-14": "Easter Sunday", + "1974-04-15": "Easter Monday", + "1974-05-01": "Saint Joseph the Worker's Day", + "1974-05-23": "Ascension of Christ", + "1974-06-13": "Corpus Christi", + "1974-06-29": "Saint Peter and Saint Paul's Day", + "1974-08-15": "Assumption Day", + "1974-09-08": "Nativity of Mary Day", + "1974-11-01": "All Saints' Day", + "1974-12-08": "Immaculate Conception Day", + "1974-12-25": "Christmas Day", + "1974-12-26": "Saint Stephen's Day", + "1975-01-01": "Solemnity of Mary Day", + "1975-01-06": "Epiphany", + "1975-02-11": "Lateran Treaty Day", + "1975-03-19": "Saint Joseph's Day", + "1975-03-30": "Easter Sunday", + "1975-03-31": "Easter Monday", + "1975-05-01": "Saint Joseph the Worker's Day", + "1975-05-08": "Ascension of Christ", + "1975-05-29": "Corpus Christi", + "1975-06-29": "Saint Peter and Saint Paul's Day", + "1975-08-15": "Assumption Day", + "1975-09-08": "Nativity of Mary Day", + "1975-11-01": "All Saints' Day", + "1975-12-08": "Immaculate Conception Day", + "1975-12-25": "Christmas Day", + "1975-12-26": "Saint Stephen's Day", + "1976-01-01": "Solemnity of Mary Day", + "1976-01-06": "Epiphany", + "1976-02-11": "Lateran Treaty Day", + "1976-03-19": "Saint Joseph's Day", + "1976-04-18": "Easter Sunday", + "1976-04-19": "Easter Monday", + "1976-05-01": "Saint Joseph the Worker's Day", + "1976-05-27": "Ascension of Christ", + "1976-06-17": "Corpus Christi", + "1976-06-29": "Saint Peter and Saint Paul's Day", + "1976-08-15": "Assumption Day", + "1976-09-08": "Nativity of Mary Day", + "1976-11-01": "All Saints' Day", + "1976-12-08": "Immaculate Conception Day", + "1976-12-25": "Christmas Day", + "1976-12-26": "Saint Stephen's Day", + "1977-01-01": "Solemnity of Mary Day", + "1977-01-06": "Epiphany", + "1977-02-11": "Lateran Treaty Day", + "1977-03-19": "Saint Joseph's Day", + "1977-04-10": "Easter Sunday", + "1977-04-11": "Easter Monday", + "1977-05-01": "Saint Joseph the Worker's Day", + "1977-05-19": "Ascension of Christ", + "1977-06-09": "Corpus Christi", + "1977-06-29": "Saint Peter and Saint Paul's Day", + "1977-08-15": "Assumption Day", + "1977-09-08": "Nativity of Mary Day", + "1977-11-01": "All Saints' Day", + "1977-12-08": "Immaculate Conception Day", + "1977-12-25": "Christmas Day", + "1977-12-26": "Saint Stephen's Day", + "1978-01-01": "Solemnity of Mary Day", + "1978-01-06": "Epiphany", + "1978-02-11": "Lateran Treaty Day", + "1978-03-19": "Saint Joseph's Day", + "1978-03-26": "Easter Sunday", + "1978-03-27": "Easter Monday", + "1978-05-01": "Saint Joseph the Worker's Day", + "1978-05-04": "Ascension of Christ", + "1978-05-25": "Corpus Christi", + "1978-06-29": "Saint Peter and Saint Paul's Day", + "1978-08-15": "Assumption Day", + "1978-09-08": "Nativity of Mary Day", + "1978-10-16": "Anniversary of the Election of the Holy Father", + "1978-11-01": "All Saints' Day", + "1978-11-04": "Saint Charles Borromeo Day", + "1978-12-08": "Immaculate Conception Day", + "1978-12-25": "Christmas Day", + "1978-12-26": "Saint Stephen's Day", + "1979-01-01": "Solemnity of Mary Day", + "1979-01-06": "Epiphany", + "1979-02-11": "Lateran Treaty Day", + "1979-03-19": "Saint Joseph's Day", + "1979-04-15": "Easter Sunday", + "1979-04-16": "Easter Monday", + "1979-05-01": "Saint Joseph the Worker's Day", + "1979-05-24": "Ascension of Christ", + "1979-06-14": "Corpus Christi", + "1979-06-29": "Saint Peter and Saint Paul's Day", + "1979-08-15": "Assumption Day", + "1979-09-08": "Nativity of Mary Day", + "1979-10-16": "Anniversary of the Election of the Holy Father", + "1979-11-01": "All Saints' Day", + "1979-11-04": "Saint Charles Borromeo Day", + "1979-12-08": "Immaculate Conception Day", + "1979-12-25": "Christmas Day", + "1979-12-26": "Saint Stephen's Day", + "1980-01-01": "Solemnity of Mary Day", + "1980-01-06": "Epiphany", + "1980-02-11": "Lateran Treaty Day", + "1980-03-19": "Saint Joseph's Day", + "1980-04-06": "Easter Sunday", + "1980-04-07": "Easter Monday", + "1980-05-01": "Saint Joseph the Worker's Day", + "1980-05-15": "Ascension of Christ", + "1980-06-05": "Corpus Christi", + "1980-06-29": "Saint Peter and Saint Paul's Day", + "1980-08-15": "Assumption Day", + "1980-09-08": "Nativity of Mary Day", + "1980-10-16": "Anniversary of the Election of the Holy Father", + "1980-11-01": "All Saints' Day", + "1980-11-04": "Saint Charles Borromeo Day", + "1980-12-08": "Immaculate Conception Day", + "1980-12-25": "Christmas Day", + "1980-12-26": "Saint Stephen's Day", + "1981-01-01": "Solemnity of Mary Day", + "1981-01-06": "Epiphany", + "1981-02-11": "Lateran Treaty Day", + "1981-03-19": "Saint Joseph's Day", + "1981-04-19": "Easter Sunday", + "1981-04-20": "Easter Monday", + "1981-05-01": "Saint Joseph the Worker's Day", + "1981-05-28": "Ascension of Christ", + "1981-06-18": "Corpus Christi", + "1981-06-29": "Saint Peter and Saint Paul's Day", + "1981-08-15": "Assumption Day", + "1981-09-08": "Nativity of Mary Day", + "1981-10-16": "Anniversary of the Election of the Holy Father", + "1981-11-01": "All Saints' Day", + "1981-11-04": "Saint Charles Borromeo Day", + "1981-12-08": "Immaculate Conception Day", + "1981-12-25": "Christmas Day", + "1981-12-26": "Saint Stephen's Day", + "1982-01-01": "Solemnity of Mary Day", + "1982-01-06": "Epiphany", + "1982-02-11": "Lateran Treaty Day", + "1982-03-19": "Saint Joseph's Day", + "1982-04-11": "Easter Sunday", + "1982-04-12": "Easter Monday", + "1982-05-01": "Saint Joseph the Worker's Day", + "1982-05-20": "Ascension of Christ", + "1982-06-10": "Corpus Christi", + "1982-06-29": "Saint Peter and Saint Paul's Day", + "1982-08-15": "Assumption Day", + "1982-09-08": "Nativity of Mary Day", + "1982-10-16": "Anniversary of the Election of the Holy Father", + "1982-11-01": "All Saints' Day", + "1982-11-04": "Saint Charles Borromeo Day", + "1982-12-08": "Immaculate Conception Day", + "1982-12-25": "Christmas Day", + "1982-12-26": "Saint Stephen's Day", + "1983-01-01": "Solemnity of Mary Day", + "1983-01-06": "Epiphany", + "1983-02-11": "Lateran Treaty Day", + "1983-03-19": "Saint Joseph's Day", + "1983-04-03": "Easter Sunday", + "1983-04-04": "Easter Monday", + "1983-05-01": "Saint Joseph the Worker's Day", + "1983-05-12": "Ascension of Christ", + "1983-06-02": "Corpus Christi", + "1983-06-29": "Saint Peter and Saint Paul's Day", + "1983-08-15": "Assumption Day", + "1983-09-08": "Nativity of Mary Day", + "1983-10-16": "Anniversary of the Election of the Holy Father", + "1983-11-01": "All Saints' Day", + "1983-11-04": "Saint Charles Borromeo Day", + "1983-12-08": "Immaculate Conception Day", + "1983-12-25": "Christmas Day", + "1983-12-26": "Saint Stephen's Day", + "1984-01-01": "Solemnity of Mary Day", + "1984-01-06": "Epiphany", + "1984-02-11": "Lateran Treaty Day", + "1984-03-19": "Saint Joseph's Day", + "1984-04-22": "Easter Sunday", + "1984-04-23": "Easter Monday", + "1984-05-01": "Saint Joseph the Worker's Day", + "1984-05-31": "Ascension of Christ", + "1984-06-21": "Corpus Christi", + "1984-06-29": "Saint Peter and Saint Paul's Day", + "1984-08-15": "Assumption Day", + "1984-09-08": "Nativity of Mary Day", + "1984-10-16": "Anniversary of the Election of the Holy Father", + "1984-11-01": "All Saints' Day", + "1984-11-04": "Saint Charles Borromeo Day", + "1984-12-08": "Immaculate Conception Day", + "1984-12-25": "Christmas Day", + "1984-12-26": "Saint Stephen's Day", + "1985-01-01": "Solemnity of Mary Day", + "1985-01-06": "Epiphany", + "1985-02-11": "Lateran Treaty Day", + "1985-03-19": "Saint Joseph's Day", + "1985-04-07": "Easter Sunday", + "1985-04-08": "Easter Monday", + "1985-05-01": "Saint Joseph the Worker's Day", + "1985-05-16": "Ascension of Christ", + "1985-06-06": "Corpus Christi", + "1985-06-29": "Saint Peter and Saint Paul's Day", + "1985-08-15": "Assumption Day", + "1985-09-08": "Nativity of Mary Day", + "1985-10-16": "Anniversary of the Election of the Holy Father", + "1985-11-01": "All Saints' Day", + "1985-11-04": "Saint Charles Borromeo Day", + "1985-12-08": "Immaculate Conception Day", + "1985-12-25": "Christmas Day", + "1985-12-26": "Saint Stephen's Day", + "1986-01-01": "Solemnity of Mary Day", + "1986-01-06": "Epiphany", + "1986-02-11": "Lateran Treaty Day", + "1986-03-19": "Saint Joseph's Day", + "1986-03-30": "Easter Sunday", + "1986-03-31": "Easter Monday", + "1986-05-01": "Saint Joseph the Worker's Day", + "1986-05-08": "Ascension of Christ", + "1986-05-29": "Corpus Christi", + "1986-06-29": "Saint Peter and Saint Paul's Day", + "1986-08-15": "Assumption Day", + "1986-09-08": "Nativity of Mary Day", + "1986-10-16": "Anniversary of the Election of the Holy Father", + "1986-11-01": "All Saints' Day", + "1986-11-04": "Saint Charles Borromeo Day", + "1986-12-08": "Immaculate Conception Day", + "1986-12-25": "Christmas Day", + "1986-12-26": "Saint Stephen's Day", + "1987-01-01": "Solemnity of Mary Day", + "1987-01-06": "Epiphany", + "1987-02-11": "Lateran Treaty Day", + "1987-03-19": "Saint Joseph's Day", + "1987-04-19": "Easter Sunday", + "1987-04-20": "Easter Monday", + "1987-05-01": "Saint Joseph the Worker's Day", + "1987-05-28": "Ascension of Christ", + "1987-06-18": "Corpus Christi", + "1987-06-29": "Saint Peter and Saint Paul's Day", + "1987-08-15": "Assumption Day", + "1987-09-08": "Nativity of Mary Day", + "1987-10-16": "Anniversary of the Election of the Holy Father", + "1987-11-01": "All Saints' Day", + "1987-11-04": "Saint Charles Borromeo Day", + "1987-12-08": "Immaculate Conception Day", + "1987-12-25": "Christmas Day", + "1987-12-26": "Saint Stephen's Day", + "1988-01-01": "Solemnity of Mary Day", + "1988-01-06": "Epiphany", + "1988-02-11": "Lateran Treaty Day", + "1988-03-19": "Saint Joseph's Day", + "1988-04-03": "Easter Sunday", + "1988-04-04": "Easter Monday", + "1988-05-01": "Saint Joseph the Worker's Day", + "1988-05-12": "Ascension of Christ", + "1988-06-02": "Corpus Christi", + "1988-06-29": "Saint Peter and Saint Paul's Day", + "1988-08-15": "Assumption Day", + "1988-09-08": "Nativity of Mary Day", + "1988-10-16": "Anniversary of the Election of the Holy Father", + "1988-11-01": "All Saints' Day", + "1988-11-04": "Saint Charles Borromeo Day", + "1988-12-08": "Immaculate Conception Day", + "1988-12-25": "Christmas Day", + "1988-12-26": "Saint Stephen's Day", + "1989-01-01": "Solemnity of Mary Day", + "1989-01-06": "Epiphany", + "1989-02-11": "Lateran Treaty Day", + "1989-03-19": "Saint Joseph's Day", + "1989-03-26": "Easter Sunday", + "1989-03-27": "Easter Monday", + "1989-05-01": "Saint Joseph the Worker's Day", + "1989-05-04": "Ascension of Christ", + "1989-05-25": "Corpus Christi", + "1989-06-29": "Saint Peter and Saint Paul's Day", + "1989-08-15": "Assumption Day", + "1989-09-08": "Nativity of Mary Day", + "1989-10-16": "Anniversary of the Election of the Holy Father", + "1989-11-01": "All Saints' Day", + "1989-11-04": "Saint Charles Borromeo Day", + "1989-12-08": "Immaculate Conception Day", + "1989-12-25": "Christmas Day", + "1989-12-26": "Saint Stephen's Day", + "1990-01-01": "Solemnity of Mary Day", + "1990-01-06": "Epiphany", + "1990-02-11": "Lateran Treaty Day", + "1990-03-19": "Saint Joseph's Day", + "1990-04-15": "Easter Sunday", + "1990-04-16": "Easter Monday", + "1990-05-01": "Saint Joseph the Worker's Day", + "1990-05-24": "Ascension of Christ", + "1990-06-14": "Corpus Christi", + "1990-06-29": "Saint Peter and Saint Paul's Day", + "1990-08-15": "Assumption Day", + "1990-09-08": "Nativity of Mary Day", + "1990-10-16": "Anniversary of the Election of the Holy Father", + "1990-11-01": "All Saints' Day", + "1990-11-04": "Saint Charles Borromeo Day", + "1990-12-08": "Immaculate Conception Day", + "1990-12-25": "Christmas Day", + "1990-12-26": "Saint Stephen's Day", + "1991-01-01": "Solemnity of Mary Day", + "1991-01-06": "Epiphany", + "1991-02-11": "Lateran Treaty Day", + "1991-03-19": "Saint Joseph's Day", + "1991-03-31": "Easter Sunday", + "1991-04-01": "Easter Monday", + "1991-05-01": "Saint Joseph the Worker's Day", + "1991-05-09": "Ascension of Christ", + "1991-05-30": "Corpus Christi", + "1991-06-29": "Saint Peter and Saint Paul's Day", + "1991-08-15": "Assumption Day", + "1991-09-08": "Nativity of Mary Day", + "1991-10-16": "Anniversary of the Election of the Holy Father", + "1991-11-01": "All Saints' Day", + "1991-11-04": "Saint Charles Borromeo Day", + "1991-12-08": "Immaculate Conception Day", + "1991-12-25": "Christmas Day", + "1991-12-26": "Saint Stephen's Day", + "1992-01-01": "Solemnity of Mary Day", + "1992-01-06": "Epiphany", + "1992-02-11": "Lateran Treaty Day", + "1992-03-19": "Saint Joseph's Day", + "1992-04-19": "Easter Sunday", + "1992-04-20": "Easter Monday", + "1992-05-01": "Saint Joseph the Worker's Day", + "1992-05-28": "Ascension of Christ", + "1992-06-18": "Corpus Christi", + "1992-06-29": "Saint Peter and Saint Paul's Day", + "1992-08-15": "Assumption Day", + "1992-09-08": "Nativity of Mary Day", + "1992-10-16": "Anniversary of the Election of the Holy Father", + "1992-11-01": "All Saints' Day", + "1992-11-04": "Saint Charles Borromeo Day", + "1992-12-08": "Immaculate Conception Day", + "1992-12-25": "Christmas Day", + "1992-12-26": "Saint Stephen's Day", + "1993-01-01": "Solemnity of Mary Day", + "1993-01-06": "Epiphany", + "1993-02-11": "Lateran Treaty Day", + "1993-03-19": "Saint Joseph's Day", + "1993-04-11": "Easter Sunday", + "1993-04-12": "Easter Monday", + "1993-05-01": "Saint Joseph the Worker's Day", + "1993-05-20": "Ascension of Christ", + "1993-06-10": "Corpus Christi", + "1993-06-29": "Saint Peter and Saint Paul's Day", + "1993-08-15": "Assumption Day", + "1993-09-08": "Nativity of Mary Day", + "1993-10-16": "Anniversary of the Election of the Holy Father", + "1993-11-01": "All Saints' Day", + "1993-11-04": "Saint Charles Borromeo Day", + "1993-12-08": "Immaculate Conception Day", + "1993-12-25": "Christmas Day", + "1993-12-26": "Saint Stephen's Day", + "1994-01-01": "Solemnity of Mary Day", + "1994-01-06": "Epiphany", + "1994-02-11": "Lateran Treaty Day", + "1994-03-19": "Saint Joseph's Day", + "1994-04-03": "Easter Sunday", + "1994-04-04": "Easter Monday", + "1994-05-01": "Saint Joseph the Worker's Day", + "1994-05-12": "Ascension of Christ", + "1994-06-02": "Corpus Christi", + "1994-06-29": "Saint Peter and Saint Paul's Day", + "1994-08-15": "Assumption Day", + "1994-09-08": "Nativity of Mary Day", + "1994-10-16": "Anniversary of the Election of the Holy Father", + "1994-11-01": "All Saints' Day", + "1994-11-04": "Saint Charles Borromeo Day", + "1994-12-08": "Immaculate Conception Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Saint Stephen's Day", + "1995-01-01": "Solemnity of Mary Day", + "1995-01-06": "Epiphany", + "1995-02-11": "Lateran Treaty Day", + "1995-03-19": "Saint Joseph's Day", + "1995-04-16": "Easter Sunday", + "1995-04-17": "Easter Monday", + "1995-05-01": "Saint Joseph the Worker's Day", + "1995-05-25": "Ascension of Christ", + "1995-06-15": "Corpus Christi", + "1995-06-29": "Saint Peter and Saint Paul's Day", + "1995-08-15": "Assumption Day", + "1995-09-08": "Nativity of Mary Day", + "1995-10-16": "Anniversary of the Election of the Holy Father", + "1995-11-01": "All Saints' Day", + "1995-11-04": "Saint Charles Borromeo Day", + "1995-12-08": "Immaculate Conception Day", + "1995-12-25": "Christmas Day", + "1995-12-26": "Saint Stephen's Day", + "1996-01-01": "Solemnity of Mary Day", + "1996-01-06": "Epiphany", + "1996-02-11": "Lateran Treaty Day", + "1996-03-19": "Saint Joseph's Day", + "1996-04-07": "Easter Sunday", + "1996-04-08": "Easter Monday", + "1996-05-01": "Saint Joseph the Worker's Day", + "1996-05-16": "Ascension of Christ", + "1996-06-06": "Corpus Christi", + "1996-06-29": "Saint Peter and Saint Paul's Day", + "1996-08-15": "Assumption Day", + "1996-09-08": "Nativity of Mary Day", + "1996-10-16": "Anniversary of the Election of the Holy Father", + "1996-11-01": "All Saints' Day", + "1996-11-04": "Saint Charles Borromeo Day", + "1996-12-08": "Immaculate Conception Day", + "1996-12-25": "Christmas Day", + "1996-12-26": "Saint Stephen's Day", + "1997-01-01": "Solemnity of Mary Day", + "1997-01-06": "Epiphany", + "1997-02-11": "Lateran Treaty Day", + "1997-03-19": "Saint Joseph's Day", + "1997-03-30": "Easter Sunday", + "1997-03-31": "Easter Monday", + "1997-05-01": "Saint Joseph the Worker's Day", + "1997-05-08": "Ascension of Christ", + "1997-05-29": "Corpus Christi", + "1997-06-29": "Saint Peter and Saint Paul's Day", + "1997-08-15": "Assumption Day", + "1997-09-08": "Nativity of Mary Day", + "1997-10-16": "Anniversary of the Election of the Holy Father", + "1997-11-01": "All Saints' Day", + "1997-11-04": "Saint Charles Borromeo Day", + "1997-12-08": "Immaculate Conception Day", + "1997-12-25": "Christmas Day", + "1997-12-26": "Saint Stephen's Day", + "1998-01-01": "Solemnity of Mary Day", + "1998-01-06": "Epiphany", + "1998-02-11": "Lateran Treaty Day", + "1998-03-19": "Saint Joseph's Day", + "1998-04-12": "Easter Sunday", + "1998-04-13": "Easter Monday", + "1998-05-01": "Saint Joseph the Worker's Day", + "1998-05-21": "Ascension of Christ", + "1998-06-11": "Corpus Christi", + "1998-06-29": "Saint Peter and Saint Paul's Day", + "1998-08-15": "Assumption Day", + "1998-09-08": "Nativity of Mary Day", + "1998-10-16": "Anniversary of the Election of the Holy Father", + "1998-11-01": "All Saints' Day", + "1998-11-04": "Saint Charles Borromeo Day", + "1998-12-08": "Immaculate Conception Day", + "1998-12-25": "Christmas Day", + "1998-12-26": "Saint Stephen's Day", + "1999-01-01": "Solemnity of Mary Day", + "1999-01-06": "Epiphany", + "1999-02-11": "Lateran Treaty Day", + "1999-03-19": "Saint Joseph's Day", + "1999-04-04": "Easter Sunday", + "1999-04-05": "Easter Monday", + "1999-05-01": "Saint Joseph the Worker's Day", + "1999-05-13": "Ascension of Christ", + "1999-06-03": "Corpus Christi", + "1999-06-29": "Saint Peter and Saint Paul's Day", + "1999-08-15": "Assumption Day", + "1999-09-08": "Nativity of Mary Day", + "1999-10-16": "Anniversary of the Election of the Holy Father", + "1999-11-01": "All Saints' Day", + "1999-11-04": "Saint Charles Borromeo Day", + "1999-12-08": "Immaculate Conception Day", + "1999-12-25": "Christmas Day", + "1999-12-26": "Saint Stephen's Day", + "2000-01-01": "Solemnity of Mary Day", + "2000-01-06": "Epiphany", + "2000-02-11": "Lateran Treaty Day", + "2000-03-19": "Saint Joseph's Day", + "2000-04-23": "Easter Sunday", + "2000-04-24": "Easter Monday", + "2000-05-01": "Saint Joseph the Worker's Day", + "2000-06-01": "Ascension of Christ", + "2000-06-22": "Corpus Christi", + "2000-06-29": "Saint Peter and Saint Paul's Day", + "2000-08-15": "Assumption Day", + "2000-09-08": "Nativity of Mary Day", + "2000-10-16": "Anniversary of the Election of the Holy Father", + "2000-11-01": "All Saints' Day", + "2000-11-04": "Saint Charles Borromeo Day", + "2000-12-08": "Immaculate Conception Day", + "2000-12-25": "Christmas Day", + "2000-12-26": "Saint Stephen's Day", + "2001-01-01": "Solemnity of Mary Day", + "2001-01-06": "Epiphany", + "2001-02-11": "Lateran Treaty Day", + "2001-03-19": "Saint Joseph's Day", + "2001-04-15": "Easter Sunday", + "2001-04-16": "Easter Monday", + "2001-05-01": "Saint Joseph the Worker's Day", + "2001-05-24": "Ascension of Christ", + "2001-06-14": "Corpus Christi", + "2001-06-29": "Saint Peter and Saint Paul's Day", + "2001-08-15": "Assumption Day", + "2001-09-08": "Nativity of Mary Day", + "2001-10-16": "Anniversary of the Election of the Holy Father", + "2001-11-01": "All Saints' Day", + "2001-11-04": "Saint Charles Borromeo Day", + "2001-12-08": "Immaculate Conception Day", + "2001-12-25": "Christmas Day", + "2001-12-26": "Saint Stephen's Day", + "2002-01-01": "Solemnity of Mary Day", + "2002-01-06": "Epiphany", + "2002-02-11": "Lateran Treaty Day", + "2002-03-19": "Saint Joseph's Day", + "2002-03-31": "Easter Sunday", + "2002-04-01": "Easter Monday", + "2002-05-01": "Saint Joseph the Worker's Day", + "2002-05-09": "Ascension of Christ", + "2002-05-30": "Corpus Christi", + "2002-06-29": "Saint Peter and Saint Paul's Day", + "2002-08-15": "Assumption Day", + "2002-09-08": "Nativity of Mary Day", + "2002-10-16": "Anniversary of the Election of the Holy Father", + "2002-11-01": "All Saints' Day", + "2002-11-04": "Saint Charles Borromeo Day", + "2002-12-08": "Immaculate Conception Day", + "2002-12-25": "Christmas Day", + "2002-12-26": "Saint Stephen's Day", + "2003-01-01": "Solemnity of Mary Day", + "2003-01-06": "Epiphany", + "2003-02-11": "Lateran Treaty Day", + "2003-03-19": "Saint Joseph's Day", + "2003-04-20": "Easter Sunday", + "2003-04-21": "Easter Monday", + "2003-05-01": "Saint Joseph the Worker's Day", + "2003-05-29": "Ascension of Christ", + "2003-06-19": "Corpus Christi", + "2003-06-29": "Saint Peter and Saint Paul's Day", + "2003-08-15": "Assumption Day", + "2003-09-08": "Nativity of Mary Day", + "2003-10-16": "Anniversary of the Election of the Holy Father", + "2003-11-01": "All Saints' Day", + "2003-11-04": "Saint Charles Borromeo Day", + "2003-12-08": "Immaculate Conception Day", + "2003-12-25": "Christmas Day", + "2003-12-26": "Saint Stephen's Day", + "2004-01-01": "Solemnity of Mary Day", + "2004-01-06": "Epiphany", + "2004-02-11": "Lateran Treaty Day", + "2004-03-19": "Saint Joseph's Day", + "2004-04-11": "Easter Sunday", + "2004-04-12": "Easter Monday", + "2004-05-01": "Saint Joseph the Worker's Day", + "2004-05-20": "Ascension of Christ", + "2004-06-10": "Corpus Christi", + "2004-06-29": "Saint Peter and Saint Paul's Day", + "2004-08-15": "Assumption Day", + "2004-09-08": "Nativity of Mary Day", + "2004-10-16": "Anniversary of the Election of the Holy Father", + "2004-11-01": "All Saints' Day", + "2004-11-04": "Saint Charles Borromeo Day", + "2004-12-08": "Immaculate Conception Day", + "2004-12-25": "Christmas Day", + "2004-12-26": "Saint Stephen's Day", + "2005-01-01": "Solemnity of Mary Day", + "2005-01-06": "Epiphany", + "2005-02-11": "Lateran Treaty Day", + "2005-03-19": "Saint Joseph's Day", + "2005-03-27": "Easter Sunday", + "2005-03-28": "Easter Monday", + "2005-04-19": "Anniversary of the Election of the Holy Father", + "2005-05-01": "Saint Joseph the Worker's Day", + "2005-05-05": "Ascension of Christ", + "2005-05-26": "Corpus Christi", + "2005-06-29": "Saint Peter and Saint Paul's Day", + "2005-08-15": "Assumption Day", + "2005-09-08": "Nativity of Mary Day", + "2005-11-01": "All Saints' Day", + "2005-12-08": "Immaculate Conception Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "Saint Stephen's Day", + "2006-01-01": "Solemnity of Mary Day", + "2006-01-06": "Epiphany", + "2006-02-11": "Lateran Treaty Day", + "2006-03-19": "Saint Joseph's Day", + "2006-04-16": "Easter Sunday", + "2006-04-17": "Easter Monday", + "2006-04-19": "Anniversary of the Election of the Holy Father", + "2006-05-01": "Saint Joseph the Worker's Day", + "2006-05-25": "Ascension of Christ", + "2006-06-15": "Corpus Christi", + "2006-06-29": "Saint Peter and Saint Paul's Day", + "2006-08-15": "Assumption Day", + "2006-09-08": "Nativity of Mary Day", + "2006-11-01": "All Saints' Day", + "2006-12-08": "Immaculate Conception Day", + "2006-12-25": "Christmas Day", + "2006-12-26": "Saint Stephen's Day", + "2007-01-01": "Solemnity of Mary Day", + "2007-01-06": "Epiphany", + "2007-02-11": "Lateran Treaty Day", + "2007-03-19": "Saint Joseph's Day", + "2007-04-08": "Easter Sunday", + "2007-04-09": "Easter Monday", + "2007-04-19": "Anniversary of the Election of the Holy Father", + "2007-05-01": "Saint Joseph the Worker's Day", + "2007-05-17": "Ascension of Christ", + "2007-06-07": "Corpus Christi", + "2007-06-29": "Saint Peter and Saint Paul's Day", + "2007-08-15": "Assumption Day", + "2007-09-08": "Nativity of Mary Day", + "2007-11-01": "All Saints' Day", + "2007-12-08": "Immaculate Conception Day", + "2007-12-25": "Christmas Day", + "2007-12-26": "Saint Stephen's Day", + "2008-01-01": "Solemnity of Mary Day", + "2008-01-06": "Epiphany", + "2008-02-11": "Lateran Treaty Day", + "2008-03-19": "Saint Joseph's Day", + "2008-03-23": "Easter Sunday", + "2008-03-24": "Easter Monday", + "2008-04-19": "Anniversary of the Election of the Holy Father", + "2008-05-01": "Ascension of Christ; Saint Joseph the Worker's Day", + "2008-05-22": "Corpus Christi", + "2008-06-29": "Saint Peter and Saint Paul's Day", + "2008-08-15": "Assumption Day", + "2008-09-08": "Nativity of Mary Day", + "2008-11-01": "All Saints' Day", + "2008-12-08": "Immaculate Conception Day", + "2008-12-25": "Christmas Day", + "2008-12-26": "Saint Stephen's Day", + "2009-01-01": "Solemnity of Mary Day", + "2009-01-06": "Epiphany", + "2009-02-11": "Lateran Treaty Day", + "2009-03-19": "Saint Joseph's Day", + "2009-04-12": "Easter Sunday", + "2009-04-13": "Easter Monday", + "2009-04-19": "Anniversary of the Election of the Holy Father", + "2009-05-01": "Saint Joseph the Worker's Day", + "2009-05-21": "Ascension of Christ", + "2009-06-11": "Corpus Christi", + "2009-06-29": "Saint Peter and Saint Paul's Day", + "2009-08-15": "Assumption Day", + "2009-09-08": "Nativity of Mary Day", + "2009-11-01": "All Saints' Day", + "2009-12-08": "Immaculate Conception Day", + "2009-12-25": "Christmas Day", + "2009-12-26": "Saint Stephen's Day", + "2010-01-01": "Solemnity of Mary Day", + "2010-01-06": "Epiphany", + "2010-02-11": "Lateran Treaty Day", + "2010-03-19": "Saint Joseph's Day", + "2010-04-04": "Easter Sunday", + "2010-04-05": "Easter Monday", + "2010-04-19": "Anniversary of the Election of the Holy Father", + "2010-05-01": "Saint Joseph the Worker's Day", + "2010-06-29": "Saint Peter and Saint Paul's Day", + "2010-08-15": "Assumption Day", + "2010-09-08": "Nativity of Mary Day", + "2010-11-01": "All Saints' Day", + "2010-12-08": "Immaculate Conception Day", + "2010-12-25": "Christmas Day", + "2010-12-26": "Saint Stephen's Day", + "2011-01-01": "Solemnity of Mary Day", + "2011-01-06": "Epiphany", + "2011-02-11": "Lateran Treaty Day", + "2011-03-19": "Saint Joseph's Day", + "2011-04-19": "Anniversary of the Election of the Holy Father", + "2011-04-24": "Easter Sunday", + "2011-04-25": "Easter Monday", + "2011-05-01": "Saint Joseph the Worker's Day", + "2011-06-29": "Saint Peter and Saint Paul's Day", + "2011-08-15": "Assumption Day", + "2011-09-08": "Nativity of Mary Day", + "2011-11-01": "All Saints' Day", + "2011-12-08": "Immaculate Conception Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "Saint Stephen's Day", + "2012-01-01": "Solemnity of Mary Day", + "2012-01-06": "Epiphany", + "2012-02-11": "Lateran Treaty Day", + "2012-03-19": "Saint Joseph's Day", + "2012-04-08": "Easter Sunday", + "2012-04-09": "Easter Monday", + "2012-04-19": "Anniversary of the Election of the Holy Father", + "2012-05-01": "Saint Joseph the Worker's Day", + "2012-06-29": "Saint Peter and Saint Paul's Day", + "2012-08-15": "Assumption Day", + "2012-09-08": "Nativity of Mary Day", + "2012-11-01": "All Saints' Day", + "2012-12-08": "Immaculate Conception Day", + "2012-12-25": "Christmas Day", + "2012-12-26": "Saint Stephen's Day", + "2013-01-01": "Solemnity of Mary Day", + "2013-01-06": "Epiphany", + "2013-02-11": "Lateran Treaty Day", + "2013-03-13": "Anniversary of the Election of the Holy Father", + "2013-03-19": "Saint Joseph's Day", + "2013-03-31": "Easter Sunday", + "2013-04-01": "Easter Monday", + "2013-04-23": "Saint George's Day", + "2013-05-01": "Saint Joseph the Worker's Day", + "2013-06-29": "Saint Peter and Saint Paul's Day", + "2013-08-15": "Assumption Day", + "2013-09-08": "Nativity of Mary Day", + "2013-11-01": "All Saints' Day", + "2013-12-08": "Immaculate Conception Day", + "2013-12-25": "Christmas Day", + "2013-12-26": "Saint Stephen's Day", + "2014-01-01": "Solemnity of Mary Day", + "2014-01-06": "Epiphany", + "2014-02-11": "Lateran Treaty Day", + "2014-03-13": "Anniversary of the Election of the Holy Father", + "2014-03-19": "Saint Joseph's Day", + "2014-04-20": "Easter Sunday", + "2014-04-21": "Easter Monday", + "2014-04-23": "Saint George's Day", + "2014-05-01": "Saint Joseph the Worker's Day", + "2014-06-29": "Saint Peter and Saint Paul's Day", + "2014-08-15": "Assumption Day", + "2014-09-08": "Nativity of Mary Day", + "2014-11-01": "All Saints' Day", + "2014-12-08": "Immaculate Conception Day", + "2014-12-25": "Christmas Day", + "2014-12-26": "Saint Stephen's Day", + "2015-01-01": "Solemnity of Mary Day", + "2015-01-06": "Epiphany", + "2015-02-11": "Lateran Treaty Day", + "2015-03-13": "Anniversary of the Election of the Holy Father", + "2015-03-19": "Saint Joseph's Day", + "2015-04-05": "Easter Sunday", + "2015-04-06": "Easter Monday", + "2015-04-23": "Saint George's Day", + "2015-05-01": "Saint Joseph the Worker's Day", + "2015-06-29": "Saint Peter and Saint Paul's Day", + "2015-08-15": "Assumption Day", + "2015-09-08": "Nativity of Mary Day", + "2015-11-01": "All Saints' Day", + "2015-12-08": "Immaculate Conception Day", + "2015-12-25": "Christmas Day", + "2015-12-26": "Saint Stephen's Day", + "2016-01-01": "Solemnity of Mary Day", + "2016-01-06": "Epiphany", + "2016-02-11": "Lateran Treaty Day", + "2016-03-13": "Anniversary of the Election of the Holy Father", + "2016-03-19": "Saint Joseph's Day", + "2016-03-27": "Easter Sunday", + "2016-03-28": "Easter Monday", + "2016-04-23": "Saint George's Day", + "2016-05-01": "Saint Joseph the Worker's Day", + "2016-06-29": "Saint Peter and Saint Paul's Day", + "2016-08-15": "Assumption Day", + "2016-09-08": "Nativity of Mary Day", + "2016-11-01": "All Saints' Day", + "2016-12-08": "Immaculate Conception Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "Saint Stephen's Day", + "2017-01-01": "Solemnity of Mary Day", + "2017-01-06": "Epiphany", + "2017-02-11": "Lateran Treaty Day", + "2017-03-13": "Anniversary of the Election of the Holy Father", + "2017-03-19": "Saint Joseph's Day", + "2017-04-16": "Easter Sunday", + "2017-04-17": "Easter Monday", + "2017-04-23": "Saint George's Day", + "2017-05-01": "Saint Joseph the Worker's Day", + "2017-06-29": "Saint Peter and Saint Paul's Day", + "2017-08-15": "Assumption Day", + "2017-09-08": "Nativity of Mary Day", + "2017-11-01": "All Saints' Day", + "2017-12-08": "Immaculate Conception Day", + "2017-12-25": "Christmas Day", + "2017-12-26": "Saint Stephen's Day", + "2018-01-01": "Solemnity of Mary Day", + "2018-01-06": "Epiphany", + "2018-02-11": "Lateran Treaty Day", + "2018-03-13": "Anniversary of the Election of the Holy Father", + "2018-03-19": "Saint Joseph's Day", + "2018-04-01": "Easter Sunday", + "2018-04-02": "Easter Monday", + "2018-04-23": "Saint George's Day", + "2018-05-01": "Saint Joseph the Worker's Day", + "2018-06-29": "Saint Peter and Saint Paul's Day", + "2018-08-15": "Assumption Day", + "2018-09-08": "Nativity of Mary Day", + "2018-11-01": "All Saints' Day", + "2018-12-08": "Immaculate Conception Day", + "2018-12-25": "Christmas Day", + "2018-12-26": "Saint Stephen's Day", + "2019-01-01": "Solemnity of Mary Day", + "2019-01-06": "Epiphany", + "2019-02-11": "Lateran Treaty Day", + "2019-03-13": "Anniversary of the Election of the Holy Father", + "2019-03-19": "Saint Joseph's Day", + "2019-04-21": "Easter Sunday", + "2019-04-22": "Easter Monday", + "2019-04-23": "Saint George's Day", + "2019-05-01": "Saint Joseph the Worker's Day", + "2019-06-29": "Saint Peter and Saint Paul's Day", + "2019-08-15": "Assumption Day", + "2019-09-08": "Nativity of Mary Day", + "2019-11-01": "All Saints' Day", + "2019-12-08": "Immaculate Conception Day", + "2019-12-25": "Christmas Day", + "2019-12-26": "Saint Stephen's Day", + "2020-01-01": "Solemnity of Mary Day", + "2020-01-06": "Epiphany", + "2020-02-11": "Lateran Treaty Day", + "2020-03-13": "Anniversary of the Election of the Holy Father", + "2020-03-19": "Saint Joseph's Day", + "2020-04-12": "Easter Sunday", + "2020-04-13": "Easter Monday", + "2020-04-23": "Saint George's Day", + "2020-05-01": "Saint Joseph the Worker's Day", + "2020-06-29": "Saint Peter and Saint Paul's Day", + "2020-08-15": "Assumption Day", + "2020-09-08": "Nativity of Mary Day", + "2020-11-01": "All Saints' Day", + "2020-12-08": "Immaculate Conception Day", + "2020-12-25": "Christmas Day", + "2020-12-26": "Saint Stephen's Day", + "2021-01-01": "Solemnity of Mary Day", + "2021-01-06": "Epiphany", + "2021-02-11": "Lateran Treaty Day", + "2021-03-13": "Anniversary of the Election of the Holy Father", + "2021-03-19": "Saint Joseph's Day", + "2021-04-04": "Easter Sunday", + "2021-04-05": "Easter Monday", + "2021-04-23": "Saint George's Day", + "2021-05-01": "Saint Joseph the Worker's Day", + "2021-06-29": "Saint Peter and Saint Paul's Day", + "2021-08-15": "Assumption Day", + "2021-09-08": "Nativity of Mary Day", + "2021-11-01": "All Saints' Day", + "2021-12-08": "Immaculate Conception Day", + "2021-12-25": "Christmas Day", + "2021-12-26": "Saint Stephen's Day", + "2022-01-01": "Solemnity of Mary Day", + "2022-01-06": "Epiphany", + "2022-02-11": "Lateran Treaty Day", + "2022-03-13": "Anniversary of the Election of the Holy Father", + "2022-03-19": "Saint Joseph's Day", + "2022-04-17": "Easter Sunday", + "2022-04-18": "Easter Monday", + "2022-04-23": "Saint George's Day", + "2022-05-01": "Saint Joseph the Worker's Day", + "2022-06-29": "Saint Peter and Saint Paul's Day", + "2022-08-15": "Assumption Day", + "2022-09-08": "Nativity of Mary Day", + "2022-11-01": "All Saints' Day", + "2022-12-08": "Immaculate Conception Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "Saint Stephen's Day", + "2023-01-01": "Solemnity of Mary Day", + "2023-01-06": "Epiphany", + "2023-02-11": "Lateran Treaty Day", + "2023-03-13": "Anniversary of the Election of the Holy Father", + "2023-03-19": "Saint Joseph's Day", + "2023-04-09": "Easter Sunday", + "2023-04-10": "Easter Monday", + "2023-04-23": "Saint George's Day", + "2023-05-01": "Saint Joseph the Worker's Day", + "2023-06-29": "Saint Peter and Saint Paul's Day", + "2023-08-15": "Assumption Day", + "2023-09-08": "Nativity of Mary Day", + "2023-11-01": "All Saints' Day", + "2023-12-08": "Immaculate Conception Day", + "2023-12-25": "Christmas Day", + "2023-12-26": "Saint Stephen's Day", + "2024-01-01": "Solemnity of Mary Day", + "2024-01-06": "Epiphany", + "2024-02-11": "Lateran Treaty Day", + "2024-03-13": "Anniversary of the Election of the Holy Father", + "2024-03-19": "Saint Joseph's Day", + "2024-03-31": "Easter Sunday", + "2024-04-01": "Easter Monday", + "2024-04-23": "Saint George's Day", + "2024-05-01": "Saint Joseph the Worker's Day", + "2024-06-29": "Saint Peter and Saint Paul's Day", + "2024-08-15": "Assumption Day", + "2024-09-08": "Nativity of Mary Day", + "2024-11-01": "All Saints' Day", + "2024-12-08": "Immaculate Conception Day", + "2024-12-25": "Christmas Day", + "2024-12-26": "Saint Stephen's Day", + "2025-01-01": "Solemnity of Mary Day", + "2025-01-06": "Epiphany", + "2025-02-11": "Lateran Treaty Day", + "2025-03-13": "Anniversary of the Election of the Holy Father", + "2025-03-19": "Saint Joseph's Day", + "2025-04-20": "Easter Sunday", + "2025-04-21": "Easter Monday", + "2025-04-23": "Saint George's Day", + "2025-05-01": "Saint Joseph the Worker's Day", + "2025-06-29": "Saint Peter and Saint Paul's Day", + "2025-08-15": "Assumption Day", + "2025-09-08": "Nativity of Mary Day", + "2025-11-01": "All Saints' Day", + "2025-12-08": "Immaculate Conception Day", + "2025-12-25": "Christmas Day", + "2025-12-26": "Saint Stephen's Day", + "2026-01-01": "Solemnity of Mary Day", + "2026-01-06": "Epiphany", + "2026-02-11": "Lateran Treaty Day", + "2026-03-13": "Anniversary of the Election of the Holy Father", + "2026-03-19": "Saint Joseph's Day", + "2026-04-05": "Easter Sunday", + "2026-04-06": "Easter Monday", + "2026-04-23": "Saint George's Day", + "2026-05-01": "Saint Joseph the Worker's Day", + "2026-06-29": "Saint Peter and Saint Paul's Day", + "2026-08-15": "Assumption Day", + "2026-09-08": "Nativity of Mary Day", + "2026-11-01": "All Saints' Day", + "2026-12-08": "Immaculate Conception Day", + "2026-12-25": "Christmas Day", + "2026-12-26": "Saint Stephen's Day", + "2027-01-01": "Solemnity of Mary Day", + "2027-01-06": "Epiphany", + "2027-02-11": "Lateran Treaty Day", + "2027-03-13": "Anniversary of the Election of the Holy Father", + "2027-03-19": "Saint Joseph's Day", + "2027-03-28": "Easter Sunday", + "2027-03-29": "Easter Monday", + "2027-04-23": "Saint George's Day", + "2027-05-01": "Saint Joseph the Worker's Day", + "2027-06-29": "Saint Peter and Saint Paul's Day", + "2027-08-15": "Assumption Day", + "2027-09-08": "Nativity of Mary Day", + "2027-11-01": "All Saints' Day", + "2027-12-08": "Immaculate Conception Day", + "2027-12-25": "Christmas Day", + "2027-12-26": "Saint Stephen's Day", + "2028-01-01": "Solemnity of Mary Day", + "2028-01-06": "Epiphany", + "2028-02-11": "Lateran Treaty Day", + "2028-03-13": "Anniversary of the Election of the Holy Father", + "2028-03-19": "Saint Joseph's Day", + "2028-04-16": "Easter Sunday", + "2028-04-17": "Easter Monday", + "2028-04-23": "Saint George's Day", + "2028-05-01": "Saint Joseph the Worker's Day", + "2028-06-29": "Saint Peter and Saint Paul's Day", + "2028-08-15": "Assumption Day", + "2028-09-08": "Nativity of Mary Day", + "2028-11-01": "All Saints' Day", + "2028-12-08": "Immaculate Conception Day", + "2028-12-25": "Christmas Day", + "2028-12-26": "Saint Stephen's Day", + "2029-01-01": "Solemnity of Mary Day", + "2029-01-06": "Epiphany", + "2029-02-11": "Lateran Treaty Day", + "2029-03-13": "Anniversary of the Election of the Holy Father", + "2029-03-19": "Saint Joseph's Day", + "2029-04-01": "Easter Sunday", + "2029-04-02": "Easter Monday", + "2029-04-23": "Saint George's Day", + "2029-05-01": "Saint Joseph the Worker's Day", + "2029-06-29": "Saint Peter and Saint Paul's Day", + "2029-08-15": "Assumption Day", + "2029-09-08": "Nativity of Mary Day", + "2029-11-01": "All Saints' Day", + "2029-12-08": "Immaculate Conception Day", + "2029-12-25": "Christmas Day", + "2029-12-26": "Saint Stephen's Day", + "2030-01-01": "Solemnity of Mary Day", + "2030-01-06": "Epiphany", + "2030-02-11": "Lateran Treaty Day", + "2030-03-13": "Anniversary of the Election of the Holy Father", + "2030-03-19": "Saint Joseph's Day", + "2030-04-21": "Easter Sunday", + "2030-04-22": "Easter Monday", + "2030-04-23": "Saint George's Day", + "2030-05-01": "Saint Joseph the Worker's Day", + "2030-06-29": "Saint Peter and Saint Paul's Day", + "2030-08-15": "Assumption Day", + "2030-09-08": "Nativity of Mary Day", + "2030-11-01": "All Saints' Day", + "2030-12-08": "Immaculate Conception Day", + "2030-12-25": "Christmas Day", + "2030-12-26": "Saint Stephen's Day", + "2031-01-01": "Solemnity of Mary Day", + "2031-01-06": "Epiphany", + "2031-02-11": "Lateran Treaty Day", + "2031-03-13": "Anniversary of the Election of the Holy Father", + "2031-03-19": "Saint Joseph's Day", + "2031-04-13": "Easter Sunday", + "2031-04-14": "Easter Monday", + "2031-04-23": "Saint George's Day", + "2031-05-01": "Saint Joseph the Worker's Day", + "2031-06-29": "Saint Peter and Saint Paul's Day", + "2031-08-15": "Assumption Day", + "2031-09-08": "Nativity of Mary Day", + "2031-11-01": "All Saints' Day", + "2031-12-08": "Immaculate Conception Day", + "2031-12-25": "Christmas Day", + "2031-12-26": "Saint Stephen's Day", + "2032-01-01": "Solemnity of Mary Day", + "2032-01-06": "Epiphany", + "2032-02-11": "Lateran Treaty Day", + "2032-03-13": "Anniversary of the Election of the Holy Father", + "2032-03-19": "Saint Joseph's Day", + "2032-03-28": "Easter Sunday", + "2032-03-29": "Easter Monday", + "2032-04-23": "Saint George's Day", + "2032-05-01": "Saint Joseph the Worker's Day", + "2032-06-29": "Saint Peter and Saint Paul's Day", + "2032-08-15": "Assumption Day", + "2032-09-08": "Nativity of Mary Day", + "2032-11-01": "All Saints' Day", + "2032-12-08": "Immaculate Conception Day", + "2032-12-25": "Christmas Day", + "2032-12-26": "Saint Stephen's Day", + "2033-01-01": "Solemnity of Mary Day", + "2033-01-06": "Epiphany", + "2033-02-11": "Lateran Treaty Day", + "2033-03-13": "Anniversary of the Election of the Holy Father", + "2033-03-19": "Saint Joseph's Day", + "2033-04-17": "Easter Sunday", + "2033-04-18": "Easter Monday", + "2033-04-23": "Saint George's Day", + "2033-05-01": "Saint Joseph the Worker's Day", + "2033-06-29": "Saint Peter and Saint Paul's Day", + "2033-08-15": "Assumption Day", + "2033-09-08": "Nativity of Mary Day", + "2033-11-01": "All Saints' Day", + "2033-12-08": "Immaculate Conception Day", + "2033-12-25": "Christmas Day", + "2033-12-26": "Saint Stephen's Day", + "2034-01-01": "Solemnity of Mary Day", + "2034-01-06": "Epiphany", + "2034-02-11": "Lateran Treaty Day", + "2034-03-13": "Anniversary of the Election of the Holy Father", + "2034-03-19": "Saint Joseph's Day", + "2034-04-09": "Easter Sunday", + "2034-04-10": "Easter Monday", + "2034-04-23": "Saint George's Day", + "2034-05-01": "Saint Joseph the Worker's Day", + "2034-06-29": "Saint Peter and Saint Paul's Day", + "2034-08-15": "Assumption Day", + "2034-09-08": "Nativity of Mary Day", + "2034-11-01": "All Saints' Day", + "2034-12-08": "Immaculate Conception Day", + "2034-12-25": "Christmas Day", + "2034-12-26": "Saint Stephen's Day", + "2035-01-01": "Solemnity of Mary Day", + "2035-01-06": "Epiphany", + "2035-02-11": "Lateran Treaty Day", + "2035-03-13": "Anniversary of the Election of the Holy Father", + "2035-03-19": "Saint Joseph's Day", + "2035-03-25": "Easter Sunday", + "2035-03-26": "Easter Monday", + "2035-04-23": "Saint George's Day", + "2035-05-01": "Saint Joseph the Worker's Day", + "2035-06-29": "Saint Peter and Saint Paul's Day", + "2035-08-15": "Assumption Day", + "2035-09-08": "Nativity of Mary Day", + "2035-11-01": "All Saints' Day", + "2035-12-08": "Immaculate Conception Day", + "2035-12-25": "Christmas Day", + "2035-12-26": "Saint Stephen's Day", + "2036-01-01": "Solemnity of Mary Day", + "2036-01-06": "Epiphany", + "2036-02-11": "Lateran Treaty Day", + "2036-03-13": "Anniversary of the Election of the Holy Father", + "2036-03-19": "Saint Joseph's Day", + "2036-04-13": "Easter Sunday", + "2036-04-14": "Easter Monday", + "2036-04-23": "Saint George's Day", + "2036-05-01": "Saint Joseph the Worker's Day", + "2036-06-29": "Saint Peter and Saint Paul's Day", + "2036-08-15": "Assumption Day", + "2036-09-08": "Nativity of Mary Day", + "2036-11-01": "All Saints' Day", + "2036-12-08": "Immaculate Conception Day", + "2036-12-25": "Christmas Day", + "2036-12-26": "Saint Stephen's Day", + "2037-01-01": "Solemnity of Mary Day", + "2037-01-06": "Epiphany", + "2037-02-11": "Lateran Treaty Day", + "2037-03-13": "Anniversary of the Election of the Holy Father", + "2037-03-19": "Saint Joseph's Day", + "2037-04-05": "Easter Sunday", + "2037-04-06": "Easter Monday", + "2037-04-23": "Saint George's Day", + "2037-05-01": "Saint Joseph the Worker's Day", + "2037-06-29": "Saint Peter and Saint Paul's Day", + "2037-08-15": "Assumption Day", + "2037-09-08": "Nativity of Mary Day", + "2037-11-01": "All Saints' Day", + "2037-12-08": "Immaculate Conception Day", + "2037-12-25": "Christmas Day", + "2037-12-26": "Saint Stephen's Day", + "2038-01-01": "Solemnity of Mary Day", + "2038-01-06": "Epiphany", + "2038-02-11": "Lateran Treaty Day", + "2038-03-13": "Anniversary of the Election of the Holy Father", + "2038-03-19": "Saint Joseph's Day", + "2038-04-23": "Saint George's Day", + "2038-04-25": "Easter Sunday", + "2038-04-26": "Easter Monday", + "2038-05-01": "Saint Joseph the Worker's Day", + "2038-06-29": "Saint Peter and Saint Paul's Day", + "2038-08-15": "Assumption Day", + "2038-09-08": "Nativity of Mary Day", + "2038-11-01": "All Saints' Day", + "2038-12-08": "Immaculate Conception Day", + "2038-12-25": "Christmas Day", + "2038-12-26": "Saint Stephen's Day", + "2039-01-01": "Solemnity of Mary Day", + "2039-01-06": "Epiphany", + "2039-02-11": "Lateran Treaty Day", + "2039-03-13": "Anniversary of the Election of the Holy Father", + "2039-03-19": "Saint Joseph's Day", + "2039-04-10": "Easter Sunday", + "2039-04-11": "Easter Monday", + "2039-04-23": "Saint George's Day", + "2039-05-01": "Saint Joseph the Worker's Day", + "2039-06-29": "Saint Peter and Saint Paul's Day", + "2039-08-15": "Assumption Day", + "2039-09-08": "Nativity of Mary Day", + "2039-11-01": "All Saints' Day", + "2039-12-08": "Immaculate Conception Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Saint Stephen's Day", + "2040-01-01": "Solemnity of Mary Day", + "2040-01-06": "Epiphany", + "2040-02-11": "Lateran Treaty Day", + "2040-03-13": "Anniversary of the Election of the Holy Father", + "2040-03-19": "Saint Joseph's Day", + "2040-04-01": "Easter Sunday", + "2040-04-02": "Easter Monday", + "2040-04-23": "Saint George's Day", + "2040-05-01": "Saint Joseph the Worker's Day", + "2040-06-29": "Saint Peter and Saint Paul's Day", + "2040-08-15": "Assumption Day", + "2040-09-08": "Nativity of Mary Day", + "2040-11-01": "All Saints' Day", + "2040-12-08": "Immaculate Conception Day", + "2040-12-25": "Christmas Day", + "2040-12-26": "Saint Stephen's Day", + "2041-01-01": "Solemnity of Mary Day", + "2041-01-06": "Epiphany", + "2041-02-11": "Lateran Treaty Day", + "2041-03-13": "Anniversary of the Election of the Holy Father", + "2041-03-19": "Saint Joseph's Day", + "2041-04-21": "Easter Sunday", + "2041-04-22": "Easter Monday", + "2041-04-23": "Saint George's Day", + "2041-05-01": "Saint Joseph the Worker's Day", + "2041-06-29": "Saint Peter and Saint Paul's Day", + "2041-08-15": "Assumption Day", + "2041-09-08": "Nativity of Mary Day", + "2041-11-01": "All Saints' Day", + "2041-12-08": "Immaculate Conception Day", + "2041-12-25": "Christmas Day", + "2041-12-26": "Saint Stephen's Day", + "2042-01-01": "Solemnity of Mary Day", + "2042-01-06": "Epiphany", + "2042-02-11": "Lateran Treaty Day", + "2042-03-13": "Anniversary of the Election of the Holy Father", + "2042-03-19": "Saint Joseph's Day", + "2042-04-06": "Easter Sunday", + "2042-04-07": "Easter Monday", + "2042-04-23": "Saint George's Day", + "2042-05-01": "Saint Joseph the Worker's Day", + "2042-06-29": "Saint Peter and Saint Paul's Day", + "2042-08-15": "Assumption Day", + "2042-09-08": "Nativity of Mary Day", + "2042-11-01": "All Saints' Day", + "2042-12-08": "Immaculate Conception Day", + "2042-12-25": "Christmas Day", + "2042-12-26": "Saint Stephen's Day", + "2043-01-01": "Solemnity of Mary Day", + "2043-01-06": "Epiphany", + "2043-02-11": "Lateran Treaty Day", + "2043-03-13": "Anniversary of the Election of the Holy Father", + "2043-03-19": "Saint Joseph's Day", + "2043-03-29": "Easter Sunday", + "2043-03-30": "Easter Monday", + "2043-04-23": "Saint George's Day", + "2043-05-01": "Saint Joseph the Worker's Day", + "2043-06-29": "Saint Peter and Saint Paul's Day", + "2043-08-15": "Assumption Day", + "2043-09-08": "Nativity of Mary Day", + "2043-11-01": "All Saints' Day", + "2043-12-08": "Immaculate Conception Day", + "2043-12-25": "Christmas Day", + "2043-12-26": "Saint Stephen's Day", + "2044-01-01": "Solemnity of Mary Day", + "2044-01-06": "Epiphany", + "2044-02-11": "Lateran Treaty Day", + "2044-03-13": "Anniversary of the Election of the Holy Father", + "2044-03-19": "Saint Joseph's Day", + "2044-04-17": "Easter Sunday", + "2044-04-18": "Easter Monday", + "2044-04-23": "Saint George's Day", + "2044-05-01": "Saint Joseph the Worker's Day", + "2044-06-29": "Saint Peter and Saint Paul's Day", + "2044-08-15": "Assumption Day", + "2044-09-08": "Nativity of Mary Day", + "2044-11-01": "All Saints' Day", + "2044-12-08": "Immaculate Conception Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "Saint Stephen's Day", + "2045-01-01": "Solemnity of Mary Day", + "2045-01-06": "Epiphany", + "2045-02-11": "Lateran Treaty Day", + "2045-03-13": "Anniversary of the Election of the Holy Father", + "2045-03-19": "Saint Joseph's Day", + "2045-04-09": "Easter Sunday", + "2045-04-10": "Easter Monday", + "2045-04-23": "Saint George's Day", + "2045-05-01": "Saint Joseph the Worker's Day", + "2045-06-29": "Saint Peter and Saint Paul's Day", + "2045-08-15": "Assumption Day", + "2045-09-08": "Nativity of Mary Day", + "2045-11-01": "All Saints' Day", + "2045-12-08": "Immaculate Conception Day", + "2045-12-25": "Christmas Day", + "2045-12-26": "Saint Stephen's Day", + "2046-01-01": "Solemnity of Mary Day", + "2046-01-06": "Epiphany", + "2046-02-11": "Lateran Treaty Day", + "2046-03-13": "Anniversary of the Election of the Holy Father", + "2046-03-19": "Saint Joseph's Day", + "2046-03-25": "Easter Sunday", + "2046-03-26": "Easter Monday", + "2046-04-23": "Saint George's Day", + "2046-05-01": "Saint Joseph the Worker's Day", + "2046-06-29": "Saint Peter and Saint Paul's Day", + "2046-08-15": "Assumption Day", + "2046-09-08": "Nativity of Mary Day", + "2046-11-01": "All Saints' Day", + "2046-12-08": "Immaculate Conception Day", + "2046-12-25": "Christmas Day", + "2046-12-26": "Saint Stephen's Day", + "2047-01-01": "Solemnity of Mary Day", + "2047-01-06": "Epiphany", + "2047-02-11": "Lateran Treaty Day", + "2047-03-13": "Anniversary of the Election of the Holy Father", + "2047-03-19": "Saint Joseph's Day", + "2047-04-14": "Easter Sunday", + "2047-04-15": "Easter Monday", + "2047-04-23": "Saint George's Day", + "2047-05-01": "Saint Joseph the Worker's Day", + "2047-06-29": "Saint Peter and Saint Paul's Day", + "2047-08-15": "Assumption Day", + "2047-09-08": "Nativity of Mary Day", + "2047-11-01": "All Saints' Day", + "2047-12-08": "Immaculate Conception Day", + "2047-12-25": "Christmas Day", + "2047-12-26": "Saint Stephen's Day", + "2048-01-01": "Solemnity of Mary Day", + "2048-01-06": "Epiphany", + "2048-02-11": "Lateran Treaty Day", + "2048-03-13": "Anniversary of the Election of the Holy Father", + "2048-03-19": "Saint Joseph's Day", + "2048-04-05": "Easter Sunday", + "2048-04-06": "Easter Monday", + "2048-04-23": "Saint George's Day", + "2048-05-01": "Saint Joseph the Worker's Day", + "2048-06-29": "Saint Peter and Saint Paul's Day", + "2048-08-15": "Assumption Day", + "2048-09-08": "Nativity of Mary Day", + "2048-11-01": "All Saints' Day", + "2048-12-08": "Immaculate Conception Day", + "2048-12-25": "Christmas Day", + "2048-12-26": "Saint Stephen's Day", + "2049-01-01": "Solemnity of Mary Day", + "2049-01-06": "Epiphany", + "2049-02-11": "Lateran Treaty Day", + "2049-03-13": "Anniversary of the Election of the Holy Father", + "2049-03-19": "Saint Joseph's Day", + "2049-04-18": "Easter Sunday", + "2049-04-19": "Easter Monday", + "2049-04-23": "Saint George's Day", + "2049-05-01": "Saint Joseph the Worker's Day", + "2049-06-29": "Saint Peter and Saint Paul's Day", + "2049-08-15": "Assumption Day", + "2049-09-08": "Nativity of Mary Day", + "2049-11-01": "All Saints' Day", + "2049-12-08": "Immaculate Conception Day", + "2049-12-25": "Christmas Day", + "2049-12-26": "Saint Stephen's Day", + "2050-01-01": "Solemnity of Mary Day", + "2050-01-06": "Epiphany", + "2050-02-11": "Lateran Treaty Day", + "2050-03-13": "Anniversary of the Election of the Holy Father", + "2050-03-19": "Saint Joseph's Day", + "2050-04-10": "Easter Sunday", + "2050-04-11": "Easter Monday", + "2050-04-23": "Saint George's Day", + "2050-05-01": "Saint Joseph the Worker's Day", + "2050-06-29": "Saint Peter and Saint Paul's Day", + "2050-08-15": "Assumption Day", + "2050-09-08": "Nativity of Mary Day", + "2050-11-01": "All Saints' Day", + "2050-12-08": "Immaculate Conception Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "Saint Stephen's Day" +} diff --git a/snapshots/countries/VE.json b/snapshots/countries/VE.json new file mode 100644 index 000000000..582de3c31 --- /dev/null +++ b/snapshots/countries/VE.json @@ -0,0 +1,1388 @@ +{ + "1950-01-01": "New Year's Day", + "1950-02-20": "Monday of Carnival", + "1950-02-21": "Tuesday of Carnival", + "1950-04-06": "Maundy Thursday", + "1950-04-07": "Good Friday", + "1950-04-19": "Declaration of Independence", + "1950-05-01": "International Worker's Day", + "1950-07-05": "Independence Day", + "1950-07-24": "Birthday of Simon Bolivar", + "1950-10-12": "Columbus Day", + "1950-12-24": "Christmas Eve", + "1950-12-25": "Christmas Day", + "1950-12-31": "New Year's Eve", + "1951-01-01": "New Year's Day", + "1951-02-05": "Monday of Carnival", + "1951-02-06": "Tuesday of Carnival", + "1951-03-22": "Maundy Thursday", + "1951-03-23": "Good Friday", + "1951-04-19": "Declaration of Independence", + "1951-05-01": "International Worker's Day", + "1951-07-05": "Independence Day", + "1951-07-24": "Birthday of Simon Bolivar", + "1951-10-12": "Columbus Day", + "1951-12-24": "Christmas Eve", + "1951-12-25": "Christmas Day", + "1951-12-31": "New Year's Eve", + "1952-01-01": "New Year's Day", + "1952-02-25": "Monday of Carnival", + "1952-02-26": "Tuesday of Carnival", + "1952-04-10": "Maundy Thursday", + "1952-04-11": "Good Friday", + "1952-04-19": "Declaration of Independence", + "1952-05-01": "International Worker's Day", + "1952-07-05": "Independence Day", + "1952-07-24": "Birthday of Simon Bolivar", + "1952-10-12": "Columbus Day", + "1952-12-24": "Christmas Eve", + "1952-12-25": "Christmas Day", + "1952-12-31": "New Year's Eve", + "1953-01-01": "New Year's Day", + "1953-02-16": "Monday of Carnival", + "1953-02-17": "Tuesday of Carnival", + "1953-04-02": "Maundy Thursday", + "1953-04-03": "Good Friday", + "1953-04-19": "Declaration of Independence", + "1953-05-01": "International Worker's Day", + "1953-07-05": "Independence Day", + "1953-07-24": "Birthday of Simon Bolivar", + "1953-10-12": "Columbus Day", + "1953-12-24": "Christmas Eve", + "1953-12-25": "Christmas Day", + "1953-12-31": "New Year's Eve", + "1954-01-01": "New Year's Day", + "1954-03-01": "Monday of Carnival", + "1954-03-02": "Tuesday of Carnival", + "1954-04-15": "Maundy Thursday", + "1954-04-16": "Good Friday", + "1954-04-19": "Declaration of Independence", + "1954-05-01": "International Worker's Day", + "1954-07-05": "Independence Day", + "1954-07-24": "Birthday of Simon Bolivar", + "1954-10-12": "Columbus Day", + "1954-12-24": "Christmas Eve", + "1954-12-25": "Christmas Day", + "1954-12-31": "New Year's Eve", + "1955-01-01": "New Year's Day", + "1955-02-21": "Monday of Carnival", + "1955-02-22": "Tuesday of Carnival", + "1955-04-07": "Maundy Thursday", + "1955-04-08": "Good Friday", + "1955-04-19": "Declaration of Independence", + "1955-05-01": "International Worker's Day", + "1955-07-05": "Independence Day", + "1955-07-24": "Birthday of Simon Bolivar", + "1955-10-12": "Columbus Day", + "1955-12-24": "Christmas Eve", + "1955-12-25": "Christmas Day", + "1955-12-31": "New Year's Eve", + "1956-01-01": "New Year's Day", + "1956-02-13": "Monday of Carnival", + "1956-02-14": "Tuesday of Carnival", + "1956-03-29": "Maundy Thursday", + "1956-03-30": "Good Friday", + "1956-04-19": "Declaration of Independence", + "1956-05-01": "International Worker's Day", + "1956-07-05": "Independence Day", + "1956-07-24": "Birthday of Simon Bolivar", + "1956-10-12": "Columbus Day", + "1956-12-24": "Christmas Eve", + "1956-12-25": "Christmas Day", + "1956-12-31": "New Year's Eve", + "1957-01-01": "New Year's Day", + "1957-03-04": "Monday of Carnival", + "1957-03-05": "Tuesday of Carnival", + "1957-04-18": "Maundy Thursday", + "1957-04-19": "Declaration of Independence; Good Friday", + "1957-05-01": "International Worker's Day", + "1957-07-05": "Independence Day", + "1957-07-24": "Birthday of Simon Bolivar", + "1957-10-12": "Columbus Day", + "1957-12-24": "Christmas Eve", + "1957-12-25": "Christmas Day", + "1957-12-31": "New Year's Eve", + "1958-01-01": "New Year's Day", + "1958-02-17": "Monday of Carnival", + "1958-02-18": "Tuesday of Carnival", + "1958-04-03": "Maundy Thursday", + "1958-04-04": "Good Friday", + "1958-04-19": "Declaration of Independence", + "1958-05-01": "International Worker's Day", + "1958-07-05": "Independence Day", + "1958-07-24": "Birthday of Simon Bolivar", + "1958-10-12": "Columbus Day", + "1958-12-24": "Christmas Eve", + "1958-12-25": "Christmas Day", + "1958-12-31": "New Year's Eve", + "1959-01-01": "New Year's Day", + "1959-02-09": "Monday of Carnival", + "1959-02-10": "Tuesday of Carnival", + "1959-03-26": "Maundy Thursday", + "1959-03-27": "Good Friday", + "1959-04-19": "Declaration of Independence", + "1959-05-01": "International Worker's Day", + "1959-07-05": "Independence Day", + "1959-07-24": "Birthday of Simon Bolivar", + "1959-10-12": "Columbus Day", + "1959-12-24": "Christmas Eve", + "1959-12-25": "Christmas Day", + "1959-12-31": "New Year's Eve", + "1960-01-01": "New Year's Day", + "1960-02-29": "Monday of Carnival", + "1960-03-01": "Tuesday of Carnival", + "1960-04-14": "Maundy Thursday", + "1960-04-15": "Good Friday", + "1960-04-19": "Declaration of Independence", + "1960-05-01": "International Worker's Day", + "1960-07-05": "Independence Day", + "1960-07-24": "Birthday of Simon Bolivar", + "1960-10-12": "Columbus Day", + "1960-12-24": "Christmas Eve", + "1960-12-25": "Christmas Day", + "1960-12-31": "New Year's Eve", + "1961-01-01": "New Year's Day", + "1961-02-13": "Monday of Carnival", + "1961-02-14": "Tuesday of Carnival", + "1961-03-30": "Maundy Thursday", + "1961-03-31": "Good Friday", + "1961-04-19": "Declaration of Independence", + "1961-05-01": "International Worker's Day", + "1961-07-05": "Independence Day", + "1961-07-24": "Birthday of Simon Bolivar", + "1961-10-12": "Columbus Day", + "1961-12-24": "Christmas Eve", + "1961-12-25": "Christmas Day", + "1961-12-31": "New Year's Eve", + "1962-01-01": "New Year's Day", + "1962-03-05": "Monday of Carnival", + "1962-03-06": "Tuesday of Carnival", + "1962-04-19": "Declaration of Independence; Maundy Thursday", + "1962-04-20": "Good Friday", + "1962-05-01": "International Worker's Day", + "1962-07-05": "Independence Day", + "1962-07-24": "Birthday of Simon Bolivar", + "1962-10-12": "Columbus Day", + "1962-12-24": "Christmas Eve", + "1962-12-25": "Christmas Day", + "1962-12-31": "New Year's Eve", + "1963-01-01": "New Year's Day", + "1963-02-25": "Monday of Carnival", + "1963-02-26": "Tuesday of Carnival", + "1963-04-11": "Maundy Thursday", + "1963-04-12": "Good Friday", + "1963-04-19": "Declaration of Independence", + "1963-05-01": "International Worker's Day", + "1963-07-05": "Independence Day", + "1963-07-24": "Birthday of Simon Bolivar", + "1963-10-12": "Columbus Day", + "1963-12-24": "Christmas Eve", + "1963-12-25": "Christmas Day", + "1963-12-31": "New Year's Eve", + "1964-01-01": "New Year's Day", + "1964-02-10": "Monday of Carnival", + "1964-02-11": "Tuesday of Carnival", + "1964-03-26": "Maundy Thursday", + "1964-03-27": "Good Friday", + "1964-04-19": "Declaration of Independence", + "1964-05-01": "International Worker's Day", + "1964-07-05": "Independence Day", + "1964-07-24": "Birthday of Simon Bolivar", + "1964-10-12": "Columbus Day", + "1964-12-24": "Christmas Eve", + "1964-12-25": "Christmas Day", + "1964-12-31": "New Year's Eve", + "1965-01-01": "New Year's Day", + "1965-03-01": "Monday of Carnival", + "1965-03-02": "Tuesday of Carnival", + "1965-04-15": "Maundy Thursday", + "1965-04-16": "Good Friday", + "1965-04-19": "Declaration of Independence", + "1965-05-01": "International Worker's Day", + "1965-07-05": "Independence Day", + "1965-07-24": "Birthday of Simon Bolivar", + "1965-10-12": "Columbus Day", + "1965-12-24": "Christmas Eve", + "1965-12-25": "Christmas Day", + "1965-12-31": "New Year's Eve", + "1966-01-01": "New Year's Day", + "1966-02-21": "Monday of Carnival", + "1966-02-22": "Tuesday of Carnival", + "1966-04-07": "Maundy Thursday", + "1966-04-08": "Good Friday", + "1966-04-19": "Declaration of Independence", + "1966-05-01": "International Worker's Day", + "1966-07-05": "Independence Day", + "1966-07-24": "Birthday of Simon Bolivar", + "1966-10-12": "Columbus Day", + "1966-12-24": "Christmas Eve", + "1966-12-25": "Christmas Day", + "1966-12-31": "New Year's Eve", + "1967-01-01": "New Year's Day", + "1967-02-06": "Monday of Carnival", + "1967-02-07": "Tuesday of Carnival", + "1967-03-23": "Maundy Thursday", + "1967-03-24": "Good Friday", + "1967-04-19": "Declaration of Independence", + "1967-05-01": "International Worker's Day", + "1967-07-05": "Independence Day", + "1967-07-24": "Birthday of Simon Bolivar", + "1967-10-12": "Columbus Day", + "1967-12-24": "Christmas Eve", + "1967-12-25": "Christmas Day", + "1967-12-31": "New Year's Eve", + "1968-01-01": "New Year's Day", + "1968-02-26": "Monday of Carnival", + "1968-02-27": "Tuesday of Carnival", + "1968-04-11": "Maundy Thursday", + "1968-04-12": "Good Friday", + "1968-04-19": "Declaration of Independence", + "1968-05-01": "International Worker's Day", + "1968-07-05": "Independence Day", + "1968-07-24": "Birthday of Simon Bolivar", + "1968-10-12": "Columbus Day", + "1968-12-24": "Christmas Eve", + "1968-12-25": "Christmas Day", + "1968-12-31": "New Year's Eve", + "1969-01-01": "New Year's Day", + "1969-02-17": "Monday of Carnival", + "1969-02-18": "Tuesday of Carnival", + "1969-04-03": "Maundy Thursday", + "1969-04-04": "Good Friday", + "1969-04-19": "Declaration of Independence", + "1969-05-01": "International Worker's Day", + "1969-07-05": "Independence Day", + "1969-07-24": "Birthday of Simon Bolivar", + "1969-10-12": "Columbus Day", + "1969-12-24": "Christmas Eve", + "1969-12-25": "Christmas Day", + "1969-12-31": "New Year's Eve", + "1970-01-01": "New Year's Day", + "1970-02-09": "Monday of Carnival", + "1970-02-10": "Tuesday of Carnival", + "1970-03-26": "Maundy Thursday", + "1970-03-27": "Good Friday", + "1970-04-19": "Declaration of Independence", + "1970-05-01": "International Worker's Day", + "1970-07-05": "Independence Day", + "1970-07-24": "Birthday of Simon Bolivar", + "1970-10-12": "Columbus Day", + "1970-12-24": "Christmas Eve", + "1970-12-25": "Christmas Day", + "1970-12-31": "New Year's Eve", + "1971-01-01": "New Year's Day", + "1971-02-22": "Monday of Carnival", + "1971-02-23": "Tuesday of Carnival", + "1971-04-08": "Maundy Thursday", + "1971-04-09": "Good Friday", + "1971-04-19": "Declaration of Independence", + "1971-05-01": "International Worker's Day", + "1971-06-24": "Battle of Carabobo", + "1971-07-05": "Independence Day", + "1971-07-24": "Birthday of Simon Bolivar", + "1971-10-12": "Columbus Day", + "1971-12-24": "Christmas Eve", + "1971-12-25": "Christmas Day", + "1971-12-31": "New Year's Eve", + "1972-01-01": "New Year's Day", + "1972-02-14": "Monday of Carnival", + "1972-02-15": "Tuesday of Carnival", + "1972-03-30": "Maundy Thursday", + "1972-03-31": "Good Friday", + "1972-04-19": "Declaration of Independence", + "1972-05-01": "International Worker's Day", + "1972-06-24": "Battle of Carabobo", + "1972-07-05": "Independence Day", + "1972-07-24": "Birthday of Simon Bolivar", + "1972-10-12": "Columbus Day", + "1972-12-24": "Christmas Eve", + "1972-12-25": "Christmas Day", + "1972-12-31": "New Year's Eve", + "1973-01-01": "New Year's Day", + "1973-03-05": "Monday of Carnival", + "1973-03-06": "Tuesday of Carnival", + "1973-04-19": "Declaration of Independence; Maundy Thursday", + "1973-04-20": "Good Friday", + "1973-05-01": "International Worker's Day", + "1973-06-24": "Battle of Carabobo", + "1973-07-05": "Independence Day", + "1973-07-24": "Birthday of Simon Bolivar", + "1973-10-12": "Columbus Day", + "1973-12-24": "Christmas Eve", + "1973-12-25": "Christmas Day", + "1973-12-31": "New Year's Eve", + "1974-01-01": "New Year's Day", + "1974-02-25": "Monday of Carnival", + "1974-02-26": "Tuesday of Carnival", + "1974-04-11": "Maundy Thursday", + "1974-04-12": "Good Friday", + "1974-04-19": "Declaration of Independence", + "1974-05-01": "International Worker's Day", + "1974-06-24": "Battle of Carabobo", + "1974-07-05": "Independence Day", + "1974-07-24": "Birthday of Simon Bolivar", + "1974-10-12": "Columbus Day", + "1974-12-24": "Christmas Eve", + "1974-12-25": "Christmas Day", + "1974-12-31": "New Year's Eve", + "1975-01-01": "New Year's Day", + "1975-02-10": "Monday of Carnival", + "1975-02-11": "Tuesday of Carnival", + "1975-03-27": "Maundy Thursday", + "1975-03-28": "Good Friday", + "1975-04-19": "Declaration of Independence", + "1975-05-01": "International Worker's Day", + "1975-06-24": "Battle of Carabobo", + "1975-07-05": "Independence Day", + "1975-07-24": "Birthday of Simon Bolivar", + "1975-10-12": "Columbus Day", + "1975-12-24": "Christmas Eve", + "1975-12-25": "Christmas Day", + "1975-12-31": "New Year's Eve", + "1976-01-01": "New Year's Day", + "1976-03-01": "Monday of Carnival", + "1976-03-02": "Tuesday of Carnival", + "1976-04-15": "Maundy Thursday", + "1976-04-16": "Good Friday", + "1976-04-19": "Declaration of Independence", + "1976-05-01": "International Worker's Day", + "1976-06-24": "Battle of Carabobo", + "1976-07-05": "Independence Day", + "1976-07-24": "Birthday of Simon Bolivar", + "1976-10-12": "Columbus Day", + "1976-12-24": "Christmas Eve", + "1976-12-25": "Christmas Day", + "1976-12-31": "New Year's Eve", + "1977-01-01": "New Year's Day", + "1977-02-21": "Monday of Carnival", + "1977-02-22": "Tuesday of Carnival", + "1977-04-07": "Maundy Thursday", + "1977-04-08": "Good Friday", + "1977-04-19": "Declaration of Independence", + "1977-05-01": "International Worker's Day", + "1977-06-24": "Battle of Carabobo", + "1977-07-05": "Independence Day", + "1977-07-24": "Birthday of Simon Bolivar", + "1977-10-12": "Columbus Day", + "1977-12-24": "Christmas Eve", + "1977-12-25": "Christmas Day", + "1977-12-31": "New Year's Eve", + "1978-01-01": "New Year's Day", + "1978-02-06": "Monday of Carnival", + "1978-02-07": "Tuesday of Carnival", + "1978-03-23": "Maundy Thursday", + "1978-03-24": "Good Friday", + "1978-04-19": "Declaration of Independence", + "1978-05-01": "International Worker's Day", + "1978-06-24": "Battle of Carabobo", + "1978-07-05": "Independence Day", + "1978-07-24": "Birthday of Simon Bolivar", + "1978-10-12": "Columbus Day", + "1978-12-24": "Christmas Eve", + "1978-12-25": "Christmas Day", + "1978-12-31": "New Year's Eve", + "1979-01-01": "New Year's Day", + "1979-02-26": "Monday of Carnival", + "1979-02-27": "Tuesday of Carnival", + "1979-04-12": "Maundy Thursday", + "1979-04-13": "Good Friday", + "1979-04-19": "Declaration of Independence", + "1979-05-01": "International Worker's Day", + "1979-06-24": "Battle of Carabobo", + "1979-07-05": "Independence Day", + "1979-07-24": "Birthday of Simon Bolivar", + "1979-10-12": "Columbus Day", + "1979-12-24": "Christmas Eve", + "1979-12-25": "Christmas Day", + "1979-12-31": "New Year's Eve", + "1980-01-01": "New Year's Day", + "1980-02-18": "Monday of Carnival", + "1980-02-19": "Tuesday of Carnival", + "1980-04-03": "Maundy Thursday", + "1980-04-04": "Good Friday", + "1980-04-19": "Declaration of Independence", + "1980-05-01": "International Worker's Day", + "1980-06-24": "Battle of Carabobo", + "1980-07-05": "Independence Day", + "1980-07-24": "Birthday of Simon Bolivar", + "1980-10-12": "Columbus Day", + "1980-12-24": "Christmas Eve", + "1980-12-25": "Christmas Day", + "1980-12-31": "New Year's Eve", + "1981-01-01": "New Year's Day", + "1981-03-02": "Monday of Carnival", + "1981-03-03": "Tuesday of Carnival", + "1981-04-16": "Maundy Thursday", + "1981-04-17": "Good Friday", + "1981-04-19": "Declaration of Independence", + "1981-05-01": "International Worker's Day", + "1981-06-24": "Battle of Carabobo", + "1981-07-05": "Independence Day", + "1981-07-24": "Birthday of Simon Bolivar", + "1981-10-12": "Columbus Day", + "1981-12-24": "Christmas Eve", + "1981-12-25": "Christmas Day", + "1981-12-31": "New Year's Eve", + "1982-01-01": "New Year's Day", + "1982-02-22": "Monday of Carnival", + "1982-02-23": "Tuesday of Carnival", + "1982-04-08": "Maundy Thursday", + "1982-04-09": "Good Friday", + "1982-04-19": "Declaration of Independence", + "1982-05-01": "International Worker's Day", + "1982-06-24": "Battle of Carabobo", + "1982-07-05": "Independence Day", + "1982-07-24": "Birthday of Simon Bolivar", + "1982-10-12": "Columbus Day", + "1982-12-24": "Christmas Eve", + "1982-12-25": "Christmas Day", + "1982-12-31": "New Year's Eve", + "1983-01-01": "New Year's Day", + "1983-02-14": "Monday of Carnival", + "1983-02-15": "Tuesday of Carnival", + "1983-03-31": "Maundy Thursday", + "1983-04-01": "Good Friday", + "1983-04-19": "Declaration of Independence", + "1983-05-01": "International Worker's Day", + "1983-06-24": "Battle of Carabobo", + "1983-07-05": "Independence Day", + "1983-07-24": "Birthday of Simon Bolivar", + "1983-10-12": "Columbus Day", + "1983-12-24": "Christmas Eve", + "1983-12-25": "Christmas Day", + "1983-12-31": "New Year's Eve", + "1984-01-01": "New Year's Day", + "1984-03-05": "Monday of Carnival", + "1984-03-06": "Tuesday of Carnival", + "1984-04-19": "Declaration of Independence; Maundy Thursday", + "1984-04-20": "Good Friday", + "1984-05-01": "International Worker's Day", + "1984-06-24": "Battle of Carabobo", + "1984-07-05": "Independence Day", + "1984-07-24": "Birthday of Simon Bolivar", + "1984-10-12": "Columbus Day", + "1984-12-24": "Christmas Eve", + "1984-12-25": "Christmas Day", + "1984-12-31": "New Year's Eve", + "1985-01-01": "New Year's Day", + "1985-02-18": "Monday of Carnival", + "1985-02-19": "Tuesday of Carnival", + "1985-04-04": "Maundy Thursday", + "1985-04-05": "Good Friday", + "1985-04-19": "Declaration of Independence", + "1985-05-01": "International Worker's Day", + "1985-06-24": "Battle of Carabobo", + "1985-07-05": "Independence Day", + "1985-07-24": "Birthday of Simon Bolivar", + "1985-10-12": "Columbus Day", + "1985-12-24": "Christmas Eve", + "1985-12-25": "Christmas Day", + "1985-12-31": "New Year's Eve", + "1986-01-01": "New Year's Day", + "1986-02-10": "Monday of Carnival", + "1986-02-11": "Tuesday of Carnival", + "1986-03-27": "Maundy Thursday", + "1986-03-28": "Good Friday", + "1986-04-19": "Declaration of Independence", + "1986-05-01": "International Worker's Day", + "1986-06-24": "Battle of Carabobo", + "1986-07-05": "Independence Day", + "1986-07-24": "Birthday of Simon Bolivar", + "1986-10-12": "Columbus Day", + "1986-12-24": "Christmas Eve", + "1986-12-25": "Christmas Day", + "1986-12-31": "New Year's Eve", + "1987-01-01": "New Year's Day", + "1987-03-02": "Monday of Carnival", + "1987-03-03": "Tuesday of Carnival", + "1987-04-16": "Maundy Thursday", + "1987-04-17": "Good Friday", + "1987-04-19": "Declaration of Independence", + "1987-05-01": "International Worker's Day", + "1987-06-24": "Battle of Carabobo", + "1987-07-05": "Independence Day", + "1987-07-24": "Birthday of Simon Bolivar", + "1987-10-12": "Columbus Day", + "1987-12-24": "Christmas Eve", + "1987-12-25": "Christmas Day", + "1987-12-31": "New Year's Eve", + "1988-01-01": "New Year's Day", + "1988-02-15": "Monday of Carnival", + "1988-02-16": "Tuesday of Carnival", + "1988-03-31": "Maundy Thursday", + "1988-04-01": "Good Friday", + "1988-04-19": "Declaration of Independence", + "1988-05-01": "International Worker's Day", + "1988-06-24": "Battle of Carabobo", + "1988-07-05": "Independence Day", + "1988-07-24": "Birthday of Simon Bolivar", + "1988-10-12": "Columbus Day", + "1988-12-24": "Christmas Eve", + "1988-12-25": "Christmas Day", + "1988-12-31": "New Year's Eve", + "1989-01-01": "New Year's Day", + "1989-02-06": "Monday of Carnival", + "1989-02-07": "Tuesday of Carnival", + "1989-03-23": "Maundy Thursday", + "1989-03-24": "Good Friday", + "1989-04-19": "Declaration of Independence", + "1989-05-01": "International Worker's Day", + "1989-06-24": "Battle of Carabobo", + "1989-07-05": "Independence Day", + "1989-07-24": "Birthday of Simon Bolivar", + "1989-10-12": "Columbus Day", + "1989-12-24": "Christmas Eve", + "1989-12-25": "Christmas Day", + "1989-12-31": "New Year's Eve", + "1990-01-01": "New Year's Day", + "1990-02-26": "Monday of Carnival", + "1990-02-27": "Tuesday of Carnival", + "1990-04-12": "Maundy Thursday", + "1990-04-13": "Good Friday", + "1990-04-19": "Declaration of Independence", + "1990-05-01": "International Worker's Day", + "1990-06-24": "Battle of Carabobo", + "1990-07-05": "Independence Day", + "1990-07-24": "Birthday of Simon Bolivar", + "1990-10-12": "Columbus Day", + "1990-12-24": "Christmas Eve", + "1990-12-25": "Christmas Day", + "1990-12-31": "New Year's Eve", + "1991-01-01": "New Year's Day", + "1991-02-11": "Monday of Carnival", + "1991-02-12": "Tuesday of Carnival", + "1991-03-28": "Maundy Thursday", + "1991-03-29": "Good Friday", + "1991-04-19": "Declaration of Independence", + "1991-05-01": "International Worker's Day", + "1991-06-24": "Battle of Carabobo", + "1991-07-05": "Independence Day", + "1991-07-24": "Birthday of Simon Bolivar", + "1991-10-12": "Columbus Day", + "1991-12-24": "Christmas Eve", + "1991-12-25": "Christmas Day", + "1991-12-31": "New Year's Eve", + "1992-01-01": "New Year's Day", + "1992-03-02": "Monday of Carnival", + "1992-03-03": "Tuesday of Carnival", + "1992-04-16": "Maundy Thursday", + "1992-04-17": "Good Friday", + "1992-04-19": "Declaration of Independence", + "1992-05-01": "International Worker's Day", + "1992-06-24": "Battle of Carabobo", + "1992-07-05": "Independence Day", + "1992-07-24": "Birthday of Simon Bolivar", + "1992-10-12": "Columbus Day", + "1992-12-24": "Christmas Eve", + "1992-12-25": "Christmas Day", + "1992-12-31": "New Year's Eve", + "1993-01-01": "New Year's Day", + "1993-02-22": "Monday of Carnival", + "1993-02-23": "Tuesday of Carnival", + "1993-04-08": "Maundy Thursday", + "1993-04-09": "Good Friday", + "1993-04-19": "Declaration of Independence", + "1993-05-01": "International Worker's Day", + "1993-06-24": "Battle of Carabobo", + "1993-07-05": "Independence Day", + "1993-07-24": "Birthday of Simon Bolivar", + "1993-10-12": "Columbus Day", + "1993-12-24": "Christmas Eve", + "1993-12-25": "Christmas Day", + "1993-12-31": "New Year's Eve", + "1994-01-01": "New Year's Day", + "1994-02-14": "Monday of Carnival", + "1994-02-15": "Tuesday of Carnival", + "1994-03-31": "Maundy Thursday", + "1994-04-01": "Good Friday", + "1994-04-19": "Declaration of Independence", + "1994-05-01": "International Worker's Day", + "1994-06-24": "Battle of Carabobo", + "1994-07-05": "Independence Day", + "1994-07-24": "Birthday of Simon Bolivar", + "1994-10-12": "Columbus Day", + "1994-12-24": "Christmas Eve", + "1994-12-25": "Christmas Day", + "1994-12-31": "New Year's Eve", + "1995-01-01": "New Year's Day", + "1995-02-27": "Monday of Carnival", + "1995-02-28": "Tuesday of Carnival", + "1995-04-13": "Maundy Thursday", + "1995-04-14": "Good Friday", + "1995-04-19": "Declaration of Independence", + "1995-05-01": "International Worker's Day", + "1995-06-24": "Battle of Carabobo", + "1995-07-05": "Independence Day", + "1995-07-24": "Birthday of Simon Bolivar", + "1995-10-12": "Columbus Day", + "1995-12-24": "Christmas Eve", + "1995-12-25": "Christmas Day", + "1995-12-31": "New Year's Eve", + "1996-01-01": "New Year's Day", + "1996-02-19": "Monday of Carnival", + "1996-02-20": "Tuesday of Carnival", + "1996-04-04": "Maundy Thursday", + "1996-04-05": "Good Friday", + "1996-04-19": "Declaration of Independence", + "1996-05-01": "International Worker's Day", + "1996-06-24": "Battle of Carabobo", + "1996-07-05": "Independence Day", + "1996-07-24": "Birthday of Simon Bolivar", + "1996-10-12": "Columbus Day", + "1996-12-24": "Christmas Eve", + "1996-12-25": "Christmas Day", + "1996-12-31": "New Year's Eve", + "1997-01-01": "New Year's Day", + "1997-02-10": "Monday of Carnival", + "1997-02-11": "Tuesday of Carnival", + "1997-03-27": "Maundy Thursday", + "1997-03-28": "Good Friday", + "1997-04-19": "Declaration of Independence", + "1997-05-01": "International Worker's Day", + "1997-06-24": "Battle of Carabobo", + "1997-07-05": "Independence Day", + "1997-07-24": "Birthday of Simon Bolivar", + "1997-10-12": "Columbus Day", + "1997-12-24": "Christmas Eve", + "1997-12-25": "Christmas Day", + "1997-12-31": "New Year's Eve", + "1998-01-01": "New Year's Day", + "1998-02-23": "Monday of Carnival", + "1998-02-24": "Tuesday of Carnival", + "1998-04-09": "Maundy Thursday", + "1998-04-10": "Good Friday", + "1998-04-19": "Declaration of Independence", + "1998-05-01": "International Worker's Day", + "1998-06-24": "Battle of Carabobo", + "1998-07-05": "Independence Day", + "1998-07-24": "Birthday of Simon Bolivar", + "1998-10-12": "Columbus Day", + "1998-12-24": "Christmas Eve", + "1998-12-25": "Christmas Day", + "1998-12-31": "New Year's Eve", + "1999-01-01": "New Year's Day", + "1999-02-15": "Monday of Carnival", + "1999-02-16": "Tuesday of Carnival", + "1999-04-01": "Maundy Thursday", + "1999-04-02": "Good Friday", + "1999-04-19": "Declaration of Independence", + "1999-05-01": "International Worker's Day", + "1999-06-24": "Battle of Carabobo", + "1999-07-05": "Independence Day", + "1999-07-24": "Birthday of Simon Bolivar", + "1999-10-12": "Columbus Day", + "1999-12-24": "Christmas Eve", + "1999-12-25": "Christmas Day", + "1999-12-31": "New Year's Eve", + "2000-01-01": "New Year's Day", + "2000-03-06": "Monday of Carnival", + "2000-03-07": "Tuesday of Carnival", + "2000-04-19": "Declaration of Independence", + "2000-04-20": "Maundy Thursday", + "2000-04-21": "Good Friday", + "2000-05-01": "International Worker's Day", + "2000-06-24": "Battle of Carabobo", + "2000-07-05": "Independence Day", + "2000-07-24": "Birthday of Simon Bolivar", + "2000-10-12": "Columbus Day", + "2000-12-24": "Christmas Eve", + "2000-12-25": "Christmas Day", + "2000-12-31": "New Year's Eve", + "2001-01-01": "New Year's Day", + "2001-02-26": "Monday of Carnival", + "2001-02-27": "Tuesday of Carnival", + "2001-04-12": "Maundy Thursday", + "2001-04-13": "Good Friday", + "2001-04-19": "Declaration of Independence", + "2001-05-01": "International Worker's Day", + "2001-06-24": "Battle of Carabobo", + "2001-07-05": "Independence Day", + "2001-07-24": "Birthday of Simon Bolivar", + "2001-10-12": "Columbus Day", + "2001-12-24": "Christmas Eve", + "2001-12-25": "Christmas Day", + "2001-12-31": "New Year's Eve", + "2002-01-01": "New Year's Day", + "2002-02-11": "Monday of Carnival", + "2002-02-12": "Tuesday of Carnival", + "2002-03-28": "Maundy Thursday", + "2002-03-29": "Good Friday", + "2002-04-19": "Declaration of Independence", + "2002-05-01": "International Worker's Day", + "2002-06-24": "Battle of Carabobo", + "2002-07-05": "Independence Day", + "2002-07-24": "Birthday of Simon Bolivar", + "2002-10-12": "Day of Indigenous Resistance", + "2002-12-24": "Christmas Eve", + "2002-12-25": "Christmas Day", + "2002-12-31": "New Year's Eve", + "2003-01-01": "New Year's Day", + "2003-03-03": "Monday of Carnival", + "2003-03-04": "Tuesday of Carnival", + "2003-04-17": "Maundy Thursday", + "2003-04-18": "Good Friday", + "2003-04-19": "Declaration of Independence", + "2003-05-01": "International Worker's Day", + "2003-06-24": "Battle of Carabobo", + "2003-07-05": "Independence Day", + "2003-07-24": "Birthday of Simon Bolivar", + "2003-10-12": "Day of Indigenous Resistance", + "2003-12-24": "Christmas Eve", + "2003-12-25": "Christmas Day", + "2003-12-31": "New Year's Eve", + "2004-01-01": "New Year's Day", + "2004-02-23": "Monday of Carnival", + "2004-02-24": "Tuesday of Carnival", + "2004-04-08": "Maundy Thursday", + "2004-04-09": "Good Friday", + "2004-04-19": "Declaration of Independence", + "2004-05-01": "International Worker's Day", + "2004-06-24": "Battle of Carabobo", + "2004-07-05": "Independence Day", + "2004-07-24": "Birthday of Simon Bolivar", + "2004-10-12": "Day of Indigenous Resistance", + "2004-12-24": "Christmas Eve", + "2004-12-25": "Christmas Day", + "2004-12-31": "New Year's Eve", + "2005-01-01": "New Year's Day", + "2005-02-07": "Monday of Carnival", + "2005-02-08": "Tuesday of Carnival", + "2005-03-24": "Maundy Thursday", + "2005-03-25": "Good Friday", + "2005-04-19": "Declaration of Independence", + "2005-05-01": "International Worker's Day", + "2005-06-24": "Battle of Carabobo", + "2005-07-05": "Independence Day", + "2005-07-24": "Birthday of Simon Bolivar", + "2005-10-12": "Day of Indigenous Resistance", + "2005-12-24": "Christmas Eve", + "2005-12-25": "Christmas Day", + "2005-12-31": "New Year's Eve", + "2006-01-01": "New Year's Day", + "2006-02-27": "Monday of Carnival", + "2006-02-28": "Tuesday of Carnival", + "2006-04-13": "Maundy Thursday", + "2006-04-14": "Good Friday", + "2006-04-19": "Declaration of Independence", + "2006-05-01": "International Worker's Day", + "2006-06-24": "Battle of Carabobo", + "2006-07-05": "Independence Day", + "2006-07-24": "Birthday of Simon Bolivar", + "2006-10-12": "Day of Indigenous Resistance", + "2006-12-24": "Christmas Eve", + "2006-12-25": "Christmas Day", + "2006-12-31": "New Year's Eve", + "2007-01-01": "New Year's Day", + "2007-02-19": "Monday of Carnival", + "2007-02-20": "Tuesday of Carnival", + "2007-04-05": "Maundy Thursday", + "2007-04-06": "Good Friday", + "2007-04-19": "Declaration of Independence", + "2007-05-01": "International Worker's Day", + "2007-06-24": "Battle of Carabobo", + "2007-07-05": "Independence Day", + "2007-07-24": "Birthday of Simon Bolivar", + "2007-10-12": "Day of Indigenous Resistance", + "2007-12-24": "Christmas Eve", + "2007-12-25": "Christmas Day", + "2007-12-31": "New Year's Eve", + "2008-01-01": "New Year's Day", + "2008-02-04": "Monday of Carnival", + "2008-02-05": "Tuesday of Carnival", + "2008-03-20": "Maundy Thursday", + "2008-03-21": "Good Friday", + "2008-04-19": "Declaration of Independence", + "2008-05-01": "International Worker's Day", + "2008-06-24": "Battle of Carabobo", + "2008-07-05": "Independence Day", + "2008-07-24": "Birthday of Simon Bolivar", + "2008-10-12": "Day of Indigenous Resistance", + "2008-12-24": "Christmas Eve", + "2008-12-25": "Christmas Day", + "2008-12-31": "New Year's Eve", + "2009-01-01": "New Year's Day", + "2009-02-23": "Monday of Carnival", + "2009-02-24": "Tuesday of Carnival", + "2009-04-09": "Maundy Thursday", + "2009-04-10": "Good Friday", + "2009-04-19": "Declaration of Independence", + "2009-05-01": "International Worker's Day", + "2009-06-24": "Battle of Carabobo", + "2009-07-05": "Independence Day", + "2009-07-24": "Birthday of Simon Bolivar", + "2009-10-12": "Day of Indigenous Resistance", + "2009-12-24": "Christmas Eve", + "2009-12-25": "Christmas Day", + "2009-12-31": "New Year's Eve", + "2010-01-01": "New Year's Day", + "2010-02-15": "Monday of Carnival", + "2010-02-16": "Tuesday of Carnival", + "2010-04-01": "Maundy Thursday", + "2010-04-02": "Good Friday", + "2010-04-19": "Declaration of Independence", + "2010-05-01": "International Worker's Day", + "2010-06-24": "Battle of Carabobo", + "2010-07-05": "Independence Day", + "2010-07-24": "Birthday of Simon Bolivar", + "2010-10-12": "Day of Indigenous Resistance", + "2010-12-24": "Christmas Eve", + "2010-12-25": "Christmas Day", + "2010-12-31": "New Year's Eve", + "2011-01-01": "New Year's Day", + "2011-03-07": "Monday of Carnival", + "2011-03-08": "Tuesday of Carnival", + "2011-04-19": "Declaration of Independence", + "2011-04-21": "Maundy Thursday", + "2011-04-22": "Good Friday", + "2011-05-01": "International Worker's Day", + "2011-06-24": "Battle of Carabobo", + "2011-07-05": "Independence Day", + "2011-07-24": "Birthday of Simon Bolivar", + "2011-10-12": "Day of Indigenous Resistance", + "2011-12-24": "Christmas Eve", + "2011-12-25": "Christmas Day", + "2011-12-31": "New Year's Eve", + "2012-01-01": "New Year's Day", + "2012-02-20": "Monday of Carnival", + "2012-02-21": "Tuesday of Carnival", + "2012-04-05": "Maundy Thursday", + "2012-04-06": "Good Friday", + "2012-04-19": "Declaration of Independence", + "2012-05-01": "International Worker's Day", + "2012-06-24": "Battle of Carabobo", + "2012-07-05": "Independence Day", + "2012-07-24": "Birthday of Simon Bolivar", + "2012-10-12": "Day of Indigenous Resistance", + "2012-12-24": "Christmas Eve", + "2012-12-25": "Christmas Day", + "2012-12-31": "New Year's Eve", + "2013-01-01": "New Year's Day", + "2013-02-11": "Monday of Carnival", + "2013-02-12": "Tuesday of Carnival", + "2013-03-28": "Maundy Thursday", + "2013-03-29": "Good Friday", + "2013-04-19": "Declaration of Independence", + "2013-05-01": "International Worker's Day", + "2013-06-24": "Battle of Carabobo", + "2013-07-05": "Independence Day", + "2013-07-24": "Birthday of Simon Bolivar", + "2013-10-12": "Day of Indigenous Resistance", + "2013-12-24": "Christmas Eve", + "2013-12-25": "Christmas Day", + "2013-12-31": "New Year's Eve", + "2014-01-01": "New Year's Day", + "2014-03-03": "Monday of Carnival", + "2014-03-04": "Tuesday of Carnival", + "2014-04-17": "Maundy Thursday", + "2014-04-18": "Good Friday", + "2014-04-19": "Declaration of Independence", + "2014-05-01": "International Worker's Day", + "2014-06-24": "Battle of Carabobo", + "2014-07-05": "Independence Day", + "2014-07-24": "Birthday of Simon Bolivar", + "2014-10-12": "Day of Indigenous Resistance", + "2014-12-24": "Christmas Eve", + "2014-12-25": "Christmas Day", + "2014-12-31": "New Year's Eve", + "2015-01-01": "New Year's Day", + "2015-02-16": "Monday of Carnival", + "2015-02-17": "Tuesday of Carnival", + "2015-04-02": "Maundy Thursday", + "2015-04-03": "Good Friday", + "2015-04-19": "Declaration of Independence", + "2015-05-01": "International Worker's Day", + "2015-06-24": "Battle of Carabobo", + "2015-07-05": "Independence Day", + "2015-07-24": "Birthday of Simon Bolivar", + "2015-10-12": "Day of Indigenous Resistance", + "2015-12-24": "Christmas Eve", + "2015-12-25": "Christmas Day", + "2015-12-31": "New Year's Eve", + "2016-01-01": "New Year's Day", + "2016-02-08": "Monday of Carnival", + "2016-02-09": "Tuesday of Carnival", + "2016-03-24": "Maundy Thursday", + "2016-03-25": "Good Friday", + "2016-04-19": "Declaration of Independence", + "2016-05-01": "International Worker's Day", + "2016-06-24": "Battle of Carabobo", + "2016-07-05": "Independence Day", + "2016-07-24": "Birthday of Simon Bolivar", + "2016-10-12": "Day of Indigenous Resistance", + "2016-12-24": "Christmas Eve", + "2016-12-25": "Christmas Day", + "2016-12-31": "New Year's Eve", + "2017-01-01": "New Year's Day", + "2017-02-27": "Monday of Carnival", + "2017-02-28": "Tuesday of Carnival", + "2017-04-13": "Maundy Thursday", + "2017-04-14": "Good Friday", + "2017-04-19": "Declaration of Independence", + "2017-05-01": "International Worker's Day", + "2017-06-24": "Battle of Carabobo", + "2017-07-05": "Independence Day", + "2017-07-24": "Birthday of Simon Bolivar", + "2017-10-12": "Day of Indigenous Resistance", + "2017-12-24": "Christmas Eve", + "2017-12-25": "Christmas Day", + "2017-12-31": "New Year's Eve", + "2018-01-01": "New Year's Day", + "2018-02-12": "Monday of Carnival", + "2018-02-13": "Tuesday of Carnival", + "2018-03-29": "Maundy Thursday", + "2018-03-30": "Good Friday", + "2018-04-19": "Declaration of Independence", + "2018-05-01": "International Worker's Day", + "2018-06-24": "Battle of Carabobo", + "2018-07-05": "Independence Day", + "2018-07-24": "Birthday of Simon Bolivar", + "2018-10-12": "Day of Indigenous Resistance", + "2018-12-24": "Christmas Eve", + "2018-12-25": "Christmas Day", + "2018-12-31": "New Year's Eve", + "2019-01-01": "New Year's Day", + "2019-03-04": "Monday of Carnival", + "2019-03-05": "Tuesday of Carnival", + "2019-04-18": "Maundy Thursday", + "2019-04-19": "Declaration of Independence; Good Friday", + "2019-05-01": "International Worker's Day", + "2019-06-24": "Battle of Carabobo", + "2019-07-05": "Independence Day", + "2019-07-24": "Birthday of Simon Bolivar", + "2019-10-12": "Day of Indigenous Resistance", + "2019-12-24": "Christmas Eve", + "2019-12-25": "Christmas Day", + "2019-12-31": "New Year's Eve", + "2020-01-01": "New Year's Day", + "2020-02-24": "Monday of Carnival", + "2020-02-25": "Tuesday of Carnival", + "2020-04-09": "Maundy Thursday", + "2020-04-10": "Good Friday", + "2020-04-19": "Declaration of Independence", + "2020-05-01": "International Worker's Day", + "2020-06-24": "Battle of Carabobo", + "2020-07-05": "Independence Day", + "2020-07-24": "Birthday of Simon Bolivar", + "2020-10-12": "Day of Indigenous Resistance", + "2020-12-24": "Christmas Eve", + "2020-12-25": "Christmas Day", + "2020-12-31": "New Year's Eve", + "2021-01-01": "New Year's Day", + "2021-02-15": "Monday of Carnival", + "2021-02-16": "Tuesday of Carnival", + "2021-04-01": "Maundy Thursday", + "2021-04-02": "Good Friday", + "2021-04-19": "Declaration of Independence", + "2021-05-01": "International Worker's Day", + "2021-06-24": "Battle of Carabobo", + "2021-07-05": "Independence Day", + "2021-07-24": "Birthday of Simon Bolivar", + "2021-10-12": "Day of Indigenous Resistance", + "2021-12-24": "Christmas Eve", + "2021-12-25": "Christmas Day", + "2021-12-31": "New Year's Eve", + "2022-01-01": "New Year's Day", + "2022-02-28": "Monday of Carnival", + "2022-03-01": "Tuesday of Carnival", + "2022-04-14": "Maundy Thursday", + "2022-04-15": "Good Friday", + "2022-04-19": "Declaration of Independence", + "2022-05-01": "International Worker's Day", + "2022-06-24": "Battle of Carabobo", + "2022-07-05": "Independence Day", + "2022-07-24": "Birthday of Simon Bolivar", + "2022-10-12": "Day of Indigenous Resistance", + "2022-12-24": "Christmas Eve", + "2022-12-25": "Christmas Day", + "2022-12-31": "New Year's Eve", + "2023-01-01": "New Year's Day", + "2023-02-20": "Monday of Carnival", + "2023-02-21": "Tuesday of Carnival", + "2023-04-06": "Maundy Thursday", + "2023-04-07": "Good Friday", + "2023-04-19": "Declaration of Independence", + "2023-05-01": "International Worker's Day", + "2023-06-24": "Battle of Carabobo", + "2023-07-05": "Independence Day", + "2023-07-24": "Birthday of Simon Bolivar", + "2023-10-12": "Day of Indigenous Resistance", + "2023-12-24": "Christmas Eve", + "2023-12-25": "Christmas Day", + "2023-12-31": "New Year's Eve", + "2024-01-01": "New Year's Day", + "2024-02-12": "Monday of Carnival", + "2024-02-13": "Tuesday of Carnival", + "2024-03-28": "Maundy Thursday", + "2024-03-29": "Good Friday", + "2024-04-19": "Declaration of Independence", + "2024-05-01": "International Worker's Day", + "2024-06-24": "Battle of Carabobo", + "2024-07-05": "Independence Day", + "2024-07-24": "Birthday of Simon Bolivar", + "2024-10-12": "Day of Indigenous Resistance", + "2024-12-24": "Christmas Eve", + "2024-12-25": "Christmas Day", + "2024-12-31": "New Year's Eve", + "2025-01-01": "New Year's Day", + "2025-03-03": "Monday of Carnival", + "2025-03-04": "Tuesday of Carnival", + "2025-04-17": "Maundy Thursday", + "2025-04-18": "Good Friday", + "2025-04-19": "Declaration of Independence", + "2025-05-01": "International Worker's Day", + "2025-06-24": "Battle of Carabobo", + "2025-07-05": "Independence Day", + "2025-07-24": "Birthday of Simon Bolivar", + "2025-10-12": "Day of Indigenous Resistance", + "2025-12-24": "Christmas Eve", + "2025-12-25": "Christmas Day", + "2025-12-31": "New Year's Eve", + "2026-01-01": "New Year's Day", + "2026-02-16": "Monday of Carnival", + "2026-02-17": "Tuesday of Carnival", + "2026-04-02": "Maundy Thursday", + "2026-04-03": "Good Friday", + "2026-04-19": "Declaration of Independence", + "2026-05-01": "International Worker's Day", + "2026-06-24": "Battle of Carabobo", + "2026-07-05": "Independence Day", + "2026-07-24": "Birthday of Simon Bolivar", + "2026-10-12": "Day of Indigenous Resistance", + "2026-12-24": "Christmas Eve", + "2026-12-25": "Christmas Day", + "2026-12-31": "New Year's Eve", + "2027-01-01": "New Year's Day", + "2027-02-08": "Monday of Carnival", + "2027-02-09": "Tuesday of Carnival", + "2027-03-25": "Maundy Thursday", + "2027-03-26": "Good Friday", + "2027-04-19": "Declaration of Independence", + "2027-05-01": "International Worker's Day", + "2027-06-24": "Battle of Carabobo", + "2027-07-05": "Independence Day", + "2027-07-24": "Birthday of Simon Bolivar", + "2027-10-12": "Day of Indigenous Resistance", + "2027-12-24": "Christmas Eve", + "2027-12-25": "Christmas Day", + "2027-12-31": "New Year's Eve", + "2028-01-01": "New Year's Day", + "2028-02-28": "Monday of Carnival", + "2028-02-29": "Tuesday of Carnival", + "2028-04-13": "Maundy Thursday", + "2028-04-14": "Good Friday", + "2028-04-19": "Declaration of Independence", + "2028-05-01": "International Worker's Day", + "2028-06-24": "Battle of Carabobo", + "2028-07-05": "Independence Day", + "2028-07-24": "Birthday of Simon Bolivar", + "2028-10-12": "Day of Indigenous Resistance", + "2028-12-24": "Christmas Eve", + "2028-12-25": "Christmas Day", + "2028-12-31": "New Year's Eve", + "2029-01-01": "New Year's Day", + "2029-02-12": "Monday of Carnival", + "2029-02-13": "Tuesday of Carnival", + "2029-03-29": "Maundy Thursday", + "2029-03-30": "Good Friday", + "2029-04-19": "Declaration of Independence", + "2029-05-01": "International Worker's Day", + "2029-06-24": "Battle of Carabobo", + "2029-07-05": "Independence Day", + "2029-07-24": "Birthday of Simon Bolivar", + "2029-10-12": "Day of Indigenous Resistance", + "2029-12-24": "Christmas Eve", + "2029-12-25": "Christmas Day", + "2029-12-31": "New Year's Eve", + "2030-01-01": "New Year's Day", + "2030-03-04": "Monday of Carnival", + "2030-03-05": "Tuesday of Carnival", + "2030-04-18": "Maundy Thursday", + "2030-04-19": "Declaration of Independence; Good Friday", + "2030-05-01": "International Worker's Day", + "2030-06-24": "Battle of Carabobo", + "2030-07-05": "Independence Day", + "2030-07-24": "Birthday of Simon Bolivar", + "2030-10-12": "Day of Indigenous Resistance", + "2030-12-24": "Christmas Eve", + "2030-12-25": "Christmas Day", + "2030-12-31": "New Year's Eve", + "2031-01-01": "New Year's Day", + "2031-02-24": "Monday of Carnival", + "2031-02-25": "Tuesday of Carnival", + "2031-04-10": "Maundy Thursday", + "2031-04-11": "Good Friday", + "2031-04-19": "Declaration of Independence", + "2031-05-01": "International Worker's Day", + "2031-06-24": "Battle of Carabobo", + "2031-07-05": "Independence Day", + "2031-07-24": "Birthday of Simon Bolivar", + "2031-10-12": "Day of Indigenous Resistance", + "2031-12-24": "Christmas Eve", + "2031-12-25": "Christmas Day", + "2031-12-31": "New Year's Eve", + "2032-01-01": "New Year's Day", + "2032-02-09": "Monday of Carnival", + "2032-02-10": "Tuesday of Carnival", + "2032-03-25": "Maundy Thursday", + "2032-03-26": "Good Friday", + "2032-04-19": "Declaration of Independence", + "2032-05-01": "International Worker's Day", + "2032-06-24": "Battle of Carabobo", + "2032-07-05": "Independence Day", + "2032-07-24": "Birthday of Simon Bolivar", + "2032-10-12": "Day of Indigenous Resistance", + "2032-12-24": "Christmas Eve", + "2032-12-25": "Christmas Day", + "2032-12-31": "New Year's Eve", + "2033-01-01": "New Year's Day", + "2033-02-28": "Monday of Carnival", + "2033-03-01": "Tuesday of Carnival", + "2033-04-14": "Maundy Thursday", + "2033-04-15": "Good Friday", + "2033-04-19": "Declaration of Independence", + "2033-05-01": "International Worker's Day", + "2033-06-24": "Battle of Carabobo", + "2033-07-05": "Independence Day", + "2033-07-24": "Birthday of Simon Bolivar", + "2033-10-12": "Day of Indigenous Resistance", + "2033-12-24": "Christmas Eve", + "2033-12-25": "Christmas Day", + "2033-12-31": "New Year's Eve", + "2034-01-01": "New Year's Day", + "2034-02-20": "Monday of Carnival", + "2034-02-21": "Tuesday of Carnival", + "2034-04-06": "Maundy Thursday", + "2034-04-07": "Good Friday", + "2034-04-19": "Declaration of Independence", + "2034-05-01": "International Worker's Day", + "2034-06-24": "Battle of Carabobo", + "2034-07-05": "Independence Day", + "2034-07-24": "Birthday of Simon Bolivar", + "2034-10-12": "Day of Indigenous Resistance", + "2034-12-24": "Christmas Eve", + "2034-12-25": "Christmas Day", + "2034-12-31": "New Year's Eve", + "2035-01-01": "New Year's Day", + "2035-02-05": "Monday of Carnival", + "2035-02-06": "Tuesday of Carnival", + "2035-03-22": "Maundy Thursday", + "2035-03-23": "Good Friday", + "2035-04-19": "Declaration of Independence", + "2035-05-01": "International Worker's Day", + "2035-06-24": "Battle of Carabobo", + "2035-07-05": "Independence Day", + "2035-07-24": "Birthday of Simon Bolivar", + "2035-10-12": "Day of Indigenous Resistance", + "2035-12-24": "Christmas Eve", + "2035-12-25": "Christmas Day", + "2035-12-31": "New Year's Eve", + "2036-01-01": "New Year's Day", + "2036-02-25": "Monday of Carnival", + "2036-02-26": "Tuesday of Carnival", + "2036-04-10": "Maundy Thursday", + "2036-04-11": "Good Friday", + "2036-04-19": "Declaration of Independence", + "2036-05-01": "International Worker's Day", + "2036-06-24": "Battle of Carabobo", + "2036-07-05": "Independence Day", + "2036-07-24": "Birthday of Simon Bolivar", + "2036-10-12": "Day of Indigenous Resistance", + "2036-12-24": "Christmas Eve", + "2036-12-25": "Christmas Day", + "2036-12-31": "New Year's Eve", + "2037-01-01": "New Year's Day", + "2037-02-16": "Monday of Carnival", + "2037-02-17": "Tuesday of Carnival", + "2037-04-02": "Maundy Thursday", + "2037-04-03": "Good Friday", + "2037-04-19": "Declaration of Independence", + "2037-05-01": "International Worker's Day", + "2037-06-24": "Battle of Carabobo", + "2037-07-05": "Independence Day", + "2037-07-24": "Birthday of Simon Bolivar", + "2037-10-12": "Day of Indigenous Resistance", + "2037-12-24": "Christmas Eve", + "2037-12-25": "Christmas Day", + "2037-12-31": "New Year's Eve", + "2038-01-01": "New Year's Day", + "2038-03-08": "Monday of Carnival", + "2038-03-09": "Tuesday of Carnival", + "2038-04-19": "Declaration of Independence", + "2038-04-22": "Maundy Thursday", + "2038-04-23": "Good Friday", + "2038-05-01": "International Worker's Day", + "2038-06-24": "Battle of Carabobo", + "2038-07-05": "Independence Day", + "2038-07-24": "Birthday of Simon Bolivar", + "2038-10-12": "Day of Indigenous Resistance", + "2038-12-24": "Christmas Eve", + "2038-12-25": "Christmas Day", + "2038-12-31": "New Year's Eve", + "2039-01-01": "New Year's Day", + "2039-02-21": "Monday of Carnival", + "2039-02-22": "Tuesday of Carnival", + "2039-04-07": "Maundy Thursday", + "2039-04-08": "Good Friday", + "2039-04-19": "Declaration of Independence", + "2039-05-01": "International Worker's Day", + "2039-06-24": "Battle of Carabobo", + "2039-07-05": "Independence Day", + "2039-07-24": "Birthday of Simon Bolivar", + "2039-10-12": "Day of Indigenous Resistance", + "2039-12-24": "Christmas Eve", + "2039-12-25": "Christmas Day", + "2039-12-31": "New Year's Eve", + "2040-01-01": "New Year's Day", + "2040-02-13": "Monday of Carnival", + "2040-02-14": "Tuesday of Carnival", + "2040-03-29": "Maundy Thursday", + "2040-03-30": "Good Friday", + "2040-04-19": "Declaration of Independence", + "2040-05-01": "International Worker's Day", + "2040-06-24": "Battle of Carabobo", + "2040-07-05": "Independence Day", + "2040-07-24": "Birthday of Simon Bolivar", + "2040-10-12": "Day of Indigenous Resistance", + "2040-12-24": "Christmas Eve", + "2040-12-25": "Christmas Day", + "2040-12-31": "New Year's Eve", + "2041-01-01": "New Year's Day", + "2041-03-04": "Monday of Carnival", + "2041-03-05": "Tuesday of Carnival", + "2041-04-18": "Maundy Thursday", + "2041-04-19": "Declaration of Independence; Good Friday", + "2041-05-01": "International Worker's Day", + "2041-06-24": "Battle of Carabobo", + "2041-07-05": "Independence Day", + "2041-07-24": "Birthday of Simon Bolivar", + "2041-10-12": "Day of Indigenous Resistance", + "2041-12-24": "Christmas Eve", + "2041-12-25": "Christmas Day", + "2041-12-31": "New Year's Eve", + "2042-01-01": "New Year's Day", + "2042-02-17": "Monday of Carnival", + "2042-02-18": "Tuesday of Carnival", + "2042-04-03": "Maundy Thursday", + "2042-04-04": "Good Friday", + "2042-04-19": "Declaration of Independence", + "2042-05-01": "International Worker's Day", + "2042-06-24": "Battle of Carabobo", + "2042-07-05": "Independence Day", + "2042-07-24": "Birthday of Simon Bolivar", + "2042-10-12": "Day of Indigenous Resistance", + "2042-12-24": "Christmas Eve", + "2042-12-25": "Christmas Day", + "2042-12-31": "New Year's Eve", + "2043-01-01": "New Year's Day", + "2043-02-09": "Monday of Carnival", + "2043-02-10": "Tuesday of Carnival", + "2043-03-26": "Maundy Thursday", + "2043-03-27": "Good Friday", + "2043-04-19": "Declaration of Independence", + "2043-05-01": "International Worker's Day", + "2043-06-24": "Battle of Carabobo", + "2043-07-05": "Independence Day", + "2043-07-24": "Birthday of Simon Bolivar", + "2043-10-12": "Day of Indigenous Resistance", + "2043-12-24": "Christmas Eve", + "2043-12-25": "Christmas Day", + "2043-12-31": "New Year's Eve", + "2044-01-01": "New Year's Day", + "2044-02-29": "Monday of Carnival", + "2044-03-01": "Tuesday of Carnival", + "2044-04-14": "Maundy Thursday", + "2044-04-15": "Good Friday", + "2044-04-19": "Declaration of Independence", + "2044-05-01": "International Worker's Day", + "2044-06-24": "Battle of Carabobo", + "2044-07-05": "Independence Day", + "2044-07-24": "Birthday of Simon Bolivar", + "2044-10-12": "Day of Indigenous Resistance", + "2044-12-24": "Christmas Eve", + "2044-12-25": "Christmas Day", + "2044-12-31": "New Year's Eve", + "2045-01-01": "New Year's Day", + "2045-02-20": "Monday of Carnival", + "2045-02-21": "Tuesday of Carnival", + "2045-04-06": "Maundy Thursday", + "2045-04-07": "Good Friday", + "2045-04-19": "Declaration of Independence", + "2045-05-01": "International Worker's Day", + "2045-06-24": "Battle of Carabobo", + "2045-07-05": "Independence Day", + "2045-07-24": "Birthday of Simon Bolivar", + "2045-10-12": "Day of Indigenous Resistance", + "2045-12-24": "Christmas Eve", + "2045-12-25": "Christmas Day", + "2045-12-31": "New Year's Eve", + "2046-01-01": "New Year's Day", + "2046-02-05": "Monday of Carnival", + "2046-02-06": "Tuesday of Carnival", + "2046-03-22": "Maundy Thursday", + "2046-03-23": "Good Friday", + "2046-04-19": "Declaration of Independence", + "2046-05-01": "International Worker's Day", + "2046-06-24": "Battle of Carabobo", + "2046-07-05": "Independence Day", + "2046-07-24": "Birthday of Simon Bolivar", + "2046-10-12": "Day of Indigenous Resistance", + "2046-12-24": "Christmas Eve", + "2046-12-25": "Christmas Day", + "2046-12-31": "New Year's Eve", + "2047-01-01": "New Year's Day", + "2047-02-25": "Monday of Carnival", + "2047-02-26": "Tuesday of Carnival", + "2047-04-11": "Maundy Thursday", + "2047-04-12": "Good Friday", + "2047-04-19": "Declaration of Independence", + "2047-05-01": "International Worker's Day", + "2047-06-24": "Battle of Carabobo", + "2047-07-05": "Independence Day", + "2047-07-24": "Birthday of Simon Bolivar", + "2047-10-12": "Day of Indigenous Resistance", + "2047-12-24": "Christmas Eve", + "2047-12-25": "Christmas Day", + "2047-12-31": "New Year's Eve", + "2048-01-01": "New Year's Day", + "2048-02-17": "Monday of Carnival", + "2048-02-18": "Tuesday of Carnival", + "2048-04-02": "Maundy Thursday", + "2048-04-03": "Good Friday", + "2048-04-19": "Declaration of Independence", + "2048-05-01": "International Worker's Day", + "2048-06-24": "Battle of Carabobo", + "2048-07-05": "Independence Day", + "2048-07-24": "Birthday of Simon Bolivar", + "2048-10-12": "Day of Indigenous Resistance", + "2048-12-24": "Christmas Eve", + "2048-12-25": "Christmas Day", + "2048-12-31": "New Year's Eve", + "2049-01-01": "New Year's Day", + "2049-03-01": "Monday of Carnival", + "2049-03-02": "Tuesday of Carnival", + "2049-04-15": "Maundy Thursday", + "2049-04-16": "Good Friday", + "2049-04-19": "Declaration of Independence", + "2049-05-01": "International Worker's Day", + "2049-06-24": "Battle of Carabobo", + "2049-07-05": "Independence Day", + "2049-07-24": "Birthday of Simon Bolivar", + "2049-10-12": "Day of Indigenous Resistance", + "2049-12-24": "Christmas Eve", + "2049-12-25": "Christmas Day", + "2049-12-31": "New Year's Eve", + "2050-01-01": "New Year's Day", + "2050-02-21": "Monday of Carnival", + "2050-02-22": "Tuesday of Carnival", + "2050-04-07": "Maundy Thursday", + "2050-04-08": "Good Friday", + "2050-04-19": "Declaration of Independence", + "2050-05-01": "International Worker's Day", + "2050-06-24": "Battle of Carabobo", + "2050-07-05": "Independence Day", + "2050-07-24": "Birthday of Simon Bolivar", + "2050-10-12": "Day of Indigenous Resistance", + "2050-12-24": "Christmas Eve", + "2050-12-25": "Christmas Day", + "2050-12-31": "New Year's Eve" +} diff --git a/snapshots/countries/VI.json b/snapshots/countries/VI.json new file mode 100644 index 000000000..454ebf795 --- /dev/null +++ b/snapshots/countries/VI.json @@ -0,0 +1,1900 @@ +{ + "1950-01-01": "New Year's Day", + "1950-01-02": "New Year's Day (Observed)", + "1950-01-06": "Three Kings Day", + "1950-02-22": "Presidents' Day", + "1950-03-31": "Transfer Day", + "1950-04-06": "Holy Thursday", + "1950-04-07": "Good Friday", + "1950-04-10": "Easter Monday", + "1950-05-30": "Memorial Day", + "1950-07-03": "Emancipation Day", + "1950-07-04": "Independence Day", + "1950-09-04": "Labor Day", + "1950-10-12": "Columbus Day and Puerto Rico Friendship Day", + "1950-11-01": "Liberty Day", + "1950-11-10": "Armistice Day (Observed)", + "1950-11-11": "Armistice Day", + "1950-11-23": "Thanksgiving", + "1950-12-25": "Christmas Day", + "1950-12-26": "Christmas Second Day", + "1951-01-01": "New Year's Day", + "1951-01-06": "Three Kings Day", + "1951-02-22": "Presidents' Day", + "1951-03-22": "Holy Thursday", + "1951-03-23": "Good Friday", + "1951-03-26": "Easter Monday", + "1951-03-31": "Transfer Day", + "1951-05-30": "Memorial Day", + "1951-07-03": "Emancipation Day", + "1951-07-04": "Independence Day", + "1951-09-03": "Labor Day", + "1951-10-12": "Columbus Day and Puerto Rico Friendship Day", + "1951-11-01": "Liberty Day", + "1951-11-11": "Armistice Day", + "1951-11-12": "Armistice Day (Observed)", + "1951-11-22": "Thanksgiving", + "1951-12-25": "Christmas Day", + "1951-12-26": "Christmas Second Day", + "1952-01-01": "New Year's Day", + "1952-01-06": "Three Kings Day", + "1952-02-22": "Presidents' Day", + "1952-03-31": "Transfer Day", + "1952-04-10": "Holy Thursday", + "1952-04-11": "Good Friday", + "1952-04-14": "Easter Monday", + "1952-05-30": "Memorial Day", + "1952-07-03": "Emancipation Day", + "1952-07-04": "Independence Day", + "1952-09-01": "Labor Day", + "1952-10-12": "Columbus Day and Puerto Rico Friendship Day", + "1952-11-01": "Liberty Day", + "1952-11-11": "Armistice Day", + "1952-11-27": "Thanksgiving", + "1952-12-25": "Christmas Day", + "1952-12-26": "Christmas Second Day", + "1953-01-01": "New Year's Day", + "1953-01-06": "Three Kings Day", + "1953-02-22": "Presidents' Day", + "1953-03-31": "Transfer Day", + "1953-04-02": "Holy Thursday", + "1953-04-03": "Good Friday", + "1953-04-06": "Easter Monday", + "1953-05-30": "Memorial Day", + "1953-07-03": "Emancipation Day; Independence Day (Observed)", + "1953-07-04": "Independence Day", + "1953-09-07": "Labor Day", + "1953-10-12": "Columbus Day and Puerto Rico Friendship Day", + "1953-11-01": "Liberty Day", + "1953-11-11": "Armistice Day", + "1953-11-26": "Thanksgiving", + "1953-12-25": "Christmas Day", + "1953-12-26": "Christmas Second Day", + "1954-01-01": "New Year's Day", + "1954-01-06": "Three Kings Day", + "1954-02-22": "Presidents' Day", + "1954-03-31": "Transfer Day", + "1954-04-15": "Holy Thursday", + "1954-04-16": "Good Friday", + "1954-04-19": "Easter Monday", + "1954-05-30": "Memorial Day", + "1954-07-03": "Emancipation Day", + "1954-07-04": "Independence Day", + "1954-07-05": "Independence Day (Observed)", + "1954-09-06": "Labor Day", + "1954-10-12": "Columbus Day and Puerto Rico Friendship Day", + "1954-11-01": "Liberty Day", + "1954-11-11": "Veterans Day", + "1954-11-25": "Thanksgiving", + "1954-12-24": "Christmas Day (Observed)", + "1954-12-25": "Christmas Day", + "1954-12-26": "Christmas Second Day", + "1954-12-31": "New Year's Day (Observed)", + "1955-01-01": "New Year's Day", + "1955-01-06": "Three Kings Day", + "1955-02-22": "Presidents' Day", + "1955-03-31": "Transfer Day", + "1955-04-07": "Holy Thursday", + "1955-04-08": "Good Friday", + "1955-04-11": "Easter Monday", + "1955-05-30": "Memorial Day", + "1955-07-03": "Emancipation Day", + "1955-07-04": "Independence Day", + "1955-09-05": "Labor Day", + "1955-10-12": "Columbus Day and Puerto Rico Friendship Day", + "1955-11-01": "Liberty Day", + "1955-11-11": "Veterans Day", + "1955-11-24": "Thanksgiving", + "1955-12-25": "Christmas Day", + "1955-12-26": "Christmas Day (Observed); Christmas Second Day", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year's Day (Observed)", + "1956-01-06": "Three Kings Day", + "1956-02-22": "Presidents' Day", + "1956-03-29": "Holy Thursday", + "1956-03-30": "Good Friday", + "1956-03-31": "Transfer Day", + "1956-04-02": "Easter Monday", + "1956-05-30": "Memorial Day", + "1956-07-03": "Emancipation Day", + "1956-07-04": "Independence Day", + "1956-09-03": "Labor Day", + "1956-10-12": "Columbus Day and Puerto Rico Friendship Day", + "1956-11-01": "Liberty Day", + "1956-11-11": "Veterans Day", + "1956-11-12": "Veterans Day (Observed)", + "1956-11-22": "Thanksgiving", + "1956-12-25": "Christmas Day", + "1956-12-26": "Christmas Second Day", + "1957-01-01": "New Year's Day", + "1957-01-06": "Three Kings Day", + "1957-02-22": "Presidents' Day", + "1957-03-31": "Transfer Day", + "1957-04-18": "Holy Thursday", + "1957-04-19": "Good Friday", + "1957-04-22": "Easter Monday", + "1957-05-30": "Memorial Day", + "1957-07-03": "Emancipation Day", + "1957-07-04": "Independence Day", + "1957-09-02": "Labor Day", + "1957-10-12": "Columbus Day and Puerto Rico Friendship Day", + "1957-11-01": "Liberty Day", + "1957-11-11": "Veterans Day", + "1957-11-28": "Thanksgiving", + "1957-12-25": "Christmas Day", + "1957-12-26": "Christmas Second Day", + "1958-01-01": "New Year's Day", + "1958-01-06": "Three Kings Day", + "1958-02-22": "Presidents' Day", + "1958-03-31": "Transfer Day", + "1958-04-03": "Holy Thursday", + "1958-04-04": "Good Friday", + "1958-04-07": "Easter Monday", + "1958-05-30": "Memorial Day", + "1958-07-03": "Emancipation Day", + "1958-07-04": "Independence Day", + "1958-09-01": "Labor Day", + "1958-10-12": "Columbus Day and Puerto Rico Friendship Day", + "1958-11-01": "Liberty Day", + "1958-11-11": "Veterans Day", + "1958-11-27": "Thanksgiving", + "1958-12-25": "Christmas Day", + "1958-12-26": "Christmas Second Day", + "1959-01-01": "New Year's Day", + "1959-01-06": "Three Kings Day", + "1959-02-22": "Presidents' Day", + "1959-03-26": "Holy Thursday", + "1959-03-27": "Good Friday", + "1959-03-30": "Easter Monday", + "1959-03-31": "Transfer Day", + "1959-05-30": "Memorial Day", + "1959-07-03": "Emancipation Day; Independence Day (Observed)", + "1959-07-04": "Independence Day", + "1959-09-07": "Labor Day", + "1959-10-12": "Columbus Day and Puerto Rico Friendship Day", + "1959-11-01": "Liberty Day", + "1959-11-11": "Veterans Day", + "1959-11-26": "Thanksgiving", + "1959-12-25": "Christmas Day", + "1959-12-26": "Christmas Second Day", + "1960-01-01": "New Year's Day", + "1960-01-06": "Three Kings Day", + "1960-02-22": "Presidents' Day", + "1960-03-31": "Transfer Day", + "1960-04-14": "Holy Thursday", + "1960-04-15": "Good Friday", + "1960-04-18": "Easter Monday", + "1960-05-30": "Memorial Day", + "1960-07-03": "Emancipation Day", + "1960-07-04": "Independence Day", + "1960-09-05": "Labor Day", + "1960-10-12": "Columbus Day and Puerto Rico Friendship Day", + "1960-11-01": "Liberty Day", + "1960-11-11": "Veterans Day", + "1960-11-24": "Thanksgiving", + "1960-12-25": "Christmas Day", + "1960-12-26": "Christmas Day (Observed); Christmas Second Day", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day (Observed)", + "1961-01-06": "Three Kings Day", + "1961-02-22": "Presidents' Day", + "1961-03-30": "Holy Thursday", + "1961-03-31": "Good Friday; Transfer Day", + "1961-04-03": "Easter Monday", + "1961-05-30": "Memorial Day", + "1961-07-03": "Emancipation Day", + "1961-07-04": "Independence Day", + "1961-09-04": "Labor Day", + "1961-10-12": "Columbus Day and Puerto Rico Friendship Day", + "1961-11-01": "Liberty Day", + "1961-11-10": "Veterans Day (Observed)", + "1961-11-11": "Veterans Day", + "1961-11-23": "Thanksgiving", + "1961-12-25": "Christmas Day", + "1961-12-26": "Christmas Second Day", + "1962-01-01": "New Year's Day", + "1962-01-06": "Three Kings Day", + "1962-02-22": "Presidents' Day", + "1962-03-31": "Transfer Day", + "1962-04-19": "Holy Thursday", + "1962-04-20": "Good Friday", + "1962-04-23": "Easter Monday", + "1962-05-30": "Memorial Day", + "1962-07-03": "Emancipation Day", + "1962-07-04": "Independence Day", + "1962-09-03": "Labor Day", + "1962-10-12": "Columbus Day and Puerto Rico Friendship Day", + "1962-11-01": "Liberty Day", + "1962-11-11": "Veterans Day", + "1962-11-12": "Veterans Day (Observed)", + "1962-11-22": "Thanksgiving", + "1962-12-25": "Christmas Day", + "1962-12-26": "Christmas Second Day", + "1963-01-01": "New Year's Day", + "1963-01-06": "Three Kings Day", + "1963-02-22": "Presidents' Day", + "1963-03-31": "Transfer Day", + "1963-04-11": "Holy Thursday", + "1963-04-12": "Good Friday", + "1963-04-15": "Easter Monday", + "1963-05-30": "Memorial Day", + "1963-07-03": "Emancipation Day", + "1963-07-04": "Independence Day", + "1963-09-02": "Labor Day", + "1963-10-12": "Columbus Day and Puerto Rico Friendship Day", + "1963-11-01": "Liberty Day", + "1963-11-11": "Veterans Day", + "1963-11-28": "Thanksgiving", + "1963-12-25": "Christmas Day", + "1963-12-26": "Christmas Second Day", + "1964-01-01": "New Year's Day", + "1964-01-06": "Three Kings Day", + "1964-02-22": "Presidents' Day", + "1964-03-26": "Holy Thursday", + "1964-03-27": "Good Friday", + "1964-03-30": "Easter Monday", + "1964-03-31": "Transfer Day", + "1964-05-30": "Memorial Day", + "1964-07-03": "Emancipation Day; Independence Day (Observed)", + "1964-07-04": "Independence Day", + "1964-09-07": "Labor Day", + "1964-10-12": "Columbus Day and Puerto Rico Friendship Day", + "1964-11-01": "Liberty Day", + "1964-11-11": "Veterans Day", + "1964-11-26": "Thanksgiving", + "1964-12-25": "Christmas Day", + "1964-12-26": "Christmas Second Day", + "1965-01-01": "New Year's Day", + "1965-01-06": "Three Kings Day", + "1965-02-22": "Presidents' Day", + "1965-03-31": "Transfer Day", + "1965-04-15": "Holy Thursday", + "1965-04-16": "Good Friday", + "1965-04-19": "Easter Monday", + "1965-05-30": "Memorial Day", + "1965-07-03": "Emancipation Day", + "1965-07-04": "Independence Day", + "1965-07-05": "Independence Day (Observed)", + "1965-09-06": "Labor Day", + "1965-10-12": "Columbus Day and Puerto Rico Friendship Day", + "1965-11-01": "Liberty Day", + "1965-11-11": "Veterans Day", + "1965-11-25": "Thanksgiving", + "1965-12-24": "Christmas Day (Observed)", + "1965-12-25": "Christmas Day", + "1965-12-26": "Christmas Second Day", + "1965-12-31": "New Year's Day (Observed)", + "1966-01-01": "New Year's Day", + "1966-01-06": "Three Kings Day", + "1966-02-22": "Presidents' Day", + "1966-03-31": "Transfer Day", + "1966-04-07": "Holy Thursday", + "1966-04-08": "Good Friday", + "1966-04-11": "Easter Monday", + "1966-05-30": "Memorial Day", + "1966-07-03": "Emancipation Day", + "1966-07-04": "Independence Day", + "1966-09-05": "Labor Day", + "1966-10-12": "Columbus Day and Puerto Rico Friendship Day", + "1966-11-01": "Liberty Day", + "1966-11-11": "Veterans Day", + "1966-11-24": "Thanksgiving", + "1966-12-25": "Christmas Day", + "1966-12-26": "Christmas Day (Observed); Christmas Second Day", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day (Observed)", + "1967-01-06": "Three Kings Day", + "1967-02-22": "Presidents' Day", + "1967-03-23": "Holy Thursday", + "1967-03-24": "Good Friday", + "1967-03-27": "Easter Monday", + "1967-03-31": "Transfer Day", + "1967-05-30": "Memorial Day", + "1967-07-03": "Emancipation Day", + "1967-07-04": "Independence Day", + "1967-09-04": "Labor Day", + "1967-10-12": "Columbus Day and Puerto Rico Friendship Day", + "1967-11-01": "Liberty Day", + "1967-11-10": "Veterans Day (Observed)", + "1967-11-11": "Veterans Day", + "1967-11-23": "Thanksgiving", + "1967-12-25": "Christmas Day", + "1967-12-26": "Christmas Second Day", + "1968-01-01": "New Year's Day", + "1968-01-06": "Three Kings Day", + "1968-02-22": "Presidents' Day", + "1968-03-31": "Transfer Day", + "1968-04-11": "Holy Thursday", + "1968-04-12": "Good Friday", + "1968-04-15": "Easter Monday", + "1968-05-30": "Memorial Day", + "1968-07-03": "Emancipation Day", + "1968-07-04": "Independence Day", + "1968-09-02": "Labor Day", + "1968-10-12": "Columbus Day and Puerto Rico Friendship Day", + "1968-11-01": "Liberty Day", + "1968-11-11": "Veterans Day", + "1968-11-28": "Thanksgiving", + "1968-12-25": "Christmas Day", + "1968-12-26": "Christmas Second Day", + "1969-01-01": "New Year's Day", + "1969-01-06": "Three Kings Day", + "1969-02-22": "Presidents' Day", + "1969-03-31": "Transfer Day", + "1969-04-03": "Holy Thursday", + "1969-04-04": "Good Friday", + "1969-04-07": "Easter Monday", + "1969-05-30": "Memorial Day", + "1969-07-03": "Emancipation Day", + "1969-07-04": "Independence Day", + "1969-09-01": "Labor Day", + "1969-10-12": "Columbus Day and Puerto Rico Friendship Day", + "1969-11-01": "Liberty Day", + "1969-11-11": "Veterans Day", + "1969-11-27": "Thanksgiving", + "1969-12-25": "Christmas Day", + "1969-12-26": "Christmas Second Day", + "1970-01-01": "New Year's Day", + "1970-01-06": "Three Kings Day", + "1970-02-22": "Presidents' Day", + "1970-03-26": "Holy Thursday", + "1970-03-27": "Good Friday", + "1970-03-30": "Easter Monday", + "1970-03-31": "Transfer Day", + "1970-05-30": "Memorial Day", + "1970-07-03": "Emancipation Day; Independence Day (Observed)", + "1970-07-04": "Independence Day", + "1970-09-07": "Labor Day", + "1970-10-12": "Columbus Day and Puerto Rico Friendship Day", + "1970-11-01": "Liberty Day", + "1970-11-11": "Veterans Day", + "1970-11-26": "Thanksgiving", + "1970-12-25": "Christmas Day", + "1970-12-26": "Christmas Second Day", + "1971-01-01": "New Year's Day", + "1971-01-06": "Three Kings Day", + "1971-02-15": "Presidents' Day", + "1971-03-31": "Transfer Day", + "1971-04-08": "Holy Thursday", + "1971-04-09": "Good Friday", + "1971-04-12": "Easter Monday", + "1971-05-31": "Memorial Day", + "1971-07-03": "Emancipation Day", + "1971-07-04": "Independence Day", + "1971-07-05": "Independence Day (Observed)", + "1971-09-06": "Labor Day", + "1971-10-11": "Columbus Day and Puerto Rico Friendship Day", + "1971-10-25": "Veterans Day", + "1971-11-01": "Liberty Day", + "1971-11-25": "Thanksgiving", + "1971-12-24": "Christmas Day (Observed)", + "1971-12-25": "Christmas Day", + "1971-12-26": "Christmas Second Day", + "1971-12-31": "New Year's Day (Observed)", + "1972-01-01": "New Year's Day", + "1972-01-06": "Three Kings Day", + "1972-02-21": "Presidents' Day", + "1972-03-30": "Holy Thursday", + "1972-03-31": "Good Friday; Transfer Day", + "1972-04-03": "Easter Monday", + "1972-05-29": "Memorial Day", + "1972-07-03": "Emancipation Day", + "1972-07-04": "Independence Day", + "1972-09-04": "Labor Day", + "1972-10-09": "Columbus Day and Puerto Rico Friendship Day", + "1972-10-23": "Veterans Day", + "1972-11-01": "Liberty Day", + "1972-11-23": "Thanksgiving", + "1972-12-25": "Christmas Day", + "1972-12-26": "Christmas Second Day", + "1973-01-01": "New Year's Day", + "1973-01-06": "Three Kings Day", + "1973-02-19": "Presidents' Day", + "1973-03-31": "Transfer Day", + "1973-04-19": "Holy Thursday", + "1973-04-20": "Good Friday", + "1973-04-23": "Easter Monday", + "1973-05-28": "Memorial Day", + "1973-07-03": "Emancipation Day", + "1973-07-04": "Independence Day", + "1973-09-03": "Labor Day", + "1973-10-08": "Columbus Day and Puerto Rico Friendship Day", + "1973-10-22": "Veterans Day", + "1973-11-01": "Liberty Day", + "1973-11-22": "Thanksgiving", + "1973-12-25": "Christmas Day", + "1973-12-26": "Christmas Second Day", + "1974-01-01": "New Year's Day", + "1974-01-06": "Three Kings Day", + "1974-02-18": "Presidents' Day", + "1974-03-31": "Transfer Day", + "1974-04-11": "Holy Thursday", + "1974-04-12": "Good Friday", + "1974-04-15": "Easter Monday", + "1974-05-27": "Memorial Day", + "1974-07-03": "Emancipation Day", + "1974-07-04": "Independence Day", + "1974-09-02": "Labor Day", + "1974-10-14": "Columbus Day and Puerto Rico Friendship Day", + "1974-10-28": "Veterans Day", + "1974-11-01": "Liberty Day", + "1974-11-28": "Thanksgiving", + "1974-12-25": "Christmas Day", + "1974-12-26": "Christmas Second Day", + "1975-01-01": "New Year's Day", + "1975-01-06": "Three Kings Day", + "1975-02-17": "Presidents' Day", + "1975-03-27": "Holy Thursday", + "1975-03-28": "Good Friday", + "1975-03-31": "Easter Monday; Transfer Day", + "1975-05-26": "Memorial Day", + "1975-07-03": "Emancipation Day", + "1975-07-04": "Independence Day", + "1975-09-01": "Labor Day", + "1975-10-13": "Columbus Day and Puerto Rico Friendship Day", + "1975-10-27": "Veterans Day", + "1975-11-01": "Liberty Day", + "1975-11-27": "Thanksgiving", + "1975-12-25": "Christmas Day", + "1975-12-26": "Christmas Second Day", + "1976-01-01": "New Year's Day", + "1976-01-06": "Three Kings Day", + "1976-02-16": "Presidents' Day", + "1976-03-31": "Transfer Day", + "1976-04-15": "Holy Thursday", + "1976-04-16": "Good Friday", + "1976-04-19": "Easter Monday", + "1976-05-31": "Memorial Day", + "1976-07-03": "Emancipation Day", + "1976-07-04": "Independence Day", + "1976-07-05": "Independence Day (Observed)", + "1976-09-06": "Labor Day", + "1976-10-11": "Columbus Day and Puerto Rico Friendship Day", + "1976-10-25": "Veterans Day", + "1976-11-01": "Liberty Day", + "1976-11-25": "Thanksgiving", + "1976-12-24": "Christmas Day (Observed)", + "1976-12-25": "Christmas Day", + "1976-12-26": "Christmas Second Day", + "1976-12-31": "New Year's Day (Observed)", + "1977-01-01": "New Year's Day", + "1977-01-06": "Three Kings Day", + "1977-02-21": "Presidents' Day", + "1977-03-31": "Transfer Day", + "1977-04-07": "Holy Thursday", + "1977-04-08": "Good Friday", + "1977-04-11": "Easter Monday", + "1977-05-30": "Memorial Day", + "1977-07-03": "Emancipation Day", + "1977-07-04": "Independence Day", + "1977-09-05": "Labor Day", + "1977-10-10": "Columbus Day and Puerto Rico Friendship Day", + "1977-10-24": "Veterans Day", + "1977-11-01": "Liberty Day", + "1977-11-24": "Thanksgiving", + "1977-12-25": "Christmas Day", + "1977-12-26": "Christmas Day (Observed); Christmas Second Day", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day (Observed)", + "1978-01-06": "Three Kings Day", + "1978-02-20": "Presidents' Day", + "1978-03-23": "Holy Thursday", + "1978-03-24": "Good Friday", + "1978-03-27": "Easter Monday", + "1978-03-31": "Transfer Day", + "1978-05-29": "Memorial Day", + "1978-07-03": "Emancipation Day", + "1978-07-04": "Independence Day", + "1978-09-04": "Labor Day", + "1978-10-09": "Columbus Day and Puerto Rico Friendship Day", + "1978-11-01": "Liberty Day", + "1978-11-10": "Veterans Day (Observed)", + "1978-11-11": "Veterans Day", + "1978-11-23": "Thanksgiving", + "1978-12-25": "Christmas Day", + "1978-12-26": "Christmas Second Day", + "1979-01-01": "New Year's Day", + "1979-01-06": "Three Kings Day", + "1979-02-19": "Presidents' Day", + "1979-03-31": "Transfer Day", + "1979-04-12": "Holy Thursday", + "1979-04-13": "Good Friday", + "1979-04-16": "Easter Monday", + "1979-05-28": "Memorial Day", + "1979-07-03": "Emancipation Day", + "1979-07-04": "Independence Day", + "1979-09-03": "Labor Day", + "1979-10-08": "Columbus Day and Puerto Rico Friendship Day", + "1979-11-01": "Liberty Day", + "1979-11-11": "Veterans Day", + "1979-11-12": "Veterans Day (Observed)", + "1979-11-22": "Thanksgiving", + "1979-12-25": "Christmas Day", + "1979-12-26": "Christmas Second Day", + "1980-01-01": "New Year's Day", + "1980-01-06": "Three Kings Day", + "1980-02-18": "Presidents' Day", + "1980-03-31": "Transfer Day", + "1980-04-03": "Holy Thursday", + "1980-04-04": "Good Friday", + "1980-04-07": "Easter Monday", + "1980-05-26": "Memorial Day", + "1980-07-03": "Emancipation Day", + "1980-07-04": "Independence Day", + "1980-09-01": "Labor Day", + "1980-10-13": "Columbus Day and Puerto Rico Friendship Day", + "1980-11-01": "Liberty Day", + "1980-11-11": "Veterans Day", + "1980-11-27": "Thanksgiving", + "1980-12-25": "Christmas Day", + "1980-12-26": "Christmas Second Day", + "1981-01-01": "New Year's Day", + "1981-01-06": "Three Kings Day", + "1981-02-16": "Presidents' Day", + "1981-03-31": "Transfer Day", + "1981-04-16": "Holy Thursday", + "1981-04-17": "Good Friday", + "1981-04-20": "Easter Monday", + "1981-05-25": "Memorial Day", + "1981-07-03": "Emancipation Day; Independence Day (Observed)", + "1981-07-04": "Independence Day", + "1981-09-07": "Labor Day", + "1981-10-12": "Columbus Day and Puerto Rico Friendship Day", + "1981-11-01": "Liberty Day", + "1981-11-11": "Veterans Day", + "1981-11-26": "Thanksgiving", + "1981-12-25": "Christmas Day", + "1981-12-26": "Christmas Second Day", + "1982-01-01": "New Year's Day", + "1982-01-06": "Three Kings Day", + "1982-02-15": "Presidents' Day", + "1982-03-31": "Transfer Day", + "1982-04-08": "Holy Thursday", + "1982-04-09": "Good Friday", + "1982-04-12": "Easter Monday", + "1982-05-31": "Memorial Day", + "1982-07-03": "Emancipation Day", + "1982-07-04": "Independence Day", + "1982-07-05": "Independence Day (Observed)", + "1982-09-06": "Labor Day", + "1982-10-11": "Columbus Day and Puerto Rico Friendship Day", + "1982-11-01": "Liberty Day", + "1982-11-11": "Veterans Day", + "1982-11-25": "Thanksgiving", + "1982-12-24": "Christmas Day (Observed)", + "1982-12-25": "Christmas Day", + "1982-12-26": "Christmas Second Day", + "1982-12-31": "New Year's Day (Observed)", + "1983-01-01": "New Year's Day", + "1983-01-06": "Three Kings Day", + "1983-02-21": "Presidents' Day", + "1983-03-31": "Holy Thursday; Transfer Day", + "1983-04-01": "Good Friday", + "1983-04-04": "Easter Monday", + "1983-05-30": "Memorial Day", + "1983-07-03": "Emancipation Day", + "1983-07-04": "Independence Day", + "1983-09-05": "Labor Day", + "1983-10-10": "Columbus Day and Puerto Rico Friendship Day", + "1983-11-01": "Liberty Day", + "1983-11-11": "Veterans Day", + "1983-11-24": "Thanksgiving", + "1983-12-25": "Christmas Day", + "1983-12-26": "Christmas Day (Observed); Christmas Second Day", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (Observed)", + "1984-01-06": "Three Kings Day", + "1984-02-20": "Presidents' Day", + "1984-03-31": "Transfer Day", + "1984-04-19": "Holy Thursday", + "1984-04-20": "Good Friday", + "1984-04-23": "Easter Monday", + "1984-05-28": "Memorial Day", + "1984-07-03": "Emancipation Day", + "1984-07-04": "Independence Day", + "1984-09-03": "Labor Day", + "1984-10-08": "Columbus Day and Puerto Rico Friendship Day", + "1984-11-01": "Liberty Day", + "1984-11-11": "Veterans Day", + "1984-11-12": "Veterans Day (Observed)", + "1984-11-22": "Thanksgiving", + "1984-12-25": "Christmas Day", + "1984-12-26": "Christmas Second Day", + "1985-01-01": "New Year's Day", + "1985-01-06": "Three Kings Day", + "1985-02-18": "Presidents' Day", + "1985-03-31": "Transfer Day", + "1985-04-04": "Holy Thursday", + "1985-04-05": "Good Friday", + "1985-04-08": "Easter Monday", + "1985-05-27": "Memorial Day", + "1985-07-03": "Emancipation Day", + "1985-07-04": "Independence Day", + "1985-09-02": "Labor Day", + "1985-10-14": "Columbus Day and Puerto Rico Friendship Day", + "1985-11-01": "Liberty Day", + "1985-11-11": "Veterans Day", + "1985-11-28": "Thanksgiving", + "1985-12-25": "Christmas Day", + "1985-12-26": "Christmas Second Day", + "1986-01-01": "New Year's Day", + "1986-01-06": "Three Kings Day", + "1986-01-20": "Martin Luther King Jr. Day", + "1986-02-17": "Presidents' Day", + "1986-03-27": "Holy Thursday", + "1986-03-28": "Good Friday", + "1986-03-31": "Easter Monday; Transfer Day", + "1986-05-26": "Memorial Day", + "1986-07-03": "Emancipation Day", + "1986-07-04": "Independence Day", + "1986-09-01": "Labor Day", + "1986-10-13": "Columbus Day and Puerto Rico Friendship Day", + "1986-11-01": "Liberty Day", + "1986-11-11": "Veterans Day", + "1986-11-27": "Thanksgiving", + "1986-12-25": "Christmas Day", + "1986-12-26": "Christmas Second Day", + "1987-01-01": "New Year's Day", + "1987-01-06": "Three Kings Day", + "1987-01-19": "Martin Luther King Jr. Day", + "1987-02-16": "Presidents' Day", + "1987-03-31": "Transfer Day", + "1987-04-16": "Holy Thursday", + "1987-04-17": "Good Friday", + "1987-04-20": "Easter Monday", + "1987-05-25": "Memorial Day", + "1987-07-03": "Emancipation Day; Independence Day (Observed)", + "1987-07-04": "Independence Day", + "1987-09-07": "Labor Day", + "1987-10-12": "Columbus Day and Puerto Rico Friendship Day", + "1987-11-01": "Liberty Day", + "1987-11-11": "Veterans Day", + "1987-11-26": "Thanksgiving", + "1987-12-25": "Christmas Day", + "1987-12-26": "Christmas Second Day", + "1988-01-01": "New Year's Day", + "1988-01-06": "Three Kings Day", + "1988-01-18": "Martin Luther King Jr. Day", + "1988-02-15": "Presidents' Day", + "1988-03-31": "Holy Thursday; Transfer Day", + "1988-04-01": "Good Friday", + "1988-04-04": "Easter Monday", + "1988-05-30": "Memorial Day", + "1988-07-03": "Emancipation Day", + "1988-07-04": "Independence Day", + "1988-09-05": "Labor Day", + "1988-10-10": "Columbus Day and Puerto Rico Friendship Day", + "1988-11-01": "Liberty Day", + "1988-11-11": "Veterans Day", + "1988-11-24": "Thanksgiving", + "1988-12-25": "Christmas Day", + "1988-12-26": "Christmas Day (Observed); Christmas Second Day", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (Observed)", + "1989-01-06": "Three Kings Day", + "1989-01-16": "Martin Luther King Jr. Day", + "1989-02-20": "Presidents' Day", + "1989-03-23": "Holy Thursday", + "1989-03-24": "Good Friday", + "1989-03-27": "Easter Monday", + "1989-03-31": "Transfer Day", + "1989-05-29": "Memorial Day", + "1989-07-03": "Emancipation Day", + "1989-07-04": "Independence Day", + "1989-09-04": "Labor Day", + "1989-10-09": "Columbus Day and Puerto Rico Friendship Day", + "1989-11-01": "Liberty Day", + "1989-11-10": "Veterans Day (Observed)", + "1989-11-11": "Veterans Day", + "1989-11-23": "Thanksgiving", + "1989-12-25": "Christmas Day", + "1989-12-26": "Christmas Second Day", + "1990-01-01": "New Year's Day", + "1990-01-06": "Three Kings Day", + "1990-01-15": "Martin Luther King Jr. Day", + "1990-02-19": "Presidents' Day", + "1990-03-31": "Transfer Day", + "1990-04-12": "Holy Thursday", + "1990-04-13": "Good Friday", + "1990-04-16": "Easter Monday", + "1990-05-28": "Memorial Day", + "1990-07-03": "Emancipation Day", + "1990-07-04": "Independence Day", + "1990-09-03": "Labor Day", + "1990-10-08": "Columbus Day and Puerto Rico Friendship Day", + "1990-11-01": "Liberty Day", + "1990-11-11": "Veterans Day", + "1990-11-12": "Veterans Day (Observed)", + "1990-11-22": "Thanksgiving", + "1990-12-25": "Christmas Day", + "1990-12-26": "Christmas Second Day", + "1991-01-01": "New Year's Day", + "1991-01-06": "Three Kings Day", + "1991-01-21": "Martin Luther King Jr. Day", + "1991-02-18": "Presidents' Day", + "1991-03-28": "Holy Thursday", + "1991-03-29": "Good Friday", + "1991-03-31": "Transfer Day", + "1991-04-01": "Easter Monday", + "1991-05-27": "Memorial Day", + "1991-07-03": "Emancipation Day", + "1991-07-04": "Independence Day", + "1991-09-02": "Labor Day", + "1991-10-14": "Columbus Day and Puerto Rico Friendship Day", + "1991-11-01": "Liberty Day", + "1991-11-11": "Veterans Day", + "1991-11-28": "Thanksgiving", + "1991-12-25": "Christmas Day", + "1991-12-26": "Christmas Second Day", + "1992-01-01": "New Year's Day", + "1992-01-06": "Three Kings Day", + "1992-01-20": "Martin Luther King Jr. Day", + "1992-02-17": "Presidents' Day", + "1992-03-31": "Transfer Day", + "1992-04-16": "Holy Thursday", + "1992-04-17": "Good Friday", + "1992-04-20": "Easter Monday", + "1992-05-25": "Memorial Day", + "1992-07-03": "Emancipation Day; Independence Day (Observed)", + "1992-07-04": "Independence Day", + "1992-09-07": "Labor Day", + "1992-10-12": "Columbus Day and Puerto Rico Friendship Day", + "1992-11-01": "Liberty Day", + "1992-11-11": "Veterans Day", + "1992-11-26": "Thanksgiving", + "1992-12-25": "Christmas Day", + "1992-12-26": "Christmas Second Day", + "1993-01-01": "New Year's Day", + "1993-01-06": "Three Kings Day", + "1993-01-18": "Martin Luther King Jr. Day", + "1993-02-15": "Presidents' Day", + "1993-03-31": "Transfer Day", + "1993-04-08": "Holy Thursday", + "1993-04-09": "Good Friday", + "1993-04-12": "Easter Monday", + "1993-05-31": "Memorial Day", + "1993-07-03": "Emancipation Day", + "1993-07-04": "Independence Day", + "1993-07-05": "Independence Day (Observed)", + "1993-09-06": "Labor Day", + "1993-10-11": "Columbus Day and Puerto Rico Friendship Day", + "1993-11-01": "Liberty Day", + "1993-11-11": "Veterans Day", + "1993-11-25": "Thanksgiving", + "1993-12-24": "Christmas Day (Observed)", + "1993-12-25": "Christmas Day", + "1993-12-26": "Christmas Second Day", + "1993-12-31": "New Year's Day (Observed)", + "1994-01-01": "New Year's Day", + "1994-01-06": "Three Kings Day", + "1994-01-17": "Martin Luther King Jr. Day", + "1994-02-21": "Presidents' Day", + "1994-03-31": "Holy Thursday; Transfer Day", + "1994-04-01": "Good Friday", + "1994-04-04": "Easter Monday", + "1994-05-30": "Memorial Day", + "1994-07-03": "Emancipation Day", + "1994-07-04": "Independence Day", + "1994-09-05": "Labor Day", + "1994-10-10": "Columbus Day and Puerto Rico Friendship Day", + "1994-11-01": "Liberty Day", + "1994-11-11": "Veterans Day", + "1994-11-24": "Thanksgiving", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day (Observed); Christmas Second Day", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (Observed)", + "1995-01-06": "Three Kings Day", + "1995-01-16": "Martin Luther King Jr. Day", + "1995-02-20": "Presidents' Day", + "1995-03-31": "Transfer Day", + "1995-04-13": "Holy Thursday", + "1995-04-14": "Good Friday", + "1995-04-17": "Easter Monday", + "1995-05-29": "Memorial Day", + "1995-07-03": "Emancipation Day", + "1995-07-04": "Independence Day", + "1995-09-04": "Labor Day", + "1995-10-09": "Columbus Day and Puerto Rico Friendship Day", + "1995-11-01": "Liberty Day", + "1995-11-10": "Veterans Day (Observed)", + "1995-11-11": "Veterans Day", + "1995-11-23": "Thanksgiving", + "1995-12-25": "Christmas Day", + "1995-12-26": "Christmas Second Day", + "1996-01-01": "New Year's Day", + "1996-01-06": "Three Kings Day", + "1996-01-15": "Martin Luther King Jr. Day", + "1996-02-19": "Presidents' Day", + "1996-03-31": "Transfer Day", + "1996-04-04": "Holy Thursday", + "1996-04-05": "Good Friday", + "1996-04-08": "Easter Monday", + "1996-05-27": "Memorial Day", + "1996-07-03": "Emancipation Day", + "1996-07-04": "Independence Day", + "1996-09-02": "Labor Day", + "1996-10-14": "Columbus Day and Puerto Rico Friendship Day", + "1996-11-01": "Liberty Day", + "1996-11-11": "Veterans Day", + "1996-11-28": "Thanksgiving", + "1996-12-25": "Christmas Day", + "1996-12-26": "Christmas Second Day", + "1997-01-01": "New Year's Day", + "1997-01-06": "Three Kings Day", + "1997-01-20": "Martin Luther King Jr. Day", + "1997-02-17": "Presidents' Day", + "1997-03-27": "Holy Thursday", + "1997-03-28": "Good Friday", + "1997-03-31": "Easter Monday; Transfer Day", + "1997-05-26": "Memorial Day", + "1997-07-03": "Emancipation Day", + "1997-07-04": "Independence Day", + "1997-09-01": "Labor Day", + "1997-10-13": "Columbus Day and Puerto Rico Friendship Day", + "1997-11-01": "Liberty Day", + "1997-11-11": "Veterans Day", + "1997-11-27": "Thanksgiving", + "1997-12-25": "Christmas Day", + "1997-12-26": "Christmas Second Day", + "1998-01-01": "New Year's Day", + "1998-01-06": "Three Kings Day", + "1998-01-19": "Martin Luther King Jr. Day", + "1998-02-16": "Presidents' Day", + "1998-03-31": "Transfer Day", + "1998-04-09": "Holy Thursday", + "1998-04-10": "Good Friday", + "1998-04-13": "Easter Monday", + "1998-05-25": "Memorial Day", + "1998-07-03": "Emancipation Day; Independence Day (Observed)", + "1998-07-04": "Independence Day", + "1998-09-07": "Labor Day", + "1998-10-12": "Columbus Day and Puerto Rico Friendship Day", + "1998-11-01": "Liberty Day", + "1998-11-11": "Veterans Day", + "1998-11-26": "Thanksgiving", + "1998-12-25": "Christmas Day", + "1998-12-26": "Christmas Second Day", + "1999-01-01": "New Year's Day", + "1999-01-06": "Three Kings Day", + "1999-01-18": "Martin Luther King Jr. Day", + "1999-02-15": "Presidents' Day", + "1999-03-31": "Transfer Day", + "1999-04-01": "Holy Thursday", + "1999-04-02": "Good Friday", + "1999-04-05": "Easter Monday", + "1999-05-31": "Memorial Day", + "1999-07-03": "Emancipation Day", + "1999-07-04": "Independence Day", + "1999-07-05": "Independence Day (Observed)", + "1999-09-06": "Labor Day", + "1999-10-11": "Columbus Day and Puerto Rico Friendship Day", + "1999-11-01": "Liberty Day", + "1999-11-11": "Veterans Day", + "1999-11-25": "Thanksgiving", + "1999-12-24": "Christmas Day (Observed)", + "1999-12-25": "Christmas Day", + "1999-12-26": "Christmas Second Day", + "1999-12-31": "New Year's Day (Observed)", + "2000-01-01": "New Year's Day", + "2000-01-06": "Three Kings Day", + "2000-01-17": "Martin Luther King Jr. Day", + "2000-02-21": "Presidents' Day", + "2000-03-31": "Transfer Day", + "2000-04-20": "Holy Thursday", + "2000-04-21": "Good Friday", + "2000-04-24": "Easter Monday", + "2000-05-29": "Memorial Day", + "2000-07-03": "Emancipation Day", + "2000-07-04": "Independence Day", + "2000-09-04": "Labor Day", + "2000-10-09": "Columbus Day and Puerto Rico Friendship Day", + "2000-11-01": "Liberty Day", + "2000-11-10": "Veterans Day (Observed)", + "2000-11-11": "Veterans Day", + "2000-11-23": "Thanksgiving", + "2000-12-25": "Christmas Day", + "2000-12-26": "Christmas Second Day", + "2001-01-01": "New Year's Day", + "2001-01-06": "Three Kings Day", + "2001-01-15": "Martin Luther King Jr. Day", + "2001-02-19": "Presidents' Day", + "2001-03-31": "Transfer Day", + "2001-04-12": "Holy Thursday", + "2001-04-13": "Good Friday", + "2001-04-16": "Easter Monday", + "2001-05-28": "Memorial Day", + "2001-07-03": "Emancipation Day", + "2001-07-04": "Independence Day", + "2001-09-03": "Labor Day", + "2001-10-08": "Columbus Day and Puerto Rico Friendship Day", + "2001-11-01": "Liberty Day", + "2001-11-11": "Veterans Day", + "2001-11-12": "Veterans Day (Observed)", + "2001-11-22": "Thanksgiving", + "2001-12-25": "Christmas Day", + "2001-12-26": "Christmas Second Day", + "2002-01-01": "New Year's Day", + "2002-01-06": "Three Kings Day", + "2002-01-21": "Martin Luther King Jr. Day", + "2002-02-18": "Presidents' Day", + "2002-03-28": "Holy Thursday", + "2002-03-29": "Good Friday", + "2002-03-31": "Transfer Day", + "2002-04-01": "Easter Monday", + "2002-05-27": "Memorial Day", + "2002-07-03": "Emancipation Day", + "2002-07-04": "Independence Day", + "2002-09-02": "Labor Day", + "2002-10-14": "Columbus Day and Puerto Rico Friendship Day", + "2002-11-01": "Liberty Day", + "2002-11-11": "Veterans Day", + "2002-11-28": "Thanksgiving", + "2002-12-25": "Christmas Day", + "2002-12-26": "Christmas Second Day", + "2003-01-01": "New Year's Day", + "2003-01-06": "Three Kings Day", + "2003-01-20": "Martin Luther King Jr. Day", + "2003-02-17": "Presidents' Day", + "2003-03-31": "Transfer Day", + "2003-04-17": "Holy Thursday", + "2003-04-18": "Good Friday", + "2003-04-21": "Easter Monday", + "2003-05-26": "Memorial Day", + "2003-07-03": "Emancipation Day", + "2003-07-04": "Independence Day", + "2003-09-01": "Labor Day", + "2003-10-13": "Columbus Day and Puerto Rico Friendship Day", + "2003-11-01": "Liberty Day", + "2003-11-11": "Veterans Day", + "2003-11-27": "Thanksgiving", + "2003-12-25": "Christmas Day", + "2003-12-26": "Christmas Second Day", + "2004-01-01": "New Year's Day", + "2004-01-06": "Three Kings Day", + "2004-01-19": "Martin Luther King Jr. Day", + "2004-02-16": "Presidents' Day", + "2004-03-31": "Transfer Day", + "2004-04-08": "Holy Thursday", + "2004-04-09": "Good Friday", + "2004-04-12": "Easter Monday", + "2004-05-31": "Memorial Day", + "2004-07-03": "Emancipation Day", + "2004-07-04": "Independence Day", + "2004-07-05": "Independence Day (Observed)", + "2004-09-06": "Labor Day", + "2004-10-11": "Columbus Day and Puerto Rico Friendship Day", + "2004-11-01": "Liberty Day", + "2004-11-11": "Veterans Day", + "2004-11-25": "Thanksgiving", + "2004-12-24": "Christmas Day (Observed)", + "2004-12-25": "Christmas Day", + "2004-12-26": "Christmas Second Day", + "2004-12-31": "New Year's Day (Observed)", + "2005-01-01": "New Year's Day", + "2005-01-06": "Three Kings Day", + "2005-01-17": "Martin Luther King Jr. Day", + "2005-02-21": "Presidents' Day", + "2005-03-24": "Holy Thursday", + "2005-03-25": "Good Friday", + "2005-03-28": "Easter Monday", + "2005-03-31": "Transfer Day", + "2005-05-30": "Memorial Day", + "2005-07-03": "Emancipation Day", + "2005-07-04": "Independence Day", + "2005-09-05": "Labor Day", + "2005-10-10": "Columbus Day and Puerto Rico Friendship Day", + "2005-11-01": "Liberty Day", + "2005-11-11": "Veterans Day", + "2005-11-24": "Thanksgiving", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day (Observed); Christmas Second Day", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (Observed)", + "2006-01-06": "Three Kings Day", + "2006-01-16": "Martin Luther King Jr. Day", + "2006-02-20": "Presidents' Day", + "2006-03-31": "Transfer Day", + "2006-04-13": "Holy Thursday", + "2006-04-14": "Good Friday", + "2006-04-17": "Easter Monday", + "2006-05-29": "Memorial Day", + "2006-07-03": "Emancipation Day", + "2006-07-04": "Independence Day", + "2006-09-04": "Labor Day", + "2006-10-09": "Columbus Day and Puerto Rico Friendship Day", + "2006-11-01": "Liberty Day", + "2006-11-10": "Veterans Day (Observed)", + "2006-11-11": "Veterans Day", + "2006-11-23": "Thanksgiving", + "2006-12-25": "Christmas Day", + "2006-12-26": "Christmas Second Day", + "2007-01-01": "New Year's Day", + "2007-01-06": "Three Kings Day", + "2007-01-15": "Martin Luther King Jr. Day", + "2007-02-19": "Presidents' Day", + "2007-03-31": "Transfer Day", + "2007-04-05": "Holy Thursday", + "2007-04-06": "Good Friday", + "2007-04-09": "Easter Monday", + "2007-05-28": "Memorial Day", + "2007-07-03": "Emancipation Day", + "2007-07-04": "Independence Day", + "2007-09-03": "Labor Day", + "2007-10-08": "Columbus Day and Puerto Rico Friendship Day", + "2007-11-01": "Liberty Day", + "2007-11-11": "Veterans Day", + "2007-11-12": "Veterans Day (Observed)", + "2007-11-22": "Thanksgiving", + "2007-12-25": "Christmas Day", + "2007-12-26": "Christmas Second Day", + "2008-01-01": "New Year's Day", + "2008-01-06": "Three Kings Day", + "2008-01-21": "Martin Luther King Jr. Day", + "2008-02-18": "Presidents' Day", + "2008-03-20": "Holy Thursday", + "2008-03-21": "Good Friday", + "2008-03-24": "Easter Monday", + "2008-03-31": "Transfer Day", + "2008-05-26": "Memorial Day", + "2008-07-03": "Emancipation Day", + "2008-07-04": "Independence Day", + "2008-09-01": "Labor Day", + "2008-10-13": "Columbus Day and Puerto Rico Friendship Day", + "2008-11-01": "Liberty Day", + "2008-11-11": "Veterans Day", + "2008-11-27": "Thanksgiving", + "2008-12-25": "Christmas Day", + "2008-12-26": "Christmas Second Day", + "2009-01-01": "New Year's Day", + "2009-01-06": "Three Kings Day", + "2009-01-19": "Martin Luther King Jr. Day", + "2009-02-16": "Presidents' Day", + "2009-03-31": "Transfer Day", + "2009-04-09": "Holy Thursday", + "2009-04-10": "Good Friday", + "2009-04-13": "Easter Monday", + "2009-05-25": "Memorial Day", + "2009-07-03": "Emancipation Day; Independence Day (Observed)", + "2009-07-04": "Independence Day", + "2009-09-07": "Labor Day", + "2009-10-12": "Columbus Day and Puerto Rico Friendship Day", + "2009-11-01": "Liberty Day", + "2009-11-11": "Veterans Day", + "2009-11-26": "Thanksgiving", + "2009-12-25": "Christmas Day", + "2009-12-26": "Christmas Second Day", + "2010-01-01": "New Year's Day", + "2010-01-06": "Three Kings Day", + "2010-01-18": "Martin Luther King Jr. Day", + "2010-02-15": "Presidents' Day", + "2010-03-31": "Transfer Day", + "2010-04-01": "Holy Thursday", + "2010-04-02": "Good Friday", + "2010-04-05": "Easter Monday", + "2010-05-31": "Memorial Day", + "2010-07-03": "Emancipation Day", + "2010-07-04": "Independence Day", + "2010-07-05": "Independence Day (Observed)", + "2010-09-06": "Labor Day", + "2010-10-11": "Columbus Day and Puerto Rico Friendship Day", + "2010-11-01": "Liberty Day", + "2010-11-11": "Veterans Day", + "2010-11-25": "Thanksgiving", + "2010-12-24": "Christmas Day (Observed)", + "2010-12-25": "Christmas Day", + "2010-12-26": "Christmas Second Day", + "2010-12-31": "New Year's Day (Observed)", + "2011-01-01": "New Year's Day", + "2011-01-06": "Three Kings Day", + "2011-01-17": "Martin Luther King Jr. Day", + "2011-02-21": "Presidents' Day", + "2011-03-31": "Transfer Day", + "2011-04-21": "Holy Thursday", + "2011-04-22": "Good Friday", + "2011-04-25": "Easter Monday", + "2011-05-30": "Memorial Day", + "2011-07-03": "Emancipation Day", + "2011-07-04": "Independence Day", + "2011-09-05": "Labor Day", + "2011-10-10": "Columbus Day and Puerto Rico Friendship Day", + "2011-11-01": "Liberty Day", + "2011-11-11": "Veterans Day", + "2011-11-24": "Thanksgiving", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day (Observed); Christmas Second Day", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (Observed)", + "2012-01-06": "Three Kings Day", + "2012-01-16": "Martin Luther King Jr. Day", + "2012-02-20": "Presidents' Day", + "2012-03-31": "Transfer Day", + "2012-04-05": "Holy Thursday", + "2012-04-06": "Good Friday", + "2012-04-09": "Easter Monday", + "2012-05-28": "Memorial Day", + "2012-07-03": "Emancipation Day", + "2012-07-04": "Independence Day", + "2012-09-03": "Labor Day", + "2012-10-08": "Columbus Day and Puerto Rico Friendship Day", + "2012-11-01": "Liberty Day", + "2012-11-11": "Veterans Day", + "2012-11-12": "Veterans Day (Observed)", + "2012-11-22": "Thanksgiving", + "2012-12-25": "Christmas Day", + "2012-12-26": "Christmas Second Day", + "2013-01-01": "New Year's Day", + "2013-01-06": "Three Kings Day", + "2013-01-21": "Martin Luther King Jr. Day", + "2013-02-18": "Presidents' Day", + "2013-03-28": "Holy Thursday", + "2013-03-29": "Good Friday", + "2013-03-31": "Transfer Day", + "2013-04-01": "Easter Monday", + "2013-05-27": "Memorial Day", + "2013-07-03": "Emancipation Day", + "2013-07-04": "Independence Day", + "2013-09-02": "Labor Day", + "2013-10-14": "Columbus Day and Puerto Rico Friendship Day", + "2013-11-01": "Liberty Day", + "2013-11-11": "Veterans Day", + "2013-11-28": "Thanksgiving", + "2013-12-25": "Christmas Day", + "2013-12-26": "Christmas Second Day", + "2014-01-01": "New Year's Day", + "2014-01-06": "Three Kings Day", + "2014-01-20": "Martin Luther King Jr. Day", + "2014-02-17": "Presidents' Day", + "2014-03-31": "Transfer Day", + "2014-04-17": "Holy Thursday", + "2014-04-18": "Good Friday", + "2014-04-21": "Easter Monday", + "2014-05-26": "Memorial Day", + "2014-07-03": "Emancipation Day", + "2014-07-04": "Independence Day", + "2014-09-01": "Labor Day", + "2014-10-13": "Columbus Day and Puerto Rico Friendship Day", + "2014-11-01": "Liberty Day", + "2014-11-11": "Veterans Day", + "2014-11-27": "Thanksgiving", + "2014-12-25": "Christmas Day", + "2014-12-26": "Christmas Second Day", + "2015-01-01": "New Year's Day", + "2015-01-06": "Three Kings Day", + "2015-01-19": "Martin Luther King Jr. Day", + "2015-02-16": "Presidents' Day", + "2015-03-31": "Transfer Day", + "2015-04-02": "Holy Thursday", + "2015-04-03": "Good Friday", + "2015-04-06": "Easter Monday", + "2015-05-25": "Memorial Day", + "2015-07-03": "Emancipation Day; Independence Day (Observed)", + "2015-07-04": "Independence Day", + "2015-09-07": "Labor Day", + "2015-10-12": "Columbus Day and Puerto Rico Friendship Day", + "2015-11-01": "Liberty Day", + "2015-11-11": "Veterans Day", + "2015-11-26": "Thanksgiving", + "2015-12-25": "Christmas Day", + "2015-12-26": "Christmas Second Day", + "2016-01-01": "New Year's Day", + "2016-01-06": "Three Kings Day", + "2016-01-18": "Martin Luther King Jr. Day", + "2016-02-15": "Presidents' Day", + "2016-03-24": "Holy Thursday", + "2016-03-25": "Good Friday", + "2016-03-28": "Easter Monday", + "2016-03-31": "Transfer Day", + "2016-05-30": "Memorial Day", + "2016-07-03": "Emancipation Day", + "2016-07-04": "Independence Day", + "2016-09-05": "Labor Day", + "2016-10-10": "Columbus Day and Puerto Rico Friendship Day", + "2016-11-01": "Liberty Day", + "2016-11-11": "Veterans Day", + "2016-11-24": "Thanksgiving", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day (Observed); Christmas Second Day", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (Observed)", + "2017-01-06": "Three Kings Day", + "2017-01-16": "Martin Luther King Jr. Day", + "2017-02-20": "Presidents' Day", + "2017-03-31": "Transfer Day", + "2017-04-13": "Holy Thursday", + "2017-04-14": "Good Friday", + "2017-04-17": "Easter Monday", + "2017-05-29": "Memorial Day", + "2017-07-03": "Emancipation Day", + "2017-07-04": "Independence Day", + "2017-09-04": "Labor Day", + "2017-10-09": "Columbus Day and Puerto Rico Friendship Day", + "2017-11-01": "Liberty Day", + "2017-11-10": "Veterans Day (Observed)", + "2017-11-11": "Veterans Day", + "2017-11-23": "Thanksgiving", + "2017-12-25": "Christmas Day", + "2017-12-26": "Christmas Second Day", + "2018-01-01": "New Year's Day", + "2018-01-06": "Three Kings Day", + "2018-01-15": "Martin Luther King Jr. Day", + "2018-02-19": "Presidents' Day", + "2018-03-29": "Holy Thursday", + "2018-03-30": "Good Friday", + "2018-03-31": "Transfer Day", + "2018-04-02": "Easter Monday", + "2018-05-28": "Memorial Day", + "2018-07-03": "Emancipation Day", + "2018-07-04": "Independence Day", + "2018-09-03": "Labor Day", + "2018-10-08": "Columbus Day and Puerto Rico Friendship Day", + "2018-11-01": "Liberty Day", + "2018-11-11": "Veterans Day", + "2018-11-12": "Veterans Day (Observed)", + "2018-11-22": "Thanksgiving", + "2018-12-25": "Christmas Day", + "2018-12-26": "Christmas Second Day", + "2019-01-01": "New Year's Day", + "2019-01-06": "Three Kings Day", + "2019-01-21": "Martin Luther King Jr. Day", + "2019-02-18": "Presidents' Day", + "2019-03-31": "Transfer Day", + "2019-04-18": "Holy Thursday", + "2019-04-19": "Good Friday", + "2019-04-22": "Easter Monday", + "2019-05-27": "Memorial Day", + "2019-07-03": "Emancipation Day", + "2019-07-04": "Independence Day", + "2019-09-02": "Labor Day", + "2019-10-14": "Columbus Day and Puerto Rico Friendship Day", + "2019-11-01": "Liberty Day", + "2019-11-11": "Veterans Day", + "2019-11-28": "Thanksgiving", + "2019-12-25": "Christmas Day", + "2019-12-26": "Christmas Second Day", + "2020-01-01": "New Year's Day", + "2020-01-06": "Three Kings Day", + "2020-01-20": "Martin Luther King Jr. Day", + "2020-02-17": "Presidents' Day", + "2020-03-31": "Transfer Day", + "2020-04-09": "Holy Thursday", + "2020-04-10": "Good Friday", + "2020-04-13": "Easter Monday", + "2020-05-25": "Memorial Day", + "2020-07-03": "Emancipation Day; Independence Day (Observed)", + "2020-07-04": "Independence Day", + "2020-09-07": "Labor Day", + "2020-10-12": "Columbus Day and Puerto Rico Friendship Day", + "2020-11-01": "Liberty Day", + "2020-11-11": "Veterans Day", + "2020-11-26": "Thanksgiving", + "2020-12-25": "Christmas Day", + "2020-12-26": "Christmas Second Day", + "2021-01-01": "New Year's Day", + "2021-01-06": "Three Kings Day", + "2021-01-18": "Martin Luther King Jr. Day", + "2021-02-15": "Presidents' Day", + "2021-03-31": "Transfer Day", + "2021-04-01": "Holy Thursday", + "2021-04-02": "Good Friday", + "2021-04-05": "Easter Monday", + "2021-05-31": "Memorial Day", + "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-19": "Juneteenth National Independence Day", + "2021-07-03": "Emancipation Day", + "2021-07-04": "Independence Day", + "2021-07-05": "Independence Day (Observed)", + "2021-09-06": "Labor Day", + "2021-10-11": "Columbus Day and Puerto Rico Friendship Day", + "2021-11-01": "Liberty Day", + "2021-11-11": "Veterans Day", + "2021-11-25": "Thanksgiving", + "2021-12-24": "Christmas Day (Observed)", + "2021-12-25": "Christmas Day", + "2021-12-26": "Christmas Second Day", + "2021-12-31": "New Year's Day (Observed)", + "2022-01-01": "New Year's Day", + "2022-01-06": "Three Kings Day", + "2022-01-17": "Martin Luther King Jr. Day", + "2022-02-21": "Presidents' Day", + "2022-03-31": "Transfer Day", + "2022-04-14": "Holy Thursday", + "2022-04-15": "Good Friday", + "2022-04-18": "Easter Monday", + "2022-05-30": "Memorial Day", + "2022-06-19": "Juneteenth National Independence Day", + "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-07-03": "Emancipation Day", + "2022-07-04": "Independence Day", + "2022-09-05": "Labor Day", + "2022-10-10": "Columbus Day and Puerto Rico Friendship Day", + "2022-11-01": "Liberty Day", + "2022-11-11": "Veterans Day", + "2022-11-24": "Thanksgiving", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day (Observed); Christmas Second Day", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (Observed)", + "2023-01-06": "Three Kings Day", + "2023-01-16": "Martin Luther King Jr. Day", + "2023-02-20": "Presidents' Day", + "2023-03-31": "Transfer Day", + "2023-04-06": "Holy Thursday", + "2023-04-07": "Good Friday", + "2023-04-10": "Easter Monday", + "2023-05-29": "Memorial Day", + "2023-06-19": "Juneteenth National Independence Day", + "2023-07-03": "Emancipation Day", + "2023-07-04": "Independence Day", + "2023-09-04": "Labor Day", + "2023-10-09": "Columbus Day and Puerto Rico Friendship Day", + "2023-11-01": "Liberty Day", + "2023-11-10": "Veterans Day (Observed)", + "2023-11-11": "Veterans Day", + "2023-11-23": "Thanksgiving", + "2023-12-25": "Christmas Day", + "2023-12-26": "Christmas Second Day", + "2024-01-01": "New Year's Day", + "2024-01-06": "Three Kings Day", + "2024-01-15": "Martin Luther King Jr. Day", + "2024-02-19": "Presidents' Day", + "2024-03-28": "Holy Thursday", + "2024-03-29": "Good Friday", + "2024-03-31": "Transfer Day", + "2024-04-01": "Easter Monday", + "2024-05-27": "Memorial Day", + "2024-06-19": "Juneteenth National Independence Day", + "2024-07-03": "Emancipation Day", + "2024-07-04": "Independence Day", + "2024-09-02": "Labor Day", + "2024-10-14": "Columbus Day and Puerto Rico Friendship Day", + "2024-11-01": "Liberty Day", + "2024-11-11": "Veterans Day", + "2024-11-28": "Thanksgiving", + "2024-12-25": "Christmas Day", + "2024-12-26": "Christmas Second Day", + "2025-01-01": "New Year's Day", + "2025-01-06": "Three Kings Day", + "2025-01-20": "Martin Luther King Jr. Day", + "2025-02-17": "Presidents' Day", + "2025-03-31": "Transfer Day", + "2025-04-17": "Holy Thursday", + "2025-04-18": "Good Friday", + "2025-04-21": "Easter Monday", + "2025-05-26": "Memorial Day", + "2025-06-19": "Juneteenth National Independence Day", + "2025-07-03": "Emancipation Day", + "2025-07-04": "Independence Day", + "2025-09-01": "Labor Day", + "2025-10-13": "Columbus Day and Puerto Rico Friendship Day", + "2025-11-01": "Liberty Day", + "2025-11-11": "Veterans Day", + "2025-11-27": "Thanksgiving", + "2025-12-25": "Christmas Day", + "2025-12-26": "Christmas Second Day", + "2026-01-01": "New Year's Day", + "2026-01-06": "Three Kings Day", + "2026-01-19": "Martin Luther King Jr. Day", + "2026-02-16": "Presidents' Day", + "2026-03-31": "Transfer Day", + "2026-04-02": "Holy Thursday", + "2026-04-03": "Good Friday", + "2026-04-06": "Easter Monday", + "2026-05-25": "Memorial Day", + "2026-06-19": "Juneteenth National Independence Day", + "2026-07-03": "Emancipation Day; Independence Day (Observed)", + "2026-07-04": "Independence Day", + "2026-09-07": "Labor Day", + "2026-10-12": "Columbus Day and Puerto Rico Friendship Day", + "2026-11-01": "Liberty Day", + "2026-11-11": "Veterans Day", + "2026-11-26": "Thanksgiving", + "2026-12-25": "Christmas Day", + "2026-12-26": "Christmas Second Day", + "2027-01-01": "New Year's Day", + "2027-01-06": "Three Kings Day", + "2027-01-18": "Martin Luther King Jr. Day", + "2027-02-15": "Presidents' Day", + "2027-03-25": "Holy Thursday", + "2027-03-26": "Good Friday", + "2027-03-29": "Easter Monday", + "2027-03-31": "Transfer Day", + "2027-05-31": "Memorial Day", + "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-19": "Juneteenth National Independence Day", + "2027-07-03": "Emancipation Day", + "2027-07-04": "Independence Day", + "2027-07-05": "Independence Day (Observed)", + "2027-09-06": "Labor Day", + "2027-10-11": "Columbus Day and Puerto Rico Friendship Day", + "2027-11-01": "Liberty Day", + "2027-11-11": "Veterans Day", + "2027-11-25": "Thanksgiving", + "2027-12-24": "Christmas Day (Observed)", + "2027-12-25": "Christmas Day", + "2027-12-26": "Christmas Second Day", + "2027-12-31": "New Year's Day (Observed)", + "2028-01-01": "New Year's Day", + "2028-01-06": "Three Kings Day", + "2028-01-17": "Martin Luther King Jr. Day", + "2028-02-21": "Presidents' Day", + "2028-03-31": "Transfer Day", + "2028-04-13": "Holy Thursday", + "2028-04-14": "Good Friday", + "2028-04-17": "Easter Monday", + "2028-05-29": "Memorial Day", + "2028-06-19": "Juneteenth National Independence Day", + "2028-07-03": "Emancipation Day", + "2028-07-04": "Independence Day", + "2028-09-04": "Labor Day", + "2028-10-09": "Columbus Day and Puerto Rico Friendship Day", + "2028-11-01": "Liberty Day", + "2028-11-10": "Veterans Day (Observed)", + "2028-11-11": "Veterans Day", + "2028-11-23": "Thanksgiving", + "2028-12-25": "Christmas Day", + "2028-12-26": "Christmas Second Day", + "2029-01-01": "New Year's Day", + "2029-01-06": "Three Kings Day", + "2029-01-15": "Martin Luther King Jr. Day", + "2029-02-19": "Presidents' Day", + "2029-03-29": "Holy Thursday", + "2029-03-30": "Good Friday", + "2029-03-31": "Transfer Day", + "2029-04-02": "Easter Monday", + "2029-05-28": "Memorial Day", + "2029-06-19": "Juneteenth National Independence Day", + "2029-07-03": "Emancipation Day", + "2029-07-04": "Independence Day", + "2029-09-03": "Labor Day", + "2029-10-08": "Columbus Day and Puerto Rico Friendship Day", + "2029-11-01": "Liberty Day", + "2029-11-11": "Veterans Day", + "2029-11-12": "Veterans Day (Observed)", + "2029-11-22": "Thanksgiving", + "2029-12-25": "Christmas Day", + "2029-12-26": "Christmas Second Day", + "2030-01-01": "New Year's Day", + "2030-01-06": "Three Kings Day", + "2030-01-21": "Martin Luther King Jr. Day", + "2030-02-18": "Presidents' Day", + "2030-03-31": "Transfer Day", + "2030-04-18": "Holy Thursday", + "2030-04-19": "Good Friday", + "2030-04-22": "Easter Monday", + "2030-05-27": "Memorial Day", + "2030-06-19": "Juneteenth National Independence Day", + "2030-07-03": "Emancipation Day", + "2030-07-04": "Independence Day", + "2030-09-02": "Labor Day", + "2030-10-14": "Columbus Day and Puerto Rico Friendship Day", + "2030-11-01": "Liberty Day", + "2030-11-11": "Veterans Day", + "2030-11-28": "Thanksgiving", + "2030-12-25": "Christmas Day", + "2030-12-26": "Christmas Second Day", + "2031-01-01": "New Year's Day", + "2031-01-06": "Three Kings Day", + "2031-01-20": "Martin Luther King Jr. Day", + "2031-02-17": "Presidents' Day", + "2031-03-31": "Transfer Day", + "2031-04-10": "Holy Thursday", + "2031-04-11": "Good Friday", + "2031-04-14": "Easter Monday", + "2031-05-26": "Memorial Day", + "2031-06-19": "Juneteenth National Independence Day", + "2031-07-03": "Emancipation Day", + "2031-07-04": "Independence Day", + "2031-09-01": "Labor Day", + "2031-10-13": "Columbus Day and Puerto Rico Friendship Day", + "2031-11-01": "Liberty Day", + "2031-11-11": "Veterans Day", + "2031-11-27": "Thanksgiving", + "2031-12-25": "Christmas Day", + "2031-12-26": "Christmas Second Day", + "2032-01-01": "New Year's Day", + "2032-01-06": "Three Kings Day", + "2032-01-19": "Martin Luther King Jr. Day", + "2032-02-16": "Presidents' Day", + "2032-03-25": "Holy Thursday", + "2032-03-26": "Good Friday", + "2032-03-29": "Easter Monday", + "2032-03-31": "Transfer Day", + "2032-05-31": "Memorial Day", + "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-19": "Juneteenth National Independence Day", + "2032-07-03": "Emancipation Day", + "2032-07-04": "Independence Day", + "2032-07-05": "Independence Day (Observed)", + "2032-09-06": "Labor Day", + "2032-10-11": "Columbus Day and Puerto Rico Friendship Day", + "2032-11-01": "Liberty Day", + "2032-11-11": "Veterans Day", + "2032-11-25": "Thanksgiving", + "2032-12-24": "Christmas Day (Observed)", + "2032-12-25": "Christmas Day", + "2032-12-26": "Christmas Second Day", + "2032-12-31": "New Year's Day (Observed)", + "2033-01-01": "New Year's Day", + "2033-01-06": "Three Kings Day", + "2033-01-17": "Martin Luther King Jr. Day", + "2033-02-21": "Presidents' Day", + "2033-03-31": "Transfer Day", + "2033-04-14": "Holy Thursday", + "2033-04-15": "Good Friday", + "2033-04-18": "Easter Monday", + "2033-05-30": "Memorial Day", + "2033-06-19": "Juneteenth National Independence Day", + "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-07-03": "Emancipation Day", + "2033-07-04": "Independence Day", + "2033-09-05": "Labor Day", + "2033-10-10": "Columbus Day and Puerto Rico Friendship Day", + "2033-11-01": "Liberty Day", + "2033-11-11": "Veterans Day", + "2033-11-24": "Thanksgiving", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day (Observed); Christmas Second Day", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-01-06": "Three Kings Day", + "2034-01-16": "Martin Luther King Jr. Day", + "2034-02-20": "Presidents' Day", + "2034-03-31": "Transfer Day", + "2034-04-06": "Holy Thursday", + "2034-04-07": "Good Friday", + "2034-04-10": "Easter Monday", + "2034-05-29": "Memorial Day", + "2034-06-19": "Juneteenth National Independence Day", + "2034-07-03": "Emancipation Day", + "2034-07-04": "Independence Day", + "2034-09-04": "Labor Day", + "2034-10-09": "Columbus Day and Puerto Rico Friendship Day", + "2034-11-01": "Liberty Day", + "2034-11-10": "Veterans Day (Observed)", + "2034-11-11": "Veterans Day", + "2034-11-23": "Thanksgiving", + "2034-12-25": "Christmas Day", + "2034-12-26": "Christmas Second Day", + "2035-01-01": "New Year's Day", + "2035-01-06": "Three Kings Day", + "2035-01-15": "Martin Luther King Jr. Day", + "2035-02-19": "Presidents' Day", + "2035-03-22": "Holy Thursday", + "2035-03-23": "Good Friday", + "2035-03-26": "Easter Monday", + "2035-03-31": "Transfer Day", + "2035-05-28": "Memorial Day", + "2035-06-19": "Juneteenth National Independence Day", + "2035-07-03": "Emancipation Day", + "2035-07-04": "Independence Day", + "2035-09-03": "Labor Day", + "2035-10-08": "Columbus Day and Puerto Rico Friendship Day", + "2035-11-01": "Liberty Day", + "2035-11-11": "Veterans Day", + "2035-11-12": "Veterans Day (Observed)", + "2035-11-22": "Thanksgiving", + "2035-12-25": "Christmas Day", + "2035-12-26": "Christmas Second Day", + "2036-01-01": "New Year's Day", + "2036-01-06": "Three Kings Day", + "2036-01-21": "Martin Luther King Jr. Day", + "2036-02-18": "Presidents' Day", + "2036-03-31": "Transfer Day", + "2036-04-10": "Holy Thursday", + "2036-04-11": "Good Friday", + "2036-04-14": "Easter Monday", + "2036-05-26": "Memorial Day", + "2036-06-19": "Juneteenth National Independence Day", + "2036-07-03": "Emancipation Day", + "2036-07-04": "Independence Day", + "2036-09-01": "Labor Day", + "2036-10-13": "Columbus Day and Puerto Rico Friendship Day", + "2036-11-01": "Liberty Day", + "2036-11-11": "Veterans Day", + "2036-11-27": "Thanksgiving", + "2036-12-25": "Christmas Day", + "2036-12-26": "Christmas Second Day", + "2037-01-01": "New Year's Day", + "2037-01-06": "Three Kings Day", + "2037-01-19": "Martin Luther King Jr. Day", + "2037-02-16": "Presidents' Day", + "2037-03-31": "Transfer Day", + "2037-04-02": "Holy Thursday", + "2037-04-03": "Good Friday", + "2037-04-06": "Easter Monday", + "2037-05-25": "Memorial Day", + "2037-06-19": "Juneteenth National Independence Day", + "2037-07-03": "Emancipation Day; Independence Day (Observed)", + "2037-07-04": "Independence Day", + "2037-09-07": "Labor Day", + "2037-10-12": "Columbus Day and Puerto Rico Friendship Day", + "2037-11-01": "Liberty Day", + "2037-11-11": "Veterans Day", + "2037-11-26": "Thanksgiving", + "2037-12-25": "Christmas Day", + "2037-12-26": "Christmas Second Day", + "2038-01-01": "New Year's Day", + "2038-01-06": "Three Kings Day", + "2038-01-18": "Martin Luther King Jr. Day", + "2038-02-15": "Presidents' Day", + "2038-03-31": "Transfer Day", + "2038-04-22": "Holy Thursday", + "2038-04-23": "Good Friday", + "2038-04-26": "Easter Monday", + "2038-05-31": "Memorial Day", + "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-19": "Juneteenth National Independence Day", + "2038-07-03": "Emancipation Day", + "2038-07-04": "Independence Day", + "2038-07-05": "Independence Day (Observed)", + "2038-09-06": "Labor Day", + "2038-10-11": "Columbus Day and Puerto Rico Friendship Day", + "2038-11-01": "Liberty Day", + "2038-11-11": "Veterans Day", + "2038-11-25": "Thanksgiving", + "2038-12-24": "Christmas Day (Observed)", + "2038-12-25": "Christmas Day", + "2038-12-26": "Christmas Second Day", + "2038-12-31": "New Year's Day (Observed)", + "2039-01-01": "New Year's Day", + "2039-01-06": "Three Kings Day", + "2039-01-17": "Martin Luther King Jr. Day", + "2039-02-21": "Presidents' Day", + "2039-03-31": "Transfer Day", + "2039-04-07": "Holy Thursday", + "2039-04-08": "Good Friday", + "2039-04-11": "Easter Monday", + "2039-05-30": "Memorial Day", + "2039-06-19": "Juneteenth National Independence Day", + "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-07-03": "Emancipation Day", + "2039-07-04": "Independence Day", + "2039-09-05": "Labor Day", + "2039-10-10": "Columbus Day and Puerto Rico Friendship Day", + "2039-11-01": "Liberty Day", + "2039-11-11": "Veterans Day", + "2039-11-24": "Thanksgiving", + "2039-12-25": "Christmas Day", + "2039-12-26": "Christmas Day (Observed); Christmas Second Day", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (Observed)", + "2040-01-06": "Three Kings Day", + "2040-01-16": "Martin Luther King Jr. Day", + "2040-02-20": "Presidents' Day", + "2040-03-29": "Holy Thursday", + "2040-03-30": "Good Friday", + "2040-03-31": "Transfer Day", + "2040-04-02": "Easter Monday", + "2040-05-28": "Memorial Day", + "2040-06-19": "Juneteenth National Independence Day", + "2040-07-03": "Emancipation Day", + "2040-07-04": "Independence Day", + "2040-09-03": "Labor Day", + "2040-10-08": "Columbus Day and Puerto Rico Friendship Day", + "2040-11-01": "Liberty Day", + "2040-11-11": "Veterans Day", + "2040-11-12": "Veterans Day (Observed)", + "2040-11-22": "Thanksgiving", + "2040-12-25": "Christmas Day", + "2040-12-26": "Christmas Second Day", + "2041-01-01": "New Year's Day", + "2041-01-06": "Three Kings Day", + "2041-01-21": "Martin Luther King Jr. Day", + "2041-02-18": "Presidents' Day", + "2041-03-31": "Transfer Day", + "2041-04-18": "Holy Thursday", + "2041-04-19": "Good Friday", + "2041-04-22": "Easter Monday", + "2041-05-27": "Memorial Day", + "2041-06-19": "Juneteenth National Independence Day", + "2041-07-03": "Emancipation Day", + "2041-07-04": "Independence Day", + "2041-09-02": "Labor Day", + "2041-10-14": "Columbus Day and Puerto Rico Friendship Day", + "2041-11-01": "Liberty Day", + "2041-11-11": "Veterans Day", + "2041-11-28": "Thanksgiving", + "2041-12-25": "Christmas Day", + "2041-12-26": "Christmas Second Day", + "2042-01-01": "New Year's Day", + "2042-01-06": "Three Kings Day", + "2042-01-20": "Martin Luther King Jr. Day", + "2042-02-17": "Presidents' Day", + "2042-03-31": "Transfer Day", + "2042-04-03": "Holy Thursday", + "2042-04-04": "Good Friday", + "2042-04-07": "Easter Monday", + "2042-05-26": "Memorial Day", + "2042-06-19": "Juneteenth National Independence Day", + "2042-07-03": "Emancipation Day", + "2042-07-04": "Independence Day", + "2042-09-01": "Labor Day", + "2042-10-13": "Columbus Day and Puerto Rico Friendship Day", + "2042-11-01": "Liberty Day", + "2042-11-11": "Veterans Day", + "2042-11-27": "Thanksgiving", + "2042-12-25": "Christmas Day", + "2042-12-26": "Christmas Second Day", + "2043-01-01": "New Year's Day", + "2043-01-06": "Three Kings Day", + "2043-01-19": "Martin Luther King Jr. Day", + "2043-02-16": "Presidents' Day", + "2043-03-26": "Holy Thursday", + "2043-03-27": "Good Friday", + "2043-03-30": "Easter Monday", + "2043-03-31": "Transfer Day", + "2043-05-25": "Memorial Day", + "2043-06-19": "Juneteenth National Independence Day", + "2043-07-03": "Emancipation Day; Independence Day (Observed)", + "2043-07-04": "Independence Day", + "2043-09-07": "Labor Day", + "2043-10-12": "Columbus Day and Puerto Rico Friendship Day", + "2043-11-01": "Liberty Day", + "2043-11-11": "Veterans Day", + "2043-11-26": "Thanksgiving", + "2043-12-25": "Christmas Day", + "2043-12-26": "Christmas Second Day", + "2044-01-01": "New Year's Day", + "2044-01-06": "Three Kings Day", + "2044-01-18": "Martin Luther King Jr. Day", + "2044-02-15": "Presidents' Day", + "2044-03-31": "Transfer Day", + "2044-04-14": "Holy Thursday", + "2044-04-15": "Good Friday", + "2044-04-18": "Easter Monday", + "2044-05-30": "Memorial Day", + "2044-06-19": "Juneteenth National Independence Day", + "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-07-03": "Emancipation Day", + "2044-07-04": "Independence Day", + "2044-09-05": "Labor Day", + "2044-10-10": "Columbus Day and Puerto Rico Friendship Day", + "2044-11-01": "Liberty Day", + "2044-11-11": "Veterans Day", + "2044-11-24": "Thanksgiving", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day (Observed); Christmas Second Day", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (Observed)", + "2045-01-06": "Three Kings Day", + "2045-01-16": "Martin Luther King Jr. Day", + "2045-02-20": "Presidents' Day", + "2045-03-31": "Transfer Day", + "2045-04-06": "Holy Thursday", + "2045-04-07": "Good Friday", + "2045-04-10": "Easter Monday", + "2045-05-29": "Memorial Day", + "2045-06-19": "Juneteenth National Independence Day", + "2045-07-03": "Emancipation Day", + "2045-07-04": "Independence Day", + "2045-09-04": "Labor Day", + "2045-10-09": "Columbus Day and Puerto Rico Friendship Day", + "2045-11-01": "Liberty Day", + "2045-11-10": "Veterans Day (Observed)", + "2045-11-11": "Veterans Day", + "2045-11-23": "Thanksgiving", + "2045-12-25": "Christmas Day", + "2045-12-26": "Christmas Second Day", + "2046-01-01": "New Year's Day", + "2046-01-06": "Three Kings Day", + "2046-01-15": "Martin Luther King Jr. Day", + "2046-02-19": "Presidents' Day", + "2046-03-22": "Holy Thursday", + "2046-03-23": "Good Friday", + "2046-03-26": "Easter Monday", + "2046-03-31": "Transfer Day", + "2046-05-28": "Memorial Day", + "2046-06-19": "Juneteenth National Independence Day", + "2046-07-03": "Emancipation Day", + "2046-07-04": "Independence Day", + "2046-09-03": "Labor Day", + "2046-10-08": "Columbus Day and Puerto Rico Friendship Day", + "2046-11-01": "Liberty Day", + "2046-11-11": "Veterans Day", + "2046-11-12": "Veterans Day (Observed)", + "2046-11-22": "Thanksgiving", + "2046-12-25": "Christmas Day", + "2046-12-26": "Christmas Second Day", + "2047-01-01": "New Year's Day", + "2047-01-06": "Three Kings Day", + "2047-01-21": "Martin Luther King Jr. Day", + "2047-02-18": "Presidents' Day", + "2047-03-31": "Transfer Day", + "2047-04-11": "Holy Thursday", + "2047-04-12": "Good Friday", + "2047-04-15": "Easter Monday", + "2047-05-27": "Memorial Day", + "2047-06-19": "Juneteenth National Independence Day", + "2047-07-03": "Emancipation Day", + "2047-07-04": "Independence Day", + "2047-09-02": "Labor Day", + "2047-10-14": "Columbus Day and Puerto Rico Friendship Day", + "2047-11-01": "Liberty Day", + "2047-11-11": "Veterans Day", + "2047-11-28": "Thanksgiving", + "2047-12-25": "Christmas Day", + "2047-12-26": "Christmas Second Day", + "2048-01-01": "New Year's Day", + "2048-01-06": "Three Kings Day", + "2048-01-20": "Martin Luther King Jr. Day", + "2048-02-17": "Presidents' Day", + "2048-03-31": "Transfer Day", + "2048-04-02": "Holy Thursday", + "2048-04-03": "Good Friday", + "2048-04-06": "Easter Monday", + "2048-05-25": "Memorial Day", + "2048-06-19": "Juneteenth National Independence Day", + "2048-07-03": "Emancipation Day; Independence Day (Observed)", + "2048-07-04": "Independence Day", + "2048-09-07": "Labor Day", + "2048-10-12": "Columbus Day and Puerto Rico Friendship Day", + "2048-11-01": "Liberty Day", + "2048-11-11": "Veterans Day", + "2048-11-26": "Thanksgiving", + "2048-12-25": "Christmas Day", + "2048-12-26": "Christmas Second Day", + "2049-01-01": "New Year's Day", + "2049-01-06": "Three Kings Day", + "2049-01-18": "Martin Luther King Jr. Day", + "2049-02-15": "Presidents' Day", + "2049-03-31": "Transfer Day", + "2049-04-15": "Holy Thursday", + "2049-04-16": "Good Friday", + "2049-04-19": "Easter Monday", + "2049-05-31": "Memorial Day", + "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-19": "Juneteenth National Independence Day", + "2049-07-03": "Emancipation Day", + "2049-07-04": "Independence Day", + "2049-07-05": "Independence Day (Observed)", + "2049-09-06": "Labor Day", + "2049-10-11": "Columbus Day and Puerto Rico Friendship Day", + "2049-11-01": "Liberty Day", + "2049-11-11": "Veterans Day", + "2049-11-25": "Thanksgiving", + "2049-12-24": "Christmas Day (Observed)", + "2049-12-25": "Christmas Day", + "2049-12-26": "Christmas Second Day", + "2049-12-31": "New Year's Day (Observed)", + "2050-01-01": "New Year's Day", + "2050-01-06": "Three Kings Day", + "2050-01-17": "Martin Luther King Jr. Day", + "2050-02-21": "Presidents' Day", + "2050-03-31": "Transfer Day", + "2050-04-07": "Holy Thursday", + "2050-04-08": "Good Friday", + "2050-04-11": "Easter Monday", + "2050-05-30": "Memorial Day", + "2050-06-19": "Juneteenth National Independence Day", + "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-07-03": "Emancipation Day", + "2050-07-04": "Independence Day", + "2050-09-05": "Labor Day", + "2050-10-10": "Columbus Day and Puerto Rico Friendship Day", + "2050-11-01": "Liberty Day", + "2050-11-11": "Veterans Day", + "2050-11-24": "Thanksgiving", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day (Observed); Christmas Second Day" +} diff --git a/snapshots/countries/VN.json b/snapshots/countries/VN.json new file mode 100644 index 000000000..b5f80b55c --- /dev/null +++ b/snapshots/countries/VN.json @@ -0,0 +1,1186 @@ +{ + "1950-01-01": "International New Year's Day", + "1950-01-02": "International New Year's Day (Observed)", + "1950-02-16": "Vietnamese New Year's Eve", + "1950-02-17": "Vietnamese New Year", + "1950-02-18": "The second day of Tet Holiday", + "1950-02-19": "The third day of Tet Holiday", + "1950-02-20": "The forth day of Tet Holiday", + "1950-02-21": "The fifth day of Tet Holiday", + "1950-04-30": "Liberation Day/Reunification Day", + "1950-05-01": "International Labor Day", + "1950-05-02": "Liberation Day/Reunification Day (Observed)", + "1950-09-02": "Independence Day", + "1950-09-04": "Independence Day (Observed)", + "1951-01-01": "International New Year's Day", + "1951-02-05": "Vietnamese New Year's Eve", + "1951-02-06": "Vietnamese New Year", + "1951-02-07": "The second day of Tet Holiday", + "1951-02-08": "The third day of Tet Holiday", + "1951-02-09": "The forth day of Tet Holiday", + "1951-02-10": "The fifth day of Tet Holiday", + "1951-04-30": "Liberation Day/Reunification Day", + "1951-05-01": "International Labor Day", + "1951-09-02": "Independence Day", + "1951-09-03": "Independence Day (Observed)", + "1952-01-01": "International New Year's Day", + "1952-01-26": "Vietnamese New Year's Eve", + "1952-01-27": "Vietnamese New Year", + "1952-01-28": "The second day of Tet Holiday", + "1952-01-29": "The third day of Tet Holiday", + "1952-01-30": "The forth day of Tet Holiday", + "1952-01-31": "The fifth day of Tet Holiday", + "1952-04-30": "Liberation Day/Reunification Day", + "1952-05-01": "International Labor Day", + "1952-09-02": "Independence Day", + "1953-01-01": "International New Year's Day", + "1953-02-13": "Vietnamese New Year's Eve", + "1953-02-14": "Vietnamese New Year", + "1953-02-15": "The second day of Tet Holiday", + "1953-02-16": "The third day of Tet Holiday", + "1953-02-17": "The forth day of Tet Holiday", + "1953-02-18": "The fifth day of Tet Holiday", + "1953-04-30": "Liberation Day/Reunification Day", + "1953-05-01": "International Labor Day", + "1953-09-02": "Independence Day", + "1954-01-01": "International New Year's Day", + "1954-02-02": "Vietnamese New Year's Eve", + "1954-02-03": "Vietnamese New Year", + "1954-02-04": "The second day of Tet Holiday", + "1954-02-05": "The third day of Tet Holiday", + "1954-02-06": "The forth day of Tet Holiday", + "1954-02-07": "The fifth day of Tet Holiday", + "1954-04-30": "Liberation Day/Reunification Day", + "1954-05-01": "International Labor Day", + "1954-05-03": "International Labor Day (Observed)", + "1954-09-02": "Independence Day", + "1955-01-01": "International New Year's Day", + "1955-01-03": "International New Year's Day (Observed)", + "1955-01-23": "Vietnamese New Year's Eve", + "1955-01-24": "Vietnamese New Year", + "1955-01-25": "The second day of Tet Holiday", + "1955-01-26": "The third day of Tet Holiday", + "1955-01-27": "The forth day of Tet Holiday", + "1955-01-28": "The fifth day of Tet Holiday", + "1955-04-30": "Liberation Day/Reunification Day", + "1955-05-01": "International Labor Day", + "1955-05-02": "Liberation Day/Reunification Day (Observed)", + "1955-05-03": "International Labor Day (Observed)", + "1955-09-02": "Independence Day", + "1956-01-01": "International New Year's Day", + "1956-01-02": "International New Year's Day (Observed)", + "1956-02-11": "Vietnamese New Year's Eve", + "1956-02-12": "Vietnamese New Year", + "1956-02-13": "The second day of Tet Holiday", + "1956-02-14": "The third day of Tet Holiday", + "1956-02-15": "The forth day of Tet Holiday", + "1956-02-16": "The fifth day of Tet Holiday", + "1956-04-30": "Liberation Day/Reunification Day", + "1956-05-01": "International Labor Day", + "1956-09-02": "Independence Day", + "1956-09-03": "Independence Day (Observed)", + "1957-01-01": "International New Year's Day", + "1957-01-30": "Vietnamese New Year's Eve", + "1957-01-31": "Vietnamese New Year", + "1957-02-01": "The second day of Tet Holiday", + "1957-02-02": "The third day of Tet Holiday", + "1957-02-03": "The forth day of Tet Holiday", + "1957-02-04": "The fifth day of Tet Holiday", + "1957-04-30": "Liberation Day/Reunification Day", + "1957-05-01": "International Labor Day", + "1957-09-02": "Independence Day", + "1958-01-01": "International New Year's Day", + "1958-02-17": "Vietnamese New Year's Eve", + "1958-02-18": "Vietnamese New Year", + "1958-02-19": "The second day of Tet Holiday", + "1958-02-20": "The third day of Tet Holiday", + "1958-02-21": "The forth day of Tet Holiday", + "1958-02-22": "The fifth day of Tet Holiday", + "1958-04-30": "Liberation Day/Reunification Day", + "1958-05-01": "International Labor Day", + "1958-09-02": "Independence Day", + "1959-01-01": "International New Year's Day", + "1959-02-07": "Vietnamese New Year's Eve", + "1959-02-08": "Vietnamese New Year", + "1959-02-09": "The second day of Tet Holiday", + "1959-02-10": "The third day of Tet Holiday", + "1959-02-11": "The forth day of Tet Holiday", + "1959-02-12": "The fifth day of Tet Holiday", + "1959-04-30": "Liberation Day/Reunification Day", + "1959-05-01": "International Labor Day", + "1959-09-02": "Independence Day", + "1960-01-01": "International New Year's Day", + "1960-01-27": "Vietnamese New Year's Eve", + "1960-01-28": "Vietnamese New Year", + "1960-01-29": "The second day of Tet Holiday", + "1960-01-30": "The third day of Tet Holiday", + "1960-01-31": "The forth day of Tet Holiday", + "1960-02-01": "The fifth day of Tet Holiday", + "1960-04-30": "Liberation Day/Reunification Day", + "1960-05-01": "International Labor Day", + "1960-05-02": "Liberation Day/Reunification Day (Observed)", + "1960-05-03": "International Labor Day (Observed)", + "1960-09-02": "Independence Day", + "1961-01-01": "International New Year's Day", + "1961-01-02": "International New Year's Day (Observed)", + "1961-02-14": "Vietnamese New Year's Eve", + "1961-02-15": "Vietnamese New Year", + "1961-02-16": "The second day of Tet Holiday", + "1961-02-17": "The third day of Tet Holiday", + "1961-02-18": "The forth day of Tet Holiday", + "1961-02-19": "The fifth day of Tet Holiday", + "1961-04-30": "Liberation Day/Reunification Day", + "1961-05-01": "International Labor Day", + "1961-05-02": "Liberation Day/Reunification Day (Observed)", + "1961-09-02": "Independence Day", + "1961-09-04": "Independence Day (Observed)", + "1962-01-01": "International New Year's Day", + "1962-02-04": "Vietnamese New Year's Eve", + "1962-02-05": "Vietnamese New Year", + "1962-02-06": "The second day of Tet Holiday", + "1962-02-07": "The third day of Tet Holiday", + "1962-02-08": "The forth day of Tet Holiday", + "1962-02-09": "The fifth day of Tet Holiday", + "1962-04-30": "Liberation Day/Reunification Day", + "1962-05-01": "International Labor Day", + "1962-09-02": "Independence Day", + "1962-09-03": "Independence Day (Observed)", + "1963-01-01": "International New Year's Day", + "1963-01-24": "Vietnamese New Year's Eve", + "1963-01-25": "Vietnamese New Year", + "1963-01-26": "The second day of Tet Holiday", + "1963-01-27": "The third day of Tet Holiday", + "1963-01-28": "The forth day of Tet Holiday", + "1963-01-29": "The fifth day of Tet Holiday", + "1963-04-30": "Liberation Day/Reunification Day", + "1963-05-01": "International Labor Day", + "1963-09-02": "Independence Day", + "1964-01-01": "International New Year's Day", + "1964-02-12": "Vietnamese New Year's Eve", + "1964-02-13": "Vietnamese New Year", + "1964-02-14": "The second day of Tet Holiday", + "1964-02-15": "The third day of Tet Holiday", + "1964-02-16": "The forth day of Tet Holiday", + "1964-02-17": "The fifth day of Tet Holiday", + "1964-04-30": "Liberation Day/Reunification Day", + "1964-05-01": "International Labor Day", + "1964-09-02": "Independence Day", + "1965-01-01": "International New Year's Day", + "1965-02-01": "Vietnamese New Year's Eve", + "1965-02-02": "Vietnamese New Year", + "1965-02-03": "The second day of Tet Holiday", + "1965-02-04": "The third day of Tet Holiday", + "1965-02-05": "The forth day of Tet Holiday", + "1965-02-06": "The fifth day of Tet Holiday", + "1965-04-30": "Liberation Day/Reunification Day", + "1965-05-01": "International Labor Day", + "1965-05-03": "International Labor Day (Observed)", + "1965-09-02": "Independence Day", + "1966-01-01": "International New Year's Day", + "1966-01-03": "International New Year's Day (Observed)", + "1966-01-20": "Vietnamese New Year's Eve", + "1966-01-21": "Vietnamese New Year", + "1966-01-22": "The second day of Tet Holiday", + "1966-01-23": "The third day of Tet Holiday", + "1966-01-24": "The forth day of Tet Holiday", + "1966-01-25": "The fifth day of Tet Holiday", + "1966-04-30": "Liberation Day/Reunification Day", + "1966-05-01": "International Labor Day", + "1966-05-02": "Liberation Day/Reunification Day (Observed)", + "1966-05-03": "International Labor Day (Observed)", + "1966-09-02": "Independence Day", + "1967-01-01": "International New Year's Day", + "1967-01-02": "International New Year's Day (Observed)", + "1967-02-08": "Vietnamese New Year's Eve", + "1967-02-09": "Vietnamese New Year", + "1967-02-10": "The second day of Tet Holiday", + "1967-02-11": "The third day of Tet Holiday", + "1967-02-12": "The forth day of Tet Holiday", + "1967-02-13": "The fifth day of Tet Holiday", + "1967-04-30": "Liberation Day/Reunification Day", + "1967-05-01": "International Labor Day", + "1967-05-02": "Liberation Day/Reunification Day (Observed)", + "1967-09-02": "Independence Day", + "1967-09-04": "Independence Day (Observed)", + "1968-01-01": "International New Year's Day", + "1968-01-29": "Vietnamese New Year's Eve", + "1968-01-30": "Vietnamese New Year", + "1968-01-31": "The second day of Tet Holiday", + "1968-02-01": "The third day of Tet Holiday", + "1968-02-02": "The forth day of Tet Holiday", + "1968-02-03": "The fifth day of Tet Holiday", + "1968-04-30": "Liberation Day/Reunification Day", + "1968-05-01": "International Labor Day", + "1968-09-02": "Independence Day", + "1969-01-01": "International New Year's Day", + "1969-02-16": "Vietnamese New Year's Eve", + "1969-02-17": "Vietnamese New Year", + "1969-02-18": "The second day of Tet Holiday", + "1969-02-19": "The third day of Tet Holiday", + "1969-02-20": "The forth day of Tet Holiday", + "1969-02-21": "The fifth day of Tet Holiday", + "1969-04-30": "Liberation Day/Reunification Day", + "1969-05-01": "International Labor Day", + "1969-09-02": "Independence Day", + "1970-01-01": "International New Year's Day", + "1970-02-05": "Vietnamese New Year's Eve", + "1970-02-06": "Vietnamese New Year", + "1970-02-07": "The second day of Tet Holiday", + "1970-02-08": "The third day of Tet Holiday", + "1970-02-09": "The forth day of Tet Holiday", + "1970-02-10": "The fifth day of Tet Holiday", + "1970-04-30": "Liberation Day/Reunification Day", + "1970-05-01": "International Labor Day", + "1970-09-02": "Independence Day", + "1971-01-01": "International New Year's Day", + "1971-01-26": "Vietnamese New Year's Eve", + "1971-01-27": "Vietnamese New Year", + "1971-01-28": "The second day of Tet Holiday", + "1971-01-29": "The third day of Tet Holiday", + "1971-01-30": "The forth day of Tet Holiday", + "1971-01-31": "The fifth day of Tet Holiday", + "1971-04-30": "Liberation Day/Reunification Day", + "1971-05-01": "International Labor Day", + "1971-05-03": "International Labor Day (Observed)", + "1971-09-02": "Independence Day", + "1972-01-01": "International New Year's Day", + "1972-01-03": "International New Year's Day (Observed)", + "1972-02-14": "Vietnamese New Year's Eve", + "1972-02-15": "Vietnamese New Year", + "1972-02-16": "The second day of Tet Holiday", + "1972-02-17": "The third day of Tet Holiday", + "1972-02-18": "The forth day of Tet Holiday", + "1972-02-19": "The fifth day of Tet Holiday", + "1972-04-30": "Liberation Day/Reunification Day", + "1972-05-01": "International Labor Day", + "1972-05-02": "Liberation Day/Reunification Day (Observed)", + "1972-09-02": "Independence Day", + "1972-09-04": "Independence Day (Observed)", + "1973-01-01": "International New Year's Day", + "1973-02-02": "Vietnamese New Year's Eve", + "1973-02-03": "Vietnamese New Year", + "1973-02-04": "The second day of Tet Holiday", + "1973-02-05": "The third day of Tet Holiday", + "1973-02-06": "The forth day of Tet Holiday", + "1973-02-07": "The fifth day of Tet Holiday", + "1973-04-30": "Liberation Day/Reunification Day", + "1973-05-01": "International Labor Day", + "1973-09-02": "Independence Day", + "1973-09-03": "Independence Day (Observed)", + "1974-01-01": "International New Year's Day", + "1974-01-22": "Vietnamese New Year's Eve", + "1974-01-23": "Vietnamese New Year", + "1974-01-24": "The second day of Tet Holiday", + "1974-01-25": "The third day of Tet Holiday", + "1974-01-26": "The forth day of Tet Holiday", + "1974-01-27": "The fifth day of Tet Holiday", + "1974-04-30": "Liberation Day/Reunification Day", + "1974-05-01": "International Labor Day", + "1974-09-02": "Independence Day", + "1975-01-01": "International New Year's Day", + "1975-02-10": "Vietnamese New Year's Eve", + "1975-02-11": "Vietnamese New Year", + "1975-02-12": "The second day of Tet Holiday", + "1975-02-13": "The third day of Tet Holiday", + "1975-02-14": "The forth day of Tet Holiday", + "1975-02-15": "The fifth day of Tet Holiday", + "1975-04-30": "Liberation Day/Reunification Day", + "1975-05-01": "International Labor Day", + "1975-09-02": "Independence Day", + "1976-01-01": "International New Year's Day", + "1976-01-30": "Vietnamese New Year's Eve", + "1976-01-31": "Vietnamese New Year", + "1976-02-01": "The second day of Tet Holiday", + "1976-02-02": "The third day of Tet Holiday", + "1976-02-03": "The forth day of Tet Holiday", + "1976-02-04": "The fifth day of Tet Holiday", + "1976-04-30": "Liberation Day/Reunification Day", + "1976-05-01": "International Labor Day", + "1976-05-03": "International Labor Day (Observed)", + "1976-09-02": "Independence Day", + "1977-01-01": "International New Year's Day", + "1977-01-03": "International New Year's Day (Observed)", + "1977-02-17": "Vietnamese New Year's Eve", + "1977-02-18": "Vietnamese New Year", + "1977-02-19": "The second day of Tet Holiday", + "1977-02-20": "The third day of Tet Holiday", + "1977-02-21": "The forth day of Tet Holiday", + "1977-02-22": "The fifth day of Tet Holiday", + "1977-04-30": "Liberation Day/Reunification Day", + "1977-05-01": "International Labor Day", + "1977-05-02": "Liberation Day/Reunification Day (Observed)", + "1977-05-03": "International Labor Day (Observed)", + "1977-09-02": "Independence Day", + "1978-01-01": "International New Year's Day", + "1978-01-02": "International New Year's Day (Observed)", + "1978-02-06": "Vietnamese New Year's Eve", + "1978-02-07": "Vietnamese New Year", + "1978-02-08": "The second day of Tet Holiday", + "1978-02-09": "The third day of Tet Holiday", + "1978-02-10": "The forth day of Tet Holiday", + "1978-02-11": "The fifth day of Tet Holiday", + "1978-04-30": "Liberation Day/Reunification Day", + "1978-05-01": "International Labor Day", + "1978-05-02": "Liberation Day/Reunification Day (Observed)", + "1978-09-02": "Independence Day", + "1978-09-04": "Independence Day (Observed)", + "1979-01-01": "International New Year's Day", + "1979-01-27": "Vietnamese New Year's Eve", + "1979-01-28": "Vietnamese New Year", + "1979-01-29": "The second day of Tet Holiday", + "1979-01-30": "The third day of Tet Holiday", + "1979-01-31": "The forth day of Tet Holiday", + "1979-02-01": "The fifth day of Tet Holiday", + "1979-04-30": "Liberation Day/Reunification Day", + "1979-05-01": "International Labor Day", + "1979-09-02": "Independence Day", + "1979-09-03": "Independence Day (Observed)", + "1980-01-01": "International New Year's Day", + "1980-02-15": "Vietnamese New Year's Eve", + "1980-02-16": "Vietnamese New Year", + "1980-02-17": "The second day of Tet Holiday", + "1980-02-18": "The third day of Tet Holiday", + "1980-02-19": "The forth day of Tet Holiday", + "1980-02-20": "The fifth day of Tet Holiday", + "1980-04-30": "Liberation Day/Reunification Day", + "1980-05-01": "International Labor Day", + "1980-09-02": "Independence Day", + "1981-01-01": "International New Year's Day", + "1981-02-04": "Vietnamese New Year's Eve", + "1981-02-05": "Vietnamese New Year", + "1981-02-06": "The second day of Tet Holiday", + "1981-02-07": "The third day of Tet Holiday", + "1981-02-08": "The forth day of Tet Holiday", + "1981-02-09": "The fifth day of Tet Holiday", + "1981-04-30": "Liberation Day/Reunification Day", + "1981-05-01": "International Labor Day", + "1981-09-02": "Independence Day", + "1982-01-01": "International New Year's Day", + "1982-01-24": "Vietnamese New Year's Eve", + "1982-01-25": "Vietnamese New Year", + "1982-01-26": "The second day of Tet Holiday", + "1982-01-27": "The third day of Tet Holiday", + "1982-01-28": "The forth day of Tet Holiday", + "1982-01-29": "The fifth day of Tet Holiday", + "1982-04-30": "Liberation Day/Reunification Day", + "1982-05-01": "International Labor Day", + "1982-05-03": "International Labor Day (Observed)", + "1982-09-02": "Independence Day", + "1983-01-01": "International New Year's Day", + "1983-01-03": "International New Year's Day (Observed)", + "1983-02-12": "Vietnamese New Year's Eve", + "1983-02-13": "Vietnamese New Year", + "1983-02-14": "The second day of Tet Holiday", + "1983-02-15": "The third day of Tet Holiday", + "1983-02-16": "The forth day of Tet Holiday", + "1983-02-17": "The fifth day of Tet Holiday", + "1983-04-30": "Liberation Day/Reunification Day", + "1983-05-01": "International Labor Day", + "1983-05-02": "Liberation Day/Reunification Day (Observed)", + "1983-05-03": "International Labor Day (Observed)", + "1983-09-02": "Independence Day", + "1984-01-01": "International New Year's Day", + "1984-01-02": "International New Year's Day (Observed)", + "1984-02-01": "Vietnamese New Year's Eve", + "1984-02-02": "Vietnamese New Year", + "1984-02-03": "The second day of Tet Holiday", + "1984-02-04": "The third day of Tet Holiday", + "1984-02-05": "The forth day of Tet Holiday", + "1984-02-06": "The fifth day of Tet Holiday", + "1984-04-30": "Liberation Day/Reunification Day", + "1984-05-01": "International Labor Day", + "1984-09-02": "Independence Day", + "1984-09-03": "Independence Day (Observed)", + "1985-01-01": "International New Year's Day", + "1985-02-19": "Vietnamese New Year's Eve", + "1985-02-20": "Vietnamese New Year", + "1985-02-21": "The second day of Tet Holiday", + "1985-02-22": "The third day of Tet Holiday", + "1985-02-23": "The forth day of Tet Holiday", + "1985-02-24": "The fifth day of Tet Holiday", + "1985-04-30": "Liberation Day/Reunification Day", + "1985-05-01": "International Labor Day", + "1985-09-02": "Independence Day", + "1986-01-01": "International New Year's Day", + "1986-02-08": "Vietnamese New Year's Eve", + "1986-02-09": "Vietnamese New Year", + "1986-02-10": "The second day of Tet Holiday", + "1986-02-11": "The third day of Tet Holiday", + "1986-02-12": "The forth day of Tet Holiday", + "1986-02-13": "The fifth day of Tet Holiday", + "1986-04-30": "Liberation Day/Reunification Day", + "1986-05-01": "International Labor Day", + "1986-09-02": "Independence Day", + "1987-01-01": "International New Year's Day", + "1987-01-28": "Vietnamese New Year's Eve", + "1987-01-29": "Vietnamese New Year", + "1987-01-30": "The second day of Tet Holiday", + "1987-01-31": "The third day of Tet Holiday", + "1987-02-01": "The forth day of Tet Holiday", + "1987-02-02": "The fifth day of Tet Holiday", + "1987-04-30": "Liberation Day/Reunification Day", + "1987-05-01": "International Labor Day", + "1987-09-02": "Independence Day", + "1988-01-01": "International New Year's Day", + "1988-02-16": "Vietnamese New Year's Eve", + "1988-02-17": "Vietnamese New Year", + "1988-02-18": "The second day of Tet Holiday", + "1988-02-19": "The third day of Tet Holiday", + "1988-02-20": "The forth day of Tet Holiday", + "1988-02-21": "The fifth day of Tet Holiday", + "1988-04-30": "Liberation Day/Reunification Day", + "1988-05-01": "International Labor Day", + "1988-05-02": "Liberation Day/Reunification Day (Observed)", + "1988-05-03": "International Labor Day (Observed)", + "1988-09-02": "Independence Day", + "1989-01-01": "International New Year's Day", + "1989-01-02": "International New Year's Day (Observed)", + "1989-02-05": "Vietnamese New Year's Eve", + "1989-02-06": "Vietnamese New Year", + "1989-02-07": "The second day of Tet Holiday", + "1989-02-08": "The third day of Tet Holiday", + "1989-02-09": "The forth day of Tet Holiday", + "1989-02-10": "The fifth day of Tet Holiday", + "1989-04-30": "Liberation Day/Reunification Day", + "1989-05-01": "International Labor Day", + "1989-05-02": "Liberation Day/Reunification Day (Observed)", + "1989-09-02": "Independence Day", + "1989-09-04": "Independence Day (Observed)", + "1990-01-01": "International New Year's Day", + "1990-01-26": "Vietnamese New Year's Eve", + "1990-01-27": "Vietnamese New Year", + "1990-01-28": "The second day of Tet Holiday", + "1990-01-29": "The third day of Tet Holiday", + "1990-01-30": "The forth day of Tet Holiday", + "1990-01-31": "The fifth day of Tet Holiday", + "1990-04-30": "Liberation Day/Reunification Day", + "1990-05-01": "International Labor Day", + "1990-09-02": "Independence Day", + "1990-09-03": "Independence Day (Observed)", + "1991-01-01": "International New Year's Day", + "1991-02-14": "Vietnamese New Year's Eve", + "1991-02-15": "Vietnamese New Year", + "1991-02-16": "The second day of Tet Holiday", + "1991-02-17": "The third day of Tet Holiday", + "1991-02-18": "The forth day of Tet Holiday", + "1991-02-19": "The fifth day of Tet Holiday", + "1991-04-30": "Liberation Day/Reunification Day", + "1991-05-01": "International Labor Day", + "1991-09-02": "Independence Day", + "1992-01-01": "International New Year's Day", + "1992-02-03": "Vietnamese New Year's Eve", + "1992-02-04": "Vietnamese New Year", + "1992-02-05": "The second day of Tet Holiday", + "1992-02-06": "The third day of Tet Holiday", + "1992-02-07": "The forth day of Tet Holiday", + "1992-02-08": "The fifth day of Tet Holiday", + "1992-04-30": "Liberation Day/Reunification Day", + "1992-05-01": "International Labor Day", + "1992-09-02": "Independence Day", + "1993-01-01": "International New Year's Day", + "1993-01-22": "Vietnamese New Year's Eve", + "1993-01-23": "Vietnamese New Year", + "1993-01-24": "The second day of Tet Holiday", + "1993-01-25": "The third day of Tet Holiday", + "1993-01-26": "The forth day of Tet Holiday", + "1993-01-27": "The fifth day of Tet Holiday", + "1993-04-30": "Liberation Day/Reunification Day", + "1993-05-01": "International Labor Day", + "1993-05-03": "International Labor Day (Observed)", + "1993-09-02": "Independence Day", + "1994-01-01": "International New Year's Day", + "1994-01-03": "International New Year's Day (Observed)", + "1994-02-09": "Vietnamese New Year's Eve", + "1994-02-10": "Vietnamese New Year", + "1994-02-11": "The second day of Tet Holiday", + "1994-02-12": "The third day of Tet Holiday", + "1994-02-13": "The forth day of Tet Holiday", + "1994-02-14": "The fifth day of Tet Holiday", + "1994-04-30": "Liberation Day/Reunification Day", + "1994-05-01": "International Labor Day", + "1994-05-02": "Liberation Day/Reunification Day (Observed)", + "1994-05-03": "International Labor Day (Observed)", + "1994-09-02": "Independence Day", + "1995-01-01": "International New Year's Day", + "1995-01-02": "International New Year's Day (Observed)", + "1995-01-30": "Vietnamese New Year's Eve", + "1995-01-31": "Vietnamese New Year", + "1995-02-01": "The second day of Tet Holiday", + "1995-02-02": "The third day of Tet Holiday", + "1995-02-03": "The forth day of Tet Holiday", + "1995-02-04": "The fifth day of Tet Holiday", + "1995-04-30": "Liberation Day/Reunification Day", + "1995-05-01": "International Labor Day", + "1995-05-02": "Liberation Day/Reunification Day (Observed)", + "1995-09-02": "Independence Day", + "1995-09-04": "Independence Day (Observed)", + "1996-01-01": "International New Year's Day", + "1996-02-18": "Vietnamese New Year's Eve", + "1996-02-19": "Vietnamese New Year", + "1996-02-20": "The second day of Tet Holiday", + "1996-02-21": "The third day of Tet Holiday", + "1996-02-22": "The forth day of Tet Holiday", + "1996-02-23": "The fifth day of Tet Holiday", + "1996-04-30": "Liberation Day/Reunification Day", + "1996-05-01": "International Labor Day", + "1996-09-02": "Independence Day", + "1997-01-01": "International New Year's Day", + "1997-02-06": "Vietnamese New Year's Eve", + "1997-02-07": "Vietnamese New Year", + "1997-02-08": "The second day of Tet Holiday", + "1997-02-09": "The third day of Tet Holiday", + "1997-02-10": "The forth day of Tet Holiday", + "1997-02-11": "The fifth day of Tet Holiday", + "1997-04-30": "Liberation Day/Reunification Day", + "1997-05-01": "International Labor Day", + "1997-09-02": "Independence Day", + "1998-01-01": "International New Year's Day", + "1998-01-27": "Vietnamese New Year's Eve", + "1998-01-28": "Vietnamese New Year", + "1998-01-29": "The second day of Tet Holiday", + "1998-01-30": "The third day of Tet Holiday", + "1998-01-31": "The forth day of Tet Holiday", + "1998-02-01": "The fifth day of Tet Holiday", + "1998-04-30": "Liberation Day/Reunification Day", + "1998-05-01": "International Labor Day", + "1998-09-02": "Independence Day", + "1999-01-01": "International New Year's Day", + "1999-02-15": "Vietnamese New Year's Eve", + "1999-02-16": "Vietnamese New Year", + "1999-02-17": "The second day of Tet Holiday", + "1999-02-18": "The third day of Tet Holiday", + "1999-02-19": "The forth day of Tet Holiday", + "1999-02-20": "The fifth day of Tet Holiday", + "1999-04-30": "Liberation Day/Reunification Day", + "1999-05-01": "International Labor Day", + "1999-05-03": "International Labor Day (Observed)", + "1999-09-02": "Independence Day", + "2000-01-01": "International New Year's Day", + "2000-01-03": "International New Year's Day (Observed)", + "2000-02-04": "Vietnamese New Year's Eve", + "2000-02-05": "Vietnamese New Year", + "2000-02-06": "The second day of Tet Holiday", + "2000-02-07": "The third day of Tet Holiday", + "2000-02-08": "The forth day of Tet Holiday", + "2000-02-09": "The fifth day of Tet Holiday", + "2000-04-30": "Liberation Day/Reunification Day", + "2000-05-01": "International Labor Day", + "2000-05-02": "Liberation Day/Reunification Day (Observed)", + "2000-09-02": "Independence Day", + "2000-09-04": "Independence Day (Observed)", + "2001-01-01": "International New Year's Day", + "2001-01-23": "Vietnamese New Year's Eve", + "2001-01-24": "Vietnamese New Year", + "2001-01-25": "The second day of Tet Holiday", + "2001-01-26": "The third day of Tet Holiday", + "2001-01-27": "The forth day of Tet Holiday", + "2001-01-28": "The fifth day of Tet Holiday", + "2001-04-30": "Liberation Day/Reunification Day", + "2001-05-01": "International Labor Day", + "2001-09-02": "Independence Day", + "2001-09-03": "Independence Day (Observed)", + "2002-01-01": "International New Year's Day", + "2002-02-11": "Vietnamese New Year's Eve", + "2002-02-12": "Vietnamese New Year", + "2002-02-13": "The second day of Tet Holiday", + "2002-02-14": "The third day of Tet Holiday", + "2002-02-15": "The forth day of Tet Holiday", + "2002-02-16": "The fifth day of Tet Holiday", + "2002-04-30": "Liberation Day/Reunification Day", + "2002-05-01": "International Labor Day", + "2002-09-02": "Independence Day", + "2003-01-01": "International New Year's Day", + "2003-01-31": "Vietnamese New Year's Eve", + "2003-02-01": "Vietnamese New Year", + "2003-02-02": "The second day of Tet Holiday", + "2003-02-03": "The third day of Tet Holiday", + "2003-02-04": "The forth day of Tet Holiday", + "2003-02-05": "The fifth day of Tet Holiday", + "2003-04-30": "Liberation Day/Reunification Day", + "2003-05-01": "International Labor Day", + "2003-09-02": "Independence Day", + "2004-01-01": "International New Year's Day", + "2004-01-21": "Vietnamese New Year's Eve", + "2004-01-22": "Vietnamese New Year", + "2004-01-23": "The second day of Tet Holiday", + "2004-01-24": "The third day of Tet Holiday", + "2004-01-25": "The forth day of Tet Holiday", + "2004-01-26": "The fifth day of Tet Holiday", + "2004-04-30": "Liberation Day/Reunification Day", + "2004-05-01": "International Labor Day", + "2004-05-03": "International Labor Day (Observed)", + "2004-09-02": "Independence Day", + "2005-01-01": "International New Year's Day", + "2005-01-03": "International New Year's Day (Observed)", + "2005-02-08": "Vietnamese New Year's Eve", + "2005-02-09": "Vietnamese New Year", + "2005-02-10": "The second day of Tet Holiday", + "2005-02-11": "The third day of Tet Holiday", + "2005-02-12": "The forth day of Tet Holiday", + "2005-02-13": "The fifth day of Tet Holiday", + "2005-04-30": "Liberation Day/Reunification Day", + "2005-05-01": "International Labor Day", + "2005-05-02": "Liberation Day/Reunification Day (Observed)", + "2005-05-03": "International Labor Day (Observed)", + "2005-09-02": "Independence Day", + "2006-01-01": "International New Year's Day", + "2006-01-02": "International New Year's Day (Observed)", + "2006-01-28": "Vietnamese New Year's Eve", + "2006-01-29": "Vietnamese New Year", + "2006-01-30": "The second day of Tet Holiday", + "2006-01-31": "The third day of Tet Holiday", + "2006-02-01": "The forth day of Tet Holiday", + "2006-02-02": "The fifth day of Tet Holiday", + "2006-04-30": "Liberation Day/Reunification Day", + "2006-05-01": "International Labor Day", + "2006-05-02": "Liberation Day/Reunification Day (Observed)", + "2006-09-02": "Independence Day", + "2006-09-04": "Independence Day (Observed)", + "2007-01-01": "International New Year's Day", + "2007-02-17": "Vietnamese New Year's Eve", + "2007-02-18": "Vietnamese New Year", + "2007-02-19": "The second day of Tet Holiday", + "2007-02-20": "The third day of Tet Holiday", + "2007-02-21": "The forth day of Tet Holiday", + "2007-02-22": "The fifth day of Tet Holiday", + "2007-04-26": "Hung Kings Commemoration Day", + "2007-04-30": "Liberation Day/Reunification Day", + "2007-05-01": "International Labor Day", + "2007-09-02": "Independence Day", + "2007-09-03": "Independence Day (Observed)", + "2008-01-01": "International New Year's Day", + "2008-02-06": "Vietnamese New Year's Eve", + "2008-02-07": "Vietnamese New Year", + "2008-02-08": "The second day of Tet Holiday", + "2008-02-09": "The third day of Tet Holiday", + "2008-02-10": "The forth day of Tet Holiday", + "2008-02-11": "The fifth day of Tet Holiday", + "2008-04-15": "Hung Kings Commemoration Day", + "2008-04-30": "Liberation Day/Reunification Day", + "2008-05-01": "International Labor Day", + "2008-09-02": "Independence Day", + "2009-01-01": "International New Year's Day", + "2009-01-25": "Vietnamese New Year's Eve", + "2009-01-26": "Vietnamese New Year", + "2009-01-27": "The second day of Tet Holiday", + "2009-01-28": "The third day of Tet Holiday", + "2009-01-29": "The forth day of Tet Holiday", + "2009-01-30": "The fifth day of Tet Holiday", + "2009-04-05": "Hung Kings Commemoration Day", + "2009-04-06": "Hung Kings Commemoration Day (Observed)", + "2009-04-30": "Liberation Day/Reunification Day", + "2009-05-01": "International Labor Day", + "2009-09-02": "Independence Day", + "2010-01-01": "International New Year's Day", + "2010-02-13": "Vietnamese New Year's Eve", + "2010-02-14": "Vietnamese New Year", + "2010-02-15": "The second day of Tet Holiday", + "2010-02-16": "The third day of Tet Holiday", + "2010-02-17": "The forth day of Tet Holiday", + "2010-02-18": "The fifth day of Tet Holiday", + "2010-04-23": "Hung Kings Commemoration Day", + "2010-04-30": "Liberation Day/Reunification Day", + "2010-05-01": "International Labor Day", + "2010-05-03": "International Labor Day (Observed)", + "2010-09-02": "Independence Day", + "2011-01-01": "International New Year's Day", + "2011-01-03": "International New Year's Day (Observed)", + "2011-02-02": "Vietnamese New Year's Eve", + "2011-02-03": "Vietnamese New Year", + "2011-02-04": "The second day of Tet Holiday", + "2011-02-05": "The third day of Tet Holiday", + "2011-02-06": "The forth day of Tet Holiday", + "2011-02-07": "The fifth day of Tet Holiday", + "2011-04-12": "Hung Kings Commemoration Day", + "2011-04-30": "Liberation Day/Reunification Day", + "2011-05-01": "International Labor Day", + "2011-05-02": "Liberation Day/Reunification Day (Observed)", + "2011-05-03": "International Labor Day (Observed)", + "2011-09-02": "Independence Day", + "2012-01-01": "International New Year's Day", + "2012-01-02": "International New Year's Day (Observed)", + "2012-01-22": "Vietnamese New Year's Eve", + "2012-01-23": "Vietnamese New Year", + "2012-01-24": "The second day of Tet Holiday", + "2012-01-25": "The third day of Tet Holiday", + "2012-01-26": "The forth day of Tet Holiday", + "2012-01-27": "The fifth day of Tet Holiday", + "2012-03-31": "Hung Kings Commemoration Day", + "2012-04-02": "Hung Kings Commemoration Day (Observed)", + "2012-04-30": "Liberation Day/Reunification Day", + "2012-05-01": "International Labor Day", + "2012-09-02": "Independence Day", + "2012-09-03": "Independence Day (Observed)", + "2013-01-01": "International New Year's Day", + "2013-02-09": "Vietnamese New Year's Eve", + "2013-02-10": "Vietnamese New Year", + "2013-02-11": "The second day of Tet Holiday", + "2013-02-12": "The third day of Tet Holiday", + "2013-02-13": "The forth day of Tet Holiday", + "2013-02-14": "The fifth day of Tet Holiday", + "2013-04-19": "Hung Kings Commemoration Day", + "2013-04-30": "Liberation Day/Reunification Day", + "2013-05-01": "International Labor Day", + "2013-09-02": "Independence Day", + "2014-01-01": "International New Year's Day", + "2014-01-30": "Vietnamese New Year's Eve", + "2014-01-31": "Vietnamese New Year", + "2014-02-01": "The second day of Tet Holiday", + "2014-02-02": "The third day of Tet Holiday", + "2014-02-03": "The forth day of Tet Holiday", + "2014-02-04": "The fifth day of Tet Holiday", + "2014-04-09": "Hung Kings Commemoration Day", + "2014-04-30": "Liberation Day/Reunification Day", + "2014-05-01": "International Labor Day", + "2014-09-02": "Independence Day", + "2015-01-01": "International New Year's Day", + "2015-02-18": "Vietnamese New Year's Eve", + "2015-02-19": "Vietnamese New Year", + "2015-02-20": "The second day of Tet Holiday", + "2015-02-21": "The third day of Tet Holiday", + "2015-02-22": "The forth day of Tet Holiday", + "2015-02-23": "The fifth day of Tet Holiday", + "2015-04-28": "Hung Kings Commemoration Day", + "2015-04-30": "Liberation Day/Reunification Day", + "2015-05-01": "International Labor Day", + "2015-09-02": "Independence Day", + "2016-01-01": "International New Year's Day", + "2016-02-07": "Vietnamese New Year's Eve", + "2016-02-08": "Vietnamese New Year", + "2016-02-09": "The second day of Tet Holiday", + "2016-02-10": "The third day of Tet Holiday", + "2016-02-11": "The forth day of Tet Holiday", + "2016-02-12": "The fifth day of Tet Holiday", + "2016-04-16": "Hung Kings Commemoration Day", + "2016-04-18": "Hung Kings Commemoration Day (Observed)", + "2016-04-30": "Liberation Day/Reunification Day", + "2016-05-01": "International Labor Day", + "2016-05-02": "Liberation Day/Reunification Day (Observed)", + "2016-05-03": "International Labor Day (Observed)", + "2016-09-02": "Independence Day", + "2017-01-01": "International New Year's Day", + "2017-01-02": "International New Year's Day (Observed)", + "2017-01-27": "Vietnamese New Year's Eve", + "2017-01-28": "Vietnamese New Year", + "2017-01-29": "The second day of Tet Holiday", + "2017-01-30": "The third day of Tet Holiday", + "2017-01-31": "The forth day of Tet Holiday", + "2017-02-01": "The fifth day of Tet Holiday", + "2017-04-06": "Hung Kings Commemoration Day", + "2017-04-30": "Liberation Day/Reunification Day", + "2017-05-01": "International Labor Day", + "2017-05-02": "Liberation Day/Reunification Day (Observed)", + "2017-09-02": "Independence Day", + "2017-09-04": "Independence Day (Observed)", + "2018-01-01": "International New Year's Day", + "2018-02-15": "Vietnamese New Year's Eve", + "2018-02-16": "Vietnamese New Year", + "2018-02-17": "The second day of Tet Holiday", + "2018-02-18": "The third day of Tet Holiday", + "2018-02-19": "The forth day of Tet Holiday", + "2018-02-20": "The fifth day of Tet Holiday", + "2018-04-25": "Hung Kings Commemoration Day", + "2018-04-30": "Liberation Day/Reunification Day", + "2018-05-01": "International Labor Day", + "2018-09-02": "Independence Day", + "2018-09-03": "Independence Day (Observed)", + "2019-01-01": "International New Year's Day", + "2019-02-04": "Vietnamese New Year's Eve", + "2019-02-05": "Vietnamese New Year", + "2019-02-06": "The second day of Tet Holiday", + "2019-02-07": "The third day of Tet Holiday", + "2019-02-08": "The forth day of Tet Holiday", + "2019-02-09": "The fifth day of Tet Holiday", + "2019-04-14": "Hung Kings Commemoration Day", + "2019-04-15": "Hung Kings Commemoration Day (Observed)", + "2019-04-30": "Liberation Day/Reunification Day", + "2019-05-01": "International Labor Day", + "2019-09-02": "Independence Day", + "2020-01-01": "International New Year's Day", + "2020-01-24": "Vietnamese New Year's Eve", + "2020-01-25": "Vietnamese New Year", + "2020-01-26": "The second day of Tet Holiday", + "2020-01-27": "The third day of Tet Holiday", + "2020-01-28": "The forth day of Tet Holiday", + "2020-01-29": "The fifth day of Tet Holiday", + "2020-04-02": "Hung Kings Commemoration Day", + "2020-04-30": "Liberation Day/Reunification Day", + "2020-05-01": "International Labor Day", + "2020-09-02": "Independence Day", + "2021-01-01": "International New Year's Day", + "2021-02-11": "Vietnamese New Year's Eve", + "2021-02-12": "Vietnamese New Year", + "2021-02-13": "The second day of Tet Holiday", + "2021-02-14": "The third day of Tet Holiday", + "2021-02-15": "The forth day of Tet Holiday", + "2021-02-16": "The fifth day of Tet Holiday", + "2021-04-21": "Hung Kings Commemoration Day", + "2021-04-30": "Liberation Day/Reunification Day", + "2021-05-01": "International Labor Day", + "2021-05-03": "International Labor Day (Observed)", + "2021-09-02": "Independence Day", + "2022-01-01": "International New Year's Day", + "2022-01-03": "International New Year's Day (Observed)", + "2022-01-31": "Vietnamese New Year's Eve", + "2022-02-01": "Vietnamese New Year", + "2022-02-02": "The second day of Tet Holiday", + "2022-02-03": "The third day of Tet Holiday", + "2022-02-04": "The forth day of Tet Holiday", + "2022-02-05": "The fifth day of Tet Holiday", + "2022-04-10": "Hung Kings Commemoration Day", + "2022-04-11": "Hung Kings Commemoration Day (Observed)", + "2022-04-30": "Liberation Day/Reunification Day", + "2022-05-01": "International Labor Day", + "2022-05-02": "Liberation Day/Reunification Day (Observed)", + "2022-05-03": "International Labor Day (Observed)", + "2022-09-02": "Independence Day", + "2023-01-01": "International New Year's Day", + "2023-01-02": "International New Year's Day (Observed)", + "2023-01-21": "Vietnamese New Year's Eve", + "2023-01-22": "Vietnamese New Year", + "2023-01-23": "The second day of Tet Holiday", + "2023-01-24": "The third day of Tet Holiday", + "2023-01-25": "The forth day of Tet Holiday", + "2023-01-26": "The fifth day of Tet Holiday", + "2023-04-29": "Hung Kings Commemoration Day", + "2023-04-30": "Liberation Day/Reunification Day", + "2023-05-01": "International Labor Day", + "2023-05-02": "Hung Kings Commemoration Day (Observed)", + "2023-05-03": "Liberation Day/Reunification Day (Observed)", + "2023-09-02": "Independence Day", + "2023-09-04": "Independence Day (Observed)", + "2024-01-01": "International New Year's Day", + "2024-02-09": "Vietnamese New Year's Eve", + "2024-02-10": "Vietnamese New Year", + "2024-02-11": "The second day of Tet Holiday", + "2024-02-12": "The third day of Tet Holiday", + "2024-02-13": "The forth day of Tet Holiday", + "2024-02-14": "The fifth day of Tet Holiday", + "2024-04-18": "Hung Kings Commemoration Day", + "2024-04-30": "Liberation Day/Reunification Day", + "2024-05-01": "International Labor Day", + "2024-09-02": "Independence Day", + "2025-01-01": "International New Year's Day", + "2025-01-28": "Vietnamese New Year's Eve", + "2025-01-29": "Vietnamese New Year", + "2025-01-30": "The second day of Tet Holiday", + "2025-01-31": "The third day of Tet Holiday", + "2025-02-01": "The forth day of Tet Holiday", + "2025-02-02": "The fifth day of Tet Holiday", + "2025-04-07": "Hung Kings Commemoration Day", + "2025-04-30": "Liberation Day/Reunification Day", + "2025-05-01": "International Labor Day", + "2025-09-02": "Independence Day", + "2026-01-01": "International New Year's Day", + "2026-02-16": "Vietnamese New Year's Eve", + "2026-02-17": "Vietnamese New Year", + "2026-02-18": "The second day of Tet Holiday", + "2026-02-19": "The third day of Tet Holiday", + "2026-02-20": "The forth day of Tet Holiday", + "2026-02-21": "The fifth day of Tet Holiday", + "2026-04-26": "Hung Kings Commemoration Day", + "2026-04-27": "Hung Kings Commemoration Day (Observed)", + "2026-04-30": "Liberation Day/Reunification Day", + "2026-05-01": "International Labor Day", + "2026-09-02": "Independence Day", + "2027-01-01": "International New Year's Day", + "2027-02-05": "Vietnamese New Year's Eve", + "2027-02-06": "Vietnamese New Year", + "2027-02-07": "The second day of Tet Holiday", + "2027-02-08": "The third day of Tet Holiday", + "2027-02-09": "The forth day of Tet Holiday", + "2027-02-10": "The fifth day of Tet Holiday", + "2027-04-16": "Hung Kings Commemoration Day", + "2027-04-30": "Liberation Day/Reunification Day", + "2027-05-01": "International Labor Day", + "2027-05-03": "International Labor Day (Observed)", + "2027-09-02": "Independence Day", + "2028-01-01": "International New Year's Day", + "2028-01-03": "International New Year's Day (Observed)", + "2028-01-25": "Vietnamese New Year's Eve", + "2028-01-26": "Vietnamese New Year", + "2028-01-27": "The second day of Tet Holiday", + "2028-01-28": "The third day of Tet Holiday", + "2028-01-29": "The forth day of Tet Holiday", + "2028-01-30": "The fifth day of Tet Holiday", + "2028-04-04": "Hung Kings Commemoration Day", + "2028-04-30": "Liberation Day/Reunification Day", + "2028-05-01": "International Labor Day", + "2028-05-02": "Liberation Day/Reunification Day (Observed)", + "2028-09-02": "Independence Day", + "2028-09-04": "Independence Day (Observed)", + "2029-01-01": "International New Year's Day", + "2029-02-12": "Vietnamese New Year's Eve", + "2029-02-13": "Vietnamese New Year", + "2029-02-14": "The second day of Tet Holiday", + "2029-02-15": "The third day of Tet Holiday", + "2029-02-16": "The forth day of Tet Holiday", + "2029-02-17": "The fifth day of Tet Holiday", + "2029-04-23": "Hung Kings Commemoration Day", + "2029-04-30": "Liberation Day/Reunification Day", + "2029-05-01": "International Labor Day", + "2029-09-02": "Independence Day", + "2029-09-03": "Independence Day (Observed)", + "2030-01-01": "International New Year's Day", + "2030-02-02": "Vietnamese New Year's Eve", + "2030-02-03": "Vietnamese New Year", + "2030-02-04": "The second day of Tet Holiday", + "2030-02-05": "The third day of Tet Holiday", + "2030-02-06": "The forth day of Tet Holiday", + "2030-02-07": "The fifth day of Tet Holiday", + "2030-04-12": "Hung Kings Commemoration Day", + "2030-04-30": "Liberation Day/Reunification Day", + "2030-05-01": "International Labor Day", + "2030-09-02": "Independence Day", + "2031-01-01": "International New Year's Day", + "2031-01-22": "Vietnamese New Year's Eve", + "2031-01-23": "Vietnamese New Year", + "2031-01-24": "The second day of Tet Holiday", + "2031-01-25": "The third day of Tet Holiday", + "2031-01-26": "The forth day of Tet Holiday", + "2031-01-27": "The fifth day of Tet Holiday", + "2031-04-01": "Hung Kings Commemoration Day", + "2031-04-30": "Liberation Day/Reunification Day", + "2031-05-01": "International Labor Day", + "2031-09-02": "Independence Day", + "2032-01-01": "International New Year's Day", + "2032-02-10": "Vietnamese New Year's Eve", + "2032-02-11": "Vietnamese New Year", + "2032-02-12": "The second day of Tet Holiday", + "2032-02-13": "The third day of Tet Holiday", + "2032-02-14": "The forth day of Tet Holiday", + "2032-02-15": "The fifth day of Tet Holiday", + "2032-04-19": "Hung Kings Commemoration Day", + "2032-04-30": "Liberation Day/Reunification Day", + "2032-05-01": "International Labor Day", + "2032-05-03": "International Labor Day (Observed)", + "2032-09-02": "Independence Day", + "2033-01-01": "International New Year's Day", + "2033-01-03": "International New Year's Day (Observed)", + "2033-01-30": "Vietnamese New Year's Eve", + "2033-01-31": "Vietnamese New Year", + "2033-02-01": "The second day of Tet Holiday", + "2033-02-02": "The third day of Tet Holiday", + "2033-02-03": "The forth day of Tet Holiday", + "2033-02-04": "The fifth day of Tet Holiday", + "2033-04-09": "Hung Kings Commemoration Day", + "2033-04-11": "Hung Kings Commemoration Day (Observed)", + "2033-04-30": "Liberation Day/Reunification Day", + "2033-05-01": "International Labor Day", + "2033-05-02": "Liberation Day/Reunification Day (Observed)", + "2033-05-03": "International Labor Day (Observed)", + "2033-09-02": "Independence Day", + "2034-01-01": "International New Year's Day", + "2034-01-02": "International New Year's Day (Observed)", + "2034-02-18": "Vietnamese New Year's Eve", + "2034-02-19": "Vietnamese New Year", + "2034-02-20": "The second day of Tet Holiday", + "2034-02-21": "The third day of Tet Holiday", + "2034-02-22": "The forth day of Tet Holiday", + "2034-02-23": "The fifth day of Tet Holiday", + "2034-04-28": "Hung Kings Commemoration Day", + "2034-04-30": "Liberation Day/Reunification Day", + "2034-05-01": "International Labor Day", + "2034-05-02": "Liberation Day/Reunification Day (Observed)", + "2034-09-02": "Independence Day", + "2034-09-04": "Independence Day (Observed)", + "2035-01-01": "International New Year's Day", + "2035-02-07": "Vietnamese New Year's Eve", + "2035-02-08": "Vietnamese New Year", + "2035-02-09": "The second day of Tet Holiday", + "2035-02-10": "The third day of Tet Holiday", + "2035-02-11": "The forth day of Tet Holiday", + "2035-02-12": "The fifth day of Tet Holiday", + "2035-04-17": "Hung Kings Commemoration Day", + "2035-04-30": "Liberation Day/Reunification Day", + "2035-05-01": "International Labor Day", + "2035-09-02": "Independence Day", + "2035-09-03": "Independence Day (Observed)", + "2036-01-01": "International New Year's Day", + "2036-01-27": "Vietnamese New Year's Eve", + "2036-01-28": "Vietnamese New Year", + "2036-01-29": "The second day of Tet Holiday", + "2036-01-30": "The third day of Tet Holiday", + "2036-01-31": "The forth day of Tet Holiday", + "2036-02-01": "The fifth day of Tet Holiday", + "2036-04-06": "Hung Kings Commemoration Day", + "2036-04-07": "Hung Kings Commemoration Day (Observed)", + "2036-04-30": "Liberation Day/Reunification Day", + "2036-05-01": "International Labor Day", + "2036-09-02": "Independence Day", + "2037-01-01": "International New Year's Day", + "2037-02-14": "Vietnamese New Year's Eve", + "2037-02-15": "Vietnamese New Year", + "2037-02-16": "The second day of Tet Holiday", + "2037-02-17": "The third day of Tet Holiday", + "2037-02-18": "The forth day of Tet Holiday", + "2037-02-19": "The fifth day of Tet Holiday", + "2037-04-25": "Hung Kings Commemoration Day", + "2037-04-27": "Hung Kings Commemoration Day (Observed)", + "2037-04-30": "Liberation Day/Reunification Day", + "2037-05-01": "International Labor Day", + "2037-09-02": "Independence Day", + "2038-01-01": "International New Year's Day", + "2038-02-03": "Vietnamese New Year's Eve", + "2038-02-04": "Vietnamese New Year", + "2038-02-05": "The second day of Tet Holiday", + "2038-02-06": "The third day of Tet Holiday", + "2038-02-07": "The forth day of Tet Holiday", + "2038-02-08": "The fifth day of Tet Holiday", + "2038-04-14": "Hung Kings Commemoration Day", + "2038-04-30": "Liberation Day/Reunification Day", + "2038-05-01": "International Labor Day", + "2038-05-03": "International Labor Day (Observed)", + "2038-09-02": "Independence Day", + "2039-01-01": "International New Year's Day", + "2039-01-03": "International New Year's Day (Observed)", + "2039-01-23": "Vietnamese New Year's Eve", + "2039-01-24": "Vietnamese New Year", + "2039-01-25": "The second day of Tet Holiday", + "2039-01-26": "The third day of Tet Holiday", + "2039-01-27": "The forth day of Tet Holiday", + "2039-01-28": "The fifth day of Tet Holiday", + "2039-04-03": "Hung Kings Commemoration Day", + "2039-04-04": "Hung Kings Commemoration Day (Observed)", + "2039-04-30": "Liberation Day/Reunification Day", + "2039-05-01": "International Labor Day", + "2039-05-02": "Liberation Day/Reunification Day (Observed)", + "2039-05-03": "International Labor Day (Observed)", + "2039-09-02": "Independence Day", + "2040-01-01": "International New Year's Day", + "2040-01-02": "International New Year's Day (Observed)", + "2040-02-11": "Vietnamese New Year's Eve", + "2040-02-12": "Vietnamese New Year", + "2040-02-13": "The second day of Tet Holiday", + "2040-02-14": "The third day of Tet Holiday", + "2040-02-15": "The forth day of Tet Holiday", + "2040-02-16": "The fifth day of Tet Holiday", + "2040-04-20": "Hung Kings Commemoration Day", + "2040-04-30": "Liberation Day/Reunification Day", + "2040-05-01": "International Labor Day", + "2040-09-02": "Independence Day", + "2040-09-03": "Independence Day (Observed)", + "2041-01-01": "International New Year's Day", + "2041-01-31": "Vietnamese New Year's Eve", + "2041-02-01": "Vietnamese New Year", + "2041-02-02": "The second day of Tet Holiday", + "2041-02-03": "The third day of Tet Holiday", + "2041-02-04": "The forth day of Tet Holiday", + "2041-02-05": "The fifth day of Tet Holiday", + "2041-04-10": "Hung Kings Commemoration Day", + "2041-04-30": "Liberation Day/Reunification Day", + "2041-05-01": "International Labor Day", + "2041-09-02": "Independence Day", + "2042-01-01": "International New Year's Day", + "2042-01-21": "Vietnamese New Year's Eve", + "2042-01-22": "Vietnamese New Year", + "2042-01-23": "The second day of Tet Holiday", + "2042-01-24": "The third day of Tet Holiday", + "2042-01-25": "The forth day of Tet Holiday", + "2042-01-26": "The fifth day of Tet Holiday", + "2042-04-29": "Hung Kings Commemoration Day", + "2042-04-30": "Liberation Day/Reunification Day", + "2042-05-01": "International Labor Day", + "2042-09-02": "Independence Day", + "2043-01-01": "International New Year's Day", + "2043-02-09": "Vietnamese New Year's Eve", + "2043-02-10": "Vietnamese New Year", + "2043-02-11": "The second day of Tet Holiday", + "2043-02-12": "The third day of Tet Holiday", + "2043-02-13": "The forth day of Tet Holiday", + "2043-02-14": "The fifth day of Tet Holiday", + "2043-04-19": "Hung Kings Commemoration Day", + "2043-04-20": "Hung Kings Commemoration Day (Observed)", + "2043-04-30": "Liberation Day/Reunification Day", + "2043-05-01": "International Labor Day", + "2043-09-02": "Independence Day", + "2044-01-01": "International New Year's Day", + "2044-01-29": "Vietnamese New Year's Eve", + "2044-01-30": "Vietnamese New Year", + "2044-01-31": "The second day of Tet Holiday", + "2044-02-01": "The third day of Tet Holiday", + "2044-02-02": "The forth day of Tet Holiday", + "2044-02-03": "The fifth day of Tet Holiday", + "2044-04-07": "Hung Kings Commemoration Day", + "2044-04-30": "Liberation Day/Reunification Day", + "2044-05-01": "International Labor Day", + "2044-05-02": "Liberation Day/Reunification Day (Observed)", + "2044-05-03": "International Labor Day (Observed)", + "2044-09-02": "Independence Day", + "2045-01-01": "International New Year's Day", + "2045-01-02": "International New Year's Day (Observed)", + "2045-02-16": "Vietnamese New Year's Eve", + "2045-02-17": "Vietnamese New Year", + "2045-02-18": "The second day of Tet Holiday", + "2045-02-19": "The third day of Tet Holiday", + "2045-02-20": "The forth day of Tet Holiday", + "2045-02-21": "The fifth day of Tet Holiday", + "2045-04-26": "Hung Kings Commemoration Day", + "2045-04-30": "Liberation Day/Reunification Day", + "2045-05-01": "International Labor Day", + "2045-05-02": "Liberation Day/Reunification Day (Observed)", + "2045-09-02": "Independence Day", + "2045-09-04": "Independence Day (Observed)", + "2046-01-01": "International New Year's Day", + "2046-02-05": "Vietnamese New Year's Eve", + "2046-02-06": "Vietnamese New Year", + "2046-02-07": "The second day of Tet Holiday", + "2046-02-08": "The third day of Tet Holiday", + "2046-02-09": "The forth day of Tet Holiday", + "2046-02-10": "The fifth day of Tet Holiday", + "2046-04-15": "Hung Kings Commemoration Day", + "2046-04-16": "Hung Kings Commemoration Day (Observed)", + "2046-04-30": "Liberation Day/Reunification Day", + "2046-05-01": "International Labor Day", + "2046-09-02": "Independence Day", + "2046-09-03": "Independence Day (Observed)", + "2047-01-01": "International New Year's Day", + "2047-01-25": "Vietnamese New Year's Eve", + "2047-01-26": "Vietnamese New Year", + "2047-01-27": "The second day of Tet Holiday", + "2047-01-28": "The third day of Tet Holiday", + "2047-01-29": "The forth day of Tet Holiday", + "2047-01-30": "The fifth day of Tet Holiday", + "2047-04-04": "Hung Kings Commemoration Day", + "2047-04-30": "Liberation Day/Reunification Day", + "2047-05-01": "International Labor Day", + "2047-09-02": "Independence Day", + "2048-01-01": "International New Year's Day", + "2048-02-13": "Vietnamese New Year's Eve", + "2048-02-14": "Vietnamese New Year", + "2048-02-15": "The second day of Tet Holiday", + "2048-02-16": "The third day of Tet Holiday", + "2048-02-17": "The forth day of Tet Holiday", + "2048-02-18": "The fifth day of Tet Holiday", + "2048-04-22": "Hung Kings Commemoration Day", + "2048-04-30": "Liberation Day/Reunification Day", + "2048-05-01": "International Labor Day", + "2048-09-02": "Independence Day", + "2049-01-01": "International New Year's Day", + "2049-02-01": "Vietnamese New Year's Eve", + "2049-02-02": "Vietnamese New Year", + "2049-02-03": "The second day of Tet Holiday", + "2049-02-04": "The third day of Tet Holiday", + "2049-02-05": "The forth day of Tet Holiday", + "2049-02-06": "The fifth day of Tet Holiday", + "2049-04-11": "Hung Kings Commemoration Day", + "2049-04-12": "Hung Kings Commemoration Day (Observed)", + "2049-04-30": "Liberation Day/Reunification Day", + "2049-05-01": "International Labor Day", + "2049-05-03": "International Labor Day (Observed)", + "2049-09-02": "Independence Day", + "2050-01-01": "International New Year's Day", + "2050-01-03": "International New Year's Day (Observed)", + "2050-01-22": "Vietnamese New Year's Eve", + "2050-01-23": "Vietnamese New Year", + "2050-01-24": "The second day of Tet Holiday", + "2050-01-25": "The third day of Tet Holiday", + "2050-01-26": "The forth day of Tet Holiday", + "2050-01-27": "The fifth day of Tet Holiday", + "2050-04-01": "Hung Kings Commemoration Day", + "2050-04-30": "Liberation Day/Reunification Day", + "2050-05-01": "International Labor Day", + "2050-05-02": "Liberation Day/Reunification Day (Observed)", + "2050-05-03": "International Labor Day (Observed)", + "2050-09-02": "Independence Day" +} diff --git a/snapshots/countries/VU.json b/snapshots/countries/VU.json new file mode 100644 index 000000000..ba9eca7a7 --- /dev/null +++ b/snapshots/countries/VU.json @@ -0,0 +1,1078 @@ +{ + "1981-01-01": "New Year's Day", + "1981-03-05": "Custom Chief's Day", + "1981-04-17": "Good Friday", + "1981-04-20": "Easter Monday", + "1981-05-01": "Labour Day", + "1981-05-28": "Ascension Day", + "1981-07-24": "Children's Day", + "1981-07-30": "Independence Day", + "1981-08-15": "Assumption Day", + "1981-10-05": "Constitution Day", + "1981-11-29": "Unity Day", + "1981-11-30": "Unity Day (Observed)", + "1981-12-25": "Christmas Day", + "1981-12-26": "Family Day", + "1982-01-01": "New Year's Day", + "1982-03-05": "Custom Chief's Day", + "1982-04-09": "Good Friday", + "1982-04-12": "Easter Monday", + "1982-05-01": "Labour Day", + "1982-05-20": "Ascension Day", + "1982-07-24": "Children's Day", + "1982-07-30": "Independence Day", + "1982-08-15": "Assumption Day", + "1982-08-16": "Assumption Day (Observed)", + "1982-10-05": "Constitution Day", + "1982-11-29": "Unity Day", + "1982-12-25": "Christmas Day", + "1982-12-26": "Family Day", + "1982-12-27": "Family Day (Observed)", + "1983-01-01": "New Year's Day", + "1983-03-05": "Custom Chief's Day", + "1983-04-01": "Good Friday", + "1983-04-04": "Easter Monday", + "1983-05-01": "Labour Day", + "1983-05-02": "Labour Day (Observed)", + "1983-05-12": "Ascension Day", + "1983-07-24": "Children's Day", + "1983-07-25": "Children's Day (Observed)", + "1983-07-30": "Independence Day", + "1983-08-15": "Assumption Day", + "1983-10-05": "Constitution Day", + "1983-11-29": "Unity Day", + "1983-12-25": "Christmas Day", + "1983-12-26": "Family Day", + "1983-12-27": "Family Day (Observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (Observed)", + "1984-03-05": "Custom Chief's Day", + "1984-04-20": "Good Friday", + "1984-04-23": "Easter Monday", + "1984-05-01": "Labour Day", + "1984-05-31": "Ascension Day", + "1984-07-24": "Children's Day", + "1984-07-30": "Independence Day", + "1984-08-15": "Assumption Day", + "1984-10-05": "Constitution Day", + "1984-11-29": "Unity Day", + "1984-12-25": "Christmas Day", + "1984-12-26": "Family Day", + "1985-01-01": "New Year's Day", + "1985-03-05": "Custom Chief's Day", + "1985-04-05": "Good Friday", + "1985-04-08": "Easter Monday", + "1985-05-01": "Labour Day", + "1985-05-16": "Ascension Day", + "1985-07-24": "Children's Day", + "1985-07-30": "Independence Day", + "1985-08-15": "Assumption Day", + "1985-10-05": "Constitution Day", + "1985-11-29": "Unity Day", + "1985-12-25": "Christmas Day", + "1985-12-26": "Family Day", + "1986-01-01": "New Year's Day", + "1986-03-05": "Custom Chief's Day", + "1986-03-28": "Good Friday", + "1986-03-31": "Easter Monday", + "1986-05-01": "Labour Day", + "1986-05-08": "Ascension Day", + "1986-07-24": "Children's Day", + "1986-07-30": "Independence Day", + "1986-08-15": "Assumption Day", + "1986-10-05": "Constitution Day", + "1986-10-06": "Constitution Day (Observed)", + "1986-11-29": "Unity Day", + "1986-12-25": "Christmas Day", + "1986-12-26": "Family Day", + "1987-01-01": "New Year's Day", + "1987-03-05": "Custom Chief's Day", + "1987-04-17": "Good Friday", + "1987-04-20": "Easter Monday", + "1987-05-01": "Labour Day", + "1987-05-28": "Ascension Day", + "1987-07-24": "Children's Day", + "1987-07-30": "Independence Day", + "1987-08-15": "Assumption Day", + "1987-10-05": "Constitution Day", + "1987-11-29": "Unity Day", + "1987-11-30": "Unity Day (Observed)", + "1987-12-25": "Christmas Day", + "1987-12-26": "Family Day", + "1988-01-01": "New Year's Day", + "1988-03-05": "Custom Chief's Day", + "1988-04-01": "Good Friday", + "1988-04-04": "Easter Monday", + "1988-05-01": "Labour Day", + "1988-05-02": "Labour Day (Observed)", + "1988-05-12": "Ascension Day", + "1988-07-24": "Children's Day", + "1988-07-25": "Children's Day (Observed)", + "1988-07-30": "Independence Day", + "1988-08-15": "Assumption Day", + "1988-10-05": "Constitution Day", + "1988-11-29": "Unity Day", + "1988-12-25": "Christmas Day", + "1988-12-26": "Family Day", + "1988-12-27": "Family Day (Observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (Observed)", + "1989-03-05": "Custom Chief's Day", + "1989-03-06": "Custom Chief's Day (Observed)", + "1989-03-24": "Good Friday", + "1989-03-27": "Easter Monday", + "1989-05-01": "Labour Day", + "1989-05-04": "Ascension Day", + "1989-07-24": "Children's Day", + "1989-07-30": "Independence Day", + "1989-07-31": "Independence Day (Observed)", + "1989-08-15": "Assumption Day", + "1989-10-05": "Constitution Day", + "1989-11-29": "Unity Day", + "1989-12-25": "Christmas Day", + "1989-12-26": "Family Day", + "1990-01-01": "New Year's Day", + "1990-03-05": "Custom Chief's Day", + "1990-04-13": "Good Friday", + "1990-04-16": "Easter Monday", + "1990-05-01": "Labour Day", + "1990-05-24": "Ascension Day", + "1990-07-24": "Children's Day", + "1990-07-30": "Independence Day", + "1990-08-15": "Assumption Day", + "1990-10-05": "Constitution Day", + "1990-11-29": "Unity Day", + "1990-12-25": "Christmas Day", + "1990-12-26": "Family Day", + "1991-01-01": "New Year's Day", + "1991-03-05": "Custom Chief's Day", + "1991-03-29": "Good Friday", + "1991-04-01": "Easter Monday", + "1991-05-01": "Labour Day", + "1991-05-09": "Ascension Day", + "1991-07-24": "Children's Day", + "1991-07-30": "Independence Day", + "1991-08-15": "Assumption Day", + "1991-10-05": "Constitution Day", + "1991-11-29": "Unity Day", + "1991-12-25": "Christmas Day", + "1991-12-26": "Family Day", + "1992-01-01": "New Year's Day", + "1992-03-05": "Custom Chief's Day", + "1992-04-17": "Good Friday", + "1992-04-20": "Easter Monday", + "1992-05-01": "Labour Day", + "1992-05-28": "Ascension Day", + "1992-07-24": "Children's Day", + "1992-07-30": "Independence Day", + "1992-08-15": "Assumption Day", + "1992-10-05": "Constitution Day", + "1992-11-29": "Unity Day", + "1992-11-30": "Unity Day (Observed)", + "1992-12-25": "Christmas Day", + "1992-12-26": "Family Day", + "1993-01-01": "New Year's Day", + "1993-03-05": "Custom Chief's Day", + "1993-04-09": "Good Friday", + "1993-04-12": "Easter Monday", + "1993-05-01": "Labour Day", + "1993-05-20": "Ascension Day", + "1993-07-24": "Children's Day", + "1993-07-30": "Independence Day", + "1993-08-15": "Assumption Day", + "1993-08-16": "Assumption Day (Observed)", + "1993-10-05": "Constitution Day", + "1993-11-29": "Unity Day", + "1993-12-25": "Christmas Day", + "1993-12-26": "Family Day", + "1993-12-27": "Family Day (Observed)", + "1994-01-01": "New Year's Day", + "1994-03-05": "Custom Chief's Day", + "1994-04-01": "Good Friday", + "1994-04-04": "Easter Monday", + "1994-05-01": "Labour Day", + "1994-05-02": "Labour Day (Observed)", + "1994-05-12": "Ascension Day", + "1994-07-24": "Children's Day", + "1994-07-25": "Children's Day (Observed)", + "1994-07-30": "Independence Day", + "1994-08-15": "Assumption Day", + "1994-10-05": "Constitution Day", + "1994-11-29": "Unity Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Family Day", + "1994-12-27": "Family Day (Observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (Observed)", + "1995-03-05": "Custom Chief's Day", + "1995-03-06": "Custom Chief's Day (Observed)", + "1995-04-14": "Good Friday", + "1995-04-17": "Easter Monday", + "1995-05-01": "Labour Day", + "1995-05-25": "Ascension Day", + "1995-07-24": "Children's Day", + "1995-07-30": "Independence Day", + "1995-07-31": "Independence Day (Observed)", + "1995-08-15": "Assumption Day", + "1995-10-05": "Constitution Day", + "1995-11-29": "Unity Day", + "1995-12-25": "Christmas Day", + "1995-12-26": "Family Day", + "1996-01-01": "New Year's Day", + "1996-03-05": "Custom Chief's Day", + "1996-04-05": "Good Friday", + "1996-04-08": "Easter Monday", + "1996-05-01": "Labour Day", + "1996-05-16": "Ascension Day", + "1996-07-24": "Children's Day", + "1996-07-30": "Independence Day", + "1996-08-15": "Assumption Day", + "1996-10-05": "Constitution Day", + "1996-11-29": "Unity Day", + "1996-12-25": "Christmas Day", + "1996-12-26": "Family Day", + "1997-01-01": "New Year's Day", + "1997-03-05": "Custom Chief's Day", + "1997-03-28": "Good Friday", + "1997-03-31": "Easter Monday", + "1997-05-01": "Labour Day", + "1997-05-08": "Ascension Day", + "1997-07-24": "Children's Day", + "1997-07-30": "Independence Day", + "1997-08-15": "Assumption Day", + "1997-10-05": "Constitution Day", + "1997-10-06": "Constitution Day (Observed)", + "1997-11-29": "Unity Day", + "1997-12-25": "Christmas Day", + "1997-12-26": "Family Day", + "1998-01-01": "New Year's Day", + "1998-03-05": "Custom Chief's Day", + "1998-04-10": "Good Friday", + "1998-04-13": "Easter Monday", + "1998-05-01": "Labour Day", + "1998-05-21": "Ascension Day", + "1998-07-24": "Children's Day", + "1998-07-30": "Independence Day", + "1998-08-15": "Assumption Day", + "1998-10-05": "Constitution Day", + "1998-11-29": "Unity Day", + "1998-11-30": "Unity Day (Observed)", + "1998-12-25": "Christmas Day", + "1998-12-26": "Family Day", + "1999-01-01": "New Year's Day", + "1999-02-21": "Father Lini Day", + "1999-02-22": "Father Lini Day (Observed)", + "1999-03-05": "Custom Chief's Day", + "1999-04-02": "Good Friday", + "1999-04-05": "Easter Monday", + "1999-05-01": "Labour Day", + "1999-05-13": "Ascension Day", + "1999-07-24": "Children's Day", + "1999-07-30": "Independence Day", + "1999-08-15": "Assumption Day", + "1999-08-16": "Assumption Day (Observed)", + "1999-10-05": "Constitution Day", + "1999-11-29": "Unity Day", + "1999-12-25": "Christmas Day", + "1999-12-26": "Family Day", + "1999-12-27": "Family Day (Observed)", + "2000-01-01": "New Year's Day", + "2000-02-21": "Father Lini Day", + "2000-03-05": "Custom Chief's Day", + "2000-03-06": "Custom Chief's Day (Observed)", + "2000-04-21": "Good Friday", + "2000-04-24": "Easter Monday", + "2000-05-01": "Labour Day", + "2000-06-01": "Ascension Day", + "2000-07-24": "Children's Day", + "2000-07-30": "Independence Day", + "2000-07-31": "Independence Day (Observed)", + "2000-08-15": "Assumption Day", + "2000-10-05": "Constitution Day", + "2000-11-29": "Unity Day", + "2000-12-25": "Christmas Day", + "2000-12-26": "Family Day", + "2001-01-01": "New Year's Day", + "2001-02-21": "Father Lini Day", + "2001-03-05": "Custom Chief's Day", + "2001-04-13": "Good Friday", + "2001-04-16": "Easter Monday", + "2001-05-01": "Labour Day", + "2001-05-24": "Ascension Day", + "2001-07-24": "Children's Day", + "2001-07-30": "Independence Day", + "2001-08-15": "Assumption Day", + "2001-10-05": "Constitution Day", + "2001-11-29": "Unity Day", + "2001-12-25": "Christmas Day", + "2001-12-26": "Family Day", + "2002-01-01": "New Year's Day", + "2002-02-21": "Father Lini Day", + "2002-03-05": "Custom Chief's Day", + "2002-03-29": "Good Friday", + "2002-04-01": "Easter Monday", + "2002-05-01": "Labour Day", + "2002-05-09": "Ascension Day", + "2002-07-24": "Children's Day", + "2002-07-30": "Independence Day", + "2002-08-15": "Assumption Day", + "2002-10-05": "Constitution Day", + "2002-11-29": "Unity Day", + "2002-12-25": "Christmas Day", + "2002-12-26": "Family Day", + "2003-01-01": "New Year's Day", + "2003-02-21": "Father Lini Day", + "2003-03-05": "Custom Chief's Day", + "2003-04-18": "Good Friday", + "2003-04-21": "Easter Monday", + "2003-05-01": "Labour Day", + "2003-05-29": "Ascension Day", + "2003-07-24": "Children's Day", + "2003-07-30": "Independence Day", + "2003-08-15": "Assumption Day", + "2003-10-05": "Constitution Day", + "2003-10-06": "Constitution Day (Observed)", + "2003-11-29": "Unity Day", + "2003-12-25": "Christmas Day", + "2003-12-26": "Family Day", + "2004-01-01": "New Year's Day", + "2004-02-21": "Father Lini Day", + "2004-03-05": "Custom Chief's Day", + "2004-04-09": "Good Friday", + "2004-04-12": "Easter Monday", + "2004-05-01": "Labour Day", + "2004-05-20": "Ascension Day", + "2004-07-24": "Children's Day", + "2004-07-30": "Independence Day", + "2004-08-15": "Assumption Day", + "2004-08-16": "Assumption Day (Observed)", + "2004-10-05": "Constitution Day", + "2004-11-29": "Unity Day", + "2004-12-25": "Christmas Day", + "2004-12-26": "Family Day", + "2004-12-27": "Family Day (Observed)", + "2005-01-01": "New Year's Day", + "2005-02-21": "Father Lini Day", + "2005-03-05": "Custom Chief's Day", + "2005-03-25": "Good Friday", + "2005-03-28": "Easter Monday", + "2005-05-01": "Labour Day", + "2005-05-02": "Labour Day (Observed)", + "2005-05-05": "Ascension Day", + "2005-07-24": "Children's Day", + "2005-07-25": "Children's Day (Observed)", + "2005-07-30": "Independence Day", + "2005-08-15": "Assumption Day", + "2005-10-05": "Constitution Day", + "2005-11-29": "Unity Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "Family Day", + "2005-12-27": "Family Day (Observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (Observed)", + "2006-02-21": "Father Lini Day", + "2006-03-05": "Custom Chief's Day", + "2006-03-06": "Custom Chief's Day (Observed)", + "2006-04-14": "Good Friday", + "2006-04-17": "Easter Monday", + "2006-05-01": "Labour Day", + "2006-05-25": "Ascension Day", + "2006-07-24": "Children's Day", + "2006-07-30": "Independence Day", + "2006-07-31": "Independence Day (Observed)", + "2006-08-15": "Assumption Day", + "2006-10-05": "Constitution Day", + "2006-11-29": "Unity Day", + "2006-12-25": "Christmas Day", + "2006-12-26": "Family Day", + "2007-01-01": "New Year's Day", + "2007-02-21": "Father Lini Day", + "2007-03-05": "Custom Chief's Day", + "2007-04-06": "Good Friday", + "2007-04-09": "Easter Monday", + "2007-05-01": "Labour Day", + "2007-05-17": "Ascension Day", + "2007-07-24": "Children's Day", + "2007-07-30": "Independence Day", + "2007-08-15": "Assumption Day", + "2007-10-05": "Constitution Day", + "2007-11-29": "Unity Day", + "2007-12-25": "Christmas Day", + "2007-12-26": "Family Day", + "2008-01-01": "New Year's Day", + "2008-02-21": "Father Lini Day", + "2008-03-05": "Custom Chief's Day", + "2008-03-21": "Good Friday", + "2008-03-24": "Easter Monday", + "2008-05-01": "Ascension Day; Labour Day", + "2008-07-24": "Children's Day", + "2008-07-30": "Independence Day", + "2008-08-15": "Assumption Day", + "2008-10-05": "Constitution Day", + "2008-10-06": "Constitution Day (Observed)", + "2008-11-29": "Unity Day", + "2008-12-25": "Christmas Day", + "2008-12-26": "Family Day", + "2009-01-01": "New Year's Day", + "2009-02-21": "Father Lini Day", + "2009-03-05": "Custom Chief's Day", + "2009-04-10": "Good Friday", + "2009-04-13": "Easter Monday", + "2009-05-01": "Labour Day", + "2009-05-21": "Ascension Day", + "2009-07-24": "Children's Day", + "2009-07-30": "Independence Day", + "2009-08-15": "Assumption Day", + "2009-10-05": "Constitution Day", + "2009-11-29": "Unity Day", + "2009-11-30": "Unity Day (Observed)", + "2009-12-25": "Christmas Day", + "2009-12-26": "Family Day", + "2010-01-01": "New Year's Day", + "2010-02-21": "Father Lini Day", + "2010-02-22": "Father Lini Day (Observed)", + "2010-03-05": "Custom Chief's Day", + "2010-04-02": "Good Friday", + "2010-04-05": "Easter Monday", + "2010-05-01": "Labour Day", + "2010-05-13": "Ascension Day", + "2010-07-24": "Children's Day", + "2010-07-30": "Independence Day", + "2010-08-15": "Assumption Day", + "2010-08-16": "Assumption Day (Observed)", + "2010-10-05": "Constitution Day", + "2010-11-29": "Unity Day", + "2010-12-25": "Christmas Day", + "2010-12-26": "Family Day", + "2010-12-27": "Family Day (Observed)", + "2011-01-01": "New Year's Day", + "2011-02-21": "Father Lini Day", + "2011-03-05": "Custom Chief's Day", + "2011-04-22": "Good Friday", + "2011-04-25": "Easter Monday", + "2011-05-01": "Labour Day", + "2011-05-02": "Labour Day (Observed)", + "2011-06-02": "Ascension Day", + "2011-07-24": "Children's Day", + "2011-07-25": "Children's Day (Observed)", + "2011-07-30": "Independence Day", + "2011-08-15": "Assumption Day", + "2011-10-05": "Constitution Day", + "2011-11-29": "Unity Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "Family Day", + "2011-12-27": "Family Day (Observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (Observed)", + "2012-02-21": "Father Lini Day", + "2012-03-05": "Custom Chief's Day", + "2012-04-06": "Good Friday", + "2012-04-09": "Easter Monday", + "2012-05-01": "Labour Day", + "2012-05-17": "Ascension Day", + "2012-07-24": "Children's Day", + "2012-07-30": "Independence Day", + "2012-08-15": "Assumption Day", + "2012-10-05": "Constitution Day", + "2012-11-29": "Unity Day", + "2012-12-25": "Christmas Day", + "2012-12-26": "Family Day", + "2013-01-01": "New Year's Day", + "2013-02-21": "Father Lini Day", + "2013-03-05": "Custom Chief's Day", + "2013-03-29": "Good Friday", + "2013-04-01": "Easter Monday", + "2013-05-01": "Labour Day", + "2013-05-09": "Ascension Day", + "2013-07-24": "Children's Day", + "2013-07-30": "Independence Day", + "2013-08-15": "Assumption Day", + "2013-10-05": "Constitution Day", + "2013-11-29": "Unity Day", + "2013-12-25": "Christmas Day", + "2013-12-26": "Family Day", + "2014-01-01": "New Year's Day", + "2014-02-21": "Father Lini Day", + "2014-03-05": "Custom Chief's Day", + "2014-04-18": "Good Friday", + "2014-04-21": "Easter Monday", + "2014-05-01": "Labour Day", + "2014-05-29": "Ascension Day", + "2014-07-24": "Children's Day", + "2014-07-30": "Independence Day", + "2014-08-15": "Assumption Day", + "2014-10-05": "Constitution Day", + "2014-10-06": "Constitution Day (Observed)", + "2014-11-29": "Unity Day", + "2014-12-25": "Christmas Day", + "2014-12-26": "Family Day", + "2015-01-01": "New Year's Day", + "2015-02-21": "Father Lini Day", + "2015-03-05": "Custom Chief's Day", + "2015-04-03": "Good Friday", + "2015-04-06": "Easter Monday", + "2015-05-01": "Labour Day", + "2015-05-14": "Ascension Day", + "2015-07-24": "Children's Day", + "2015-07-30": "Independence Day", + "2015-08-15": "Assumption Day", + "2015-10-05": "Constitution Day", + "2015-11-29": "Unity Day", + "2015-11-30": "Unity Day (Observed)", + "2015-12-25": "Christmas Day", + "2015-12-26": "Family Day", + "2016-01-01": "New Year's Day", + "2016-02-21": "Father Lini Day", + "2016-02-22": "Father Lini Day (Observed)", + "2016-03-05": "Custom Chief's Day", + "2016-03-25": "Good Friday", + "2016-03-28": "Easter Monday", + "2016-05-01": "Labour Day", + "2016-05-02": "Labour Day (Observed)", + "2016-05-05": "Ascension Day", + "2016-07-24": "Children's Day", + "2016-07-25": "Children's Day (Observed)", + "2016-07-30": "Independence Day", + "2016-08-15": "Assumption Day", + "2016-10-05": "Constitution Day", + "2016-11-29": "Unity Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "Family Day", + "2016-12-27": "Family Day (Observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (Observed)", + "2017-02-21": "Father Lini Day", + "2017-03-05": "Custom Chief's Day", + "2017-03-06": "Custom Chief's Day (Observed)", + "2017-04-14": "Good Friday", + "2017-04-17": "Easter Monday", + "2017-05-01": "Labour Day", + "2017-05-25": "Ascension Day", + "2017-07-24": "Children's Day", + "2017-07-30": "Independence Day", + "2017-07-31": "Independence Day (Observed)", + "2017-08-15": "Assumption Day", + "2017-10-05": "Constitution Day", + "2017-11-29": "Unity Day", + "2017-12-25": "Christmas Day", + "2017-12-26": "Family Day", + "2018-01-01": "New Year's Day", + "2018-02-21": "Father Lini Day", + "2018-03-05": "Custom Chief's Day", + "2018-03-30": "Good Friday", + "2018-04-02": "Easter Monday", + "2018-05-01": "Labour Day", + "2018-05-10": "Ascension Day", + "2018-07-24": "Children's Day", + "2018-07-30": "Independence Day", + "2018-08-15": "Assumption Day", + "2018-10-05": "Constitution Day", + "2018-11-29": "Unity Day", + "2018-12-25": "Christmas Day", + "2018-12-26": "Family Day", + "2019-01-01": "New Year's Day", + "2019-02-21": "Father Lini Day", + "2019-03-05": "Custom Chief's Day", + "2019-04-19": "Good Friday", + "2019-04-22": "Easter Monday", + "2019-05-01": "Labour Day", + "2019-05-30": "Ascension Day", + "2019-07-24": "Children's Day", + "2019-07-30": "Independence Day", + "2019-08-15": "Assumption Day", + "2019-10-05": "Constitution Day", + "2019-11-29": "Unity Day", + "2019-12-25": "Christmas Day", + "2019-12-26": "Family Day", + "2020-01-01": "New Year's Day", + "2020-02-21": "Father Lini Day", + "2020-03-05": "Custom Chief's Day", + "2020-04-10": "Good Friday", + "2020-04-13": "Easter Monday", + "2020-05-01": "Labour Day", + "2020-05-21": "Ascension Day", + "2020-07-23": "40th Independence Anniversary", + "2020-07-24": "Children's Day", + "2020-07-27": "40th Independence Anniversary", + "2020-07-28": "40th Independence Anniversary", + "2020-07-29": "40th Independence Anniversary", + "2020-07-30": "Independence Day", + "2020-07-31": "40th Independence Anniversary", + "2020-08-15": "Assumption Day", + "2020-10-05": "Constitution Day", + "2020-11-29": "Unity Day", + "2020-11-30": "Unity Day (Observed)", + "2020-12-25": "Christmas Day", + "2020-12-26": "Family Day", + "2021-01-01": "New Year's Day", + "2021-02-21": "Father Lini Day", + "2021-02-22": "Father Lini Day (Observed)", + "2021-03-05": "Custom Chief's Day", + "2021-04-02": "Good Friday", + "2021-04-05": "Easter Monday", + "2021-05-01": "Labour Day", + "2021-05-13": "Ascension Day", + "2021-07-24": "Children's Day", + "2021-07-30": "Independence Day", + "2021-08-15": "Assumption Day", + "2021-08-16": "Assumption Day (Observed)", + "2021-10-05": "Constitution Day", + "2021-11-29": "Unity Day", + "2021-12-25": "Christmas Day", + "2021-12-26": "Family Day", + "2021-12-27": "Family Day (Observed)", + "2022-01-01": "New Year's Day", + "2022-02-21": "Father Lini Day", + "2022-03-05": "Custom Chief's Day", + "2022-04-15": "Good Friday", + "2022-04-18": "Easter Monday", + "2022-05-01": "Labour Day", + "2022-05-02": "Labour Day (Observed)", + "2022-05-26": "Ascension Day", + "2022-07-24": "Children's Day", + "2022-07-25": "Children's Day (Observed)", + "2022-07-30": "Independence Day", + "2022-08-15": "Assumption Day", + "2022-10-05": "Constitution Day", + "2022-10-13": "Election Day", + "2022-11-29": "Unity Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "Family Day", + "2022-12-27": "Family Day (Observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (Observed)", + "2023-02-21": "Father Lini Day", + "2023-03-05": "Custom Chief's Day", + "2023-03-06": "Custom Chief's Day (Observed)", + "2023-04-07": "Good Friday", + "2023-04-10": "Easter Monday", + "2023-05-01": "Labour Day", + "2023-05-18": "Ascension Day", + "2023-07-24": "Children's Day", + "2023-07-30": "Independence Day", + "2023-07-31": "Independence Day (Observed)", + "2023-08-15": "Assumption Day", + "2023-10-05": "Constitution Day", + "2023-11-29": "Unity Day", + "2023-12-25": "Christmas Day", + "2023-12-26": "Family Day", + "2024-01-01": "New Year's Day", + "2024-02-21": "Father Lini Day", + "2024-03-05": "Custom Chief's Day", + "2024-03-29": "Good Friday", + "2024-04-01": "Easter Monday", + "2024-05-01": "Labour Day", + "2024-05-09": "Ascension Day", + "2024-07-24": "Children's Day", + "2024-07-30": "Independence Day", + "2024-08-15": "Assumption Day", + "2024-10-05": "Constitution Day", + "2024-11-29": "Unity Day", + "2024-12-25": "Christmas Day", + "2024-12-26": "Family Day", + "2025-01-01": "New Year's Day", + "2025-02-21": "Father Lini Day", + "2025-03-05": "Custom Chief's Day", + "2025-04-18": "Good Friday", + "2025-04-21": "Easter Monday", + "2025-05-01": "Labour Day", + "2025-05-29": "Ascension Day", + "2025-07-24": "Children's Day", + "2025-07-30": "Independence Day", + "2025-08-15": "Assumption Day", + "2025-10-05": "Constitution Day", + "2025-10-06": "Constitution Day (Observed)", + "2025-11-29": "Unity Day", + "2025-12-25": "Christmas Day", + "2025-12-26": "Family Day", + "2026-01-01": "New Year's Day", + "2026-02-21": "Father Lini Day", + "2026-03-05": "Custom Chief's Day", + "2026-04-03": "Good Friday", + "2026-04-06": "Easter Monday", + "2026-05-01": "Labour Day", + "2026-05-14": "Ascension Day", + "2026-07-24": "Children's Day", + "2026-07-30": "Independence Day", + "2026-08-15": "Assumption Day", + "2026-10-05": "Constitution Day", + "2026-11-29": "Unity Day", + "2026-11-30": "Unity Day (Observed)", + "2026-12-25": "Christmas Day", + "2026-12-26": "Family Day", + "2027-01-01": "New Year's Day", + "2027-02-21": "Father Lini Day", + "2027-02-22": "Father Lini Day (Observed)", + "2027-03-05": "Custom Chief's Day", + "2027-03-26": "Good Friday", + "2027-03-29": "Easter Monday", + "2027-05-01": "Labour Day", + "2027-05-06": "Ascension Day", + "2027-07-24": "Children's Day", + "2027-07-30": "Independence Day", + "2027-08-15": "Assumption Day", + "2027-08-16": "Assumption Day (Observed)", + "2027-10-05": "Constitution Day", + "2027-11-29": "Unity Day", + "2027-12-25": "Christmas Day", + "2027-12-26": "Family Day", + "2027-12-27": "Family Day (Observed)", + "2028-01-01": "New Year's Day", + "2028-02-21": "Father Lini Day", + "2028-03-05": "Custom Chief's Day", + "2028-03-06": "Custom Chief's Day (Observed)", + "2028-04-14": "Good Friday", + "2028-04-17": "Easter Monday", + "2028-05-01": "Labour Day", + "2028-05-25": "Ascension Day", + "2028-07-24": "Children's Day", + "2028-07-30": "Independence Day", + "2028-07-31": "Independence Day (Observed)", + "2028-08-15": "Assumption Day", + "2028-10-05": "Constitution Day", + "2028-11-29": "Unity Day", + "2028-12-25": "Christmas Day", + "2028-12-26": "Family Day", + "2029-01-01": "New Year's Day", + "2029-02-21": "Father Lini Day", + "2029-03-05": "Custom Chief's Day", + "2029-03-30": "Good Friday", + "2029-04-02": "Easter Monday", + "2029-05-01": "Labour Day", + "2029-05-10": "Ascension Day", + "2029-07-24": "Children's Day", + "2029-07-30": "Independence Day", + "2029-08-15": "Assumption Day", + "2029-10-05": "Constitution Day", + "2029-11-29": "Unity Day", + "2029-12-25": "Christmas Day", + "2029-12-26": "Family Day", + "2030-01-01": "New Year's Day", + "2030-02-21": "Father Lini Day", + "2030-03-05": "Custom Chief's Day", + "2030-04-19": "Good Friday", + "2030-04-22": "Easter Monday", + "2030-05-01": "Labour Day", + "2030-05-30": "Ascension Day", + "2030-07-24": "Children's Day", + "2030-07-30": "Independence Day", + "2030-08-15": "Assumption Day", + "2030-10-05": "Constitution Day", + "2030-11-29": "Unity Day", + "2030-12-25": "Christmas Day", + "2030-12-26": "Family Day", + "2031-01-01": "New Year's Day", + "2031-02-21": "Father Lini Day", + "2031-03-05": "Custom Chief's Day", + "2031-04-11": "Good Friday", + "2031-04-14": "Easter Monday", + "2031-05-01": "Labour Day", + "2031-05-22": "Ascension Day", + "2031-07-24": "Children's Day", + "2031-07-30": "Independence Day", + "2031-08-15": "Assumption Day", + "2031-10-05": "Constitution Day", + "2031-10-06": "Constitution Day (Observed)", + "2031-11-29": "Unity Day", + "2031-12-25": "Christmas Day", + "2031-12-26": "Family Day", + "2032-01-01": "New Year's Day", + "2032-02-21": "Father Lini Day", + "2032-03-05": "Custom Chief's Day", + "2032-03-26": "Good Friday", + "2032-03-29": "Easter Monday", + "2032-05-01": "Labour Day", + "2032-05-06": "Ascension Day", + "2032-07-24": "Children's Day", + "2032-07-30": "Independence Day", + "2032-08-15": "Assumption Day", + "2032-08-16": "Assumption Day (Observed)", + "2032-10-05": "Constitution Day", + "2032-11-29": "Unity Day", + "2032-12-25": "Christmas Day", + "2032-12-26": "Family Day", + "2032-12-27": "Family Day (Observed)", + "2033-01-01": "New Year's Day", + "2033-02-21": "Father Lini Day", + "2033-03-05": "Custom Chief's Day", + "2033-04-15": "Good Friday", + "2033-04-18": "Easter Monday", + "2033-05-01": "Labour Day", + "2033-05-02": "Labour Day (Observed)", + "2033-05-26": "Ascension Day", + "2033-07-24": "Children's Day", + "2033-07-25": "Children's Day (Observed)", + "2033-07-30": "Independence Day", + "2033-08-15": "Assumption Day", + "2033-10-05": "Constitution Day", + "2033-11-29": "Unity Day", + "2033-12-25": "Christmas Day", + "2033-12-26": "Family Day", + "2033-12-27": "Family Day (Observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-02-21": "Father Lini Day", + "2034-03-05": "Custom Chief's Day", + "2034-03-06": "Custom Chief's Day (Observed)", + "2034-04-07": "Good Friday", + "2034-04-10": "Easter Monday", + "2034-05-01": "Labour Day", + "2034-05-18": "Ascension Day", + "2034-07-24": "Children's Day", + "2034-07-30": "Independence Day", + "2034-07-31": "Independence Day (Observed)", + "2034-08-15": "Assumption Day", + "2034-10-05": "Constitution Day", + "2034-11-29": "Unity Day", + "2034-12-25": "Christmas Day", + "2034-12-26": "Family Day", + "2035-01-01": "New Year's Day", + "2035-02-21": "Father Lini Day", + "2035-03-05": "Custom Chief's Day", + "2035-03-23": "Good Friday", + "2035-03-26": "Easter Monday", + "2035-05-01": "Labour Day", + "2035-05-03": "Ascension Day", + "2035-07-24": "Children's Day", + "2035-07-30": "Independence Day", + "2035-08-15": "Assumption Day", + "2035-10-05": "Constitution Day", + "2035-11-29": "Unity Day", + "2035-12-25": "Christmas Day", + "2035-12-26": "Family Day", + "2036-01-01": "New Year's Day", + "2036-02-21": "Father Lini Day", + "2036-03-05": "Custom Chief's Day", + "2036-04-11": "Good Friday", + "2036-04-14": "Easter Monday", + "2036-05-01": "Labour Day", + "2036-05-22": "Ascension Day", + "2036-07-24": "Children's Day", + "2036-07-30": "Independence Day", + "2036-08-15": "Assumption Day", + "2036-10-05": "Constitution Day", + "2036-10-06": "Constitution Day (Observed)", + "2036-11-29": "Unity Day", + "2036-12-25": "Christmas Day", + "2036-12-26": "Family Day", + "2037-01-01": "New Year's Day", + "2037-02-21": "Father Lini Day", + "2037-03-05": "Custom Chief's Day", + "2037-04-03": "Good Friday", + "2037-04-06": "Easter Monday", + "2037-05-01": "Labour Day", + "2037-05-14": "Ascension Day", + "2037-07-24": "Children's Day", + "2037-07-30": "Independence Day", + "2037-08-15": "Assumption Day", + "2037-10-05": "Constitution Day", + "2037-11-29": "Unity Day", + "2037-11-30": "Unity Day (Observed)", + "2037-12-25": "Christmas Day", + "2037-12-26": "Family Day", + "2038-01-01": "New Year's Day", + "2038-02-21": "Father Lini Day", + "2038-02-22": "Father Lini Day (Observed)", + "2038-03-05": "Custom Chief's Day", + "2038-04-23": "Good Friday", + "2038-04-26": "Easter Monday", + "2038-05-01": "Labour Day", + "2038-06-03": "Ascension Day", + "2038-07-24": "Children's Day", + "2038-07-30": "Independence Day", + "2038-08-15": "Assumption Day", + "2038-08-16": "Assumption Day (Observed)", + "2038-10-05": "Constitution Day", + "2038-11-29": "Unity Day", + "2038-12-25": "Christmas Day", + "2038-12-26": "Family Day", + "2038-12-27": "Family Day (Observed)", + "2039-01-01": "New Year's Day", + "2039-02-21": "Father Lini Day", + "2039-03-05": "Custom Chief's Day", + "2039-04-08": "Good Friday", + "2039-04-11": "Easter Monday", + "2039-05-01": "Labour Day", + "2039-05-02": "Labour Day (Observed)", + "2039-05-19": "Ascension Day", + "2039-07-24": "Children's Day", + "2039-07-25": "Children's Day (Observed)", + "2039-07-30": "Independence Day", + "2039-08-15": "Assumption Day", + "2039-10-05": "Constitution Day", + "2039-11-29": "Unity Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Family Day", + "2039-12-27": "Family Day (Observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (Observed)", + "2040-02-21": "Father Lini Day", + "2040-03-05": "Custom Chief's Day", + "2040-03-30": "Good Friday", + "2040-04-02": "Easter Monday", + "2040-05-01": "Labour Day", + "2040-05-10": "Ascension Day", + "2040-07-24": "Children's Day", + "2040-07-30": "Independence Day", + "2040-08-15": "Assumption Day", + "2040-10-05": "Constitution Day", + "2040-11-29": "Unity Day", + "2040-12-25": "Christmas Day", + "2040-12-26": "Family Day", + "2041-01-01": "New Year's Day", + "2041-02-21": "Father Lini Day", + "2041-03-05": "Custom Chief's Day", + "2041-04-19": "Good Friday", + "2041-04-22": "Easter Monday", + "2041-05-01": "Labour Day", + "2041-05-30": "Ascension Day", + "2041-07-24": "Children's Day", + "2041-07-30": "Independence Day", + "2041-08-15": "Assumption Day", + "2041-10-05": "Constitution Day", + "2041-11-29": "Unity Day", + "2041-12-25": "Christmas Day", + "2041-12-26": "Family Day", + "2042-01-01": "New Year's Day", + "2042-02-21": "Father Lini Day", + "2042-03-05": "Custom Chief's Day", + "2042-04-04": "Good Friday", + "2042-04-07": "Easter Monday", + "2042-05-01": "Labour Day", + "2042-05-15": "Ascension Day", + "2042-07-24": "Children's Day", + "2042-07-30": "Independence Day", + "2042-08-15": "Assumption Day", + "2042-10-05": "Constitution Day", + "2042-10-06": "Constitution Day (Observed)", + "2042-11-29": "Unity Day", + "2042-12-25": "Christmas Day", + "2042-12-26": "Family Day", + "2043-01-01": "New Year's Day", + "2043-02-21": "Father Lini Day", + "2043-03-05": "Custom Chief's Day", + "2043-03-27": "Good Friday", + "2043-03-30": "Easter Monday", + "2043-05-01": "Labour Day", + "2043-05-07": "Ascension Day", + "2043-07-24": "Children's Day", + "2043-07-30": "Independence Day", + "2043-08-15": "Assumption Day", + "2043-10-05": "Constitution Day", + "2043-11-29": "Unity Day", + "2043-11-30": "Unity Day (Observed)", + "2043-12-25": "Christmas Day", + "2043-12-26": "Family Day", + "2044-01-01": "New Year's Day", + "2044-02-21": "Father Lini Day", + "2044-02-22": "Father Lini Day (Observed)", + "2044-03-05": "Custom Chief's Day", + "2044-04-15": "Good Friday", + "2044-04-18": "Easter Monday", + "2044-05-01": "Labour Day", + "2044-05-02": "Labour Day (Observed)", + "2044-05-26": "Ascension Day", + "2044-07-24": "Children's Day", + "2044-07-25": "Children's Day (Observed)", + "2044-07-30": "Independence Day", + "2044-08-15": "Assumption Day", + "2044-10-05": "Constitution Day", + "2044-11-29": "Unity Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "Family Day", + "2044-12-27": "Family Day (Observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (Observed)", + "2045-02-21": "Father Lini Day", + "2045-03-05": "Custom Chief's Day", + "2045-03-06": "Custom Chief's Day (Observed)", + "2045-04-07": "Good Friday", + "2045-04-10": "Easter Monday", + "2045-05-01": "Labour Day", + "2045-05-18": "Ascension Day", + "2045-07-24": "Children's Day", + "2045-07-30": "Independence Day", + "2045-07-31": "Independence Day (Observed)", + "2045-08-15": "Assumption Day", + "2045-10-05": "Constitution Day", + "2045-11-29": "Unity Day", + "2045-12-25": "Christmas Day", + "2045-12-26": "Family Day", + "2046-01-01": "New Year's Day", + "2046-02-21": "Father Lini Day", + "2046-03-05": "Custom Chief's Day", + "2046-03-23": "Good Friday", + "2046-03-26": "Easter Monday", + "2046-05-01": "Labour Day", + "2046-05-03": "Ascension Day", + "2046-07-24": "Children's Day", + "2046-07-30": "Independence Day", + "2046-08-15": "Assumption Day", + "2046-10-05": "Constitution Day", + "2046-11-29": "Unity Day", + "2046-12-25": "Christmas Day", + "2046-12-26": "Family Day", + "2047-01-01": "New Year's Day", + "2047-02-21": "Father Lini Day", + "2047-03-05": "Custom Chief's Day", + "2047-04-12": "Good Friday", + "2047-04-15": "Easter Monday", + "2047-05-01": "Labour Day", + "2047-05-23": "Ascension Day", + "2047-07-24": "Children's Day", + "2047-07-30": "Independence Day", + "2047-08-15": "Assumption Day", + "2047-10-05": "Constitution Day", + "2047-11-29": "Unity Day", + "2047-12-25": "Christmas Day", + "2047-12-26": "Family Day", + "2048-01-01": "New Year's Day", + "2048-02-21": "Father Lini Day", + "2048-03-05": "Custom Chief's Day", + "2048-04-03": "Good Friday", + "2048-04-06": "Easter Monday", + "2048-05-01": "Labour Day", + "2048-05-14": "Ascension Day", + "2048-07-24": "Children's Day", + "2048-07-30": "Independence Day", + "2048-08-15": "Assumption Day", + "2048-10-05": "Constitution Day", + "2048-11-29": "Unity Day", + "2048-11-30": "Unity Day (Observed)", + "2048-12-25": "Christmas Day", + "2048-12-26": "Family Day", + "2049-01-01": "New Year's Day", + "2049-02-21": "Father Lini Day", + "2049-02-22": "Father Lini Day (Observed)", + "2049-03-05": "Custom Chief's Day", + "2049-04-16": "Good Friday", + "2049-04-19": "Easter Monday", + "2049-05-01": "Labour Day", + "2049-05-27": "Ascension Day", + "2049-07-24": "Children's Day", + "2049-07-30": "Independence Day", + "2049-08-15": "Assumption Day", + "2049-08-16": "Assumption Day (Observed)", + "2049-10-05": "Constitution Day", + "2049-11-29": "Unity Day", + "2049-12-25": "Christmas Day", + "2049-12-26": "Family Day", + "2049-12-27": "Family Day (Observed)", + "2050-01-01": "New Year's Day", + "2050-02-21": "Father Lini Day", + "2050-03-05": "Custom Chief's Day", + "2050-04-08": "Good Friday", + "2050-04-11": "Easter Monday", + "2050-05-01": "Labour Day", + "2050-05-02": "Labour Day (Observed)", + "2050-05-19": "Ascension Day", + "2050-07-24": "Children's Day", + "2050-07-25": "Children's Day (Observed)", + "2050-07-30": "Independence Day", + "2050-08-15": "Assumption Day", + "2050-10-05": "Constitution Day", + "2050-11-29": "Unity Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "Family Day", + "2050-12-27": "Family Day (Observed)" +} diff --git a/snapshots/countries/ZA.json b/snapshots/countries/ZA.json new file mode 100644 index 000000000..a68e5740f --- /dev/null +++ b/snapshots/countries/ZA.json @@ -0,0 +1,1251 @@ +{ + "1950-01-01": "New Year's Day", + "1950-04-07": "Good Friday", + "1950-04-10": "Easter Monday", + "1950-05-18": "Ascension Day", + "1950-05-24": "Empire Day", + "1950-05-31": "Union Day", + "1950-08-07": "King's Birthday", + "1950-12-16": "Dingaan's Day", + "1950-12-25": "Christmas Day", + "1950-12-26": "Boxing Day", + "1951-01-01": "New Year's Day", + "1951-03-23": "Good Friday", + "1951-03-26": "Easter Monday", + "1951-05-03": "Ascension Day", + "1951-05-24": "Empire Day", + "1951-05-31": "Union Day", + "1951-08-06": "King's Birthday", + "1951-12-16": "Dingaan's Day", + "1951-12-25": "Christmas Day", + "1951-12-26": "Boxing Day", + "1952-01-01": "New Year's Day", + "1952-04-06": "Van Riebeeck's Day", + "1952-04-11": "Good Friday", + "1952-04-14": "Easter Monday", + "1952-05-22": "Ascension Day", + "1952-05-31": "Union Day", + "1952-07-14": "Queen's Birthday", + "1952-09-01": "Settlers' Day", + "1952-10-10": "Kruger Day", + "1952-12-16": "Day of the Covenant", + "1952-12-25": "Christmas Day", + "1952-12-26": "Boxing Day", + "1953-01-01": "New Year's Day", + "1953-04-03": "Good Friday", + "1953-04-06": "Easter Monday; Van Riebeeck's Day", + "1953-05-14": "Ascension Day", + "1953-05-31": "Union Day", + "1953-07-13": "Queen's Birthday", + "1953-09-07": "Settlers' Day", + "1953-10-10": "Kruger Day", + "1953-12-16": "Day of the Covenant", + "1953-12-25": "Christmas Day", + "1953-12-26": "Boxing Day", + "1954-01-01": "New Year's Day", + "1954-04-06": "Van Riebeeck's Day", + "1954-04-16": "Good Friday", + "1954-04-19": "Easter Monday", + "1954-05-27": "Ascension Day", + "1954-05-31": "Union Day", + "1954-07-12": "Queen's Birthday", + "1954-09-06": "Settlers' Day", + "1954-10-10": "Kruger Day", + "1954-12-16": "Day of the Covenant", + "1954-12-25": "Christmas Day", + "1954-12-26": "Boxing Day", + "1955-01-01": "New Year's Day", + "1955-04-06": "Van Riebeeck's Day", + "1955-04-08": "Good Friday", + "1955-04-11": "Easter Monday", + "1955-05-19": "Ascension Day", + "1955-05-31": "Union Day", + "1955-07-11": "Queen's Birthday", + "1955-09-05": "Settlers' Day", + "1955-10-10": "Kruger Day", + "1955-12-16": "Day of the Covenant", + "1955-12-25": "Christmas Day", + "1955-12-26": "Boxing Day", + "1956-01-01": "New Year's Day", + "1956-03-30": "Good Friday", + "1956-04-02": "Easter Monday", + "1956-04-06": "Van Riebeeck's Day", + "1956-05-10": "Ascension Day", + "1956-05-31": "Union Day", + "1956-07-09": "Queen's Birthday", + "1956-09-03": "Settlers' Day", + "1956-10-10": "Kruger Day", + "1956-12-16": "Day of the Covenant", + "1956-12-25": "Christmas Day", + "1956-12-26": "Boxing Day", + "1957-01-01": "New Year's Day", + "1957-04-06": "Van Riebeeck's Day", + "1957-04-19": "Good Friday", + "1957-04-22": "Easter Monday", + "1957-05-30": "Ascension Day", + "1957-05-31": "Union Day", + "1957-07-08": "Queen's Birthday", + "1957-09-02": "Settlers' Day", + "1957-10-10": "Kruger Day", + "1957-12-16": "Day of the Covenant", + "1957-12-25": "Christmas Day", + "1957-12-26": "Boxing Day", + "1958-01-01": "New Year's Day", + "1958-04-04": "Good Friday", + "1958-04-06": "Van Riebeeck's Day", + "1958-04-07": "Easter Monday", + "1958-05-15": "Ascension Day", + "1958-05-31": "Union Day", + "1958-07-14": "Queen's Birthday", + "1958-09-01": "Settlers' Day", + "1958-10-10": "Kruger Day", + "1958-12-16": "Day of the Covenant", + "1958-12-25": "Christmas Day", + "1958-12-26": "Boxing Day", + "1959-01-01": "New Year's Day", + "1959-03-27": "Good Friday", + "1959-03-30": "Easter Monday", + "1959-04-06": "Van Riebeeck's Day", + "1959-05-07": "Ascension Day", + "1959-05-31": "Union Day", + "1959-07-13": "Queen's Birthday", + "1959-09-07": "Settlers' Day", + "1959-10-10": "Kruger Day", + "1959-12-16": "Day of the Covenant", + "1959-12-25": "Christmas Day", + "1959-12-26": "Boxing Day", + "1960-01-01": "New Year's Day", + "1960-04-06": "Van Riebeeck's Day", + "1960-04-15": "Good Friday", + "1960-04-18": "Easter Monday", + "1960-05-26": "Ascension Day", + "1960-05-31": "Union Day", + "1960-07-11": "Queen's Birthday", + "1960-09-05": "Settlers' Day", + "1960-10-10": "Kruger Day", + "1960-12-16": "Day of the Covenant", + "1960-12-25": "Christmas Day", + "1960-12-26": "Boxing Day", + "1961-01-01": "New Year's Day", + "1961-03-31": "Good Friday", + "1961-04-03": "Easter Monday", + "1961-04-06": "Van Riebeeck's Day", + "1961-05-11": "Ascension Day", + "1961-05-31": "Republic Day", + "1961-07-10": "Family Day", + "1961-09-04": "Settlers' Day", + "1961-10-10": "Kruger Day", + "1961-12-16": "Day of the Covenant", + "1961-12-25": "Christmas Day", + "1961-12-26": "Boxing Day", + "1962-01-01": "New Year's Day", + "1962-04-06": "Van Riebeeck's Day", + "1962-04-20": "Good Friday", + "1962-04-23": "Easter Monday", + "1962-05-31": "Ascension Day; Republic Day", + "1962-07-10": "Family Day", + "1962-09-03": "Settlers' Day", + "1962-10-10": "Kruger Day", + "1962-12-16": "Day of the Covenant", + "1962-12-25": "Christmas Day", + "1962-12-26": "Boxing Day", + "1963-01-01": "New Year's Day", + "1963-04-06": "Van Riebeeck's Day", + "1963-04-12": "Good Friday", + "1963-04-15": "Easter Monday", + "1963-05-23": "Ascension Day", + "1963-05-31": "Republic Day", + "1963-07-10": "Family Day", + "1963-09-02": "Settlers' Day", + "1963-10-10": "Kruger Day", + "1963-12-16": "Day of the Covenant", + "1963-12-25": "Christmas Day", + "1963-12-26": "Boxing Day", + "1964-01-01": "New Year's Day", + "1964-03-27": "Good Friday", + "1964-03-30": "Easter Monday", + "1964-04-06": "Van Riebeeck's Day", + "1964-05-07": "Ascension Day", + "1964-05-31": "Republic Day", + "1964-07-10": "Family Day", + "1964-09-07": "Settlers' Day", + "1964-10-10": "Kruger Day", + "1964-12-16": "Day of the Covenant", + "1964-12-25": "Christmas Day", + "1964-12-26": "Boxing Day", + "1965-01-01": "New Year's Day", + "1965-04-06": "Van Riebeeck's Day", + "1965-04-16": "Good Friday", + "1965-04-19": "Easter Monday", + "1965-05-27": "Ascension Day", + "1965-05-31": "Republic Day", + "1965-07-10": "Family Day", + "1965-09-06": "Settlers' Day", + "1965-10-10": "Kruger Day", + "1965-12-16": "Day of the Covenant", + "1965-12-25": "Christmas Day", + "1965-12-26": "Boxing Day", + "1966-01-01": "New Year's Day", + "1966-04-06": "Van Riebeeck's Day", + "1966-04-08": "Good Friday", + "1966-04-11": "Easter Monday", + "1966-05-19": "Ascension Day", + "1966-05-31": "Republic Day", + "1966-07-10": "Family Day", + "1966-09-05": "Settlers' Day", + "1966-10-10": "Kruger Day", + "1966-12-16": "Day of the Covenant", + "1966-12-25": "Christmas Day", + "1966-12-26": "Boxing Day", + "1967-01-01": "New Year's Day", + "1967-03-24": "Good Friday", + "1967-03-27": "Easter Monday", + "1967-04-06": "Van Riebeeck's Day", + "1967-05-04": "Ascension Day", + "1967-05-31": "Republic Day", + "1967-07-10": "Family Day", + "1967-09-04": "Settlers' Day", + "1967-10-10": "Kruger Day", + "1967-12-16": "Day of the Covenant", + "1967-12-25": "Christmas Day", + "1967-12-26": "Boxing Day", + "1968-01-01": "New Year's Day", + "1968-04-06": "Van Riebeeck's Day", + "1968-04-12": "Good Friday", + "1968-04-15": "Easter Monday", + "1968-05-23": "Ascension Day", + "1968-05-31": "Republic Day", + "1968-07-10": "Family Day", + "1968-09-02": "Settlers' Day", + "1968-10-10": "Kruger Day", + "1968-12-16": "Day of the Covenant", + "1968-12-25": "Christmas Day", + "1968-12-26": "Boxing Day", + "1969-01-01": "New Year's Day", + "1969-04-04": "Good Friday", + "1969-04-06": "Van Riebeeck's Day", + "1969-04-07": "Easter Monday", + "1969-05-15": "Ascension Day", + "1969-05-31": "Republic Day", + "1969-07-10": "Family Day", + "1969-09-01": "Settlers' Day", + "1969-10-10": "Kruger Day", + "1969-12-16": "Day of the Covenant", + "1969-12-25": "Christmas Day", + "1969-12-26": "Boxing Day", + "1970-01-01": "New Year's Day", + "1970-03-27": "Good Friday", + "1970-03-30": "Easter Monday", + "1970-04-06": "Van Riebeeck's Day", + "1970-05-07": "Ascension Day", + "1970-05-31": "Republic Day", + "1970-07-10": "Family Day", + "1970-09-07": "Settlers' Day", + "1970-10-10": "Kruger Day", + "1970-12-16": "Day of the Covenant", + "1970-12-25": "Christmas Day", + "1970-12-26": "Boxing Day", + "1971-01-01": "New Year's Day", + "1971-04-06": "Van Riebeeck's Day", + "1971-04-09": "Good Friday", + "1971-04-12": "Easter Monday", + "1971-05-20": "Ascension Day", + "1971-05-31": "Republic Day", + "1971-07-10": "Family Day", + "1971-09-06": "Settlers' Day", + "1971-10-10": "Kruger Day", + "1971-12-16": "Day of the Covenant", + "1971-12-25": "Christmas Day", + "1971-12-26": "Boxing Day", + "1972-01-01": "New Year's Day", + "1972-03-31": "Good Friday", + "1972-04-03": "Easter Monday", + "1972-04-06": "Van Riebeeck's Day", + "1972-05-11": "Ascension Day", + "1972-05-31": "Republic Day", + "1972-07-10": "Family Day", + "1972-09-04": "Settlers' Day", + "1972-10-10": "Kruger Day", + "1972-12-16": "Day of the Covenant", + "1972-12-25": "Christmas Day", + "1972-12-26": "Boxing Day", + "1973-01-01": "New Year's Day", + "1973-04-06": "Van Riebeeck's Day", + "1973-04-20": "Good Friday", + "1973-04-23": "Easter Monday", + "1973-05-31": "Ascension Day; Republic Day", + "1973-07-10": "Family Day", + "1973-09-03": "Settlers' Day", + "1973-10-10": "Kruger Day", + "1973-12-16": "Day of the Covenant", + "1973-12-25": "Christmas Day", + "1973-12-26": "Boxing Day", + "1974-01-01": "New Year's Day", + "1974-04-12": "Good Friday", + "1974-04-15": "Easter Monday", + "1974-05-23": "Ascension Day", + "1974-05-31": "Republic Day", + "1974-09-02": "Settlers' Day", + "1974-10-10": "Kruger Day", + "1974-12-16": "Day of the Covenant", + "1974-12-25": "Christmas Day", + "1974-12-26": "Boxing Day", + "1975-01-01": "New Year's Day", + "1975-03-28": "Good Friday", + "1975-03-31": "Easter Monday", + "1975-05-08": "Ascension Day", + "1975-05-31": "Republic Day", + "1975-09-01": "Settlers' Day", + "1975-10-10": "Kruger Day", + "1975-12-16": "Day of the Covenant", + "1975-12-25": "Christmas Day", + "1975-12-26": "Boxing Day", + "1976-01-01": "New Year's Day", + "1976-04-16": "Good Friday", + "1976-04-19": "Easter Monday", + "1976-05-27": "Ascension Day", + "1976-05-31": "Republic Day", + "1976-09-06": "Settlers' Day", + "1976-10-10": "Kruger Day", + "1976-12-16": "Day of the Covenant", + "1976-12-25": "Christmas Day", + "1976-12-26": "Boxing Day", + "1977-01-01": "New Year's Day", + "1977-04-08": "Good Friday", + "1977-04-11": "Easter Monday", + "1977-05-19": "Ascension Day", + "1977-05-31": "Republic Day", + "1977-09-05": "Settlers' Day", + "1977-10-10": "Kruger Day", + "1977-12-16": "Day of the Covenant", + "1977-12-25": "Christmas Day", + "1977-12-26": "Boxing Day", + "1978-01-01": "New Year's Day", + "1978-03-24": "Good Friday", + "1978-03-27": "Easter Monday", + "1978-05-04": "Ascension Day", + "1978-05-31": "Republic Day", + "1978-09-04": "Settlers' Day", + "1978-10-10": "Kruger Day", + "1978-12-16": "Day of the Covenant", + "1978-12-25": "Christmas Day", + "1978-12-26": "Boxing Day", + "1979-01-01": "New Year's Day", + "1979-04-13": "Good Friday", + "1979-04-16": "Easter Monday", + "1979-05-24": "Ascension Day", + "1979-05-31": "Republic Day", + "1979-09-03": "Settlers' Day", + "1979-10-10": "Kruger Day", + "1979-12-16": "Day of the Covenant", + "1979-12-25": "Christmas Day", + "1979-12-26": "Boxing Day", + "1980-01-01": "New Year's Day", + "1980-04-04": "Good Friday", + "1980-04-06": "Founder's Day", + "1980-04-07": "Family Day", + "1980-05-15": "Ascension Day", + "1980-05-31": "Republic Day", + "1980-10-10": "Kruger Day", + "1980-12-16": "Day of the Vow", + "1980-12-25": "Christmas Day", + "1980-12-26": "Day of Goodwill", + "1981-01-01": "New Year's Day", + "1981-04-06": "Founder's Day", + "1981-04-17": "Good Friday", + "1981-04-20": "Family Day", + "1981-05-28": "Ascension Day", + "1981-05-31": "Republic Day", + "1981-10-10": "Kruger Day", + "1981-12-16": "Day of the Vow", + "1981-12-25": "Christmas Day", + "1981-12-26": "Day of Goodwill", + "1982-01-01": "New Year's Day", + "1982-04-06": "Founder's Day", + "1982-04-09": "Good Friday", + "1982-04-12": "Family Day", + "1982-05-20": "Ascension Day", + "1982-05-31": "Republic Day", + "1982-10-10": "Kruger Day", + "1982-12-16": "Day of the Vow", + "1982-12-25": "Christmas Day", + "1982-12-26": "Day of Goodwill", + "1983-01-01": "New Year's Day", + "1983-04-01": "Good Friday", + "1983-04-04": "Family Day", + "1983-04-06": "Founder's Day", + "1983-05-12": "Ascension Day", + "1983-05-31": "Republic Day", + "1983-10-10": "Kruger Day", + "1983-12-16": "Day of the Vow", + "1983-12-25": "Christmas Day", + "1983-12-26": "Day of Goodwill", + "1984-01-01": "New Year's Day", + "1984-04-06": "Founder's Day", + "1984-04-20": "Good Friday", + "1984-04-23": "Family Day", + "1984-05-31": "Ascension Day; Republic Day", + "1984-10-10": "Kruger Day", + "1984-12-16": "Day of the Vow", + "1984-12-25": "Christmas Day", + "1984-12-26": "Day of Goodwill", + "1985-01-01": "New Year's Day", + "1985-04-05": "Good Friday", + "1985-04-06": "Founder's Day", + "1985-04-08": "Family Day", + "1985-05-16": "Ascension Day", + "1985-05-31": "Republic Day", + "1985-10-10": "Kruger Day", + "1985-12-16": "Day of the Vow", + "1985-12-25": "Christmas Day", + "1985-12-26": "Day of Goodwill", + "1986-01-01": "New Year's Day", + "1986-03-28": "Good Friday", + "1986-03-31": "Family Day", + "1986-04-06": "Founder's Day", + "1986-05-08": "Ascension Day", + "1986-05-31": "Republic Day", + "1986-10-10": "Kruger Day", + "1986-12-16": "Day of the Vow", + "1986-12-25": "Christmas Day", + "1986-12-26": "Day of Goodwill", + "1987-01-01": "New Year's Day", + "1987-04-06": "Founder's Day", + "1987-04-17": "Good Friday", + "1987-04-20": "Family Day", + "1987-05-01": "Workers' Day", + "1987-05-28": "Ascension Day", + "1987-05-31": "Republic Day", + "1987-10-10": "Kruger Day", + "1987-12-16": "Day of the Vow", + "1987-12-25": "Christmas Day", + "1987-12-26": "Day of Goodwill", + "1988-01-01": "New Year's Day", + "1988-04-01": "Good Friday", + "1988-04-04": "Family Day", + "1988-04-06": "Founder's Day", + "1988-05-06": "Workers' Day", + "1988-05-12": "Ascension Day", + "1988-05-31": "Republic Day", + "1988-10-10": "Kruger Day", + "1988-12-16": "Day of the Vow", + "1988-12-25": "Christmas Day", + "1988-12-26": "Day of Goodwill", + "1989-01-01": "New Year's Day", + "1989-03-24": "Good Friday", + "1989-03-27": "Family Day", + "1989-04-06": "Founder's Day", + "1989-05-04": "Ascension Day", + "1989-05-05": "Workers' Day", + "1989-05-31": "Republic Day", + "1989-10-10": "Kruger Day", + "1989-12-16": "Day of the Vow", + "1989-12-25": "Christmas Day", + "1989-12-26": "Day of Goodwill", + "1990-01-01": "New Year's Day", + "1990-04-06": "Founder's Day", + "1990-04-13": "Good Friday", + "1990-04-16": "Family Day", + "1990-05-24": "Ascension Day", + "1990-05-31": "Republic Day", + "1990-10-10": "Kruger Day", + "1990-12-16": "Day of the Vow", + "1990-12-25": "Christmas Day", + "1990-12-26": "Day of Goodwill", + "1991-01-01": "New Year's Day", + "1991-03-29": "Good Friday", + "1991-04-01": "Family Day", + "1991-04-06": "Founder's Day", + "1991-05-09": "Ascension Day", + "1991-05-31": "Republic Day", + "1991-10-10": "Kruger Day", + "1991-12-16": "Day of the Vow", + "1991-12-25": "Christmas Day", + "1991-12-26": "Day of Goodwill", + "1992-01-01": "New Year's Day", + "1992-04-06": "Founder's Day", + "1992-04-17": "Good Friday", + "1992-04-20": "Family Day", + "1992-05-28": "Ascension Day", + "1992-05-31": "Republic Day", + "1992-10-10": "Kruger Day", + "1992-12-16": "Day of the Vow", + "1992-12-25": "Christmas Day", + "1992-12-26": "Day of Goodwill", + "1993-01-01": "New Year's Day", + "1993-04-06": "Founder's Day", + "1993-04-09": "Good Friday", + "1993-04-12": "Family Day", + "1993-05-20": "Ascension Day", + "1993-05-31": "Republic Day", + "1993-10-10": "Kruger Day", + "1993-12-16": "Day of the Vow", + "1993-12-25": "Christmas Day", + "1993-12-26": "Day of Goodwill", + "1994-01-01": "New Year's Day", + "1994-04-01": "Good Friday", + "1994-04-04": "Family Day", + "1994-04-06": "Founder's Day", + "1994-12-16": "Day of the Vow", + "1994-12-25": "Christmas Day", + "1994-12-26": "Day of Goodwill", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (Observed)", + "1995-03-21": "Human Rights Day", + "1995-04-14": "Good Friday", + "1995-04-17": "Family Day", + "1995-04-27": "Freedom Day", + "1995-05-01": "Workers' Day", + "1995-06-16": "Youth Day", + "1995-08-09": "National Women's Day", + "1995-09-24": "Heritage Day", + "1995-09-25": "Heritage Day (Observed)", + "1995-12-16": "Day of Reconciliation", + "1995-12-25": "Christmas Day", + "1995-12-26": "Day of Goodwill", + "1996-01-01": "New Year's Day", + "1996-03-21": "Human Rights Day", + "1996-04-05": "Good Friday", + "1996-04-08": "Family Day", + "1996-04-27": "Freedom Day", + "1996-05-01": "Workers' Day", + "1996-06-16": "Youth Day", + "1996-06-17": "Youth Day (Observed)", + "1996-08-09": "National Women's Day", + "1996-09-24": "Heritage Day", + "1996-12-16": "Day of Reconciliation", + "1996-12-25": "Christmas Day", + "1996-12-26": "Day of Goodwill", + "1997-01-01": "New Year's Day", + "1997-03-21": "Human Rights Day", + "1997-03-28": "Good Friday", + "1997-03-31": "Family Day", + "1997-04-27": "Freedom Day", + "1997-04-28": "Freedom Day (Observed)", + "1997-05-01": "Workers' Day", + "1997-06-16": "Youth Day", + "1997-08-09": "National Women's Day", + "1997-09-24": "Heritage Day", + "1997-12-16": "Day of Reconciliation", + "1997-12-25": "Christmas Day", + "1997-12-26": "Day of Goodwill", + "1998-01-01": "New Year's Day", + "1998-03-21": "Human Rights Day", + "1998-04-10": "Good Friday", + "1998-04-13": "Family Day", + "1998-04-27": "Freedom Day", + "1998-05-01": "Workers' Day", + "1998-06-16": "Youth Day", + "1998-08-09": "National Women's Day", + "1998-08-10": "National Women's Day (Observed)", + "1998-09-24": "Heritage Day", + "1998-12-16": "Day of Reconciliation", + "1998-12-25": "Christmas Day", + "1998-12-26": "Day of Goodwill", + "1999-01-01": "New Year's Day", + "1999-03-21": "Human Rights Day", + "1999-03-22": "Human Rights Day (Observed)", + "1999-04-02": "Good Friday", + "1999-04-05": "Family Day", + "1999-04-27": "Freedom Day", + "1999-05-01": "Workers' Day", + "1999-06-02": "National and provincial government elections", + "1999-06-16": "Youth Day", + "1999-08-09": "National Women's Day", + "1999-09-24": "Heritage Day", + "1999-12-16": "Day of Reconciliation", + "1999-12-25": "Christmas Day", + "1999-12-26": "Day of Goodwill", + "1999-12-27": "Day of Goodwill (Observed)", + "1999-12-31": "Y2K changeover", + "2000-01-01": "New Year's Day", + "2000-01-02": "Y2K changeover", + "2000-01-03": "Y2K changeover (Observed)", + "2000-03-21": "Human Rights Day", + "2000-04-21": "Good Friday", + "2000-04-24": "Family Day", + "2000-04-27": "Freedom Day", + "2000-05-01": "Workers' Day", + "2000-06-16": "Youth Day", + "2000-08-09": "National Women's Day", + "2000-09-24": "Heritage Day", + "2000-09-25": "Heritage Day (Observed)", + "2000-12-16": "Day of Reconciliation", + "2000-12-25": "Christmas Day", + "2000-12-26": "Day of Goodwill", + "2001-01-01": "New Year's Day", + "2001-03-21": "Human Rights Day", + "2001-04-13": "Good Friday", + "2001-04-16": "Family Day", + "2001-04-27": "Freedom Day", + "2001-05-01": "Workers' Day", + "2001-06-16": "Youth Day", + "2001-08-09": "National Women's Day", + "2001-09-24": "Heritage Day", + "2001-12-16": "Day of Reconciliation", + "2001-12-17": "Day of Reconciliation (Observed)", + "2001-12-25": "Christmas Day", + "2001-12-26": "Day of Goodwill", + "2002-01-01": "New Year's Day", + "2002-03-21": "Human Rights Day", + "2002-03-29": "Good Friday", + "2002-04-01": "Family Day", + "2002-04-27": "Freedom Day", + "2002-05-01": "Workers' Day", + "2002-06-16": "Youth Day", + "2002-06-17": "Youth Day (Observed)", + "2002-08-09": "National Women's Day", + "2002-09-24": "Heritage Day", + "2002-12-16": "Day of Reconciliation", + "2002-12-25": "Christmas Day", + "2002-12-26": "Day of Goodwill", + "2003-01-01": "New Year's Day", + "2003-03-21": "Human Rights Day", + "2003-04-18": "Good Friday", + "2003-04-21": "Family Day", + "2003-04-27": "Freedom Day", + "2003-04-28": "Freedom Day (Observed)", + "2003-05-01": "Workers' Day", + "2003-06-16": "Youth Day", + "2003-08-09": "National Women's Day", + "2003-09-24": "Heritage Day", + "2003-12-16": "Day of Reconciliation", + "2003-12-25": "Christmas Day", + "2003-12-26": "Day of Goodwill", + "2004-01-01": "New Year's Day", + "2004-03-21": "Human Rights Day", + "2004-03-22": "Human Rights Day (Observed)", + "2004-04-09": "Good Friday", + "2004-04-12": "Family Day", + "2004-04-14": "National and provincial government elections", + "2004-04-27": "Freedom Day", + "2004-05-01": "Workers' Day", + "2004-06-16": "Youth Day", + "2004-08-09": "National Women's Day", + "2004-09-24": "Heritage Day", + "2004-12-16": "Day of Reconciliation", + "2004-12-25": "Christmas Day", + "2004-12-26": "Day of Goodwill", + "2004-12-27": "Day of Goodwill (Observed)", + "2005-01-01": "New Year's Day", + "2005-03-21": "Human Rights Day", + "2005-03-25": "Good Friday", + "2005-03-28": "Family Day", + "2005-04-27": "Freedom Day", + "2005-05-01": "Workers' Day", + "2005-05-02": "Workers' Day (Observed)", + "2005-06-16": "Youth Day", + "2005-08-09": "National Women's Day", + "2005-09-24": "Heritage Day", + "2005-12-16": "Day of Reconciliation", + "2005-12-25": "Christmas Day", + "2005-12-26": "Day of Goodwill", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (Observed)", + "2006-03-01": "Local government elections", + "2006-03-21": "Human Rights Day", + "2006-04-14": "Good Friday", + "2006-04-17": "Family Day", + "2006-04-27": "Freedom Day", + "2006-05-01": "Workers' Day", + "2006-06-16": "Youth Day", + "2006-08-09": "National Women's Day", + "2006-09-24": "Heritage Day", + "2006-09-25": "Heritage Day (Observed)", + "2006-12-16": "Day of Reconciliation", + "2006-12-25": "Christmas Day", + "2006-12-26": "Day of Goodwill", + "2007-01-01": "New Year's Day", + "2007-03-21": "Human Rights Day", + "2007-04-06": "Good Friday", + "2007-04-09": "Family Day", + "2007-04-27": "Freedom Day", + "2007-05-01": "Workers' Day", + "2007-06-16": "Youth Day", + "2007-08-09": "National Women's Day", + "2007-09-24": "Heritage Day", + "2007-12-16": "Day of Reconciliation", + "2007-12-17": "Day of Reconciliation (Observed)", + "2007-12-25": "Christmas Day", + "2007-12-26": "Day of Goodwill", + "2008-01-01": "New Year's Day", + "2008-03-21": "Good Friday; Human Rights Day", + "2008-03-24": "Family Day", + "2008-04-27": "Freedom Day", + "2008-04-28": "Freedom Day (Observed)", + "2008-05-01": "Workers' Day", + "2008-05-02": "Public holiday by presidential decree", + "2008-06-16": "Youth Day", + "2008-08-09": "National Women's Day", + "2008-09-24": "Heritage Day", + "2008-12-16": "Day of Reconciliation", + "2008-12-25": "Christmas Day", + "2008-12-26": "Day of Goodwill", + "2009-01-01": "New Year's Day", + "2009-03-21": "Human Rights Day", + "2009-04-10": "Good Friday", + "2009-04-13": "Family Day", + "2009-04-22": "National and provincial government elections", + "2009-04-27": "Freedom Day", + "2009-05-01": "Workers' Day", + "2009-06-16": "Youth Day", + "2009-08-09": "National Women's Day", + "2009-08-10": "National Women's Day (Observed)", + "2009-09-24": "Heritage Day", + "2009-12-16": "Day of Reconciliation", + "2009-12-25": "Christmas Day", + "2009-12-26": "Day of Goodwill", + "2010-01-01": "New Year's Day", + "2010-03-21": "Human Rights Day", + "2010-03-22": "Human Rights Day (Observed)", + "2010-04-02": "Good Friday", + "2010-04-05": "Family Day", + "2010-04-27": "Freedom Day", + "2010-05-01": "Workers' Day", + "2010-06-16": "Youth Day", + "2010-08-09": "National Women's Day", + "2010-09-24": "Heritage Day", + "2010-12-16": "Day of Reconciliation", + "2010-12-25": "Christmas Day", + "2010-12-26": "Day of Goodwill", + "2010-12-27": "Day of Goodwill (Observed)", + "2011-01-01": "New Year's Day", + "2011-03-21": "Human Rights Day", + "2011-04-22": "Good Friday", + "2011-04-25": "Family Day", + "2011-04-27": "Freedom Day", + "2011-05-01": "Workers' Day", + "2011-05-02": "Workers' Day (Observed)", + "2011-05-18": "Local government elections", + "2011-06-16": "Youth Day", + "2011-08-09": "National Women's Day", + "2011-09-24": "Heritage Day", + "2011-12-16": "Day of Reconciliation", + "2011-12-25": "Christmas Day", + "2011-12-26": "Day of Goodwill", + "2011-12-27": "Public holiday by presidential decree", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (Observed)", + "2012-03-21": "Human Rights Day", + "2012-04-06": "Good Friday", + "2012-04-09": "Family Day", + "2012-04-27": "Freedom Day", + "2012-05-01": "Workers' Day", + "2012-06-16": "Youth Day", + "2012-08-09": "National Women's Day", + "2012-09-24": "Heritage Day", + "2012-12-16": "Day of Reconciliation", + "2012-12-17": "Day of Reconciliation (Observed)", + "2012-12-25": "Christmas Day", + "2012-12-26": "Day of Goodwill", + "2013-01-01": "New Year's Day", + "2013-03-21": "Human Rights Day", + "2013-03-29": "Good Friday", + "2013-04-01": "Family Day", + "2013-04-27": "Freedom Day", + "2013-05-01": "Workers' Day", + "2013-06-16": "Youth Day", + "2013-06-17": "Youth Day (Observed)", + "2013-08-09": "National Women's Day", + "2013-09-24": "Heritage Day", + "2013-12-16": "Day of Reconciliation", + "2013-12-25": "Christmas Day", + "2013-12-26": "Day of Goodwill", + "2014-01-01": "New Year's Day", + "2014-03-21": "Human Rights Day", + "2014-04-18": "Good Friday", + "2014-04-21": "Family Day", + "2014-04-27": "Freedom Day", + "2014-04-28": "Freedom Day (Observed)", + "2014-05-01": "Workers' Day", + "2014-05-07": "National and provincial government elections", + "2014-06-16": "Youth Day", + "2014-08-09": "National Women's Day", + "2014-09-24": "Heritage Day", + "2014-12-16": "Day of Reconciliation", + "2014-12-25": "Christmas Day", + "2014-12-26": "Day of Goodwill", + "2015-01-01": "New Year's Day", + "2015-03-21": "Human Rights Day", + "2015-04-03": "Good Friday", + "2015-04-06": "Family Day", + "2015-04-27": "Freedom Day", + "2015-05-01": "Workers' Day", + "2015-06-16": "Youth Day", + "2015-08-09": "National Women's Day", + "2015-08-10": "National Women's Day (Observed)", + "2015-09-24": "Heritage Day", + "2015-12-16": "Day of Reconciliation", + "2015-12-25": "Christmas Day", + "2015-12-26": "Day of Goodwill", + "2016-01-01": "New Year's Day", + "2016-03-21": "Human Rights Day", + "2016-03-25": "Good Friday", + "2016-03-28": "Family Day", + "2016-04-27": "Freedom Day", + "2016-05-01": "Workers' Day", + "2016-05-02": "Workers' Day (Observed)", + "2016-06-16": "Youth Day", + "2016-08-03": "Local government elections", + "2016-08-09": "National Women's Day", + "2016-09-24": "Heritage Day", + "2016-12-16": "Day of Reconciliation", + "2016-12-25": "Christmas Day", + "2016-12-26": "Day of Goodwill", + "2016-12-27": "Public holiday by presidential decree", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (Observed)", + "2017-03-21": "Human Rights Day", + "2017-04-14": "Good Friday", + "2017-04-17": "Family Day", + "2017-04-27": "Freedom Day", + "2017-05-01": "Workers' Day", + "2017-06-16": "Youth Day", + "2017-08-09": "National Women's Day", + "2017-09-24": "Heritage Day", + "2017-09-25": "Heritage Day (Observed)", + "2017-12-16": "Day of Reconciliation", + "2017-12-25": "Christmas Day", + "2017-12-26": "Day of Goodwill", + "2018-01-01": "New Year's Day", + "2018-03-21": "Human Rights Day", + "2018-03-30": "Good Friday", + "2018-04-02": "Family Day", + "2018-04-27": "Freedom Day", + "2018-05-01": "Workers' Day", + "2018-06-16": "Youth Day", + "2018-08-09": "National Women's Day", + "2018-09-24": "Heritage Day", + "2018-12-16": "Day of Reconciliation", + "2018-12-17": "Day of Reconciliation (Observed)", + "2018-12-25": "Christmas Day", + "2018-12-26": "Day of Goodwill", + "2019-01-01": "New Year's Day", + "2019-03-21": "Human Rights Day", + "2019-04-19": "Good Friday", + "2019-04-22": "Family Day", + "2019-04-27": "Freedom Day", + "2019-05-01": "Workers' Day", + "2019-05-08": "National and provincial government elections", + "2019-06-16": "Youth Day", + "2019-06-17": "Youth Day (Observed)", + "2019-08-09": "National Women's Day", + "2019-09-24": "Heritage Day", + "2019-12-16": "Day of Reconciliation", + "2019-12-25": "Christmas Day", + "2019-12-26": "Day of Goodwill", + "2020-01-01": "New Year's Day", + "2020-03-21": "Human Rights Day", + "2020-04-10": "Good Friday", + "2020-04-13": "Family Day", + "2020-04-27": "Freedom Day", + "2020-05-01": "Workers' Day", + "2020-06-16": "Youth Day", + "2020-08-09": "National Women's Day", + "2020-08-10": "National Women's Day (Observed)", + "2020-09-24": "Heritage Day", + "2020-12-16": "Day of Reconciliation", + "2020-12-25": "Christmas Day", + "2020-12-26": "Day of Goodwill", + "2021-01-01": "New Year's Day", + "2021-03-21": "Human Rights Day", + "2021-03-22": "Human Rights Day (Observed)", + "2021-04-02": "Good Friday", + "2021-04-05": "Family Day", + "2021-04-27": "Freedom Day", + "2021-05-01": "Workers' Day", + "2021-06-16": "Youth Day", + "2021-08-09": "National Women's Day", + "2021-09-24": "Heritage Day", + "2021-11-01": "Municipal elections", + "2021-12-16": "Day of Reconciliation", + "2021-12-25": "Christmas Day", + "2021-12-26": "Day of Goodwill", + "2021-12-27": "Day of Goodwill (Observed)", + "2022-01-01": "New Year's Day", + "2022-03-21": "Human Rights Day", + "2022-04-15": "Good Friday", + "2022-04-18": "Family Day", + "2022-04-27": "Freedom Day", + "2022-05-01": "Workers' Day", + "2022-05-02": "Workers' Day (Observed)", + "2022-06-16": "Youth Day", + "2022-08-09": "National Women's Day", + "2022-09-24": "Heritage Day", + "2022-12-16": "Day of Reconciliation", + "2022-12-25": "Christmas Day", + "2022-12-26": "Day of Goodwill", + "2022-12-27": "Public holiday by presidential decree", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (Observed)", + "2023-03-21": "Human Rights Day", + "2023-04-07": "Good Friday", + "2023-04-10": "Family Day", + "2023-04-27": "Freedom Day", + "2023-05-01": "Workers' Day", + "2023-06-16": "Youth Day", + "2023-08-09": "National Women's Day", + "2023-09-24": "Heritage Day", + "2023-09-25": "Heritage Day (Observed)", + "2023-12-16": "Day of Reconciliation", + "2023-12-25": "Christmas Day", + "2023-12-26": "Day of Goodwill", + "2024-01-01": "New Year's Day", + "2024-03-21": "Human Rights Day", + "2024-03-29": "Good Friday", + "2024-04-01": "Family Day", + "2024-04-27": "Freedom Day", + "2024-05-01": "Workers' Day", + "2024-06-16": "Youth Day", + "2024-06-17": "Youth Day (Observed)", + "2024-08-09": "National Women's Day", + "2024-09-24": "Heritage Day", + "2024-12-16": "Day of Reconciliation", + "2024-12-25": "Christmas Day", + "2024-12-26": "Day of Goodwill", + "2025-01-01": "New Year's Day", + "2025-03-21": "Human Rights Day", + "2025-04-18": "Good Friday", + "2025-04-21": "Family Day", + "2025-04-27": "Freedom Day", + "2025-04-28": "Freedom Day (Observed)", + "2025-05-01": "Workers' Day", + "2025-06-16": "Youth Day", + "2025-08-09": "National Women's Day", + "2025-09-24": "Heritage Day", + "2025-12-16": "Day of Reconciliation", + "2025-12-25": "Christmas Day", + "2025-12-26": "Day of Goodwill", + "2026-01-01": "New Year's Day", + "2026-03-21": "Human Rights Day", + "2026-04-03": "Good Friday", + "2026-04-06": "Family Day", + "2026-04-27": "Freedom Day", + "2026-05-01": "Workers' Day", + "2026-06-16": "Youth Day", + "2026-08-09": "National Women's Day", + "2026-08-10": "National Women's Day (Observed)", + "2026-09-24": "Heritage Day", + "2026-12-16": "Day of Reconciliation", + "2026-12-25": "Christmas Day", + "2026-12-26": "Day of Goodwill", + "2027-01-01": "New Year's Day", + "2027-03-21": "Human Rights Day", + "2027-03-22": "Human Rights Day (Observed)", + "2027-03-26": "Good Friday", + "2027-03-29": "Family Day", + "2027-04-27": "Freedom Day", + "2027-05-01": "Workers' Day", + "2027-06-16": "Youth Day", + "2027-08-09": "National Women's Day", + "2027-09-24": "Heritage Day", + "2027-12-16": "Day of Reconciliation", + "2027-12-25": "Christmas Day", + "2027-12-26": "Day of Goodwill", + "2027-12-27": "Day of Goodwill (Observed)", + "2028-01-01": "New Year's Day", + "2028-03-21": "Human Rights Day", + "2028-04-14": "Good Friday", + "2028-04-17": "Family Day", + "2028-04-27": "Freedom Day", + "2028-05-01": "Workers' Day", + "2028-06-16": "Youth Day", + "2028-08-09": "National Women's Day", + "2028-09-24": "Heritage Day", + "2028-09-25": "Heritage Day (Observed)", + "2028-12-16": "Day of Reconciliation", + "2028-12-25": "Christmas Day", + "2028-12-26": "Day of Goodwill", + "2029-01-01": "New Year's Day", + "2029-03-21": "Human Rights Day", + "2029-03-30": "Good Friday", + "2029-04-02": "Family Day", + "2029-04-27": "Freedom Day", + "2029-05-01": "Workers' Day", + "2029-06-16": "Youth Day", + "2029-08-09": "National Women's Day", + "2029-09-24": "Heritage Day", + "2029-12-16": "Day of Reconciliation", + "2029-12-17": "Day of Reconciliation (Observed)", + "2029-12-25": "Christmas Day", + "2029-12-26": "Day of Goodwill", + "2030-01-01": "New Year's Day", + "2030-03-21": "Human Rights Day", + "2030-04-19": "Good Friday", + "2030-04-22": "Family Day", + "2030-04-27": "Freedom Day", + "2030-05-01": "Workers' Day", + "2030-06-16": "Youth Day", + "2030-06-17": "Youth Day (Observed)", + "2030-08-09": "National Women's Day", + "2030-09-24": "Heritage Day", + "2030-12-16": "Day of Reconciliation", + "2030-12-25": "Christmas Day", + "2030-12-26": "Day of Goodwill", + "2031-01-01": "New Year's Day", + "2031-03-21": "Human Rights Day", + "2031-04-11": "Good Friday", + "2031-04-14": "Family Day", + "2031-04-27": "Freedom Day", + "2031-04-28": "Freedom Day (Observed)", + "2031-05-01": "Workers' Day", + "2031-06-16": "Youth Day", + "2031-08-09": "National Women's Day", + "2031-09-24": "Heritage Day", + "2031-12-16": "Day of Reconciliation", + "2031-12-25": "Christmas Day", + "2031-12-26": "Day of Goodwill", + "2032-01-01": "New Year's Day", + "2032-03-21": "Human Rights Day", + "2032-03-22": "Human Rights Day (Observed)", + "2032-03-26": "Good Friday", + "2032-03-29": "Family Day", + "2032-04-27": "Freedom Day", + "2032-05-01": "Workers' Day", + "2032-06-16": "Youth Day", + "2032-08-09": "National Women's Day", + "2032-09-24": "Heritage Day", + "2032-12-16": "Day of Reconciliation", + "2032-12-25": "Christmas Day", + "2032-12-26": "Day of Goodwill", + "2032-12-27": "Day of Goodwill (Observed)", + "2033-01-01": "New Year's Day", + "2033-03-21": "Human Rights Day", + "2033-04-15": "Good Friday", + "2033-04-18": "Family Day", + "2033-04-27": "Freedom Day", + "2033-05-01": "Workers' Day", + "2033-05-02": "Workers' Day (Observed)", + "2033-06-16": "Youth Day", + "2033-08-09": "National Women's Day", + "2033-09-24": "Heritage Day", + "2033-12-16": "Day of Reconciliation", + "2033-12-25": "Christmas Day", + "2033-12-26": "Day of Goodwill", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-03-21": "Human Rights Day", + "2034-04-07": "Good Friday", + "2034-04-10": "Family Day", + "2034-04-27": "Freedom Day", + "2034-05-01": "Workers' Day", + "2034-06-16": "Youth Day", + "2034-08-09": "National Women's Day", + "2034-09-24": "Heritage Day", + "2034-09-25": "Heritage Day (Observed)", + "2034-12-16": "Day of Reconciliation", + "2034-12-25": "Christmas Day", + "2034-12-26": "Day of Goodwill", + "2035-01-01": "New Year's Day", + "2035-03-21": "Human Rights Day", + "2035-03-23": "Good Friday", + "2035-03-26": "Family Day", + "2035-04-27": "Freedom Day", + "2035-05-01": "Workers' Day", + "2035-06-16": "Youth Day", + "2035-08-09": "National Women's Day", + "2035-09-24": "Heritage Day", + "2035-12-16": "Day of Reconciliation", + "2035-12-17": "Day of Reconciliation (Observed)", + "2035-12-25": "Christmas Day", + "2035-12-26": "Day of Goodwill", + "2036-01-01": "New Year's Day", + "2036-03-21": "Human Rights Day", + "2036-04-11": "Good Friday", + "2036-04-14": "Family Day", + "2036-04-27": "Freedom Day", + "2036-04-28": "Freedom Day (Observed)", + "2036-05-01": "Workers' Day", + "2036-06-16": "Youth Day", + "2036-08-09": "National Women's Day", + "2036-09-24": "Heritage Day", + "2036-12-16": "Day of Reconciliation", + "2036-12-25": "Christmas Day", + "2036-12-26": "Day of Goodwill", + "2037-01-01": "New Year's Day", + "2037-03-21": "Human Rights Day", + "2037-04-03": "Good Friday", + "2037-04-06": "Family Day", + "2037-04-27": "Freedom Day", + "2037-05-01": "Workers' Day", + "2037-06-16": "Youth Day", + "2037-08-09": "National Women's Day", + "2037-08-10": "National Women's Day (Observed)", + "2037-09-24": "Heritage Day", + "2037-12-16": "Day of Reconciliation", + "2037-12-25": "Christmas Day", + "2037-12-26": "Day of Goodwill", + "2038-01-01": "New Year's Day", + "2038-03-21": "Human Rights Day", + "2038-03-22": "Human Rights Day (Observed)", + "2038-04-23": "Good Friday", + "2038-04-26": "Family Day", + "2038-04-27": "Freedom Day", + "2038-05-01": "Workers' Day", + "2038-06-16": "Youth Day", + "2038-08-09": "National Women's Day", + "2038-09-24": "Heritage Day", + "2038-12-16": "Day of Reconciliation", + "2038-12-25": "Christmas Day", + "2038-12-26": "Day of Goodwill", + "2038-12-27": "Day of Goodwill (Observed)", + "2039-01-01": "New Year's Day", + "2039-03-21": "Human Rights Day", + "2039-04-08": "Good Friday", + "2039-04-11": "Family Day", + "2039-04-27": "Freedom Day", + "2039-05-01": "Workers' Day", + "2039-05-02": "Workers' Day (Observed)", + "2039-06-16": "Youth Day", + "2039-08-09": "National Women's Day", + "2039-09-24": "Heritage Day", + "2039-12-16": "Day of Reconciliation", + "2039-12-25": "Christmas Day", + "2039-12-26": "Day of Goodwill", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (Observed)", + "2040-03-21": "Human Rights Day", + "2040-03-30": "Good Friday", + "2040-04-02": "Family Day", + "2040-04-27": "Freedom Day", + "2040-05-01": "Workers' Day", + "2040-06-16": "Youth Day", + "2040-08-09": "National Women's Day", + "2040-09-24": "Heritage Day", + "2040-12-16": "Day of Reconciliation", + "2040-12-17": "Day of Reconciliation (Observed)", + "2040-12-25": "Christmas Day", + "2040-12-26": "Day of Goodwill", + "2041-01-01": "New Year's Day", + "2041-03-21": "Human Rights Day", + "2041-04-19": "Good Friday", + "2041-04-22": "Family Day", + "2041-04-27": "Freedom Day", + "2041-05-01": "Workers' Day", + "2041-06-16": "Youth Day", + "2041-06-17": "Youth Day (Observed)", + "2041-08-09": "National Women's Day", + "2041-09-24": "Heritage Day", + "2041-12-16": "Day of Reconciliation", + "2041-12-25": "Christmas Day", + "2041-12-26": "Day of Goodwill", + "2042-01-01": "New Year's Day", + "2042-03-21": "Human Rights Day", + "2042-04-04": "Good Friday", + "2042-04-07": "Family Day", + "2042-04-27": "Freedom Day", + "2042-04-28": "Freedom Day (Observed)", + "2042-05-01": "Workers' Day", + "2042-06-16": "Youth Day", + "2042-08-09": "National Women's Day", + "2042-09-24": "Heritage Day", + "2042-12-16": "Day of Reconciliation", + "2042-12-25": "Christmas Day", + "2042-12-26": "Day of Goodwill", + "2043-01-01": "New Year's Day", + "2043-03-21": "Human Rights Day", + "2043-03-27": "Good Friday", + "2043-03-30": "Family Day", + "2043-04-27": "Freedom Day", + "2043-05-01": "Workers' Day", + "2043-06-16": "Youth Day", + "2043-08-09": "National Women's Day", + "2043-08-10": "National Women's Day (Observed)", + "2043-09-24": "Heritage Day", + "2043-12-16": "Day of Reconciliation", + "2043-12-25": "Christmas Day", + "2043-12-26": "Day of Goodwill", + "2044-01-01": "New Year's Day", + "2044-03-21": "Human Rights Day", + "2044-04-15": "Good Friday", + "2044-04-18": "Family Day", + "2044-04-27": "Freedom Day", + "2044-05-01": "Workers' Day", + "2044-05-02": "Workers' Day (Observed)", + "2044-06-16": "Youth Day", + "2044-08-09": "National Women's Day", + "2044-09-24": "Heritage Day", + "2044-12-16": "Day of Reconciliation", + "2044-12-25": "Christmas Day", + "2044-12-26": "Day of Goodwill", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (Observed)", + "2045-03-21": "Human Rights Day", + "2045-04-07": "Good Friday", + "2045-04-10": "Family Day", + "2045-04-27": "Freedom Day", + "2045-05-01": "Workers' Day", + "2045-06-16": "Youth Day", + "2045-08-09": "National Women's Day", + "2045-09-24": "Heritage Day", + "2045-09-25": "Heritage Day (Observed)", + "2045-12-16": "Day of Reconciliation", + "2045-12-25": "Christmas Day", + "2045-12-26": "Day of Goodwill", + "2046-01-01": "New Year's Day", + "2046-03-21": "Human Rights Day", + "2046-03-23": "Good Friday", + "2046-03-26": "Family Day", + "2046-04-27": "Freedom Day", + "2046-05-01": "Workers' Day", + "2046-06-16": "Youth Day", + "2046-08-09": "National Women's Day", + "2046-09-24": "Heritage Day", + "2046-12-16": "Day of Reconciliation", + "2046-12-17": "Day of Reconciliation (Observed)", + "2046-12-25": "Christmas Day", + "2046-12-26": "Day of Goodwill", + "2047-01-01": "New Year's Day", + "2047-03-21": "Human Rights Day", + "2047-04-12": "Good Friday", + "2047-04-15": "Family Day", + "2047-04-27": "Freedom Day", + "2047-05-01": "Workers' Day", + "2047-06-16": "Youth Day", + "2047-06-17": "Youth Day (Observed)", + "2047-08-09": "National Women's Day", + "2047-09-24": "Heritage Day", + "2047-12-16": "Day of Reconciliation", + "2047-12-25": "Christmas Day", + "2047-12-26": "Day of Goodwill", + "2048-01-01": "New Year's Day", + "2048-03-21": "Human Rights Day", + "2048-04-03": "Good Friday", + "2048-04-06": "Family Day", + "2048-04-27": "Freedom Day", + "2048-05-01": "Workers' Day", + "2048-06-16": "Youth Day", + "2048-08-09": "National Women's Day", + "2048-08-10": "National Women's Day (Observed)", + "2048-09-24": "Heritage Day", + "2048-12-16": "Day of Reconciliation", + "2048-12-25": "Christmas Day", + "2048-12-26": "Day of Goodwill", + "2049-01-01": "New Year's Day", + "2049-03-21": "Human Rights Day", + "2049-03-22": "Human Rights Day (Observed)", + "2049-04-16": "Good Friday", + "2049-04-19": "Family Day", + "2049-04-27": "Freedom Day", + "2049-05-01": "Workers' Day", + "2049-06-16": "Youth Day", + "2049-08-09": "National Women's Day", + "2049-09-24": "Heritage Day", + "2049-12-16": "Day of Reconciliation", + "2049-12-25": "Christmas Day", + "2049-12-26": "Day of Goodwill", + "2049-12-27": "Day of Goodwill (Observed)", + "2050-01-01": "New Year's Day", + "2050-03-21": "Human Rights Day", + "2050-04-08": "Good Friday", + "2050-04-11": "Family Day", + "2050-04-27": "Freedom Day", + "2050-05-01": "Workers' Day", + "2050-05-02": "Workers' Day (Observed)", + "2050-06-16": "Youth Day", + "2050-08-09": "National Women's Day", + "2050-09-24": "Heritage Day", + "2050-12-16": "Day of Reconciliation", + "2050-12-25": "Christmas Day", + "2050-12-26": "Day of Goodwill" +} diff --git a/snapshots/countries/ZM.json b/snapshots/countries/ZM.json new file mode 100644 index 000000000..7bcc158fb --- /dev/null +++ b/snapshots/countries/ZM.json @@ -0,0 +1,1263 @@ +{ + "1965-01-01": "New Year's Day", + "1965-03-12": "Youth Day", + "1965-04-16": "Good Friday", + "1965-04-17": "Holy Saturday", + "1965-04-19": "Easter Monday", + "1965-05-01": "Labour Day", + "1965-05-25": "Africa Freedom Day", + "1965-07-05": "Heroes' Day", + "1965-07-06": "Unity Day", + "1965-08-02": "Farmers' Day", + "1965-10-24": "Independence Day", + "1965-10-25": "Independence Day (Observed)", + "1965-12-25": "Christmas Day", + "1966-01-01": "New Year's Day", + "1966-03-12": "Youth Day", + "1966-04-08": "Good Friday", + "1966-04-09": "Holy Saturday", + "1966-04-11": "Easter Monday", + "1966-05-01": "Labour Day", + "1966-05-02": "Labour Day (Observed)", + "1966-05-25": "Africa Freedom Day", + "1966-07-04": "Heroes' Day", + "1966-07-05": "Unity Day", + "1966-08-01": "Farmers' Day", + "1966-10-24": "Independence Day", + "1966-12-25": "Christmas Day", + "1966-12-26": "Christmas Day (Observed)", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day (Observed)", + "1967-03-12": "Youth Day", + "1967-03-13": "Youth Day (Observed)", + "1967-03-24": "Good Friday", + "1967-03-25": "Holy Saturday", + "1967-03-27": "Easter Monday", + "1967-05-01": "Labour Day", + "1967-05-25": "Africa Freedom Day", + "1967-07-03": "Heroes' Day", + "1967-07-04": "Unity Day", + "1967-08-07": "Farmers' Day", + "1967-10-24": "Independence Day", + "1967-12-25": "Christmas Day", + "1968-01-01": "New Year's Day", + "1968-03-12": "Youth Day", + "1968-04-12": "Good Friday", + "1968-04-13": "Holy Saturday", + "1968-04-15": "Easter Monday", + "1968-05-01": "Labour Day", + "1968-05-25": "Africa Freedom Day", + "1968-07-01": "Heroes' Day", + "1968-07-02": "Unity Day", + "1968-08-05": "Farmers' Day", + "1968-10-24": "Independence Day", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-03-12": "Youth Day", + "1969-04-04": "Good Friday", + "1969-04-05": "Holy Saturday", + "1969-04-07": "Easter Monday", + "1969-05-01": "Labour Day", + "1969-05-25": "Africa Freedom Day", + "1969-05-26": "Africa Freedom Day (Observed)", + "1969-07-07": "Heroes' Day", + "1969-07-08": "Unity Day", + "1969-08-04": "Farmers' Day", + "1969-10-24": "Independence Day", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-03-12": "Youth Day", + "1970-03-27": "Good Friday", + "1970-03-28": "Holy Saturday", + "1970-03-30": "Easter Monday", + "1970-05-01": "Labour Day", + "1970-05-25": "Africa Freedom Day", + "1970-07-06": "Heroes' Day", + "1970-07-07": "Unity Day", + "1970-08-03": "Farmers' Day", + "1970-10-24": "Independence Day", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-03-12": "Youth Day", + "1971-04-09": "Good Friday", + "1971-04-10": "Holy Saturday", + "1971-04-12": "Easter Monday", + "1971-05-01": "Labour Day", + "1971-05-25": "Africa Freedom Day", + "1971-07-05": "Heroes' Day", + "1971-07-06": "Unity Day", + "1971-08-02": "Farmers' Day", + "1971-10-24": "Independence Day", + "1971-10-25": "Independence Day (Observed)", + "1971-12-25": "Christmas Day", + "1972-01-01": "New Year's Day", + "1972-03-12": "Youth Day", + "1972-03-13": "Youth Day (Observed)", + "1972-03-31": "Good Friday", + "1972-04-01": "Holy Saturday", + "1972-04-03": "Easter Monday", + "1972-05-01": "Labour Day", + "1972-05-25": "Africa Freedom Day", + "1972-07-03": "Heroes' Day", + "1972-07-04": "Unity Day", + "1972-08-07": "Farmers' Day", + "1972-10-24": "Independence Day", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-03-12": "Youth Day", + "1973-04-20": "Good Friday", + "1973-04-21": "Holy Saturday", + "1973-04-23": "Easter Monday", + "1973-05-01": "Labour Day", + "1973-05-25": "Africa Freedom Day", + "1973-07-02": "Heroes' Day", + "1973-07-03": "Unity Day", + "1973-08-06": "Farmers' Day", + "1973-10-24": "Independence Day", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-03-12": "Youth Day", + "1974-04-12": "Good Friday", + "1974-04-13": "Holy Saturday", + "1974-04-15": "Easter Monday", + "1974-05-01": "Labour Day", + "1974-05-25": "Africa Freedom Day", + "1974-07-01": "Heroes' Day", + "1974-07-02": "Unity Day", + "1974-08-05": "Farmers' Day", + "1974-10-24": "Independence Day", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-03-12": "Youth Day", + "1975-03-28": "Good Friday", + "1975-03-29": "Holy Saturday", + "1975-03-31": "Easter Monday", + "1975-05-01": "Labour Day", + "1975-05-25": "Africa Freedom Day", + "1975-05-26": "Africa Freedom Day (Observed)", + "1975-07-07": "Heroes' Day", + "1975-07-08": "Unity Day", + "1975-08-04": "Farmers' Day", + "1975-10-24": "Independence Day", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-03-12": "Youth Day", + "1976-04-16": "Good Friday", + "1976-04-17": "Holy Saturday", + "1976-04-19": "Easter Monday", + "1976-05-01": "Labour Day", + "1976-05-25": "Africa Freedom Day", + "1976-07-05": "Heroes' Day", + "1976-07-06": "Unity Day", + "1976-08-02": "Farmers' Day", + "1976-10-24": "Independence Day", + "1976-10-25": "Independence Day (Observed)", + "1976-12-25": "Christmas Day", + "1977-01-01": "New Year's Day", + "1977-03-12": "Youth Day", + "1977-04-08": "Good Friday", + "1977-04-09": "Holy Saturday", + "1977-04-11": "Easter Monday", + "1977-05-01": "Labour Day", + "1977-05-02": "Labour Day (Observed)", + "1977-05-25": "Africa Freedom Day", + "1977-07-04": "Heroes' Day", + "1977-07-05": "Unity Day", + "1977-08-01": "Farmers' Day", + "1977-10-24": "Independence Day", + "1977-12-25": "Christmas Day", + "1977-12-26": "Christmas Day (Observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day (Observed)", + "1978-03-12": "Youth Day", + "1978-03-13": "Youth Day (Observed)", + "1978-03-24": "Good Friday", + "1978-03-25": "Holy Saturday", + "1978-03-27": "Easter Monday", + "1978-05-01": "Labour Day", + "1978-05-25": "Africa Freedom Day", + "1978-07-03": "Heroes' Day", + "1978-07-04": "Unity Day", + "1978-08-07": "Farmers' Day", + "1978-10-24": "Independence Day", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-03-12": "Youth Day", + "1979-04-13": "Good Friday", + "1979-04-14": "Holy Saturday", + "1979-04-16": "Easter Monday", + "1979-05-01": "Labour Day", + "1979-05-25": "Africa Freedom Day", + "1979-07-02": "Heroes' Day", + "1979-07-03": "Unity Day", + "1979-08-06": "Farmers' Day", + "1979-10-24": "Independence Day", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-03-12": "Youth Day", + "1980-04-04": "Good Friday", + "1980-04-05": "Holy Saturday", + "1980-04-07": "Easter Monday", + "1980-05-01": "Labour Day", + "1980-05-25": "Africa Freedom Day", + "1980-05-26": "Africa Freedom Day (Observed)", + "1980-07-07": "Heroes' Day", + "1980-07-08": "Unity Day", + "1980-08-04": "Farmers' Day", + "1980-10-24": "Independence Day", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-03-12": "Youth Day", + "1981-04-17": "Good Friday", + "1981-04-18": "Holy Saturday", + "1981-04-20": "Easter Monday", + "1981-05-01": "Labour Day", + "1981-05-25": "Africa Freedom Day", + "1981-07-06": "Heroes' Day", + "1981-07-07": "Unity Day", + "1981-08-03": "Farmers' Day", + "1981-10-24": "Independence Day", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-03-12": "Youth Day", + "1982-04-09": "Good Friday", + "1982-04-10": "Holy Saturday", + "1982-04-12": "Easter Monday", + "1982-05-01": "Labour Day", + "1982-05-25": "Africa Freedom Day", + "1982-07-05": "Heroes' Day", + "1982-07-06": "Unity Day", + "1982-08-02": "Farmers' Day", + "1982-10-24": "Independence Day", + "1982-10-25": "Independence Day (Observed)", + "1982-12-25": "Christmas Day", + "1983-01-01": "New Year's Day", + "1983-03-12": "Youth Day", + "1983-04-01": "Good Friday", + "1983-04-02": "Holy Saturday", + "1983-04-04": "Easter Monday", + "1983-05-01": "Labour Day", + "1983-05-02": "Labour Day (Observed)", + "1983-05-25": "Africa Freedom Day", + "1983-07-04": "Heroes' Day", + "1983-07-05": "Unity Day", + "1983-08-01": "Farmers' Day", + "1983-10-24": "Independence Day", + "1983-12-25": "Christmas Day", + "1983-12-26": "Christmas Day (Observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (Observed)", + "1984-03-12": "Youth Day", + "1984-04-20": "Good Friday", + "1984-04-21": "Holy Saturday", + "1984-04-23": "Easter Monday", + "1984-05-01": "Labour Day", + "1984-05-25": "Africa Freedom Day", + "1984-07-02": "Heroes' Day", + "1984-07-03": "Unity Day", + "1984-08-06": "Farmers' Day", + "1984-10-24": "Independence Day", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-03-12": "Youth Day", + "1985-04-05": "Good Friday", + "1985-04-06": "Holy Saturday", + "1985-04-08": "Easter Monday", + "1985-05-01": "Labour Day", + "1985-05-25": "Africa Freedom Day", + "1985-07-01": "Heroes' Day", + "1985-07-02": "Unity Day", + "1985-08-05": "Farmers' Day", + "1985-10-24": "Independence Day", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-03-12": "Youth Day", + "1986-03-28": "Good Friday", + "1986-03-29": "Holy Saturday", + "1986-03-31": "Easter Monday", + "1986-05-01": "Labour Day", + "1986-05-25": "Africa Freedom Day", + "1986-05-26": "Africa Freedom Day (Observed)", + "1986-07-07": "Heroes' Day", + "1986-07-08": "Unity Day", + "1986-08-04": "Farmers' Day", + "1986-10-24": "Independence Day", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-03-12": "Youth Day", + "1987-04-17": "Good Friday", + "1987-04-18": "Holy Saturday", + "1987-04-20": "Easter Monday", + "1987-05-01": "Labour Day", + "1987-05-25": "Africa Freedom Day", + "1987-07-06": "Heroes' Day", + "1987-07-07": "Unity Day", + "1987-08-03": "Farmers' Day", + "1987-10-24": "Independence Day", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-03-12": "Youth Day", + "1988-04-01": "Good Friday", + "1988-04-02": "Holy Saturday", + "1988-04-04": "Easter Monday", + "1988-05-01": "Labour Day", + "1988-05-02": "Labour Day (Observed)", + "1988-05-25": "Africa Freedom Day", + "1988-07-04": "Heroes' Day", + "1988-07-05": "Unity Day", + "1988-08-01": "Farmers' Day", + "1988-10-24": "Independence Day", + "1988-12-25": "Christmas Day", + "1988-12-26": "Christmas Day (Observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (Observed)", + "1989-03-12": "Youth Day", + "1989-03-13": "Youth Day (Observed)", + "1989-03-24": "Good Friday", + "1989-03-25": "Holy Saturday", + "1989-03-27": "Easter Monday", + "1989-05-01": "Labour Day", + "1989-05-25": "Africa Freedom Day", + "1989-07-03": "Heroes' Day", + "1989-07-04": "Unity Day", + "1989-08-07": "Farmers' Day", + "1989-10-24": "Independence Day", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-03-12": "Youth Day", + "1990-04-13": "Good Friday", + "1990-04-14": "Holy Saturday", + "1990-04-16": "Easter Monday", + "1990-05-01": "Labour Day", + "1990-05-25": "Africa Freedom Day", + "1990-07-02": "Heroes' Day", + "1990-07-03": "Unity Day", + "1990-08-06": "Farmers' Day", + "1990-10-24": "Independence Day", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-03-08": "International Women's Day", + "1991-03-12": "Youth Day", + "1991-03-29": "Good Friday", + "1991-03-30": "Holy Saturday", + "1991-04-01": "Easter Monday", + "1991-05-01": "Labour Day", + "1991-05-25": "Africa Freedom Day", + "1991-07-01": "Heroes' Day", + "1991-07-02": "Unity Day", + "1991-08-05": "Farmers' Day", + "1991-10-24": "Independence Day", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-03-08": "International Women's Day", + "1992-03-09": "International Women's Day (Observed)", + "1992-03-12": "Youth Day", + "1992-04-17": "Good Friday", + "1992-04-18": "Holy Saturday", + "1992-04-20": "Easter Monday", + "1992-05-01": "Labour Day", + "1992-05-25": "Africa Freedom Day", + "1992-07-06": "Heroes' Day", + "1992-07-07": "Unity Day", + "1992-08-03": "Farmers' Day", + "1992-10-24": "Independence Day", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-03-08": "International Women's Day", + "1993-03-12": "Youth Day", + "1993-04-09": "Good Friday", + "1993-04-10": "Holy Saturday", + "1993-04-12": "Easter Monday", + "1993-05-01": "Labour Day", + "1993-05-25": "Africa Freedom Day", + "1993-07-05": "Heroes' Day", + "1993-07-06": "Unity Day", + "1993-08-02": "Farmers' Day", + "1993-10-24": "Independence Day", + "1993-10-25": "Independence Day (Observed)", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-03-08": "International Women's Day", + "1994-03-12": "Youth Day", + "1994-04-01": "Good Friday", + "1994-04-02": "Holy Saturday", + "1994-04-04": "Easter Monday", + "1994-05-01": "Labour Day", + "1994-05-02": "Labour Day (Observed)", + "1994-05-25": "Africa Freedom Day", + "1994-07-04": "Heroes' Day", + "1994-07-05": "Unity Day", + "1994-08-01": "Farmers' Day", + "1994-10-24": "Independence Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day (Observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (Observed)", + "1995-03-08": "International Women's Day", + "1995-03-12": "Youth Day", + "1995-03-13": "Youth Day (Observed)", + "1995-04-14": "Good Friday", + "1995-04-15": "Holy Saturday", + "1995-04-17": "Easter Monday", + "1995-05-01": "Labour Day", + "1995-05-25": "Africa Freedom Day", + "1995-07-03": "Heroes' Day", + "1995-07-04": "Unity Day", + "1995-08-07": "Farmers' Day", + "1995-10-24": "Independence Day", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-03-08": "International Women's Day", + "1996-03-12": "Youth Day", + "1996-04-05": "Good Friday", + "1996-04-06": "Holy Saturday", + "1996-04-08": "Easter Monday", + "1996-05-01": "Labour Day", + "1996-05-25": "Africa Freedom Day", + "1996-07-01": "Heroes' Day", + "1996-07-02": "Unity Day", + "1996-08-05": "Farmers' Day", + "1996-10-24": "Independence Day", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-03-08": "International Women's Day", + "1997-03-12": "Youth Day", + "1997-03-28": "Good Friday", + "1997-03-29": "Holy Saturday", + "1997-03-31": "Easter Monday", + "1997-05-01": "Labour Day", + "1997-05-25": "Africa Freedom Day", + "1997-05-26": "Africa Freedom Day (Observed)", + "1997-07-07": "Heroes' Day", + "1997-07-08": "Unity Day", + "1997-08-04": "Farmers' Day", + "1997-10-24": "Independence Day", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-03-08": "International Women's Day", + "1998-03-09": "International Women's Day (Observed)", + "1998-03-12": "Youth Day", + "1998-04-10": "Good Friday", + "1998-04-11": "Holy Saturday", + "1998-04-13": "Easter Monday", + "1998-05-01": "Labour Day", + "1998-05-25": "Africa Freedom Day", + "1998-07-06": "Heroes' Day", + "1998-07-07": "Unity Day", + "1998-08-03": "Farmers' Day", + "1998-10-24": "Independence Day", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-03-08": "International Women's Day", + "1999-03-12": "Youth Day", + "1999-04-02": "Good Friday", + "1999-04-03": "Holy Saturday", + "1999-04-05": "Easter Monday", + "1999-05-01": "Labour Day", + "1999-05-25": "Africa Freedom Day", + "1999-07-05": "Heroes' Day", + "1999-07-06": "Unity Day", + "1999-08-02": "Farmers' Day", + "1999-10-24": "Independence Day", + "1999-10-25": "Independence Day (Observed)", + "1999-12-25": "Christmas Day", + "2000-01-01": "New Year's Day", + "2000-03-08": "International Women's Day", + "2000-03-12": "Youth Day", + "2000-03-13": "Youth Day (Observed)", + "2000-04-21": "Good Friday", + "2000-04-22": "Holy Saturday", + "2000-04-24": "Easter Monday", + "2000-05-01": "Labour Day", + "2000-05-25": "Africa Freedom Day", + "2000-07-03": "Heroes' Day", + "2000-07-04": "Unity Day", + "2000-08-07": "Farmers' Day", + "2000-10-24": "Independence Day", + "2000-12-25": "Christmas Day", + "2001-01-01": "New Year's Day", + "2001-03-08": "International Women's Day", + "2001-03-12": "Youth Day", + "2001-04-13": "Good Friday", + "2001-04-14": "Holy Saturday", + "2001-04-16": "Easter Monday", + "2001-05-01": "Labour Day", + "2001-05-25": "Africa Freedom Day", + "2001-07-02": "Heroes' Day", + "2001-07-03": "Unity Day", + "2001-08-06": "Farmers' Day", + "2001-10-24": "Independence Day", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-03-08": "International Women's Day", + "2002-03-12": "Youth Day", + "2002-03-29": "Good Friday", + "2002-03-30": "Holy Saturday", + "2002-04-01": "Easter Monday", + "2002-05-01": "Labour Day", + "2002-05-25": "Africa Freedom Day", + "2002-07-01": "Heroes' Day", + "2002-07-02": "Unity Day", + "2002-08-05": "Farmers' Day", + "2002-10-24": "Independence Day", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-03-08": "International Women's Day", + "2003-03-12": "Youth Day", + "2003-04-18": "Good Friday", + "2003-04-19": "Holy Saturday", + "2003-04-21": "Easter Monday", + "2003-05-01": "Labour Day", + "2003-05-25": "Africa Freedom Day", + "2003-05-26": "Africa Freedom Day (Observed)", + "2003-07-07": "Heroes' Day", + "2003-07-08": "Unity Day", + "2003-08-04": "Farmers' Day", + "2003-10-24": "Independence Day", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-03-08": "International Women's Day", + "2004-03-12": "Youth Day", + "2004-04-09": "Good Friday", + "2004-04-10": "Holy Saturday", + "2004-04-12": "Easter Monday", + "2004-05-01": "Labour Day", + "2004-05-25": "Africa Freedom Day", + "2004-07-05": "Heroes' Day", + "2004-07-06": "Unity Day", + "2004-08-02": "Farmers' Day", + "2004-10-24": "Independence Day", + "2004-10-25": "Independence Day (Observed)", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-03-08": "International Women's Day", + "2005-03-12": "Youth Day", + "2005-03-25": "Good Friday", + "2005-03-26": "Holy Saturday", + "2005-03-28": "Easter Monday", + "2005-05-01": "Labour Day", + "2005-05-02": "Labour Day (Observed)", + "2005-05-25": "Africa Freedom Day", + "2005-07-04": "Heroes' Day", + "2005-07-05": "Unity Day", + "2005-08-01": "Farmers' Day", + "2005-10-24": "Independence Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day (Observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (Observed)", + "2006-03-08": "International Women's Day", + "2006-03-12": "Youth Day", + "2006-03-13": "Youth Day (Observed)", + "2006-04-14": "Good Friday", + "2006-04-15": "Holy Saturday", + "2006-04-17": "Easter Monday", + "2006-05-01": "Labour Day", + "2006-05-25": "Africa Freedom Day", + "2006-07-03": "Heroes' Day", + "2006-07-04": "Unity Day", + "2006-08-07": "Farmers' Day", + "2006-10-24": "Independence Day", + "2006-12-25": "Christmas Day", + "2007-01-01": "New Year's Day", + "2007-03-08": "International Women's Day", + "2007-03-12": "Youth Day", + "2007-04-06": "Good Friday", + "2007-04-07": "Holy Saturday", + "2007-04-09": "Easter Monday", + "2007-05-01": "Labour Day", + "2007-05-25": "Africa Freedom Day", + "2007-07-02": "Heroes' Day", + "2007-07-03": "Unity Day", + "2007-08-06": "Farmers' Day", + "2007-10-24": "Independence Day", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-03-08": "International Women's Day", + "2008-03-12": "Youth Day", + "2008-03-21": "Good Friday", + "2008-03-22": "Holy Saturday", + "2008-03-24": "Easter Monday", + "2008-05-01": "Labour Day", + "2008-05-25": "Africa Freedom Day", + "2008-05-26": "Africa Freedom Day (Observed)", + "2008-07-07": "Heroes' Day", + "2008-07-08": "Unity Day", + "2008-08-04": "Farmers' Day", + "2008-10-24": "Independence Day", + "2008-12-25": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-03-08": "International Women's Day", + "2009-03-09": "International Women's Day (Observed)", + "2009-03-12": "Youth Day", + "2009-04-10": "Good Friday", + "2009-04-11": "Holy Saturday", + "2009-04-13": "Easter Monday", + "2009-05-01": "Labour Day", + "2009-05-25": "Africa Freedom Day", + "2009-07-06": "Heroes' Day", + "2009-07-07": "Unity Day", + "2009-08-03": "Farmers' Day", + "2009-10-24": "Independence Day", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-03-08": "International Women's Day", + "2010-03-12": "Youth Day", + "2010-04-02": "Good Friday", + "2010-04-03": "Holy Saturday", + "2010-04-05": "Easter Monday", + "2010-05-01": "Labour Day", + "2010-05-25": "Africa Freedom Day", + "2010-07-05": "Heroes' Day", + "2010-07-06": "Unity Day", + "2010-08-02": "Farmers' Day", + "2010-10-24": "Independence Day", + "2010-10-25": "Independence Day (Observed)", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-03-08": "International Women's Day", + "2011-03-12": "Youth Day", + "2011-04-22": "Good Friday", + "2011-04-23": "Holy Saturday", + "2011-04-25": "Easter Monday", + "2011-05-01": "Labour Day", + "2011-05-02": "Labour Day (Observed)", + "2011-05-25": "Africa Freedom Day", + "2011-07-04": "Heroes' Day", + "2011-07-05": "Unity Day", + "2011-08-01": "Farmers' Day", + "2011-10-24": "Independence Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day (Observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (Observed)", + "2012-03-08": "International Women's Day", + "2012-03-12": "Youth Day", + "2012-04-06": "Good Friday", + "2012-04-07": "Holy Saturday", + "2012-04-09": "Easter Monday", + "2012-05-01": "Labour Day", + "2012-05-25": "Africa Freedom Day", + "2012-07-02": "Heroes' Day", + "2012-07-03": "Unity Day", + "2012-08-06": "Farmers' Day", + "2012-10-24": "Independence Day", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-03-08": "International Women's Day", + "2013-03-12": "Youth Day", + "2013-03-29": "Good Friday", + "2013-03-30": "Holy Saturday", + "2013-04-01": "Easter Monday", + "2013-05-01": "Labour Day", + "2013-05-25": "Africa Freedom Day", + "2013-07-01": "Heroes' Day", + "2013-07-02": "Unity Day", + "2013-08-05": "Farmers' Day", + "2013-10-24": "Independence Day", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-03-08": "International Women's Day", + "2014-03-12": "Youth Day", + "2014-04-18": "Good Friday", + "2014-04-19": "Holy Saturday", + "2014-04-21": "Easter Monday", + "2014-05-01": "Labour Day", + "2014-05-25": "Africa Freedom Day", + "2014-05-26": "Africa Freedom Day (Observed)", + "2014-07-07": "Heroes' Day", + "2014-07-08": "Unity Day", + "2014-08-04": "Farmers' Day", + "2014-10-24": "Independence Day", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-03-08": "International Women's Day", + "2015-03-09": "International Women's Day (Observed)", + "2015-03-12": "Youth Day", + "2015-04-03": "Good Friday", + "2015-04-04": "Holy Saturday", + "2015-04-06": "Easter Monday", + "2015-05-01": "Labour Day", + "2015-05-25": "Africa Freedom Day", + "2015-07-06": "Heroes' Day", + "2015-07-07": "Unity Day", + "2015-08-03": "Farmers' Day", + "2015-10-18": "National Prayer Day", + "2015-10-19": "National Prayer Day (Observed)", + "2015-10-24": "Independence Day", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-03-08": "International Women's Day", + "2016-03-12": "Youth Day", + "2016-03-25": "Good Friday", + "2016-03-26": "Holy Saturday", + "2016-03-28": "Easter Monday", + "2016-05-01": "Labour Day", + "2016-05-02": "Labour Day (Observed)", + "2016-05-25": "Africa Freedom Day", + "2016-07-04": "Heroes' Day", + "2016-07-05": "Unity Day", + "2016-08-01": "Farmers' Day", + "2016-08-11": "General elections and referendum", + "2016-09-13": "Inauguration ceremony of President-elect and Vice President-elect", + "2016-10-18": "National Prayer Day", + "2016-10-24": "Independence Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day (Observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (Observed)", + "2017-03-08": "International Women's Day", + "2017-03-12": "Youth Day", + "2017-03-13": "Youth Day (Observed)", + "2017-04-14": "Good Friday", + "2017-04-15": "Holy Saturday", + "2017-04-17": "Easter Monday", + "2017-05-01": "Labour Day", + "2017-05-25": "Africa Freedom Day", + "2017-07-03": "Heroes' Day", + "2017-07-04": "Unity Day", + "2017-08-07": "Farmers' Day", + "2017-10-18": "National Prayer Day", + "2017-10-24": "Independence Day", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-03-08": "International Women's Day", + "2018-03-09": "Public holiday", + "2018-03-12": "Youth Day", + "2018-03-30": "Good Friday", + "2018-03-31": "Holy Saturday", + "2018-04-02": "Easter Monday", + "2018-05-01": "Labour Day", + "2018-05-25": "Africa Freedom Day", + "2018-07-02": "Heroes' Day", + "2018-07-03": "Unity Day", + "2018-07-26": "Lusaka mayoral and other local government elections", + "2018-08-06": "Farmers' Day", + "2018-10-18": "National Prayer Day", + "2018-10-24": "Independence Day", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-03-08": "International Women's Day", + "2019-03-12": "Youth Day", + "2019-04-19": "Good Friday", + "2019-04-20": "Holy Saturday", + "2019-04-22": "Easter Monday", + "2019-05-01": "Labour Day", + "2019-05-25": "Africa Freedom Day", + "2019-07-01": "Heroes' Day", + "2019-07-02": "Unity Day", + "2019-08-05": "Farmers' Day", + "2019-10-18": "National Prayer Day", + "2019-10-24": "Independence Day", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-03-08": "International Women's Day", + "2020-03-09": "International Women's Day (Observed)", + "2020-03-12": "Youth Day", + "2020-04-10": "Good Friday", + "2020-04-11": "Holy Saturday", + "2020-04-13": "Easter Monday", + "2020-05-01": "Labour Day", + "2020-05-25": "Africa Freedom Day", + "2020-07-06": "Heroes' Day", + "2020-07-07": "Unity Day", + "2020-08-03": "Farmers' Day", + "2020-10-18": "National Prayer Day", + "2020-10-19": "National Prayer Day (Observed)", + "2020-10-24": "Independence Day", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-03-08": "International Women's Day", + "2021-03-12": "Youth Day", + "2021-04-02": "Good Friday", + "2021-04-03": "Holy Saturday", + "2021-04-05": "Easter Monday", + "2021-05-01": "Labour Day", + "2021-05-25": "Africa Freedom Day", + "2021-07-02": "Memorial service for Kenneth Kaunda", + "2021-07-05": "Heroes' Day", + "2021-07-06": "Unity Day", + "2021-07-07": "Funeral of Kenneth Kaunda", + "2021-08-02": "Farmers' Day", + "2021-08-12": "General elections", + "2021-08-13": "Counting in general elections", + "2021-08-24": "Presidential inauguration", + "2021-10-18": "National Prayer Day", + "2021-10-24": "Independence Day", + "2021-10-25": "Independence Day (Observed)", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-03-08": "International Women's Day", + "2022-03-12": "Youth Day", + "2022-03-18": "Funeral of Rupiah Banda", + "2022-04-15": "Good Friday", + "2022-04-16": "Holy Saturday", + "2022-04-18": "Easter Monday", + "2022-04-28": "Kenneth Kaunda Day", + "2022-05-01": "Labour Day", + "2022-05-02": "Labour Day (Observed)", + "2022-05-25": "Africa Freedom Day", + "2022-07-04": "Heroes' Day", + "2022-07-05": "Unity Day", + "2022-08-01": "Farmers' Day", + "2022-10-18": "National Prayer Day", + "2022-10-24": "Independence Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day (Observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (Observed)", + "2023-03-08": "International Women's Day", + "2023-03-12": "Youth Day", + "2023-03-13": "Youth Day (Observed)", + "2023-04-07": "Good Friday", + "2023-04-08": "Holy Saturday", + "2023-04-10": "Easter Monday", + "2023-04-28": "Kenneth Kaunda Day", + "2023-05-01": "Labour Day", + "2023-05-25": "Africa Freedom Day", + "2023-07-03": "Heroes' Day", + "2023-07-04": "Unity Day", + "2023-08-07": "Farmers' Day", + "2023-10-18": "National Prayer Day", + "2023-10-24": "Independence Day", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-03-08": "International Women's Day", + "2024-03-12": "Youth Day", + "2024-03-29": "Good Friday", + "2024-03-30": "Holy Saturday", + "2024-04-01": "Easter Monday", + "2024-04-28": "Kenneth Kaunda Day", + "2024-04-29": "Kenneth Kaunda Day (Observed)", + "2024-05-01": "Labour Day", + "2024-05-25": "Africa Freedom Day", + "2024-07-01": "Heroes' Day", + "2024-07-02": "Unity Day", + "2024-08-05": "Farmers' Day", + "2024-10-18": "National Prayer Day", + "2024-10-24": "Independence Day", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-03-08": "International Women's Day", + "2025-03-12": "Youth Day", + "2025-04-18": "Good Friday", + "2025-04-19": "Holy Saturday", + "2025-04-21": "Easter Monday", + "2025-04-28": "Kenneth Kaunda Day", + "2025-05-01": "Labour Day", + "2025-05-25": "Africa Freedom Day", + "2025-05-26": "Africa Freedom Day (Observed)", + "2025-07-07": "Heroes' Day", + "2025-07-08": "Unity Day", + "2025-08-04": "Farmers' Day", + "2025-10-18": "National Prayer Day", + "2025-10-24": "Independence Day", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-03-08": "International Women's Day", + "2026-03-09": "International Women's Day (Observed)", + "2026-03-12": "Youth Day", + "2026-04-03": "Good Friday", + "2026-04-04": "Holy Saturday", + "2026-04-06": "Easter Monday", + "2026-04-28": "Kenneth Kaunda Day", + "2026-05-01": "Labour Day", + "2026-05-25": "Africa Freedom Day", + "2026-07-06": "Heroes' Day", + "2026-07-07": "Unity Day", + "2026-08-03": "Farmers' Day", + "2026-10-18": "National Prayer Day", + "2026-10-19": "National Prayer Day (Observed)", + "2026-10-24": "Independence Day", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-03-08": "International Women's Day", + "2027-03-12": "Youth Day", + "2027-03-26": "Good Friday", + "2027-03-27": "Holy Saturday", + "2027-03-29": "Easter Monday", + "2027-04-28": "Kenneth Kaunda Day", + "2027-05-01": "Labour Day", + "2027-05-25": "Africa Freedom Day", + "2027-07-05": "Heroes' Day", + "2027-07-06": "Unity Day", + "2027-08-02": "Farmers' Day", + "2027-10-18": "National Prayer Day", + "2027-10-24": "Independence Day", + "2027-10-25": "Independence Day (Observed)", + "2027-12-25": "Christmas Day", + "2028-01-01": "New Year's Day", + "2028-03-08": "International Women's Day", + "2028-03-12": "Youth Day", + "2028-03-13": "Youth Day (Observed)", + "2028-04-14": "Good Friday", + "2028-04-15": "Holy Saturday", + "2028-04-17": "Easter Monday", + "2028-04-28": "Kenneth Kaunda Day", + "2028-05-01": "Labour Day", + "2028-05-25": "Africa Freedom Day", + "2028-07-03": "Heroes' Day", + "2028-07-04": "Unity Day", + "2028-08-07": "Farmers' Day", + "2028-10-18": "National Prayer Day", + "2028-10-24": "Independence Day", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-03-08": "International Women's Day", + "2029-03-12": "Youth Day", + "2029-03-30": "Good Friday", + "2029-03-31": "Holy Saturday", + "2029-04-02": "Easter Monday", + "2029-04-28": "Kenneth Kaunda Day", + "2029-05-01": "Labour Day", + "2029-05-25": "Africa Freedom Day", + "2029-07-02": "Heroes' Day", + "2029-07-03": "Unity Day", + "2029-08-06": "Farmers' Day", + "2029-10-18": "National Prayer Day", + "2029-10-24": "Independence Day", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-03-08": "International Women's Day", + "2030-03-12": "Youth Day", + "2030-04-19": "Good Friday", + "2030-04-20": "Holy Saturday", + "2030-04-22": "Easter Monday", + "2030-04-28": "Kenneth Kaunda Day", + "2030-04-29": "Kenneth Kaunda Day (Observed)", + "2030-05-01": "Labour Day", + "2030-05-25": "Africa Freedom Day", + "2030-07-01": "Heroes' Day", + "2030-07-02": "Unity Day", + "2030-08-05": "Farmers' Day", + "2030-10-18": "National Prayer Day", + "2030-10-24": "Independence Day", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-03-08": "International Women's Day", + "2031-03-12": "Youth Day", + "2031-04-11": "Good Friday", + "2031-04-12": "Holy Saturday", + "2031-04-14": "Easter Monday", + "2031-04-28": "Kenneth Kaunda Day", + "2031-05-01": "Labour Day", + "2031-05-25": "Africa Freedom Day", + "2031-05-26": "Africa Freedom Day (Observed)", + "2031-07-07": "Heroes' Day", + "2031-07-08": "Unity Day", + "2031-08-04": "Farmers' Day", + "2031-10-18": "National Prayer Day", + "2031-10-24": "Independence Day", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-03-08": "International Women's Day", + "2032-03-12": "Youth Day", + "2032-03-26": "Good Friday", + "2032-03-27": "Holy Saturday", + "2032-03-29": "Easter Monday", + "2032-04-28": "Kenneth Kaunda Day", + "2032-05-01": "Labour Day", + "2032-05-25": "Africa Freedom Day", + "2032-07-05": "Heroes' Day", + "2032-07-06": "Unity Day", + "2032-08-02": "Farmers' Day", + "2032-10-18": "National Prayer Day", + "2032-10-24": "Independence Day", + "2032-10-25": "Independence Day (Observed)", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-03-08": "International Women's Day", + "2033-03-12": "Youth Day", + "2033-04-15": "Good Friday", + "2033-04-16": "Holy Saturday", + "2033-04-18": "Easter Monday", + "2033-04-28": "Kenneth Kaunda Day", + "2033-05-01": "Labour Day", + "2033-05-02": "Labour Day (Observed)", + "2033-05-25": "Africa Freedom Day", + "2033-07-04": "Heroes' Day", + "2033-07-05": "Unity Day", + "2033-08-01": "Farmers' Day", + "2033-10-18": "National Prayer Day", + "2033-10-24": "Independence Day", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day (Observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-03-08": "International Women's Day", + "2034-03-12": "Youth Day", + "2034-03-13": "Youth Day (Observed)", + "2034-04-07": "Good Friday", + "2034-04-08": "Holy Saturday", + "2034-04-10": "Easter Monday", + "2034-04-28": "Kenneth Kaunda Day", + "2034-05-01": "Labour Day", + "2034-05-25": "Africa Freedom Day", + "2034-07-03": "Heroes' Day", + "2034-07-04": "Unity Day", + "2034-08-07": "Farmers' Day", + "2034-10-18": "National Prayer Day", + "2034-10-24": "Independence Day", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-03-08": "International Women's Day", + "2035-03-12": "Youth Day", + "2035-03-23": "Good Friday", + "2035-03-24": "Holy Saturday", + "2035-03-26": "Easter Monday", + "2035-04-28": "Kenneth Kaunda Day", + "2035-05-01": "Labour Day", + "2035-05-25": "Africa Freedom Day", + "2035-07-02": "Heroes' Day", + "2035-07-03": "Unity Day", + "2035-08-06": "Farmers' Day", + "2035-10-18": "National Prayer Day", + "2035-10-24": "Independence Day", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-03-08": "International Women's Day", + "2036-03-12": "Youth Day", + "2036-04-11": "Good Friday", + "2036-04-12": "Holy Saturday", + "2036-04-14": "Easter Monday", + "2036-04-28": "Kenneth Kaunda Day", + "2036-05-01": "Labour Day", + "2036-05-25": "Africa Freedom Day", + "2036-05-26": "Africa Freedom Day (Observed)", + "2036-07-07": "Heroes' Day", + "2036-07-08": "Unity Day", + "2036-08-04": "Farmers' Day", + "2036-10-18": "National Prayer Day", + "2036-10-24": "Independence Day", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-03-08": "International Women's Day", + "2037-03-09": "International Women's Day (Observed)", + "2037-03-12": "Youth Day", + "2037-04-03": "Good Friday", + "2037-04-04": "Holy Saturday", + "2037-04-06": "Easter Monday", + "2037-04-28": "Kenneth Kaunda Day", + "2037-05-01": "Labour Day", + "2037-05-25": "Africa Freedom Day", + "2037-07-06": "Heroes' Day", + "2037-07-07": "Unity Day", + "2037-08-03": "Farmers' Day", + "2037-10-18": "National Prayer Day", + "2037-10-19": "National Prayer Day (Observed)", + "2037-10-24": "Independence Day", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-03-08": "International Women's Day", + "2038-03-12": "Youth Day", + "2038-04-23": "Good Friday", + "2038-04-24": "Holy Saturday", + "2038-04-26": "Easter Monday", + "2038-04-28": "Kenneth Kaunda Day", + "2038-05-01": "Labour Day", + "2038-05-25": "Africa Freedom Day", + "2038-07-05": "Heroes' Day", + "2038-07-06": "Unity Day", + "2038-08-02": "Farmers' Day", + "2038-10-18": "National Prayer Day", + "2038-10-24": "Independence Day", + "2038-10-25": "Independence Day (Observed)", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-03-08": "International Women's Day", + "2039-03-12": "Youth Day", + "2039-04-08": "Good Friday", + "2039-04-09": "Holy Saturday", + "2039-04-11": "Easter Monday", + "2039-04-28": "Kenneth Kaunda Day", + "2039-05-01": "Labour Day", + "2039-05-02": "Labour Day (Observed)", + "2039-05-25": "Africa Freedom Day", + "2039-07-04": "Heroes' Day", + "2039-07-05": "Unity Day", + "2039-08-01": "Farmers' Day", + "2039-10-18": "National Prayer Day", + "2039-10-24": "Independence Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Christmas Day (Observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (Observed)", + "2040-03-08": "International Women's Day", + "2040-03-12": "Youth Day", + "2040-03-30": "Good Friday", + "2040-03-31": "Holy Saturday", + "2040-04-02": "Easter Monday", + "2040-04-28": "Kenneth Kaunda Day", + "2040-05-01": "Labour Day", + "2040-05-25": "Africa Freedom Day", + "2040-07-02": "Heroes' Day", + "2040-07-03": "Unity Day", + "2040-08-06": "Farmers' Day", + "2040-10-18": "National Prayer Day", + "2040-10-24": "Independence Day", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-03-08": "International Women's Day", + "2041-03-12": "Youth Day", + "2041-04-19": "Good Friday", + "2041-04-20": "Holy Saturday", + "2041-04-22": "Easter Monday", + "2041-04-28": "Kenneth Kaunda Day", + "2041-04-29": "Kenneth Kaunda Day (Observed)", + "2041-05-01": "Labour Day", + "2041-05-25": "Africa Freedom Day", + "2041-07-01": "Heroes' Day", + "2041-07-02": "Unity Day", + "2041-08-05": "Farmers' Day", + "2041-10-18": "National Prayer Day", + "2041-10-24": "Independence Day", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-03-08": "International Women's Day", + "2042-03-12": "Youth Day", + "2042-04-04": "Good Friday", + "2042-04-05": "Holy Saturday", + "2042-04-07": "Easter Monday", + "2042-04-28": "Kenneth Kaunda Day", + "2042-05-01": "Labour Day", + "2042-05-25": "Africa Freedom Day", + "2042-05-26": "Africa Freedom Day (Observed)", + "2042-07-07": "Heroes' Day", + "2042-07-08": "Unity Day", + "2042-08-04": "Farmers' Day", + "2042-10-18": "National Prayer Day", + "2042-10-24": "Independence Day", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-03-08": "International Women's Day", + "2043-03-09": "International Women's Day (Observed)", + "2043-03-12": "Youth Day", + "2043-03-27": "Good Friday", + "2043-03-28": "Holy Saturday", + "2043-03-30": "Easter Monday", + "2043-04-28": "Kenneth Kaunda Day", + "2043-05-01": "Labour Day", + "2043-05-25": "Africa Freedom Day", + "2043-07-06": "Heroes' Day", + "2043-07-07": "Unity Day", + "2043-08-03": "Farmers' Day", + "2043-10-18": "National Prayer Day", + "2043-10-19": "National Prayer Day (Observed)", + "2043-10-24": "Independence Day", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-03-08": "International Women's Day", + "2044-03-12": "Youth Day", + "2044-04-15": "Good Friday", + "2044-04-16": "Holy Saturday", + "2044-04-18": "Easter Monday", + "2044-04-28": "Kenneth Kaunda Day", + "2044-05-01": "Labour Day", + "2044-05-02": "Labour Day (Observed)", + "2044-05-25": "Africa Freedom Day", + "2044-07-04": "Heroes' Day", + "2044-07-05": "Unity Day", + "2044-08-01": "Farmers' Day", + "2044-10-18": "National Prayer Day", + "2044-10-24": "Independence Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day (Observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (Observed)", + "2045-03-08": "International Women's Day", + "2045-03-12": "Youth Day", + "2045-03-13": "Youth Day (Observed)", + "2045-04-07": "Good Friday", + "2045-04-08": "Holy Saturday", + "2045-04-10": "Easter Monday", + "2045-04-28": "Kenneth Kaunda Day", + "2045-05-01": "Labour Day", + "2045-05-25": "Africa Freedom Day", + "2045-07-03": "Heroes' Day", + "2045-07-04": "Unity Day", + "2045-08-07": "Farmers' Day", + "2045-10-18": "National Prayer Day", + "2045-10-24": "Independence Day", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-03-08": "International Women's Day", + "2046-03-12": "Youth Day", + "2046-03-23": "Good Friday", + "2046-03-24": "Holy Saturday", + "2046-03-26": "Easter Monday", + "2046-04-28": "Kenneth Kaunda Day", + "2046-05-01": "Labour Day", + "2046-05-25": "Africa Freedom Day", + "2046-07-02": "Heroes' Day", + "2046-07-03": "Unity Day", + "2046-08-06": "Farmers' Day", + "2046-10-18": "National Prayer Day", + "2046-10-24": "Independence Day", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-03-08": "International Women's Day", + "2047-03-12": "Youth Day", + "2047-04-12": "Good Friday", + "2047-04-13": "Holy Saturday", + "2047-04-15": "Easter Monday", + "2047-04-28": "Kenneth Kaunda Day", + "2047-04-29": "Kenneth Kaunda Day (Observed)", + "2047-05-01": "Labour Day", + "2047-05-25": "Africa Freedom Day", + "2047-07-01": "Heroes' Day", + "2047-07-02": "Unity Day", + "2047-08-05": "Farmers' Day", + "2047-10-18": "National Prayer Day", + "2047-10-24": "Independence Day", + "2047-12-25": "Christmas Day", + "2048-01-01": "New Year's Day", + "2048-03-08": "International Women's Day", + "2048-03-09": "International Women's Day (Observed)", + "2048-03-12": "Youth Day", + "2048-04-03": "Good Friday", + "2048-04-04": "Holy Saturday", + "2048-04-06": "Easter Monday", + "2048-04-28": "Kenneth Kaunda Day", + "2048-05-01": "Labour Day", + "2048-05-25": "Africa Freedom Day", + "2048-07-06": "Heroes' Day", + "2048-07-07": "Unity Day", + "2048-08-03": "Farmers' Day", + "2048-10-18": "National Prayer Day", + "2048-10-19": "National Prayer Day (Observed)", + "2048-10-24": "Independence Day", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-03-08": "International Women's Day", + "2049-03-12": "Youth Day", + "2049-04-16": "Good Friday", + "2049-04-17": "Holy Saturday", + "2049-04-19": "Easter Monday", + "2049-04-28": "Kenneth Kaunda Day", + "2049-05-01": "Labour Day", + "2049-05-25": "Africa Freedom Day", + "2049-07-05": "Heroes' Day", + "2049-07-06": "Unity Day", + "2049-08-02": "Farmers' Day", + "2049-10-18": "National Prayer Day", + "2049-10-24": "Independence Day", + "2049-10-25": "Independence Day (Observed)", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-03-08": "International Women's Day", + "2050-03-12": "Youth Day", + "2050-04-08": "Good Friday", + "2050-04-09": "Holy Saturday", + "2050-04-11": "Easter Monday", + "2050-04-28": "Kenneth Kaunda Day", + "2050-05-01": "Labour Day", + "2050-05-02": "Labour Day (Observed)", + "2050-05-25": "Africa Freedom Day", + "2050-07-04": "Heroes' Day", + "2050-07-05": "Unity Day", + "2050-08-01": "Farmers' Day", + "2050-10-18": "National Prayer Day", + "2050-10-24": "Independence Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day (Observed)" +} diff --git a/snapshots/countries/ZW.json b/snapshots/countries/ZW.json new file mode 100644 index 000000000..9df0d57bc --- /dev/null +++ b/snapshots/countries/ZW.json @@ -0,0 +1,853 @@ +{ + "1988-01-01": "New Year's Day", + "1988-04-01": "Good Friday", + "1988-04-02": "Easter Saturday", + "1988-04-04": "Easter Monday", + "1988-04-18": "Independence Day", + "1988-05-01": "Workers' Day", + "1988-05-02": "Workers' Day (Observed)", + "1988-05-25": "Africa Day", + "1988-08-08": "Zimbabwe Heroes' Day", + "1988-08-09": "Defense Forces Day", + "1988-12-22": "Unity Day", + "1988-12-25": "Christmas Day", + "1988-12-26": "Boxing Day", + "1988-12-27": "Christmas Day (Observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (Observed)", + "1989-03-24": "Good Friday", + "1989-03-25": "Easter Saturday", + "1989-03-27": "Easter Monday", + "1989-04-18": "Independence Day", + "1989-05-01": "Workers' Day", + "1989-05-25": "Africa Day", + "1989-08-14": "Zimbabwe Heroes' Day", + "1989-08-15": "Defense Forces Day", + "1989-12-22": "Unity Day", + "1989-12-25": "Christmas Day", + "1989-12-26": "Boxing Day", + "1990-01-01": "New Year's Day", + "1990-04-13": "Good Friday", + "1990-04-14": "Easter Saturday", + "1990-04-16": "Easter Monday", + "1990-04-18": "Independence Day", + "1990-05-01": "Workers' Day", + "1990-05-25": "Africa Day", + "1990-08-13": "Zimbabwe Heroes' Day", + "1990-08-14": "Defense Forces Day", + "1990-12-22": "Unity Day", + "1990-12-25": "Christmas Day", + "1990-12-26": "Boxing Day", + "1991-01-01": "New Year's Day", + "1991-03-29": "Good Friday", + "1991-03-30": "Easter Saturday", + "1991-04-01": "Easter Monday", + "1991-04-18": "Independence Day", + "1991-05-01": "Workers' Day", + "1991-05-25": "Africa Day", + "1991-08-12": "Zimbabwe Heroes' Day", + "1991-08-13": "Defense Forces Day", + "1991-12-22": "Unity Day", + "1991-12-23": "Unity Day (Observed)", + "1991-12-25": "Christmas Day", + "1991-12-26": "Boxing Day", + "1992-01-01": "New Year's Day", + "1992-04-17": "Good Friday", + "1992-04-18": "Easter Saturday; Independence Day", + "1992-04-20": "Easter Monday", + "1992-05-01": "Workers' Day", + "1992-05-25": "Africa Day", + "1992-08-10": "Zimbabwe Heroes' Day", + "1992-08-11": "Defense Forces Day", + "1992-12-22": "Unity Day", + "1992-12-25": "Christmas Day", + "1992-12-26": "Boxing Day", + "1993-01-01": "New Year's Day", + "1993-04-09": "Good Friday", + "1993-04-10": "Easter Saturday", + "1993-04-12": "Easter Monday", + "1993-04-18": "Independence Day", + "1993-04-19": "Independence Day (Observed)", + "1993-05-01": "Workers' Day", + "1993-05-25": "Africa Day", + "1993-08-09": "Zimbabwe Heroes' Day", + "1993-08-10": "Defense Forces Day", + "1993-12-22": "Unity Day", + "1993-12-25": "Christmas Day", + "1993-12-26": "Boxing Day", + "1993-12-27": "Boxing Day (Observed)", + "1994-01-01": "New Year's Day", + "1994-04-01": "Good Friday", + "1994-04-02": "Easter Saturday", + "1994-04-04": "Easter Monday", + "1994-04-18": "Independence Day", + "1994-05-01": "Workers' Day", + "1994-05-02": "Workers' Day (Observed)", + "1994-05-25": "Africa Day", + "1994-08-08": "Zimbabwe Heroes' Day", + "1994-08-09": "Defense Forces Day", + "1994-12-22": "Unity Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Boxing Day", + "1994-12-27": "Christmas Day (Observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (Observed)", + "1995-04-14": "Good Friday", + "1995-04-15": "Easter Saturday", + "1995-04-17": "Easter Monday", + "1995-04-18": "Independence Day", + "1995-05-01": "Workers' Day", + "1995-05-25": "Africa Day", + "1995-08-14": "Zimbabwe Heroes' Day", + "1995-08-15": "Defense Forces Day", + "1995-12-22": "Unity Day", + "1995-12-25": "Christmas Day", + "1995-12-26": "Boxing Day", + "1996-01-01": "New Year's Day", + "1996-04-05": "Good Friday", + "1996-04-06": "Easter Saturday", + "1996-04-08": "Easter Monday", + "1996-04-18": "Independence Day", + "1996-05-01": "Workers' Day", + "1996-05-25": "Africa Day", + "1996-08-12": "Zimbabwe Heroes' Day", + "1996-08-13": "Defense Forces Day", + "1996-12-22": "Unity Day", + "1996-12-23": "Unity Day (Observed)", + "1996-12-25": "Christmas Day", + "1996-12-26": "Boxing Day", + "1997-01-01": "New Year's Day", + "1997-03-28": "Good Friday", + "1997-03-29": "Easter Saturday", + "1997-03-31": "Easter Monday", + "1997-04-18": "Independence Day", + "1997-05-01": "Workers' Day", + "1997-05-25": "Africa Day", + "1997-05-26": "Africa Day (Observed)", + "1997-08-11": "Zimbabwe Heroes' Day", + "1997-08-12": "Defense Forces Day", + "1997-12-22": "Unity Day", + "1997-12-25": "Christmas Day", + "1997-12-26": "Boxing Day", + "1998-01-01": "New Year's Day", + "1998-04-10": "Good Friday", + "1998-04-11": "Easter Saturday", + "1998-04-13": "Easter Monday", + "1998-04-18": "Independence Day", + "1998-05-01": "Workers' Day", + "1998-05-25": "Africa Day", + "1998-08-10": "Zimbabwe Heroes' Day", + "1998-08-11": "Defense Forces Day", + "1998-12-22": "Unity Day", + "1998-12-25": "Christmas Day", + "1998-12-26": "Boxing Day", + "1999-01-01": "New Year's Day", + "1999-04-02": "Good Friday", + "1999-04-03": "Easter Saturday", + "1999-04-05": "Easter Monday", + "1999-04-18": "Independence Day", + "1999-04-19": "Independence Day (Observed)", + "1999-05-01": "Workers' Day", + "1999-05-25": "Africa Day", + "1999-08-09": "Zimbabwe Heroes' Day", + "1999-08-10": "Defense Forces Day", + "1999-12-22": "Unity Day", + "1999-12-25": "Christmas Day", + "1999-12-26": "Boxing Day", + "1999-12-27": "Boxing Day (Observed)", + "2000-01-01": "New Year's Day", + "2000-04-18": "Independence Day", + "2000-04-21": "Good Friday", + "2000-04-22": "Easter Saturday", + "2000-04-24": "Easter Monday", + "2000-05-01": "Workers' Day", + "2000-05-25": "Africa Day", + "2000-08-14": "Zimbabwe Heroes' Day", + "2000-08-15": "Defense Forces Day", + "2000-12-22": "Unity Day", + "2000-12-25": "Christmas Day", + "2000-12-26": "Boxing Day", + "2001-01-01": "New Year's Day", + "2001-04-13": "Good Friday", + "2001-04-14": "Easter Saturday", + "2001-04-16": "Easter Monday", + "2001-04-18": "Independence Day", + "2001-05-01": "Workers' Day", + "2001-05-25": "Africa Day", + "2001-08-13": "Zimbabwe Heroes' Day", + "2001-08-14": "Defense Forces Day", + "2001-12-22": "Unity Day", + "2001-12-25": "Christmas Day", + "2001-12-26": "Boxing Day", + "2002-01-01": "New Year's Day", + "2002-03-29": "Good Friday", + "2002-03-30": "Easter Saturday", + "2002-04-01": "Easter Monday", + "2002-04-18": "Independence Day", + "2002-05-01": "Workers' Day", + "2002-05-25": "Africa Day", + "2002-08-12": "Zimbabwe Heroes' Day", + "2002-08-13": "Defense Forces Day", + "2002-12-22": "Unity Day", + "2002-12-23": "Unity Day (Observed)", + "2002-12-25": "Christmas Day", + "2002-12-26": "Boxing Day", + "2003-01-01": "New Year's Day", + "2003-04-18": "Good Friday; Independence Day", + "2003-04-19": "Easter Saturday", + "2003-04-21": "Easter Monday", + "2003-05-01": "Workers' Day", + "2003-05-25": "Africa Day", + "2003-05-26": "Africa Day (Observed)", + "2003-08-11": "Zimbabwe Heroes' Day", + "2003-08-12": "Defense Forces Day", + "2003-12-22": "Unity Day", + "2003-12-25": "Christmas Day", + "2003-12-26": "Boxing Day", + "2004-01-01": "New Year's Day", + "2004-04-09": "Good Friday", + "2004-04-10": "Easter Saturday", + "2004-04-12": "Easter Monday", + "2004-04-18": "Independence Day", + "2004-04-19": "Independence Day (Observed)", + "2004-05-01": "Workers' Day", + "2004-05-25": "Africa Day", + "2004-08-09": "Zimbabwe Heroes' Day", + "2004-08-10": "Defense Forces Day", + "2004-12-22": "Unity Day", + "2004-12-25": "Christmas Day", + "2004-12-26": "Boxing Day", + "2004-12-27": "Boxing Day (Observed)", + "2005-01-01": "New Year's Day", + "2005-03-25": "Good Friday", + "2005-03-26": "Easter Saturday", + "2005-03-28": "Easter Monday", + "2005-04-18": "Independence Day", + "2005-05-01": "Workers' Day", + "2005-05-02": "Workers' Day (Observed)", + "2005-05-25": "Africa Day", + "2005-08-08": "Zimbabwe Heroes' Day", + "2005-08-09": "Defense Forces Day", + "2005-12-22": "Unity Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "Boxing Day", + "2005-12-27": "Christmas Day (Observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (Observed)", + "2006-04-14": "Good Friday", + "2006-04-15": "Easter Saturday", + "2006-04-17": "Easter Monday", + "2006-04-18": "Independence Day", + "2006-05-01": "Workers' Day", + "2006-05-25": "Africa Day", + "2006-08-14": "Zimbabwe Heroes' Day", + "2006-08-15": "Defense Forces Day", + "2006-12-22": "Unity Day", + "2006-12-25": "Christmas Day", + "2006-12-26": "Boxing Day", + "2007-01-01": "New Year's Day", + "2007-04-06": "Good Friday", + "2007-04-07": "Easter Saturday", + "2007-04-09": "Easter Monday", + "2007-04-18": "Independence Day", + "2007-05-01": "Workers' Day", + "2007-05-25": "Africa Day", + "2007-08-13": "Zimbabwe Heroes' Day", + "2007-08-14": "Defense Forces Day", + "2007-12-22": "Unity Day", + "2007-12-25": "Christmas Day", + "2007-12-26": "Boxing Day", + "2008-01-01": "New Year's Day", + "2008-03-21": "Good Friday", + "2008-03-22": "Easter Saturday", + "2008-03-24": "Easter Monday", + "2008-04-18": "Independence Day", + "2008-05-01": "Workers' Day", + "2008-05-25": "Africa Day", + "2008-05-26": "Africa Day (Observed)", + "2008-08-11": "Zimbabwe Heroes' Day", + "2008-08-12": "Defense Forces Day", + "2008-12-22": "Unity Day", + "2008-12-25": "Christmas Day", + "2008-12-26": "Boxing Day", + "2009-01-01": "New Year's Day", + "2009-04-10": "Good Friday", + "2009-04-11": "Easter Saturday", + "2009-04-13": "Easter Monday", + "2009-04-18": "Independence Day", + "2009-05-01": "Workers' Day", + "2009-05-25": "Africa Day", + "2009-08-10": "Zimbabwe Heroes' Day", + "2009-08-11": "Defense Forces Day", + "2009-12-22": "Unity Day", + "2009-12-25": "Christmas Day", + "2009-12-26": "Boxing Day", + "2010-01-01": "New Year's Day", + "2010-04-02": "Good Friday", + "2010-04-03": "Easter Saturday", + "2010-04-05": "Easter Monday", + "2010-04-18": "Independence Day", + "2010-04-19": "Independence Day (Observed)", + "2010-05-01": "Workers' Day", + "2010-05-25": "Africa Day", + "2010-08-09": "Zimbabwe Heroes' Day", + "2010-08-10": "Defense Forces Day", + "2010-12-22": "Unity Day", + "2010-12-25": "Christmas Day", + "2010-12-26": "Boxing Day", + "2010-12-27": "Boxing Day (Observed)", + "2011-01-01": "New Year's Day", + "2011-04-18": "Independence Day", + "2011-04-22": "Good Friday", + "2011-04-23": "Easter Saturday", + "2011-04-25": "Easter Monday", + "2011-05-01": "Workers' Day", + "2011-05-02": "Workers' Day (Observed)", + "2011-05-25": "Africa Day", + "2011-08-08": "Zimbabwe Heroes' Day", + "2011-08-09": "Defense Forces Day", + "2011-12-22": "Unity Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "Boxing Day", + "2011-12-27": "Christmas Day (Observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (Observed)", + "2012-04-06": "Good Friday", + "2012-04-07": "Easter Saturday", + "2012-04-09": "Easter Monday", + "2012-04-18": "Independence Day", + "2012-05-01": "Workers' Day", + "2012-05-25": "Africa Day", + "2012-08-13": "Zimbabwe Heroes' Day", + "2012-08-14": "Defense Forces Day", + "2012-12-22": "Unity Day", + "2012-12-25": "Christmas Day", + "2012-12-26": "Boxing Day", + "2013-01-01": "New Year's Day", + "2013-03-29": "Good Friday", + "2013-03-30": "Easter Saturday", + "2013-04-01": "Easter Monday", + "2013-04-18": "Independence Day", + "2013-05-01": "Workers' Day", + "2013-05-25": "Africa Day", + "2013-08-12": "Zimbabwe Heroes' Day", + "2013-08-13": "Defense Forces Day", + "2013-12-22": "Unity Day", + "2013-12-23": "Unity Day (Observed)", + "2013-12-25": "Christmas Day", + "2013-12-26": "Boxing Day", + "2014-01-01": "New Year's Day", + "2014-04-18": "Good Friday; Independence Day", + "2014-04-19": "Easter Saturday", + "2014-04-21": "Easter Monday", + "2014-05-01": "Workers' Day", + "2014-05-25": "Africa Day", + "2014-05-26": "Africa Day (Observed)", + "2014-08-11": "Zimbabwe Heroes' Day", + "2014-08-12": "Defense Forces Day", + "2014-12-22": "Unity Day", + "2014-12-25": "Christmas Day", + "2014-12-26": "Boxing Day", + "2015-01-01": "New Year's Day", + "2015-04-03": "Good Friday", + "2015-04-04": "Easter Saturday", + "2015-04-06": "Easter Monday", + "2015-04-18": "Independence Day", + "2015-05-01": "Workers' Day", + "2015-05-25": "Africa Day", + "2015-08-10": "Zimbabwe Heroes' Day", + "2015-08-11": "Defense Forces Day", + "2015-12-22": "Unity Day", + "2015-12-25": "Christmas Day", + "2015-12-26": "Boxing Day", + "2016-01-01": "New Year's Day", + "2016-03-25": "Good Friday", + "2016-03-26": "Easter Saturday", + "2016-03-28": "Easter Monday", + "2016-04-18": "Independence Day", + "2016-05-01": "Workers' Day", + "2016-05-02": "Workers' Day (Observed)", + "2016-05-25": "Africa Day", + "2016-08-08": "Zimbabwe Heroes' Day", + "2016-08-09": "Defense Forces Day", + "2016-12-22": "Unity Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "Boxing Day", + "2016-12-27": "Christmas Day (Observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (Observed)", + "2017-04-14": "Good Friday", + "2017-04-15": "Easter Saturday", + "2017-04-17": "Easter Monday", + "2017-04-18": "Independence Day", + "2017-05-01": "Workers' Day", + "2017-05-25": "Africa Day", + "2017-08-14": "Zimbabwe Heroes' Day", + "2017-08-15": "Defense Forces Day", + "2017-12-22": "Unity Day", + "2017-12-25": "Christmas Day", + "2017-12-26": "Boxing Day", + "2018-01-01": "New Year's Day", + "2018-02-21": "Robert Gabriel Mugabe National Youth Day", + "2018-03-30": "Good Friday", + "2018-03-31": "Easter Saturday", + "2018-04-02": "Easter Monday", + "2018-04-18": "Independence Day", + "2018-05-01": "Workers' Day", + "2018-05-25": "Africa Day", + "2018-08-13": "Zimbabwe Heroes' Day", + "2018-08-14": "Defense Forces Day", + "2018-12-22": "Unity Day", + "2018-12-25": "Christmas Day", + "2018-12-26": "Boxing Day", + "2019-01-01": "New Year's Day", + "2019-02-21": "Robert Gabriel Mugabe National Youth Day", + "2019-04-18": "Independence Day", + "2019-04-19": "Good Friday", + "2019-04-20": "Easter Saturday", + "2019-04-22": "Easter Monday", + "2019-05-01": "Workers' Day", + "2019-05-25": "Africa Day", + "2019-08-12": "Zimbabwe Heroes' Day", + "2019-08-13": "Defense Forces Day", + "2019-12-22": "Unity Day", + "2019-12-23": "Unity Day (Observed)", + "2019-12-25": "Christmas Day", + "2019-12-26": "Boxing Day", + "2020-01-01": "New Year's Day", + "2020-02-21": "Robert Gabriel Mugabe National Youth Day", + "2020-04-10": "Good Friday", + "2020-04-11": "Easter Saturday", + "2020-04-13": "Easter Monday", + "2020-04-18": "Independence Day", + "2020-05-01": "Workers' Day", + "2020-05-25": "Africa Day", + "2020-08-10": "Zimbabwe Heroes' Day", + "2020-08-11": "Defense Forces Day", + "2020-12-22": "Unity Day", + "2020-12-25": "Christmas Day", + "2020-12-26": "Boxing Day", + "2021-01-01": "New Year's Day", + "2021-02-21": "Robert Gabriel Mugabe National Youth Day", + "2021-02-22": "Robert Gabriel Mugabe National Youth Day (Observed)", + "2021-04-02": "Good Friday", + "2021-04-03": "Easter Saturday", + "2021-04-05": "Easter Monday", + "2021-04-18": "Independence Day", + "2021-04-19": "Independence Day (Observed)", + "2021-05-01": "Workers' Day", + "2021-05-25": "Africa Day", + "2021-08-09": "Zimbabwe Heroes' Day", + "2021-08-10": "Defense Forces Day", + "2021-12-22": "Unity Day", + "2021-12-25": "Christmas Day", + "2021-12-26": "Boxing Day", + "2021-12-27": "Boxing Day (Observed)", + "2022-01-01": "New Year's Day", + "2022-02-21": "Robert Gabriel Mugabe National Youth Day", + "2022-04-15": "Good Friday", + "2022-04-16": "Easter Saturday", + "2022-04-18": "Easter Monday; Independence Day", + "2022-05-01": "Workers' Day", + "2022-05-02": "Workers' Day (Observed)", + "2022-05-25": "Africa Day", + "2022-08-08": "Zimbabwe Heroes' Day", + "2022-08-09": "Defense Forces Day", + "2022-12-22": "Unity Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "Boxing Day", + "2022-12-27": "Christmas Day (Observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (Observed)", + "2023-02-21": "Robert Gabriel Mugabe National Youth Day", + "2023-04-07": "Good Friday", + "2023-04-08": "Easter Saturday", + "2023-04-10": "Easter Monday", + "2023-04-18": "Independence Day", + "2023-05-01": "Workers' Day", + "2023-05-25": "Africa Day", + "2023-08-14": "Zimbabwe Heroes' Day", + "2023-08-15": "Defense Forces Day", + "2023-12-22": "Unity Day", + "2023-12-25": "Christmas Day", + "2023-12-26": "Boxing Day", + "2024-01-01": "New Year's Day", + "2024-02-21": "Robert Gabriel Mugabe National Youth Day", + "2024-03-29": "Good Friday", + "2024-03-30": "Easter Saturday", + "2024-04-01": "Easter Monday", + "2024-04-18": "Independence Day", + "2024-05-01": "Workers' Day", + "2024-05-25": "Africa Day", + "2024-08-12": "Zimbabwe Heroes' Day", + "2024-08-13": "Defense Forces Day", + "2024-12-22": "Unity Day", + "2024-12-23": "Unity Day (Observed)", + "2024-12-25": "Christmas Day", + "2024-12-26": "Boxing Day", + "2025-01-01": "New Year's Day", + "2025-02-21": "Robert Gabriel Mugabe National Youth Day", + "2025-04-18": "Good Friday; Independence Day", + "2025-04-19": "Easter Saturday", + "2025-04-21": "Easter Monday", + "2025-05-01": "Workers' Day", + "2025-05-25": "Africa Day", + "2025-05-26": "Africa Day (Observed)", + "2025-08-11": "Zimbabwe Heroes' Day", + "2025-08-12": "Defense Forces Day", + "2025-12-22": "Unity Day", + "2025-12-25": "Christmas Day", + "2025-12-26": "Boxing Day", + "2026-01-01": "New Year's Day", + "2026-02-21": "Robert Gabriel Mugabe National Youth Day", + "2026-04-03": "Good Friday", + "2026-04-04": "Easter Saturday", + "2026-04-06": "Easter Monday", + "2026-04-18": "Independence Day", + "2026-05-01": "Workers' Day", + "2026-05-25": "Africa Day", + "2026-08-10": "Zimbabwe Heroes' Day", + "2026-08-11": "Defense Forces Day", + "2026-12-22": "Unity Day", + "2026-12-25": "Christmas Day", + "2026-12-26": "Boxing Day", + "2027-01-01": "New Year's Day", + "2027-02-21": "Robert Gabriel Mugabe National Youth Day", + "2027-02-22": "Robert Gabriel Mugabe National Youth Day (Observed)", + "2027-03-26": "Good Friday", + "2027-03-27": "Easter Saturday", + "2027-03-29": "Easter Monday", + "2027-04-18": "Independence Day", + "2027-04-19": "Independence Day (Observed)", + "2027-05-01": "Workers' Day", + "2027-05-25": "Africa Day", + "2027-08-09": "Zimbabwe Heroes' Day", + "2027-08-10": "Defense Forces Day", + "2027-12-22": "Unity Day", + "2027-12-25": "Christmas Day", + "2027-12-26": "Boxing Day", + "2027-12-27": "Boxing Day (Observed)", + "2028-01-01": "New Year's Day", + "2028-02-21": "Robert Gabriel Mugabe National Youth Day", + "2028-04-14": "Good Friday", + "2028-04-15": "Easter Saturday", + "2028-04-17": "Easter Monday", + "2028-04-18": "Independence Day", + "2028-05-01": "Workers' Day", + "2028-05-25": "Africa Day", + "2028-08-14": "Zimbabwe Heroes' Day", + "2028-08-15": "Defense Forces Day", + "2028-12-22": "Unity Day", + "2028-12-25": "Christmas Day", + "2028-12-26": "Boxing Day", + "2029-01-01": "New Year's Day", + "2029-02-21": "Robert Gabriel Mugabe National Youth Day", + "2029-03-30": "Good Friday", + "2029-03-31": "Easter Saturday", + "2029-04-02": "Easter Monday", + "2029-04-18": "Independence Day", + "2029-05-01": "Workers' Day", + "2029-05-25": "Africa Day", + "2029-08-13": "Zimbabwe Heroes' Day", + "2029-08-14": "Defense Forces Day", + "2029-12-22": "Unity Day", + "2029-12-25": "Christmas Day", + "2029-12-26": "Boxing Day", + "2030-01-01": "New Year's Day", + "2030-02-21": "Robert Gabriel Mugabe National Youth Day", + "2030-04-18": "Independence Day", + "2030-04-19": "Good Friday", + "2030-04-20": "Easter Saturday", + "2030-04-22": "Easter Monday", + "2030-05-01": "Workers' Day", + "2030-05-25": "Africa Day", + "2030-08-12": "Zimbabwe Heroes' Day", + "2030-08-13": "Defense Forces Day", + "2030-12-22": "Unity Day", + "2030-12-23": "Unity Day (Observed)", + "2030-12-25": "Christmas Day", + "2030-12-26": "Boxing Day", + "2031-01-01": "New Year's Day", + "2031-02-21": "Robert Gabriel Mugabe National Youth Day", + "2031-04-11": "Good Friday", + "2031-04-12": "Easter Saturday", + "2031-04-14": "Easter Monday", + "2031-04-18": "Independence Day", + "2031-05-01": "Workers' Day", + "2031-05-25": "Africa Day", + "2031-05-26": "Africa Day (Observed)", + "2031-08-11": "Zimbabwe Heroes' Day", + "2031-08-12": "Defense Forces Day", + "2031-12-22": "Unity Day", + "2031-12-25": "Christmas Day", + "2031-12-26": "Boxing Day", + "2032-01-01": "New Year's Day", + "2032-02-21": "Robert Gabriel Mugabe National Youth Day", + "2032-03-26": "Good Friday", + "2032-03-27": "Easter Saturday", + "2032-03-29": "Easter Monday", + "2032-04-18": "Independence Day", + "2032-04-19": "Independence Day (Observed)", + "2032-05-01": "Workers' Day", + "2032-05-25": "Africa Day", + "2032-08-09": "Zimbabwe Heroes' Day", + "2032-08-10": "Defense Forces Day", + "2032-12-22": "Unity Day", + "2032-12-25": "Christmas Day", + "2032-12-26": "Boxing Day", + "2032-12-27": "Boxing Day (Observed)", + "2033-01-01": "New Year's Day", + "2033-02-21": "Robert Gabriel Mugabe National Youth Day", + "2033-04-15": "Good Friday", + "2033-04-16": "Easter Saturday", + "2033-04-18": "Easter Monday; Independence Day", + "2033-05-01": "Workers' Day", + "2033-05-02": "Workers' Day (Observed)", + "2033-05-25": "Africa Day", + "2033-08-08": "Zimbabwe Heroes' Day", + "2033-08-09": "Defense Forces Day", + "2033-12-22": "Unity Day", + "2033-12-25": "Christmas Day", + "2033-12-26": "Boxing Day", + "2033-12-27": "Christmas Day (Observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-02-21": "Robert Gabriel Mugabe National Youth Day", + "2034-04-07": "Good Friday", + "2034-04-08": "Easter Saturday", + "2034-04-10": "Easter Monday", + "2034-04-18": "Independence Day", + "2034-05-01": "Workers' Day", + "2034-05-25": "Africa Day", + "2034-08-14": "Zimbabwe Heroes' Day", + "2034-08-15": "Defense Forces Day", + "2034-12-22": "Unity Day", + "2034-12-25": "Christmas Day", + "2034-12-26": "Boxing Day", + "2035-01-01": "New Year's Day", + "2035-02-21": "Robert Gabriel Mugabe National Youth Day", + "2035-03-23": "Good Friday", + "2035-03-24": "Easter Saturday", + "2035-03-26": "Easter Monday", + "2035-04-18": "Independence Day", + "2035-05-01": "Workers' Day", + "2035-05-25": "Africa Day", + "2035-08-13": "Zimbabwe Heroes' Day", + "2035-08-14": "Defense Forces Day", + "2035-12-22": "Unity Day", + "2035-12-25": "Christmas Day", + "2035-12-26": "Boxing Day", + "2036-01-01": "New Year's Day", + "2036-02-21": "Robert Gabriel Mugabe National Youth Day", + "2036-04-11": "Good Friday", + "2036-04-12": "Easter Saturday", + "2036-04-14": "Easter Monday", + "2036-04-18": "Independence Day", + "2036-05-01": "Workers' Day", + "2036-05-25": "Africa Day", + "2036-05-26": "Africa Day (Observed)", + "2036-08-11": "Zimbabwe Heroes' Day", + "2036-08-12": "Defense Forces Day", + "2036-12-22": "Unity Day", + "2036-12-25": "Christmas Day", + "2036-12-26": "Boxing Day", + "2037-01-01": "New Year's Day", + "2037-02-21": "Robert Gabriel Mugabe National Youth Day", + "2037-04-03": "Good Friday", + "2037-04-04": "Easter Saturday", + "2037-04-06": "Easter Monday", + "2037-04-18": "Independence Day", + "2037-05-01": "Workers' Day", + "2037-05-25": "Africa Day", + "2037-08-10": "Zimbabwe Heroes' Day", + "2037-08-11": "Defense Forces Day", + "2037-12-22": "Unity Day", + "2037-12-25": "Christmas Day", + "2037-12-26": "Boxing Day", + "2038-01-01": "New Year's Day", + "2038-02-21": "Robert Gabriel Mugabe National Youth Day", + "2038-02-22": "Robert Gabriel Mugabe National Youth Day (Observed)", + "2038-04-18": "Independence Day", + "2038-04-19": "Independence Day (Observed)", + "2038-04-23": "Good Friday", + "2038-04-24": "Easter Saturday", + "2038-04-26": "Easter Monday", + "2038-05-01": "Workers' Day", + "2038-05-25": "Africa Day", + "2038-08-09": "Zimbabwe Heroes' Day", + "2038-08-10": "Defense Forces Day", + "2038-12-22": "Unity Day", + "2038-12-25": "Christmas Day", + "2038-12-26": "Boxing Day", + "2038-12-27": "Boxing Day (Observed)", + "2039-01-01": "New Year's Day", + "2039-02-21": "Robert Gabriel Mugabe National Youth Day", + "2039-04-08": "Good Friday", + "2039-04-09": "Easter Saturday", + "2039-04-11": "Easter Monday", + "2039-04-18": "Independence Day", + "2039-05-01": "Workers' Day", + "2039-05-02": "Workers' Day (Observed)", + "2039-05-25": "Africa Day", + "2039-08-08": "Zimbabwe Heroes' Day", + "2039-08-09": "Defense Forces Day", + "2039-12-22": "Unity Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Boxing Day", + "2039-12-27": "Christmas Day (Observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (Observed)", + "2040-02-21": "Robert Gabriel Mugabe National Youth Day", + "2040-03-30": "Good Friday", + "2040-03-31": "Easter Saturday", + "2040-04-02": "Easter Monday", + "2040-04-18": "Independence Day", + "2040-05-01": "Workers' Day", + "2040-05-25": "Africa Day", + "2040-08-13": "Zimbabwe Heroes' Day", + "2040-08-14": "Defense Forces Day", + "2040-12-22": "Unity Day", + "2040-12-25": "Christmas Day", + "2040-12-26": "Boxing Day", + "2041-01-01": "New Year's Day", + "2041-02-21": "Robert Gabriel Mugabe National Youth Day", + "2041-04-18": "Independence Day", + "2041-04-19": "Good Friday", + "2041-04-20": "Easter Saturday", + "2041-04-22": "Easter Monday", + "2041-05-01": "Workers' Day", + "2041-05-25": "Africa Day", + "2041-08-12": "Zimbabwe Heroes' Day", + "2041-08-13": "Defense Forces Day", + "2041-12-22": "Unity Day", + "2041-12-23": "Unity Day (Observed)", + "2041-12-25": "Christmas Day", + "2041-12-26": "Boxing Day", + "2042-01-01": "New Year's Day", + "2042-02-21": "Robert Gabriel Mugabe National Youth Day", + "2042-04-04": "Good Friday", + "2042-04-05": "Easter Saturday", + "2042-04-07": "Easter Monday", + "2042-04-18": "Independence Day", + "2042-05-01": "Workers' Day", + "2042-05-25": "Africa Day", + "2042-05-26": "Africa Day (Observed)", + "2042-08-11": "Zimbabwe Heroes' Day", + "2042-08-12": "Defense Forces Day", + "2042-12-22": "Unity Day", + "2042-12-25": "Christmas Day", + "2042-12-26": "Boxing Day", + "2043-01-01": "New Year's Day", + "2043-02-21": "Robert Gabriel Mugabe National Youth Day", + "2043-03-27": "Good Friday", + "2043-03-28": "Easter Saturday", + "2043-03-30": "Easter Monday", + "2043-04-18": "Independence Day", + "2043-05-01": "Workers' Day", + "2043-05-25": "Africa Day", + "2043-08-10": "Zimbabwe Heroes' Day", + "2043-08-11": "Defense Forces Day", + "2043-12-22": "Unity Day", + "2043-12-25": "Christmas Day", + "2043-12-26": "Boxing Day", + "2044-01-01": "New Year's Day", + "2044-02-21": "Robert Gabriel Mugabe National Youth Day", + "2044-02-22": "Robert Gabriel Mugabe National Youth Day (Observed)", + "2044-04-15": "Good Friday", + "2044-04-16": "Easter Saturday", + "2044-04-18": "Easter Monday; Independence Day", + "2044-05-01": "Workers' Day", + "2044-05-02": "Workers' Day (Observed)", + "2044-05-25": "Africa Day", + "2044-08-08": "Zimbabwe Heroes' Day", + "2044-08-09": "Defense Forces Day", + "2044-12-22": "Unity Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "Boxing Day", + "2044-12-27": "Christmas Day (Observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (Observed)", + "2045-02-21": "Robert Gabriel Mugabe National Youth Day", + "2045-04-07": "Good Friday", + "2045-04-08": "Easter Saturday", + "2045-04-10": "Easter Monday", + "2045-04-18": "Independence Day", + "2045-05-01": "Workers' Day", + "2045-05-25": "Africa Day", + "2045-08-14": "Zimbabwe Heroes' Day", + "2045-08-15": "Defense Forces Day", + "2045-12-22": "Unity Day", + "2045-12-25": "Christmas Day", + "2045-12-26": "Boxing Day", + "2046-01-01": "New Year's Day", + "2046-02-21": "Robert Gabriel Mugabe National Youth Day", + "2046-03-23": "Good Friday", + "2046-03-24": "Easter Saturday", + "2046-03-26": "Easter Monday", + "2046-04-18": "Independence Day", + "2046-05-01": "Workers' Day", + "2046-05-25": "Africa Day", + "2046-08-13": "Zimbabwe Heroes' Day", + "2046-08-14": "Defense Forces Day", + "2046-12-22": "Unity Day", + "2046-12-25": "Christmas Day", + "2046-12-26": "Boxing Day", + "2047-01-01": "New Year's Day", + "2047-02-21": "Robert Gabriel Mugabe National Youth Day", + "2047-04-12": "Good Friday", + "2047-04-13": "Easter Saturday", + "2047-04-15": "Easter Monday", + "2047-04-18": "Independence Day", + "2047-05-01": "Workers' Day", + "2047-05-25": "Africa Day", + "2047-08-12": "Zimbabwe Heroes' Day", + "2047-08-13": "Defense Forces Day", + "2047-12-22": "Unity Day", + "2047-12-23": "Unity Day (Observed)", + "2047-12-25": "Christmas Day", + "2047-12-26": "Boxing Day", + "2048-01-01": "New Year's Day", + "2048-02-21": "Robert Gabriel Mugabe National Youth Day", + "2048-04-03": "Good Friday", + "2048-04-04": "Easter Saturday", + "2048-04-06": "Easter Monday", + "2048-04-18": "Independence Day", + "2048-05-01": "Workers' Day", + "2048-05-25": "Africa Day", + "2048-08-10": "Zimbabwe Heroes' Day", + "2048-08-11": "Defense Forces Day", + "2048-12-22": "Unity Day", + "2048-12-25": "Christmas Day", + "2048-12-26": "Boxing Day", + "2049-01-01": "New Year's Day", + "2049-02-21": "Robert Gabriel Mugabe National Youth Day", + "2049-02-22": "Robert Gabriel Mugabe National Youth Day (Observed)", + "2049-04-16": "Good Friday", + "2049-04-17": "Easter Saturday", + "2049-04-18": "Independence Day", + "2049-04-19": "Easter Monday", + "2049-04-20": "Independence Day (Observed)", + "2049-05-01": "Workers' Day", + "2049-05-25": "Africa Day", + "2049-08-09": "Zimbabwe Heroes' Day", + "2049-08-10": "Defense Forces Day", + "2049-12-22": "Unity Day", + "2049-12-25": "Christmas Day", + "2049-12-26": "Boxing Day", + "2049-12-27": "Boxing Day (Observed)", + "2050-01-01": "New Year's Day", + "2050-02-21": "Robert Gabriel Mugabe National Youth Day", + "2050-04-08": "Good Friday", + "2050-04-09": "Easter Saturday", + "2050-04-11": "Easter Monday", + "2050-04-18": "Independence Day", + "2050-05-01": "Workers' Day", + "2050-05-02": "Workers' Day (Observed)", + "2050-05-25": "Africa Day", + "2050-08-08": "Zimbabwe Heroes' Day", + "2050-08-09": "Defense Forces Day", + "2050-12-22": "Unity Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "Boxing Day", + "2050-12-27": "Christmas Day (Observed)" +} diff --git a/snapshots/financial/ECB.json b/snapshots/financial/ECB.json new file mode 100644 index 000000000..63186072e --- /dev/null +++ b/snapshots/financial/ECB.json @@ -0,0 +1,608 @@ +{ + "1950-01-01": "New Year's Day", + "1950-04-07": "Good Friday", + "1950-04-10": "Easter Monday", + "1950-05-01": "1 May (Labour Day)", + "1950-12-25": "Christmas Day", + "1950-12-26": "26 December", + "1951-01-01": "New Year's Day", + "1951-03-23": "Good Friday", + "1951-03-26": "Easter Monday", + "1951-05-01": "1 May (Labour Day)", + "1951-12-25": "Christmas Day", + "1951-12-26": "26 December", + "1952-01-01": "New Year's Day", + "1952-04-11": "Good Friday", + "1952-04-14": "Easter Monday", + "1952-05-01": "1 May (Labour Day)", + "1952-12-25": "Christmas Day", + "1952-12-26": "26 December", + "1953-01-01": "New Year's Day", + "1953-04-03": "Good Friday", + "1953-04-06": "Easter Monday", + "1953-05-01": "1 May (Labour Day)", + "1953-12-25": "Christmas Day", + "1953-12-26": "26 December", + "1954-01-01": "New Year's Day", + "1954-04-16": "Good Friday", + "1954-04-19": "Easter Monday", + "1954-05-01": "1 May (Labour Day)", + "1954-12-25": "Christmas Day", + "1954-12-26": "26 December", + "1955-01-01": "New Year's Day", + "1955-04-08": "Good Friday", + "1955-04-11": "Easter Monday", + "1955-05-01": "1 May (Labour Day)", + "1955-12-25": "Christmas Day", + "1955-12-26": "26 December", + "1956-01-01": "New Year's Day", + "1956-03-30": "Good Friday", + "1956-04-02": "Easter Monday", + "1956-05-01": "1 May (Labour Day)", + "1956-12-25": "Christmas Day", + "1956-12-26": "26 December", + "1957-01-01": "New Year's Day", + "1957-04-19": "Good Friday", + "1957-04-22": "Easter Monday", + "1957-05-01": "1 May (Labour Day)", + "1957-12-25": "Christmas Day", + "1957-12-26": "26 December", + "1958-01-01": "New Year's Day", + "1958-04-04": "Good Friday", + "1958-04-07": "Easter Monday", + "1958-05-01": "1 May (Labour Day)", + "1958-12-25": "Christmas Day", + "1958-12-26": "26 December", + "1959-01-01": "New Year's Day", + "1959-03-27": "Good Friday", + "1959-03-30": "Easter Monday", + "1959-05-01": "1 May (Labour Day)", + "1959-12-25": "Christmas Day", + "1959-12-26": "26 December", + "1960-01-01": "New Year's Day", + "1960-04-15": "Good Friday", + "1960-04-18": "Easter Monday", + "1960-05-01": "1 May (Labour Day)", + "1960-12-25": "Christmas Day", + "1960-12-26": "26 December", + "1961-01-01": "New Year's Day", + "1961-03-31": "Good Friday", + "1961-04-03": "Easter Monday", + "1961-05-01": "1 May (Labour Day)", + "1961-12-25": "Christmas Day", + "1961-12-26": "26 December", + "1962-01-01": "New Year's Day", + "1962-04-20": "Good Friday", + "1962-04-23": "Easter Monday", + "1962-05-01": "1 May (Labour Day)", + "1962-12-25": "Christmas Day", + "1962-12-26": "26 December", + "1963-01-01": "New Year's Day", + "1963-04-12": "Good Friday", + "1963-04-15": "Easter Monday", + "1963-05-01": "1 May (Labour Day)", + "1963-12-25": "Christmas Day", + "1963-12-26": "26 December", + "1964-01-01": "New Year's Day", + "1964-03-27": "Good Friday", + "1964-03-30": "Easter Monday", + "1964-05-01": "1 May (Labour Day)", + "1964-12-25": "Christmas Day", + "1964-12-26": "26 December", + "1965-01-01": "New Year's Day", + "1965-04-16": "Good Friday", + "1965-04-19": "Easter Monday", + "1965-05-01": "1 May (Labour Day)", + "1965-12-25": "Christmas Day", + "1965-12-26": "26 December", + "1966-01-01": "New Year's Day", + "1966-04-08": "Good Friday", + "1966-04-11": "Easter Monday", + "1966-05-01": "1 May (Labour Day)", + "1966-12-25": "Christmas Day", + "1966-12-26": "26 December", + "1967-01-01": "New Year's Day", + "1967-03-24": "Good Friday", + "1967-03-27": "Easter Monday", + "1967-05-01": "1 May (Labour Day)", + "1967-12-25": "Christmas Day", + "1967-12-26": "26 December", + "1968-01-01": "New Year's Day", + "1968-04-12": "Good Friday", + "1968-04-15": "Easter Monday", + "1968-05-01": "1 May (Labour Day)", + "1968-12-25": "Christmas Day", + "1968-12-26": "26 December", + "1969-01-01": "New Year's Day", + "1969-04-04": "Good Friday", + "1969-04-07": "Easter Monday", + "1969-05-01": "1 May (Labour Day)", + "1969-12-25": "Christmas Day", + "1969-12-26": "26 December", + "1970-01-01": "New Year's Day", + "1970-03-27": "Good Friday", + "1970-03-30": "Easter Monday", + "1970-05-01": "1 May (Labour Day)", + "1970-12-25": "Christmas Day", + "1970-12-26": "26 December", + "1971-01-01": "New Year's Day", + "1971-04-09": "Good Friday", + "1971-04-12": "Easter Monday", + "1971-05-01": "1 May (Labour Day)", + "1971-12-25": "Christmas Day", + "1971-12-26": "26 December", + "1972-01-01": "New Year's Day", + "1972-03-31": "Good Friday", + "1972-04-03": "Easter Monday", + "1972-05-01": "1 May (Labour Day)", + "1972-12-25": "Christmas Day", + "1972-12-26": "26 December", + "1973-01-01": "New Year's Day", + "1973-04-20": "Good Friday", + "1973-04-23": "Easter Monday", + "1973-05-01": "1 May (Labour Day)", + "1973-12-25": "Christmas Day", + "1973-12-26": "26 December", + "1974-01-01": "New Year's Day", + "1974-04-12": "Good Friday", + "1974-04-15": "Easter Monday", + "1974-05-01": "1 May (Labour Day)", + "1974-12-25": "Christmas Day", + "1974-12-26": "26 December", + "1975-01-01": "New Year's Day", + "1975-03-28": "Good Friday", + "1975-03-31": "Easter Monday", + "1975-05-01": "1 May (Labour Day)", + "1975-12-25": "Christmas Day", + "1975-12-26": "26 December", + "1976-01-01": "New Year's Day", + "1976-04-16": "Good Friday", + "1976-04-19": "Easter Monday", + "1976-05-01": "1 May (Labour Day)", + "1976-12-25": "Christmas Day", + "1976-12-26": "26 December", + "1977-01-01": "New Year's Day", + "1977-04-08": "Good Friday", + "1977-04-11": "Easter Monday", + "1977-05-01": "1 May (Labour Day)", + "1977-12-25": "Christmas Day", + "1977-12-26": "26 December", + "1978-01-01": "New Year's Day", + "1978-03-24": "Good Friday", + "1978-03-27": "Easter Monday", + "1978-05-01": "1 May (Labour Day)", + "1978-12-25": "Christmas Day", + "1978-12-26": "26 December", + "1979-01-01": "New Year's Day", + "1979-04-13": "Good Friday", + "1979-04-16": "Easter Monday", + "1979-05-01": "1 May (Labour Day)", + "1979-12-25": "Christmas Day", + "1979-12-26": "26 December", + "1980-01-01": "New Year's Day", + "1980-04-04": "Good Friday", + "1980-04-07": "Easter Monday", + "1980-05-01": "1 May (Labour Day)", + "1980-12-25": "Christmas Day", + "1980-12-26": "26 December", + "1981-01-01": "New Year's Day", + "1981-04-17": "Good Friday", + "1981-04-20": "Easter Monday", + "1981-05-01": "1 May (Labour Day)", + "1981-12-25": "Christmas Day", + "1981-12-26": "26 December", + "1982-01-01": "New Year's Day", + "1982-04-09": "Good Friday", + "1982-04-12": "Easter Monday", + "1982-05-01": "1 May (Labour Day)", + "1982-12-25": "Christmas Day", + "1982-12-26": "26 December", + "1983-01-01": "New Year's Day", + "1983-04-01": "Good Friday", + "1983-04-04": "Easter Monday", + "1983-05-01": "1 May (Labour Day)", + "1983-12-25": "Christmas Day", + "1983-12-26": "26 December", + "1984-01-01": "New Year's Day", + "1984-04-20": "Good Friday", + "1984-04-23": "Easter Monday", + "1984-05-01": "1 May (Labour Day)", + "1984-12-25": "Christmas Day", + "1984-12-26": "26 December", + "1985-01-01": "New Year's Day", + "1985-04-05": "Good Friday", + "1985-04-08": "Easter Monday", + "1985-05-01": "1 May (Labour Day)", + "1985-12-25": "Christmas Day", + "1985-12-26": "26 December", + "1986-01-01": "New Year's Day", + "1986-03-28": "Good Friday", + "1986-03-31": "Easter Monday", + "1986-05-01": "1 May (Labour Day)", + "1986-12-25": "Christmas Day", + "1986-12-26": "26 December", + "1987-01-01": "New Year's Day", + "1987-04-17": "Good Friday", + "1987-04-20": "Easter Monday", + "1987-05-01": "1 May (Labour Day)", + "1987-12-25": "Christmas Day", + "1987-12-26": "26 December", + "1988-01-01": "New Year's Day", + "1988-04-01": "Good Friday", + "1988-04-04": "Easter Monday", + "1988-05-01": "1 May (Labour Day)", + "1988-12-25": "Christmas Day", + "1988-12-26": "26 December", + "1989-01-01": "New Year's Day", + "1989-03-24": "Good Friday", + "1989-03-27": "Easter Monday", + "1989-05-01": "1 May (Labour Day)", + "1989-12-25": "Christmas Day", + "1989-12-26": "26 December", + "1990-01-01": "New Year's Day", + "1990-04-13": "Good Friday", + "1990-04-16": "Easter Monday", + "1990-05-01": "1 May (Labour Day)", + "1990-12-25": "Christmas Day", + "1990-12-26": "26 December", + "1991-01-01": "New Year's Day", + "1991-03-29": "Good Friday", + "1991-04-01": "Easter Monday", + "1991-05-01": "1 May (Labour Day)", + "1991-12-25": "Christmas Day", + "1991-12-26": "26 December", + "1992-01-01": "New Year's Day", + "1992-04-17": "Good Friday", + "1992-04-20": "Easter Monday", + "1992-05-01": "1 May (Labour Day)", + "1992-12-25": "Christmas Day", + "1992-12-26": "26 December", + "1993-01-01": "New Year's Day", + "1993-04-09": "Good Friday", + "1993-04-12": "Easter Monday", + "1993-05-01": "1 May (Labour Day)", + "1993-12-25": "Christmas Day", + "1993-12-26": "26 December", + "1994-01-01": "New Year's Day", + "1994-04-01": "Good Friday", + "1994-04-04": "Easter Monday", + "1994-05-01": "1 May (Labour Day)", + "1994-12-25": "Christmas Day", + "1994-12-26": "26 December", + "1995-01-01": "New Year's Day", + "1995-04-14": "Good Friday", + "1995-04-17": "Easter Monday", + "1995-05-01": "1 May (Labour Day)", + "1995-12-25": "Christmas Day", + "1995-12-26": "26 December", + "1996-01-01": "New Year's Day", + "1996-04-05": "Good Friday", + "1996-04-08": "Easter Monday", + "1996-05-01": "1 May (Labour Day)", + "1996-12-25": "Christmas Day", + "1996-12-26": "26 December", + "1997-01-01": "New Year's Day", + "1997-03-28": "Good Friday", + "1997-03-31": "Easter Monday", + "1997-05-01": "1 May (Labour Day)", + "1997-12-25": "Christmas Day", + "1997-12-26": "26 December", + "1998-01-01": "New Year's Day", + "1998-04-10": "Good Friday", + "1998-04-13": "Easter Monday", + "1998-05-01": "1 May (Labour Day)", + "1998-12-25": "Christmas Day", + "1998-12-26": "26 December", + "1999-01-01": "New Year's Day", + "1999-04-02": "Good Friday", + "1999-04-05": "Easter Monday", + "1999-05-01": "1 May (Labour Day)", + "1999-12-25": "Christmas Day", + "1999-12-26": "26 December", + "2000-01-01": "New Year's Day", + "2000-04-21": "Good Friday", + "2000-04-24": "Easter Monday", + "2000-05-01": "1 May (Labour Day)", + "2000-12-25": "Christmas Day", + "2000-12-26": "26 December", + "2001-01-01": "New Year's Day", + "2001-04-13": "Good Friday", + "2001-04-16": "Easter Monday", + "2001-05-01": "1 May (Labour Day)", + "2001-12-25": "Christmas Day", + "2001-12-26": "26 December", + "2002-01-01": "New Year's Day", + "2002-03-29": "Good Friday", + "2002-04-01": "Easter Monday", + "2002-05-01": "1 May (Labour Day)", + "2002-12-25": "Christmas Day", + "2002-12-26": "26 December", + "2003-01-01": "New Year's Day", + "2003-04-18": "Good Friday", + "2003-04-21": "Easter Monday", + "2003-05-01": "1 May (Labour Day)", + "2003-12-25": "Christmas Day", + "2003-12-26": "26 December", + "2004-01-01": "New Year's Day", + "2004-04-09": "Good Friday", + "2004-04-12": "Easter Monday", + "2004-05-01": "1 May (Labour Day)", + "2004-12-25": "Christmas Day", + "2004-12-26": "26 December", + "2005-01-01": "New Year's Day", + "2005-03-25": "Good Friday", + "2005-03-28": "Easter Monday", + "2005-05-01": "1 May (Labour Day)", + "2005-12-25": "Christmas Day", + "2005-12-26": "26 December", + "2006-01-01": "New Year's Day", + "2006-04-14": "Good Friday", + "2006-04-17": "Easter Monday", + "2006-05-01": "1 May (Labour Day)", + "2006-12-25": "Christmas Day", + "2006-12-26": "26 December", + "2007-01-01": "New Year's Day", + "2007-04-06": "Good Friday", + "2007-04-09": "Easter Monday", + "2007-05-01": "1 May (Labour Day)", + "2007-12-25": "Christmas Day", + "2007-12-26": "26 December", + "2008-01-01": "New Year's Day", + "2008-03-21": "Good Friday", + "2008-03-24": "Easter Monday", + "2008-05-01": "1 May (Labour Day)", + "2008-12-25": "Christmas Day", + "2008-12-26": "26 December", + "2009-01-01": "New Year's Day", + "2009-04-10": "Good Friday", + "2009-04-13": "Easter Monday", + "2009-05-01": "1 May (Labour Day)", + "2009-12-25": "Christmas Day", + "2009-12-26": "26 December", + "2010-01-01": "New Year's Day", + "2010-04-02": "Good Friday", + "2010-04-05": "Easter Monday", + "2010-05-01": "1 May (Labour Day)", + "2010-12-25": "Christmas Day", + "2010-12-26": "26 December", + "2011-01-01": "New Year's Day", + "2011-04-22": "Good Friday", + "2011-04-25": "Easter Monday", + "2011-05-01": "1 May (Labour Day)", + "2011-12-25": "Christmas Day", + "2011-12-26": "26 December", + "2012-01-01": "New Year's Day", + "2012-04-06": "Good Friday", + "2012-04-09": "Easter Monday", + "2012-05-01": "1 May (Labour Day)", + "2012-12-25": "Christmas Day", + "2012-12-26": "26 December", + "2013-01-01": "New Year's Day", + "2013-03-29": "Good Friday", + "2013-04-01": "Easter Monday", + "2013-05-01": "1 May (Labour Day)", + "2013-12-25": "Christmas Day", + "2013-12-26": "26 December", + "2014-01-01": "New Year's Day", + "2014-04-18": "Good Friday", + "2014-04-21": "Easter Monday", + "2014-05-01": "1 May (Labour Day)", + "2014-12-25": "Christmas Day", + "2014-12-26": "26 December", + "2015-01-01": "New Year's Day", + "2015-04-03": "Good Friday", + "2015-04-06": "Easter Monday", + "2015-05-01": "1 May (Labour Day)", + "2015-12-25": "Christmas Day", + "2015-12-26": "26 December", + "2016-01-01": "New Year's Day", + "2016-03-25": "Good Friday", + "2016-03-28": "Easter Monday", + "2016-05-01": "1 May (Labour Day)", + "2016-12-25": "Christmas Day", + "2016-12-26": "26 December", + "2017-01-01": "New Year's Day", + "2017-04-14": "Good Friday", + "2017-04-17": "Easter Monday", + "2017-05-01": "1 May (Labour Day)", + "2017-12-25": "Christmas Day", + "2017-12-26": "26 December", + "2018-01-01": "New Year's Day", + "2018-03-30": "Good Friday", + "2018-04-02": "Easter Monday", + "2018-05-01": "1 May (Labour Day)", + "2018-12-25": "Christmas Day", + "2018-12-26": "26 December", + "2019-01-01": "New Year's Day", + "2019-04-19": "Good Friday", + "2019-04-22": "Easter Monday", + "2019-05-01": "1 May (Labour Day)", + "2019-12-25": "Christmas Day", + "2019-12-26": "26 December", + "2020-01-01": "New Year's Day", + "2020-04-10": "Good Friday", + "2020-04-13": "Easter Monday", + "2020-05-01": "1 May (Labour Day)", + "2020-12-25": "Christmas Day", + "2020-12-26": "26 December", + "2021-01-01": "New Year's Day", + "2021-04-02": "Good Friday", + "2021-04-05": "Easter Monday", + "2021-05-01": "1 May (Labour Day)", + "2021-12-25": "Christmas Day", + "2021-12-26": "26 December", + "2022-01-01": "New Year's Day", + "2022-04-15": "Good Friday", + "2022-04-18": "Easter Monday", + "2022-05-01": "1 May (Labour Day)", + "2022-12-25": "Christmas Day", + "2022-12-26": "26 December", + "2023-01-01": "New Year's Day", + "2023-04-07": "Good Friday", + "2023-04-10": "Easter Monday", + "2023-05-01": "1 May (Labour Day)", + "2023-12-25": "Christmas Day", + "2023-12-26": "26 December", + "2024-01-01": "New Year's Day", + "2024-03-29": "Good Friday", + "2024-04-01": "Easter Monday", + "2024-05-01": "1 May (Labour Day)", + "2024-12-25": "Christmas Day", + "2024-12-26": "26 December", + "2025-01-01": "New Year's Day", + "2025-04-18": "Good Friday", + "2025-04-21": "Easter Monday", + "2025-05-01": "1 May (Labour Day)", + "2025-12-25": "Christmas Day", + "2025-12-26": "26 December", + "2026-01-01": "New Year's Day", + "2026-04-03": "Good Friday", + "2026-04-06": "Easter Monday", + "2026-05-01": "1 May (Labour Day)", + "2026-12-25": "Christmas Day", + "2026-12-26": "26 December", + "2027-01-01": "New Year's Day", + "2027-03-26": "Good Friday", + "2027-03-29": "Easter Monday", + "2027-05-01": "1 May (Labour Day)", + "2027-12-25": "Christmas Day", + "2027-12-26": "26 December", + "2028-01-01": "New Year's Day", + "2028-04-14": "Good Friday", + "2028-04-17": "Easter Monday", + "2028-05-01": "1 May (Labour Day)", + "2028-12-25": "Christmas Day", + "2028-12-26": "26 December", + "2029-01-01": "New Year's Day", + "2029-03-30": "Good Friday", + "2029-04-02": "Easter Monday", + "2029-05-01": "1 May (Labour Day)", + "2029-12-25": "Christmas Day", + "2029-12-26": "26 December", + "2030-01-01": "New Year's Day", + "2030-04-19": "Good Friday", + "2030-04-22": "Easter Monday", + "2030-05-01": "1 May (Labour Day)", + "2030-12-25": "Christmas Day", + "2030-12-26": "26 December", + "2031-01-01": "New Year's Day", + "2031-04-11": "Good Friday", + "2031-04-14": "Easter Monday", + "2031-05-01": "1 May (Labour Day)", + "2031-12-25": "Christmas Day", + "2031-12-26": "26 December", + "2032-01-01": "New Year's Day", + "2032-03-26": "Good Friday", + "2032-03-29": "Easter Monday", + "2032-05-01": "1 May (Labour Day)", + "2032-12-25": "Christmas Day", + "2032-12-26": "26 December", + "2033-01-01": "New Year's Day", + "2033-04-15": "Good Friday", + "2033-04-18": "Easter Monday", + "2033-05-01": "1 May (Labour Day)", + "2033-12-25": "Christmas Day", + "2033-12-26": "26 December", + "2034-01-01": "New Year's Day", + "2034-04-07": "Good Friday", + "2034-04-10": "Easter Monday", + "2034-05-01": "1 May (Labour Day)", + "2034-12-25": "Christmas Day", + "2034-12-26": "26 December", + "2035-01-01": "New Year's Day", + "2035-03-23": "Good Friday", + "2035-03-26": "Easter Monday", + "2035-05-01": "1 May (Labour Day)", + "2035-12-25": "Christmas Day", + "2035-12-26": "26 December", + "2036-01-01": "New Year's Day", + "2036-04-11": "Good Friday", + "2036-04-14": "Easter Monday", + "2036-05-01": "1 May (Labour Day)", + "2036-12-25": "Christmas Day", + "2036-12-26": "26 December", + "2037-01-01": "New Year's Day", + "2037-04-03": "Good Friday", + "2037-04-06": "Easter Monday", + "2037-05-01": "1 May (Labour Day)", + "2037-12-25": "Christmas Day", + "2037-12-26": "26 December", + "2038-01-01": "New Year's Day", + "2038-04-23": "Good Friday", + "2038-04-26": "Easter Monday", + "2038-05-01": "1 May (Labour Day)", + "2038-12-25": "Christmas Day", + "2038-12-26": "26 December", + "2039-01-01": "New Year's Day", + "2039-04-08": "Good Friday", + "2039-04-11": "Easter Monday", + "2039-05-01": "1 May (Labour Day)", + "2039-12-25": "Christmas Day", + "2039-12-26": "26 December", + "2040-01-01": "New Year's Day", + "2040-03-30": "Good Friday", + "2040-04-02": "Easter Monday", + "2040-05-01": "1 May (Labour Day)", + "2040-12-25": "Christmas Day", + "2040-12-26": "26 December", + "2041-01-01": "New Year's Day", + "2041-04-19": "Good Friday", + "2041-04-22": "Easter Monday", + "2041-05-01": "1 May (Labour Day)", + "2041-12-25": "Christmas Day", + "2041-12-26": "26 December", + "2042-01-01": "New Year's Day", + "2042-04-04": "Good Friday", + "2042-04-07": "Easter Monday", + "2042-05-01": "1 May (Labour Day)", + "2042-12-25": "Christmas Day", + "2042-12-26": "26 December", + "2043-01-01": "New Year's Day", + "2043-03-27": "Good Friday", + "2043-03-30": "Easter Monday", + "2043-05-01": "1 May (Labour Day)", + "2043-12-25": "Christmas Day", + "2043-12-26": "26 December", + "2044-01-01": "New Year's Day", + "2044-04-15": "Good Friday", + "2044-04-18": "Easter Monday", + "2044-05-01": "1 May (Labour Day)", + "2044-12-25": "Christmas Day", + "2044-12-26": "26 December", + "2045-01-01": "New Year's Day", + "2045-04-07": "Good Friday", + "2045-04-10": "Easter Monday", + "2045-05-01": "1 May (Labour Day)", + "2045-12-25": "Christmas Day", + "2045-12-26": "26 December", + "2046-01-01": "New Year's Day", + "2046-03-23": "Good Friday", + "2046-03-26": "Easter Monday", + "2046-05-01": "1 May (Labour Day)", + "2046-12-25": "Christmas Day", + "2046-12-26": "26 December", + "2047-01-01": "New Year's Day", + "2047-04-12": "Good Friday", + "2047-04-15": "Easter Monday", + "2047-05-01": "1 May (Labour Day)", + "2047-12-25": "Christmas Day", + "2047-12-26": "26 December", + "2048-01-01": "New Year's Day", + "2048-04-03": "Good Friday", + "2048-04-06": "Easter Monday", + "2048-05-01": "1 May (Labour Day)", + "2048-12-25": "Christmas Day", + "2048-12-26": "26 December", + "2049-01-01": "New Year's Day", + "2049-04-16": "Good Friday", + "2049-04-19": "Easter Monday", + "2049-05-01": "1 May (Labour Day)", + "2049-12-25": "Christmas Day", + "2049-12-26": "26 December", + "2050-01-01": "New Year's Day", + "2050-04-08": "Good Friday", + "2050-04-11": "Easter Monday", + "2050-05-01": "1 May (Labour Day)", + "2050-12-25": "Christmas Day", + "2050-12-26": "26 December" +} diff --git a/snapshots/financial/NYSE.json b/snapshots/financial/NYSE.json new file mode 100644 index 000000000..670904e38 --- /dev/null +++ b/snapshots/financial/NYSE.json @@ -0,0 +1,983 @@ +{ + "1950-01-02": "New Year's Day (Observed)", + "1950-02-13": "Lincoln's Birthday (Observed)", + "1950-02-22": "Washington's Birthday", + "1950-04-07": "Good Friday", + "1950-05-30": "Memorial Day", + "1950-06-14": "Flag Day", + "1950-07-04": "Independence Day", + "1950-09-04": "Labor Day", + "1950-10-12": "Columbus Day", + "1950-11-07": "Election Day", + "1950-11-10": "Veteran's Day (Observed)", + "1950-11-23": "Thanksgiving Day", + "1950-12-25": "Christmas Day", + "1951-01-01": "New Year's Day", + "1951-02-12": "Lincoln's Birthday", + "1951-02-22": "Washington's Birthday", + "1951-03-23": "Good Friday", + "1951-05-30": "Memorial Day", + "1951-06-14": "Flag Day", + "1951-07-04": "Independence Day", + "1951-09-03": "Labor Day", + "1951-10-12": "Columbus Day", + "1951-11-06": "Election Day", + "1951-11-12": "Veteran's Day (Observed)", + "1951-11-22": "Thanksgiving Day", + "1951-12-25": "Christmas Day", + "1952-01-01": "New Year's Day", + "1952-02-12": "Lincoln's Birthday", + "1952-02-22": "Washington's Birthday", + "1952-04-11": "Good Friday", + "1952-05-30": "Memorial Day", + "1952-06-13": "Flag Day (Observed)", + "1952-07-04": "Independence Day", + "1952-09-01": "Labor Day", + "1952-10-13": "Columbus Day (Observed)", + "1952-11-04": "Election Day", + "1952-11-11": "Veteran's Day", + "1952-11-27": "Thanksgiving Day", + "1952-12-25": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-02-12": "Lincoln's Birthday", + "1953-02-23": "Washington's Birthday (Observed)", + "1953-04-03": "Good Friday", + "1953-05-29": "Memorial Day (Observed)", + "1953-06-15": "Flag Day (Observed)", + "1953-07-03": "Independence Day (Observed)", + "1953-09-07": "Labor Day", + "1953-10-12": "Columbus Day", + "1953-11-03": "Election Day", + "1953-11-11": "Veteran's Day", + "1953-11-26": "Thanksgiving Day", + "1953-12-25": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-02-22": "Washington's Birthday", + "1954-04-16": "Good Friday", + "1954-05-31": "Memorial Day (Observed)", + "1954-07-05": "Independence Day (Observed)", + "1954-09-06": "Labor Day", + "1954-11-02": "Election Day", + "1954-11-25": "Thanksgiving Day", + "1954-12-24": "Christmas Day (Observed); Christmas Eve", + "1954-12-31": "New Year's Day (Observed)", + "1955-02-22": "Washington's Birthday", + "1955-04-08": "Good Friday", + "1955-05-30": "Memorial Day", + "1955-07-04": "Independence Day", + "1955-09-05": "Labor Day", + "1955-11-08": "Election Day", + "1955-11-24": "Thanksgiving Day", + "1955-12-26": "Christmas Day (Observed)", + "1956-01-02": "New Year's Day (Observed)", + "1956-02-22": "Washington's Birthday", + "1956-03-30": "Good Friday", + "1956-05-30": "Memorial Day", + "1956-07-04": "Independence Day", + "1956-09-03": "Labor Day", + "1956-11-06": "Election Day", + "1956-11-22": "Thanksgiving Day", + "1956-12-24": "Christmas Eve", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-02-22": "Washington's Birthday", + "1957-04-19": "Good Friday", + "1957-05-30": "Memorial Day", + "1957-07-04": "Independence Day", + "1957-09-02": "Labor Day", + "1957-11-05": "Election Day", + "1957-11-28": "Thanksgiving Day", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-02-21": "Washington's Birthday (Observed)", + "1958-04-04": "Good Friday", + "1958-05-30": "Memorial Day", + "1958-07-04": "Independence Day", + "1958-09-01": "Labor Day", + "1958-11-04": "Election Day", + "1958-11-27": "Thanksgiving Day", + "1958-12-25": "Christmas Day", + "1958-12-26": "Day after Christmas", + "1959-01-01": "New Year's Day", + "1959-02-23": "Washington's Birthday (Observed)", + "1959-03-27": "Good Friday", + "1959-05-29": "Memorial Day (Observed)", + "1959-07-03": "Independence Day (Observed)", + "1959-09-07": "Labor Day", + "1959-11-03": "Election Day", + "1959-11-26": "Thanksgiving Day", + "1959-12-25": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-02-22": "Washington's Birthday", + "1960-04-15": "Good Friday", + "1960-05-30": "Memorial Day", + "1960-07-04": "Independence Day", + "1960-09-05": "Labor Day", + "1960-11-08": "Election Day", + "1960-11-24": "Thanksgiving Day", + "1960-12-26": "Christmas Day (Observed)", + "1961-01-02": "New Year's Day (Observed)", + "1961-02-22": "Washington's Birthday", + "1961-03-31": "Good Friday", + "1961-05-29": "Day before Decoration Day", + "1961-05-30": "Memorial Day", + "1961-07-04": "Independence Day", + "1961-09-04": "Labor Day", + "1961-11-07": "Election Day", + "1961-11-23": "Thanksgiving Day", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-02-22": "Washington's Birthday", + "1962-04-20": "Good Friday", + "1962-05-30": "Memorial Day", + "1962-07-04": "Independence Day", + "1962-09-03": "Labor Day", + "1962-11-06": "Election Day", + "1962-11-22": "Thanksgiving Day", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-02-22": "Washington's Birthday", + "1963-04-12": "Good Friday", + "1963-05-30": "Memorial Day", + "1963-07-04": "Independence Day", + "1963-09-02": "Labor Day", + "1963-11-05": "Election Day", + "1963-11-25": "Funeral of President John F. Kennedy", + "1963-11-28": "Thanksgiving Day", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-02-21": "Washington's Birthday (Observed)", + "1964-03-27": "Good Friday", + "1964-05-29": "Memorial Day (Observed)", + "1964-07-03": "Independence Day (Observed)", + "1964-09-07": "Labor Day", + "1964-11-03": "Election Day", + "1964-11-26": "Thanksgiving Day", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-02-22": "Washington's Birthday", + "1965-04-16": "Good Friday", + "1965-05-31": "Memorial Day (Observed)", + "1965-07-05": "Independence Day (Observed)", + "1965-09-06": "Labor Day", + "1965-11-02": "Election Day", + "1965-11-25": "Thanksgiving Day", + "1965-12-24": "Christmas Day (Observed); Christmas Eve", + "1965-12-31": "New Year's Day (Observed)", + "1966-02-22": "Washington's Birthday", + "1966-04-08": "Good Friday", + "1966-05-30": "Memorial Day", + "1966-07-04": "Independence Day", + "1966-09-05": "Labor Day", + "1966-11-08": "Election Day", + "1966-11-24": "Thanksgiving Day", + "1966-12-26": "Christmas Day (Observed)", + "1967-01-02": "New Year's Day (Observed)", + "1967-02-22": "Washington's Birthday", + "1967-03-24": "Good Friday", + "1967-05-30": "Memorial Day", + "1967-07-04": "Independence Day", + "1967-09-04": "Labor Day", + "1967-11-07": "Election Day", + "1967-11-23": "Thanksgiving Day", + "1967-12-25": "Christmas Day", + "1968-01-01": "New Year's Day", + "1968-02-12": "Lincoln's Birthday", + "1968-02-22": "Washington's Birthday", + "1968-04-09": "Day of Mourning for Martin Luther King Jr.", + "1968-04-12": "Good Friday", + "1968-05-30": "Memorial Day", + "1968-06-12": "Paper Crisis", + "1968-06-19": "Paper Crisis", + "1968-06-26": "Paper Crisis", + "1968-07-03": "Paper Crisis", + "1968-07-04": "Independence Day", + "1968-07-05": "Day after Independence Day", + "1968-07-10": "Paper Crisis", + "1968-07-17": "Paper Crisis", + "1968-07-24": "Paper Crisis", + "1968-07-31": "Paper Crisis", + "1968-08-07": "Paper Crisis", + "1968-08-14": "Paper Crisis", + "1968-08-21": "Paper Crisis", + "1968-08-28": "Paper Crisis", + "1968-09-02": "Labor Day", + "1968-09-04": "Paper Crisis", + "1968-09-11": "Paper Crisis", + "1968-09-18": "Paper Crisis", + "1968-09-25": "Paper Crisis", + "1968-10-02": "Paper Crisis", + "1968-10-09": "Paper Crisis", + "1968-10-16": "Paper Crisis", + "1968-10-23": "Paper Crisis", + "1968-10-30": "Paper Crisis", + "1968-11-05": "Election Day", + "1968-11-06": "Paper Crisis", + "1968-11-13": "Paper Crisis", + "1968-11-20": "Paper Crisis", + "1968-11-27": "Paper Crisis", + "1968-11-28": "Thanksgiving Day", + "1968-12-04": "Paper Crisis", + "1968-12-11": "Paper Crisis", + "1968-12-18": "Paper Crisis", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-02-10": "Heavy Snow", + "1969-02-21": "Washington's Birthday (Observed)", + "1969-03-31": "Funeral of President Dwight D. Eisenhower", + "1969-04-04": "Good Friday", + "1969-05-30": "Memorial Day", + "1969-07-04": "Independence Day", + "1969-07-21": "National Participation in Lunar Exploration", + "1969-09-01": "Labor Day", + "1969-11-27": "Thanksgiving Day", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-02-23": "Washington's Birthday (Observed)", + "1970-03-27": "Good Friday", + "1970-05-29": "Memorial Day (Observed)", + "1970-07-03": "Independence Day (Observed)", + "1970-09-07": "Labor Day", + "1970-11-26": "Thanksgiving Day", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-02-15": "Washington's Birthday", + "1971-04-09": "Good Friday", + "1971-05-31": "Memorial Day", + "1971-07-05": "Independence Day (Observed)", + "1971-09-06": "Labor Day", + "1971-11-25": "Thanksgiving Day", + "1971-12-24": "Christmas Day (Observed)", + "1971-12-31": "New Year's Day (Observed)", + "1972-02-21": "Washington's Birthday", + "1972-03-31": "Good Friday", + "1972-05-29": "Memorial Day", + "1972-07-04": "Independence Day", + "1972-09-04": "Labor Day", + "1972-11-07": "Election Day", + "1972-11-23": "Thanksgiving Day", + "1972-12-25": "Christmas Day", + "1972-12-28": "Funeral for President Harry S. Truman", + "1973-01-01": "New Year's Day", + "1973-01-25": "Funeral for President Lyndon B. Johnson", + "1973-02-19": "Washington's Birthday", + "1973-04-20": "Good Friday", + "1973-05-28": "Memorial Day", + "1973-07-04": "Independence Day", + "1973-09-03": "Labor Day", + "1973-11-22": "Thanksgiving Day", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-02-18": "Washington's Birthday", + "1974-04-12": "Good Friday", + "1974-05-27": "Memorial Day", + "1974-07-04": "Independence Day", + "1974-09-02": "Labor Day", + "1974-11-28": "Thanksgiving Day", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-02-17": "Washington's Birthday", + "1975-03-28": "Good Friday", + "1975-05-26": "Memorial Day", + "1975-07-04": "Independence Day", + "1975-09-01": "Labor Day", + "1975-11-27": "Thanksgiving Day", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-02-16": "Washington's Birthday", + "1976-04-16": "Good Friday", + "1976-05-31": "Memorial Day", + "1976-07-05": "Independence Day (Observed)", + "1976-09-06": "Labor Day", + "1976-11-02": "Election Day", + "1976-11-25": "Thanksgiving Day", + "1976-12-24": "Christmas Day (Observed)", + "1976-12-31": "New Year's Day (Observed)", + "1977-02-21": "Washington's Birthday", + "1977-04-08": "Good Friday", + "1977-05-30": "Memorial Day", + "1977-07-04": "Independence Day", + "1977-07-14": "Blackout in New Yor City", + "1977-09-05": "Labor Day", + "1977-11-24": "Thanksgiving Day", + "1977-12-26": "Christmas Day (Observed)", + "1978-01-02": "New Year's Day (Observed)", + "1978-02-20": "Washington's Birthday", + "1978-03-24": "Good Friday", + "1978-05-29": "Memorial Day", + "1978-07-04": "Independence Day", + "1978-09-04": "Labor Day", + "1978-11-23": "Thanksgiving Day", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-02-19": "Washington's Birthday", + "1979-04-13": "Good Friday", + "1979-05-28": "Memorial Day", + "1979-07-04": "Independence Day", + "1979-09-03": "Labor Day", + "1979-11-22": "Thanksgiving Day", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-02-18": "Washington's Birthday", + "1980-04-04": "Good Friday", + "1980-05-26": "Memorial Day", + "1980-07-04": "Independence Day", + "1980-09-01": "Labor Day", + "1980-11-04": "Election Day", + "1980-11-27": "Thanksgiving Day", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-02-16": "Washington's Birthday", + "1981-04-17": "Good Friday", + "1981-05-25": "Memorial Day", + "1981-07-03": "Independence Day (Observed)", + "1981-09-07": "Labor Day", + "1981-11-26": "Thanksgiving Day", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-02-15": "Washington's Birthday", + "1982-04-09": "Good Friday", + "1982-05-31": "Memorial Day", + "1982-07-05": "Independence Day (Observed)", + "1982-09-06": "Labor Day", + "1982-11-25": "Thanksgiving Day", + "1982-12-24": "Christmas Day (Observed)", + "1982-12-31": "New Year's Day (Observed)", + "1983-02-21": "Washington's Birthday", + "1983-04-01": "Good Friday", + "1983-05-30": "Memorial Day", + "1983-07-04": "Independence Day", + "1983-09-05": "Labor Day", + "1983-11-24": "Thanksgiving Day", + "1983-12-26": "Christmas Day (Observed)", + "1984-01-02": "New Year's Day (Observed)", + "1984-02-20": "Washington's Birthday", + "1984-04-20": "Good Friday", + "1984-05-28": "Memorial Day", + "1984-07-04": "Independence Day", + "1984-09-03": "Labor Day", + "1984-11-22": "Thanksgiving Day", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-02-18": "Washington's Birthday", + "1985-04-05": "Good Friday", + "1985-05-27": "Memorial Day", + "1985-07-04": "Independence Day", + "1985-09-02": "Labor Day", + "1985-09-27": "Hurricane Gloria", + "1985-11-28": "Thanksgiving Day", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-02-17": "Washington's Birthday", + "1986-03-28": "Good Friday", + "1986-05-26": "Memorial Day", + "1986-07-04": "Independence Day", + "1986-09-01": "Labor Day", + "1986-11-27": "Thanksgiving Day", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-02-16": "Washington's Birthday", + "1987-04-17": "Good Friday", + "1987-05-25": "Memorial Day", + "1987-07-03": "Independence Day (Observed)", + "1987-09-07": "Labor Day", + "1987-11-26": "Thanksgiving Day", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-02-15": "Washington's Birthday", + "1988-04-01": "Good Friday", + "1988-05-30": "Memorial Day", + "1988-07-04": "Independence Day", + "1988-09-05": "Labor Day", + "1988-11-24": "Thanksgiving Day", + "1988-12-26": "Christmas Day (Observed)", + "1989-01-02": "New Year's Day (Observed)", + "1989-02-20": "Washington's Birthday", + "1989-03-24": "Good Friday", + "1989-05-29": "Memorial Day", + "1989-07-04": "Independence Day", + "1989-09-04": "Labor Day", + "1989-11-23": "Thanksgiving Day", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-02-19": "Washington's Birthday", + "1990-04-13": "Good Friday", + "1990-05-28": "Memorial Day", + "1990-07-04": "Independence Day", + "1990-09-03": "Labor Day", + "1990-11-22": "Thanksgiving Day", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-02-18": "Washington's Birthday", + "1991-03-29": "Good Friday", + "1991-05-27": "Memorial Day", + "1991-07-04": "Independence Day", + "1991-09-02": "Labor Day", + "1991-11-28": "Thanksgiving Day", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-02-17": "Washington's Birthday", + "1992-04-17": "Good Friday", + "1992-05-25": "Memorial Day", + "1992-07-03": "Independence Day (Observed)", + "1992-09-07": "Labor Day", + "1992-11-26": "Thanksgiving Day", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-02-15": "Washington's Birthday", + "1993-04-09": "Good Friday", + "1993-05-31": "Memorial Day", + "1993-07-05": "Independence Day (Observed)", + "1993-09-06": "Labor Day", + "1993-11-25": "Thanksgiving Day", + "1993-12-24": "Christmas Day (Observed)", + "1993-12-31": "New Year's Day (Observed)", + "1994-02-21": "Washington's Birthday", + "1994-04-01": "Good Friday", + "1994-04-27": "Funeral for President Richard M. Nixon", + "1994-05-30": "Memorial Day", + "1994-07-04": "Independence Day", + "1994-09-05": "Labor Day", + "1994-11-24": "Thanksgiving Day", + "1994-12-26": "Christmas Day (Observed)", + "1995-01-02": "New Year's Day (Observed)", + "1995-02-20": "Washington's Birthday", + "1995-04-14": "Good Friday", + "1995-05-29": "Memorial Day", + "1995-07-04": "Independence Day", + "1995-09-04": "Labor Day", + "1995-11-23": "Thanksgiving Day", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-02-19": "Washington's Birthday", + "1996-04-05": "Good Friday", + "1996-05-27": "Memorial Day", + "1996-07-04": "Independence Day", + "1996-09-02": "Labor Day", + "1996-11-28": "Thanksgiving Day", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-02-17": "Washington's Birthday", + "1997-03-28": "Good Friday", + "1997-05-26": "Memorial Day", + "1997-07-04": "Independence Day", + "1997-09-01": "Labor Day", + "1997-11-27": "Thanksgiving Day", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-01-19": "Martin Luther King Jr. Day", + "1998-02-16": "Washington's Birthday", + "1998-04-10": "Good Friday", + "1998-05-25": "Memorial Day", + "1998-07-03": "Independence Day (Observed)", + "1998-09-07": "Labor Day", + "1998-11-26": "Thanksgiving Day", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-01-18": "Martin Luther King Jr. Day", + "1999-02-15": "Washington's Birthday", + "1999-04-02": "Good Friday", + "1999-05-31": "Memorial Day", + "1999-07-05": "Independence Day (Observed)", + "1999-09-06": "Labor Day", + "1999-11-25": "Thanksgiving Day", + "1999-12-24": "Christmas Day (Observed)", + "1999-12-31": "New Year's Day (Observed)", + "2000-01-17": "Martin Luther King Jr. Day", + "2000-02-21": "Washington's Birthday", + "2000-04-21": "Good Friday", + "2000-05-29": "Memorial Day", + "2000-07-04": "Independence Day", + "2000-09-04": "Labor Day", + "2000-11-23": "Thanksgiving Day", + "2000-12-25": "Christmas Day", + "2001-01-01": "New Year's Day", + "2001-01-15": "Martin Luther King Jr. Day", + "2001-02-19": "Washington's Birthday", + "2001-04-13": "Good Friday", + "2001-05-28": "Memorial Day", + "2001-07-04": "Independence Day", + "2001-09-03": "Labor Day", + "2001-09-11": "Closed for Sept 11, 2001 Attacks", + "2001-09-12": "Closed for Sept 11, 2001 Attacks", + "2001-09-13": "Closed for Sept 11, 2001 Attacks", + "2001-09-14": "Closed for Sept 11, 2001 Attacks", + "2001-11-22": "Thanksgiving Day", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-01-21": "Martin Luther King Jr. Day", + "2002-02-18": "Washington's Birthday", + "2002-03-29": "Good Friday", + "2002-05-27": "Memorial Day", + "2002-07-04": "Independence Day", + "2002-09-02": "Labor Day", + "2002-11-28": "Thanksgiving Day", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-01-20": "Martin Luther King Jr. Day", + "2003-02-17": "Washington's Birthday", + "2003-04-18": "Good Friday", + "2003-05-26": "Memorial Day", + "2003-07-04": "Independence Day", + "2003-09-01": "Labor Day", + "2003-11-27": "Thanksgiving Day", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-01-19": "Martin Luther King Jr. Day", + "2004-02-16": "Washington's Birthday", + "2004-04-09": "Good Friday", + "2004-05-31": "Memorial Day", + "2004-06-11": "Day of Mourning for President Ronald W. Reagan", + "2004-07-05": "Independence Day (Observed)", + "2004-09-06": "Labor Day", + "2004-11-25": "Thanksgiving Day", + "2004-12-24": "Christmas Day (Observed)", + "2004-12-31": "New Year's Day (Observed)", + "2005-01-17": "Martin Luther King Jr. Day", + "2005-02-21": "Washington's Birthday", + "2005-03-25": "Good Friday", + "2005-05-30": "Memorial Day", + "2005-07-04": "Independence Day", + "2005-09-05": "Labor Day", + "2005-11-24": "Thanksgiving Day", + "2005-12-26": "Christmas Day (Observed)", + "2006-01-02": "New Year's Day (Observed)", + "2006-01-16": "Martin Luther King Jr. Day", + "2006-02-20": "Washington's Birthday", + "2006-04-14": "Good Friday", + "2006-05-29": "Memorial Day", + "2006-07-04": "Independence Day", + "2006-09-04": "Labor Day", + "2006-11-23": "Thanksgiving Day", + "2006-12-25": "Christmas Day", + "2007-01-01": "New Year's Day", + "2007-01-02": "Day of Mourning for President Gerald R. Ford", + "2007-01-15": "Martin Luther King Jr. Day", + "2007-02-19": "Washington's Birthday", + "2007-04-06": "Good Friday", + "2007-05-28": "Memorial Day", + "2007-07-04": "Independence Day", + "2007-09-03": "Labor Day", + "2007-11-22": "Thanksgiving Day", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-01-21": "Martin Luther King Jr. Day", + "2008-02-18": "Washington's Birthday", + "2008-03-21": "Good Friday", + "2008-05-26": "Memorial Day", + "2008-07-04": "Independence Day", + "2008-09-01": "Labor Day", + "2008-11-27": "Thanksgiving Day", + "2008-12-25": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-01-19": "Martin Luther King Jr. Day", + "2009-02-16": "Washington's Birthday", + "2009-04-10": "Good Friday", + "2009-05-25": "Memorial Day", + "2009-07-03": "Independence Day (Observed)", + "2009-09-07": "Labor Day", + "2009-11-26": "Thanksgiving Day", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-01-18": "Martin Luther King Jr. Day", + "2010-02-15": "Washington's Birthday", + "2010-04-02": "Good Friday", + "2010-05-31": "Memorial Day", + "2010-07-05": "Independence Day (Observed)", + "2010-09-06": "Labor Day", + "2010-11-25": "Thanksgiving Day", + "2010-12-24": "Christmas Day (Observed)", + "2010-12-31": "New Year's Day (Observed)", + "2011-01-17": "Martin Luther King Jr. Day", + "2011-02-21": "Washington's Birthday", + "2011-04-22": "Good Friday", + "2011-05-30": "Memorial Day", + "2011-07-04": "Independence Day", + "2011-09-05": "Labor Day", + "2011-11-24": "Thanksgiving Day", + "2011-12-26": "Christmas Day (Observed)", + "2012-01-02": "New Year's Day (Observed)", + "2012-01-16": "Martin Luther King Jr. Day", + "2012-02-20": "Washington's Birthday", + "2012-04-06": "Good Friday", + "2012-05-28": "Memorial Day", + "2012-07-04": "Independence Day", + "2012-09-03": "Labor Day", + "2012-10-29": "Hurricane Sandy", + "2012-10-30": "Hurricane Sandy", + "2012-11-22": "Thanksgiving Day", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-01-21": "Martin Luther King Jr. Day", + "2013-02-18": "Washington's Birthday", + "2013-03-29": "Good Friday", + "2013-05-27": "Memorial Day", + "2013-07-04": "Independence Day", + "2013-09-02": "Labor Day", + "2013-11-28": "Thanksgiving Day", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-20": "Martin Luther King Jr. Day", + "2014-02-17": "Washington's Birthday", + "2014-04-18": "Good Friday", + "2014-05-26": "Memorial Day", + "2014-07-04": "Independence Day", + "2014-09-01": "Labor Day", + "2014-11-27": "Thanksgiving Day", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-01-19": "Martin Luther King Jr. Day", + "2015-02-16": "Washington's Birthday", + "2015-04-03": "Good Friday", + "2015-05-25": "Memorial Day", + "2015-07-03": "Independence Day (Observed)", + "2015-09-07": "Labor Day", + "2015-11-26": "Thanksgiving Day", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-01-18": "Martin Luther King Jr. Day", + "2016-02-15": "Washington's Birthday", + "2016-03-25": "Good Friday", + "2016-05-30": "Memorial Day", + "2016-07-04": "Independence Day", + "2016-09-05": "Labor Day", + "2016-11-24": "Thanksgiving Day", + "2016-12-26": "Christmas Day (Observed)", + "2017-01-02": "New Year's Day (Observed)", + "2017-01-16": "Martin Luther King Jr. Day", + "2017-02-20": "Washington's Birthday", + "2017-04-14": "Good Friday", + "2017-05-29": "Memorial Day", + "2017-07-04": "Independence Day", + "2017-09-04": "Labor Day", + "2017-11-23": "Thanksgiving Day", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-01-15": "Martin Luther King Jr. Day", + "2018-02-19": "Washington's Birthday", + "2018-03-30": "Good Friday", + "2018-05-28": "Memorial Day", + "2018-07-04": "Independence Day", + "2018-09-03": "Labor Day", + "2018-11-22": "Thanksgiving Day", + "2018-12-05": "Day of Mourning for President George H.W. Bush", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-01-21": "Martin Luther King Jr. Day", + "2019-02-18": "Washington's Birthday", + "2019-04-19": "Good Friday", + "2019-05-27": "Memorial Day", + "2019-07-04": "Independence Day", + "2019-09-02": "Labor Day", + "2019-11-28": "Thanksgiving Day", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-01-20": "Martin Luther King Jr. Day", + "2020-02-17": "Washington's Birthday", + "2020-04-10": "Good Friday", + "2020-05-25": "Memorial Day", + "2020-07-03": "Independence Day (Observed)", + "2020-09-07": "Labor Day", + "2020-11-26": "Thanksgiving Day", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-01-18": "Martin Luther King Jr. Day", + "2021-02-15": "Washington's Birthday", + "2021-04-02": "Good Friday", + "2021-05-31": "Memorial Day", + "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-07-05": "Independence Day (Observed)", + "2021-09-06": "Labor Day", + "2021-11-25": "Thanksgiving Day", + "2021-12-24": "Christmas Day (Observed)", + "2021-12-31": "New Year's Day (Observed)", + "2022-01-17": "Martin Luther King Jr. Day", + "2022-02-21": "Washington's Birthday", + "2022-04-15": "Good Friday", + "2022-05-30": "Memorial Day", + "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-07-04": "Independence Day", + "2022-09-05": "Labor Day", + "2022-11-24": "Thanksgiving Day", + "2022-12-26": "Christmas Day (Observed)", + "2023-01-02": "New Year's Day (Observed)", + "2023-01-16": "Martin Luther King Jr. Day", + "2023-02-20": "Washington's Birthday", + "2023-04-07": "Good Friday", + "2023-05-29": "Memorial Day", + "2023-06-19": "Juneteenth National Independence Day", + "2023-07-04": "Independence Day", + "2023-09-04": "Labor Day", + "2023-11-23": "Thanksgiving Day", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-01-15": "Martin Luther King Jr. Day", + "2024-02-19": "Washington's Birthday", + "2024-03-29": "Good Friday", + "2024-05-27": "Memorial Day", + "2024-06-19": "Juneteenth National Independence Day", + "2024-07-04": "Independence Day", + "2024-09-02": "Labor Day", + "2024-11-28": "Thanksgiving Day", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-01-20": "Martin Luther King Jr. Day", + "2025-02-17": "Washington's Birthday", + "2025-04-18": "Good Friday", + "2025-05-26": "Memorial Day", + "2025-06-19": "Juneteenth National Independence Day", + "2025-07-04": "Independence Day", + "2025-09-01": "Labor Day", + "2025-11-27": "Thanksgiving Day", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-01-19": "Martin Luther King Jr. Day", + "2026-02-16": "Washington's Birthday", + "2026-04-03": "Good Friday", + "2026-05-25": "Memorial Day", + "2026-06-19": "Juneteenth National Independence Day", + "2026-07-03": "Independence Day (Observed)", + "2026-09-07": "Labor Day", + "2026-11-26": "Thanksgiving Day", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-01-18": "Martin Luther King Jr. Day", + "2027-02-15": "Washington's Birthday", + "2027-03-26": "Good Friday", + "2027-05-31": "Memorial Day", + "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-07-05": "Independence Day (Observed)", + "2027-09-06": "Labor Day", + "2027-11-25": "Thanksgiving Day", + "2027-12-24": "Christmas Day (Observed)", + "2027-12-31": "New Year's Day (Observed)", + "2028-01-17": "Martin Luther King Jr. Day", + "2028-02-21": "Washington's Birthday", + "2028-04-14": "Good Friday", + "2028-05-29": "Memorial Day", + "2028-06-19": "Juneteenth National Independence Day", + "2028-07-04": "Independence Day", + "2028-09-04": "Labor Day", + "2028-11-23": "Thanksgiving Day", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-01-15": "Martin Luther King Jr. Day", + "2029-02-19": "Washington's Birthday", + "2029-03-30": "Good Friday", + "2029-05-28": "Memorial Day", + "2029-06-19": "Juneteenth National Independence Day", + "2029-07-04": "Independence Day", + "2029-09-03": "Labor Day", + "2029-11-22": "Thanksgiving Day", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-01-21": "Martin Luther King Jr. Day", + "2030-02-18": "Washington's Birthday", + "2030-04-19": "Good Friday", + "2030-05-27": "Memorial Day", + "2030-06-19": "Juneteenth National Independence Day", + "2030-07-04": "Independence Day", + "2030-09-02": "Labor Day", + "2030-11-28": "Thanksgiving Day", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-01-20": "Martin Luther King Jr. Day", + "2031-02-17": "Washington's Birthday", + "2031-04-11": "Good Friday", + "2031-05-26": "Memorial Day", + "2031-06-19": "Juneteenth National Independence Day", + "2031-07-04": "Independence Day", + "2031-09-01": "Labor Day", + "2031-11-27": "Thanksgiving Day", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-01-19": "Martin Luther King Jr. Day", + "2032-02-16": "Washington's Birthday", + "2032-03-26": "Good Friday", + "2032-05-31": "Memorial Day", + "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-07-05": "Independence Day (Observed)", + "2032-09-06": "Labor Day", + "2032-11-25": "Thanksgiving Day", + "2032-12-24": "Christmas Day (Observed)", + "2032-12-31": "New Year's Day (Observed)", + "2033-01-17": "Martin Luther King Jr. Day", + "2033-02-21": "Washington's Birthday", + "2033-04-15": "Good Friday", + "2033-05-30": "Memorial Day", + "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-07-04": "Independence Day", + "2033-09-05": "Labor Day", + "2033-11-24": "Thanksgiving Day", + "2033-12-26": "Christmas Day (Observed)", + "2034-01-02": "New Year's Day (Observed)", + "2034-01-16": "Martin Luther King Jr. Day", + "2034-02-20": "Washington's Birthday", + "2034-04-07": "Good Friday", + "2034-05-29": "Memorial Day", + "2034-06-19": "Juneteenth National Independence Day", + "2034-07-04": "Independence Day", + "2034-09-04": "Labor Day", + "2034-11-23": "Thanksgiving Day", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-01-15": "Martin Luther King Jr. Day", + "2035-02-19": "Washington's Birthday", + "2035-03-23": "Good Friday", + "2035-05-28": "Memorial Day", + "2035-06-19": "Juneteenth National Independence Day", + "2035-07-04": "Independence Day", + "2035-09-03": "Labor Day", + "2035-11-22": "Thanksgiving Day", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-01-21": "Martin Luther King Jr. Day", + "2036-02-18": "Washington's Birthday", + "2036-04-11": "Good Friday", + "2036-05-26": "Memorial Day", + "2036-06-19": "Juneteenth National Independence Day", + "2036-07-04": "Independence Day", + "2036-09-01": "Labor Day", + "2036-11-27": "Thanksgiving Day", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-19": "Martin Luther King Jr. Day", + "2037-02-16": "Washington's Birthday", + "2037-04-03": "Good Friday", + "2037-05-25": "Memorial Day", + "2037-06-19": "Juneteenth National Independence Day", + "2037-07-03": "Independence Day (Observed)", + "2037-09-07": "Labor Day", + "2037-11-26": "Thanksgiving Day", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-01-18": "Martin Luther King Jr. Day", + "2038-02-15": "Washington's Birthday", + "2038-04-23": "Good Friday", + "2038-05-31": "Memorial Day", + "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-07-05": "Independence Day (Observed)", + "2038-09-06": "Labor Day", + "2038-11-25": "Thanksgiving Day", + "2038-12-24": "Christmas Day (Observed)", + "2038-12-31": "New Year's Day (Observed)", + "2039-01-17": "Martin Luther King Jr. Day", + "2039-02-21": "Washington's Birthday", + "2039-04-08": "Good Friday", + "2039-05-30": "Memorial Day", + "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-07-04": "Independence Day", + "2039-09-05": "Labor Day", + "2039-11-24": "Thanksgiving Day", + "2039-12-26": "Christmas Day (Observed)", + "2040-01-02": "New Year's Day (Observed)", + "2040-01-16": "Martin Luther King Jr. Day", + "2040-02-20": "Washington's Birthday", + "2040-03-30": "Good Friday", + "2040-05-28": "Memorial Day", + "2040-06-19": "Juneteenth National Independence Day", + "2040-07-04": "Independence Day", + "2040-09-03": "Labor Day", + "2040-11-22": "Thanksgiving Day", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-01-21": "Martin Luther King Jr. Day", + "2041-02-18": "Washington's Birthday", + "2041-04-19": "Good Friday", + "2041-05-27": "Memorial Day", + "2041-06-19": "Juneteenth National Independence Day", + "2041-07-04": "Independence Day", + "2041-09-02": "Labor Day", + "2041-11-28": "Thanksgiving Day", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-01-20": "Martin Luther King Jr. Day", + "2042-02-17": "Washington's Birthday", + "2042-04-04": "Good Friday", + "2042-05-26": "Memorial Day", + "2042-06-19": "Juneteenth National Independence Day", + "2042-07-04": "Independence Day", + "2042-09-01": "Labor Day", + "2042-11-27": "Thanksgiving Day", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-01-19": "Martin Luther King Jr. Day", + "2043-02-16": "Washington's Birthday", + "2043-03-27": "Good Friday", + "2043-05-25": "Memorial Day", + "2043-06-19": "Juneteenth National Independence Day", + "2043-07-03": "Independence Day (Observed)", + "2043-09-07": "Labor Day", + "2043-11-26": "Thanksgiving Day", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-01-18": "Martin Luther King Jr. Day", + "2044-02-15": "Washington's Birthday", + "2044-04-15": "Good Friday", + "2044-05-30": "Memorial Day", + "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-07-04": "Independence Day", + "2044-09-05": "Labor Day", + "2044-11-24": "Thanksgiving Day", + "2044-12-26": "Christmas Day (Observed)", + "2045-01-02": "New Year's Day (Observed)", + "2045-01-16": "Martin Luther King Jr. Day", + "2045-02-20": "Washington's Birthday", + "2045-04-07": "Good Friday", + "2045-05-29": "Memorial Day", + "2045-06-19": "Juneteenth National Independence Day", + "2045-07-04": "Independence Day", + "2045-09-04": "Labor Day", + "2045-11-23": "Thanksgiving Day", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-01-15": "Martin Luther King Jr. Day", + "2046-02-19": "Washington's Birthday", + "2046-03-23": "Good Friday", + "2046-05-28": "Memorial Day", + "2046-06-19": "Juneteenth National Independence Day", + "2046-07-04": "Independence Day", + "2046-09-03": "Labor Day", + "2046-11-22": "Thanksgiving Day", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-21": "Martin Luther King Jr. Day", + "2047-02-18": "Washington's Birthday", + "2047-04-12": "Good Friday", + "2047-05-27": "Memorial Day", + "2047-06-19": "Juneteenth National Independence Day", + "2047-07-04": "Independence Day", + "2047-09-02": "Labor Day", + "2047-11-28": "Thanksgiving Day", + "2047-12-25": "Christmas Day", + "2048-01-01": "New Year's Day", + "2048-01-20": "Martin Luther King Jr. Day", + "2048-02-17": "Washington's Birthday", + "2048-04-03": "Good Friday", + "2048-05-25": "Memorial Day", + "2048-06-19": "Juneteenth National Independence Day", + "2048-07-03": "Independence Day (Observed)", + "2048-09-07": "Labor Day", + "2048-11-26": "Thanksgiving Day", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-01-18": "Martin Luther King Jr. Day", + "2049-02-15": "Washington's Birthday", + "2049-04-16": "Good Friday", + "2049-05-31": "Memorial Day", + "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-07-05": "Independence Day (Observed)", + "2049-09-06": "Labor Day", + "2049-11-25": "Thanksgiving Day", + "2049-12-24": "Christmas Day (Observed)", + "2049-12-31": "New Year's Day (Observed)", + "2050-01-17": "Martin Luther King Jr. Day", + "2050-02-21": "Washington's Birthday", + "2050-04-08": "Good Friday", + "2050-05-30": "Memorial Day", + "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-07-04": "Independence Day", + "2050-09-05": "Labor Day", + "2050-11-24": "Thanksgiving Day", + "2050-12-26": "Christmas Day (Observed)" +} diff --git a/snapshots/financial/TAR.json b/snapshots/financial/TAR.json new file mode 100644 index 000000000..63186072e --- /dev/null +++ b/snapshots/financial/TAR.json @@ -0,0 +1,608 @@ +{ + "1950-01-01": "New Year's Day", + "1950-04-07": "Good Friday", + "1950-04-10": "Easter Monday", + "1950-05-01": "1 May (Labour Day)", + "1950-12-25": "Christmas Day", + "1950-12-26": "26 December", + "1951-01-01": "New Year's Day", + "1951-03-23": "Good Friday", + "1951-03-26": "Easter Monday", + "1951-05-01": "1 May (Labour Day)", + "1951-12-25": "Christmas Day", + "1951-12-26": "26 December", + "1952-01-01": "New Year's Day", + "1952-04-11": "Good Friday", + "1952-04-14": "Easter Monday", + "1952-05-01": "1 May (Labour Day)", + "1952-12-25": "Christmas Day", + "1952-12-26": "26 December", + "1953-01-01": "New Year's Day", + "1953-04-03": "Good Friday", + "1953-04-06": "Easter Monday", + "1953-05-01": "1 May (Labour Day)", + "1953-12-25": "Christmas Day", + "1953-12-26": "26 December", + "1954-01-01": "New Year's Day", + "1954-04-16": "Good Friday", + "1954-04-19": "Easter Monday", + "1954-05-01": "1 May (Labour Day)", + "1954-12-25": "Christmas Day", + "1954-12-26": "26 December", + "1955-01-01": "New Year's Day", + "1955-04-08": "Good Friday", + "1955-04-11": "Easter Monday", + "1955-05-01": "1 May (Labour Day)", + "1955-12-25": "Christmas Day", + "1955-12-26": "26 December", + "1956-01-01": "New Year's Day", + "1956-03-30": "Good Friday", + "1956-04-02": "Easter Monday", + "1956-05-01": "1 May (Labour Day)", + "1956-12-25": "Christmas Day", + "1956-12-26": "26 December", + "1957-01-01": "New Year's Day", + "1957-04-19": "Good Friday", + "1957-04-22": "Easter Monday", + "1957-05-01": "1 May (Labour Day)", + "1957-12-25": "Christmas Day", + "1957-12-26": "26 December", + "1958-01-01": "New Year's Day", + "1958-04-04": "Good Friday", + "1958-04-07": "Easter Monday", + "1958-05-01": "1 May (Labour Day)", + "1958-12-25": "Christmas Day", + "1958-12-26": "26 December", + "1959-01-01": "New Year's Day", + "1959-03-27": "Good Friday", + "1959-03-30": "Easter Monday", + "1959-05-01": "1 May (Labour Day)", + "1959-12-25": "Christmas Day", + "1959-12-26": "26 December", + "1960-01-01": "New Year's Day", + "1960-04-15": "Good Friday", + "1960-04-18": "Easter Monday", + "1960-05-01": "1 May (Labour Day)", + "1960-12-25": "Christmas Day", + "1960-12-26": "26 December", + "1961-01-01": "New Year's Day", + "1961-03-31": "Good Friday", + "1961-04-03": "Easter Monday", + "1961-05-01": "1 May (Labour Day)", + "1961-12-25": "Christmas Day", + "1961-12-26": "26 December", + "1962-01-01": "New Year's Day", + "1962-04-20": "Good Friday", + "1962-04-23": "Easter Monday", + "1962-05-01": "1 May (Labour Day)", + "1962-12-25": "Christmas Day", + "1962-12-26": "26 December", + "1963-01-01": "New Year's Day", + "1963-04-12": "Good Friday", + "1963-04-15": "Easter Monday", + "1963-05-01": "1 May (Labour Day)", + "1963-12-25": "Christmas Day", + "1963-12-26": "26 December", + "1964-01-01": "New Year's Day", + "1964-03-27": "Good Friday", + "1964-03-30": "Easter Monday", + "1964-05-01": "1 May (Labour Day)", + "1964-12-25": "Christmas Day", + "1964-12-26": "26 December", + "1965-01-01": "New Year's Day", + "1965-04-16": "Good Friday", + "1965-04-19": "Easter Monday", + "1965-05-01": "1 May (Labour Day)", + "1965-12-25": "Christmas Day", + "1965-12-26": "26 December", + "1966-01-01": "New Year's Day", + "1966-04-08": "Good Friday", + "1966-04-11": "Easter Monday", + "1966-05-01": "1 May (Labour Day)", + "1966-12-25": "Christmas Day", + "1966-12-26": "26 December", + "1967-01-01": "New Year's Day", + "1967-03-24": "Good Friday", + "1967-03-27": "Easter Monday", + "1967-05-01": "1 May (Labour Day)", + "1967-12-25": "Christmas Day", + "1967-12-26": "26 December", + "1968-01-01": "New Year's Day", + "1968-04-12": "Good Friday", + "1968-04-15": "Easter Monday", + "1968-05-01": "1 May (Labour Day)", + "1968-12-25": "Christmas Day", + "1968-12-26": "26 December", + "1969-01-01": "New Year's Day", + "1969-04-04": "Good Friday", + "1969-04-07": "Easter Monday", + "1969-05-01": "1 May (Labour Day)", + "1969-12-25": "Christmas Day", + "1969-12-26": "26 December", + "1970-01-01": "New Year's Day", + "1970-03-27": "Good Friday", + "1970-03-30": "Easter Monday", + "1970-05-01": "1 May (Labour Day)", + "1970-12-25": "Christmas Day", + "1970-12-26": "26 December", + "1971-01-01": "New Year's Day", + "1971-04-09": "Good Friday", + "1971-04-12": "Easter Monday", + "1971-05-01": "1 May (Labour Day)", + "1971-12-25": "Christmas Day", + "1971-12-26": "26 December", + "1972-01-01": "New Year's Day", + "1972-03-31": "Good Friday", + "1972-04-03": "Easter Monday", + "1972-05-01": "1 May (Labour Day)", + "1972-12-25": "Christmas Day", + "1972-12-26": "26 December", + "1973-01-01": "New Year's Day", + "1973-04-20": "Good Friday", + "1973-04-23": "Easter Monday", + "1973-05-01": "1 May (Labour Day)", + "1973-12-25": "Christmas Day", + "1973-12-26": "26 December", + "1974-01-01": "New Year's Day", + "1974-04-12": "Good Friday", + "1974-04-15": "Easter Monday", + "1974-05-01": "1 May (Labour Day)", + "1974-12-25": "Christmas Day", + "1974-12-26": "26 December", + "1975-01-01": "New Year's Day", + "1975-03-28": "Good Friday", + "1975-03-31": "Easter Monday", + "1975-05-01": "1 May (Labour Day)", + "1975-12-25": "Christmas Day", + "1975-12-26": "26 December", + "1976-01-01": "New Year's Day", + "1976-04-16": "Good Friday", + "1976-04-19": "Easter Monday", + "1976-05-01": "1 May (Labour Day)", + "1976-12-25": "Christmas Day", + "1976-12-26": "26 December", + "1977-01-01": "New Year's Day", + "1977-04-08": "Good Friday", + "1977-04-11": "Easter Monday", + "1977-05-01": "1 May (Labour Day)", + "1977-12-25": "Christmas Day", + "1977-12-26": "26 December", + "1978-01-01": "New Year's Day", + "1978-03-24": "Good Friday", + "1978-03-27": "Easter Monday", + "1978-05-01": "1 May (Labour Day)", + "1978-12-25": "Christmas Day", + "1978-12-26": "26 December", + "1979-01-01": "New Year's Day", + "1979-04-13": "Good Friday", + "1979-04-16": "Easter Monday", + "1979-05-01": "1 May (Labour Day)", + "1979-12-25": "Christmas Day", + "1979-12-26": "26 December", + "1980-01-01": "New Year's Day", + "1980-04-04": "Good Friday", + "1980-04-07": "Easter Monday", + "1980-05-01": "1 May (Labour Day)", + "1980-12-25": "Christmas Day", + "1980-12-26": "26 December", + "1981-01-01": "New Year's Day", + "1981-04-17": "Good Friday", + "1981-04-20": "Easter Monday", + "1981-05-01": "1 May (Labour Day)", + "1981-12-25": "Christmas Day", + "1981-12-26": "26 December", + "1982-01-01": "New Year's Day", + "1982-04-09": "Good Friday", + "1982-04-12": "Easter Monday", + "1982-05-01": "1 May (Labour Day)", + "1982-12-25": "Christmas Day", + "1982-12-26": "26 December", + "1983-01-01": "New Year's Day", + "1983-04-01": "Good Friday", + "1983-04-04": "Easter Monday", + "1983-05-01": "1 May (Labour Day)", + "1983-12-25": "Christmas Day", + "1983-12-26": "26 December", + "1984-01-01": "New Year's Day", + "1984-04-20": "Good Friday", + "1984-04-23": "Easter Monday", + "1984-05-01": "1 May (Labour Day)", + "1984-12-25": "Christmas Day", + "1984-12-26": "26 December", + "1985-01-01": "New Year's Day", + "1985-04-05": "Good Friday", + "1985-04-08": "Easter Monday", + "1985-05-01": "1 May (Labour Day)", + "1985-12-25": "Christmas Day", + "1985-12-26": "26 December", + "1986-01-01": "New Year's Day", + "1986-03-28": "Good Friday", + "1986-03-31": "Easter Monday", + "1986-05-01": "1 May (Labour Day)", + "1986-12-25": "Christmas Day", + "1986-12-26": "26 December", + "1987-01-01": "New Year's Day", + "1987-04-17": "Good Friday", + "1987-04-20": "Easter Monday", + "1987-05-01": "1 May (Labour Day)", + "1987-12-25": "Christmas Day", + "1987-12-26": "26 December", + "1988-01-01": "New Year's Day", + "1988-04-01": "Good Friday", + "1988-04-04": "Easter Monday", + "1988-05-01": "1 May (Labour Day)", + "1988-12-25": "Christmas Day", + "1988-12-26": "26 December", + "1989-01-01": "New Year's Day", + "1989-03-24": "Good Friday", + "1989-03-27": "Easter Monday", + "1989-05-01": "1 May (Labour Day)", + "1989-12-25": "Christmas Day", + "1989-12-26": "26 December", + "1990-01-01": "New Year's Day", + "1990-04-13": "Good Friday", + "1990-04-16": "Easter Monday", + "1990-05-01": "1 May (Labour Day)", + "1990-12-25": "Christmas Day", + "1990-12-26": "26 December", + "1991-01-01": "New Year's Day", + "1991-03-29": "Good Friday", + "1991-04-01": "Easter Monday", + "1991-05-01": "1 May (Labour Day)", + "1991-12-25": "Christmas Day", + "1991-12-26": "26 December", + "1992-01-01": "New Year's Day", + "1992-04-17": "Good Friday", + "1992-04-20": "Easter Monday", + "1992-05-01": "1 May (Labour Day)", + "1992-12-25": "Christmas Day", + "1992-12-26": "26 December", + "1993-01-01": "New Year's Day", + "1993-04-09": "Good Friday", + "1993-04-12": "Easter Monday", + "1993-05-01": "1 May (Labour Day)", + "1993-12-25": "Christmas Day", + "1993-12-26": "26 December", + "1994-01-01": "New Year's Day", + "1994-04-01": "Good Friday", + "1994-04-04": "Easter Monday", + "1994-05-01": "1 May (Labour Day)", + "1994-12-25": "Christmas Day", + "1994-12-26": "26 December", + "1995-01-01": "New Year's Day", + "1995-04-14": "Good Friday", + "1995-04-17": "Easter Monday", + "1995-05-01": "1 May (Labour Day)", + "1995-12-25": "Christmas Day", + "1995-12-26": "26 December", + "1996-01-01": "New Year's Day", + "1996-04-05": "Good Friday", + "1996-04-08": "Easter Monday", + "1996-05-01": "1 May (Labour Day)", + "1996-12-25": "Christmas Day", + "1996-12-26": "26 December", + "1997-01-01": "New Year's Day", + "1997-03-28": "Good Friday", + "1997-03-31": "Easter Monday", + "1997-05-01": "1 May (Labour Day)", + "1997-12-25": "Christmas Day", + "1997-12-26": "26 December", + "1998-01-01": "New Year's Day", + "1998-04-10": "Good Friday", + "1998-04-13": "Easter Monday", + "1998-05-01": "1 May (Labour Day)", + "1998-12-25": "Christmas Day", + "1998-12-26": "26 December", + "1999-01-01": "New Year's Day", + "1999-04-02": "Good Friday", + "1999-04-05": "Easter Monday", + "1999-05-01": "1 May (Labour Day)", + "1999-12-25": "Christmas Day", + "1999-12-26": "26 December", + "2000-01-01": "New Year's Day", + "2000-04-21": "Good Friday", + "2000-04-24": "Easter Monday", + "2000-05-01": "1 May (Labour Day)", + "2000-12-25": "Christmas Day", + "2000-12-26": "26 December", + "2001-01-01": "New Year's Day", + "2001-04-13": "Good Friday", + "2001-04-16": "Easter Monday", + "2001-05-01": "1 May (Labour Day)", + "2001-12-25": "Christmas Day", + "2001-12-26": "26 December", + "2002-01-01": "New Year's Day", + "2002-03-29": "Good Friday", + "2002-04-01": "Easter Monday", + "2002-05-01": "1 May (Labour Day)", + "2002-12-25": "Christmas Day", + "2002-12-26": "26 December", + "2003-01-01": "New Year's Day", + "2003-04-18": "Good Friday", + "2003-04-21": "Easter Monday", + "2003-05-01": "1 May (Labour Day)", + "2003-12-25": "Christmas Day", + "2003-12-26": "26 December", + "2004-01-01": "New Year's Day", + "2004-04-09": "Good Friday", + "2004-04-12": "Easter Monday", + "2004-05-01": "1 May (Labour Day)", + "2004-12-25": "Christmas Day", + "2004-12-26": "26 December", + "2005-01-01": "New Year's Day", + "2005-03-25": "Good Friday", + "2005-03-28": "Easter Monday", + "2005-05-01": "1 May (Labour Day)", + "2005-12-25": "Christmas Day", + "2005-12-26": "26 December", + "2006-01-01": "New Year's Day", + "2006-04-14": "Good Friday", + "2006-04-17": "Easter Monday", + "2006-05-01": "1 May (Labour Day)", + "2006-12-25": "Christmas Day", + "2006-12-26": "26 December", + "2007-01-01": "New Year's Day", + "2007-04-06": "Good Friday", + "2007-04-09": "Easter Monday", + "2007-05-01": "1 May (Labour Day)", + "2007-12-25": "Christmas Day", + "2007-12-26": "26 December", + "2008-01-01": "New Year's Day", + "2008-03-21": "Good Friday", + "2008-03-24": "Easter Monday", + "2008-05-01": "1 May (Labour Day)", + "2008-12-25": "Christmas Day", + "2008-12-26": "26 December", + "2009-01-01": "New Year's Day", + "2009-04-10": "Good Friday", + "2009-04-13": "Easter Monday", + "2009-05-01": "1 May (Labour Day)", + "2009-12-25": "Christmas Day", + "2009-12-26": "26 December", + "2010-01-01": "New Year's Day", + "2010-04-02": "Good Friday", + "2010-04-05": "Easter Monday", + "2010-05-01": "1 May (Labour Day)", + "2010-12-25": "Christmas Day", + "2010-12-26": "26 December", + "2011-01-01": "New Year's Day", + "2011-04-22": "Good Friday", + "2011-04-25": "Easter Monday", + "2011-05-01": "1 May (Labour Day)", + "2011-12-25": "Christmas Day", + "2011-12-26": "26 December", + "2012-01-01": "New Year's Day", + "2012-04-06": "Good Friday", + "2012-04-09": "Easter Monday", + "2012-05-01": "1 May (Labour Day)", + "2012-12-25": "Christmas Day", + "2012-12-26": "26 December", + "2013-01-01": "New Year's Day", + "2013-03-29": "Good Friday", + "2013-04-01": "Easter Monday", + "2013-05-01": "1 May (Labour Day)", + "2013-12-25": "Christmas Day", + "2013-12-26": "26 December", + "2014-01-01": "New Year's Day", + "2014-04-18": "Good Friday", + "2014-04-21": "Easter Monday", + "2014-05-01": "1 May (Labour Day)", + "2014-12-25": "Christmas Day", + "2014-12-26": "26 December", + "2015-01-01": "New Year's Day", + "2015-04-03": "Good Friday", + "2015-04-06": "Easter Monday", + "2015-05-01": "1 May (Labour Day)", + "2015-12-25": "Christmas Day", + "2015-12-26": "26 December", + "2016-01-01": "New Year's Day", + "2016-03-25": "Good Friday", + "2016-03-28": "Easter Monday", + "2016-05-01": "1 May (Labour Day)", + "2016-12-25": "Christmas Day", + "2016-12-26": "26 December", + "2017-01-01": "New Year's Day", + "2017-04-14": "Good Friday", + "2017-04-17": "Easter Monday", + "2017-05-01": "1 May (Labour Day)", + "2017-12-25": "Christmas Day", + "2017-12-26": "26 December", + "2018-01-01": "New Year's Day", + "2018-03-30": "Good Friday", + "2018-04-02": "Easter Monday", + "2018-05-01": "1 May (Labour Day)", + "2018-12-25": "Christmas Day", + "2018-12-26": "26 December", + "2019-01-01": "New Year's Day", + "2019-04-19": "Good Friday", + "2019-04-22": "Easter Monday", + "2019-05-01": "1 May (Labour Day)", + "2019-12-25": "Christmas Day", + "2019-12-26": "26 December", + "2020-01-01": "New Year's Day", + "2020-04-10": "Good Friday", + "2020-04-13": "Easter Monday", + "2020-05-01": "1 May (Labour Day)", + "2020-12-25": "Christmas Day", + "2020-12-26": "26 December", + "2021-01-01": "New Year's Day", + "2021-04-02": "Good Friday", + "2021-04-05": "Easter Monday", + "2021-05-01": "1 May (Labour Day)", + "2021-12-25": "Christmas Day", + "2021-12-26": "26 December", + "2022-01-01": "New Year's Day", + "2022-04-15": "Good Friday", + "2022-04-18": "Easter Monday", + "2022-05-01": "1 May (Labour Day)", + "2022-12-25": "Christmas Day", + "2022-12-26": "26 December", + "2023-01-01": "New Year's Day", + "2023-04-07": "Good Friday", + "2023-04-10": "Easter Monday", + "2023-05-01": "1 May (Labour Day)", + "2023-12-25": "Christmas Day", + "2023-12-26": "26 December", + "2024-01-01": "New Year's Day", + "2024-03-29": "Good Friday", + "2024-04-01": "Easter Monday", + "2024-05-01": "1 May (Labour Day)", + "2024-12-25": "Christmas Day", + "2024-12-26": "26 December", + "2025-01-01": "New Year's Day", + "2025-04-18": "Good Friday", + "2025-04-21": "Easter Monday", + "2025-05-01": "1 May (Labour Day)", + "2025-12-25": "Christmas Day", + "2025-12-26": "26 December", + "2026-01-01": "New Year's Day", + "2026-04-03": "Good Friday", + "2026-04-06": "Easter Monday", + "2026-05-01": "1 May (Labour Day)", + "2026-12-25": "Christmas Day", + "2026-12-26": "26 December", + "2027-01-01": "New Year's Day", + "2027-03-26": "Good Friday", + "2027-03-29": "Easter Monday", + "2027-05-01": "1 May (Labour Day)", + "2027-12-25": "Christmas Day", + "2027-12-26": "26 December", + "2028-01-01": "New Year's Day", + "2028-04-14": "Good Friday", + "2028-04-17": "Easter Monday", + "2028-05-01": "1 May (Labour Day)", + "2028-12-25": "Christmas Day", + "2028-12-26": "26 December", + "2029-01-01": "New Year's Day", + "2029-03-30": "Good Friday", + "2029-04-02": "Easter Monday", + "2029-05-01": "1 May (Labour Day)", + "2029-12-25": "Christmas Day", + "2029-12-26": "26 December", + "2030-01-01": "New Year's Day", + "2030-04-19": "Good Friday", + "2030-04-22": "Easter Monday", + "2030-05-01": "1 May (Labour Day)", + "2030-12-25": "Christmas Day", + "2030-12-26": "26 December", + "2031-01-01": "New Year's Day", + "2031-04-11": "Good Friday", + "2031-04-14": "Easter Monday", + "2031-05-01": "1 May (Labour Day)", + "2031-12-25": "Christmas Day", + "2031-12-26": "26 December", + "2032-01-01": "New Year's Day", + "2032-03-26": "Good Friday", + "2032-03-29": "Easter Monday", + "2032-05-01": "1 May (Labour Day)", + "2032-12-25": "Christmas Day", + "2032-12-26": "26 December", + "2033-01-01": "New Year's Day", + "2033-04-15": "Good Friday", + "2033-04-18": "Easter Monday", + "2033-05-01": "1 May (Labour Day)", + "2033-12-25": "Christmas Day", + "2033-12-26": "26 December", + "2034-01-01": "New Year's Day", + "2034-04-07": "Good Friday", + "2034-04-10": "Easter Monday", + "2034-05-01": "1 May (Labour Day)", + "2034-12-25": "Christmas Day", + "2034-12-26": "26 December", + "2035-01-01": "New Year's Day", + "2035-03-23": "Good Friday", + "2035-03-26": "Easter Monday", + "2035-05-01": "1 May (Labour Day)", + "2035-12-25": "Christmas Day", + "2035-12-26": "26 December", + "2036-01-01": "New Year's Day", + "2036-04-11": "Good Friday", + "2036-04-14": "Easter Monday", + "2036-05-01": "1 May (Labour Day)", + "2036-12-25": "Christmas Day", + "2036-12-26": "26 December", + "2037-01-01": "New Year's Day", + "2037-04-03": "Good Friday", + "2037-04-06": "Easter Monday", + "2037-05-01": "1 May (Labour Day)", + "2037-12-25": "Christmas Day", + "2037-12-26": "26 December", + "2038-01-01": "New Year's Day", + "2038-04-23": "Good Friday", + "2038-04-26": "Easter Monday", + "2038-05-01": "1 May (Labour Day)", + "2038-12-25": "Christmas Day", + "2038-12-26": "26 December", + "2039-01-01": "New Year's Day", + "2039-04-08": "Good Friday", + "2039-04-11": "Easter Monday", + "2039-05-01": "1 May (Labour Day)", + "2039-12-25": "Christmas Day", + "2039-12-26": "26 December", + "2040-01-01": "New Year's Day", + "2040-03-30": "Good Friday", + "2040-04-02": "Easter Monday", + "2040-05-01": "1 May (Labour Day)", + "2040-12-25": "Christmas Day", + "2040-12-26": "26 December", + "2041-01-01": "New Year's Day", + "2041-04-19": "Good Friday", + "2041-04-22": "Easter Monday", + "2041-05-01": "1 May (Labour Day)", + "2041-12-25": "Christmas Day", + "2041-12-26": "26 December", + "2042-01-01": "New Year's Day", + "2042-04-04": "Good Friday", + "2042-04-07": "Easter Monday", + "2042-05-01": "1 May (Labour Day)", + "2042-12-25": "Christmas Day", + "2042-12-26": "26 December", + "2043-01-01": "New Year's Day", + "2043-03-27": "Good Friday", + "2043-03-30": "Easter Monday", + "2043-05-01": "1 May (Labour Day)", + "2043-12-25": "Christmas Day", + "2043-12-26": "26 December", + "2044-01-01": "New Year's Day", + "2044-04-15": "Good Friday", + "2044-04-18": "Easter Monday", + "2044-05-01": "1 May (Labour Day)", + "2044-12-25": "Christmas Day", + "2044-12-26": "26 December", + "2045-01-01": "New Year's Day", + "2045-04-07": "Good Friday", + "2045-04-10": "Easter Monday", + "2045-05-01": "1 May (Labour Day)", + "2045-12-25": "Christmas Day", + "2045-12-26": "26 December", + "2046-01-01": "New Year's Day", + "2046-03-23": "Good Friday", + "2046-03-26": "Easter Monday", + "2046-05-01": "1 May (Labour Day)", + "2046-12-25": "Christmas Day", + "2046-12-26": "26 December", + "2047-01-01": "New Year's Day", + "2047-04-12": "Good Friday", + "2047-04-15": "Easter Monday", + "2047-05-01": "1 May (Labour Day)", + "2047-12-25": "Christmas Day", + "2047-12-26": "26 December", + "2048-01-01": "New Year's Day", + "2048-04-03": "Good Friday", + "2048-04-06": "Easter Monday", + "2048-05-01": "1 May (Labour Day)", + "2048-12-25": "Christmas Day", + "2048-12-26": "26 December", + "2049-01-01": "New Year's Day", + "2049-04-16": "Good Friday", + "2049-04-19": "Easter Monday", + "2049-05-01": "1 May (Labour Day)", + "2049-12-25": "Christmas Day", + "2049-12-26": "26 December", + "2050-01-01": "New Year's Day", + "2050-04-08": "Good Friday", + "2050-04-11": "Easter Monday", + "2050-05-01": "1 May (Labour Day)", + "2050-12-25": "Christmas Day", + "2050-12-26": "26 December" +} diff --git a/snapshots/financial/XNYS.json b/snapshots/financial/XNYS.json new file mode 100644 index 000000000..670904e38 --- /dev/null +++ b/snapshots/financial/XNYS.json @@ -0,0 +1,983 @@ +{ + "1950-01-02": "New Year's Day (Observed)", + "1950-02-13": "Lincoln's Birthday (Observed)", + "1950-02-22": "Washington's Birthday", + "1950-04-07": "Good Friday", + "1950-05-30": "Memorial Day", + "1950-06-14": "Flag Day", + "1950-07-04": "Independence Day", + "1950-09-04": "Labor Day", + "1950-10-12": "Columbus Day", + "1950-11-07": "Election Day", + "1950-11-10": "Veteran's Day (Observed)", + "1950-11-23": "Thanksgiving Day", + "1950-12-25": "Christmas Day", + "1951-01-01": "New Year's Day", + "1951-02-12": "Lincoln's Birthday", + "1951-02-22": "Washington's Birthday", + "1951-03-23": "Good Friday", + "1951-05-30": "Memorial Day", + "1951-06-14": "Flag Day", + "1951-07-04": "Independence Day", + "1951-09-03": "Labor Day", + "1951-10-12": "Columbus Day", + "1951-11-06": "Election Day", + "1951-11-12": "Veteran's Day (Observed)", + "1951-11-22": "Thanksgiving Day", + "1951-12-25": "Christmas Day", + "1952-01-01": "New Year's Day", + "1952-02-12": "Lincoln's Birthday", + "1952-02-22": "Washington's Birthday", + "1952-04-11": "Good Friday", + "1952-05-30": "Memorial Day", + "1952-06-13": "Flag Day (Observed)", + "1952-07-04": "Independence Day", + "1952-09-01": "Labor Day", + "1952-10-13": "Columbus Day (Observed)", + "1952-11-04": "Election Day", + "1952-11-11": "Veteran's Day", + "1952-11-27": "Thanksgiving Day", + "1952-12-25": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-02-12": "Lincoln's Birthday", + "1953-02-23": "Washington's Birthday (Observed)", + "1953-04-03": "Good Friday", + "1953-05-29": "Memorial Day (Observed)", + "1953-06-15": "Flag Day (Observed)", + "1953-07-03": "Independence Day (Observed)", + "1953-09-07": "Labor Day", + "1953-10-12": "Columbus Day", + "1953-11-03": "Election Day", + "1953-11-11": "Veteran's Day", + "1953-11-26": "Thanksgiving Day", + "1953-12-25": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-02-22": "Washington's Birthday", + "1954-04-16": "Good Friday", + "1954-05-31": "Memorial Day (Observed)", + "1954-07-05": "Independence Day (Observed)", + "1954-09-06": "Labor Day", + "1954-11-02": "Election Day", + "1954-11-25": "Thanksgiving Day", + "1954-12-24": "Christmas Day (Observed); Christmas Eve", + "1954-12-31": "New Year's Day (Observed)", + "1955-02-22": "Washington's Birthday", + "1955-04-08": "Good Friday", + "1955-05-30": "Memorial Day", + "1955-07-04": "Independence Day", + "1955-09-05": "Labor Day", + "1955-11-08": "Election Day", + "1955-11-24": "Thanksgiving Day", + "1955-12-26": "Christmas Day (Observed)", + "1956-01-02": "New Year's Day (Observed)", + "1956-02-22": "Washington's Birthday", + "1956-03-30": "Good Friday", + "1956-05-30": "Memorial Day", + "1956-07-04": "Independence Day", + "1956-09-03": "Labor Day", + "1956-11-06": "Election Day", + "1956-11-22": "Thanksgiving Day", + "1956-12-24": "Christmas Eve", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-02-22": "Washington's Birthday", + "1957-04-19": "Good Friday", + "1957-05-30": "Memorial Day", + "1957-07-04": "Independence Day", + "1957-09-02": "Labor Day", + "1957-11-05": "Election Day", + "1957-11-28": "Thanksgiving Day", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-02-21": "Washington's Birthday (Observed)", + "1958-04-04": "Good Friday", + "1958-05-30": "Memorial Day", + "1958-07-04": "Independence Day", + "1958-09-01": "Labor Day", + "1958-11-04": "Election Day", + "1958-11-27": "Thanksgiving Day", + "1958-12-25": "Christmas Day", + "1958-12-26": "Day after Christmas", + "1959-01-01": "New Year's Day", + "1959-02-23": "Washington's Birthday (Observed)", + "1959-03-27": "Good Friday", + "1959-05-29": "Memorial Day (Observed)", + "1959-07-03": "Independence Day (Observed)", + "1959-09-07": "Labor Day", + "1959-11-03": "Election Day", + "1959-11-26": "Thanksgiving Day", + "1959-12-25": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-02-22": "Washington's Birthday", + "1960-04-15": "Good Friday", + "1960-05-30": "Memorial Day", + "1960-07-04": "Independence Day", + "1960-09-05": "Labor Day", + "1960-11-08": "Election Day", + "1960-11-24": "Thanksgiving Day", + "1960-12-26": "Christmas Day (Observed)", + "1961-01-02": "New Year's Day (Observed)", + "1961-02-22": "Washington's Birthday", + "1961-03-31": "Good Friday", + "1961-05-29": "Day before Decoration Day", + "1961-05-30": "Memorial Day", + "1961-07-04": "Independence Day", + "1961-09-04": "Labor Day", + "1961-11-07": "Election Day", + "1961-11-23": "Thanksgiving Day", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-02-22": "Washington's Birthday", + "1962-04-20": "Good Friday", + "1962-05-30": "Memorial Day", + "1962-07-04": "Independence Day", + "1962-09-03": "Labor Day", + "1962-11-06": "Election Day", + "1962-11-22": "Thanksgiving Day", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-02-22": "Washington's Birthday", + "1963-04-12": "Good Friday", + "1963-05-30": "Memorial Day", + "1963-07-04": "Independence Day", + "1963-09-02": "Labor Day", + "1963-11-05": "Election Day", + "1963-11-25": "Funeral of President John F. Kennedy", + "1963-11-28": "Thanksgiving Day", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-02-21": "Washington's Birthday (Observed)", + "1964-03-27": "Good Friday", + "1964-05-29": "Memorial Day (Observed)", + "1964-07-03": "Independence Day (Observed)", + "1964-09-07": "Labor Day", + "1964-11-03": "Election Day", + "1964-11-26": "Thanksgiving Day", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-02-22": "Washington's Birthday", + "1965-04-16": "Good Friday", + "1965-05-31": "Memorial Day (Observed)", + "1965-07-05": "Independence Day (Observed)", + "1965-09-06": "Labor Day", + "1965-11-02": "Election Day", + "1965-11-25": "Thanksgiving Day", + "1965-12-24": "Christmas Day (Observed); Christmas Eve", + "1965-12-31": "New Year's Day (Observed)", + "1966-02-22": "Washington's Birthday", + "1966-04-08": "Good Friday", + "1966-05-30": "Memorial Day", + "1966-07-04": "Independence Day", + "1966-09-05": "Labor Day", + "1966-11-08": "Election Day", + "1966-11-24": "Thanksgiving Day", + "1966-12-26": "Christmas Day (Observed)", + "1967-01-02": "New Year's Day (Observed)", + "1967-02-22": "Washington's Birthday", + "1967-03-24": "Good Friday", + "1967-05-30": "Memorial Day", + "1967-07-04": "Independence Day", + "1967-09-04": "Labor Day", + "1967-11-07": "Election Day", + "1967-11-23": "Thanksgiving Day", + "1967-12-25": "Christmas Day", + "1968-01-01": "New Year's Day", + "1968-02-12": "Lincoln's Birthday", + "1968-02-22": "Washington's Birthday", + "1968-04-09": "Day of Mourning for Martin Luther King Jr.", + "1968-04-12": "Good Friday", + "1968-05-30": "Memorial Day", + "1968-06-12": "Paper Crisis", + "1968-06-19": "Paper Crisis", + "1968-06-26": "Paper Crisis", + "1968-07-03": "Paper Crisis", + "1968-07-04": "Independence Day", + "1968-07-05": "Day after Independence Day", + "1968-07-10": "Paper Crisis", + "1968-07-17": "Paper Crisis", + "1968-07-24": "Paper Crisis", + "1968-07-31": "Paper Crisis", + "1968-08-07": "Paper Crisis", + "1968-08-14": "Paper Crisis", + "1968-08-21": "Paper Crisis", + "1968-08-28": "Paper Crisis", + "1968-09-02": "Labor Day", + "1968-09-04": "Paper Crisis", + "1968-09-11": "Paper Crisis", + "1968-09-18": "Paper Crisis", + "1968-09-25": "Paper Crisis", + "1968-10-02": "Paper Crisis", + "1968-10-09": "Paper Crisis", + "1968-10-16": "Paper Crisis", + "1968-10-23": "Paper Crisis", + "1968-10-30": "Paper Crisis", + "1968-11-05": "Election Day", + "1968-11-06": "Paper Crisis", + "1968-11-13": "Paper Crisis", + "1968-11-20": "Paper Crisis", + "1968-11-27": "Paper Crisis", + "1968-11-28": "Thanksgiving Day", + "1968-12-04": "Paper Crisis", + "1968-12-11": "Paper Crisis", + "1968-12-18": "Paper Crisis", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-02-10": "Heavy Snow", + "1969-02-21": "Washington's Birthday (Observed)", + "1969-03-31": "Funeral of President Dwight D. Eisenhower", + "1969-04-04": "Good Friday", + "1969-05-30": "Memorial Day", + "1969-07-04": "Independence Day", + "1969-07-21": "National Participation in Lunar Exploration", + "1969-09-01": "Labor Day", + "1969-11-27": "Thanksgiving Day", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-02-23": "Washington's Birthday (Observed)", + "1970-03-27": "Good Friday", + "1970-05-29": "Memorial Day (Observed)", + "1970-07-03": "Independence Day (Observed)", + "1970-09-07": "Labor Day", + "1970-11-26": "Thanksgiving Day", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-02-15": "Washington's Birthday", + "1971-04-09": "Good Friday", + "1971-05-31": "Memorial Day", + "1971-07-05": "Independence Day (Observed)", + "1971-09-06": "Labor Day", + "1971-11-25": "Thanksgiving Day", + "1971-12-24": "Christmas Day (Observed)", + "1971-12-31": "New Year's Day (Observed)", + "1972-02-21": "Washington's Birthday", + "1972-03-31": "Good Friday", + "1972-05-29": "Memorial Day", + "1972-07-04": "Independence Day", + "1972-09-04": "Labor Day", + "1972-11-07": "Election Day", + "1972-11-23": "Thanksgiving Day", + "1972-12-25": "Christmas Day", + "1972-12-28": "Funeral for President Harry S. Truman", + "1973-01-01": "New Year's Day", + "1973-01-25": "Funeral for President Lyndon B. Johnson", + "1973-02-19": "Washington's Birthday", + "1973-04-20": "Good Friday", + "1973-05-28": "Memorial Day", + "1973-07-04": "Independence Day", + "1973-09-03": "Labor Day", + "1973-11-22": "Thanksgiving Day", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-02-18": "Washington's Birthday", + "1974-04-12": "Good Friday", + "1974-05-27": "Memorial Day", + "1974-07-04": "Independence Day", + "1974-09-02": "Labor Day", + "1974-11-28": "Thanksgiving Day", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-02-17": "Washington's Birthday", + "1975-03-28": "Good Friday", + "1975-05-26": "Memorial Day", + "1975-07-04": "Independence Day", + "1975-09-01": "Labor Day", + "1975-11-27": "Thanksgiving Day", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-02-16": "Washington's Birthday", + "1976-04-16": "Good Friday", + "1976-05-31": "Memorial Day", + "1976-07-05": "Independence Day (Observed)", + "1976-09-06": "Labor Day", + "1976-11-02": "Election Day", + "1976-11-25": "Thanksgiving Day", + "1976-12-24": "Christmas Day (Observed)", + "1976-12-31": "New Year's Day (Observed)", + "1977-02-21": "Washington's Birthday", + "1977-04-08": "Good Friday", + "1977-05-30": "Memorial Day", + "1977-07-04": "Independence Day", + "1977-07-14": "Blackout in New Yor City", + "1977-09-05": "Labor Day", + "1977-11-24": "Thanksgiving Day", + "1977-12-26": "Christmas Day (Observed)", + "1978-01-02": "New Year's Day (Observed)", + "1978-02-20": "Washington's Birthday", + "1978-03-24": "Good Friday", + "1978-05-29": "Memorial Day", + "1978-07-04": "Independence Day", + "1978-09-04": "Labor Day", + "1978-11-23": "Thanksgiving Day", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-02-19": "Washington's Birthday", + "1979-04-13": "Good Friday", + "1979-05-28": "Memorial Day", + "1979-07-04": "Independence Day", + "1979-09-03": "Labor Day", + "1979-11-22": "Thanksgiving Day", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-02-18": "Washington's Birthday", + "1980-04-04": "Good Friday", + "1980-05-26": "Memorial Day", + "1980-07-04": "Independence Day", + "1980-09-01": "Labor Day", + "1980-11-04": "Election Day", + "1980-11-27": "Thanksgiving Day", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-02-16": "Washington's Birthday", + "1981-04-17": "Good Friday", + "1981-05-25": "Memorial Day", + "1981-07-03": "Independence Day (Observed)", + "1981-09-07": "Labor Day", + "1981-11-26": "Thanksgiving Day", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-02-15": "Washington's Birthday", + "1982-04-09": "Good Friday", + "1982-05-31": "Memorial Day", + "1982-07-05": "Independence Day (Observed)", + "1982-09-06": "Labor Day", + "1982-11-25": "Thanksgiving Day", + "1982-12-24": "Christmas Day (Observed)", + "1982-12-31": "New Year's Day (Observed)", + "1983-02-21": "Washington's Birthday", + "1983-04-01": "Good Friday", + "1983-05-30": "Memorial Day", + "1983-07-04": "Independence Day", + "1983-09-05": "Labor Day", + "1983-11-24": "Thanksgiving Day", + "1983-12-26": "Christmas Day (Observed)", + "1984-01-02": "New Year's Day (Observed)", + "1984-02-20": "Washington's Birthday", + "1984-04-20": "Good Friday", + "1984-05-28": "Memorial Day", + "1984-07-04": "Independence Day", + "1984-09-03": "Labor Day", + "1984-11-22": "Thanksgiving Day", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-02-18": "Washington's Birthday", + "1985-04-05": "Good Friday", + "1985-05-27": "Memorial Day", + "1985-07-04": "Independence Day", + "1985-09-02": "Labor Day", + "1985-09-27": "Hurricane Gloria", + "1985-11-28": "Thanksgiving Day", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-02-17": "Washington's Birthday", + "1986-03-28": "Good Friday", + "1986-05-26": "Memorial Day", + "1986-07-04": "Independence Day", + "1986-09-01": "Labor Day", + "1986-11-27": "Thanksgiving Day", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-02-16": "Washington's Birthday", + "1987-04-17": "Good Friday", + "1987-05-25": "Memorial Day", + "1987-07-03": "Independence Day (Observed)", + "1987-09-07": "Labor Day", + "1987-11-26": "Thanksgiving Day", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-02-15": "Washington's Birthday", + "1988-04-01": "Good Friday", + "1988-05-30": "Memorial Day", + "1988-07-04": "Independence Day", + "1988-09-05": "Labor Day", + "1988-11-24": "Thanksgiving Day", + "1988-12-26": "Christmas Day (Observed)", + "1989-01-02": "New Year's Day (Observed)", + "1989-02-20": "Washington's Birthday", + "1989-03-24": "Good Friday", + "1989-05-29": "Memorial Day", + "1989-07-04": "Independence Day", + "1989-09-04": "Labor Day", + "1989-11-23": "Thanksgiving Day", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-02-19": "Washington's Birthday", + "1990-04-13": "Good Friday", + "1990-05-28": "Memorial Day", + "1990-07-04": "Independence Day", + "1990-09-03": "Labor Day", + "1990-11-22": "Thanksgiving Day", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-02-18": "Washington's Birthday", + "1991-03-29": "Good Friday", + "1991-05-27": "Memorial Day", + "1991-07-04": "Independence Day", + "1991-09-02": "Labor Day", + "1991-11-28": "Thanksgiving Day", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-02-17": "Washington's Birthday", + "1992-04-17": "Good Friday", + "1992-05-25": "Memorial Day", + "1992-07-03": "Independence Day (Observed)", + "1992-09-07": "Labor Day", + "1992-11-26": "Thanksgiving Day", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-02-15": "Washington's Birthday", + "1993-04-09": "Good Friday", + "1993-05-31": "Memorial Day", + "1993-07-05": "Independence Day (Observed)", + "1993-09-06": "Labor Day", + "1993-11-25": "Thanksgiving Day", + "1993-12-24": "Christmas Day (Observed)", + "1993-12-31": "New Year's Day (Observed)", + "1994-02-21": "Washington's Birthday", + "1994-04-01": "Good Friday", + "1994-04-27": "Funeral for President Richard M. Nixon", + "1994-05-30": "Memorial Day", + "1994-07-04": "Independence Day", + "1994-09-05": "Labor Day", + "1994-11-24": "Thanksgiving Day", + "1994-12-26": "Christmas Day (Observed)", + "1995-01-02": "New Year's Day (Observed)", + "1995-02-20": "Washington's Birthday", + "1995-04-14": "Good Friday", + "1995-05-29": "Memorial Day", + "1995-07-04": "Independence Day", + "1995-09-04": "Labor Day", + "1995-11-23": "Thanksgiving Day", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-02-19": "Washington's Birthday", + "1996-04-05": "Good Friday", + "1996-05-27": "Memorial Day", + "1996-07-04": "Independence Day", + "1996-09-02": "Labor Day", + "1996-11-28": "Thanksgiving Day", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-02-17": "Washington's Birthday", + "1997-03-28": "Good Friday", + "1997-05-26": "Memorial Day", + "1997-07-04": "Independence Day", + "1997-09-01": "Labor Day", + "1997-11-27": "Thanksgiving Day", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-01-19": "Martin Luther King Jr. Day", + "1998-02-16": "Washington's Birthday", + "1998-04-10": "Good Friday", + "1998-05-25": "Memorial Day", + "1998-07-03": "Independence Day (Observed)", + "1998-09-07": "Labor Day", + "1998-11-26": "Thanksgiving Day", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-01-18": "Martin Luther King Jr. Day", + "1999-02-15": "Washington's Birthday", + "1999-04-02": "Good Friday", + "1999-05-31": "Memorial Day", + "1999-07-05": "Independence Day (Observed)", + "1999-09-06": "Labor Day", + "1999-11-25": "Thanksgiving Day", + "1999-12-24": "Christmas Day (Observed)", + "1999-12-31": "New Year's Day (Observed)", + "2000-01-17": "Martin Luther King Jr. Day", + "2000-02-21": "Washington's Birthday", + "2000-04-21": "Good Friday", + "2000-05-29": "Memorial Day", + "2000-07-04": "Independence Day", + "2000-09-04": "Labor Day", + "2000-11-23": "Thanksgiving Day", + "2000-12-25": "Christmas Day", + "2001-01-01": "New Year's Day", + "2001-01-15": "Martin Luther King Jr. Day", + "2001-02-19": "Washington's Birthday", + "2001-04-13": "Good Friday", + "2001-05-28": "Memorial Day", + "2001-07-04": "Independence Day", + "2001-09-03": "Labor Day", + "2001-09-11": "Closed for Sept 11, 2001 Attacks", + "2001-09-12": "Closed for Sept 11, 2001 Attacks", + "2001-09-13": "Closed for Sept 11, 2001 Attacks", + "2001-09-14": "Closed for Sept 11, 2001 Attacks", + "2001-11-22": "Thanksgiving Day", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-01-21": "Martin Luther King Jr. Day", + "2002-02-18": "Washington's Birthday", + "2002-03-29": "Good Friday", + "2002-05-27": "Memorial Day", + "2002-07-04": "Independence Day", + "2002-09-02": "Labor Day", + "2002-11-28": "Thanksgiving Day", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-01-20": "Martin Luther King Jr. Day", + "2003-02-17": "Washington's Birthday", + "2003-04-18": "Good Friday", + "2003-05-26": "Memorial Day", + "2003-07-04": "Independence Day", + "2003-09-01": "Labor Day", + "2003-11-27": "Thanksgiving Day", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-01-19": "Martin Luther King Jr. Day", + "2004-02-16": "Washington's Birthday", + "2004-04-09": "Good Friday", + "2004-05-31": "Memorial Day", + "2004-06-11": "Day of Mourning for President Ronald W. Reagan", + "2004-07-05": "Independence Day (Observed)", + "2004-09-06": "Labor Day", + "2004-11-25": "Thanksgiving Day", + "2004-12-24": "Christmas Day (Observed)", + "2004-12-31": "New Year's Day (Observed)", + "2005-01-17": "Martin Luther King Jr. Day", + "2005-02-21": "Washington's Birthday", + "2005-03-25": "Good Friday", + "2005-05-30": "Memorial Day", + "2005-07-04": "Independence Day", + "2005-09-05": "Labor Day", + "2005-11-24": "Thanksgiving Day", + "2005-12-26": "Christmas Day (Observed)", + "2006-01-02": "New Year's Day (Observed)", + "2006-01-16": "Martin Luther King Jr. Day", + "2006-02-20": "Washington's Birthday", + "2006-04-14": "Good Friday", + "2006-05-29": "Memorial Day", + "2006-07-04": "Independence Day", + "2006-09-04": "Labor Day", + "2006-11-23": "Thanksgiving Day", + "2006-12-25": "Christmas Day", + "2007-01-01": "New Year's Day", + "2007-01-02": "Day of Mourning for President Gerald R. Ford", + "2007-01-15": "Martin Luther King Jr. Day", + "2007-02-19": "Washington's Birthday", + "2007-04-06": "Good Friday", + "2007-05-28": "Memorial Day", + "2007-07-04": "Independence Day", + "2007-09-03": "Labor Day", + "2007-11-22": "Thanksgiving Day", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-01-21": "Martin Luther King Jr. Day", + "2008-02-18": "Washington's Birthday", + "2008-03-21": "Good Friday", + "2008-05-26": "Memorial Day", + "2008-07-04": "Independence Day", + "2008-09-01": "Labor Day", + "2008-11-27": "Thanksgiving Day", + "2008-12-25": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-01-19": "Martin Luther King Jr. Day", + "2009-02-16": "Washington's Birthday", + "2009-04-10": "Good Friday", + "2009-05-25": "Memorial Day", + "2009-07-03": "Independence Day (Observed)", + "2009-09-07": "Labor Day", + "2009-11-26": "Thanksgiving Day", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-01-18": "Martin Luther King Jr. Day", + "2010-02-15": "Washington's Birthday", + "2010-04-02": "Good Friday", + "2010-05-31": "Memorial Day", + "2010-07-05": "Independence Day (Observed)", + "2010-09-06": "Labor Day", + "2010-11-25": "Thanksgiving Day", + "2010-12-24": "Christmas Day (Observed)", + "2010-12-31": "New Year's Day (Observed)", + "2011-01-17": "Martin Luther King Jr. Day", + "2011-02-21": "Washington's Birthday", + "2011-04-22": "Good Friday", + "2011-05-30": "Memorial Day", + "2011-07-04": "Independence Day", + "2011-09-05": "Labor Day", + "2011-11-24": "Thanksgiving Day", + "2011-12-26": "Christmas Day (Observed)", + "2012-01-02": "New Year's Day (Observed)", + "2012-01-16": "Martin Luther King Jr. Day", + "2012-02-20": "Washington's Birthday", + "2012-04-06": "Good Friday", + "2012-05-28": "Memorial Day", + "2012-07-04": "Independence Day", + "2012-09-03": "Labor Day", + "2012-10-29": "Hurricane Sandy", + "2012-10-30": "Hurricane Sandy", + "2012-11-22": "Thanksgiving Day", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-01-21": "Martin Luther King Jr. Day", + "2013-02-18": "Washington's Birthday", + "2013-03-29": "Good Friday", + "2013-05-27": "Memorial Day", + "2013-07-04": "Independence Day", + "2013-09-02": "Labor Day", + "2013-11-28": "Thanksgiving Day", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-20": "Martin Luther King Jr. Day", + "2014-02-17": "Washington's Birthday", + "2014-04-18": "Good Friday", + "2014-05-26": "Memorial Day", + "2014-07-04": "Independence Day", + "2014-09-01": "Labor Day", + "2014-11-27": "Thanksgiving Day", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-01-19": "Martin Luther King Jr. Day", + "2015-02-16": "Washington's Birthday", + "2015-04-03": "Good Friday", + "2015-05-25": "Memorial Day", + "2015-07-03": "Independence Day (Observed)", + "2015-09-07": "Labor Day", + "2015-11-26": "Thanksgiving Day", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-01-18": "Martin Luther King Jr. Day", + "2016-02-15": "Washington's Birthday", + "2016-03-25": "Good Friday", + "2016-05-30": "Memorial Day", + "2016-07-04": "Independence Day", + "2016-09-05": "Labor Day", + "2016-11-24": "Thanksgiving Day", + "2016-12-26": "Christmas Day (Observed)", + "2017-01-02": "New Year's Day (Observed)", + "2017-01-16": "Martin Luther King Jr. Day", + "2017-02-20": "Washington's Birthday", + "2017-04-14": "Good Friday", + "2017-05-29": "Memorial Day", + "2017-07-04": "Independence Day", + "2017-09-04": "Labor Day", + "2017-11-23": "Thanksgiving Day", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-01-15": "Martin Luther King Jr. Day", + "2018-02-19": "Washington's Birthday", + "2018-03-30": "Good Friday", + "2018-05-28": "Memorial Day", + "2018-07-04": "Independence Day", + "2018-09-03": "Labor Day", + "2018-11-22": "Thanksgiving Day", + "2018-12-05": "Day of Mourning for President George H.W. Bush", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-01-21": "Martin Luther King Jr. Day", + "2019-02-18": "Washington's Birthday", + "2019-04-19": "Good Friday", + "2019-05-27": "Memorial Day", + "2019-07-04": "Independence Day", + "2019-09-02": "Labor Day", + "2019-11-28": "Thanksgiving Day", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-01-20": "Martin Luther King Jr. Day", + "2020-02-17": "Washington's Birthday", + "2020-04-10": "Good Friday", + "2020-05-25": "Memorial Day", + "2020-07-03": "Independence Day (Observed)", + "2020-09-07": "Labor Day", + "2020-11-26": "Thanksgiving Day", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-01-18": "Martin Luther King Jr. Day", + "2021-02-15": "Washington's Birthday", + "2021-04-02": "Good Friday", + "2021-05-31": "Memorial Day", + "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-07-05": "Independence Day (Observed)", + "2021-09-06": "Labor Day", + "2021-11-25": "Thanksgiving Day", + "2021-12-24": "Christmas Day (Observed)", + "2021-12-31": "New Year's Day (Observed)", + "2022-01-17": "Martin Luther King Jr. Day", + "2022-02-21": "Washington's Birthday", + "2022-04-15": "Good Friday", + "2022-05-30": "Memorial Day", + "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-07-04": "Independence Day", + "2022-09-05": "Labor Day", + "2022-11-24": "Thanksgiving Day", + "2022-12-26": "Christmas Day (Observed)", + "2023-01-02": "New Year's Day (Observed)", + "2023-01-16": "Martin Luther King Jr. Day", + "2023-02-20": "Washington's Birthday", + "2023-04-07": "Good Friday", + "2023-05-29": "Memorial Day", + "2023-06-19": "Juneteenth National Independence Day", + "2023-07-04": "Independence Day", + "2023-09-04": "Labor Day", + "2023-11-23": "Thanksgiving Day", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-01-15": "Martin Luther King Jr. Day", + "2024-02-19": "Washington's Birthday", + "2024-03-29": "Good Friday", + "2024-05-27": "Memorial Day", + "2024-06-19": "Juneteenth National Independence Day", + "2024-07-04": "Independence Day", + "2024-09-02": "Labor Day", + "2024-11-28": "Thanksgiving Day", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-01-20": "Martin Luther King Jr. Day", + "2025-02-17": "Washington's Birthday", + "2025-04-18": "Good Friday", + "2025-05-26": "Memorial Day", + "2025-06-19": "Juneteenth National Independence Day", + "2025-07-04": "Independence Day", + "2025-09-01": "Labor Day", + "2025-11-27": "Thanksgiving Day", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-01-19": "Martin Luther King Jr. Day", + "2026-02-16": "Washington's Birthday", + "2026-04-03": "Good Friday", + "2026-05-25": "Memorial Day", + "2026-06-19": "Juneteenth National Independence Day", + "2026-07-03": "Independence Day (Observed)", + "2026-09-07": "Labor Day", + "2026-11-26": "Thanksgiving Day", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-01-18": "Martin Luther King Jr. Day", + "2027-02-15": "Washington's Birthday", + "2027-03-26": "Good Friday", + "2027-05-31": "Memorial Day", + "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-07-05": "Independence Day (Observed)", + "2027-09-06": "Labor Day", + "2027-11-25": "Thanksgiving Day", + "2027-12-24": "Christmas Day (Observed)", + "2027-12-31": "New Year's Day (Observed)", + "2028-01-17": "Martin Luther King Jr. Day", + "2028-02-21": "Washington's Birthday", + "2028-04-14": "Good Friday", + "2028-05-29": "Memorial Day", + "2028-06-19": "Juneteenth National Independence Day", + "2028-07-04": "Independence Day", + "2028-09-04": "Labor Day", + "2028-11-23": "Thanksgiving Day", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-01-15": "Martin Luther King Jr. Day", + "2029-02-19": "Washington's Birthday", + "2029-03-30": "Good Friday", + "2029-05-28": "Memorial Day", + "2029-06-19": "Juneteenth National Independence Day", + "2029-07-04": "Independence Day", + "2029-09-03": "Labor Day", + "2029-11-22": "Thanksgiving Day", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-01-21": "Martin Luther King Jr. Day", + "2030-02-18": "Washington's Birthday", + "2030-04-19": "Good Friday", + "2030-05-27": "Memorial Day", + "2030-06-19": "Juneteenth National Independence Day", + "2030-07-04": "Independence Day", + "2030-09-02": "Labor Day", + "2030-11-28": "Thanksgiving Day", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-01-20": "Martin Luther King Jr. Day", + "2031-02-17": "Washington's Birthday", + "2031-04-11": "Good Friday", + "2031-05-26": "Memorial Day", + "2031-06-19": "Juneteenth National Independence Day", + "2031-07-04": "Independence Day", + "2031-09-01": "Labor Day", + "2031-11-27": "Thanksgiving Day", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-01-19": "Martin Luther King Jr. Day", + "2032-02-16": "Washington's Birthday", + "2032-03-26": "Good Friday", + "2032-05-31": "Memorial Day", + "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-07-05": "Independence Day (Observed)", + "2032-09-06": "Labor Day", + "2032-11-25": "Thanksgiving Day", + "2032-12-24": "Christmas Day (Observed)", + "2032-12-31": "New Year's Day (Observed)", + "2033-01-17": "Martin Luther King Jr. Day", + "2033-02-21": "Washington's Birthday", + "2033-04-15": "Good Friday", + "2033-05-30": "Memorial Day", + "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-07-04": "Independence Day", + "2033-09-05": "Labor Day", + "2033-11-24": "Thanksgiving Day", + "2033-12-26": "Christmas Day (Observed)", + "2034-01-02": "New Year's Day (Observed)", + "2034-01-16": "Martin Luther King Jr. Day", + "2034-02-20": "Washington's Birthday", + "2034-04-07": "Good Friday", + "2034-05-29": "Memorial Day", + "2034-06-19": "Juneteenth National Independence Day", + "2034-07-04": "Independence Day", + "2034-09-04": "Labor Day", + "2034-11-23": "Thanksgiving Day", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-01-15": "Martin Luther King Jr. Day", + "2035-02-19": "Washington's Birthday", + "2035-03-23": "Good Friday", + "2035-05-28": "Memorial Day", + "2035-06-19": "Juneteenth National Independence Day", + "2035-07-04": "Independence Day", + "2035-09-03": "Labor Day", + "2035-11-22": "Thanksgiving Day", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-01-21": "Martin Luther King Jr. Day", + "2036-02-18": "Washington's Birthday", + "2036-04-11": "Good Friday", + "2036-05-26": "Memorial Day", + "2036-06-19": "Juneteenth National Independence Day", + "2036-07-04": "Independence Day", + "2036-09-01": "Labor Day", + "2036-11-27": "Thanksgiving Day", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-19": "Martin Luther King Jr. Day", + "2037-02-16": "Washington's Birthday", + "2037-04-03": "Good Friday", + "2037-05-25": "Memorial Day", + "2037-06-19": "Juneteenth National Independence Day", + "2037-07-03": "Independence Day (Observed)", + "2037-09-07": "Labor Day", + "2037-11-26": "Thanksgiving Day", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-01-18": "Martin Luther King Jr. Day", + "2038-02-15": "Washington's Birthday", + "2038-04-23": "Good Friday", + "2038-05-31": "Memorial Day", + "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-07-05": "Independence Day (Observed)", + "2038-09-06": "Labor Day", + "2038-11-25": "Thanksgiving Day", + "2038-12-24": "Christmas Day (Observed)", + "2038-12-31": "New Year's Day (Observed)", + "2039-01-17": "Martin Luther King Jr. Day", + "2039-02-21": "Washington's Birthday", + "2039-04-08": "Good Friday", + "2039-05-30": "Memorial Day", + "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-07-04": "Independence Day", + "2039-09-05": "Labor Day", + "2039-11-24": "Thanksgiving Day", + "2039-12-26": "Christmas Day (Observed)", + "2040-01-02": "New Year's Day (Observed)", + "2040-01-16": "Martin Luther King Jr. Day", + "2040-02-20": "Washington's Birthday", + "2040-03-30": "Good Friday", + "2040-05-28": "Memorial Day", + "2040-06-19": "Juneteenth National Independence Day", + "2040-07-04": "Independence Day", + "2040-09-03": "Labor Day", + "2040-11-22": "Thanksgiving Day", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-01-21": "Martin Luther King Jr. Day", + "2041-02-18": "Washington's Birthday", + "2041-04-19": "Good Friday", + "2041-05-27": "Memorial Day", + "2041-06-19": "Juneteenth National Independence Day", + "2041-07-04": "Independence Day", + "2041-09-02": "Labor Day", + "2041-11-28": "Thanksgiving Day", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-01-20": "Martin Luther King Jr. Day", + "2042-02-17": "Washington's Birthday", + "2042-04-04": "Good Friday", + "2042-05-26": "Memorial Day", + "2042-06-19": "Juneteenth National Independence Day", + "2042-07-04": "Independence Day", + "2042-09-01": "Labor Day", + "2042-11-27": "Thanksgiving Day", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-01-19": "Martin Luther King Jr. Day", + "2043-02-16": "Washington's Birthday", + "2043-03-27": "Good Friday", + "2043-05-25": "Memorial Day", + "2043-06-19": "Juneteenth National Independence Day", + "2043-07-03": "Independence Day (Observed)", + "2043-09-07": "Labor Day", + "2043-11-26": "Thanksgiving Day", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-01-18": "Martin Luther King Jr. Day", + "2044-02-15": "Washington's Birthday", + "2044-04-15": "Good Friday", + "2044-05-30": "Memorial Day", + "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-07-04": "Independence Day", + "2044-09-05": "Labor Day", + "2044-11-24": "Thanksgiving Day", + "2044-12-26": "Christmas Day (Observed)", + "2045-01-02": "New Year's Day (Observed)", + "2045-01-16": "Martin Luther King Jr. Day", + "2045-02-20": "Washington's Birthday", + "2045-04-07": "Good Friday", + "2045-05-29": "Memorial Day", + "2045-06-19": "Juneteenth National Independence Day", + "2045-07-04": "Independence Day", + "2045-09-04": "Labor Day", + "2045-11-23": "Thanksgiving Day", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-01-15": "Martin Luther King Jr. Day", + "2046-02-19": "Washington's Birthday", + "2046-03-23": "Good Friday", + "2046-05-28": "Memorial Day", + "2046-06-19": "Juneteenth National Independence Day", + "2046-07-04": "Independence Day", + "2046-09-03": "Labor Day", + "2046-11-22": "Thanksgiving Day", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-21": "Martin Luther King Jr. Day", + "2047-02-18": "Washington's Birthday", + "2047-04-12": "Good Friday", + "2047-05-27": "Memorial Day", + "2047-06-19": "Juneteenth National Independence Day", + "2047-07-04": "Independence Day", + "2047-09-02": "Labor Day", + "2047-11-28": "Thanksgiving Day", + "2047-12-25": "Christmas Day", + "2048-01-01": "New Year's Day", + "2048-01-20": "Martin Luther King Jr. Day", + "2048-02-17": "Washington's Birthday", + "2048-04-03": "Good Friday", + "2048-05-25": "Memorial Day", + "2048-06-19": "Juneteenth National Independence Day", + "2048-07-03": "Independence Day (Observed)", + "2048-09-07": "Labor Day", + "2048-11-26": "Thanksgiving Day", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-01-18": "Martin Luther King Jr. Day", + "2049-02-15": "Washington's Birthday", + "2049-04-16": "Good Friday", + "2049-05-31": "Memorial Day", + "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-07-05": "Independence Day (Observed)", + "2049-09-06": "Labor Day", + "2049-11-25": "Thanksgiving Day", + "2049-12-24": "Christmas Day (Observed)", + "2049-12-31": "New Year's Day (Observed)", + "2050-01-17": "Martin Luther King Jr. Day", + "2050-02-21": "Washington's Birthday", + "2050-04-08": "Good Friday", + "2050-05-30": "Memorial Day", + "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-07-04": "Independence Day", + "2050-09-05": "Labor Day", + "2050-11-24": "Thanksgiving Day", + "2050-12-26": "Christmas Day (Observed)" +} From ec725f69cf0a69b1a1dbb63ac62572bd409910f3 Mon Sep 17 00:00:00 2001 From: Arkadii Yakovets Date: Thu, 28 Sep 2023 02:58:50 -0700 Subject: [PATCH 05/10] Update ES snapshot (#1481) --- snapshots/countries/ES.json | 2949 +++++++++++++++++------------------ 1 file changed, 1442 insertions(+), 1507 deletions(-) diff --git a/snapshots/countries/ES.json b/snapshots/countries/ES.json index cb13671eb..377d3c05b 100644 --- a/snapshots/countries/ES.json +++ b/snapshots/countries/ES.json @@ -4,33 +4,32 @@ "1950-02-28": "D\u00eda de Andalucia", "1950-03-01": "D\u00eda de las Islas Baleares", "1950-03-19": "San Jos\u00e9", - "1950-03-20": "San Jos\u00e9 (Trasladado)", + "1950-03-20": "Lunes siguiente a San Jos\u00e9", "1950-04-06": "Jueves Santo", "1950-04-07": "Viernes Santo", "1950-04-10": "Lunes de Pascua", - "1950-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1950-05-01": "D\u00eda del Trabajador", - "1950-05-02": "D\u00eda de Comunidad de Madrid", + "1950-04-24": "Lunes siguiente a D\u00eda de San Jorge; Lunes siguiente a Fiesta de la Comunidad Aut\u00f3noma", + "1950-05-01": "Fiesta del Trabajo", + "1950-05-02": "Fiesta de la Comunidad de Madrid", + "1950-05-17": "D\u00eda de las Letras Gallegas", "1950-05-30": "D\u00eda de Canarias", "1950-05-31": "D\u00eda de Castilla La Mancha", + "1950-06-08": "Corpus Christi", "1950-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "1950-06-24": "San Juan", - "1950-07-25": "D\u00eda Nacional de Galicia", + "1950-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1950-07-28": "D\u00eda de las Instituciones de Cantabria", - "1950-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1950-08-15": "Asunci\u00f3n de la Virgen", - "1950-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1950-09-06": "D\u00eda de Elcano", - "1950-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1950-09-11": "D\u00eda Nacional de Catalunya", - "1950-09-15": "D\u00eda de la Bien Aparecida", - "1950-09-17": "D\u00eda de Melilla", + "1950-09-02": "D\u00eda de Ceuta", + "1950-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1950-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1950-09-15": "La Bien Aparecida", "1950-10-09": "D\u00eda de la Comunidad Valenciana", - "1950-10-12": "D\u00eda de la Hispanidad", + "1950-10-12": "Fiesta Nacional de Espa\u00f1a", "1950-11-01": "Todos los Santos", "1950-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1950-12-08": "La Inmaculada Concepci\u00f3n", - "1950-12-25": "Navidad", + "1950-12-08": "Inmaculada Concepci\u00f3n", + "1950-12-25": "Natividad del Se\u00f1or", "1950-12-26": "San Esteban", "1951-01-01": "A\u00f1o nuevo", "1951-01-06": "Epifan\u00eda del Se\u00f1or", @@ -40,29 +39,28 @@ "1951-03-22": "Jueves Santo", "1951-03-23": "Viernes Santo", "1951-03-26": "Lunes de Pascua", - "1951-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1951-05-01": "D\u00eda del Trabajador", - "1951-05-02": "D\u00eda de Comunidad de Madrid", + "1951-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1951-05-01": "Fiesta del Trabajo", + "1951-05-02": "Fiesta de la Comunidad de Madrid", + "1951-05-17": "D\u00eda de las Letras Gallegas", + "1951-05-24": "Corpus Christi", "1951-05-30": "D\u00eda de Canarias", "1951-05-31": "D\u00eda de Castilla La Mancha", "1951-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "1951-06-24": "San Juan", - "1951-07-25": "D\u00eda Nacional de Galicia", + "1951-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1951-07-28": "D\u00eda de las Instituciones de Cantabria", - "1951-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1951-08-15": "Asunci\u00f3n de la Virgen", - "1951-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1951-09-06": "D\u00eda de Elcano", - "1951-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1951-09-11": "D\u00eda Nacional de Catalunya", - "1951-09-15": "D\u00eda de la Bien Aparecida", - "1951-09-17": "D\u00eda de Melilla", + "1951-09-02": "D\u00eda de Ceuta", + "1951-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1951-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1951-09-15": "La Bien Aparecida", "1951-10-09": "D\u00eda de la Comunidad Valenciana", - "1951-10-12": "D\u00eda de la Hispanidad", + "1951-10-12": "Fiesta Nacional de Espa\u00f1a", "1951-11-01": "Todos los Santos", "1951-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1951-12-08": "La Inmaculada Concepci\u00f3n", - "1951-12-25": "Navidad", + "1951-12-08": "Inmaculada Concepci\u00f3n", + "1951-12-25": "Natividad del Se\u00f1or", "1951-12-26": "San Esteban", "1952-01-01": "A\u00f1o nuevo", "1952-01-06": "Epifan\u00eda del Se\u00f1or", @@ -72,29 +70,28 @@ "1952-04-10": "Jueves Santo", "1952-04-11": "Viernes Santo", "1952-04-14": "Lunes de Pascua", - "1952-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1952-05-01": "D\u00eda del Trabajador", - "1952-05-02": "D\u00eda de Comunidad de Madrid", + "1952-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1952-05-01": "Fiesta del Trabajo", + "1952-05-02": "Fiesta de la Comunidad de Madrid", + "1952-05-17": "D\u00eda de las Letras Gallegas", "1952-05-30": "D\u00eda de Canarias", "1952-05-31": "D\u00eda de Castilla La Mancha", "1952-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1952-06-12": "Corpus Christi", "1952-06-24": "San Juan", - "1952-07-25": "D\u00eda Nacional de Galicia", + "1952-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1952-07-28": "D\u00eda de las Instituciones de Cantabria", - "1952-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1952-08-15": "Asunci\u00f3n de la Virgen", - "1952-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1952-09-06": "D\u00eda de Elcano", - "1952-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1952-09-11": "D\u00eda Nacional de Catalunya", - "1952-09-15": "D\u00eda de la Bien Aparecida", - "1952-09-17": "D\u00eda de Melilla", + "1952-09-02": "D\u00eda de Ceuta", + "1952-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1952-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1952-09-15": "La Bien Aparecida", "1952-10-09": "D\u00eda de la Comunidad Valenciana", - "1952-10-12": "D\u00eda de la Hispanidad", + "1952-10-12": "Fiesta Nacional de Espa\u00f1a", "1952-11-01": "Todos los Santos", "1952-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1952-12-08": "La Inmaculada Concepci\u00f3n", - "1952-12-25": "Navidad", + "1952-12-08": "Inmaculada Concepci\u00f3n", + "1952-12-25": "Natividad del Se\u00f1or", "1952-12-26": "San Esteban", "1953-01-01": "A\u00f1o nuevo", "1953-01-06": "Epifan\u00eda del Se\u00f1or", @@ -104,61 +101,57 @@ "1953-04-02": "Jueves Santo", "1953-04-03": "Viernes Santo", "1953-04-06": "Lunes de Pascua", - "1953-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1953-05-01": "D\u00eda del Trabajador", - "1953-05-02": "D\u00eda de Comunidad de Madrid", + "1953-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1953-05-01": "Fiesta del Trabajo", + "1953-05-02": "Fiesta de la Comunidad de Madrid", + "1953-05-17": "D\u00eda de las Letras Gallegas", "1953-05-30": "D\u00eda de Canarias", "1953-05-31": "D\u00eda de Castilla La Mancha", + "1953-06-04": "Corpus Christi", "1953-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "1953-06-24": "San Juan", - "1953-07-25": "D\u00eda Nacional de Galicia", + "1953-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1953-07-28": "D\u00eda de las Instituciones de Cantabria", - "1953-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1953-08-15": "Asunci\u00f3n de la Virgen", - "1953-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1953-09-06": "D\u00eda de Elcano", - "1953-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1953-09-11": "D\u00eda Nacional de Catalunya", - "1953-09-15": "D\u00eda de la Bien Aparecida", - "1953-09-17": "D\u00eda de Melilla", + "1953-09-02": "D\u00eda de Ceuta", + "1953-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1953-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1953-09-15": "La Bien Aparecida", "1953-10-09": "D\u00eda de la Comunidad Valenciana", - "1953-10-12": "D\u00eda de la Hispanidad", + "1953-10-12": "Fiesta Nacional de Espa\u00f1a", "1953-11-01": "Todos los Santos", "1953-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1953-12-08": "La Inmaculada Concepci\u00f3n", - "1953-12-25": "Navidad", + "1953-12-08": "Inmaculada Concepci\u00f3n", + "1953-12-25": "Natividad del Se\u00f1or", "1953-12-26": "San Esteban", "1954-01-01": "A\u00f1o nuevo", "1954-01-06": "Epifan\u00eda del Se\u00f1or", - "1954-02-28": "D\u00eda de Andalucia", - "1954-03-01": "D\u00eda de las Islas Baleares", + "1954-03-01": "D\u00eda de las Islas Baleares; Lunes siguiente a D\u00eda de Andalucia", "1954-03-19": "San Jos\u00e9", "1954-04-15": "Jueves Santo", "1954-04-16": "Viernes Santo", "1954-04-19": "Lunes de Pascua", - "1954-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1954-05-01": "D\u00eda del Trabajador", - "1954-05-02": "D\u00eda de Comunidad de Madrid", - "1954-05-30": "D\u00eda de Canarias", - "1954-05-31": "D\u00eda de Castilla La Mancha", + "1954-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1954-05-01": "Fiesta del Trabajo", + "1954-05-03": "Lunes siguiente a Fiesta de la Comunidad de Madrid", + "1954-05-17": "D\u00eda de las Letras Gallegas", + "1954-05-31": "D\u00eda de Castilla La Mancha; Lunes siguiente a D\u00eda de Canarias", "1954-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1954-06-17": "Corpus Christi", "1954-06-24": "San Juan", - "1954-07-25": "D\u00eda Nacional de Galicia", + "1954-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1954-07-28": "D\u00eda de las Instituciones de Cantabria", - "1954-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1954-08-15": "Asunci\u00f3n de la Virgen", - "1954-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1954-09-06": "D\u00eda de Elcano", - "1954-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1954-09-11": "D\u00eda Nacional de Catalunya", - "1954-09-15": "D\u00eda de la Bien Aparecida", - "1954-09-17": "D\u00eda de Melilla", + "1954-09-02": "D\u00eda de Ceuta", + "1954-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1954-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1954-09-15": "La Bien Aparecida", "1954-10-09": "D\u00eda de la Comunidad Valenciana", - "1954-10-12": "D\u00eda de la Hispanidad", + "1954-10-12": "Fiesta Nacional de Espa\u00f1a", "1954-11-01": "Todos los Santos", "1954-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1954-12-08": "La Inmaculada Concepci\u00f3n", - "1954-12-25": "Navidad", + "1954-12-08": "Inmaculada Concepci\u00f3n", + "1954-12-25": "Natividad del Se\u00f1or", "1954-12-26": "San Esteban", "1955-01-01": "A\u00f1o nuevo", "1955-01-06": "Epifan\u00eda del Se\u00f1or", @@ -168,29 +161,27 @@ "1955-04-07": "Jueves Santo", "1955-04-08": "Viernes Santo", "1955-04-11": "Lunes de Pascua", - "1955-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1955-05-01": "D\u00eda del Trabajador", - "1955-05-02": "D\u00eda de Comunidad de Madrid", + "1955-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1955-05-01": "Fiesta del Trabajo", + "1955-05-02": "Fiesta de la Comunidad de Madrid", + "1955-05-17": "D\u00eda de las Letras Gallegas", "1955-05-30": "D\u00eda de Canarias", "1955-05-31": "D\u00eda de Castilla La Mancha", - "1955-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1955-06-09": "Corpus Christi; D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "1955-06-24": "San Juan", - "1955-07-25": "D\u00eda Nacional de Galicia", + "1955-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1955-07-28": "D\u00eda de las Instituciones de Cantabria", - "1955-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1955-08-15": "Asunci\u00f3n de la Virgen", - "1955-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1955-09-06": "D\u00eda de Elcano", - "1955-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1955-09-11": "D\u00eda Nacional de Catalunya", - "1955-09-15": "D\u00eda de la Bien Aparecida", - "1955-09-17": "D\u00eda de Melilla", + "1955-09-02": "D\u00eda de Ceuta", + "1955-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1955-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1955-09-15": "La Bien Aparecida", "1955-10-09": "D\u00eda de la Comunidad Valenciana", - "1955-10-12": "D\u00eda de la Hispanidad", + "1955-10-12": "Fiesta Nacional de Espa\u00f1a", "1955-11-01": "Todos los Santos", "1955-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1955-12-08": "La Inmaculada Concepci\u00f3n", - "1955-12-25": "Navidad", + "1955-12-08": "Inmaculada Concepci\u00f3n", + "1955-12-25": "Natividad del Se\u00f1or", "1955-12-26": "San Esteban", "1956-01-01": "A\u00f1o nuevo", "1956-01-06": "Epifan\u00eda del Se\u00f1or", @@ -200,29 +191,27 @@ "1956-03-29": "Jueves Santo", "1956-03-30": "Viernes Santo", "1956-04-02": "Lunes de Pascua", - "1956-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1956-05-01": "D\u00eda del Trabajador", - "1956-05-02": "D\u00eda de Comunidad de Madrid", + "1956-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1956-05-01": "Fiesta del Trabajo", + "1956-05-02": "Fiesta de la Comunidad de Madrid", + "1956-05-17": "D\u00eda de las Letras Gallegas", "1956-05-30": "D\u00eda de Canarias", - "1956-05-31": "D\u00eda de Castilla La Mancha", + "1956-05-31": "Corpus Christi; D\u00eda de Castilla La Mancha", "1956-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "1956-06-24": "San Juan", - "1956-07-25": "D\u00eda Nacional de Galicia", + "1956-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1956-07-28": "D\u00eda de las Instituciones de Cantabria", - "1956-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1956-08-15": "Asunci\u00f3n de la Virgen", - "1956-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1956-09-06": "D\u00eda de Elcano", - "1956-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1956-09-11": "D\u00eda Nacional de Catalunya", - "1956-09-15": "D\u00eda de la Bien Aparecida", - "1956-09-17": "D\u00eda de Melilla", + "1956-09-02": "D\u00eda de Ceuta", + "1956-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1956-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1956-09-15": "La Bien Aparecida", "1956-10-09": "D\u00eda de la Comunidad Valenciana", - "1956-10-12": "D\u00eda de la Hispanidad", + "1956-10-12": "Fiesta Nacional de Espa\u00f1a", "1956-11-01": "Todos los Santos", "1956-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1956-12-08": "La Inmaculada Concepci\u00f3n", - "1956-12-25": "Navidad", + "1956-12-08": "Inmaculada Concepci\u00f3n", + "1956-12-25": "Natividad del Se\u00f1or", "1956-12-26": "San Esteban", "1957-01-01": "A\u00f1o nuevo", "1957-01-06": "Epifan\u00eda del Se\u00f1or", @@ -232,29 +221,28 @@ "1957-04-18": "Jueves Santo", "1957-04-19": "Viernes Santo", "1957-04-22": "Lunes de Pascua", - "1957-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1957-05-01": "D\u00eda del Trabajador", - "1957-05-02": "D\u00eda de Comunidad de Madrid", + "1957-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1957-05-01": "Fiesta del Trabajo", + "1957-05-02": "Fiesta de la Comunidad de Madrid", + "1957-05-17": "D\u00eda de las Letras Gallegas", "1957-05-30": "D\u00eda de Canarias", "1957-05-31": "D\u00eda de Castilla La Mancha", - "1957-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1957-06-10": "Lunes siguiente a D\u00eda de La Rioja; Lunes siguiente a D\u00eda de la Regi\u00f3n de Murcia", + "1957-06-20": "Corpus Christi", "1957-06-24": "San Juan", - "1957-07-25": "D\u00eda Nacional de Galicia", + "1957-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1957-07-28": "D\u00eda de las Instituciones de Cantabria", - "1957-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1957-08-15": "Asunci\u00f3n de la Virgen", - "1957-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1957-09-06": "D\u00eda de Elcano", - "1957-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1957-09-11": "D\u00eda Nacional de Catalunya", - "1957-09-15": "D\u00eda de la Bien Aparecida", - "1957-09-17": "D\u00eda de Melilla", + "1957-09-02": "D\u00eda de Ceuta", + "1957-09-09": "Lunes siguiente a D\u00eda de Asturias; Lunes siguiente a D\u00eda de Extremadura", + "1957-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1957-09-15": "La Bien Aparecida", "1957-10-09": "D\u00eda de la Comunidad Valenciana", - "1957-10-12": "D\u00eda de la Hispanidad", + "1957-10-12": "Fiesta Nacional de Espa\u00f1a", "1957-11-01": "Todos los Santos", "1957-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1957-12-08": "La Inmaculada Concepci\u00f3n", - "1957-12-25": "Navidad", + "1957-12-08": "Inmaculada Concepci\u00f3n", + "1957-12-25": "Natividad del Se\u00f1or", "1957-12-26": "San Esteban", "1958-01-01": "A\u00f1o nuevo", "1958-01-06": "Epifan\u00eda del Se\u00f1or", @@ -264,29 +252,28 @@ "1958-04-03": "Jueves Santo", "1958-04-04": "Viernes Santo", "1958-04-07": "Lunes de Pascua", - "1958-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1958-05-01": "D\u00eda del Trabajador", - "1958-05-02": "D\u00eda de Comunidad de Madrid", + "1958-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1958-05-01": "Fiesta del Trabajo", + "1958-05-02": "Fiesta de la Comunidad de Madrid", + "1958-05-17": "D\u00eda de las Letras Gallegas", "1958-05-30": "D\u00eda de Canarias", "1958-05-31": "D\u00eda de Castilla La Mancha", + "1958-06-05": "Corpus Christi", "1958-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "1958-06-24": "San Juan", - "1958-07-25": "D\u00eda Nacional de Galicia", + "1958-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1958-07-28": "D\u00eda de las Instituciones de Cantabria", - "1958-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1958-08-15": "Asunci\u00f3n de la Virgen", - "1958-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1958-09-06": "D\u00eda de Elcano", - "1958-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1958-09-11": "D\u00eda Nacional de Catalunya", - "1958-09-15": "D\u00eda de la Bien Aparecida", - "1958-09-17": "D\u00eda de Melilla", + "1958-09-02": "D\u00eda de Ceuta", + "1958-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1958-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1958-09-15": "La Bien Aparecida", "1958-10-09": "D\u00eda de la Comunidad Valenciana", - "1958-10-12": "D\u00eda de la Hispanidad", + "1958-10-12": "Fiesta Nacional de Espa\u00f1a", "1958-11-01": "Todos los Santos", "1958-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1958-12-08": "La Inmaculada Concepci\u00f3n", - "1958-12-25": "Navidad", + "1958-12-08": "Inmaculada Concepci\u00f3n", + "1958-12-25": "Natividad del Se\u00f1or", "1958-12-26": "San Esteban", "1959-01-01": "A\u00f1o nuevo", "1959-01-06": "Epifan\u00eda del Se\u00f1or", @@ -296,94 +283,91 @@ "1959-03-26": "Jueves Santo", "1959-03-27": "Viernes Santo", "1959-03-30": "Lunes de Pascua", - "1959-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1959-05-01": "D\u00eda del Trabajador", - "1959-05-02": "D\u00eda de Comunidad de Madrid", + "1959-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1959-05-01": "Fiesta del Trabajo", + "1959-05-02": "Fiesta de la Comunidad de Madrid", + "1959-05-17": "D\u00eda de las Letras Gallegas", + "1959-05-28": "Corpus Christi", "1959-05-30": "D\u00eda de Canarias", "1959-05-31": "D\u00eda de Castilla La Mancha", "1959-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "1959-06-24": "San Juan", - "1959-07-25": "D\u00eda Nacional de Galicia", + "1959-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1959-07-28": "D\u00eda de las Instituciones de Cantabria", - "1959-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1959-08-15": "Asunci\u00f3n de la Virgen", - "1959-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1959-09-06": "D\u00eda de Elcano", - "1959-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1959-09-11": "D\u00eda Nacional de Catalunya", - "1959-09-15": "D\u00eda de la Bien Aparecida", - "1959-09-17": "D\u00eda de Melilla", + "1959-09-02": "D\u00eda de Ceuta", + "1959-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1959-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1959-09-15": "La Bien Aparecida", "1959-10-09": "D\u00eda de la Comunidad Valenciana", - "1959-10-12": "D\u00eda de la Hispanidad", + "1959-10-12": "Fiesta Nacional de Espa\u00f1a", "1959-11-01": "Todos los Santos", "1959-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1959-12-08": "La Inmaculada Concepci\u00f3n", - "1959-12-25": "Navidad", + "1959-12-08": "Inmaculada Concepci\u00f3n", + "1959-12-25": "Natividad del Se\u00f1or", "1959-12-26": "San Esteban", "1960-01-01": "A\u00f1o nuevo", "1960-01-06": "Epifan\u00eda del Se\u00f1or", - "1960-02-28": "D\u00eda de Andalucia", + "1960-02-29": "Lunes siguiente a D\u00eda de Andalucia", "1960-03-01": "D\u00eda de las Islas Baleares", "1960-03-19": "San Jos\u00e9", "1960-04-14": "Jueves Santo", "1960-04-15": "Viernes Santo", "1960-04-18": "Lunes de Pascua", - "1960-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1960-05-01": "D\u00eda del Trabajador", - "1960-05-02": "D\u00eda de Comunidad de Madrid", + "1960-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1960-05-01": "Fiesta del Trabajo", + "1960-05-02": "Fiesta de la Comunidad de Madrid", + "1960-05-17": "D\u00eda de las Letras Gallegas", "1960-05-30": "D\u00eda de Canarias", "1960-05-31": "D\u00eda de Castilla La Mancha", "1960-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1960-06-16": "Corpus Christi", "1960-06-24": "San Juan", - "1960-07-25": "D\u00eda Nacional de Galicia", + "1960-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1960-07-28": "D\u00eda de las Instituciones de Cantabria", - "1960-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1960-08-15": "Asunci\u00f3n de la Virgen", - "1960-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1960-09-06": "D\u00eda de Elcano", - "1960-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1960-09-11": "D\u00eda Nacional de Catalunya", - "1960-09-15": "D\u00eda de la Bien Aparecida", - "1960-09-17": "D\u00eda de Melilla", + "1960-09-02": "D\u00eda de Ceuta", + "1960-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1960-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1960-09-15": "La Bien Aparecida", "1960-10-09": "D\u00eda de la Comunidad Valenciana", - "1960-10-12": "D\u00eda de la Hispanidad", + "1960-10-12": "Fiesta Nacional de Espa\u00f1a", "1960-11-01": "Todos los Santos", "1960-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1960-12-08": "La Inmaculada Concepci\u00f3n", - "1960-12-25": "Navidad", + "1960-12-08": "Inmaculada Concepci\u00f3n", + "1960-12-25": "Natividad del Se\u00f1or", "1960-12-26": "San Esteban", "1961-01-01": "A\u00f1o nuevo", "1961-01-06": "Epifan\u00eda del Se\u00f1or", "1961-02-28": "D\u00eda de Andalucia", "1961-03-01": "D\u00eda de las Islas Baleares", "1961-03-19": "San Jos\u00e9", - "1961-03-20": "San Jos\u00e9 (Trasladado)", + "1961-03-20": "Lunes siguiente a San Jos\u00e9", "1961-03-30": "Jueves Santo", "1961-03-31": "Viernes Santo", "1961-04-03": "Lunes de Pascua", - "1961-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1961-05-01": "D\u00eda del Trabajador", - "1961-05-02": "D\u00eda de Comunidad de Madrid", + "1961-04-24": "Lunes siguiente a D\u00eda de San Jorge; Lunes siguiente a Fiesta de la Comunidad Aut\u00f3noma", + "1961-05-01": "Fiesta del Trabajo", + "1961-05-02": "Fiesta de la Comunidad de Madrid", + "1961-05-17": "D\u00eda de las Letras Gallegas", "1961-05-30": "D\u00eda de Canarias", "1961-05-31": "D\u00eda de Castilla La Mancha", + "1961-06-01": "Corpus Christi", "1961-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "1961-06-24": "San Juan", - "1961-07-25": "D\u00eda Nacional de Galicia", + "1961-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1961-07-28": "D\u00eda de las Instituciones de Cantabria", - "1961-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1961-08-15": "Asunci\u00f3n de la Virgen", - "1961-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1961-09-06": "D\u00eda de Elcano", - "1961-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1961-09-11": "D\u00eda Nacional de Catalunya", - "1961-09-15": "D\u00eda de la Bien Aparecida", - "1961-09-17": "D\u00eda de Melilla", + "1961-09-02": "D\u00eda de Ceuta", + "1961-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1961-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1961-09-15": "La Bien Aparecida", "1961-10-09": "D\u00eda de la Comunidad Valenciana", - "1961-10-12": "D\u00eda de la Hispanidad", + "1961-10-12": "Fiesta Nacional de Espa\u00f1a", "1961-11-01": "Todos los Santos", "1961-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1961-12-08": "La Inmaculada Concepci\u00f3n", - "1961-12-25": "Navidad", + "1961-12-08": "Inmaculada Concepci\u00f3n", + "1961-12-25": "Natividad del Se\u00f1or", "1961-12-26": "San Esteban", "1962-01-01": "A\u00f1o nuevo", "1962-01-06": "Epifan\u00eda del Se\u00f1or", @@ -392,29 +376,28 @@ "1962-03-19": "San Jos\u00e9", "1962-04-19": "Jueves Santo", "1962-04-20": "Viernes Santo", - "1962-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge; Lunes de Pascua", - "1962-05-01": "D\u00eda del Trabajador", - "1962-05-02": "D\u00eda de Comunidad de Madrid", + "1962-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma; Lunes de Pascua", + "1962-05-01": "Fiesta del Trabajo", + "1962-05-02": "Fiesta de la Comunidad de Madrid", + "1962-05-17": "D\u00eda de las Letras Gallegas", "1962-05-30": "D\u00eda de Canarias", "1962-05-31": "D\u00eda de Castilla La Mancha", "1962-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1962-06-21": "Corpus Christi", "1962-06-24": "San Juan", - "1962-07-25": "D\u00eda Nacional de Galicia", + "1962-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1962-07-28": "D\u00eda de las Instituciones de Cantabria", - "1962-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1962-08-15": "Asunci\u00f3n de la Virgen", - "1962-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1962-09-06": "D\u00eda de Elcano", - "1962-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1962-09-11": "D\u00eda Nacional de Catalunya", - "1962-09-15": "D\u00eda de la Bien Aparecida", - "1962-09-17": "D\u00eda de Melilla", + "1962-09-02": "D\u00eda de Ceuta", + "1962-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1962-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1962-09-15": "La Bien Aparecida", "1962-10-09": "D\u00eda de la Comunidad Valenciana", - "1962-10-12": "D\u00eda de la Hispanidad", + "1962-10-12": "Fiesta Nacional de Espa\u00f1a", "1962-11-01": "Todos los Santos", "1962-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1962-12-08": "La Inmaculada Concepci\u00f3n", - "1962-12-25": "Navidad", + "1962-12-08": "Inmaculada Concepci\u00f3n", + "1962-12-25": "Natividad del Se\u00f1or", "1962-12-26": "San Esteban", "1963-01-01": "A\u00f1o nuevo", "1963-01-06": "Epifan\u00eda del Se\u00f1or", @@ -424,29 +407,28 @@ "1963-04-11": "Jueves Santo", "1963-04-12": "Viernes Santo", "1963-04-15": "Lunes de Pascua", - "1963-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1963-05-01": "D\u00eda del Trabajador", - "1963-05-02": "D\u00eda de Comunidad de Madrid", + "1963-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1963-05-01": "Fiesta del Trabajo", + "1963-05-02": "Fiesta de la Comunidad de Madrid", + "1963-05-17": "D\u00eda de las Letras Gallegas", "1963-05-30": "D\u00eda de Canarias", "1963-05-31": "D\u00eda de Castilla La Mancha", - "1963-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1963-06-10": "Lunes siguiente a D\u00eda de La Rioja; Lunes siguiente a D\u00eda de la Regi\u00f3n de Murcia", + "1963-06-13": "Corpus Christi", "1963-06-24": "San Juan", - "1963-07-25": "D\u00eda Nacional de Galicia", + "1963-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1963-07-28": "D\u00eda de las Instituciones de Cantabria", - "1963-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1963-08-15": "Asunci\u00f3n de la Virgen", - "1963-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1963-09-06": "D\u00eda de Elcano", - "1963-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1963-09-11": "D\u00eda Nacional de Catalunya", - "1963-09-15": "D\u00eda de la Bien Aparecida", - "1963-09-17": "D\u00eda de Melilla", + "1963-09-02": "D\u00eda de Ceuta", + "1963-09-09": "Lunes siguiente a D\u00eda de Asturias; Lunes siguiente a D\u00eda de Extremadura", + "1963-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1963-09-15": "La Bien Aparecida", "1963-10-09": "D\u00eda de la Comunidad Valenciana", - "1963-10-12": "D\u00eda de la Hispanidad", + "1963-10-12": "Fiesta Nacional de Espa\u00f1a", "1963-11-01": "Todos los Santos", "1963-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1963-12-08": "La Inmaculada Concepci\u00f3n", - "1963-12-25": "Navidad", + "1963-12-08": "Inmaculada Concepci\u00f3n", + "1963-12-25": "Natividad del Se\u00f1or", "1963-12-26": "San Esteban", "1964-01-01": "A\u00f1o nuevo", "1964-01-06": "Epifan\u00eda del Se\u00f1or", @@ -456,61 +438,57 @@ "1964-03-26": "Jueves Santo", "1964-03-27": "Viernes Santo", "1964-03-30": "Lunes de Pascua", - "1964-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1964-05-01": "D\u00eda del Trabajador", - "1964-05-02": "D\u00eda de Comunidad de Madrid", + "1964-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1964-05-01": "Fiesta del Trabajo", + "1964-05-02": "Fiesta de la Comunidad de Madrid", + "1964-05-17": "D\u00eda de las Letras Gallegas", + "1964-05-28": "Corpus Christi", "1964-05-30": "D\u00eda de Canarias", "1964-05-31": "D\u00eda de Castilla La Mancha", "1964-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "1964-06-24": "San Juan", - "1964-07-25": "D\u00eda Nacional de Galicia", + "1964-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1964-07-28": "D\u00eda de las Instituciones de Cantabria", - "1964-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1964-08-15": "Asunci\u00f3n de la Virgen", - "1964-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1964-09-06": "D\u00eda de Elcano", - "1964-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1964-09-11": "D\u00eda Nacional de Catalunya", - "1964-09-15": "D\u00eda de la Bien Aparecida", - "1964-09-17": "D\u00eda de Melilla", + "1964-09-02": "D\u00eda de Ceuta", + "1964-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1964-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1964-09-15": "La Bien Aparecida", "1964-10-09": "D\u00eda de la Comunidad Valenciana", - "1964-10-12": "D\u00eda de la Hispanidad", + "1964-10-12": "Fiesta Nacional de Espa\u00f1a", "1964-11-01": "Todos los Santos", "1964-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1964-12-08": "La Inmaculada Concepci\u00f3n", - "1964-12-25": "Navidad", + "1964-12-08": "Inmaculada Concepci\u00f3n", + "1964-12-25": "Natividad del Se\u00f1or", "1964-12-26": "San Esteban", "1965-01-01": "A\u00f1o nuevo", "1965-01-06": "Epifan\u00eda del Se\u00f1or", - "1965-02-28": "D\u00eda de Andalucia", - "1965-03-01": "D\u00eda de las Islas Baleares", + "1965-03-01": "D\u00eda de las Islas Baleares; Lunes siguiente a D\u00eda de Andalucia", "1965-03-19": "San Jos\u00e9", "1965-04-15": "Jueves Santo", "1965-04-16": "Viernes Santo", "1965-04-19": "Lunes de Pascua", - "1965-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1965-05-01": "D\u00eda del Trabajador", - "1965-05-02": "D\u00eda de Comunidad de Madrid", - "1965-05-30": "D\u00eda de Canarias", - "1965-05-31": "D\u00eda de Castilla La Mancha", + "1965-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1965-05-01": "Fiesta del Trabajo", + "1965-05-03": "Lunes siguiente a Fiesta de la Comunidad de Madrid", + "1965-05-17": "D\u00eda de las Letras Gallegas", + "1965-05-31": "D\u00eda de Castilla La Mancha; Lunes siguiente a D\u00eda de Canarias", "1965-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1965-06-17": "Corpus Christi", "1965-06-24": "San Juan", - "1965-07-25": "D\u00eda Nacional de Galicia", + "1965-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1965-07-28": "D\u00eda de las Instituciones de Cantabria", - "1965-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1965-08-15": "Asunci\u00f3n de la Virgen", - "1965-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1965-09-06": "D\u00eda de Elcano", - "1965-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1965-09-11": "D\u00eda Nacional de Catalunya", - "1965-09-15": "D\u00eda de la Bien Aparecida", - "1965-09-17": "D\u00eda de Melilla", + "1965-09-02": "D\u00eda de Ceuta", + "1965-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1965-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1965-09-15": "La Bien Aparecida", "1965-10-09": "D\u00eda de la Comunidad Valenciana", - "1965-10-12": "D\u00eda de la Hispanidad", + "1965-10-12": "Fiesta Nacional de Espa\u00f1a", "1965-11-01": "Todos los Santos", "1965-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1965-12-08": "La Inmaculada Concepci\u00f3n", - "1965-12-25": "Navidad", + "1965-12-08": "Inmaculada Concepci\u00f3n", + "1965-12-25": "Natividad del Se\u00f1or", "1965-12-26": "San Esteban", "1966-01-01": "A\u00f1o nuevo", "1966-01-06": "Epifan\u00eda del Se\u00f1or", @@ -520,62 +498,59 @@ "1966-04-07": "Jueves Santo", "1966-04-08": "Viernes Santo", "1966-04-11": "Lunes de Pascua", - "1966-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1966-05-01": "D\u00eda del Trabajador", - "1966-05-02": "D\u00eda de Comunidad de Madrid", + "1966-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1966-05-01": "Fiesta del Trabajo", + "1966-05-02": "Fiesta de la Comunidad de Madrid", + "1966-05-17": "D\u00eda de las Letras Gallegas", "1966-05-30": "D\u00eda de Canarias", "1966-05-31": "D\u00eda de Castilla La Mancha", - "1966-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1966-06-09": "Corpus Christi; D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "1966-06-24": "San Juan", - "1966-07-25": "D\u00eda Nacional de Galicia", + "1966-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1966-07-28": "D\u00eda de las Instituciones de Cantabria", - "1966-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1966-08-15": "Asunci\u00f3n de la Virgen", - "1966-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1966-09-06": "D\u00eda de Elcano", - "1966-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1966-09-11": "D\u00eda Nacional de Catalunya", - "1966-09-15": "D\u00eda de la Bien Aparecida", - "1966-09-17": "D\u00eda de Melilla", + "1966-09-02": "D\u00eda de Ceuta", + "1966-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1966-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1966-09-15": "La Bien Aparecida", "1966-10-09": "D\u00eda de la Comunidad Valenciana", - "1966-10-12": "D\u00eda de la Hispanidad", + "1966-10-12": "Fiesta Nacional de Espa\u00f1a", "1966-11-01": "Todos los Santos", "1966-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1966-12-08": "La Inmaculada Concepci\u00f3n", - "1966-12-25": "Navidad", + "1966-12-08": "Inmaculada Concepci\u00f3n", + "1966-12-25": "Natividad del Se\u00f1or", "1966-12-26": "San Esteban", "1967-01-01": "A\u00f1o nuevo", "1967-01-06": "Epifan\u00eda del Se\u00f1or", "1967-02-28": "D\u00eda de Andalucia", "1967-03-01": "D\u00eda de las Islas Baleares", "1967-03-19": "San Jos\u00e9", - "1967-03-20": "San Jos\u00e9 (Trasladado)", + "1967-03-20": "Lunes siguiente a San Jos\u00e9", "1967-03-23": "Jueves Santo", "1967-03-24": "Viernes Santo", "1967-03-27": "Lunes de Pascua", - "1967-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1967-05-01": "D\u00eda del Trabajador", - "1967-05-02": "D\u00eda de Comunidad de Madrid", + "1967-04-24": "Lunes siguiente a D\u00eda de San Jorge; Lunes siguiente a Fiesta de la Comunidad Aut\u00f3noma", + "1967-05-01": "Fiesta del Trabajo", + "1967-05-02": "Fiesta de la Comunidad de Madrid", + "1967-05-17": "D\u00eda de las Letras Gallegas", + "1967-05-25": "Corpus Christi", "1967-05-30": "D\u00eda de Canarias", "1967-05-31": "D\u00eda de Castilla La Mancha", "1967-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "1967-06-24": "San Juan", - "1967-07-25": "D\u00eda Nacional de Galicia", + "1967-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1967-07-28": "D\u00eda de las Instituciones de Cantabria", - "1967-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1967-08-15": "Asunci\u00f3n de la Virgen", - "1967-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1967-09-06": "D\u00eda de Elcano", - "1967-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1967-09-11": "D\u00eda Nacional de Catalunya", - "1967-09-15": "D\u00eda de la Bien Aparecida", - "1967-09-17": "D\u00eda de Melilla", + "1967-09-02": "D\u00eda de Ceuta", + "1967-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1967-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1967-09-15": "La Bien Aparecida", "1967-10-09": "D\u00eda de la Comunidad Valenciana", - "1967-10-12": "D\u00eda de la Hispanidad", + "1967-10-12": "Fiesta Nacional de Espa\u00f1a", "1967-11-01": "Todos los Santos", "1967-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1967-12-08": "La Inmaculada Concepci\u00f3n", - "1967-12-25": "Navidad", + "1967-12-08": "Inmaculada Concepci\u00f3n", + "1967-12-25": "Natividad del Se\u00f1or", "1967-12-26": "San Esteban", "1968-01-01": "A\u00f1o nuevo", "1968-01-06": "Epifan\u00eda del Se\u00f1or", @@ -585,29 +560,28 @@ "1968-04-11": "Jueves Santo", "1968-04-12": "Viernes Santo", "1968-04-15": "Lunes de Pascua", - "1968-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1968-05-01": "D\u00eda del Trabajador", - "1968-05-02": "D\u00eda de Comunidad de Madrid", + "1968-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1968-05-01": "Fiesta del Trabajo", + "1968-05-02": "Fiesta de la Comunidad de Madrid", + "1968-05-17": "D\u00eda de las Letras Gallegas", "1968-05-30": "D\u00eda de Canarias", "1968-05-31": "D\u00eda de Castilla La Mancha", - "1968-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1968-06-10": "Lunes siguiente a D\u00eda de La Rioja; Lunes siguiente a D\u00eda de la Regi\u00f3n de Murcia", + "1968-06-13": "Corpus Christi", "1968-06-24": "San Juan", - "1968-07-25": "D\u00eda Nacional de Galicia", + "1968-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1968-07-28": "D\u00eda de las Instituciones de Cantabria", - "1968-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1968-08-15": "Asunci\u00f3n de la Virgen", - "1968-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1968-09-06": "D\u00eda de Elcano", - "1968-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1968-09-11": "D\u00eda Nacional de Catalunya", - "1968-09-15": "D\u00eda de la Bien Aparecida", - "1968-09-17": "D\u00eda de Melilla", + "1968-09-02": "D\u00eda de Ceuta", + "1968-09-09": "Lunes siguiente a D\u00eda de Asturias; Lunes siguiente a D\u00eda de Extremadura", + "1968-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1968-09-15": "La Bien Aparecida", "1968-10-09": "D\u00eda de la Comunidad Valenciana", - "1968-10-12": "D\u00eda de la Hispanidad", + "1968-10-12": "Fiesta Nacional de Espa\u00f1a", "1968-11-01": "Todos los Santos", "1968-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1968-12-08": "La Inmaculada Concepci\u00f3n", - "1968-12-25": "Navidad", + "1968-12-08": "Inmaculada Concepci\u00f3n", + "1968-12-25": "Natividad del Se\u00f1or", "1968-12-26": "San Esteban", "1969-01-01": "A\u00f1o nuevo", "1969-01-06": "Epifan\u00eda del Se\u00f1or", @@ -617,29 +591,28 @@ "1969-04-03": "Jueves Santo", "1969-04-04": "Viernes Santo", "1969-04-07": "Lunes de Pascua", - "1969-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1969-05-01": "D\u00eda del Trabajador", - "1969-05-02": "D\u00eda de Comunidad de Madrid", + "1969-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1969-05-01": "Fiesta del Trabajo", + "1969-05-02": "Fiesta de la Comunidad de Madrid", + "1969-05-17": "D\u00eda de las Letras Gallegas", "1969-05-30": "D\u00eda de Canarias", "1969-05-31": "D\u00eda de Castilla La Mancha", + "1969-06-05": "Corpus Christi", "1969-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "1969-06-24": "San Juan", - "1969-07-25": "D\u00eda Nacional de Galicia", + "1969-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1969-07-28": "D\u00eda de las Instituciones de Cantabria", - "1969-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1969-08-15": "Asunci\u00f3n de la Virgen", - "1969-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1969-09-06": "D\u00eda de Elcano", - "1969-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1969-09-11": "D\u00eda Nacional de Catalunya", - "1969-09-15": "D\u00eda de la Bien Aparecida", - "1969-09-17": "D\u00eda de Melilla", + "1969-09-02": "D\u00eda de Ceuta", + "1969-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1969-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1969-09-15": "La Bien Aparecida", "1969-10-09": "D\u00eda de la Comunidad Valenciana", - "1969-10-12": "D\u00eda de la Hispanidad", + "1969-10-12": "Fiesta Nacional de Espa\u00f1a", "1969-11-01": "Todos los Santos", "1969-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1969-12-08": "La Inmaculada Concepci\u00f3n", - "1969-12-25": "Navidad", + "1969-12-08": "Inmaculada Concepci\u00f3n", + "1969-12-25": "Natividad del Se\u00f1or", "1969-12-26": "San Esteban", "1970-01-01": "A\u00f1o nuevo", "1970-01-06": "Epifan\u00eda del Se\u00f1or", @@ -649,94 +622,89 @@ "1970-03-26": "Jueves Santo", "1970-03-27": "Viernes Santo", "1970-03-30": "Lunes de Pascua", - "1970-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1970-05-01": "D\u00eda del Trabajador", - "1970-05-02": "D\u00eda de Comunidad de Madrid", + "1970-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1970-05-01": "Fiesta del Trabajo", + "1970-05-02": "Fiesta de la Comunidad de Madrid", + "1970-05-17": "D\u00eda de las Letras Gallegas", + "1970-05-28": "Corpus Christi", "1970-05-30": "D\u00eda de Canarias", "1970-05-31": "D\u00eda de Castilla La Mancha", "1970-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "1970-06-24": "San Juan", - "1970-07-25": "D\u00eda Nacional de Galicia", + "1970-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1970-07-28": "D\u00eda de las Instituciones de Cantabria", - "1970-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1970-08-15": "Asunci\u00f3n de la Virgen", - "1970-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1970-09-06": "D\u00eda de Elcano", - "1970-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1970-09-11": "D\u00eda Nacional de Catalunya", - "1970-09-15": "D\u00eda de la Bien Aparecida", - "1970-09-17": "D\u00eda de Melilla", + "1970-09-02": "D\u00eda de Ceuta", + "1970-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1970-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1970-09-15": "La Bien Aparecida", "1970-10-09": "D\u00eda de la Comunidad Valenciana", - "1970-10-12": "D\u00eda de la Hispanidad", + "1970-10-12": "Fiesta Nacional de Espa\u00f1a", "1970-11-01": "Todos los Santos", "1970-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1970-12-08": "La Inmaculada Concepci\u00f3n", - "1970-12-25": "Navidad", + "1970-12-08": "Inmaculada Concepci\u00f3n", + "1970-12-25": "Natividad del Se\u00f1or", "1970-12-26": "San Esteban", "1971-01-01": "A\u00f1o nuevo", "1971-01-06": "Epifan\u00eda del Se\u00f1or", - "1971-02-28": "D\u00eda de Andalucia", - "1971-03-01": "D\u00eda de las Islas Baleares", + "1971-03-01": "D\u00eda de las Islas Baleares; Lunes siguiente a D\u00eda de Andalucia", "1971-03-19": "San Jos\u00e9", "1971-04-08": "Jueves Santo", "1971-04-09": "Viernes Santo", "1971-04-12": "Lunes de Pascua", - "1971-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1971-05-01": "D\u00eda del Trabajador", - "1971-05-02": "D\u00eda de Comunidad de Madrid", - "1971-05-30": "D\u00eda de Canarias", - "1971-05-31": "D\u00eda de Castilla La Mancha", + "1971-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1971-05-01": "Fiesta del Trabajo", + "1971-05-03": "Lunes siguiente a Fiesta de la Comunidad de Madrid", + "1971-05-17": "D\u00eda de las Letras Gallegas", + "1971-05-31": "D\u00eda de Castilla La Mancha; Lunes siguiente a D\u00eda de Canarias", "1971-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1971-06-10": "Corpus Christi", "1971-06-24": "San Juan", - "1971-07-25": "D\u00eda Nacional de Galicia", + "1971-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1971-07-28": "D\u00eda de las Instituciones de Cantabria", - "1971-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1971-08-15": "Asunci\u00f3n de la Virgen", - "1971-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1971-09-06": "D\u00eda de Elcano", - "1971-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1971-09-11": "D\u00eda Nacional de Catalunya", - "1971-09-15": "D\u00eda de la Bien Aparecida", - "1971-09-17": "D\u00eda de Melilla", + "1971-09-02": "D\u00eda de Ceuta", + "1971-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1971-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1971-09-15": "La Bien Aparecida", "1971-10-09": "D\u00eda de la Comunidad Valenciana", - "1971-10-12": "D\u00eda de la Hispanidad", + "1971-10-12": "Fiesta Nacional de Espa\u00f1a", "1971-11-01": "Todos los Santos", "1971-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1971-12-08": "La Inmaculada Concepci\u00f3n", - "1971-12-25": "Navidad", + "1971-12-08": "Inmaculada Concepci\u00f3n", + "1971-12-25": "Natividad del Se\u00f1or", "1971-12-26": "San Esteban", "1972-01-01": "A\u00f1o nuevo", "1972-01-06": "Epifan\u00eda del Se\u00f1or", "1972-02-28": "D\u00eda de Andalucia", "1972-03-01": "D\u00eda de las Islas Baleares", "1972-03-19": "San Jos\u00e9", - "1972-03-20": "San Jos\u00e9 (Trasladado)", + "1972-03-20": "Lunes siguiente a San Jos\u00e9", "1972-03-30": "Jueves Santo", "1972-03-31": "Viernes Santo", "1972-04-03": "Lunes de Pascua", - "1972-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1972-05-01": "D\u00eda del Trabajador", - "1972-05-02": "D\u00eda de Comunidad de Madrid", + "1972-04-24": "Lunes siguiente a D\u00eda de San Jorge; Lunes siguiente a Fiesta de la Comunidad Aut\u00f3noma", + "1972-05-01": "Fiesta del Trabajo", + "1972-05-02": "Fiesta de la Comunidad de Madrid", + "1972-05-17": "D\u00eda de las Letras Gallegas", "1972-05-30": "D\u00eda de Canarias", "1972-05-31": "D\u00eda de Castilla La Mancha", + "1972-06-01": "Corpus Christi", "1972-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "1972-06-24": "San Juan", - "1972-07-25": "D\u00eda Nacional de Galicia", + "1972-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1972-07-28": "D\u00eda de las Instituciones de Cantabria", - "1972-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1972-08-15": "Asunci\u00f3n de la Virgen", - "1972-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1972-09-06": "D\u00eda de Elcano", - "1972-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1972-09-11": "D\u00eda Nacional de Catalunya", - "1972-09-15": "D\u00eda de la Bien Aparecida", - "1972-09-17": "D\u00eda de Melilla", + "1972-09-02": "D\u00eda de Ceuta", + "1972-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1972-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1972-09-15": "La Bien Aparecida", "1972-10-09": "D\u00eda de la Comunidad Valenciana", - "1972-10-12": "D\u00eda de la Hispanidad", + "1972-10-12": "Fiesta Nacional de Espa\u00f1a", "1972-11-01": "Todos los Santos", "1972-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1972-12-08": "La Inmaculada Concepci\u00f3n", - "1972-12-25": "Navidad", + "1972-12-08": "Inmaculada Concepci\u00f3n", + "1972-12-25": "Natividad del Se\u00f1or", "1972-12-26": "San Esteban", "1973-01-01": "A\u00f1o nuevo", "1973-01-06": "Epifan\u00eda del Se\u00f1or", @@ -745,29 +713,28 @@ "1973-03-19": "San Jos\u00e9", "1973-04-19": "Jueves Santo", "1973-04-20": "Viernes Santo", - "1973-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge; Lunes de Pascua", - "1973-05-01": "D\u00eda del Trabajador", - "1973-05-02": "D\u00eda de Comunidad de Madrid", + "1973-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma; Lunes de Pascua", + "1973-05-01": "Fiesta del Trabajo", + "1973-05-02": "Fiesta de la Comunidad de Madrid", + "1973-05-17": "D\u00eda de las Letras Gallegas", "1973-05-30": "D\u00eda de Canarias", "1973-05-31": "D\u00eda de Castilla La Mancha", "1973-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1973-06-21": "Corpus Christi", "1973-06-24": "San Juan", - "1973-07-25": "D\u00eda Nacional de Galicia", + "1973-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1973-07-28": "D\u00eda de las Instituciones de Cantabria", - "1973-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1973-08-15": "Asunci\u00f3n de la Virgen", - "1973-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1973-09-06": "D\u00eda de Elcano", - "1973-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1973-09-11": "D\u00eda Nacional de Catalunya", - "1973-09-15": "D\u00eda de la Bien Aparecida", - "1973-09-17": "D\u00eda de Melilla", + "1973-09-02": "D\u00eda de Ceuta", + "1973-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1973-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1973-09-15": "La Bien Aparecida", "1973-10-09": "D\u00eda de la Comunidad Valenciana", - "1973-10-12": "D\u00eda de la Hispanidad", + "1973-10-12": "Fiesta Nacional de Espa\u00f1a", "1973-11-01": "Todos los Santos", "1973-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1973-12-08": "La Inmaculada Concepci\u00f3n", - "1973-12-25": "Navidad", + "1973-12-08": "Inmaculada Concepci\u00f3n", + "1973-12-25": "Natividad del Se\u00f1or", "1973-12-26": "San Esteban", "1974-01-01": "A\u00f1o nuevo", "1974-01-06": "Epifan\u00eda del Se\u00f1or", @@ -777,29 +744,28 @@ "1974-04-11": "Jueves Santo", "1974-04-12": "Viernes Santo", "1974-04-15": "Lunes de Pascua", - "1974-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1974-05-01": "D\u00eda del Trabajador", - "1974-05-02": "D\u00eda de Comunidad de Madrid", + "1974-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1974-05-01": "Fiesta del Trabajo", + "1974-05-02": "Fiesta de la Comunidad de Madrid", + "1974-05-17": "D\u00eda de las Letras Gallegas", "1974-05-30": "D\u00eda de Canarias", "1974-05-31": "D\u00eda de Castilla La Mancha", - "1974-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1974-06-10": "Lunes siguiente a D\u00eda de La Rioja; Lunes siguiente a D\u00eda de la Regi\u00f3n de Murcia", + "1974-06-13": "Corpus Christi", "1974-06-24": "San Juan", - "1974-07-25": "D\u00eda Nacional de Galicia", + "1974-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1974-07-28": "D\u00eda de las Instituciones de Cantabria", - "1974-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1974-08-15": "Asunci\u00f3n de la Virgen", - "1974-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1974-09-06": "D\u00eda de Elcano", - "1974-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1974-09-11": "D\u00eda Nacional de Catalunya", - "1974-09-15": "D\u00eda de la Bien Aparecida", - "1974-09-17": "D\u00eda de Melilla", + "1974-09-02": "D\u00eda de Ceuta", + "1974-09-09": "Lunes siguiente a D\u00eda de Asturias; Lunes siguiente a D\u00eda de Extremadura", + "1974-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1974-09-15": "La Bien Aparecida", "1974-10-09": "D\u00eda de la Comunidad Valenciana", - "1974-10-12": "D\u00eda de la Hispanidad", + "1974-10-12": "Fiesta Nacional de Espa\u00f1a", "1974-11-01": "Todos los Santos", "1974-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1974-12-08": "La Inmaculada Concepci\u00f3n", - "1974-12-25": "Navidad", + "1974-12-08": "Inmaculada Concepci\u00f3n", + "1974-12-25": "Natividad del Se\u00f1or", "1974-12-26": "San Esteban", "1975-01-01": "A\u00f1o nuevo", "1975-01-06": "Epifan\u00eda del Se\u00f1or", @@ -809,29 +775,28 @@ "1975-03-27": "Jueves Santo", "1975-03-28": "Viernes Santo", "1975-03-31": "Lunes de Pascua", - "1975-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1975-05-01": "D\u00eda del Trabajador", - "1975-05-02": "D\u00eda de Comunidad de Madrid", + "1975-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1975-05-01": "Fiesta del Trabajo", + "1975-05-02": "Fiesta de la Comunidad de Madrid", + "1975-05-17": "D\u00eda de las Letras Gallegas", + "1975-05-29": "Corpus Christi", "1975-05-30": "D\u00eda de Canarias", "1975-05-31": "D\u00eda de Castilla La Mancha", "1975-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "1975-06-24": "San Juan", - "1975-07-25": "D\u00eda Nacional de Galicia", + "1975-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1975-07-28": "D\u00eda de las Instituciones de Cantabria", - "1975-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1975-08-15": "Asunci\u00f3n de la Virgen", - "1975-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1975-09-06": "D\u00eda de Elcano", - "1975-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1975-09-11": "D\u00eda Nacional de Catalunya", - "1975-09-15": "D\u00eda de la Bien Aparecida", - "1975-09-17": "D\u00eda de Melilla", + "1975-09-02": "D\u00eda de Ceuta", + "1975-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1975-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1975-09-15": "La Bien Aparecida", "1975-10-09": "D\u00eda de la Comunidad Valenciana", - "1975-10-12": "D\u00eda de la Hispanidad", + "1975-10-12": "Fiesta Nacional de Espa\u00f1a", "1975-11-01": "Todos los Santos", "1975-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1975-12-08": "La Inmaculada Concepci\u00f3n", - "1975-12-25": "Navidad", + "1975-12-08": "Inmaculada Concepci\u00f3n", + "1975-12-25": "Natividad del Se\u00f1or", "1975-12-26": "San Esteban", "1976-01-01": "A\u00f1o nuevo", "1976-01-06": "Epifan\u00eda del Se\u00f1or", @@ -841,29 +806,27 @@ "1976-04-15": "Jueves Santo", "1976-04-16": "Viernes Santo", "1976-04-19": "Lunes de Pascua", - "1976-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1976-05-01": "D\u00eda del Trabajador", - "1976-05-02": "D\u00eda de Comunidad de Madrid", - "1976-05-30": "D\u00eda de Canarias", - "1976-05-31": "D\u00eda de Castilla La Mancha", + "1976-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1976-05-01": "Fiesta del Trabajo", + "1976-05-03": "Lunes siguiente a Fiesta de la Comunidad de Madrid", + "1976-05-17": "D\u00eda de las Letras Gallegas", + "1976-05-31": "D\u00eda de Castilla La Mancha; Lunes siguiente a D\u00eda de Canarias", "1976-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1976-06-17": "Corpus Christi", "1976-06-24": "San Juan", - "1976-07-25": "D\u00eda Nacional de Galicia", + "1976-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1976-07-28": "D\u00eda de las Instituciones de Cantabria", - "1976-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1976-08-15": "Asunci\u00f3n de la Virgen", - "1976-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1976-09-06": "D\u00eda de Elcano", - "1976-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1976-09-11": "D\u00eda Nacional de Catalunya", - "1976-09-15": "D\u00eda de la Bien Aparecida", - "1976-09-17": "D\u00eda de Melilla", + "1976-09-02": "D\u00eda de Ceuta", + "1976-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1976-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1976-09-15": "La Bien Aparecida", "1976-10-09": "D\u00eda de la Comunidad Valenciana", - "1976-10-12": "D\u00eda de la Hispanidad", + "1976-10-12": "Fiesta Nacional de Espa\u00f1a", "1976-11-01": "Todos los Santos", "1976-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1976-12-08": "La Inmaculada Concepci\u00f3n", - "1976-12-25": "Navidad", + "1976-12-08": "Inmaculada Concepci\u00f3n", + "1976-12-25": "Natividad del Se\u00f1or", "1976-12-26": "San Esteban", "1977-01-01": "A\u00f1o nuevo", "1977-01-06": "Epifan\u00eda del Se\u00f1or", @@ -873,62 +836,59 @@ "1977-04-07": "Jueves Santo", "1977-04-08": "Viernes Santo", "1977-04-11": "Lunes de Pascua", - "1977-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1977-05-01": "D\u00eda del Trabajador", - "1977-05-02": "D\u00eda de Comunidad de Madrid", + "1977-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1977-05-01": "Fiesta del Trabajo", + "1977-05-02": "Fiesta de la Comunidad de Madrid", + "1977-05-17": "D\u00eda de las Letras Gallegas", "1977-05-30": "D\u00eda de Canarias", "1977-05-31": "D\u00eda de Castilla La Mancha", - "1977-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1977-06-09": "Corpus Christi; D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "1977-06-24": "San Juan", - "1977-07-25": "D\u00eda Nacional de Galicia", + "1977-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1977-07-28": "D\u00eda de las Instituciones de Cantabria", - "1977-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1977-08-15": "Asunci\u00f3n de la Virgen", - "1977-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1977-09-06": "D\u00eda de Elcano", - "1977-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1977-09-11": "D\u00eda Nacional de Catalunya", - "1977-09-15": "D\u00eda de la Bien Aparecida", - "1977-09-17": "D\u00eda de Melilla", + "1977-09-02": "D\u00eda de Ceuta", + "1977-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1977-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1977-09-15": "La Bien Aparecida", "1977-10-09": "D\u00eda de la Comunidad Valenciana", - "1977-10-12": "D\u00eda de la Hispanidad", + "1977-10-12": "Fiesta Nacional de Espa\u00f1a", "1977-11-01": "Todos los Santos", "1977-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1977-12-08": "La Inmaculada Concepci\u00f3n", - "1977-12-25": "Navidad", + "1977-12-08": "Inmaculada Concepci\u00f3n", + "1977-12-25": "Natividad del Se\u00f1or", "1977-12-26": "San Esteban", "1978-01-01": "A\u00f1o nuevo", "1978-01-06": "Epifan\u00eda del Se\u00f1or", "1978-02-28": "D\u00eda de Andalucia", "1978-03-01": "D\u00eda de las Islas Baleares", "1978-03-19": "San Jos\u00e9", - "1978-03-20": "San Jos\u00e9 (Trasladado)", + "1978-03-20": "Lunes siguiente a San Jos\u00e9", "1978-03-23": "Jueves Santo", "1978-03-24": "Viernes Santo", "1978-03-27": "Lunes de Pascua", - "1978-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1978-05-01": "D\u00eda del Trabajador", - "1978-05-02": "D\u00eda de Comunidad de Madrid", + "1978-04-24": "Lunes siguiente a D\u00eda de San Jorge; Lunes siguiente a Fiesta de la Comunidad Aut\u00f3noma", + "1978-05-01": "Fiesta del Trabajo", + "1978-05-02": "Fiesta de la Comunidad de Madrid", + "1978-05-17": "D\u00eda de las Letras Gallegas", + "1978-05-25": "Corpus Christi", "1978-05-30": "D\u00eda de Canarias", "1978-05-31": "D\u00eda de Castilla La Mancha", "1978-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "1978-06-24": "San Juan", - "1978-07-25": "D\u00eda Nacional de Galicia", + "1978-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1978-07-28": "D\u00eda de las Instituciones de Cantabria", - "1978-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1978-08-15": "Asunci\u00f3n de la Virgen", - "1978-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1978-09-06": "D\u00eda de Elcano", - "1978-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1978-09-11": "D\u00eda Nacional de Catalunya", - "1978-09-15": "D\u00eda de la Bien Aparecida", - "1978-09-17": "D\u00eda de Melilla", + "1978-09-02": "D\u00eda de Ceuta", + "1978-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1978-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1978-09-15": "La Bien Aparecida", "1978-10-09": "D\u00eda de la Comunidad Valenciana", - "1978-10-12": "D\u00eda de la Hispanidad", + "1978-10-12": "Fiesta Nacional de Espa\u00f1a", "1978-11-01": "Todos los Santos", "1978-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1978-12-08": "La Inmaculada Concepci\u00f3n", - "1978-12-25": "Navidad", + "1978-12-08": "Inmaculada Concepci\u00f3n", + "1978-12-25": "Natividad del Se\u00f1or", "1978-12-26": "San Esteban", "1979-01-01": "A\u00f1o nuevo", "1979-01-06": "Epifan\u00eda del Se\u00f1or", @@ -938,29 +898,28 @@ "1979-04-12": "Jueves Santo", "1979-04-13": "Viernes Santo", "1979-04-16": "Lunes de Pascua", - "1979-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1979-05-01": "D\u00eda del Trabajador", - "1979-05-02": "D\u00eda de Comunidad de Madrid", + "1979-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1979-05-01": "Fiesta del Trabajo", + "1979-05-02": "Fiesta de la Comunidad de Madrid", + "1979-05-17": "D\u00eda de las Letras Gallegas", "1979-05-30": "D\u00eda de Canarias", "1979-05-31": "D\u00eda de Castilla La Mancha", "1979-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1979-06-14": "Corpus Christi", "1979-06-24": "San Juan", - "1979-07-25": "D\u00eda Nacional de Galicia", + "1979-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1979-07-28": "D\u00eda de las Instituciones de Cantabria", - "1979-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1979-08-15": "Asunci\u00f3n de la Virgen", - "1979-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1979-09-06": "D\u00eda de Elcano", - "1979-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1979-09-11": "D\u00eda Nacional de Catalunya", - "1979-09-15": "D\u00eda de la Bien Aparecida", - "1979-09-17": "D\u00eda de Melilla", + "1979-09-02": "D\u00eda de Ceuta", + "1979-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1979-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1979-09-15": "La Bien Aparecida", "1979-10-09": "D\u00eda de la Comunidad Valenciana", - "1979-10-12": "D\u00eda de la Hispanidad", + "1979-10-12": "Fiesta Nacional de Espa\u00f1a", "1979-11-01": "Todos los Santos", "1979-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1979-12-08": "La Inmaculada Concepci\u00f3n", - "1979-12-25": "Navidad", + "1979-12-08": "Inmaculada Concepci\u00f3n", + "1979-12-25": "Natividad del Se\u00f1or", "1979-12-26": "San Esteban", "1980-01-01": "A\u00f1o nuevo", "1980-01-06": "Epifan\u00eda del Se\u00f1or", @@ -970,29 +929,28 @@ "1980-04-03": "Jueves Santo", "1980-04-04": "Viernes Santo", "1980-04-07": "Lunes de Pascua", - "1980-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1980-05-01": "D\u00eda del Trabajador", - "1980-05-02": "D\u00eda de Comunidad de Madrid", + "1980-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1980-05-01": "Fiesta del Trabajo", + "1980-05-02": "Fiesta de la Comunidad de Madrid", + "1980-05-17": "D\u00eda de las Letras Gallegas", "1980-05-30": "D\u00eda de Canarias", "1980-05-31": "D\u00eda de Castilla La Mancha", + "1980-06-05": "Corpus Christi", "1980-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "1980-06-24": "San Juan", - "1980-07-25": "D\u00eda Nacional de Galicia", + "1980-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1980-07-28": "D\u00eda de las Instituciones de Cantabria", - "1980-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1980-08-15": "Asunci\u00f3n de la Virgen", - "1980-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1980-09-06": "D\u00eda de Elcano", - "1980-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1980-09-11": "D\u00eda Nacional de Catalunya", - "1980-09-15": "D\u00eda de la Bien Aparecida", - "1980-09-17": "D\u00eda de Melilla", + "1980-09-02": "D\u00eda de Ceuta", + "1980-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1980-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1980-09-15": "La Bien Aparecida", "1980-10-09": "D\u00eda de la Comunidad Valenciana", - "1980-10-12": "D\u00eda de la Hispanidad", + "1980-10-12": "Fiesta Nacional de Espa\u00f1a", "1980-11-01": "Todos los Santos", "1980-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1980-12-08": "La Inmaculada Concepci\u00f3n", - "1980-12-25": "Navidad", + "1980-12-08": "Inmaculada Concepci\u00f3n", + "1980-12-25": "Natividad del Se\u00f1or", "1980-12-26": "San Esteban", "1981-01-01": "A\u00f1o nuevo", "1981-01-06": "Epifan\u00eda del Se\u00f1or", @@ -1002,61 +960,57 @@ "1981-04-16": "Jueves Santo", "1981-04-17": "Viernes Santo", "1981-04-20": "Lunes de Pascua", - "1981-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1981-05-01": "D\u00eda del Trabajador", - "1981-05-02": "D\u00eda de Comunidad de Madrid", + "1981-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1981-05-01": "Fiesta del Trabajo", + "1981-05-02": "Fiesta de la Comunidad de Madrid", + "1981-05-17": "D\u00eda de las Letras Gallegas", "1981-05-30": "D\u00eda de Canarias", "1981-05-31": "D\u00eda de Castilla La Mancha", "1981-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1981-06-18": "Corpus Christi", "1981-06-24": "San Juan", - "1981-07-25": "D\u00eda Nacional de Galicia", + "1981-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1981-07-28": "D\u00eda de las Instituciones de Cantabria", - "1981-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1981-08-15": "Asunci\u00f3n de la Virgen", - "1981-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1981-09-06": "D\u00eda de Elcano", - "1981-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1981-09-11": "D\u00eda Nacional de Catalunya", - "1981-09-15": "D\u00eda de la Bien Aparecida", - "1981-09-17": "D\u00eda de Melilla", + "1981-09-02": "D\u00eda de Ceuta", + "1981-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1981-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1981-09-15": "La Bien Aparecida", "1981-10-09": "D\u00eda de la Comunidad Valenciana", - "1981-10-12": "D\u00eda de la Hispanidad", + "1981-10-12": "Fiesta Nacional de Espa\u00f1a", "1981-11-01": "Todos los Santos", "1981-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1981-12-08": "La Inmaculada Concepci\u00f3n", - "1981-12-25": "Navidad", + "1981-12-08": "Inmaculada Concepci\u00f3n", + "1981-12-25": "Natividad del Se\u00f1or", "1981-12-26": "San Esteban", "1982-01-01": "A\u00f1o nuevo", "1982-01-06": "Epifan\u00eda del Se\u00f1or", - "1982-02-28": "D\u00eda de Andalucia", - "1982-03-01": "D\u00eda de las Islas Baleares", + "1982-03-01": "D\u00eda de las Islas Baleares; Lunes siguiente a D\u00eda de Andalucia", "1982-03-19": "San Jos\u00e9", "1982-04-08": "Jueves Santo", "1982-04-09": "Viernes Santo", "1982-04-12": "Lunes de Pascua", - "1982-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1982-05-01": "D\u00eda del Trabajador", - "1982-05-02": "D\u00eda de Comunidad de Madrid", - "1982-05-30": "D\u00eda de Canarias", - "1982-05-31": "D\u00eda de Castilla La Mancha", + "1982-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1982-05-01": "Fiesta del Trabajo", + "1982-05-03": "Lunes siguiente a Fiesta de la Comunidad de Madrid", + "1982-05-17": "D\u00eda de las Letras Gallegas", + "1982-05-31": "D\u00eda de Castilla La Mancha; Lunes siguiente a D\u00eda de Canarias", "1982-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1982-06-10": "Corpus Christi", "1982-06-24": "San Juan", - "1982-07-25": "D\u00eda Nacional de Galicia", + "1982-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1982-07-28": "D\u00eda de las Instituciones de Cantabria", - "1982-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1982-08-15": "Asunci\u00f3n de la Virgen", - "1982-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1982-09-06": "D\u00eda de Elcano", - "1982-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1982-09-11": "D\u00eda Nacional de Catalunya", - "1982-09-15": "D\u00eda de la Bien Aparecida", - "1982-09-17": "D\u00eda de Melilla", + "1982-09-02": "D\u00eda de Ceuta", + "1982-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1982-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1982-09-15": "La Bien Aparecida", "1982-10-09": "D\u00eda de la Comunidad Valenciana", - "1982-10-12": "D\u00eda de la Hispanidad", + "1982-10-12": "Fiesta Nacional de Espa\u00f1a", "1982-11-01": "Todos los Santos", "1982-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1982-12-08": "La Inmaculada Concepci\u00f3n", - "1982-12-25": "Navidad", + "1982-12-08": "Inmaculada Concepci\u00f3n", + "1982-12-25": "Natividad del Se\u00f1or", "1982-12-26": "San Esteban", "1983-01-01": "A\u00f1o nuevo", "1983-01-06": "Epifan\u00eda del Se\u00f1or", @@ -1066,29 +1020,28 @@ "1983-03-31": "Jueves Santo", "1983-04-01": "Viernes Santo", "1983-04-04": "Lunes de Pascua", - "1983-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1983-05-01": "D\u00eda del Trabajador", - "1983-05-02": "D\u00eda de Comunidad de Madrid", + "1983-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1983-05-01": "Fiesta del Trabajo", + "1983-05-02": "Fiesta de la Comunidad de Madrid", + "1983-05-17": "D\u00eda de las Letras Gallegas", "1983-05-30": "D\u00eda de Canarias", "1983-05-31": "D\u00eda de Castilla La Mancha", + "1983-06-02": "Corpus Christi", "1983-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "1983-06-24": "San Juan", - "1983-07-25": "D\u00eda Nacional de Galicia", + "1983-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1983-07-28": "D\u00eda de las Instituciones de Cantabria", - "1983-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1983-08-15": "Asunci\u00f3n de la Virgen", - "1983-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1983-09-06": "D\u00eda de Elcano", - "1983-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1983-09-11": "D\u00eda Nacional de Catalunya", - "1983-09-15": "D\u00eda de la Bien Aparecida", - "1983-09-17": "D\u00eda de Melilla", + "1983-09-02": "D\u00eda de Ceuta", + "1983-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1983-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1983-09-15": "La Bien Aparecida", "1983-10-09": "D\u00eda de la Comunidad Valenciana", - "1983-10-12": "D\u00eda de la Hispanidad", + "1983-10-12": "Fiesta Nacional de Espa\u00f1a", "1983-11-01": "Todos los Santos", "1983-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1983-12-08": "La Inmaculada Concepci\u00f3n", - "1983-12-25": "Navidad", + "1983-12-08": "Inmaculada Concepci\u00f3n", + "1983-12-25": "Natividad del Se\u00f1or", "1983-12-26": "San Esteban", "1984-01-01": "A\u00f1o nuevo", "1984-01-06": "Epifan\u00eda del Se\u00f1or", @@ -1097,29 +1050,28 @@ "1984-03-19": "San Jos\u00e9", "1984-04-19": "Jueves Santo", "1984-04-20": "Viernes Santo", - "1984-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge; Lunes de Pascua", - "1984-05-01": "D\u00eda del Trabajador", - "1984-05-02": "D\u00eda de Comunidad de Madrid", + "1984-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma; Lunes de Pascua", + "1984-05-01": "Fiesta del Trabajo", + "1984-05-02": "Fiesta de la Comunidad de Madrid", + "1984-05-17": "D\u00eda de las Letras Gallegas", "1984-05-30": "D\u00eda de Canarias", "1984-05-31": "D\u00eda de Castilla La Mancha", "1984-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1984-06-21": "Corpus Christi", "1984-06-24": "San Juan", - "1984-07-25": "D\u00eda Nacional de Galicia", + "1984-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1984-07-28": "D\u00eda de las Instituciones de Cantabria", - "1984-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1984-08-15": "Asunci\u00f3n de la Virgen", - "1984-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1984-09-06": "D\u00eda de Elcano", - "1984-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1984-09-11": "D\u00eda Nacional de Catalunya", - "1984-09-15": "D\u00eda de la Bien Aparecida", - "1984-09-17": "D\u00eda de Melilla", + "1984-09-02": "D\u00eda de Ceuta", + "1984-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1984-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1984-09-15": "La Bien Aparecida", "1984-10-09": "D\u00eda de la Comunidad Valenciana", - "1984-10-12": "D\u00eda de la Hispanidad", + "1984-10-12": "Fiesta Nacional de Espa\u00f1a", "1984-11-01": "Todos los Santos", "1984-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1984-12-08": "La Inmaculada Concepci\u00f3n", - "1984-12-25": "Navidad", + "1984-12-08": "Inmaculada Concepci\u00f3n", + "1984-12-25": "Natividad del Se\u00f1or", "1984-12-26": "San Esteban", "1985-01-01": "A\u00f1o nuevo", "1985-01-06": "Epifan\u00eda del Se\u00f1or", @@ -1129,29 +1081,28 @@ "1985-04-04": "Jueves Santo", "1985-04-05": "Viernes Santo", "1985-04-08": "Lunes de Pascua", - "1985-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1985-05-01": "D\u00eda del Trabajador", - "1985-05-02": "D\u00eda de Comunidad de Madrid", + "1985-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1985-05-01": "Fiesta del Trabajo", + "1985-05-02": "Fiesta de la Comunidad de Madrid", + "1985-05-17": "D\u00eda de las Letras Gallegas", "1985-05-30": "D\u00eda de Canarias", "1985-05-31": "D\u00eda de Castilla La Mancha", - "1985-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1985-06-06": "Corpus Christi", + "1985-06-10": "Lunes siguiente a D\u00eda de La Rioja; Lunes siguiente a D\u00eda de la Regi\u00f3n de Murcia", "1985-06-24": "San Juan", - "1985-07-25": "D\u00eda Nacional de Galicia", + "1985-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1985-07-28": "D\u00eda de las Instituciones de Cantabria", - "1985-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1985-08-15": "Asunci\u00f3n de la Virgen", - "1985-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1985-09-06": "D\u00eda de Elcano", - "1985-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1985-09-11": "D\u00eda Nacional de Catalunya", - "1985-09-15": "D\u00eda de la Bien Aparecida", - "1985-09-17": "D\u00eda de Melilla", + "1985-09-02": "D\u00eda de Ceuta", + "1985-09-09": "Lunes siguiente a D\u00eda de Asturias; Lunes siguiente a D\u00eda de Extremadura", + "1985-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1985-09-15": "La Bien Aparecida", "1985-10-09": "D\u00eda de la Comunidad Valenciana", - "1985-10-12": "D\u00eda de la Hispanidad", + "1985-10-12": "Fiesta Nacional de Espa\u00f1a", "1985-11-01": "Todos los Santos", "1985-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1985-12-08": "La Inmaculada Concepci\u00f3n", - "1985-12-25": "Navidad", + "1985-12-08": "Inmaculada Concepci\u00f3n", + "1985-12-25": "Natividad del Se\u00f1or", "1985-12-26": "San Esteban", "1986-01-01": "A\u00f1o nuevo", "1986-01-06": "Epifan\u00eda del Se\u00f1or", @@ -1161,29 +1112,28 @@ "1986-03-27": "Jueves Santo", "1986-03-28": "Viernes Santo", "1986-03-31": "Lunes de Pascua", - "1986-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1986-05-01": "D\u00eda del Trabajador", - "1986-05-02": "D\u00eda de Comunidad de Madrid", + "1986-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1986-05-01": "Fiesta del Trabajo", + "1986-05-02": "Fiesta de la Comunidad de Madrid", + "1986-05-17": "D\u00eda de las Letras Gallegas", + "1986-05-29": "Corpus Christi", "1986-05-30": "D\u00eda de Canarias", "1986-05-31": "D\u00eda de Castilla La Mancha", "1986-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "1986-06-24": "San Juan", - "1986-07-25": "D\u00eda Nacional de Galicia", + "1986-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1986-07-28": "D\u00eda de las Instituciones de Cantabria", - "1986-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1986-08-15": "Asunci\u00f3n de la Virgen", - "1986-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1986-09-06": "D\u00eda de Elcano", - "1986-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1986-09-11": "D\u00eda Nacional de Catalunya", - "1986-09-15": "D\u00eda de la Bien Aparecida", - "1986-09-17": "D\u00eda de Melilla", + "1986-09-02": "D\u00eda de Ceuta", + "1986-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1986-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1986-09-15": "La Bien Aparecida", "1986-10-09": "D\u00eda de la Comunidad Valenciana", - "1986-10-12": "D\u00eda de la Hispanidad", + "1986-10-12": "Fiesta Nacional de Espa\u00f1a", "1986-11-01": "Todos los Santos", "1986-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1986-12-08": "La Inmaculada Concepci\u00f3n", - "1986-12-25": "Navidad", + "1986-12-08": "Inmaculada Concepci\u00f3n", + "1986-12-25": "Natividad del Se\u00f1or", "1986-12-26": "San Esteban", "1987-01-01": "A\u00f1o nuevo", "1987-01-06": "Epifan\u00eda del Se\u00f1or", @@ -1193,94 +1143,91 @@ "1987-04-16": "Jueves Santo", "1987-04-17": "Viernes Santo", "1987-04-20": "Lunes de Pascua", - "1987-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1987-05-01": "D\u00eda del Trabajador", - "1987-05-02": "D\u00eda de Comunidad de Madrid", + "1987-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1987-05-01": "Fiesta del Trabajo", + "1987-05-02": "Fiesta de la Comunidad de Madrid", + "1987-05-17": "D\u00eda de las Letras Gallegas", "1987-05-30": "D\u00eda de Canarias", "1987-05-31": "D\u00eda de Castilla La Mancha", "1987-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1987-06-18": "Corpus Christi", "1987-06-24": "San Juan", - "1987-07-25": "D\u00eda Nacional de Galicia", + "1987-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1987-07-28": "D\u00eda de las Instituciones de Cantabria", - "1987-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1987-08-15": "Asunci\u00f3n de la Virgen", - "1987-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1987-09-06": "D\u00eda de Elcano", - "1987-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1987-09-11": "D\u00eda Nacional de Catalunya", - "1987-09-15": "D\u00eda de la Bien Aparecida", - "1987-09-17": "D\u00eda de Melilla", + "1987-09-02": "D\u00eda de Ceuta", + "1987-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1987-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1987-09-15": "La Bien Aparecida", "1987-10-09": "D\u00eda de la Comunidad Valenciana", - "1987-10-12": "D\u00eda de la Hispanidad", + "1987-10-12": "Fiesta Nacional de Espa\u00f1a", "1987-11-01": "Todos los Santos", "1987-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1987-12-08": "La Inmaculada Concepci\u00f3n", - "1987-12-25": "Navidad", + "1987-12-08": "Inmaculada Concepci\u00f3n", + "1987-12-25": "Natividad del Se\u00f1or", "1987-12-26": "San Esteban", "1988-01-01": "A\u00f1o nuevo", "1988-01-06": "Epifan\u00eda del Se\u00f1or", - "1988-02-28": "D\u00eda de Andalucia", + "1988-02-29": "Lunes siguiente a D\u00eda de Andalucia", "1988-03-01": "D\u00eda de las Islas Baleares", "1988-03-19": "San Jos\u00e9", "1988-03-31": "Jueves Santo", "1988-04-01": "Viernes Santo", "1988-04-04": "Lunes de Pascua", - "1988-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1988-05-01": "D\u00eda del Trabajador", - "1988-05-02": "D\u00eda de Comunidad de Madrid", + "1988-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1988-05-01": "Fiesta del Trabajo", + "1988-05-02": "Fiesta de la Comunidad de Madrid", + "1988-05-17": "D\u00eda de las Letras Gallegas", "1988-05-30": "D\u00eda de Canarias", "1988-05-31": "D\u00eda de Castilla La Mancha", + "1988-06-02": "Corpus Christi", "1988-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "1988-06-24": "San Juan", - "1988-07-25": "D\u00eda Nacional de Galicia", + "1988-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1988-07-28": "D\u00eda de las Instituciones de Cantabria", - "1988-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1988-08-15": "Asunci\u00f3n de la Virgen", - "1988-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1988-09-06": "D\u00eda de Elcano", - "1988-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1988-09-11": "D\u00eda Nacional de Catalunya", - "1988-09-15": "D\u00eda de la Bien Aparecida", - "1988-09-17": "D\u00eda de Melilla", + "1988-09-02": "D\u00eda de Ceuta", + "1988-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1988-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1988-09-15": "La Bien Aparecida", "1988-10-09": "D\u00eda de la Comunidad Valenciana", - "1988-10-12": "D\u00eda de la Hispanidad", + "1988-10-12": "Fiesta Nacional de Espa\u00f1a", "1988-11-01": "Todos los Santos", "1988-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1988-12-08": "La Inmaculada Concepci\u00f3n", - "1988-12-25": "Navidad", + "1988-12-08": "Inmaculada Concepci\u00f3n", + "1988-12-25": "Natividad del Se\u00f1or", "1988-12-26": "San Esteban", "1989-01-01": "A\u00f1o nuevo", "1989-01-06": "Epifan\u00eda del Se\u00f1or", "1989-02-28": "D\u00eda de Andalucia", "1989-03-01": "D\u00eda de las Islas Baleares", "1989-03-19": "San Jos\u00e9", - "1989-03-20": "San Jos\u00e9 (Trasladado)", + "1989-03-20": "Lunes siguiente a San Jos\u00e9", "1989-03-23": "Jueves Santo", "1989-03-24": "Viernes Santo", "1989-03-27": "Lunes de Pascua", - "1989-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1989-05-01": "D\u00eda del Trabajador", - "1989-05-02": "D\u00eda de Comunidad de Madrid", + "1989-04-24": "Lunes siguiente a D\u00eda de San Jorge; Lunes siguiente a Fiesta de la Comunidad Aut\u00f3noma", + "1989-05-01": "Fiesta del Trabajo", + "1989-05-02": "Fiesta de la Comunidad de Madrid", + "1989-05-17": "D\u00eda de las Letras Gallegas", + "1989-05-25": "Corpus Christi", "1989-05-30": "D\u00eda de Canarias", "1989-05-31": "D\u00eda de Castilla La Mancha", "1989-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "1989-06-24": "San Juan", - "1989-07-25": "D\u00eda Nacional de Galicia", + "1989-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1989-07-28": "D\u00eda de las Instituciones de Cantabria", - "1989-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1989-08-15": "Asunci\u00f3n de la Virgen", - "1989-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1989-09-06": "D\u00eda de Elcano", - "1989-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1989-09-11": "D\u00eda Nacional de Catalunya", - "1989-09-15": "D\u00eda de la Bien Aparecida", - "1989-09-17": "D\u00eda de Melilla", + "1989-09-02": "D\u00eda de Ceuta", + "1989-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1989-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1989-09-15": "La Bien Aparecida", "1989-10-09": "D\u00eda de la Comunidad Valenciana", - "1989-10-12": "D\u00eda de la Hispanidad", + "1989-10-12": "Fiesta Nacional de Espa\u00f1a", "1989-11-01": "Todos los Santos", "1989-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1989-12-08": "La Inmaculada Concepci\u00f3n", - "1989-12-25": "Navidad", + "1989-12-08": "Inmaculada Concepci\u00f3n", + "1989-12-25": "Natividad del Se\u00f1or", "1989-12-26": "San Esteban", "1990-01-01": "A\u00f1o nuevo", "1990-01-06": "Epifan\u00eda del Se\u00f1or", @@ -1290,29 +1237,28 @@ "1990-04-12": "Jueves Santo", "1990-04-13": "Viernes Santo", "1990-04-16": "Lunes de Pascua", - "1990-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1990-05-01": "D\u00eda del Trabajador", - "1990-05-02": "D\u00eda de Comunidad de Madrid", + "1990-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1990-05-01": "Fiesta del Trabajo", + "1990-05-02": "Fiesta de la Comunidad de Madrid", + "1990-05-17": "D\u00eda de las Letras Gallegas", "1990-05-30": "D\u00eda de Canarias", "1990-05-31": "D\u00eda de Castilla La Mancha", "1990-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1990-06-14": "Corpus Christi", "1990-06-24": "San Juan", - "1990-07-25": "D\u00eda Nacional de Galicia", + "1990-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1990-07-28": "D\u00eda de las Instituciones de Cantabria", - "1990-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1990-08-15": "Asunci\u00f3n de la Virgen", - "1990-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1990-09-06": "D\u00eda de Elcano", - "1990-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1990-09-11": "D\u00eda Nacional de Catalunya", - "1990-09-15": "D\u00eda de la Bien Aparecida", - "1990-09-17": "D\u00eda de Melilla", + "1990-09-02": "D\u00eda de Ceuta", + "1990-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1990-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1990-09-15": "La Bien Aparecida", "1990-10-09": "D\u00eda de la Comunidad Valenciana", - "1990-10-12": "D\u00eda de la Hispanidad", + "1990-10-12": "Fiesta Nacional de Espa\u00f1a", "1990-11-01": "Todos los Santos", "1990-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1990-12-08": "La Inmaculada Concepci\u00f3n", - "1990-12-25": "Navidad", + "1990-12-08": "Inmaculada Concepci\u00f3n", + "1990-12-25": "Natividad del Se\u00f1or", "1990-12-26": "San Esteban", "1991-01-01": "A\u00f1o nuevo", "1991-01-06": "Epifan\u00eda del Se\u00f1or", @@ -1322,29 +1268,27 @@ "1991-03-28": "Jueves Santo", "1991-03-29": "Viernes Santo", "1991-04-01": "Lunes de Pascua", - "1991-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1991-05-01": "D\u00eda del Trabajador", - "1991-05-02": "D\u00eda de Comunidad de Madrid", - "1991-05-30": "D\u00eda de Canarias", + "1991-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1991-05-01": "Fiesta del Trabajo", + "1991-05-02": "Fiesta de la Comunidad de Madrid", + "1991-05-17": "D\u00eda de las Letras Gallegas", + "1991-05-30": "Corpus Christi; D\u00eda de Canarias", "1991-05-31": "D\u00eda de Castilla La Mancha", - "1991-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1991-06-10": "Lunes siguiente a D\u00eda de La Rioja; Lunes siguiente a D\u00eda de la Regi\u00f3n de Murcia", "1991-06-24": "San Juan", - "1991-07-25": "D\u00eda Nacional de Galicia", + "1991-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1991-07-28": "D\u00eda de las Instituciones de Cantabria", - "1991-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1991-08-15": "Asunci\u00f3n de la Virgen", - "1991-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1991-09-06": "D\u00eda de Elcano", - "1991-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1991-09-11": "D\u00eda Nacional de Catalunya", - "1991-09-15": "D\u00eda de la Bien Aparecida", - "1991-09-17": "D\u00eda de Melilla", + "1991-09-02": "D\u00eda de Ceuta", + "1991-09-09": "Lunes siguiente a D\u00eda de Asturias; Lunes siguiente a D\u00eda de Extremadura", + "1991-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1991-09-15": "La Bien Aparecida", "1991-10-09": "D\u00eda de la Comunidad Valenciana", - "1991-10-12": "D\u00eda de la Hispanidad", + "1991-10-12": "Fiesta Nacional de Espa\u00f1a", "1991-11-01": "Todos los Santos", "1991-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1991-12-08": "La Inmaculada Concepci\u00f3n", - "1991-12-25": "Navidad", + "1991-12-08": "Inmaculada Concepci\u00f3n", + "1991-12-25": "Natividad del Se\u00f1or", "1991-12-26": "San Esteban", "1992-01-01": "A\u00f1o nuevo", "1992-01-06": "Epifan\u00eda del Se\u00f1or", @@ -1354,61 +1298,57 @@ "1992-04-16": "Jueves Santo", "1992-04-17": "Viernes Santo", "1992-04-20": "Lunes de Pascua", - "1992-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1992-05-01": "D\u00eda del Trabajador", - "1992-05-02": "D\u00eda de Comunidad de Madrid", + "1992-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1992-05-01": "Fiesta del Trabajo", + "1992-05-02": "Fiesta de la Comunidad de Madrid", + "1992-05-17": "D\u00eda de las Letras Gallegas", "1992-05-30": "D\u00eda de Canarias", "1992-05-31": "D\u00eda de Castilla La Mancha", "1992-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1992-06-18": "Corpus Christi", "1992-06-24": "San Juan", - "1992-07-25": "D\u00eda Nacional de Galicia", + "1992-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1992-07-28": "D\u00eda de las Instituciones de Cantabria", - "1992-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1992-08-15": "Asunci\u00f3n de la Virgen", - "1992-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1992-09-06": "D\u00eda de Elcano", - "1992-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1992-09-11": "D\u00eda Nacional de Catalunya", - "1992-09-15": "D\u00eda de la Bien Aparecida", - "1992-09-17": "D\u00eda de Melilla", + "1992-09-02": "D\u00eda de Ceuta", + "1992-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1992-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1992-09-15": "La Bien Aparecida", "1992-10-09": "D\u00eda de la Comunidad Valenciana", - "1992-10-12": "D\u00eda de la Hispanidad", + "1992-10-12": "Fiesta Nacional de Espa\u00f1a", "1992-11-01": "Todos los Santos", "1992-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1992-12-08": "La Inmaculada Concepci\u00f3n", - "1992-12-25": "Navidad", + "1992-12-08": "Inmaculada Concepci\u00f3n", + "1992-12-25": "Natividad del Se\u00f1or", "1992-12-26": "San Esteban", "1993-01-01": "A\u00f1o nuevo", "1993-01-06": "Epifan\u00eda del Se\u00f1or", - "1993-02-28": "D\u00eda de Andalucia", - "1993-03-01": "D\u00eda de las Islas Baleares", + "1993-03-01": "D\u00eda de las Islas Baleares; Lunes siguiente a D\u00eda de Andalucia", "1993-03-19": "San Jos\u00e9", "1993-04-08": "Jueves Santo", "1993-04-09": "Viernes Santo", "1993-04-12": "Lunes de Pascua", - "1993-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1993-05-01": "D\u00eda del Trabajador", - "1993-05-02": "D\u00eda de Comunidad de Madrid", - "1993-05-30": "D\u00eda de Canarias", - "1993-05-31": "D\u00eda de Castilla La Mancha", + "1993-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1993-05-01": "Fiesta del Trabajo", + "1993-05-03": "Lunes siguiente a Fiesta de la Comunidad de Madrid", + "1993-05-17": "D\u00eda de las Letras Gallegas", + "1993-05-31": "D\u00eda de Castilla La Mancha; Lunes siguiente a D\u00eda de Canarias", "1993-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1993-06-10": "Corpus Christi", "1993-06-24": "San Juan", - "1993-07-25": "D\u00eda Nacional de Galicia", + "1993-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1993-07-28": "D\u00eda de las Instituciones de Cantabria", - "1993-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1993-08-15": "Asunci\u00f3n de la Virgen", - "1993-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1993-09-06": "D\u00eda de Elcano", - "1993-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1993-09-11": "D\u00eda Nacional de Catalunya", - "1993-09-15": "D\u00eda de la Bien Aparecida", - "1993-09-17": "D\u00eda de Melilla", + "1993-09-02": "D\u00eda de Ceuta", + "1993-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1993-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1993-09-15": "La Bien Aparecida", "1993-10-09": "D\u00eda de la Comunidad Valenciana", - "1993-10-12": "D\u00eda de la Hispanidad", + "1993-10-12": "Fiesta Nacional de Espa\u00f1a", "1993-11-01": "Todos los Santos", "1993-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1993-12-08": "La Inmaculada Concepci\u00f3n", - "1993-12-25": "Navidad", + "1993-12-08": "Inmaculada Concepci\u00f3n", + "1993-12-25": "Natividad del Se\u00f1or", "1993-12-26": "San Esteban", "1994-01-01": "A\u00f1o nuevo", "1994-01-06": "Epifan\u00eda del Se\u00f1or", @@ -1418,62 +1358,60 @@ "1994-03-31": "Jueves Santo", "1994-04-01": "Viernes Santo", "1994-04-04": "Lunes de Pascua", - "1994-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1994-05-01": "D\u00eda del Trabajador", - "1994-05-02": "D\u00eda de Comunidad de Madrid", + "1994-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1994-05-01": "Fiesta del Trabajo", + "1994-05-02": "Fiesta de la Comunidad de Madrid", + "1994-05-17": "D\u00eda de las Letras Gallegas", "1994-05-30": "D\u00eda de Canarias", "1994-05-31": "D\u00eda de Castilla La Mancha", + "1994-06-02": "Corpus Christi", "1994-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "1994-06-24": "San Juan", - "1994-07-25": "D\u00eda Nacional de Galicia", + "1994-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1994-07-28": "D\u00eda de las Instituciones de Cantabria", - "1994-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1994-08-15": "Asunci\u00f3n de la Virgen", - "1994-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1994-09-06": "D\u00eda de Elcano", - "1994-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1994-09-11": "D\u00eda Nacional de Catalunya", - "1994-09-15": "D\u00eda de la Bien Aparecida", - "1994-09-17": "D\u00eda de Melilla", + "1994-09-02": "D\u00eda de Ceuta", + "1994-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1994-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1994-09-15": "La Bien Aparecida", "1994-10-09": "D\u00eda de la Comunidad Valenciana", - "1994-10-12": "D\u00eda de la Hispanidad", + "1994-10-12": "Fiesta Nacional de Espa\u00f1a", "1994-11-01": "Todos los Santos", "1994-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1994-12-08": "La Inmaculada Concepci\u00f3n", - "1994-12-25": "Navidad", + "1994-12-08": "Inmaculada Concepci\u00f3n", + "1994-12-25": "Natividad del Se\u00f1or", "1994-12-26": "San Esteban", "1995-01-01": "A\u00f1o nuevo", "1995-01-06": "Epifan\u00eda del Se\u00f1or", "1995-02-28": "D\u00eda de Andalucia", "1995-03-01": "D\u00eda de las Islas Baleares", "1995-03-19": "San Jos\u00e9", - "1995-03-20": "San Jos\u00e9 (Trasladado)", + "1995-03-20": "Lunes siguiente a San Jos\u00e9", "1995-04-13": "Jueves Santo", "1995-04-14": "Viernes Santo", "1995-04-17": "Lunes de Pascua", - "1995-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1995-05-01": "D\u00eda del Trabajador", - "1995-05-02": "D\u00eda de Comunidad de Madrid", + "1995-04-24": "Lunes siguiente a D\u00eda de San Jorge; Lunes siguiente a Fiesta de la Comunidad Aut\u00f3noma", + "1995-05-01": "Fiesta del Trabajo", + "1995-05-02": "Fiesta de la Comunidad de Madrid", + "1995-05-17": "D\u00eda de las Letras Gallegas", "1995-05-30": "D\u00eda de Canarias", "1995-05-31": "D\u00eda de Castilla La Mancha", "1995-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1995-06-15": "Corpus Christi", "1995-06-24": "San Juan", - "1995-07-25": "D\u00eda Nacional de Galicia", + "1995-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1995-07-28": "D\u00eda de las Instituciones de Cantabria", - "1995-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1995-08-15": "Asunci\u00f3n de la Virgen", - "1995-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1995-09-06": "D\u00eda de Elcano", - "1995-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1995-09-11": "D\u00eda Nacional de Catalunya", - "1995-09-15": "D\u00eda de la Bien Aparecida", - "1995-09-17": "D\u00eda de Melilla", + "1995-09-02": "D\u00eda de Ceuta", + "1995-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1995-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1995-09-15": "La Bien Aparecida", "1995-10-09": "D\u00eda de la Comunidad Valenciana", - "1995-10-12": "D\u00eda de la Hispanidad", + "1995-10-12": "Fiesta Nacional de Espa\u00f1a", "1995-11-01": "Todos los Santos", "1995-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1995-12-08": "La Inmaculada Concepci\u00f3n", - "1995-12-25": "Navidad", + "1995-12-08": "Inmaculada Concepci\u00f3n", + "1995-12-25": "Natividad del Se\u00f1or", "1995-12-26": "San Esteban", "1996-01-01": "A\u00f1o nuevo", "1996-01-06": "Epifan\u00eda del Se\u00f1or", @@ -1483,29 +1421,28 @@ "1996-04-04": "Jueves Santo", "1996-04-05": "Viernes Santo", "1996-04-08": "Lunes de Pascua", - "1996-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1996-05-01": "D\u00eda del Trabajador", - "1996-05-02": "D\u00eda de Comunidad de Madrid", + "1996-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1996-05-01": "Fiesta del Trabajo", + "1996-05-02": "Fiesta de la Comunidad de Madrid", + "1996-05-17": "D\u00eda de las Letras Gallegas", "1996-05-30": "D\u00eda de Canarias", "1996-05-31": "D\u00eda de Castilla La Mancha", - "1996-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1996-06-06": "Corpus Christi", + "1996-06-10": "Lunes siguiente a D\u00eda de La Rioja; Lunes siguiente a D\u00eda de la Regi\u00f3n de Murcia", "1996-06-24": "San Juan", - "1996-07-25": "D\u00eda Nacional de Galicia", + "1996-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1996-07-28": "D\u00eda de las Instituciones de Cantabria", - "1996-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1996-08-15": "Asunci\u00f3n de la Virgen", - "1996-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1996-09-06": "D\u00eda de Elcano", - "1996-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1996-09-11": "D\u00eda Nacional de Catalunya", - "1996-09-15": "D\u00eda de la Bien Aparecida", - "1996-09-17": "D\u00eda de Melilla", + "1996-09-02": "D\u00eda de Ceuta", + "1996-09-09": "Lunes siguiente a D\u00eda de Asturias; Lunes siguiente a D\u00eda de Extremadura", + "1996-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1996-09-15": "La Bien Aparecida", "1996-10-09": "D\u00eda de la Comunidad Valenciana", - "1996-10-12": "D\u00eda de la Hispanidad", + "1996-10-12": "Fiesta Nacional de Espa\u00f1a", "1996-11-01": "Todos los Santos", "1996-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1996-12-08": "La Inmaculada Concepci\u00f3n", - "1996-12-25": "Navidad", + "1996-12-08": "Inmaculada Concepci\u00f3n", + "1996-12-25": "Natividad del Se\u00f1or", "1996-12-26": "San Esteban", "1997-01-01": "A\u00f1o nuevo", "1997-01-06": "Epifan\u00eda del Se\u00f1or", @@ -1515,29 +1452,28 @@ "1997-03-27": "Jueves Santo", "1997-03-28": "Viernes Santo", "1997-03-31": "Lunes de Pascua", - "1997-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1997-05-01": "D\u00eda del Trabajador", - "1997-05-02": "D\u00eda de Comunidad de Madrid", + "1997-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1997-05-01": "Fiesta del Trabajo", + "1997-05-02": "Fiesta de la Comunidad de Madrid", + "1997-05-17": "D\u00eda de las Letras Gallegas", + "1997-05-29": "Corpus Christi", "1997-05-30": "D\u00eda de Canarias", "1997-05-31": "D\u00eda de Castilla La Mancha", "1997-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "1997-06-24": "San Juan", - "1997-07-25": "D\u00eda Nacional de Galicia", + "1997-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1997-07-28": "D\u00eda de las Instituciones de Cantabria", - "1997-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1997-08-15": "Asunci\u00f3n de la Virgen", - "1997-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1997-09-06": "D\u00eda de Elcano", - "1997-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1997-09-11": "D\u00eda Nacional de Catalunya", - "1997-09-15": "D\u00eda de la Bien Aparecida", - "1997-09-17": "D\u00eda de Melilla", + "1997-09-02": "D\u00eda de Ceuta", + "1997-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1997-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1997-09-15": "La Bien Aparecida", "1997-10-09": "D\u00eda de la Comunidad Valenciana", - "1997-10-12": "D\u00eda de la Hispanidad", + "1997-10-12": "Fiesta Nacional de Espa\u00f1a", "1997-11-01": "Todos los Santos", "1997-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1997-12-08": "La Inmaculada Concepci\u00f3n", - "1997-12-25": "Navidad", + "1997-12-08": "Inmaculada Concepci\u00f3n", + "1997-12-25": "Natividad del Se\u00f1or", "1997-12-26": "San Esteban", "1998-01-01": "A\u00f1o nuevo", "1998-01-06": "Epifan\u00eda del Se\u00f1or", @@ -1547,94 +1483,88 @@ "1998-04-09": "Jueves Santo", "1998-04-10": "Viernes Santo", "1998-04-13": "Lunes de Pascua", - "1998-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1998-05-01": "D\u00eda del Trabajador", - "1998-05-02": "D\u00eda de Comunidad de Madrid", + "1998-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1998-05-01": "Fiesta del Trabajo", + "1998-05-02": "Fiesta de la Comunidad de Madrid", + "1998-05-17": "D\u00eda de las Letras Gallegas", "1998-05-30": "D\u00eda de Canarias", "1998-05-31": "D\u00eda de Castilla La Mancha", "1998-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "1998-06-11": "Corpus Christi", "1998-06-24": "San Juan", - "1998-07-25": "D\u00eda Nacional de Galicia", + "1998-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1998-07-28": "D\u00eda de las Instituciones de Cantabria", - "1998-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1998-08-15": "Asunci\u00f3n de la Virgen", - "1998-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1998-09-06": "D\u00eda de Elcano", - "1998-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1998-09-11": "D\u00eda Nacional de Catalunya", - "1998-09-15": "D\u00eda de la Bien Aparecida", - "1998-09-17": "D\u00eda de Melilla", + "1998-09-02": "D\u00eda de Ceuta", + "1998-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1998-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1998-09-15": "La Bien Aparecida", "1998-10-09": "D\u00eda de la Comunidad Valenciana", - "1998-10-12": "D\u00eda de la Hispanidad", + "1998-10-12": "Fiesta Nacional de Espa\u00f1a", "1998-11-01": "Todos los Santos", "1998-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1998-12-08": "La Inmaculada Concepci\u00f3n", - "1998-12-25": "Navidad", + "1998-12-08": "Inmaculada Concepci\u00f3n", + "1998-12-25": "Natividad del Se\u00f1or", "1998-12-26": "San Esteban", "1999-01-01": "A\u00f1o nuevo", "1999-01-06": "Epifan\u00eda del Se\u00f1or", - "1999-02-28": "D\u00eda de Andalucia", - "1999-03-01": "D\u00eda de las Islas Baleares", + "1999-03-01": "D\u00eda de las Islas Baleares; Lunes siguiente a D\u00eda de Andalucia", "1999-03-19": "San Jos\u00e9", "1999-04-01": "Jueves Santo", "1999-04-02": "Viernes Santo", "1999-04-05": "Lunes de Pascua", - "1999-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "1999-05-01": "D\u00eda del Trabajador", - "1999-05-02": "D\u00eda de Comunidad de Madrid", - "1999-05-30": "D\u00eda de Canarias", - "1999-05-31": "D\u00eda de Castilla La Mancha", + "1999-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "1999-05-01": "Fiesta del Trabajo", + "1999-05-03": "Lunes siguiente a Fiesta de la Comunidad de Madrid", + "1999-05-17": "D\u00eda de las Letras Gallegas", + "1999-05-31": "D\u00eda de Castilla La Mancha; Lunes siguiente a D\u00eda de Canarias", + "1999-06-03": "Corpus Christi", "1999-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "1999-06-24": "San Juan", - "1999-07-25": "D\u00eda Nacional de Galicia", + "1999-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "1999-07-28": "D\u00eda de las Instituciones de Cantabria", - "1999-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "1999-08-15": "Asunci\u00f3n de la Virgen", - "1999-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "1999-09-06": "D\u00eda de Elcano", - "1999-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "1999-09-11": "D\u00eda Nacional de Catalunya", - "1999-09-15": "D\u00eda de la Bien Aparecida", - "1999-09-17": "D\u00eda de Melilla", + "1999-09-02": "D\u00eda de Ceuta", + "1999-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "1999-09-11": "Fiesta Nacional de Catalu\u00f1a", + "1999-09-15": "La Bien Aparecida", "1999-10-09": "D\u00eda de la Comunidad Valenciana", - "1999-10-12": "D\u00eda de la Hispanidad", + "1999-10-12": "Fiesta Nacional de Espa\u00f1a", "1999-11-01": "Todos los Santos", "1999-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "1999-12-08": "La Inmaculada Concepci\u00f3n", - "1999-12-25": "Navidad", + "1999-12-08": "Inmaculada Concepci\u00f3n", + "1999-12-25": "Natividad del Se\u00f1or", "1999-12-26": "San Esteban", "2000-01-01": "A\u00f1o nuevo", "2000-01-06": "Epifan\u00eda del Se\u00f1or", "2000-02-28": "D\u00eda de Andalucia", "2000-03-01": "D\u00eda de las Islas Baleares", "2000-03-19": "San Jos\u00e9", - "2000-03-20": "San Jos\u00e9 (Trasladado)", + "2000-03-20": "Lunes siguiente a San Jos\u00e9", "2000-04-20": "Jueves Santo", "2000-04-21": "Viernes Santo", - "2000-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2000-04-24": "Lunes de Pascua", - "2000-05-01": "D\u00eda del Trabajador", - "2000-05-02": "D\u00eda de Comunidad de Madrid", + "2000-04-24": "Lunes de Pascua; Lunes siguiente a D\u00eda de San Jorge; Lunes siguiente a Fiesta de la Comunidad Aut\u00f3noma", + "2000-05-01": "Fiesta del Trabajo", + "2000-05-02": "Fiesta de la Comunidad de Madrid", + "2000-05-17": "D\u00eda de las Letras Gallegas", "2000-05-30": "D\u00eda de Canarias", "2000-05-31": "D\u00eda de Castilla La Mancha", "2000-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2000-06-22": "Corpus Christi", "2000-06-24": "San Juan", - "2000-07-25": "D\u00eda Nacional de Galicia", + "2000-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2000-07-28": "D\u00eda de las Instituciones de Cantabria", - "2000-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2000-08-15": "Asunci\u00f3n de la Virgen", - "2000-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2000-09-06": "D\u00eda de Elcano", - "2000-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2000-09-11": "D\u00eda Nacional de Catalunya", - "2000-09-15": "D\u00eda de la Bien Aparecida", - "2000-09-17": "D\u00eda de Melilla", + "2000-09-02": "D\u00eda de Ceuta", + "2000-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2000-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2000-09-15": "La Bien Aparecida", "2000-10-09": "D\u00eda de la Comunidad Valenciana", - "2000-10-12": "D\u00eda de la Hispanidad", + "2000-10-12": "Fiesta Nacional de Espa\u00f1a", "2000-11-01": "Todos los Santos", "2000-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2000-12-08": "La Inmaculada Concepci\u00f3n", - "2000-12-25": "Navidad", + "2000-12-08": "Inmaculada Concepci\u00f3n", + "2000-12-25": "Natividad del Se\u00f1or", "2000-12-26": "San Esteban", "2001-01-01": "A\u00f1o nuevo", "2001-01-06": "Epifan\u00eda del Se\u00f1or", @@ -1644,29 +1574,28 @@ "2001-04-12": "Jueves Santo", "2001-04-13": "Viernes Santo", "2001-04-16": "Lunes de Pascua", - "2001-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2001-05-01": "D\u00eda del Trabajador", - "2001-05-02": "D\u00eda de Comunidad de Madrid", + "2001-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "2001-05-01": "Fiesta del Trabajo", + "2001-05-02": "Fiesta de la Comunidad de Madrid", + "2001-05-17": "D\u00eda de las Letras Gallegas", "2001-05-30": "D\u00eda de Canarias", "2001-05-31": "D\u00eda de Castilla La Mancha", "2001-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2001-06-14": "Corpus Christi", "2001-06-24": "San Juan", - "2001-07-25": "D\u00eda Nacional de Galicia", + "2001-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2001-07-28": "D\u00eda de las Instituciones de Cantabria", - "2001-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2001-08-15": "Asunci\u00f3n de la Virgen", - "2001-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2001-09-06": "D\u00eda de Elcano", - "2001-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2001-09-11": "D\u00eda Nacional de Catalunya", - "2001-09-15": "D\u00eda de la Bien Aparecida", - "2001-09-17": "D\u00eda de Melilla", + "2001-09-02": "D\u00eda de Ceuta", + "2001-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2001-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2001-09-15": "La Bien Aparecida", "2001-10-09": "D\u00eda de la Comunidad Valenciana", - "2001-10-12": "D\u00eda de la Hispanidad", + "2001-10-12": "Fiesta Nacional de Espa\u00f1a", "2001-11-01": "Todos los Santos", "2001-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2001-12-08": "La Inmaculada Concepci\u00f3n", - "2001-12-25": "Navidad", + "2001-12-08": "Inmaculada Concepci\u00f3n", + "2001-12-25": "Natividad del Se\u00f1or", "2001-12-26": "San Esteban", "2002-01-01": "A\u00f1o nuevo", "2002-01-06": "Epifan\u00eda del Se\u00f1or", @@ -1676,29 +1605,27 @@ "2002-03-28": "Jueves Santo", "2002-03-29": "Viernes Santo", "2002-04-01": "Lunes de Pascua", - "2002-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2002-05-01": "D\u00eda del Trabajador", - "2002-05-02": "D\u00eda de Comunidad de Madrid", - "2002-05-30": "D\u00eda de Canarias", + "2002-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "2002-05-01": "Fiesta del Trabajo", + "2002-05-02": "Fiesta de la Comunidad de Madrid", + "2002-05-17": "D\u00eda de las Letras Gallegas", + "2002-05-30": "Corpus Christi; D\u00eda de Canarias", "2002-05-31": "D\u00eda de Castilla La Mancha", - "2002-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2002-06-10": "Lunes siguiente a D\u00eda de La Rioja; Lunes siguiente a D\u00eda de la Regi\u00f3n de Murcia", "2002-06-24": "San Juan", - "2002-07-25": "D\u00eda Nacional de Galicia", + "2002-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2002-07-28": "D\u00eda de las Instituciones de Cantabria", - "2002-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2002-08-15": "Asunci\u00f3n de la Virgen", - "2002-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2002-09-06": "D\u00eda de Elcano", - "2002-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2002-09-11": "D\u00eda Nacional de Catalunya", - "2002-09-15": "D\u00eda de la Bien Aparecida", - "2002-09-17": "D\u00eda de Melilla", + "2002-09-02": "D\u00eda de Ceuta", + "2002-09-09": "Lunes siguiente a D\u00eda de Asturias; Lunes siguiente a D\u00eda de Extremadura", + "2002-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2002-09-15": "La Bien Aparecida", "2002-10-09": "D\u00eda de la Comunidad Valenciana", - "2002-10-12": "D\u00eda de la Hispanidad", + "2002-10-12": "Fiesta Nacional de Espa\u00f1a", "2002-11-01": "Todos los Santos", "2002-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2002-12-08": "La Inmaculada Concepci\u00f3n", - "2002-12-25": "Navidad", + "2002-12-08": "Inmaculada Concepci\u00f3n", + "2002-12-25": "Natividad del Se\u00f1or", "2002-12-26": "San Esteban", "2003-01-01": "A\u00f1o nuevo", "2003-01-06": "Epifan\u00eda del Se\u00f1or", @@ -1708,29 +1635,28 @@ "2003-04-17": "Jueves Santo", "2003-04-18": "Viernes Santo", "2003-04-21": "Lunes de Pascua", - "2003-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2003-05-01": "D\u00eda del Trabajador", - "2003-05-02": "D\u00eda de Comunidad de Madrid", + "2003-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "2003-05-01": "Fiesta del Trabajo", + "2003-05-02": "Fiesta de la Comunidad de Madrid", + "2003-05-17": "D\u00eda de las Letras Gallegas", "2003-05-30": "D\u00eda de Canarias", "2003-05-31": "D\u00eda de Castilla La Mancha", "2003-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2003-06-19": "Corpus Christi", "2003-06-24": "San Juan", - "2003-07-25": "D\u00eda Nacional de Galicia", + "2003-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2003-07-28": "D\u00eda de las Instituciones de Cantabria", - "2003-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2003-08-15": "Asunci\u00f3n de la Virgen", - "2003-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2003-09-06": "D\u00eda de Elcano", - "2003-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2003-09-11": "D\u00eda Nacional de Catalunya", - "2003-09-15": "D\u00eda de la Bien Aparecida", - "2003-09-17": "D\u00eda de Melilla", + "2003-09-02": "D\u00eda de Ceuta", + "2003-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2003-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2003-09-15": "La Bien Aparecida", "2003-10-09": "D\u00eda de la Comunidad Valenciana", - "2003-10-12": "D\u00eda de la Hispanidad", + "2003-10-12": "Fiesta Nacional de Espa\u00f1a", "2003-11-01": "Todos los Santos", "2003-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2003-12-08": "La Inmaculada Concepci\u00f3n", - "2003-12-25": "Navidad", + "2003-12-08": "Inmaculada Concepci\u00f3n", + "2003-12-25": "Natividad del Se\u00f1or", "2003-12-26": "San Esteban", "2004-01-01": "A\u00f1o nuevo", "2004-01-06": "Epifan\u00eda del Se\u00f1or", @@ -1740,29 +1666,27 @@ "2004-04-08": "Jueves Santo", "2004-04-09": "Viernes Santo", "2004-04-12": "Lunes de Pascua", - "2004-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2004-05-01": "D\u00eda del Trabajador", - "2004-05-02": "D\u00eda de Comunidad de Madrid", - "2004-05-30": "D\u00eda de Canarias", - "2004-05-31": "D\u00eda de Castilla La Mancha", + "2004-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "2004-05-01": "Fiesta del Trabajo", + "2004-05-03": "Lunes siguiente a Fiesta de la Comunidad de Madrid", + "2004-05-17": "D\u00eda de las Letras Gallegas", + "2004-05-31": "D\u00eda de Castilla La Mancha; Lunes siguiente a D\u00eda de Canarias", "2004-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2004-06-10": "Corpus Christi", "2004-06-24": "San Juan", - "2004-07-25": "D\u00eda Nacional de Galicia", + "2004-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2004-07-28": "D\u00eda de las Instituciones de Cantabria", - "2004-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2004-08-15": "Asunci\u00f3n de la Virgen", - "2004-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2004-09-06": "D\u00eda de Elcano", - "2004-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2004-09-11": "D\u00eda Nacional de Catalunya", - "2004-09-15": "D\u00eda de la Bien Aparecida", - "2004-09-17": "D\u00eda de Melilla", + "2004-09-02": "D\u00eda de Ceuta", + "2004-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2004-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2004-09-15": "La Bien Aparecida", "2004-10-09": "D\u00eda de la Comunidad Valenciana", - "2004-10-12": "D\u00eda de la Hispanidad", + "2004-10-12": "Fiesta Nacional de Espa\u00f1a", "2004-11-01": "Todos los Santos", "2004-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2004-12-08": "La Inmaculada Concepci\u00f3n", - "2004-12-25": "Navidad", + "2004-12-08": "Inmaculada Concepci\u00f3n", + "2004-12-25": "Natividad del Se\u00f1or", "2004-12-26": "San Esteban", "2005-01-01": "A\u00f1o nuevo", "2005-01-06": "Epifan\u00eda del Se\u00f1or", @@ -1772,62 +1696,60 @@ "2005-03-24": "Jueves Santo", "2005-03-25": "Viernes Santo", "2005-03-28": "Lunes de Pascua", - "2005-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2005-05-01": "D\u00eda del Trabajador", - "2005-05-02": "D\u00eda de Comunidad de Madrid", + "2005-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "2005-05-01": "Fiesta del Trabajo", + "2005-05-02": "Fiesta de la Comunidad de Madrid", + "2005-05-17": "D\u00eda de las Letras Gallegas", + "2005-05-26": "Corpus Christi", "2005-05-30": "D\u00eda de Canarias", "2005-05-31": "D\u00eda de Castilla La Mancha", "2005-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "2005-06-24": "San Juan", - "2005-07-25": "D\u00eda Nacional de Galicia", + "2005-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2005-07-28": "D\u00eda de las Instituciones de Cantabria", - "2005-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2005-08-15": "Asunci\u00f3n de la Virgen", - "2005-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2005-09-06": "D\u00eda de Elcano", - "2005-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2005-09-11": "D\u00eda Nacional de Catalunya", - "2005-09-15": "D\u00eda de la Bien Aparecida", - "2005-09-17": "D\u00eda de Melilla", + "2005-09-02": "D\u00eda de Ceuta", + "2005-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2005-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2005-09-15": "La Bien Aparecida", "2005-10-09": "D\u00eda de la Comunidad Valenciana", - "2005-10-12": "D\u00eda de la Hispanidad", + "2005-10-12": "Fiesta Nacional de Espa\u00f1a", "2005-11-01": "Todos los Santos", "2005-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2005-12-08": "La Inmaculada Concepci\u00f3n", - "2005-12-25": "Navidad", + "2005-12-08": "Inmaculada Concepci\u00f3n", + "2005-12-25": "Natividad del Se\u00f1or", "2005-12-26": "San Esteban", "2006-01-01": "A\u00f1o nuevo", "2006-01-06": "Epifan\u00eda del Se\u00f1or", "2006-02-28": "D\u00eda de Andalucia", "2006-03-01": "D\u00eda de las Islas Baleares", "2006-03-19": "San Jos\u00e9", - "2006-03-20": "San Jos\u00e9 (Trasladado)", + "2006-03-20": "Lunes siguiente a San Jos\u00e9", "2006-04-13": "Jueves Santo", "2006-04-14": "Viernes Santo", "2006-04-17": "Lunes de Pascua", - "2006-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2006-05-01": "D\u00eda del Trabajador", - "2006-05-02": "D\u00eda de Comunidad de Madrid", + "2006-04-24": "Lunes siguiente a D\u00eda de San Jorge; Lunes siguiente a Fiesta de la Comunidad Aut\u00f3noma", + "2006-05-01": "Fiesta del Trabajo", + "2006-05-02": "Fiesta de la Comunidad de Madrid", + "2006-05-17": "D\u00eda de las Letras Gallegas", "2006-05-30": "D\u00eda de Canarias", "2006-05-31": "D\u00eda de Castilla La Mancha", "2006-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2006-06-15": "Corpus Christi", "2006-06-24": "San Juan", - "2006-07-25": "D\u00eda Nacional de Galicia", + "2006-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2006-07-28": "D\u00eda de las Instituciones de Cantabria", - "2006-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2006-08-15": "Asunci\u00f3n de la Virgen", - "2006-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2006-09-06": "D\u00eda de Elcano", - "2006-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2006-09-11": "D\u00eda Nacional de Catalunya", - "2006-09-15": "D\u00eda de la Bien Aparecida", - "2006-09-17": "D\u00eda de Melilla", + "2006-09-02": "D\u00eda de Ceuta", + "2006-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2006-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2006-09-15": "La Bien Aparecida", "2006-10-09": "D\u00eda de la Comunidad Valenciana", - "2006-10-12": "D\u00eda de la Hispanidad", + "2006-10-12": "Fiesta Nacional de Espa\u00f1a", "2006-11-01": "Todos los Santos", "2006-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2006-12-08": "La Inmaculada Concepci\u00f3n", - "2006-12-25": "Navidad", + "2006-12-08": "Inmaculada Concepci\u00f3n", + "2006-12-25": "Natividad del Se\u00f1or", "2006-12-26": "San Esteban", "2007-01-01": "A\u00f1o nuevo", "2007-01-06": "Epifan\u00eda del Se\u00f1or", @@ -1837,29 +1759,28 @@ "2007-04-05": "Jueves Santo", "2007-04-06": "Viernes Santo", "2007-04-09": "Lunes de Pascua", - "2007-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2007-05-01": "D\u00eda del Trabajador", - "2007-05-02": "D\u00eda de Comunidad de Madrid", + "2007-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "2007-05-01": "Fiesta del Trabajo", + "2007-05-02": "Fiesta de la Comunidad de Madrid", + "2007-05-17": "D\u00eda de las Letras Gallegas", "2007-05-30": "D\u00eda de Canarias", "2007-05-31": "D\u00eda de Castilla La Mancha", + "2007-06-07": "Corpus Christi", "2007-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "2007-06-24": "San Juan", - "2007-07-25": "D\u00eda Nacional de Galicia", + "2007-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2007-07-28": "D\u00eda de las Instituciones de Cantabria", - "2007-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2007-08-15": "Asunci\u00f3n de la Virgen", - "2007-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2007-09-06": "D\u00eda de Elcano", - "2007-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2007-09-11": "D\u00eda Nacional de Catalunya", - "2007-09-15": "D\u00eda de la Bien Aparecida", - "2007-09-17": "D\u00eda de Melilla", + "2007-09-02": "D\u00eda de Ceuta", + "2007-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2007-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2007-09-15": "La Bien Aparecida", "2007-10-09": "D\u00eda de la Comunidad Valenciana", - "2007-10-12": "D\u00eda de la Hispanidad", + "2007-10-12": "Fiesta Nacional de Espa\u00f1a", "2007-11-01": "Todos los Santos", "2007-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2007-12-08": "La Inmaculada Concepci\u00f3n", - "2007-12-25": "Navidad", + "2007-12-08": "Inmaculada Concepci\u00f3n", + "2007-12-25": "Natividad del Se\u00f1or", "2007-12-26": "San Esteban", "2008-01-01": "A\u00f1o nuevo", "2008-01-06": "Epifan\u00eda del Se\u00f1or", @@ -1869,29 +1790,28 @@ "2008-03-20": "Jueves Santo", "2008-03-21": "Viernes Santo", "2008-03-24": "Lunes de Pascua", - "2008-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2008-05-01": "D\u00eda del Trabajador", - "2008-05-02": "D\u00eda de Comunidad de Madrid", + "2008-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "2008-05-01": "Fiesta del Trabajo", + "2008-05-02": "Fiesta de la Comunidad de Madrid", + "2008-05-17": "D\u00eda de las Letras Gallegas", + "2008-05-22": "Corpus Christi", "2008-05-30": "D\u00eda de Canarias", "2008-05-31": "D\u00eda de Castilla La Mancha", "2008-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "2008-06-24": "San Juan", - "2008-07-25": "D\u00eda Nacional de Galicia", + "2008-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2008-07-28": "D\u00eda de las Instituciones de Cantabria", - "2008-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2008-08-15": "Asunci\u00f3n de la Virgen", - "2008-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2008-09-06": "D\u00eda de Elcano", - "2008-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2008-09-11": "D\u00eda Nacional de Catalunya", - "2008-09-15": "D\u00eda de la Bien Aparecida", - "2008-09-17": "D\u00eda de Melilla", + "2008-09-02": "D\u00eda de Ceuta", + "2008-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2008-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2008-09-15": "La Bien Aparecida", "2008-10-09": "D\u00eda de la Comunidad Valenciana", - "2008-10-12": "D\u00eda de la Hispanidad", + "2008-10-12": "Fiesta Nacional de Espa\u00f1a", "2008-11-01": "Todos los Santos", "2008-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2008-12-08": "La Inmaculada Concepci\u00f3n", - "2008-12-25": "Navidad", + "2008-12-08": "Inmaculada Concepci\u00f3n", + "2008-12-25": "Natividad del Se\u00f1or", "2008-12-26": "San Esteban", "2009-01-01": "A\u00f1o nuevo", "2009-01-06": "Epifan\u00eda del Se\u00f1or", @@ -1901,62 +1821,57 @@ "2009-04-09": "Jueves Santo", "2009-04-10": "Viernes Santo", "2009-04-13": "Lunes de Pascua", - "2009-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2009-05-01": "D\u00eda del Trabajador", - "2009-05-02": "D\u00eda de Comunidad de Madrid", + "2009-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "2009-05-01": "Fiesta del Trabajo", + "2009-05-02": "Fiesta de la Comunidad de Madrid", + "2009-05-17": "D\u00eda de las Letras Gallegas", "2009-05-30": "D\u00eda de Canarias", "2009-05-31": "D\u00eda de Castilla La Mancha", "2009-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2009-06-11": "Corpus Christi", "2009-06-24": "San Juan", - "2009-07-25": "D\u00eda Nacional de Galicia", + "2009-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2009-07-28": "D\u00eda de las Instituciones de Cantabria", - "2009-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2009-08-15": "Asunci\u00f3n de la Virgen", - "2009-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2009-09-06": "D\u00eda de Elcano", - "2009-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2009-09-11": "D\u00eda Nacional de Catalunya", - "2009-09-15": "D\u00eda de la Bien Aparecida", - "2009-09-17": "D\u00eda de Melilla", + "2009-09-02": "D\u00eda de Ceuta", + "2009-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2009-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2009-09-15": "La Bien Aparecida", "2009-10-09": "D\u00eda de la Comunidad Valenciana", - "2009-10-12": "D\u00eda de la Hispanidad", + "2009-10-12": "Fiesta Nacional de Espa\u00f1a", "2009-11-01": "Todos los Santos", "2009-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2009-12-08": "La Inmaculada Concepci\u00f3n", - "2009-12-25": "Navidad", + "2009-12-08": "Inmaculada Concepci\u00f3n", + "2009-12-25": "Natividad del Se\u00f1or", "2009-12-26": "San Esteban", "2010-01-01": "A\u00f1o nuevo", "2010-01-06": "Epifan\u00eda del Se\u00f1or", - "2010-02-28": "D\u00eda de Andalucia", - "2010-03-01": "D\u00eda de las Islas Baleares", + "2010-03-01": "D\u00eda de las Islas Baleares; Lunes siguiente a D\u00eda de Andalucia", "2010-03-19": "San Jos\u00e9", "2010-04-01": "Jueves Santo", "2010-04-02": "Viernes Santo", "2010-04-05": "Lunes de Pascua", - "2010-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2010-05-01": "D\u00eda del Trabajador", - "2010-05-02": "D\u00eda de Comunidad de Madrid", - "2010-05-30": "D\u00eda de Canarias", - "2010-05-31": "D\u00eda de Castilla La Mancha", + "2010-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "2010-05-01": "Fiesta del Trabajo", + "2010-05-17": "D\u00eda de las Letras Gallegas", + "2010-05-31": "D\u00eda de Castilla La Mancha; Lunes siguiente a D\u00eda de Canarias", + "2010-06-03": "Corpus Christi", "2010-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "2010-06-24": "San Juan", "2010-07-25": "D\u00eda Nacional de Galicia", "2010-07-28": "D\u00eda de las Instituciones de Cantabria", - "2010-08-05": "Nuestra Se\u00f1ora de \u00c1frica", - "2010-08-15": "Asunci\u00f3n de la Virgen", - "2010-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2010-09-06": "D\u00eda de Elcano", - "2010-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2010-09-11": "D\u00eda Nacional de Catalunya", - "2010-09-15": "D\u00eda de la Bien Aparecida", - "2010-09-17": "D\u00eda de Melilla", + "2010-08-16": "Lunes siguiente a Asunci\u00f3n de la Virgen", + "2010-09-02": "D\u00eda de Ceuta", + "2010-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2010-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2010-09-15": "La Bien Aparecida", "2010-10-09": "D\u00eda de la Comunidad Valenciana", - "2010-10-12": "D\u00eda de la Hispanidad", + "2010-10-12": "Fiesta Nacional de Espa\u00f1a", "2010-11-01": "Todos los Santos", + "2010-11-17": "Eid al-Adha", "2010-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2010-12-08": "La Inmaculada Concepci\u00f3n", - "2010-12-25": "Navidad", - "2010-12-26": "San Esteban", + "2010-12-08": "Inmaculada Concepci\u00f3n", + "2010-12-25": "Natividad del Se\u00f1or", "2011-01-01": "A\u00f1o nuevo", "2011-01-06": "Epifan\u00eda del Se\u00f1or", "2011-02-28": "D\u00eda de Andalucia", @@ -1964,33 +1879,29 @@ "2011-03-19": "San Jos\u00e9", "2011-04-21": "Jueves Santo", "2011-04-22": "Viernes Santo", - "2011-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", + "2011-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", "2011-04-25": "Lunes de Pascua", - "2011-05-01": "D\u00eda del Trabajador", - "2011-05-02": "D\u00eda de Comunidad de Madrid", + "2011-05-02": "Fiesta de la Comunidad de Madrid; Lunes siguiente a Fiesta del Trabajo", + "2011-05-17": "D\u00eda de las Letras Gallegas", "2011-05-30": "D\u00eda de Canarias", "2011-05-31": "D\u00eda de Castilla La Mancha", "2011-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2011-06-13": "D\u00eda de la Pascua Granada", + "2011-06-23": "Corpus Christi", "2011-06-24": "San Juan", - "2011-07-25": "D\u00eda Nacional de Galicia", + "2011-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2011-07-28": "D\u00eda de las Instituciones de Cantabria", - "2011-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2011-08-15": "Asunci\u00f3n de la Virgen", - "2011-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2011-09-06": "D\u00eda de Elcano", - "2011-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2011-09-11": "D\u00eda Nacional de Catalunya", - "2011-09-15": "D\u00eda de la Bien Aparecida", - "2011-09-17": "D\u00eda de Melilla", - "2011-10-09": "D\u00eda de la Comunidad Valenciana", - "2011-10-12": "D\u00eda de la Hispanidad", + "2011-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2011-09-15": "La Bien Aparecida", + "2011-10-12": "Fiesta Nacional de Espa\u00f1a", "2011-10-25": "D\u00eda del Pa\u00eds Vasco", "2011-11-01": "Todos los Santos", + "2011-11-07": "Eid al-Adha", "2011-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2011-12-08": "La Inmaculada Concepci\u00f3n", - "2011-12-25": "Navidad", - "2011-12-26": "San Esteban", - "2012-01-01": "A\u00f1o nuevo", + "2011-12-08": "Inmaculada Concepci\u00f3n", + "2011-12-26": "Lunes siguiente a Natividad del Se\u00f1or; San Esteban", + "2012-01-02": "Lunes siguiente a A\u00f1o nuevo", "2012-01-06": "Epifan\u00eda del Se\u00f1or", "2012-02-28": "D\u00eda de Andalucia", "2012-03-01": "D\u00eda de las Islas Baleares", @@ -1998,63 +1909,60 @@ "2012-04-05": "Jueves Santo", "2012-04-06": "Viernes Santo", "2012-04-09": "Lunes de Pascua", - "2012-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2012-05-01": "D\u00eda del Trabajador", - "2012-05-02": "D\u00eda de Comunidad de Madrid", + "2012-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "2012-05-01": "Fiesta del Trabajo", + "2012-05-02": "Fiesta de la Comunidad de Madrid", + "2012-05-17": "D\u00eda de las Letras Gallegas", "2012-05-30": "D\u00eda de Canarias", "2012-05-31": "D\u00eda de Castilla La Mancha", + "2012-06-07": "Corpus Christi", "2012-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", - "2012-06-24": "San Juan", - "2012-07-25": "D\u00eda Nacional de Galicia", - "2012-07-28": "D\u00eda de las Instituciones de Cantabria", - "2012-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2012-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2012-08-15": "Asunci\u00f3n de la Virgen", - "2012-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2012-09-06": "D\u00eda de Elcano", - "2012-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2012-09-11": "D\u00eda Nacional de Catalunya", - "2012-09-15": "D\u00eda de la Bien Aparecida", - "2012-09-17": "D\u00eda de Melilla", + "2012-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2012-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2012-09-15": "La Bien Aparecida", "2012-10-09": "D\u00eda de la Comunidad Valenciana", - "2012-10-12": "D\u00eda de la Hispanidad", + "2012-10-12": "Fiesta Nacional de Espa\u00f1a", "2012-10-25": "D\u00eda del Pa\u00eds Vasco", + "2012-10-26": "Eid al-Adha", + "2012-10-27": "Eid al-Adha", "2012-11-01": "Todos los Santos", "2012-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2012-12-08": "La Inmaculada Concepci\u00f3n", - "2012-12-25": "Navidad", + "2012-12-08": "Inmaculada Concepci\u00f3n", + "2012-12-25": "Natividad del Se\u00f1or", "2012-12-26": "San Esteban", "2013-01-01": "A\u00f1o nuevo", - "2013-01-06": "Epifan\u00eda del Se\u00f1or", + "2013-01-07": "Lunes siguiente a Epifan\u00eda del Se\u00f1or", "2013-02-28": "D\u00eda de Andalucia", "2013-03-01": "D\u00eda de las Islas Baleares", + "2013-03-18": "Lunes de Fallas; Traslado de San Jos\u00e9", "2013-03-19": "San Jos\u00e9", "2013-03-28": "Jueves Santo", "2013-03-29": "Viernes Santo", "2013-04-01": "Lunes de Pascua", - "2013-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2013-05-01": "D\u00eda del Trabajador", - "2013-05-02": "D\u00eda de Comunidad de Madrid", - "2013-05-30": "D\u00eda de Canarias", + "2013-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "2013-05-01": "Fiesta del Trabajo", + "2013-05-02": "Fiesta de la Comunidad de Madrid", + "2013-05-17": "D\u00eda de las Letras Gallegas", + "2013-05-30": "Corpus Christi; D\u00eda de Canarias", "2013-05-31": "D\u00eda de Castilla La Mancha", - "2013-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2013-06-10": "Lunes siguiente a D\u00eda de La Rioja", "2013-06-24": "San Juan", - "2013-07-25": "D\u00eda Nacional de Galicia", + "2013-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2013-07-28": "D\u00eda de las Instituciones de Cantabria", - "2013-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2013-08-15": "Asunci\u00f3n de la Virgen", - "2013-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2013-09-06": "D\u00eda de Elcano", - "2013-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2013-09-11": "D\u00eda Nacional de Catalunya", - "2013-09-15": "D\u00eda de la Bien Aparecida", - "2013-09-17": "D\u00eda de Melilla", + "2013-09-02": "D\u00eda de Ceuta", + "2013-09-09": "Lunes siguiente a D\u00eda de Asturias; Lunes siguiente a D\u00eda de Extremadura", + "2013-09-11": "Fiesta Nacional de Catalu\u00f1a", "2013-10-09": "D\u00eda de la Comunidad Valenciana", - "2013-10-12": "D\u00eda de la Hispanidad", + "2013-10-12": "Fiesta Nacional de Espa\u00f1a", + "2013-10-15": "Eid al-Adha", "2013-10-25": "D\u00eda del Pa\u00eds Vasco", "2013-11-01": "Todos los Santos", "2013-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2013-12-08": "La Inmaculada Concepci\u00f3n", - "2013-12-25": "Navidad", + "2013-12-09": "Lunes siguiente a Inmaculada Concepci\u00f3n", + "2013-12-25": "Natividad del Se\u00f1or", "2013-12-26": "San Esteban", "2014-01-01": "A\u00f1o nuevo", "2014-01-06": "Epifan\u00eda del Se\u00f1or", @@ -2064,125 +1972,122 @@ "2014-04-17": "Jueves Santo", "2014-04-18": "Viernes Santo", "2014-04-21": "Lunes de Pascua", - "2014-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2014-05-01": "D\u00eda del Trabajador", - "2014-05-02": "D\u00eda de Comunidad de Madrid", + "2014-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "2014-05-01": "Fiesta del Trabajo", + "2014-05-02": "Fiesta de la Comunidad de Madrid", + "2014-05-17": "D\u00eda de las Letras Gallegas", "2014-05-30": "D\u00eda de Canarias", "2014-05-31": "D\u00eda de Castilla La Mancha", "2014-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2014-06-19": "Corpus Christi", "2014-06-24": "San Juan", - "2014-07-25": "D\u00eda Nacional de Galicia", + "2014-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2014-07-28": "D\u00eda de las Instituciones de Cantabria", - "2014-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2014-08-15": "Asunci\u00f3n de la Virgen", - "2014-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2014-09-06": "D\u00eda de Elcano", - "2014-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2014-09-11": "D\u00eda Nacional de Catalunya", - "2014-09-15": "D\u00eda de la Bien Aparecida", - "2014-09-17": "D\u00eda de Melilla", + "2014-09-02": "D\u00eda de Ceuta", + "2014-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2014-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2014-09-15": "La Bien Aparecida", + "2014-10-04": "Eid al-Adha", + "2014-10-06": "Eid al-Adha", "2014-10-09": "D\u00eda de la Comunidad Valenciana", - "2014-10-12": "D\u00eda de la Hispanidad", + "2014-10-13": "Lunes siguiente a Fiesta Nacional de Espa\u00f1a", + "2014-10-25": "D\u00eda del Pa\u00eds Vasco", "2014-11-01": "Todos los Santos", "2014-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2014-12-08": "La Inmaculada Concepci\u00f3n", - "2014-12-25": "Navidad", + "2014-12-08": "Inmaculada Concepci\u00f3n", + "2014-12-25": "Natividad del Se\u00f1or", "2014-12-26": "San Esteban", "2015-01-01": "A\u00f1o nuevo", "2015-01-06": "Epifan\u00eda del Se\u00f1or", "2015-02-28": "D\u00eda de Andalucia", - "2015-03-01": "D\u00eda de las Islas Baleares", "2015-03-19": "San Jos\u00e9", + "2015-03-20": "D\u00eda siguiente a San Jos\u00e9", "2015-04-02": "Jueves Santo", "2015-04-03": "Viernes Santo", "2015-04-06": "Lunes de Pascua", - "2015-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2015-05-01": "D\u00eda del Trabajador", - "2015-05-02": "D\u00eda de Comunidad de Madrid", + "2015-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "2015-05-01": "Fiesta del Trabajo", + "2015-05-02": "Fiesta de la Comunidad de Madrid", "2015-05-30": "D\u00eda de Canarias", - "2015-05-31": "D\u00eda de Castilla La Mancha", + "2015-06-04": "Corpus Christi", "2015-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "2015-06-24": "San Juan", - "2015-07-25": "D\u00eda Nacional de Galicia", - "2015-07-28": "D\u00eda de las Instituciones de Cantabria", - "2015-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2015-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2015-08-15": "Asunci\u00f3n de la Virgen", - "2015-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2015-09-06": "D\u00eda de Elcano", - "2015-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2015-09-11": "D\u00eda Nacional de Catalunya", - "2015-09-15": "D\u00eda de la Bien Aparecida", - "2015-09-17": "D\u00eda de Melilla", + "2015-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2015-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2015-09-15": "La Bien Aparecida", + "2015-09-25": "Eid al-Adha", "2015-10-09": "D\u00eda de la Comunidad Valenciana", - "2015-10-12": "D\u00eda de la Hispanidad", - "2015-11-01": "Todos los Santos", - "2015-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2015-12-08": "La Inmaculada Concepci\u00f3n", - "2015-12-25": "Navidad", + "2015-10-12": "Fiesta Nacional de Espa\u00f1a", + "2015-11-02": "Lunes siguiente a Todos los Santos", + "2015-12-07": "Lunes siguiente a D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2015-12-08": "Inmaculada Concepci\u00f3n", + "2015-12-25": "Natividad del Se\u00f1or", "2015-12-26": "San Esteban", "2016-01-01": "A\u00f1o nuevo", "2016-01-06": "Epifan\u00eda del Se\u00f1or", - "2016-02-28": "D\u00eda de Andalucia", + "2016-02-29": "Lunes siguiente a D\u00eda de Andalucia", "2016-03-01": "D\u00eda de las Islas Baleares", "2016-03-19": "San Jos\u00e9", "2016-03-24": "Jueves Santo", "2016-03-25": "Viernes Santo", "2016-03-28": "Lunes de Pascua", - "2016-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2016-05-01": "D\u00eda del Trabajador", - "2016-05-02": "D\u00eda de Comunidad de Madrid", + "2016-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "2016-05-02": "Fiesta de la Comunidad de Madrid; Lunes siguiente a Fiesta del Trabajo", + "2016-05-16": "D\u00eda de la Pascua Granada", + "2016-05-17": "D\u00eda de las Letras Gallegas", + "2016-05-26": "Corpus Christi", "2016-05-30": "D\u00eda de Canarias", "2016-05-31": "D\u00eda de Castilla La Mancha", "2016-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "2016-06-24": "San Juan", - "2016-07-25": "D\u00eda Nacional de Galicia", + "2016-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2016-07-28": "D\u00eda de las Instituciones de Cantabria", - "2016-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2016-08-15": "Asunci\u00f3n de la Virgen", - "2016-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2016-09-06": "D\u00eda de Elcano", - "2016-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2016-09-11": "D\u00eda Nacional de Catalunya", - "2016-09-15": "D\u00eda de la Bien Aparecida", - "2016-09-17": "D\u00eda de Melilla", - "2016-10-09": "D\u00eda de la Comunidad Valenciana", - "2016-10-12": "D\u00eda de la Hispanidad", + "2016-09-02": "D\u00eda de Ceuta", + "2016-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2016-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2016-09-12": "Eid al-Adha", + "2016-09-15": "La Bien Aparecida", + "2016-10-07": "80 Aniversario del primer Gobierno Vasco", + "2016-10-12": "Fiesta Nacional de Espa\u00f1a", "2016-11-01": "Todos los Santos", "2016-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2016-12-08": "La Inmaculada Concepci\u00f3n", - "2016-12-25": "Navidad", - "2016-12-26": "San Esteban", - "2017-01-01": "A\u00f1o nuevo", + "2016-12-08": "Inmaculada Concepci\u00f3n", + "2016-12-26": "Lunes siguiente a Natividad del Se\u00f1or; San Esteban", + "2017-01-02": "Lunes siguiente a A\u00f1o nuevo", "2017-01-06": "Epifan\u00eda del Se\u00f1or", "2017-02-28": "D\u00eda de Andalucia", "2017-03-01": "D\u00eda de las Islas Baleares", - "2017-03-19": "San Jos\u00e9", + "2017-03-20": "Lunes siguiente a San Jos\u00e9", "2017-04-13": "Jueves Santo", "2017-04-14": "Viernes Santo", "2017-04-17": "Lunes de Pascua", - "2017-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2017-05-01": "D\u00eda del Trabajador", - "2017-05-02": "D\u00eda de Comunidad de Madrid", + "2017-04-24": "Lunes siguiente a D\u00eda de San Jorge; Lunes siguiente a Fiesta de la Comunidad Aut\u00f3noma", + "2017-05-01": "Fiesta del Trabajo", + "2017-05-02": "Fiesta de la Comunidad de Madrid", + "2017-05-17": "D\u00eda de las Letras Gallegas", "2017-05-30": "D\u00eda de Canarias", "2017-05-31": "D\u00eda de Castilla La Mancha", "2017-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2017-06-15": "Corpus Christi", "2017-06-24": "San Juan", - "2017-07-25": "D\u00eda Nacional de Galicia", + "2017-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2017-07-28": "D\u00eda de las Instituciones de Cantabria", - "2017-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2017-08-15": "Asunci\u00f3n de la Virgen", - "2017-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2017-09-06": "D\u00eda de Elcano", - "2017-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2017-09-11": "D\u00eda Nacional de Catalunya", - "2017-09-15": "D\u00eda de la Bien Aparecida", - "2017-09-17": "D\u00eda de Melilla", + "2017-09-01": "Eid al-Adha", + "2017-09-02": "D\u00eda de Ceuta", + "2017-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2017-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2017-09-15": "La Bien Aparecida", "2017-10-09": "D\u00eda de la Comunidad Valenciana", - "2017-10-12": "D\u00eda de la Hispanidad", + "2017-10-12": "Fiesta Nacional de Espa\u00f1a", "2017-11-01": "Todos los Santos", "2017-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2017-12-08": "La Inmaculada Concepci\u00f3n", - "2017-12-25": "Navidad", + "2017-12-08": "Inmaculada Concepci\u00f3n", + "2017-12-25": "Natividad del Se\u00f1or", "2017-12-26": "San Esteban", "2018-01-01": "A\u00f1o nuevo", "2018-01-06": "Epifan\u00eda del Se\u00f1or", @@ -2192,126 +2097,117 @@ "2018-03-29": "Jueves Santo", "2018-03-30": "Viernes Santo", "2018-04-02": "Lunes de Pascua", - "2018-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2018-05-01": "D\u00eda del Trabajador", - "2018-05-02": "D\u00eda de Comunidad de Madrid", + "2018-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "2018-05-01": "Fiesta del Trabajo", + "2018-05-02": "Fiesta de la Comunidad de Madrid", + "2018-05-17": "D\u00eda de las Letras Gallegas", "2018-05-30": "D\u00eda de Canarias", "2018-05-31": "D\u00eda de Castilla La Mancha", "2018-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", - "2018-06-24": "San Juan", "2018-07-25": "D\u00eda Nacional de Galicia", "2018-07-28": "D\u00eda de las Instituciones de Cantabria", - "2018-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2018-08-15": "Asunci\u00f3n de la Virgen", - "2018-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2018-09-06": "D\u00eda de Elcano", - "2018-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2018-09-11": "D\u00eda Nacional de Catalunya", - "2018-09-15": "D\u00eda de la Bien Aparecida", - "2018-09-17": "D\u00eda de Melilla", + "2018-08-22": "Eid al-Adha", + "2018-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2018-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2018-09-15": "La Bien Aparecida", "2018-10-09": "D\u00eda de la Comunidad Valenciana", - "2018-10-12": "D\u00eda de la Hispanidad", + "2018-10-12": "Fiesta Nacional de Espa\u00f1a", "2018-11-01": "Todos los Santos", "2018-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2018-12-08": "La Inmaculada Concepci\u00f3n", - "2018-12-25": "Navidad", + "2018-12-08": "Inmaculada Concepci\u00f3n", + "2018-12-25": "Natividad del Se\u00f1or", "2018-12-26": "San Esteban", "2019-01-01": "A\u00f1o nuevo", - "2019-01-06": "Epifan\u00eda del Se\u00f1or", + "2019-01-07": "Lunes siguiente a Epifan\u00eda del Se\u00f1or", "2019-02-28": "D\u00eda de Andalucia", "2019-03-01": "D\u00eda de las Islas Baleares", "2019-03-19": "San Jos\u00e9", "2019-04-18": "Jueves Santo", "2019-04-19": "Viernes Santo", "2019-04-22": "Lunes de Pascua", - "2019-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2019-05-01": "D\u00eda del Trabajador", - "2019-05-02": "D\u00eda de Comunidad de Madrid", + "2019-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "2019-05-01": "Fiesta del Trabajo", + "2019-05-02": "Fiesta de la Comunidad de Madrid", + "2019-05-17": "D\u00eda de las Letras Gallegas", "2019-05-30": "D\u00eda de Canarias", "2019-05-31": "D\u00eda de Castilla La Mancha", - "2019-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2019-06-10": "Lunes siguiente a D\u00eda de La Rioja; Lunes siguiente a D\u00eda de la Regi\u00f3n de Murcia", + "2019-06-20": "Corpus Christi", "2019-06-24": "San Juan", - "2019-07-25": "D\u00eda Nacional de Galicia", - "2019-07-28": "D\u00eda de las Instituciones de Cantabria", - "2019-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2019-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", + "2019-08-12": "Eid al-Adha", "2019-08-15": "Asunci\u00f3n de la Virgen", - "2019-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2019-09-06": "D\u00eda de Elcano", - "2019-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2019-09-11": "D\u00eda Nacional de Catalunya", - "2019-09-15": "D\u00eda de la Bien Aparecida", - "2019-09-17": "D\u00eda de Melilla", + "2019-09-02": "D\u00eda de Ceuta", + "2019-09-09": "Lunes siguiente a D\u00eda de Asturias; Lunes siguiente a D\u00eda de Extremadura", + "2019-09-11": "Fiesta Nacional de Catalu\u00f1a", "2019-10-09": "D\u00eda de la Comunidad Valenciana", - "2019-10-12": "D\u00eda de la Hispanidad", + "2019-10-12": "Fiesta Nacional de Espa\u00f1a", "2019-11-01": "Todos los Santos", "2019-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2019-12-08": "La Inmaculada Concepci\u00f3n", - "2019-12-25": "Navidad", + "2019-12-09": "Lunes siguiente a Inmaculada Concepci\u00f3n", + "2019-12-25": "Natividad del Se\u00f1or", "2019-12-26": "San Esteban", "2020-01-01": "A\u00f1o nuevo", "2020-01-06": "Epifan\u00eda del Se\u00f1or", "2020-02-28": "D\u00eda de Andalucia", - "2020-03-01": "D\u00eda de las Islas Baleares", + "2020-03-13": "Estatuto de Autonom\u00eda de la Ciudad de Melilla", "2020-03-19": "San Jos\u00e9", "2020-04-09": "Jueves Santo", "2020-04-10": "Viernes Santo", "2020-04-13": "Lunes de Pascua", - "2020-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2020-05-01": "D\u00eda del Trabajador", - "2020-05-02": "D\u00eda de Comunidad de Madrid", + "2020-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "2020-05-01": "Fiesta del Trabajo", + "2020-05-02": "Fiesta de la Comunidad de Madrid", "2020-05-30": "D\u00eda de Canarias", - "2020-05-31": "D\u00eda de Castilla La Mancha", "2020-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2020-06-11": "Corpus Christi", "2020-06-24": "San Juan", - "2020-07-25": "D\u00eda Nacional de Galicia", + "2020-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2020-07-28": "D\u00eda de las Instituciones de Cantabria", - "2020-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2020-07-31": "Eid al-Adha", "2020-08-15": "Asunci\u00f3n de la Virgen", - "2020-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2020-09-06": "D\u00eda de Elcano", - "2020-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2020-09-11": "D\u00eda Nacional de Catalunya", - "2020-09-15": "D\u00eda de la Bien Aparecida", - "2020-09-17": "D\u00eda de Melilla", + "2020-09-02": "D\u00eda de Ceuta", + "2020-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2020-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2020-09-15": "La Bien Aparecida", "2020-10-09": "D\u00eda de la Comunidad Valenciana", - "2020-10-12": "D\u00eda de la Hispanidad", - "2020-11-01": "Todos los Santos", - "2020-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2020-12-08": "La Inmaculada Concepci\u00f3n", - "2020-12-25": "Navidad", + "2020-10-12": "Fiesta Nacional de Espa\u00f1a", + "2020-11-02": "Lunes siguiente a Todos los Santos", + "2020-12-07": "Lunes siguiente a D\u00eda de la Constituci\u00f3n Espa\u00f1ola", + "2020-12-08": "Inmaculada Concepci\u00f3n", + "2020-12-25": "Natividad del Se\u00f1or", "2020-12-26": "San Esteban", "2021-01-01": "A\u00f1o nuevo", "2021-01-06": "Epifan\u00eda del Se\u00f1or", - "2021-02-28": "D\u00eda de Andalucia", - "2021-03-01": "D\u00eda de las Islas Baleares", + "2021-03-01": "D\u00eda de las Islas Baleares; Lunes siguiente a D\u00eda de Andalucia", + "2021-03-13": "Estatuto de Autonom\u00eda de la Ciudad de Melilla", "2021-03-19": "San Jos\u00e9", "2021-04-01": "Jueves Santo", "2021-04-02": "Viernes Santo", "2021-04-05": "Lunes de Pascua", - "2021-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2021-05-01": "D\u00eda del Trabajador", - "2021-05-02": "D\u00eda de Comunidad de Madrid", - "2021-05-30": "D\u00eda de Canarias", + "2021-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "2021-05-01": "Fiesta del Trabajo", + "2021-05-03": "Lunes siguiente a Fiesta de la Comunidad de Madrid", + "2021-05-17": "D\u00eda de las Letras Gallegas", "2021-05-31": "D\u00eda de Castilla La Mancha", + "2021-06-03": "Corpus Christi", "2021-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "2021-06-24": "San Juan", - "2021-07-25": "D\u00eda Nacional de Galicia", + "2021-07-20": "Eid al-Adha", + "2021-07-21": "Eid al-Adha", "2021-07-28": "D\u00eda de las Instituciones de Cantabria", - "2021-08-05": "Nuestra Se\u00f1ora de \u00c1frica", - "2021-08-15": "Asunci\u00f3n de la Virgen", - "2021-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2021-09-06": "D\u00eda de Elcano", - "2021-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2021-09-11": "D\u00eda Nacional de Catalunya", - "2021-09-15": "D\u00eda de la Bien Aparecida", - "2021-09-17": "D\u00eda de Melilla", + "2021-08-16": "Lunes siguiente a Asunci\u00f3n de la Virgen", + "2021-09-02": "D\u00eda de Ceuta", + "2021-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2021-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2021-09-15": "La Bien Aparecida", "2021-10-09": "D\u00eda de la Comunidad Valenciana", - "2021-10-12": "D\u00eda de la Hispanidad", + "2021-10-12": "Fiesta Nacional de Espa\u00f1a", "2021-11-01": "Todos los Santos", "2021-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2021-12-08": "La Inmaculada Concepci\u00f3n", - "2021-12-25": "Navidad", - "2021-12-26": "San Esteban", + "2021-12-08": "Inmaculada Concepci\u00f3n", + "2021-12-25": "Natividad del Se\u00f1or", "2022-01-01": "A\u00f1o nuevo", "2022-01-06": "Epifan\u00eda del Se\u00f1or", "2022-02-28": "D\u00eda de Andalucia", @@ -2320,71 +2216,65 @@ "2022-04-14": "Jueves Santo", "2022-04-15": "Viernes Santo", "2022-04-18": "Lunes de Pascua", - "2022-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2022-05-01": "D\u00eda del Trabajador", - "2022-05-02": "D\u00eda de Comunidad de Madrid; D\u00eda del Trabajador (Trasladado)", - "2022-05-03": "Eid al-Fitr* (*estimated)", - "2022-05-17": "D\u00eda de las letras Gallegas", + "2022-04-23": "D\u00eda de San Jorge; Fiesta de la Comunidad Aut\u00f3noma", + "2022-05-02": "Fiesta de la Comunidad de Madrid; Lunes siguiente a Fiesta del Trabajo", + "2022-05-03": "Eid al-Fitr", + "2022-05-17": "D\u00eda de las Letras Gallegas", "2022-05-30": "D\u00eda de Canarias", "2022-05-31": "D\u00eda de Castilla La Mancha", "2022-06-06": "D\u00eda de la Pascua Granada", "2022-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "2022-06-16": "Corpus Christi", "2022-06-24": "San Juan", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-11": "Eid al-Adha* (*estimated)", - "2022-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2022-07-09": "Eid al-Adha", + "2022-07-11": "Eid al-Adha", + "2022-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2022-07-28": "D\u00eda de las Instituciones de Cantabria", "2022-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2022-08-15": "Asunci\u00f3n de la Virgen", - "2022-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2022-09-06": "D\u00eda de Elcano", - "2022-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2022-09-11": "D\u00eda Nacional de Catalunya", - "2022-09-15": "D\u00eda de la Bien Aparecida", - "2022-09-17": "D\u00eda de Melilla", - "2022-10-12": "D\u00eda de la Hispanidad", + "2022-09-02": "D\u00eda de Ceuta", + "2022-09-06": "V Centenario Vuelta al Mundo", + "2022-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2022-09-15": "La Bien Aparecida", + "2022-10-12": "Fiesta Nacional de Espa\u00f1a", "2022-11-01": "Todos los Santos", "2022-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2022-12-08": "La Inmaculada Concepci\u00f3n", - "2022-12-25": "Navidad", - "2022-12-26": "Navidad (Trasladado); San Esteban", - "2023-01-01": "A\u00f1o nuevo", - "2023-01-02": "A\u00f1o nuevo (Trasladado)", + "2022-12-08": "Inmaculada Concepci\u00f3n", + "2022-12-26": "Lunes siguiente a Natividad del Se\u00f1or; San Esteban", + "2023-01-02": "Lunes siguiente a A\u00f1o nuevo", "2023-01-06": "Epifan\u00eda del Se\u00f1or", - "2023-02-21": "Carnaval", + "2023-02-21": "Martes de Carnaval", "2023-02-28": "D\u00eda de Andalucia", "2023-03-01": "D\u00eda de las Islas Baleares", - "2023-03-19": "San Jos\u00e9", - "2023-03-20": "San Jos\u00e9 (Trasladado)", + "2023-03-20": "Lunes siguiente a San Jos\u00e9", "2023-04-06": "Jueves Santo", "2023-04-07": "Viernes Santo", "2023-04-10": "Lunes de Pascua", - "2023-04-21": "Eid al-Fitr* (*estimated)", - "2023-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2023-05-01": "D\u00eda del Trabajador", - "2023-05-02": "D\u00eda de Comunidad de Madrid", - "2023-05-17": "D\u00eda de las letras Gallegas", + "2023-04-21": "Eid al-Fitr", + "2023-04-24": "Lunes siguiente a D\u00eda de San Jorge", + "2023-05-01": "Fiesta del Trabajo", + "2023-05-02": "Fiesta de la Comunidad de Madrid", + "2023-05-17": "D\u00eda de las Letras Gallegas", "2023-05-30": "D\u00eda de Canarias", "2023-05-31": "D\u00eda de Castilla La Mancha", "2023-06-08": "Corpus Christi", "2023-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "2023-06-24": "San Juan", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2023-06-29": "Eid al-Adha", + "2023-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2023-07-28": "D\u00eda de las Instituciones de Cantabria", "2023-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2023-08-15": "Asunci\u00f3n de la Virgen", - "2023-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2023-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2023-09-11": "D\u00eda Nacional de Catalunya", - "2023-09-15": "D\u00eda de la Bien Aparecida", - "2023-09-17": "D\u00eda de Melilla", - "2023-10-12": "D\u00eda de la Hispanidad", + "2023-09-02": "D\u00eda de Ceuta", + "2023-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2023-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2023-09-15": "La Bien Aparecida", + "2023-10-09": "D\u00eda de la Comunidad Valenciana", + "2023-10-12": "Fiesta Nacional de Espa\u00f1a", "2023-11-01": "Todos los Santos", "2023-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2023-12-08": "La Inmaculada Concepci\u00f3n", - "2023-12-25": "Navidad", + "2023-12-08": "Inmaculada Concepci\u00f3n", + "2023-12-25": "Natividad del Se\u00f1or", "2023-12-26": "San Esteban", "2024-01-01": "A\u00f1o nuevo", "2024-01-06": "Epifan\u00eda del Se\u00f1or", @@ -2393,490 +2283,517 @@ "2024-03-28": "Jueves Santo", "2024-03-29": "Viernes Santo", "2024-04-01": "Lunes de Pascua", - "2024-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2024-05-01": "D\u00eda del Trabajador", - "2024-05-02": "D\u00eda de Comunidad de Madrid", - "2024-05-17": "D\u00eda de las letras Gallegas", + "2024-04-10": "Eid al-Fitr* (*estimated)", + "2024-04-23": "D\u00eda de San Jorge", + "2024-05-01": "Fiesta del Trabajo", + "2024-05-02": "Fiesta de la Comunidad de Madrid", + "2024-05-17": "D\u00eda de las Letras Gallegas", "2024-05-30": "Corpus Christi; D\u00eda de Canarias", "2024-05-31": "D\u00eda de Castilla La Mancha", - "2024-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2024-06-10": "Lunes siguiente a D\u00eda de La Rioja; Lunes siguiente a D\u00eda de la Regi\u00f3n de Murcia", + "2024-06-16": "Eid al-Adha* (*estimated)", "2024-06-24": "San Juan", - "2024-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2024-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2024-07-28": "D\u00eda de las Instituciones de Cantabria", "2024-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2024-08-15": "Asunci\u00f3n de la Virgen", - "2024-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2024-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2024-09-11": "D\u00eda Nacional de Catalunya", - "2024-09-15": "D\u00eda de la Bien Aparecida", - "2024-09-17": "D\u00eda de Melilla", - "2024-10-12": "D\u00eda de la Hispanidad", + "2024-09-02": "D\u00eda de Ceuta", + "2024-09-09": "Lunes siguiente a D\u00eda de Asturias; Lunes siguiente a D\u00eda de Extremadura", + "2024-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2024-09-15": "La Bien Aparecida", + "2024-10-09": "D\u00eda de la Comunidad Valenciana", + "2024-10-12": "Fiesta Nacional de Espa\u00f1a", "2024-11-01": "Todos los Santos", "2024-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2024-12-08": "La Inmaculada Concepci\u00f3n", - "2024-12-25": "Navidad", + "2024-12-08": "Inmaculada Concepci\u00f3n", + "2024-12-25": "Natividad del Se\u00f1or", "2024-12-26": "San Esteban", "2025-01-01": "A\u00f1o nuevo", "2025-01-06": "Epifan\u00eda del Se\u00f1or", "2025-02-28": "D\u00eda de Andalucia", "2025-03-01": "D\u00eda de las Islas Baleares", + "2025-03-30": "Eid al-Fitr* (*estimated)", "2025-04-17": "Jueves Santo", "2025-04-18": "Viernes Santo", "2025-04-21": "Lunes de Pascua", - "2025-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2025-05-01": "D\u00eda del Trabajador", - "2025-05-02": "D\u00eda de Comunidad de Madrid", - "2025-05-17": "D\u00eda de las letras Gallegas", + "2025-04-23": "D\u00eda de San Jorge", + "2025-05-01": "Fiesta del Trabajo", + "2025-05-02": "Fiesta de la Comunidad de Madrid", + "2025-05-17": "D\u00eda de las Letras Gallegas", "2025-05-30": "D\u00eda de Canarias", "2025-05-31": "D\u00eda de Castilla La Mancha", + "2025-06-06": "Eid al-Adha* (*estimated)", "2025-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "2025-06-19": "Corpus Christi", "2025-06-24": "San Juan", - "2025-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2025-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2025-07-28": "D\u00eda de las Instituciones de Cantabria", "2025-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2025-08-15": "Asunci\u00f3n de la Virgen", - "2025-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2025-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2025-09-11": "D\u00eda Nacional de Catalunya", - "2025-09-15": "D\u00eda de la Bien Aparecida", - "2025-09-17": "D\u00eda de Melilla", - "2025-10-12": "D\u00eda de la Hispanidad", + "2025-09-02": "D\u00eda de Ceuta", + "2025-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2025-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2025-09-15": "La Bien Aparecida", + "2025-10-09": "D\u00eda de la Comunidad Valenciana", + "2025-10-12": "Fiesta Nacional de Espa\u00f1a", "2025-11-01": "Todos los Santos", "2025-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2025-12-08": "La Inmaculada Concepci\u00f3n", - "2025-12-25": "Navidad", + "2025-12-08": "Inmaculada Concepci\u00f3n", + "2025-12-25": "Natividad del Se\u00f1or", "2025-12-26": "San Esteban", "2026-01-01": "A\u00f1o nuevo", "2026-01-06": "Epifan\u00eda del Se\u00f1or", "2026-02-28": "D\u00eda de Andalucia", "2026-03-01": "D\u00eda de las Islas Baleares", + "2026-03-20": "Eid al-Fitr* (*estimated)", "2026-04-02": "Jueves Santo", "2026-04-03": "Viernes Santo", "2026-04-06": "Lunes de Pascua", - "2026-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2026-05-01": "D\u00eda del Trabajador", - "2026-05-02": "D\u00eda de Comunidad de Madrid", - "2026-05-17": "D\u00eda de las letras Gallegas", + "2026-04-23": "D\u00eda de San Jorge", + "2026-05-01": "Fiesta del Trabajo", + "2026-05-02": "Fiesta de la Comunidad de Madrid", + "2026-05-17": "D\u00eda de las Letras Gallegas", + "2026-05-27": "Eid al-Adha* (*estimated)", "2026-05-30": "D\u00eda de Canarias", "2026-05-31": "D\u00eda de Castilla La Mancha", "2026-06-04": "Corpus Christi", "2026-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "2026-06-24": "San Juan", - "2026-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2026-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2026-07-28": "D\u00eda de las Instituciones de Cantabria", "2026-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2026-08-15": "Asunci\u00f3n de la Virgen", - "2026-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2026-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2026-09-11": "D\u00eda Nacional de Catalunya", - "2026-09-15": "D\u00eda de la Bien Aparecida", - "2026-09-17": "D\u00eda de Melilla", - "2026-10-12": "D\u00eda de la Hispanidad", + "2026-09-02": "D\u00eda de Ceuta", + "2026-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2026-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2026-09-15": "La Bien Aparecida", + "2026-10-09": "D\u00eda de la Comunidad Valenciana", + "2026-10-12": "Fiesta Nacional de Espa\u00f1a", "2026-11-01": "Todos los Santos", "2026-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2026-12-08": "La Inmaculada Concepci\u00f3n", - "2026-12-25": "Navidad", + "2026-12-08": "Inmaculada Concepci\u00f3n", + "2026-12-25": "Natividad del Se\u00f1or", "2026-12-26": "San Esteban", "2027-01-01": "A\u00f1o nuevo", "2027-01-06": "Epifan\u00eda del Se\u00f1or", - "2027-02-28": "D\u00eda de Andalucia", - "2027-03-01": "D\u00eda de las Islas Baleares", + "2027-03-01": "D\u00eda de las Islas Baleares; Lunes siguiente a D\u00eda de Andalucia", + "2027-03-09": "Eid al-Fitr* (*estimated)", "2027-03-25": "Jueves Santo", "2027-03-26": "Viernes Santo", "2027-03-29": "Lunes de Pascua", - "2027-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2027-05-01": "D\u00eda del Trabajador", - "2027-05-02": "D\u00eda de Comunidad de Madrid", - "2027-05-17": "D\u00eda de las letras Gallegas", + "2027-04-23": "D\u00eda de San Jorge", + "2027-05-01": "Fiesta del Trabajo", + "2027-05-03": "Lunes siguiente a Fiesta de la Comunidad de Madrid", + "2027-05-16": "Eid al-Adha* (*estimated)", + "2027-05-17": "D\u00eda de las Letras Gallegas", "2027-05-27": "Corpus Christi", - "2027-05-30": "D\u00eda de Canarias", - "2027-05-31": "D\u00eda de Castilla La Mancha", + "2027-05-31": "D\u00eda de Castilla La Mancha; Lunes siguiente a D\u00eda de Canarias", "2027-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "2027-06-24": "San Juan", - "2027-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2027-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2027-07-28": "D\u00eda de las Instituciones de Cantabria", "2027-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2027-08-15": "Asunci\u00f3n de la Virgen", - "2027-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2027-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2027-09-11": "D\u00eda Nacional de Catalunya", - "2027-09-15": "D\u00eda de la Bien Aparecida", - "2027-09-17": "D\u00eda de Melilla", - "2027-10-12": "D\u00eda de la Hispanidad", + "2027-09-02": "D\u00eda de Ceuta", + "2027-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2027-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2027-09-15": "La Bien Aparecida", + "2027-10-09": "D\u00eda de la Comunidad Valenciana", + "2027-10-12": "Fiesta Nacional de Espa\u00f1a", "2027-11-01": "Todos los Santos", "2027-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2027-12-08": "La Inmaculada Concepci\u00f3n", - "2027-12-25": "Navidad", + "2027-12-08": "Inmaculada Concepci\u00f3n", + "2027-12-25": "Natividad del Se\u00f1or", "2027-12-26": "San Esteban", "2028-01-01": "A\u00f1o nuevo", "2028-01-06": "Epifan\u00eda del Se\u00f1or", + "2028-02-26": "Eid al-Fitr* (*estimated)", "2028-02-28": "D\u00eda de Andalucia", "2028-03-01": "D\u00eda de las Islas Baleares", "2028-04-13": "Jueves Santo", "2028-04-14": "Viernes Santo", "2028-04-17": "Lunes de Pascua", - "2028-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2028-05-01": "D\u00eda del Trabajador", - "2028-05-02": "D\u00eda de Comunidad de Madrid", - "2028-05-17": "D\u00eda de las letras Gallegas", + "2028-04-24": "Lunes siguiente a D\u00eda de San Jorge", + "2028-05-01": "Fiesta del Trabajo", + "2028-05-02": "Fiesta de la Comunidad de Madrid", + "2028-05-05": "Eid al-Adha* (*estimated)", + "2028-05-17": "D\u00eda de las Letras Gallegas", "2028-05-30": "D\u00eda de Canarias", "2028-05-31": "D\u00eda de Castilla La Mancha", "2028-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "2028-06-15": "Corpus Christi", "2028-06-24": "San Juan", - "2028-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2028-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2028-07-28": "D\u00eda de las Instituciones de Cantabria", "2028-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2028-08-15": "Asunci\u00f3n de la Virgen", - "2028-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2028-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2028-09-11": "D\u00eda Nacional de Catalunya", - "2028-09-15": "D\u00eda de la Bien Aparecida", - "2028-09-17": "D\u00eda de Melilla", - "2028-10-12": "D\u00eda de la Hispanidad", + "2028-09-02": "D\u00eda de Ceuta", + "2028-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2028-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2028-09-15": "La Bien Aparecida", + "2028-10-09": "D\u00eda de la Comunidad Valenciana", + "2028-10-12": "Fiesta Nacional de Espa\u00f1a", "2028-11-01": "Todos los Santos", "2028-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2028-12-08": "La Inmaculada Concepci\u00f3n", - "2028-12-25": "Navidad", + "2028-12-08": "Inmaculada Concepci\u00f3n", + "2028-12-25": "Natividad del Se\u00f1or", "2028-12-26": "San Esteban", "2029-01-01": "A\u00f1o nuevo", "2029-01-06": "Epifan\u00eda del Se\u00f1or", + "2029-02-14": "Eid al-Fitr* (*estimated)", "2029-02-28": "D\u00eda de Andalucia", "2029-03-01": "D\u00eda de las Islas Baleares", "2029-03-29": "Jueves Santo", "2029-03-30": "Viernes Santo", "2029-04-02": "Lunes de Pascua", - "2029-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2029-05-01": "D\u00eda del Trabajador", - "2029-05-02": "D\u00eda de Comunidad de Madrid", - "2029-05-17": "D\u00eda de las letras Gallegas", + "2029-04-23": "D\u00eda de San Jorge", + "2029-04-24": "Eid al-Adha* (*estimated)", + "2029-05-01": "Fiesta del Trabajo", + "2029-05-02": "Fiesta de la Comunidad de Madrid", + "2029-05-17": "D\u00eda de las Letras Gallegas", "2029-05-30": "D\u00eda de Canarias", "2029-05-31": "Corpus Christi; D\u00eda de Castilla La Mancha", "2029-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "2029-06-24": "San Juan", - "2029-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2029-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2029-07-28": "D\u00eda de las Instituciones de Cantabria", "2029-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2029-08-15": "Asunci\u00f3n de la Virgen", - "2029-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2029-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2029-09-11": "D\u00eda Nacional de Catalunya", - "2029-09-15": "D\u00eda de la Bien Aparecida", - "2029-09-17": "D\u00eda de Melilla", - "2029-10-12": "D\u00eda de la Hispanidad", + "2029-09-02": "D\u00eda de Ceuta", + "2029-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2029-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2029-09-15": "La Bien Aparecida", + "2029-10-09": "D\u00eda de la Comunidad Valenciana", + "2029-10-12": "Fiesta Nacional de Espa\u00f1a", "2029-11-01": "Todos los Santos", "2029-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2029-12-08": "La Inmaculada Concepci\u00f3n", - "2029-12-25": "Navidad", + "2029-12-08": "Inmaculada Concepci\u00f3n", + "2029-12-25": "Natividad del Se\u00f1or", "2029-12-26": "San Esteban", "2030-01-01": "A\u00f1o nuevo", "2030-01-06": "Epifan\u00eda del Se\u00f1or", + "2030-02-04": "Eid al-Fitr* (*estimated)", "2030-02-28": "D\u00eda de Andalucia", "2030-03-01": "D\u00eda de las Islas Baleares", + "2030-04-13": "Eid al-Adha* (*estimated)", "2030-04-18": "Jueves Santo", "2030-04-19": "Viernes Santo", "2030-04-22": "Lunes de Pascua", - "2030-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2030-05-01": "D\u00eda del Trabajador", - "2030-05-02": "D\u00eda de Comunidad de Madrid", - "2030-05-17": "D\u00eda de las letras Gallegas", + "2030-04-23": "D\u00eda de San Jorge", + "2030-05-01": "Fiesta del Trabajo", + "2030-05-02": "Fiesta de la Comunidad de Madrid", + "2030-05-17": "D\u00eda de las Letras Gallegas", "2030-05-30": "D\u00eda de Canarias", "2030-05-31": "D\u00eda de Castilla La Mancha", - "2030-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2030-06-10": "Lunes siguiente a D\u00eda de La Rioja; Lunes siguiente a D\u00eda de la Regi\u00f3n de Murcia", "2030-06-20": "Corpus Christi", "2030-06-24": "San Juan", - "2030-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2030-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2030-07-28": "D\u00eda de las Instituciones de Cantabria", "2030-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2030-08-15": "Asunci\u00f3n de la Virgen", - "2030-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2030-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2030-09-11": "D\u00eda Nacional de Catalunya", - "2030-09-15": "D\u00eda de la Bien Aparecida", - "2030-09-17": "D\u00eda de Melilla", - "2030-10-12": "D\u00eda de la Hispanidad", + "2030-09-02": "D\u00eda de Ceuta", + "2030-09-09": "Lunes siguiente a D\u00eda de Asturias; Lunes siguiente a D\u00eda de Extremadura", + "2030-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2030-09-15": "La Bien Aparecida", + "2030-10-09": "D\u00eda de la Comunidad Valenciana", + "2030-10-12": "Fiesta Nacional de Espa\u00f1a", "2030-11-01": "Todos los Santos", "2030-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2030-12-08": "La Inmaculada Concepci\u00f3n", - "2030-12-25": "Navidad", + "2030-12-08": "Inmaculada Concepci\u00f3n", + "2030-12-25": "Natividad del Se\u00f1or", "2030-12-26": "San Esteban", "2031-01-01": "A\u00f1o nuevo", "2031-01-06": "Epifan\u00eda del Se\u00f1or", + "2031-01-24": "Eid al-Fitr* (*estimated)", "2031-02-28": "D\u00eda de Andalucia", "2031-03-01": "D\u00eda de las Islas Baleares", + "2031-04-02": "Eid al-Adha* (*estimated)", "2031-04-10": "Jueves Santo", "2031-04-11": "Viernes Santo", "2031-04-14": "Lunes de Pascua", - "2031-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2031-05-01": "D\u00eda del Trabajador", - "2031-05-02": "D\u00eda de Comunidad de Madrid", - "2031-05-17": "D\u00eda de las letras Gallegas", + "2031-04-23": "D\u00eda de San Jorge", + "2031-05-01": "Fiesta del Trabajo", + "2031-05-02": "Fiesta de la Comunidad de Madrid", + "2031-05-17": "D\u00eda de las Letras Gallegas", "2031-05-30": "D\u00eda de Canarias", "2031-05-31": "D\u00eda de Castilla La Mancha", "2031-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "2031-06-12": "Corpus Christi", "2031-06-24": "San Juan", - "2031-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2031-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2031-07-28": "D\u00eda de las Instituciones de Cantabria", "2031-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2031-08-15": "Asunci\u00f3n de la Virgen", - "2031-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2031-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2031-09-11": "D\u00eda Nacional de Catalunya", - "2031-09-15": "D\u00eda de la Bien Aparecida", - "2031-09-17": "D\u00eda de Melilla", - "2031-10-12": "D\u00eda de la Hispanidad", + "2031-09-02": "D\u00eda de Ceuta", + "2031-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2031-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2031-09-15": "La Bien Aparecida", + "2031-10-09": "D\u00eda de la Comunidad Valenciana", + "2031-10-12": "Fiesta Nacional de Espa\u00f1a", "2031-11-01": "Todos los Santos", "2031-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2031-12-08": "La Inmaculada Concepci\u00f3n", - "2031-12-25": "Navidad", + "2031-12-08": "Inmaculada Concepci\u00f3n", + "2031-12-25": "Natividad del Se\u00f1or", "2031-12-26": "San Esteban", "2032-01-01": "A\u00f1o nuevo", "2032-01-06": "Epifan\u00eda del Se\u00f1or", + "2032-01-14": "Eid al-Fitr* (*estimated)", "2032-02-28": "D\u00eda de Andalucia", "2032-03-01": "D\u00eda de las Islas Baleares", + "2032-03-22": "Eid al-Adha* (*estimated)", "2032-03-25": "Jueves Santo", "2032-03-26": "Viernes Santo", "2032-03-29": "Lunes de Pascua", - "2032-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2032-05-01": "D\u00eda del Trabajador", - "2032-05-02": "D\u00eda de Comunidad de Madrid", - "2032-05-17": "D\u00eda de las letras Gallegas", + "2032-04-23": "D\u00eda de San Jorge", + "2032-05-01": "Fiesta del Trabajo", + "2032-05-03": "Lunes siguiente a Fiesta de la Comunidad de Madrid", + "2032-05-17": "D\u00eda de las Letras Gallegas", "2032-05-27": "Corpus Christi", - "2032-05-30": "D\u00eda de Canarias", - "2032-05-31": "D\u00eda de Castilla La Mancha", + "2032-05-31": "D\u00eda de Castilla La Mancha; Lunes siguiente a D\u00eda de Canarias", "2032-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "2032-06-24": "San Juan", - "2032-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2032-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2032-07-28": "D\u00eda de las Instituciones de Cantabria", "2032-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2032-08-15": "Asunci\u00f3n de la Virgen", - "2032-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2032-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2032-09-11": "D\u00eda Nacional de Catalunya", - "2032-09-15": "D\u00eda de la Bien Aparecida", - "2032-09-17": "D\u00eda de Melilla", - "2032-10-12": "D\u00eda de la Hispanidad", + "2032-09-02": "D\u00eda de Ceuta", + "2032-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2032-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2032-09-15": "La Bien Aparecida", + "2032-10-09": "D\u00eda de la Comunidad Valenciana", + "2032-10-12": "Fiesta Nacional de Espa\u00f1a", "2032-11-01": "Todos los Santos", "2032-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2032-12-08": "La Inmaculada Concepci\u00f3n", - "2032-12-25": "Navidad", + "2032-12-08": "Inmaculada Concepci\u00f3n", + "2032-12-25": "Natividad del Se\u00f1or", "2032-12-26": "San Esteban", "2033-01-01": "A\u00f1o nuevo", + "2033-01-02": "Eid al-Fitr* (*estimated)", "2033-01-06": "Epifan\u00eda del Se\u00f1or", "2033-02-28": "D\u00eda de Andalucia", "2033-03-01": "D\u00eda de las Islas Baleares", + "2033-03-11": "Eid al-Adha* (*estimated)", "2033-04-14": "Jueves Santo", "2033-04-15": "Viernes Santo", "2033-04-18": "Lunes de Pascua", - "2033-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2033-05-01": "D\u00eda del Trabajador", - "2033-05-02": "D\u00eda de Comunidad de Madrid", - "2033-05-17": "D\u00eda de las letras Gallegas", + "2033-04-23": "D\u00eda de San Jorge", + "2033-05-01": "Fiesta del Trabajo", + "2033-05-02": "Fiesta de la Comunidad de Madrid", + "2033-05-17": "D\u00eda de las Letras Gallegas", "2033-05-30": "D\u00eda de Canarias", "2033-05-31": "D\u00eda de Castilla La Mancha", "2033-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "2033-06-16": "Corpus Christi", "2033-06-24": "San Juan", - "2033-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2033-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2033-07-28": "D\u00eda de las Instituciones de Cantabria", "2033-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2033-08-15": "Asunci\u00f3n de la Virgen", - "2033-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2033-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2033-09-11": "D\u00eda Nacional de Catalunya", - "2033-09-15": "D\u00eda de la Bien Aparecida", - "2033-09-17": "D\u00eda de Melilla", - "2033-10-12": "D\u00eda de la Hispanidad", + "2033-09-02": "D\u00eda de Ceuta", + "2033-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2033-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2033-09-15": "La Bien Aparecida", + "2033-10-09": "D\u00eda de la Comunidad Valenciana", + "2033-10-12": "Fiesta Nacional de Espa\u00f1a", "2033-11-01": "Todos los Santos", "2033-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2033-12-08": "La Inmaculada Concepci\u00f3n", - "2033-12-25": "Navidad", + "2033-12-08": "Inmaculada Concepci\u00f3n", + "2033-12-23": "Eid al-Fitr* (*estimated)", + "2033-12-25": "Natividad del Se\u00f1or", "2033-12-26": "San Esteban", "2034-01-01": "A\u00f1o nuevo", "2034-01-06": "Epifan\u00eda del Se\u00f1or", "2034-02-28": "D\u00eda de Andalucia", - "2034-03-01": "D\u00eda de las Islas Baleares", + "2034-03-01": "D\u00eda de las Islas Baleares; Eid al-Adha* (*estimated)", "2034-04-06": "Jueves Santo", "2034-04-07": "Viernes Santo", "2034-04-10": "Lunes de Pascua", - "2034-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2034-05-01": "D\u00eda del Trabajador", - "2034-05-02": "D\u00eda de Comunidad de Madrid", - "2034-05-17": "D\u00eda de las letras Gallegas", + "2034-04-24": "Lunes siguiente a D\u00eda de San Jorge", + "2034-05-01": "Fiesta del Trabajo", + "2034-05-02": "Fiesta de la Comunidad de Madrid", + "2034-05-17": "D\u00eda de las Letras Gallegas", "2034-05-30": "D\u00eda de Canarias", "2034-05-31": "D\u00eda de Castilla La Mancha", "2034-06-08": "Corpus Christi", "2034-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "2034-06-24": "San Juan", - "2034-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2034-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2034-07-28": "D\u00eda de las Instituciones de Cantabria", "2034-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2034-08-15": "Asunci\u00f3n de la Virgen", - "2034-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2034-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2034-09-11": "D\u00eda Nacional de Catalunya", - "2034-09-15": "D\u00eda de la Bien Aparecida", - "2034-09-17": "D\u00eda de Melilla", - "2034-10-12": "D\u00eda de la Hispanidad", + "2034-09-02": "D\u00eda de Ceuta", + "2034-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2034-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2034-09-15": "La Bien Aparecida", + "2034-10-09": "D\u00eda de la Comunidad Valenciana", + "2034-10-12": "Fiesta Nacional de Espa\u00f1a", "2034-11-01": "Todos los Santos", "2034-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2034-12-08": "La Inmaculada Concepci\u00f3n", - "2034-12-25": "Navidad", + "2034-12-08": "Inmaculada Concepci\u00f3n", + "2034-12-12": "Eid al-Fitr* (*estimated)", + "2034-12-25": "Natividad del Se\u00f1or", "2034-12-26": "San Esteban", "2035-01-01": "A\u00f1o nuevo", "2035-01-06": "Epifan\u00eda del Se\u00f1or", + "2035-02-18": "Eid al-Adha* (*estimated)", "2035-02-28": "D\u00eda de Andalucia", "2035-03-01": "D\u00eda de las Islas Baleares", "2035-03-22": "Jueves Santo", "2035-03-23": "Viernes Santo", "2035-03-26": "Lunes de Pascua", - "2035-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2035-05-01": "D\u00eda del Trabajador", - "2035-05-02": "D\u00eda de Comunidad de Madrid", - "2035-05-17": "D\u00eda de las letras Gallegas", + "2035-04-23": "D\u00eda de San Jorge", + "2035-05-01": "Fiesta del Trabajo", + "2035-05-02": "Fiesta de la Comunidad de Madrid", + "2035-05-17": "D\u00eda de las Letras Gallegas", "2035-05-24": "Corpus Christi", "2035-05-30": "D\u00eda de Canarias", "2035-05-31": "D\u00eda de Castilla La Mancha", "2035-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "2035-06-24": "San Juan", - "2035-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2035-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2035-07-28": "D\u00eda de las Instituciones de Cantabria", "2035-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2035-08-15": "Asunci\u00f3n de la Virgen", - "2035-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2035-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2035-09-11": "D\u00eda Nacional de Catalunya", - "2035-09-15": "D\u00eda de la Bien Aparecida", - "2035-09-17": "D\u00eda de Melilla", - "2035-10-12": "D\u00eda de la Hispanidad", + "2035-09-02": "D\u00eda de Ceuta", + "2035-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2035-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2035-09-15": "La Bien Aparecida", + "2035-10-09": "D\u00eda de la Comunidad Valenciana", + "2035-10-12": "Fiesta Nacional de Espa\u00f1a", "2035-11-01": "Todos los Santos", + "2035-12-01": "Eid al-Fitr* (*estimated)", "2035-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2035-12-08": "La Inmaculada Concepci\u00f3n", - "2035-12-25": "Navidad", + "2035-12-08": "Inmaculada Concepci\u00f3n", + "2035-12-25": "Natividad del Se\u00f1or", "2035-12-26": "San Esteban", "2036-01-01": "A\u00f1o nuevo", "2036-01-06": "Epifan\u00eda del Se\u00f1or", + "2036-02-07": "Eid al-Adha* (*estimated)", "2036-02-28": "D\u00eda de Andalucia", "2036-03-01": "D\u00eda de las Islas Baleares", "2036-04-10": "Jueves Santo", "2036-04-11": "Viernes Santo", "2036-04-14": "Lunes de Pascua", - "2036-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2036-05-01": "D\u00eda del Trabajador", - "2036-05-02": "D\u00eda de Comunidad de Madrid", - "2036-05-17": "D\u00eda de las letras Gallegas", + "2036-04-23": "D\u00eda de San Jorge", + "2036-05-01": "Fiesta del Trabajo", + "2036-05-02": "Fiesta de la Comunidad de Madrid", + "2036-05-17": "D\u00eda de las Letras Gallegas", "2036-05-30": "D\u00eda de Canarias", "2036-05-31": "D\u00eda de Castilla La Mancha", "2036-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "2036-06-12": "Corpus Christi", "2036-06-24": "San Juan", - "2036-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2036-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2036-07-28": "D\u00eda de las Instituciones de Cantabria", "2036-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2036-08-15": "Asunci\u00f3n de la Virgen", - "2036-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2036-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2036-09-11": "D\u00eda Nacional de Catalunya", - "2036-09-15": "D\u00eda de la Bien Aparecida", - "2036-09-17": "D\u00eda de Melilla", - "2036-10-12": "D\u00eda de la Hispanidad", + "2036-09-02": "D\u00eda de Ceuta", + "2036-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2036-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2036-09-15": "La Bien Aparecida", + "2036-10-09": "D\u00eda de la Comunidad Valenciana", + "2036-10-12": "Fiesta Nacional de Espa\u00f1a", "2036-11-01": "Todos los Santos", + "2036-11-19": "Eid al-Fitr* (*estimated)", "2036-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2036-12-08": "La Inmaculada Concepci\u00f3n", - "2036-12-25": "Navidad", + "2036-12-08": "Inmaculada Concepci\u00f3n", + "2036-12-25": "Natividad del Se\u00f1or", "2036-12-26": "San Esteban", "2037-01-01": "A\u00f1o nuevo", "2037-01-06": "Epifan\u00eda del Se\u00f1or", + "2037-01-26": "Eid al-Adha* (*estimated)", "2037-02-28": "D\u00eda de Andalucia", "2037-03-01": "D\u00eda de las Islas Baleares", "2037-04-02": "Jueves Santo", "2037-04-03": "Viernes Santo", "2037-04-06": "Lunes de Pascua", - "2037-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2037-05-01": "D\u00eda del Trabajador", - "2037-05-02": "D\u00eda de Comunidad de Madrid", - "2037-05-17": "D\u00eda de las letras Gallegas", + "2037-04-23": "D\u00eda de San Jorge", + "2037-05-01": "Fiesta del Trabajo", + "2037-05-02": "Fiesta de la Comunidad de Madrid", + "2037-05-17": "D\u00eda de las Letras Gallegas", "2037-05-30": "D\u00eda de Canarias", "2037-05-31": "D\u00eda de Castilla La Mancha", "2037-06-04": "Corpus Christi", "2037-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "2037-06-24": "San Juan", - "2037-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2037-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2037-07-28": "D\u00eda de las Instituciones de Cantabria", "2037-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2037-08-15": "Asunci\u00f3n de la Virgen", - "2037-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2037-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2037-09-11": "D\u00eda Nacional de Catalunya", - "2037-09-15": "D\u00eda de la Bien Aparecida", - "2037-09-17": "D\u00eda de Melilla", - "2037-10-12": "D\u00eda de la Hispanidad", + "2037-09-02": "D\u00eda de Ceuta", + "2037-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2037-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2037-09-15": "La Bien Aparecida", + "2037-10-09": "D\u00eda de la Comunidad Valenciana", + "2037-10-12": "Fiesta Nacional de Espa\u00f1a", "2037-11-01": "Todos los Santos", + "2037-11-08": "Eid al-Fitr* (*estimated)", "2037-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2037-12-08": "La Inmaculada Concepci\u00f3n", - "2037-12-25": "Navidad", + "2037-12-08": "Inmaculada Concepci\u00f3n", + "2037-12-25": "Natividad del Se\u00f1or", "2037-12-26": "San Esteban", "2038-01-01": "A\u00f1o nuevo", "2038-01-06": "Epifan\u00eda del Se\u00f1or", - "2038-02-28": "D\u00eda de Andalucia", - "2038-03-01": "D\u00eda de las Islas Baleares", + "2038-01-16": "Eid al-Adha* (*estimated)", + "2038-03-01": "D\u00eda de las Islas Baleares; Lunes siguiente a D\u00eda de Andalucia", "2038-04-22": "Jueves Santo", - "2038-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge; Viernes Santo", + "2038-04-23": "D\u00eda de San Jorge; Viernes Santo", "2038-04-26": "Lunes de Pascua", - "2038-05-01": "D\u00eda del Trabajador", - "2038-05-02": "D\u00eda de Comunidad de Madrid", - "2038-05-17": "D\u00eda de las letras Gallegas", - "2038-05-30": "D\u00eda de Canarias", - "2038-05-31": "D\u00eda de Castilla La Mancha", + "2038-05-01": "Fiesta del Trabajo", + "2038-05-03": "Lunes siguiente a Fiesta de la Comunidad de Madrid", + "2038-05-17": "D\u00eda de las Letras Gallegas", + "2038-05-31": "D\u00eda de Castilla La Mancha; Lunes siguiente a D\u00eda de Canarias", "2038-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "2038-06-24": "Corpus Christi; San Juan", - "2038-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2038-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2038-07-28": "D\u00eda de las Instituciones de Cantabria", "2038-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2038-08-15": "Asunci\u00f3n de la Virgen", - "2038-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2038-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2038-09-11": "D\u00eda Nacional de Catalunya", - "2038-09-15": "D\u00eda de la Bien Aparecida", - "2038-09-17": "D\u00eda de Melilla", - "2038-10-12": "D\u00eda de la Hispanidad", + "2038-09-02": "D\u00eda de Ceuta", + "2038-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2038-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2038-09-15": "La Bien Aparecida", + "2038-10-09": "D\u00eda de la Comunidad Valenciana", + "2038-10-12": "Fiesta Nacional de Espa\u00f1a", + "2038-10-29": "Eid al-Fitr* (*estimated)", "2038-11-01": "Todos los Santos", "2038-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2038-12-08": "La Inmaculada Concepci\u00f3n", - "2038-12-25": "Navidad", + "2038-12-08": "Inmaculada Concepci\u00f3n", + "2038-12-25": "Natividad del Se\u00f1or", "2038-12-26": "San Esteban", "2039-01-01": "A\u00f1o nuevo", + "2039-01-05": "Eid al-Adha* (*estimated)", "2039-01-06": "Epifan\u00eda del Se\u00f1or", "2039-02-28": "D\u00eda de Andalucia", "2039-03-01": "D\u00eda de las Islas Baleares", "2039-04-07": "Jueves Santo", "2039-04-08": "Viernes Santo", "2039-04-11": "Lunes de Pascua", - "2039-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2039-05-01": "D\u00eda del Trabajador", - "2039-05-02": "D\u00eda de Comunidad de Madrid", - "2039-05-17": "D\u00eda de las letras Gallegas", + "2039-04-23": "D\u00eda de San Jorge", + "2039-05-01": "Fiesta del Trabajo", + "2039-05-02": "Fiesta de la Comunidad de Madrid", + "2039-05-17": "D\u00eda de las Letras Gallegas", "2039-05-30": "D\u00eda de Canarias", "2039-05-31": "D\u00eda de Castilla La Mancha", "2039-06-09": "Corpus Christi; D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "2039-06-24": "San Juan", - "2039-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2039-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2039-07-28": "D\u00eda de las Instituciones de Cantabria", "2039-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2039-08-15": "Asunci\u00f3n de la Virgen", - "2039-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2039-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2039-09-11": "D\u00eda Nacional de Catalunya", - "2039-09-15": "D\u00eda de la Bien Aparecida", - "2039-09-17": "D\u00eda de Melilla", - "2039-10-12": "D\u00eda de la Hispanidad", + "2039-09-02": "D\u00eda de Ceuta", + "2039-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2039-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2039-09-15": "La Bien Aparecida", + "2039-10-09": "D\u00eda de la Comunidad Valenciana", + "2039-10-12": "Fiesta Nacional de Espa\u00f1a", + "2039-10-19": "Eid al-Fitr* (*estimated)", "2039-11-01": "Todos los Santos", "2039-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2039-12-08": "La Inmaculada Concepci\u00f3n", - "2039-12-25": "Navidad", - "2039-12-26": "San Esteban", + "2039-12-08": "Inmaculada Concepci\u00f3n", + "2039-12-25": "Natividad del Se\u00f1or", + "2039-12-26": "Eid al-Adha* (*estimated); San Esteban", "2040-01-01": "A\u00f1o nuevo", "2040-01-06": "Epifan\u00eda del Se\u00f1or", "2040-02-28": "D\u00eda de Andalucia", @@ -2884,28 +2801,30 @@ "2040-03-29": "Jueves Santo", "2040-03-30": "Viernes Santo", "2040-04-02": "Lunes de Pascua", - "2040-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2040-05-01": "D\u00eda del Trabajador", - "2040-05-02": "D\u00eda de Comunidad de Madrid", - "2040-05-17": "D\u00eda de las letras Gallegas", + "2040-04-23": "D\u00eda de San Jorge", + "2040-05-01": "Fiesta del Trabajo", + "2040-05-02": "Fiesta de la Comunidad de Madrid", + "2040-05-17": "D\u00eda de las Letras Gallegas", "2040-05-30": "D\u00eda de Canarias", "2040-05-31": "Corpus Christi; D\u00eda de Castilla La Mancha", "2040-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "2040-06-24": "San Juan", - "2040-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2040-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2040-07-28": "D\u00eda de las Instituciones de Cantabria", "2040-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2040-08-15": "Asunci\u00f3n de la Virgen", - "2040-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2040-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2040-09-11": "D\u00eda Nacional de Catalunya", - "2040-09-15": "D\u00eda de la Bien Aparecida", - "2040-09-17": "D\u00eda de Melilla", - "2040-10-12": "D\u00eda de la Hispanidad", + "2040-09-02": "D\u00eda de Ceuta", + "2040-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2040-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2040-09-15": "La Bien Aparecida", + "2040-10-07": "Eid al-Fitr* (*estimated)", + "2040-10-09": "D\u00eda de la Comunidad Valenciana", + "2040-10-12": "Fiesta Nacional de Espa\u00f1a", "2040-11-01": "Todos los Santos", "2040-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2040-12-08": "La Inmaculada Concepci\u00f3n", - "2040-12-25": "Navidad", + "2040-12-08": "Inmaculada Concepci\u00f3n", + "2040-12-14": "Eid al-Adha* (*estimated)", + "2040-12-25": "Natividad del Se\u00f1or", "2040-12-26": "San Esteban", "2041-01-01": "A\u00f1o nuevo", "2041-01-06": "Epifan\u00eda del Se\u00f1or", @@ -2914,29 +2833,31 @@ "2041-04-18": "Jueves Santo", "2041-04-19": "Viernes Santo", "2041-04-22": "Lunes de Pascua", - "2041-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2041-05-01": "D\u00eda del Trabajador", - "2041-05-02": "D\u00eda de Comunidad de Madrid", - "2041-05-17": "D\u00eda de las letras Gallegas", + "2041-04-23": "D\u00eda de San Jorge", + "2041-05-01": "Fiesta del Trabajo", + "2041-05-02": "Fiesta de la Comunidad de Madrid", + "2041-05-17": "D\u00eda de las Letras Gallegas", "2041-05-30": "D\u00eda de Canarias", "2041-05-31": "D\u00eda de Castilla La Mancha", - "2041-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2041-06-10": "Lunes siguiente a D\u00eda de La Rioja; Lunes siguiente a D\u00eda de la Regi\u00f3n de Murcia", "2041-06-20": "Corpus Christi", "2041-06-24": "San Juan", - "2041-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2041-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2041-07-28": "D\u00eda de las Instituciones de Cantabria", "2041-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2041-08-15": "Asunci\u00f3n de la Virgen", - "2041-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2041-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2041-09-11": "D\u00eda Nacional de Catalunya", - "2041-09-15": "D\u00eda de la Bien Aparecida", - "2041-09-17": "D\u00eda de Melilla", - "2041-10-12": "D\u00eda de la Hispanidad", + "2041-09-02": "D\u00eda de Ceuta", + "2041-09-09": "Lunes siguiente a D\u00eda de Asturias; Lunes siguiente a D\u00eda de Extremadura", + "2041-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2041-09-15": "La Bien Aparecida", + "2041-09-26": "Eid al-Fitr* (*estimated)", + "2041-10-09": "D\u00eda de la Comunidad Valenciana", + "2041-10-12": "Fiesta Nacional de Espa\u00f1a", "2041-11-01": "Todos los Santos", + "2041-12-04": "Eid al-Adha* (*estimated)", "2041-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2041-12-08": "La Inmaculada Concepci\u00f3n", - "2041-12-25": "Navidad", + "2041-12-08": "Inmaculada Concepci\u00f3n", + "2041-12-25": "Natividad del Se\u00f1or", "2041-12-26": "San Esteban", "2042-01-01": "A\u00f1o nuevo", "2042-01-06": "Epifan\u00eda del Se\u00f1or", @@ -2945,29 +2866,30 @@ "2042-04-03": "Jueves Santo", "2042-04-04": "Viernes Santo", "2042-04-07": "Lunes de Pascua", - "2042-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2042-05-01": "D\u00eda del Trabajador", - "2042-05-02": "D\u00eda de Comunidad de Madrid", - "2042-05-17": "D\u00eda de las letras Gallegas", + "2042-04-23": "D\u00eda de San Jorge", + "2042-05-01": "Fiesta del Trabajo", + "2042-05-02": "Fiesta de la Comunidad de Madrid", + "2042-05-17": "D\u00eda de las Letras Gallegas", "2042-05-30": "D\u00eda de Canarias", "2042-05-31": "D\u00eda de Castilla La Mancha", "2042-06-05": "Corpus Christi", "2042-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "2042-06-24": "San Juan", - "2042-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2042-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2042-07-28": "D\u00eda de las Instituciones de Cantabria", "2042-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2042-08-15": "Asunci\u00f3n de la Virgen", - "2042-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2042-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2042-09-11": "D\u00eda Nacional de Catalunya", - "2042-09-15": "D\u00eda de la Bien Aparecida", - "2042-09-17": "D\u00eda de Melilla", - "2042-10-12": "D\u00eda de la Hispanidad", + "2042-09-02": "D\u00eda de Ceuta", + "2042-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2042-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2042-09-15": "Eid al-Fitr* (*estimated); La Bien Aparecida", + "2042-10-09": "D\u00eda de la Comunidad Valenciana", + "2042-10-12": "Fiesta Nacional de Espa\u00f1a", "2042-11-01": "Todos los Santos", + "2042-11-23": "Eid al-Adha* (*estimated)", "2042-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2042-12-08": "La Inmaculada Concepci\u00f3n", - "2042-12-25": "Navidad", + "2042-12-08": "Inmaculada Concepci\u00f3n", + "2042-12-25": "Natividad del Se\u00f1or", "2042-12-26": "San Esteban", "2043-01-01": "A\u00f1o nuevo", "2043-01-06": "Epifan\u00eda del Se\u00f1or", @@ -2976,60 +2898,64 @@ "2043-03-26": "Jueves Santo", "2043-03-27": "Viernes Santo", "2043-03-30": "Lunes de Pascua", - "2043-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2043-05-01": "D\u00eda del Trabajador", - "2043-05-02": "D\u00eda de Comunidad de Madrid", - "2043-05-17": "D\u00eda de las letras Gallegas", + "2043-04-23": "D\u00eda de San Jorge", + "2043-05-01": "Fiesta del Trabajo", + "2043-05-02": "Fiesta de la Comunidad de Madrid", + "2043-05-17": "D\u00eda de las Letras Gallegas", "2043-05-28": "Corpus Christi", "2043-05-30": "D\u00eda de Canarias", "2043-05-31": "D\u00eda de Castilla La Mancha", "2043-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "2043-06-24": "San Juan", - "2043-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2043-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2043-07-28": "D\u00eda de las Instituciones de Cantabria", "2043-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2043-08-15": "Asunci\u00f3n de la Virgen", - "2043-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2043-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2043-09-11": "D\u00eda Nacional de Catalunya", - "2043-09-15": "D\u00eda de la Bien Aparecida", - "2043-09-17": "D\u00eda de Melilla", - "2043-10-12": "D\u00eda de la Hispanidad", + "2043-09-02": "D\u00eda de Ceuta", + "2043-09-04": "Eid al-Fitr* (*estimated)", + "2043-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2043-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2043-09-15": "La Bien Aparecida", + "2043-10-09": "D\u00eda de la Comunidad Valenciana", + "2043-10-12": "Fiesta Nacional de Espa\u00f1a", "2043-11-01": "Todos los Santos", + "2043-11-12": "Eid al-Adha* (*estimated)", "2043-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2043-12-08": "La Inmaculada Concepci\u00f3n", - "2043-12-25": "Navidad", + "2043-12-08": "Inmaculada Concepci\u00f3n", + "2043-12-25": "Natividad del Se\u00f1or", "2043-12-26": "San Esteban", "2044-01-01": "A\u00f1o nuevo", "2044-01-06": "Epifan\u00eda del Se\u00f1or", - "2044-02-28": "D\u00eda de Andalucia", + "2044-02-29": "Lunes siguiente a D\u00eda de Andalucia", "2044-03-01": "D\u00eda de las Islas Baleares", "2044-04-14": "Jueves Santo", "2044-04-15": "Viernes Santo", "2044-04-18": "Lunes de Pascua", - "2044-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2044-05-01": "D\u00eda del Trabajador", - "2044-05-02": "D\u00eda de Comunidad de Madrid", - "2044-05-17": "D\u00eda de las letras Gallegas", + "2044-04-23": "D\u00eda de San Jorge", + "2044-05-01": "Fiesta del Trabajo", + "2044-05-02": "Fiesta de la Comunidad de Madrid", + "2044-05-17": "D\u00eda de las Letras Gallegas", "2044-05-30": "D\u00eda de Canarias", "2044-05-31": "D\u00eda de Castilla La Mancha", "2044-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "2044-06-16": "Corpus Christi", "2044-06-24": "San Juan", - "2044-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2044-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2044-07-28": "D\u00eda de las Instituciones de Cantabria", "2044-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2044-08-15": "Asunci\u00f3n de la Virgen", - "2044-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2044-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2044-09-11": "D\u00eda Nacional de Catalunya", - "2044-09-15": "D\u00eda de la Bien Aparecida", - "2044-09-17": "D\u00eda de Melilla", - "2044-10-12": "D\u00eda de la Hispanidad", + "2044-08-24": "Eid al-Fitr* (*estimated)", + "2044-09-02": "D\u00eda de Ceuta", + "2044-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2044-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2044-09-15": "La Bien Aparecida", + "2044-10-09": "D\u00eda de la Comunidad Valenciana", + "2044-10-12": "Fiesta Nacional de Espa\u00f1a", + "2044-10-31": "Eid al-Adha* (*estimated)", "2044-11-01": "Todos los Santos", "2044-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2044-12-08": "La Inmaculada Concepci\u00f3n", - "2044-12-25": "Navidad", + "2044-12-08": "Inmaculada Concepci\u00f3n", + "2044-12-25": "Natividad del Se\u00f1or", "2044-12-26": "San Esteban", "2045-01-01": "A\u00f1o nuevo", "2045-01-06": "Epifan\u00eda del Se\u00f1or", @@ -3038,29 +2964,31 @@ "2045-04-06": "Jueves Santo", "2045-04-07": "Viernes Santo", "2045-04-10": "Lunes de Pascua", - "2045-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2045-05-01": "D\u00eda del Trabajador", - "2045-05-02": "D\u00eda de Comunidad de Madrid", - "2045-05-17": "D\u00eda de las letras Gallegas", + "2045-04-24": "Lunes siguiente a D\u00eda de San Jorge", + "2045-05-01": "Fiesta del Trabajo", + "2045-05-02": "Fiesta de la Comunidad de Madrid", + "2045-05-17": "D\u00eda de las Letras Gallegas", "2045-05-30": "D\u00eda de Canarias", "2045-05-31": "D\u00eda de Castilla La Mancha", "2045-06-08": "Corpus Christi", "2045-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "2045-06-24": "San Juan", - "2045-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2045-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2045-07-28": "D\u00eda de las Instituciones de Cantabria", "2045-08-05": "Nuestra Se\u00f1ora de \u00c1frica", + "2045-08-14": "Eid al-Fitr* (*estimated)", "2045-08-15": "Asunci\u00f3n de la Virgen", - "2045-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2045-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2045-09-11": "D\u00eda Nacional de Catalunya", - "2045-09-15": "D\u00eda de la Bien Aparecida", - "2045-09-17": "D\u00eda de Melilla", - "2045-10-12": "D\u00eda de la Hispanidad", + "2045-09-02": "D\u00eda de Ceuta", + "2045-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2045-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2045-09-15": "La Bien Aparecida", + "2045-10-09": "D\u00eda de la Comunidad Valenciana", + "2045-10-12": "Fiesta Nacional de Espa\u00f1a", + "2045-10-21": "Eid al-Adha* (*estimated)", "2045-11-01": "Todos los Santos", "2045-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2045-12-08": "La Inmaculada Concepci\u00f3n", - "2045-12-25": "Navidad", + "2045-12-08": "Inmaculada Concepci\u00f3n", + "2045-12-25": "Natividad del Se\u00f1or", "2045-12-26": "San Esteban", "2046-01-01": "A\u00f1o nuevo", "2046-01-06": "Epifan\u00eda del Se\u00f1or", @@ -3069,29 +2997,31 @@ "2046-03-22": "Jueves Santo", "2046-03-23": "Viernes Santo", "2046-03-26": "Lunes de Pascua", - "2046-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2046-05-01": "D\u00eda del Trabajador", - "2046-05-02": "D\u00eda de Comunidad de Madrid", - "2046-05-17": "D\u00eda de las letras Gallegas", + "2046-04-23": "D\u00eda de San Jorge", + "2046-05-01": "Fiesta del Trabajo", + "2046-05-02": "Fiesta de la Comunidad de Madrid", + "2046-05-17": "D\u00eda de las Letras Gallegas", "2046-05-24": "Corpus Christi", "2046-05-30": "D\u00eda de Canarias", "2046-05-31": "D\u00eda de Castilla La Mancha", "2046-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "2046-06-24": "San Juan", - "2046-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2046-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2046-07-28": "D\u00eda de las Instituciones de Cantabria", + "2046-08-03": "Eid al-Fitr* (*estimated)", "2046-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2046-08-15": "Asunci\u00f3n de la Virgen", - "2046-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2046-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2046-09-11": "D\u00eda Nacional de Catalunya", - "2046-09-15": "D\u00eda de la Bien Aparecida", - "2046-09-17": "D\u00eda de Melilla", - "2046-10-12": "D\u00eda de la Hispanidad", + "2046-09-02": "D\u00eda de Ceuta", + "2046-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2046-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2046-09-15": "La Bien Aparecida", + "2046-10-09": "D\u00eda de la Comunidad Valenciana", + "2046-10-10": "Eid al-Adha* (*estimated)", + "2046-10-12": "Fiesta Nacional de Espa\u00f1a", "2046-11-01": "Todos los Santos", "2046-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2046-12-08": "La Inmaculada Concepci\u00f3n", - "2046-12-25": "Navidad", + "2046-12-08": "Inmaculada Concepci\u00f3n", + "2046-12-25": "Natividad del Se\u00f1or", "2046-12-26": "San Esteban", "2047-01-01": "A\u00f1o nuevo", "2047-01-06": "Epifan\u00eda del Se\u00f1or", @@ -3100,29 +3030,31 @@ "2047-04-11": "Jueves Santo", "2047-04-12": "Viernes Santo", "2047-04-15": "Lunes de Pascua", - "2047-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2047-05-01": "D\u00eda del Trabajador", - "2047-05-02": "D\u00eda de Comunidad de Madrid", - "2047-05-17": "D\u00eda de las letras Gallegas", + "2047-04-23": "D\u00eda de San Jorge", + "2047-05-01": "Fiesta del Trabajo", + "2047-05-02": "Fiesta de la Comunidad de Madrid", + "2047-05-17": "D\u00eda de las Letras Gallegas", "2047-05-30": "D\u00eda de Canarias", "2047-05-31": "D\u00eda de Castilla La Mancha", - "2047-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2047-06-10": "Lunes siguiente a D\u00eda de La Rioja; Lunes siguiente a D\u00eda de la Regi\u00f3n de Murcia", "2047-06-13": "Corpus Christi", "2047-06-24": "San Juan", - "2047-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2047-07-24": "Eid al-Fitr* (*estimated)", + "2047-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2047-07-28": "D\u00eda de las Instituciones de Cantabria", "2047-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2047-08-15": "Asunci\u00f3n de la Virgen", - "2047-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2047-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2047-09-11": "D\u00eda Nacional de Catalunya", - "2047-09-15": "D\u00eda de la Bien Aparecida", - "2047-09-17": "D\u00eda de Melilla", - "2047-10-12": "D\u00eda de la Hispanidad", + "2047-09-02": "D\u00eda de Ceuta", + "2047-09-09": "Lunes siguiente a D\u00eda de Asturias; Lunes siguiente a D\u00eda de Extremadura", + "2047-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2047-09-15": "La Bien Aparecida", + "2047-09-30": "Eid al-Adha* (*estimated)", + "2047-10-09": "D\u00eda de la Comunidad Valenciana", + "2047-10-12": "Fiesta Nacional de Espa\u00f1a", "2047-11-01": "Todos los Santos", "2047-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2047-12-08": "La Inmaculada Concepci\u00f3n", - "2047-12-25": "Navidad", + "2047-12-08": "Inmaculada Concepci\u00f3n", + "2047-12-25": "Natividad del Se\u00f1or", "2047-12-26": "San Esteban", "2048-01-01": "A\u00f1o nuevo", "2048-01-06": "Epifan\u00eda del Se\u00f1or", @@ -3131,60 +3063,61 @@ "2048-04-02": "Jueves Santo", "2048-04-03": "Viernes Santo", "2048-04-06": "Lunes de Pascua", - "2048-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2048-05-01": "D\u00eda del Trabajador", - "2048-05-02": "D\u00eda de Comunidad de Madrid", - "2048-05-17": "D\u00eda de las letras Gallegas", + "2048-04-23": "D\u00eda de San Jorge", + "2048-05-01": "Fiesta del Trabajo", + "2048-05-02": "Fiesta de la Comunidad de Madrid", + "2048-05-17": "D\u00eda de las Letras Gallegas", "2048-05-30": "D\u00eda de Canarias", "2048-05-31": "D\u00eda de Castilla La Mancha", "2048-06-04": "Corpus Christi", "2048-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "2048-06-24": "San Juan", - "2048-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2048-07-12": "Eid al-Fitr* (*estimated)", + "2048-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2048-07-28": "D\u00eda de las Instituciones de Cantabria", "2048-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2048-08-15": "Asunci\u00f3n de la Virgen", - "2048-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2048-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2048-09-11": "D\u00eda Nacional de Catalunya", - "2048-09-15": "D\u00eda de la Bien Aparecida", - "2048-09-17": "D\u00eda de Melilla", - "2048-10-12": "D\u00eda de la Hispanidad", + "2048-09-02": "D\u00eda de Ceuta", + "2048-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2048-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2048-09-15": "La Bien Aparecida", + "2048-09-19": "Eid al-Adha* (*estimated)", + "2048-10-09": "D\u00eda de la Comunidad Valenciana", + "2048-10-12": "Fiesta Nacional de Espa\u00f1a", "2048-11-01": "Todos los Santos", "2048-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2048-12-08": "La Inmaculada Concepci\u00f3n", - "2048-12-25": "Navidad", + "2048-12-08": "Inmaculada Concepci\u00f3n", + "2048-12-25": "Natividad del Se\u00f1or", "2048-12-26": "San Esteban", "2049-01-01": "A\u00f1o nuevo", "2049-01-06": "Epifan\u00eda del Se\u00f1or", - "2049-02-28": "D\u00eda de Andalucia", - "2049-03-01": "D\u00eda de las Islas Baleares", + "2049-03-01": "D\u00eda de las Islas Baleares; Lunes siguiente a D\u00eda de Andalucia", "2049-04-15": "Jueves Santo", "2049-04-16": "Viernes Santo", "2049-04-19": "Lunes de Pascua", - "2049-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2049-05-01": "D\u00eda del Trabajador", - "2049-05-02": "D\u00eda de Comunidad de Madrid", - "2049-05-17": "D\u00eda de las letras Gallegas", - "2049-05-30": "D\u00eda de Canarias", - "2049-05-31": "D\u00eda de Castilla La Mancha", + "2049-04-23": "D\u00eda de San Jorge", + "2049-05-01": "Fiesta del Trabajo", + "2049-05-03": "Lunes siguiente a Fiesta de la Comunidad de Madrid", + "2049-05-17": "D\u00eda de las Letras Gallegas", + "2049-05-31": "D\u00eda de Castilla La Mancha; Lunes siguiente a D\u00eda de Canarias", "2049-06-09": "D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", "2049-06-17": "Corpus Christi", "2049-06-24": "San Juan", - "2049-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2049-07-01": "Eid al-Fitr* (*estimated)", + "2049-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2049-07-28": "D\u00eda de las Instituciones de Cantabria", "2049-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2049-08-15": "Asunci\u00f3n de la Virgen", - "2049-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2049-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2049-09-11": "D\u00eda Nacional de Catalunya", - "2049-09-15": "D\u00eda de la Bien Aparecida", - "2049-09-17": "D\u00eda de Melilla", - "2049-10-12": "D\u00eda de la Hispanidad", + "2049-09-02": "D\u00eda de Ceuta", + "2049-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; Eid al-Adha* (*estimated)", + "2049-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2049-09-15": "La Bien Aparecida", + "2049-10-09": "D\u00eda de la Comunidad Valenciana", + "2049-10-12": "Fiesta Nacional de Espa\u00f1a", "2049-11-01": "Todos los Santos", "2049-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2049-12-08": "La Inmaculada Concepci\u00f3n", - "2049-12-25": "Navidad", + "2049-12-08": "Inmaculada Concepci\u00f3n", + "2049-12-25": "Natividad del Se\u00f1or", "2049-12-26": "San Esteban", "2050-01-01": "A\u00f1o nuevo", "2050-01-06": "Epifan\u00eda del Se\u00f1or", @@ -3193,27 +3126,29 @@ "2050-04-07": "Jueves Santo", "2050-04-08": "Viernes Santo", "2050-04-11": "Lunes de Pascua", - "2050-04-23": "D\u00eda de Castilla y Leon; D\u00eda de San Jorge", - "2050-05-01": "D\u00eda del Trabajador", - "2050-05-02": "D\u00eda de Comunidad de Madrid", - "2050-05-17": "D\u00eda de las letras Gallegas", + "2050-04-23": "D\u00eda de San Jorge", + "2050-05-01": "Fiesta del Trabajo", + "2050-05-02": "Fiesta de la Comunidad de Madrid", + "2050-05-17": "D\u00eda de las Letras Gallegas", "2050-05-30": "D\u00eda de Canarias", "2050-05-31": "D\u00eda de Castilla La Mancha", "2050-06-09": "Corpus Christi; D\u00eda de La Rioja; D\u00eda de la Regi\u00f3n de Murcia", + "2050-06-20": "Eid al-Fitr* (*estimated)", "2050-06-24": "San Juan", - "2050-07-25": "D\u00eda Nacional de Galicia; D\u00eda de Santiago Ap\u00f3stol", + "2050-07-25": "D\u00eda Nacional de Galicia; Santiago Ap\u00f3stol", "2050-07-28": "D\u00eda de las Instituciones de Cantabria", "2050-08-05": "Nuestra Se\u00f1ora de \u00c1frica", "2050-08-15": "Asunci\u00f3n de la Virgen", - "2050-09-02": "D\u00eda de la Ciudad Aut\u00f3noma de Ceuta", - "2050-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura; V\u00edrgen de la victoria", - "2050-09-11": "D\u00eda Nacional de Catalunya", - "2050-09-15": "D\u00eda de la Bien Aparecida", - "2050-09-17": "D\u00eda de Melilla", - "2050-10-12": "D\u00eda de la Hispanidad", + "2050-08-28": "Eid al-Adha* (*estimated)", + "2050-09-02": "D\u00eda de Ceuta", + "2050-09-08": "D\u00eda de Asturias; D\u00eda de Extremadura", + "2050-09-11": "Fiesta Nacional de Catalu\u00f1a", + "2050-09-15": "La Bien Aparecida", + "2050-10-09": "D\u00eda de la Comunidad Valenciana", + "2050-10-12": "Fiesta Nacional de Espa\u00f1a", "2050-11-01": "Todos los Santos", "2050-12-06": "D\u00eda de la Constituci\u00f3n Espa\u00f1ola", - "2050-12-08": "La Inmaculada Concepci\u00f3n", - "2050-12-25": "Navidad", + "2050-12-08": "Inmaculada Concepci\u00f3n", + "2050-12-25": "Natividad del Se\u00f1or", "2050-12-26": "San Esteban" } From ec333ee08d8431bc8aaf5dae8783ebd341eb3f80 Mon Sep 17 00:00:00 2001 From: ~Jhellico Date: Thu, 28 Sep 2023 12:59:19 +0300 Subject: [PATCH 06/10] Update NYSE holidays: fix Juneteenth National Independence Day start year (#1484) --- holidays/financial/ny_stock_exchange.py | 5 +++-- snapshots/financial/NYSE.json | 1 - snapshots/financial/XNYS.json | 1 - tests/financial/test_ny_stock_exchange.py | 24 +++++++++++------------ 4 files changed, 15 insertions(+), 16 deletions(-) diff --git a/holidays/financial/ny_stock_exchange.py b/holidays/financial/ny_stock_exchange.py index 0d387abfc..41fb1a50d 100644 --- a/holidays/financial/ny_stock_exchange.py +++ b/holidays/financial/ny_stock_exchange.py @@ -39,6 +39,7 @@ class NewYorkStockExchange(HolidayBase, ChristianHolidays, InternationalHolidays - https://www.nyse.com/markets/hours-calendars Historical data: - s3.amazonaws.com/armstrongeconomics-wp/2013/07/NYSE-Closings.pdf + - https://web.archive.org/web/20211101162021/https://www.nyse.com/markets/hours-calendars """ market = "NYSE" @@ -204,8 +205,8 @@ def _populate(self, year): if 1916 <= year <= 1953: self._add_observed_holiday("Flag Day", date(year, JUN, 14)) - # JUNETEENTH: since 2021 - if year >= 2021: + # JUNETEENTH: since 2022 + if year >= 2022: self._add_observed_holiday("Juneteenth National Independence Day", date(year, JUN, 19)) # INDEPENDENCE DAY (July 4) - history suggests closed every year diff --git a/snapshots/financial/NYSE.json b/snapshots/financial/NYSE.json index 670904e38..88d0a2f3c 100644 --- a/snapshots/financial/NYSE.json +++ b/snapshots/financial/NYSE.json @@ -685,7 +685,6 @@ "2021-02-15": "Washington's Birthday", "2021-04-02": "Good Friday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", "2021-07-05": "Independence Day (Observed)", "2021-09-06": "Labor Day", "2021-11-25": "Thanksgiving Day", diff --git a/snapshots/financial/XNYS.json b/snapshots/financial/XNYS.json index 670904e38..88d0a2f3c 100644 --- a/snapshots/financial/XNYS.json +++ b/snapshots/financial/XNYS.json @@ -685,7 +685,6 @@ "2021-02-15": "Washington's Birthday", "2021-04-02": "Good Friday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", "2021-07-05": "Independence Day (Observed)", "2021-09-06": "Labor Day", "2021-11-25": "Thanksgiving Day", diff --git a/tests/financial/test_ny_stock_exchange.py b/tests/financial/test_ny_stock_exchange.py index 8014c5924..a98fea8d8 100644 --- a/tests/financial/test_ny_stock_exchange.py +++ b/tests/financial/test_ny_stock_exchange.py @@ -210,8 +210,8 @@ def test_flagday(self): def test_juneteenth(self): for dt in ( - date(2021, JUN, 18), date(2022, JUN, 20), + date(2023, JUN, 19), ): self.assertHoliday(dt) self.assertNoHoliday(dt + td(days=-1)) @@ -222,6 +222,7 @@ def test_juneteenth(self): for dt in ( date(1954, JUN, 18), date(1967, JUN, 19), + date(2021, JUN, 18), ): self.assertNoHoliday(dt) @@ -473,15 +474,14 @@ def _make_special_holiday_list(begin, end, days=None, weekends=False): def test_all_modern_holidays_present(self): self.assertHolidays( - ("2021-01-01", "New Year's Day"), - ("2021-01-18", "Martin Luther King Jr. Day"), - ("2021-02-15", "Washington's Birthday"), - ("2021-04-02", "Good Friday"), - ("2021-05-31", "Memorial Day"), - ("2021-06-18", "Juneteenth National Independence Day (Observed)"), - ("2021-07-05", "Independence Day (Observed)"), - ("2021-09-06", "Labor Day"), - ("2021-11-25", "Thanksgiving Day"), - ("2021-12-24", "Christmas Day (Observed)"), - ("2021-12-31", "New Year's Day (Observed)"), + ("2023-01-02", "New Year's Day (Observed)"), + ("2023-01-16", "Martin Luther King Jr. Day"), + ("2023-02-20", "Washington's Birthday"), + ("2023-04-07", "Good Friday"), + ("2023-05-29", "Memorial Day"), + ("2023-06-19", "Juneteenth National Independence Day"), + ("2023-07-04", "Independence Day"), + ("2023-09-04", "Labor Day"), + ("2023-11-23", "Thanksgiving Day"), + ("2023-12-25", "Christmas Day"), ) From dcc42de39a60e1114e5857940a7c5fc3dabe3eb2 Mon Sep 17 00:00:00 2001 From: ~Jhellico Date: Thu, 28 Sep 2023 13:14:48 +0300 Subject: [PATCH 07/10] Update CHANGES --- CHANGES | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGES b/CHANGES index 713ea3979..ca06810f4 100644 --- a/CHANGES +++ b/CHANGES @@ -3,6 +3,12 @@ Version 0.34 Released ???????? ??, ???? +- Introduce holiday snapshots (#1478 by @arkid15r) +- Update ES snapshot (#1481 by @arkid15r) +- Update NYSE holidays: fix Juneteenth National Independence Day start year (#1484 by @KJhellico) +- Update Spain holidays (#1476 by @KJhellico) +- Update package configuration: migrate to pyproject.toml (#1466 by @arkid15r) + Version 0.33 ============ From 0d08573951fdcfe370996049d0ede430d49cf23a Mon Sep 17 00:00:00 2001 From: ~Jhellico Date: Thu, 28 Sep 2023 18:45:08 +0300 Subject: [PATCH 08/10] Update Belarus holidays: add substituted holidays (#1486) --- holidays/countries/belarus.py | 151 +++++++++++++++++++++++- holidays/locale/be/LC_MESSAGES/BY.po | 17 ++- holidays/locale/en_US/LC_MESSAGES/BY.po | 16 ++- snapshots/countries/BY.json | 92 +++++++++++++++ tests/countries/test_belarus.py | 100 +++++++++++++++- 5 files changed, 358 insertions(+), 18 deletions(-) diff --git a/holidays/countries/belarus.py b/holidays/countries/belarus.py index c8ac62f82..f2b4e609f 100644 --- a/holidays/countries/belarus.py +++ b/holidays/countries/belarus.py @@ -11,7 +11,7 @@ from gettext import gettext as tr -from holidays.calendars.gregorian import GREGORIAN_CALENDAR +from holidays.calendars.gregorian import GREGORIAN_CALENDAR, JAN, MAR, APR, MAY, JUN, JUL, NOV, DEC from holidays.calendars.julian import JULIAN_CALENDAR from holidays.groups import ChristianHolidays, InternationalHolidays from holidays.holiday_base import HolidayBase @@ -24,11 +24,153 @@ class Belarus(HolidayBase, ChristianHolidays, InternationalHolidays): References: - http://president.gov.by/en/holidays_en/ - http://www.belarus.by/en/about-belarus/national-holidays + - http://laws.newsby.org/documents/ukazp/pos05/ukaz05806.htm + - http://president.gov.by/uploads/documents/2019/464uk.pdf + - https://ru.wikipedia.org/wiki/%D0%9F%D1%80%D0%B0%D0%B7%D0%B4%D0%BD%D0%B8%D0%BA%D0%B8_%D0%91%D0%B5%D0%BB%D0%BE%D1%80%D1%83%D1%81%D1%81%D0%B8%D0%B8 # noqa: E501 """ country = "BY" default_language = "be" supported_languages = ("be", "en_US") + # Date format (see strftime() Format Codes) + substituted_date_format = tr("%d.%m.%Y") + # Day off (substituted from %s). + substituted_label = tr("Выходны (перанесены з %s)") + substituted_holidays = { + 1998: ( + (JAN, 10, JAN, 2), + (APR, 25, APR, 27), + ), + 1999: ( + (JAN, 16, JAN, 8), + (APR, 17, APR, 19), + ), + 2000: ( + (MAY, 13, MAY, 8), + (NOV, 11, NOV, 6), + ), + 2001: ( + (JAN, 20, JAN, 2), + (MAR, 3, MAR, 9), + (APR, 21, APR, 23), + (APR, 28, APR, 30), + (JUL, 7, JUL, 2), + (DEC, 22, DEC, 24), + (DEC, 29, DEC, 31), + ), + 2002: ( + (JAN, 5, JAN, 2), + (MAY, 18, MAY, 10), + (NOV, 16, NOV, 8), + ), + 2003: ( + (JAN, 4, JAN, 6), + (MAY, 3, MAY, 5), + ), + 2004: ( + (JAN, 10, JAN, 2), + (JAN, 17, JAN, 5), + (JAN, 31, JAN, 6), + (APR, 17, APR, 19), + ), + 2005: (MAR, 12, MAR, 7), + 2006: ( + (JAN, 21, JAN, 2), + (MAY, 6, MAY, 8), + (NOV, 4, NOV, 6), + ), + 2007: ( + (2006, DEC, 30, JAN, 2), + (MAR, 17, MAR, 9), + (APR, 14, APR, 16), + (MAY, 5, APR, 30), + (JUL, 7, JUL, 2), + (DEC, 22, DEC, 24), + (DEC, 29, DEC, 31), + ), + 2008: ( + (JAN, 12, JAN, 2), + (MAY, 3, MAY, 5), + (JUN, 28, JUL, 4), + (DEC, 20, DEC, 26), + ), + 2009: ( + (JAN, 10, JAN, 2), + (APR, 25, APR, 27), + ), + 2010: ( + (JAN, 23, JAN, 8), + (APR, 17, APR, 12), + (MAY, 15, MAY, 10), + ), + 2011: ( + (MAR, 12, MAR, 7), + (MAY, 14, MAY, 2), + ), + 2012: ( + (MAR, 11, MAR, 9), + (APR, 28, APR, 23), + (JUN, 30, JUL, 2), + (DEC, 22, DEC, 24), + (DEC, 29, DEC, 31), + ), + 2013: ( + (JAN, 5, JAN, 2), + (MAY, 18, MAY, 10), + ), + 2014: ( + (JAN, 4, JAN, 2), + (JAN, 11, JAN, 6), + (MAY, 3, APR, 30), + (JUL, 12, JUL, 4), + (DEC, 20, DEC, 26), + ), + 2015: ( + (JAN, 10, JAN, 2), + (APR, 25, APR, 20), + ), + 2016: ( + (JAN, 16, JAN, 8), + (MAR, 5, MAR, 7), + ), + 2017: ( + (JAN, 21, JAN, 2), + (APR, 29, APR, 24), + (MAY, 6, MAY, 8), + (NOV, 4, NOV, 6), + ), + 2018: ( + (JAN, 20, JAN, 2), + (MAR, 3, MAR, 9), + (APR, 14, APR, 16), + (APR, 28, APR, 30), + (JUL, 7, JUL, 2), + (DEC, 22, DEC, 24), + (DEC, 29, DEC, 31), + ), + 2019: ( + (MAY, 4, MAY, 6), + (MAY, 11, MAY, 8), + (NOV, 16, NOV, 8), + ), + 2020: ( + (JAN, 4, JAN, 6), + (APR, 4, APR, 27), + ), + 2021: ( + (JAN, 16, JAN, 8), + (MAY, 15, MAY, 10), + ), + 2022: ( + (MAR, 12, MAR, 7), + (MAY, 14, MAY, 2), + ), + 2023: ( + (APR, 29, APR, 24), + (MAY, 13, MAY, 8), + (NOV, 11, NOV, 6), + ), + } def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self, JULIAN_CALENDAR) @@ -36,9 +178,8 @@ def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) def _populate(self, year): - # The current set of holidays came into force in 1998. - # http://laws.newsby.org/documents/ukazp/pos05/ukaz05806.htm - if year <= 1998: + # The current set of holidays actual from 1998. + if year <= 1997: return None super()._populate(year) @@ -46,8 +187,6 @@ def _populate(self, year): # New Year's Day. self._add_new_years_day(tr("Новы год")) - # Jan 2nd is the national holiday (New Year) from 2020. - # http://president.gov.by/uploads/documents/2019/464uk.pdf if year >= 2020: self._add_new_years_day_two(tr("Новы год")) diff --git a/holidays/locale/be/LC_MESSAGES/BY.po b/holidays/locale/be/LC_MESSAGES/BY.po index eff56c9bc..fe7e9fa9c 100644 --- a/holidays/locale/be/LC_MESSAGES/BY.po +++ b/holidays/locale/be/LC_MESSAGES/BY.po @@ -3,18 +3,29 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.20\n" +"Project-Id-Version: Python Holidays 0.34\n" "POT-Creation-Date: 2023-02-15 20:06-0800\n" -"PO-Revision-Date: 2023-02-16 08:45-0800\n" -"Last-Translator: Arkadii Yakovets \n" +"PO-Revision-Date: 2023-09-27 18:49+0300\n" +"Last-Translator: ~Jhellico \n" "Language-Team: Python Holidays localization team\n" "Language: be\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || " +"n%100>14) ? 1 : 2);\n" "Generated-By: Lingua 4.15.0\n" "X-Generator: Poedit 3.2.2\n" +#. Date format (see strftime() Format Codes) +msgid "%d.%m.%Y" +msgstr "" + +#. Day off (substituted from %s). +#, c-format +msgid "Выходны (перанесены з %s)" +msgstr "" + #. New Year's Day. msgid "Новы год" msgstr "" diff --git a/holidays/locale/en_US/LC_MESSAGES/BY.po b/holidays/locale/en_US/LC_MESSAGES/BY.po index 72dc5ed1d..421e266bd 100644 --- a/holidays/locale/en_US/LC_MESSAGES/BY.po +++ b/holidays/locale/en_US/LC_MESSAGES/BY.po @@ -3,18 +3,28 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.20\n" +"Project-Id-Version: Python Holidays 0.34\n" "POT-Creation-Date: 2023-02-15 20:06-0800\n" -"PO-Revision-Date: 2023-02-14 17:52-0800\n" -"Last-Translator: Arkadii Yakovets \n" +"PO-Revision-Date: 2023-09-27 18:50+0300\n" +"Last-Translator: ~Jhellico \n" "Language-Team: Python Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Generated-By: Lingua 4.15.0\n" "X-Generator: Poedit 3.2.2\n" +#. Date format (see strftime() Format Codes) +msgid "%d.%m.%Y" +msgstr "%m/%d/%Y" + +#. Day off (substituted from %s). +#, c-format +msgid "Выходны (перанесены з %s)" +msgstr "Day off (substituted from %s)" + #. New Year's Day. msgid "Новы год" msgstr "New Year's Day" diff --git a/snapshots/countries/BY.json b/snapshots/countries/BY.json index 8634a062d..8b3491216 100644 --- a/snapshots/countries/BY.json +++ b/snapshots/countries/BY.json @@ -1,7 +1,20 @@ { + "1998-01-01": "New Year's Day", + "1998-01-02": "Day off (substituted from 01/10/1998)", + "1998-01-07": "Orthodox Christmas Day", + "1998-03-08": "Women's Day", + "1998-04-27": "Day off (substituted from 04/25/1998)", + "1998-04-28": "Radunitsa", + "1998-05-01": "Labor Day", + "1998-05-09": "Victory Day", + "1998-07-03": "Independence Day (Republic Day)", + "1998-11-07": "October Revolution Day", + "1998-12-25": "Catholic Christmas Day", "1999-01-01": "New Year's Day", "1999-01-07": "Orthodox Christmas Day", + "1999-01-08": "Day off (substituted from 01/16/1999)", "1999-03-08": "Women's Day", + "1999-04-19": "Day off (substituted from 04/17/1999)", "1999-04-20": "Radunitsa", "1999-05-01": "Labor Day", "1999-05-09": "Victory Day", @@ -12,40 +25,58 @@ "2000-01-07": "Orthodox Christmas Day", "2000-03-08": "Women's Day", "2000-05-01": "Labor Day", + "2000-05-08": "Day off (substituted from 05/13/2000)", "2000-05-09": "Radunitsa; Victory Day", "2000-07-03": "Independence Day (Republic Day)", + "2000-11-06": "Day off (substituted from 11/11/2000)", "2000-11-07": "October Revolution Day", "2000-12-25": "Catholic Christmas Day", "2001-01-01": "New Year's Day", + "2001-01-02": "Day off (substituted from 01/20/2001)", "2001-01-07": "Orthodox Christmas Day", "2001-03-08": "Women's Day", + "2001-03-09": "Day off (substituted from 03/03/2001)", + "2001-04-23": "Day off (substituted from 04/21/2001)", "2001-04-24": "Radunitsa", + "2001-04-30": "Day off (substituted from 04/28/2001)", "2001-05-01": "Labor Day", "2001-05-09": "Victory Day", + "2001-07-02": "Day off (substituted from 07/07/2001)", "2001-07-03": "Independence Day (Republic Day)", "2001-11-07": "October Revolution Day", + "2001-12-24": "Day off (substituted from 12/22/2001)", "2001-12-25": "Catholic Christmas Day", + "2001-12-31": "Day off (substituted from 12/29/2001)", "2002-01-01": "New Year's Day", + "2002-01-02": "Day off (substituted from 01/05/2002)", "2002-01-07": "Orthodox Christmas Day", "2002-03-08": "Women's Day", "2002-05-01": "Labor Day", "2002-05-09": "Victory Day", + "2002-05-10": "Day off (substituted from 05/18/2002)", "2002-05-14": "Radunitsa", "2002-07-03": "Independence Day (Republic Day)", "2002-11-07": "October Revolution Day", + "2002-11-08": "Day off (substituted from 11/16/2002)", "2002-12-25": "Catholic Christmas Day", "2003-01-01": "New Year's Day", + "2003-01-06": "Day off (substituted from 01/04/2003)", "2003-01-07": "Orthodox Christmas Day", "2003-03-08": "Women's Day", "2003-05-01": "Labor Day", + "2003-05-05": "Day off (substituted from 05/03/2003)", "2003-05-06": "Radunitsa", "2003-05-09": "Victory Day", "2003-07-03": "Independence Day (Republic Day)", "2003-11-07": "October Revolution Day", "2003-12-25": "Catholic Christmas Day", "2004-01-01": "New Year's Day", + "2004-01-02": "Day off (substituted from 01/10/2004)", + "2004-01-05": "Day off (substituted from 01/17/2004)", + "2004-01-06": "Day off (substituted from 01/31/2004)", "2004-01-07": "Orthodox Christmas Day", "2004-03-08": "Women's Day", + "2004-04-19": "Day off (substituted from 04/17/2004)", "2004-04-20": "Radunitsa", "2004-05-01": "Labor Day", "2004-05-09": "Victory Day", @@ -54,6 +85,7 @@ "2004-12-25": "Catholic Christmas Day", "2005-01-01": "New Year's Day", "2005-01-07": "Orthodox Christmas Day", + "2005-03-07": "Day off (substituted from 03/12/2005)", "2005-03-08": "Women's Day", "2005-05-01": "Labor Day", "2005-05-09": "Victory Day", @@ -62,35 +94,51 @@ "2005-11-07": "October Revolution Day", "2005-12-25": "Catholic Christmas Day", "2006-01-01": "New Year's Day", + "2006-01-02": "Day off (substituted from 01/21/2006)", "2006-01-07": "Orthodox Christmas Day", "2006-03-08": "Women's Day", "2006-05-01": "Labor Day", "2006-05-02": "Radunitsa", + "2006-05-08": "Day off (substituted from 05/06/2006)", "2006-05-09": "Victory Day", "2006-07-03": "Independence Day (Republic Day)", + "2006-11-06": "Day off (substituted from 11/04/2006)", "2006-11-07": "October Revolution Day", "2006-12-25": "Catholic Christmas Day", "2007-01-01": "New Year's Day", + "2007-01-02": "Day off (substituted from 12/30/2006)", "2007-01-07": "Orthodox Christmas Day", "2007-03-08": "Women's Day", + "2007-03-09": "Day off (substituted from 03/17/2007)", + "2007-04-16": "Day off (substituted from 04/14/2007)", "2007-04-17": "Radunitsa", + "2007-04-30": "Day off (substituted from 05/05/2007)", "2007-05-01": "Labor Day", "2007-05-09": "Victory Day", + "2007-07-02": "Day off (substituted from 07/07/2007)", "2007-07-03": "Independence Day (Republic Day)", "2007-11-07": "October Revolution Day", + "2007-12-24": "Day off (substituted from 12/22/2007)", "2007-12-25": "Catholic Christmas Day", + "2007-12-31": "Day off (substituted from 12/29/2007)", "2008-01-01": "New Year's Day", + "2008-01-02": "Day off (substituted from 01/12/2008)", "2008-01-07": "Orthodox Christmas Day", "2008-03-08": "Women's Day", "2008-05-01": "Labor Day", + "2008-05-05": "Day off (substituted from 05/03/2008)", "2008-05-06": "Radunitsa", "2008-05-09": "Victory Day", "2008-07-03": "Independence Day (Republic Day)", + "2008-07-04": "Day off (substituted from 06/28/2008)", "2008-11-07": "October Revolution Day", "2008-12-25": "Catholic Christmas Day", + "2008-12-26": "Day off (substituted from 12/20/2008)", "2009-01-01": "New Year's Day", + "2009-01-02": "Day off (substituted from 01/10/2009)", "2009-01-07": "Orthodox Christmas Day", "2009-03-08": "Women's Day", + "2009-04-27": "Day off (substituted from 04/25/2009)", "2009-04-28": "Radunitsa", "2009-05-01": "Labor Day", "2009-05-09": "Victory Day", @@ -99,17 +147,22 @@ "2009-12-25": "Catholic Christmas Day", "2010-01-01": "New Year's Day", "2010-01-07": "Orthodox Christmas Day", + "2010-01-08": "Day off (substituted from 01/23/2010)", "2010-03-08": "Women's Day", + "2010-04-12": "Day off (substituted from 04/17/2010)", "2010-04-13": "Radunitsa", "2010-05-01": "Labor Day", "2010-05-09": "Victory Day", + "2010-05-10": "Day off (substituted from 05/15/2010)", "2010-07-03": "Independence Day (Republic Day)", "2010-11-07": "October Revolution Day", "2010-12-25": "Catholic Christmas Day", "2011-01-01": "New Year's Day", "2011-01-07": "Orthodox Christmas Day", + "2011-03-07": "Day off (substituted from 03/12/2011)", "2011-03-08": "Women's Day", "2011-05-01": "Labor Day", + "2011-05-02": "Day off (substituted from 05/14/2011)", "2011-05-03": "Radunitsa", "2011-05-09": "Victory Day", "2011-07-03": "Independence Day (Republic Day)", @@ -118,33 +171,47 @@ "2012-01-01": "New Year's Day", "2012-01-07": "Orthodox Christmas Day", "2012-03-08": "Women's Day", + "2012-03-09": "Day off (substituted from 03/11/2012)", + "2012-04-23": "Day off (substituted from 04/28/2012)", "2012-04-24": "Radunitsa", "2012-05-01": "Labor Day", "2012-05-09": "Victory Day", + "2012-07-02": "Day off (substituted from 06/30/2012)", "2012-07-03": "Independence Day (Republic Day)", "2012-11-07": "October Revolution Day", + "2012-12-24": "Day off (substituted from 12/22/2012)", "2012-12-25": "Catholic Christmas Day", + "2012-12-31": "Day off (substituted from 12/29/2012)", "2013-01-01": "New Year's Day", + "2013-01-02": "Day off (substituted from 01/05/2013)", "2013-01-07": "Orthodox Christmas Day", "2013-03-08": "Women's Day", "2013-05-01": "Labor Day", "2013-05-09": "Victory Day", + "2013-05-10": "Day off (substituted from 05/18/2013)", "2013-05-14": "Radunitsa", "2013-07-03": "Independence Day (Republic Day)", "2013-11-07": "October Revolution Day", "2013-12-25": "Catholic Christmas Day", "2014-01-01": "New Year's Day", + "2014-01-02": "Day off (substituted from 01/04/2014)", + "2014-01-06": "Day off (substituted from 01/11/2014)", "2014-01-07": "Orthodox Christmas Day", "2014-03-08": "Women's Day", "2014-04-29": "Radunitsa", + "2014-04-30": "Day off (substituted from 05/03/2014)", "2014-05-01": "Labor Day", "2014-05-09": "Victory Day", "2014-07-03": "Independence Day (Republic Day)", + "2014-07-04": "Day off (substituted from 07/12/2014)", "2014-11-07": "October Revolution Day", "2014-12-25": "Catholic Christmas Day", + "2014-12-26": "Day off (substituted from 12/20/2014)", "2015-01-01": "New Year's Day", + "2015-01-02": "Day off (substituted from 01/10/2015)", "2015-01-07": "Orthodox Christmas Day", "2015-03-08": "Women's Day", + "2015-04-20": "Day off (substituted from 04/25/2015)", "2015-04-21": "Radunitsa", "2015-05-01": "Labor Day", "2015-05-09": "Victory Day", @@ -153,6 +220,8 @@ "2015-12-25": "Catholic Christmas Day", "2016-01-01": "New Year's Day", "2016-01-07": "Orthodox Christmas Day", + "2016-01-08": "Day off (substituted from 01/16/2016)", + "2016-03-07": "Day off (substituted from 03/05/2016)", "2016-03-08": "Women's Day", "2016-05-01": "Labor Day", "2016-05-09": "Victory Day", @@ -161,36 +230,52 @@ "2016-11-07": "October Revolution Day", "2016-12-25": "Catholic Christmas Day", "2017-01-01": "New Year's Day", + "2017-01-02": "Day off (substituted from 01/21/2017)", "2017-01-07": "Orthodox Christmas Day", "2017-03-08": "Women's Day", + "2017-04-24": "Day off (substituted from 04/29/2017)", "2017-04-25": "Radunitsa", "2017-05-01": "Labor Day", + "2017-05-08": "Day off (substituted from 05/06/2017)", "2017-05-09": "Victory Day", "2017-07-03": "Independence Day (Republic Day)", + "2017-11-06": "Day off (substituted from 11/04/2017)", "2017-11-07": "October Revolution Day", "2017-12-25": "Catholic Christmas Day", "2018-01-01": "New Year's Day", + "2018-01-02": "Day off (substituted from 01/20/2018)", "2018-01-07": "Orthodox Christmas Day", "2018-03-08": "Women's Day", + "2018-03-09": "Day off (substituted from 03/03/2018)", + "2018-04-16": "Day off (substituted from 04/14/2018)", "2018-04-17": "Radunitsa", + "2018-04-30": "Day off (substituted from 04/28/2018)", "2018-05-01": "Labor Day", "2018-05-09": "Victory Day", + "2018-07-02": "Day off (substituted from 07/07/2018)", "2018-07-03": "Independence Day (Republic Day)", "2018-11-07": "October Revolution Day", + "2018-12-24": "Day off (substituted from 12/22/2018)", "2018-12-25": "Catholic Christmas Day", + "2018-12-31": "Day off (substituted from 12/29/2018)", "2019-01-01": "New Year's Day", "2019-01-07": "Orthodox Christmas Day", "2019-03-08": "Women's Day", "2019-05-01": "Labor Day", + "2019-05-06": "Day off (substituted from 05/04/2019)", "2019-05-07": "Radunitsa", + "2019-05-08": "Day off (substituted from 05/11/2019)", "2019-05-09": "Victory Day", "2019-07-03": "Independence Day (Republic Day)", "2019-11-07": "October Revolution Day", + "2019-11-08": "Day off (substituted from 11/16/2019)", "2019-12-25": "Catholic Christmas Day", "2020-01-01": "New Year's Day", "2020-01-02": "New Year's Day", + "2020-01-06": "Day off (substituted from 01/04/2020)", "2020-01-07": "Orthodox Christmas Day", "2020-03-08": "Women's Day", + "2020-04-27": "Day off (substituted from 04/04/2020)", "2020-04-28": "Radunitsa", "2020-05-01": "Labor Day", "2020-05-09": "Victory Day", @@ -200,9 +285,11 @@ "2021-01-01": "New Year's Day", "2021-01-02": "New Year's Day", "2021-01-07": "Orthodox Christmas Day", + "2021-01-08": "Day off (substituted from 01/16/2021)", "2021-03-08": "Women's Day", "2021-05-01": "Labor Day", "2021-05-09": "Victory Day", + "2021-05-10": "Day off (substituted from 05/15/2021)", "2021-05-11": "Radunitsa", "2021-07-03": "Independence Day (Republic Day)", "2021-11-07": "October Revolution Day", @@ -210,8 +297,10 @@ "2022-01-01": "New Year's Day", "2022-01-02": "New Year's Day", "2022-01-07": "Orthodox Christmas Day", + "2022-03-07": "Day off (substituted from 03/12/2022)", "2022-03-08": "Women's Day", "2022-05-01": "Labor Day", + "2022-05-02": "Day off (substituted from 05/14/2022)", "2022-05-03": "Radunitsa", "2022-05-09": "Victory Day", "2022-07-03": "Independence Day (Republic Day)", @@ -221,10 +310,13 @@ "2023-01-02": "New Year's Day", "2023-01-07": "Orthodox Christmas Day", "2023-03-08": "Women's Day", + "2023-04-24": "Day off (substituted from 04/29/2023)", "2023-04-25": "Radunitsa", "2023-05-01": "Labor Day", + "2023-05-08": "Day off (substituted from 05/13/2023)", "2023-05-09": "Victory Day", "2023-07-03": "Independence Day (Republic Day)", + "2023-11-06": "Day off (substituted from 11/11/2023)", "2023-11-07": "October Revolution Day", "2023-12-25": "Catholic Christmas Day", "2024-01-01": "New Year's Day", diff --git a/tests/countries/test_belarus.py b/tests/countries/test_belarus.py index eac61e880..811750aec 100644 --- a/tests/countries/test_belarus.py +++ b/tests/countries/test_belarus.py @@ -21,6 +21,9 @@ def setUpClass(cls): def test_country_aliases(self): self.assertCountryAliases(Belarus, BY, BLR) + def test_no_holidays(self): + self.assertNoHolidays(Belarus(years=1997)) + def test_2018(self): # http://calendar.by/procal.php?year=2018 # https://www.officeholidays.com/countries/belarus/index.php @@ -71,22 +74,105 @@ def test_radunitsa(self): "2030-05-07", ) - def test_pre_1998(self): - self.assertNoHoliday("1997-07-03") + def test_substituted(self): + self.assertHoliday( + "1998-01-02", + "1998-04-27", + "1999-01-08", + "1999-04-19", + "2000-05-08", + "2000-11-06", + "2001-01-02", + "2001-03-09", + "2001-04-23", + "2001-04-30", + "2001-07-02", + "2001-12-24", + "2001-12-31", + "2002-01-02", + "2002-05-10", + "2002-11-08", + "2003-01-06", + "2003-05-05", + "2004-01-02", + "2004-01-05", + "2004-01-06", + "2004-04-19", + "2005-03-07", + "2006-01-02", + "2006-05-08", + "2006-11-06", + "2007-01-02", + "2007-03-09", + "2007-04-16", + "2007-04-30", + "2007-07-02", + "2007-12-24", + "2007-12-31", + "2008-01-02", + "2008-05-05", + "2008-07-04", + "2008-12-26", + "2009-01-02", + "2009-04-27", + "2010-01-08", + "2010-04-12", + "2010-05-10", + "2011-03-07", + "2011-05-02", + "2012-03-09", + "2012-04-23", + "2012-07-02", + "2012-12-24", + "2012-12-31", + "2013-01-02", + "2013-05-10", + "2014-01-02", + "2014-01-06", + "2014-04-30", + "2014-07-04", + "2014-12-26", + "2015-01-02", + "2015-04-20", + "2016-01-08", + "2016-03-07", + "2017-01-02", + "2017-04-24", + "2017-05-08", + "2017-11-06", + "2018-01-02", + "2018-03-09", + "2018-04-16", + "2018-04-30", + "2018-07-02", + "2018-12-24", + "2018-12-31", + "2019-05-06", + "2019-05-08", + "2019-11-08", + "2020-01-06", + "2020-04-27", + "2021-01-08", + "2021-05-10", + "2022-03-07", + "2022-05-02", + "2023-04-24", + "2023-05-08", + "2023-11-06", + ) def test_l10n_default(self): self.assertLocalizedHolidays( ("2022-01-01", "Новы год"), ("2022-01-02", "Новы год"), ("2022-01-07", "Нараджэнне Хрыстова (праваслаўнае Раство)"), + ("2022-03-07", "Выходны (перанесены з 12.03.2022)"), ("2022-03-08", "Дзень жанчын"), ("2022-05-01", "Свята працы"), + ("2022-05-02", "Выходны (перанесены з 14.05.2022)"), ("2022-05-03", "Радаўніца"), ("2022-05-09", "Дзень Перамогі"), - ( - "2022-07-03", - "Дзень Незалежнасці Рэспублікі Беларусь (Дзень Рэспублікі)", - ), + ("2022-07-03", "Дзень Незалежнасці Рэспублікі Беларусь (Дзень Рэспублікі)"), ("2022-11-07", "Дзень Кастрычніцкай рэвалюцыі"), ("2022-12-25", "Нараджэнне Хрыстова (каталіцкае Раство)"), ) @@ -97,8 +183,10 @@ def test_l10n_en_us(self): ("2022-01-01", "New Year's Day"), ("2022-01-02", "New Year's Day"), ("2022-01-07", "Orthodox Christmas Day"), + ("2022-03-07", "Day off (substituted from 03/12/2022)"), ("2022-03-08", "Women's Day"), ("2022-05-01", "Labor Day"), + ("2022-05-02", "Day off (substituted from 05/14/2022)"), ("2022-05-03", "Radunitsa"), ("2022-05-09", "Victory Day"), ("2022-07-03", "Independence Day (Republic Day)"), From 12e524a69d23e0c4eecbb4b5b0c1c26be7693dc8 Mon Sep 17 00:00:00 2001 From: PPsyrius <19505219+PPsyrius@users.noreply.github.com> Date: Fri, 29 Sep 2023 23:56:13 +0700 Subject: [PATCH 09/10] Add Laos holidays (#1483) Co-authored-by: ~Jhellico Co-authored-by: Arkadii Yakovets <2201626+arkid15r@users.noreply.github.com> --- README.rst | 6 +- holidays/calendars/thai.py | 185 +- holidays/countries/__init__.py | 1 + holidays/countries/laos.py | 449 +++++ holidays/groups/thai.py | 66 +- holidays/locale/en_US/LC_MESSAGES/LA.po | 177 ++ holidays/locale/lo/LC_MESSAGES/LA.po | 177 ++ holidays/locale/th/LC_MESSAGES/LA.po | 177 ++ holidays/observed_holiday_base.py | 2 + holidays/registry.py | 1 + snapshots/countries/LA.json | 2280 +++++++++++++++++++++++ tests/calendars/test_thai.py | 103 +- tests/countries/test_laos.py | 480 +++++ 13 files changed, 4015 insertions(+), 89 deletions(-) create mode 100644 holidays/countries/laos.py create mode 100644 holidays/locale/en_US/LC_MESSAGES/LA.po create mode 100644 holidays/locale/lo/LC_MESSAGES/LA.po create mode 100644 holidays/locale/th/LC_MESSAGES/LA.po create mode 100644 snapshots/countries/LA.json create mode 100644 tests/countries/test_laos.py diff --git a/README.rst b/README.rst index ffddb6cdb..4a39ed9f8 100644 --- a/README.rst +++ b/README.rst @@ -109,7 +109,7 @@ Available Countries .. _ISO 639-1 code: https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes .. _ISO 639-2 code: https://en.wikipedia.org/wiki/List_of_ISO_639-2_codes -We currently support 134 country codes. The standard way to refer to a country +We currently support 135 country codes. The standard way to refer to a country is by using its `ISO 3166-1 alpha-2 code`_, the same used for domain names, and for a subdivision its `ISO 3166-2 code`_. Some of the countries support more than one language for holiday names output. @@ -417,6 +417,10 @@ The list of supported countries, their subdivisions and supported languages - KG - - + * - Laos + - LA + - + - en_US, **lo**, th * - Latvia - LV - diff --git a/holidays/calendars/thai.py b/holidays/calendars/thai.py index 75147aa01..95d405f74 100644 --- a/holidays/calendars/thai.py +++ b/holidays/calendars/thai.py @@ -227,11 +227,11 @@ def _get_start_date(self, year: int) -> Optional[date]: while iter_start_year < year: if iter_start_year in _ThaiLunisolar.ATHIKAMAT_YEARS_GREGORIAN: - delta_days = 384 + delta_days = +384 elif iter_start_year in _ThaiLunisolar.ATHIKAWAN_YEARS_GREGORIAN: - delta_days = 355 + delta_days = +355 else: - delta_days = 354 + delta_days = +354 iter_start_date += td(days=delta_days) iter_start_year += 1 return iter_start_date @@ -242,7 +242,7 @@ def makha_bucha_date(self, year: int, calendar=None) -> Optional[date]: If the Gregorian year input is invalid, this will outputs None instead. Also known as "Magha Puja", "Makha Buxha" and "Meak Bochea". - This concides with the 15th Waxing Day of Month 3 + This coincides with the 15th Waxing Day of Month 3 in Thai Lunar Calendar, or Month 4 in Athikamat years. KHMER_CALENDAR will always use Month 3 regardless of year type. @@ -285,9 +285,8 @@ def visakha_bucha_date(self, year: int, calendar=None) -> Optional[date]: Calculate the estimated Gregorian date of Visakha Bucha. If the Gregorian year input is invalid, this will outputs None instead. - Also known as "Vesak" and "Buddha Day". This concides with - the 15th Waxing Day of Month 6 in Thai Lunar Calendar, - or Month 7 in Athikamat years. + Also known as "Vesak" and "Buddha Day". This coincides with + the 15th Waxing Day of Month 6 in Thai Lunar Calendar, or Month 7 in Athikamat years. KHMER_CALENDAR will always use Month 6 regardless of year type. @@ -330,7 +329,7 @@ def preah_neangkoal_date(self, year: int) -> Optional[date]: If the Gregorian year input is invalid, this will outputs None instead. Also known as "Cambodian Royal Ploughing Ceremony". This always - concides with the 4th Waning Day of Month 6 in Khmer Lunar Calendar. + coincides with the 4th Waning Day of Month 6 in Khmer Lunar Calendar. To calculate, we use use the following time delta: - Athikamat: 15th Waxing Day of Month 6 @@ -358,9 +357,8 @@ def atthami_bucha_date(self, year: int, calendar=None) -> Optional[date]: Calculate the estimated Gregorian date of Atthami Bucha. If the Gregorian year input is invalid, this will outputs None instead. - Also known as "Buddha's Cremation Day". This concides with - the 8th Waning Day of Month 6 in Thai Lunar Calendar, - or Month 7 in Athikamat years. + Also known as "Buddha's Cremation Day". This coincides with + the 8th Waning Day of Month 6 in Thai Lunar Calendar, or Month 7 in Athikamat years. KHMER_CALENDAR will always use Month 6 regardless of year type. @@ -398,16 +396,16 @@ def atthami_bucha_date(self, year: int, calendar=None) -> Optional[date]: else +169 ) - def asarnha_bucha_date(self, year: int, calendar=None) -> Optional[date]: + def asarnha_bucha_date(self, year: int) -> Optional[date]: """ Calculate the estimated Gregorian date of Asarnha Bucha. If the Gregorian year input is invalid, this will outputs None instead. - Also known as "Asalha Puja". This concides with + Also known as "Asalha Puja". This coincides with the 15th Waxing Day of Month 8 in Thai Lunar Calendar, or Month 8.8 in Athikamat years. - KHMER_CALENDAR will always use Month 8 regardless of year type. + Lao Start of Buddhist Lent start on this day (1-day earlier than Thai and Khmer ones). To calculate, we use use the following time delta: - Athikamat: 15th Waxing Day of Month 8/8 @@ -426,34 +424,27 @@ def asarnha_bucha_date(self, year: int, calendar=None) -> Optional[date]: :return: Estimated Gregorian date of Asarnha Bucha. """ - calendar = calendar or self.__calendar - self.__verify_calendar(calendar) - start_date = self._get_start_date(year) if not start_date: return None - if year in _ThaiLunisolar.ATHIKAMAT_YEARS_GREGORIAN and not self.__is_khmer_calendar( - calendar - ): - delta_days = 250 + if year in _ThaiLunisolar.ATHIKAMAT_YEARS_GREGORIAN: + delta_days = +250 elif year in _ThaiLunisolar.ATHIKAWAN_YEARS_GREGORIAN: - delta_days = 221 + delta_days = +221 else: - delta_days = 220 + delta_days = +220 return start_date + td(days=delta_days) - def khao_phansa_date(self, year: int, calendar=None) -> Optional[date]: + def khao_phansa_date(self, year: int) -> Optional[date]: """ Calculate the estimated Gregorian date of Khao Phansa. If the Gregorian year input is invalid, this will outputs None instead. Also known as "(Start of) Buddhist Lent" and "Start of Vassa". - This concides with the 1st Waning Day of Month 8 + This coincides with the 1st Waning Day of Month 8 in Thai Lunar Calendar, or Month 8.8 in Athikamat years. - KHMER_CALENDAR will always use Month 8 regardless of year type. - To calculate, we use use the following time delta: - Athikamat: 1st Waning Day of Month 8.8 or 177[1-6] + 29[7] + 30[8] + 16[8.8] -1 = 251 @@ -472,21 +463,84 @@ def khao_phansa_date(self, year: int, calendar=None) -> Optional[date]: :return: Estimated Gregorian date of Khao Phansa. """ - calendar = calendar or self.__calendar - self.__verify_calendar(calendar) + start_date = self._get_start_date(year) + if not start_date: + return None + + if year in _ThaiLunisolar.ATHIKAMAT_YEARS_GREGORIAN: + delta_days = +251 + elif year in _ThaiLunisolar.ATHIKAWAN_YEARS_GREGORIAN: + delta_days = +222 + else: + delta_days = +221 + return start_date + td(days=delta_days) + + def boun_haw_khao_padapdin_date(self, year: int) -> Optional[date]: + """ + Calculate the estimated Gregorian date of Boun Haw Khao Padapdin. + If the Gregorian year input is invalid, this will outputs None instead. + + Also known as "Boon Khao Padap Din". + This coincides with the 14th Waning Day of Month 9 in Thai Lunar Calendar. + + To calculate, we use use the following time delta: + - Athikamat: 14th Waning Day of Month 9 + or 236[1-8] + 30[8.8] + 29[9] -1 = 294 + - Athikawan: 14th Waning Day of Month 9 + or 236[1-8] + 1[7] + 29[9] -1 = 265 + - Pakatimat: 14th Waning Day of Month 9 + or 236[1-8] + 29[9] -1 = 264 + + :param year: + The Gregorian year. + + :return: + Estimated Gregorian date of Boun Haw Khao Padapdin. + """ + start_date = self._get_start_date(year) + if not start_date: + return None + + if year in _ThaiLunisolar.ATHIKAMAT_YEARS_GREGORIAN: + delta_days = +294 + elif year in _ThaiLunisolar.ATHIKAWAN_YEARS_GREGORIAN: + delta_days = +265 + else: + delta_days = +264 + return start_date + td(days=delta_days) + + def boun_haw_khao_salark_date(self, year: int) -> Optional[date]: + """ + Calculate the estimated Gregorian date of Boun Haw Khao Salark. + If the Gregorian year input is invalid, this will outputs None instead. + + Also known as "Boon Khao Sak". + This coincides with the 15th Waxing Day of Month 10 in Thai Lunar Calendar. + To calculate, we use use the following time delta: + - Athikamat: 15th Waxing Day of Month 10 + or 265[1-9] + 30[8.8] + 15[10] -1 = 309 + - Athikawan: 15th Waxing Day of Month 10 + or 265[1-9] + 1[7] + 15[10] -1 = 280 + - Pakatimat: 15th Waxing Day of Month 10 + or 265[1-9] + 15[10] -1 = 279 + + :param year: + The Gregorian year. + + :return: + Estimated Gregorian date of Pchum Ben. + """ start_date = self._get_start_date(year) if not start_date: return None - if year in _ThaiLunisolar.ATHIKAMAT_YEARS_GREGORIAN and not self.__is_khmer_calendar( - calendar - ): - delta_days = 251 + if year in _ThaiLunisolar.ATHIKAMAT_YEARS_GREGORIAN: + delta_days = +309 elif year in _ThaiLunisolar.ATHIKAWAN_YEARS_GREGORIAN: - delta_days = 222 + delta_days = +280 else: - delta_days = 221 + delta_days = +279 return start_date + td(days=delta_days) def pchum_ben_date(self, year: int) -> Optional[date]: @@ -495,8 +549,7 @@ def pchum_ben_date(self, year: int) -> Optional[date]: If the Gregorian year input is invalid, this will outputs None instead. Also known as "Prachum Bandar". - This concides with the 15th Waning Day of Month 10 in - Thai Lunar Calendar. + This coincides with the 15th Waning Day of Month 10 in Thai Lunar Calendar. To calculate, we use use the following time delta: - Athikamat: 15th Waning Day of Month 10 @@ -517,11 +570,11 @@ def pchum_ben_date(self, year: int) -> Optional[date]: return None if year in _ThaiLunisolar.ATHIKAMAT_YEARS_GREGORIAN: - delta_days = 324 + delta_days = +324 elif year in _ThaiLunisolar.ATHIKAWAN_YEARS_GREGORIAN: - delta_days = 295 + delta_days = +295 else: - delta_days = 294 + delta_days = +294 return start_date + td(days=delta_days) def ok_phansa_date(self, year: int) -> Optional[date]: @@ -530,8 +583,7 @@ def ok_phansa_date(self, year: int) -> Optional[date]: If the Gregorian year input is invalid, this will outputs None instead. Also known as "End of Buddhist Lent" and "End of Vassa". - This concides with the 15th Waxing Day of Month 11 - in Thai Lunar Calendar. + This coincides with the 15th Waxing Day of Month 11 in Thai Lunar Calendar. To calculate, we use use the following time delta: - Athikamat: 15th Waxing Day of Month 11 @@ -552,11 +604,45 @@ def ok_phansa_date(self, year: int) -> Optional[date]: return None if year in _ThaiLunisolar.ATHIKAMAT_YEARS_GREGORIAN: - delta_days = 339 + delta_days = +339 + elif year in _ThaiLunisolar.ATHIKAWAN_YEARS_GREGORIAN: + delta_days = +310 + else: + delta_days = +309 + return start_date + td(days=delta_days) + + def boun_suang_heua_date(self, year: int) -> Optional[date]: + """ + Calculate the estimated Gregorian date of Ok Boun Suang Huea. + If the Gregorian year input is invalid, this will outputs None instead. + + Boun Suang Huea Nakhone Luang Prabang, also known as "Vientiane Boat Racing Festival". + This coincides with the 1st Waning Day of Month 11 in Thai Lunar Calendar. + + To calculate, we use use the following time delta: + - Athikamat: 1st Waning Day of Month 11 + or 295[1-10] + 30[8.8] + 16[11] -1 = 340 + - Athikawan: 1st Waning Day of Month 11 + or 295[1-10] + 1[7] + 16[11] -1 = 311 + - Pakatimat: 1st Waning Day of Month 11 + or 295[1-10] + 16[11] -1 = 310 + + :param year: + The Gregorian year. + + :return: + Estimated Gregorian date of Boun Suang Huea. + """ + start_date = self._get_start_date(year) + if not start_date: + return None + + if year in _ThaiLunisolar.ATHIKAMAT_YEARS_GREGORIAN: + delta_days = +340 elif year in _ThaiLunisolar.ATHIKAWAN_YEARS_GREGORIAN: - delta_days = 310 + delta_days = +311 else: - delta_days = 309 + delta_days = +310 return start_date + td(days=delta_days) def loy_krathong_date(self, year: int) -> Optional[date]: @@ -565,8 +651,7 @@ def loy_krathong_date(self, year: int) -> Optional[date]: If the Gregorian year input is invalid, this will outputs None instead. Also known as "Boun That Louang" and "Bon Om Touk". - This concides with the 15th Waxing Day of Month 12 - in Thai Lunar Calendar. + This coincides with the 15th Waxing Day of Month 12 in Thai Lunar Calendar. To calculate, we use use the following time delta: - Athikamat: 15th Waxing Day of Month 12 @@ -587,9 +672,9 @@ def loy_krathong_date(self, year: int) -> Optional[date]: return None if year in _ThaiLunisolar.ATHIKAMAT_YEARS_GREGORIAN: - delta_days = 368 + delta_days = +368 elif year in _ThaiLunisolar.ATHIKAWAN_YEARS_GREGORIAN: - delta_days = 339 + delta_days = +339 else: - delta_days = 338 + delta_days = +338 return start_date + td(days=delta_days) diff --git a/holidays/countries/__init__.py b/holidays/countries/__init__.py index f57ea6d02..52c9907c6 100644 --- a/holidays/countries/__init__.py +++ b/holidays/countries/__init__.py @@ -82,6 +82,7 @@ from .kazakhstan import Kazakhstan, KZ, KAZ from .kenya import Kenya, KE, KEN from .kyrgyzstan import Kyrgyzstan, KG, KGZ +from .laos import Laos, LA, LAO from .latvia import Latvia, LV, LVA from .lesotho import Lesotho, LS, LSO from .liechtenstein import Liechtenstein, LI, LIE diff --git a/holidays/countries/laos.py b/holidays/countries/laos.py new file mode 100644 index 000000000..4b4225cf6 --- /dev/null +++ b/holidays/countries/laos.py @@ -0,0 +1,449 @@ +# python-holidays +# --------------- +# A fast, efficient Python library for generating country, province and state +# specific sets of holidays on the fly. It aims to make determining whether a +# specific date is a holiday as fast and flexible as possible. +# +# Authors: dr-prodigy (c) 2017-2023 +# ryanss (c) 2014-2017 +# Website: https://github.com/dr-prodigy/python-holidays +# License: MIT (see LICENSE file) + +from gettext import gettext as tr + +from holidays.calendars.gregorian import JAN, MAR, APR, MAY, JUL, OCT, DEC +from holidays.calendars.thai import KHMER_CALENDAR +from holidays.constants import BANK, PUBLIC, SCHOOL, WORKDAY +from holidays.groups import InternationalHolidays, ThaiCalendarHolidays +from holidays.observed_holiday_base import ( + ObservedHolidayBase, + THU_FRI_TO_NEXT_MON, + FRI_TO_NEXT_TUE, + SAT_TO_NEXT_TUE, + SAT_SUN_TO_NEXT_MON, + SAT_SUN_TO_NEXT_WED, +) + + +class Laos(ObservedHolidayBase, InternationalHolidays, ThaiCalendarHolidays): + """ + A subclass of :py:class:`HolidayBase` representing public holidays in Laos. + + References: + + - Based on: https://en.wikipedia.org/wiki/Public_holidays_in_Laos + Decree on Holidays No. 386 / Rev. 15.12.2017 + https://juristact.weebly.com/uploads/1/0/9/9/109947087/d17_386.pdf + + - Checked with: https://asean.org/wp-content/uploads/2021/12/ASEAN-National-Holidays-2022.pdf + https://asean.org/wp-content/uploads/2022/12/ASEAN-Public-Holidays-2023.pdf + https://www.timeanddate.com/holidays/laos/ + https://www.bcel.com.la/bcel/bcel-calendar.html?y=2022 + https://www.bcel.com.la/bcel/bcel-calendar.html?year=2023 + http://www.lsx.com.la/cal/getStockCalendar.do?lang=lo (from 2011 onwards) + + !!! If Public Holiday falls on weekends, (in lieu) on workday !!! + Despite the wording, this usually only applies to Monday only for holidays, + consecutive holidays all have their own special in lieu declared separately. + + As featured in Decree on Holidays No. 386 / Rev. 15.12.2017; + - Saturdays and Sundays shall be restdays each week. + - In-Lieu holidays shall be given if it fall on the weekends. + + Limitations: + + - Laotian holidays only works from 1976 onwards, and are only 100% accurate from 2018 onwards. + + - Laotian Lunar Calendar Holidays only work from 1941 (B.E. 2485) onwards until 2057 + (B.E. 2601) as we only have Thai year-type data for cross-checking until then. + + + Country created by: `PPsyrius `__ + + Country maintained by: `PPsyrius `__ + """ + + country = "LA" + supported_categories = {BANK, PUBLIC, SCHOOL, WORKDAY} + default_language = "lo" + # %s (in lieu). + observed_label = tr("ພັກຊົດເຊີຍ%s") + + # Special Cases. + + # Special Bank Holiday. + special_bank_day_off = tr("ມື້ປິດການໃຫ້ບໍລິການຂອງທະນາຄານຕົວແທນ") + + # New Year's Day (in lieu). + new_year_day_in_lieu = tr("ພັກຊົດເຊີຍວັນປີໃໝ່ສາກົນ") + + # Internation Women's Rights Day (in lieu). + international_womens_rights_day_in_lieu = tr("ພັກຊົດເຊີຍວັນແມ່ຍິງສາກົນ") + + # Lao New Year's Day (in lieu). + lao_new_year_in_lieu = tr("ພັກຊົດເຊີຍບຸນປີໃໝ່ລາວ") + + # Lao New Year's Day (Special). + lao_new_year_special = tr("ພັກບຸນປີໃໝ່ລາວ") + + # Labor Day (in lieu). + labor_day_in_lieu = tr("ພັກຊົດເຊີຍວັນກຳມະກອນສາກົນ") + + # Establishment Day of the Lao Women's Union (in lieu). + lao_womens_union_in_lieu = tr("ພັກຊົດເຊີຍວັນສ້າງຕັ້ງສະຫະພັນແມ່ຍິງລາວ") + + # Establishment Day of the BOL (in lieu). + establishment_day_of_bol_in_lieu = tr("ພັກຊົດເຊີຍວັນສ້າງຕັ້ງທະນາຄານແຫ່ງ ສປປ ລາວ") + + # Lao National Day (in lieu). + lao_national_day_in_lieu = tr("ພັກຊົດເຊີຍວັນຊາດ") + + special_bank_holidays = { + 2015: (JAN, 2, special_bank_day_off), + 2017: (OCT, 9, establishment_day_of_bol_in_lieu), + } + special_public_holidays = { + 2011: (APR, 13, lao_new_year_in_lieu), + 2012: ( + (JAN, 2, new_year_day_in_lieu), + (APR, 13, lao_new_year_in_lieu), + (APR, 17, lao_new_year_in_lieu), + (DEC, 3, lao_national_day_in_lieu), + ), + 2013: (APR, 17, lao_new_year_in_lieu), + 2015: ( + (MAR, 9, international_womens_rights_day_in_lieu), + (APR, 17, lao_new_year_special), + ), + 2016: ( + (APR, 13, lao_new_year_special), + (APR, 18, lao_new_year_special), + (MAY, 2, labor_day_in_lieu), + ), + 2017: ( + (JAN, 2, new_year_day_in_lieu), + (APR, 13, lao_new_year_in_lieu), + (APR, 17, lao_new_year_in_lieu), + (DEC, 4, lao_national_day_in_lieu), + ), + 2020: ( + (APR, 13, lao_new_year_special), + (APR, 17, lao_new_year_special), + ), + } + special_workday_holidays = { + 2019: (JUL, 22, lao_womens_union_in_lieu), + } + supported_languages = ("en_US", "lo", "th") + + def __init__(self, *args, **kwargs): + InternationalHolidays.__init__(self) + ThaiCalendarHolidays.__init__(self, KHMER_CALENDAR) + super().__init__(observed_rule=SAT_SUN_TO_NEXT_MON, observed_since=2018, *args, **kwargs) + + def _populate_bank_holidays(self): + # Based on both LSX and BCEL calendar. + # Available post-Lao PDR proclamation on Dec 2, 1975. + if self._year <= 1975: + return None + + # ວັນສ້າງຕັ້ງທະນາຄານແຫ່ງ ສປປ ລາວ + # Status: In-Use. + # Celebrated the creation of the Bank of the Lao PDR on Oct 7, 1968. + # In-Lieus are available in LSX calendar. + + # Establishment Day of the BOL. + self._add_observed(self._add_holiday_oct_7(tr("ວັນສ້າງຕັ້ງທະນາຄານແຫ່ງ ສປປ ລາວ"))) + + # ສາມວັນລັດຖະການສຸດທ້າຍຂອງທຸກໆປີ + # Status: In-Use. + # Financial Institution in Laos are closed on last 3 weekdays of the year. + # Assume [WEEKDAY] is Dec 31: + # - CASE MON: (THU)-(FRI)-MON + # - CASE TUE: (FRI)-MON-TUE + # - CASE WED: MON-TUE-WED + # - CASE THU: TUE-WED-THU + # - CASE FRI/SAT/SUN: WED-THU-FRI + + # Lao Year-End Bank Holiday. + year_end_bank_holiday = tr("ສາມວັນລັດຖະການສຸດທ້າຍຂອງທຸກໆປີ") + + dec_31 = (DEC, 31) + if self._is_monday(dec_31): + self._add_holiday_last_thu_of_dec(year_end_bank_holiday) + self._add_holiday_last_fri_of_dec(year_end_bank_holiday) + self._add_holiday_last_mon_of_dec(year_end_bank_holiday) + elif self._is_tuesday(dec_31): + self._add_holiday_last_fri_of_dec(year_end_bank_holiday) + self._add_holiday_last_mon_of_dec(year_end_bank_holiday) + self._add_holiday_last_tue_of_dec(year_end_bank_holiday) + elif self._is_wednesday(dec_31): + self._add_holiday_last_mon_of_dec(year_end_bank_holiday) + self._add_holiday_last_tue_of_dec(year_end_bank_holiday) + self._add_holiday_last_wed_of_dec(year_end_bank_holiday) + elif self._is_thursday(dec_31): + self._add_holiday_last_tue_of_dec(year_end_bank_holiday) + self._add_holiday_last_wed_of_dec(year_end_bank_holiday) + self._add_holiday_last_thu_of_dec(year_end_bank_holiday) + else: + self._add_holiday_last_wed_of_dec(year_end_bank_holiday) + self._add_holiday_last_thu_of_dec(year_end_bank_holiday) + self._add_holiday_last_fri_of_dec(year_end_bank_holiday) + + def _populate_public_holidays(self): + # Available post-Lao PDR proclamation on Dec 2, 1975. + if self._year <= 1975: + return None + + # ວັນປີໃໝ່ສາກົນ + # Status: In-Use. + + # New Year's Day. + self._add_observed(self._add_new_years_day(tr("ວັນປີໃໝ່ສາກົນ"))) + + # ວັນແມ່ຍິງສາກົນ + # Status: In-Use. + # Only acts as day off for Women. + + # International Women's Rights Day. + self._add_observed(self._add_womens_day(tr("ວັນແມ່ຍິງສາກົນ"))) + + # ບຸນປີໃໝ່ລາວ + # Status: In-Use. + # Celebrated for 3 days from 14-16 April annualy. + # Observed dates prior to 2018 are assigned manually. + # - CASE 1: THU-FRI-SAT -> in lieu on MON. + # - CASE 2: FRI-SAT-SUN -> in lieu on MON-TUE. + # - CASE 3: SAT-SUN-MON -> in lieu on TUE-WED. + # - CASE 4: SUN-MON-TUE -> in lieu on WED. + + # Lao New Year's Day. + name = tr("ບຸນປີໃໝ່ລາວ") + dt = self._add_holiday_apr_14(name) + self._add_holiday_apr_15(name) + self._add_holiday_apr_16(name) + + self._add_observed(dt, rule=THU_FRI_TO_NEXT_MON + SAT_TO_NEXT_TUE) + self._add_observed(dt, rule=FRI_TO_NEXT_TUE + SAT_SUN_TO_NEXT_WED) + + # ວັນກຳມະກອນສາກົນ + # Status: In-Use. + + # Labor Day. + self._add_observed(self._add_labor_day(tr("ວັນກຳມະກອນສາກົນ"))) + + # ວັນເດັກສາກົນ (`PUBLIC`) + # Status: Defunct, Still Observed. + # Starts as public holiday after Lao PDR joined UN Convention on the + # Rights of the Child in 1989 (de-facto start as holiday in 1990). + # Became defunct from 2018 onwards. Still accessible in `WORKDAY` category. + + if 1990 <= self._year <= 2017: + # International Children Day. + self._add_childrens_day(tr("ວັນເດັກສາກົນ")) + + # ວັນຊາດ + # Status: In-Use. + # Celebrated the establishment of Lao PDR on Dec 2, 1975. + + # Lao National Day. + self._add_observed(self._add_holiday_dec_2(tr("ວັນຊາດ"))) + + def _populate_school_holidays(self): + # Laotian Lunar Calendar Holidays + # See `_ThaiLunisolar` in holidays/utils.py for more details. + # Unofficial, but observed by schools and most business holidays; + # As such, no in lieu observance are in place for these holidays. + + # Laotian Lunar Calendar Holidays only work from 1941 to 2057. + if self._year <= 1975: + return None + + # ວັນບຸນມາຂະບູຊາ + # Status: In-Use. + # 15th Waxing Day of Month 3. + # Also denoted as festival days for Sikhottabong Stupa Festival and + # Wat Phou Champasack Festival in BCEL calendar. + + # Makha Bousa Festival. + self._add_makha_bucha(tr("ວັນບຸນມາຂະບູຊາ")) + + # ວັນບຸນວິສາຂະບູຊາ + # Status: In-Use. + # 15th Waxing Day of Month 6. + # This utilizes Thai calendar as a base, though are calculated to always happen + # in the Traditional Visakhamas month (May). + # In Laos Calendar, the day after marks the traditional Buddhist Calendar Year change. + + # Visakha Bousa Festival. + self._add_visakha_bucha(tr("ວັນບຸນວິສາຂະບູຊາ")) + + # ວັນບຸນເຂົ້າພັນສາ + # Status: In-Use. + # 15th Waxing Day of Month 8 (Asarnha Bucha for Thailand and Cambodia). + + # Boun Khao Phansa (Begin of Buddhist Lent). + self._add_asarnha_bucha(tr("ວັນບຸນເຂົ້າພັນສາ")) + + # ວັນບຸນຫໍ່ເຂົ້າປະດັບດິນ + # Status: In-Use. + # 14th Waning Day of Month 9. + + # Boun Haw Khao Padapdin (Rice Growing Festival). + self._add_boun_haw_khao_padapdin(tr("ວັນບຸນຫໍ່ເຂົ້າປະດັບດິນ")) + + # ວັນບຸນຫໍ່ເຂົ້າສະຫຼາກ + # Status: In-Use. + # 15th Waxing Day of Month 10. + + # Boun Haw Khao Salark (Ancestor Festival). + self._add_boun_haw_khao_salark(tr("ວັນບຸນຫໍ່ເຂົ້າສະຫຼາກ")) + + # ວັນບຸນອອກພັນສາ + # Status: In-Use. + # 15th Waxing Day of Month 11. + + # Boun Awk Phansa (End of Buddhist Lent). + self._add_ok_phansa(tr("ວັນບຸນອອກພັນສາ")) + + # ວັນບຸນຊ່ວງເຮືອ ນະຄອນຫຼວງວຽງຈັນ + # Status: In-Use. + # 1st Waning Day of Month 11. + + # Boun Suang Heua (Vientiane Boat Racing Festival). + self._add_boun_suang_heua(tr("ວັນບຸນຊ່ວງເຮືອ ນະຄອນຫຼວງວຽງຈັນ")) + + # ວັນບຸນທາດຫລວງ + # Status: In-Use. + # 15th Waxing Day of Month 12. + + # Boun That Luang Festival. + self._add_loy_krathong(tr("ວັນບຸນທາດຫລວງ")) + + # ວັນຄູແຫ່ງຊາດ + # Status: In-Use. + # In recognition of First Lao Teacher, Kham, as started in Oct 7, 1994. + + if self._year >= 1994: + # National Teacher Day. + self._add_holiday_oct_7(tr("ວັນຄູແຫ່ງຊາດ")) + + def _populate_workday_holidays(self): + # No Public Holidays are issued, though still observed by the government. + + # Available post-Lao PDR proclamation on Dec 2, 1975. + if self._year <= 1975: + return None + + # ວັນສ້າງຕັ້ງກອງທັບປະຊາຊົນລາວ + # Status: In-Use. + # Celebrated the creation of the independent Lao army on Jan 20, 1949. + + # Lao People's Armed Force Day. + self._add_holiday_jan_20(tr("ວັນສ້າງຕັ້ງກອງທັບປະຊາຊົນລາວ")) + + # ວັນສ້າງຕັ້ງສະຫະພັນກໍາມະບານລາວ + # Status: In-Use. + # Celebrated the creation of Lao Federation of Trade Unions on Feb 1, 1966. + + # Lao Federation of Trade Union's Day. + self._add_holiday_feb_1(tr("ວັນສ້າງຕັ້ງສະຫະພັນກໍາມະບານລາວ")) + + # ວັນສ້າງຕັ້ງພັກປະຊາຊົນປະຕິວັດລາວ + # Status: In-Use. + # Celebrated the creation of the Lao People's Revolutionary Party on Mar 22, 1955. + + # Establishment Day of the Lao People's Revolutionary Party. + self._add_holiday_mar_22(tr("ວັນສ້າງຕັ້ງພັກປະຊາຊົນປະຕິວັດລາວ")) + + # ວັນສ້າງຕັ້ງສູນກາງຊາວໜຸ່ມປະຊາຊົນປະຕິວັດລາວ + # Status: In-Use. + # Celebrated the creation of the Lao People's Revolutionary Youth Union on Apr 14, 1955. + + # Lao People's Revolutionary Youth Union Day. + self._add_holiday_apr_14(tr("ວັນສ້າງຕັ້ງສູນກາງຊາວໜຸ່ມປະຊາຊົນປະຕິວັດລາວ")) + + # ວັນເດັກສາກົນ (`WORKDAY`) + # Status: Defunct, Still Observed. + # Starts as public holiday after Lao PDR joined UN Convention on the + # Rights of the Child in 1989 (de-facto start as holiday in 1990). + # Became defunct from 2018 onwards. Still accessible in `WORKDAY` category. + + if self._year >= 2018: + # International Children Day. + self._add_childrens_day(tr("ວັນເດັກສາກົນ")) + + # ວັນປູກຕົ້ນໄມ້ແຫ່ງຊາດ + # Status: In-Use. + # Assumed to first observed in 1989 following the National Forestry Conference in May. + + if self._year >= 1989: + # National Arbor Day. + self._add_holiday_jun_1(tr("ວັນປູກຕົ້ນໄມ້ແຫ່ງຊາດ")) + + # ວັນຄ້າຍວັນເກີດ ທ່ານ ປະທານ ສຸພານຸວົງ + # Status: In-Use. + # Celebrated President Souphanouvong's Birthday Anniversary on Jul 13, 1909. + + # President Souphanouvong's Birthday. + self._add_holiday_jul_13(tr("ວັນຄ້າຍວັນເກີດ ທ່ານ ປະທານ ສຸພານຸວົງ")) + + # ວັນປ່ອຍປາ ແລະ ວັນອະນຸລັກສັດນ້ຳ-ສັດປ່າແຫ່ງຊາດ + # Status: In-Use. + # First designated in 1997 to concide with Souphanouvong's Birthday anniversary. + + if self._year >= 1997: + # The National Day for Wildlife and Aquatic Animal Conservation. + self._add_holiday_jul_13(tr("ວັນປ່ອຍປາ ແລະ ວັນອະນຸລັກສັດນ້ຳ-ສັດປ່າແຫ່ງຊາດ")) + + # ວັນສ້າງຕັ້ງສະຫະພັນແມ່ຍິງລາວ + # Status: In-Use. + # Celebrated the creation of Lao Women's Union on Jul 20, 1955. + + # Establishment Day of the Lao Women's Union. + self._add_holiday_jul_20(tr("ວັນສ້າງຕັ້ງສະຫະພັນແມ່ຍິງລາວ")) + + # ວັນສື່ມວນຊົນແຫ່ງຊາດ ແລະ ວັນພິມຈໍາໜ່າຍ + # Status: In-Use. + # Celebrated the creation of LPRP's Party Newspaper on Aug 13, 1950. + + # Lao National Mass Media and Publishing Day. + self._add_holiday_aug_13(tr("ວັນສື່ມວນຊົນແຫ່ງຊາດ ແລະ ວັນພິມຈໍາໜ່າຍ")) + + # ວັນລັດຖະທໍາມະນູນແຫ່ງຊາດ + # Status: In-Use. + # Celebrated the adoption of the 1991 Constitution on Aug 15, 1991. + + if self._year >= 1991: + # Lao National Constitution Day. + self._add_holiday_aug_15(tr("ວັນລັດຖະທໍາມະນູນແຫ່ງຊາດ")) + + # ວັນຍຶດອຳນາດທົ່ວປະເທດ + # Status: In-Use. + # Celebrated the Liberation of Vientiane by Pathet Lao forces on Aug 23, 1975. + + # National Uprising Day. + self._add_holiday_aug_23(tr("ວັນຍຶດອຳນາດທົ່ວປະເທດ")) + + # ວັນປະກາດເອກະລາດ + # Status: In-Use. + # Celebrated the Declaration of Independence on Oct 12, 1945. + + # Indepedence Declaration Day. + self._add_holiday_oct_12(tr("ວັນປະກາດເອກະລາດ")) + + # ວັນຄ້າຍວັນເກີດ ທ່ານ ປະທານ ໄກສອນ ພົມວິຫານ + # Status: In-Use. + # Celebrated President Kaysone Phomvihane's Birthday Anniversary on Dec 13, 1920. + + if self._year >= 1991: + # President Kaysone Phomvihane's Birthday. + self._add_holiday_dec_13(tr("ວັນຄ້າຍວັນເກີດ ທ່ານ ປະທານ ໄກສອນ ພົມວິຫານ")) + + +class LA(Laos): + pass + + +class LAO(Laos): + pass diff --git a/holidays/groups/thai.py b/holidays/groups/thai.py index 614e815f6..4f2643314 100644 --- a/holidays/groups/thai.py +++ b/holidays/groups/thai.py @@ -27,7 +27,7 @@ def __init__(self, calendar=THAI_CALENDAR) -> None: self.__calendar = calendar self._thai_calendar = _ThaiLunisolar(calendar) - def _add_asarnha_bucha(self, name, calendar=None) -> Optional[date]: + def _add_asarnha_bucha(self, name) -> Optional[date]: """ Add Asarnha Bucha. @@ -39,13 +39,54 @@ def _add_asarnha_bucha(self, name, calendar=None) -> Optional[date]: https://en.wikipedia.org/wiki/Asalha_Puja """ - calendar = calendar or self.__calendar return self._add_thai_calendar_holiday( - name, self._thai_calendar.asarnha_bucha_date(self._year, calendar) + name, self._thai_calendar.asarnha_bucha_date(self._year) + ) + + def _add_boun_haw_khao_padapdin(self, name) -> Optional[date]: + """ + Add Boun Haw Khao Padapdin. + + Boun Haw Khao Padapdin (also known as Rice Growing Festival) + is a Buddhist festival celebrated on the 14th Waning Day of Month 9. + + https://www.timsthailand.com/boon-khao-pradap-din/ + """ + + return self._add_thai_calendar_holiday( + name, self._thai_calendar.boun_haw_khao_padapdin_date(self._year) + ) + + def _add_boun_haw_khao_salark(self, name) -> Optional[date]: + """ + Add Boun Haw Khao Salark. + + Boun Haw Khao Salark (also known as Ancestor Festival) + is a Buddhist festival celebrated on the 15th Waxing Day of Month 10. + + https://www.timsthailand.com/boon-khao-sak/ + """ + + return self._add_thai_calendar_holiday( + name, self._thai_calendar.boun_haw_khao_salark_date(self._year) ) - def _add_khao_phansa(self, name, calendar=None) -> Optional[date]: + def _add_boun_suang_heua(self, name) -> Optional[date]: + """ + Add Boun Suang Huea. + + Boun Suang Huea Nakhone Luang Prabang (also known as Vientiane Boat Racing Festival) + is a Buddhist festival celebrated on the 1st Waning Day of Month 11. + + https://sonasia-holiday.com/sonabee/laos-boat-racing-festival + """ + + return self._add_thai_calendar_holiday( + name, self._thai_calendar.boun_suang_heua_date(self._year) + ) + + def _add_khao_phansa(self, name) -> Optional[date]: """ Add Khao Phansa. @@ -57,10 +98,9 @@ def _add_khao_phansa(self, name, calendar=None) -> Optional[date]: https://en.wikipedia.org/wiki/Vassa """ - calendar = calendar or self.__calendar return self._add_thai_calendar_holiday( - name, self._thai_calendar.khao_phansa_date(self._year, calendar) + name, self._thai_calendar.khao_phansa_date(self._year) ) def _add_loy_krathong(self, name) -> Optional[date]: @@ -97,6 +137,20 @@ def _add_makha_bucha(self, name, calendar=None) -> Optional[date]: name, self._thai_calendar.makha_bucha_date(self._year, calendar) ) + def _add_ok_phansa(self, name) -> Optional[date]: + """ + Add Ok Phansa. + + End of Buddhist Lent (also written as Ok Phansa Day) is a Buddhist + festival celebrated on the 15th Waxing Day of Month 11. + + https://en.wikipedia.org/wiki/Pavarana + """ + + return self._add_thai_calendar_holiday( + name, self._thai_calendar.ok_phansa_date(self._year) + ) + def _add_pchum_ben(self, name) -> Optional[date]: """ Add Pchum Ben. diff --git a/holidays/locale/en_US/LC_MESSAGES/LA.po b/holidays/locale/en_US/LC_MESSAGES/LA.po new file mode 100644 index 000000000..2c49a7043 --- /dev/null +++ b/holidays/locale/en_US/LC_MESSAGES/LA.po @@ -0,0 +1,177 @@ +# Laos holidays en_US localization. +# Authors: PPsyrius , (c) 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: Python Holidays 0.34\n" +"POT-Creation-Date: 2023-09-11 15:10+0700\n" +"PO-Revision-Date: \n" +"Last-Translator: PPsyrius \n" +"Language-Team: Python Holidays localization team\n" +"Language: en_US\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.3.2\n" + +#. %s (in lieu). +#, c-format +msgid "ພັກຊົດເຊີຍ%s" +msgstr "%s (in lieu)" + +#. Lao New Year's Day (in lieu). +msgid "ພັກຊົດເຊີຍບຸນປີໃໝ່ລາວ" +msgstr "Lao New Year's Day (in lieu)" + +#. New Year's Day. +msgid "ວັນປີໃໝ່ສາກົນ" +msgstr "New Year's Day" + +#. International Women's Rights Day. +msgid "ວັນແມ່ຍິງສາກົນ" +msgstr "International Women's Rights Day" + +#. Lao New Year's Day. +msgid "ບຸນປີໃໝ່ລາວ" +msgstr "Lao New Year's Day" + +#. Labor Day. +msgid "ວັນກຳມະກອນສາກົນ" +msgstr "Labor Day" + +#. International Children Day. +msgid "ວັນເດັກສາກົນ" +msgstr "International Children Day" + +#. Lao National Day. +msgid "ວັນຊາດ" +msgstr "Lao National Day" + +#. Boun That Luang Festival. +msgid "ວັນບຸນທາດຫລວງ" +msgstr "Boun That Luang Festival" + +#. Special Bank Holiday. +msgid "ມື້ປິດການໃຫ້ບໍລິການຂອງທະນາຄານຕົວແທນ" +msgstr "Special Bank Holiday" + +#. New Year's Day (in lieu). +msgid "ພັກຊົດເຊີຍວັນປີໃໝ່ສາກົນ" +msgstr "New Year's Day (in lieu)" + +#. Internation Women's Rights Day (in lieu). +msgid "ພັກຊົດເຊີຍວັນແມ່ຍິງສາກົນ" +msgstr "Internation Women's Rights Day (in lieu)" + +#. Lao New Year's Day (Special). +msgid "ພັກບຸນປີໃໝ່ລາວ" +msgstr "Lao New Year's Day (Special)" + +#. Labor Day (in lieu). +msgid "ພັກຊົດເຊີຍວັນກຳມະກອນສາກົນ" +msgstr "Labor Day (in lieu)" + +#. Establishment Day of the Lao Women's Union (in lieu). +msgid "ພັກຊົດເຊີຍວັນສ້າງຕັ້ງສະຫະພັນແມ່ຍິງລາວ" +msgstr "Establishment Day of the Lao Women's Union (in lieu)" + +#. Establishment Day of the BOL (in lieu). +msgid "ພັກຊົດເຊີຍວັນສ້າງຕັ້ງທະນາຄານແຫ່ງ ສປປ ລາວ" +msgstr "Establishment Day of the BOL (in lieu)" + +#. Lao National Day (in lieu). +msgid "ພັກຊົດເຊີຍວັນຊາດ" +msgstr "Lao National Day (in lieu" + +#. Establishment Day of the BOL. +msgid "ວັນສ້າງຕັ້ງທະນາຄານແຫ່ງ ສປປ ລາວ" +msgstr "Establishment Day of the BOL" + +#. Lao Year-End Bank Holiday. +msgid "ສາມວັນລັດຖະການສຸດທ້າຍຂອງທຸກໆປີ" +msgstr "Lao Year-End Bank Holiday" + +#. Makha Bousa Festival. +msgid "ວັນບຸນມາຂະບູຊາ" +msgstr "Makha Bousa Festival" + +#. Visakha Bousa Festival. +msgid "ວັນບຸນວິສາຂະບູຊາ" +msgstr "Visakha Bousa Festival" + +#. Boun Khao Phansa (Begin of Buddhist Lent). +msgid "ວັນບຸນເຂົ້າພັນສາ" +msgstr "Begin of Buddhist Lent" + +#. Boun Haw Khao Padapdin (Rice Growing Festival). +msgid "ວັນບຸນຫໍ່ເຂົ້າປະດັບດິນ" +msgstr "Boun Haw Khao Padapdin" + +#. Boun Haw Khao Salark (Ancestor Festival). +msgid "ວັນບຸນຫໍ່ເຂົ້າສະຫຼາກ" +msgstr "Boun Haw Khao Salark" + +#. Boun Awk Phansa (End of Buddhist Lent). +msgid "ວັນບຸນອອກພັນສາ" +msgstr "End of Buddhist Lent" + +#. Boun Suang Heua (Vientiane Boat Racing Festival). +msgid "ວັນບຸນຊ່ວງເຮືອ ນະຄອນຫຼວງວຽງຈັນ" +msgstr "Vientiane Boat Racing Festival" + +#. National Teacher Day. +msgid "ວັນຄູແຫ່ງຊາດ" +msgstr "National Teacher Day" + +#. Lao People's Armed Force Day. +msgid "ວັນສ້າງຕັ້ງກອງທັບປະຊາຊົນລາວ" +msgstr "Lao People's Armed Force Day" + +#. Lao Federation of Trade Union's Day. +msgid "ວັນສ້າງຕັ້ງສະຫະພັນກໍາມະບານລາວ" +msgstr "Lao Federation of Trade Union's Day" + +#. Establishment Day of the Lao People's Revolutionary Party. +msgid "ວັນສ້າງຕັ້ງພັກປະຊາຊົນປະຕິວັດລາວ" +msgstr "Establishment Day of the Lao People's Revolutionary Party" + +#. Lao People's Revolutionary Youth Union Day. +msgid "ວັນສ້າງຕັ້ງສູນກາງຊາວໜຸ່ມປະຊາຊົນປະຕິວັດລາວ" +msgstr "Lao People's Revolutionary Youth Union Day" + +#. National Arbor Day. +msgid "ວັນປູກຕົ້ນໄມ້ແຫ່ງຊາດ" +msgstr "National Arbor Day" + +#. President Souphanouvong's Birthday. +msgid "ວັນຄ້າຍວັນເກີດ ທ່ານ ປະທານ ສຸພານຸວົງ" +msgstr "President Souphanouvong's Birthday" + +#. The National Day for Wildlife and Aquatic Animal Conservation. +msgid "ວັນປ່ອຍປາ ແລະ ວັນອະນຸລັກສັດນ້ຳ-ສັດປ່າແຫ່ງຊາດ" +msgstr "The National Day for Wildlife and Aquatic Animal Conservation" + +#. Establishment Day of the Lao Women's Union. +msgid "ວັນສ້າງຕັ້ງສະຫະພັນແມ່ຍິງລາວ" +msgstr "Establishment Day of the Lao Women's Union" + +#. Lao National Mass Media and Publishing Day. +msgid "ວັນສື່ມວນຊົນແຫ່ງຊາດ ແລະ ວັນພິມຈໍາໜ່າຍ" +msgstr "Lao National Mass Media and Publishing Day" + +#. Lao National Constitution Day. +msgid "ວັນລັດຖະທໍາມະນູນແຫ່ງຊາດ" +msgstr "Lao National Constitution Day" + +#. National Uprising Day. +msgid "ວັນຍຶດອຳນາດທົ່ວປະເທດ" +msgstr "National Uprising Day" + +#. Indepedence Declaration Day. +msgid "ວັນປະກາດເອກະລາດ" +msgstr "Indepedence Declaration Day" + +#. President Kaysone Phomvihane's Birthday. +msgid "ວັນຄ້າຍວັນເກີດ ທ່ານ ປະທານ ໄກສອນ ພົມວິຫານ" +msgstr "President Kaysone Phomvihane's Birthday" diff --git a/holidays/locale/lo/LC_MESSAGES/LA.po b/holidays/locale/lo/LC_MESSAGES/LA.po new file mode 100644 index 000000000..1351dd957 --- /dev/null +++ b/holidays/locale/lo/LC_MESSAGES/LA.po @@ -0,0 +1,177 @@ +# Laos holidays lo localization. +# Authors: PPsyrius , (c) 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: Python Holidays 0.34\n" +"POT-Creation-Date: 2023-09-11 15:10+0700\n" +"PO-Revision-Date: \n" +"Last-Translator: PPsyrius \n" +"Language-Team: Python Holidays localization team\n" +"Language: lo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Poedit 3.3.2\n" + +#. %s (in lieu). +#, c-format +msgid "ພັກຊົດເຊີຍ%s" +msgstr "" + +#. Lao New Year's Day (in lieu). +msgid "ພັກຊົດເຊີຍບຸນປີໃໝ່ລາວ" +msgstr "" + +#. New Year's Day. +msgid "ວັນປີໃໝ່ສາກົນ" +msgstr "" + +#. International Women's Rights Day. +msgid "ວັນແມ່ຍິງສາກົນ" +msgstr "" + +#. Lao New Year's Day. +msgid "ບຸນປີໃໝ່ລາວ" +msgstr "" + +#. Labor Day. +msgid "ວັນກຳມະກອນສາກົນ" +msgstr "" + +#. International Children Day. +msgid "ວັນເດັກສາກົນ" +msgstr "" + +#. Lao National Day. +msgid "ວັນຊາດ" +msgstr "" + +#. Boun That Luang Festival. +msgid "ວັນບຸນທາດຫລວງ" +msgstr "" + +#. Special Bank Holiday. +msgid "ມື້ປິດການໃຫ້ບໍລິການຂອງທະນາຄານຕົວແທນ" +msgstr "" + +#. New Year's Day (in lieu). +msgid "ພັກຊົດເຊີຍວັນປີໃໝ່ສາກົນ" +msgstr "" + +#. Internation Women's Rights Day (in lieu). +msgid "ພັກຊົດເຊີຍວັນແມ່ຍິງສາກົນ" +msgstr "" + +#. Lao New Year's Day (Special). +msgid "ພັກບຸນປີໃໝ່ລາວ" +msgstr "" + +#. Labor Day (in lieu). +msgid "ພັກຊົດເຊີຍວັນກຳມະກອນສາກົນ" +msgstr "" + +#. Establishment Day of the Lao Women's Union (in lieu). +msgid "ພັກຊົດເຊີຍວັນສ້າງຕັ້ງສະຫະພັນແມ່ຍິງລາວ" +msgstr "" + +#. Establishment Day of the BOL (in lieu). +msgid "ພັກຊົດເຊີຍວັນສ້າງຕັ້ງທະນາຄານແຫ່ງ ສປປ ລາວ" +msgstr "" + +#. Lao National Day (in lieu). +msgid "ພັກຊົດເຊີຍວັນຊາດ" +msgstr "" + +#. Establishment Day of the BOL. +msgid "ວັນສ້າງຕັ້ງທະນາຄານແຫ່ງ ສປປ ລາວ" +msgstr "" + +#. Lao Year-End Bank Holiday. +msgid "ສາມວັນລັດຖະການສຸດທ້າຍຂອງທຸກໆປີ" +msgstr "" + +#. Makha Bousa Festival. +msgid "ວັນບຸນມາຂະບູຊາ" +msgstr "" + +#. Visakha Bousa Festival. +msgid "ວັນບຸນວິສາຂະບູຊາ" +msgstr "" + +#. Boun Khao Phansa (Begin of Buddhist Lent). +msgid "ວັນບຸນເຂົ້າພັນສາ" +msgstr "" + +#. Boun Haw Khao Padapdin (Rice Growing Festival). +msgid "ວັນບຸນຫໍ່ເຂົ້າປະດັບດິນ" +msgstr "" + +#. Boun Haw Khao Salark (Ancestor Festival). +msgid "ວັນບຸນຫໍ່ເຂົ້າສະຫຼາກ" +msgstr "" + +#. Boun Awk Phansa (End of Buddhist Lent). +msgid "ວັນບຸນອອກພັນສາ" +msgstr "" + +#. Boun Suang Heua (Vientiane Boat Racing Festival). +msgid "ວັນບຸນຊ່ວງເຮືອ ນະຄອນຫຼວງວຽງຈັນ" +msgstr "" + +#. National Teacher Day. +msgid "ວັນຄູແຫ່ງຊາດ" +msgstr "" + +#. Lao People's Armed Force Day. +msgid "ວັນສ້າງຕັ້ງກອງທັບປະຊາຊົນລາວ" +msgstr "" + +#. Lao Federation of Trade Union's Day. +msgid "ວັນສ້າງຕັ້ງສະຫະພັນກໍາມະບານລາວ" +msgstr "" + +#. Establishment Day of the Lao People's Revolutionary Party. +msgid "ວັນສ້າງຕັ້ງພັກປະຊາຊົນປະຕິວັດລາວ" +msgstr "" + +#. Lao People's Revolutionary Youth Union Day. +msgid "ວັນສ້າງຕັ້ງສູນກາງຊາວໜຸ່ມປະຊາຊົນປະຕິວັດລາວ" +msgstr "" + +#. National Arbor Day. +msgid "ວັນປູກຕົ້ນໄມ້ແຫ່ງຊາດ" +msgstr "" + +#. President Souphanouvong's Birthday. +msgid "ວັນຄ້າຍວັນເກີດ ທ່ານ ປະທານ ສຸພານຸວົງ" +msgstr "" + +#. The National Day for Wildlife and Aquatic Animal Conservation. +msgid "ວັນປ່ອຍປາ ແລະ ວັນອະນຸລັກສັດນ້ຳ-ສັດປ່າແຫ່ງຊາດ" +msgstr "" + +#. Establishment Day of the Lao Women's Union. +msgid "ວັນສ້າງຕັ້ງສະຫະພັນແມ່ຍິງລາວ" +msgstr "" + +#. Lao National Mass Media and Publishing Day. +msgid "ວັນສື່ມວນຊົນແຫ່ງຊາດ ແລະ ວັນພິມຈໍາໜ່າຍ" +msgstr "" + +#. Lao National Constitution Day. +msgid "ວັນລັດຖະທໍາມະນູນແຫ່ງຊາດ" +msgstr "" + +#. National Uprising Day. +msgid "ວັນຍຶດອຳນາດທົ່ວປະເທດ" +msgstr "" + +#. Indepedence Declaration Day. +msgid "ວັນປະກາດເອກະລາດ" +msgstr "" + +#. President Kaysone Phomvihane's Birthday. +msgid "ວັນຄ້າຍວັນເກີດ ທ່ານ ປະທານ ໄກສອນ ພົມວິຫານ" +msgstr "" diff --git a/holidays/locale/th/LC_MESSAGES/LA.po b/holidays/locale/th/LC_MESSAGES/LA.po new file mode 100644 index 000000000..91c4dbfb3 --- /dev/null +++ b/holidays/locale/th/LC_MESSAGES/LA.po @@ -0,0 +1,177 @@ +# Laos holidays th localization. +# Authors: PPsyrius , (c) 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: Python Holidays 0.34\n" +"POT-Creation-Date: 2023-09-11 15:10+0700\n" +"PO-Revision-Date: \n" +"Last-Translator: PPsyrius \n" +"Language-Team: Python Holidays localization team\n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Poedit 3.3.2\n" + +#. %s (in lieu). +#, c-format +msgid "ພັກຊົດເຊີຍ%s" +msgstr "ชดเชย%s" + +#. Lao New Year's Day (in lieu). +msgid "ພັກຊົດເຊີຍບຸນປີໃໝ່ລາວ" +msgstr "ชดเชยวันปีใหม่ลาว" + +#. New Year's Day. +msgid "ວັນປີໃໝ່ສາກົນ" +msgstr "วันปีใหม่สากล" + +#. International Women's Rights Day. +msgid "ວັນແມ່ຍິງສາກົນ" +msgstr "วันสตรีสากล" + +#. Lao New Year's Day. +msgid "ບຸນປີໃໝ່ລາວ" +msgstr "วันปีใหม่ลาว" + +#. Labor Day. +msgid "ວັນກຳມະກອນສາກົນ" +msgstr "วันแรงงานสากล" + +#. International Children Day. +msgid "ວັນເດັກສາກົນ" +msgstr "วันเด็กสากล" + +#. Lao National Day. +msgid "ວັນຊາດ" +msgstr "วันชาติ สปป. ลาว" + +#. Boun That Luang Festival. +msgid "ວັນບຸນທາດຫລວງ" +msgstr "วันงานพระธาตุหลวง" + +#. Special Bank Holiday. +msgid "ມື້ປິດການໃຫ້ບໍລິການຂອງທະນາຄານຕົວແທນ" +msgstr "วันหยุดทำการพิเศษของสถาบันการเงิน" + +#. New Year's Day (in lieu). +msgid "ພັກຊົດເຊີຍວັນປີໃໝ່ສາກົນ" +msgstr "ชดเชยวันปีใหม่สากล" + +#. Internation Women's Rights Day (in lieu). +msgid "ພັກຊົດເຊີຍວັນແມ່ຍິງສາກົນ" +msgstr "ชดเชยวันสตรีสากล" + +#. Lao New Year's Day (Special). +msgid "ພັກບຸນປີໃໝ່ລາວ" +msgstr "ชดเชยวันปีใหม่ลาว" + +#. Labor Day (in lieu). +msgid "ພັກຊົດເຊີຍວັນກຳມະກອນສາກົນ" +msgstr "ชดเชยันแรงงานสากล" + +#. Establishment Day of the Lao Women's Union (in lieu). +msgid "ພັກຊົດເຊີຍວັນສ້າງຕັ້ງສະຫະພັນແມ່ຍິງລາວ" +msgstr "ชดเชยวันก่อตั้งสหภาพแม่หญิงลาว" + +#. Establishment Day of the BOL (in lieu). +msgid "ພັກຊົດເຊີຍວັນສ້າງຕັ້ງທະນາຄານແຫ່ງ ສປປ ລາວ" +msgstr "ชดเชยวันก่อตั้งธนาคารแห่ง สปป. ลาว" + +#. Lao National Day (in lieu). +msgid "ພັກຊົດເຊີຍວັນຊາດ" +msgstr "ชดเชยวันชาติ สปป. ลาว" + +#. Establishment Day of the BOL. +msgid "ວັນສ້າງຕັ້ງທະນາຄານແຫ່ງ ສປປ ລາວ" +msgstr "วันก่อตั้งธนาคารแห่ง สปป. ลาว" + +#. Lao Year-End Bank Holiday. +msgid "ສາມວັນລັດຖະການສຸດທ້າຍຂອງທຸກໆປີ" +msgstr "วันหยุดสิ้นปีของสถาบันการเงิน" + +#. Makha Bousa Festival. +msgid "ວັນບຸນມາຂະບູຊາ" +msgstr "วันมาฆบูชา" + +#. Visakha Bousa Festival. +msgid "ວັນບຸນວິສາຂະບູຊາ" +msgstr "วันวิสาขบูชา" + +#. Boun Khao Phansa (Begin of Buddhist Lent). +msgid "ວັນບຸນເຂົ້າພັນສາ" +msgstr "วันเข้าพรรษา" + +#. Boun Haw Khao Padapdin (Rice Growing Festival). +msgid "ວັນບຸນຫໍ່ເຂົ້າປະດັບດິນ" +msgstr "วันบุญข้าวประดับดิน" + +#. Boun Haw Khao Salark (Ancestor Festival). +msgid "ວັນບຸນຫໍ່ເຂົ້າສະຫຼາກ" +msgstr "วันข้าวบุญข้าวสาก" + +#. Boun Awk Phansa (End of Buddhist Lent). +msgid "ວັນບຸນອອກພັນສາ" +msgstr "วันออกพรรษา" + +#. Boun Suang Heua (Vientiane Boat Racing Festival). +msgid "ວັນບຸນຊ່ວງເຮືອ ນະຄອນຫຼວງວຽງຈັນ" +msgstr "วันงานบุญแข่งเรือ นครหลวงเวียงจันทน์" + +#. National Teacher Day. +msgid "ວັນຄູແຫ່ງຊາດ" +msgstr "วันครูแห่งชาติ" + +#. Lao People's Armed Force Day. +msgid "ວັນສ້າງຕັ້ງກອງທັບປະຊາຊົນລາວ" +msgstr "วันก่อตั้งกองทัพประชาชนลาว" + +#. Lao Federation of Trade Union's Day. +msgid "ວັນສ້າງຕັ້ງສະຫະພັນກໍາມະບານລາວ" +msgstr "วันก่อตั้งสหพันธ์กำมะบานลาว" + +#. Establishment Day of the Lao People's Revolutionary Party. +msgid "ວັນສ້າງຕັ້ງພັກປະຊາຊົນປະຕິວັດລາວ" +msgstr "วันก่อตั้งพรรคประชาชนปฏิวัติลาว" + +#. Lao People's Revolutionary Youth Union Day. +msgid "ວັນສ້າງຕັ້ງສູນກາງຊາວໜຸ່ມປະຊາຊົນປະຕິວັດລາວ" +msgstr "วันก่อตั้งศูนย์ซาวหนุ่มประชาชนปฏิวัติลาว" + +#. National Arbor Day. +msgid "ວັນປູກຕົ້ນໄມ້ແຫ່ງຊາດ" +msgstr "วันปลูกต้นไม้แห่งชาติ" + +#. President Souphanouvong's Birthday. +msgid "ວັນຄ້າຍວັນເກີດ ທ່ານ ປະທານ ສຸພານຸວົງ" +msgstr "วันคล้ายวันเกิดท่านประธานสุภานุวงศ์" + +#. The National Day for Wildlife and Aquatic Animal Conservation. +msgid "ວັນປ່ອຍປາ ແລະ ວັນອະນຸລັກສັດນ້ຳ-ສັດປ່າແຫ່ງຊາດ" +msgstr "วันอนุรักษ์สัตว์น้ำ สัตว์ป่า และวันปล่อยปลาแห่งชาติ" + +#. Establishment Day of the Lao Women's Union. +msgid "ວັນສ້າງຕັ້ງສະຫະພັນແມ່ຍິງລາວ" +msgstr "วันก่อตั้งสหภาพแม่หญิงลาว" + +#. Lao National Mass Media and Publishing Day. +msgid "ວັນສື່ມວນຊົນແຫ່ງຊາດ ແລະ ວັນພິມຈໍາໜ່າຍ" +msgstr "วันสื่อสารมวลชนและการพิมพ์แห่งชาติ" + +#. Lao National Constitution Day. +msgid "ວັນລັດຖະທໍາມະນູນແຫ່ງຊາດ" +msgstr "วันรัฐธรรมนูญแห่งชาติ" + +#. National Uprising Day. +msgid "ວັນຍຶດອຳນາດທົ່ວປະເທດ" +msgstr "วันยึดอำนาจทั่วประเทศ" + +#. Indepedence Declaration Day. +msgid "ວັນປະກາດເອກະລາດ" +msgstr "วันประกาศเอกราช" + +#. President Kaysone Phomvihane's Birthday. +msgid "ວັນຄ້າຍວັນເກີດ ທ່ານ ປະທານ ໄກສອນ ພົມວິຫານ" +msgstr "วันคล้ายวันเกิดท่านประธานไกสอน พมวิหาน" diff --git a/holidays/observed_holiday_base.py b/holidays/observed_holiday_base.py index 01b75ee74..6cc8f89c8 100644 --- a/holidays/observed_holiday_base.py +++ b/holidays/observed_holiday_base.py @@ -41,6 +41,7 @@ def __add__(self, other): FRI_TO_PREV_THU = ObservedRule({FRI: -1}) FRI_TO_NEXT_MON = ObservedRule({FRI: +3}) +FRI_TO_NEXT_TUE = ObservedRule({FRI: +4}) FRI_TO_NEXT_SAT = ObservedRule({FRI: +1}) FRI_TO_NEXT_WORKDAY = ObservedRule({FRI: +7}) @@ -82,6 +83,7 @@ def __add__(self, other): SAT_SUN_TO_PREV_FRI = ObservedRule({SAT: -1, SUN: -2}) SAT_SUN_TO_NEXT_MON = ObservedRule({SAT: +2, SUN: +1}) SAT_SUN_TO_NEXT_TUE = ObservedRule({SAT: +3, SUN: +2}) +SAT_SUN_TO_NEXT_WED = ObservedRule({SAT: +4, SUN: +3}) SAT_SUN_TO_NEXT_MON_TUE = ObservedRule({SAT: +2, SUN: +2}) SAT_SUN_TO_NEXT_WORKDAY = ObservedRule({SAT: +7, SUN: +7}) diff --git a/holidays/registry.py b/holidays/registry.py index 0ef5e7e67..4834b4375 100644 --- a/holidays/registry.py +++ b/holidays/registry.py @@ -88,6 +88,7 @@ "kazakhstan": ("Kazakhstan", "KZ", "KAZ"), "kenya": ("Kenya", "KE", "KEN"), "kyrgyzstan": ("Kyrgyzstan", "KG", "KGZ"), + "laos": ("Laos", "LA", "LAO"), "latvia": ("Latvia", "LV", "LVA"), "lesotho": ("Lesotho", "LS", "LSO"), "liechtenstein": ("Liechtenstein", "LI", "LIE"), diff --git a/snapshots/countries/LA.json b/snapshots/countries/LA.json new file mode 100644 index 000000000..8fcbbc175 --- /dev/null +++ b/snapshots/countries/LA.json @@ -0,0 +1,2280 @@ +{ + "1976-01-01": "New Year's Day", + "1976-01-20": "Lao People's Armed Force Day", + "1976-02-01": "Lao Federation of Trade Union's Day", + "1976-02-15": "Makha Bousa Festival", + "1976-03-08": "International Women's Rights Day", + "1976-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "1976-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "1976-04-15": "Lao New Year's Day", + "1976-04-16": "Lao New Year's Day", + "1976-05-01": "Labor Day", + "1976-05-13": "Visakha Bousa Festival", + "1976-07-11": "Begin of Buddhist Lent", + "1976-07-13": "President Souphanouvong's Birthday", + "1976-07-20": "Establishment Day of the Lao Women's Union", + "1976-08-13": "Lao National Mass Media and Publishing Day", + "1976-08-23": "National Uprising Day", + "1976-08-24": "Boun Haw Khao Padapdin", + "1976-09-08": "Boun Haw Khao Salark", + "1976-10-07": "Establishment Day of the BOL", + "1976-10-08": "End of Buddhist Lent", + "1976-10-09": "Vientiane Boat Racing Festival", + "1976-10-12": "Indepedence Declaration Day", + "1976-11-06": "Boun That Luang Festival", + "1976-12-02": "Lao National Day", + "1976-12-29": "Lao Year-End Bank Holiday", + "1976-12-30": "Lao Year-End Bank Holiday", + "1976-12-31": "Lao Year-End Bank Holiday", + "1977-01-01": "New Year's Day", + "1977-01-20": "Lao People's Armed Force Day", + "1977-02-01": "Lao Federation of Trade Union's Day", + "1977-02-03": "Makha Bousa Festival", + "1977-03-08": "International Women's Rights Day", + "1977-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "1977-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "1977-04-15": "Lao New Year's Day", + "1977-04-16": "Lao New Year's Day", + "1977-05-01": "Labor Day", + "1977-05-02": "Visakha Bousa Festival", + "1977-07-13": "President Souphanouvong's Birthday", + "1977-07-20": "Establishment Day of the Lao Women's Union", + "1977-07-30": "Begin of Buddhist Lent", + "1977-08-13": "Lao National Mass Media and Publishing Day", + "1977-08-23": "National Uprising Day", + "1977-09-12": "Boun Haw Khao Padapdin", + "1977-09-27": "Boun Haw Khao Salark", + "1977-10-07": "Establishment Day of the BOL", + "1977-10-12": "Indepedence Declaration Day", + "1977-10-27": "End of Buddhist Lent", + "1977-10-28": "Vientiane Boat Racing Festival", + "1977-11-25": "Boun That Luang Festival", + "1977-12-02": "Lao National Day", + "1977-12-28": "Lao Year-End Bank Holiday", + "1977-12-29": "Lao Year-End Bank Holiday", + "1977-12-30": "Lao Year-End Bank Holiday", + "1978-01-01": "New Year's Day", + "1978-01-20": "Lao People's Armed Force Day", + "1978-02-01": "Lao Federation of Trade Union's Day", + "1978-02-22": "Makha Bousa Festival", + "1978-03-08": "International Women's Rights Day", + "1978-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "1978-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "1978-04-15": "Lao New Year's Day", + "1978-04-16": "Lao New Year's Day", + "1978-05-01": "Labor Day", + "1978-05-21": "Visakha Bousa Festival", + "1978-07-13": "President Souphanouvong's Birthday", + "1978-07-19": "Begin of Buddhist Lent", + "1978-07-20": "Establishment Day of the Lao Women's Union", + "1978-08-13": "Lao National Mass Media and Publishing Day", + "1978-08-23": "National Uprising Day", + "1978-09-01": "Boun Haw Khao Padapdin", + "1978-09-16": "Boun Haw Khao Salark", + "1978-10-07": "Establishment Day of the BOL", + "1978-10-12": "Indepedence Declaration Day", + "1978-10-16": "End of Buddhist Lent", + "1978-10-17": "Vientiane Boat Racing Festival", + "1978-11-14": "Boun That Luang Festival", + "1978-12-02": "Lao National Day", + "1978-12-27": "Lao Year-End Bank Holiday", + "1978-12-28": "Lao Year-End Bank Holiday", + "1978-12-29": "Lao Year-End Bank Holiday", + "1979-01-01": "New Year's Day", + "1979-01-20": "Lao People's Armed Force Day", + "1979-02-01": "Lao Federation of Trade Union's Day", + "1979-02-11": "Makha Bousa Festival", + "1979-03-08": "International Women's Rights Day", + "1979-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "1979-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "1979-04-15": "Lao New Year's Day", + "1979-04-16": "Lao New Year's Day", + "1979-05-01": "Labor Day", + "1979-05-10": "Visakha Bousa Festival", + "1979-07-09": "Begin of Buddhist Lent", + "1979-07-13": "President Souphanouvong's Birthday", + "1979-07-20": "Establishment Day of the Lao Women's Union", + "1979-08-13": "Lao National Mass Media and Publishing Day", + "1979-08-22": "Boun Haw Khao Padapdin", + "1979-08-23": "National Uprising Day", + "1979-09-06": "Boun Haw Khao Salark", + "1979-10-06": "End of Buddhist Lent", + "1979-10-07": "Establishment Day of the BOL; Vientiane Boat Racing Festival", + "1979-10-12": "Indepedence Declaration Day", + "1979-11-04": "Boun That Luang Festival", + "1979-12-02": "Lao National Day", + "1979-12-27": "Lao Year-End Bank Holiday", + "1979-12-28": "Lao Year-End Bank Holiday", + "1979-12-31": "Lao Year-End Bank Holiday", + "1980-01-01": "New Year's Day", + "1980-01-20": "Lao People's Armed Force Day", + "1980-02-01": "Lao Federation of Trade Union's Day; Makha Bousa Festival", + "1980-03-08": "International Women's Rights Day", + "1980-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "1980-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "1980-04-15": "Lao New Year's Day", + "1980-04-16": "Lao New Year's Day", + "1980-04-29": "Visakha Bousa Festival", + "1980-05-01": "Labor Day", + "1980-07-13": "President Souphanouvong's Birthday", + "1980-07-20": "Establishment Day of the Lao Women's Union", + "1980-07-27": "Begin of Buddhist Lent", + "1980-08-13": "Lao National Mass Media and Publishing Day", + "1980-08-23": "National Uprising Day", + "1980-09-09": "Boun Haw Khao Padapdin", + "1980-09-24": "Boun Haw Khao Salark", + "1980-10-07": "Establishment Day of the BOL", + "1980-10-12": "Indepedence Declaration Day", + "1980-10-24": "End of Buddhist Lent", + "1980-10-25": "Vientiane Boat Racing Festival", + "1980-11-22": "Boun That Luang Festival", + "1980-12-02": "Lao National Day", + "1980-12-29": "Lao Year-End Bank Holiday", + "1980-12-30": "Lao Year-End Bank Holiday", + "1980-12-31": "Lao Year-End Bank Holiday", + "1981-01-01": "New Year's Day", + "1981-01-20": "Lao People's Armed Force Day", + "1981-02-01": "Lao Federation of Trade Union's Day", + "1981-02-19": "Makha Bousa Festival", + "1981-03-08": "International Women's Rights Day", + "1981-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "1981-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "1981-04-15": "Lao New Year's Day", + "1981-04-16": "Lao New Year's Day", + "1981-05-01": "Labor Day", + "1981-05-18": "Visakha Bousa Festival", + "1981-07-13": "President Souphanouvong's Birthday", + "1981-07-16": "Begin of Buddhist Lent", + "1981-07-20": "Establishment Day of the Lao Women's Union", + "1981-08-13": "Lao National Mass Media and Publishing Day", + "1981-08-23": "National Uprising Day", + "1981-08-29": "Boun Haw Khao Padapdin", + "1981-09-13": "Boun Haw Khao Salark", + "1981-10-07": "Establishment Day of the BOL", + "1981-10-12": "Indepedence Declaration Day", + "1981-10-13": "End of Buddhist Lent", + "1981-10-14": "Vientiane Boat Racing Festival", + "1981-11-11": "Boun That Luang Festival", + "1981-12-02": "Lao National Day", + "1981-12-29": "Lao Year-End Bank Holiday", + "1981-12-30": "Lao Year-End Bank Holiday", + "1981-12-31": "Lao Year-End Bank Holiday", + "1982-01-01": "New Year's Day", + "1982-01-20": "Lao People's Armed Force Day", + "1982-02-01": "Lao Federation of Trade Union's Day", + "1982-02-08": "Makha Bousa Festival", + "1982-03-08": "International Women's Rights Day", + "1982-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "1982-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "1982-04-15": "Lao New Year's Day", + "1982-04-16": "Lao New Year's Day", + "1982-05-01": "Labor Day", + "1982-05-07": "Visakha Bousa Festival", + "1982-07-05": "Begin of Buddhist Lent", + "1982-07-13": "President Souphanouvong's Birthday", + "1982-07-20": "Establishment Day of the Lao Women's Union", + "1982-08-13": "Lao National Mass Media and Publishing Day", + "1982-08-18": "Boun Haw Khao Padapdin", + "1982-08-23": "National Uprising Day", + "1982-09-02": "Boun Haw Khao Salark", + "1982-10-02": "End of Buddhist Lent", + "1982-10-03": "Vientiane Boat Racing Festival", + "1982-10-07": "Establishment Day of the BOL", + "1982-10-12": "Indepedence Declaration Day", + "1982-10-31": "Boun That Luang Festival", + "1982-12-02": "Lao National Day", + "1982-12-29": "Lao Year-End Bank Holiday", + "1982-12-30": "Lao Year-End Bank Holiday", + "1982-12-31": "Lao Year-End Bank Holiday", + "1983-01-01": "New Year's Day", + "1983-01-20": "Lao People's Armed Force Day", + "1983-01-28": "Makha Bousa Festival", + "1983-02-01": "Lao Federation of Trade Union's Day", + "1983-03-08": "International Women's Rights Day", + "1983-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "1983-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "1983-04-15": "Lao New Year's Day", + "1983-04-16": "Lao New Year's Day", + "1983-04-26": "Visakha Bousa Festival", + "1983-05-01": "Labor Day", + "1983-07-13": "President Souphanouvong's Birthday", + "1983-07-20": "Establishment Day of the Lao Women's Union", + "1983-07-24": "Begin of Buddhist Lent", + "1983-08-13": "Lao National Mass Media and Publishing Day", + "1983-08-23": "National Uprising Day", + "1983-09-06": "Boun Haw Khao Padapdin", + "1983-09-21": "Boun Haw Khao Salark", + "1983-10-07": "Establishment Day of the BOL", + "1983-10-12": "Indepedence Declaration Day", + "1983-10-21": "End of Buddhist Lent", + "1983-10-22": "Vientiane Boat Racing Festival", + "1983-11-19": "Boun That Luang Festival", + "1983-12-02": "Lao National Day", + "1983-12-28": "Lao Year-End Bank Holiday", + "1983-12-29": "Lao Year-End Bank Holiday", + "1983-12-30": "Lao Year-End Bank Holiday", + "1984-01-01": "New Year's Day", + "1984-01-20": "Lao People's Armed Force Day", + "1984-02-01": "Lao Federation of Trade Union's Day", + "1984-02-16": "Makha Bousa Festival", + "1984-03-08": "International Women's Rights Day", + "1984-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "1984-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "1984-04-15": "Lao New Year's Day", + "1984-04-16": "Lao New Year's Day", + "1984-05-01": "Labor Day", + "1984-05-14": "Visakha Bousa Festival", + "1984-07-12": "Begin of Buddhist Lent", + "1984-07-13": "President Souphanouvong's Birthday", + "1984-07-20": "Establishment Day of the Lao Women's Union", + "1984-08-13": "Lao National Mass Media and Publishing Day", + "1984-08-23": "National Uprising Day", + "1984-08-25": "Boun Haw Khao Padapdin", + "1984-09-09": "Boun Haw Khao Salark", + "1984-10-07": "Establishment Day of the BOL", + "1984-10-09": "End of Buddhist Lent", + "1984-10-10": "Vientiane Boat Racing Festival", + "1984-10-12": "Indepedence Declaration Day", + "1984-11-07": "Boun That Luang Festival", + "1984-12-02": "Lao National Day", + "1984-12-27": "Lao Year-End Bank Holiday", + "1984-12-28": "Lao Year-End Bank Holiday", + "1984-12-31": "Lao Year-End Bank Holiday", + "1985-01-01": "New Year's Day", + "1985-01-20": "Lao People's Armed Force Day", + "1985-02-01": "Lao Federation of Trade Union's Day", + "1985-02-04": "Makha Bousa Festival", + "1985-03-08": "International Women's Rights Day", + "1985-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "1985-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "1985-04-15": "Lao New Year's Day", + "1985-04-16": "Lao New Year's Day", + "1985-05-01": "Labor Day", + "1985-05-03": "Visakha Bousa Festival", + "1985-07-13": "President Souphanouvong's Birthday", + "1985-07-20": "Establishment Day of the Lao Women's Union", + "1985-07-31": "Begin of Buddhist Lent", + "1985-08-13": "Lao National Mass Media and Publishing Day", + "1985-08-23": "National Uprising Day", + "1985-09-13": "Boun Haw Khao Padapdin", + "1985-09-28": "Boun Haw Khao Salark", + "1985-10-07": "Establishment Day of the BOL", + "1985-10-12": "Indepedence Declaration Day", + "1985-10-28": "End of Buddhist Lent", + "1985-10-29": "Vientiane Boat Racing Festival", + "1985-11-26": "Boun That Luang Festival", + "1985-12-02": "Lao National Day", + "1985-12-27": "Lao Year-End Bank Holiday", + "1985-12-30": "Lao Year-End Bank Holiday", + "1985-12-31": "Lao Year-End Bank Holiday", + "1986-01-01": "New Year's Day", + "1986-01-20": "Lao People's Armed Force Day", + "1986-02-01": "Lao Federation of Trade Union's Day", + "1986-02-23": "Makha Bousa Festival", + "1986-03-08": "International Women's Rights Day", + "1986-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "1986-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "1986-04-15": "Lao New Year's Day", + "1986-04-16": "Lao New Year's Day", + "1986-05-01": "Labor Day", + "1986-05-22": "Visakha Bousa Festival", + "1986-07-13": "President Souphanouvong's Birthday", + "1986-07-20": "Begin of Buddhist Lent; Establishment Day of the Lao Women's Union", + "1986-08-13": "Lao National Mass Media and Publishing Day", + "1986-08-23": "National Uprising Day", + "1986-09-02": "Boun Haw Khao Padapdin", + "1986-09-17": "Boun Haw Khao Salark", + "1986-10-07": "Establishment Day of the BOL", + "1986-10-12": "Indepedence Declaration Day", + "1986-10-17": "End of Buddhist Lent", + "1986-10-18": "Vientiane Boat Racing Festival", + "1986-11-15": "Boun That Luang Festival", + "1986-12-02": "Lao National Day", + "1986-12-29": "Lao Year-End Bank Holiday", + "1986-12-30": "Lao Year-End Bank Holiday", + "1986-12-31": "Lao Year-End Bank Holiday", + "1987-01-01": "New Year's Day", + "1987-01-20": "Lao People's Armed Force Day", + "1987-02-01": "Lao Federation of Trade Union's Day", + "1987-02-12": "Makha Bousa Festival", + "1987-03-08": "International Women's Rights Day", + "1987-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "1987-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "1987-04-15": "Lao New Year's Day", + "1987-04-16": "Lao New Year's Day", + "1987-05-01": "Labor Day", + "1987-05-11": "Visakha Bousa Festival", + "1987-07-10": "Begin of Buddhist Lent", + "1987-07-13": "President Souphanouvong's Birthday", + "1987-07-20": "Establishment Day of the Lao Women's Union", + "1987-08-13": "Lao National Mass Media and Publishing Day", + "1987-08-23": "Boun Haw Khao Padapdin; National Uprising Day", + "1987-09-07": "Boun Haw Khao Salark", + "1987-10-07": "End of Buddhist Lent; Establishment Day of the BOL", + "1987-10-08": "Vientiane Boat Racing Festival", + "1987-10-12": "Indepedence Declaration Day", + "1987-11-05": "Boun That Luang Festival", + "1987-12-02": "Lao National Day", + "1987-12-29": "Lao Year-End Bank Holiday", + "1987-12-30": "Lao Year-End Bank Holiday", + "1987-12-31": "Lao Year-End Bank Holiday", + "1988-01-01": "New Year's Day", + "1988-01-20": "Lao People's Armed Force Day", + "1988-02-01": "Lao Federation of Trade Union's Day", + "1988-02-02": "Makha Bousa Festival", + "1988-03-08": "International Women's Rights Day", + "1988-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "1988-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "1988-04-15": "Lao New Year's Day", + "1988-04-16": "Lao New Year's Day", + "1988-04-30": "Visakha Bousa Festival", + "1988-05-01": "Labor Day", + "1988-07-13": "President Souphanouvong's Birthday", + "1988-07-20": "Establishment Day of the Lao Women's Union", + "1988-07-28": "Begin of Buddhist Lent", + "1988-08-13": "Lao National Mass Media and Publishing Day", + "1988-08-23": "National Uprising Day", + "1988-09-10": "Boun Haw Khao Padapdin", + "1988-09-25": "Boun Haw Khao Salark", + "1988-10-07": "Establishment Day of the BOL", + "1988-10-12": "Indepedence Declaration Day", + "1988-10-25": "End of Buddhist Lent", + "1988-10-26": "Vientiane Boat Racing Festival", + "1988-11-23": "Boun That Luang Festival", + "1988-12-02": "Lao National Day", + "1988-12-28": "Lao Year-End Bank Holiday", + "1988-12-29": "Lao Year-End Bank Holiday", + "1988-12-30": "Lao Year-End Bank Holiday", + "1989-01-01": "New Year's Day", + "1989-01-20": "Lao People's Armed Force Day", + "1989-02-01": "Lao Federation of Trade Union's Day", + "1989-02-20": "Makha Bousa Festival", + "1989-03-08": "International Women's Rights Day", + "1989-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "1989-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "1989-04-15": "Lao New Year's Day", + "1989-04-16": "Lao New Year's Day", + "1989-05-01": "Labor Day", + "1989-05-19": "Visakha Bousa Festival", + "1989-06-01": "National Arbor Day", + "1989-07-13": "President Souphanouvong's Birthday", + "1989-07-17": "Begin of Buddhist Lent", + "1989-07-20": "Establishment Day of the Lao Women's Union", + "1989-08-13": "Lao National Mass Media and Publishing Day", + "1989-08-23": "National Uprising Day", + "1989-08-30": "Boun Haw Khao Padapdin", + "1989-09-14": "Boun Haw Khao Salark", + "1989-10-07": "Establishment Day of the BOL", + "1989-10-12": "Indepedence Declaration Day", + "1989-10-14": "End of Buddhist Lent", + "1989-10-15": "Vientiane Boat Racing Festival", + "1989-11-12": "Boun That Luang Festival", + "1989-12-02": "Lao National Day", + "1989-12-27": "Lao Year-End Bank Holiday", + "1989-12-28": "Lao Year-End Bank Holiday", + "1989-12-29": "Lao Year-End Bank Holiday", + "1990-01-01": "New Year's Day", + "1990-01-20": "Lao People's Armed Force Day", + "1990-02-01": "Lao Federation of Trade Union's Day", + "1990-02-09": "Makha Bousa Festival", + "1990-03-08": "International Women's Rights Day", + "1990-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "1990-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "1990-04-15": "Lao New Year's Day", + "1990-04-16": "Lao New Year's Day", + "1990-05-01": "Labor Day", + "1990-05-08": "Visakha Bousa Festival", + "1990-06-01": "International Children Day; National Arbor Day", + "1990-07-07": "Begin of Buddhist Lent", + "1990-07-13": "President Souphanouvong's Birthday", + "1990-07-20": "Establishment Day of the Lao Women's Union", + "1990-08-13": "Lao National Mass Media and Publishing Day", + "1990-08-20": "Boun Haw Khao Padapdin", + "1990-08-23": "National Uprising Day", + "1990-09-04": "Boun Haw Khao Salark", + "1990-10-04": "End of Buddhist Lent", + "1990-10-05": "Vientiane Boat Racing Festival", + "1990-10-07": "Establishment Day of the BOL", + "1990-10-12": "Indepedence Declaration Day", + "1990-11-02": "Boun That Luang Festival", + "1990-12-02": "Lao National Day", + "1990-12-27": "Lao Year-End Bank Holiday", + "1990-12-28": "Lao Year-End Bank Holiday", + "1990-12-31": "Lao Year-End Bank Holiday", + "1991-01-01": "New Year's Day", + "1991-01-20": "Lao People's Armed Force Day", + "1991-01-30": "Makha Bousa Festival", + "1991-02-01": "Lao Federation of Trade Union's Day", + "1991-03-08": "International Women's Rights Day", + "1991-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "1991-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "1991-04-15": "Lao New Year's Day", + "1991-04-16": "Lao New Year's Day", + "1991-04-28": "Visakha Bousa Festival", + "1991-05-01": "Labor Day", + "1991-06-01": "International Children Day; National Arbor Day", + "1991-07-13": "President Souphanouvong's Birthday", + "1991-07-20": "Establishment Day of the Lao Women's Union", + "1991-07-26": "Begin of Buddhist Lent", + "1991-08-13": "Lao National Mass Media and Publishing Day", + "1991-08-15": "Lao National Constitution Day", + "1991-08-23": "National Uprising Day", + "1991-09-08": "Boun Haw Khao Padapdin", + "1991-09-23": "Boun Haw Khao Salark", + "1991-10-07": "Establishment Day of the BOL", + "1991-10-12": "Indepedence Declaration Day", + "1991-10-23": "End of Buddhist Lent", + "1991-10-24": "Vientiane Boat Racing Festival", + "1991-11-21": "Boun That Luang Festival", + "1991-12-02": "Lao National Day", + "1991-12-13": "President Kaysone Phomvihane's Birthday", + "1991-12-27": "Lao Year-End Bank Holiday", + "1991-12-30": "Lao Year-End Bank Holiday", + "1991-12-31": "Lao Year-End Bank Holiday", + "1992-01-01": "New Year's Day", + "1992-01-20": "Lao People's Armed Force Day", + "1992-02-01": "Lao Federation of Trade Union's Day", + "1992-02-18": "Makha Bousa Festival", + "1992-03-08": "International Women's Rights Day", + "1992-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "1992-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "1992-04-15": "Lao New Year's Day", + "1992-04-16": "Lao New Year's Day", + "1992-05-01": "Labor Day", + "1992-05-16": "Visakha Bousa Festival", + "1992-06-01": "International Children Day; National Arbor Day", + "1992-07-13": "President Souphanouvong's Birthday", + "1992-07-14": "Begin of Buddhist Lent", + "1992-07-20": "Establishment Day of the Lao Women's Union", + "1992-08-13": "Lao National Mass Media and Publishing Day", + "1992-08-15": "Lao National Constitution Day", + "1992-08-23": "National Uprising Day", + "1992-08-27": "Boun Haw Khao Padapdin", + "1992-09-11": "Boun Haw Khao Salark", + "1992-10-07": "Establishment Day of the BOL", + "1992-10-11": "End of Buddhist Lent", + "1992-10-12": "Indepedence Declaration Day; Vientiane Boat Racing Festival", + "1992-11-09": "Boun That Luang Festival", + "1992-12-02": "Lao National Day", + "1992-12-13": "President Kaysone Phomvihane's Birthday", + "1992-12-29": "Lao Year-End Bank Holiday", + "1992-12-30": "Lao Year-End Bank Holiday", + "1992-12-31": "Lao Year-End Bank Holiday", + "1993-01-01": "New Year's Day", + "1993-01-20": "Lao People's Armed Force Day", + "1993-02-01": "Lao Federation of Trade Union's Day", + "1993-02-06": "Makha Bousa Festival", + "1993-03-08": "International Women's Rights Day", + "1993-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "1993-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "1993-04-15": "Lao New Year's Day", + "1993-04-16": "Lao New Year's Day", + "1993-05-01": "Labor Day", + "1993-05-05": "Visakha Bousa Festival", + "1993-06-01": "International Children Day; National Arbor Day", + "1993-07-03": "Begin of Buddhist Lent", + "1993-07-13": "President Souphanouvong's Birthday", + "1993-07-20": "Establishment Day of the Lao Women's Union", + "1993-08-13": "Lao National Mass Media and Publishing Day", + "1993-08-15": "Lao National Constitution Day", + "1993-08-16": "Boun Haw Khao Padapdin", + "1993-08-23": "National Uprising Day", + "1993-08-31": "Boun Haw Khao Salark", + "1993-09-30": "End of Buddhist Lent", + "1993-10-01": "Vientiane Boat Racing Festival", + "1993-10-07": "Establishment Day of the BOL", + "1993-10-12": "Indepedence Declaration Day", + "1993-10-29": "Boun That Luang Festival", + "1993-12-02": "Lao National Day", + "1993-12-13": "President Kaysone Phomvihane's Birthday", + "1993-12-29": "Lao Year-End Bank Holiday", + "1993-12-30": "Lao Year-End Bank Holiday", + "1993-12-31": "Lao Year-End Bank Holiday", + "1994-01-01": "New Year's Day", + "1994-01-20": "Lao People's Armed Force Day", + "1994-01-26": "Makha Bousa Festival", + "1994-02-01": "Lao Federation of Trade Union's Day", + "1994-03-08": "International Women's Rights Day", + "1994-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "1994-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "1994-04-15": "Lao New Year's Day", + "1994-04-16": "Lao New Year's Day", + "1994-04-24": "Visakha Bousa Festival", + "1994-05-01": "Labor Day", + "1994-06-01": "International Children Day; National Arbor Day", + "1994-07-13": "President Souphanouvong's Birthday", + "1994-07-20": "Establishment Day of the Lao Women's Union", + "1994-07-22": "Begin of Buddhist Lent", + "1994-08-13": "Lao National Mass Media and Publishing Day", + "1994-08-15": "Lao National Constitution Day", + "1994-08-23": "National Uprising Day", + "1994-09-04": "Boun Haw Khao Padapdin", + "1994-09-19": "Boun Haw Khao Salark", + "1994-10-07": "Establishment Day of the BOL; National Teacher Day", + "1994-10-12": "Indepedence Declaration Day", + "1994-10-19": "End of Buddhist Lent", + "1994-10-20": "Vientiane Boat Racing Festival", + "1994-11-17": "Boun That Luang Festival", + "1994-12-02": "Lao National Day", + "1994-12-13": "President Kaysone Phomvihane's Birthday", + "1994-12-28": "Lao Year-End Bank Holiday", + "1994-12-29": "Lao Year-End Bank Holiday", + "1994-12-30": "Lao Year-End Bank Holiday", + "1995-01-01": "New Year's Day", + "1995-01-20": "Lao People's Armed Force Day", + "1995-02-01": "Lao Federation of Trade Union's Day", + "1995-02-14": "Makha Bousa Festival", + "1995-03-08": "International Women's Rights Day", + "1995-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "1995-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "1995-04-15": "Lao New Year's Day", + "1995-04-16": "Lao New Year's Day", + "1995-05-01": "Labor Day", + "1995-05-13": "Visakha Bousa Festival", + "1995-06-01": "International Children Day; National Arbor Day", + "1995-07-11": "Begin of Buddhist Lent", + "1995-07-13": "President Souphanouvong's Birthday", + "1995-07-20": "Establishment Day of the Lao Women's Union", + "1995-08-13": "Lao National Mass Media and Publishing Day", + "1995-08-15": "Lao National Constitution Day", + "1995-08-23": "National Uprising Day", + "1995-08-24": "Boun Haw Khao Padapdin", + "1995-09-08": "Boun Haw Khao Salark", + "1995-10-07": "Establishment Day of the BOL; National Teacher Day", + "1995-10-08": "End of Buddhist Lent", + "1995-10-09": "Vientiane Boat Racing Festival", + "1995-10-12": "Indepedence Declaration Day", + "1995-11-06": "Boun That Luang Festival", + "1995-12-02": "Lao National Day", + "1995-12-13": "President Kaysone Phomvihane's Birthday", + "1995-12-27": "Lao Year-End Bank Holiday", + "1995-12-28": "Lao Year-End Bank Holiday", + "1995-12-29": "Lao Year-End Bank Holiday", + "1996-01-01": "New Year's Day", + "1996-01-20": "Lao People's Armed Force Day", + "1996-02-01": "Lao Federation of Trade Union's Day", + "1996-02-03": "Makha Bousa Festival", + "1996-03-08": "International Women's Rights Day", + "1996-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "1996-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "1996-04-15": "Lao New Year's Day", + "1996-04-16": "Lao New Year's Day", + "1996-05-01": "Labor Day; Visakha Bousa Festival", + "1996-06-01": "International Children Day; National Arbor Day", + "1996-07-13": "President Souphanouvong's Birthday", + "1996-07-20": "Establishment Day of the Lao Women's Union", + "1996-07-29": "Begin of Buddhist Lent", + "1996-08-13": "Lao National Mass Media and Publishing Day", + "1996-08-15": "Lao National Constitution Day", + "1996-08-23": "National Uprising Day", + "1996-09-11": "Boun Haw Khao Padapdin", + "1996-09-26": "Boun Haw Khao Salark", + "1996-10-07": "Establishment Day of the BOL; National Teacher Day", + "1996-10-12": "Indepedence Declaration Day", + "1996-10-26": "End of Buddhist Lent", + "1996-10-27": "Vientiane Boat Racing Festival", + "1996-11-24": "Boun That Luang Festival", + "1996-12-02": "Lao National Day", + "1996-12-13": "President Kaysone Phomvihane's Birthday", + "1996-12-27": "Lao Year-End Bank Holiday", + "1996-12-30": "Lao Year-End Bank Holiday", + "1996-12-31": "Lao Year-End Bank Holiday", + "1997-01-01": "New Year's Day", + "1997-01-20": "Lao People's Armed Force Day", + "1997-02-01": "Lao Federation of Trade Union's Day", + "1997-02-21": "Makha Bousa Festival", + "1997-03-08": "International Women's Rights Day", + "1997-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "1997-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "1997-04-15": "Lao New Year's Day", + "1997-04-16": "Lao New Year's Day", + "1997-05-01": "Labor Day", + "1997-05-20": "Visakha Bousa Festival", + "1997-06-01": "International Children Day; National Arbor Day", + "1997-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "1997-07-19": "Begin of Buddhist Lent", + "1997-07-20": "Establishment Day of the Lao Women's Union", + "1997-08-13": "Lao National Mass Media and Publishing Day", + "1997-08-15": "Lao National Constitution Day", + "1997-08-23": "National Uprising Day", + "1997-09-01": "Boun Haw Khao Padapdin", + "1997-09-16": "Boun Haw Khao Salark", + "1997-10-07": "Establishment Day of the BOL; National Teacher Day", + "1997-10-12": "Indepedence Declaration Day", + "1997-10-16": "End of Buddhist Lent", + "1997-10-17": "Vientiane Boat Racing Festival", + "1997-11-14": "Boun That Luang Festival", + "1997-12-02": "Lao National Day", + "1997-12-13": "President Kaysone Phomvihane's Birthday", + "1997-12-29": "Lao Year-End Bank Holiday", + "1997-12-30": "Lao Year-End Bank Holiday", + "1997-12-31": "Lao Year-End Bank Holiday", + "1998-01-01": "New Year's Day", + "1998-01-20": "Lao People's Armed Force Day", + "1998-02-01": "Lao Federation of Trade Union's Day", + "1998-02-11": "Makha Bousa Festival", + "1998-03-08": "International Women's Rights Day", + "1998-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "1998-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "1998-04-15": "Lao New Year's Day", + "1998-04-16": "Lao New Year's Day", + "1998-05-01": "Labor Day", + "1998-05-10": "Visakha Bousa Festival", + "1998-06-01": "International Children Day; National Arbor Day", + "1998-07-08": "Begin of Buddhist Lent", + "1998-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "1998-07-20": "Establishment Day of the Lao Women's Union", + "1998-08-13": "Lao National Mass Media and Publishing Day", + "1998-08-15": "Lao National Constitution Day", + "1998-08-21": "Boun Haw Khao Padapdin", + "1998-08-23": "National Uprising Day", + "1998-09-05": "Boun Haw Khao Salark", + "1998-10-05": "End of Buddhist Lent", + "1998-10-06": "Vientiane Boat Racing Festival", + "1998-10-07": "Establishment Day of the BOL; National Teacher Day", + "1998-10-12": "Indepedence Declaration Day", + "1998-11-03": "Boun That Luang Festival", + "1998-12-02": "Lao National Day", + "1998-12-13": "President Kaysone Phomvihane's Birthday", + "1998-12-29": "Lao Year-End Bank Holiday", + "1998-12-30": "Lao Year-End Bank Holiday", + "1998-12-31": "Lao Year-End Bank Holiday", + "1999-01-01": "New Year's Day", + "1999-01-20": "Lao People's Armed Force Day", + "1999-01-31": "Makha Bousa Festival", + "1999-02-01": "Lao Federation of Trade Union's Day", + "1999-03-08": "International Women's Rights Day", + "1999-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "1999-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "1999-04-15": "Lao New Year's Day", + "1999-04-16": "Lao New Year's Day", + "1999-04-29": "Visakha Bousa Festival", + "1999-05-01": "Labor Day", + "1999-06-01": "International Children Day; National Arbor Day", + "1999-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "1999-07-20": "Establishment Day of the Lao Women's Union", + "1999-07-27": "Begin of Buddhist Lent", + "1999-08-13": "Lao National Mass Media and Publishing Day", + "1999-08-15": "Lao National Constitution Day", + "1999-08-23": "National Uprising Day", + "1999-09-09": "Boun Haw Khao Padapdin", + "1999-09-24": "Boun Haw Khao Salark", + "1999-10-07": "Establishment Day of the BOL; National Teacher Day", + "1999-10-12": "Indepedence Declaration Day", + "1999-10-24": "End of Buddhist Lent", + "1999-10-25": "Vientiane Boat Racing Festival", + "1999-11-22": "Boun That Luang Festival", + "1999-12-02": "Lao National Day", + "1999-12-13": "President Kaysone Phomvihane's Birthday", + "1999-12-29": "Lao Year-End Bank Holiday", + "1999-12-30": "Lao Year-End Bank Holiday", + "1999-12-31": "Lao Year-End Bank Holiday", + "2000-01-01": "New Year's Day", + "2000-01-20": "Lao People's Armed Force Day", + "2000-02-01": "Lao Federation of Trade Union's Day", + "2000-02-19": "Makha Bousa Festival", + "2000-03-08": "International Women's Rights Day", + "2000-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2000-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2000-04-15": "Lao New Year's Day", + "2000-04-16": "Lao New Year's Day", + "2000-05-01": "Labor Day", + "2000-05-17": "Visakha Bousa Festival", + "2000-06-01": "International Children Day; National Arbor Day", + "2000-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2000-07-16": "Begin of Buddhist Lent", + "2000-07-20": "Establishment Day of the Lao Women's Union", + "2000-08-13": "Lao National Mass Media and Publishing Day", + "2000-08-15": "Lao National Constitution Day", + "2000-08-23": "National Uprising Day", + "2000-08-29": "Boun Haw Khao Padapdin", + "2000-09-13": "Boun Haw Khao Salark", + "2000-10-07": "Establishment Day of the BOL; National Teacher Day", + "2000-10-12": "Indepedence Declaration Day", + "2000-10-13": "End of Buddhist Lent", + "2000-10-14": "Vientiane Boat Racing Festival", + "2000-11-11": "Boun That Luang Festival", + "2000-12-02": "Lao National Day", + "2000-12-13": "President Kaysone Phomvihane's Birthday", + "2000-12-27": "Lao Year-End Bank Holiday", + "2000-12-28": "Lao Year-End Bank Holiday", + "2000-12-29": "Lao Year-End Bank Holiday", + "2001-01-01": "New Year's Day", + "2001-01-20": "Lao People's Armed Force Day", + "2001-02-01": "Lao Federation of Trade Union's Day", + "2001-02-08": "Makha Bousa Festival", + "2001-03-08": "International Women's Rights Day", + "2001-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2001-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2001-04-15": "Lao New Year's Day", + "2001-04-16": "Lao New Year's Day", + "2001-05-01": "Labor Day", + "2001-05-07": "Visakha Bousa Festival", + "2001-06-01": "International Children Day; National Arbor Day", + "2001-07-05": "Begin of Buddhist Lent", + "2001-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2001-07-20": "Establishment Day of the Lao Women's Union", + "2001-08-13": "Lao National Mass Media and Publishing Day", + "2001-08-15": "Lao National Constitution Day", + "2001-08-18": "Boun Haw Khao Padapdin", + "2001-08-23": "National Uprising Day", + "2001-09-02": "Boun Haw Khao Salark", + "2001-10-02": "End of Buddhist Lent", + "2001-10-03": "Vientiane Boat Racing Festival", + "2001-10-07": "Establishment Day of the BOL; National Teacher Day", + "2001-10-12": "Indepedence Declaration Day", + "2001-10-31": "Boun That Luang Festival", + "2001-12-02": "Lao National Day", + "2001-12-13": "President Kaysone Phomvihane's Birthday", + "2001-12-27": "Lao Year-End Bank Holiday", + "2001-12-28": "Lao Year-End Bank Holiday", + "2001-12-31": "Lao Year-End Bank Holiday", + "2002-01-01": "New Year's Day", + "2002-01-20": "Lao People's Armed Force Day", + "2002-01-28": "Makha Bousa Festival", + "2002-02-01": "Lao Federation of Trade Union's Day", + "2002-03-08": "International Women's Rights Day", + "2002-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2002-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2002-04-15": "Lao New Year's Day", + "2002-04-16": "Lao New Year's Day", + "2002-04-26": "Visakha Bousa Festival", + "2002-05-01": "Labor Day", + "2002-06-01": "International Children Day; National Arbor Day", + "2002-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2002-07-20": "Establishment Day of the Lao Women's Union", + "2002-07-24": "Begin of Buddhist Lent", + "2002-08-13": "Lao National Mass Media and Publishing Day", + "2002-08-15": "Lao National Constitution Day", + "2002-08-23": "National Uprising Day", + "2002-09-06": "Boun Haw Khao Padapdin", + "2002-09-21": "Boun Haw Khao Salark", + "2002-10-07": "Establishment Day of the BOL; National Teacher Day", + "2002-10-12": "Indepedence Declaration Day", + "2002-10-21": "End of Buddhist Lent", + "2002-10-22": "Vientiane Boat Racing Festival", + "2002-11-19": "Boun That Luang Festival", + "2002-12-02": "Lao National Day", + "2002-12-13": "President Kaysone Phomvihane's Birthday", + "2002-12-27": "Lao Year-End Bank Holiday", + "2002-12-30": "Lao Year-End Bank Holiday", + "2002-12-31": "Lao Year-End Bank Holiday", + "2003-01-01": "New Year's Day", + "2003-01-20": "Lao People's Armed Force Day", + "2003-02-01": "Lao Federation of Trade Union's Day", + "2003-02-16": "Makha Bousa Festival", + "2003-03-08": "International Women's Rights Day", + "2003-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2003-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2003-04-15": "Lao New Year's Day", + "2003-04-16": "Lao New Year's Day", + "2003-05-01": "Labor Day", + "2003-05-15": "Visakha Bousa Festival", + "2003-06-01": "International Children Day; National Arbor Day", + "2003-07-13": "Begin of Buddhist Lent; President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2003-07-20": "Establishment Day of the Lao Women's Union", + "2003-08-13": "Lao National Mass Media and Publishing Day", + "2003-08-15": "Lao National Constitution Day", + "2003-08-23": "National Uprising Day", + "2003-08-26": "Boun Haw Khao Padapdin", + "2003-09-10": "Boun Haw Khao Salark", + "2003-10-07": "Establishment Day of the BOL; National Teacher Day", + "2003-10-10": "End of Buddhist Lent", + "2003-10-11": "Vientiane Boat Racing Festival", + "2003-10-12": "Indepedence Declaration Day", + "2003-11-08": "Boun That Luang Festival", + "2003-12-02": "Lao National Day", + "2003-12-13": "President Kaysone Phomvihane's Birthday", + "2003-12-29": "Lao Year-End Bank Holiday", + "2003-12-30": "Lao Year-End Bank Holiday", + "2003-12-31": "Lao Year-End Bank Holiday", + "2004-01-01": "New Year's Day", + "2004-01-20": "Lao People's Armed Force Day", + "2004-02-01": "Lao Federation of Trade Union's Day", + "2004-02-05": "Makha Bousa Festival", + "2004-03-08": "International Women's Rights Day", + "2004-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2004-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2004-04-15": "Lao New Year's Day", + "2004-04-16": "Lao New Year's Day", + "2004-05-01": "Labor Day", + "2004-05-03": "Visakha Bousa Festival", + "2004-06-01": "International Children Day; National Arbor Day", + "2004-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2004-07-20": "Establishment Day of the Lao Women's Union", + "2004-07-31": "Begin of Buddhist Lent", + "2004-08-13": "Lao National Mass Media and Publishing Day", + "2004-08-15": "Lao National Constitution Day", + "2004-08-23": "National Uprising Day", + "2004-09-13": "Boun Haw Khao Padapdin", + "2004-09-28": "Boun Haw Khao Salark", + "2004-10-07": "Establishment Day of the BOL; National Teacher Day", + "2004-10-12": "Indepedence Declaration Day", + "2004-10-28": "End of Buddhist Lent", + "2004-10-29": "Vientiane Boat Racing Festival", + "2004-11-26": "Boun That Luang Festival", + "2004-12-02": "Lao National Day", + "2004-12-13": "President Kaysone Phomvihane's Birthday", + "2004-12-29": "Lao Year-End Bank Holiday", + "2004-12-30": "Lao Year-End Bank Holiday", + "2004-12-31": "Lao Year-End Bank Holiday", + "2005-01-01": "New Year's Day", + "2005-01-20": "Lao People's Armed Force Day", + "2005-02-01": "Lao Federation of Trade Union's Day", + "2005-02-23": "Makha Bousa Festival", + "2005-03-08": "International Women's Rights Day", + "2005-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2005-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2005-04-15": "Lao New Year's Day", + "2005-04-16": "Lao New Year's Day", + "2005-05-01": "Labor Day", + "2005-05-22": "Visakha Bousa Festival", + "2005-06-01": "International Children Day; National Arbor Day", + "2005-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2005-07-20": "Begin of Buddhist Lent; Establishment Day of the Lao Women's Union", + "2005-08-13": "Lao National Mass Media and Publishing Day", + "2005-08-15": "Lao National Constitution Day", + "2005-08-23": "National Uprising Day", + "2005-09-02": "Boun Haw Khao Padapdin", + "2005-09-17": "Boun Haw Khao Salark", + "2005-10-07": "Establishment Day of the BOL; National Teacher Day", + "2005-10-12": "Indepedence Declaration Day", + "2005-10-17": "End of Buddhist Lent", + "2005-10-18": "Vientiane Boat Racing Festival", + "2005-11-15": "Boun That Luang Festival", + "2005-12-02": "Lao National Day", + "2005-12-13": "President Kaysone Phomvihane's Birthday", + "2005-12-28": "Lao Year-End Bank Holiday", + "2005-12-29": "Lao Year-End Bank Holiday", + "2005-12-30": "Lao Year-End Bank Holiday", + "2006-01-01": "New Year's Day", + "2006-01-20": "Lao People's Armed Force Day", + "2006-02-01": "Lao Federation of Trade Union's Day", + "2006-02-12": "Makha Bousa Festival", + "2006-03-08": "International Women's Rights Day", + "2006-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2006-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2006-04-15": "Lao New Year's Day", + "2006-04-16": "Lao New Year's Day", + "2006-05-01": "Labor Day", + "2006-05-11": "Visakha Bousa Festival", + "2006-06-01": "International Children Day; National Arbor Day", + "2006-07-10": "Begin of Buddhist Lent", + "2006-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2006-07-20": "Establishment Day of the Lao Women's Union", + "2006-08-13": "Lao National Mass Media and Publishing Day", + "2006-08-15": "Lao National Constitution Day", + "2006-08-23": "Boun Haw Khao Padapdin; National Uprising Day", + "2006-09-07": "Boun Haw Khao Salark", + "2006-10-07": "End of Buddhist Lent; Establishment Day of the BOL; National Teacher Day", + "2006-10-08": "Vientiane Boat Racing Festival", + "2006-10-12": "Indepedence Declaration Day", + "2006-11-05": "Boun That Luang Festival", + "2006-12-02": "Lao National Day", + "2006-12-13": "President Kaysone Phomvihane's Birthday", + "2006-12-27": "Lao Year-End Bank Holiday", + "2006-12-28": "Lao Year-End Bank Holiday", + "2006-12-29": "Lao Year-End Bank Holiday", + "2007-01-01": "New Year's Day", + "2007-01-20": "Lao People's Armed Force Day", + "2007-02-01": "Lao Federation of Trade Union's Day", + "2007-02-02": "Makha Bousa Festival", + "2007-03-08": "International Women's Rights Day", + "2007-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2007-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2007-04-15": "Lao New Year's Day", + "2007-04-16": "Lao New Year's Day", + "2007-05-01": "Labor Day; Visakha Bousa Festival", + "2007-06-01": "International Children Day; National Arbor Day", + "2007-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2007-07-20": "Establishment Day of the Lao Women's Union", + "2007-07-29": "Begin of Buddhist Lent", + "2007-08-13": "Lao National Mass Media and Publishing Day", + "2007-08-15": "Lao National Constitution Day", + "2007-08-23": "National Uprising Day", + "2007-09-11": "Boun Haw Khao Padapdin", + "2007-09-26": "Boun Haw Khao Salark", + "2007-10-07": "Establishment Day of the BOL; National Teacher Day", + "2007-10-12": "Indepedence Declaration Day", + "2007-10-26": "End of Buddhist Lent", + "2007-10-27": "Vientiane Boat Racing Festival", + "2007-11-24": "Boun That Luang Festival", + "2007-12-02": "Lao National Day", + "2007-12-13": "President Kaysone Phomvihane's Birthday", + "2007-12-27": "Lao Year-End Bank Holiday", + "2007-12-28": "Lao Year-End Bank Holiday", + "2007-12-31": "Lao Year-End Bank Holiday", + "2008-01-01": "New Year's Day", + "2008-01-20": "Lao People's Armed Force Day", + "2008-02-01": "Lao Federation of Trade Union's Day", + "2008-02-21": "Makha Bousa Festival", + "2008-03-08": "International Women's Rights Day", + "2008-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2008-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2008-04-15": "Lao New Year's Day", + "2008-04-16": "Lao New Year's Day", + "2008-05-01": "Labor Day", + "2008-05-19": "Visakha Bousa Festival", + "2008-06-01": "International Children Day; National Arbor Day", + "2008-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2008-07-17": "Begin of Buddhist Lent", + "2008-07-20": "Establishment Day of the Lao Women's Union", + "2008-08-13": "Lao National Mass Media and Publishing Day", + "2008-08-15": "Lao National Constitution Day", + "2008-08-23": "National Uprising Day", + "2008-08-30": "Boun Haw Khao Padapdin", + "2008-09-14": "Boun Haw Khao Salark", + "2008-10-07": "Establishment Day of the BOL; National Teacher Day", + "2008-10-12": "Indepedence Declaration Day", + "2008-10-14": "End of Buddhist Lent", + "2008-10-15": "Vientiane Boat Racing Festival", + "2008-11-12": "Boun That Luang Festival", + "2008-12-02": "Lao National Day", + "2008-12-13": "President Kaysone Phomvihane's Birthday", + "2008-12-29": "Lao Year-End Bank Holiday", + "2008-12-30": "Lao Year-End Bank Holiday", + "2008-12-31": "Lao Year-End Bank Holiday", + "2009-01-01": "New Year's Day", + "2009-01-20": "Lao People's Armed Force Day", + "2009-02-01": "Lao Federation of Trade Union's Day", + "2009-02-09": "Makha Bousa Festival", + "2009-03-08": "International Women's Rights Day", + "2009-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2009-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2009-04-15": "Lao New Year's Day", + "2009-04-16": "Lao New Year's Day", + "2009-05-01": "Labor Day", + "2009-05-08": "Visakha Bousa Festival", + "2009-06-01": "International Children Day; National Arbor Day", + "2009-07-07": "Begin of Buddhist Lent", + "2009-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2009-07-20": "Establishment Day of the Lao Women's Union", + "2009-08-13": "Lao National Mass Media and Publishing Day", + "2009-08-15": "Lao National Constitution Day", + "2009-08-20": "Boun Haw Khao Padapdin", + "2009-08-23": "National Uprising Day", + "2009-09-04": "Boun Haw Khao Salark", + "2009-10-04": "End of Buddhist Lent", + "2009-10-05": "Vientiane Boat Racing Festival", + "2009-10-07": "Establishment Day of the BOL; National Teacher Day", + "2009-10-12": "Indepedence Declaration Day", + "2009-11-02": "Boun That Luang Festival", + "2009-12-02": "Lao National Day", + "2009-12-13": "President Kaysone Phomvihane's Birthday", + "2009-12-29": "Lao Year-End Bank Holiday", + "2009-12-30": "Lao Year-End Bank Holiday", + "2009-12-31": "Lao Year-End Bank Holiday", + "2010-01-01": "New Year's Day", + "2010-01-20": "Lao People's Armed Force Day", + "2010-01-30": "Makha Bousa Festival", + "2010-02-01": "Lao Federation of Trade Union's Day", + "2010-03-08": "International Women's Rights Day", + "2010-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2010-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2010-04-15": "Lao New Year's Day", + "2010-04-16": "Lao New Year's Day", + "2010-04-28": "Visakha Bousa Festival", + "2010-05-01": "Labor Day", + "2010-06-01": "International Children Day; National Arbor Day", + "2010-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2010-07-20": "Establishment Day of the Lao Women's Union", + "2010-07-26": "Begin of Buddhist Lent", + "2010-08-13": "Lao National Mass Media and Publishing Day", + "2010-08-15": "Lao National Constitution Day", + "2010-08-23": "National Uprising Day", + "2010-09-08": "Boun Haw Khao Padapdin", + "2010-09-23": "Boun Haw Khao Salark", + "2010-10-07": "Establishment Day of the BOL; National Teacher Day", + "2010-10-12": "Indepedence Declaration Day", + "2010-10-23": "End of Buddhist Lent", + "2010-10-24": "Vientiane Boat Racing Festival", + "2010-11-21": "Boun That Luang Festival", + "2010-12-02": "Lao National Day", + "2010-12-13": "President Kaysone Phomvihane's Birthday", + "2010-12-29": "Lao Year-End Bank Holiday", + "2010-12-30": "Lao Year-End Bank Holiday", + "2010-12-31": "Lao Year-End Bank Holiday", + "2011-01-01": "New Year's Day", + "2011-01-20": "Lao People's Armed Force Day", + "2011-02-01": "Lao Federation of Trade Union's Day", + "2011-02-18": "Makha Bousa Festival", + "2011-03-08": "International Women's Rights Day", + "2011-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2011-04-13": "Lao New Year's Day (in lieu)", + "2011-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2011-04-15": "Lao New Year's Day", + "2011-04-16": "Lao New Year's Day", + "2011-05-01": "Labor Day", + "2011-05-17": "Visakha Bousa Festival", + "2011-06-01": "International Children Day; National Arbor Day", + "2011-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2011-07-15": "Begin of Buddhist Lent", + "2011-07-20": "Establishment Day of the Lao Women's Union", + "2011-08-13": "Lao National Mass Media and Publishing Day", + "2011-08-15": "Lao National Constitution Day", + "2011-08-23": "National Uprising Day", + "2011-08-28": "Boun Haw Khao Padapdin", + "2011-09-12": "Boun Haw Khao Salark", + "2011-10-07": "Establishment Day of the BOL; National Teacher Day", + "2011-10-12": "End of Buddhist Lent; Indepedence Declaration Day", + "2011-10-13": "Vientiane Boat Racing Festival", + "2011-11-10": "Boun That Luang Festival", + "2011-12-02": "Lao National Day", + "2011-12-13": "President Kaysone Phomvihane's Birthday", + "2011-12-28": "Lao Year-End Bank Holiday", + "2011-12-29": "Lao Year-End Bank Holiday", + "2011-12-30": "Lao Year-End Bank Holiday", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (in lieu)", + "2012-01-20": "Lao People's Armed Force Day", + "2012-02-01": "Lao Federation of Trade Union's Day", + "2012-02-07": "Makha Bousa Festival", + "2012-03-08": "International Women's Rights Day", + "2012-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2012-04-13": "Lao New Year's Day (in lieu)", + "2012-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2012-04-15": "Lao New Year's Day", + "2012-04-16": "Lao New Year's Day", + "2012-04-17": "Lao New Year's Day (in lieu)", + "2012-05-01": "Labor Day", + "2012-05-05": "Visakha Bousa Festival", + "2012-06-01": "International Children Day; National Arbor Day", + "2012-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2012-07-20": "Establishment Day of the Lao Women's Union", + "2012-08-02": "Begin of Buddhist Lent", + "2012-08-13": "Lao National Mass Media and Publishing Day", + "2012-08-15": "Lao National Constitution Day", + "2012-08-23": "National Uprising Day", + "2012-09-15": "Boun Haw Khao Padapdin", + "2012-09-30": "Boun Haw Khao Salark", + "2012-10-07": "Establishment Day of the BOL; National Teacher Day", + "2012-10-12": "Indepedence Declaration Day", + "2012-10-30": "End of Buddhist Lent", + "2012-10-31": "Vientiane Boat Racing Festival", + "2012-11-28": "Boun That Luang Festival", + "2012-12-02": "Lao National Day", + "2012-12-03": "Lao National Day (in lieu", + "2012-12-13": "President Kaysone Phomvihane's Birthday", + "2012-12-27": "Lao Year-End Bank Holiday", + "2012-12-28": "Lao Year-End Bank Holiday", + "2012-12-31": "Lao Year-End Bank Holiday", + "2013-01-01": "New Year's Day", + "2013-01-20": "Lao People's Armed Force Day", + "2013-02-01": "Lao Federation of Trade Union's Day", + "2013-02-25": "Makha Bousa Festival", + "2013-03-08": "International Women's Rights Day", + "2013-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2013-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2013-04-15": "Lao New Year's Day", + "2013-04-16": "Lao New Year's Day", + "2013-04-17": "Lao New Year's Day (in lieu)", + "2013-05-01": "Labor Day", + "2013-05-24": "Visakha Bousa Festival", + "2013-06-01": "International Children Day; National Arbor Day", + "2013-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2013-07-20": "Establishment Day of the Lao Women's Union", + "2013-07-22": "Begin of Buddhist Lent", + "2013-08-13": "Lao National Mass Media and Publishing Day", + "2013-08-15": "Lao National Constitution Day", + "2013-08-23": "National Uprising Day", + "2013-09-04": "Boun Haw Khao Padapdin", + "2013-09-19": "Boun Haw Khao Salark", + "2013-10-07": "Establishment Day of the BOL; National Teacher Day", + "2013-10-12": "Indepedence Declaration Day", + "2013-10-19": "End of Buddhist Lent", + "2013-10-20": "Vientiane Boat Racing Festival", + "2013-11-17": "Boun That Luang Festival", + "2013-12-02": "Lao National Day", + "2013-12-13": "President Kaysone Phomvihane's Birthday", + "2013-12-27": "Lao Year-End Bank Holiday", + "2013-12-30": "Lao Year-End Bank Holiday", + "2013-12-31": "Lao Year-End Bank Holiday", + "2014-01-01": "New Year's Day", + "2014-01-20": "Lao People's Armed Force Day", + "2014-02-01": "Lao Federation of Trade Union's Day", + "2014-02-14": "Makha Bousa Festival", + "2014-03-08": "International Women's Rights Day", + "2014-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2014-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2014-04-15": "Lao New Year's Day", + "2014-04-16": "Lao New Year's Day", + "2014-05-01": "Labor Day", + "2014-05-13": "Visakha Bousa Festival", + "2014-06-01": "International Children Day; National Arbor Day", + "2014-07-11": "Begin of Buddhist Lent", + "2014-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2014-07-20": "Establishment Day of the Lao Women's Union", + "2014-08-13": "Lao National Mass Media and Publishing Day", + "2014-08-15": "Lao National Constitution Day", + "2014-08-23": "National Uprising Day", + "2014-08-24": "Boun Haw Khao Padapdin", + "2014-09-08": "Boun Haw Khao Salark", + "2014-10-07": "Establishment Day of the BOL; National Teacher Day", + "2014-10-08": "End of Buddhist Lent", + "2014-10-09": "Vientiane Boat Racing Festival", + "2014-10-12": "Indepedence Declaration Day", + "2014-11-06": "Boun That Luang Festival", + "2014-12-02": "Lao National Day", + "2014-12-13": "President Kaysone Phomvihane's Birthday", + "2014-12-29": "Lao Year-End Bank Holiday", + "2014-12-30": "Lao Year-End Bank Holiday", + "2014-12-31": "Lao Year-End Bank Holiday", + "2015-01-01": "New Year's Day", + "2015-01-02": "Special Bank Holiday", + "2015-01-20": "Lao People's Armed Force Day", + "2015-02-01": "Lao Federation of Trade Union's Day", + "2015-02-03": "Makha Bousa Festival", + "2015-03-08": "International Women's Rights Day", + "2015-03-09": "Internation Women's Rights Day (in lieu)", + "2015-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2015-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2015-04-15": "Lao New Year's Day", + "2015-04-16": "Lao New Year's Day", + "2015-04-17": "Lao New Year's Day (Special)", + "2015-05-01": "Labor Day", + "2015-05-02": "Visakha Bousa Festival", + "2015-06-01": "International Children Day; National Arbor Day", + "2015-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2015-07-20": "Establishment Day of the Lao Women's Union", + "2015-07-30": "Begin of Buddhist Lent", + "2015-08-13": "Lao National Mass Media and Publishing Day", + "2015-08-15": "Lao National Constitution Day", + "2015-08-23": "National Uprising Day", + "2015-09-12": "Boun Haw Khao Padapdin", + "2015-09-27": "Boun Haw Khao Salark", + "2015-10-07": "Establishment Day of the BOL; National Teacher Day", + "2015-10-12": "Indepedence Declaration Day", + "2015-10-27": "End of Buddhist Lent", + "2015-10-28": "Vientiane Boat Racing Festival", + "2015-11-25": "Boun That Luang Festival", + "2015-12-02": "Lao National Day", + "2015-12-13": "President Kaysone Phomvihane's Birthday", + "2015-12-29": "Lao Year-End Bank Holiday", + "2015-12-30": "Lao Year-End Bank Holiday", + "2015-12-31": "Lao Year-End Bank Holiday", + "2016-01-01": "New Year's Day", + "2016-01-20": "Lao People's Armed Force Day", + "2016-02-01": "Lao Federation of Trade Union's Day", + "2016-02-22": "Makha Bousa Festival", + "2016-03-08": "International Women's Rights Day", + "2016-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2016-04-13": "Lao New Year's Day (Special)", + "2016-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2016-04-15": "Lao New Year's Day", + "2016-04-16": "Lao New Year's Day", + "2016-04-18": "Lao New Year's Day (Special)", + "2016-05-01": "Labor Day", + "2016-05-02": "Labor Day (in lieu)", + "2016-05-20": "Visakha Bousa Festival", + "2016-06-01": "International Children Day; National Arbor Day", + "2016-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2016-07-19": "Begin of Buddhist Lent", + "2016-07-20": "Establishment Day of the Lao Women's Union", + "2016-08-13": "Lao National Mass Media and Publishing Day", + "2016-08-15": "Lao National Constitution Day", + "2016-08-23": "National Uprising Day", + "2016-09-01": "Boun Haw Khao Padapdin", + "2016-09-16": "Boun Haw Khao Salark", + "2016-10-07": "Establishment Day of the BOL; National Teacher Day", + "2016-10-12": "Indepedence Declaration Day", + "2016-10-16": "End of Buddhist Lent", + "2016-10-17": "Vientiane Boat Racing Festival", + "2016-11-14": "Boun That Luang Festival", + "2016-12-02": "Lao National Day", + "2016-12-13": "President Kaysone Phomvihane's Birthday", + "2016-12-28": "Lao Year-End Bank Holiday", + "2016-12-29": "Lao Year-End Bank Holiday", + "2016-12-30": "Lao Year-End Bank Holiday", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (in lieu)", + "2017-01-20": "Lao People's Armed Force Day", + "2017-02-01": "Lao Federation of Trade Union's Day", + "2017-02-11": "Makha Bousa Festival", + "2017-03-08": "International Women's Rights Day", + "2017-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2017-04-13": "Lao New Year's Day (in lieu)", + "2017-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2017-04-15": "Lao New Year's Day", + "2017-04-16": "Lao New Year's Day", + "2017-04-17": "Lao New Year's Day (in lieu)", + "2017-05-01": "Labor Day", + "2017-05-10": "Visakha Bousa Festival", + "2017-06-01": "International Children Day; National Arbor Day", + "2017-07-08": "Begin of Buddhist Lent", + "2017-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2017-07-20": "Establishment Day of the Lao Women's Union", + "2017-08-13": "Lao National Mass Media and Publishing Day", + "2017-08-15": "Lao National Constitution Day", + "2017-08-21": "Boun Haw Khao Padapdin", + "2017-08-23": "National Uprising Day", + "2017-09-05": "Boun Haw Khao Salark", + "2017-10-05": "End of Buddhist Lent", + "2017-10-06": "Vientiane Boat Racing Festival", + "2017-10-07": "Establishment Day of the BOL; National Teacher Day", + "2017-10-09": "Establishment Day of the BOL (in lieu)", + "2017-10-12": "Indepedence Declaration Day", + "2017-11-03": "Boun That Luang Festival", + "2017-12-02": "Lao National Day", + "2017-12-04": "Lao National Day (in lieu", + "2017-12-13": "President Kaysone Phomvihane's Birthday", + "2017-12-27": "Lao Year-End Bank Holiday", + "2017-12-28": "Lao Year-End Bank Holiday", + "2017-12-29": "Lao Year-End Bank Holiday", + "2018-01-01": "New Year's Day", + "2018-01-20": "Lao People's Armed Force Day", + "2018-01-31": "Makha Bousa Festival", + "2018-02-01": "Lao Federation of Trade Union's Day", + "2018-03-08": "International Women's Rights Day", + "2018-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2018-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2018-04-15": "Lao New Year's Day", + "2018-04-16": "Lao New Year's Day", + "2018-04-17": "Lao New Year's Day (in lieu)", + "2018-04-18": "Lao New Year's Day (in lieu)", + "2018-04-29": "Visakha Bousa Festival", + "2018-05-01": "Labor Day", + "2018-06-01": "International Children Day; National Arbor Day", + "2018-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2018-07-20": "Establishment Day of the Lao Women's Union", + "2018-07-27": "Begin of Buddhist Lent", + "2018-08-13": "Lao National Mass Media and Publishing Day", + "2018-08-15": "Lao National Constitution Day", + "2018-08-23": "National Uprising Day", + "2018-09-09": "Boun Haw Khao Padapdin", + "2018-09-24": "Boun Haw Khao Salark", + "2018-10-07": "Establishment Day of the BOL; National Teacher Day", + "2018-10-08": "Establishment Day of the BOL (in lieu)", + "2018-10-12": "Indepedence Declaration Day", + "2018-10-24": "End of Buddhist Lent", + "2018-10-25": "Vientiane Boat Racing Festival", + "2018-11-22": "Boun That Luang Festival", + "2018-12-02": "Lao National Day", + "2018-12-03": "Lao National Day (in lieu)", + "2018-12-13": "President Kaysone Phomvihane's Birthday", + "2018-12-27": "Lao Year-End Bank Holiday", + "2018-12-28": "Lao Year-End Bank Holiday", + "2018-12-31": "Lao Year-End Bank Holiday", + "2019-01-01": "New Year's Day", + "2019-01-20": "Lao People's Armed Force Day", + "2019-02-01": "Lao Federation of Trade Union's Day", + "2019-02-19": "Makha Bousa Festival", + "2019-03-08": "International Women's Rights Day", + "2019-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2019-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2019-04-15": "Lao New Year's Day", + "2019-04-16": "Lao New Year's Day", + "2019-04-17": "Lao New Year's Day (in lieu)", + "2019-05-01": "Labor Day", + "2019-05-18": "Visakha Bousa Festival", + "2019-06-01": "International Children Day; National Arbor Day", + "2019-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2019-07-16": "Begin of Buddhist Lent", + "2019-07-20": "Establishment Day of the Lao Women's Union", + "2019-07-22": "Establishment Day of the Lao Women's Union (in lieu)", + "2019-08-13": "Lao National Mass Media and Publishing Day", + "2019-08-15": "Lao National Constitution Day", + "2019-08-23": "National Uprising Day", + "2019-08-29": "Boun Haw Khao Padapdin", + "2019-09-13": "Boun Haw Khao Salark", + "2019-10-07": "Establishment Day of the BOL; National Teacher Day", + "2019-10-12": "Indepedence Declaration Day", + "2019-10-13": "End of Buddhist Lent", + "2019-10-14": "Vientiane Boat Racing Festival", + "2019-11-11": "Boun That Luang Festival", + "2019-12-02": "Lao National Day", + "2019-12-13": "President Kaysone Phomvihane's Birthday", + "2019-12-27": "Lao Year-End Bank Holiday", + "2019-12-30": "Lao Year-End Bank Holiday", + "2019-12-31": "Lao Year-End Bank Holiday", + "2020-01-01": "New Year's Day", + "2020-01-20": "Lao People's Armed Force Day", + "2020-02-01": "Lao Federation of Trade Union's Day", + "2020-02-08": "Makha Bousa Festival", + "2020-03-08": "International Women's Rights Day", + "2020-03-09": "International Women's Rights Day (in lieu)", + "2020-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2020-04-13": "Lao New Year's Day (Special)", + "2020-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2020-04-15": "Lao New Year's Day", + "2020-04-16": "Lao New Year's Day", + "2020-04-17": "Lao New Year's Day (Special)", + "2020-05-01": "Labor Day", + "2020-05-06": "Visakha Bousa Festival", + "2020-06-01": "International Children Day; National Arbor Day", + "2020-07-05": "Begin of Buddhist Lent", + "2020-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2020-07-20": "Establishment Day of the Lao Women's Union", + "2020-08-13": "Lao National Mass Media and Publishing Day", + "2020-08-15": "Lao National Constitution Day", + "2020-08-18": "Boun Haw Khao Padapdin", + "2020-08-23": "National Uprising Day", + "2020-09-02": "Boun Haw Khao Salark", + "2020-10-02": "End of Buddhist Lent", + "2020-10-03": "Vientiane Boat Racing Festival", + "2020-10-07": "Establishment Day of the BOL; National Teacher Day", + "2020-10-12": "Indepedence Declaration Day", + "2020-10-31": "Boun That Luang Festival", + "2020-12-02": "Lao National Day", + "2020-12-13": "President Kaysone Phomvihane's Birthday", + "2020-12-29": "Lao Year-End Bank Holiday", + "2020-12-30": "Lao Year-End Bank Holiday", + "2020-12-31": "Lao Year-End Bank Holiday", + "2021-01-01": "New Year's Day", + "2021-01-20": "Lao People's Armed Force Day", + "2021-01-28": "Makha Bousa Festival", + "2021-02-01": "Lao Federation of Trade Union's Day", + "2021-03-08": "International Women's Rights Day", + "2021-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2021-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2021-04-15": "Lao New Year's Day", + "2021-04-16": "Lao New Year's Day", + "2021-04-26": "Visakha Bousa Festival", + "2021-05-01": "Labor Day", + "2021-05-03": "Labor Day (in lieu)", + "2021-06-01": "International Children Day; National Arbor Day", + "2021-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2021-07-20": "Establishment Day of the Lao Women's Union", + "2021-07-24": "Begin of Buddhist Lent", + "2021-08-13": "Lao National Mass Media and Publishing Day", + "2021-08-15": "Lao National Constitution Day", + "2021-08-23": "National Uprising Day", + "2021-09-06": "Boun Haw Khao Padapdin", + "2021-09-21": "Boun Haw Khao Salark", + "2021-10-07": "Establishment Day of the BOL; National Teacher Day", + "2021-10-12": "Indepedence Declaration Day", + "2021-10-21": "End of Buddhist Lent", + "2021-10-22": "Vientiane Boat Racing Festival", + "2021-11-19": "Boun That Luang Festival", + "2021-12-02": "Lao National Day", + "2021-12-13": "President Kaysone Phomvihane's Birthday", + "2021-12-29": "Lao Year-End Bank Holiday", + "2021-12-30": "Lao Year-End Bank Holiday", + "2021-12-31": "Lao Year-End Bank Holiday", + "2022-01-01": "New Year's Day", + "2022-01-03": "New Year's Day (in lieu)", + "2022-01-20": "Lao People's Armed Force Day", + "2022-02-01": "Lao Federation of Trade Union's Day", + "2022-02-16": "Makha Bousa Festival", + "2022-03-08": "International Women's Rights Day", + "2022-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2022-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2022-04-15": "Lao New Year's Day", + "2022-04-16": "Lao New Year's Day", + "2022-04-18": "Lao New Year's Day (in lieu)", + "2022-05-01": "Labor Day", + "2022-05-02": "Labor Day (in lieu)", + "2022-05-15": "Visakha Bousa Festival", + "2022-06-01": "International Children Day; National Arbor Day", + "2022-07-13": "Begin of Buddhist Lent; President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2022-07-20": "Establishment Day of the Lao Women's Union", + "2022-08-13": "Lao National Mass Media and Publishing Day", + "2022-08-15": "Lao National Constitution Day", + "2022-08-23": "National Uprising Day", + "2022-08-26": "Boun Haw Khao Padapdin", + "2022-09-10": "Boun Haw Khao Salark", + "2022-10-07": "Establishment Day of the BOL; National Teacher Day", + "2022-10-10": "End of Buddhist Lent", + "2022-10-11": "Vientiane Boat Racing Festival", + "2022-10-12": "Indepedence Declaration Day", + "2022-11-08": "Boun That Luang Festival", + "2022-12-02": "Lao National Day", + "2022-12-13": "President Kaysone Phomvihane's Birthday", + "2022-12-28": "Lao Year-End Bank Holiday", + "2022-12-29": "Lao Year-End Bank Holiday", + "2022-12-30": "Lao Year-End Bank Holiday", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (in lieu)", + "2023-01-20": "Lao People's Armed Force Day", + "2023-02-01": "Lao Federation of Trade Union's Day", + "2023-02-05": "Makha Bousa Festival", + "2023-03-08": "International Women's Rights Day", + "2023-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2023-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2023-04-15": "Lao New Year's Day", + "2023-04-16": "Lao New Year's Day", + "2023-04-17": "Lao New Year's Day (in lieu)", + "2023-04-18": "Lao New Year's Day (in lieu)", + "2023-05-01": "Labor Day", + "2023-05-04": "Visakha Bousa Festival", + "2023-06-01": "International Children Day; National Arbor Day", + "2023-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2023-07-20": "Establishment Day of the Lao Women's Union", + "2023-08-01": "Begin of Buddhist Lent", + "2023-08-13": "Lao National Mass Media and Publishing Day", + "2023-08-15": "Lao National Constitution Day", + "2023-08-23": "National Uprising Day", + "2023-09-14": "Boun Haw Khao Padapdin", + "2023-09-29": "Boun Haw Khao Salark", + "2023-10-07": "Establishment Day of the BOL; National Teacher Day", + "2023-10-09": "Establishment Day of the BOL (in lieu)", + "2023-10-12": "Indepedence Declaration Day", + "2023-10-29": "End of Buddhist Lent", + "2023-10-30": "Vientiane Boat Racing Festival", + "2023-11-27": "Boun That Luang Festival", + "2023-12-02": "Lao National Day", + "2023-12-04": "Lao National Day (in lieu)", + "2023-12-13": "President Kaysone Phomvihane's Birthday", + "2023-12-27": "Lao Year-End Bank Holiday", + "2023-12-28": "Lao Year-End Bank Holiday", + "2023-12-29": "Lao Year-End Bank Holiday", + "2024-01-01": "New Year's Day", + "2024-01-20": "Lao People's Armed Force Day", + "2024-02-01": "Lao Federation of Trade Union's Day", + "2024-02-24": "Makha Bousa Festival", + "2024-03-08": "International Women's Rights Day", + "2024-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2024-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2024-04-15": "Lao New Year's Day", + "2024-04-16": "Lao New Year's Day", + "2024-04-17": "Lao New Year's Day (in lieu)", + "2024-05-01": "Labor Day", + "2024-05-22": "Visakha Bousa Festival", + "2024-06-01": "International Children Day; National Arbor Day", + "2024-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2024-07-20": "Begin of Buddhist Lent; Establishment Day of the Lao Women's Union", + "2024-08-13": "Lao National Mass Media and Publishing Day", + "2024-08-15": "Lao National Constitution Day", + "2024-08-23": "National Uprising Day", + "2024-09-02": "Boun Haw Khao Padapdin", + "2024-09-17": "Boun Haw Khao Salark", + "2024-10-07": "Establishment Day of the BOL; National Teacher Day", + "2024-10-12": "Indepedence Declaration Day", + "2024-10-17": "End of Buddhist Lent", + "2024-10-18": "Vientiane Boat Racing Festival", + "2024-11-15": "Boun That Luang Festival", + "2024-12-02": "Lao National Day", + "2024-12-13": "President Kaysone Phomvihane's Birthday", + "2024-12-27": "Lao Year-End Bank Holiday", + "2024-12-30": "Lao Year-End Bank Holiday", + "2024-12-31": "Lao Year-End Bank Holiday", + "2025-01-01": "New Year's Day", + "2025-01-20": "Lao People's Armed Force Day", + "2025-02-01": "Lao Federation of Trade Union's Day", + "2025-02-12": "Makha Bousa Festival", + "2025-03-08": "International Women's Rights Day", + "2025-03-10": "International Women's Rights Day (in lieu)", + "2025-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2025-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2025-04-15": "Lao New Year's Day", + "2025-04-16": "Lao New Year's Day", + "2025-05-01": "Labor Day", + "2025-05-11": "Visakha Bousa Festival", + "2025-06-01": "International Children Day; National Arbor Day", + "2025-07-10": "Begin of Buddhist Lent", + "2025-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2025-07-20": "Establishment Day of the Lao Women's Union", + "2025-08-13": "Lao National Mass Media and Publishing Day", + "2025-08-15": "Lao National Constitution Day", + "2025-08-23": "Boun Haw Khao Padapdin; National Uprising Day", + "2025-09-07": "Boun Haw Khao Salark", + "2025-10-07": "End of Buddhist Lent; Establishment Day of the BOL; National Teacher Day", + "2025-10-08": "Vientiane Boat Racing Festival", + "2025-10-12": "Indepedence Declaration Day", + "2025-11-05": "Boun That Luang Festival", + "2025-12-02": "Lao National Day", + "2025-12-13": "President Kaysone Phomvihane's Birthday", + "2025-12-29": "Lao Year-End Bank Holiday", + "2025-12-30": "Lao Year-End Bank Holiday", + "2025-12-31": "Lao Year-End Bank Holiday", + "2026-01-01": "New Year's Day", + "2026-01-20": "Lao People's Armed Force Day", + "2026-02-01": "Lao Federation of Trade Union's Day", + "2026-02-02": "Makha Bousa Festival", + "2026-03-08": "International Women's Rights Day", + "2026-03-09": "International Women's Rights Day (in lieu)", + "2026-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2026-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2026-04-15": "Lao New Year's Day", + "2026-04-16": "Lao New Year's Day", + "2026-05-01": "Labor Day; Visakha Bousa Festival", + "2026-06-01": "International Children Day; National Arbor Day", + "2026-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2026-07-20": "Establishment Day of the Lao Women's Union", + "2026-07-29": "Begin of Buddhist Lent", + "2026-08-13": "Lao National Mass Media and Publishing Day", + "2026-08-15": "Lao National Constitution Day", + "2026-08-23": "National Uprising Day", + "2026-09-11": "Boun Haw Khao Padapdin", + "2026-09-26": "Boun Haw Khao Salark", + "2026-10-07": "Establishment Day of the BOL; National Teacher Day", + "2026-10-12": "Indepedence Declaration Day", + "2026-10-26": "End of Buddhist Lent", + "2026-10-27": "Vientiane Boat Racing Festival", + "2026-11-24": "Boun That Luang Festival", + "2026-12-02": "Lao National Day", + "2026-12-13": "President Kaysone Phomvihane's Birthday", + "2026-12-29": "Lao Year-End Bank Holiday", + "2026-12-30": "Lao Year-End Bank Holiday", + "2026-12-31": "Lao Year-End Bank Holiday", + "2027-01-01": "New Year's Day", + "2027-01-20": "Lao People's Armed Force Day", + "2027-02-01": "Lao Federation of Trade Union's Day", + "2027-02-21": "Makha Bousa Festival", + "2027-03-08": "International Women's Rights Day", + "2027-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2027-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2027-04-15": "Lao New Year's Day", + "2027-04-16": "Lao New Year's Day", + "2027-05-01": "Labor Day", + "2027-05-03": "Labor Day (in lieu)", + "2027-05-20": "Visakha Bousa Festival", + "2027-06-01": "International Children Day; National Arbor Day", + "2027-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2027-07-18": "Begin of Buddhist Lent", + "2027-07-20": "Establishment Day of the Lao Women's Union", + "2027-08-13": "Lao National Mass Media and Publishing Day", + "2027-08-15": "Lao National Constitution Day", + "2027-08-23": "National Uprising Day", + "2027-08-31": "Boun Haw Khao Padapdin", + "2027-09-15": "Boun Haw Khao Salark", + "2027-10-07": "Establishment Day of the BOL; National Teacher Day", + "2027-10-12": "Indepedence Declaration Day", + "2027-10-15": "End of Buddhist Lent", + "2027-10-16": "Vientiane Boat Racing Festival", + "2027-11-13": "Boun That Luang Festival", + "2027-12-02": "Lao National Day", + "2027-12-13": "President Kaysone Phomvihane's Birthday", + "2027-12-29": "Lao Year-End Bank Holiday", + "2027-12-30": "Lao Year-End Bank Holiday", + "2027-12-31": "Lao Year-End Bank Holiday", + "2028-01-01": "New Year's Day", + "2028-01-03": "New Year's Day (in lieu)", + "2028-01-20": "Lao People's Armed Force Day", + "2028-02-01": "Lao Federation of Trade Union's Day", + "2028-02-10": "Makha Bousa Festival", + "2028-03-08": "International Women's Rights Day", + "2028-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2028-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2028-04-15": "Lao New Year's Day", + "2028-04-16": "Lao New Year's Day", + "2028-04-17": "Lao New Year's Day (in lieu)", + "2028-04-18": "Lao New Year's Day (in lieu)", + "2028-05-01": "Labor Day", + "2028-05-08": "Visakha Bousa Festival", + "2028-06-01": "International Children Day; National Arbor Day", + "2028-07-06": "Begin of Buddhist Lent", + "2028-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2028-07-20": "Establishment Day of the Lao Women's Union", + "2028-08-13": "Lao National Mass Media and Publishing Day", + "2028-08-15": "Lao National Constitution Day", + "2028-08-19": "Boun Haw Khao Padapdin", + "2028-08-23": "National Uprising Day", + "2028-09-03": "Boun Haw Khao Salark", + "2028-10-03": "End of Buddhist Lent", + "2028-10-04": "Vientiane Boat Racing Festival", + "2028-10-07": "Establishment Day of the BOL; National Teacher Day", + "2028-10-09": "Establishment Day of the BOL (in lieu)", + "2028-10-12": "Indepedence Declaration Day", + "2028-11-01": "Boun That Luang Festival", + "2028-12-02": "Lao National Day", + "2028-12-04": "Lao National Day (in lieu)", + "2028-12-13": "President Kaysone Phomvihane's Birthday", + "2028-12-27": "Lao Year-End Bank Holiday", + "2028-12-28": "Lao Year-End Bank Holiday", + "2028-12-29": "Lao Year-End Bank Holiday", + "2029-01-01": "New Year's Day", + "2029-01-20": "Lao People's Armed Force Day", + "2029-01-29": "Makha Bousa Festival", + "2029-02-01": "Lao Federation of Trade Union's Day", + "2029-03-08": "International Women's Rights Day", + "2029-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2029-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2029-04-15": "Lao New Year's Day", + "2029-04-16": "Lao New Year's Day", + "2029-04-17": "Lao New Year's Day (in lieu)", + "2029-04-18": "Lao New Year's Day (in lieu)", + "2029-04-27": "Visakha Bousa Festival", + "2029-05-01": "Labor Day", + "2029-06-01": "International Children Day; National Arbor Day", + "2029-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2029-07-20": "Establishment Day of the Lao Women's Union", + "2029-07-25": "Begin of Buddhist Lent", + "2029-08-13": "Lao National Mass Media and Publishing Day", + "2029-08-15": "Lao National Constitution Day", + "2029-08-23": "National Uprising Day", + "2029-09-07": "Boun Haw Khao Padapdin", + "2029-09-22": "Boun Haw Khao Salark", + "2029-10-07": "Establishment Day of the BOL; National Teacher Day", + "2029-10-08": "Establishment Day of the BOL (in lieu)", + "2029-10-12": "Indepedence Declaration Day", + "2029-10-22": "End of Buddhist Lent", + "2029-10-23": "Vientiane Boat Racing Festival", + "2029-11-20": "Boun That Luang Festival", + "2029-12-02": "Lao National Day", + "2029-12-03": "Lao National Day (in lieu)", + "2029-12-13": "President Kaysone Phomvihane's Birthday", + "2029-12-27": "Lao Year-End Bank Holiday", + "2029-12-28": "Lao Year-End Bank Holiday", + "2029-12-31": "Lao Year-End Bank Holiday", + "2030-01-01": "New Year's Day", + "2030-01-20": "Lao People's Armed Force Day", + "2030-02-01": "Lao Federation of Trade Union's Day", + "2030-02-17": "Makha Bousa Festival", + "2030-03-08": "International Women's Rights Day", + "2030-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2030-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2030-04-15": "Lao New Year's Day", + "2030-04-16": "Lao New Year's Day", + "2030-04-17": "Lao New Year's Day (in lieu)", + "2030-05-01": "Labor Day", + "2030-05-16": "Visakha Bousa Festival", + "2030-06-01": "International Children Day; National Arbor Day", + "2030-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2030-07-14": "Begin of Buddhist Lent", + "2030-07-20": "Establishment Day of the Lao Women's Union", + "2030-08-13": "Lao National Mass Media and Publishing Day", + "2030-08-15": "Lao National Constitution Day", + "2030-08-23": "National Uprising Day", + "2030-08-27": "Boun Haw Khao Padapdin", + "2030-09-11": "Boun Haw Khao Salark", + "2030-10-07": "Establishment Day of the BOL; National Teacher Day", + "2030-10-11": "End of Buddhist Lent", + "2030-10-12": "Indepedence Declaration Day; Vientiane Boat Racing Festival", + "2030-11-09": "Boun That Luang Festival", + "2030-12-02": "Lao National Day", + "2030-12-13": "President Kaysone Phomvihane's Birthday", + "2030-12-27": "Lao Year-End Bank Holiday", + "2030-12-30": "Lao Year-End Bank Holiday", + "2030-12-31": "Lao Year-End Bank Holiday", + "2031-01-01": "New Year's Day", + "2031-01-20": "Lao People's Armed Force Day", + "2031-02-01": "Lao Federation of Trade Union's Day", + "2031-02-06": "Makha Bousa Festival", + "2031-03-08": "International Women's Rights Day", + "2031-03-10": "International Women's Rights Day (in lieu)", + "2031-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2031-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2031-04-15": "Lao New Year's Day", + "2031-04-16": "Lao New Year's Day", + "2031-05-01": "Labor Day", + "2031-05-05": "Visakha Bousa Festival", + "2031-06-01": "International Children Day; National Arbor Day", + "2031-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2031-07-20": "Establishment Day of the Lao Women's Union", + "2031-08-02": "Begin of Buddhist Lent", + "2031-08-13": "Lao National Mass Media and Publishing Day", + "2031-08-15": "Lao National Constitution Day", + "2031-08-23": "National Uprising Day", + "2031-09-15": "Boun Haw Khao Padapdin", + "2031-09-30": "Boun Haw Khao Salark", + "2031-10-07": "Establishment Day of the BOL; National Teacher Day", + "2031-10-12": "Indepedence Declaration Day", + "2031-10-30": "End of Buddhist Lent", + "2031-10-31": "Vientiane Boat Racing Festival", + "2031-11-28": "Boun That Luang Festival", + "2031-12-02": "Lao National Day", + "2031-12-13": "President Kaysone Phomvihane's Birthday", + "2031-12-29": "Lao Year-End Bank Holiday", + "2031-12-30": "Lao Year-End Bank Holiday", + "2031-12-31": "Lao Year-End Bank Holiday", + "2032-01-01": "New Year's Day", + "2032-01-20": "Lao People's Armed Force Day", + "2032-02-01": "Lao Federation of Trade Union's Day", + "2032-02-25": "Makha Bousa Festival", + "2032-03-08": "International Women's Rights Day", + "2032-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2032-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2032-04-15": "Lao New Year's Day", + "2032-04-16": "Lao New Year's Day", + "2032-05-01": "Labor Day", + "2032-05-03": "Labor Day (in lieu)", + "2032-05-23": "Visakha Bousa Festival", + "2032-06-01": "International Children Day; National Arbor Day", + "2032-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2032-07-20": "Establishment Day of the Lao Women's Union", + "2032-07-22": "Begin of Buddhist Lent", + "2032-08-13": "Lao National Mass Media and Publishing Day", + "2032-08-15": "Lao National Constitution Day", + "2032-08-23": "National Uprising Day", + "2032-09-04": "Boun Haw Khao Padapdin", + "2032-09-19": "Boun Haw Khao Salark", + "2032-10-07": "Establishment Day of the BOL; National Teacher Day", + "2032-10-12": "Indepedence Declaration Day", + "2032-10-19": "End of Buddhist Lent", + "2032-10-20": "Vientiane Boat Racing Festival", + "2032-11-17": "Boun That Luang Festival", + "2032-12-02": "Lao National Day", + "2032-12-13": "President Kaysone Phomvihane's Birthday", + "2032-12-29": "Lao Year-End Bank Holiday", + "2032-12-30": "Lao Year-End Bank Holiday", + "2032-12-31": "Lao Year-End Bank Holiday", + "2033-01-01": "New Year's Day", + "2033-01-03": "New Year's Day (in lieu)", + "2033-01-20": "Lao People's Armed Force Day", + "2033-02-01": "Lao Federation of Trade Union's Day", + "2033-02-14": "Makha Bousa Festival", + "2033-03-08": "International Women's Rights Day", + "2033-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2033-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2033-04-15": "Lao New Year's Day", + "2033-04-16": "Lao New Year's Day", + "2033-04-18": "Lao New Year's Day (in lieu)", + "2033-05-01": "Labor Day", + "2033-05-02": "Labor Day (in lieu)", + "2033-05-13": "Visakha Bousa Festival", + "2033-06-01": "International Children Day; National Arbor Day", + "2033-07-11": "Begin of Buddhist Lent", + "2033-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2033-07-20": "Establishment Day of the Lao Women's Union", + "2033-08-13": "Lao National Mass Media and Publishing Day", + "2033-08-15": "Lao National Constitution Day", + "2033-08-23": "National Uprising Day", + "2033-08-24": "Boun Haw Khao Padapdin", + "2033-09-08": "Boun Haw Khao Salark", + "2033-10-07": "Establishment Day of the BOL; National Teacher Day", + "2033-10-08": "End of Buddhist Lent", + "2033-10-09": "Vientiane Boat Racing Festival", + "2033-10-12": "Indepedence Declaration Day", + "2033-11-06": "Boun That Luang Festival", + "2033-12-02": "Lao National Day", + "2033-12-13": "President Kaysone Phomvihane's Birthday", + "2033-12-28": "Lao Year-End Bank Holiday", + "2033-12-29": "Lao Year-End Bank Holiday", + "2033-12-30": "Lao Year-End Bank Holiday", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (in lieu)", + "2034-01-20": "Lao People's Armed Force Day", + "2034-02-01": "Lao Federation of Trade Union's Day", + "2034-02-03": "Makha Bousa Festival", + "2034-03-08": "International Women's Rights Day", + "2034-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2034-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2034-04-15": "Lao New Year's Day", + "2034-04-16": "Lao New Year's Day", + "2034-04-17": "Lao New Year's Day (in lieu)", + "2034-04-18": "Lao New Year's Day (in lieu)", + "2034-05-01": "Labor Day", + "2034-05-02": "Visakha Bousa Festival", + "2034-06-01": "International Children Day; National Arbor Day", + "2034-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2034-07-20": "Establishment Day of the Lao Women's Union", + "2034-07-30": "Begin of Buddhist Lent", + "2034-08-13": "Lao National Mass Media and Publishing Day", + "2034-08-15": "Lao National Constitution Day", + "2034-08-23": "National Uprising Day", + "2034-09-12": "Boun Haw Khao Padapdin", + "2034-09-27": "Boun Haw Khao Salark", + "2034-10-07": "Establishment Day of the BOL; National Teacher Day", + "2034-10-09": "Establishment Day of the BOL (in lieu)", + "2034-10-12": "Indepedence Declaration Day", + "2034-10-27": "End of Buddhist Lent", + "2034-10-28": "Vientiane Boat Racing Festival", + "2034-11-25": "Boun That Luang Festival", + "2034-12-02": "Lao National Day", + "2034-12-04": "Lao National Day (in lieu)", + "2034-12-13": "President Kaysone Phomvihane's Birthday", + "2034-12-27": "Lao Year-End Bank Holiday", + "2034-12-28": "Lao Year-End Bank Holiday", + "2034-12-29": "Lao Year-End Bank Holiday", + "2035-01-01": "New Year's Day", + "2035-01-20": "Lao People's Armed Force Day", + "2035-02-01": "Lao Federation of Trade Union's Day", + "2035-02-22": "Makha Bousa Festival", + "2035-03-08": "International Women's Rights Day", + "2035-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2035-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2035-04-15": "Lao New Year's Day", + "2035-04-16": "Lao New Year's Day", + "2035-04-17": "Lao New Year's Day (in lieu)", + "2035-04-18": "Lao New Year's Day (in lieu)", + "2035-05-01": "Labor Day", + "2035-05-21": "Visakha Bousa Festival", + "2035-06-01": "International Children Day; National Arbor Day", + "2035-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2035-07-20": "Begin of Buddhist Lent; Establishment Day of the Lao Women's Union", + "2035-08-13": "Lao National Mass Media and Publishing Day", + "2035-08-15": "Lao National Constitution Day", + "2035-08-23": "National Uprising Day", + "2035-09-02": "Boun Haw Khao Padapdin", + "2035-09-17": "Boun Haw Khao Salark", + "2035-10-07": "Establishment Day of the BOL; National Teacher Day", + "2035-10-08": "Establishment Day of the BOL (in lieu)", + "2035-10-12": "Indepedence Declaration Day", + "2035-10-17": "End of Buddhist Lent", + "2035-10-18": "Vientiane Boat Racing Festival", + "2035-11-15": "Boun That Luang Festival", + "2035-12-02": "Lao National Day", + "2035-12-03": "Lao National Day (in lieu)", + "2035-12-13": "President Kaysone Phomvihane's Birthday", + "2035-12-27": "Lao Year-End Bank Holiday", + "2035-12-28": "Lao Year-End Bank Holiday", + "2035-12-31": "Lao Year-End Bank Holiday", + "2036-01-01": "New Year's Day", + "2036-01-20": "Lao People's Armed Force Day", + "2036-02-01": "Lao Federation of Trade Union's Day", + "2036-02-12": "Makha Bousa Festival", + "2036-03-08": "International Women's Rights Day", + "2036-03-10": "International Women's Rights Day (in lieu)", + "2036-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2036-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2036-04-15": "Lao New Year's Day", + "2036-04-16": "Lao New Year's Day", + "2036-05-01": "Labor Day", + "2036-05-10": "Visakha Bousa Festival", + "2036-06-01": "International Children Day; National Arbor Day", + "2036-07-08": "Begin of Buddhist Lent", + "2036-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2036-07-20": "Establishment Day of the Lao Women's Union", + "2036-08-13": "Lao National Mass Media and Publishing Day", + "2036-08-15": "Lao National Constitution Day", + "2036-08-21": "Boun Haw Khao Padapdin", + "2036-08-23": "National Uprising Day", + "2036-09-05": "Boun Haw Khao Salark", + "2036-10-05": "End of Buddhist Lent", + "2036-10-06": "Vientiane Boat Racing Festival", + "2036-10-07": "Establishment Day of the BOL; National Teacher Day", + "2036-10-12": "Indepedence Declaration Day", + "2036-11-03": "Boun That Luang Festival", + "2036-12-02": "Lao National Day", + "2036-12-13": "President Kaysone Phomvihane's Birthday", + "2036-12-29": "Lao Year-End Bank Holiday", + "2036-12-30": "Lao Year-End Bank Holiday", + "2036-12-31": "Lao Year-End Bank Holiday", + "2037-01-01": "New Year's Day", + "2037-01-20": "Lao People's Armed Force Day", + "2037-01-31": "Makha Bousa Festival", + "2037-02-01": "Lao Federation of Trade Union's Day", + "2037-03-08": "International Women's Rights Day", + "2037-03-09": "International Women's Rights Day (in lieu)", + "2037-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2037-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2037-04-15": "Lao New Year's Day", + "2037-04-16": "Lao New Year's Day", + "2037-04-29": "Visakha Bousa Festival", + "2037-05-01": "Labor Day", + "2037-06-01": "International Children Day; National Arbor Day", + "2037-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2037-07-20": "Establishment Day of the Lao Women's Union", + "2037-07-27": "Begin of Buddhist Lent", + "2037-08-13": "Lao National Mass Media and Publishing Day", + "2037-08-15": "Lao National Constitution Day", + "2037-08-23": "National Uprising Day", + "2037-09-09": "Boun Haw Khao Padapdin", + "2037-09-24": "Boun Haw Khao Salark", + "2037-10-07": "Establishment Day of the BOL; National Teacher Day", + "2037-10-12": "Indepedence Declaration Day", + "2037-10-24": "End of Buddhist Lent", + "2037-10-25": "Vientiane Boat Racing Festival", + "2037-11-22": "Boun That Luang Festival", + "2037-12-02": "Lao National Day", + "2037-12-13": "President Kaysone Phomvihane's Birthday", + "2037-12-29": "Lao Year-End Bank Holiday", + "2037-12-30": "Lao Year-End Bank Holiday", + "2037-12-31": "Lao Year-End Bank Holiday", + "2038-01-01": "New Year's Day", + "2038-01-20": "Lao People's Armed Force Day", + "2038-02-01": "Lao Federation of Trade Union's Day", + "2038-02-19": "Makha Bousa Festival", + "2038-03-08": "International Women's Rights Day", + "2038-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2038-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2038-04-15": "Lao New Year's Day", + "2038-04-16": "Lao New Year's Day", + "2038-05-01": "Labor Day", + "2038-05-03": "Labor Day (in lieu)", + "2038-05-18": "Visakha Bousa Festival", + "2038-06-01": "International Children Day; National Arbor Day", + "2038-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2038-07-16": "Begin of Buddhist Lent", + "2038-07-20": "Establishment Day of the Lao Women's Union", + "2038-08-13": "Lao National Mass Media and Publishing Day", + "2038-08-15": "Lao National Constitution Day", + "2038-08-23": "National Uprising Day", + "2038-08-29": "Boun Haw Khao Padapdin", + "2038-09-13": "Boun Haw Khao Salark", + "2038-10-07": "Establishment Day of the BOL; National Teacher Day", + "2038-10-12": "Indepedence Declaration Day", + "2038-10-13": "End of Buddhist Lent", + "2038-10-14": "Vientiane Boat Racing Festival", + "2038-11-11": "Boun That Luang Festival", + "2038-12-02": "Lao National Day", + "2038-12-13": "President Kaysone Phomvihane's Birthday", + "2038-12-29": "Lao Year-End Bank Holiday", + "2038-12-30": "Lao Year-End Bank Holiday", + "2038-12-31": "Lao Year-End Bank Holiday", + "2039-01-01": "New Year's Day", + "2039-01-03": "New Year's Day (in lieu)", + "2039-01-20": "Lao People's Armed Force Day", + "2039-02-01": "Lao Federation of Trade Union's Day", + "2039-02-08": "Makha Bousa Festival", + "2039-03-08": "International Women's Rights Day", + "2039-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2039-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2039-04-15": "Lao New Year's Day", + "2039-04-16": "Lao New Year's Day", + "2039-04-18": "Lao New Year's Day (in lieu)", + "2039-05-01": "Labor Day", + "2039-05-02": "Labor Day (in lieu)", + "2039-05-07": "Visakha Bousa Festival", + "2039-06-01": "International Children Day; National Arbor Day", + "2039-07-05": "Begin of Buddhist Lent", + "2039-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2039-07-20": "Establishment Day of the Lao Women's Union", + "2039-08-13": "Lao National Mass Media and Publishing Day", + "2039-08-15": "Lao National Constitution Day", + "2039-08-18": "Boun Haw Khao Padapdin", + "2039-08-23": "National Uprising Day", + "2039-09-02": "Boun Haw Khao Salark", + "2039-10-02": "End of Buddhist Lent", + "2039-10-03": "Vientiane Boat Racing Festival", + "2039-10-07": "Establishment Day of the BOL; National Teacher Day", + "2039-10-12": "Indepedence Declaration Day", + "2039-10-31": "Boun That Luang Festival", + "2039-12-02": "Lao National Day", + "2039-12-13": "President Kaysone Phomvihane's Birthday", + "2039-12-28": "Lao Year-End Bank Holiday", + "2039-12-29": "Lao Year-End Bank Holiday", + "2039-12-30": "Lao Year-End Bank Holiday", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (in lieu)", + "2040-01-20": "Lao People's Armed Force Day", + "2040-01-28": "Makha Bousa Festival", + "2040-02-01": "Lao Federation of Trade Union's Day", + "2040-03-08": "International Women's Rights Day", + "2040-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2040-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2040-04-15": "Lao New Year's Day", + "2040-04-16": "Lao New Year's Day", + "2040-04-17": "Lao New Year's Day (in lieu)", + "2040-04-18": "Lao New Year's Day (in lieu)", + "2040-04-25": "Visakha Bousa Festival", + "2040-05-01": "Labor Day", + "2040-06-01": "International Children Day; National Arbor Day", + "2040-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2040-07-20": "Establishment Day of the Lao Women's Union", + "2040-07-23": "Begin of Buddhist Lent", + "2040-08-13": "Lao National Mass Media and Publishing Day", + "2040-08-15": "Lao National Constitution Day", + "2040-08-23": "National Uprising Day", + "2040-09-05": "Boun Haw Khao Padapdin", + "2040-09-20": "Boun Haw Khao Salark", + "2040-10-07": "Establishment Day of the BOL; National Teacher Day", + "2040-10-08": "Establishment Day of the BOL (in lieu)", + "2040-10-12": "Indepedence Declaration Day", + "2040-10-20": "End of Buddhist Lent", + "2040-10-21": "Vientiane Boat Racing Festival", + "2040-11-18": "Boun That Luang Festival", + "2040-12-02": "Lao National Day", + "2040-12-03": "Lao National Day (in lieu)", + "2040-12-13": "President Kaysone Phomvihane's Birthday", + "2040-12-27": "Lao Year-End Bank Holiday", + "2040-12-28": "Lao Year-End Bank Holiday", + "2040-12-31": "Lao Year-End Bank Holiday", + "2041-01-01": "New Year's Day", + "2041-01-20": "Lao People's Armed Force Day", + "2041-02-01": "Lao Federation of Trade Union's Day", + "2041-02-15": "Makha Bousa Festival", + "2041-03-08": "International Women's Rights Day", + "2041-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2041-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2041-04-15": "Lao New Year's Day", + "2041-04-16": "Lao New Year's Day", + "2041-04-17": "Lao New Year's Day (in lieu)", + "2041-05-01": "Labor Day", + "2041-05-14": "Visakha Bousa Festival", + "2041-06-01": "International Children Day; National Arbor Day", + "2041-07-12": "Begin of Buddhist Lent", + "2041-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2041-07-20": "Establishment Day of the Lao Women's Union", + "2041-08-13": "Lao National Mass Media and Publishing Day", + "2041-08-15": "Lao National Constitution Day", + "2041-08-23": "National Uprising Day", + "2041-08-25": "Boun Haw Khao Padapdin", + "2041-09-09": "Boun Haw Khao Salark", + "2041-10-07": "Establishment Day of the BOL; National Teacher Day", + "2041-10-09": "End of Buddhist Lent", + "2041-10-10": "Vientiane Boat Racing Festival", + "2041-10-12": "Indepedence Declaration Day", + "2041-11-07": "Boun That Luang Festival", + "2041-12-02": "Lao National Day", + "2041-12-13": "President Kaysone Phomvihane's Birthday", + "2041-12-27": "Lao Year-End Bank Holiday", + "2041-12-30": "Lao Year-End Bank Holiday", + "2041-12-31": "Lao Year-End Bank Holiday", + "2042-01-01": "New Year's Day", + "2042-01-20": "Lao People's Armed Force Day", + "2042-02-01": "Lao Federation of Trade Union's Day", + "2042-02-04": "Makha Bousa Festival", + "2042-03-08": "International Women's Rights Day", + "2042-03-10": "International Women's Rights Day (in lieu)", + "2042-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2042-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2042-04-15": "Lao New Year's Day", + "2042-04-16": "Lao New Year's Day", + "2042-05-01": "Labor Day", + "2042-05-03": "Visakha Bousa Festival", + "2042-06-01": "International Children Day; National Arbor Day", + "2042-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2042-07-20": "Establishment Day of the Lao Women's Union", + "2042-07-31": "Begin of Buddhist Lent", + "2042-08-13": "Lao National Mass Media and Publishing Day", + "2042-08-15": "Lao National Constitution Day", + "2042-08-23": "National Uprising Day", + "2042-09-13": "Boun Haw Khao Padapdin", + "2042-09-28": "Boun Haw Khao Salark", + "2042-10-07": "Establishment Day of the BOL; National Teacher Day", + "2042-10-12": "Indepedence Declaration Day", + "2042-10-28": "End of Buddhist Lent", + "2042-10-29": "Vientiane Boat Racing Festival", + "2042-11-26": "Boun That Luang Festival", + "2042-12-02": "Lao National Day", + "2042-12-13": "President Kaysone Phomvihane's Birthday", + "2042-12-29": "Lao Year-End Bank Holiday", + "2042-12-30": "Lao Year-End Bank Holiday", + "2042-12-31": "Lao Year-End Bank Holiday", + "2043-01-01": "New Year's Day", + "2043-01-20": "Lao People's Armed Force Day", + "2043-02-01": "Lao Federation of Trade Union's Day", + "2043-02-23": "Makha Bousa Festival", + "2043-03-08": "International Women's Rights Day", + "2043-03-09": "International Women's Rights Day (in lieu)", + "2043-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2043-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2043-04-15": "Lao New Year's Day", + "2043-04-16": "Lao New Year's Day", + "2043-05-01": "Labor Day", + "2043-05-22": "Visakha Bousa Festival", + "2043-06-01": "International Children Day; National Arbor Day", + "2043-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2043-07-20": "Establishment Day of the Lao Women's Union", + "2043-07-21": "Begin of Buddhist Lent", + "2043-08-13": "Lao National Mass Media and Publishing Day", + "2043-08-15": "Lao National Constitution Day", + "2043-08-23": "National Uprising Day", + "2043-09-03": "Boun Haw Khao Padapdin", + "2043-09-18": "Boun Haw Khao Salark", + "2043-10-07": "Establishment Day of the BOL; National Teacher Day", + "2043-10-12": "Indepedence Declaration Day", + "2043-10-18": "End of Buddhist Lent", + "2043-10-19": "Vientiane Boat Racing Festival", + "2043-11-16": "Boun That Luang Festival", + "2043-12-02": "Lao National Day", + "2043-12-13": "President Kaysone Phomvihane's Birthday", + "2043-12-29": "Lao Year-End Bank Holiday", + "2043-12-30": "Lao Year-End Bank Holiday", + "2043-12-31": "Lao Year-End Bank Holiday", + "2044-01-01": "New Year's Day", + "2044-01-20": "Lao People's Armed Force Day", + "2044-02-01": "Lao Federation of Trade Union's Day", + "2044-02-13": "Makha Bousa Festival", + "2044-03-08": "International Women's Rights Day", + "2044-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2044-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2044-04-15": "Lao New Year's Day", + "2044-04-16": "Lao New Year's Day", + "2044-04-18": "Lao New Year's Day (in lieu)", + "2044-05-01": "Labor Day", + "2044-05-02": "Labor Day (in lieu)", + "2044-05-11": "Visakha Bousa Festival", + "2044-06-01": "International Children Day; National Arbor Day", + "2044-07-09": "Begin of Buddhist Lent", + "2044-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2044-07-20": "Establishment Day of the Lao Women's Union", + "2044-08-13": "Lao National Mass Media and Publishing Day", + "2044-08-15": "Lao National Constitution Day", + "2044-08-22": "Boun Haw Khao Padapdin", + "2044-08-23": "National Uprising Day", + "2044-09-06": "Boun Haw Khao Salark", + "2044-10-06": "End of Buddhist Lent", + "2044-10-07": "Establishment Day of the BOL; National Teacher Day; Vientiane Boat Racing Festival", + "2044-10-12": "Indepedence Declaration Day", + "2044-11-04": "Boun That Luang Festival", + "2044-12-02": "Lao National Day", + "2044-12-13": "President Kaysone Phomvihane's Birthday", + "2044-12-28": "Lao Year-End Bank Holiday", + "2044-12-29": "Lao Year-End Bank Holiday", + "2044-12-30": "Lao Year-End Bank Holiday", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (in lieu)", + "2045-01-20": "Lao People's Armed Force Day", + "2045-02-01": "Lao Federation of Trade Union's Day; Makha Bousa Festival", + "2045-03-08": "International Women's Rights Day", + "2045-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2045-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2045-04-15": "Lao New Year's Day", + "2045-04-16": "Lao New Year's Day", + "2045-04-17": "Lao New Year's Day (in lieu)", + "2045-04-18": "Lao New Year's Day (in lieu)", + "2045-04-30": "Visakha Bousa Festival", + "2045-05-01": "Labor Day", + "2045-06-01": "International Children Day; National Arbor Day", + "2045-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2045-07-20": "Establishment Day of the Lao Women's Union", + "2045-07-28": "Begin of Buddhist Lent", + "2045-08-13": "Lao National Mass Media and Publishing Day", + "2045-08-15": "Lao National Constitution Day", + "2045-08-23": "National Uprising Day", + "2045-09-10": "Boun Haw Khao Padapdin", + "2045-09-25": "Boun Haw Khao Salark", + "2045-10-07": "Establishment Day of the BOL; National Teacher Day", + "2045-10-09": "Establishment Day of the BOL (in lieu)", + "2045-10-12": "Indepedence Declaration Day", + "2045-10-25": "End of Buddhist Lent", + "2045-10-26": "Vientiane Boat Racing Festival", + "2045-11-23": "Boun That Luang Festival", + "2045-12-02": "Lao National Day", + "2045-12-04": "Lao National Day (in lieu)", + "2045-12-13": "President Kaysone Phomvihane's Birthday", + "2045-12-27": "Lao Year-End Bank Holiday", + "2045-12-28": "Lao Year-End Bank Holiday", + "2045-12-29": "Lao Year-End Bank Holiday", + "2046-01-01": "New Year's Day", + "2046-01-20": "Lao People's Armed Force Day", + "2046-02-01": "Lao Federation of Trade Union's Day", + "2046-02-20": "Makha Bousa Festival", + "2046-03-08": "International Women's Rights Day", + "2046-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2046-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2046-04-15": "Lao New Year's Day", + "2046-04-16": "Lao New Year's Day", + "2046-04-17": "Lao New Year's Day (in lieu)", + "2046-04-18": "Lao New Year's Day (in lieu)", + "2046-05-01": "Labor Day", + "2046-05-19": "Visakha Bousa Festival", + "2046-06-01": "International Children Day; National Arbor Day", + "2046-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2046-07-18": "Begin of Buddhist Lent", + "2046-07-20": "Establishment Day of the Lao Women's Union", + "2046-08-13": "Lao National Mass Media and Publishing Day", + "2046-08-15": "Lao National Constitution Day", + "2046-08-23": "National Uprising Day", + "2046-08-31": "Boun Haw Khao Padapdin", + "2046-09-15": "Boun Haw Khao Salark", + "2046-10-07": "Establishment Day of the BOL; National Teacher Day", + "2046-10-08": "Establishment Day of the BOL (in lieu)", + "2046-10-12": "Indepedence Declaration Day", + "2046-10-15": "End of Buddhist Lent", + "2046-10-16": "Vientiane Boat Racing Festival", + "2046-11-13": "Boun That Luang Festival", + "2046-12-02": "Lao National Day", + "2046-12-03": "Lao National Day (in lieu)", + "2046-12-13": "President Kaysone Phomvihane's Birthday", + "2046-12-27": "Lao Year-End Bank Holiday", + "2046-12-28": "Lao Year-End Bank Holiday", + "2046-12-31": "Lao Year-End Bank Holiday", + "2047-01-01": "New Year's Day", + "2047-01-20": "Lao People's Armed Force Day", + "2047-02-01": "Lao Federation of Trade Union's Day", + "2047-02-10": "Makha Bousa Festival", + "2047-03-08": "International Women's Rights Day", + "2047-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2047-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2047-04-15": "Lao New Year's Day", + "2047-04-16": "Lao New Year's Day", + "2047-04-17": "Lao New Year's Day (in lieu)", + "2047-05-01": "Labor Day", + "2047-05-09": "Visakha Bousa Festival", + "2047-06-01": "International Children Day; National Arbor Day", + "2047-07-07": "Begin of Buddhist Lent", + "2047-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2047-07-20": "Establishment Day of the Lao Women's Union", + "2047-08-13": "Lao National Mass Media and Publishing Day", + "2047-08-15": "Lao National Constitution Day", + "2047-08-20": "Boun Haw Khao Padapdin", + "2047-08-23": "National Uprising Day", + "2047-09-04": "Boun Haw Khao Salark", + "2047-10-04": "End of Buddhist Lent", + "2047-10-05": "Vientiane Boat Racing Festival", + "2047-10-07": "Establishment Day of the BOL; National Teacher Day", + "2047-10-12": "Indepedence Declaration Day", + "2047-11-02": "Boun That Luang Festival", + "2047-12-02": "Lao National Day", + "2047-12-13": "President Kaysone Phomvihane's Birthday", + "2047-12-27": "Lao Year-End Bank Holiday", + "2047-12-30": "Lao Year-End Bank Holiday", + "2047-12-31": "Lao Year-End Bank Holiday", + "2048-01-01": "New Year's Day", + "2048-01-20": "Lao People's Armed Force Day", + "2048-01-30": "Makha Bousa Festival", + "2048-02-01": "Lao Federation of Trade Union's Day", + "2048-03-08": "International Women's Rights Day", + "2048-03-09": "International Women's Rights Day (in lieu)", + "2048-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2048-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2048-04-15": "Lao New Year's Day", + "2048-04-16": "Lao New Year's Day", + "2048-04-27": "Visakha Bousa Festival", + "2048-05-01": "Labor Day", + "2048-06-01": "International Children Day; National Arbor Day", + "2048-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2048-07-20": "Establishment Day of the Lao Women's Union", + "2048-07-25": "Begin of Buddhist Lent", + "2048-08-13": "Lao National Mass Media and Publishing Day", + "2048-08-15": "Lao National Constitution Day", + "2048-08-23": "National Uprising Day", + "2048-09-07": "Boun Haw Khao Padapdin", + "2048-09-22": "Boun Haw Khao Salark", + "2048-10-07": "Establishment Day of the BOL; National Teacher Day", + "2048-10-12": "Indepedence Declaration Day", + "2048-10-22": "End of Buddhist Lent", + "2048-10-23": "Vientiane Boat Racing Festival", + "2048-11-20": "Boun That Luang Festival", + "2048-12-02": "Lao National Day", + "2048-12-13": "President Kaysone Phomvihane's Birthday", + "2048-12-29": "Lao Year-End Bank Holiday", + "2048-12-30": "Lao Year-End Bank Holiday", + "2048-12-31": "Lao Year-End Bank Holiday", + "2049-01-01": "New Year's Day", + "2049-01-20": "Lao People's Armed Force Day", + "2049-02-01": "Lao Federation of Trade Union's Day", + "2049-02-17": "Makha Bousa Festival", + "2049-03-08": "International Women's Rights Day", + "2049-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2049-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2049-04-15": "Lao New Year's Day", + "2049-04-16": "Lao New Year's Day", + "2049-05-01": "Labor Day", + "2049-05-03": "Labor Day (in lieu)", + "2049-05-16": "Visakha Bousa Festival", + "2049-06-01": "International Children Day; National Arbor Day", + "2049-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2049-07-14": "Begin of Buddhist Lent", + "2049-07-20": "Establishment Day of the Lao Women's Union", + "2049-08-13": "Lao National Mass Media and Publishing Day", + "2049-08-15": "Lao National Constitution Day", + "2049-08-23": "National Uprising Day", + "2049-08-27": "Boun Haw Khao Padapdin", + "2049-09-11": "Boun Haw Khao Salark", + "2049-10-07": "Establishment Day of the BOL; National Teacher Day", + "2049-10-11": "End of Buddhist Lent", + "2049-10-12": "Indepedence Declaration Day; Vientiane Boat Racing Festival", + "2049-11-09": "Boun That Luang Festival", + "2049-12-02": "Lao National Day", + "2049-12-13": "President Kaysone Phomvihane's Birthday", + "2049-12-29": "Lao Year-End Bank Holiday", + "2049-12-30": "Lao Year-End Bank Holiday", + "2049-12-31": "Lao Year-End Bank Holiday", + "2050-01-01": "New Year's Day", + "2050-01-03": "New Year's Day (in lieu)", + "2050-01-20": "Lao People's Armed Force Day", + "2050-02-01": "Lao Federation of Trade Union's Day", + "2050-02-06": "Makha Bousa Festival", + "2050-03-08": "International Women's Rights Day", + "2050-03-22": "Establishment Day of the Lao People's Revolutionary Party", + "2050-04-14": "Lao New Year's Day; Lao People's Revolutionary Youth Union Day", + "2050-04-15": "Lao New Year's Day", + "2050-04-16": "Lao New Year's Day", + "2050-04-18": "Lao New Year's Day (in lieu)", + "2050-05-01": "Labor Day", + "2050-05-02": "Labor Day (in lieu)", + "2050-05-05": "Visakha Bousa Festival", + "2050-06-01": "International Children Day; National Arbor Day", + "2050-07-13": "President Souphanouvong's Birthday; The National Day for Wildlife and Aquatic Animal Conservation", + "2050-07-20": "Establishment Day of the Lao Women's Union", + "2050-08-02": "Begin of Buddhist Lent", + "2050-08-13": "Lao National Mass Media and Publishing Day", + "2050-08-15": "Lao National Constitution Day", + "2050-08-23": "National Uprising Day", + "2050-09-15": "Boun Haw Khao Padapdin", + "2050-09-30": "Boun Haw Khao Salark", + "2050-10-07": "Establishment Day of the BOL; National Teacher Day", + "2050-10-12": "Indepedence Declaration Day", + "2050-10-30": "End of Buddhist Lent", + "2050-10-31": "Vientiane Boat Racing Festival", + "2050-11-28": "Boun That Luang Festival", + "2050-12-02": "Lao National Day", + "2050-12-13": "President Kaysone Phomvihane's Birthday", + "2050-12-28": "Lao Year-End Bank Holiday", + "2050-12-29": "Lao Year-End Bank Holiday", + "2050-12-30": "Lao Year-End Bank Holiday" +} diff --git a/tests/calendars/test_thai.py b/tests/calendars/test_thai.py index 69f1d244d..d42af9dc9 100644 --- a/tests/calendars/test_thai.py +++ b/tests/calendars/test_thai.py @@ -36,20 +36,9 @@ def test_asarnha_bucha_date(self): 2025: date(2025, JUL, 10), } for year in asarnha_bucha_year_date: - self.assertEqual(asarnha_bucha_year_date[year], self.calendar.asarnha_bucha_date(year)) - # KHMER_CALENDAR - asanha_bochea_year_date = { - self.calendar.START_YEAR - 1: None, - self.calendar.END_YEAR + 1: None, - 2022: date(2022, JUL, 13), - 2023: date(2023, JUL, 2), - 2024: date(2024, JUL, 20), - 2025: date(2025, JUL, 10), - } - for year in asanha_bochea_year_date: self.assertEqual( - asanha_bochea_year_date[year], - self.calendar.asarnha_bucha_date(year, KHMER_CALENDAR), + asarnha_bucha_year_date[year], + self.calendar.asarnha_bucha_date(year), ) def test_atthami_bucha_date(self): @@ -63,7 +52,10 @@ def test_atthami_bucha_date(self): 2025: date(2025, MAY, 19), } for year in atthami_bucha_year_date: - self.assertEqual(atthami_bucha_year_date[year], self.calendar.atthami_bucha_date(year)) + self.assertEqual( + atthami_bucha_year_date[year], + self.calendar.atthami_bucha_date(year), + ) # KHMER_CALENDAR athami_bochea_year_date = { self.calendar.START_YEAR - 1: None, @@ -79,6 +71,51 @@ def test_atthami_bucha_date(self): self.calendar.atthami_bucha_date(year, KHMER_CALENDAR), ) + def test_boun_haw_khao_padapdin(self): + boun_haw_khao_padapdin_year_date = { + self.calendar.START_YEAR - 1: None, + self.calendar.END_YEAR + 1: None, + 2022: date(2022, AUG, 26), + 2023: date(2023, SEP, 14), + 2024: date(2024, SEP, 2), + 2025: date(2025, AUG, 23), + } + for year in boun_haw_khao_padapdin_year_date: + self.assertEqual( + boun_haw_khao_padapdin_year_date[year], + self.calendar.boun_haw_khao_padapdin_date(year), + ) + + def test_boun_haw_khao_salark(self): + boun_haw_khao_salark_year_date = { + self.calendar.START_YEAR - 1: None, + self.calendar.END_YEAR + 1: None, + 2022: date(2022, SEP, 10), + 2023: date(2023, SEP, 29), + 2024: date(2024, SEP, 17), + 2025: date(2025, SEP, 7), + } + for year in boun_haw_khao_salark_year_date: + self.assertEqual( + boun_haw_khao_salark_year_date[year], + self.calendar.boun_haw_khao_salark_date(year), + ) + + def test_boun_suang_heua_date(self): + boun_suang_heua_year_date = { + self.calendar.START_YEAR - 1: None, + self.calendar.END_YEAR + 1: None, + 2022: date(2022, OCT, 11), + 2023: date(2023, OCT, 30), + 2024: date(2024, OCT, 18), + 2025: date(2025, OCT, 8), + } + for year in boun_suang_heua_year_date: + self.assertEqual( + boun_suang_heua_year_date[year], + self.calendar.boun_suang_heua_date(year), + ) + def test_khao_phansa_date(self): # THAI_CALENDAR khao_phansa_year_date = { @@ -90,20 +127,9 @@ def test_khao_phansa_date(self): 2025: date(2025, JUL, 11), } for year in khao_phansa_year_date: - self.assertEqual(khao_phansa_year_date[year], self.calendar.khao_phansa_date(year)) - # KHMER_CALENDAR - bony_kanben_year_date = { - self.calendar.START_YEAR - 1: None, - self.calendar.END_YEAR + 1: None, - 2022: date(2022, JUL, 14), - 2023: date(2023, JUL, 3), - 2024: date(2024, JUL, 21), - 2025: date(2025, JUL, 11), - } - for year in bony_kanben_year_date: self.assertEqual( - bony_kanben_year_date[year], - self.calendar.khao_phansa_date(year, KHMER_CALENDAR), + khao_phansa_year_date[year], + self.calendar.khao_phansa_date(year), ) def test_loy_krathong_date(self): @@ -116,7 +142,10 @@ def test_loy_krathong_date(self): 2025: date(2025, NOV, 5), } for year in loy_krathong_year_date: - self.assertEqual(loy_krathong_year_date[year], self.calendar.loy_krathong_date(year)) + self.assertEqual( + loy_krathong_year_date[year], + self.calendar.loy_krathong_date(year), + ) def test_makha_bucha_date(self): # THAI_CALENDAR @@ -155,7 +184,10 @@ def test_ok_phansa_date(self): 2025: date(2025, OCT, 7), } for year in ok_phansa_year_date: - self.assertEqual(ok_phansa_year_date[year], self.calendar.ok_phansa_date(year)) + self.assertEqual( + ok_phansa_year_date[year], + self.calendar.ok_phansa_date(year), + ) def test_pchum_ben_date(self): pchum_ben_year_date = { @@ -167,7 +199,10 @@ def test_pchum_ben_date(self): 2025: date(2025, SEP, 22), } for year in pchum_ben_year_date: - self.assertEqual(pchum_ben_year_date[year], self.calendar.pchum_ben_date(year)) + self.assertEqual( + pchum_ben_year_date[year], + self.calendar.pchum_ben_date(year), + ) def test_preah_neangkoal_date(self): preah_neangkoal_year_date = { @@ -180,7 +215,8 @@ def test_preah_neangkoal_date(self): } for year in preah_neangkoal_year_date: self.assertEqual( - preah_neangkoal_year_date[year], self.calendar.preah_neangkoal_date(year) + preah_neangkoal_year_date[year], + self.calendar.preah_neangkoal_date(year), ) def test_visakha_bucha_date(self): @@ -194,7 +230,10 @@ def test_visakha_bucha_date(self): 2025: date(2025, MAY, 11), } for year in visakha_bucha_year_date: - self.assertEqual(visakha_bucha_year_date[year], self.calendar.visakha_bucha_date(year)) + self.assertEqual( + visakha_bucha_year_date[year], + self.calendar.visakha_bucha_date(year), + ) # KHMER_CALENDAR visaka_bochea_year_date = { self.calendar.START_YEAR - 1: None, diff --git a/tests/countries/test_laos.py b/tests/countries/test_laos.py new file mode 100644 index 000000000..b13467338 --- /dev/null +++ b/tests/countries/test_laos.py @@ -0,0 +1,480 @@ +# python-holidays +# --------------- +# A fast, efficient Python library for generating country, province and state +# specific sets of holidays on the fly. It aims to make determining whether a +# specific date is a holiday as fast and flexible as possible. +# +# Authors: dr-prodigy (c) 2017-2023 +# ryanss (c) 2014-2017 +# Website: https://github.com/dr-prodigy/python-holidays +# License: MIT (see LICENSE file) + +from holidays.constants import BANK, PUBLIC, SCHOOL, WORKDAY +from holidays.countries.laos import Laos, LA, LAO +from tests.common import TestCase + + +class TestLaos(TestCase): + @classmethod + def setUpClass(cls): + super().setUpClass(Laos, years=range(1976, 2058), years_non_observed=range(2018, 2058)) + + def test_country_aliases(self): + self.assertCountryAliases(Laos, LA, LAO) + + def test_no_holidays(self): + self.assertNoHolidays(Laos(years=1975)) + self.assertNoHolidays(Laos(years=1975, categories=(BANK,))) + self.assertNoHolidays(Laos(years=1975, categories=(SCHOOL,))) + self.assertNoHolidays(Laos(years=1975, categories=(WORKDAY,))) + + def test_special_bank_holiday(self): + self.assertHoliday( + Laos(categories=(BANK,)), + "2015-01-02", + "2017-10-09", + ) + + def test_special_public_holiday(self): + self.assertHoliday( + Laos(categories=(PUBLIC,)), + "2011-04-13", + "2012-01-02", + "2012-04-13", + "2012-04-17", + "2012-12-03", + "2013-04-17", + "2015-03-09", + "2015-04-17", + "2016-04-13", + "2016-04-18", + "2016-05-02", + "2017-01-02", + "2017-04-13", + "2017-04-17", + "2017-12-04", + "2020-04-13", + "2020-04-17", + ) + + def test_special_workday(self): + self.assertHoliday( + Laos(categories=(WORKDAY,)), + "2019-07-22", + ) + + def test_2022_public_holiday(self): + self.assertHolidays( + Laos(categories=(PUBLIC,), years=2022), + ("2022-01-01", "ວັນປີໃໝ່ສາກົນ"), + ("2022-01-03", "ພັກຊົດເຊີຍວັນປີໃໝ່ສາກົນ"), + ("2022-03-08", "ວັນແມ່ຍິງສາກົນ"), + ("2022-04-14", "ບຸນປີໃໝ່ລາວ"), + ("2022-04-15", "ບຸນປີໃໝ່ລາວ"), + ("2022-04-16", "ບຸນປີໃໝ່ລາວ"), + ("2022-04-18", "ພັກຊົດເຊີຍບຸນປີໃໝ່ລາວ"), + ("2022-05-01", "ວັນກຳມະກອນສາກົນ"), + ("2022-05-02", "ພັກຊົດເຊີຍວັນກຳມະກອນສາກົນ"), + ("2022-12-02", "ວັນຊາດ"), + ) + + def test_2023_public_holiday(self): + self.assertHolidays( + Laos(categories=(PUBLIC,), years=2023), + ("2023-01-01", "ວັນປີໃໝ່ສາກົນ"), + ("2023-01-02", "ພັກຊົດເຊີຍວັນປີໃໝ່ສາກົນ"), + ("2023-03-08", "ວັນແມ່ຍິງສາກົນ"), + ("2023-04-14", "ບຸນປີໃໝ່ລາວ"), + ("2023-04-15", "ບຸນປີໃໝ່ລາວ"), + ("2023-04-16", "ບຸນປີໃໝ່ລາວ"), + ("2023-04-17", "ພັກຊົດເຊີຍບຸນປີໃໝ່ລາວ"), + ("2023-04-18", "ພັກຊົດເຊີຍບຸນປີໃໝ່ລາວ"), + ("2023-05-01", "ວັນກຳມະກອນສາກົນ"), + ("2023-12-02", "ວັນຊາດ"), + ("2023-12-04", "ພັກຊົດເຊີຍວັນຊາດ"), + ) + + def test_new_years_day(self): + self.assertHoliday(f"{year}-01-01" for year in range(1976, 2058)) + + self.assertNoNonObservedHoliday( + "2022-01-03", + "2023-01-02", + ) + + def test_international_women_rights_day(self): + self.assertHoliday(f"{year}-03-08" for year in range(1976, 2058)) + + self.assertNoNonObservedHoliday( + "2020-03-09", + ) + + def test_laos_new_year_day(self): + for year in range(1976, 2058): + self.assertHoliday(f"{year}-04-14", f"{year}-04-15", f"{year}-04-16") + + self.assertNoNonObservedHoliday( + "2018-04-17", + "2018-04-18", + "2019-04-17", + "2022-04-18", + "2023-04-17", + "2023-04-18", + ) + + def test_labor_day(self): + self.assertHoliday(f"{year}-05-01" for year in range(1976, 2058)) + + self.assertNoNonObservedHoliday( + "2021-05-03", + "2022-05-02", + ) + + def test_international_children_day_public(self): + self.assertHoliday(f"{year}-06-01" for year in range(1990, 2018)) + + def test_lao_national_day(self): + self.assertHoliday(f"{year}-12-02" for year in range(1976, 2058)) + + self.assertNoNonObservedHoliday( + "2018-12-03", + "2023-12-04", + ) + + def test_2014_bank_holiday(self): + # Dec 31 is Wednesday. + self.assertHolidays( + Laos(categories=(BANK,), years=2014), + ("2014-10-07", "ວັນສ້າງຕັ້ງທະນາຄານແຫ່ງ ສປປ ລາວ"), + ("2014-12-29", "ສາມວັນລັດຖະການສຸດທ້າຍຂອງທຸກໆປີ"), + ("2014-12-30", "ສາມວັນລັດຖະການສຸດທ້າຍຂອງທຸກໆປີ"), + ("2014-12-31", "ສາມວັນລັດຖະການສຸດທ້າຍຂອງທຸກໆປີ"), + ) + + def test_2018_bank_holiday(self): + # Dec 31 is Monday. + self.assertHolidays( + Laos(categories=(BANK,), years=2018), + ("2018-10-07", "ວັນສ້າງຕັ້ງທະນາຄານແຫ່ງ ສປປ ລາວ"), + ("2018-10-08", "ພັກຊົດເຊີຍວັນສ້າງຕັ້ງທະນາຄານແຫ່ງ ສປປ ລາວ"), + ("2018-12-27", "ສາມວັນລັດຖະການສຸດທ້າຍຂອງທຸກໆປີ"), + ("2018-12-28", "ສາມວັນລັດຖະການສຸດທ້າຍຂອງທຸກໆປີ"), + ("2018-12-31", "ສາມວັນລັດຖະການສຸດທ້າຍຂອງທຸກໆປີ"), + ) + + def test_2019_bank_holiday(self): + # Dec 31 is Tuesday. + self.assertHolidays( + Laos(categories=(BANK,), years=2019), + ("2019-10-07", "ວັນສ້າງຕັ້ງທະນາຄານແຫ່ງ ສປປ ລາວ"), + ("2019-12-27", "ສາມວັນລັດຖະການສຸດທ້າຍຂອງທຸກໆປີ"), + ("2019-12-30", "ສາມວັນລັດຖະການສຸດທ້າຍຂອງທຸກໆປີ"), + ("2019-12-31", "ສາມວັນລັດຖະການສຸດທ້າຍຂອງທຸກໆປີ"), + ) + + def test_2020_bank_holiday(self): + # Dec 31 is Thursday. + self.assertHolidays( + Laos(categories=(BANK,), years=2020), + ("2020-10-07", "ວັນສ້າງຕັ້ງທະນາຄານແຫ່ງ ສປປ ລາວ"), + ("2020-12-29", "ສາມວັນລັດຖະການສຸດທ້າຍຂອງທຸກໆປີ"), + ("2020-12-30", "ສາມວັນລັດຖະການສຸດທ້າຍຂອງທຸກໆປີ"), + ("2020-12-31", "ສາມວັນລັດຖະການສຸດທ້າຍຂອງທຸກໆປີ"), + ) + + def test_2021_bank_holiday(self): + # Dec 31 is Friday. + self.assertHolidays( + Laos(categories=(BANK,), years=2021), + ("2021-10-07", "ວັນສ້າງຕັ້ງທະນາຄານແຫ່ງ ສປປ ລາວ"), + ("2021-12-29", "ສາມວັນລັດຖະການສຸດທ້າຍຂອງທຸກໆປີ"), + ("2021-12-30", "ສາມວັນລັດຖະການສຸດທ້າຍຂອງທຸກໆປີ"), + ("2021-12-31", "ສາມວັນລັດຖະການສຸດທ້າຍຂອງທຸກໆປີ"), + ) + + def test_2022_bank_holiday(self): + # Dec 31 is Saturday. + self.assertHolidays( + Laos(categories=(BANK,), years=2022), + ("2022-10-07", "ວັນສ້າງຕັ້ງທະນາຄານແຫ່ງ ສປປ ລາວ"), + ("2022-12-28", "ສາມວັນລັດຖະການສຸດທ້າຍຂອງທຸກໆປີ"), + ("2022-12-29", "ສາມວັນລັດຖະການສຸດທ້າຍຂອງທຸກໆປີ"), + ("2022-12-30", "ສາມວັນລັດຖະການສຸດທ້າຍຂອງທຸກໆປີ"), + ) + + def test_2023_bank_holiday(self): + # Dec 31 is Sunday. + self.assertHolidays( + Laos(categories=(BANK,), years=2023), + ("2023-10-07", "ວັນສ້າງຕັ້ງທະນາຄານແຫ່ງ ສປປ ລາວ"), + ("2023-10-09", "ພັກຊົດເຊີຍວັນສ້າງຕັ້ງທະນາຄານແຫ່ງ ສປປ ລາວ"), + ("2023-12-27", "ສາມວັນລັດຖະການສຸດທ້າຍຂອງທຸກໆປີ"), + ("2023-12-28", "ສາມວັນລັດຖະການສຸດທ້າຍຂອງທຸກໆປີ"), + ("2023-12-29", "ສາມວັນລັດຖະການສຸດທ້າຍຂອງທຸກໆປີ"), + ) + + def test_1993_school_holiday(self): + # Prior to Adoption of National Teacher Day + self.assertHolidays( + Laos(categories=(SCHOOL,), years=1993), + ("1993-02-06", "ວັນບຸນມາຂະບູຊາ"), + ("1993-05-05", "ວັນບຸນວິສາຂະບູຊາ"), + ("1993-07-03", "ວັນບຸນເຂົ້າພັນສາ"), + ("1993-08-16", "ວັນບຸນຫໍ່ເຂົ້າປະດັບດິນ"), + ("1993-08-31", "ວັນບຸນຫໍ່ເຂົ້າສະຫຼາກ"), + ("1993-09-30", "ວັນບຸນອອກພັນສາ"), + ("1993-10-01", "ວັນບຸນຊ່ວງເຮືອ ນະຄອນຫຼວງວຽງຈັນ"), + ("1993-10-29", "ວັນບຸນທາດຫລວງ"), + ) + + def test_2022_school_holiday(self): + self.assertHolidays( + Laos(categories=(SCHOOL,), years=2022), + ("2022-02-16", "ວັນບຸນມາຂະບູຊາ"), + ("2022-05-15", "ວັນບຸນວິສາຂະບູຊາ"), + ("2022-07-13", "ວັນບຸນເຂົ້າພັນສາ"), + ("2022-08-26", "ວັນບຸນຫໍ່ເຂົ້າປະດັບດິນ"), + ("2022-09-10", "ວັນບຸນຫໍ່ເຂົ້າສະຫຼາກ"), + ("2022-10-07", "ວັນຄູແຫ່ງຊາດ"), + ("2022-10-10", "ວັນບຸນອອກພັນສາ"), + ("2022-10-11", "ວັນບຸນຊ່ວງເຮືອ ນະຄອນຫຼວງວຽງຈັນ"), + ("2022-11-08", "ວັນບຸນທາດຫລວງ"), + ) + + def test_2023_school_holiday(self): + self.assertHolidays( + Laos(categories=(SCHOOL,), years=2023), + ("2023-02-05", "ວັນບຸນມາຂະບູຊາ"), + ("2023-05-04", "ວັນບຸນວິສາຂະບູຊາ"), + ("2023-08-01", "ວັນບຸນເຂົ້າພັນສາ"), + ("2023-09-14", "ວັນບຸນຫໍ່ເຂົ້າປະດັບດິນ"), + ("2023-09-29", "ວັນບຸນຫໍ່ເຂົ້າສະຫຼາກ"), + ("2023-10-07", "ວັນຄູແຫ່ງຊາດ"), + ("2023-10-29", "ວັນບຸນອອກພັນສາ"), + ("2023-10-30", "ວັນບຸນຊ່ວງເຮືອ ນະຄອນຫຼວງວຽງຈັນ"), + ("2023-11-27", "ວັນບຸນທາດຫລວງ"), + ) + + def test_1988_workday(self): + # Prior to National Arbor Day creation in 1989. + self.assertHolidays( + Laos(categories=(WORKDAY,), years=1988), + ("1988-01-20", "ວັນສ້າງຕັ້ງກອງທັບປະຊາຊົນລາວ"), + ("1988-02-01", "ວັນສ້າງຕັ້ງສະຫະພັນກໍາມະບານລາວ"), + ("1988-03-22", "ວັນສ້າງຕັ້ງພັກປະຊາຊົນປະຕິວັດລາວ"), + ("1988-04-14", "ວັນສ້າງຕັ້ງສູນກາງຊາວໜຸ່ມປະຊາຊົນປະຕິວັດລາວ"), + ("1988-07-13", "ວັນຄ້າຍວັນເກີດ ທ່ານ ປະທານ ສຸພານຸວົງ"), + ("1988-07-20", "ວັນສ້າງຕັ້ງສະຫະພັນແມ່ຍິງລາວ"), + ("1988-08-13", "ວັນສື່ມວນຊົນແຫ່ງຊາດ ແລະ ວັນພິມຈໍາໜ່າຍ"), + ("1988-08-23", "ວັນຍຶດອຳນາດທົ່ວປະເທດ"), + ("1988-10-12", "ວັນປະກາດເອກະລາດ"), + ) + + def test_1990_workday(self): + # Prior to Kaysone Phomvihane's Presidency and 1991 Constitution Adoption. + self.assertHolidays( + Laos(categories=(WORKDAY,), years=1990), + ("1990-01-20", "ວັນສ້າງຕັ້ງກອງທັບປະຊາຊົນລາວ"), + ("1990-02-01", "ວັນສ້າງຕັ້ງສະຫະພັນກໍາມະບານລາວ"), + ("1990-03-22", "ວັນສ້າງຕັ້ງພັກປະຊາຊົນປະຕິວັດລາວ"), + ("1990-04-14", "ວັນສ້າງຕັ້ງສູນກາງຊາວໜຸ່ມປະຊາຊົນປະຕິວັດລາວ"), + ("1990-06-01", "ວັນປູກຕົ້ນໄມ້ແຫ່ງຊາດ"), + ("1990-07-13", "ວັນຄ້າຍວັນເກີດ ທ່ານ ປະທານ ສຸພານຸວົງ"), + ("1990-07-20", "ວັນສ້າງຕັ້ງສະຫະພັນແມ່ຍິງລາວ"), + ("1990-08-13", "ວັນສື່ມວນຊົນແຫ່ງຊາດ ແລະ ວັນພິມຈໍາໜ່າຍ"), + ("1990-08-23", "ວັນຍຶດອຳນາດທົ່ວປະເທດ"), + ("1990-10-12", "ວັນປະກາດເອກະລາດ"), + ) + + def test_1996_workday(self): + # Prior to 1997's Lao Wildlife Conservation Day Designation. + self.assertHolidays( + Laos(categories=(WORKDAY,), years=1996), + ("1996-01-20", "ວັນສ້າງຕັ້ງກອງທັບປະຊາຊົນລາວ"), + ("1996-02-01", "ວັນສ້າງຕັ້ງສະຫະພັນກໍາມະບານລາວ"), + ("1996-03-22", "ວັນສ້າງຕັ້ງພັກປະຊາຊົນປະຕິວັດລາວ"), + ("1996-04-14", "ວັນສ້າງຕັ້ງສູນກາງຊາວໜຸ່ມປະຊາຊົນປະຕິວັດລາວ"), + ("1996-06-01", "ວັນປູກຕົ້ນໄມ້ແຫ່ງຊາດ"), + ("1996-07-13", "ວັນຄ້າຍວັນເກີດ ທ່ານ ປະທານ ສຸພານຸວົງ"), + ("1996-07-20", "ວັນສ້າງຕັ້ງສະຫະພັນແມ່ຍິງລາວ"), + ("1996-08-13", "ວັນສື່ມວນຊົນແຫ່ງຊາດ ແລະ ວັນພິມຈໍາໜ່າຍ"), + ("1996-08-15", "ວັນລັດຖະທໍາມະນູນແຫ່ງຊາດ"), + ("1996-08-23", "ວັນຍຶດອຳນາດທົ່ວປະເທດ"), + ("1996-10-12", "ວັນປະກາດເອກະລາດ"), + ("1996-12-13", "ວັນຄ້າຍວັນເກີດ ທ່ານ ປະທານ ໄກສອນ ພົມວິຫານ"), + ) + + def test_2017_workday(self): + # Prior to 2018 International Children's Day is in `PUBLIC` category + self.assertHolidays( + Laos(categories=(WORKDAY,), years=2017), + ("2017-01-20", "ວັນສ້າງຕັ້ງກອງທັບປະຊາຊົນລາວ"), + ("2017-02-01", "ວັນສ້າງຕັ້ງສະຫະພັນກໍາມະບານລາວ"), + ("2017-03-22", "ວັນສ້າງຕັ້ງພັກປະຊາຊົນປະຕິວັດລາວ"), + ("2017-04-14", "ວັນສ້າງຕັ້ງສູນກາງຊາວໜຸ່ມປະຊາຊົນປະຕິວັດລາວ"), + ("2017-06-01", "ວັນປູກຕົ້ນໄມ້ແຫ່ງຊາດ"), + ( + "2017-07-13", + ( + "ວັນຄ້າຍວັນເກີດ ທ່ານ ປະທານ ສຸພານຸວົງ; " + "ວັນປ່ອຍປາ ແລະ ວັນອະນຸລັກສັດນ້ຳ-ສັດປ່າແຫ່ງຊາດ" + ), + ), + ("2017-07-20", "ວັນສ້າງຕັ້ງສະຫະພັນແມ່ຍິງລາວ"), + ("2017-08-13", "ວັນສື່ມວນຊົນແຫ່ງຊາດ ແລະ ວັນພິມຈໍາໜ່າຍ"), + ("2017-08-15", "ວັນລັດຖະທໍາມະນູນແຫ່ງຊາດ"), + ("2017-08-23", "ວັນຍຶດອຳນາດທົ່ວປະເທດ"), + ("2017-10-12", "ວັນປະກາດເອກະລາດ"), + ("2017-12-13", "ວັນຄ້າຍວັນເກີດ ທ່ານ ປະທານ ໄກສອນ ພົມວິຫານ"), + ) + + def test_2022_workday(self): + self.assertHolidays( + Laos(categories=(WORKDAY,), years=2022), + ("2022-01-20", "ວັນສ້າງຕັ້ງກອງທັບປະຊາຊົນລາວ"), + ("2022-02-01", "ວັນສ້າງຕັ້ງສະຫະພັນກໍາມະບານລາວ"), + ("2022-03-22", "ວັນສ້າງຕັ້ງພັກປະຊາຊົນປະຕິວັດລາວ"), + ("2022-04-14", "ວັນສ້າງຕັ້ງສູນກາງຊາວໜຸ່ມປະຊາຊົນປະຕິວັດລາວ"), + ("2022-06-01", "ວັນປູກຕົ້ນໄມ້ແຫ່ງຊາດ; ວັນເດັກສາກົນ"), + ( + "2022-07-13", + ( + "ວັນຄ້າຍວັນເກີດ ທ່ານ ປະທານ ສຸພານຸວົງ; " + "ວັນປ່ອຍປາ ແລະ ວັນອະນຸລັກສັດນ້ຳ-ສັດປ່າແຫ່ງຊາດ" + ), + ), + ("2022-07-20", "ວັນສ້າງຕັ້ງສະຫະພັນແມ່ຍິງລາວ"), + ("2022-08-13", "ວັນສື່ມວນຊົນແຫ່ງຊາດ ແລະ ວັນພິມຈໍາໜ່າຍ"), + ("2022-08-15", "ວັນລັດຖະທໍາມະນູນແຫ່ງຊາດ"), + ("2022-08-23", "ວັນຍຶດອຳນາດທົ່ວປະເທດ"), + ("2022-10-12", "ວັນປະກາດເອກະລາດ"), + ("2022-12-13", "ວັນຄ້າຍວັນເກີດ ທ່ານ ປະທານ ໄກສອນ ພົມວິຫານ"), + ) + + def test_l10n_default(self): + self.assertLocalizedHolidays( + ("2022-01-01", "ວັນປີໃໝ່ສາກົນ"), + ("2022-01-03", "ພັກຊົດເຊີຍວັນປີໃໝ່ສາກົນ"), + ("2022-01-20", "ວັນສ້າງຕັ້ງກອງທັບປະຊາຊົນລາວ"), + ("2022-02-01", "ວັນສ້າງຕັ້ງສະຫະພັນກໍາມະບານລາວ"), + ("2022-02-16", "ວັນບຸນມາຂະບູຊາ"), + ("2022-03-08", "ວັນແມ່ຍິງສາກົນ"), + ("2022-03-22", "ວັນສ້າງຕັ້ງພັກປະຊາຊົນປະຕິວັດລາວ"), + ("2022-04-14", "ບຸນປີໃໝ່ລາວ; ວັນສ້າງຕັ້ງສູນກາງຊາວໜຸ່ມປະຊາຊົນປະຕິວັດລາວ"), + ("2022-04-15", "ບຸນປີໃໝ່ລາວ"), + ("2022-04-16", "ບຸນປີໃໝ່ລາວ"), + ("2022-04-18", "ພັກຊົດເຊີຍບຸນປີໃໝ່ລາວ"), + ("2022-05-01", "ວັນກຳມະກອນສາກົນ"), + ("2022-05-02", "ພັກຊົດເຊີຍວັນກຳມະກອນສາກົນ"), + ("2022-05-15", "ວັນບຸນວິສາຂະບູຊາ"), + ("2022-06-01", "ວັນປູກຕົ້ນໄມ້ແຫ່ງຊາດ; ວັນເດັກສາກົນ"), + ( + "2022-07-13", + ( + "ວັນຄ້າຍວັນເກີດ ທ່ານ ປະທານ ສຸພານຸວົງ; ວັນບຸນເຂົ້າພັນສາ; " + "ວັນປ່ອຍປາ ແລະ ວັນອະນຸລັກສັດນ້ຳ-ສັດປ່າແຫ່ງຊາດ" + ), + ), + ("2022-07-20", "ວັນສ້າງຕັ້ງສະຫະພັນແມ່ຍິງລາວ"), + ("2022-08-13", "ວັນສື່ມວນຊົນແຫ່ງຊາດ ແລະ ວັນພິມຈໍາໜ່າຍ"), + ("2022-08-15", "ວັນລັດຖະທໍາມະນູນແຫ່ງຊາດ"), + ("2022-08-23", "ວັນຍຶດອຳນາດທົ່ວປະເທດ"), + ("2022-08-26", "ວັນບຸນຫໍ່ເຂົ້າປະດັບດິນ"), + ("2022-09-10", "ວັນບຸນຫໍ່ເຂົ້າສະຫຼາກ"), + ("2022-10-07", "ວັນຄູແຫ່ງຊາດ; ວັນສ້າງຕັ້ງທະນາຄານແຫ່ງ ສປປ ລາວ"), + ("2022-10-10", "ວັນບຸນອອກພັນສາ"), + ("2022-10-11", "ວັນບຸນຊ່ວງເຮືອ ນະຄອນຫຼວງວຽງຈັນ"), + ("2022-10-12", "ວັນປະກາດເອກະລາດ"), + ("2022-11-08", "ວັນບຸນທາດຫລວງ"), + ("2022-12-02", "ວັນຊາດ"), + ("2022-12-13", "ວັນຄ້າຍວັນເກີດ ທ່ານ ປະທານ ໄກສອນ ພົມວິຫານ"), + ("2022-12-28", "ສາມວັນລັດຖະການສຸດທ້າຍຂອງທຸກໆປີ"), + ("2022-12-29", "ສາມວັນລັດຖະການສຸດທ້າຍຂອງທຸກໆປີ"), + ("2022-12-30", "ສາມວັນລັດຖະການສຸດທ້າຍຂອງທຸກໆປີ"), + ) + + def test_l10n_en_US(self): + self.assertLocalizedHolidays( + "en_US", + ("2022-01-01", "New Year's Day"), + ("2022-01-03", "New Year's Day (in lieu)"), + ("2022-01-20", "Lao People's Armed Force Day"), + ("2022-02-01", "Lao Federation of Trade Union's Day"), + ("2022-02-16", "Makha Bousa Festival"), + ("2022-03-08", "International Women's Rights Day"), + ("2022-03-22", "Establishment Day of the Lao People's Revolutionary Party"), + ("2022-04-14", "Lao New Year's Day; Lao People's Revolutionary Youth Union Day"), + ("2022-04-15", "Lao New Year's Day"), + ("2022-04-16", "Lao New Year's Day"), + ("2022-04-18", "Lao New Year's Day (in lieu)"), + ("2022-05-01", "Labor Day"), + ("2022-05-02", "Labor Day (in lieu)"), + ("2022-05-15", "Visakha Bousa Festival"), + ("2022-06-01", "International Children Day; National Arbor Day"), + ( + "2022-07-13", + ( + "Begin of Buddhist Lent; President Souphanouvong's Birthday; " + "The National Day for Wildlife and Aquatic Animal Conservation" + ), + ), + ("2022-07-20", "Establishment Day of the Lao Women's Union"), + ("2022-08-13", "Lao National Mass Media and Publishing Day"), + ("2022-08-15", "Lao National Constitution Day"), + ("2022-08-23", "National Uprising Day"), + ("2022-08-26", "Boun Haw Khao Padapdin"), + ("2022-09-10", "Boun Haw Khao Salark"), + ("2022-10-07", "Establishment Day of the BOL; National Teacher Day"), + ("2022-10-10", "End of Buddhist Lent"), + ("2022-10-11", "Vientiane Boat Racing Festival"), + ("2022-10-12", "Indepedence Declaration Day"), + ("2022-11-08", "Boun That Luang Festival"), + ("2022-12-02", "Lao National Day"), + ("2022-12-13", "President Kaysone Phomvihane's Birthday"), + ("2022-12-28", "Lao Year-End Bank Holiday"), + ("2022-12-29", "Lao Year-End Bank Holiday"), + ("2022-12-30", "Lao Year-End Bank Holiday"), + ) + + def test_l10n_th(self): + self.assertLocalizedHolidays( + "th", + ("2022-01-01", "วันปีใหม่สากล"), + ("2022-01-03", "ชดเชยวันปีใหม่สากล"), + ("2022-01-20", "วันก่อตั้งกองทัพประชาชนลาว"), + ("2022-02-01", "วันก่อตั้งสหพันธ์กำมะบานลาว"), + ("2022-02-16", "วันมาฆบูชา"), + ("2022-03-08", "วันสตรีสากล"), + ("2022-03-22", "วันก่อตั้งพรรคประชาชนปฏิวัติลาว"), + ("2022-04-14", "วันก่อตั้งศูนย์ซาวหนุ่มประชาชนปฏิวัติลาว; วันปีใหม่ลาว"), + ("2022-04-15", "วันปีใหม่ลาว"), + ("2022-04-16", "วันปีใหม่ลาว"), + ("2022-04-18", "ชดเชยวันปีใหม่ลาว"), + ("2022-05-01", "วันแรงงานสากล"), + ("2022-05-02", "ชดเชยวันแรงงานสากล"), + ("2022-05-15", "วันวิสาขบูชา"), + ("2022-06-01", "วันปลูกต้นไม้แห่งชาติ; วันเด็กสากล"), + ( + "2022-07-13", + ( + "วันคล้ายวันเกิดท่านประธานสุภานุวงศ์; วันอนุรักษ์สัตว์น้ำ สัตว์ป่า " + "และวันปล่อยปลาแห่งชาติ; วันเข้าพรรษา" + ), + ), + ("2022-07-20", "วันก่อตั้งสหภาพแม่หญิงลาว"), + ("2022-08-13", "วันสื่อสารมวลชนและการพิมพ์แห่งชาติ"), + ("2022-08-15", "วันรัฐธรรมนูญแห่งชาติ"), + ("2022-08-23", "วันยึดอำนาจทั่วประเทศ"), + ("2022-08-26", "วันบุญข้าวประดับดิน"), + ("2022-09-10", "วันข้าวบุญข้าวสาก"), + ("2022-10-07", "วันก่อตั้งธนาคารแห่ง สปป. ลาว; วันครูแห่งชาติ"), + ("2022-10-10", "วันออกพรรษา"), + ("2022-10-11", "วันงานบุญแข่งเรือ นครหลวงเวียงจันทน์"), + ("2022-10-12", "วันประกาศเอกราช"), + ("2022-11-08", "วันงานพระธาตุหลวง"), + ("2022-12-02", "วันชาติ สปป. ลาว"), + ("2022-12-13", "วันคล้ายวันเกิดท่านประธานไกสอน พมวิหาน"), + ("2022-12-28", "วันหยุดสิ้นปีของสถาบันการเงิน"), + ("2022-12-29", "วันหยุดสิ้นปีของสถาบันการเงิน"), + ("2022-12-30", "วันหยุดสิ้นปีของสถาบันการเงิน"), + ) From 77f812d408c05cf91d9585da03d87b9623203d95 Mon Sep 17 00:00:00 2001 From: Arkadii Yakovets Date: Mon, 2 Oct 2023 09:19:56 -0700 Subject: [PATCH 10/10] Finalize v0.34 --- CHANGES | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index ca06810f4..a24817aa0 100644 --- a/CHANGES +++ b/CHANGES @@ -1,9 +1,11 @@ Version 0.34 ============ -Released ???????? ??, ???? +Released October 2, 2023 - Introduce holiday snapshots (#1478 by @arkid15r) +- Add Laos holidays (#1483 by @PPsyrius) +- Update Belarus holidays: add substituted holidays (#1486 by @KJhellico) - Update ES snapshot (#1481 by @arkid15r) - Update NYSE holidays: fix Juneteenth National Independence Day start year (#1484 by @KJhellico) - Update Spain holidays (#1476 by @KJhellico)